diff -Nru gnome-panel-3.3.3/applets/clock/calendar-window.c gnome-panel-3.3.5/applets/clock/calendar-window.c --- gnome-panel-3.3.3/applets/clock/calendar-window.c 2011-09-19 15:34:04.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/calendar-window.c 2012-02-02 14:25:57.000000000 +0000 @@ -1559,14 +1559,14 @@ char *text; GtkWidget *expander; - vbox = gtk_vbox_new (FALSE, 6); + vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); bold_title = g_strdup_printf ("%s", title); expander = gtk_expander_new (bold_title); g_free (bold_title); gtk_expander_set_use_markup (GTK_EXPANDER (expander), TRUE); - hbox = gtk_hbox_new (FALSE, 0); + hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (hbox), expander, FALSE, FALSE, 0); gtk_widget_show_all (vbox); @@ -1594,7 +1594,7 @@ gtk_container_add (GTK_CONTAINER (alignment), button); gtk_widget_show_all (alignment); - gtk_container_add (GTK_CONTAINER (hbox), alignment); + gtk_box_pack_end (GTK_BOX (hbox), alignment, TRUE, TRUE, 0); g_signal_connect_swapped (button, "clicked", callback, calwin); @@ -1646,7 +1646,7 @@ gtk_container_add (GTK_CONTAINER (calwin), frame); gtk_widget_show (frame); - vbox = gtk_vbox_new (FALSE, 6); + vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); gtk_container_set_border_width (GTK_CONTAINER (vbox), 6); gtk_container_add (GTK_CONTAINER (frame), vbox); gtk_widget_show (vbox); diff -Nru gnome-panel-3.3.3/applets/clock/clock.c gnome-panel-3.3.5/applets/clock/clock.c --- gnome-panel-3.3.3/applets/clock/clock.c 2011-08-12 11:33:13.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/clock.c 2012-02-02 16:51:27.000000000 +0000 @@ -68,7 +68,6 @@ #include "clock-location-tile.h" #include "clock-map.h" #include "clock-utils.h" -#include "set-timezone.h" #include "system-timezone.h" #define INTERNETSECOND (864) @@ -981,7 +980,7 @@ locations_box = calendar_window_get_locations_box (CALENDAR_WINDOW (cd->calendar_popup)); gtk_widget_show (locations_box); - cd->clock_vbox = gtk_vbox_new (FALSE, 6); + cd->clock_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); gtk_container_add (GTK_CONTAINER (locations_box), cd->clock_vbox); cd->clock_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); @@ -1129,7 +1128,7 @@ g_list_free (cd->location_tiles); cd->location_tiles = NULL; - cd->cities_section = gtk_vbox_new (FALSE, 6); + cd->cities_section = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); gtk_container_set_border_width (GTK_CONTAINER (cd->cities_section), 0); cities = cd->locations; @@ -1646,26 +1645,22 @@ } static void -update_set_time_button (ClockData *cd) +ensure_datetime_appinfo (ClockData *cd) { - gint can_set; - - if (!cd->time_settings_button) - return; - if (!cd->datetime_appinfo) cd->datetime_appinfo = (GAppInfo *) g_desktop_app_info_new ("gnome-datetime-panel.desktop"); +} - if (!cd->datetime_appinfo) { - gtk_widget_set_sensitive (cd->time_settings_button, FALSE); +static void +update_set_time_button (ClockData *cd) +{ + if (!cd->time_settings_button) return; - } - /* this returns more than just a boolean; check the documentation of - * the dbus method for more information */ - can_set = can_set_system_time (); + ensure_datetime_appinfo (cd); - gtk_widget_set_sensitive (cd->time_settings_button, can_set); + gtk_widget_set_sensitive (cd->time_settings_button, + cd->datetime_appinfo != NULL); } static void @@ -1677,6 +1672,7 @@ GError *error; update_set_time_button (cd); + ensure_datetime_appinfo (cd); if (!cd->datetime_appinfo) return; @@ -2432,9 +2428,6 @@ ClockData *cd; GtkActionGroup *action_group; GtkAction *action; - gchar *ui_path; - char *filename; - GError *error; panel_applet_add_preferences (applet, CLOCK_SCHEMA_DIR, NULL); panel_applet_set_flags (applet, PANEL_APPLET_EXPAND_MINOR); @@ -2450,17 +2443,7 @@ cd->builder = gtk_builder_new (); gtk_builder_set_translation_domain (cd->builder, GETTEXT_PACKAGE); - filename = g_build_filename (BUILDERDIR, "clock.ui", NULL); - - error = NULL; - gtk_builder_add_from_file (cd->builder, filename, &error); - if (error) { - g_warning ("Error loading \"%s\": %s", - filename, error->message); - g_error_free (error); - } - - g_free (filename); + gtk_builder_add_from_resource (cd->builder, CLOCK_RESOURCE_PATH "clock.ui", NULL); create_clock_widget (cd); @@ -2492,10 +2475,9 @@ clock_menu_actions, G_N_ELEMENTS (clock_menu_actions), cd); - ui_path = g_build_filename (CLOCK_MENU_UI_DIR, "clock-menu.xml", NULL); - panel_applet_setup_menu_from_file (PANEL_APPLET (cd->applet), - ui_path, action_group); - g_free (ui_path); + panel_applet_setup_menu_from_resource (PANEL_APPLET (cd->applet), + CLOCK_RESOURCE_PATH "clock-menu.xml", + action_group); action = gtk_action_group_get_action (action_group, "ClockPreferences"); g_object_bind_property (cd->applet, "locked-down", @@ -2511,8 +2493,6 @@ g_signal_connect (cd->systz, "changed", G_CALLBACK (clock_timezone_changed), cd); - action = gtk_action_group_get_action (action_group, "ClockConfig"); - gtk_action_set_visible (action, can_set_system_time ()); g_object_unref (action_group); return TRUE; diff -Nru gnome-panel-3.3.3/applets/clock/clock-face.c gnome-panel-3.3.5/applets/clock/clock-face.c --- gnome-panel-3.3.3/applets/clock/clock-face.c 2011-01-31 23:50:19.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/clock-face.c 2012-02-02 14:25:57.000000000 +0000 @@ -15,10 +15,10 @@ #include #include -#include - +#include "clock.h" #include "clock-face.h" #include "clock-location.h" +#include "clock-utils.h" static GHashTable *pixbuf_cache = NULL; @@ -434,21 +434,20 @@ } /* The pixbuf is not cached, let's load it */ - name = g_strconcat (ICONDIR, "/clock-face-", size_string[priv->size], + name = g_strconcat (CLOCK_RESOURCE_PATH "icons/", + "clock-face-", size_string[priv->size], "-", daytime_string[priv->timeofday], ".svg", NULL); - priv->face_pixbuf = rsvg_pixbuf_from_file_at_size (name, - width, height, - NULL); + priv->face_pixbuf = clock_utils_pixbuf_from_svg_resource_at_size (name, + width, height); g_free (name); if (!priv->face_pixbuf) { - name = g_strconcat (ICONDIR, "/clock-face-", - size_string[priv->size], ".svg", NULL); - priv->face_pixbuf = rsvg_pixbuf_from_file_at_size (name, - width, - height, - NULL); + name = g_strconcat (CLOCK_RESOURCE_PATH "icons/", + "clock-face-", size_string[priv->size], ".svg", + NULL); + priv->face_pixbuf = clock_utils_pixbuf_from_svg_resource_at_size (name, + width, height); g_free (name); } diff -Nru gnome-panel-3.3.3/applets/clock/clock.gresource.xml gnome-panel-3.3.5/applets/clock/clock.gresource.xml --- gnome-panel-3.3.3/applets/clock/clock.gresource.xml 1970-01-01 00:00:00.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/clock.gresource.xml 2012-02-02 14:25:57.000000000 +0000 @@ -0,0 +1,17 @@ + + + + clock.ui + clock-menu.xml + pixmaps/clock-face-large.svg + pixmaps/clock-face-small.svg + pixmaps/clock-face-small-morning.svg + pixmaps/clock-face-small-day.svg + pixmaps/clock-face-small-evening.svg + pixmaps/clock-face-small-night.svg + pixmaps/clock-map.png + pixmaps/clock-map-location-marker.png + pixmaps/clock-map-location-current.png + pixmaps/clock-map-location-hilight.png + + diff -Nru gnome-panel-3.3.3/applets/clock/clock.h gnome-panel-3.3.5/applets/clock/clock.h --- gnome-panel-3.3.3/applets/clock/clock.h 2010-02-09 12:32:08.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/clock.h 2012-02-02 14:25:57.000000000 +0000 @@ -30,6 +30,7 @@ G_BEGIN_DECLS #define CLOCK_ICON "gnome-panel-clock" +#define CLOCK_RESOURCE_PATH "/org/gnome/panel/applet/clock/" #define CLOCK_SCHEMA_DIR "/schemas/apps/clock_applet/prefs" G_END_DECLS diff -Nru gnome-panel-3.3.3/applets/clock/clock-location-tile.c gnome-panel-3.3.5/applets/clock/clock-location-tile.c --- gnome-panel-3.3.3/applets/clock/clock-location-tile.c 2011-01-31 23:50:19.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/clock-location-tile.c 2012-02-02 14:25:57.000000000 +0000 @@ -275,8 +275,8 @@ alignment = gtk_alignment_new (0, 0, 1, 0); gtk_alignment_set_padding (GTK_ALIGNMENT (alignment), 3, 3, 3, 0); - tile = gtk_hbox_new (FALSE, 6); - head_section = gtk_vbox_new (FALSE, 0); + tile = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); + head_section = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); priv->city_label = gtk_label_new (NULL); gtk_misc_set_alignment (GTK_MISC (priv->city_label), 0, 0); @@ -293,7 +293,7 @@ align = gtk_alignment_new (0, 0, 0, 0); gtk_container_add (GTK_CONTAINER (align), priv->weather_icon); - box = gtk_hbox_new (FALSE, 0); + box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); gtk_box_pack_start (GTK_BOX (head_section), box, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (box), align, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (box), priv->time_label, FALSE, FALSE, 0); diff -Nru gnome-panel-3.3.3/applets/clock/clock-map.c gnome-panel-3.3.5/applets/clock/clock-map.c --- gnome-panel-3.3.3/applets/clock/clock-map.c 2011-02-01 17:57:21.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/clock-map.c 2012-02-02 14:25:57.000000000 +0000 @@ -28,9 +28,9 @@ }; static char *marker_files[MARKER_NB] = { - ICONDIR "/clock-map-location-marker.png", - ICONDIR "/clock-map-location-hilight.png", - ICONDIR "/clock-map-location-current.png" + "clock-map-location-marker.png", + "clock-map-location-hilight.png", + "clock-map-location-current.png" }; static guint signals[LAST_SIGNAL]; @@ -136,8 +136,17 @@ g_assert (sizeof (marker_files)/sizeof (char *) == MARKER_NB); for (i = 0; i < MARKER_NB; i++) { - priv->location_marker_pixbuf[i] = gdk_pixbuf_new_from_file - (marker_files[i], NULL); + char *resource; + GInputStream *stream; + + resource = g_strconcat (CLOCK_RESOURCE_PATH "icons/", marker_files[i], NULL); + stream = g_resources_open_stream (resource, 0, NULL); + g_free (resource); + + if (stream != NULL) { + priv->location_marker_pixbuf[i] = gdk_pixbuf_new_from_stream (stream, NULL, NULL); + g_object_unref (stream); + } } } @@ -209,11 +218,17 @@ } if (!priv->stock_map_pixbuf) { - GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file_at_scale - (ICONDIR "/clock-map.png", - priv->width, priv->height, FALSE, NULL); + GInputStream *stream = g_resources_open_stream (CLOCK_RESOURCE_PATH "icons/clock-map.png", + 0, NULL); + if (stream != NULL) { + GdkPixbuf *pixbuf = gdk_pixbuf_new_from_stream_at_scale (stream, + priv->width, priv->height, + FALSE, + NULL, NULL); + g_object_unref (stream); - priv->stock_map_pixbuf = pixbuf; + priv->stock_map_pixbuf = pixbuf; + } } clock_map_place_locations (this); diff -Nru gnome-panel-3.3.3/applets/clock/clock-marshallers.c gnome-panel-3.3.5/applets/clock/clock-marshallers.c --- gnome-panel-3.3.3/applets/clock/clock-marshallers.c 2011-09-19 17:17:37.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/clock-marshallers.c 2012-02-02 13:09:38.000000000 +0000 @@ -8,7 +8,7 @@ #ifdef G_ENABLE_DEBUG #define g_marshal_value_peek_boolean(v) g_value_get_boolean (v) -#define g_marshal_value_peek_char(v) g_value_get_char (v) +#define g_marshal_value_peek_char(v) g_value_get_schar (v) #define g_marshal_value_peek_uchar(v) g_value_get_uchar (v) #define g_marshal_value_peek_int(v) g_value_get_int (v) #define g_marshal_value_peek_uint(v) g_value_get_uint (v) diff -Nru gnome-panel-3.3.3/applets/clock/clock-resources.c gnome-panel-3.3.5/applets/clock/clock-resources.c --- gnome-panel-3.3.3/applets/clock/clock-resources.c 1970-01-01 00:00:00.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/clock-resources.c 2012-02-02 15:36:35.000000000 +0000 @@ -0,0 +1,15404 @@ +#include + +#if defined (__ELF__) && ( __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6)) +# define SECTION __attribute__ ((section (".gresource.clock"), aligned (8))) +#else +# define SECTION +#endif + +static const SECTION union { const guint8 data[122168]; const double alignment; void * const ptr;} clock_resource_data = { { + 0x47, 0x56, 0x61, 0x72, 0x69, 0x61, 0x6e, 0x74, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x18, 0x00, 0x00, 0x00, 0x34, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x28, 0x13, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, + 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, + 0x07, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, + 0x07, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, + 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, + 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, + 0x0b, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, + 0x0f, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, + 0x12, 0x00, 0x00, 0x00, 0x4a, 0xe0, 0xcd, 0x7d, + 0x09, 0x00, 0x00, 0x00, 0x34, 0x02, 0x00, 0x00, + 0x06, 0x00, 0x4c, 0x00, 0x3c, 0x02, 0x00, 0x00, + 0x64, 0x02, 0x00, 0x00, 0xf0, 0x18, 0x34, 0x7b, + 0x00, 0x00, 0x00, 0x00, 0x64, 0x02, 0x00, 0x00, + 0x1e, 0x00, 0x76, 0x00, 0x88, 0x02, 0x00, 0x00, + 0xf2, 0x03, 0x00, 0x00, 0x89, 0xc9, 0x14, 0x1f, + 0x00, 0x00, 0x00, 0x00, 0xf2, 0x03, 0x00, 0x00, + 0x1d, 0x00, 0x76, 0x00, 0x10, 0x04, 0x00, 0x00, + 0x3b, 0x05, 0x00, 0x00, 0xb0, 0xb7, 0x24, 0x30, + 0x0e, 0x00, 0x00, 0x00, 0x3b, 0x05, 0x00, 0x00, + 0x06, 0x00, 0x4c, 0x00, 0x44, 0x05, 0x00, 0x00, + 0x48, 0x05, 0x00, 0x00, 0xd6, 0x79, 0xb8, 0xcc, + 0x00, 0x00, 0x00, 0x00, 0x48, 0x05, 0x00, 0x00, + 0x14, 0x00, 0x76, 0x00, 0x60, 0x05, 0x00, 0x00, + 0x30, 0x3b, 0x00, 0x00, 0x54, 0x18, 0x0b, 0xba, + 0x00, 0x00, 0x00, 0x00, 0x30, 0x3b, 0x00, 0x00, + 0x0d, 0x00, 0x76, 0x00, 0x40, 0x3b, 0x00, 0x00, + 0xec, 0x9d, 0x00, 0x00, 0x3d, 0x1d, 0xfe, 0xe8, + 0x00, 0x00, 0x00, 0x00, 0xec, 0x9d, 0x00, 0x00, + 0x1c, 0x00, 0x76, 0x00, 0x08, 0x9e, 0x00, 0x00, + 0xf8, 0xd3, 0x00, 0x00, 0xd4, 0xb5, 0x02, 0x00, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0xd3, 0x00, 0x00, + 0x01, 0x00, 0x4c, 0x00, 0xfc, 0xd3, 0x00, 0x00, + 0x00, 0xd4, 0x00, 0x00, 0x6f, 0xd8, 0xf6, 0x94, + 0x03, 0x00, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, + 0x06, 0x00, 0x4c, 0x00, 0x08, 0xd4, 0x00, 0x00, + 0x0c, 0xd4, 0x00, 0x00, 0x1f, 0xa0, 0x5c, 0xf4, + 0x0b, 0x00, 0x00, 0x00, 0x0c, 0xd4, 0x00, 0x00, + 0x06, 0x00, 0x4c, 0x00, 0x14, 0xd4, 0x00, 0x00, + 0x20, 0xd4, 0x00, 0x00, 0xf7, 0xda, 0x3c, 0x53, + 0x09, 0x00, 0x00, 0x00, 0x20, 0xd4, 0x00, 0x00, + 0x08, 0x00, 0x76, 0x00, 0x28, 0xd4, 0x00, 0x00, + 0x37, 0xe4, 0x00, 0x00, 0x44, 0x9f, 0x99, 0xd8, + 0x08, 0x00, 0x00, 0x00, 0x37, 0xe4, 0x00, 0x00, + 0x07, 0x00, 0x4c, 0x00, 0x40, 0xe4, 0x00, 0x00, + 0x44, 0xe4, 0x00, 0x00, 0xac, 0xdb, 0xec, 0x2b, + 0x09, 0x00, 0x00, 0x00, 0x44, 0xe4, 0x00, 0x00, + 0x0e, 0x00, 0x76, 0x00, 0x58, 0xe4, 0x00, 0x00, + 0xe7, 0xe4, 0x00, 0x00, 0xdd, 0x3a, 0xb4, 0xc7, + 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe4, 0x00, 0x00, + 0x1a, 0x00, 0x76, 0x00, 0x08, 0xe5, 0x00, 0x00, + 0xb5, 0x1b, 0x01, 0x00, 0x4b, 0x50, 0x90, 0x0b, + 0x07, 0x00, 0x00, 0x00, 0xb5, 0x1b, 0x01, 0x00, + 0x04, 0x00, 0x4c, 0x00, 0xbc, 0x1b, 0x01, 0x00, + 0xc0, 0x1b, 0x01, 0x00, 0x0f, 0xae, 0x10, 0xf0, + 0x00, 0x00, 0x00, 0x00, 0xc0, 0x1b, 0x01, 0x00, + 0x1c, 0x00, 0x76, 0x00, 0xe0, 0x1b, 0x01, 0x00, + 0xd0, 0x51, 0x01, 0x00, 0xc1, 0xa6, 0xe6, 0x66, + 0x00, 0x00, 0x00, 0x00, 0xd0, 0x51, 0x01, 0x00, + 0x18, 0x00, 0x76, 0x00, 0xe8, 0x51, 0x01, 0x00, + 0xb8, 0x87, 0x01, 0x00, 0x6a, 0xf8, 0x28, 0x8e, + 0x00, 0x00, 0x00, 0x00, 0xb8, 0x87, 0x01, 0x00, + 0x1e, 0x00, 0x76, 0x00, 0xd8, 0x87, 0x01, 0x00, + 0x63, 0x89, 0x01, 0x00, 0x68, 0xfa, 0xb0, 0x9a, + 0x00, 0x00, 0x00, 0x00, 0x63, 0x89, 0x01, 0x00, + 0x14, 0x00, 0x76, 0x00, 0x78, 0x89, 0x01, 0x00, + 0x38, 0xdd, 0x01, 0x00, 0x69, 0x63, 0x6f, 0x6e, + 0x73, 0x2f, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, + 0x10, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, + 0x06, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, + 0x04, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x05, 0x00, 0x00, 0x00, 0x63, 0x6c, 0x6f, 0x63, + 0x6b, 0x2d, 0x6d, 0x61, 0x70, 0x2d, 0x6c, 0x6f, + 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x68, + 0x69, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x70, + 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x5a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, + 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x08, + 0x08, 0x06, 0x00, 0x00, 0x00, 0xc4, 0x0f, 0xbe, + 0x8b, 0x00, 0x00, 0x00, 0x01, 0x73, 0x52, 0x47, + 0x42, 0x00, 0xae, 0xce, 0x1c, 0xe9, 0x00, 0x00, + 0x00, 0x06, 0x62, 0x4b, 0x47, 0x44, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0xa0, 0xbd, 0xa7, 0x93, + 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, + 0x00, 0x00, 0x0d, 0xd7, 0x00, 0x00, 0x0d, 0xd7, + 0x01, 0x42, 0x28, 0x9b, 0x78, 0x00, 0x00, 0x00, + 0x07, 0x74, 0x49, 0x4d, 0x45, 0x07, 0xd7, 0x09, + 0x1c, 0x03, 0x07, 0x33, 0x26, 0xe7, 0x45, 0xe9, + 0x00, 0x00, 0x00, 0xda, 0x49, 0x44, 0x41, 0x54, + 0x18, 0xd3, 0x5d, 0x8b, 0x3f, 0x4e, 0x84, 0x40, + 0x18, 0x47, 0x7f, 0xdf, 0x8c, 0x64, 0x26, 0x43, + 0x36, 0x34, 0xb6, 0x9e, 0xc1, 0x72, 0xed, 0x2c, + 0x68, 0x49, 0x6c, 0x68, 0x48, 0x48, 0x28, 0x2c, + 0x3c, 0x80, 0xe1, 0x06, 0x56, 0x16, 0xb6, 0x70, + 0x00, 0x2e, 0x41, 0x81, 0xc5, 0x92, 0x35, 0x16, + 0xc4, 0x0b, 0x40, 0xbc, 0x82, 0x0d, 0x7f, 0xc2, + 0x07, 0x38, 0x16, 0x1a, 0xb3, 0xd9, 0x97, 0xbc, + 0xea, 0xe5, 0x11, 0x7e, 0xb9, 0x72, 0x5d, 0xf7, + 0x71, 0xdb, 0xb6, 0x6b, 0x22, 0xfa, 0x96, 0x52, + 0xbe, 0xf5, 0x7d, 0xff, 0x02, 0xe0, 0x4b, 0x00, + 0xb8, 0xd4, 0x5a, 0x17, 0x71, 0x1c, 0xdf, 0xd4, + 0x75, 0xbd, 0x2b, 0xcb, 0xd2, 0xf3, 0x7d, 0xdf, + 0x37, 0xc6, 0x14, 0x00, 0x14, 0x3c, 0xcf, 0x7b, + 0x4e, 0xd3, 0xf4, 0xdd, 0x5a, 0xdb, 0x9c, 0x1a, + 0x04, 0xc1, 0x51, 0x29, 0xf5, 0x20, 0xe6, 0x79, + 0xde, 0x87, 0x61, 0x78, 0x81, 0x33, 0xa2, 0x28, + 0x52, 0x5a, 0xeb, 0x5b, 0x21, 0xa5, 0x5c, 0x98, + 0xf9, 0xbc, 0x83, 0x99, 0x41, 0x44, 0x8b, 0x10, + 0x42, 0xbc, 0x66, 0x59, 0xc6, 0xd6, 0xda, 0xff, + 0xb8, 0xae, 0x2b, 0xf2, 0x3c, 0x9f, 0xc6, 0x71, + 0x2c, 0x25, 0x33, 0x7f, 0xb4, 0x6d, 0x7b, 0x57, + 0x55, 0x95, 0xa3, 0x94, 0x92, 0x4d, 0xd3, 0x20, + 0x49, 0x92, 0xb9, 0xeb, 0xba, 0xcf, 0x69, 0x9a, + 0x9e, 0xe8, 0x6f, 0xda, 0x39, 0x8e, 0x73, 0x6f, + 0x8c, 0xd9, 0x13, 0xd1, 0x3c, 0x0c, 0xc3, 0x61, + 0x59, 0x96, 0x02, 0x00, 0xff, 0x00, 0x1e, 0x7c, + 0x62, 0x32, 0xfc, 0x6f, 0x12, 0x91, 0x00, 0x00, + 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, + 0x60, 0x82, 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, + 0x79, 0x29, 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x2d, + 0x6d, 0x61, 0x70, 0x2d, 0x6c, 0x6f, 0x63, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x6d, 0x61, 0x72, + 0x6b, 0x65, 0x72, 0x2e, 0x70, 0x6e, 0x67, 0x00, + 0x1b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, + 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x06, + 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0xcc, 0xef, + 0x48, 0x00, 0x00, 0x00, 0x01, 0x73, 0x52, 0x47, + 0x42, 0x00, 0xae, 0xce, 0x1c, 0xe9, 0x00, 0x00, + 0x00, 0x06, 0x62, 0x4b, 0x47, 0x44, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0xa0, 0xbd, 0xa7, 0x93, + 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, + 0x00, 0x00, 0x0d, 0xd7, 0x00, 0x00, 0x0d, 0xd7, + 0x01, 0x42, 0x28, 0x9b, 0x78, 0x00, 0x00, 0x00, + 0x07, 0x74, 0x49, 0x4d, 0x45, 0x07, 0xd7, 0x09, + 0x1c, 0x03, 0x02, 0x0b, 0x73, 0x92, 0x09, 0x32, + 0x00, 0x00, 0x00, 0x9b, 0x49, 0x44, 0x41, 0x54, + 0x08, 0xd7, 0x05, 0xc1, 0x31, 0x0e, 0x82, 0x30, + 0x18, 0x06, 0xd0, 0xaf, 0xb4, 0x09, 0x91, 0x36, + 0x41, 0x0f, 0xa0, 0x61, 0x20, 0x51, 0x13, 0x39, + 0x81, 0x61, 0x63, 0x66, 0x71, 0x70, 0xe5, 0x00, + 0x6c, 0xac, 0x0c, 0x5c, 0x80, 0xab, 0x78, 0x02, + 0x2e, 0xc0, 0x11, 0x98, 0x48, 0x08, 0x0b, 0x3b, + 0x86, 0x9a, 0xfe, 0x2d, 0xbe, 0xc7, 0x1a, 0x40, + 0xdc, 0xa5, 0xac, 0x18, 0x90, 0xc1, 0x5a, 0x58, + 0xa2, 0x6e, 0x20, 0x6a, 0x79, 0xa9, 0x54, 0x79, + 0x4e, 0xd3, 0xd7, 0xb3, 0xae, 0xd5, 0x25, 0x8a, + 0x0e, 0x7a, 0x1c, 0x63, 0xb5, 0x6d, 0x81, 0xe7, + 0x88, 0xf2, 0x47, 0x51, 0xf8, 0x5e, 0x18, 0xc2, + 0x0b, 0x02, 0xc4, 0x49, 0xe2, 0x93, 0x73, 0xb9, + 0x00, 0x00, 0x33, 0x4d, 0xe0, 0x52, 0xc2, 0xad, + 0x2b, 0x60, 0x0c, 0x00, 0x80, 0xbf, 0x39, 0x3f, + 0x7e, 0xe7, 0xf9, 0x76, 0x52, 0x4a, 0xb8, 0x65, + 0xc1, 0xd0, 0xf7, 0x3f, 0xad, 0xf5, 0x87, 0x35, + 0x80, 0xb8, 0x0a, 0x51, 0x71, 0xc6, 0xb2, 0x7d, + 0xdf, 0xe1, 0x80, 0x6e, 0x20, 0x6a, 0xff, 0xea, + 0xf7, 0x39, 0xaa, 0x02, 0x83, 0x56, 0x20, 0x00, + 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, + 0x42, 0x60, 0x82, 0x00, 0x00, 0x28, 0x75, 0x75, + 0x61, 0x79, 0x29, 0x67, 0x6e, 0x6f, 0x6d, 0x65, + 0x2f, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, + 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x2d, 0x66, 0x61, + 0x63, 0x65, 0x2d, 0x73, 0x6d, 0x61, 0x6c, 0x6c, + 0x2e, 0x73, 0x76, 0x67, 0x00, 0x00, 0x00, 0x00, + 0xc0, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65, + 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31, + 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f, + 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54, + 0x46, 0x2d, 0x38, 0x22, 0x20, 0x73, 0x74, 0x61, + 0x6e, 0x64, 0x61, 0x6c, 0x6f, 0x6e, 0x65, 0x3d, + 0x22, 0x6e, 0x6f, 0x22, 0x3f, 0x3e, 0x0a, 0x3c, + 0x21, 0x2d, 0x2d, 0x20, 0x43, 0x72, 0x65, 0x61, + 0x74, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, + 0x20, 0x49, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x20, 0x28, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x2e, 0x6f, + 0x72, 0x67, 0x2f, 0x29, 0x20, 0x2d, 0x2d, 0x3e, + 0x0a, 0x3c, 0x73, 0x76, 0x67, 0x0a, 0x20, 0x20, + 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, 0x64, + 0x63, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x70, 0x75, 0x72, 0x6c, 0x2e, 0x6f, + 0x72, 0x67, 0x2f, 0x64, 0x63, 0x2f, 0x65, 0x6c, + 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x31, + 0x2e, 0x31, 0x2f, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, 0x63, 0x63, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x65, 0x62, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x63, 0x63, 0x2f, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, + 0x72, 0x64, 0x66, 0x3d, 0x22, 0x68, 0x74, 0x74, + 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, + 0x77, 0x33, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x31, + 0x39, 0x39, 0x39, 0x2f, 0x30, 0x32, 0x2f, 0x32, + 0x32, 0x2d, 0x72, 0x64, 0x66, 0x2d, 0x73, 0x79, + 0x6e, 0x74, 0x61, 0x78, 0x2d, 0x6e, 0x73, 0x23, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, + 0x6e, 0x73, 0x3a, 0x73, 0x76, 0x67, 0x3d, 0x22, + 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, + 0x77, 0x77, 0x2e, 0x77, 0x33, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x32, 0x30, 0x30, 0x30, 0x2f, 0x73, + 0x76, 0x67, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, + 0x6d, 0x6c, 0x6e, 0x73, 0x3d, 0x22, 0x68, 0x74, + 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, + 0x2e, 0x77, 0x33, 0x2e, 0x6f, 0x72, 0x67, 0x2f, + 0x32, 0x30, 0x30, 0x30, 0x2f, 0x73, 0x76, 0x67, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, + 0x6e, 0x73, 0x3a, 0x78, 0x6c, 0x69, 0x6e, 0x6b, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x77, 0x33, 0x2e, + 0x6f, 0x72, 0x67, 0x2f, 0x31, 0x39, 0x39, 0x39, + 0x2f, 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, + 0x3a, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x2e, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x66, 0x6f, 0x72, 0x67, 0x65, 0x2e, 0x6e, + 0x65, 0x74, 0x2f, 0x44, 0x54, 0x44, 0x2f, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x2d, + 0x30, 0x2e, 0x64, 0x74, 0x64, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, + 0x61, 0x63, 0x65, 0x73, 0x2f, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3d, + 0x22, 0x33, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3d, 0x22, + 0x33, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x73, 0x76, 0x67, 0x35, 0x34, + 0x31, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, + 0x22, 0x30, 0x2e, 0x33, 0x32, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x76, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x3d, 0x22, 0x30, 0x2e, 0x34, 0x35, + 0x2b, 0x64, 0x65, 0x76, 0x65, 0x6c, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x76, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x3d, 0x22, 0x31, 0x2e, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x64, 0x6f, 0x63, + 0x62, 0x61, 0x73, 0x65, 0x3d, 0x22, 0x2f, 0x68, + 0x6f, 0x6d, 0x65, 0x2f, 0x67, 0x61, 0x72, 0x72, + 0x65, 0x74, 0x74, 0x2f, 0x44, 0x65, 0x73, 0x6b, + 0x74, 0x6f, 0x70, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x64, 0x6f, 0x63, 0x6e, 0x61, 0x6d, 0x65, + 0x3d, 0x22, 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x2d, + 0x66, 0x61, 0x63, 0x65, 0x2d, 0x73, 0x6d, 0x61, + 0x6c, 0x6c, 0x2d, 0x32, 0x2e, 0x73, 0x76, 0x67, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x6f, 0x75, + 0x74, 0x70, 0x75, 0x74, 0x5f, 0x65, 0x78, 0x74, + 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, + 0x6f, 0x72, 0x67, 0x2e, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x2e, 0x6f, 0x75, 0x74, + 0x70, 0x75, 0x74, 0x2e, 0x73, 0x76, 0x67, 0x2e, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x64, 0x65, + 0x66, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x64, 0x65, 0x66, 0x73, + 0x35, 0x34, 0x31, 0x38, 0x22, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x31, 0x30, 0x36, 0x35, + 0x33, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x31, 0x30, 0x36, 0x35, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, + 0x22, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x66, 0x33, 0x66, 0x34, 0x66, 0x66, 0x3b, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x31, 0x30, 0x36, 0x35, 0x37, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, + 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, + 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x39, + 0x31, 0x39, 0x33, 0x61, 0x66, 0x3b, 0x73, 0x74, + 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x34, 0x32, 0x31, + 0x37, 0x34, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, + 0x6f, 0x70, 0x34, 0x32, 0x31, 0x37, 0x36, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, + 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, + 0x23, 0x61, 0x30, 0x61, 0x30, 0x61, 0x30, 0x3b, + 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x34, 0x32, 0x31, 0x37, 0x38, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, + 0x22, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x3b, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x2f, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x32, 0x31, + 0x34, 0x35, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, + 0x6f, 0x70, 0x32, 0x31, 0x34, 0x37, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, + 0x22, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x64, 0x3b, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x32, 0x31, 0x34, 0x39, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, + 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, + 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x64, 0x39, + 0x64, 0x39, 0x64, 0x38, 0x3b, 0x73, 0x74, 0x6f, + 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x3b, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x33, 0x37, 0x39, 0x33, + 0x35, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, + 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, 0x6c, + 0x6f, 0x72, 0x3a, 0x23, 0x39, 0x34, 0x39, 0x37, + 0x62, 0x33, 0x3b, 0x73, 0x74, 0x6f, 0x70, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x3b, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, 0x66, + 0x73, 0x65, 0x74, 0x3d, 0x22, 0x30, 0x2e, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x33, 0x37, 0x39, 0x33, 0x37, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, + 0x72, 0x3a, 0x23, 0x34, 0x63, 0x34, 0x30, 0x35, + 0x39, 0x3b, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x3b, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, + 0x65, 0x74, 0x3d, 0x22, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x33, 0x37, 0x39, 0x33, 0x39, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x33, 0x38, 0x31, + 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, + 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, 0x61, + 0x79, 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, + 0x6f, 0x70, 0x33, 0x38, 0x31, 0x38, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, + 0x22, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x33, 0x38, 0x32, 0x30, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, + 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, + 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x3b, 0x73, 0x74, 0x6f, + 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x30, 0x3b, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x72, 0x61, 0x64, 0x69, + 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, + 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, 0x61, + 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, 0x6b, + 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x23, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x33, 0x38, + 0x31, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x72, + 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x34, + 0x37, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x3d, + 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, 0x70, 0x61, + 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, 0x65, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x63, 0x78, 0x3d, 0x22, 0x33, 0x31, 0x2e, 0x31, + 0x31, 0x32, 0x36, 0x39, 0x38, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x79, + 0x3d, 0x22, 0x31, 0x39, 0x2e, 0x30, 0x30, 0x38, + 0x36, 0x32, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x66, 0x78, 0x3d, 0x22, + 0x33, 0x31, 0x2e, 0x31, 0x31, 0x32, 0x36, 0x39, + 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x66, 0x79, 0x3d, 0x22, 0x31, 0x39, + 0x2e, 0x30, 0x30, 0x38, 0x36, 0x32, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x72, 0x3d, 0x22, 0x38, 0x2e, 0x36, 0x36, 0x32, + 0x30, 0x35, 0x37, 0x39, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x72, 0x61, + 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, + 0x6c, 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, + 0x77, 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, + 0x6e, 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, + 0x22, 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x33, 0x37, 0x39, 0x33, 0x35, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x35, 0x38, 0x34, 0x39, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, + 0x74, 0x73, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, + 0x53, 0x70, 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, + 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x63, 0x78, 0x3d, 0x22, 0x38, + 0x2e, 0x37, 0x34, 0x36, 0x38, 0x32, 0x35, 0x32, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x63, 0x79, 0x3d, 0x22, 0x36, 0x2e, 0x38, + 0x32, 0x38, 0x33, 0x32, 0x33, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, + 0x78, 0x3d, 0x22, 0x38, 0x2e, 0x37, 0x34, 0x36, + 0x38, 0x32, 0x35, 0x32, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x79, 0x3d, + 0x22, 0x36, 0x2e, 0x38, 0x32, 0x38, 0x33, 0x32, + 0x33, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x72, 0x3d, 0x22, 0x32, 0x39, + 0x2e, 0x38, 0x38, 0x39, 0x37, 0x31, 0x35, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3d, + 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x68, 0x72, + 0x65, 0x66, 0x3d, 0x22, 0x23, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x32, 0x31, 0x34, 0x35, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x72, 0x61, 0x64, 0x69, + 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x35, 0x38, 0x35, 0x31, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x55, + 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, 0x75, 0x73, + 0x65, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x4f, + 0x6e, 0x55, 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x78, 0x3d, + 0x22, 0x31, 0x31, 0x2e, 0x39, 0x30, 0x31, 0x39, + 0x39, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x63, 0x79, 0x3d, 0x22, 0x31, + 0x30, 0x2e, 0x30, 0x34, 0x35, 0x34, 0x34, 0x34, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x66, 0x78, 0x3d, 0x22, 0x31, 0x31, 0x2e, + 0x39, 0x30, 0x31, 0x39, 0x39, 0x36, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, + 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, 0x30, 0x34, + 0x35, 0x34, 0x34, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x3d, 0x22, + 0x32, 0x39, 0x2e, 0x32, 0x39, 0x32, 0x37, 0x31, + 0x35, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, + 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, + 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, + 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x23, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x34, 0x32, 0x31, + 0x37, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x35, + 0x33, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x3d, + 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, 0x70, 0x61, + 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, 0x65, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x78, 0x31, 0x3d, 0x22, 0x36, 0x2e, 0x33, 0x34, + 0x32, 0x32, 0x31, 0x36, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x79, 0x31, 0x3d, + 0x22, 0x37, 0x2e, 0x37, 0x38, 0x39, 0x33, 0x33, + 0x32, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x78, 0x32, 0x3d, 0x22, 0x32, + 0x32, 0x2e, 0x32, 0x31, 0x38, 0x34, 0x32, 0x34, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x79, 0x32, 0x3d, 0x22, 0x32, 0x35, 0x2e, + 0x38, 0x38, 0x34, 0x32, 0x37, 0x34, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, + 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3d, 0x22, + 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, + 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x68, 0x72, 0x65, + 0x66, 0x3d, 0x22, 0x23, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x31, 0x30, 0x36, 0x35, 0x33, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x72, 0x61, 0x64, 0x69, + 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x35, 0x38, 0x35, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x55, + 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, 0x75, 0x73, + 0x65, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x4f, + 0x6e, 0x55, 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x78, 0x3d, + 0x22, 0x31, 0x31, 0x2e, 0x33, 0x32, 0x39, 0x32, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x63, 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, + 0x35, 0x38, 0x33, 0x39, 0x37, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x78, + 0x3d, 0x22, 0x31, 0x31, 0x2e, 0x33, 0x32, 0x39, + 0x32, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x66, 0x79, 0x3d, 0x22, 0x31, 0x30, + 0x2e, 0x35, 0x38, 0x33, 0x39, 0x37, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, + 0x3d, 0x22, 0x31, 0x35, 0x2e, 0x35, 0x33, 0x32, + 0x30, 0x35, 0x39, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x72, 0x61, 0x64, + 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, + 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, + 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, + 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, + 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, + 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x32, + 0x31, 0x34, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, + 0x35, 0x37, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, 0x73, + 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, 0x70, + 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, 0x65, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x63, 0x78, 0x3d, 0x22, 0x31, 0x31, 0x2e, + 0x39, 0x30, 0x31, 0x39, 0x39, 0x36, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, + 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, 0x30, 0x34, + 0x35, 0x34, 0x34, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x78, 0x3d, + 0x22, 0x31, 0x31, 0x2e, 0x39, 0x30, 0x31, 0x39, + 0x39, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x66, 0x79, 0x3d, 0x22, 0x31, + 0x30, 0x2e, 0x30, 0x34, 0x35, 0x34, 0x34, 0x34, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x72, 0x3d, 0x22, 0x32, 0x39, 0x2e, 0x32, + 0x39, 0x32, 0x37, 0x31, 0x35, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, + 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, + 0x6c, 0x77, 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, + 0x69, 0x6e, 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, + 0x3d, 0x22, 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x34, 0x32, 0x31, 0x37, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x35, 0x38, 0x35, 0x39, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x55, 0x6e, + 0x69, 0x74, 0x73, 0x3d, 0x22, 0x75, 0x73, 0x65, + 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x4f, 0x6e, + 0x55, 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x78, 0x31, 0x3d, 0x22, + 0x36, 0x2e, 0x33, 0x34, 0x32, 0x32, 0x31, 0x36, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x79, 0x31, 0x3d, 0x22, 0x37, 0x2e, 0x37, + 0x38, 0x39, 0x33, 0x33, 0x32, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, + 0x32, 0x3d, 0x22, 0x32, 0x32, 0x2e, 0x32, 0x31, + 0x38, 0x34, 0x32, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x79, 0x32, 0x3d, + 0x22, 0x32, 0x35, 0x2e, 0x38, 0x38, 0x34, 0x32, + 0x37, 0x34, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x3c, 0x2f, 0x64, 0x65, 0x66, 0x73, 0x3e, + 0x0a, 0x20, 0x20, 0x3c, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x6e, 0x61, 0x6d, + 0x65, 0x64, 0x76, 0x69, 0x65, 0x77, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x62, 0x61, 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x70, 0x61, 0x67, 0x65, 0x63, + 0x6f, 0x6c, 0x6f, 0x72, 0x3d, 0x22, 0x23, 0x66, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x62, 0x6f, 0x72, 0x64, + 0x65, 0x72, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3d, + 0x22, 0x23, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, + 0x6f, 0x72, 0x64, 0x65, 0x72, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3d, 0x22, 0x31, 0x2e, + 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x70, 0x61, 0x67, 0x65, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3d, 0x22, 0x30, 0x2e, + 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x70, 0x61, 0x67, 0x65, 0x73, 0x68, 0x61, + 0x64, 0x6f, 0x77, 0x3d, 0x22, 0x32, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x7a, 0x6f, + 0x6f, 0x6d, 0x3d, 0x22, 0x32, 0x36, 0x2e, 0x33, + 0x38, 0x38, 0x38, 0x38, 0x39, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, 0x78, 0x3d, + 0x22, 0x31, 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x63, 0x79, 0x3d, 0x22, 0x31, + 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, + 0x74, 0x2d, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x3d, + 0x22, 0x70, 0x78, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x63, 0x75, 0x72, 0x72, 0x65, + 0x6e, 0x74, 0x2d, 0x6c, 0x61, 0x79, 0x65, 0x72, + 0x3d, 0x22, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2d, 0x77, + 0x69, 0x64, 0x74, 0x68, 0x3d, 0x22, 0x31, 0x36, + 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x3a, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, + 0x2d, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3d, + 0x22, 0x31, 0x31, 0x35, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x77, 0x69, 0x6e, + 0x64, 0x6f, 0x77, 0x2d, 0x78, 0x3d, 0x22, 0x30, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2d, 0x79, + 0x3d, 0x22, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3d, + 0x22, 0x33, 0x36, 0x70, 0x78, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x69, 0x67, + 0x68, 0x74, 0x3d, 0x22, 0x33, 0x36, 0x70, 0x78, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x3c, + 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, + 0x74, 0x61, 0x35, 0x34, 0x32, 0x31, 0x22, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x72, 0x64, + 0x66, 0x3a, 0x52, 0x44, 0x46, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x63, + 0x3a, 0x57, 0x6f, 0x72, 0x6b, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, + 0x64, 0x66, 0x3a, 0x61, 0x62, 0x6f, 0x75, 0x74, + 0x3d, 0x22, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x63, + 0x3a, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x3e, + 0x69, 0x6d, 0x61, 0x67, 0x65, 0x2f, 0x73, 0x76, + 0x67, 0x2b, 0x78, 0x6d, 0x6c, 0x3c, 0x2f, 0x64, + 0x63, 0x3a, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x64, 0x63, 0x3a, 0x74, 0x79, + 0x70, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x64, + 0x66, 0x3a, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, + 0x3a, 0x2f, 0x2f, 0x70, 0x75, 0x72, 0x6c, 0x2e, + 0x6f, 0x72, 0x67, 0x2f, 0x64, 0x63, 0x2f, 0x64, + 0x63, 0x6d, 0x69, 0x74, 0x79, 0x70, 0x65, 0x2f, + 0x53, 0x74, 0x69, 0x6c, 0x6c, 0x49, 0x6d, 0x61, + 0x67, 0x65, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, + 0x63, 0x3a, 0x57, 0x6f, 0x72, 0x6b, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x72, 0x64, + 0x66, 0x3a, 0x52, 0x44, 0x46, 0x3e, 0x0a, 0x20, + 0x20, 0x3c, 0x2f, 0x6d, 0x65, 0x74, 0x61, 0x64, + 0x61, 0x74, 0x61, 0x3e, 0x0a, 0x20, 0x20, 0x3c, + 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3d, 0x22, 0x4c, + 0x61, 0x79, 0x65, 0x72, 0x20, 0x31, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x67, 0x72, + 0x6f, 0x75, 0x70, 0x6d, 0x6f, 0x64, 0x65, 0x3d, + 0x22, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73, + 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x69, 0x6e, 0x6c, + 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x33, 0x39, 0x2e, 0x37, + 0x37, 0x34, 0x37, 0x35, 0x35, 0x2c, 0x31, 0x39, + 0x2e, 0x30, 0x30, 0x38, 0x36, 0x32, 0x31, 0x20, + 0x41, 0x20, 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, + 0x35, 0x37, 0x39, 0x2c, 0x38, 0x2e, 0x36, 0x36, + 0x32, 0x30, 0x35, 0x37, 0x39, 0x20, 0x30, 0x20, + 0x31, 0x20, 0x31, 0x20, 0x32, 0x32, 0x2e, 0x34, + 0x35, 0x30, 0x36, 0x34, 0x2c, 0x31, 0x39, 0x2e, + 0x30, 0x30, 0x38, 0x36, 0x32, 0x31, 0x20, 0x41, + 0x20, 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, + 0x37, 0x39, 0x2c, 0x38, 0x2e, 0x36, 0x36, 0x32, + 0x30, 0x35, 0x37, 0x39, 0x20, 0x30, 0x20, 0x31, + 0x20, 0x31, 0x20, 0x33, 0x39, 0x2e, 0x37, 0x37, + 0x34, 0x37, 0x35, 0x35, 0x2c, 0x31, 0x39, 0x2e, + 0x30, 0x30, 0x38, 0x36, 0x32, 0x31, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x38, 0x2e, + 0x36, 0x36, 0x32, 0x30, 0x35, 0x37, 0x39, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x72, 0x78, 0x3d, 0x22, 0x38, 0x2e, 0x36, + 0x36, 0x32, 0x30, 0x35, 0x37, 0x39, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x63, 0x79, 0x3d, 0x22, 0x31, 0x39, 0x2e, 0x30, + 0x30, 0x38, 0x36, 0x32, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, + 0x78, 0x3d, 0x22, 0x33, 0x31, 0x2e, 0x31, 0x31, + 0x32, 0x36, 0x39, 0x38, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x70, 0x61, 0x74, 0x68, 0x34, 0x34, 0x31, + 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x66, + 0x69, 0x6c, 0x6c, 0x3a, 0x75, 0x72, 0x6c, 0x28, + 0x23, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, + 0x38, 0x34, 0x37, 0x29, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, + 0x65, 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, + 0x70, 0x78, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, + 0x70, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, + 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, + 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x6d, 0x61, + 0x72, 0x6b, 0x65, 0x72, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x72, + 0x2d, 0x73, 0x74, 0x61, 0x72, 0x74, 0x3a, 0x6e, + 0x6f, 0x6e, 0x65, 0x3b, 0x6d, 0x61, 0x72, 0x6b, + 0x65, 0x72, 0x2d, 0x6d, 0x69, 0x64, 0x3a, 0x6e, + 0x6f, 0x6e, 0x65, 0x3b, 0x6d, 0x61, 0x72, 0x6b, + 0x65, 0x72, 0x2d, 0x65, 0x6e, 0x64, 0x3a, 0x6e, + 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x64, + 0x61, 0x73, 0x68, 0x61, 0x72, 0x72, 0x61, 0x79, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, + 0x68, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3a, + 0x30, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x3b, 0x76, 0x69, 0x73, 0x69, 0x62, + 0x69, 0x6c, 0x69, 0x74, 0x79, 0x3a, 0x76, 0x69, + 0x73, 0x69, 0x62, 0x6c, 0x65, 0x3b, 0x64, 0x69, + 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x69, 0x6e, + 0x6c, 0x69, 0x6e, 0x65, 0x3b, 0x6f, 0x76, 0x65, + 0x72, 0x66, 0x6c, 0x6f, 0x77, 0x3a, 0x76, 0x69, + 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x74, + 0x79, 0x70, 0x65, 0x3d, 0x22, 0x61, 0x72, 0x63, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, + 0x72, 0x6d, 0x3d, 0x22, 0x6d, 0x61, 0x74, 0x72, + 0x69, 0x78, 0x28, 0x31, 0x2e, 0x36, 0x36, 0x32, + 0x34, 0x32, 0x32, 0x34, 0x2c, 0x30, 0x2c, 0x30, + 0x2c, 0x30, 0x2e, 0x37, 0x39, 0x31, 0x30, 0x31, + 0x34, 0x33, 0x2c, 0x2d, 0x33, 0x33, 0x2e, 0x37, + 0x32, 0x38, 0x32, 0x37, 0x38, 0x2c, 0x31, 0x34, + 0x2e, 0x31, 0x31, 0x32, 0x30, 0x39, 0x37, 0x29, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, + 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x3d, + 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x28, + 0x31, 0x2e, 0x31, 0x31, 0x34, 0x38, 0x36, 0x33, + 0x31, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x31, 0x2e, + 0x31, 0x31, 0x34, 0x38, 0x36, 0x33, 0x31, 0x2c, + 0x2d, 0x30, 0x2e, 0x31, 0x31, 0x36, 0x35, 0x32, + 0x30, 0x35, 0x2c, 0x2d, 0x30, 0x2e, 0x38, 0x35, + 0x33, 0x31, 0x33, 0x38, 0x37, 0x29, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, + 0x36, 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, + 0x41, 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, + 0x31, 0x20, 0x31, 0x20, 0x31, 0x2e, 0x33, 0x33, + 0x39, 0x32, 0x38, 0x35, 0x39, 0x2c, 0x31, 0x36, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, + 0x41, 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, + 0x31, 0x20, 0x31, 0x20, 0x33, 0x31, 0x2e, 0x31, + 0x36, 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, + 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x31, + 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x72, 0x78, 0x3d, 0x22, 0x31, 0x34, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x63, 0x79, 0x3d, 0x22, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x63, 0x78, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x32, + 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, + 0x74, 0x68, 0x34, 0x34, 0x31, 0x37, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, + 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, + 0x34, 0x39, 0x29, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, 0x65, + 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x23, 0x36, 0x30, 0x35, + 0x37, 0x37, 0x33, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, + 0x3a, 0x31, 0x2e, 0x36, 0x33, 0x35, 0x39, 0x36, + 0x30, 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, + 0x70, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, + 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, + 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, + 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, + 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x64, 0x61, 0x73, 0x68, 0x6f, 0x66, 0x66, + 0x73, 0x65, 0x74, 0x3a, 0x30, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x61, 0x72, + 0x63, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, + 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, + 0x3d, 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, + 0x28, 0x30, 0x2e, 0x39, 0x33, 0x31, 0x38, 0x38, + 0x36, 0x36, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, + 0x2e, 0x39, 0x33, 0x31, 0x38, 0x38, 0x36, 0x36, + 0x2c, 0x32, 0x2e, 0x37, 0x38, 0x33, 0x31, 0x32, + 0x31, 0x31, 0x2c, 0x32, 0x2e, 0x31, 0x36, 0x37, + 0x34, 0x32, 0x39, 0x31, 0x29, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, + 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, + 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, + 0x20, 0x31, 0x20, 0x31, 0x2e, 0x33, 0x33, 0x39, + 0x32, 0x38, 0x35, 0x39, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, + 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, + 0x20, 0x31, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, + 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x31, 0x34, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x72, 0x78, 0x3d, 0x22, 0x31, 0x34, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x63, 0x79, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, + 0x78, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x32, 0x35, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, + 0x68, 0x34, 0x34, 0x31, 0x39, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, 0x72, + 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x35, + 0x31, 0x29, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x72, + 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, 0x65, 0x6e, + 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, + 0x35, 0x33, 0x29, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, + 0x3a, 0x31, 0x2e, 0x36, 0x36, 0x36, 0x30, 0x33, + 0x34, 0x37, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, + 0x70, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, + 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, + 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, + 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, + 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x64, 0x61, 0x73, 0x68, 0x6f, 0x66, 0x66, + 0x73, 0x65, 0x74, 0x3a, 0x30, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x61, 0x72, + 0x63, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x61, 0x72, + 0x63, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x72, + 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, 0x65, 0x6e, + 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, + 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, + 0x35, 0x35, 0x29, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, + 0x3a, 0x31, 0x2e, 0x37, 0x32, 0x34, 0x39, 0x37, + 0x39, 0x31, 0x36, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, + 0x61, 0x70, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, + 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, + 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, + 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, 0x6f, 0x66, + 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x34, 0x34, 0x32, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, + 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x32, 0x35, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x63, 0x79, 0x3d, 0x22, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x72, 0x78, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x72, + 0x79, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, + 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, + 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, + 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, + 0x31, 0x20, 0x31, 0x2e, 0x33, 0x33, 0x39, 0x32, + 0x38, 0x35, 0x39, 0x2c, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, + 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, + 0x31, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, + 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x7a, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, + 0x6d, 0x3d, 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, + 0x78, 0x28, 0x31, 0x2e, 0x30, 0x35, 0x37, 0x33, + 0x33, 0x30, 0x31, 0x2c, 0x30, 0x2c, 0x30, 0x2c, + 0x31, 0x2e, 0x30, 0x35, 0x37, 0x33, 0x33, 0x30, + 0x31, 0x2c, 0x30, 0x2e, 0x38, 0x31, 0x38, 0x33, + 0x34, 0x39, 0x38, 0x2c, 0x35, 0x2e, 0x30, 0x39, + 0x36, 0x31, 0x32, 0x33, 0x31, 0x65, 0x2d, 0x32, + 0x29, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, + 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, + 0x3d, 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, + 0x28, 0x30, 0x2e, 0x39, 0x33, 0x31, 0x38, 0x38, + 0x36, 0x36, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, + 0x2e, 0x39, 0x33, 0x31, 0x38, 0x38, 0x36, 0x36, + 0x2c, 0x32, 0x2e, 0x37, 0x38, 0x33, 0x31, 0x32, + 0x31, 0x31, 0x2c, 0x32, 0x2e, 0x31, 0x36, 0x37, + 0x34, 0x32, 0x39, 0x31, 0x29, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, + 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, + 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, + 0x20, 0x31, 0x20, 0x31, 0x2e, 0x33, 0x33, 0x39, + 0x32, 0x38, 0x35, 0x39, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, + 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, + 0x20, 0x31, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, + 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x31, 0x34, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x72, 0x78, 0x3d, 0x22, 0x31, 0x34, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x63, 0x79, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, + 0x78, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x32, 0x35, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, + 0x68, 0x34, 0x34, 0x32, 0x39, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x30, 0x2e, 0x35, + 0x33, 0x39, 0x32, 0x31, 0x35, 0x36, 0x39, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x75, 0x72, 0x6c, + 0x28, 0x23, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x35, 0x38, 0x35, 0x37, 0x29, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, + 0x76, 0x65, 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x75, 0x72, + 0x6c, 0x28, 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x35, 0x38, 0x35, 0x39, 0x29, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, + 0x64, 0x74, 0x68, 0x3a, 0x31, 0x2e, 0x36, 0x36, + 0x36, 0x30, 0x33, 0x34, 0x37, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, + 0x65, 0x63, 0x61, 0x70, 0x3a, 0x72, 0x6f, 0x75, + 0x6e, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, + 0x69, 0x6e, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, + 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, + 0x79, 0x3a, 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, + 0x61, 0x72, 0x63, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, + 0x68, 0x35, 0x35, 0x34, 0x33, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x31, 0x39, 0x2c, 0x31, 0x38, + 0x20, 0x43, 0x20, 0x31, 0x39, 0x2c, 0x31, 0x38, + 0x2e, 0x35, 0x35, 0x32, 0x20, 0x31, 0x38, 0x2e, + 0x35, 0x35, 0x31, 0x39, 0x39, 0x39, 0x2c, 0x31, + 0x39, 0x20, 0x31, 0x38, 0x2c, 0x31, 0x39, 0x20, + 0x43, 0x20, 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, + 0x2c, 0x31, 0x39, 0x20, 0x31, 0x37, 0x2c, 0x31, + 0x38, 0x2e, 0x35, 0x35, 0x32, 0x20, 0x31, 0x37, + 0x2c, 0x31, 0x38, 0x20, 0x43, 0x20, 0x31, 0x37, + 0x2c, 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, 0x20, + 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, 0x2c, 0x31, + 0x37, 0x20, 0x31, 0x38, 0x2c, 0x31, 0x37, 0x20, + 0x43, 0x20, 0x31, 0x38, 0x2e, 0x35, 0x35, 0x31, + 0x39, 0x39, 0x39, 0x2c, 0x31, 0x37, 0x20, 0x31, + 0x39, 0x2c, 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, + 0x20, 0x31, 0x39, 0x2c, 0x31, 0x38, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, + 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x39, 0x39, + 0x39, 0x63, 0x39, 0x63, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, + 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, + 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, + 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x67, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x67, 0x35, 0x38, 0x30, 0x32, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, + 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, + 0x61, 0x38, 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, + 0x66, 0x6f, 0x72, 0x6d, 0x3d, 0x22, 0x6d, 0x61, + 0x74, 0x72, 0x69, 0x78, 0x28, 0x30, 0x2e, 0x39, + 0x39, 0x35, 0x34, 0x31, 0x36, 0x37, 0x2c, 0x30, + 0x2c, 0x30, 0x2c, 0x30, 0x2e, 0x39, 0x39, 0x35, + 0x34, 0x31, 0x36, 0x37, 0x2c, 0x38, 0x2e, 0x32, + 0x34, 0x39, 0x39, 0x32, 0x35, 0x31, 0x65, 0x2d, + 0x32, 0x2c, 0x38, 0x2e, 0x32, 0x34, 0x39, 0x38, + 0x34, 0x30, 0x35, 0x65, 0x2d, 0x32, 0x29, 0x22, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, + 0x38, 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, + 0x20, 0x37, 0x2e, 0x39, 0x34, 0x37, 0x30, 0x34, + 0x39, 0x33, 0x2c, 0x31, 0x38, 0x20, 0x43, 0x20, + 0x37, 0x2e, 0x39, 0x34, 0x37, 0x30, 0x34, 0x39, + 0x33, 0x2c, 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, + 0x20, 0x37, 0x2e, 0x36, 0x31, 0x31, 0x30, 0x34, + 0x38, 0x34, 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x20, 0x37, 0x2e, 0x31, 0x39, 0x37, 0x30, 0x34, + 0x39, 0x33, 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x20, 0x43, 0x20, 0x36, 0x2e, 0x37, 0x38, 0x33, + 0x30, 0x34, 0x39, 0x32, 0x2c, 0x31, 0x38, 0x2e, + 0x37, 0x35, 0x20, 0x36, 0x2e, 0x34, 0x34, 0x37, + 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x38, 0x2e, + 0x34, 0x31, 0x34, 0x20, 0x36, 0x2e, 0x34, 0x34, + 0x37, 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x38, + 0x20, 0x43, 0x20, 0x36, 0x2e, 0x34, 0x34, 0x37, + 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x37, 0x2e, + 0x35, 0x38, 0x36, 0x20, 0x36, 0x2e, 0x37, 0x38, + 0x33, 0x30, 0x34, 0x39, 0x32, 0x2c, 0x31, 0x37, + 0x2e, 0x32, 0x35, 0x20, 0x37, 0x2e, 0x31, 0x39, + 0x37, 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x37, + 0x2e, 0x32, 0x35, 0x20, 0x43, 0x20, 0x37, 0x2e, + 0x36, 0x31, 0x31, 0x30, 0x34, 0x38, 0x34, 0x2c, + 0x31, 0x37, 0x2e, 0x32, 0x35, 0x20, 0x37, 0x2e, + 0x39, 0x34, 0x37, 0x30, 0x34, 0x39, 0x33, 0x2c, + 0x31, 0x37, 0x2e, 0x35, 0x38, 0x36, 0x20, 0x37, + 0x2e, 0x39, 0x34, 0x37, 0x30, 0x34, 0x39, 0x33, + 0x2c, 0x31, 0x38, 0x20, 0x7a, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x35, 0x35, 0x34, 0x35, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, + 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x32, 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, 0x35, + 0x31, 0x2c, 0x31, 0x38, 0x20, 0x43, 0x20, 0x32, + 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, 0x35, 0x31, + 0x2c, 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, 0x20, + 0x32, 0x39, 0x2e, 0x32, 0x31, 0x36, 0x39, 0x35, + 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x20, 0x32, + 0x38, 0x2e, 0x38, 0x30, 0x32, 0x39, 0x35, 0x31, + 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x20, 0x43, + 0x20, 0x32, 0x38, 0x2e, 0x33, 0x38, 0x38, 0x39, + 0x35, 0x31, 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x20, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, 0x39, + 0x35, 0x31, 0x2c, 0x31, 0x38, 0x2e, 0x34, 0x31, + 0x34, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, + 0x39, 0x35, 0x31, 0x2c, 0x31, 0x38, 0x20, 0x43, + 0x20, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, 0x39, + 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, 0x35, 0x38, + 0x36, 0x20, 0x32, 0x38, 0x2e, 0x33, 0x38, 0x38, + 0x39, 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, 0x32, + 0x35, 0x20, 0x32, 0x38, 0x2e, 0x38, 0x30, 0x32, + 0x39, 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, 0x32, + 0x35, 0x20, 0x43, 0x20, 0x32, 0x39, 0x2e, 0x32, + 0x31, 0x36, 0x39, 0x35, 0x2c, 0x31, 0x37, 0x2e, + 0x32, 0x35, 0x20, 0x32, 0x39, 0x2e, 0x35, 0x35, + 0x32, 0x39, 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, + 0x35, 0x38, 0x36, 0x20, 0x32, 0x39, 0x2e, 0x35, + 0x35, 0x32, 0x39, 0x35, 0x31, 0x2c, 0x31, 0x38, + 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, 0x35, 0x35, + 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x35, 0x36, 0x34, 0x39, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x39, + 0x2e, 0x32, 0x39, 0x33, 0x38, 0x38, 0x39, 0x33, + 0x2c, 0x32, 0x33, 0x2e, 0x30, 0x32, 0x36, 0x34, + 0x37, 0x36, 0x20, 0x43, 0x20, 0x39, 0x2e, 0x35, + 0x30, 0x30, 0x38, 0x38, 0x39, 0x33, 0x2c, 0x32, + 0x33, 0x2e, 0x33, 0x38, 0x35, 0x30, 0x31, 0x20, + 0x39, 0x2e, 0x33, 0x37, 0x37, 0x39, 0x30, 0x34, + 0x2c, 0x32, 0x33, 0x2e, 0x38, 0x34, 0x33, 0x39, + 0x39, 0x35, 0x20, 0x39, 0x2e, 0x30, 0x31, 0x39, + 0x33, 0x37, 0x30, 0x33, 0x2c, 0x32, 0x34, 0x2e, + 0x30, 0x35, 0x30, 0x39, 0x39, 0x35, 0x20, 0x43, + 0x20, 0x38, 0x2e, 0x36, 0x36, 0x30, 0x38, 0x33, + 0x35, 0x37, 0x2c, 0x32, 0x34, 0x2e, 0x32, 0x35, + 0x37, 0x39, 0x39, 0x35, 0x20, 0x38, 0x2e, 0x32, + 0x30, 0x31, 0x38, 0x35, 0x31, 0x32, 0x2c, 0x32, + 0x34, 0x2e, 0x31, 0x33, 0x35, 0x30, 0x31, 0x20, + 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, 0x31, + 0x32, 0x2c, 0x32, 0x33, 0x2e, 0x37, 0x37, 0x36, + 0x34, 0x37, 0x36, 0x20, 0x43, 0x20, 0x37, 0x2e, + 0x37, 0x38, 0x37, 0x38, 0x35, 0x31, 0x32, 0x2c, + 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, 0x39, 0x34, + 0x31, 0x20, 0x37, 0x2e, 0x39, 0x31, 0x30, 0x38, + 0x33, 0x35, 0x37, 0x2c, 0x32, 0x32, 0x2e, 0x39, + 0x35, 0x38, 0x39, 0x35, 0x37, 0x20, 0x38, 0x2e, + 0x32, 0x36, 0x39, 0x33, 0x37, 0x30, 0x33, 0x2c, + 0x32, 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, 0x35, + 0x36, 0x20, 0x43, 0x20, 0x38, 0x2e, 0x36, 0x32, + 0x37, 0x39, 0x30, 0x34, 0x2c, 0x32, 0x32, 0x2e, + 0x35, 0x34, 0x34, 0x39, 0x35, 0x37, 0x20, 0x39, + 0x2e, 0x30, 0x38, 0x36, 0x38, 0x38, 0x39, 0x33, + 0x2c, 0x32, 0x32, 0x2e, 0x36, 0x36, 0x37, 0x39, + 0x34, 0x31, 0x20, 0x39, 0x2e, 0x32, 0x39, 0x33, + 0x38, 0x38, 0x39, 0x33, 0x2c, 0x32, 0x33, 0x2e, + 0x30, 0x32, 0x36, 0x34, 0x37, 0x36, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, + 0x38, 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, 0x66, + 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, + 0x36, 0x35, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x30, + 0x35, 0x31, 0x34, 0x39, 0x2c, 0x31, 0x32, 0x2e, + 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, 0x20, 0x43, + 0x20, 0x32, 0x38, 0x2e, 0x32, 0x31, 0x32, 0x31, + 0x34, 0x39, 0x2c, 0x31, 0x32, 0x2e, 0x35, 0x38, + 0x32, 0x30, 0x35, 0x39, 0x20, 0x32, 0x38, 0x2e, + 0x30, 0x38, 0x39, 0x31, 0x36, 0x34, 0x2c, 0x31, + 0x33, 0x2e, 0x30, 0x34, 0x31, 0x30, 0x34, 0x34, + 0x20, 0x32, 0x37, 0x2e, 0x37, 0x33, 0x30, 0x36, + 0x33, 0x2c, 0x31, 0x33, 0x2e, 0x32, 0x34, 0x38, + 0x30, 0x34, 0x34, 0x20, 0x43, 0x20, 0x32, 0x37, + 0x2e, 0x33, 0x37, 0x32, 0x30, 0x39, 0x35, 0x2c, + 0x31, 0x33, 0x2e, 0x34, 0x35, 0x35, 0x30, 0x34, + 0x34, 0x20, 0x32, 0x36, 0x2e, 0x39, 0x31, 0x33, + 0x31, 0x31, 0x31, 0x2c, 0x31, 0x33, 0x2e, 0x33, + 0x33, 0x32, 0x30, 0x35, 0x39, 0x20, 0x32, 0x36, + 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, 0x2c, + 0x31, 0x32, 0x2e, 0x39, 0x37, 0x33, 0x35, 0x32, + 0x35, 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, 0x34, + 0x39, 0x39, 0x31, 0x31, 0x31, 0x2c, 0x31, 0x32, + 0x2e, 0x36, 0x31, 0x34, 0x39, 0x39, 0x20, 0x32, + 0x36, 0x2e, 0x36, 0x32, 0x32, 0x30, 0x39, 0x35, + 0x2c, 0x31, 0x32, 0x2e, 0x31, 0x35, 0x36, 0x30, + 0x30, 0x36, 0x20, 0x32, 0x36, 0x2e, 0x39, 0x38, + 0x30, 0x36, 0x33, 0x2c, 0x31, 0x31, 0x2e, 0x39, + 0x34, 0x39, 0x30, 0x30, 0x36, 0x20, 0x43, 0x20, + 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, 0x31, 0x36, + 0x34, 0x2c, 0x31, 0x31, 0x2e, 0x37, 0x34, 0x32, + 0x30, 0x30, 0x36, 0x20, 0x32, 0x37, 0x2e, 0x37, + 0x39, 0x38, 0x31, 0x34, 0x39, 0x2c, 0x31, 0x31, + 0x2e, 0x38, 0x36, 0x34, 0x39, 0x39, 0x20, 0x32, + 0x38, 0x2e, 0x30, 0x30, 0x35, 0x31, 0x34, 0x39, + 0x2c, 0x31, 0x32, 0x2e, 0x32, 0x32, 0x33, 0x35, + 0x32, 0x35, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, + 0x38, 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, + 0x38, 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, 0x66, + 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, 0x32, 0x2e, + 0x39, 0x37, 0x33, 0x35, 0x32, 0x35, 0x2c, 0x32, + 0x36, 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, + 0x20, 0x43, 0x20, 0x31, 0x33, 0x2e, 0x33, 0x33, + 0x32, 0x30, 0x35, 0x39, 0x2c, 0x32, 0x36, 0x2e, + 0x39, 0x31, 0x33, 0x31, 0x31, 0x31, 0x20, 0x31, + 0x33, 0x2e, 0x34, 0x35, 0x35, 0x30, 0x34, 0x33, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x37, 0x32, 0x30, + 0x39, 0x37, 0x20, 0x31, 0x33, 0x2e, 0x32, 0x34, + 0x38, 0x30, 0x34, 0x34, 0x2c, 0x32, 0x37, 0x2e, + 0x37, 0x33, 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, + 0x20, 0x31, 0x33, 0x2e, 0x30, 0x34, 0x31, 0x30, + 0x34, 0x34, 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x38, + 0x39, 0x31, 0x36, 0x35, 0x20, 0x31, 0x32, 0x2e, + 0x35, 0x38, 0x32, 0x30, 0x35, 0x39, 0x2c, 0x32, + 0x38, 0x2e, 0x32, 0x31, 0x32, 0x31, 0x35, 0x20, + 0x31, 0x32, 0x2e, 0x32, 0x32, 0x33, 0x35, 0x32, + 0x35, 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x30, 0x35, + 0x31, 0x35, 0x20, 0x43, 0x20, 0x31, 0x31, 0x2e, + 0x38, 0x36, 0x34, 0x39, 0x39, 0x2c, 0x32, 0x37, + 0x2e, 0x37, 0x39, 0x38, 0x31, 0x35, 0x20, 0x31, + 0x31, 0x2e, 0x37, 0x34, 0x32, 0x30, 0x30, 0x36, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, 0x31, + 0x36, 0x35, 0x20, 0x31, 0x31, 0x2e, 0x39, 0x34, + 0x39, 0x30, 0x30, 0x36, 0x2c, 0x32, 0x36, 0x2e, + 0x39, 0x38, 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, + 0x20, 0x31, 0x32, 0x2e, 0x31, 0x35, 0x36, 0x30, + 0x30, 0x35, 0x2c, 0x32, 0x36, 0x2e, 0x36, 0x32, + 0x32, 0x30, 0x39, 0x37, 0x20, 0x31, 0x32, 0x2e, + 0x36, 0x31, 0x34, 0x39, 0x39, 0x2c, 0x32, 0x36, + 0x2e, 0x34, 0x39, 0x39, 0x31, 0x31, 0x31, 0x20, + 0x31, 0x32, 0x2e, 0x39, 0x37, 0x33, 0x35, 0x32, + 0x35, 0x2c, 0x32, 0x36, 0x2e, 0x37, 0x30, 0x36, + 0x31, 0x31, 0x31, 0x20, 0x7a, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x35, 0x36, 0x35, 0x35, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, + 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x32, 0x33, 0x2e, 0x37, 0x37, 0x36, 0x34, 0x37, + 0x36, 0x2c, 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, + 0x35, 0x31, 0x38, 0x20, 0x43, 0x20, 0x32, 0x34, + 0x2e, 0x31, 0x33, 0x35, 0x30, 0x31, 0x2c, 0x38, + 0x2e, 0x32, 0x30, 0x31, 0x38, 0x35, 0x31, 0x38, + 0x20, 0x32, 0x34, 0x2e, 0x32, 0x35, 0x37, 0x39, + 0x39, 0x34, 0x2c, 0x38, 0x2e, 0x36, 0x36, 0x30, + 0x38, 0x33, 0x37, 0x32, 0x20, 0x32, 0x34, 0x2e, + 0x30, 0x35, 0x30, 0x39, 0x39, 0x35, 0x2c, 0x39, + 0x2e, 0x30, 0x31, 0x39, 0x33, 0x37, 0x30, 0x38, + 0x20, 0x43, 0x20, 0x32, 0x33, 0x2e, 0x38, 0x34, + 0x33, 0x39, 0x39, 0x35, 0x2c, 0x39, 0x2e, 0x33, + 0x37, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, 0x32, + 0x33, 0x2e, 0x33, 0x38, 0x35, 0x30, 0x31, 0x2c, + 0x39, 0x2e, 0x35, 0x30, 0x30, 0x38, 0x38, 0x39, + 0x39, 0x20, 0x32, 0x33, 0x2e, 0x30, 0x32, 0x36, + 0x34, 0x37, 0x36, 0x2c, 0x39, 0x2e, 0x32, 0x39, + 0x33, 0x38, 0x38, 0x39, 0x39, 0x20, 0x43, 0x20, + 0x32, 0x32, 0x2e, 0x36, 0x36, 0x37, 0x39, 0x34, + 0x31, 0x2c, 0x39, 0x2e, 0x30, 0x38, 0x36, 0x38, + 0x38, 0x39, 0x39, 0x20, 0x32, 0x32, 0x2e, 0x35, + 0x34, 0x34, 0x39, 0x35, 0x36, 0x2c, 0x38, 0x2e, + 0x36, 0x32, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, + 0x32, 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, 0x35, + 0x36, 0x2c, 0x38, 0x2e, 0x32, 0x36, 0x39, 0x33, + 0x37, 0x30, 0x38, 0x20, 0x43, 0x20, 0x32, 0x32, + 0x2e, 0x39, 0x35, 0x38, 0x39, 0x35, 0x36, 0x2c, + 0x37, 0x2e, 0x39, 0x31, 0x30, 0x38, 0x33, 0x37, + 0x32, 0x20, 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, + 0x39, 0x34, 0x31, 0x2c, 0x37, 0x2e, 0x37, 0x38, + 0x37, 0x38, 0x35, 0x31, 0x38, 0x20, 0x32, 0x33, + 0x2e, 0x37, 0x37, 0x36, 0x34, 0x37, 0x36, 0x2c, + 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, 0x31, + 0x38, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, 0x36, + 0x35, 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, + 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x70, 0x61, 0x74, 0x68, 0x35, 0x36, 0x36, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x31, 0x38, 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x35, + 0x32, 0x39, 0x35, 0x32, 0x20, 0x43, 0x20, 0x31, + 0x38, 0x2e, 0x34, 0x31, 0x34, 0x2c, 0x32, 0x38, + 0x2e, 0x30, 0x35, 0x32, 0x39, 0x35, 0x32, 0x20, + 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, 0x32, 0x38, + 0x2e, 0x33, 0x38, 0x38, 0x39, 0x35, 0x33, 0x20, + 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, 0x32, 0x38, + 0x2e, 0x38, 0x30, 0x32, 0x39, 0x35, 0x32, 0x20, + 0x43, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, + 0x32, 0x39, 0x2e, 0x32, 0x31, 0x36, 0x39, 0x35, + 0x32, 0x20, 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, + 0x2c, 0x32, 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x31, 0x38, 0x2c, 0x32, 0x39, + 0x2e, 0x35, 0x35, 0x32, 0x39, 0x35, 0x32, 0x20, + 0x43, 0x20, 0x31, 0x37, 0x2e, 0x35, 0x38, 0x36, + 0x2c, 0x32, 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, + 0x2c, 0x32, 0x39, 0x2e, 0x32, 0x31, 0x36, 0x39, + 0x35, 0x32, 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, + 0x2c, 0x32, 0x38, 0x2e, 0x38, 0x30, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x43, 0x20, 0x31, 0x37, 0x2e, + 0x32, 0x35, 0x2c, 0x32, 0x38, 0x2e, 0x33, 0x38, + 0x38, 0x39, 0x35, 0x33, 0x20, 0x31, 0x37, 0x2e, + 0x35, 0x38, 0x36, 0x2c, 0x32, 0x38, 0x2e, 0x30, + 0x35, 0x32, 0x39, 0x35, 0x32, 0x20, 0x31, 0x38, + 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, + 0x38, 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x35, 0x36, 0x36, 0x33, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, + 0x38, 0x2c, 0x36, 0x2e, 0x34, 0x34, 0x37, 0x30, + 0x35, 0x20, 0x43, 0x20, 0x31, 0x38, 0x2e, 0x34, + 0x31, 0x34, 0x2c, 0x36, 0x2e, 0x34, 0x34, 0x37, + 0x30, 0x35, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x2c, 0x36, 0x2e, 0x37, 0x38, 0x33, 0x30, 0x35, + 0x31, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, + 0x37, 0x2e, 0x31, 0x39, 0x37, 0x30, 0x35, 0x20, + 0x43, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, + 0x37, 0x2e, 0x36, 0x31, 0x31, 0x30, 0x35, 0x20, + 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, 0x2c, 0x37, + 0x2e, 0x39, 0x34, 0x37, 0x30, 0x35, 0x20, 0x31, + 0x38, 0x2c, 0x37, 0x2e, 0x39, 0x34, 0x37, 0x30, + 0x35, 0x20, 0x43, 0x20, 0x31, 0x37, 0x2e, 0x35, + 0x38, 0x36, 0x2c, 0x37, 0x2e, 0x39, 0x34, 0x37, + 0x30, 0x35, 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, + 0x2c, 0x37, 0x2e, 0x36, 0x31, 0x31, 0x30, 0x35, + 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, 0x2c, 0x37, + 0x2e, 0x31, 0x39, 0x37, 0x30, 0x35, 0x20, 0x43, + 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, 0x2c, 0x36, + 0x2e, 0x37, 0x38, 0x33, 0x30, 0x35, 0x31, 0x20, + 0x31, 0x37, 0x2e, 0x35, 0x38, 0x36, 0x2c, 0x36, + 0x2e, 0x34, 0x34, 0x37, 0x30, 0x35, 0x20, 0x31, + 0x38, 0x2c, 0x36, 0x2e, 0x34, 0x34, 0x37, 0x30, + 0x35, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, + 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x38, + 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, + 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, + 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x32, 0x33, 0x2e, 0x30, + 0x32, 0x36, 0x34, 0x37, 0x36, 0x2c, 0x32, 0x36, + 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, 0x20, + 0x43, 0x20, 0x32, 0x33, 0x2e, 0x33, 0x38, 0x35, + 0x30, 0x31, 0x2c, 0x32, 0x36, 0x2e, 0x34, 0x39, + 0x39, 0x31, 0x31, 0x31, 0x20, 0x32, 0x33, 0x2e, + 0x38, 0x34, 0x33, 0x39, 0x39, 0x35, 0x2c, 0x32, + 0x36, 0x2e, 0x36, 0x32, 0x32, 0x30, 0x39, 0x37, + 0x20, 0x32, 0x34, 0x2e, 0x30, 0x35, 0x30, 0x39, + 0x39, 0x35, 0x2c, 0x32, 0x36, 0x2e, 0x39, 0x38, + 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, 0x20, 0x32, + 0x34, 0x2e, 0x32, 0x35, 0x37, 0x39, 0x39, 0x35, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, 0x31, + 0x36, 0x35, 0x20, 0x32, 0x34, 0x2e, 0x31, 0x33, + 0x35, 0x30, 0x31, 0x2c, 0x32, 0x37, 0x2e, 0x37, + 0x39, 0x38, 0x31, 0x35, 0x20, 0x32, 0x33, 0x2e, + 0x37, 0x37, 0x36, 0x34, 0x37, 0x36, 0x2c, 0x32, + 0x38, 0x2e, 0x30, 0x30, 0x35, 0x31, 0x35, 0x20, + 0x43, 0x20, 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, + 0x39, 0x34, 0x31, 0x2c, 0x32, 0x38, 0x2e, 0x32, + 0x31, 0x32, 0x31, 0x35, 0x20, 0x32, 0x32, 0x2e, + 0x39, 0x35, 0x38, 0x39, 0x35, 0x37, 0x2c, 0x32, + 0x38, 0x2e, 0x30, 0x38, 0x39, 0x31, 0x36, 0x35, + 0x20, 0x32, 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, + 0x35, 0x36, 0x2c, 0x32, 0x37, 0x2e, 0x37, 0x33, + 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, 0x20, 0x32, + 0x32, 0x2e, 0x35, 0x34, 0x34, 0x39, 0x35, 0x37, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x37, 0x32, 0x30, + 0x39, 0x37, 0x20, 0x32, 0x32, 0x2e, 0x36, 0x36, + 0x37, 0x39, 0x34, 0x31, 0x2c, 0x32, 0x36, 0x2e, + 0x39, 0x31, 0x33, 0x31, 0x31, 0x31, 0x20, 0x32, + 0x33, 0x2e, 0x30, 0x32, 0x36, 0x34, 0x37, 0x36, + 0x2c, 0x32, 0x36, 0x2e, 0x37, 0x30, 0x36, 0x31, + 0x31, 0x31, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, + 0x36, 0x36, 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, + 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, + 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, 0x35, + 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, + 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, + 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, + 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, + 0x32, 0x2e, 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, + 0x2c, 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, + 0x31, 0x38, 0x20, 0x43, 0x20, 0x31, 0x32, 0x2e, + 0x35, 0x38, 0x32, 0x30, 0x35, 0x39, 0x2c, 0x37, + 0x2e, 0x37, 0x38, 0x37, 0x38, 0x35, 0x31, 0x38, + 0x20, 0x31, 0x33, 0x2e, 0x30, 0x34, 0x31, 0x30, + 0x34, 0x34, 0x2c, 0x37, 0x2e, 0x39, 0x31, 0x30, + 0x38, 0x33, 0x37, 0x32, 0x20, 0x31, 0x33, 0x2e, + 0x32, 0x34, 0x38, 0x30, 0x34, 0x34, 0x2c, 0x38, + 0x2e, 0x32, 0x36, 0x39, 0x33, 0x37, 0x30, 0x38, + 0x20, 0x43, 0x20, 0x31, 0x33, 0x2e, 0x34, 0x35, + 0x35, 0x30, 0x34, 0x34, 0x2c, 0x38, 0x2e, 0x36, + 0x32, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, 0x31, + 0x33, 0x2e, 0x33, 0x33, 0x32, 0x30, 0x35, 0x39, + 0x2c, 0x39, 0x2e, 0x30, 0x38, 0x36, 0x38, 0x38, + 0x39, 0x39, 0x20, 0x31, 0x32, 0x2e, 0x39, 0x37, + 0x33, 0x35, 0x32, 0x35, 0x2c, 0x39, 0x2e, 0x32, + 0x39, 0x33, 0x38, 0x38, 0x39, 0x39, 0x20, 0x43, + 0x20, 0x31, 0x32, 0x2e, 0x36, 0x31, 0x34, 0x39, + 0x39, 0x2c, 0x39, 0x2e, 0x35, 0x30, 0x30, 0x38, + 0x38, 0x39, 0x39, 0x20, 0x31, 0x32, 0x2e, 0x31, + 0x35, 0x36, 0x30, 0x30, 0x36, 0x2c, 0x39, 0x2e, + 0x33, 0x37, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, + 0x31, 0x31, 0x2e, 0x39, 0x34, 0x39, 0x30, 0x30, + 0x36, 0x2c, 0x39, 0x2e, 0x30, 0x31, 0x39, 0x33, + 0x37, 0x30, 0x38, 0x20, 0x43, 0x20, 0x31, 0x31, + 0x2e, 0x37, 0x34, 0x32, 0x30, 0x30, 0x36, 0x2c, + 0x38, 0x2e, 0x36, 0x36, 0x30, 0x38, 0x33, 0x37, + 0x32, 0x20, 0x31, 0x31, 0x2e, 0x38, 0x36, 0x34, + 0x39, 0x39, 0x2c, 0x38, 0x2e, 0x32, 0x30, 0x31, + 0x38, 0x35, 0x31, 0x38, 0x20, 0x31, 0x32, 0x2e, + 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, 0x2c, 0x37, + 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, 0x31, 0x38, + 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, 0x36, 0x36, + 0x39, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x35, 0x36, 0x37, 0x33, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x32, + 0x36, 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, + 0x2c, 0x32, 0x33, 0x2e, 0x30, 0x32, 0x36, 0x34, + 0x37, 0x36, 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, + 0x39, 0x31, 0x33, 0x31, 0x31, 0x31, 0x2c, 0x32, + 0x32, 0x2e, 0x36, 0x36, 0x37, 0x39, 0x34, 0x32, + 0x20, 0x32, 0x37, 0x2e, 0x33, 0x37, 0x32, 0x30, + 0x39, 0x37, 0x2c, 0x32, 0x32, 0x2e, 0x35, 0x34, + 0x34, 0x39, 0x35, 0x38, 0x20, 0x32, 0x37, 0x2e, + 0x37, 0x33, 0x30, 0x36, 0x33, 0x31, 0x2c, 0x32, + 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, 0x35, 0x37, + 0x20, 0x43, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x38, + 0x39, 0x31, 0x36, 0x35, 0x2c, 0x32, 0x32, 0x2e, + 0x39, 0x35, 0x38, 0x39, 0x35, 0x37, 0x20, 0x32, + 0x38, 0x2e, 0x32, 0x31, 0x32, 0x31, 0x35, 0x2c, + 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, 0x39, 0x34, + 0x32, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x30, 0x35, + 0x31, 0x35, 0x2c, 0x32, 0x33, 0x2e, 0x37, 0x37, + 0x36, 0x34, 0x37, 0x36, 0x20, 0x43, 0x20, 0x32, + 0x37, 0x2e, 0x37, 0x39, 0x38, 0x31, 0x35, 0x2c, + 0x32, 0x34, 0x2e, 0x31, 0x33, 0x35, 0x30, 0x31, + 0x31, 0x20, 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, + 0x31, 0x36, 0x35, 0x2c, 0x32, 0x34, 0x2e, 0x32, + 0x35, 0x37, 0x39, 0x39, 0x35, 0x20, 0x32, 0x36, + 0x2e, 0x39, 0x38, 0x30, 0x36, 0x33, 0x31, 0x2c, + 0x32, 0x34, 0x2e, 0x30, 0x35, 0x30, 0x39, 0x39, + 0x35, 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, 0x36, + 0x32, 0x32, 0x30, 0x39, 0x37, 0x2c, 0x32, 0x33, + 0x2e, 0x38, 0x34, 0x33, 0x39, 0x39, 0x36, 0x20, + 0x32, 0x36, 0x2e, 0x34, 0x39, 0x39, 0x31, 0x31, + 0x31, 0x2c, 0x32, 0x33, 0x2e, 0x33, 0x38, 0x35, + 0x30, 0x31, 0x31, 0x20, 0x32, 0x36, 0x2e, 0x37, + 0x30, 0x36, 0x31, 0x31, 0x31, 0x2c, 0x32, 0x33, + 0x2e, 0x30, 0x32, 0x36, 0x34, 0x37, 0x36, 0x20, + 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, + 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, + 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, + 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x35, 0x36, 0x37, 0x35, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x37, 0x2e, 0x39, 0x39, + 0x34, 0x38, 0x35, 0x31, 0x38, 0x2c, 0x31, 0x32, + 0x2e, 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, 0x20, + 0x43, 0x20, 0x38, 0x2e, 0x32, 0x30, 0x31, 0x38, + 0x35, 0x31, 0x38, 0x2c, 0x31, 0x31, 0x2e, 0x38, + 0x36, 0x34, 0x39, 0x39, 0x31, 0x20, 0x38, 0x2e, + 0x36, 0x36, 0x30, 0x38, 0x33, 0x37, 0x32, 0x2c, + 0x31, 0x31, 0x2e, 0x37, 0x34, 0x32, 0x30, 0x30, + 0x37, 0x20, 0x39, 0x2e, 0x30, 0x31, 0x39, 0x33, + 0x37, 0x30, 0x38, 0x2c, 0x31, 0x31, 0x2e, 0x39, + 0x34, 0x39, 0x30, 0x30, 0x36, 0x20, 0x43, 0x20, + 0x39, 0x2e, 0x33, 0x37, 0x37, 0x39, 0x30, 0x35, + 0x34, 0x2c, 0x31, 0x32, 0x2e, 0x31, 0x35, 0x36, + 0x30, 0x30, 0x36, 0x20, 0x39, 0x2e, 0x35, 0x30, + 0x30, 0x38, 0x38, 0x39, 0x39, 0x2c, 0x31, 0x32, + 0x2e, 0x36, 0x31, 0x34, 0x39, 0x39, 0x31, 0x20, + 0x39, 0x2e, 0x32, 0x39, 0x33, 0x38, 0x38, 0x39, + 0x39, 0x2c, 0x31, 0x32, 0x2e, 0x39, 0x37, 0x33, + 0x35, 0x32, 0x35, 0x20, 0x43, 0x20, 0x39, 0x2e, + 0x30, 0x38, 0x36, 0x38, 0x38, 0x39, 0x39, 0x2c, + 0x31, 0x33, 0x2e, 0x33, 0x33, 0x32, 0x30, 0x36, + 0x20, 0x38, 0x2e, 0x36, 0x32, 0x37, 0x39, 0x30, + 0x35, 0x34, 0x2c, 0x31, 0x33, 0x2e, 0x34, 0x35, + 0x35, 0x30, 0x34, 0x34, 0x20, 0x38, 0x2e, 0x32, + 0x36, 0x39, 0x33, 0x37, 0x30, 0x38, 0x2c, 0x31, + 0x33, 0x2e, 0x32, 0x34, 0x38, 0x30, 0x34, 0x34, + 0x20, 0x43, 0x20, 0x37, 0x2e, 0x39, 0x31, 0x30, + 0x38, 0x33, 0x37, 0x32, 0x2c, 0x31, 0x33, 0x2e, + 0x30, 0x34, 0x31, 0x30, 0x34, 0x35, 0x20, 0x37, + 0x2e, 0x37, 0x38, 0x37, 0x38, 0x35, 0x31, 0x38, + 0x2c, 0x31, 0x32, 0x2e, 0x35, 0x38, 0x32, 0x30, + 0x36, 0x20, 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, + 0x35, 0x31, 0x38, 0x2c, 0x31, 0x32, 0x2e, 0x32, + 0x32, 0x33, 0x35, 0x32, 0x35, 0x20, 0x7a, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x38, + 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, + 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, + 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x67, + 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x2f, 0x67, 0x3e, + 0x0a, 0x3c, 0x2f, 0x73, 0x76, 0x67, 0x3e, 0x0a, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x2d, 0x6d, 0x61, + 0x70, 0x2e, 0x70, 0x6e, 0x67, 0x00, 0x00, 0x00, + 0x9c, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, + 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52, + 0x00, 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, 0xf0, + 0x08, 0x06, 0x00, 0x00, 0x00, 0xd8, 0x75, 0xb7, + 0xba, 0x00, 0x00, 0x00, 0x01, 0x73, 0x52, 0x47, + 0x42, 0x00, 0xae, 0xce, 0x1c, 0xe9, 0x00, 0x00, + 0x00, 0x06, 0x62, 0x4b, 0x47, 0x44, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0xa0, 0xbd, 0xa7, 0x93, + 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, + 0x00, 0x00, 0x0d, 0xd7, 0x00, 0x00, 0x0d, 0xd7, + 0x01, 0x42, 0x28, 0x9b, 0x78, 0x00, 0x00, 0x00, + 0x07, 0x74, 0x49, 0x4d, 0x45, 0x07, 0xd8, 0x02, + 0x08, 0x06, 0x00, 0x2f, 0x22, 0x91, 0x0e, 0x86, + 0x00, 0x00, 0x20, 0x00, 0x49, 0x44, 0x41, 0x54, + 0x78, 0xda, 0xec, 0xbd, 0xd7, 0x76, 0x64, 0x57, + 0x96, 0xae, 0xf7, 0x6f, 0x6f, 0xc2, 0x3b, 0x78, + 0x97, 0x09, 0x20, 0x2d, 0xc9, 0x64, 0x91, 0x45, + 0x53, 0xac, 0x53, 0xd5, 0x4e, 0x3a, 0x7d, 0xa1, + 0x27, 0xd0, 0xd0, 0xbd, 0xf4, 0x00, 0xd2, 0x03, + 0x9c, 0x57, 0xd2, 0xd0, 0x18, 0x3a, 0xaa, 0x6e, + 0x75, 0xab, 0xab, 0xba, 0x58, 0x55, 0xf4, 0xe9, + 0x98, 0x4c, 0x03, 0xef, 0x11, 0xde, 0x6c, 0xef, + 0x96, 0x2e, 0x76, 0x20, 0x12, 0x01, 0x04, 0x80, + 0x08, 0x20, 0x02, 0x2e, 0xd6, 0x77, 0x45, 0x22, + 0x61, 0x22, 0x76, 0xec, 0xbd, 0xe6, 0x5c, 0x73, + 0xcd, 0xf9, 0xff, 0x0c, 0x21, 0x84, 0x80, 0x42, + 0xa1, 0x50, 0x28, 0x14, 0xca, 0xa5, 0xc2, 0xd2, + 0x4b, 0x40, 0xa1, 0x50, 0x28, 0x14, 0x0a, 0x0d, + 0xc0, 0x14, 0x0a, 0x85, 0x42, 0xa1, 0xd0, 0x00, + 0x4c, 0xa1, 0x50, 0x28, 0x14, 0x0a, 0x85, 0x06, + 0x60, 0x0a, 0x85, 0x42, 0xa1, 0x50, 0x68, 0x00, + 0xa6, 0x50, 0x28, 0x14, 0x0a, 0x85, 0x42, 0x03, + 0x30, 0x85, 0x42, 0xa1, 0x50, 0x28, 0x37, 0x0a, + 0x9e, 0x5e, 0x02, 0xca, 0xb0, 0xe1, 0x78, 0x01, + 0x82, 0x80, 0x80, 0xe3, 0x58, 0xb8, 0x5e, 0x00, + 0x96, 0x65, 0x20, 0x0b, 0x61, 0x2e, 0xba, 0x5f, + 0xb3, 0x21, 0x35, 0xff, 0xdb, 0xb4, 0x7d, 0x98, + 0x6e, 0x80, 0xe9, 0x8c, 0x8c, 0xd5, 0xbc, 0x81, + 0xbb, 0x23, 0x11, 0x3c, 0x5d, 0xab, 0xe2, 0xd1, + 0x54, 0x1c, 0x00, 0x40, 0x00, 0x14, 0x6a, 0x36, + 0x14, 0x89, 0x83, 0x2a, 0x72, 0x70, 0x03, 0x02, + 0xcf, 0x0b, 0xa0, 0x88, 0x1c, 0x62, 0xca, 0xfb, + 0x47, 0x8b, 0x00, 0x60, 0x8e, 0xbc, 0x06, 0x42, + 0x80, 0x9a, 0xe1, 0x42, 0x11, 0x39, 0x04, 0x84, + 0x40, 0x11, 0x39, 0xfa, 0xc1, 0x50, 0x28, 0x43, + 0x06, 0x43, 0xe7, 0x80, 0x29, 0xb7, 0x99, 0xba, + 0xe9, 0x62, 0x2d, 0x6f, 0x00, 0x0c, 0x03, 0xc7, + 0xf5, 0x41, 0x00, 0xa4, 0x23, 0x22, 0x44, 0x81, + 0x45, 0x36, 0x26, 0xb6, 0x05, 0xbe, 0x86, 0xe9, + 0x81, 0x61, 0x19, 0x44, 0x25, 0x0e, 0x7b, 0x55, + 0x0b, 0x09, 0x55, 0x80, 0x22, 0x72, 0x28, 0xd4, + 0x6d, 0x58, 0x4e, 0x80, 0xe9, 0xac, 0x82, 0xcd, + 0xa2, 0x09, 0x8e, 0x63, 0xf0, 0x66, 0xa7, 0x01, + 0xdb, 0x0d, 0xe0, 0xfa, 0x01, 0x3a, 0x3d, 0x41, + 0xb2, 0x18, 0x06, 0xe5, 0x74, 0x54, 0xc4, 0x58, + 0x52, 0x42, 0x2a, 0x22, 0x82, 0x61, 0x8e, 0x27, + 0x02, 0x22, 0xcf, 0x82, 0x10, 0xa0, 0xa4, 0x39, + 0xe0, 0x58, 0x06, 0xa9, 0x88, 0x00, 0x2f, 0x08, + 0x7f, 0x61, 0xc3, 0x70, 0x91, 0x8a, 0x8a, 0xf4, + 0x43, 0xa4, 0x50, 0x68, 0x00, 0xa6, 0x50, 0x28, + 0x27, 0xf1, 0xe7, 0xd7, 0x25, 0x94, 0x35, 0xe7, + 0xc4, 0x7f, 0x17, 0x79, 0x16, 0xe3, 0x49, 0xb9, + 0x6d, 0x2b, 0xec, 0x07, 0x04, 0x41, 0x40, 0x50, + 0x37, 0x3d, 0x68, 0x96, 0x87, 0x5c, 0x5c, 0x82, + 0xeb, 0x07, 0x48, 0x28, 0x02, 0xee, 0x8e, 0x46, + 0xe0, 0x05, 0x04, 0xa9, 0x88, 0x40, 0x2f, 0x6e, + 0x07, 0x48, 0xb3, 0x42, 0xd1, 0x09, 0x3f, 0x20, + 0xf0, 0x9b, 0xcb, 0x9a, 0xe7, 0x13, 0x10, 0x42, + 0x10, 0x90, 0xf0, 0xeb, 0x00, 0x10, 0x10, 0x02, + 0xd7, 0x0b, 0xa0, 0x5b, 0x3e, 0x1c, 0x3f, 0x00, + 0xc7, 0x32, 0x00, 0x09, 0xbf, 0x9e, 0x8e, 0x8a, + 0x10, 0xf8, 0xb0, 0x02, 0xc2, 0x30, 0x80, 0xc4, + 0xb3, 0x48, 0xd3, 0x24, 0x88, 0x42, 0x03, 0x30, + 0x85, 0x72, 0xb5, 0x7c, 0xf3, 0xae, 0x0c, 0xc3, + 0xf1, 0xf1, 0x78, 0x3a, 0x8e, 0xba, 0xe1, 0xc1, + 0xf1, 0x02, 0x64, 0x62, 0x22, 0x46, 0x13, 0x12, + 0x7e, 0x58, 0xad, 0x62, 0xbb, 0x64, 0x1e, 0xfb, + 0x19, 0x8e, 0x65, 0x30, 0x99, 0x56, 0x90, 0x8a, + 0x08, 0x20, 0x04, 0xa8, 0x5b, 0x2e, 0x36, 0x0a, + 0x06, 0x82, 0x33, 0x9e, 0xba, 0xa8, 0xcc, 0x23, + 0x13, 0x7b, 0xbf, 0xf0, 0xb3, 0x0c, 0x13, 0x06, + 0x8a, 0x66, 0x30, 0x97, 0x05, 0x16, 0x11, 0x85, + 0x87, 0xc4, 0x1d, 0x6f, 0xe3, 0x08, 0x08, 0x81, + 0x66, 0x79, 0xb0, 0x9c, 0x00, 0x02, 0x1f, 0xfe, + 0x9c, 0x17, 0x10, 0xf8, 0x3e, 0x41, 0x00, 0xc0, + 0xf7, 0x83, 0xe6, 0xf7, 0x85, 0x01, 0x0a, 0x00, + 0x6c, 0xd7, 0x87, 0xe5, 0x06, 0x88, 0x48, 0x1c, + 0x78, 0xee, 0x94, 0xd6, 0x10, 0x06, 0x10, 0xb9, + 0xf0, 0x75, 0xf0, 0x1c, 0x8b, 0xa8, 0xc4, 0x41, + 0x95, 0xde, 0x97, 0xdb, 0x39, 0x8e, 0x01, 0x7b, + 0x28, 0xc9, 0x20, 0xcd, 0xbf, 0x91, 0xaf, 0xdb, + 0xf0, 0x9a, 0x7f, 0xf7, 0xac, 0xc0, 0xea, 0x78, + 0xe4, 0x58, 0xc9, 0xfe, 0x30, 0xae, 0x17, 0xa0, + 0xac, 0x3b, 0x68, 0x98, 0xde, 0xf9, 0x16, 0x3d, + 0x06, 0xe8, 0x65, 0xd5, 0xbb, 0x3f, 0x11, 0xc3, + 0xfd, 0x89, 0xe8, 0x85, 0xef, 0x9f, 0x80, 0x90, + 0x56, 0x12, 0xd0, 0xfa, 0x5a, 0x40, 0xc0, 0x36, + 0x2f, 0x98, 0xeb, 0xbd, 0xff, 0x37, 0xd7, 0x0f, + 0xe0, 0xf9, 0x04, 0x1c, 0xcb, 0x40, 0x95, 0x38, + 0xf8, 0x01, 0x39, 0xf1, 0x35, 0x0b, 0x3c, 0x03, + 0x81, 0xa3, 0xed, 0x3c, 0x34, 0x00, 0x53, 0x28, + 0xb7, 0x18, 0xcb, 0xf5, 0xc1, 0x32, 0x0c, 0x78, + 0x8e, 0xc5, 0x0f, 0x2b, 0x15, 0xec, 0x56, 0x2c, + 0xb0, 0x0c, 0x83, 0xaf, 0xee, 0xa7, 0xf1, 0x74, + 0xad, 0x86, 0x98, 0xc2, 0x63, 0x32, 0xad, 0xc0, + 0xf3, 0x03, 0x3c, 0xdf, 0xa8, 0x23, 0x08, 0x08, + 0xe6, 0x72, 0x2a, 0xee, 0x4f, 0xc6, 0xe0, 0x7a, + 0x01, 0x36, 0x4a, 0x26, 0x2c, 0xc7, 0xc7, 0x6e, + 0xc5, 0x3a, 0xb6, 0x10, 0x53, 0x7a, 0x5c, 0xb8, + 0x00, 0x28, 0x12, 0x0f, 0x91, 0x63, 0x10, 0x91, + 0x79, 0x24, 0x23, 0x02, 0x02, 0x42, 0xf0, 0x7a, + 0x47, 0x03, 0x69, 0x5e, 0x5b, 0x86, 0x01, 0xb2, + 0x31, 0x09, 0x8b, 0xe3, 0x51, 0xc8, 0x02, 0x0b, + 0xcd, 0xf2, 0xc0, 0x73, 0x2c, 0xe2, 0x0a, 0x0f, + 0x02, 0xc0, 0xb0, 0x7d, 0xb8, 0x5e, 0x80, 0x42, + 0xdd, 0xc6, 0xf2, 0xbe, 0xde, 0xf6, 0xfb, 0x17, + 0xc7, 0xa3, 0x78, 0xb7, 0xab, 0xb5, 0xfe, 0x7f, + 0x2c, 0x29, 0xe3, 0xe1, 0x64, 0x0c, 0xa2, 0xc0, + 0xc2, 0xb0, 0x7d, 0x08, 0x5c, 0x98, 0xd4, 0xf0, + 0x2c, 0x03, 0xcf, 0x27, 0x10, 0x9b, 0xbb, 0xe6, + 0x62, 0xc3, 0x06, 0x00, 0xa4, 0xa3, 0x22, 0x1a, + 0xa6, 0x87, 0xa2, 0xe6, 0xa0, 0x61, 0xb8, 0xd0, + 0x2c, 0x1f, 0x96, 0xeb, 0x5f, 0xf8, 0x7d, 0x47, + 0x24, 0x1e, 0xa9, 0xa8, 0x00, 0x06, 0x40, 0x44, + 0xe6, 0xe1, 0x78, 0x01, 0xaa, 0x86, 0x0b, 0xcf, + 0x0b, 0x30, 0x95, 0x51, 0x30, 0x9e, 0x52, 0x10, + 0x04, 0xa4, 0xad, 0x07, 0xe1, 0x20, 0xa0, 0xbb, + 0x3e, 0x01, 0x48, 0x98, 0xc0, 0xf1, 0x1c, 0x73, + 0x28, 0x31, 0x40, 0x5b, 0xd2, 0x44, 0xa1, 0x01, + 0x98, 0x42, 0xb9, 0xf6, 0x14, 0x1b, 0x0e, 0x62, + 0x0a, 0x0f, 0x91, 0x67, 0x5b, 0x3b, 0x36, 0x42, + 0x80, 0xb7, 0xbb, 0x0d, 0xbc, 0xd9, 0xd1, 0x6e, + 0xc5, 0x7b, 0x64, 0x19, 0x20, 0x15, 0x93, 0x30, + 0x12, 0x13, 0xb1, 0x55, 0x32, 0xe1, 0xf8, 0x01, + 0x1c, 0x2f, 0x3c, 0xf7, 0x56, 0x44, 0xae, 0x75, + 0xae, 0x6d, 0x3a, 0x01, 0x2e, 0x73, 0x29, 0x19, + 0x4f, 0xc9, 0xf8, 0x68, 0x26, 0x01, 0x96, 0x05, + 0xbc, 0x00, 0x50, 0x04, 0x16, 0x65, 0xcd, 0xc1, + 0xd7, 0x6f, 0x4a, 0xad, 0x9d, 0xa2, 0x2c, 0xb0, + 0xf8, 0x2f, 0x0f, 0xb2, 0xd8, 0xad, 0x5a, 0x50, + 0x04, 0x0e, 0x11, 0x99, 0x83, 0x22, 0x72, 0x70, + 0xbd, 0x00, 0x60, 0xc2, 0x60, 0x56, 0x6c, 0x38, + 0x78, 0xba, 0x56, 0x85, 0x71, 0xa4, 0x9c, 0xad, + 0x4a, 0xdc, 0xb1, 0xaf, 0x5d, 0x35, 0x13, 0x29, + 0x19, 0x9f, 0xdc, 0x4d, 0x82, 0x65, 0x8e, 0x47, + 0xcb, 0xbf, 0xbe, 0x2d, 0xa3, 0x50, 0xb7, 0x11, + 0x91, 0x78, 0xb8, 0x5e, 0x80, 0x5c, 0x42, 0x82, + 0xe3, 0x05, 0x30, 0x1d, 0x1f, 0x86, 0xe3, 0x23, + 0x38, 0x92, 0xf0, 0x29, 0x22, 0x87, 0xa8, 0xcc, + 0xc3, 0x74, 0x7d, 0x68, 0xa6, 0x07, 0x59, 0xe4, + 0xf0, 0x68, 0x32, 0x86, 0xa9, 0x8c, 0x42, 0x1f, + 0x6c, 0x1a, 0x80, 0x29, 0x94, 0x9b, 0x4b, 0x40, + 0x08, 0xfe, 0xe5, 0x59, 0x1e, 0x8e, 0x17, 0x5c, + 0xeb, 0xd7, 0xa9, 0x88, 0x1c, 0x26, 0xd2, 0x32, + 0xb6, 0x4b, 0x16, 0xa6, 0x32, 0x0a, 0xe2, 0x2a, + 0x8f, 0xa5, 0x5d, 0x1d, 0x9a, 0xe5, 0xe1, 0xe1, + 0x64, 0x0c, 0xd9, 0x78, 0xd8, 0xa4, 0x26, 0xf2, + 0x2c, 0x02, 0x42, 0xb0, 0x51, 0x34, 0x11, 0x95, + 0x79, 0x08, 0x1c, 0x03, 0x91, 0x67, 0xa1, 0x88, + 0x1c, 0x76, 0x2b, 0x16, 0xa4, 0xe6, 0xee, 0xf2, + 0xe9, 0x5a, 0xed, 0xca, 0xde, 0x4b, 0x2a, 0x22, + 0xa0, 0xa2, 0xbb, 0x5d, 0x7f, 0xbf, 0xc8, 0xb3, + 0x88, 0xca, 0xfc, 0xa9, 0xe7, 0xf6, 0xd7, 0x8d, + 0xbb, 0x23, 0x11, 0x28, 0x12, 0x07, 0xcf, 0x0f, + 0x30, 0x9a, 0x90, 0x91, 0x6c, 0xf6, 0x07, 0x10, + 0x12, 0xee, 0x70, 0xfd, 0x20, 0xec, 0xa6, 0x5f, + 0xcd, 0x1b, 0x78, 0xb1, 0x51, 0x83, 0x2c, 0x84, + 0x9f, 0x51, 0xb7, 0xd7, 0x25, 0x19, 0x11, 0xf0, + 0xdb, 0xfb, 0x99, 0xd6, 0x51, 0x07, 0x85, 0x06, + 0x60, 0x0a, 0xe5, 0x46, 0x41, 0x08, 0xb0, 0x9a, + 0xd7, 0xf1, 0xf3, 0x66, 0x1d, 0xd7, 0xfd, 0xc1, + 0xfa, 0x87, 0xc7, 0x39, 0x44, 0x15, 0x1e, 0xe4, + 0xd0, 0x39, 0xe4, 0x49, 0xe4, 0xeb, 0x36, 0xbe, + 0x5f, 0xaa, 0x80, 0x61, 0x01, 0x16, 0x0c, 0x7c, + 0x42, 0xc0, 0x32, 0xcc, 0xb5, 0x4f, 0x32, 0x6e, + 0x33, 0x11, 0x89, 0x43, 0x54, 0x11, 0x50, 0xd1, + 0x1c, 0xa4, 0x22, 0x02, 0xa2, 0x32, 0x8f, 0x88, + 0xcc, 0x63, 0xb3, 0x64, 0x22, 0xa1, 0xf2, 0xf8, + 0x60, 0x3a, 0x0e, 0x96, 0x61, 0xf0, 0x7c, 0xbd, + 0x86, 0xb5, 0x82, 0xd1, 0xd5, 0xef, 0xe4, 0x58, + 0x06, 0x99, 0x98, 0x88, 0xc7, 0x53, 0xf1, 0x63, + 0x65, 0x6c, 0x0a, 0x0d, 0xc0, 0x94, 0x2b, 0xa4, + 0x50, 0xb7, 0xe1, 0xf9, 0x04, 0x92, 0xc0, 0x42, + 0xb7, 0x7c, 0x04, 0x84, 0x60, 0x2a, 0xa3, 0xd0, + 0x8c, 0xf9, 0x10, 0x7e, 0x40, 0xf0, 0xa7, 0x5f, + 0x8a, 0x30, 0x1d, 0xbf, 0xd5, 0xe0, 0x74, 0x5d, + 0x11, 0x38, 0x06, 0x8a, 0xc8, 0xc3, 0x70, 0x3c, + 0x24, 0x55, 0x01, 0x1f, 0xce, 0x24, 0x8e, 0x2d, + 0xba, 0x8e, 0x4f, 0xb0, 0xb4, 0xab, 0x61, 0x65, + 0x5f, 0x47, 0x40, 0x08, 0x72, 0x71, 0x09, 0x5f, + 0x2c, 0xa4, 0xf0, 0x7a, 0x47, 0xc3, 0xd2, 0x9e, + 0x46, 0x3f, 0xf0, 0x6b, 0xca, 0x78, 0x4a, 0x46, + 0x44, 0xe2, 0x61, 0x7b, 0x3e, 0xf6, 0xab, 0x76, + 0xcf, 0x89, 0x12, 0xcb, 0x30, 0x98, 0x1b, 0x55, + 0x31, 0x91, 0x52, 0x20, 0xf3, 0x2c, 0x14, 0x89, + 0x03, 0x7d, 0xca, 0x69, 0x00, 0xa6, 0x5c, 0x01, + 0xa6, 0xe3, 0xe3, 0xe5, 0x66, 0x1d, 0xbb, 0x15, + 0xeb, 0xd8, 0xbf, 0xc9, 0x22, 0x87, 0xb9, 0x9c, + 0x8a, 0xc5, 0xb1, 0x28, 0x18, 0xfa, 0x84, 0x02, + 0x00, 0x2c, 0xc7, 0x07, 0xc7, 0x31, 0xf8, 0x97, + 0x67, 0xf9, 0x1b, 0xd5, 0x6c, 0xa5, 0x88, 0x1c, + 0x3e, 0x9a, 0x4d, 0x20, 0x26, 0xf3, 0x70, 0xfd, + 0x00, 0x9b, 0x45, 0x13, 0x1b, 0x45, 0xa3, 0x35, + 0x97, 0x7c, 0xb0, 0x30, 0x4f, 0x67, 0x15, 0xc4, + 0x55, 0x01, 0x6b, 0x79, 0xfd, 0xdc, 0x9d, 0xc8, + 0x37, 0x89, 0x83, 0xb3, 0x6e, 0xdb, 0x0d, 0x6e, + 0xd4, 0xe7, 0xc9, 0x32, 0x0c, 0x92, 0x11, 0x01, + 0x71, 0x85, 0x47, 0xbc, 0x39, 0xd3, 0x6e, 0xda, + 0x3e, 0xf2, 0x75, 0x1b, 0x65, 0xcd, 0xe9, 0x29, + 0x28, 0x67, 0x62, 0x22, 0x22, 0x12, 0x0f, 0x96, + 0x05, 0x54, 0x89, 0x47, 0x44, 0xe4, 0xa0, 0x4a, + 0xe1, 0x39, 0x32, 0x4d, 0xc0, 0x69, 0x00, 0xa6, + 0xf4, 0x19, 0xd2, 0x0c, 0x24, 0x9b, 0x25, 0x13, + 0xef, 0x76, 0xb5, 0x33, 0x17, 0x1e, 0x55, 0xe2, + 0x90, 0x8e, 0x88, 0x78, 0x30, 0x19, 0x83, 0x2a, + 0x0d, 0xaf, 0xaa, 0x53, 0x10, 0x10, 0xfc, 0xcb, + 0xf3, 0xfc, 0x89, 0x02, 0x1d, 0x94, 0xeb, 0x07, + 0xcf, 0x85, 0x63, 0x3c, 0x3c, 0xc7, 0x80, 0x63, + 0x18, 0x70, 0x1c, 0x03, 0x59, 0xe0, 0x90, 0x8a, + 0x8a, 0x18, 0x89, 0x8b, 0x88, 0xca, 0x61, 0x55, + 0x60, 0xab, 0x64, 0xe2, 0xc7, 0xd5, 0xea, 0xb5, + 0x78, 0xcd, 0x22, 0xcf, 0xe2, 0xde, 0x44, 0x14, + 0xb2, 0xc0, 0xe1, 0x97, 0xad, 0x06, 0x74, 0xdb, + 0x3b, 0x14, 0x78, 0x81, 0x84, 0x2a, 0xe0, 0xc9, + 0x6c, 0x02, 0x71, 0x55, 0x38, 0x56, 0xa1, 0xe1, + 0x58, 0x06, 0x01, 0x01, 0x2a, 0xba, 0x03, 0xdb, + 0x0d, 0x60, 0xd8, 0x1e, 0x76, 0x2a, 0x16, 0x4c, + 0xdb, 0x47, 0x44, 0xe2, 0x00, 0x86, 0x41, 0x45, + 0x77, 0xba, 0xba, 0x7f, 0x05, 0x8e, 0xc5, 0x6f, + 0xee, 0xa7, 0x91, 0x3c, 0xf4, 0x77, 0x1c, 0x2f, + 0xec, 0xb8, 0x16, 0xf9, 0x30, 0x30, 0x7b, 0x7e, + 0x38, 0x87, 0x5d, 0x68, 0x06, 0xfe, 0x20, 0x20, + 0x90, 0x04, 0x0e, 0xa3, 0x09, 0x09, 0x35, 0xc3, + 0x85, 0x66, 0x79, 0x98, 0xc9, 0xaa, 0x88, 0xc8, + 0xe1, 0xb8, 0x95, 0xe3, 0x11, 0x48, 0x3c, 0x3b, + 0x14, 0xeb, 0x08, 0x0d, 0xc0, 0x5d, 0x2e, 0xaa, + 0xec, 0x10, 0x64, 0x79, 0xa6, 0xe3, 0xe3, 0x87, + 0x95, 0x2a, 0xea, 0x86, 0x0b, 0x9e, 0x67, 0x61, + 0x39, 0xfe, 0xb9, 0x16, 0x86, 0x54, 0x44, 0xc0, + 0x68, 0x42, 0x86, 0x17, 0x04, 0xd0, 0x2c, 0x1f, + 0x02, 0xcf, 0x20, 0x08, 0x08, 0x12, 0xaa, 0x88, + 0xa8, 0xcc, 0x61, 0xa7, 0x62, 0x81, 0x63, 0x18, + 0x4c, 0x66, 0x64, 0xc4, 0x14, 0xe1, 0xd6, 0x95, + 0xb6, 0x34, 0xcb, 0xc3, 0x1f, 0x5f, 0x15, 0xe9, + 0xa8, 0xd1, 0x35, 0x45, 0xe2, 0x59, 0xcc, 0xe4, + 0x54, 0x64, 0x62, 0x22, 0x52, 0x11, 0xe1, 0xd8, + 0x0c, 0x2d, 0x21, 0x80, 0xe3, 0x07, 0x28, 0x36, + 0x1c, 0xd4, 0x74, 0x17, 0x01, 0x21, 0xa8, 0xe9, + 0x2e, 0x4a, 0x57, 0xdc, 0xb0, 0xa5, 0x88, 0x1c, + 0xe6, 0xc7, 0x22, 0x48, 0x28, 0x42, 0xab, 0xfb, + 0xfe, 0x20, 0xe0, 0x19, 0x8e, 0x0f, 0x8e, 0x61, + 0x20, 0x8b, 0x2c, 0x38, 0x86, 0x39, 0xf7, 0x7a, + 0xf5, 0xd3, 0x5a, 0x0d, 0x32, 0xcf, 0x62, 0xbb, + 0x6a, 0xc1, 0xb0, 0xba, 0xab, 0x6e, 0x3c, 0x98, + 0x8c, 0x21, 0x13, 0x0d, 0xbb, 0xe4, 0x2b, 0x86, + 0x8b, 0xba, 0xe1, 0x5e, 0xf8, 0xbd, 0x8a, 0x3c, + 0x8b, 0xcf, 0x17, 0x52, 0xa7, 0x8a, 0xa0, 0xfc, + 0xbc, 0x55, 0xc7, 0x76, 0xd9, 0x82, 0xdf, 0x9c, + 0x97, 0x96, 0x04, 0x16, 0x11, 0x99, 0x83, 0x2c, + 0x70, 0x6d, 0x9d, 0xe2, 0x2c, 0x03, 0x4c, 0x65, + 0x55, 0x44, 0x0f, 0x05, 0xf4, 0xeb, 0xb2, 0xa6, + 0xd3, 0x00, 0x7c, 0x02, 0x86, 0xed, 0xa3, 0xac, + 0x39, 0xd8, 0x2c, 0x99, 0x28, 0x36, 0x6c, 0xfc, + 0xf6, 0x7e, 0x06, 0xe9, 0xa8, 0x88, 0x7c, 0xdd, + 0xc6, 0x48, 0x5c, 0xba, 0xb5, 0xef, 0xdb, 0x0f, + 0x08, 0xfe, 0xf0, 0x74, 0xbf, 0xad, 0xec, 0x38, + 0xe8, 0x4c, 0x3e, 0x17, 0x97, 0xf0, 0xf1, 0x5c, + 0xe2, 0xd6, 0x94, 0xb2, 0xbc, 0x80, 0xe0, 0xbf, + 0xff, 0xb4, 0x0f, 0xfa, 0x68, 0x5d, 0x2f, 0x12, + 0xaa, 0x80, 0xf9, 0xd1, 0x08, 0x26, 0xd2, 0x72, + 0xdb, 0x02, 0x5d, 0xd1, 0x1c, 0xac, 0xe4, 0x0d, + 0x78, 0x7e, 0x80, 0x7c, 0xcd, 0xbe, 0xd2, 0xe6, + 0x39, 0x96, 0x61, 0x30, 0x91, 0x96, 0x91, 0x54, + 0x05, 0xc8, 0x4d, 0x99, 0x54, 0xa1, 0x39, 0xb3, + 0x9b, 0xec, 0x90, 0x2c, 0xf4, 0x9b, 0xba, 0xe9, + 0xe1, 0xe5, 0x46, 0x0d, 0x01, 0xc1, 0x95, 0x77, + 0x88, 0xb3, 0x2c, 0x83, 0x8f, 0xe7, 0x12, 0x98, + 0x4a, 0x2b, 0xcd, 0x9d, 0x71, 0xa8, 0xb3, 0x7e, + 0xb0, 0x8b, 0xf7, 0x03, 0x82, 0x8a, 0xee, 0xe2, + 0xe7, 0xcd, 0x3a, 0x6a, 0x87, 0x82, 0xfe, 0xfd, + 0x89, 0x18, 0xc6, 0x92, 0x12, 0x6c, 0x37, 0x68, + 0xad, 0x63, 0x09, 0x55, 0x08, 0x77, 0xf7, 0x07, + 0x9f, 0xb9, 0xee, 0x62, 0xa3, 0x68, 0x40, 0x12, + 0x38, 0xe4, 0xe2, 0x22, 0x32, 0x57, 0xa4, 0x76, + 0x46, 0x03, 0xf0, 0x91, 0x9d, 0x4b, 0xa1, 0xee, + 0x60, 0xa7, 0x6c, 0xb6, 0x65, 0xbb, 0x31, 0x85, + 0xc7, 0x6f, 0xee, 0x65, 0x20, 0x0b, 0x2c, 0xea, + 0xa6, 0x8b, 0xb8, 0x72, 0x33, 0xe4, 0x01, 0x03, + 0x42, 0x90, 0xaf, 0xd9, 0xd0, 0x2d, 0x1f, 0xf6, + 0x91, 0xf3, 0x9e, 0xc0, 0x0f, 0xe0, 0x03, 0xd0, + 0x2d, 0x0f, 0x8e, 0x47, 0x10, 0x91, 0x39, 0x10, + 0x00, 0x35, 0xdd, 0x85, 0xe9, 0x5c, 0xfe, 0xfc, + 0x63, 0x36, 0x2e, 0xe1, 0xf3, 0xf9, 0x54, 0x9b, + 0x40, 0xc0, 0x4d, 0x65, 0x79, 0x3f, 0xec, 0x82, + 0xa6, 0x5c, 0x9f, 0x1d, 0xef, 0xfd, 0x89, 0x18, + 0x66, 0x73, 0x6a, 0xab, 0x4f, 0xc1, 0xf1, 0x02, + 0x6c, 0x96, 0x4c, 0x6c, 0x96, 0xcc, 0xbe, 0xec, + 0xd8, 0xfa, 0xc5, 0x17, 0x8b, 0x69, 0x8c, 0x26, + 0x2e, 0x3f, 0xc1, 0x2f, 0x36, 0x1c, 0x6c, 0x95, + 0x4c, 0x6c, 0x95, 0x4c, 0x04, 0xd7, 0x2c, 0x24, + 0x64, 0x63, 0x22, 0xea, 0xa6, 0x87, 0x98, 0xcc, + 0xe3, 0x93, 0xf9, 0x24, 0x74, 0xcb, 0x47, 0x36, + 0x26, 0x22, 0x68, 0x76, 0xe2, 0xef, 0xd7, 0x6c, + 0x7c, 0xf3, 0xae, 0x0c, 0x20, 0x3c, 0xab, 0xfe, + 0xcd, 0xbd, 0x74, 0xab, 0x7c, 0x7e, 0xdd, 0x93, + 0x7a, 0x1a, 0x80, 0x9b, 0x7c, 0xf3, 0xae, 0x8c, + 0xfd, 0x9a, 0xdd, 0xf1, 0xdf, 0x3e, 0x9a, 0x4d, + 0x60, 0x2e, 0xa7, 0xde, 0xb8, 0xf7, 0xb4, 0x51, + 0x34, 0xf0, 0x74, 0xad, 0x86, 0xa4, 0x2a, 0x60, + 0x6e, 0x24, 0x82, 0x74, 0x54, 0x80, 0xc0, 0xb3, + 0xa8, 0x68, 0x0e, 0xf2, 0x35, 0x1b, 0x86, 0xe3, + 0x63, 0x36, 0xab, 0x42, 0x12, 0x58, 0xf0, 0x2c, + 0x83, 0xba, 0xe9, 0x21, 0x5f, 0xb7, 0x91, 0x8c, + 0x08, 0x90, 0x78, 0x16, 0x3c, 0xc7, 0x62, 0xbb, + 0x6c, 0x22, 0x5f, 0xb3, 0x2f, 0x65, 0xdc, 0x24, + 0x2a, 0xf3, 0x98, 0xcd, 0xaa, 0x98, 0x1b, 0x51, + 0x6f, 0xcc, 0x6e, 0xb8, 0x58, 0xb7, 0x51, 0x33, + 0x3d, 0xf0, 0x2c, 0x83, 0xd1, 0xa4, 0x8c, 0xed, + 0xb2, 0x89, 0x5f, 0xb6, 0x1a, 0xd7, 0x6e, 0x11, + 0x1b, 0x46, 0x18, 0x26, 0xdc, 0x0d, 0xcd, 0x8f, + 0x46, 0x5a, 0xf7, 0x53, 0x28, 0x94, 0xa2, 0x61, + 0x65, 0x5f, 0x0b, 0x95, 0xa1, 0x2e, 0x99, 0xc9, + 0xb4, 0x82, 0x84, 0x1a, 0x36, 0x2e, 0x85, 0x65, + 0x53, 0x0e, 0x3c, 0x1b, 0x9e, 0x3b, 0x8b, 0x3c, + 0x0b, 0xf5, 0x92, 0x5c, 0xb1, 0xca, 0xcd, 0x35, + 0xa0, 0xac, 0xbb, 0xa8, 0xe9, 0x0e, 0xfc, 0x20, + 0xec, 0x9c, 0x16, 0x38, 0xa6, 0x55, 0xf6, 0xdd, + 0xad, 0x86, 0xe7, 0xc2, 0x07, 0x6e, 0x61, 0x9e, + 0x4f, 0xe0, 0x06, 0xa4, 0x99, 0xb4, 0x9f, 0xbc, + 0x1e, 0xf0, 0x2c, 0x83, 0x5c, 0x42, 0x42, 0xdd, + 0x70, 0x61, 0x38, 0x3e, 0x48, 0x53, 0x7d, 0xeb, + 0xa2, 0x6b, 0x48, 0x4c, 0xe6, 0xf1, 0xdb, 0x07, + 0x99, 0x56, 0xe9, 0x1d, 0x08, 0x7b, 0x55, 0x7e, + 0x58, 0xae, 0x60, 0xa7, 0x43, 0x83, 0x28, 0xc3, + 0x00, 0x31, 0x45, 0x40, 0x54, 0xe2, 0x20, 0x34, + 0xd7, 0x33, 0x06, 0x00, 0x21, 0x04, 0xba, 0xed, + 0xb7, 0x64, 0x3e, 0x63, 0x0a, 0x8f, 0xa4, 0x2a, + 0x84, 0x2a, 0x77, 0x3c, 0x0b, 0x16, 0x80, 0x6e, + 0x7b, 0x1d, 0x2b, 0x21, 0x2c, 0xc3, 0x80, 0x6f, + 0xde, 0x4b, 0xb2, 0xc8, 0x76, 0x14, 0x45, 0xa1, + 0x01, 0xb8, 0x07, 0x08, 0x01, 0x2a, 0x86, 0x8b, + 0x3f, 0xff, 0x52, 0xec, 0xf8, 0xef, 0x02, 0xc7, + 0xe0, 0xf7, 0x0f, 0xb3, 0x88, 0xc8, 0x37, 0x73, + 0x26, 0xce, 0xf1, 0x03, 0x88, 0x3d, 0x96, 0xad, + 0x34, 0xcb, 0x6b, 0x35, 0x9e, 0xe8, 0x96, 0x07, + 0x55, 0xe2, 0xf1, 0xd3, 0x5a, 0xa8, 0x75, 0x4c, + 0x2e, 0xb8, 0x20, 0x76, 0x73, 0xb7, 0x25, 0x23, + 0x61, 0x03, 0x49, 0x42, 0xbd, 0xbe, 0x95, 0x86, + 0xed, 0x8a, 0x85, 0xb2, 0xe6, 0x60, 0x3c, 0x19, + 0x96, 0x0b, 0xd7, 0x8a, 0x06, 0x5e, 0xd1, 0x5d, + 0xef, 0xb5, 0x0a, 0xbe, 0x9f, 0xcd, 0xa7, 0x30, + 0x96, 0x94, 0x5b, 0x5f, 0xdb, 0xaf, 0xd9, 0x78, + 0xb5, 0x55, 0xbf, 0x50, 0xe7, 0x36, 0xc7, 0x32, + 0x98, 0xcd, 0xaa, 0x88, 0x29, 0x3c, 0x2a, 0xba, + 0x8b, 0x8a, 0xe6, 0xa0, 0xd1, 0xe5, 0x59, 0x29, + 0xc3, 0x30, 0xf8, 0xc7, 0xc7, 0xd7, 0x63, 0x2d, + 0x31, 0x6c, 0x1f, 0x7b, 0xb5, 0x50, 0x21, 0xec, + 0x60, 0x7e, 0xb8, 0xdb, 0x9c, 0xd7, 0x0f, 0x08, + 0x36, 0x4b, 0x26, 0x18, 0x00, 0x1b, 0x25, 0x13, + 0xbe, 0x4f, 0xc0, 0x37, 0x35, 0xc0, 0xa3, 0x32, + 0x8f, 0x99, 0xac, 0xfa, 0x5e, 0x24, 0xe4, 0xd0, + 0x7a, 0xd2, 0x30, 0x3d, 0x7c, 0xbb, 0x54, 0xbe, + 0x90, 0xc2, 0x18, 0xcf, 0x31, 0x18, 0x89, 0x4b, + 0xa1, 0x36, 0x3a, 0xc7, 0xc0, 0xb0, 0x7d, 0x14, + 0xea, 0xf6, 0x95, 0x5c, 0x43, 0x8e, 0x65, 0xf0, + 0xe1, 0x4c, 0x3c, 0x74, 0x32, 0x63, 0x18, 0xcc, + 0x8f, 0x45, 0xc0, 0x80, 0x01, 0xcf, 0x31, 0xc7, + 0x26, 0x42, 0x4e, 0x3a, 0x3a, 0xb8, 0x50, 0x00, + 0x0e, 0x08, 0x81, 0xeb, 0x87, 0x1d, 0x6b, 0x3d, + 0x07, 0x3e, 0x60, 0x60, 0xcd, 0x37, 0x07, 0xe7, + 0x05, 0xa5, 0x86, 0x03, 0xb3, 0xa9, 0xdf, 0x1b, + 0x57, 0xc2, 0x1b, 0xc0, 0xf1, 0x02, 0x04, 0x04, + 0x08, 0x10, 0x8a, 0xd3, 0x97, 0xb5, 0xd3, 0x45, + 0xdd, 0x15, 0x91, 0xc3, 0x3f, 0x7d, 0x98, 0xbb, + 0x70, 0xa6, 0x73, 0x1b, 0xf0, 0x49, 0x78, 0xcd, + 0x6c, 0x37, 0x40, 0xc3, 0xf2, 0xb0, 0x57, 0xb5, + 0x50, 0xa8, 0xdb, 0x2d, 0x69, 0xc2, 0x83, 0x0c, + 0x91, 0x65, 0xc2, 0xf1, 0xa4, 0x6c, 0x4c, 0x44, + 0x49, 0x73, 0x90, 0x50, 0x04, 0x44, 0x14, 0x1e, + 0x77, 0x72, 0x2a, 0x36, 0x8a, 0x06, 0x56, 0xf3, + 0xc6, 0x99, 0x65, 0x6e, 0x81, 0x63, 0xf1, 0x77, + 0x8f, 0xb2, 0xd7, 0xb2, 0x13, 0x92, 0x90, 0xf0, + 0x9c, 0xf7, 0xe0, 0x6c, 0xce, 0xf5, 0x09, 0xfe, + 0xf8, 0xaa, 0x70, 0xed, 0xa4, 0x0b, 0x87, 0x15, + 0x81, 0x63, 0xf0, 0xd5, 0xfd, 0x4c, 0x5b, 0x02, + 0xb7, 0x9a, 0xd7, 0xf1, 0x62, 0xe3, 0x62, 0x09, + 0x12, 0xc7, 0x86, 0xc9, 0xf8, 0xe1, 0x59, 0xe9, + 0xbd, 0xaa, 0x85, 0x6f, 0x97, 0x2a, 0xe1, 0x0e, + 0x4d, 0x15, 0x60, 0xda, 0x5e, 0xdb, 0xfc, 0x77, + 0x2a, 0x2a, 0xe2, 0x4e, 0x4e, 0x45, 0x44, 0xe6, + 0xa1, 0xd9, 0x1e, 0x36, 0x8b, 0x26, 0xee, 0x8f, + 0x47, 0xdb, 0x8c, 0x36, 0x86, 0x89, 0xff, 0xe7, + 0xe9, 0xfe, 0xb9, 0x77, 0xc2, 0x31, 0x85, 0xc7, + 0xe3, 0xe9, 0x78, 0xd8, 0xb1, 0xce, 0x86, 0x15, + 0x03, 0x81, 0x63, 0x50, 0xd4, 0x1c, 0xfc, 0xb8, + 0x52, 0x45, 0x10, 0x10, 0x8c, 0xa5, 0x64, 0x08, + 0x5c, 0x78, 0x54, 0x58, 0x37, 0x3c, 0xb8, 0xfe, + 0xf5, 0x10, 0x8a, 0x61, 0x59, 0x06, 0x73, 0x39, + 0x15, 0x1f, 0x4c, 0xc7, 0xfb, 0x13, 0x80, 0x4d, + 0xc7, 0xc7, 0x9f, 0x5e, 0x15, 0xe1, 0xf8, 0x01, + 0x1e, 0x4d, 0xc7, 0x31, 0x9d, 0x51, 0x8e, 0xed, + 0xb4, 0x1c, 0x2f, 0x40, 0x59, 0x73, 0xb0, 0x5e, + 0x30, 0x50, 0xd1, 0x5d, 0x70, 0x2c, 0x13, 0x96, + 0x23, 0x04, 0x16, 0x7e, 0x40, 0xf0, 0x9b, 0xc5, + 0xf4, 0x99, 0x0b, 0x2c, 0x21, 0xc0, 0xca, 0xbe, + 0xde, 0x92, 0xc5, 0x63, 0x18, 0xc0, 0x0f, 0xc2, + 0xc6, 0x89, 0xaa, 0xe1, 0x22, 0x08, 0x48, 0xeb, + 0xa0, 0x3d, 0x08, 0x08, 0x1a, 0xa6, 0x87, 0x6a, + 0x9f, 0xcf, 0x74, 0x14, 0x91, 0xc3, 0x4c, 0x56, + 0xc5, 0x6c, 0x56, 0x01, 0xd7, 0x5c, 0x74, 0x1d, + 0x8f, 0x60, 0xbd, 0xa0, 0xc3, 0xf1, 0xc2, 0x86, + 0x80, 0xc7, 0xd3, 0xb1, 0x5b, 0x1f, 0xa4, 0x0f, + 0xce, 0x91, 0xcf, 0x4a, 0xb8, 0xbc, 0x66, 0x46, + 0x7c, 0x1a, 0x3f, 0x6f, 0xd5, 0xb1, 0xbc, 0xa7, + 0x9f, 0x7e, 0xd3, 0x32, 0xc0, 0x48, 0x42, 0x06, + 0xcf, 0x85, 0x3e, 0xb9, 0xd3, 0x59, 0xb5, 0x55, + 0xfe, 0xb9, 0xf2, 0x6b, 0xe1, 0x06, 0x60, 0x98, + 0xb0, 0xb4, 0x46, 0x00, 0x3c, 0x5b, 0xaf, 0x61, + 0xa3, 0x4b, 0xb5, 0xa1, 0xdb, 0x8e, 0x22, 0x72, + 0x10, 0x38, 0x06, 0x0d, 0xcb, 0xbb, 0x92, 0x51, + 0x2c, 0x8e, 0x65, 0xf0, 0xc5, 0x62, 0x1a, 0x99, + 0x98, 0xd8, 0x4a, 0xf2, 0x1d, 0x2f, 0xc0, 0x4f, + 0x6b, 0x35, 0xec, 0x57, 0xad, 0x73, 0xfd, 0xce, + 0xf1, 0x94, 0x8c, 0xc5, 0xf1, 0x68, 0xdb, 0xb8, + 0x0d, 0xf0, 0x7e, 0x34, 0x49, 0xe4, 0x59, 0xfc, + 0xd7, 0x8f, 0x46, 0x50, 0x33, 0x5c, 0xbc, 0xda, + 0x6a, 0xe0, 0xfe, 0x64, 0x0c, 0x3c, 0xc7, 0x20, + 0xa1, 0x08, 0x74, 0x3e, 0xfe, 0xc8, 0x73, 0xbf, + 0xba, 0x6f, 0xb4, 0x8e, 0x68, 0x38, 0x96, 0x41, + 0x2e, 0x2e, 0x41, 0x12, 0xd8, 0x96, 0xa6, 0x7a, + 0xd5, 0x70, 0xa1, 0x4a, 0x1c, 0x36, 0x8a, 0x26, + 0x82, 0x20, 0x74, 0xc6, 0x9a, 0xcd, 0xa9, 0x78, + 0x3c, 0x1d, 0x3f, 0xf1, 0x68, 0xaa, 0x66, 0xb8, + 0xc7, 0x66, 0x92, 0x75, 0xcb, 0xc3, 0x4f, 0x6b, + 0x35, 0x54, 0x75, 0xe7, 0x44, 0xf7, 0x31, 0x96, + 0x61, 0xc2, 0xfe, 0x17, 0x12, 0xc6, 0xb4, 0x41, + 0x4f, 0x2e, 0x3c, 0x9e, 0x8a, 0x63, 0x7e, 0x2c, + 0xd2, 0x5d, 0x00, 0xf6, 0x7c, 0x02, 0x2f, 0x08, + 0x20, 0x0b, 0xc7, 0x83, 0x64, 0xcd, 0x74, 0xf1, + 0xc7, 0x9f, 0x8b, 0x1d, 0x77, 0x2e, 0x04, 0xa4, + 0x95, 0x05, 0xc6, 0x14, 0x1e, 0x71, 0x45, 0x40, + 0x36, 0x26, 0x62, 0x32, 0xa3, 0xc0, 0xb4, 0xc3, + 0x86, 0xa0, 0xb8, 0xc2, 0xc3, 0x76, 0x83, 0xae, + 0xe4, 0xce, 0xaa, 0xba, 0x8b, 0x9d, 0x8a, 0x89, + 0x62, 0xa3, 0x7d, 0x78, 0x3c, 0xf4, 0xfa, 0x6c, + 0xfa, 0xaa, 0xf6, 0xe9, 0x49, 0x57, 0x24, 0x0e, + 0x0b, 0xa3, 0x11, 0x6c, 0x97, 0xad, 0x9e, 0xba, + 0x00, 0x73, 0x71, 0x09, 0x9f, 0xdc, 0x49, 0x42, + 0x12, 0xa8, 0x2d, 0x58, 0x37, 0xd4, 0x4d, 0x0f, + 0xff, 0xf1, 0x73, 0xe1, 0xf4, 0x92, 0x1d, 0x9a, + 0xc9, 0x5a, 0xd3, 0x46, 0x2f, 0x22, 0x72, 0x78, + 0x34, 0x1d, 0xbf, 0x92, 0x26, 0x95, 0xa3, 0x89, + 0xc8, 0xf7, 0xcb, 0x15, 0xd4, 0x0c, 0x17, 0x8f, + 0x9b, 0xc9, 0xe7, 0x56, 0xc9, 0xbc, 0x52, 0x2d, + 0xe4, 0xcb, 0x24, 0x2a, 0xf3, 0x18, 0x49, 0x48, + 0x48, 0x46, 0x84, 0x63, 0x49, 0x27, 0xc7, 0x32, + 0x18, 0x49, 0x48, 0x60, 0x9a, 0x41, 0xef, 0xdd, + 0xae, 0x76, 0xcc, 0x69, 0xe8, 0xb2, 0x90, 0x04, + 0x16, 0x33, 0x59, 0x15, 0xaa, 0xc8, 0x41, 0xb3, + 0x7d, 0x24, 0x14, 0x1e, 0xef, 0xf6, 0xb4, 0x73, + 0x95, 0xa0, 0xff, 0xf1, 0x83, 0x5c, 0xeb, 0x58, + 0xe6, 0xe8, 0x46, 0xe4, 0x5f, 0x9f, 0xe7, 0x21, + 0xf2, 0x2c, 0xfe, 0xf9, 0xe3, 0x51, 0xaa, 0x16, + 0xd5, 0x05, 0x8e, 0x17, 0xa0, 0xd2, 0x1c, 0xef, + 0xca, 0x44, 0xc5, 0xb6, 0x33, 0xdd, 0xc3, 0x58, + 0x6e, 0x00, 0xcb, 0xf5, 0x21, 0xb0, 0xcc, 0x85, + 0xca, 0xf6, 0x07, 0x15, 0x51, 0xd7, 0x0b, 0xa0, + 0x35, 0xab, 0x54, 0x4c, 0xf3, 0xfe, 0x88, 0xab, + 0x42, 0x2b, 0xa9, 0x27, 0xcd, 0x58, 0xf3, 0x74, + 0xad, 0x3a, 0x30, 0x81, 0x19, 0x86, 0x01, 0xfe, + 0xe9, 0x83, 0x91, 0xd6, 0xc6, 0xf3, 0xd4, 0x00, + 0xfc, 0x7c, 0xbd, 0x86, 0x8d, 0xa2, 0x89, 0xb1, + 0xa4, 0xd4, 0xe6, 0xf9, 0xe9, 0x78, 0x01, 0xf6, + 0xaa, 0xd6, 0xa9, 0xa5, 0x84, 0xa8, 0xcc, 0xe3, + 0x57, 0x73, 0x09, 0xa4, 0x2e, 0xa1, 0xbd, 0x3b, + 0x20, 0x04, 0x15, 0xcd, 0x85, 0xed, 0x06, 0x70, + 0x9b, 0x6e, 0x2d, 0x5b, 0x65, 0xf3, 0x98, 0x1c, + 0xa0, 0xc0, 0xb1, 0x2d, 0x65, 0x98, 0x42, 0xc3, + 0x41, 0xee, 0x40, 0x6c, 0x9e, 0x63, 0x21, 0x36, + 0x33, 0xb0, 0x58, 0x33, 0x8b, 0x3a, 0x70, 0xb5, + 0xa9, 0xea, 0x2e, 0x66, 0xb2, 0x2a, 0x8a, 0x0d, + 0x07, 0x0d, 0xd3, 0xc5, 0x64, 0x46, 0x81, 0xc0, + 0xb1, 0xf0, 0x9a, 0x73, 0x82, 0x15, 0xcd, 0x81, + 0xe7, 0x13, 0xd8, 0x5e, 0x68, 0xec, 0xfd, 0x8f, + 0x1f, 0xe4, 0xa0, 0x88, 0x1c, 0x7d, 0xca, 0xce, + 0x20, 0x5f, 0xb3, 0xf1, 0xe3, 0x6a, 0xf5, 0xd4, + 0x7b, 0x48, 0x16, 0x39, 0xfc, 0xfd, 0xa3, 0x2c, + 0x2c, 0xd7, 0xc7, 0x7f, 0x34, 0x93, 0x3d, 0x81, + 0x63, 0xf1, 0xfb, 0x47, 0x19, 0x44, 0xa4, 0xab, + 0x3f, 0x47, 0x2b, 0x35, 0x42, 0xf7, 0x9d, 0xdb, + 0x0a, 0xcb, 0x84, 0xba, 0xc0, 0x53, 0x69, 0x05, + 0x3c, 0x17, 0x9e, 0x6d, 0xa9, 0x12, 0xd7, 0xd3, + 0xb5, 0x5f, 0x2f, 0x1a, 0xd8, 0x2c, 0x9a, 0xf0, + 0x03, 0x12, 0xda, 0xff, 0xf9, 0xd7, 0x4f, 0x3b, + 0x9a, 0x63, 0x19, 0xc4, 0x9a, 0x0b, 0xbc, 0x17, + 0x90, 0x8e, 0x3b, 0xa1, 0xcf, 0x17, 0xda, 0xcf, + 0x93, 0x0f, 0xaf, 0x85, 0xff, 0xfa, 0x3c, 0x8f, + 0x88, 0xc4, 0xe1, 0xef, 0x1f, 0xe7, 0xe8, 0x83, + 0x7d, 0x1b, 0x2a, 0x7d, 0x6e, 0x80, 0x6f, 0x97, + 0xca, 0xc7, 0x26, 0x47, 0x3a, 0xe1, 0x7a, 0xa4, + 0xed, 0x9e, 0x96, 0x04, 0x16, 0xc9, 0xa6, 0xea, + 0x98, 0x22, 0x85, 0xb1, 0x25, 0xf4, 0xc8, 0x66, + 0x5a, 0xcf, 0x40, 0x2e, 0x2e, 0xb6, 0x1a, 0xdd, + 0x4e, 0x0d, 0xc0, 0xb6, 0x17, 0xe0, 0x4f, 0xaf, + 0x8a, 0x5d, 0x8f, 0xa5, 0x88, 0x3c, 0x8b, 0x74, + 0x54, 0xc4, 0x78, 0x4a, 0xc6, 0x44, 0x4a, 0xbe, + 0xf2, 0x4e, 0x56, 0xcb, 0xf1, 0x51, 0x6c, 0x38, + 0x28, 0x69, 0x0e, 0x64, 0x81, 0xc5, 0xfc, 0x58, + 0x74, 0x60, 0x25, 0x4c, 0xd3, 0xf1, 0xb1, 0x5f, + 0xb7, 0x01, 0x82, 0x56, 0xc7, 0xf4, 0x4d, 0x13, + 0xf0, 0xd8, 0xad, 0x58, 0x48, 0x44, 0x84, 0x4b, + 0xeb, 0xc4, 0x74, 0xbc, 0x00, 0xdf, 0x2e, 0x55, + 0x4e, 0xad, 0x34, 0xc4, 0x14, 0x1e, 0x96, 0x13, + 0xb4, 0xdd, 0xe4, 0x9f, 0xde, 0x4d, 0x62, 0x32, + 0x7d, 0x35, 0xb6, 0x69, 0x01, 0x00, 0xaf, 0x69, + 0xf3, 0xb6, 0x51, 0x34, 0xb1, 0x9a, 0xd7, 0x6f, + 0xdd, 0x02, 0xc4, 0xb1, 0x61, 0xcf, 0xc4, 0x07, + 0x33, 0x09, 0xa4, 0x22, 0xfd, 0x6b, 0x84, 0x0b, + 0x08, 0x90, 0xaf, 0xbd, 0x4f, 0xdc, 0x3d, 0x9f, + 0x80, 0x00, 0xd8, 0x2e, 0x99, 0xa8, 0x9a, 0x2e, + 0x2e, 0x6b, 0x00, 0xf7, 0xa0, 0x03, 0xd9, 0xf1, + 0xc2, 0x63, 0x84, 0xcf, 0x17, 0xda, 0x47, 0x7f, + 0xdc, 0x43, 0xbd, 0x21, 0x15, 0x3d, 0xec, 0x16, + 0xe6, 0x39, 0x06, 0x8b, 0x63, 0x51, 0xdc, 0x1d, + 0x8d, 0x1c, 0xfb, 0x7d, 0xdf, 0x2d, 0x57, 0x90, + 0xaf, 0xd9, 0xf8, 0x62, 0x31, 0x8d, 0xec, 0x90, + 0x9e, 0xed, 0x0e, 0x33, 0xfb, 0x35, 0x1b, 0x6f, + 0x76, 0x1a, 0xa8, 0x19, 0x2e, 0xbe, 0xba, 0x97, + 0xe9, 0xe9, 0x7c, 0xff, 0xcc, 0x33, 0xe0, 0xad, + 0xb2, 0x89, 0x1f, 0x57, 0xce, 0x96, 0x5f, 0x5b, + 0x18, 0x8b, 0x62, 0x61, 0x3c, 0x0a, 0x91, 0xa3, + 0x45, 0x98, 0x03, 0x7e, 0x5c, 0xab, 0xc2, 0xb0, + 0x7c, 0x8c, 0x26, 0x25, 0x8c, 0x26, 0xa4, 0xb6, + 0xf9, 0xe1, 0x95, 0xbc, 0x0e, 0x55, 0xe4, 0x3a, + 0x66, 0xd5, 0x57, 0xc5, 0x55, 0x18, 0x73, 0xbf, + 0xdb, 0xd3, 0xf0, 0xcb, 0x56, 0xe3, 0xd4, 0xef, + 0x51, 0x44, 0x0e, 0x77, 0x46, 0x54, 0xa8, 0x52, + 0xa8, 0xfe, 0x93, 0x89, 0x8a, 0x03, 0x3d, 0x57, + 0x33, 0x6c, 0x1f, 0x0c, 0x13, 0x76, 0x5c, 0x06, + 0x41, 0x98, 0x5c, 0xed, 0x55, 0x2d, 0xd4, 0x0c, + 0x17, 0x65, 0xcd, 0xb9, 0x92, 0xf1, 0x95, 0xcb, + 0x82, 0x61, 0x9a, 0x2e, 0x49, 0x97, 0xdc, 0xa9, + 0x5b, 0xd1, 0x5d, 0xd4, 0x4d, 0x17, 0xe5, 0x46, + 0xd8, 0xdb, 0xd1, 0xa9, 0x04, 0x38, 0x9a, 0x90, + 0x30, 0x99, 0x56, 0xb0, 0x5d, 0x36, 0x8f, 0x8d, + 0x0c, 0x0a, 0x1c, 0x8b, 0x74, 0x4c, 0x44, 0x2e, + 0x2e, 0x42, 0xe4, 0xd8, 0xa6, 0x5f, 0x31, 0x8b, + 0x42, 0xc3, 0x81, 0x2a, 0x71, 0x48, 0x28, 0x02, + 0x54, 0x89, 0x6b, 0x36, 0xcf, 0x85, 0x4d, 0x3c, + 0xfb, 0x35, 0x0b, 0x92, 0xc8, 0x21, 0x75, 0x46, + 0xb7, 0xbd, 0x1f, 0x10, 0xec, 0xd7, 0x6c, 0xb8, + 0x7e, 0x80, 0xd9, 0xac, 0xda, 0x31, 0xf9, 0xfe, + 0xb7, 0x17, 0x79, 0xa4, 0x22, 0x22, 0x7e, 0xfb, + 0x20, 0x43, 0x17, 0xbe, 0x21, 0xc5, 0xf5, 0xdf, + 0x37, 0x66, 0x76, 0xcb, 0x99, 0x4f, 0xd9, 0x44, + 0x4a, 0xc6, 0x3b, 0x99, 0x3f, 0xb3, 0xd5, 0x7e, + 0x69, 0x2f, 0x74, 0x4c, 0x99, 0xc9, 0x2a, 0x6d, + 0x6d, 0xe8, 0xc3, 0xcc, 0xaf, 0x66, 0x93, 0x28, + 0x36, 0x6c, 0xb8, 0x7e, 0xa8, 0x6f, 0xda, 0xb6, + 0x98, 0xc4, 0x25, 0xe8, 0xd7, 0xac, 0x6b, 0xf6, + 0x2a, 0x36, 0xeb, 0xdd, 0xfc, 0xc9, 0xaf, 0xee, + 0x67, 0xda, 0x54, 0x6c, 0x06, 0x49, 0x59, 0x73, + 0xf0, 0x97, 0x37, 0xe5, 0xa1, 0x9c, 0xe3, 0xe5, + 0x39, 0x06, 0x1f, 0xcd, 0x24, 0x06, 0x16, 0x7c, + 0x75, 0xcb, 0xc3, 0xab, 0xed, 0x06, 0xee, 0x4f, + 0x44, 0x8f, 0x89, 0xd9, 0xa4, 0x22, 0x02, 0x52, + 0x11, 0xa1, 0x15, 0xe0, 0x0a, 0x75, 0x1b, 0xdf, + 0x2d, 0x55, 0xda, 0x14, 0xd9, 0x7e, 0x75, 0x27, + 0x09, 0x91, 0x67, 0xdb, 0x82, 0x6f, 0x36, 0x26, + 0x62, 0x26, 0xab, 0x62, 0x34, 0x29, 0x75, 0x1c, + 0xf5, 0xc8, 0x1e, 0x51, 0xad, 0x3b, 0xbc, 0x37, + 0xe9, 0x36, 0xf9, 0xe5, 0x58, 0x06, 0x13, 0xa9, + 0x93, 0xbf, 0x37, 0x5f, 0xb3, 0x11, 0x10, 0x60, + 0xf4, 0x1a, 0x25, 0xd3, 0x94, 0xcb, 0x47, 0x38, + 0xc7, 0xe6, 0xf3, 0xcc, 0x27, 0x8d, 0x65, 0x18, + 0xfc, 0xfe, 0x51, 0xb6, 0x25, 0x51, 0x56, 0x35, + 0xdc, 0x13, 0x3b, 0x1b, 0x03, 0x42, 0xb0, 0x53, + 0xb1, 0xb0, 0xde, 0x94, 0xf8, 0xca, 0xc6, 0x44, + 0x7c, 0x3c, 0x97, 0xc4, 0x6d, 0x95, 0x51, 0x0e, + 0x00, 0xb0, 0x67, 0xec, 0x26, 0x72, 0x27, 0xc8, + 0x56, 0x46, 0x9a, 0xb3, 0x77, 0xd7, 0x91, 0x41, + 0x8e, 0x88, 0x1d, 0xdf, 0xd5, 0xc8, 0xf8, 0x65, + 0xab, 0x71, 0x6a, 0xf5, 0xf1, 0xb2, 0x82, 0xef, + 0x6e, 0xc5, 0xc2, 0x8f, 0xab, 0xd5, 0xa1, 0x0b, + 0xbe, 0x2c, 0xc3, 0x60, 0x26, 0xa7, 0x60, 0x71, + 0x2c, 0x3a, 0xb0, 0xfe, 0x05, 0xc7, 0x0b, 0xf0, + 0xf3, 0x56, 0x03, 0x7b, 0xd5, 0xb0, 0xb9, 0x71, + 0x24, 0x2e, 0x61, 0x7e, 0x2c, 0x8a, 0xf8, 0x09, + 0x4d, 0x98, 0xa9, 0xa8, 0x08, 0x9e, 0x67, 0x41, + 0xbc, 0x00, 0x01, 0x09, 0x9b, 0x2d, 0x8b, 0x0d, + 0x07, 0x13, 0x29, 0x19, 0x22, 0xcf, 0x62, 0x22, + 0x25, 0x63, 0x26, 0xa7, 0x5e, 0xa9, 0x2c, 0x2c, + 0x01, 0xf0, 0xaa, 0x29, 0x83, 0xf8, 0xe5, 0x62, + 0x1a, 0x23, 0x09, 0x09, 0x14, 0x4a, 0x4f, 0x1b, + 0x90, 0x5e, 0xc7, 0x90, 0xbe, 0x7e, 0x53, 0x42, + 0xa9, 0xd1, 0x7e, 0x66, 0x97, 0x89, 0x89, 0xb8, + 0x93, 0x8b, 0x40, 0x91, 0x38, 0xa4, 0x22, 0x02, + 0x1a, 0x96, 0x87, 0xaa, 0xee, 0x42, 0x16, 0xd8, + 0x13, 0x03, 0xd0, 0x4d, 0xa6, 0xd8, 0x70, 0xf0, + 0xcb, 0x56, 0x1d, 0x7e, 0x40, 0x6e, 0x65, 0xe3, + 0xc5, 0x66, 0xd1, 0xc4, 0x74, 0xf6, 0x62, 0x67, + 0xac, 0x07, 0x67, 0x7b, 0x93, 0x69, 0xe5, 0xd4, + 0x72, 0x71, 0xbe, 0x66, 0xe3, 0x6f, 0x4d, 0x19, + 0xb9, 0x93, 0xf8, 0xed, 0xfd, 0xcc, 0xc0, 0xe6, + 0x26, 0x35, 0xcb, 0xc3, 0x56, 0xc9, 0xc4, 0x66, + 0xd9, 0x84, 0xd9, 0xe7, 0x8a, 0x84, 0x2a, 0x71, + 0x90, 0x78, 0x16, 0x5e, 0x40, 0x70, 0x77, 0x24, + 0x02, 0xd7, 0x0f, 0xb0, 0x51, 0x32, 0xa1, 0x5d, + 0x23, 0x0b, 0x3f, 0x96, 0x61, 0xf0, 0xeb, 0xf9, + 0x64, 0xcf, 0x47, 0x21, 0x84, 0x00, 0xae, 0x1f, + 0x9c, 0xd8, 0xc1, 0x7a, 0x98, 0xa5, 0x3d, 0x0d, + 0x6f, 0x76, 0x34, 0x8c, 0x24, 0x24, 0xc8, 0x02, + 0x87, 0x9a, 0xe1, 0xb6, 0xdc, 0x76, 0x04, 0x8e, + 0x6d, 0x99, 0xc9, 0x8b, 0x02, 0xdb, 0xb2, 0xfd, + 0xab, 0xe9, 0x2e, 0x46, 0x53, 0x32, 0xee, 0xe4, + 0x54, 0xf8, 0x01, 0x41, 0xd5, 0x70, 0x91, 0x54, + 0x85, 0xae, 0xfe, 0xde, 0xa5, 0x25, 0xe0, 0x24, + 0x6c, 0xaa, 0x89, 0xca, 0xd4, 0xb8, 0x9e, 0x72, + 0xce, 0x00, 0xbc, 0x5d, 0x36, 0xc9, 0xcb, 0x8d, + 0x7a, 0x4b, 0x64, 0x21, 0x13, 0x13, 0x31, 0x9d, + 0x55, 0x30, 0x91, 0x6a, 0x17, 0x2c, 0x5f, 0x2d, + 0x18, 0xa1, 0x46, 0x72, 0xe3, 0x78, 0xc3, 0xcc, + 0x57, 0xf7, 0x33, 0x43, 0xd5, 0x7c, 0xb0, 0xbc, + 0xa7, 0x63, 0x22, 0x2d, 0xb7, 0x2c, 0xcc, 0x6e, + 0x54, 0x70, 0x2d, 0x99, 0x18, 0x4d, 0x48, 0x1d, + 0x17, 0x32, 0xd7, 0x0f, 0xc0, 0xb1, 0x2c, 0x08, + 0x21, 0xad, 0x26, 0x95, 0xf3, 0x2e, 0x78, 0x8e, + 0x17, 0xe0, 0x6f, 0xef, 0xca, 0x48, 0x47, 0xc5, + 0x63, 0xc3, 0xe7, 0x07, 0xd4, 0x4d, 0x17, 0x7f, + 0x7b, 0x5b, 0x81, 0xe5, 0x9e, 0x1d, 0xf8, 0x7e, + 0xf7, 0x20, 0x73, 0xe1, 0x8e, 0x7a, 0x2f, 0x20, + 0x28, 0x35, 0x1c, 0xe8, 0x96, 0x07, 0xc3, 0xf1, + 0x61, 0xd8, 0x3e, 0xf6, 0x6b, 0x56, 0x5f, 0x66, + 0x55, 0x13, 0xaa, 0x80, 0x99, 0xac, 0x82, 0x98, + 0x22, 0x20, 0x22, 0x73, 0x50, 0x04, 0xee, 0xc4, + 0x45, 0xfb, 0xd5, 0x66, 0x03, 0x2b, 0xd7, 0xa0, + 0x79, 0x4b, 0xe0, 0x58, 0x7c, 0x36, 0x9f, 0x3c, + 0x56, 0xa6, 0x3d, 0x8b, 0xd5, 0xbc, 0x81, 0xd7, + 0xdb, 0x0d, 0xb8, 0x7e, 0x00, 0x59, 0xe4, 0xf0, + 0x68, 0x2a, 0x86, 0xa9, 0x53, 0x9a, 0xe2, 0x4c, + 0xc7, 0x47, 0x55, 0x77, 0x21, 0x09, 0x6c, 0xab, + 0xfb, 0x73, 0x79, 0x4f, 0xc7, 0xcf, 0x5b, 0x9d, + 0x85, 0x31, 0x46, 0x12, 0x12, 0xbe, 0x58, 0x48, + 0xd3, 0xf9, 0x59, 0xca, 0xed, 0x0f, 0xc0, 0xff, + 0xe7, 0x77, 0x3b, 0xe4, 0xa4, 0x87, 0x73, 0x2c, + 0x25, 0xe3, 0xde, 0x78, 0x14, 0x3f, 0x6f, 0xd6, + 0xb1, 0x77, 0xca, 0x00, 0xbb, 0xc8, 0xb3, 0x58, + 0x1c, 0x0f, 0xcb, 0x49, 0xae, 0x47, 0x60, 0x7b, + 0x3e, 0x18, 0x30, 0xd8, 0x2a, 0x9b, 0xf0, 0x02, + 0x82, 0x2f, 0x17, 0xd3, 0x90, 0xe9, 0x7c, 0xec, + 0x95, 0xb3, 0x53, 0xb1, 0xb0, 0xbc, 0xa7, 0xe1, + 0x77, 0x0f, 0xb3, 0xc7, 0xfe, 0xcd, 0x0f, 0x08, + 0xfe, 0xf0, 0x6c, 0x1f, 0x9e, 0x1f, 0x0a, 0x9c, + 0xf3, 0x5c, 0xd8, 0x36, 0xff, 0xe9, 0xdd, 0x70, + 0x77, 0x54, 0x37, 0x5c, 0xf8, 0x4d, 0x4d, 0xd7, + 0xba, 0xe9, 0x62, 0x34, 0x21, 0x9d, 0x29, 0x3c, + 0x42, 0x08, 0xb0, 0xbc, 0xaf, 0xc1, 0x0b, 0x80, + 0x07, 0x13, 0xd1, 0xb6, 0xbf, 0xf5, 0x7a, 0x3b, + 0x0c, 0x42, 0xdd, 0x06, 0xbf, 0xb1, 0xa4, 0x8c, + 0xcf, 0x17, 0x52, 0xe7, 0x7e, 0xef, 0x4b, 0x7b, + 0x1a, 0x5e, 0xef, 0x68, 0x08, 0x06, 0x34, 0x68, + 0x9f, 0x89, 0x89, 0xf8, 0xed, 0xfd, 0xb3, 0x1b, + 0x70, 0xbc, 0x80, 0x60, 0xab, 0x64, 0xe2, 0xc5, + 0x7a, 0x0d, 0x57, 0x5d, 0xe8, 0x5e, 0x18, 0x8b, + 0xe2, 0xd1, 0x54, 0xac, 0xa7, 0x9f, 0x39, 0xda, + 0x34, 0x37, 0x9a, 0x90, 0xf0, 0xe1, 0x4c, 0xa2, + 0x67, 0xc5, 0x32, 0x42, 0x80, 0x97, 0x9b, 0x75, + 0xac, 0x17, 0xde, 0x8b, 0x32, 0x64, 0x63, 0x22, + 0x26, 0xd2, 0x0a, 0x26, 0x9b, 0xc9, 0x2d, 0x85, + 0x72, 0x5b, 0x29, 0x6b, 0x0e, 0xf6, 0x6b, 0xf6, + 0xc9, 0x01, 0xb8, 0x15, 0xa1, 0xbb, 0xd4, 0xef, + 0xed, 0x04, 0xcb, 0x00, 0xe3, 0x29, 0x05, 0x4f, + 0x66, 0x13, 0xb7, 0xc2, 0xe5, 0xe6, 0xa6, 0xe1, + 0xfa, 0x04, 0xf9, 0x9a, 0x05, 0xcb, 0x0d, 0x87, + 0xd0, 0x97, 0xf6, 0x74, 0x3c, 0x98, 0x8c, 0x61, + 0xe1, 0x90, 0x12, 0x8b, 0x66, 0x79, 0xd8, 0xaf, + 0xd9, 0x88, 0xca, 0x3c, 0xe2, 0x0a, 0x8f, 0x9f, + 0xd6, 0x6a, 0x28, 0x1e, 0xd2, 0x56, 0x65, 0x10, + 0xce, 0x74, 0x6b, 0x56, 0xbb, 0x38, 0x79, 0x44, + 0xe2, 0xf1, 0x70, 0x2a, 0x76, 0x6a, 0x73, 0xca, + 0xe1, 0xc0, 0xbf, 0x51, 0x34, 0x10, 0x93, 0x79, + 0x10, 0x84, 0x65, 0x67, 0xcd, 0xea, 0xbd, 0x0c, + 0xfb, 0x70, 0x2a, 0x86, 0xc5, 0xb1, 0xe8, 0xb9, + 0xae, 0xc5, 0x5f, 0xde, 0x94, 0x50, 0x6c, 0x0c, + 0xd6, 0x5e, 0x2d, 0x19, 0x11, 0xf0, 0xf1, 0x6c, + 0x02, 0x8a, 0xc4, 0x81, 0x67, 0xc3, 0x72, 0xaa, + 0xe9, 0xf8, 0xd8, 0xa9, 0x58, 0xa1, 0x7c, 0xa7, + 0xe9, 0xa2, 0xd8, 0x70, 0xae, 0xdc, 0x27, 0x38, + 0xa9, 0x0a, 0xb8, 0x33, 0x12, 0xc1, 0x68, 0x52, + 0xea, 0xba, 0xc2, 0x11, 0x10, 0x60, 0xbb, 0x6c, + 0xe2, 0xd9, 0x7a, 0x0d, 0x41, 0x40, 0x90, 0x8c, + 0x08, 0x78, 0x38, 0x19, 0xbb, 0xf0, 0x11, 0x93, + 0xed, 0x06, 0x28, 0xd4, 0xc3, 0xfb, 0x8f, 0x36, + 0x6e, 0x52, 0x86, 0x85, 0x42, 0xc3, 0xc1, 0xdf, + 0xde, 0x96, 0xce, 0x0e, 0xc0, 0xbd, 0x92, 0x8b, + 0x4b, 0x98, 0xcd, 0xa9, 0x10, 0x38, 0xe6, 0x52, + 0xfc, 0x2b, 0x29, 0x9d, 0xa9, 0xe8, 0x2e, 0x9e, + 0xad, 0xd5, 0x50, 0x37, 0xdd, 0x63, 0x09, 0xd5, + 0x58, 0x32, 0x9c, 0xd3, 0xae, 0x19, 0x2e, 0x56, + 0xf3, 0x06, 0x04, 0x9e, 0x85, 0xe3, 0x06, 0x18, + 0x4b, 0x4a, 0xc8, 0xd7, 0xed, 0x36, 0xf1, 0x92, + 0x6e, 0x76, 0xa6, 0x9f, 0xdc, 0x49, 0x1e, 0x4b, + 0xb0, 0xf2, 0xb5, 0xd0, 0x55, 0x89, 0x63, 0x43, + 0xc1, 0xf4, 0xbf, 0xbc, 0x29, 0x75, 0x35, 0xd8, + 0x7e, 0x66, 0x10, 0x9e, 0x8c, 0x61, 0x61, 0x3c, + 0xda, 0x75, 0x93, 0x58, 0x40, 0x08, 0x5e, 0x6e, + 0xd4, 0xb1, 0x76, 0xc9, 0x32, 0x91, 0x11, 0x29, + 0x0c, 0x28, 0x3b, 0x15, 0x13, 0x57, 0xdd, 0xd3, + 0xc5, 0xb3, 0xa1, 0xc3, 0xcd, 0x44, 0x5a, 0x46, + 0x2a, 0x2a, 0xb6, 0x44, 0x27, 0xba, 0xc1, 0xf3, + 0x09, 0x9e, 0x6f, 0xd4, 0xb0, 0x5b, 0xb1, 0x5a, + 0x89, 0xc3, 0x55, 0xce, 0x61, 0x53, 0x28, 0xb7, + 0x85, 0xe7, 0xeb, 0xb5, 0xfe, 0x06, 0xe0, 0xb9, + 0x91, 0x50, 0x6c, 0x9a, 0x1a, 0x17, 0x5c, 0x1d, + 0x3b, 0x65, 0x0b, 0xef, 0xf6, 0xb4, 0x36, 0x83, + 0xea, 0xd3, 0x98, 0xca, 0x84, 0x15, 0x8a, 0x6f, + 0xde, 0x95, 0x3b, 0xee, 0x10, 0xe7, 0xc7, 0x22, + 0x18, 0x4f, 0xca, 0xd0, 0x6d, 0x1f, 0x84, 0x10, + 0x14, 0xea, 0x4e, 0xcb, 0x9f, 0x73, 0xb3, 0x64, + 0xc0, 0xf3, 0x49, 0xd3, 0x56, 0x8d, 0xc5, 0x48, + 0x5c, 0x6a, 0x8d, 0xa0, 0xad, 0xe5, 0x0d, 0x3c, + 0xdf, 0x18, 0x8c, 0x34, 0x63, 0x3a, 0x2a, 0xe2, + 0x93, 0x3b, 0xc9, 0xae, 0xca, 0x9e, 0xdf, 0x2e, + 0x55, 0x4e, 0x3d, 0x3e, 0xb9, 0xcd, 0x70, 0x4d, + 0x01, 0xf8, 0x85, 0xf1, 0xe8, 0xb9, 0x0c, 0x53, + 0x1c, 0x2f, 0xc0, 0xd7, 0x6f, 0x4a, 0x6d, 0x33, + 0xb9, 0x1c, 0xcb, 0xe0, 0x7f, 0xfa, 0x64, 0xac, + 0x2d, 0xc1, 0xe9, 0xf4, 0xbc, 0x17, 0x1b, 0x0e, + 0xf6, 0xab, 0x16, 0x1e, 0x4d, 0xc5, 0xe9, 0x59, + 0x2e, 0xe5, 0xc6, 0xe3, 0x07, 0xe4, 0xc2, 0xc2, + 0x52, 0x55, 0xdd, 0xc5, 0x6a, 0x41, 0x07, 0xcb, + 0x30, 0x50, 0x44, 0x0e, 0x9b, 0x45, 0x03, 0x7d, + 0x6b, 0xdf, 0xe3, 0x39, 0x06, 0x1f, 0x4e, 0x27, + 0x06, 0xf6, 0xb0, 0x99, 0x8e, 0x0f, 0x2f, 0x20, + 0x3d, 0x65, 0xef, 0xc3, 0xc6, 0x7a, 0xd1, 0xc0, + 0xb3, 0x1e, 0xf5, 0x88, 0xb7, 0x4a, 0x26, 0xb6, + 0xcb, 0x9d, 0x77, 0x69, 0x92, 0xc0, 0xe2, 0xf1, + 0x54, 0xbc, 0x19, 0xf4, 0xc2, 0xaf, 0xcd, 0x1c, + 0x12, 0x22, 0xb8, 0x3f, 0x11, 0xc5, 0x8b, 0xcd, + 0x3a, 0xb6, 0x4b, 0x26, 0x0c, 0xdb, 0xc7, 0x5a, + 0xc1, 0xb8, 0x94, 0x9d, 0x66, 0x59, 0x73, 0xf0, + 0x1f, 0xaf, 0x0a, 0xf8, 0x60, 0x3a, 0xde, 0xf6, + 0x7a, 0x3a, 0x51, 0x6c, 0xd8, 0x43, 0x7b, 0x3f, + 0x7c, 0xd9, 0x34, 0x24, 0x38, 0x2f, 0x6b, 0x05, + 0xe3, 0x98, 0x20, 0xc6, 0x81, 0xae, 0xee, 0x41, + 0xe9, 0x7a, 0x65, 0x5f, 0xc7, 0x48, 0x5c, 0x42, + 0xfc, 0x90, 0x98, 0x85, 0x66, 0x79, 0x78, 0xbd, + 0x1d, 0x1a, 0x12, 0x30, 0x4c, 0xf8, 0x79, 0xc9, + 0x02, 0x77, 0x2c, 0x61, 0x5a, 0xd9, 0xd7, 0x31, + 0x95, 0x51, 0xae, 0x55, 0x67, 0x33, 0x65, 0xf8, + 0xf0, 0x02, 0x82, 0x62, 0x3d, 0xf4, 0x47, 0x0f, + 0x02, 0x82, 0x98, 0x22, 0xb4, 0x94, 0xd1, 0x5c, + 0x3f, 0xc0, 0xdb, 0x5d, 0x0d, 0x5b, 0x45, 0x13, + 0xff, 0xf0, 0x41, 0xae, 0xe7, 0x7b, 0xd5, 0xf1, + 0xc2, 0x23, 0x96, 0xf5, 0x82, 0xd1, 0x71, 0x83, + 0xd3, 0xb7, 0x68, 0xe6, 0xf9, 0x04, 0xdf, 0x2e, + 0x95, 0xf1, 0xf1, 0xdc, 0xc5, 0x0c, 0x09, 0xfc, + 0x80, 0xa0, 0xa2, 0xbb, 0xc7, 0xba, 0xaa, 0xdf, + 0xed, 0x69, 0x58, 0xcb, 0x1b, 0x2d, 0x89, 0x3c, + 0x2a, 0xf9, 0xd6, 0xce, 0x7e, 0xcd, 0xc6, 0xf3, + 0xf5, 0xf3, 0xed, 0x38, 0x4f, 0x2a, 0x91, 0xda, + 0x6e, 0x70, 0x6a, 0x27, 0xb4, 0xc8, 0xb3, 0xf8, + 0xf4, 0x4e, 0x12, 0x33, 0x19, 0x05, 0x15, 0xdd, + 0xc5, 0xdb, 0x1d, 0xed, 0xd2, 0x66, 0x68, 0x3d, + 0x9f, 0xe0, 0xe9, 0x5a, 0x58, 0x1a, 0x1d, 0x4d, + 0xbe, 0x9f, 0x0d, 0x3d, 0x4c, 0x10, 0x90, 0x9e, + 0xca, 0xe9, 0xb7, 0x09, 0x49, 0x60, 0x2f, 0x3c, + 0xba, 0x75, 0x52, 0x25, 0xab, 0xa2, 0xbb, 0xad, + 0x05, 0x6a, 0xa1, 0xc3, 0x99, 0x7c, 0x44, 0xe2, + 0xf1, 0x5f, 0x0e, 0x29, 0x42, 0xfd, 0xb2, 0xdd, + 0x40, 0x45, 0x77, 0xf1, 0xf1, 0x6c, 0x02, 0x53, + 0x99, 0xf7, 0xa5, 0xeb, 0x4e, 0xb2, 0x8e, 0x14, + 0xca, 0x65, 0xaf, 0x9b, 0xcf, 0xd6, 0xaa, 0xb0, + 0xdc, 0xa0, 0xed, 0xbe, 0x7f, 0x3c, 0x1d, 0x87, + 0xe3, 0x05, 0x58, 0xd9, 0xd7, 0x10, 0x53, 0x04, + 0x7c, 0x71, 0x2f, 0xdd, 0x75, 0xf0, 0xf5, 0x7c, + 0x82, 0x62, 0xc3, 0xc6, 0x5a, 0xc1, 0x40, 0xa1, + 0x66, 0x9f, 0xda, 0x6c, 0xd9, 0x97, 0x12, 0xb4, + 0x2c, 0xb0, 0x10, 0x05, 0x0e, 0xf5, 0xa6, 0x8d, + 0xd4, 0x83, 0x89, 0x58, 0xcb, 0x8b, 0xb3, 0x1b, + 0xb7, 0xa3, 0x03, 0xdc, 0x66, 0x10, 0xaf, 0x1b, + 0x2e, 0xfe, 0xe9, 0xc3, 0x11, 0x88, 0x3c, 0x8b, + 0x80, 0x10, 0xac, 0x15, 0x0c, 0xbc, 0xda, 0x6c, + 0xb4, 0x2d, 0xee, 0x11, 0x99, 0x47, 0x42, 0xe1, + 0xa1, 0x4a, 0x3c, 0x58, 0x36, 0xec, 0xda, 0x1e, + 0x4f, 0xca, 0x90, 0x45, 0x0e, 0x01, 0x21, 0xe0, + 0x18, 0x66, 0x68, 0x4a, 0x5f, 0x01, 0x21, 0xf8, + 0xd7, 0xe7, 0x79, 0xd8, 0x6e, 0xff, 0x85, 0xee, + 0x1f, 0x4f, 0xc7, 0x31, 0xdf, 0xe5, 0x42, 0xf9, + 0xdd, 0x72, 0x05, 0xbb, 0x95, 0xe3, 0xe5, 0xde, + 0xd9, 0x11, 0x15, 0x96, 0xed, 0x1f, 0x93, 0x0f, + 0xec, 0x37, 0x63, 0x49, 0x19, 0x8f, 0xa6, 0x62, + 0x50, 0x44, 0x0e, 0x9e, 0x4f, 0xd0, 0x30, 0x5d, + 0xfc, 0xe5, 0x6d, 0x79, 0x68, 0x03, 0xf0, 0x3f, + 0x3f, 0x19, 0xed, 0xcb, 0x02, 0xf5, 0xed, 0xbb, + 0x72, 0xdb, 0x22, 0x22, 0x09, 0x2c, 0x3e, 0x9a, + 0x49, 0x60, 0x34, 0x29, 0x83, 0x10, 0x02, 0xcd, + 0xf2, 0x50, 0x37, 0x3c, 0x68, 0xb6, 0x87, 0xfd, + 0xaa, 0x0d, 0xdb, 0xf5, 0x71, 0x67, 0x34, 0x82, + 0x7b, 0xe3, 0xd1, 0xd6, 0x2e, 0xa0, 0xaa, 0xbb, + 0x48, 0x46, 0x85, 0x63, 0x96, 0xa5, 0x14, 0xca, + 0x55, 0xe0, 0xfa, 0x04, 0x3f, 0xae, 0x56, 0x4f, + 0xb5, 0xa7, 0x4c, 0xaa, 0x02, 0x1e, 0x4d, 0xc7, + 0x8f, 0x6d, 0xf6, 0xbc, 0x80, 0x34, 0xef, 0x7b, + 0x1f, 0xeb, 0x05, 0x03, 0x31, 0x85, 0x87, 0xe9, + 0xf8, 0xc8, 0x44, 0x45, 0x6c, 0x97, 0x4d, 0xec, + 0x56, 0xbb, 0x1f, 0x6d, 0xec, 0xcb, 0x0e, 0x38, + 0xb4, 0x8d, 0x0a, 0x17, 0x7f, 0xc3, 0xf6, 0xf1, + 0xe3, 0x6a, 0xa8, 0x1d, 0xcd, 0xb3, 0x0c, 0xfe, + 0xeb, 0x93, 0xd1, 0xae, 0x3a, 0xa0, 0x09, 0x01, + 0xfe, 0xfc, 0x4b, 0xb1, 0x25, 0x79, 0xf9, 0x87, + 0x67, 0xfb, 0x50, 0x44, 0x0e, 0xae, 0x17, 0x74, + 0xd4, 0xde, 0xd5, 0x2d, 0x0f, 0xfa, 0x91, 0x4e, + 0xda, 0x9f, 0x37, 0xeb, 0x60, 0x99, 0xb0, 0x63, + 0x33, 0x19, 0x11, 0xf0, 0x64, 0x36, 0xd1, 0x66, + 0xca, 0x7d, 0x6b, 0x4b, 0x28, 0x3e, 0x19, 0xc8, + 0xb9, 0xbb, 0x2c, 0x72, 0x5d, 0x75, 0x39, 0x1f, + 0x30, 0x3f, 0x1a, 0xc1, 0x7e, 0xcd, 0x6e, 0x1b, + 0xf5, 0x59, 0x18, 0x8b, 0xe0, 0xd1, 0x54, 0x1c, + 0x04, 0xc0, 0x8b, 0xf5, 0xda, 0x40, 0x4b, 0xd4, + 0x7b, 0x55, 0x6b, 0x68, 0xcf, 0x7b, 0x3b, 0x55, + 0x2f, 0xaa, 0xba, 0xdb, 0x97, 0xce, 0xe2, 0xa3, + 0x93, 0x10, 0xb6, 0x1b, 0xe0, 0xbb, 0xe5, 0x0a, + 0x18, 0x00, 0xe9, 0x98, 0x88, 0x74, 0x44, 0x84, + 0x2c, 0x86, 0x5e, 0xae, 0x04, 0x04, 0x11, 0x99, + 0x6f, 0x33, 0x71, 0x10, 0x79, 0x96, 0xaa, 0x44, + 0x51, 0x06, 0xb2, 0xee, 0x69, 0xcd, 0x99, 0x7e, + 0x45, 0xe4, 0x10, 0x93, 0xf9, 0x56, 0xac, 0xb1, + 0x9c, 0xf0, 0x48, 0xac, 0x6e, 0x7a, 0x18, 0x4d, + 0x48, 0x98, 0x48, 0x2b, 0x2d, 0xa9, 0x48, 0x3f, + 0x20, 0xf8, 0x6e, 0xa9, 0x7c, 0xe2, 0x54, 0x84, + 0x2c, 0x72, 0xb8, 0x37, 0x1e, 0xc5, 0x6c, 0x56, + 0x6d, 0x6d, 0xe2, 0x36, 0x8b, 0x26, 0x7e, 0xde, + 0xaa, 0x9f, 0xea, 0xde, 0xb6, 0x72, 0x0e, 0xdb, + 0xcd, 0xbe, 0x77, 0x41, 0x77, 0xda, 0x95, 0x1c, + 0x28, 0xc5, 0x08, 0x1c, 0x03, 0x37, 0x08, 0x3d, + 0x20, 0x8f, 0x7a, 0xba, 0x0e, 0xc2, 0xda, 0x8d, + 0x01, 0x30, 0x9d, 0x55, 0x21, 0x09, 0x2c, 0x58, + 0x86, 0xc1, 0xfd, 0x89, 0xe8, 0xad, 0xbd, 0x19, + 0x03, 0x12, 0x2a, 0x4f, 0x9d, 0x75, 0x93, 0xf4, + 0x42, 0x36, 0x26, 0xe2, 0xab, 0xfb, 0xbd, 0x89, + 0xcb, 0x6b, 0x96, 0x87, 0x77, 0xbb, 0x1a, 0xaa, + 0x86, 0x8b, 0x47, 0x53, 0xc7, 0xbd, 0x7b, 0x5f, + 0x6c, 0xd4, 0x6f, 0xa5, 0x83, 0xd0, 0xa0, 0x61, + 0x19, 0xa6, 0xe7, 0xf2, 0x7e, 0x42, 0x15, 0xf0, + 0xd1, 0x6c, 0xbb, 0xa3, 0xd1, 0x6e, 0xc5, 0xc2, + 0xcf, 0x5b, 0x75, 0x30, 0x60, 0xf0, 0xdb, 0x07, + 0x99, 0x13, 0xe7, 0xf3, 0x5d, 0x9f, 0xe0, 0xdb, + 0x77, 0x65, 0x94, 0x4e, 0x71, 0xaa, 0x8a, 0xab, + 0x02, 0xfe, 0xfe, 0x51, 0x96, 0x7e, 0x38, 0x94, + 0x4b, 0x65, 0xab, 0x64, 0x62, 0xad, 0x60, 0xa0, + 0xa2, 0x39, 0x5d, 0xcf, 0xd2, 0x4b, 0x3c, 0x8b, + 0xe9, 0xac, 0x7a, 0xea, 0x28, 0x20, 0x03, 0x60, + 0x2a, 0xab, 0xe0, 0xf1, 0x54, 0xbc, 0xad, 0xdc, + 0xbc, 0x5b, 0xb1, 0xf0, 0xfd, 0x4a, 0x65, 0x20, + 0xd3, 0x0c, 0x03, 0x0f, 0xc0, 0x9d, 0xb8, 0x3f, + 0x11, 0xc5, 0xfd, 0x89, 0x58, 0x6b, 0xd7, 0xf2, + 0x76, 0x57, 0x83, 0xed, 0x06, 0x5d, 0xdb, 0x1e, + 0x9e, 0x87, 0x8b, 0xcc, 0x90, 0xde, 0x24, 0xb6, + 0xcb, 0x26, 0x7e, 0xe8, 0xc2, 0xbd, 0xaa, 0x5b, + 0xc6, 0xd3, 0x32, 0x3e, 0x99, 0x4b, 0xf6, 0xd5, + 0x5a, 0xf2, 0xd9, 0x7a, 0x0d, 0xeb, 0x97, 0x3c, + 0x16, 0x74, 0x53, 0xe1, 0x58, 0x06, 0x1f, 0xcf, + 0x25, 0x30, 0x99, 0x56, 0xb0, 0x53, 0xb1, 0xf0, + 0x6e, 0x57, 0x43, 0xdd, 0x74, 0x7b, 0x5a, 0x0c, + 0x22, 0x12, 0x8f, 0x4c, 0x4c, 0x44, 0x45, 0x77, + 0xda, 0x9a, 0xaa, 0xe6, 0x46, 0x54, 0x7c, 0x34, + 0x93, 0xe8, 0xf8, 0x33, 0x6f, 0x77, 0x35, 0xbc, + 0xde, 0x6e, 0x9c, 0x99, 0x10, 0x3c, 0x99, 0x4b, + 0x74, 0x74, 0x08, 0xa2, 0x50, 0xfa, 0x8d, 0xe5, + 0xf8, 0x78, 0xb6, 0x5e, 0xc7, 0x7e, 0xad, 0xff, + 0x55, 0xae, 0x99, 0xac, 0x8a, 0xc5, 0xf1, 0x68, + 0x47, 0xdd, 0xf9, 0x9d, 0x8a, 0x85, 0xef, 0x97, + 0x2b, 0x03, 0x79, 0x4f, 0x97, 0xda, 0x52, 0x2c, + 0x70, 0x2c, 0x1e, 0x4f, 0xc7, 0x30, 0x9d, 0x55, + 0xb1, 0x5b, 0xb1, 0xf0, 0x7a, 0xa7, 0xd1, 0x5a, + 0x10, 0xa6, 0x33, 0x0a, 0x36, 0x4b, 0xe6, 0xc0, + 0xfe, 0xf6, 0xf2, 0x5e, 0xd8, 0xfe, 0x1d, 0x95, + 0x79, 0x64, 0x63, 0xe2, 0x95, 0x7b, 0x15, 0x0f, + 0x8a, 0xc9, 0xb4, 0x12, 0x96, 0xee, 0x7d, 0x02, + 0x06, 0xa1, 0x9d, 0x64, 0xa1, 0xee, 0xc0, 0x76, + 0xcf, 0x97, 0xdc, 0xec, 0x96, 0x2d, 0x3c, 0x45, + 0x0d, 0x9f, 0xde, 0x4d, 0xf6, 0xed, 0x35, 0x3e, + 0x99, 0x4d, 0x40, 0xb3, 0xbc, 0x8e, 0xb2, 0xa6, + 0x94, 0x76, 0x52, 0x51, 0xb1, 0x35, 0x73, 0x3b, + 0xd1, 0xf4, 0xd9, 0x7e, 0xb9, 0x51, 0xef, 0x49, + 0xca, 0x52, 0xb7, 0x3d, 0xe8, 0x76, 0xf8, 0x9c, + 0x8d, 0xc4, 0x25, 0x3c, 0x98, 0x8c, 0x85, 0x2a, + 0x54, 0x79, 0x03, 0x93, 0x29, 0xa5, 0x63, 0xb3, + 0xd6, 0x49, 0x42, 0x29, 0x1c, 0xcb, 0xe0, 0xb3, + 0xf9, 0x14, 0x52, 0x51, 0x01, 0xaf, 0xb7, 0xb5, + 0x1b, 0xe5, 0x77, 0x4d, 0xb9, 0x99, 0x10, 0x00, + 0x6b, 0x87, 0xe4, 0x4f, 0xfb, 0x09, 0xcb, 0x00, + 0x5f, 0x2c, 0xa6, 0x4f, 0x15, 0x94, 0x19, 0x4b, + 0x0e, 0xee, 0xf8, 0xe4, 0xd2, 0x02, 0x70, 0x26, + 0x2a, 0xe2, 0xd3, 0xbb, 0x49, 0xec, 0xd5, 0x6c, + 0xfc, 0xfb, 0xcb, 0xc2, 0xb1, 0xf3, 0xdb, 0x41, + 0x06, 0x5f, 0xa0, 0xe9, 0xc6, 0xb2, 0x19, 0x6a, + 0xcf, 0x3e, 0x98, 0x8c, 0xb5, 0x1a, 0x44, 0x6e, + 0x23, 0xe9, 0x43, 0x9a, 0xc9, 0x07, 0x67, 0x6f, + 0x07, 0x06, 0x12, 0x15, 0xdd, 0xed, 0xf9, 0xf7, + 0x95, 0xb5, 0xfe, 0x07, 0xca, 0x87, 0x53, 0x71, + 0x7c, 0xfd, 0xba, 0x08, 0x42, 0xe8, 0x02, 0x73, + 0x1a, 0x22, 0xdf, 0x1e, 0xe0, 0x3c, 0x9f, 0x60, + 0xe3, 0x9c, 0xcf, 0xca, 0x97, 0xf7, 0xd2, 0x2d, + 0xf7, 0xa0, 0xe9, 0x8c, 0x82, 0xb2, 0xe6, 0xe0, + 0xf9, 0x46, 0x0d, 0xff, 0x70, 0xc4, 0x50, 0xe4, + 0xc0, 0xfc, 0xa0, 0x13, 0x8f, 0xa7, 0xe2, 0xad, + 0x7b, 0xea, 0xc3, 0x99, 0x38, 0xfd, 0x80, 0x28, + 0x03, 0xdf, 0xf5, 0x7e, 0xbf, 0x52, 0x1d, 0xc8, + 0x1a, 0x04, 0x00, 0xf7, 0x27, 0xce, 0x56, 0x73, + 0xab, 0x1b, 0x83, 0x33, 0x4f, 0xe1, 0x2f, 0x2b, + 0x7f, 0xad, 0x19, 0x2e, 0xfe, 0xf4, 0xaa, 0xd8, + 0x52, 0x43, 0xba, 0xca, 0xbc, 0x79, 0x69, 0x57, + 0xc3, 0x68, 0x42, 0x1a, 0x8a, 0x06, 0xad, 0x03, + 0xb2, 0x31, 0x11, 0xbf, 0x7b, 0x98, 0x85, 0x66, + 0x79, 0xa8, 0xe8, 0x2e, 0xf6, 0x2a, 0x16, 0x34, + 0xcb, 0x83, 0xed, 0x85, 0x32, 0x95, 0xa7, 0x05, + 0xf3, 0x0f, 0x66, 0x13, 0xfd, 0x4f, 0x12, 0x22, + 0x02, 0xbe, 0x58, 0x48, 0xe3, 0xe7, 0xcd, 0xfa, + 0xb9, 0x64, 0x29, 0x6f, 0x33, 0x0c, 0x03, 0x88, + 0x1c, 0x0b, 0xdb, 0x0b, 0x50, 0xac, 0x3b, 0xa8, + 0x1b, 0x6e, 0x6b, 0xce, 0x96, 0xe7, 0x18, 0x7c, + 0x30, 0x15, 0xc3, 0x8b, 0xcd, 0x7a, 0xef, 0xba, + 0xd6, 0x87, 0xbe, 0xdd, 0xb0, 0x7d, 0x4c, 0xa4, + 0x64, 0x3c, 0x9a, 0x8a, 0xc3, 0xf5, 0x03, 0xf0, + 0x2c, 0x8b, 0xd5, 0xbc, 0x8e, 0xb5, 0x82, 0xd1, + 0x4a, 0x8e, 0x3b, 0x3d, 0xa3, 0x19, 0x3a, 0xfe, + 0x47, 0xb9, 0x04, 0x02, 0x42, 0xb0, 0xb4, 0xa7, + 0x63, 0x65, 0x4f, 0x87, 0xeb, 0x07, 0x03, 0x89, + 0x17, 0x2c, 0xc3, 0x60, 0x6e, 0xe4, 0xf4, 0x09, + 0x0f, 0xd3, 0x0d, 0xf0, 0xd3, 0x6a, 0x75, 0x60, + 0xf1, 0xea, 0xd2, 0x76, 0xc0, 0x7e, 0x40, 0xae, + 0x5c, 0x03, 0xf7, 0xf0, 0x6b, 0xf9, 0xe6, 0x6d, + 0x19, 0xd9, 0x84, 0x84, 0x7c, 0xd5, 0xc6, 0x27, + 0x77, 0x93, 0x43, 0xd3, 0xa5, 0x19, 0x95, 0x79, + 0x44, 0x65, 0x1e, 0xd3, 0x87, 0xe6, 0x31, 0x75, + 0xdb, 0xc7, 0x0f, 0xcb, 0x95, 0x36, 0xf5, 0xac, + 0x98, 0xc2, 0xe3, 0xf1, 0x74, 0x7c, 0xa0, 0x76, + 0x92, 0x23, 0x09, 0x09, 0xb9, 0x78, 0x0e, 0x65, + 0xcd, 0x41, 0x45, 0x77, 0xb0, 0xb4, 0xab, 0xf7, + 0xbd, 0xc4, 0x74, 0xd3, 0x90, 0x04, 0x16, 0xbf, + 0x5e, 0x48, 0x23, 0x1d, 0x11, 0x50, 0x37, 0x3d, + 0xbc, 0x58, 0xaf, 0xe1, 0x2f, 0x6f, 0xca, 0x78, + 0x32, 0x97, 0xc0, 0x78, 0xb3, 0x23, 0x7d, 0x26, + 0x17, 0x76, 0x67, 0x3e, 0xed, 0x51, 0x74, 0x25, + 0x5f, 0xb3, 0x5b, 0xf7, 0xb9, 0xe1, 0xf8, 0x88, + 0xab, 0x02, 0x5e, 0x6e, 0xd5, 0xb1, 0x5f, 0xb1, + 0x8e, 0x35, 0x79, 0xf1, 0x1c, 0x83, 0x88, 0xc4, + 0xc3, 0xf1, 0xc2, 0xde, 0x0c, 0x9e, 0x65, 0x70, + 0x67, 0x34, 0x72, 0x6d, 0x3d, 0xac, 0x29, 0xb7, + 0x07, 0xcf, 0x27, 0xf8, 0xcf, 0x5f, 0x8a, 0x03, + 0x4f, 0xcc, 0x15, 0x89, 0x6b, 0x75, 0x46, 0x9f, + 0xc4, 0xf2, 0xae, 0x36, 0xd0, 0xd7, 0xc1, 0xfd, + 0xcf, 0xff, 0xeb, 0xff, 0xfe, 0xdf, 0x2e, 0xfa, + 0x4b, 0x44, 0x9e, 0xbd, 0x36, 0xc1, 0xb5, 0xeb, + 0x0c, 0x2b, 0x20, 0x30, 0x9d, 0x00, 0xae, 0x1f, + 0xa0, 0x6a, 0xb8, 0x98, 0xcb, 0x45, 0x86, 0x56, + 0x32, 0xef, 0xe0, 0xf3, 0x2b, 0x1c, 0x32, 0x61, + 0x78, 0x3c, 0x1d, 0x6f, 0x2d, 0xf8, 0x83, 0xde, + 0xed, 0xa9, 0x12, 0x87, 0x74, 0x54, 0xc4, 0x78, + 0x5a, 0x41, 0xdd, 0x74, 0x07, 0xda, 0x8c, 0x77, + 0x9d, 0x19, 0x4b, 0xca, 0xf8, 0x62, 0x31, 0xdd, + 0x52, 0x7b, 0x93, 0x04, 0x16, 0x0d, 0x33, 0x3c, + 0x2b, 0x3f, 0x30, 0x74, 0x18, 0x6d, 0xfa, 0xf6, + 0x26, 0x54, 0x01, 0x8a, 0xc8, 0x9d, 0x39, 0xe8, + 0xdf, 0xba, 0xce, 0x00, 0x32, 0x31, 0xa9, 0x95, + 0x50, 0x25, 0x54, 0x1e, 0xa5, 0xba, 0x83, 0xc9, + 0xa6, 0x14, 0x69, 0x44, 0xe6, 0x51, 0xa8, 0xdb, + 0x90, 0x04, 0x0e, 0x0f, 0x26, 0x63, 0x78, 0x72, + 0x27, 0x89, 0xbb, 0xa3, 0x11, 0xdc, 0x1d, 0x8d, + 0x20, 0xae, 0x84, 0xf3, 0x90, 0x63, 0x49, 0x99, + 0xca, 0x4a, 0x52, 0x06, 0x0e, 0xcb, 0x32, 0x18, + 0x49, 0xc8, 0x30, 0x1d, 0x1f, 0x9a, 0xe5, 0x41, + 0x16, 0x38, 0xdc, 0x6b, 0xaa, 0xaa, 0xe9, 0x7d, + 0xf4, 0xec, 0x76, 0xbd, 0x00, 0xb3, 0xb9, 0x48, + 0xc7, 0x31, 0xd9, 0x42, 0xdd, 0xc6, 0xcb, 0x8d, + 0x3a, 0x76, 0x2a, 0x83, 0x3d, 0x1a, 0xe5, 0x2f, + 0xb2, 0xb7, 0x16, 0x38, 0xb6, 0x75, 0x0e, 0x74, + 0x30, 0xfb, 0x7b, 0x53, 0x10, 0x78, 0x16, 0xff, + 0xf8, 0x41, 0x0e, 0x7f, 0x78, 0xb6, 0x0f, 0xdd, + 0xf6, 0xf0, 0xd3, 0x5a, 0x15, 0x1f, 0xce, 0x24, + 0xce, 0xcc, 0x88, 0xae, 0x43, 0x76, 0x58, 0xb7, + 0x3c, 0xa4, 0xfb, 0xec, 0x1c, 0x13, 0x57, 0xf9, + 0xb6, 0x9a, 0x63, 0x51, 0x73, 0xda, 0x54, 0x8b, + 0x2e, 0x83, 0x88, 0xc4, 0xe1, 0xab, 0xfb, 0x19, + 0xfc, 0xb2, 0xdd, 0xc0, 0xd2, 0x9e, 0x36, 0x74, + 0x0b, 0xcf, 0xfc, 0x58, 0xe4, 0x98, 0x8a, 0x5c, + 0xb1, 0xe1, 0xb4, 0x3e, 0x17, 0xa3, 0x29, 0xc7, + 0xca, 0x37, 0x1b, 0x9f, 0x66, 0xb2, 0x2a, 0x08, + 0x70, 0xa2, 0x02, 0x5a, 0x54, 0xe6, 0x31, 0x9e, + 0x92, 0x91, 0x8b, 0x4b, 0x48, 0xaa, 0x42, 0x5b, + 0xe3, 0x61, 0x44, 0xe2, 0xf1, 0xc1, 0xa1, 0x33, + 0xdc, 0xa9, 0x8c, 0x82, 0x5c, 0x5c, 0x02, 0x01, + 0x81, 0x7c, 0xc4, 0xcb, 0xf8, 0x32, 0x12, 0x31, + 0x0a, 0xe5, 0xe8, 0x5a, 0xf0, 0xd9, 0x42, 0x0a, + 0x75, 0xcb, 0x83, 0x2a, 0x72, 0xe0, 0x59, 0x06, + 0xf3, 0xa3, 0x11, 0xfc, 0xb8, 0x5a, 0xc5, 0x4e, + 0xd9, 0xc4, 0x48, 0x42, 0x46, 0x49, 0xb3, 0x2f, + 0xac, 0x74, 0xa7, 0x5b, 0x1e, 0x64, 0xa1, 0xfd, + 0x58, 0x65, 0x25, 0xaf, 0xe3, 0xd5, 0x56, 0xfd, + 0x7d, 0x7f, 0xca, 0x00, 0x43, 0xc2, 0x85, 0x64, + 0x69, 0x5c, 0x3f, 0xc0, 0x8f, 0xab, 0xd5, 0x1b, + 0x17, 0x7c, 0x81, 0xb0, 0x29, 0xeb, 0xcf, 0xaf, + 0x4b, 0xad, 0x8b, 0xbc, 0x5d, 0x36, 0xf1, 0xc7, + 0x5f, 0x0a, 0xa7, 0x9e, 0x87, 0x5e, 0x07, 0x38, + 0x96, 0xc1, 0xde, 0x00, 0xb2, 0xb2, 0x6c, 0x4c, + 0xc2, 0xc3, 0xc9, 0xf7, 0xde, 0xb0, 0xbb, 0x65, + 0xf3, 0xca, 0xde, 0xe3, 0x6d, 0x6e, 0x90, 0x3b, + 0xf1, 0x41, 0x64, 0x00, 0xfe, 0x88, 0x4a, 0x54, + 0x28, 0x32, 0x10, 0x96, 0xbf, 0xee, 0x8e, 0x44, + 0xf0, 0xe5, 0x62, 0xba, 0x15, 0x7c, 0x0f, 0x98, + 0xcd, 0xaa, 0xf8, 0xfd, 0xc3, 0x2c, 0x92, 0x47, + 0xfa, 0x19, 0x46, 0x13, 0x32, 0x7e, 0xff, 0x30, + 0x8b, 0x07, 0x13, 0x31, 0x64, 0xa2, 0xdd, 0x75, + 0xfd, 0x4b, 0x02, 0x7b, 0x2c, 0xf8, 0x52, 0x28, + 0x57, 0x49, 0x5c, 0xe6, 0xdb, 0xee, 0xf9, 0x0f, + 0x67, 0x12, 0xf8, 0xea, 0x7e, 0x06, 0x9f, 0x2f, + 0xa4, 0xfa, 0x72, 0xaf, 0x6e, 0x1f, 0x59, 0x4b, + 0xdf, 0xed, 0x69, 0xf8, 0x79, 0xb3, 0x7e, 0x69, + 0xcd, 0xa1, 0xec, 0xfb, 0x05, 0x20, 0x3c, 0xf3, + 0x19, 0x26, 0x8e, 0xd6, 0xf6, 0x4d, 0xdb, 0xc7, + 0xb3, 0xf5, 0xda, 0xb5, 0xee, 0xcc, 0x65, 0x18, + 0xe0, 0xd1, 0xd4, 0x60, 0xba, 0x4f, 0x17, 0xc6, + 0xa2, 0x58, 0x1c, 0x8f, 0x82, 0x61, 0x80, 0x91, + 0xc4, 0xd5, 0xed, 0x7a, 0x6c, 0x6f, 0xf8, 0xce, + 0x81, 0x53, 0x51, 0x11, 0xf1, 0xa6, 0x6c, 0xab, + 0x61, 0xfb, 0x58, 0x2f, 0x1a, 0xf8, 0xeb, 0xbb, + 0x72, 0x2b, 0xc3, 0x5f, 0x38, 0x65, 0x86, 0x3d, + 0xa1, 0x0a, 0x88, 0x1d, 0x0a, 0xc0, 0x63, 0x49, + 0x19, 0xbf, 0x9e, 0x4f, 0xde, 0xda, 0x51, 0x3b, + 0xca, 0xf0, 0xe2, 0xfb, 0x41, 0x98, 0x98, 0xda, + 0x3e, 0x34, 0xfb, 0xe2, 0x67, 0xb3, 0xdb, 0x65, + 0xb3, 0x75, 0x7c, 0xba, 0x92, 0xd7, 0x4f, 0x9d, + 0x7d, 0x1f, 0xc8, 0x7a, 0xfe, 0x7f, 0x7d, 0xbf, + 0x43, 0x07, 0x41, 0x8e, 0x30, 0x95, 0x51, 0xf0, + 0xf1, 0x5c, 0x72, 0x68, 0xdf, 0xff, 0xe1, 0x32, + 0xe7, 0x65, 0x51, 0xd6, 0x5d, 0x80, 0x10, 0xa4, + 0xa1, 0x1c, 0x82, 0x2a, 0x00, 0x00, 0x20, 0x00, + 0x49, 0x44, 0x41, 0x54, 0xa3, 0x22, 0x02, 0x42, + 0xf0, 0x87, 0xa7, 0xfb, 0x37, 0xae, 0xaf, 0xe0, + 0xa2, 0x89, 0xd5, 0xe2, 0x58, 0x14, 0x0d, 0xcb, + 0xeb, 0xa8, 0xa7, 0xfd, 0x68, 0x3a, 0x8e, 0xbb, + 0x27, 0x74, 0x6c, 0xd6, 0x4d, 0x17, 0x7f, 0x7b, + 0x5b, 0xc6, 0x78, 0x4a, 0xc6, 0x74, 0x46, 0xa5, + 0xc6, 0xf6, 0x94, 0x5b, 0x89, 0xe9, 0xf8, 0xf8, + 0xf3, 0xeb, 0x22, 0x1c, 0x2f, 0xc0, 0x3f, 0x7f, + 0x3c, 0x86, 0x8d, 0x82, 0x81, 0x57, 0x5b, 0xf5, + 0x0b, 0xff, 0xde, 0x6c, 0x5c, 0x82, 0xc8, 0xb1, + 0x03, 0x3f, 0xef, 0xed, 0x04, 0x6d, 0x69, 0xec, + 0x80, 0xc0, 0xb1, 0x27, 0xfa, 0x9c, 0x0e, 0x03, + 0x97, 0x19, 0x7c, 0xbd, 0x80, 0xe0, 0xe9, 0x6a, + 0x15, 0x7b, 0x55, 0x0b, 0xf7, 0x26, 0x62, 0x48, + 0x47, 0x45, 0xec, 0x1d, 0x32, 0x7f, 0x1f, 0x16, + 0x08, 0x09, 0xd5, 0xa7, 0x4e, 0x0c, 0xd0, 0x08, + 0xfd, 0x44, 0x4b, 0x9a, 0xd3, 0x9a, 0x28, 0xf0, + 0x9a, 0xbb, 0x81, 0xba, 0xe9, 0xe2, 0xcb, 0xc5, + 0xcc, 0x50, 0x8d, 0xd5, 0x51, 0x86, 0x8f, 0xdd, + 0x66, 0x23, 0x62, 0xb8, 0x13, 0x26, 0xb8, 0x3b, + 0x1a, 0x41, 0xb1, 0x61, 0x23, 0x7f, 0x41, 0x93, + 0x97, 0x62, 0xfd, 0xea, 0x2c, 0x4b, 0x69, 0x00, + 0xee, 0xc0, 0x6a, 0x5e, 0x47, 0xa1, 0x6e, 0xe3, + 0xd7, 0xf3, 0xa9, 0x96, 0x8e, 0x35, 0xa5, 0x37, + 0x2a, 0x9a, 0x83, 0xd7, 0x3b, 0x1a, 0x58, 0x26, + 0x9c, 0x01, 0x4f, 0x47, 0xc5, 0x96, 0xf7, 0xeb, + 0xd3, 0xb5, 0xf7, 0x3d, 0x03, 0x9e, 0x1f, 0xfa, + 0xcb, 0xa6, 0xa3, 0x62, 0xeb, 0xec, 0x37, 0x1d, + 0x13, 0xf1, 0x70, 0x32, 0x86, 0xa2, 0xe6, 0xa0, + 0x54, 0x77, 0x2e, 0xcd, 0xe2, 0xf0, 0x3a, 0x73, + 0x20, 0x22, 0x73, 0x38, 0x20, 0x0b, 0x3c, 0x8b, + 0xd9, 0x9c, 0x8a, 0xcf, 0xe6, 0xd3, 0x5d, 0x19, + 0x9e, 0x50, 0x28, 0x37, 0x99, 0x03, 0x35, 0xbf, + 0xc3, 0xfb, 0xa2, 0x84, 0x2a, 0x5c, 0x38, 0x00, + 0x5f, 0xe9, 0x66, 0x87, 0x7e, 0xac, 0x9d, 0xd1, + 0x2c, 0x0f, 0xff, 0xf1, 0x73, 0x01, 0xd9, 0xb8, + 0x84, 0x27, 0xb3, 0x09, 0x28, 0x22, 0x07, 0xb3, + 0xe9, 0xba, 0x41, 0x39, 0x1b, 0x96, 0x65, 0xf0, + 0xe1, 0x4c, 0x1c, 0x51, 0x99, 0x87, 0x61, 0xfb, + 0xf8, 0xe3, 0xab, 0xc2, 0x89, 0x4e, 0x45, 0x22, + 0xcf, 0xb6, 0x95, 0xfc, 0x65, 0x81, 0xc3, 0xfc, + 0x58, 0x14, 0xf3, 0xcd, 0xcf, 0xe1, 0x3f, 0x7f, + 0x29, 0x0e, 0xdd, 0x8e, 0xf8, 0xd8, 0x83, 0xca, + 0x31, 0x2d, 0x81, 0xf8, 0x4c, 0x54, 0xc2, 0xe3, + 0xe9, 0x38, 0x0d, 0xba, 0x94, 0xa1, 0xe2, 0xc0, + 0x71, 0x2f, 0x1b, 0x93, 0x20, 0x09, 0x2c, 0x7e, + 0x5a, 0xad, 0x62, 0xfb, 0x0a, 0x9b, 0x45, 0x69, + 0x00, 0xbe, 0x04, 0x8a, 0x75, 0x1b, 0xdf, 0xbc, + 0x2b, 0xe3, 0xf7, 0x8f, 0xb2, 0x37, 0xd2, 0xdc, + 0x9d, 0x00, 0xc8, 0x57, 0x2d, 0xac, 0xe4, 0x75, + 0x68, 0xa6, 0x87, 0x91, 0xa4, 0x8c, 0x85, 0xb1, + 0xc8, 0xc0, 0x1b, 0xee, 0x0e, 0x97, 0x43, 0x55, + 0x89, 0x83, 0xc4, 0xb3, 0x30, 0x4e, 0x98, 0xef, + 0xfd, 0x72, 0x31, 0x0d, 0x55, 0xea, 0x9c, 0xd8, + 0x44, 0x65, 0x1e, 0xb3, 0x39, 0xf5, 0x5c, 0x56, + 0x5f, 0xb7, 0x89, 0x87, 0x93, 0x71, 0xcc, 0xe6, + 0xa8, 0xe9, 0x01, 0x65, 0x38, 0xf1, 0x7c, 0x82, + 0x6a, 0x53, 0x46, 0xf7, 0xa0, 0x79, 0x76, 0x10, + 0xa6, 0x0c, 0x34, 0x00, 0x5f, 0xd3, 0xdd, 0x70, + 0xbe, 0x66, 0x63, 0x2c, 0x79, 0xb3, 0xe6, 0x21, + 0x97, 0xf6, 0x34, 0xac, 0xe5, 0x0d, 0x58, 0x87, + 0x8c, 0x18, 0x36, 0x8b, 0x06, 0xb6, 0xcb, 0x26, + 0x3e, 0xb9, 0x93, 0xbc, 0xb4, 0xf7, 0x13, 0x10, + 0x72, 0x62, 0xf0, 0x05, 0x80, 0xb5, 0x82, 0xd1, + 0xd6, 0x38, 0xa4, 0x88, 0x5c, 0x9b, 0x02, 0xd7, + 0xbd, 0xf1, 0x18, 0x36, 0x8b, 0xe6, 0x50, 0xab, + 0x64, 0xbd, 0xdd, 0x69, 0x40, 0xb3, 0x3c, 0xc4, + 0x14, 0x1e, 0x93, 0x69, 0x85, 0x76, 0x38, 0x53, + 0x86, 0x06, 0xc3, 0xf1, 0xf1, 0xb7, 0xb7, 0x25, + 0x18, 0x4d, 0x11, 0x0e, 0xa1, 0x59, 0x09, 0x8a, + 0x29, 0x02, 0x2a, 0xda, 0xcd, 0x36, 0x74, 0xe1, + 0x19, 0x2a, 0x6d, 0xd3, 0x15, 0x25, 0xcd, 0xb9, + 0x71, 0x01, 0x38, 0xa1, 0x0a, 0x98, 0xcd, 0xa9, + 0xc8, 0xc5, 0x25, 0x70, 0x1c, 0x83, 0x52, 0xc3, + 0x41, 0x4d, 0x77, 0x41, 0x10, 0x36, 0x9a, 0x5d, + 0x16, 0x2c, 0xc3, 0xe0, 0xc9, 0x5c, 0x12, 0x6b, + 0x05, 0x03, 0x9a, 0xe5, 0x21, 0x08, 0x08, 0x38, + 0x96, 0x41, 0x2e, 0x2e, 0x61, 0xaf, 0x6a, 0x61, + 0xb3, 0x64, 0xb6, 0x99, 0x71, 0x30, 0x0c, 0x30, + 0x9e, 0x94, 0x51, 0x35, 0x5c, 0x2c, 0x8c, 0x45, + 0x5b, 0x02, 0x14, 0xc3, 0x7c, 0xaf, 0x3a, 0x3e, + 0xc1, 0x5a, 0xd3, 0xc2, 0xb1, 0xa4, 0x39, 0xf8, + 0xd5, 0x2d, 0xe9, 0xd2, 0xf7, 0x09, 0x41, 0xbe, + 0x6a, 0xc3, 0x70, 0x7c, 0xcc, 0x66, 0xd5, 0x0b, + 0x95, 0xd5, 0xcb, 0x9a, 0x03, 0xcd, 0xf2, 0x90, + 0x8d, 0x4b, 0x50, 0xe9, 0x51, 0xd1, 0xed, 0xb8, + 0x3f, 0x02, 0x82, 0x1f, 0x56, 0xaa, 0x30, 0x9d, + 0xa0, 0xf5, 0xfc, 0xa7, 0x22, 0xe1, 0xa4, 0x04, + 0xcf, 0x32, 0x37, 0x7e, 0x4d, 0xa0, 0x3b, 0xe0, + 0x6e, 0xb3, 0x30, 0xfb, 0xe6, 0xc9, 0x23, 0xe6, + 0xe2, 0x52, 0xdb, 0x4e, 0x32, 0x26, 0xf3, 0x40, + 0xee, 0x6a, 0x5e, 0xcb, 0x74, 0x46, 0xc1, 0x74, + 0x46, 0x81, 0x17, 0x10, 0xd4, 0x74, 0x37, 0x3c, + 0x1b, 0x76, 0xfc, 0x8e, 0xe7, 0xc2, 0x84, 0x84, + 0x1e, 0x9c, 0xc0, 0xc9, 0x2a, 0x4f, 0xc3, 0xcc, + 0x4e, 0xd9, 0xc2, 0x58, 0xc2, 0xba, 0x11, 0x0a, + 0x55, 0x9a, 0xe5, 0xe1, 0xe9, 0x5a, 0x0d, 0x7e, + 0x40, 0xf0, 0x68, 0xea, 0xbd, 0xf3, 0x8c, 0x17, + 0x10, 0xbc, 0x58, 0xaf, 0xb5, 0x3e, 0x67, 0x96, + 0x61, 0x9a, 0xfa, 0xe4, 0xbd, 0x2f, 0xa8, 0x8e, + 0x17, 0xe0, 0xf9, 0x7a, 0x0d, 0xfb, 0x35, 0x1b, + 0x0c, 0x03, 0x7c, 0x7a, 0x37, 0x45, 0x03, 0xf0, + 0x2d, 0xe1, 0xe5, 0x66, 0x1d, 0xf5, 0x23, 0xce, + 0x5c, 0x3b, 0x65, 0x13, 0x7b, 0x55, 0x0b, 0xce, + 0x2d, 0xd0, 0x0b, 0xa0, 0x01, 0xb8, 0x4b, 0x6e, + 0xe2, 0xf9, 0x6f, 0x27, 0xde, 0xec, 0x34, 0x90, + 0xaf, 0xd9, 0xf8, 0xdd, 0xc3, 0x6c, 0xeb, 0x6b, + 0xff, 0xfe, 0xb2, 0x80, 0xb8, 0xc2, 0xc3, 0x74, + 0x7c, 0x24, 0x22, 0xc2, 0x89, 0x26, 0xed, 0xbd, + 0x72, 0xd0, 0xbc, 0x7c, 0x38, 0x49, 0xe5, 0x59, + 0x06, 0xa9, 0x88, 0x80, 0x7c, 0xdd, 0xc6, 0xcb, + 0xcd, 0x3a, 0xbd, 0xb1, 0xce, 0xc9, 0xbb, 0x3d, + 0xad, 0x2f, 0x01, 0xd8, 0x0f, 0x08, 0x9e, 0xad, + 0xd5, 0x20, 0x0a, 0x2c, 0x1e, 0x4e, 0xc6, 0xfa, + 0x5a, 0xda, 0x6e, 0x98, 0x1e, 0xfe, 0xf6, 0xae, + 0xdc, 0x5a, 0x28, 0xbf, 0x5b, 0xae, 0xe0, 0xb3, + 0xf9, 0x14, 0x72, 0x71, 0x09, 0x3c, 0xcb, 0x84, + 0x32, 0x9b, 0x4d, 0x9e, 0xcc, 0x26, 0x5a, 0x4d, + 0x66, 0xbd, 0xdc, 0x5f, 0x1b, 0x25, 0x03, 0x4b, + 0xbb, 0x7a, 0xeb, 0x98, 0xe5, 0xe3, 0xb9, 0x24, + 0x46, 0xbb, 0x34, 0x56, 0xa9, 0xea, 0x2e, 0xbe, + 0x5b, 0xae, 0xe0, 0xc1, 0x44, 0x0c, 0xd3, 0x59, + 0x85, 0xde, 0x54, 0xd7, 0x88, 0x20, 0x20, 0x78, + 0x76, 0x28, 0x41, 0x6b, 0xdb, 0x58, 0x24, 0x24, + 0x58, 0x8e, 0x4f, 0x03, 0xf0, 0x30, 0x21, 0xdc, + 0x82, 0x8e, 0xd3, 0x52, 0xc3, 0xc1, 0xd2, 0x9e, + 0x8e, 0x4f, 0xef, 0xb6, 0x97, 0x2f, 0x25, 0x81, + 0xc5, 0x7e, 0xcd, 0x86, 0x2a, 0xf1, 0x58, 0x18, + 0xbd, 0xb8, 0x0c, 0xe4, 0x81, 0x95, 0xd8, 0x6a, + 0x5e, 0xc7, 0x97, 0x8b, 0x69, 0x24, 0x54, 0x01, + 0x35, 0xc3, 0xc5, 0x5e, 0xd5, 0x82, 0xe5, 0x04, + 0xd8, 0xab, 0x59, 0xb7, 0x26, 0xa1, 0xb9, 0x2a, + 0xfa, 0xd5, 0x44, 0xe7, 0x78, 0x01, 0x76, 0x9b, + 0x55, 0x88, 0x52, 0xc3, 0xc1, 0x17, 0x8b, 0xfd, + 0x91, 0xf8, 0xb3, 0xdc, 0x00, 0xdf, 0x2e, 0x55, + 0xda, 0x16, 0x49, 0x42, 0x80, 0x1f, 0x56, 0xaa, + 0x98, 0xcb, 0xa9, 0xad, 0xf1, 0xb3, 0x03, 0x4c, + 0xd7, 0x87, 0xdf, 0x3c, 0x9a, 0xe8, 0x96, 0xe5, + 0x7d, 0x0d, 0x6f, 0x76, 0xde, 0xcf, 0x4e, 0x8f, + 0x24, 0x24, 0x4c, 0x74, 0x99, 0x94, 0xec, 0x54, + 0x2c, 0xbc, 0xd8, 0xa8, 0x23, 0xa1, 0xf2, 0xc8, + 0x0d, 0x89, 0x13, 0xda, 0x4d, 0xc1, 0x27, 0x61, + 0xd9, 0xb9, 0x70, 0xc2, 0x7c, 0xee, 0x6c, 0x56, + 0x45, 0x2a, 0x22, 0xe0, 0xd5, 0x56, 0x03, 0xeb, + 0x45, 0x83, 0x06, 0xe0, 0x61, 0x20, 0xa6, 0xdc, + 0x7c, 0x91, 0x83, 0xed, 0xb2, 0x89, 0x98, 0xc2, + 0x1f, 0x3b, 0xcb, 0xfe, 0x68, 0x26, 0x81, 0x17, + 0x9b, 0x75, 0x3c, 0x99, 0x89, 0x9f, 0xd8, 0x8d, + 0xdc, 0xed, 0x8e, 0xe7, 0xf9, 0x46, 0x0d, 0x0d, + 0xd3, 0x83, 0x1f, 0x10, 0xf0, 0x1c, 0x03, 0x49, + 0xe0, 0xb0, 0x5b, 0xb1, 0xf0, 0x7c, 0xa3, 0x46, + 0x83, 0x6e, 0x97, 0xc8, 0x02, 0x87, 0xb8, 0x1a, + 0x5a, 0x01, 0x06, 0x01, 0x81, 0x17, 0x10, 0x04, + 0x24, 0x14, 0x1f, 0xf0, 0x82, 0x00, 0x84, 0x00, + 0x23, 0x3d, 0xd8, 0x44, 0x06, 0x84, 0x60, 0xb7, + 0x62, 0x61, 0x25, 0x6f, 0x40, 0x33, 0x3d, 0xdc, + 0x1d, 0x55, 0x71, 0x7f, 0x22, 0xd4, 0xfd, 0x56, + 0x44, 0x0e, 0x9f, 0xdc, 0x49, 0xe2, 0x65, 0xd3, + 0x97, 0xf9, 0xdb, 0x77, 0x15, 0x7c, 0x72, 0x37, + 0x79, 0xe1, 0xf9, 0xf7, 0x9f, 0x37, 0xeb, 0x6d, + 0xcd, 0x7f, 0x87, 0x77, 0xdc, 0xcb, 0x1d, 0x3a, + 0xda, 0x5f, 0x6f, 0x37, 0xb0, 0x9a, 0xd7, 0xf1, + 0x60, 0x22, 0xd6, 0xb5, 0x09, 0x48, 0x32, 0xd2, + 0x2e, 0xa2, 0x5f, 0x37, 0x3d, 0x38, 0x5e, 0xd0, + 0xd5, 0x4e, 0x7a, 0x22, 0x25, 0x77, 0x1d, 0xac, + 0x29, 0x97, 0xbb, 0xf3, 0x3d, 0x2d, 0xf8, 0x02, + 0x61, 0x13, 0x16, 0xcb, 0x32, 0xf8, 0x60, 0x26, + 0x9c, 0x0c, 0x28, 0x6b, 0x0e, 0xde, 0xec, 0x6a, + 0xd7, 0x5e, 0xc7, 0xbf, 0x63, 0x00, 0xa6, 0x2d, + 0x58, 0xdd, 0x31, 0x7a, 0x0b, 0xb2, 0x64, 0xc3, + 0xf6, 0x61, 0xd8, 0xfe, 0x31, 0x95, 0xaf, 0x98, + 0xc2, 0xe3, 0xab, 0x7b, 0xe9, 0x0b, 0xfd, 0xee, + 0xd7, 0x3b, 0x0d, 0xac, 0xed, 0x1b, 0x2d, 0xd1, + 0x0c, 0x06, 0x61, 0xc0, 0xf8, 0xf7, 0x17, 0xf9, + 0xd6, 0xf7, 0xd0, 0x7b, 0xad, 0x9b, 0x44, 0x8f, + 0xc7, 0x57, 0x0f, 0x32, 0xe0, 0x4e, 0x68, 0x2e, + 0xf1, 0x03, 0xd2, 0x12, 0x36, 0xe9, 0xc4, 0x9b, + 0x1d, 0x0d, 0xbb, 0x4d, 0x49, 0x3d, 0x81, 0x63, + 0x41, 0x10, 0x6a, 0x9c, 0x1f, 0xee, 0x20, 0x5f, + 0xde, 0xd3, 0xc1, 0xb3, 0x2c, 0xe6, 0xc7, 0x42, + 0x69, 0xcb, 0xf1, 0x94, 0x8c, 0xa8, 0xcc, 0xe3, + 0x9b, 0x77, 0xe5, 0xd6, 0xdc, 0x75, 0x3a, 0x2a, + 0x62, 0x61, 0x2c, 0x8a, 0x4c, 0x4c, 0xec, 0xf9, + 0x3d, 0x68, 0x96, 0x87, 0x42, 0xcd, 0xee, 0xf9, + 0xf3, 0x76, 0xdc, 0xf0, 0x2c, 0x77, 0xa3, 0x68, + 0xe0, 0xd1, 0x54, 0xfc, 0x4c, 0x49, 0xcd, 0x4c, + 0x4c, 0x44, 0x4c, 0xe1, 0xa1, 0x99, 0xe1, 0x58, + 0x8a, 0xed, 0xf8, 0xf8, 0x76, 0x29, 0x2c, 0x73, + 0x1f, 0x75, 0x95, 0xa2, 0x5c, 0x3f, 0x08, 0x09, + 0x47, 0x89, 0x46, 0x12, 0x12, 0x58, 0x86, 0x41, + 0xbe, 0x6e, 0x63, 0x69, 0x57, 0x43, 0x55, 0x77, + 0x3b, 0xde, 0x3b, 0x3c, 0xc7, 0x60, 0x61, 0x2c, + 0xda, 0xd2, 0x4c, 0x07, 0x42, 0xdd, 0x78, 0xd7, + 0x0b, 0x20, 0xb0, 0x0c, 0xbc, 0x1b, 0x78, 0x0d, + 0xe8, 0x0e, 0xb8, 0x4b, 0xbc, 0x5b, 0x30, 0x02, + 0x13, 0x57, 0x79, 0xf8, 0x27, 0x48, 0x6c, 0xba, + 0x7e, 0x80, 0xa5, 0x3d, 0x1d, 0x31, 0x99, 0x3f, + 0x97, 0x0d, 0x61, 0xa1, 0x66, 0x53, 0xc5, 0xaa, + 0x3e, 0x90, 0x8a, 0x8a, 0x27, 0x06, 0x5f, 0x20, + 0x74, 0xc3, 0x3a, 0x29, 0xf8, 0x02, 0x80, 0xe5, + 0xf8, 0x87, 0x1a, 0x06, 0x8f, 0xef, 0x40, 0xff, + 0x87, 0x8f, 0x46, 0xf0, 0xf5, 0xeb, 0x12, 0xde, + 0xec, 0x34, 0xa0, 0xdb, 0x1e, 0x1e, 0x4d, 0x85, + 0x82, 0x1e, 0x31, 0x85, 0xc7, 0xe7, 0x0b, 0x29, + 0xfc, 0xb4, 0x5a, 0x83, 0xe1, 0x84, 0x1e, 0xc4, + 0x65, 0xad, 0x8c, 0x64, 0x44, 0xc4, 0x9d, 0x11, + 0xb5, 0xa7, 0x09, 0x00, 0xdb, 0x0d, 0x8e, 0xdd, + 0x0b, 0x4c, 0xd3, 0xed, 0x69, 0x2a, 0xad, 0x20, + 0x5f, 0xb7, 0x61, 0xbb, 0xfe, 0x89, 0x15, 0x91, + 0xaa, 0xee, 0xe2, 0xaf, 0x6f, 0x4b, 0xf8, 0x74, + 0x3e, 0x75, 0xea, 0x4e, 0x9f, 0x01, 0xf0, 0xd9, + 0x7c, 0x0a, 0xdf, 0xbc, 0x2b, 0xb7, 0xde, 0x73, + 0xdd, 0x70, 0xc3, 0x9d, 0xf4, 0x21, 0x67, 0x2f, + 0xca, 0xf5, 0xc3, 0xf1, 0x02, 0xfc, 0xb8, 0x52, + 0x45, 0x59, 0x73, 0xc0, 0xb2, 0x0c, 0x58, 0xe6, + 0xec, 0x3e, 0x9b, 0x4f, 0xef, 0xa6, 0x5a, 0x3b, + 0x64, 0x81, 0x63, 0xc0, 0xb1, 0x0c, 0x36, 0x0a, + 0x06, 0x6e, 0xf2, 0xaa, 0x43, 0x03, 0x70, 0x97, + 0xb8, 0xb7, 0xa0, 0x7c, 0x7a, 0x9a, 0x8b, 0x92, + 0xeb, 0x11, 0x08, 0xcd, 0xd1, 0xa0, 0xf3, 0x5c, + 0x9b, 0x20, 0xa0, 0xc1, 0xb7, 0x1f, 0x9c, 0xf7, + 0x3a, 0x06, 0x84, 0x60, 0xa3, 0x68, 0x9e, 0xa8, + 0x36, 0x76, 0xc0, 0x5f, 0xdf, 0x94, 0x60, 0x36, + 0x67, 0xb2, 0xb7, 0x4a, 0x26, 0x2a, 0x9a, 0x83, + 0xfb, 0x93, 0x31, 0x8c, 0x26, 0x65, 0xc4, 0x55, + 0x01, 0x7f, 0xf7, 0x38, 0x0b, 0xdd, 0xf6, 0xf1, + 0x76, 0xb7, 0x81, 0xdd, 0xb2, 0x85, 0x8a, 0xe6, + 0xa0, 0xaa, 0x3b, 0xf8, 0xe7, 0x8f, 0x47, 0xbb, + 0xd6, 0x46, 0xcf, 0xc4, 0x44, 0x2c, 0x8e, 0x47, + 0xb1, 0x96, 0x37, 0x00, 0x06, 0xc8, 0xc5, 0x44, + 0x4c, 0x65, 0x54, 0x64, 0xe3, 0x61, 0xe2, 0xf0, + 0x10, 0xb1, 0x56, 0xa0, 0x5e, 0xcb, 0xeb, 0xd8, + 0xaf, 0xd9, 0xa1, 0x03, 0x16, 0x01, 0x02, 0x10, + 0xf8, 0x7e, 0x98, 0x24, 0x76, 0xf3, 0xd7, 0x14, + 0x91, 0xc3, 0x67, 0x0b, 0x69, 0x7c, 0xfd, 0xba, + 0xd8, 0x5a, 0xc0, 0x4b, 0x0d, 0x07, 0x84, 0x56, + 0x5c, 0xae, 0x2d, 0xa6, 0x1b, 0xe0, 0xaf, 0x6f, + 0x4a, 0xb0, 0x9a, 0xf7, 0x61, 0x10, 0x10, 0x74, + 0xb3, 0xbd, 0xf9, 0x61, 0xa5, 0x72, 0xeb, 0x8e, + 0xb1, 0x68, 0x00, 0xee, 0x12, 0xee, 0x96, 0xcb, + 0xfe, 0xa9, 0x12, 0x87, 0x85, 0x1e, 0x7c, 0x78, + 0xcb, 0x9a, 0x83, 0xad, 0x92, 0x89, 0x7c, 0xcd, + 0xbe, 0x15, 0xdd, 0x88, 0xd7, 0x85, 0xf3, 0x48, + 0x6e, 0x3e, 0x5b, 0xab, 0x61, 0xaf, 0x7a, 0xb6, + 0x81, 0x45, 0x54, 0xe6, 0xa1, 0x88, 0x1c, 0xf4, + 0x43, 0x23, 0x75, 0xba, 0xed, 0xe3, 0xc7, 0x95, + 0x2a, 0xe2, 0x0a, 0x8f, 0x27, 0x73, 0x49, 0xc4, + 0x14, 0x1e, 0x11, 0x89, 0xc3, 0xaf, 0xe6, 0x92, + 0x70, 0xdc, 0x72, 0x18, 0xcc, 0x08, 0x60, 0x3a, + 0x01, 0x22, 0x47, 0xfa, 0x03, 0x08, 0x01, 0x36, + 0x4b, 0x06, 0xf6, 0xaa, 0x36, 0x52, 0x11, 0x01, + 0x13, 0x29, 0x19, 0x11, 0x99, 0xc7, 0x4e, 0xc5, + 0x82, 0x24, 0xb0, 0xf8, 0x1f, 0x9f, 0x8c, 0x9c, + 0xfa, 0x7a, 0x24, 0x81, 0xc5, 0xfd, 0xc9, 0x18, + 0xee, 0x5f, 0x70, 0xb7, 0x1a, 0x91, 0x38, 0x3c, + 0x9e, 0x8e, 0xe3, 0xd9, 0x5a, 0x38, 0xb2, 0x56, + 0x33, 0x5c, 0xb8, 0x5d, 0x9e, 0x05, 0x53, 0xfa, + 0x73, 0xcf, 0x9a, 0xae, 0x8f, 0x68, 0x97, 0x8d, + 0x81, 0x4b, 0xbb, 0x5a, 0x2b, 0xf8, 0xf6, 0x42, + 0x5c, 0x15, 0x30, 0x93, 0x55, 0xf1, 0x6a, 0xb3, + 0x7e, 0x6b, 0xd6, 0x1c, 0x9e, 0xa6, 0x89, 0xdd, + 0x51, 0xd1, 0x9c, 0x9e, 0x1a, 0x5f, 0x6e, 0x33, + 0xeb, 0x45, 0xa3, 0xdd, 0x1c, 0x80, 0xde, 0x43, + 0x7d, 0xe3, 0xe0, 0x5c, 0xb6, 0x5b, 0x96, 0xf7, + 0xf5, 0xf7, 0xa6, 0xe2, 0x67, 0x7c, 0x0e, 0xe9, + 0x98, 0x88, 0xe9, 0x8c, 0x82, 0x42, 0xe3, 0x78, + 0x83, 0x4b, 0xdd, 0xf2, 0xf0, 0xf5, 0x9b, 0x12, + 0xa6, 0xb3, 0x0a, 0xee, 0x8d, 0x47, 0x21, 0x70, + 0x2c, 0x4c, 0xd7, 0x6f, 0xfd, 0xce, 0x9d, 0x8a, + 0x89, 0xc5, 0x23, 0x9e, 0xc4, 0x2f, 0x37, 0x6b, + 0x2d, 0x01, 0x95, 0x62, 0xc3, 0x46, 0x42, 0x15, + 0x10, 0x91, 0xf9, 0x2b, 0x69, 0x6e, 0x12, 0x78, + 0xb6, 0xed, 0xfd, 0x97, 0x6f, 0xa0, 0x70, 0xce, + 0x4d, 0xa4, 0xd8, 0xb0, 0xf1, 0xcb, 0x56, 0xa3, + 0xab, 0xf1, 0xc5, 0x9a, 0xe1, 0x62, 0xbd, 0x68, + 0x60, 0xab, 0x64, 0x9e, 0x6b, 0xcd, 0xb8, 0x37, + 0x1e, 0x45, 0x3a, 0x2a, 0xc2, 0xb0, 0xbd, 0x53, + 0x9d, 0xc3, 0xe8, 0x0e, 0xf8, 0x16, 0xb2, 0x56, + 0x30, 0x70, 0x77, 0x34, 0x72, 0xa9, 0x0a, 0x52, + 0xd7, 0x91, 0xba, 0xe9, 0x5e, 0xba, 0x69, 0xf5, + 0xb0, 0x30, 0x92, 0x90, 0x10, 0xef, 0xa1, 0xdb, + 0xde, 0x0f, 0x08, 0xde, 0xec, 0x74, 0xff, 0x59, + 0xec, 0x56, 0xac, 0x56, 0xf9, 0xb9, 0x13, 0x01, + 0x21, 0x58, 0x2f, 0x18, 0x10, 0x39, 0x16, 0x8b, + 0xcd, 0x20, 0x7c, 0x70, 0x8e, 0xbc, 0xb4, 0xa7, + 0x81, 0x63, 0x19, 0xcc, 0x66, 0x55, 0x70, 0x2c, + 0x83, 0x80, 0x10, 0x6c, 0x97, 0xdb, 0xcb, 0xdd, + 0xf9, 0xba, 0x8d, 0x91, 0x2b, 0x6a, 0x56, 0x7c, + 0x77, 0x64, 0x41, 0x7e, 0xb9, 0x59, 0xc7, 0x68, + 0x52, 0xa6, 0xb9, 0xe1, 0x80, 0xd0, 0x1d, 0x1f, + 0xaf, 0xb7, 0x1a, 0x2d, 0x3d, 0xe6, 0xd9, 0x9c, + 0x8a, 0x52, 0xc3, 0x41, 0xa1, 0x61, 0xa3, 0xac, + 0x39, 0x90, 0x04, 0x0e, 0x1f, 0xcd, 0xc4, 0x5b, + 0xeb, 0xa5, 0x1f, 0x10, 0xfc, 0xe5, 0x5d, 0x19, + 0xe4, 0x9c, 0x47, 0x2c, 0x8a, 0xc8, 0xb5, 0x7a, + 0x1f, 0x6e, 0x93, 0x43, 0x1d, 0x0d, 0xc0, 0x3d, + 0x2c, 0x76, 0x3f, 0x6f, 0xd6, 0xdb, 0x5c, 0x7b, + 0x86, 0x8d, 0x80, 0x10, 0xfc, 0xb4, 0x5a, 0x1d, + 0x7a, 0x67, 0xa2, 0x41, 0xd1, 0x30, 0x3d, 0x78, + 0x01, 0xe9, 0xda, 0x8f, 0xf9, 0x40, 0x9c, 0xbe, + 0x5b, 0x5c, 0x3f, 0x38, 0x75, 0xbc, 0xe3, 0x80, + 0x98, 0xc2, 0xa3, 0xac, 0xbb, 0x68, 0x98, 0xef, + 0xfb, 0x4a, 0x09, 0x09, 0x47, 0x85, 0x36, 0x8b, + 0x26, 0x3c, 0x3f, 0xc0, 0xfd, 0xc9, 0x18, 0xc6, + 0x92, 0x12, 0xf6, 0x6b, 0x76, 0xeb, 0x7e, 0x28, + 0xd4, 0x6d, 0x10, 0xd2, 0x2e, 0xbc, 0x72, 0x19, + 0x18, 0xb6, 0x8f, 0xda, 0x11, 0xb5, 0xa4, 0x4c, + 0x54, 0xa4, 0xc1, 0x77, 0x40, 0xb8, 0x7e, 0x80, + 0xbf, 0xbd, 0x2d, 0xb5, 0xbc, 0x79, 0x0f, 0x12, + 0x9e, 0x23, 0xdf, 0x05, 0x67, 0x22, 0xda, 0x0a, + 0xc0, 0x1c, 0xcb, 0xe0, 0x6e, 0x4e, 0xed, 0x38, + 0x82, 0xd6, 0x0d, 0x33, 0xd9, 0xf7, 0x46, 0x24, + 0x4b, 0xb7, 0xc8, 0x98, 0x85, 0x8e, 0x21, 0xf5, + 0xc0, 0x6e, 0xc5, 0x82, 0x22, 0x36, 0x5a, 0x33, + 0x94, 0xc3, 0x84, 0xed, 0x06, 0x78, 0xb9, 0x59, + 0x83, 0x61, 0xfb, 0x74, 0x61, 0x1b, 0x10, 0x96, + 0xe3, 0x63, 0x65, 0x4f, 0xc3, 0xbd, 0x2e, 0xee, + 0xaf, 0x80, 0x10, 0x2c, 0xef, 0x6b, 0xe7, 0xfa, + 0x2c, 0x18, 0xe6, 0xbd, 0x4a, 0x19, 0x00, 0x2c, + 0x8c, 0x45, 0xb1, 0xd8, 0x3c, 0xff, 0x37, 0x6c, + 0x1f, 0x7f, 0x79, 0x53, 0x6a, 0x8d, 0x2d, 0x31, + 0xc7, 0x82, 0x9d, 0x87, 0xe9, 0x8c, 0x02, 0x8e, + 0x61, 0xb0, 0xdb, 0x54, 0x29, 0x62, 0x0e, 0xbd, + 0xfe, 0x8d, 0xa2, 0x71, 0xe9, 0xae, 0x4d, 0xaa, + 0xc4, 0xe1, 0xc1, 0x44, 0x0c, 0xef, 0x76, 0xb5, + 0x56, 0xf7, 0x75, 0xbe, 0x66, 0x43, 0xb7, 0x3c, + 0x44, 0xa8, 0x9f, 0x77, 0xdf, 0x11, 0x38, 0x16, + 0xbf, 0x7d, 0x90, 0xc5, 0x1f, 0x5f, 0x16, 0xa0, + 0x4a, 0x1c, 0x66, 0x73, 0x2a, 0x0a, 0x75, 0xfb, + 0x98, 0x2f, 0xef, 0x5a, 0xde, 0xc0, 0xc2, 0x78, + 0x14, 0x52, 0xf3, 0x2c, 0x7e, 0x71, 0x3c, 0x8a, + 0xaa, 0xee, 0xa2, 0xdc, 0xa3, 0x81, 0xc2, 0x4c, + 0x56, 0xc5, 0x9d, 0x91, 0xf0, 0x9e, 0xd2, 0x2c, + 0x0f, 0x0d, 0xc3, 0xbd, 0x35, 0x6b, 0x10, 0xf7, + 0xbf, 0xfc, 0x6f, 0xff, 0xc7, 0x7f, 0xa3, 0xb7, + 0x54, 0xf7, 0x54, 0x74, 0x17, 0x99, 0x98, 0x38, + 0x74, 0xbe, 0xc0, 0x0d, 0xd3, 0x6d, 0x53, 0x1d, + 0xa2, 0x0c, 0x86, 0xba, 0xe9, 0x21, 0x00, 0xe0, + 0x79, 0x01, 0x24, 0x81, 0x6d, 0x53, 0x86, 0xb2, + 0x1c, 0x1f, 0x3c, 0xc7, 0xa2, 0x66, 0x84, 0x12, + 0x8a, 0x6d, 0xbb, 0x3e, 0x26, 0x6c, 0x6a, 0x4a, + 0x47, 0x45, 0xdc, 0x19, 0x89, 0x20, 0xa1, 0x0a, + 0xb0, 0xdd, 0x00, 0x71, 0x95, 0xc7, 0x4c, 0x56, + 0x85, 0xc0, 0xb1, 0xf0, 0x7c, 0x82, 0xe9, 0x9c, + 0x8a, 0xc7, 0xd3, 0x09, 0xec, 0x56, 0xac, 0x56, + 0xb0, 0xaa, 0xe8, 0x0e, 0x82, 0x80, 0x20, 0x19, + 0x11, 0xb1, 0x53, 0x31, 0xcf, 0x34, 0x38, 0xe7, + 0x38, 0x16, 0x75, 0xc3, 0xed, 0x58, 0xce, 0x2e, + 0x35, 0x1c, 0x08, 0x1c, 0x8b, 0x84, 0x2a, 0x5c, + 0xea, 0x4e, 0x38, 0x15, 0x15, 0x31, 0x91, 0x52, + 0xe0, 0xf9, 0x04, 0xba, 0xe5, 0x23, 0x15, 0x15, + 0x90, 0x8c, 0x08, 0xd4, 0xbf, 0x7b, 0x50, 0x3b, + 0x37, 0x96, 0xc1, 0x74, 0x46, 0xc5, 0x6c, 0x4e, + 0x45, 0x2a, 0x22, 0x62, 0x34, 0x21, 0xa3, 0xa4, + 0x39, 0x2d, 0xcf, 0x5e, 0x20, 0x3c, 0xf3, 0xdd, + 0xae, 0x98, 0x98, 0xcd, 0xaa, 0x61, 0x57, 0x3b, + 0xc3, 0x20, 0xae, 0xf2, 0xd8, 0x2c, 0x9e, 0xed, + 0xe1, 0x2b, 0xf2, 0x2c, 0xe6, 0x47, 0x23, 0x58, + 0x18, 0x8f, 0x62, 0x36, 0xa7, 0xb6, 0x4c, 0x17, + 0xf6, 0xaa, 0x56, 0x57, 0x55, 0x9c, 0x9b, 0x02, + 0xf3, 0x7f, 0xff, 0xb8, 0x4b, 0xeb, 0x89, 0x3d, + 0x12, 0x93, 0x79, 0x7c, 0x79, 0x2f, 0x33, 0x54, + 0x86, 0xe8, 0x8e, 0x17, 0xe0, 0xdf, 0x0e, 0x89, + 0x6a, 0x50, 0x06, 0x8f, 0x24, 0xb0, 0xf8, 0xf2, + 0x5e, 0x06, 0xba, 0xe5, 0xe1, 0xc5, 0x46, 0x0d, + 0xb6, 0x1b, 0x06, 0x65, 0xc7, 0x0d, 0x40, 0x00, + 0xb0, 0x2c, 0x83, 0xf1, 0xa4, 0x8c, 0xa9, 0x8c, + 0x82, 0x54, 0x8f, 0x25, 0xd7, 0xf5, 0x82, 0x81, + 0x57, 0x5b, 0x83, 0xd3, 0xe2, 0x8e, 0xca, 0x61, + 0xe0, 0xaf, 0xe8, 0x0e, 0xca, 0x5a, 0x18, 0x94, + 0x17, 0xc7, 0xa3, 0x88, 0x48, 0x3c, 0xb6, 0xcb, + 0x26, 0x76, 0xca, 0x26, 0xa2, 0x32, 0x8f, 0x5f, + 0x2f, 0xa4, 0xba, 0x1e, 0x6f, 0xa2, 0x5c, 0x4f, + 0x4a, 0x0d, 0xa7, 0x55, 0x1d, 0x3b, 0x4a, 0x44, + 0xe2, 0xf1, 0xfb, 0x47, 0xd9, 0xb6, 0xaf, 0xfd, + 0xfb, 0xcb, 0x7c, 0x5b, 0xf9, 0xba, 0x13, 0x5f, + 0x2e, 0xa6, 0x91, 0xea, 0x30, 0xef, 0xfe, 0xfd, + 0x72, 0xe5, 0x56, 0x05, 0x60, 0x5a, 0x9f, 0x39, + 0xcf, 0x6e, 0xd0, 0xf2, 0xf0, 0xd3, 0x5a, 0x15, + 0xbf, 0xbe, 0x9b, 0xc2, 0xb0, 0xac, 0x1d, 0x36, + 0x1d, 0x35, 0xba, 0xfc, 0x6b, 0xee, 0x06, 0x78, + 0xbd, 0xdd, 0x40, 0x10, 0x10, 0x38, 0x6e, 0x68, + 0xc7, 0x76, 0xb0, 0x70, 0x65, 0xa2, 0x22, 0x3e, + 0x9a, 0x4b, 0x9c, 0x5b, 0xb7, 0x39, 0x17, 0x97, + 0xc0, 0x00, 0x03, 0x13, 0x31, 0xd0, 0x2c, 0xaf, + 0x2d, 0xc0, 0xdb, 0x6e, 0x80, 0x9f, 0x56, 0xab, + 0xed, 0xef, 0x4f, 0x73, 0xa0, 0x5b, 0x3e, 0x62, + 0x0a, 0x5d, 0x86, 0x6e, 0x2a, 0x5b, 0x25, 0x13, + 0x2f, 0x37, 0x6b, 0x38, 0x49, 0x83, 0xc7, 0x6c, + 0x9a, 0x26, 0x1c, 0x1e, 0x09, 0x8b, 0xca, 0x3c, + 0x6c, 0xf7, 0x7d, 0x19, 0x3a, 0xa1, 0x0a, 0x48, + 0x47, 0x45, 0x70, 0x2c, 0x13, 0x8a, 0xc2, 0xa8, + 0xc2, 0xb1, 0xe0, 0x4b, 0x08, 0x50, 0xd2, 0x6c, + 0x94, 0x1a, 0xce, 0xad, 0xba, 0x7e, 0xf4, 0xce, + 0x3f, 0x27, 0xc5, 0xba, 0x8d, 0xd7, 0x3b, 0x0d, + 0x3c, 0x1c, 0x02, 0xc5, 0x1d, 0xd3, 0xf1, 0xf1, + 0xf4, 0xc8, 0xe2, 0x49, 0x19, 0x3c, 0xa9, 0xa8, + 0x88, 0x8f, 0xe7, 0x12, 0x60, 0x19, 0x26, 0x94, + 0xdb, 0x6b, 0x2e, 0x62, 0x01, 0x21, 0x60, 0xc0, + 0x5c, 0x28, 0xf9, 0x73, 0xfd, 0x00, 0x64, 0x90, + 0x11, 0xf8, 0x04, 0xee, 0x8e, 0x46, 0xb0, 0xd2, + 0x6c, 0xa2, 0x61, 0x18, 0x86, 0x4a, 0x46, 0xde, + 0x60, 0x3c, 0x9f, 0xe0, 0xd5, 0x56, 0x1d, 0xa7, + 0x09, 0xe0, 0xa5, 0x22, 0x42, 0x5b, 0xf0, 0xdd, + 0x28, 0x1a, 0x6d, 0x41, 0xf4, 0xc3, 0x99, 0xc4, + 0x99, 0xca, 0x7b, 0xa5, 0x86, 0x83, 0x9f, 0x37, + 0xeb, 0xd0, 0x6d, 0xef, 0xd6, 0x5d, 0x43, 0x9e, + 0xa1, 0xe5, 0x9f, 0x73, 0xb3, 0x5e, 0x30, 0xb0, + 0x5f, 0xb3, 0x91, 0x8b, 0x8b, 0x98, 0xce, 0xa8, + 0x6d, 0x1a, 0xa5, 0xb7, 0x01, 0x42, 0x80, 0xb5, + 0x82, 0x8e, 0xa5, 0x3d, 0x1d, 0x7e, 0x40, 0x40, + 0xef, 0x95, 0xcb, 0x23, 0x19, 0x11, 0xf0, 0xe9, + 0x9d, 0x64, 0xab, 0x3c, 0x2b, 0x1c, 0x5a, 0xc4, + 0xfa, 0x51, 0xb2, 0xdd, 0x28, 0x9a, 0x60, 0xc0, + 0x5c, 0xfa, 0x0c, 0xf7, 0x6a, 0xde, 0x68, 0xdd, + 0x47, 0x33, 0x39, 0x95, 0x8a, 0x65, 0xdc, 0xe4, + 0xe0, 0xc1, 0x31, 0xf8, 0xf4, 0x6e, 0x0a, 0x3f, + 0xac, 0x54, 0x4f, 0x94, 0xa1, 0xad, 0x5b, 0x1e, + 0x96, 0xf7, 0x74, 0xd4, 0x2d, 0x17, 0xa5, 0x86, + 0x03, 0xcf, 0x7f, 0xbf, 0x8e, 0xa4, 0xa3, 0x62, + 0x5b, 0xf0, 0xf5, 0x02, 0x82, 0x86, 0xe9, 0x85, + 0x76, 0xa5, 0x35, 0x1b, 0xbf, 0x6c, 0x37, 0x60, + 0x37, 0x0d, 0x49, 0x0e, 0x12, 0xb6, 0xdb, 0x06, + 0xf3, 0xdf, 0x7f, 0xda, 0xa3, 0x67, 0xc0, 0xfd, + 0xb8, 0x90, 0x00, 0x7e, 0x3d, 0x9f, 0x3a, 0x97, + 0x78, 0xfd, 0x75, 0xa4, 0xa2, 0xbb, 0x78, 0xb6, + 0x56, 0x6d, 0x6b, 0xaa, 0xa0, 0x0c, 0x1e, 0x49, + 0x60, 0xf1, 0x68, 0x2a, 0x8e, 0x91, 0x84, 0x34, + 0xf0, 0xd8, 0x58, 0xa8, 0x3b, 0x78, 0xb5, 0x55, + 0x6f, 0x5b, 0xe4, 0xba, 0xba, 0xd7, 0x8f, 0x74, + 0x51, 0x9f, 0x97, 0x2f, 0x17, 0xd3, 0x67, 0x1a, + 0x2e, 0x50, 0x6e, 0xc6, 0x46, 0xe4, 0x97, 0x1e, + 0xb5, 0x01, 0xa6, 0xb3, 0x0a, 0x12, 0x8a, 0x80, + 0xd5, 0x82, 0x8e, 0xc7, 0x53, 0x71, 0xb8, 0x1e, + 0xc1, 0x46, 0xc9, 0x40, 0xb9, 0xe1, 0x60, 0x26, + 0xa7, 0x62, 0xb3, 0x68, 0x0e, 0x85, 0xb6, 0x3c, + 0x2d, 0x41, 0xf7, 0x6b, 0xb7, 0x88, 0x50, 0xac, + 0x20, 0x1d, 0x4d, 0xdf, 0xe8, 0x73, 0x61, 0x42, + 0x42, 0x75, 0xa5, 0xd5, 0xbc, 0x4e, 0xe7, 0x7d, + 0x2f, 0x19, 0x91, 0x67, 0xf1, 0x9b, 0x7b, 0xe9, + 0xbe, 0xf8, 0xf1, 0x76, 0x43, 0x2e, 0x2e, 0xe2, + 0xef, 0x9a, 0x0d, 0x32, 0xa6, 0xe3, 0x63, 0xbd, + 0x68, 0x60, 0xbd, 0x60, 0x9c, 0x18, 0x5c, 0x27, + 0xd3, 0x0a, 0x52, 0x11, 0x01, 0xd9, 0xb8, 0x04, + 0xcf, 0x0f, 0xf0, 0x76, 0x57, 0x43, 0xb1, 0xee, + 0x9c, 0x6b, 0xa1, 0x8c, 0x2b, 0x3c, 0x0d, 0xbe, + 0xb7, 0x84, 0x99, 0xac, 0x8a, 0x9d, 0x8a, 0x75, + 0x6c, 0x16, 0xfb, 0x34, 0xc6, 0x93, 0x32, 0xd2, + 0x51, 0x11, 0x6f, 0x77, 0x35, 0x7c, 0xbb, 0x54, + 0x39, 0x16, 0xd0, 0x87, 0xa6, 0x8a, 0x40, 0x6f, + 0x9f, 0xfe, 0xee, 0x1a, 0x77, 0x2b, 0x16, 0x26, + 0xd2, 0x37, 0x57, 0x02, 0xef, 0xd5, 0x56, 0xbd, + 0x25, 0x2f, 0x48, 0xb9, 0x5c, 0xe6, 0x72, 0xea, + 0xa5, 0x05, 0xdf, 0xa3, 0x28, 0x62, 0x38, 0x4b, + 0x3b, 0x96, 0x90, 0xf1, 0xe3, 0x6a, 0xf5, 0x98, + 0xd6, 0x6e, 0x4c, 0xe6, 0xf1, 0x78, 0x26, 0x8e, + 0x56, 0xc1, 0x58, 0x60, 0xf1, 0xc9, 0x9d, 0x24, + 0x5c, 0x3f, 0x40, 0xbe, 0x66, 0x63, 0xb3, 0x68, + 0xc2, 0x70, 0x42, 0xab, 0xcb, 0x4e, 0x82, 0xf9, + 0x87, 0x77, 0xcd, 0x2c, 0xcb, 0xe0, 0xf1, 0x74, + 0x9c, 0x7e, 0xe0, 0xb7, 0x04, 0x86, 0x01, 0x9e, + 0xcc, 0x26, 0xf0, 0x97, 0xb7, 0xa5, 0xae, 0xcd, + 0x12, 0xea, 0xa6, 0x07, 0xd3, 0x09, 0x86, 0x5e, + 0x47, 0x9e, 0x06, 0xe0, 0x3e, 0xb3, 0x55, 0x36, + 0x5b, 0x01, 0xf8, 0xd9, 0x5a, 0x0d, 0x86, 0xe3, + 0xe3, 0xb3, 0xf9, 0xd4, 0x8d, 0x18, 0x59, 0xaa, + 0x19, 0x2e, 0x0d, 0xbe, 0x57, 0xc8, 0x79, 0x6c, + 0x20, 0xfb, 0x4d, 0x32, 0x22, 0xe0, 0xf7, 0x0f, + 0xb3, 0xd8, 0xaf, 0xd9, 0x30, 0x5d, 0x1f, 0x75, + 0xc3, 0x45, 0xbe, 0x66, 0x43, 0x14, 0x58, 0x74, + 0x3a, 0xad, 0x15, 0x38, 0x16, 0x93, 0x69, 0x05, + 0x93, 0xe9, 0xf7, 0xaf, 0xbd, 0x50, 0xb7, 0x51, + 0xd5, 0x5d, 0x10, 0x02, 0x08, 0x7c, 0x68, 0x9f, + 0x28, 0x0b, 0x1c, 0x76, 0x2a, 0x16, 0x78, 0x8e, + 0x41, 0x2e, 0x2e, 0x5e, 0x59, 0xa2, 0x41, 0x19, + 0x0c, 0x22, 0x1f, 0xce, 0xac, 0x77, 0x1b, 0x80, + 0xdf, 0xec, 0x34, 0x00, 0x5a, 0x60, 0xa3, 0x01, + 0xb8, 0xdf, 0x94, 0x35, 0x07, 0x1b, 0x45, 0x03, + 0x33, 0x59, 0x15, 0x5e, 0xd3, 0x3c, 0xbd, 0x50, + 0xb7, 0x31, 0x9e, 0xba, 0xba, 0x5d, 0xb1, 0xe7, + 0x13, 0x94, 0x34, 0xa7, 0x35, 0x0e, 0x90, 0x8e, + 0x8a, 0x10, 0x3a, 0x24, 0x04, 0x74, 0xd4, 0xe8, + 0x8a, 0x1f, 0xc6, 0x6b, 0x92, 0xa4, 0xf1, 0x1c, + 0x83, 0xc9, 0x43, 0x55, 0x9c, 0x9a, 0xe1, 0xf6, + 0xd4, 0x2c, 0x95, 0x8b, 0x4b, 0x1d, 0x6d, 0x2d, + 0x0f, 0xd4, 0x8c, 0xfa, 0x8d, 0x61, 0xfb, 0x60, + 0x58, 0x40, 0xa1, 0x41, 0xfd, 0xca, 0x08, 0x08, + 0xe9, 0xe9, 0xc8, 0x8a, 0x5a, 0x87, 0xd3, 0x00, + 0x3c, 0x30, 0x5e, 0x6f, 0x6b, 0xe0, 0x58, 0x16, + 0xf7, 0x27, 0xa2, 0x28, 0xd6, 0x6d, 0xbc, 0xdb, + 0xd3, 0x30, 0x9a, 0x94, 0x06, 0x26, 0x38, 0x60, + 0xbb, 0x01, 0xb6, 0xca, 0x26, 0x38, 0x96, 0x81, + 0x6e, 0x85, 0x7a, 0xc2, 0x8b, 0x63, 0x51, 0x70, + 0x2c, 0x83, 0x3f, 0xfd, 0x52, 0x04, 0xd0, 0x6e, + 0x73, 0xc7, 0x30, 0xe1, 0x79, 0x9e, 0xc8, 0xb1, + 0x70, 0xbc, 0x00, 0xf7, 0x27, 0x43, 0xcd, 0xd6, + 0x5c, 0x4c, 0x02, 0xcf, 0xb3, 0xf0, 0x68, 0x20, + 0xbe, 0x74, 0x54, 0x89, 0xbb, 0xb6, 0x82, 0x14, + 0x09, 0xf5, 0xfa, 0x9e, 0xd5, 0xda, 0x6e, 0x80, + 0xaf, 0xdf, 0x94, 0xc0, 0x32, 0x0c, 0x9e, 0xcc, + 0x25, 0x90, 0xbd, 0x25, 0x4d, 0x90, 0x37, 0x71, + 0x07, 0xfc, 0x70, 0x32, 0x86, 0x17, 0x1b, 0x75, + 0x7a, 0x31, 0x7a, 0x09, 0xc0, 0x74, 0xb0, 0xa4, + 0xff, 0x10, 0x42, 0xf0, 0x72, 0xa3, 0x86, 0x7b, + 0x13, 0x51, 0x3c, 0x99, 0x4b, 0xe2, 0xf9, 0x7a, + 0x0d, 0x6f, 0xb6, 0x35, 0x3c, 0x9c, 0xea, 0xef, + 0xcc, 0x30, 0x01, 0xb0, 0xbc, 0xa7, 0x63, 0xad, + 0x43, 0xc3, 0x54, 0xa1, 0x66, 0x23, 0x08, 0x48, + 0xab, 0xca, 0xc3, 0x1c, 0xf9, 0xc1, 0xed, 0x43, + 0xa5, 0xe6, 0x88, 0xc4, 0xe1, 0xce, 0x68, 0x04, + 0x0c, 0x03, 0x8c, 0x27, 0xa4, 0xd0, 0x2e, 0x8c, + 0x72, 0x29, 0x30, 0x00, 0x46, 0x93, 0x32, 0xee, + 0x8c, 0x46, 0xe8, 0xc5, 0xb8, 0xc0, 0xf3, 0xe6, + 0x05, 0x04, 0x4f, 0x57, 0xab, 0xf8, 0xdd, 0xc3, + 0x2c, 0x9d, 0x2d, 0xbe, 0x22, 0x76, 0xca, 0x16, + 0xd5, 0x89, 0xef, 0x11, 0x7a, 0xa7, 0x0e, 0x10, + 0xcf, 0x27, 0x18, 0x4b, 0x4a, 0xf8, 0x60, 0x3a, + 0x86, 0x8d, 0xa2, 0x81, 0x17, 0x1b, 0xb5, 0xbe, + 0xfd, 0x6e, 0xc7, 0x0b, 0xf0, 0x7c, 0xad, 0x86, + 0xe5, 0x3d, 0xad, 0x63, 0xe9, 0xc7, 0x3f, 0x14, + 0x7c, 0xbb, 0x8a, 0x02, 0x4d, 0x0e, 0x9f, 0xe5, + 0x51, 0x06, 0x07, 0xc7, 0x32, 0x98, 0x1f, 0x8b, + 0xe0, 0xcb, 0xfb, 0x69, 0x3c, 0x99, 0x4b, 0xdc, + 0xba, 0x19, 0xf2, 0xd3, 0xf0, 0x09, 0xc1, 0x7e, + 0xad, 0x3f, 0x72, 0x82, 0x92, 0xc0, 0x62, 0x2e, + 0x17, 0x69, 0xdd, 0xf3, 0x2f, 0x36, 0x6b, 0x5d, + 0x9f, 0x43, 0x52, 0xfa, 0xc7, 0xdb, 0x5d, 0xad, + 0x67, 0x93, 0x05, 0x0a, 0x0d, 0xc0, 0x03, 0xe5, + 0x40, 0xac, 0x7e, 0x22, 0xad, 0x60, 0x24, 0x21, + 0x61, 0xa7, 0x6c, 0xe1, 0xc5, 0x46, 0xad, 0x2f, + 0xe3, 0x3d, 0xdb, 0x65, 0x13, 0x7b, 0x55, 0xab, + 0x2f, 0xaf, 0x73, 0xaf, 0xfa, 0x7e, 0x31, 0x4c, + 0x1c, 0x51, 0xae, 0xa1, 0x0c, 0x86, 0x47, 0x53, + 0x71, 0x2c, 0x8c, 0x45, 0x7b, 0xf2, 0xff, 0xbd, + 0x2d, 0x94, 0xea, 0x0e, 0x9e, 0xae, 0x56, 0x7b, + 0x9e, 0x1d, 0x3d, 0x89, 0xc5, 0xf1, 0x68, 0xab, + 0xf1, 0xb1, 0x54, 0x77, 0xf0, 0xd7, 0xb7, 0xa5, + 0x13, 0x47, 0x62, 0x6c, 0x3a, 0xd7, 0xde, 0x77, + 0xd6, 0x0a, 0x06, 0x56, 0x6f, 0x91, 0x45, 0xe0, + 0x65, 0xc2, 0xd3, 0x9a, 0xc1, 0xe0, 0xd8, 0xad, + 0x5a, 0xe0, 0x79, 0x16, 0xe3, 0x49, 0x09, 0x0f, + 0xa7, 0x62, 0x28, 0x6b, 0x0e, 0x76, 0x2a, 0x16, + 0x74, 0xdb, 0xc7, 0x17, 0x0b, 0x17, 0x9b, 0x17, + 0xf6, 0x09, 0xfa, 0xa6, 0x62, 0x54, 0x37, 0x5d, + 0x6c, 0x95, 0x4c, 0x4c, 0x65, 0x14, 0x30, 0x08, + 0xbb, 0x71, 0x57, 0xf2, 0xf4, 0x81, 0x1a, 0x14, + 0xb3, 0x59, 0xf5, 0x46, 0x8f, 0xaa, 0x5d, 0x14, + 0x81, 0x0f, 0x15, 0xb8, 0xd6, 0x8b, 0x06, 0xa6, + 0x33, 0xca, 0x85, 0x0d, 0xd6, 0x19, 0x06, 0xf8, + 0x60, 0x3a, 0x01, 0xdb, 0x0b, 0x50, 0x6a, 0x38, + 0x30, 0x1c, 0x1f, 0xdf, 0xbc, 0x2b, 0x63, 0x34, + 0x29, 0x63, 0x32, 0xad, 0x20, 0x22, 0x71, 0x28, + 0x69, 0x0e, 0x4a, 0x9a, 0x83, 0xd9, 0x8c, 0x4a, + 0x4b, 0xd4, 0x7d, 0x64, 0xbd, 0x60, 0x84, 0x1d, + 0xcd, 0x34, 0x8e, 0xd0, 0x1d, 0xf0, 0x75, 0x64, + 0xb3, 0x68, 0xe0, 0xbb, 0xe5, 0x0a, 0x08, 0x41, + 0xcb, 0xe7, 0xb5, 0x66, 0xb8, 0xc8, 0x5f, 0xd0, + 0xd1, 0xa3, 0xdf, 0xf7, 0xfb, 0x9b, 0x9d, 0x06, + 0x6a, 0x86, 0x8b, 0x80, 0x10, 0x94, 0x74, 0x5a, + 0x4a, 0x1a, 0x14, 0xb9, 0xb8, 0x34, 0x94, 0x7e, + 0xd2, 0x87, 0x49, 0x45, 0x44, 0xc4, 0xe4, 0x30, + 0xf7, 0xff, 0xb9, 0x4f, 0x8e, 0x4c, 0x0c, 0x03, + 0xcc, 0x64, 0x54, 0x2c, 0x8c, 0x45, 0x91, 0x8d, + 0x49, 0x20, 0x08, 0xad, 0xeb, 0x7e, 0x58, 0xa9, + 0xe0, 0x4f, 0xbf, 0x14, 0xb1, 0xbc, 0xaf, 0xa3, + 0xa6, 0xbb, 0x58, 0xde, 0xd7, 0x4f, 0x9c, 0x55, + 0x3e, 0xe0, 0xc0, 0x0b, 0x99, 0x72, 0x36, 0xb7, + 0xc9, 0x99, 0xe8, 0x4a, 0x76, 0xc0, 0x34, 0x71, + 0xb9, 0x04, 0x48, 0x68, 0x10, 0x3e, 0x9b, 0x53, + 0xb1, 0x5f, 0xb5, 0x50, 0xd6, 0x1c, 0xbc, 0xda, + 0xac, 0xc3, 0xf5, 0xa2, 0x98, 0x6c, 0xee, 0x3a, + 0x7b, 0x65, 0xbf, 0xda, 0xdf, 0x86, 0x07, 0x3f, + 0x20, 0xf8, 0x6e, 0xa9, 0x02, 0x9e, 0x63, 0xe0, + 0x78, 0x01, 0x4d, 0x68, 0x07, 0xc4, 0x83, 0x89, + 0x18, 0xa8, 0xa4, 0x76, 0x58, 0x82, 0xff, 0x76, + 0xa9, 0x8c, 0x5a, 0xd3, 0xa0, 0x3d, 0x1d, 0xbd, + 0x78, 0xf7, 0xf2, 0x48, 0x42, 0xc2, 0x48, 0x42, + 0xc2, 0x8b, 0x8d, 0x5a, 0xdb, 0xfd, 0x9b, 0x8b, + 0x4b, 0xf8, 0x68, 0x36, 0x81, 0x7c, 0xcd, 0xc6, + 0x8b, 0x8d, 0x1a, 0xfe, 0xbf, 0x97, 0x05, 0xf0, + 0x1c, 0x83, 0xa8, 0xcc, 0x43, 0xe4, 0x59, 0x24, + 0x22, 0x22, 0xd8, 0x66, 0xe0, 0xd5, 0x6d, 0x1f, + 0xc5, 0xba, 0x8d, 0x98, 0xc2, 0x23, 0x2a, 0xf3, + 0x08, 0x02, 0x82, 0x3b, 0xa3, 0x11, 0x3a, 0xb7, + 0xdc, 0x81, 0xbd, 0xe6, 0x5a, 0xa6, 0x88, 0x1c, + 0x46, 0xe2, 0x12, 0xb6, 0xcb, 0x26, 0x55, 0xcf, + 0xeb, 0x35, 0x00, 0xd3, 0x4b, 0x70, 0x39, 0x2c, + 0xef, 0x6b, 0x10, 0xb8, 0x50, 0x01, 0xe8, 0x6f, + 0x6f, 0xcb, 0x70, 0xfd, 0x00, 0xaf, 0xb6, 0xea, + 0xd8, 0xa9, 0x98, 0xf8, 0x68, 0xb6, 0x37, 0x5b, + 0x39, 0xd7, 0x0b, 0xa0, 0x59, 0xfd, 0x77, 0x06, + 0x09, 0x08, 0x81, 0xe3, 0xd1, 0x07, 0x68, 0x50, + 0x8c, 0x26, 0x64, 0xa8, 0x12, 0x5d, 0xc8, 0x81, + 0x50, 0xf0, 0x63, 0x22, 0x25, 0x63, 0xa7, 0x62, + 0xe1, 0xf5, 0x4e, 0x03, 0x5f, 0x2c, 0xa4, 0xc1, + 0xb1, 0xfd, 0xc9, 0x4c, 0x22, 0x12, 0x8f, 0xd1, + 0x84, 0x04, 0x45, 0xe4, 0x90, 0x88, 0x88, 0x18, + 0x4d, 0x84, 0x33, 0xc9, 0x63, 0x29, 0xb9, 0x65, + 0xe8, 0xee, 0x07, 0xa4, 0x65, 0x89, 0xb7, 0x5b, + 0x39, 0xde, 0x4b, 0x51, 0x6a, 0x38, 0x2d, 0xd7, + 0x9e, 0xb2, 0xee, 0xe2, 0x8b, 0x85, 0xf4, 0x50, + 0xf9, 0x7f, 0x9f, 0xc5, 0xdb, 0x9d, 0x06, 0xd6, + 0x0a, 0x06, 0x78, 0x96, 0xc1, 0x67, 0xf3, 0x29, + 0x28, 0x22, 0x07, 0xc7, 0x0b, 0xfa, 0xd6, 0x97, + 0x32, 0x2c, 0x30, 0x7f, 0x78, 0x4a, 0xcd, 0x18, + 0x2e, 0x93, 0x6c, 0x4c, 0xc4, 0x78, 0x5a, 0xc1, + 0x8b, 0xf5, 0x5a, 0xdb, 0x62, 0xf4, 0xd9, 0x7c, + 0xf7, 0x67, 0xc2, 0x55, 0xc3, 0xc5, 0xb7, 0xef, + 0xca, 0x03, 0x79, 0x7d, 0x2c, 0xc3, 0x0c, 0x85, + 0x08, 0xfa, 0x65, 0x93, 0x50, 0x05, 0xfc, 0x7a, + 0x3e, 0xd5, 0xb7, 0x20, 0x73, 0x1b, 0xa8, 0xe8, + 0x2e, 0xbe, 0x5b, 0x0a, 0xef, 0xe3, 0x98, 0xc2, + 0xe3, 0xb3, 0x85, 0x34, 0xf8, 0x4b, 0xb8, 0x3e, + 0x35, 0x23, 0x94, 0x8c, 0xdd, 0x2c, 0x19, 0x5d, + 0x0b, 0x42, 0xa8, 0x22, 0x87, 0xc7, 0x33, 0x09, + 0xa4, 0x86, 0x5c, 0xbf, 0xda, 0x72, 0x03, 0xfc, + 0xbc, 0x59, 0x6b, 0x25, 0x27, 0x8f, 0xa6, 0xe2, + 0x98, 0xca, 0x28, 0xf0, 0x7c, 0x82, 0x3f, 0xbd, + 0x2a, 0xc0, 0xa3, 0x3b, 0x60, 0xba, 0x03, 0xbe, + 0xce, 0x14, 0x1b, 0x0e, 0x8a, 0x47, 0x4c, 0xa5, + 0xab, 0xba, 0x8b, 0x95, 0xbc, 0x8e, 0xf9, 0x2e, + 0x67, 0x41, 0x8d, 0x3e, 0xed, 0x7e, 0x19, 0x84, + 0x1d, 0xda, 0x02, 0xcf, 0xa2, 0x50, 0xb3, 0xf1, + 0xf9, 0x42, 0x0a, 0x3c, 0xc7, 0x62, 0xab, 0x64, + 0x60, 0xad, 0x60, 0xb4, 0xba, 0xb8, 0x29, 0x17, + 0x67, 0x36, 0xa7, 0xd2, 0xe0, 0x7b, 0x84, 0x54, + 0x44, 0xc0, 0x78, 0x4a, 0xc6, 0x6e, 0xc5, 0x42, + 0xc3, 0xf4, 0xb0, 0xba, 0xaf, 0x63, 0x71, 0x3c, + 0x7a, 0x29, 0xc9, 0x50, 0x42, 0x15, 0xa0, 0x4a, + 0x1c, 0x5e, 0x77, 0xd9, 0x89, 0x6d, 0x38, 0x3e, + 0xbe, 0x5f, 0x2e, 0xe3, 0xc1, 0x64, 0x1c, 0xd3, + 0x99, 0xe1, 0x1c, 0xd5, 0xcb, 0xd7, 0x6c, 0xbc, + 0xdc, 0xaa, 0xb7, 0x09, 0xf5, 0x18, 0x4d, 0x8f, + 0xde, 0x8d, 0xa2, 0x41, 0x83, 0x2f, 0x0d, 0xc0, + 0x37, 0x97, 0xb5, 0xbc, 0x8e, 0xa9, 0x8c, 0x02, + 0xa9, 0x8b, 0x11, 0xa0, 0x54, 0x54, 0x44, 0xaf, + 0x5e, 0xea, 0x9d, 0x76, 0xb6, 0xaa, 0xc4, 0x63, + 0x2c, 0x29, 0x63, 0x79, 0x5f, 0x87, 0xe9, 0xf8, + 0xd8, 0xa9, 0x58, 0xc8, 0xc5, 0x25, 0x4c, 0x67, + 0x55, 0x4c, 0x65, 0xc3, 0xf3, 0xea, 0x95, 0x7d, + 0x7d, 0x20, 0xe5, 0xee, 0x61, 0x22, 0x13, 0x93, + 0x30, 0x96, 0x94, 0xe9, 0x85, 0xe8, 0xc0, 0xe3, + 0xe9, 0x38, 0x6c, 0x37, 0x40, 0x59, 0x73, 0xb0, + 0x5b, 0xb5, 0x2e, 0x25, 0x00, 0x1f, 0x30, 0x9d, + 0x55, 0xb1, 0xba, 0xaf, 0x77, 0x2d, 0xc1, 0x4a, + 0x08, 0xf0, 0x66, 0xbb, 0x81, 0xc9, 0xb4, 0x7c, + 0x69, 0xaa, 0x65, 0x96, 0xeb, 0x63, 0xab, 0x64, + 0xc2, 0x76, 0x83, 0x2b, 0x31, 0xb0, 0x68, 0x98, + 0x1e, 0x56, 0xf3, 0x3a, 0x8a, 0x0d, 0xbb, 0x63, + 0xe3, 0xda, 0x7a, 0xd1, 0x40, 0xdd, 0xf4, 0xe8, + 0x0c, 0x30, 0x0d, 0xc0, 0x37, 0x1b, 0x3f, 0x20, + 0x28, 0x37, 0x9c, 0xae, 0x34, 0xa3, 0x15, 0x91, + 0x43, 0x2e, 0x21, 0x21, 0x7f, 0x86, 0x98, 0x01, + 0xcb, 0x32, 0x98, 0x4a, 0x2b, 0x88, 0x29, 0x3c, + 0x26, 0x52, 0x0a, 0x4a, 0x9a, 0x8d, 0x9f, 0x56, + 0xaa, 0xad, 0xc0, 0xad, 0xdb, 0x1e, 0x7e, 0x58, + 0x79, 0x6f, 0x05, 0xf6, 0x66, 0xa7, 0x81, 0x37, + 0x3b, 0x0d, 0x44, 0xe4, 0xf0, 0x0c, 0x6d, 0x2e, + 0x17, 0xc1, 0x68, 0x42, 0x46, 0xb1, 0x61, 0xa3, + 0xd4, 0x70, 0xb0, 0x55, 0x32, 0x69, 0x79, 0xfa, + 0x1c, 0x3c, 0x9c, 0x8c, 0xd1, 0x8b, 0x70, 0x4a, + 0x62, 0xf8, 0x70, 0x2a, 0x86, 0xbf, 0xbc, 0x29, + 0xc1, 0x72, 0xfc, 0x96, 0x5e, 0xf9, 0x65, 0x50, + 0xd1, 0x1c, 0x38, 0x3d, 0x76, 0x3c, 0x07, 0x84, + 0x60, 0x69, 0x4f, 0xc7, 0xbd, 0x66, 0xa2, 0x50, + 0xd1, 0x1d, 0x44, 0x65, 0x1e, 0x02, 0xd7, 0x9f, + 0xd7, 0x5c, 0x37, 0xdd, 0xd6, 0x73, 0x5d, 0xa8, + 0xdb, 0x68, 0x98, 0x61, 0xf2, 0x2b, 0x70, 0x2c, + 0xee, 0x4d, 0x04, 0x7d, 0xfb, 0x3b, 0x40, 0x28, + 0x14, 0x74, 0x20, 0x61, 0x9b, 0x89, 0x89, 0x50, + 0x45, 0x0e, 0x9a, 0xe5, 0xa1, 0xd4, 0x70, 0xe0, + 0x05, 0x04, 0xbb, 0x15, 0x13, 0x86, 0xed, 0x9f, + 0x99, 0x94, 0xd0, 0xe0, 0x4b, 0x03, 0xf0, 0xad, + 0xc0, 0xeb, 0x61, 0x31, 0x78, 0x38, 0x19, 0x47, + 0x59, 0x2b, 0x9e, 0x3a, 0x4e, 0x71, 0x7f, 0x22, + 0xd6, 0x56, 0x2e, 0xcb, 0x44, 0x25, 0x70, 0xdc, + 0xd9, 0x8e, 0x25, 0xba, 0xe5, 0x61, 0xc5, 0xf2, + 0xb0, 0x5b, 0xb1, 0xf0, 0xe1, 0x6c, 0xa2, 0x25, + 0xae, 0x3f, 0x96, 0x94, 0xf1, 0xdd, 0x52, 0x99, + 0x9a, 0x98, 0xf4, 0xc8, 0xd2, 0xbe, 0x86, 0x8f, + 0x66, 0x12, 0xf4, 0x42, 0x9c, 0x40, 0x44, 0xe2, + 0x91, 0x50, 0x05, 0x54, 0x75, 0x17, 0xeb, 0x05, + 0xe3, 0x52, 0x76, 0xc1, 0x07, 0x1d, 0xd1, 0xe7, + 0xc9, 0x27, 0xd7, 0xf2, 0x3a, 0xea, 0x86, 0x0b, + 0x59, 0x60, 0xb1, 0x53, 0xb1, 0xf0, 0x60, 0x32, + 0x86, 0x99, 0x6c, 0x7f, 0x8c, 0x26, 0x96, 0xf6, + 0x74, 0x14, 0x3b, 0x8c, 0xf6, 0xb8, 0x7e, 0x80, + 0x57, 0x9b, 0x0d, 0x7c, 0x34, 0x97, 0xe8, 0xcb, + 0x84, 0x82, 0xe7, 0x13, 0x7c, 0xbf, 0x52, 0x41, + 0xbd, 0x29, 0x58, 0x32, 0x92, 0x90, 0xf0, 0xf1, + 0x5c, 0x12, 0xaf, 0xb7, 0x1b, 0x34, 0xa0, 0x5e, + 0x66, 0x00, 0x66, 0xae, 0x78, 0x26, 0x62, 0x2a, + 0xa3, 0xa0, 0xac, 0x39, 0x67, 0x66, 0x5a, 0xc3, + 0x40, 0xbe, 0xee, 0x60, 0xba, 0xcb, 0x07, 0x59, + 0x12, 0x58, 0x2c, 0x8e, 0xc7, 0x4e, 0x3c, 0xc3, + 0x62, 0x58, 0xe6, 0x98, 0x30, 0xfd, 0x6e, 0xd5, + 0x82, 0x1f, 0x00, 0xdd, 0x7e, 0xe6, 0x96, 0x1b, + 0xe0, 0xfb, 0xe5, 0x0a, 0x26, 0xd3, 0x0a, 0x12, + 0xaa, 0x80, 0x5c, 0x5c, 0x84, 0xc0, 0x73, 0xad, + 0x39, 0xc9, 0x5c, 0x5c, 0x02, 0xc7, 0x32, 0x50, + 0x44, 0x0e, 0xc5, 0xba, 0x8d, 0x06, 0x2d, 0x55, + 0x77, 0x64, 0xbf, 0x6a, 0xc3, 0x99, 0x08, 0xa8, + 0xc2, 0xd8, 0x29, 0x30, 0x0c, 0x03, 0x86, 0x61, + 0xb0, 0x56, 0x08, 0x1b, 0xa3, 0x16, 0xc7, 0xa3, + 0x03, 0x1b, 0xd7, 0xb2, 0xdd, 0x00, 0x2f, 0x36, + 0xea, 0x08, 0x48, 0xf7, 0xcf, 0xc2, 0xb1, 0xdd, + 0xb3, 0xee, 0xb6, 0x5e, 0x77, 0x3f, 0x46, 0x94, + 0x08, 0x01, 0x36, 0x4a, 0x06, 0xca, 0x9a, 0x73, + 0xe2, 0x6b, 0xca, 0xd7, 0x6d, 0xbc, 0x58, 0xaf, + 0xe1, 0xa3, 0xd9, 0x8b, 0x27, 0x73, 0xcf, 0x37, + 0x6a, 0x68, 0x98, 0x1e, 0x18, 0x26, 0x7c, 0x7e, + 0xe7, 0x47, 0xc3, 0xa4, 0x47, 0xe4, 0x59, 0x30, + 0x74, 0x4e, 0x6e, 0x78, 0x76, 0xc0, 0xba, 0xed, + 0xc3, 0x72, 0xe8, 0xe0, 0x3b, 0x10, 0x96, 0x72, + 0x5e, 0x6f, 0x37, 0x30, 0x3f, 0x16, 0xe9, 0xaa, + 0xd4, 0x34, 0x95, 0x56, 0x50, 0xd5, 0xdd, 0x63, + 0xad, 0xff, 0x2c, 0xcb, 0xe0, 0xd1, 0x64, 0x0c, + 0x8a, 0xd8, 0xbe, 0x30, 0x9c, 0x24, 0xcf, 0x77, + 0xd6, 0xc2, 0xb0, 0x55, 0x32, 0x3b, 0x1a, 0x34, + 0x3c, 0x9e, 0x8a, 0x41, 0x68, 0x06, 0x95, 0xf9, + 0xb1, 0x08, 0xf6, 0xab, 0x16, 0x96, 0xf7, 0x75, + 0x9a, 0x4c, 0x75, 0x40, 0xb3, 0xbc, 0xbe, 0xcc, + 0xba, 0xde, 0x56, 0x14, 0x81, 0x43, 0x15, 0xe1, + 0xfd, 0xb9, 0x5e, 0x34, 0xe0, 0x13, 0x32, 0xb0, + 0xd2, 0xfd, 0x72, 0x5e, 0xef, 0xeb, 0x51, 0xca, + 0x45, 0x4d, 0xe5, 0xeb, 0x86, 0x8b, 0x17, 0x1b, + 0x75, 0x18, 0x5d, 0x34, 0x3d, 0xee, 0xd7, 0x6c, + 0x54, 0x34, 0x07, 0xa9, 0x0b, 0xdc, 0x4b, 0x75, + 0xd3, 0x6b, 0x75, 0x31, 0x03, 0x61, 0xb2, 0x13, + 0x53, 0x78, 0x10, 0x80, 0x36, 0x5e, 0x0e, 0x5b, + 0x00, 0xae, 0xd0, 0x72, 0x47, 0x1b, 0x9b, 0x25, + 0x13, 0xf9, 0xba, 0x8d, 0x07, 0x13, 0x31, 0xe4, + 0xe2, 0xd2, 0xa9, 0xbb, 0x00, 0x86, 0x01, 0x3e, + 0x9c, 0x89, 0x63, 0x2a, 0xab, 0xa0, 0xdc, 0x70, + 0x10, 0x95, 0x78, 0xc4, 0x55, 0x1e, 0xb2, 0xc8, + 0x1d, 0x2b, 0x53, 0x39, 0x7e, 0x80, 0x9d, 0x72, + 0x7f, 0x67, 0xf4, 0xde, 0xed, 0xe9, 0x78, 0x30, + 0x19, 0x05, 0xcb, 0x30, 0x20, 0x84, 0x40, 0x95, + 0x78, 0x4c, 0x65, 0x14, 0xbc, 0xdd, 0xd1, 0xe8, + 0x07, 0x79, 0x84, 0x42, 0xdd, 0xa1, 0x01, 0xf8, + 0x14, 0xe6, 0xc7, 0x22, 0xb0, 0x5c, 0xbf, 0xb5, + 0xb3, 0xdc, 0x2a, 0x99, 0x18, 0x89, 0x4b, 0xc8, + 0xf4, 0xd1, 0x5e, 0xd0, 0xf3, 0x09, 0x5e, 0x6d, + 0xd5, 0xfb, 0x66, 0x04, 0x71, 0x80, 0x71, 0x81, + 0xa0, 0x55, 0xd1, 0x5d, 0x3c, 0x5d, 0xab, 0xf6, + 0x64, 0x20, 0xf1, 0x66, 0x4f, 0xc7, 0xe7, 0xf3, + 0xc2, 0xb9, 0x1b, 0xc1, 0x14, 0x91, 0x85, 0x2a, + 0x71, 0xad, 0x44, 0x79, 0xbf, 0x99, 0xc0, 0xd7, + 0x74, 0x17, 0x75, 0xb3, 0xf7, 0x2a, 0x56, 0x3a, + 0x2a, 0x62, 0x2e, 0xa7, 0xe2, 0xf9, 0x06, 0x35, + 0xc2, 0xe8, 0xb9, 0xf2, 0xf3, 0x2f, 0xcf, 0xf6, + 0xe9, 0x15, 0xbb, 0xa6, 0xc8, 0x02, 0x87, 0xb1, + 0xa4, 0x84, 0xd1, 0xa4, 0x7c, 0x61, 0xb7, 0x1c, + 0xc3, 0xf6, 0xf1, 0xf5, 0x9b, 0x52, 0xcf, 0x3f, + 0x17, 0x95, 0xf9, 0x53, 0xbb, 0xa0, 0x79, 0x2e, + 0x2c, 0x61, 0x19, 0xb6, 0x4f, 0x55, 0x70, 0x4e, + 0x61, 0x26, 0xab, 0xe2, 0xfe, 0x44, 0x94, 0x5e, + 0x88, 0x53, 0xf0, 0x03, 0x82, 0xbf, 0xbe, 0x2d, + 0xb7, 0x76, 0x61, 0x02, 0xc7, 0xe2, 0xcb, 0x7b, + 0xa9, 0xbe, 0x94, 0x78, 0xeb, 0xa6, 0x87, 0xe7, + 0xeb, 0xb5, 0x81, 0xec, 0xf0, 0xe2, 0x0a, 0x8f, + 0x2f, 0x16, 0xd3, 0x3d, 0xff, 0x5c, 0xbe, 0x66, + 0xe3, 0xf9, 0x46, 0x1d, 0xe4, 0x1c, 0xbb, 0xf1, + 0x5f, 0xcf, 0xa7, 0x2e, 0x34, 0x93, 0xac, 0x59, + 0x1e, 0xfe, 0xfa, 0xb6, 0x3f, 0x5a, 0x02, 0x5f, + 0xdd, 0xcf, 0x20, 0x22, 0x71, 0xd8, 0xab, 0x5a, + 0xd4, 0x0f, 0xb8, 0x47, 0xe8, 0xa1, 0xd4, 0x35, + 0xc6, 0x72, 0x7d, 0xac, 0x15, 0x0c, 0x7c, 0xf3, + 0xae, 0x8c, 0x67, 0x6b, 0xb5, 0x0b, 0x39, 0xb9, + 0x9c, 0x57, 0xc5, 0xe7, 0xac, 0x11, 0x24, 0xcf, + 0x27, 0x68, 0x98, 0x1e, 0x0d, 0xbe, 0x67, 0x20, + 0x52, 0xd1, 0xd7, 0x33, 0xe1, 0x58, 0xa6, 0xad, + 0x69, 0xd0, 0xf5, 0x03, 0x6c, 0x14, 0x2f, 0xe6, + 0x4d, 0x6d, 0x3a, 0x3e, 0x56, 0xf6, 0x75, 0x7c, + 0xbf, 0x5c, 0x19, 0x58, 0x79, 0xb5, 0x61, 0xf5, + 0x7e, 0xff, 0xef, 0x54, 0x2c, 0x3c, 0xdf, 0xa8, + 0x9d, 0x2b, 0xf8, 0x02, 0xc0, 0x45, 0x47, 0xca, + 0xa3, 0x32, 0x8f, 0xd9, 0x3e, 0x34, 0x8e, 0x45, + 0x65, 0x1e, 0x91, 0xa6, 0xba, 0xdb, 0x45, 0x4d, + 0x35, 0x86, 0x11, 0xba, 0x2c, 0xdc, 0x10, 0x0a, + 0x75, 0x1b, 0x15, 0xdd, 0xc1, 0x4c, 0x56, 0x45, + 0x36, 0x26, 0x22, 0xae, 0x86, 0xd9, 0x6f, 0x45, + 0x77, 0x61, 0xd8, 0x1e, 0x24, 0x81, 0x43, 0x26, + 0x2a, 0x9e, 0x58, 0xb2, 0xae, 0xea, 0x2e, 0xa2, + 0x32, 0x0f, 0xd7, 0x0b, 0x40, 0x08, 0x81, 0x4b, + 0x4b, 0x45, 0x97, 0x4a, 0x2e, 0x2e, 0xd1, 0x8b, + 0xd0, 0xcd, 0x6e, 0x52, 0x15, 0xda, 0x8e, 0x4f, + 0xf6, 0xab, 0x16, 0x16, 0xc7, 0x7a, 0x6f, 0xc8, + 0x2a, 0xd4, 0x6d, 0xac, 0xec, 0xe9, 0x6d, 0x8d, + 0x81, 0x03, 0x5b, 0xeb, 0x48, 0xf8, 0x7c, 0x75, + 0x53, 0x2e, 0x77, 0xbc, 0x00, 0x6f, 0xb6, 0x1b, + 0xa1, 0x19, 0x0b, 0x39, 0xff, 0x6b, 0xb2, 0x1c, + 0x1f, 0xaa, 0xc4, 0x61, 0xb7, 0x62, 0x63, 0xa7, + 0x6c, 0xe2, 0xde, 0x44, 0xb4, 0xe7, 0x23, 0x8e, + 0x7b, 0x13, 0x51, 0x70, 0x1c, 0x73, 0x21, 0x2b, + 0xc1, 0xb1, 0xe4, 0xfb, 0xfb, 0x7a, 0x65, 0x5f, + 0xa7, 0x1a, 0xf2, 0xbd, 0x06, 0x60, 0x7a, 0x09, + 0x6e, 0x0e, 0x9e, 0x4f, 0xb0, 0xb2, 0xaf, 0x63, + 0x65, 0x5f, 0x87, 0x2a, 0x71, 0x60, 0xc0, 0x40, + 0xb7, 0xdf, 0x2f, 0x30, 0x31, 0x85, 0xc7, 0xc7, + 0x77, 0x92, 0x1d, 0xc5, 0x3c, 0x0e, 0x84, 0xea, + 0x0f, 0x53, 0x37, 0x5c, 0xbc, 0xdb, 0xd5, 0x5a, + 0xe7, 0x6e, 0x94, 0xc1, 0x30, 0x92, 0x90, 0xe8, + 0xee, 0xa0, 0x4b, 0x52, 0x11, 0x01, 0x93, 0x19, + 0x05, 0xdb, 0xcd, 0xa6, 0x3f, 0xdb, 0x0d, 0x75, + 0xcf, 0x63, 0x3d, 0x1c, 0xc1, 0xec, 0x54, 0x2c, + 0xbc, 0xde, 0x6a, 0x5c, 0xea, 0xcc, 0xfa, 0x6e, + 0xc5, 0x3a, 0x33, 0x00, 0xe7, 0xeb, 0x36, 0x5e, + 0x6f, 0x35, 0x2e, 0xdc, 0xb4, 0x05, 0x00, 0xaf, + 0xb6, 0x1a, 0x20, 0x00, 0x82, 0xe6, 0xce, 0x7b, + 0xaf, 0x62, 0x9d, 0xab, 0xc7, 0x60, 0x7e, 0x34, + 0x02, 0xcf, 0x0f, 0xb0, 0x79, 0xce, 0x4a, 0x43, + 0xb2, 0xb9, 0x11, 0xb0, 0x5c, 0xff, 0x4c, 0x5d, + 0x02, 0x4a, 0x87, 0x4a, 0x06, 0xbd, 0x04, 0x37, + 0x13, 0xc3, 0xf6, 0xdb, 0x82, 0x2f, 0x10, 0xaa, + 0xd6, 0x3c, 0x5b, 0xab, 0x75, 0x6d, 0xa7, 0x16, + 0x57, 0x05, 0x7c, 0x30, 0x93, 0xa0, 0x59, 0xeb, + 0x80, 0x99, 0xcd, 0xa9, 0xf4, 0x22, 0xf4, 0xc0, + 0xc3, 0xc9, 0x18, 0x3e, 0x9e, 0x4b, 0xb4, 0xc6, + 0xb6, 0x2a, 0x5d, 0xd8, 0x63, 0x7a, 0x3e, 0xc1, + 0x7a, 0xc1, 0xc0, 0xd7, 0xaf, 0x4b, 0x78, 0xb5, + 0x59, 0xbf, 0x74, 0xc1, 0x98, 0x62, 0xc3, 0x86, + 0xe5, 0x9e, 0x5e, 0xe2, 0xde, 0x2d, 0x5b, 0x7d, + 0x09, 0xbe, 0x40, 0x78, 0x5e, 0x1e, 0x1c, 0x2a, + 0x7b, 0x5f, 0xa4, 0x11, 0xec, 0xce, 0x48, 0xe4, + 0xdc, 0x6b, 0xc0, 0xc1, 0x11, 0x81, 0x24, 0x70, + 0x3d, 0x25, 0x49, 0x94, 0x83, 0x1d, 0x30, 0x5d, + 0x7d, 0x6f, 0x15, 0x75, 0xd3, 0xc5, 0x5f, 0xdf, + 0x96, 0x31, 0x9d, 0x55, 0x91, 0x89, 0x8a, 0x67, + 0x36, 0x6f, 0x49, 0x02, 0x1b, 0x8a, 0x73, 0xd0, + 0x33, 0xdc, 0x81, 0xb1, 0x5d, 0x36, 0x91, 0x50, + 0x05, 0x7a, 0x21, 0x7a, 0x20, 0x1b, 0x97, 0xf0, + 0xc9, 0x5d, 0x0e, 0xdf, 0xaf, 0x54, 0x50, 0x6c, + 0x38, 0x1d, 0x85, 0x2e, 0x08, 0x01, 0x4a, 0x9a, + 0x83, 0xdd, 0x8a, 0x89, 0x42, 0xdd, 0x79, 0x1f, + 0x74, 0xaf, 0x60, 0x4d, 0xf3, 0x82, 0xb0, 0x3a, + 0xf5, 0x68, 0xea, 0x64, 0xb9, 0x48, 0x59, 0x64, + 0x07, 0xf6, 0xda, 0xaa, 0x86, 0x0b, 0xcb, 0x0d, + 0x20, 0x0b, 0xbd, 0xef, 0xa9, 0x44, 0x9e, 0x45, + 0x44, 0xe1, 0xcf, 0x25, 0x39, 0x5b, 0x68, 0xd8, + 0x30, 0x1c, 0x1f, 0xaa, 0xc8, 0xe1, 0x8b, 0xc5, + 0x34, 0x76, 0x2b, 0x16, 0xde, 0xed, 0x69, 0x7d, + 0x4b, 0x34, 0x6e, 0x7f, 0x00, 0xa6, 0xdc, 0x3a, + 0x1c, 0x2f, 0xc0, 0xf2, 0x9e, 0x86, 0x65, 0x84, + 0xe6, 0xe7, 0x93, 0x69, 0x19, 0x6c, 0x53, 0x98, + 0xe3, 0xe8, 0xe8, 0x42, 0x40, 0x08, 0x0d, 0xbe, + 0x03, 0x66, 0xbf, 0x66, 0xe3, 0xd1, 0x14, 0xbd, + 0x0e, 0xbd, 0x12, 0x95, 0x79, 0x7c, 0x7a, 0x37, + 0x85, 0xa7, 0x6b, 0x55, 0xb8, 0x7e, 0x28, 0xc3, + 0x48, 0x08, 0xf0, 0x76, 0xb7, 0x01, 0xcd, 0xf2, + 0xa0, 0xdb, 0xfe, 0xb5, 0x5a, 0xe8, 0xcf, 0x3a, + 0xca, 0xc9, 0xc5, 0x25, 0x6c, 0x96, 0xcc, 0x81, + 0xfd, 0xfd, 0x9a, 0xee, 0x40, 0x6e, 0x6a, 0x8e, + 0xe7, 0xeb, 0x36, 0x72, 0x31, 0xa9, 0xeb, 0xb3, + 0x73, 0x59, 0xe0, 0xce, 0xad, 0xf9, 0xee, 0x7a, + 0x01, 0x2a, 0xae, 0x8f, 0xa5, 0x3d, 0x1d, 0xe3, + 0x29, 0x19, 0xbf, 0xba, 0x93, 0xc4, 0x37, 0x03, + 0x72, 0x6b, 0xa3, 0x01, 0x98, 0x72, 0xa3, 0xa8, + 0xe8, 0x4e, 0xab, 0x84, 0x97, 0x8e, 0x8a, 0x78, + 0x32, 0x9b, 0x68, 0x73, 0xe5, 0xd1, 0x2f, 0x20, + 0x9a, 0x21, 0x70, 0x2c, 0x92, 0x11, 0x01, 0x85, + 0x3a, 0x3d, 0xfb, 0x39, 0x8d, 0xd0, 0x7b, 0x36, + 0x80, 0x24, 0xd0, 0x13, 0x9f, 0x5e, 0x89, 0xc9, + 0x3c, 0x7e, 0x35, 0x97, 0xc4, 0xf7, 0x2b, 0x55, + 0x24, 0x14, 0x1e, 0x35, 0xc3, 0x3b, 0x76, 0xf4, + 0x72, 0x12, 0x1c, 0xcb, 0x60, 0x32, 0xad, 0x60, + 0xa3, 0x68, 0x5c, 0xca, 0x6b, 0x35, 0x1d, 0x1f, + 0x65, 0xed, 0xe4, 0x79, 0xef, 0xfd, 0x01, 0x9f, + 0x91, 0x56, 0x74, 0x17, 0xa3, 0x49, 0x19, 0x8e, + 0x4f, 0xf0, 0x7c, 0xbd, 0x86, 0x74, 0x54, 0xc4, + 0xa3, 0xa9, 0x78, 0x57, 0xbb, 0x62, 0x72, 0x01, + 0x81, 0xd9, 0xb7, 0xbb, 0x1a, 0x54, 0x89, 0x43, + 0xcd, 0x70, 0x51, 0x33, 0x5c, 0x88, 0x3c, 0x8b, + 0x89, 0x94, 0x0c, 0xab, 0x69, 0xb2, 0x41, 0x39, + 0x19, 0xba, 0x22, 0x0c, 0x11, 0x65, 0xcd, 0xc1, + 0x8f, 0xab, 0xd5, 0xb6, 0xb3, 0xaa, 0x86, 0x79, + 0xbe, 0xac, 0x57, 0x12, 0x58, 0x3c, 0x99, 0x4b, + 0xe0, 0xa3, 0xd9, 0xf0, 0xac, 0x6e, 0x2e, 0xa7, + 0x62, 0x3c, 0x25, 0x83, 0xaa, 0xd8, 0x75, 0xe6, + 0x87, 0xd5, 0x0a, 0x55, 0x08, 0x3b, 0x27, 0xb2, + 0xc0, 0xc1, 0x76, 0x43, 0xb7, 0xae, 0x4e, 0xc1, + 0x97, 0x41, 0x68, 0x31, 0xf8, 0xc1, 0x74, 0xbc, + 0xcd, 0xd2, 0xd3, 0x0f, 0xc8, 0xa5, 0x05, 0xdf, + 0x03, 0x96, 0xf6, 0x3a, 0xab, 0x6c, 0xf9, 0x01, + 0xc1, 0xee, 0x80, 0xcd, 0xea, 0x0f, 0x2a, 0x59, + 0x6e, 0xf3, 0xf9, 0x2e, 0x6b, 0x0e, 0xfe, 0xf6, + 0xb6, 0xd4, 0xa6, 0x7a, 0x75, 0x12, 0xd6, 0x05, + 0x46, 0x1c, 0x0f, 0xfc, 0x95, 0x13, 0xaa, 0x80, + 0x88, 0xcc, 0xc3, 0xf1, 0x02, 0xa4, 0xa3, 0x22, + 0x1e, 0x4c, 0x50, 0x13, 0x92, 0x33, 0x77, 0xc0, + 0x74, 0xbd, 0x1c, 0x2e, 0xea, 0x86, 0x8b, 0x67, + 0x6b, 0xb5, 0x96, 0x70, 0x80, 0xc4, 0xb3, 0x5d, + 0x1f, 0x4b, 0x09, 0x1c, 0x8b, 0xb1, 0x94, 0x0c, + 0x91, 0x67, 0x31, 0x9d, 0x51, 0x5a, 0x3b, 0xe9, + 0xdf, 0x3d, 0xc8, 0xb6, 0x02, 0xef, 0x44, 0x4a, + 0xc1, 0x8b, 0xf5, 0xe3, 0x8d, 0x60, 0x8a, 0xc8, + 0x41, 0x11, 0x39, 0x54, 0x75, 0x17, 0x01, 0x21, + 0xe0, 0xbb, 0x30, 0x85, 0xb8, 0x4d, 0x98, 0xb6, + 0x8f, 0xef, 0x57, 0x2a, 0xf8, 0xf4, 0x6e, 0xaa, + 0x35, 0x37, 0x49, 0xe9, 0x72, 0x91, 0xe2, 0x18, + 0x7c, 0x32, 0x97, 0xc4, 0xf3, 0x8d, 0x1a, 0x7c, + 0x9f, 0x20, 0x13, 0x13, 0x21, 0x8b, 0x1c, 0x12, + 0x11, 0x01, 0xb9, 0x98, 0x84, 0x80, 0x90, 0xd6, + 0xd1, 0x4a, 0xcd, 0x70, 0xb1, 0x72, 0x81, 0xb1, + 0x9a, 0x8b, 0xd2, 0x30, 0x5d, 0x6c, 0x16, 0xcd, + 0x63, 0x8d, 0x77, 0xa6, 0xe3, 0x83, 0x04, 0x64, + 0xa0, 0xc7, 0xd3, 0x07, 0x4f, 0xd3, 0x46, 0xc9, + 0x6c, 0xfd, 0x1d, 0x3f, 0x20, 0x78, 0xb1, 0x51, + 0xc3, 0xa7, 0x77, 0x53, 0x1d, 0x9b, 0xa4, 0x02, + 0x42, 0xb0, 0x59, 0x34, 0x61, 0x58, 0xde, 0x85, + 0x5f, 0xdb, 0xe2, 0x58, 0x14, 0x51, 0x99, 0xc7, + 0x4f, 0x6b, 0x55, 0x48, 0x02, 0x0b, 0xc3, 0xf6, + 0x68, 0x8b, 0xd1, 0x59, 0xf7, 0x36, 0xbd, 0x04, + 0xc3, 0x4d, 0x3a, 0x2a, 0x22, 0xa6, 0xf0, 0x5d, + 0xed, 0x84, 0xef, 0x8c, 0x46, 0x3a, 0x9a, 0x91, + 0x1f, 0xde, 0xf5, 0xa6, 0x22, 0x02, 0xbe, 0x7a, + 0x90, 0x01, 0x83, 0xf0, 0x6c, 0x48, 0xb3, 0x3c, + 0xd4, 0x4c, 0x0f, 0x13, 0x29, 0x19, 0x8a, 0xc8, + 0x41, 0xb7, 0x7d, 0x2c, 0xed, 0x6a, 0x98, 0xc9, + 0x29, 0xf8, 0x71, 0xa5, 0x3a, 0x54, 0xd7, 0xda, + 0xf5, 0x02, 0xfc, 0xb4, 0x5a, 0xc1, 0x67, 0xf3, + 0x69, 0x5a, 0x8e, 0xee, 0x91, 0xb8, 0x2a, 0xe0, + 0xb7, 0xf7, 0xb3, 0x00, 0x73, 0xbc, 0x8f, 0xe9, + 0x70, 0x5f, 0x43, 0xdd, 0xb8, 0xfa, 0x91, 0xba, + 0x92, 0xe6, 0x1c, 0x0b, 0xc0, 0xdd, 0xec, 0x42, + 0x2f, 0x0a, 0xc7, 0x84, 0xfd, 0x1f, 0x7b, 0x15, + 0xeb, 0xd8, 0xee, 0xfb, 0xfb, 0xe5, 0x0a, 0xc6, + 0xd3, 0x32, 0x16, 0xc7, 0xa2, 0xe0, 0x58, 0x06, + 0x7e, 0x10, 0x76, 0x8d, 0x6f, 0x96, 0xcc, 0x9e, + 0x5c, 0xd8, 0x4e, 0xa3, 0x50, 0xb7, 0x91, 0x8c, + 0x08, 0xf8, 0x6c, 0x3e, 0x85, 0xb2, 0xe6, 0x60, + 0x25, 0xaf, 0xd3, 0x1b, 0xf7, 0x0c, 0xe8, 0x2a, + 0x30, 0x84, 0x68, 0x96, 0x87, 0xaf, 0xdf, 0x94, + 0xb0, 0x5d, 0x36, 0xc1, 0x30, 0xc0, 0xa7, 0x77, + 0x53, 0x2d, 0xc3, 0x78, 0x86, 0x09, 0x1b, 0xb7, + 0xe6, 0x72, 0x2a, 0x46, 0x0e, 0x89, 0x47, 0x88, + 0x3c, 0x8b, 0xb1, 0x44, 0x77, 0x62, 0x12, 0x3c, + 0xcb, 0x80, 0x63, 0x19, 0xc8, 0x22, 0x87, 0x6c, + 0x5c, 0xc2, 0xfc, 0x68, 0xa4, 0x65, 0x0c, 0x11, + 0x91, 0x38, 0x3c, 0x99, 0x4b, 0x20, 0xae, 0x0c, + 0x67, 0x57, 0xb0, 0xed, 0x06, 0x78, 0xba, 0x56, + 0xa5, 0xca, 0x61, 0xe7, 0x80, 0x61, 0xce, 0x6e, + 0x22, 0x2e, 0x5f, 0x83, 0x99, 0xf6, 0xea, 0x11, + 0x77, 0x37, 0xdb, 0x0d, 0xb0, 0x9a, 0xd7, 0x43, + 0xdf, 0xe0, 0x01, 0x3a, 0x62, 0xa9, 0x22, 0x07, + 0x81, 0x0b, 0x75, 0x9e, 0x3b, 0xed, 0x74, 0xb7, + 0x4b, 0x26, 0x34, 0xcb, 0x03, 0x21, 0xc0, 0xcb, + 0x8d, 0x3a, 0x56, 0xf3, 0x7a, 0xdf, 0x82, 0x2f, + 0x10, 0x76, 0xfb, 0xd7, 0x4d, 0x0f, 0xdb, 0x65, + 0x13, 0x3f, 0xad, 0x56, 0x11, 0x93, 0x79, 0x2c, + 0x8c, 0x51, 0xf9, 0xd5, 0x53, 0xef, 0xe9, 0xff, + 0xf7, 0x39, 0xd5, 0x82, 0x1e, 0x66, 0xc6, 0x53, + 0x72, 0x6b, 0x74, 0xa2, 0xa2, 0xbb, 0x88, 0xca, + 0x1c, 0x5c, 0x2f, 0xec, 0x8c, 0x8e, 0x2b, 0x3c, + 0xca, 0x9a, 0x83, 0x8a, 0xee, 0x62, 0x36, 0xab, + 0x9e, 0x5b, 0xce, 0xf2, 0x24, 0x9e, 0xae, 0x55, + 0x2f, 0x65, 0x67, 0x70, 0x1d, 0x99, 0xcd, 0xa9, + 0x74, 0x71, 0xea, 0x33, 0x96, 0xeb, 0xe3, 0xaf, + 0x6f, 0xca, 0x97, 0x3e, 0x03, 0xdc, 0x89, 0x54, + 0x54, 0xc4, 0x47, 0xb3, 0x09, 0x98, 0xb6, 0x8f, + 0xe7, 0xeb, 0x35, 0xb0, 0x2c, 0xf0, 0x9b, 0x7b, + 0x19, 0x54, 0x9a, 0x7d, 0x18, 0x83, 0xe0, 0xc9, + 0x5c, 0x02, 0xd9, 0x98, 0x84, 0xba, 0xe9, 0xe1, + 0xc7, 0x95, 0x4a, 0xc7, 0x24, 0x6f, 0x22, 0xad, + 0xc0, 0xf1, 0x82, 0x8e, 0x9e, 0xc3, 0xfd, 0x80, + 0xe7, 0xc2, 0xe4, 0x5b, 0x15, 0x79, 0x7c, 0x7c, + 0x27, 0x01, 0x96, 0x61, 0xf0, 0xdd, 0x52, 0xf9, + 0x5c, 0x26, 0x0f, 0xc3, 0x00, 0x2d, 0x41, 0x0f, + 0x39, 0xbb, 0x15, 0x0b, 0x35, 0x23, 0x94, 0xa9, + 0xbc, 0x3b, 0x1a, 0xda, 0x20, 0xfe, 0xb4, 0x5a, + 0x46, 0xc3, 0xf4, 0xf0, 0x68, 0x2a, 0x8e, 0xf1, + 0x94, 0x3c, 0x30, 0x17, 0x9f, 0x8f, 0xe7, 0x92, + 0xb0, 0xdc, 0xb0, 0x24, 0xbd, 0x3f, 0x64, 0x2a, + 0x3a, 0x9b, 0x45, 0x13, 0x63, 0x49, 0x99, 0x2a, + 0x64, 0xf5, 0x91, 0x57, 0x9b, 0x8d, 0x6b, 0x11, + 0x7c, 0x81, 0xd0, 0xe5, 0xed, 0x3f, 0x5f, 0x15, + 0x5b, 0xbb, 0xcf, 0xd1, 0x66, 0x85, 0x29, 0x15, + 0x15, 0x11, 0x91, 0xf8, 0xae, 0x3b, 0xb9, 0x7b, + 0xe1, 0xf5, 0x56, 0x03, 0x9f, 0x2d, 0x08, 0x88, + 0x2b, 0x3c, 0x52, 0x51, 0xb1, 0x63, 0x90, 0xdd, + 0x29, 0x0f, 0x6e, 0x0c, 0x2a, 0x2a, 0xf3, 0xf8, + 0x7c, 0x21, 0x7d, 0xac, 0x11, 0x33, 0xaa, 0x08, + 0x34, 0x00, 0x9f, 0x14, 0x80, 0xa9, 0xf9, 0x32, + 0xc5, 0x74, 0x02, 0x98, 0x8e, 0x83, 0x52, 0xc3, + 0x45, 0x2e, 0x2e, 0x42, 0xb3, 0x7c, 0x30, 0x0c, + 0x83, 0x77, 0x7b, 0x1a, 0x72, 0x71, 0xa9, 0xef, + 0x3b, 0xdf, 0xc3, 0xc8, 0x02, 0x87, 0xc7, 0xd3, + 0x09, 0x18, 0x4e, 0xe5, 0xdc, 0x73, 0x88, 0x37, + 0x11, 0x02, 0xe0, 0xd9, 0x7a, 0x0d, 0x1f, 0xcf, + 0x25, 0x10, 0x91, 0x68, 0x10, 0xbe, 0x28, 0x65, + 0xdd, 0x45, 0xd5, 0x70, 0xaf, 0x95, 0x99, 0xfc, + 0x41, 0x2a, 0xc0, 0x30, 0x4c, 0x9b, 0x91, 0xca, + 0x58, 0x4a, 0x1e, 0x48, 0xa3, 0x98, 0xe3, 0x13, + 0x3c, 0x5b, 0xaf, 0xe1, 0xd3, 0xbb, 0x49, 0x4c, + 0xa4, 0x64, 0xd4, 0x74, 0xf7, 0x52, 0x67, 0xfc, + 0x09, 0x80, 0x5f, 0xb6, 0x1b, 0x88, 0xca, 0x3c, + 0x66, 0xb2, 0xef, 0x7b, 0x45, 0x58, 0x86, 0x01, + 0x8d, 0x33, 0x9d, 0xa1, 0x67, 0xc0, 0x94, 0x16, + 0x01, 0x21, 0x6d, 0x3b, 0x51, 0xcf, 0x27, 0xd8, + 0x1a, 0x60, 0xc6, 0x8c, 0xd6, 0x02, 0x05, 0x7c, + 0x3c, 0x97, 0xc0, 0x58, 0x52, 0x1a, 0xaa, 0xae, + 0x49, 0xdb, 0x0d, 0xf0, 0xc3, 0x72, 0x75, 0xe8, + 0x76, 0xff, 0x83, 0x60, 0x75, 0xff, 0x7a, 0x37, + 0xfc, 0xd4, 0x0c, 0x17, 0x75, 0xc3, 0x85, 0x1f, + 0x90, 0x81, 0x6a, 0x26, 0x6b, 0x96, 0x87, 0xa5, + 0x3d, 0x1d, 0xb9, 0xb8, 0x84, 0xdf, 0x3d, 0xcc, + 0xb6, 0x8d, 0x65, 0x5d, 0x94, 0xbb, 0x23, 0x11, + 0xfc, 0xfe, 0x61, 0xf6, 0x44, 0x63, 0x11, 0xc3, + 0xf6, 0xb1, 0x57, 0xb5, 0xb0, 0x96, 0xd7, 0x5b, + 0x13, 0x0e, 0xeb, 0x45, 0x63, 0xe0, 0xe3, 0x57, + 0x37, 0x19, 0xe6, 0xdf, 0x5e, 0xe4, 0xe9, 0x19, + 0x30, 0xe5, 0x44, 0x72, 0x71, 0x09, 0x1f, 0xce, + 0xc4, 0x2f, 0xed, 0xef, 0xd5, 0x4d, 0x0f, 0x0c, + 0x03, 0xc8, 0x02, 0x8b, 0xb2, 0xe6, 0xa2, 0x61, + 0xba, 0xd8, 0xaf, 0xd9, 0x17, 0xb2, 0x62, 0xbc, + 0x29, 0xd7, 0xf9, 0xe1, 0x64, 0xac, 0xe7, 0x6a, + 0x83, 0x6e, 0xfb, 0xd8, 0x29, 0x9b, 0x28, 0x36, + 0x1c, 0xf8, 0x01, 0x81, 0xe7, 0x13, 0x04, 0x84, + 0x60, 0x3a, 0xab, 0x60, 0x71, 0x48, 0xce, 0x98, + 0x4b, 0x0d, 0x07, 0xcf, 0xd6, 0x6b, 0xd7, 0xfe, + 0x75, 0x72, 0x2c, 0x03, 0x91, 0x67, 0xfb, 0x66, + 0x8b, 0xc8, 0x32, 0x00, 0xc7, 0xb2, 0xf0, 0x82, + 0x00, 0x47, 0x2b, 0xef, 0xbf, 0x7d, 0x90, 0x69, + 0x99, 0xb2, 0x2c, 0xed, 0x69, 0x17, 0xb6, 0x75, + 0xcc, 0xc6, 0x25, 0x7c, 0xe1, 0x2b, 0x5a, 0x67, + 0x00, 0x00, 0x20, 0x00, 0x49, 0x44, 0x41, 0x54, + 0xd4, 0x5c, 0x07, 0x08, 0x01, 0x76, 0x2a, 0x26, + 0x56, 0xf3, 0xc6, 0x89, 0x4a, 0x64, 0xc9, 0x88, + 0x80, 0x88, 0xc4, 0x63, 0xfb, 0x12, 0x12, 0xf8, + 0x9b, 0x0c, 0xad, 0x7d, 0x51, 0x4e, 0xcf, 0xd0, + 0x2e, 0xf9, 0xef, 0x1d, 0xd6, 0xae, 0x1e, 0x4d, + 0x48, 0x18, 0x4d, 0x48, 0xb8, 0x33, 0x12, 0xc1, + 0xd2, 0x9e, 0x7e, 0xab, 0x1f, 0xe6, 0x42, 0xdd, + 0x86, 0x66, 0x79, 0xb8, 0x7f, 0xc4, 0x56, 0xae, + 0xa2, 0xbb, 0xb0, 0x1c, 0xbf, 0xb5, 0xc0, 0xca, + 0x22, 0x8b, 0x74, 0x54, 0x44, 0x59, 0x73, 0xb0, + 0x5f, 0xb5, 0xb1, 0x57, 0xb3, 0xd0, 0xe9, 0xd8, + 0x73, 0xab, 0x64, 0x62, 0x3a, 0xa3, 0x9e, 0x4b, + 0x1b, 0xf8, 0x26, 0xe1, 0x07, 0x04, 0x6f, 0x77, + 0xb5, 0x1b, 0xf3, 0x5a, 0xfb, 0xe9, 0x49, 0x2c, + 0x0b, 0x1c, 0x3e, 0x5f, 0x4c, 0x01, 0x60, 0x42, + 0x0d, 0xe6, 0xdd, 0x06, 0x0e, 0x2a, 0xce, 0x9a, + 0xe9, 0x41, 0x6a, 0xba, 0x33, 0xdd, 0x19, 0x89, + 0x5c, 0x28, 0x89, 0x9d, 0xc9, 0xaa, 0x6d, 0x3b, + 0x69, 0x86, 0x01, 0xc6, 0x92, 0xf2, 0xa9, 0x41, + 0xbd, 0xaa, 0xbb, 0xa8, 0x52, 0x97, 0x35, 0x1a, + 0x80, 0x29, 0x17, 0xe3, 0x3a, 0x34, 0xb5, 0x70, + 0x2c, 0x83, 0xfb, 0x13, 0x51, 0xa8, 0x12, 0x87, + 0x77, 0x37, 0x64, 0xb1, 0x3d, 0x0f, 0xa6, 0xe3, + 0xe3, 0xe9, 0x5a, 0x0d, 0xd9, 0x98, 0x88, 0x84, + 0x2a, 0x60, 0xb7, 0x62, 0x75, 0x74, 0xb9, 0x91, + 0x78, 0x16, 0xf6, 0x19, 0x1a, 0xc8, 0x84, 0x00, + 0x3f, 0xac, 0x54, 0x30, 0x9e, 0x92, 0xc1, 0xb1, + 0x2c, 0x34, 0xd3, 0x85, 0xed, 0x05, 0x98, 0x1f, + 0x8d, 0xdc, 0x2a, 0x63, 0x88, 0xb7, 0xbb, 0x5a, + 0x5f, 0x83, 0xda, 0x4d, 0xc2, 0x70, 0x7c, 0xbc, + 0xdd, 0xd1, 0xf0, 0x60, 0x32, 0x86, 0xc9, 0xb4, + 0x0c, 0x80, 0xe0, 0xcd, 0x4e, 0xf8, 0x7c, 0xe4, + 0x1b, 0x76, 0xcb, 0x1e, 0x91, 0x63, 0x19, 0x8c, + 0x26, 0xe4, 0x9e, 0x55, 0xc1, 0x38, 0x96, 0xc1, + 0x9d, 0x91, 0x48, 0xdb, 0x79, 0xee, 0x41, 0x22, + 0xf1, 0x7c, 0xbd, 0x36, 0xb4, 0xd7, 0x9d, 0x06, + 0x60, 0xca, 0xa5, 0x71, 0x9d, 0xce, 0x27, 0xa6, + 0x33, 0x0a, 0x76, 0xca, 0xe6, 0x85, 0xf4, 0xab, + 0x6f, 0x02, 0xc5, 0x86, 0x83, 0xe2, 0x29, 0xe3, + 0x59, 0x76, 0x97, 0x06, 0x04, 0xb6, 0x1b, 0x60, + 0x2d, 0xdf, 0xbe, 0xe8, 0x3e, 0xdf, 0xa8, 0xe3, + 0xab, 0x7b, 0xe9, 0x36, 0x3d, 0xf0, 0x9b, 0xca, + 0x7a, 0xc1, 0xc0, 0x6e, 0x65, 0xb8, 0xcf, 0x17, + 0x77, 0x2a, 0x16, 0x64, 0x91, 0xc3, 0x5c, 0x4e, + 0xc5, 0x64, 0x3a, 0x0c, 0x94, 0xcb, 0xfb, 0x3a, + 0x8a, 0x35, 0x07, 0xfe, 0x18, 0x69, 0x7d, 0xce, + 0x6c, 0x8f, 0x85, 0x10, 0x86, 0x01, 0x16, 0xc6, + 0x22, 0xad, 0xdf, 0x79, 0x98, 0xe5, 0x7d, 0x9d, + 0x7a, 0x88, 0xf7, 0x2b, 0x00, 0xd3, 0xde, 0x34, + 0xca, 0x49, 0x24, 0x54, 0x01, 0x0b, 0x7d, 0x6c, + 0xe2, 0xe8, 0x07, 0x53, 0x19, 0x05, 0x6f, 0x77, + 0x34, 0xfa, 0xe1, 0x9c, 0x13, 0xcf, 0x0b, 0x60, + 0xb9, 0xc1, 0x8d, 0x97, 0xc3, 0xdc, 0xae, 0x58, + 0x58, 0xd9, 0xd7, 0xa9, 0xd4, 0x21, 0xc2, 0x06, + 0x34, 0x9e, 0x63, 0x30, 0x95, 0x56, 0x30, 0x99, + 0x56, 0x90, 0x8a, 0x88, 0x78, 0xb1, 0x51, 0xc3, + 0x56, 0xe9, 0xbd, 0x24, 0x66, 0x42, 0x11, 0xba, + 0xba, 0x56, 0x1c, 0xcb, 0x60, 0x36, 0xa7, 0x62, + 0x2c, 0x29, 0x9f, 0xa8, 0xd6, 0xc6, 0xb1, 0x0c, + 0xbd, 0xee, 0x7d, 0x82, 0x76, 0x41, 0x53, 0x3a, + 0x22, 0x0b, 0xa1, 0x62, 0x55, 0xe4, 0x9a, 0xcd, + 0xa9, 0x8e, 0xa7, 0x94, 0x56, 0x69, 0x8d, 0x72, + 0x3e, 0x6e, 0xb2, 0x57, 0x6b, 0x40, 0x08, 0xb6, + 0xcb, 0x26, 0xde, 0xed, 0x34, 0xe8, 0x07, 0x79, + 0x88, 0x77, 0x3b, 0x1a, 0xf6, 0xab, 0x61, 0x77, + 0xb5, 0x2a, 0x71, 0xf8, 0xf5, 0x7c, 0x0a, 0x7e, + 0x40, 0xb0, 0xb4, 0xa7, 0xc1, 0x0f, 0x42, 0xfd, + 0xec, 0xb3, 0x8e, 0x1e, 0x38, 0x96, 0xc1, 0x4c, + 0x4e, 0xc5, 0x6c, 0x4e, 0x3d, 0x55, 0x2a, 0x75, + 0x3a, 0xab, 0xf4, 0x5c, 0x41, 0x49, 0xa8, 0x02, + 0x9e, 0xcc, 0x25, 0xe8, 0x07, 0x75, 0x74, 0x07, + 0x4c, 0x2f, 0x01, 0xe5, 0x58, 0x56, 0xc6, 0x00, + 0x0f, 0xa6, 0x62, 0xd7, 0xb2, 0x4c, 0xc9, 0x32, + 0xc0, 0xe3, 0xe9, 0x38, 0xfe, 0xfc, 0x4b, 0x11, + 0x54, 0xcd, 0xf1, 0x7c, 0xdc, 0xd4, 0xdd, 0xef, + 0x5e, 0xd5, 0xc6, 0xd2, 0xae, 0x76, 0xcc, 0xe8, + 0x83, 0x12, 0xf2, 0x7a, 0xbb, 0x8e, 0x98, 0x92, + 0x86, 0x2a, 0x71, 0xe0, 0x58, 0x06, 0x77, 0x47, + 0x23, 0x30, 0x1d, 0x1f, 0xaf, 0xb7, 0x1b, 0x88, + 0x48, 0x3c, 0x6c, 0xb7, 0xf3, 0xd1, 0x8d, 0x28, + 0xb0, 0xf8, 0x78, 0xb6, 0xfb, 0x64, 0x5b, 0xe4, + 0x58, 0x4c, 0xa4, 0x65, 0x6c, 0x36, 0x9b, 0xb0, + 0xd2, 0x51, 0x11, 0xaa, 0xc4, 0x21, 0x20, 0x04, + 0x3e, 0x09, 0x7b, 0x14, 0x32, 0x31, 0x11, 0x3f, + 0x1d, 0xd2, 0x7a, 0xcf, 0xc5, 0x25, 0xa4, 0x22, + 0xe2, 0xd0, 0x99, 0xb0, 0x9c, 0x1d, 0x80, 0x69, + 0x2d, 0x81, 0x72, 0x84, 0x7b, 0x13, 0x31, 0xa4, + 0x22, 0xd7, 0xb7, 0x51, 0x47, 0xb3, 0x3c, 0x04, + 0x00, 0xe8, 0xbd, 0x7b, 0x9e, 0x04, 0x86, 0xb9, + 0x91, 0xe7, 0xbf, 0x7b, 0x55, 0x0b, 0xbf, 0x6c, + 0x37, 0x77, 0xbd, 0xf4, 0x73, 0xef, 0x5c, 0x1d, + 0x68, 0x3e, 0x1b, 0x87, 0xb5, 0xa0, 0x15, 0x91, + 0xc3, 0xc3, 0xa9, 0x38, 0x5e, 0x6d, 0xd5, 0x61, + 0x79, 0x41, 0xc7, 0x6b, 0x37, 0x91, 0x92, 0x7b, + 0xaa, 0x74, 0x55, 0xf5, 0x70, 0x34, 0x10, 0x4c, + 0xd8, 0x61, 0x9d, 0x4b, 0x48, 0x70, 0x5c, 0x1f, + 0x7e, 0xf0, 0xbe, 0x69, 0xb3, 0x58, 0xb7, 0xdb, + 0xfe, 0x56, 0x54, 0xe1, 0xe0, 0x05, 0x01, 0x58, + 0x8e, 0x01, 0xcd, 0x9c, 0xe9, 0x0e, 0xf8, 0xd6, + 0xef, 0x60, 0x3f, 0x9c, 0x49, 0x9c, 0xab, 0x43, + 0x54, 0x95, 0x38, 0x8c, 0xa7, 0xe4, 0x6b, 0xfd, + 0xfe, 0x12, 0xaa, 0x80, 0x27, 0xb3, 0x09, 0x6c, + 0x95, 0xcd, 0xa1, 0xd5, 0x92, 0x3e, 0x2f, 0x13, + 0x29, 0xf9, 0xca, 0x02, 0xb0, 0xe5, 0x05, 0x58, + 0xde, 0xd3, 0x30, 0x9b, 0x55, 0x7b, 0x92, 0xe0, + 0xdc, 0xab, 0x5a, 0x78, 0x4d, 0x4b, 0xce, 0x5d, + 0xf1, 0x76, 0x4f, 0x83, 0x2c, 0x72, 0x6d, 0xe3, + 0x7c, 0x2c, 0x03, 0xcc, 0x8f, 0x46, 0x50, 0x38, + 0x41, 0xff, 0x79, 0xa7, 0x62, 0x61, 0x26, 0xab, + 0x76, 0x7d, 0x5f, 0x6c, 0x94, 0xde, 0xcf, 0xff, + 0x6e, 0x97, 0x4d, 0xac, 0x76, 0xe1, 0x7a, 0x24, + 0x70, 0x2c, 0x74, 0xdb, 0x87, 0xd3, 0x1c, 0x85, + 0x4a, 0xaa, 0x02, 0x5c, 0x3f, 0x80, 0x17, 0x90, + 0xff, 0xbf, 0xbd, 0x33, 0x7d, 0x6e, 0xe3, 0x4a, + 0xb2, 0xfd, 0xb9, 0xb5, 0x17, 0x76, 0xee, 0x9b, + 0x76, 0x4b, 0xb6, 0xdc, 0xb6, 0xbb, 0xc7, 0x9e, + 0x37, 0xef, 0xdf, 0x9f, 0xf7, 0xbe, 0x4c, 0xc4, + 0x74, 0xcf, 0xb4, 0xa7, 0xbb, 0x6d, 0xb7, 0x17, + 0xca, 0xa2, 0x48, 0x71, 0xc7, 0x8e, 0x42, 0xad, + 0x77, 0x99, 0x0f, 0x05, 0x40, 0x84, 0xc4, 0x05, + 0x20, 0x41, 0xa0, 0x00, 0xe6, 0x2f, 0xc2, 0x11, + 0x96, 0x6c, 0x92, 0x60, 0x2d, 0x37, 0x6f, 0xe6, + 0xcd, 0x3c, 0x07, 0x05, 0xc7, 0x40, 0xb3, 0x9b, + 0x3c, 0x48, 0x83, 0x12, 0x0a, 0xc0, 0x8b, 0xb8, + 0x13, 0x56, 0xe9, 0x5c, 0xe9, 0x6d, 0xce, 0xfa, + 0x9e, 0xaf, 0xe5, 0xe7, 0xe2, 0x77, 0x5c, 0x2e, + 0x58, 0x83, 0x79, 0x59, 0x21, 0x15, 0x8e, 0x1b, + 0x21, 0xde, 0xd7, 0x03, 0x1a, 0x8d, 0xb8, 0x81, + 0xa5, 0xc2, 0xec, 0x2a, 0x1b, 0xbf, 0x1d, 0x79, + 0xa8, 0x76, 0x22, 0xac, 0x14, 0xac, 0x91, 0x03, + 0xf0, 0x69, 0x2b, 0xc2, 0xcf, 0x87, 0x1d, 0x50, + 0xce, 0x34, 0x1a, 0xba, 0xc6, 0xf0, 0xf3, 0x61, + 0x07, 0xff, 0xf6, 0xd9, 0xd2, 0x90, 0x26, 0xb3, + 0x6b, 0xe9, 0xa8, 0xe4, 0x4c, 0x34, 0x2f, 0xb1, + 0x6b, 0x8c, 0x79, 0xea, 0xd6, 0x34, 0x8a, 0x39, + 0x48, 0xc2, 0x25, 0x5a, 0xbd, 0xef, 0xb1, 0x5c, + 0xb0, 0xf0, 0xd9, 0x46, 0x1e, 0xef, 0xaa, 0x3e, + 0x1c, 0x53, 0x87, 0x6d, 0x68, 0x28, 0xe7, 0x4d, + 0x7c, 0xbf, 0xd7, 0x84, 0xf8, 0xa8, 0xcc, 0x5c, + 0xf5, 0x62, 0xd4, 0xda, 0x1f, 0x36, 0xcb, 0xa5, + 0x9c, 0x39, 0x34, 0x5b, 0x1c, 0x25, 0x12, 0xff, + 0x38, 0x68, 0x8d, 0x64, 0x8b, 0xba, 0x50, 0x01, + 0x98, 0xaa, 0x39, 0x8b, 0x49, 0x7f, 0x3c, 0x63, + 0xdc, 0xfb, 0x3b, 0x8f, 0x33, 0xa2, 0xba, 0xc6, + 0xf0, 0x68, 0xc5, 0xc5, 0xce, 0x8a, 0x8b, 0xb3, + 0x66, 0x88, 0xdf, 0x8e, 0xbd, 0xa9, 0x6a, 0xe0, + 0xce, 0x13, 0xa7, 0xcd, 0x08, 0xab, 0x45, 0x7b, + 0x26, 0x3f, 0x3b, 0x11, 0x12, 0x3a, 0x63, 0x58, + 0x19, 0xf1, 0xe7, 0xc7, 0xbd, 0x8c, 0xf9, 0x36, + 0xcf, 0xf1, 0x43, 0x65, 0x39, 0x9f, 0xce, 0x8f, + 0x1f, 0xd4, 0x7c, 0x3c, 0x59, 0x1d, 0xf6, 0x24, + 0xfe, 0xea, 0x71, 0x09, 0x3f, 0xec, 0xb7, 0x61, + 0x9b, 0x1a, 0xaa, 0x9d, 0x68, 0x48, 0xc0, 0xe5, + 0xb0, 0x1e, 0xe0, 0xd1, 0x8a, 0x0b, 0xc7, 0xbc, + 0xba, 0x3f, 0x40, 0x4a, 0x85, 0xbf, 0xef, 0xb7, + 0x20, 0x84, 0x02, 0x43, 0xea, 0xe8, 0x55, 0x70, + 0x0c, 0x7c, 0xd5, 0x73, 0x53, 0xfb, 0xf9, 0xb0, + 0x83, 0xb7, 0x67, 0x5d, 0x48, 0xa9, 0x3e, 0xb9, + 0x5f, 0x7b, 0x3d, 0xa9, 0xd0, 0xfe, 0xdf, 0x1f, + 0x54, 0x7d, 0x48, 0xa9, 0xf0, 0x64, 0x2d, 0x07, + 0xdb, 0xd0, 0x60, 0x9b, 0x1a, 0x3e, 0x5b, 0xcf, + 0x0f, 0x14, 0xcd, 0x18, 0x03, 0x4a, 0xae, 0x09, + 0x05, 0xa0, 0x13, 0x24, 0x50, 0x0b, 0xfa, 0x3a, + 0x53, 0x06, 0x4c, 0x0c, 0x71, 0xd4, 0x08, 0xf0, + 0x7c, 0x3d, 0x3f, 0x97, 0x9f, 0x9d, 0x01, 0xd8, + 0xa8, 0x38, 0x28, 0xe5, 0x4c, 0x9c, 0xb7, 0x23, + 0x70, 0xa1, 0x50, 0xef, 0xc6, 0xf0, 0xc8, 0x89, + 0x65, 0xc0, 0x79, 0x3b, 0x42, 0xdd, 0x8b, 0xef, + 0xcd, 0xe1, 0xea, 0x3a, 0x3e, 0xdf, 0x2a, 0xc0, + 0xd0, 0x19, 0xcc, 0x11, 0xe4, 0x36, 0xcf, 0xda, + 0x11, 0x7e, 0x3d, 0xea, 0x50, 0xc3, 0xce, 0x2d, + 0x37, 0xde, 0x07, 0x55, 0x1f, 0x5b, 0x4b, 0x0e, + 0x4c, 0xfd, 0x43, 0x37, 0xb3, 0x65, 0x68, 0xf8, + 0xee, 0x45, 0x05, 0x40, 0xaa, 0x94, 0xb6, 0x7b, + 0xf2, 0x61, 0x9c, 0x4f, 0xa9, 0xb4, 0xc9, 0xed, + 0xd9, 0x5a, 0xee, 0xca, 0xef, 0x1d, 0x71, 0x39, + 0xc8, 0x50, 0x19, 0x03, 0x8a, 0x1f, 0x55, 0x31, + 0xc2, 0x44, 0x8c, 0x55, 0x46, 0x3e, 0xac, 0x07, + 0xa8, 0x76, 0x22, 0xfc, 0xdb, 0xcb, 0x65, 0x18, + 0x1a, 0x43, 0xc1, 0x35, 0xa0, 0x6b, 0x0c, 0x9a, + 0xc6, 0xf0, 0xdd, 0xf3, 0xca, 0xc0, 0x43, 0x5c, + 0x48, 0x85, 0x93, 0x66, 0x88, 0x6e, 0x24, 0x10, + 0x44, 0x02, 0x8d, 0xee, 0xe2, 0x1c, 0x3b, 0x51, + 0x00, 0x26, 0x86, 0xa8, 0x7b, 0xf1, 0xdc, 0x06, + 0xe0, 0x3e, 0xae, 0xa5, 0x0f, 0x76, 0xff, 0x2f, + 0x90, 0x87, 0x90, 0x69, 0x77, 0xa6, 0x17, 0x24, + 0xf8, 0xf5, 0xd8, 0x43, 0xf8, 0xc0, 0xcb, 0xd4, + 0xff, 0x3c, 0xec, 0xcc, 0xc4, 0x85, 0x69, 0xd4, + 0xb2, 0x73, 0x94, 0x48, 0xfc, 0xfc, 0x3e, 0x3b, + 0xd6, 0x82, 0xf3, 0x48, 0x22, 0x14, 0x7e, 0x3a, + 0x68, 0xe3, 0x9b, 0xa7, 0x15, 0x5c, 0x76, 0xb4, + 0x1b, 0x5f, 0xd2, 0x49, 0xfe, 0xee, 0xac, 0x8b, + 0xa6, 0x9f, 0x60, 0x39, 0x6f, 0x0e, 0x82, 0x5f, + 0xbf, 0x73, 0x19, 0xc0, 0x50, 0xbf, 0x85, 0xae, + 0xb1, 0xc1, 0xb1, 0x40, 0xc4, 0x25, 0x6c, 0x43, + 0xc3, 0xab, 0xcd, 0x02, 0xfe, 0xf2, 0xa6, 0xf1, + 0xc9, 0xf7, 0x7d, 0xb1, 0x91, 0xbf, 0xd2, 0xfd, + 0x29, 0x4a, 0x24, 0x9a, 0x5e, 0x8c, 0xd5, 0x92, + 0x0d, 0x53, 0xd7, 0xf0, 0xf5, 0x93, 0x32, 0x2c, + 0x9d, 0x0d, 0x7e, 0x7e, 0xff, 0x67, 0x5d, 0x14, + 0x04, 0xe9, 0x46, 0x1c, 0xcd, 0x6e, 0x82, 0x4e, + 0xc0, 0x71, 0xd6, 0x8e, 0x20, 0xe7, 0xb8, 0xda, + 0xc5, 0xfe, 0xfd, 0x07, 0x32, 0x63, 0x20, 0x52, + 0x34, 0x06, 0xfc, 0xf1, 0x69, 0x05, 0x95, 0xbc, + 0xb9, 0xb0, 0xbf, 0x23, 0x17, 0x0a, 0x3f, 0xbd, + 0x6f, 0xa3, 0xee, 0x3d, 0xec, 0xe6, 0x2d, 0xd7, + 0x4a, 0x67, 0x45, 0xb3, 0xd8, 0x11, 0x7d, 0x50, + 0xf5, 0xf1, 0x26, 0xe3, 0xee, 0x46, 0xf3, 0x42, + 0xdf, 0xe4, 0x43, 0xbb, 0x70, 0x9f, 0x85, 0x54, + 0xf8, 0x8f, 0x5f, 0x6a, 0x23, 0x65, 0xab, 0xa6, + 0xce, 0xb0, 0x59, 0x71, 0x60, 0x99, 0x3a, 0xf6, + 0xcf, 0xfd, 0xa1, 0x11, 0xb0, 0xd5, 0xa2, 0x8d, + 0xaf, 0x9f, 0x94, 0xf0, 0x97, 0xdd, 0x3a, 0xbe, + 0x79, 0x5a, 0x86, 0x63, 0xea, 0xf8, 0xfe, 0x6d, + 0x73, 0x70, 0x46, 0x3c, 0xc8, 0xf2, 0x6e, 0x18, + 0x3d, 0x2a, 0xba, 0x06, 0xb6, 0x97, 0x5c, 0xd8, + 0xa6, 0x36, 0x76, 0x65, 0x46, 0x48, 0x85, 0xf7, + 0xb5, 0x00, 0xef, 0x7a, 0x25, 0xed, 0x2b, 0x33, + 0x4d, 0x9d, 0xe1, 0xd5, 0x66, 0x01, 0x5e, 0xc8, + 0x71, 0x50, 0xcb, 0x8e, 0xa6, 0x3c, 0x09, 0x71, + 0x10, 0x17, 0x5e, 0x04, 0x73, 0xa1, 0x83, 0x6f, + 0xff, 0x45, 0xfc, 0xe6, 0x69, 0x19, 0x2f, 0x37, + 0x0b, 0x28, 0xe7, 0xcc, 0x7b, 0xf5, 0x3a, 0xce, + 0x32, 0x41, 0x2c, 0x32, 0xa9, 0xab, 0x3d, 0x2d, + 0x0b, 0xcc, 0x87, 0xc2, 0x79, 0x3b, 0xc2, 0xf7, + 0x7b, 0x4d, 0x84, 0x17, 0x66, 0x80, 0xbb, 0x21, + 0x1f, 0xb9, 0x54, 0x9c, 0x08, 0x85, 0x83, 0x5a, + 0x80, 0x37, 0x27, 0x9f, 0xce, 0x5f, 0x7b, 0x61, + 0x02, 0xa1, 0x14, 0x6c, 0x53, 0xc7, 0xdb, 0x9e, + 0xe4, 0xe9, 0xd3, 0x4b, 0x4a, 0xd8, 0x37, 0x1d, + 0x23, 0x74, 0x02, 0x8e, 0x5f, 0x8e, 0x3a, 0xf8, + 0xfb, 0xbb, 0x16, 0xfe, 0xbc, 0x5b, 0xc7, 0xde, + 0xd9, 0xe8, 0x52, 0x97, 0x7d, 0xe5, 0xae, 0x7f, + 0x7d, 0x51, 0x19, 0x2a, 0xb7, 0x5f, 0xc4, 0x36, + 0x35, 0xfc, 0xf1, 0x69, 0x19, 0x1b, 0x15, 0x27, + 0x73, 0x1b, 0x4e, 0x2a, 0x41, 0x13, 0x03, 0x22, + 0xfe, 0x30, 0x04, 0x0e, 0x18, 0x52, 0x49, 0xcb, + 0x47, 0x2b, 0x2e, 0xb8, 0x50, 0xf8, 0xfe, 0x6d, + 0x63, 0xe1, 0xf5, 0xa5, 0x2f, 0xe3, 0xa4, 0x19, + 0xe2, 0xd1, 0x8a, 0x3b, 0xd6, 0x48, 0xd0, 0x7d, + 0x53, 0xf7, 0xe2, 0x85, 0xb7, 0x9e, 0x9c, 0x36, + 0x9d, 0x80, 0xe3, 0xbf, 0x7f, 0x6f, 0xe2, 0xdb, + 0x67, 0x15, 0xe4, 0x6c, 0x7d, 0x62, 0xef, 0xb9, + 0x90, 0x0a, 0xd5, 0x56, 0x84, 0x4e, 0xc0, 0xd3, + 0x91, 0x22, 0x21, 0xef, 0x1c, 0xe0, 0xfc, 0x48, + 0x60, 0xef, 0xdc, 0x07, 0xce, 0x7d, 0x2c, 0x17, + 0x2c, 0xfc, 0xe1, 0x51, 0x69, 0xa4, 0x4d, 0x72, + 0xde, 0x36, 0xf0, 0xcd, 0xd3, 0x32, 0x7e, 0x3f, + 0xf5, 0xd0, 0xec, 0x26, 0x70, 0x2d, 0x1d, 0x8f, + 0x57, 0x5c, 0xe4, 0x1d, 0x03, 0x79, 0xdb, 0x80, + 0xa1, 0x33, 0xfc, 0x76, 0xec, 0x0d, 0x1c, 0xd5, + 0x18, 0x4b, 0x47, 0xa3, 0x66, 0xad, 0x0a, 0xc7, + 0xfe, 0xdf, 0x8f, 0xe7, 0x54, 0x82, 0x26, 0x06, + 0xbb, 0xc9, 0xef, 0x5e, 0x54, 0x90, 0xb3, 0xf4, + 0x07, 0xf5, 0x7b, 0x1f, 0xd6, 0x03, 0xec, 0x9e, + 0x3c, 0xcc, 0x92, 0xe7, 0x66, 0xc5, 0xc1, 0x17, + 0xdb, 0xd9, 0xf1, 0x0d, 0xae, 0x75, 0x62, 0xfc, + 0x70, 0xd0, 0xa6, 0x97, 0xf1, 0x9e, 0xde, 0xef, + 0x72, 0xce, 0xc4, 0x1f, 0x1e, 0x15, 0xd1, 0x0d, + 0x39, 0x5a, 0x01, 0x47, 0x9c, 0x48, 0x54, 0x3b, + 0xf1, 0x50, 0x86, 0x9c, 0x25, 0x0a, 0x8e, 0x81, + 0x6f, 0x9f, 0x97, 0xa1, 0xb1, 0xd1, 0x03, 0xfb, + 0x41, 0x2d, 0xc0, 0x61, 0x3d, 0xc4, 0xcb, 0xcd, + 0x3c, 0x2a, 0x79, 0x13, 0x7e, 0xc8, 0xb1, 0x5f, + 0x1b, 0xd6, 0x0c, 0x60, 0x0c, 0xf8, 0xee, 0x79, + 0x05, 0x7b, 0x67, 0x3e, 0x6a, 0x33, 0x3c, 0x8e, + 0xa2, 0x0c, 0x98, 0x18, 0xda, 0xd1, 0xfe, 0x6d, + 0xaf, 0x85, 0xef, 0x9e, 0x57, 0xae, 0xd5, 0x82, + 0x5d, 0x34, 0x4a, 0xae, 0xf9, 0x60, 0xef, 0xf9, + 0x79, 0x3b, 0xc2, 0x8b, 0x8d, 0xdc, 0x95, 0xe5, + 0xbb, 0xa9, 0xdf, 0x8b, 0x9c, 0x09, 0xc6, 0x00, + 0xea, 0xbf, 0xba, 0x9f, 0xf7, 0xbb, 0xee, 0xc5, + 0x38, 0x69, 0x86, 0xd8, 0x5a, 0x4a, 0xa7, 0x05, + 0x00, 0xe0, 0xd9, 0x7a, 0x0e, 0xef, 0xeb, 0x01, + 0x74, 0xc6, 0xb0, 0x51, 0xb1, 0x11, 0x44, 0x02, + 0xbf, 0x9f, 0xf9, 0x9f, 0x9c, 0xe5, 0xce, 0x02, + 0x2f, 0xe4, 0xf0, 0x42, 0x31, 0x24, 0x2c, 0x32, + 0xca, 0xd7, 0x44, 0x89, 0xc0, 0x8f, 0xd7, 0x6c, + 0xe4, 0x94, 0x02, 0x7e, 0xd8, 0x6f, 0x0f, 0xa9, + 0x86, 0xcd, 0x02, 0x3a, 0x03, 0x26, 0x86, 0x88, + 0xb9, 0xc4, 0x3f, 0xf6, 0xdb, 0x73, 0xdd, 0x59, + 0x38, 0x2e, 0x45, 0xd7, 0x78, 0x50, 0x1b, 0x8e, + 0x8f, 0x17, 0xe5, 0xe3, 0x46, 0x94, 0x99, 0xcf, + 0x63, 0xea, 0x0c, 0x96, 0x4e, 0xcb, 0xd2, 0x7d, + 0xb2, 0x7b, 0xd2, 0xc5, 0x0f, 0xfb, 0x6d, 0x54, + 0xbd, 0x18, 0x8d, 0x6e, 0x02, 0x3f, 0x12, 0x78, + 0xdc, 0x3b, 0x92, 0x31, 0x75, 0x0d, 0xa5, 0x9c, + 0x89, 0x7f, 0x79, 0x56, 0xc6, 0xcb, 0xcd, 0xd9, + 0x7b, 0x47, 0xeb, 0x1a, 0xfb, 0x64, 0xdc, 0xe9, + 0x63, 0x3e, 0x3e, 0xb2, 0x18, 0xb5, 0x82, 0x17, + 0x71, 0x89, 0x46, 0x37, 0x41, 0x25, 0x6f, 0xe2, + 0x8f, 0x4f, 0xcb, 0x30, 0x74, 0x86, 0xb5, 0x92, + 0x0d, 0xd3, 0x98, 0xde, 0xf3, 0x47, 0x19, 0x30, + 0xf1, 0x09, 0xdd, 0x88, 0xe3, 0xcd, 0x59, 0x17, + 0xaf, 0x36, 0x0b, 0x0f, 0xe2, 0xf7, 0x8d, 0xb8, + 0x9c, 0x6b, 0x87, 0xa0, 0x49, 0x64, 0x19, 0x59, + 0xc2, 0xd0, 0x19, 0x22, 0x1a, 0xdd, 0xbe, 0x57, + 0x1a, 0xdd, 0x64, 0xa8, 0xd1, 0x89, 0xb1, 0xb4, + 0xdc, 0xbb, 0x52, 0xb0, 0x90, 0x77, 0x0c, 0x08, + 0xa5, 0x90, 0x77, 0x0c, 0xe4, 0x1c, 0x03, 0xbf, + 0x1d, 0xa5, 0x92, 0xb6, 0x8e, 0xa9, 0x63, 0xb9, + 0x60, 0x42, 0xd7, 0x19, 0x38, 0x57, 0x38, 0x6b, + 0x47, 0x10, 0x52, 0xe1, 0x0f, 0x8f, 0x8a, 0x68, + 0xf9, 0x09, 0x0e, 0xeb, 0x1f, 0xbc, 0x99, 0x57, + 0x8a, 0x16, 0x8a, 0x8e, 0x81, 0x95, 0xa2, 0x85, + 0xba, 0x17, 0x0f, 0x9a, 0xb4, 0x6e, 0xb3, 0x41, + 0xfc, 0xeb, 0xdb, 0x26, 0x2c, 0x43, 0xc3, 0x93, + 0x55, 0x77, 0x68, 0x43, 0x20, 0x95, 0xc2, 0x0f, + 0xfb, 0x6d, 0x34, 0xba, 0x09, 0x2c, 0x43, 0xc3, + 0xe7, 0xdb, 0x05, 0xac, 0x14, 0x2c, 0x3c, 0x59, + 0xcd, 0xa1, 0x15, 0x70, 0x34, 0x46, 0x2c, 0x2d, + 0xb7, 0x7d, 0x0e, 0xc6, 0x52, 0xcb, 0xc6, 0x84, + 0x4b, 0x98, 0x3a, 0x43, 0x32, 0xa5, 0xe7, 0x8f, + 0x02, 0x30, 0x71, 0x29, 0xa7, 0xcd, 0x08, 0xcf, + 0xd7, 0xf3, 0x30, 0xb4, 0xc5, 0xef, 0x12, 0x3e, + 0xae, 0x87, 0x0f, 0xba, 0xe4, 0xc9, 0x32, 0x76, + 0x8b, 0x5d, 0x4b, 0x7f, 0x90, 0x4d, 0x71, 0xb3, + 0x44, 0xa9, 0xb4, 0x59, 0xeb, 0x3a, 0x29, 0x48, + 0xc7, 0xd2, 0xa0, 0x14, 0x60, 0x68, 0x1a, 0x9a, + 0x51, 0x34, 0xe8, 0xa4, 0xae, 0x75, 0xe2, 0xa1, + 0xe6, 0x2b, 0xdb, 0xd4, 0xf0, 0xe5, 0x4e, 0xea, + 0xa6, 0x56, 0xf7, 0x62, 0x54, 0xdb, 0x77, 0x3b, + 0x63, 0xed, 0x6f, 0x10, 0xeb, 0x5e, 0x8c, 0x47, + 0xcb, 0x2e, 0x96, 0x0a, 0x26, 0xf2, 0xb6, 0x81, + 0xf7, 0xf5, 0x60, 0xb0, 0x89, 0x88, 0xb9, 0xc4, + 0x8f, 0x07, 0x6d, 0x7c, 0xf5, 0xb8, 0x84, 0x95, + 0x82, 0x85, 0x3f, 0x3e, 0x29, 0xe1, 0xb0, 0x9e, + 0x7a, 0x46, 0xdf, 0x34, 0x4f, 0x2e, 0x55, 0x7a, + 0xf4, 0xd6, 0x67, 0xbd, 0x9c, 0x8e, 0x6e, 0xfd, + 0x7e, 0x3a, 0x7a, 0x37, 0x36, 0x05, 0x60, 0x62, + 0xa2, 0x08, 0xa9, 0x50, 0xeb, 0xc4, 0xd8, 0x28, + 0xdb, 0x0b, 0xfd, 0x7b, 0x56, 0x3b, 0x31, 0xf6, + 0xab, 0xfe, 0x83, 0xbe, 0xd7, 0x59, 0x38, 0xeb, + 0xbb, 0xc8, 0xe3, 0x15, 0x17, 0x55, 0x32, 0xd9, + 0xc8, 0x1c, 0xcd, 0x6e, 0x82, 0x26, 0x3e, 0x3c, + 0x2b, 0xa6, 0xa1, 0xe1, 0xbb, 0x67, 0x15, 0xfc, + 0xf5, 0x6d, 0x73, 0x68, 0x44, 0xe9, 0xf3, 0xad, + 0x02, 0x62, 0x2e, 0xf1, 0xcb, 0x91, 0x37, 0xf1, + 0x67, 0xeb, 0x7d, 0x3d, 0xb8, 0x72, 0x4c, 0x4d, + 0x29, 0xe0, 0xa7, 0x83, 0x0e, 0x5e, 0x6c, 0xe4, + 0xb0, 0xbd, 0xe4, 0x62, 0x67, 0xd9, 0x41, 0xde, + 0xd6, 0xf1, 0xf7, 0xfd, 0xd6, 0x58, 0x1b, 0xec, + 0xb6, 0xcf, 0xf1, 0x86, 0x77, 0xd1, 0xec, 0xde, + 0xff, 0x7b, 0xc1, 0xfe, 0x3f, 0x75, 0x41, 0x13, + 0xd7, 0x64, 0x22, 0xdf, 0xbe, 0xa8, 0x2c, 0x6c, + 0x16, 0x7c, 0xda, 0x4a, 0xe5, 0x0e, 0xa9, 0xe1, + 0x27, 0xd5, 0x09, 0x5e, 0x29, 0x5a, 0x99, 0xf9, + 0x3c, 0xbb, 0x27, 0x1e, 0x8e, 0x2e, 0x94, 0x34, + 0x89, 0x6c, 0xa2, 0x31, 0xf6, 0x49, 0x86, 0x69, + 0xe8, 0x0c, 0x4a, 0xe1, 0x5e, 0xdd, 0x8d, 0x8a, + 0xae, 0x71, 0x6d, 0xb6, 0x6e, 0x19, 0x1a, 0xf2, + 0x8e, 0x0e, 0x30, 0x86, 0xa6, 0x17, 0x67, 0xf6, + 0x1d, 0xa7, 0x6e, 0x07, 0xe2, 0x4a, 0x82, 0x58, + 0xe0, 0x7d, 0x6d, 0x31, 0x45, 0x11, 0x3a, 0x01, + 0xa7, 0xe0, 0x7b, 0x81, 0xab, 0xac, 0xea, 0x66, + 0x45, 0x25, 0x67, 0xd2, 0x4d, 0x99, 0x03, 0x2e, + 0x2b, 0xef, 0x72, 0xa1, 0x6e, 0x0c, 0xbe, 0x4f, + 0x56, 0x73, 0x70, 0x2d, 0x1d, 0x8c, 0xa5, 0xa3, + 0x70, 0xe3, 0x34, 0x41, 0x16, 0x5d, 0x03, 0xdf, + 0x3e, 0xaf, 0x0c, 0xba, 0xb8, 0x2f, 0x23, 0xe6, + 0x12, 0x0d, 0x2f, 0x41, 0xa3, 0x13, 0x67, 0xfa, + 0x1d, 0xa7, 0x12, 0x34, 0x71, 0x2d, 0x87, 0xb5, + 0x00, 0x5b, 0x63, 0xbe, 0x20, 0xf3, 0xc0, 0xee, + 0x89, 0x47, 0xc1, 0xf7, 0x02, 0x59, 0x3b, 0x6a, + 0xd0, 0xc7, 0xe8, 0x84, 0x36, 0x74, 0x06, 0xdb, + 0xd0, 0xe8, 0xdc, 0x78, 0x8e, 0xa8, 0x7b, 0x31, + 0x8a, 0xae, 0x81, 0xcf, 0x36, 0xf3, 0x58, 0x2e, + 0x58, 0x50, 0x2a, 0x6d, 0xfe, 0xac, 0xb6, 0x63, + 0x94, 0x72, 0x06, 0x6a, 0x9d, 0x78, 0x60, 0x2c, + 0xf1, 0x31, 0x7d, 0xb9, 0xca, 0xf5, 0x92, 0x8d, + 0x76, 0xc6, 0x8e, 0x4f, 0xc6, 0x0f, 0xc0, 0xe4, + 0xf3, 0x45, 0x5c, 0x83, 0x50, 0x0a, 0x3f, 0x1f, + 0x75, 0xf0, 0xa7, 0xa7, 0xe5, 0x85, 0xf9, 0x9d, + 0xde, 0x9c, 0x76, 0xd1, 0x09, 0x39, 0x79, 0xdc, + 0xf5, 0x78, 0xbc, 0x9a, 0xc3, 0x52, 0xc1, 0xca, + 0xd4, 0x67, 0x6a, 0x07, 0xc9, 0xc8, 0xf7, 0xe7, + 0xab, 0xc7, 0x25, 0xb8, 0x96, 0x8e, 0x3f, 0xef, + 0x36, 0xc8, 0xc0, 0x61, 0x0e, 0x60, 0x0c, 0x78, + 0xb9, 0x5d, 0x40, 0xe9, 0xc2, 0x78, 0x51, 0xbf, + 0x0b, 0xbb, 0xaf, 0xca, 0x16, 0x0b, 0x85, 0xe3, + 0xe6, 0xe5, 0x01, 0xb8, 0x2f, 0x97, 0xbb, 0x56, + 0xb6, 0xb1, 0x7b, 0xea, 0xcd, 0xf5, 0xb5, 0xa0, + 0x12, 0x34, 0x71, 0x23, 0x9d, 0x80, 0x2f, 0x8c, + 0x2d, 0x5c, 0xb5, 0x1d, 0x0d, 0xe4, 0xe8, 0x08, + 0xc0, 0xb5, 0xf5, 0x6b, 0x2d, 0xe8, 0x66, 0xc5, + 0xa8, 0x4e, 0x4d, 0x8f, 0x57, 0xd2, 0xd1, 0x94, + 0xc1, 0x99, 0x1f, 0x91, 0x39, 0x1c, 0x53, 0x87, + 0x75, 0x61, 0xb6, 0xf6, 0xc9, 0x4a, 0x6e, 0x28, + 0xf8, 0x7e, 0xb2, 0xe9, 0x97, 0x0a, 0xfb, 0xe7, + 0x97, 0x37, 0x46, 0xda, 0xa6, 0x36, 0x28, 0x3d, + 0x1b, 0x1a, 0x9b, 0x7b, 0x2d, 0x77, 0x0a, 0xc0, + 0xc4, 0x8d, 0x48, 0xa5, 0xf0, 0xf6, 0x7c, 0x31, + 0xa4, 0x1a, 0x03, 0xd2, 0x19, 0x1e, 0x62, 0xa3, + 0x64, 0x67, 0xb2, 0x10, 0x50, 0x74, 0x8d, 0xa1, + 0x45, 0xfb, 0xaa, 0xff, 0xe7, 0xd9, 0xda, 0x07, + 0xeb, 0x4c, 0x93, 0x04, 0x3c, 0xb2, 0xb5, 0xb9, + 0xb3, 0x74, 0xbc, 0xde, 0x29, 0xe2, 0xff, 0xbe, + 0x5c, 0xc2, 0x77, 0xcf, 0x2b, 0x58, 0x2a, 0x58, + 0x60, 0x2c, 0x75, 0x68, 0xba, 0x8e, 0xbd, 0xaa, + 0x7f, 0xa5, 0x34, 0xa6, 0x6d, 0xe8, 0x83, 0xe7, + 0x95, 0x31, 0xe0, 0xeb, 0xc7, 0x65, 0x6c, 0x55, + 0x9c, 0xcc, 0x8d, 0xd2, 0x8d, 0x8a, 0x41, 0x55, + 0x38, 0x62, 0x14, 0x4e, 0x1a, 0x21, 0x6c, 0x43, + 0x1b, 0xf8, 0xec, 0xce, 0x2b, 0x61, 0x2c, 0xa8, + 0xf2, 0x7c, 0x81, 0x9b, 0x16, 0xc3, 0x99, 0x2d, + 0x4c, 0x1a, 0x03, 0xd4, 0xd5, 0x55, 0xe8, 0x72, + 0xce, 0xc4, 0x97, 0x8f, 0x4a, 0x43, 0x0b, 0xaf, + 0x02, 0x9d, 0x2a, 0x64, 0xa9, 0x82, 0xf1, 0xa7, + 0x67, 0xe5, 0xc1, 0x7c, 0xb0, 0x65, 0x68, 0xf8, + 0xe6, 0x71, 0x09, 0x4a, 0xdd, 0x3c, 0x77, 0x9e, + 0xb7, 0xf4, 0x2b, 0xef, 0xe3, 0xc7, 0x5e, 0xde, + 0x25, 0xd7, 0x40, 0xc9, 0x2d, 0x40, 0xd7, 0xd8, + 0x54, 0x2b, 0x5b, 0x05, 0xc7, 0x80, 0x6b, 0xeb, + 0x38, 0x6f, 0xdd, 0xad, 0x79, 0x91, 0x9a, 0xb0, + 0x88, 0x91, 0x79, 0x77, 0xee, 0xa3, 0x13, 0x70, + 0x3c, 0xdf, 0xc8, 0xcf, 0xad, 0x61, 0x83, 0xa6, + 0xd1, 0x12, 0x3d, 0x9c, 0x51, 0x64, 0x33, 0x6b, + 0xfc, 0xfd, 0xb4, 0xfb, 0x89, 0xfd, 0x5d, 0x7f, + 0xc3, 0xb0, 0x54, 0xb0, 0x2e, 0x6d, 0x1a, 0x8b, + 0x62, 0x6a, 0xc2, 0xca, 0x02, 0x96, 0xa1, 0xe1, + 0xcb, 0x47, 0xc5, 0x4b, 0x9d, 0x91, 0x46, 0xc9, + 0x54, 0x37, 0x2b, 0x0e, 0x96, 0xf2, 0x16, 0xf6, + 0xce, 0xbb, 0x38, 0xfb, 0x28, 0xc0, 0xd9, 0xd6, + 0xe5, 0xcf, 0xeb, 0xf6, 0xb2, 0x33, 0xd5, 0x00, + 0xec, 0x47, 0x62, 0x90, 0xcd, 0xdf, 0x76, 0x82, + 0xa0, 0xe8, 0x1a, 0x14, 0x80, 0x89, 0xf1, 0xa8, + 0x7b, 0x31, 0xea, 0x5e, 0x8c, 0x8d, 0x8a, 0x83, + 0x67, 0x6b, 0xb9, 0x1b, 0xcb, 0x84, 0x59, 0x23, + 0xa0, 0x45, 0x7a, 0x68, 0x33, 0x92, 0xb5, 0x0d, + 0x89, 0x90, 0x0a, 0xbf, 0x1d, 0x7b, 0x97, 0x2e, + 0x6a, 0x2f, 0x36, 0xf2, 0xd8, 0x59, 0x76, 0xaf, + 0xfc, 0xba, 0x90, 0xee, 0xed, 0xcc, 0x03, 0xef, + 0x46, 0xc5, 0xc1, 0xce, 0xb2, 0x73, 0xe7, 0xe3, + 0x00, 0xdb, 0xd4, 0xf0, 0xc5, 0x76, 0x11, 0x3b, + 0xcb, 0x2e, 0x76, 0x4f, 0xbb, 0xe8, 0xf4, 0xba, + 0x9d, 0x97, 0xf3, 0x97, 0x37, 0x0b, 0xea, 0x1a, + 0x03, 0xeb, 0x55, 0x41, 0xa6, 0x81, 0x54, 0x0a, + 0x41, 0x2c, 0xf0, 0xf9, 0x56, 0xf1, 0x56, 0x01, + 0x78, 0xb3, 0xe2, 0xe0, 0xd5, 0x56, 0x81, 0x02, + 0x30, 0x71, 0x3b, 0x4e, 0x9b, 0x21, 0xaa, 0xed, + 0x08, 0x2f, 0x37, 0x0b, 0x58, 0x9f, 0x23, 0xb5, + 0x2c, 0x9f, 0x44, 0x86, 0x3f, 0xec, 0xc0, 0x33, + 0xe4, 0x03, 0x1c, 0x26, 0x12, 0xcd, 0x6e, 0x8c, + 0xbd, 0x33, 0xff, 0xd2, 0xcc, 0x97, 0x31, 0x60, + 0x6b, 0xc9, 0xb9, 0xf2, 0xeb, 0xbb, 0x11, 0x07, + 0xf5, 0x3f, 0xcf, 0x96, 0x57, 0x5b, 0x85, 0xc1, + 0x88, 0xd0, 0xa4, 0x28, 0x38, 0x06, 0xfe, 0xe5, + 0x69, 0x19, 0xef, 0x6b, 0x01, 0x62, 0x21, 0xaf, + 0x3c, 0x02, 0x33, 0x75, 0x0d, 0x9b, 0x4b, 0xce, + 0x95, 0xa3, 0x4b, 0xf7, 0x01, 0x17, 0x0a, 0xff, + 0xd8, 0x6f, 0x8d, 0x99, 0xf5, 0x9a, 0x78, 0xbd, + 0x53, 0x80, 0x6d, 0xea, 0xa8, 0x7b, 0x31, 0x05, + 0x60, 0xe2, 0x6e, 0xd9, 0xca, 0x2f, 0x47, 0x1d, + 0x24, 0x42, 0x5e, 0x99, 0x99, 0x64, 0x89, 0x76, + 0xcf, 0xff, 0x94, 0xe8, 0x05, 0xad, 0x90, 0x43, + 0x48, 0x75, 0x67, 0x13, 0xf5, 0xbb, 0x52, 0x6d, + 0x47, 0xf8, 0xe5, 0xc8, 0xbb, 0x76, 0x84, 0x88, + 0x81, 0x5d, 0xeb, 0x09, 0xdb, 0x0e, 0x68, 0x63, + 0x35, 0x4b, 0x34, 0xc6, 0xee, 0xd5, 0x39, 0xe9, + 0xd1, 0xca, 0xcd, 0xeb, 0xcb, 0x5a, 0xc9, 0x9e, + 0x6a, 0x00, 0x06, 0x30, 0xb6, 0x89, 0x4b, 0x10, + 0x71, 0x30, 0x30, 0xf8, 0x11, 0xc7, 0x3f, 0x0f, + 0x3b, 0xd4, 0x05, 0x4d, 0xdc, 0x9d, 0xbd, 0x33, + 0x7f, 0x2e, 0xc6, 0x94, 0x7c, 0xca, 0x92, 0x86, + 0x77, 0xf0, 0x52, 0xcd, 0x7c, 0x24, 0xeb, 0xb4, + 0x19, 0xe2, 0xe7, 0xc3, 0xce, 0x48, 0x82, 0xf9, + 0xd1, 0x15, 0x9b, 0x27, 0x85, 0x54, 0x30, 0x86, + 0x98, 0x1d, 0x8f, 0x56, 0xdd, 0x99, 0x6f, 0xe4, + 0x8a, 0xae, 0x01, 0xc7, 0xd4, 0x33, 0xff, 0xce, + 0xfd, 0xed, 0x5d, 0x13, 0x7f, 0xdb, 0x6b, 0x41, + 0x4a, 0x05, 0x83, 0x31, 0x6a, 0x4a, 0x21, 0xee, + 0x86, 0x02, 0x50, 0xf3, 0xb2, 0x6d, 0xdc, 0x20, + 0xa4, 0xc2, 0x61, 0x3d, 0x04, 0x3d, 0xef, 0xc3, + 0xbc, 0xaf, 0x85, 0xd8, 0x5e, 0x72, 0x67, 0x32, + 0x4f, 0x59, 0xf3, 0x62, 0xec, 0x9e, 0x74, 0x01, + 0xc6, 0x46, 0xea, 0x5e, 0x3e, 0x6f, 0x47, 0x97, + 0x66, 0x42, 0x5e, 0xc0, 0x91, 0x08, 0x45, 0xf7, + 0x76, 0x06, 0xd8, 0xa6, 0x86, 0xc7, 0x2b, 0x2e, + 0x36, 0x2b, 0x4e, 0x26, 0xb2, 0xf0, 0x3f, 0x3d, + 0x2b, 0x63, 0xbf, 0x1a, 0xe0, 0xb4, 0x35, 0x59, + 0x87, 0xb3, 0x2f, 0x77, 0x8a, 0x68, 0x05, 0xc9, + 0x44, 0xf4, 0xc9, 0x63, 0x9e, 0x7e, 0x30, 0xc6, + 0x18, 0x95, 0xa0, 0x89, 0x09, 0x05, 0xe1, 0x8c, + 0x2b, 0x10, 0xbd, 0xab, 0xfa, 0xd4, 0x80, 0x75, + 0x45, 0x66, 0xb9, 0x7b, 0xda, 0xc5, 0xeb, 0xed, + 0xe9, 0x7a, 0x3f, 0x47, 0x89, 0xc4, 0x2f, 0x87, + 0xde, 0xc8, 0x15, 0x09, 0xc6, 0x80, 0xd5, 0x2b, + 0x46, 0xa6, 0x5a, 0x73, 0x2e, 0x47, 0x38, 0x4f, + 0xe4, 0x1d, 0x03, 0x45, 0x47, 0xc7, 0x5a, 0xc9, + 0x46, 0xde, 0x36, 0x32, 0x27, 0x84, 0x61, 0x19, + 0x1a, 0x5e, 0x6e, 0xe6, 0xf1, 0x68, 0xd9, 0xc1, + 0x3f, 0x0e, 0xda, 0x57, 0x56, 0x4d, 0xc6, 0xa5, + 0xd1, 0x4d, 0xf0, 0x7c, 0x3d, 0x87, 0x6a, 0x27, + 0x9e, 0xe8, 0x31, 0x16, 0x05, 0x60, 0x62, 0x22, + 0xe8, 0x19, 0x1e, 0xef, 0x09, 0x13, 0x31, 0xf5, + 0xb3, 0xa1, 0x79, 0xa2, 0xda, 0x8e, 0x50, 0x2d, + 0x5a, 0x58, 0x9d, 0xa2, 0x1b, 0x92, 0x69, 0x30, + 0x58, 0x06, 0x43, 0x98, 0x8c, 0x16, 0x82, 0x57, + 0x8b, 0x36, 0x9c, 0x2b, 0xf4, 0xc8, 0xa7, 0x61, + 0x1b, 0xf7, 0xd0, 0xc9, 0xd9, 0x3a, 0x5e, 0x6f, + 0x17, 0x91, 0xb3, 0xe7, 0x63, 0xfc, 0xd0, 0xb1, + 0x74, 0x7c, 0xb6, 0x91, 0xc7, 0x4f, 0xef, 0x3b, + 0x13, 0xf9, 0x7e, 0x27, 0xcd, 0x10, 0x2d, 0x3f, + 0x99, 0xf8, 0x9c, 0x39, 0x9d, 0x01, 0x13, 0x13, + 0x81, 0x65, 0x58, 0x02, 0x61, 0xbf, 0x1a, 0x90, + 0xf1, 0xc2, 0x0d, 0xec, 0x9d, 0x4f, 0xd7, 0x13, + 0x59, 0x63, 0x0c, 0x8f, 0x57, 0x46, 0x17, 0x75, + 0xb9, 0xea, 0x78, 0x23, 0x11, 0x32, 0xd5, 0xf5, + 0x26, 0xee, 0x2d, 0xa3, 0x7c, 0xbd, 0x53, 0xc4, + 0xb7, 0xcf, 0x2a, 0x73, 0x13, 0x7c, 0xfb, 0x2c, + 0x17, 0x26, 0xbb, 0xa9, 0x0c, 0x62, 0x31, 0xb1, + 0x8c, 0x9a, 0x02, 0x30, 0x31, 0x51, 0x8a, 0xb9, + 0xec, 0x15, 0x53, 0x84, 0x54, 0xd8, 0x3b, 0xf7, + 0x3f, 0x19, 0xe6, 0x27, 0x2e, 0xa9, 0x12, 0xc4, + 0x62, 0xea, 0x96, 0x84, 0xe3, 0x2c, 0xe8, 0x57, + 0xe9, 0x3c, 0xb7, 0x7c, 0x7e, 0xaf, 0xbe, 0xb3, + 0x0f, 0x9d, 0xd7, 0x3b, 0x45, 0xac, 0x16, 0xad, + 0xb9, 0x95, 0x7a, 0x7c, 0xbd, 0x53, 0xc4, 0x93, + 0xd5, 0xec, 0x4e, 0x68, 0x50, 0x09, 0x9a, 0xb8, + 0xfb, 0x42, 0x6a, 0xe9, 0x99, 0x50, 0x54, 0x52, + 0x2a, 0x2d, 0x15, 0xd5, 0xbc, 0x18, 0x09, 0x4f, + 0x07, 0xe5, 0xc9, 0x1d, 0x67, 0x74, 0xfc, 0x29, + 0xdb, 0xf9, 0x8d, 0xd3, 0x37, 0x70, 0x55, 0x85, + 0x25, 0x6b, 0x3e, 0xc6, 0x0b, 0xf5, 0x5e, 0xdb, + 0x3a, 0x4a, 0xee, 0xfc, 0x87, 0x88, 0xc7, 0x2b, + 0x39, 0xd4, 0x3a, 0x71, 0x26, 0xed, 0x2a, 0x49, + 0x0b, 0x9a, 0xb8, 0x33, 0x7d, 0x7b, 0xb0, 0x59, + 0x66, 0xba, 0xfb, 0xe7, 0x3e, 0x6a, 0x5e, 0xfc, + 0x49, 0x89, 0x88, 0x9e, 0xef, 0xf1, 0xae, 0xe3, + 0x34, 0xe9, 0x46, 0xa3, 0xeb, 0x72, 0x07, 0x89, + 0x40, 0x51, 0x1f, 0x0e, 0x06, 0x51, 0x22, 0x51, + 0xef, 0xc4, 0x74, 0x8f, 0xef, 0x89, 0xd5, 0x8c, + 0x59, 0x54, 0xde, 0x16, 0xc6, 0x80, 0xaf, 0x9f, + 0x94, 0xf0, 0xc3, 0x41, 0x07, 0x7e, 0xc6, 0x8e, + 0x2b, 0xa8, 0x04, 0x4d, 0xdc, 0x99, 0x59, 0x36, + 0x60, 0x79, 0x21, 0xc7, 0xf7, 0x6f, 0x9b, 0x38, + 0x6a, 0x84, 0x13, 0x3f, 0x9f, 0x79, 0x68, 0x44, + 0x7c, 0x7a, 0xd7, 0xef, 0xac, 0x15, 0x61, 0xbf, + 0x3a, 0xfa, 0xb9, 0xf3, 0xf1, 0x47, 0xe3, 0x1f, + 0x0a, 0xc0, 0x41, 0xd5, 0xa7, 0x9b, 0x76, 0x8f, + 0x2c, 0x92, 0x73, 0x98, 0xa9, 0xa7, 0x66, 0x10, + 0x59, 0xcb, 0xe8, 0xa9, 0x04, 0x4d, 0xdc, 0x7d, + 0x17, 0x37, 0xa3, 0x03, 0x22, 0x21, 0x15, 0xfe, + 0xf9, 0xbe, 0x33, 0xb6, 0x1a, 0x0d, 0x71, 0xc5, + 0x82, 0x3b, 0x85, 0x12, 0x5d, 0xad, 0x13, 0xe3, + 0xed, 0x59, 0x77, 0xec, 0xcd, 0xd2, 0x79, 0x3b, + 0x82, 0x52, 0x6a, 0x20, 0x7b, 0x7a, 0x50, 0x0b, + 0xd0, 0x21, 0xf5, 0xab, 0x7b, 0xa5, 0xe1, 0xc5, + 0x99, 0x50, 0x4a, 0x9b, 0x58, 0xb0, 0xd3, 0x19, + 0x5e, 0x6e, 0x15, 0xf0, 0xd7, 0xdf, 0x9b, 0x19, + 0x0a, 0xc0, 0x54, 0xbf, 0x21, 0xee, 0x88, 0x9c, + 0x91, 0xbe, 0x54, 0xad, 0x13, 0x23, 0x16, 0x92, + 0xea, 0xcc, 0x13, 0xcb, 0x78, 0x04, 0xfc, 0x58, + 0xdc, 0xab, 0xd3, 0xd5, 0x41, 0x2d, 0x48, 0x33, + 0xed, 0x5b, 0xdc, 0xb3, 0xaa, 0x17, 0xa3, 0xea, + 0xc5, 0x1f, 0xfe, 0x82, 0xee, 0xfb, 0xbd, 0x52, + 0x70, 0x8d, 0x85, 0x09, 0xbe, 0x43, 0xc9, 0x42, + 0x86, 0x7e, 0x25, 0x2a, 0x41, 0x13, 0x77, 0x66, + 0x56, 0x0d, 0x58, 0xb1, 0xa0, 0xcc, 0x77, 0xd2, + 0xdc, 0x77, 0x53, 0x13, 0x35, 0xc5, 0xcd, 0x0f, + 0xed, 0x20, 0x59, 0xb8, 0xea, 0x52, 0xd6, 0xba, + 0xb9, 0x29, 0x00, 0x13, 0x77, 0xde, 0x51, 0xae, + 0xcf, 0xc8, 0xd4, 0x5d, 0xd2, 0xf8, 0xc9, 0xc4, + 0x39, 0x6d, 0x46, 0xf7, 0xb6, 0xe8, 0xc6, 0x5c, + 0x92, 0x1a, 0xd9, 0x1c, 0xa1, 0x54, 0x6a, 0x3f, + 0xba, 0x48, 0x58, 0x86, 0x76, 0xaf, 0xa6, 0x11, + 0xe3, 0x42, 0x5d, 0xd0, 0xc4, 0x1d, 0x03, 0xf0, + 0x6c, 0x4c, 0xee, 0x95, 0x02, 0xce, 0x5b, 0x11, + 0x55, 0x21, 0x27, 0x0c, 0x17, 0x12, 0xbf, 0x1d, + 0x7b, 0xf8, 0xc3, 0xe3, 0xd2, 0x44, 0xaf, 0xad, + 0x42, 0x2a, 0xf6, 0x41, 0xf7, 0x6b, 0xbe, 0x38, + 0x69, 0x84, 0xd8, 0xa8, 0x38, 0x0b, 0x75, 0xdf, + 0x72, 0xb6, 0x8e, 0x76, 0x46, 0xe4, 0x4b, 0x29, + 0x03, 0x26, 0xee, 0x04, 0x9b, 0xd1, 0x19, 0xd1, + 0x7e, 0xd5, 0x9f, 0x6a, 0xd7, 0xee, 0x43, 0xa2, + 0xe5, 0x27, 0x38, 0x6d, 0x4d, 0x56, 0xba, 0xf3, + 0xb0, 0x16, 0xa0, 0x4a, 0x33, 0xbb, 0x73, 0x87, + 0x1f, 0x8b, 0x85, 0x73, 0x9a, 0xca, 0x92, 0x73, + 0x1b, 0x05, 0x60, 0xe2, 0x4e, 0x94, 0x67, 0xd0, + 0xd6, 0x7f, 0xd6, 0x8e, 0x66, 0x6e, 0xa3, 0xb7, + 0xe8, 0xec, 0x57, 0x83, 0x89, 0x2d, 0x54, 0x7e, + 0x24, 0x70, 0x50, 0xa3, 0x91, 0xa1, 0x79, 0x65, + 0x91, 0xba, 0xcd, 0x85, 0x54, 0x68, 0x64, 0xa8, + 0xac, 0x4e, 0x01, 0x98, 0xb8, 0x13, 0xd3, 0xb6, + 0x21, 0x6b, 0x07, 0x09, 0xde, 0x9c, 0x78, 0x74, + 0xe1, 0xef, 0x3b, 0x4b, 0xe0, 0x72, 0x22, 0x59, + 0xb0, 0x90, 0x0a, 0xbf, 0x1e, 0x77, 0x48, 0x8b, + 0x7b, 0x8e, 0x09, 0x12, 0x81, 0x45, 0x69, 0xb7, + 0x68, 0xf9, 0x49, 0xa6, 0xa4, 0x4b, 0x29, 0x00, + 0x13, 0x77, 0x22, 0x9c, 0xe2, 0xb0, 0xfe, 0x79, + 0x3b, 0xc2, 0x8f, 0x07, 0x6d, 0x5a, 0xcc, 0xa7, + 0xc4, 0x51, 0x3d, 0xbc, 0x53, 0xd3, 0x94, 0x54, + 0x0a, 0xbf, 0x1e, 0x79, 0x53, 0x97, 0xb8, 0x24, + 0x26, 0xfc, 0x8e, 0xc7, 0x02, 0xa7, 0xcd, 0xc9, + 0x1e, 0x49, 0x24, 0x42, 0xce, 0xe4, 0xb9, 0xc8, + 0x9a, 0x74, 0x29, 0x09, 0x71, 0x10, 0x77, 0xcb, + 0x70, 0xa6, 0x34, 0x0a, 0xe4, 0x47, 0x02, 0xbb, + 0xc7, 0x1e, 0x28, 0xf6, 0x4e, 0x8f, 0x44, 0x48, + 0x1c, 0xd5, 0x03, 0x7c, 0xb6, 0x59, 0xb8, 0xd5, + 0xd7, 0xfe, 0x72, 0xe4, 0x65, 0xa6, 0xd9, 0x85, + 0xb8, 0x7b, 0xe6, 0xb8, 0xb5, 0x34, 0x5e, 0xb5, + 0x4b, 0x2a, 0x85, 0x4e, 0xc0, 0xc1, 0x85, 0x02, + 0x97, 0x0a, 0x9d, 0x20, 0x41, 0xcb, 0x4f, 0x90, + 0x70, 0x35, 0x18, 0x47, 0x73, 0x2d, 0x1d, 0x4b, + 0x05, 0x0b, 0xdb, 0x4b, 0x0e, 0xac, 0x7b, 0x1e, + 0x67, 0xf4, 0x23, 0x91, 0xb9, 0xae, 0x6e, 0x83, + 0x31, 0xea, 0x4b, 0x24, 0x6e, 0xcf, 0x71, 0x33, + 0xc2, 0xf6, 0xf2, 0xfd, 0xbb, 0x8d, 0xec, 0x9d, + 0xfb, 0x00, 0x63, 0xd4, 0x45, 0x3b, 0x65, 0x0a, + 0xce, 0xf8, 0x23, 0x1b, 0x8d, 0x6e, 0x82, 0xdf, + 0x4f, 0xbb, 0x88, 0xb9, 0x04, 0xad, 0x2f, 0x8b, + 0xc1, 0xd2, 0x18, 0xba, 0xd0, 0x5c, 0x28, 0x1c, + 0x35, 0x42, 0x9c, 0xb6, 0xc2, 0x2b, 0xfb, 0x08, + 0xfa, 0xcf, 0x45, 0x98, 0x48, 0x1c, 0x37, 0x42, + 0x9c, 0xb5, 0x22, 0x7c, 0xb6, 0x99, 0xc7, 0xca, + 0x85, 0x9f, 0xa3, 0x30, 0x39, 0xcd, 0x0c, 0xa9, + 0x14, 0x76, 0x4f, 0xbb, 0x00, 0x58, 0xa6, 0x66, + 0x81, 0x29, 0x03, 0x26, 0xee, 0x44, 0x7e, 0x0a, + 0x1e, 0xa1, 0xef, 0xaa, 0x01, 0x5a, 0x94, 0x49, + 0xcd, 0x84, 0x73, 0x2f, 0xc6, 0x4a, 0xc9, 0x82, + 0xf1, 0x51, 0xb7, 0x7b, 0x7f, 0x56, 0xd8, 0x34, + 0x34, 0x28, 0xa5, 0xd0, 0xec, 0x26, 0xf0, 0x42, + 0x81, 0x4e, 0x90, 0xa0, 0x4d, 0x12, 0x91, 0x0b, + 0x85, 0xa1, 0x5f, 0x3d, 0xeb, 0xaf, 0x14, 0x10, + 0xf5, 0xce, 0x88, 0x73, 0xb6, 0x0e, 0x3f, 0x16, + 0xf8, 0xf1, 0xa0, 0x3d, 0x76, 0x03, 0x9f, 0x90, + 0xe9, 0x71, 0xc5, 0xcb, 0xcd, 0x02, 0xd6, 0x4a, + 0x16, 0xb8, 0x50, 0xd8, 0x3d, 0xf1, 0xf0, 0x7a, + 0xa7, 0x38, 0x91, 0xdf, 0x61, 0xbf, 0x1a, 0xa0, + 0x9b, 0x41, 0xdf, 0x68, 0x0a, 0xc0, 0xc4, 0x9d, + 0x58, 0x2b, 0xdf, 0xaf, 0x08, 0xc7, 0xfb, 0x5a, + 0x80, 0x23, 0xea, 0x78, 0x9e, 0x19, 0x1d, 0x3f, + 0xc1, 0x6f, 0xc7, 0x1e, 0x9e, 0xaf, 0xe5, 0xe0, + 0x45, 0x02, 0x8d, 0x6e, 0x8c, 0x30, 0x96, 0xf0, + 0x7a, 0x8b, 0x99, 0xc6, 0x18, 0x14, 0x14, 0x9d, + 0xcb, 0x2f, 0x30, 0xfd, 0x8c, 0x76, 0x6b, 0xc9, + 0x1e, 0xe8, 0xbe, 0x73, 0x91, 0x7a, 0x6d, 0xd7, + 0x3a, 0xf1, 0x44, 0xd5, 0xcd, 0xde, 0x9c, 0x76, + 0xd1, 0xf2, 0x63, 0x34, 0xba, 0x09, 0x94, 0x4a, + 0x33, 0x64, 0xc7, 0xbc, 0x5b, 0x69, 0x5a, 0x29, + 0xa0, 0xd9, 0xcd, 0xe6, 0x06, 0x9e, 0xfd, 0xc7, + 0x2f, 0x35, 0x7a, 0x75, 0x88, 0x5b, 0xa1, 0x6b, + 0x0c, 0xff, 0xe7, 0xb3, 0xca, 0x44, 0xcd, 0x18, + 0x7e, 0x7a, 0xdf, 0x19, 0xfc, 0x7b, 0x94, 0x48, + 0x84, 0x09, 0x35, 0xf0, 0x10, 0x44, 0x16, 0xc8, + 0xd9, 0x3a, 0xf2, 0xb6, 0x8e, 0x98, 0x2b, 0x78, + 0x21, 0x9f, 0x4a, 0x37, 0xb1, 0xa1, 0x33, 0x7c, + 0xbe, 0x55, 0xb8, 0xb5, 0x7a, 0x95, 0x42, 0xea, + 0xa4, 0xf5, 0x6e, 0x06, 0xce, 0x59, 0x4f, 0x56, + 0x5d, 0x18, 0xba, 0x86, 0x77, 0xe7, 0xfe, 0x95, + 0xd7, 0x8a, 0xba, 0xa0, 0x89, 0x5b, 0xb3, 0x5e, + 0xb6, 0x27, 0xee, 0x84, 0xa4, 0x90, 0x36, 0x7c, + 0xb4, 0xfc, 0x84, 0x82, 0x2f, 0x41, 0x64, 0x08, + 0x3f, 0x12, 0x38, 0x6f, 0xc7, 0x53, 0x1d, 0xe5, + 0xe1, 0x42, 0xe1, 0x9f, 0x87, 0x9d, 0x5b, 0x1f, + 0x6b, 0x08, 0xa1, 0x66, 0x12, 0x7c, 0x81, 0x74, + 0x8a, 0xa0, 0xe0, 0xe8, 0xf8, 0xfa, 0x71, 0x09, + 0xf6, 0x15, 0x59, 0x3c, 0x05, 0x60, 0xe2, 0x56, + 0xb8, 0x96, 0x8e, 0x27, 0x2b, 0x93, 0x6f, 0xbe, + 0x5a, 0x2f, 0x59, 0x74, 0x71, 0x09, 0x82, 0xf8, + 0xb0, 0x29, 0x57, 0xc0, 0xc9, 0x2d, 0xc7, 0xa0, + 0x92, 0x19, 0x1a, 0xb6, 0x70, 0xa9, 0xf0, 0x63, + 0xaf, 0xa2, 0xf7, 0xc5, 0xd6, 0xe5, 0x93, 0x04, + 0xa4, 0x05, 0x4d, 0xdc, 0x8a, 0x57, 0x5b, 0x85, + 0x7b, 0xd1, 0x80, 0x6e, 0x76, 0x13, 0xea, 0x74, + 0x26, 0x08, 0x62, 0x88, 0x56, 0x37, 0x41, 0x22, + 0x14, 0x4c, 0x7d, 0xb4, 0xd5, 0x81, 0x4b, 0x05, + 0x29, 0x15, 0x0e, 0xaa, 0xc1, 0x4c, 0xd7, 0x13, + 0x29, 0x14, 0xf6, 0xab, 0x3e, 0x5e, 0xef, 0x14, + 0x91, 0xb7, 0xf5, 0x4f, 0x66, 0x9f, 0xa9, 0x09, + 0x8b, 0xb8, 0x15, 0xc6, 0x3d, 0x04, 0xdf, 0xb7, + 0x67, 0x69, 0x53, 0x07, 0x41, 0x10, 0xc4, 0x45, + 0x84, 0x54, 0xf8, 0xf1, 0xa0, 0x8d, 0x17, 0xeb, + 0x39, 0xe4, 0x9d, 0x0f, 0x3e, 0xc5, 0x0a, 0x80, + 0x1f, 0x71, 0xe4, 0x2c, 0x03, 0x8c, 0xa5, 0xff, + 0xdf, 0xee, 0x71, 0x17, 0x8d, 0x6e, 0x76, 0xd6, + 0x91, 0xbe, 0x5a, 0xe0, 0xeb, 0x9d, 0x22, 0x9a, + 0xdd, 0x04, 0x79, 0xc7, 0xc0, 0xde, 0x69, 0x17, + 0x9d, 0x90, 0x53, 0x00, 0x26, 0x6e, 0x87, 0x1f, + 0x8b, 0x2b, 0xcf, 0x35, 0x46, 0x21, 0xe6, 0x12, + 0x89, 0x48, 0x77, 0xa9, 0x47, 0xcd, 0x10, 0x49, + 0xf2, 0xa1, 0xb3, 0x96, 0x20, 0x08, 0xe2, 0x63, + 0xc2, 0x58, 0x0c, 0x9a, 0x34, 0x73, 0xb6, 0x0e, + 0xc7, 0xd4, 0xe1, 0x85, 0x1c, 0x31, 0x97, 0x28, + 0x38, 0x06, 0x56, 0x8a, 0x16, 0xce, 0x5a, 0x51, + 0xa6, 0x2c, 0x2f, 0xcb, 0x39, 0x13, 0x95, 0x7c, + 0xda, 0x40, 0x66, 0x19, 0x1a, 0xd6, 0xcb, 0x36, + 0xce, 0xdb, 0x11, 0xba, 0xbd, 0x4c, 0xd8, 0xa0, + 0x7a, 0x1f, 0x71, 0x1b, 0xee, 0x72, 0xb6, 0x72, + 0xd4, 0x08, 0xb1, 0x7f, 0x59, 0x63, 0x04, 0x3d, + 0x8b, 0x04, 0x41, 0x8c, 0x98, 0x00, 0xf8, 0xfd, + 0x40, 0xcb, 0x00, 0x2f, 0xe2, 0xf0, 0x22, 0x9e, + 0xb9, 0x75, 0x44, 0x28, 0x05, 0x21, 0xd5, 0x20, + 0x63, 0x3f, 0x69, 0x86, 0xa9, 0xa8, 0x50, 0xef, + 0x73, 0x52, 0x13, 0x16, 0x31, 0x36, 0xb6, 0xa9, + 0x61, 0xb5, 0x78, 0xfb, 0x66, 0x29, 0x2e, 0x69, + 0xf2, 0x8d, 0x20, 0x88, 0xc5, 0xc7, 0x0b, 0x39, + 0x7e, 0x3d, 0x4e, 0xcd, 0x63, 0x84, 0x54, 0x38, + 0xfe, 0xa8, 0x99, 0x8c, 0x4a, 0xd0, 0xc4, 0xd8, + 0x3c, 0x59, 0xc9, 0x8d, 0x35, 0x7e, 0x14, 0x25, + 0x12, 0xfb, 0x55, 0x1f, 0xab, 0x25, 0x0b, 0x41, + 0x2c, 0x49, 0x58, 0x83, 0x20, 0x88, 0x89, 0xb1, + 0x56, 0xb6, 0x51, 0x72, 0x4d, 0x44, 0x89, 0x80, + 0xa1, 0x31, 0x2c, 0x17, 0x2d, 0xfc, 0xf4, 0xbe, + 0x83, 0x70, 0x46, 0xa5, 0x68, 0xcb, 0xd0, 0xf0, + 0xc5, 0x76, 0x11, 0x52, 0x29, 0x9c, 0x36, 0x23, + 0x34, 0xfd, 0x18, 0xdd, 0x88, 0xe3, 0xb4, 0x19, + 0x21, 0xfa, 0xc8, 0xbc, 0x86, 0xba, 0xa0, 0x89, + 0xb1, 0xc9, 0x3b, 0x06, 0x4e, 0x9a, 0x21, 0x96, + 0x0b, 0xd6, 0x48, 0x02, 0xea, 0x86, 0xce, 0xc0, + 0x7b, 0x52, 0x73, 0x00, 0x55, 0x9a, 0x09, 0x82, + 0x98, 0x1c, 0x61, 0x24, 0xf0, 0xd9, 0x7a, 0x7e, + 0xf0, 0x67, 0x29, 0x15, 0x38, 0x97, 0x33, 0x5b, + 0x67, 0x5e, 0x6e, 0xe4, 0x07, 0x12, 0xbd, 0xbe, + 0x2b, 0x50, 0xeb, 0x44, 0xf8, 0x61, 0xbf, 0x7d, + 0xe9, 0xda, 0x47, 0x25, 0x68, 0x62, 0x2c, 0x18, + 0x03, 0x2c, 0x3d, 0x35, 0x45, 0x18, 0x35, 0x0b, + 0xd6, 0x35, 0x86, 0x17, 0xeb, 0xb9, 0x89, 0x8b, + 0x76, 0x10, 0x04, 0x41, 0x78, 0x21, 0x1f, 0xea, + 0x29, 0x39, 0xa8, 0x05, 0x33, 0xf3, 0xfc, 0x5d, + 0x2e, 0x58, 0x28, 0xf5, 0x54, 0xbb, 0xfc, 0x48, + 0x60, 0xff, 0xfc, 0x7a, 0x11, 0x10, 0x2a, 0x41, + 0x13, 0x63, 0xa1, 0x14, 0xf0, 0xd3, 0x61, 0x07, + 0xeb, 0x25, 0x1b, 0xc6, 0x88, 0x33, 0x79, 0xed, + 0x80, 0xe3, 0xd7, 0xa3, 0xce, 0x44, 0x35, 0x63, + 0x09, 0x82, 0x20, 0xfa, 0x1c, 0x37, 0x42, 0xb4, + 0x02, 0x0e, 0xc7, 0xd0, 0x66, 0x62, 0x39, 0xa8, + 0x6b, 0x0c, 0x2f, 0x36, 0xf2, 0x58, 0xca, 0xa7, + 0xbd, 0x31, 0x9d, 0x70, 0xb4, 0x35, 0x8f, 0x02, + 0x30, 0x31, 0x36, 0x51, 0x2c, 0xe0, 0x5a, 0xa3, + 0xbb, 0x20, 0x1d, 0x54, 0xfd, 0x99, 0xed, 0x48, + 0x09, 0x82, 0x78, 0x18, 0xf8, 0x21, 0xc7, 0x2c, + 0x44, 0x27, 0x2b, 0x79, 0x13, 0xcf, 0xd7, 0xf3, + 0x83, 0xe3, 0xb8, 0xba, 0x17, 0xe3, 0xcd, 0x49, + 0x77, 0xa4, 0x84, 0x83, 0x02, 0x30, 0x31, 0x36, + 0x4f, 0xd7, 0x72, 0x28, 0xba, 0x37, 0x3f, 0x3a, + 0x41, 0x2c, 0xd0, 0xf0, 0x62, 0x9a, 0xef, 0x25, + 0x08, 0x62, 0xe1, 0xd0, 0x35, 0x86, 0x57, 0x1f, + 0x19, 0x45, 0xb4, 0x7b, 0xee, 0x61, 0xa3, 0x42, + 0x01, 0x98, 0x18, 0xfb, 0xa1, 0xcb, 0x3b, 0xd7, + 0x3f, 0x36, 0x51, 0x22, 0xb1, 0x77, 0xd6, 0x45, + 0x93, 0x3c, 0x7c, 0x09, 0x82, 0x58, 0x50, 0xd6, + 0xca, 0xf6, 0x50, 0xf0, 0x95, 0x2a, 0xd5, 0x38, + 0x18, 0x07, 0x83, 0x51, 0x63, 0x0c, 0x31, 0x06, + 0x95, 0xbc, 0x79, 0x63, 0xf9, 0x39, 0x11, 0x12, + 0xdd, 0x58, 0x80, 0x9e, 0x2d, 0x82, 0x20, 0x16, + 0x95, 0xba, 0x97, 0xc0, 0x32, 0x42, 0x14, 0x1d, + 0x03, 0xa2, 0xa7, 0x3b, 0xed, 0x8f, 0xb9, 0xee, + 0xb1, 0xff, 0xfc, 0xad, 0x4e, 0x87, 0x73, 0xc4, + 0xc8, 0xd8, 0x86, 0x86, 0xcf, 0xb7, 0x0b, 0x37, + 0x07, 0x61, 0x2e, 0x71, 0x58, 0x0f, 0x71, 0xd6, + 0x8e, 0xe8, 0xa2, 0x11, 0x04, 0x41, 0x5c, 0x02, + 0x8d, 0x21, 0x11, 0x63, 0xc1, 0x18, 0xa0, 0xeb, + 0x37, 0x3f, 0x36, 0xa6, 0xa1, 0x61, 0x63, 0xc9, + 0xa1, 0x0b, 0x46, 0x10, 0x04, 0x71, 0x05, 0x74, + 0x06, 0x4c, 0x8c, 0x45, 0x25, 0x6f, 0x8d, 0xb4, + 0x6b, 0x6b, 0x07, 0xfc, 0x83, 0xe6, 0x29, 0x41, + 0x2c, 0x08, 0x79, 0x5b, 0x87, 0x54, 0xc8, 0x94, + 0xe0, 0x3f, 0x41, 0x19, 0x30, 0xf1, 0x00, 0xd8, + 0x28, 0xdb, 0x88, 0xb8, 0xbc, 0x71, 0xfe, 0xd7, + 0x0b, 0x39, 0x7e, 0x3e, 0x9c, 0x9d, 0x14, 0x1c, + 0x41, 0xdc, 0x17, 0xaf, 0xb6, 0x0a, 0xf8, 0xfa, + 0x71, 0x69, 0x20, 0xae, 0x4f, 0x10, 0x94, 0x01, + 0x13, 0x53, 0xa1, 0x1b, 0x09, 0x38, 0x96, 0x76, + 0x63, 0xf0, 0xdd, 0x3d, 0xe9, 0xd2, 0xc5, 0x22, + 0x16, 0x92, 0x1f, 0x0f, 0x3a, 0xd0, 0x35, 0x46, + 0x73, 0xed, 0xc4, 0x64, 0x02, 0x30, 0xed, 0xe3, + 0x88, 0x91, 0x03, 0x70, 0xc8, 0x61, 0x68, 0x26, + 0xb8, 0x50, 0x97, 0x66, 0xc1, 0x7d, 0x33, 0xec, + 0x44, 0x8c, 0xa6, 0xc3, 0xca, 0x18, 0xe0, 0x98, + 0x3a, 0x95, 0xf3, 0x88, 0xb9, 0x81, 0x0b, 0x09, + 0x2e, 0x48, 0xcf, 0x9c, 0x98, 0x0c, 0x54, 0x82, + 0x26, 0xc6, 0xa2, 0xe5, 0x27, 0xd8, 0x3d, 0xb9, + 0x7c, 0xd0, 0xdc, 0x8f, 0xc5, 0x58, 0x3e, 0xc1, + 0x1b, 0x65, 0x07, 0x5f, 0x3d, 0x29, 0xe1, 0xdb, + 0x17, 0x15, 0x6c, 0x2f, 0x53, 0xc3, 0x16, 0x41, + 0x10, 0x0f, 0x2c, 0x03, 0xa6, 0x4b, 0x40, 0x8c, + 0x4b, 0x27, 0xe0, 0xf0, 0x23, 0x81, 0x9c, 0x3d, + 0x3c, 0x8a, 0x54, 0x74, 0x0c, 0x98, 0xba, 0x36, + 0x72, 0x10, 0x3e, 0xef, 0x44, 0x88, 0x12, 0x01, + 0x21, 0x15, 0x3a, 0xa4, 0x96, 0x45, 0x10, 0xc4, + 0x03, 0x83, 0xfd, 0x79, 0x97, 0xe6, 0x80, 0x89, + 0xf1, 0x29, 0x38, 0x06, 0xbe, 0xd8, 0x2a, 0x40, + 0xfb, 0xa8, 0x19, 0xa5, 0x1b, 0x72, 0xfc, 0x7a, + 0xe2, 0x81, 0x0b, 0x7a, 0xac, 0x08, 0x82, 0x20, + 0xae, 0x83, 0x4a, 0xd0, 0xc4, 0xad, 0xf0, 0x42, + 0x8e, 0xc6, 0x25, 0x52, 0x93, 0x79, 0xc7, 0xc0, + 0xe7, 0x5b, 0x85, 0x4f, 0xb2, 0x63, 0x82, 0x20, + 0x08, 0x82, 0x32, 0x60, 0x62, 0x42, 0x18, 0x3a, + 0x43, 0xc1, 0x31, 0x90, 0xb7, 0x0d, 0x6c, 0x7f, + 0x24, 0xba, 0xa1, 0x00, 0x1c, 0xd5, 0x83, 0xb1, + 0xb5, 0x51, 0xa7, 0x45, 0x5f, 0xc3, 0xb5, 0x45, + 0x7a, 0xd5, 0x04, 0x41, 0xcc, 0x2a, 0x00, 0xff, + 0x85, 0x02, 0x30, 0x31, 0xa1, 0x60, 0xbc, 0x51, + 0x76, 0x10, 0x26, 0x02, 0x39, 0x3b, 0xd5, 0x46, + 0xad, 0x75, 0x22, 0x44, 0x89, 0xa4, 0x8b, 0x43, + 0x10, 0x04, 0x71, 0xd9, 0xba, 0x49, 0x97, 0x80, + 0x98, 0x04, 0x5c, 0x28, 0x1c, 0xd6, 0x03, 0x00, + 0x40, 0xad, 0x13, 0xd3, 0x05, 0x21, 0x08, 0x82, + 0xb8, 0x01, 0x3a, 0x03, 0x26, 0x08, 0x82, 0x20, + 0x08, 0x0a, 0xc0, 0x04, 0x41, 0x10, 0x04, 0x41, + 0x01, 0x98, 0x20, 0x08, 0x82, 0x20, 0x88, 0x7b, + 0xc2, 0x20, 0xd3, 0x74, 0x82, 0x20, 0x08, 0x82, + 0xa0, 0x0c, 0x98, 0x20, 0x08, 0x82, 0x20, 0x28, + 0x00, 0x13, 0x04, 0x41, 0x10, 0x04, 0x41, 0x01, + 0x98, 0x20, 0x08, 0x82, 0x20, 0x28, 0x00, 0x13, + 0x04, 0x41, 0x10, 0x04, 0x41, 0x01, 0x98, 0x20, + 0x08, 0x82, 0x20, 0xe6, 0x0a, 0x52, 0xc2, 0x22, + 0x66, 0xb7, 0xfb, 0xd3, 0x18, 0xf2, 0xb6, 0x0e, + 0x43, 0x63, 0xc8, 0x3b, 0x06, 0x82, 0x58, 0x90, + 0x8a, 0x16, 0x41, 0xdc, 0x66, 0x21, 0xd7, 0x19, + 0x36, 0xca, 0x36, 0x82, 0x58, 0xa2, 0xd1, 0x8d, + 0xb1, 0x5c, 0xb0, 0xb0, 0x54, 0xb0, 0xa0, 0x33, + 0xe0, 0xb0, 0x1e, 0xc2, 0x23, 0xbb, 0x4f, 0x0a, + 0xc0, 0x04, 0x61, 0xea, 0x1a, 0x2c, 0x83, 0x61, + 0xa5, 0x68, 0x61, 0xa5, 0x60, 0x0d, 0xec, 0x0c, + 0xc3, 0x58, 0x90, 0x31, 0x02, 0x41, 0xdc, 0x82, + 0xb5, 0x92, 0x8d, 0xed, 0x25, 0x07, 0x86, 0x9e, + 0xbe, 0x4b, 0x4f, 0xa5, 0x3b, 0x64, 0x13, 0xfa, + 0xc5, 0x76, 0x01, 0xd5, 0x4e, 0x8c, 0xc3, 0x7a, + 0x40, 0x36, 0xa1, 0x14, 0x80, 0x89, 0x87, 0xc8, + 0x52, 0xde, 0xc4, 0x5a, 0xc9, 0x46, 0xd1, 0xfd, + 0xf4, 0x91, 0x3b, 0x6e, 0x84, 0x99, 0x75, 0x4d, + 0x22, 0x88, 0x69, 0xa2, 0x6b, 0x0c, 0x1a, 0x03, + 0x12, 0xa1, 0xc0, 0x58, 0xfa, 0xe7, 0xeb, 0x82, + 0xe6, 0xf6, 0xb2, 0x8b, 0xad, 0x8a, 0x3d, 0xf4, + 0x77, 0x1f, 0x7b, 0x74, 0x03, 0xc0, 0x6a, 0xd1, + 0x42, 0xde, 0xd1, 0x71, 0xd2, 0x88, 0xd0, 0xf2, + 0x13, 0x08, 0x39, 0x7e, 0x20, 0x76, 0x4c, 0x0d, + 0x86, 0xae, 0x21, 0x4a, 0x24, 0x12, 0x21, 0x91, + 0xb7, 0x75, 0x48, 0x05, 0x04, 0xb1, 0xb8, 0x7c, + 0xb3, 0x6d, 0x68, 0xb0, 0x74, 0x06, 0x5d, 0x63, + 0x08, 0x12, 0x09, 0x9d, 0x01, 0x8e, 0xa5, 0xa3, + 0xe8, 0x18, 0x88, 0xb9, 0x84, 0x1f, 0x09, 0x08, + 0xa5, 0x06, 0xbf, 0x77, 0x37, 0x14, 0x90, 0xea, + 0x61, 0x6d, 0x10, 0x28, 0x00, 0x13, 0xf7, 0x46, + 0x29, 0x67, 0x62, 0xad, 0x68, 0xc1, 0xd0, 0x19, + 0xf2, 0xb6, 0x81, 0xcb, 0x34, 0x5f, 0xce, 0x5a, + 0x11, 0x05, 0x5f, 0x62, 0x72, 0x0b, 0x9a, 0xce, + 0xb0, 0x94, 0x37, 0xa1, 0x69, 0x1a, 0x8c, 0x4f, + 0x02, 0x91, 0x42, 0xcc, 0x15, 0xda, 0x7e, 0x82, + 0x88, 0xcf, 0xd6, 0xa5, 0x4b, 0x63, 0x0c, 0x96, + 0xa1, 0x21, 0xe6, 0x12, 0x52, 0x29, 0x58, 0x86, + 0x86, 0xad, 0x8a, 0x83, 0x95, 0xa2, 0x05, 0xc6, + 0xd2, 0xa0, 0x66, 0xea, 0x5a, 0x1a, 0x98, 0x22, + 0x0e, 0xa1, 0xd2, 0x2a, 0xd1, 0x71, 0x23, 0x84, + 0x90, 0x0a, 0x79, 0x5b, 0x87, 0xae, 0x31, 0xac, + 0x97, 0xac, 0x91, 0x7f, 0xa6, 0x6b, 0xea, 0x78, + 0xbe, 0x9e, 0x83, 0x90, 0x0a, 0x9d, 0x80, 0x23, + 0xe2, 0x12, 0xed, 0x80, 0xc3, 0x0b, 0xf8, 0x20, + 0xf0, 0xb9, 0x96, 0x8e, 0xb5, 0x92, 0x05, 0xdb, + 0xd4, 0xc1, 0x85, 0x84, 0x90, 0x0a, 0xae, 0xa5, + 0x43, 0x63, 0x6c, 0xe0, 0xf1, 0xad, 0x14, 0x10, + 0x71, 0x09, 0xc7, 0xd4, 0xd0, 0x0a, 0x38, 0x76, + 0x8f, 0x3d, 0xb8, 0x96, 0x8e, 0xf5, 0x8a, 0x8d, + 0x83, 0x6a, 0x00, 0x28, 0xe0, 0xd9, 0x7a, 0x0e, + 0x95, 0x9c, 0x89, 0x71, 0x74, 0x9e, 0x82, 0x58, + 0xa0, 0x15, 0x70, 0x40, 0x21, 0xdd, 0x7c, 0x30, + 0x06, 0xc6, 0x80, 0x98, 0x4b, 0x44, 0x5c, 0x22, + 0xe1, 0x12, 0x5c, 0x2a, 0xf8, 0x91, 0x58, 0x98, + 0xe7, 0x95, 0xfd, 0xd7, 0x9b, 0x06, 0xd5, 0x24, + 0x88, 0x89, 0xee, 0xe0, 0xd7, 0xcb, 0xe9, 0x8e, + 0x7c, 0xb3, 0x62, 0x43, 0xbb, 0xe6, 0x0d, 0x0c, + 0x13, 0x81, 0x9f, 0xde, 0x77, 0xa0, 0xe8, 0x09, + 0x24, 0xee, 0x80, 0x02, 0xc0, 0x7a, 0x55, 0x96, + 0xc7, 0xab, 0x39, 0x98, 0xfa, 0xf5, 0xab, 0xbe, + 0x52, 0xc0, 0x79, 0x3b, 0xdd, 0xf8, 0xdd, 0x26, + 0x13, 0x1c, 0x6b, 0x81, 0x65, 0x69, 0x50, 0xab, + 0xe4, 0x4c, 0xe4, 0x1d, 0x03, 0x86, 0xc6, 0x60, + 0x1a, 0x0c, 0xa6, 0xae, 0x0d, 0x3e, 0x4b, 0x98, + 0x08, 0x38, 0xa6, 0x3e, 0x52, 0xb0, 0xe2, 0x42, + 0xc1, 0x8f, 0x05, 0x4a, 0xee, 0xe4, 0x72, 0x27, + 0xa9, 0x54, 0x1a, 0x84, 0x01, 0x94, 0x5c, 0xe3, + 0xda, 0x77, 0xf6, 0x22, 0x7e, 0x2c, 0xf0, 0xeb, + 0x91, 0x07, 0x21, 0x15, 0x76, 0x96, 0x5d, 0x6c, + 0x56, 0x6c, 0xc4, 0xfc, 0x43, 0xd0, 0xbe, 0x2f, + 0xbc, 0x90, 0x23, 0x11, 0x0a, 0x42, 0x2a, 0xb4, + 0xfc, 0x04, 0x09, 0x97, 0x50, 0x00, 0x84, 0x54, + 0x88, 0xb9, 0x9c, 0xab, 0xf5, 0x84, 0x02, 0x30, + 0x31, 0x51, 0x5e, 0x6d, 0x15, 0x46, 0x5e, 0x1c, + 0xce, 0x5a, 0x11, 0x0e, 0x6a, 0x01, 0x5d, 0x34, + 0x62, 0xa4, 0x40, 0x66, 0x68, 0x1a, 0x74, 0x3d, + 0x2d, 0xd1, 0x1a, 0x1a, 0x83, 0xde, 0xab, 0xac, + 0xac, 0x16, 0xad, 0xc1, 0xe6, 0x6f, 0x1c, 0x84, + 0x52, 0x08, 0x22, 0x81, 0x20, 0x16, 0xf0, 0x22, + 0x01, 0x21, 0x14, 0x94, 0x52, 0x50, 0x0a, 0x83, + 0xd2, 0xa8, 0x52, 0x69, 0x80, 0x52, 0x0a, 0x48, + 0xc4, 0xf8, 0x8b, 0xfb, 0x5a, 0xc9, 0xc2, 0x93, + 0xd5, 0xdc, 0xe2, 0x6e, 0x7e, 0x14, 0x10, 0xf1, + 0x74, 0x03, 0x91, 0x95, 0xcf, 0x13, 0x26, 0x02, + 0x31, 0x97, 0x28, 0x38, 0x06, 0x6a, 0x9d, 0x18, + 0x47, 0x8d, 0x10, 0x52, 0x2a, 0x98, 0x86, 0x76, + 0xab, 0x7b, 0x78, 0xaf, 0x15, 0x1b, 0x7a, 0xb5, + 0x89, 0x49, 0x92, 0xb7, 0x47, 0x7f, 0x11, 0xd7, + 0xca, 0x36, 0xda, 0x01, 0xa7, 0xe6, 0xab, 0x07, + 0x86, 0x6d, 0x68, 0x10, 0x52, 0x81, 0x8f, 0x90, + 0x7d, 0x96, 0x5c, 0x03, 0x6b, 0x25, 0x1b, 0x95, + 0xbc, 0x39, 0xf9, 0x6a, 0x0d, 0x63, 0x28, 0x38, + 0x06, 0x0a, 0x8e, 0x81, 0xb5, 0x51, 0x02, 0xb6, + 0x54, 0xe0, 0x42, 0x41, 0x2a, 0x85, 0xa4, 0x77, + 0x2e, 0xdb, 0x8d, 0x38, 0x8e, 0xea, 0x57, 0x1f, + 0xa1, 0x44, 0x7c, 0xb1, 0xf3, 0x1b, 0xc6, 0x90, + 0x99, 0xe0, 0x7b, 0xb1, 0xe2, 0xd0, 0xcf, 0xc0, + 0xd7, 0xcb, 0x36, 0x56, 0x8a, 0x16, 0x84, 0x4c, + 0xcb, 0xfc, 0x52, 0x29, 0x34, 0xbb, 0x09, 0x5a, + 0x3e, 0x47, 0x94, 0x08, 0x44, 0xbd, 0x8c, 0x59, + 0x4a, 0x85, 0x59, 0xdc, 0x29, 0x0a, 0xc0, 0xc4, + 0xd8, 0xb8, 0x96, 0x8e, 0x8d, 0xb2, 0x3d, 0xd4, + 0xec, 0xe1, 0x85, 0x1c, 0x1a, 0x63, 0x63, 0x65, + 0x21, 0x89, 0x90, 0x23, 0x2d, 0xc2, 0xc4, 0x74, + 0x17, 0x30, 0xdb, 0xd0, 0xd1, 0x3f, 0x2f, 0xbd, + 0x6b, 0x53, 0x0c, 0x63, 0x40, 0xd1, 0x35, 0x51, + 0x76, 0x0d, 0x70, 0xa1, 0x50, 0x70, 0x0d, 0x94, + 0x5c, 0x03, 0x0a, 0xbd, 0xe6, 0x1d, 0x05, 0x70, + 0xa9, 0x06, 0xa5, 0x60, 0x86, 0x0f, 0x4d, 0x44, + 0x86, 0xce, 0x90, 0xb3, 0xb2, 0xb3, 0xb8, 0xeb, + 0xda, 0x87, 0xe7, 0xdb, 0xbd, 0xb0, 0x41, 0xc8, + 0xdb, 0x06, 0x84, 0x54, 0x90, 0x52, 0x21, 0xe2, + 0x12, 0x67, 0xad, 0x68, 0xb0, 0xe0, 0x6f, 0x94, + 0x6d, 0x7a, 0xa8, 0x32, 0x74, 0xdf, 0x34, 0xc6, + 0xb0, 0x5c, 0xb0, 0xb0, 0x5c, 0x48, 0xab, 0x26, + 0xbc, 0xd7, 0xec, 0xd6, 0x3f, 0x96, 0x38, 0xed, + 0xdd, 0xbb, 0xa9, 0xbd, 0x6f, 0x54, 0x82, 0x26, + 0xc6, 0x79, 0x90, 0x77, 0x96, 0x1d, 0xac, 0x16, + 0x6d, 0xdc, 0xd5, 0x44, 0x4b, 0x29, 0xe0, 0xc7, + 0xf7, 0x6d, 0x44, 0x89, 0xa4, 0x0b, 0x7b, 0x4b, + 0x34, 0x8d, 0xc1, 0xd2, 0x35, 0x68, 0x5a, 0x7a, + 0x3d, 0xfb, 0x67, 0x60, 0x17, 0x31, 0x7b, 0xff, + 0xbd, 0xdf, 0x49, 0x6b, 0x68, 0x0c, 0x8c, 0x31, + 0x68, 0x5a, 0x1a, 0xec, 0xfa, 0x0b, 0x93, 0x6d, + 0xea, 0x58, 0x2e, 0x98, 0xc8, 0xd9, 0xfa, 0xe0, + 0x0c, 0x50, 0x2a, 0x85, 0x6e, 0x28, 0xd0, 0x0e, + 0x38, 0xfc, 0x88, 0x0f, 0x36, 0x4b, 0x42, 0x2a, + 0xc8, 0xde, 0xcf, 0x93, 0x17, 0x16, 0x2b, 0xad, + 0xd7, 0xc1, 0xab, 0x6b, 0x0c, 0xae, 0xa5, 0x63, + 0xb5, 0x68, 0xa1, 0xe0, 0x18, 0x63, 0x97, 0x86, + 0xe7, 0x9d, 0x7e, 0xb9, 0xda, 0x32, 0x48, 0xe7, + 0x68, 0xde, 0x90, 0x4a, 0x41, 0xca, 0x74, 0x53, + 0x18, 0x26, 0x02, 0x1a, 0x63, 0xe8, 0x04, 0x1c, + 0x75, 0x2f, 0xfe, 0xe4, 0xdd, 0xa2, 0x0c, 0x98, + 0x98, 0x1a, 0x25, 0xd7, 0xc0, 0xf3, 0xf5, 0xfc, + 0x60, 0xd6, 0xf0, 0xce, 0x8b, 0x14, 0xd4, 0x54, + 0x77, 0x9a, 0x73, 0x11, 0x50, 0x19, 0x83, 0x63, + 0x69, 0x90, 0x32, 0xcd, 0x1c, 0x35, 0x8d, 0x41, + 0x08, 0x09, 0xd6, 0xeb, 0x98, 0xb5, 0x4d, 0x0d, + 0x8e, 0xa9, 0xc1, 0x31, 0x75, 0x58, 0xa6, 0x06, + 0xfb, 0x92, 0x05, 0x3e, 0x11, 0x12, 0xdd, 0x50, + 0x40, 0x29, 0xc0, 0x32, 0xb5, 0xb1, 0x8e, 0x04, + 0x2e, 0xfb, 0x3c, 0x45, 0xd7, 0xb8, 0x74, 0x74, + 0xec, 0xe2, 0xcf, 0x8b, 0x12, 0x39, 0x14, 0xb8, + 0xa9, 0x8a, 0x00, 0x0a, 0xbe, 0x73, 0xfc, 0x0e, + 0x6a, 0x7a, 0x5a, 0x7d, 0x71, 0x4c, 0x6d, 0xb0, + 0xf6, 0xed, 0x2c, 0x3b, 0xf0, 0x63, 0x31, 0x34, + 0x12, 0x26, 0x7b, 0x1b, 0xde, 0x20, 0x16, 0x08, + 0x13, 0x89, 0x30, 0x91, 0xe0, 0x62, 0xbc, 0x20, + 0x4d, 0x01, 0x78, 0x0e, 0x30, 0x75, 0x0d, 0xa6, + 0xc1, 0x06, 0x37, 0x9d, 0xf7, 0xce, 0xa2, 0xa6, + 0xc9, 0x93, 0xd5, 0xdc, 0xc4, 0x82, 0x6f, 0xff, + 0x41, 0x5f, 0x2d, 0xda, 0x38, 0x69, 0x3e, 0xec, + 0x11, 0x24, 0xcb, 0xd0, 0xb0, 0xb5, 0xe4, 0xc0, + 0xd0, 0xd2, 0xf3, 0xc8, 0xbb, 0x5e, 0x63, 0x53, + 0xd7, 0x50, 0xc9, 0x6b, 0xd3, 0x7d, 0x36, 0x75, + 0x0a, 0x36, 0xc4, 0xe2, 0x73, 0xd3, 0x71, 0x88, + 0xea, 0xcd, 0x44, 0xfb, 0xb1, 0x40, 0xc3, 0x8b, + 0xd1, 0x09, 0xf9, 0x8d, 0x0d, 0x5f, 0x54, 0x82, + 0xce, 0x28, 0xb6, 0xa9, 0x61, 0x67, 0xd9, 0x45, + 0xd1, 0x35, 0x2e, 0x99, 0x67, 0x4c, 0xcb, 0x7f, + 0x8d, 0x6e, 0x82, 0xa3, 0x7a, 0x88, 0x44, 0xdc, + 0x7f, 0x19, 0xd7, 0xd4, 0x19, 0x76, 0x96, 0x5d, + 0xac, 0x14, 0xad, 0x89, 0x7d, 0x4f, 0x2e, 0x14, + 0x7e, 0x3e, 0xea, 0x3c, 0xb8, 0x32, 0xb4, 0x6b, + 0xe9, 0x28, 0xba, 0x06, 0x56, 0x0a, 0xd6, 0x60, + 0xb6, 0x92, 0x20, 0x88, 0xc5, 0x42, 0xc8, 0xb4, + 0xe1, 0x6b, 0xef, 0xdc, 0xa7, 0x00, 0x7c, 0x9b, + 0x0c, 0xcd, 0x36, 0xb5, 0x4b, 0xcf, 0xd5, 0xee, + 0x42, 0x3f, 0x94, 0x5e, 0x77, 0xd1, 0x8b, 0xae, + 0x81, 0x57, 0x9b, 0x85, 0x91, 0xce, 0x59, 0xa5, + 0x52, 0x08, 0x63, 0x09, 0xd1, 0x1b, 0x95, 0xf8, + 0xf8, 0x01, 0x50, 0x4a, 0x21, 0x88, 0x05, 0xba, + 0x91, 0x48, 0x95, 0x67, 0x46, 0x2c, 0xfb, 0x16, + 0x5d, 0x03, 0xeb, 0x65, 0x1b, 0x0c, 0x18, 0x7c, + 0x7d, 0x9c, 0x48, 0x30, 0x96, 0x2a, 0xdc, 0x94, + 0x5d, 0x13, 0xab, 0xa5, 0xbb, 0x07, 0xe3, 0x5a, + 0x27, 0xbe, 0xf6, 0x01, 0x9d, 0x57, 0xfa, 0xe7, + 0xa0, 0x0a, 0xc0, 0x52, 0xce, 0x84, 0xdb, 0x13, + 0x4e, 0xb0, 0x0d, 0x6d, 0xa2, 0x95, 0x04, 0x82, + 0x20, 0xb2, 0x8b, 0x52, 0xc0, 0xff, 0xbc, 0x6b, + 0x0d, 0xf5, 0x4a, 0x5c, 0x84, 0x4a, 0xd0, 0x97, + 0xb0, 0x52, 0xb4, 0xf0, 0x78, 0xc5, 0x1d, 0x34, + 0x8f, 0xf8, 0x71, 0x1a, 0x7c, 0x44, 0xaf, 0xcb, + 0x31, 0x4e, 0x52, 0x65, 0x96, 0xb8, 0xf7, 0xcf, + 0x38, 0x7c, 0xf9, 0xa8, 0x08, 0xcb, 0xd0, 0xe0, + 0xc7, 0x02, 0xe7, 0xad, 0x08, 0x8d, 0x6e, 0x72, + 0xe9, 0xce, 0x49, 0x29, 0x05, 0x36, 0x42, 0x04, + 0xbe, 0xa8, 0x50, 0x33, 0xca, 0xc3, 0x10, 0xc4, + 0x02, 0x5c, 0x2a, 0x24, 0x5c, 0xa2, 0xda, 0x89, + 0x21, 0xa5, 0x42, 0x90, 0xa4, 0x67, 0x86, 0xa6, + 0xa1, 0x61, 0xbb, 0x92, 0x6a, 0xca, 0x9a, 0xc6, + 0x87, 0xf3, 0xc3, 0x72, 0xce, 0x1c, 0xfa, 0x1e, + 0xdd, 0x58, 0x60, 0x52, 0xc3, 0x74, 0x7e, 0x2c, + 0x16, 0xee, 0xf9, 0x31, 0x74, 0x86, 0x57, 0x9b, + 0x05, 0xca, 0x6e, 0x09, 0xe2, 0x01, 0x13, 0x71, + 0x89, 0xbd, 0x33, 0xff, 0xca, 0xe0, 0xbb, 0x70, + 0x19, 0xb0, 0xa9, 0x33, 0x68, 0x1a, 0x83, 0xce, + 0xd2, 0x21, 0xfd, 0x72, 0xce, 0x84, 0x63, 0x6a, + 0xf0, 0x42, 0x81, 0x30, 0x11, 0x48, 0x44, 0xda, + 0xb5, 0xa9, 0x14, 0xe0, 0x5a, 0x1a, 0x96, 0x0b, + 0x56, 0xaa, 0xb5, 0x7a, 0xb1, 0x93, 0x93, 0x0d, + 0x07, 0x9c, 0x51, 0x82, 0x5a, 0x22, 0xe4, 0x60, + 0x2e, 0xd0, 0x35, 0xb5, 0xc1, 0x19, 0x2d, 0x97, + 0x6a, 0x30, 0xec, 0xdf, 0x09, 0x38, 0x4a, 0x39, + 0xf3, 0x13, 0xdd, 0xd6, 0x88, 0x4b, 0x1c, 0xd6, + 0x82, 0x4f, 0x02, 0xf1, 0xd6, 0x92, 0x83, 0xed, + 0x25, 0x67, 0x2a, 0xd7, 0x8d, 0xf7, 0x4a, 0x25, + 0x95, 0x9c, 0x39, 0xd5, 0xec, 0xec, 0xb4, 0x15, + 0xe1, 0xfd, 0x02, 0x08, 0x71, 0xf4, 0x9b, 0x6e, + 0x84, 0x54, 0x70, 0x4c, 0x1d, 0xcf, 0xd6, 0x72, + 0xb0, 0x4d, 0x3a, 0x17, 0x25, 0x88, 0x87, 0x46, + 0x22, 0x24, 0x12, 0x9e, 0x1e, 0x0f, 0x9e, 0xb5, + 0xa2, 0x1b, 0xc7, 0xf8, 0xe6, 0x3a, 0x00, 0x5b, + 0x86, 0x06, 0xd7, 0xd2, 0x61, 0x19, 0x1a, 0x96, + 0x0b, 0x26, 0x0a, 0xce, 0xfc, 0x26, 0xf4, 0xed, + 0x80, 0x43, 0x08, 0x35, 0xa8, 0x51, 0x97, 0x73, + 0xc6, 0x42, 0x77, 0x95, 0x4a, 0xa5, 0xf0, 0xf3, + 0x26, 0x79, 0xe2, 0xd3, 0x00, 0x00, 0x01, 0xf8, + 0x49, 0x44, 0x41, 0x54, 0xa1, 0x87, 0x28, 0x91, + 0x73, 0x2d, 0xc0, 0x5e, 0xc9, 0x9b, 0x78, 0xbc, + 0xe2, 0x52, 0xd7, 0x2b, 0x41, 0x3c, 0x30, 0x84, + 0x54, 0xe8, 0xf6, 0x74, 0xa9, 0xdb, 0x7e, 0x82, + 0x58, 0x48, 0x34, 0xbb, 0xc9, 0x58, 0xc5, 0xc1, + 0x4c, 0x07, 0x60, 0xcb, 0xd0, 0xd2, 0x2c, 0xd6, + 0xd2, 0x2e, 0xcc, 0x2f, 0x32, 0xe8, 0x3d, 0xb5, + 0x93, 0x87, 0x36, 0x5f, 0xb8, 0xa8, 0x0f, 0xb1, + 0x17, 0x72, 0x88, 0x9e, 0xc8, 0x7a, 0x27, 0xe4, + 0x08, 0x62, 0x09, 0x95, 0xe1, 0xa0, 0xdc, 0xef, + 0x0f, 0x28, 0xe7, 0x0c, 0xec, 0x2c, 0xbb, 0x74, + 0x13, 0x09, 0xe2, 0x01, 0xf2, 0xdb, 0x49, 0x17, + 0xed, 0x3b, 0xaa, 0xf8, 0x65, 0x2e, 0x65, 0x74, + 0x2d, 0x1d, 0x4f, 0xd7, 0x5c, 0x58, 0x86, 0x7e, + 0xa3, 0xa8, 0x3a, 0x31, 0xff, 0xe8, 0x1a, 0x1b, + 0x94, 0xfc, 0x97, 0x0b, 0x1f, 0xb2, 0x63, 0x3f, + 0x4a, 0x1b, 0xbf, 0x06, 0x22, 0x10, 0x33, 0xf6, + 0x31, 0xd5, 0x34, 0x96, 0x0a, 0xfe, 0x17, 0x4c, + 0x3c, 0x5a, 0x76, 0x69, 0xf3, 0x47, 0x10, 0x0f, + 0x98, 0x4e, 0xc0, 0xef, 0x1c, 0x7c, 0xa7, 0x9e, + 0x01, 0xeb, 0x5a, 0xdf, 0x2a, 0xac, 0xa7, 0xbe, + 0x63, 0x68, 0x08, 0x13, 0x01, 0xd9, 0xb3, 0x9f, + 0x52, 0x2a, 0x75, 0xd0, 0xc9, 0x92, 0xb6, 0x28, + 0x31, 0x7b, 0xa4, 0x4a, 0xed, 0xd3, 0x12, 0x91, + 0xba, 0x9f, 0xc4, 0x5c, 0x02, 0x0a, 0x08, 0xb9, + 0xbc, 0xb6, 0xc1, 0xe1, 0xb6, 0xe4, 0x2c, 0x1d, + 0x86, 0xce, 0x60, 0xe8, 0x1a, 0x4a, 0x6e, 0x3a, + 0x9b, 0x3b, 0x4e, 0x5f, 0x00, 0x41, 0x10, 0x0b, + 0xbe, 0x26, 0x49, 0x85, 0xaa, 0x17, 0xa3, 0xe3, + 0x73, 0x74, 0x23, 0x81, 0x44, 0x48, 0x68, 0x1a, + 0x83, 0x6b, 0x6a, 0x50, 0x48, 0x2d, 0x14, 0xfb, + 0x49, 0x83, 0x6b, 0xe9, 0xe0, 0x42, 0x5d, 0x3a, + 0x2e, 0xca, 0x9a, 0x7e, 0xa2, 0x12, 0x2e, 0x53, + 0x5b, 0x27, 0xa1, 0xe0, 0x47, 0xfc, 0x76, 0x0d, + 0xae, 0x0c, 0xc8, 0xf7, 0xcb, 0xc2, 0x8c, 0xa1, + 0x60, 0xeb, 0xc3, 0x03, 0xfa, 0x2c, 0xb5, 0x0b, + 0xa3, 0xcc, 0x81, 0x98, 0x14, 0x89, 0x48, 0xcb, + 0xd7, 0x49, 0xaf, 0x13, 0xbd, 0x7f, 0x26, 0xc3, + 0x85, 0x1c, 0x8c, 0x79, 0x59, 0x86, 0x86, 0xbc, + 0x6d, 0x40, 0xd7, 0xd0, 0xcb, 0xa6, 0x05, 0x0c, + 0x9d, 0x0d, 0x34, 0x60, 0xb5, 0x9e, 0xe7, 0xa8, + 0xd9, 0x0b, 0xb6, 0x45, 0xd7, 0xb8, 0x57, 0x2b, + 0x35, 0x82, 0x20, 0x16, 0x8f, 0x30, 0x11, 0x30, + 0xf4, 0x61, 0x0f, 0xea, 0x20, 0x4e, 0xa7, 0x4b, + 0x72, 0xb6, 0x3e, 0x90, 0x75, 0x55, 0x48, 0x47, + 0x50, 0x65, 0xaf, 0x51, 0x97, 0xa9, 0x8f, 0x0e, + 0xdb, 0x14, 0x00, 0x2e, 0xd2, 0xe8, 0xdd, 0xff, + 0x2f, 0x52, 0xa5, 0xda, 0xaf, 0x7d, 0xb4, 0xde, + 0xc2, 0x05, 0xf4, 0x6c, 0xc2, 0x74, 0x8d, 0xca, + 0xc5, 0x04, 0x41, 0x10, 0x04, 0x31, 0x4e, 0xde, + 0xaa, 0x14, 0xd9, 0xa1, 0x13, 0x04, 0x41, 0x10, + 0xc4, 0xb4, 0xa1, 0xd9, 0x09, 0x82, 0x20, 0x08, + 0x82, 0xa0, 0x00, 0x4c, 0x10, 0x04, 0x41, 0x10, + 0x14, 0x80, 0x09, 0x82, 0x20, 0x08, 0x82, 0xa0, + 0x00, 0x4c, 0x10, 0x04, 0x41, 0x10, 0x14, 0x80, + 0x09, 0x82, 0x20, 0x08, 0x82, 0xa0, 0x00, 0x4c, + 0x10, 0x04, 0x41, 0x10, 0x14, 0x80, 0x09, 0x82, + 0x20, 0x08, 0x82, 0xa0, 0x00, 0x4c, 0x10, 0x04, + 0x41, 0x10, 0x14, 0x80, 0x09, 0x82, 0x20, 0x08, + 0x82, 0xa0, 0x00, 0x4c, 0x10, 0x04, 0x41, 0x10, + 0x14, 0x80, 0x09, 0x82, 0x20, 0x08, 0x82, 0x02, + 0x30, 0x41, 0x10, 0x04, 0x41, 0x10, 0x14, 0x80, + 0x09, 0x82, 0x20, 0x08, 0x62, 0xa1, 0xf8, 0x5f, + 0xe3, 0x18, 0xff, 0xe7, 0x79, 0x7a, 0x19, 0x62, + 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, + 0xae, 0x42, 0x60, 0x82, 0x00, 0x00, 0x28, 0x75, + 0x75, 0x61, 0x79, 0x29, 0x63, 0x6c, 0x6f, 0x63, + 0x6b, 0x2d, 0x66, 0x61, 0x63, 0x65, 0x2d, 0x73, + 0x6d, 0x61, 0x6c, 0x6c, 0x2d, 0x6d, 0x6f, 0x72, + 0x6e, 0x69, 0x6e, 0x67, 0x2e, 0x73, 0x76, 0x67, + 0xe0, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65, + 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31, + 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f, + 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54, + 0x46, 0x2d, 0x38, 0x22, 0x20, 0x73, 0x74, 0x61, + 0x6e, 0x64, 0x61, 0x6c, 0x6f, 0x6e, 0x65, 0x3d, + 0x22, 0x6e, 0x6f, 0x22, 0x3f, 0x3e, 0x0a, 0x3c, + 0x21, 0x2d, 0x2d, 0x20, 0x43, 0x72, 0x65, 0x61, + 0x74, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, + 0x20, 0x49, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x20, 0x28, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x2e, 0x6f, + 0x72, 0x67, 0x2f, 0x29, 0x20, 0x2d, 0x2d, 0x3e, + 0x0a, 0x3c, 0x73, 0x76, 0x67, 0x0a, 0x20, 0x20, + 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, 0x64, + 0x63, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x70, 0x75, 0x72, 0x6c, 0x2e, 0x6f, + 0x72, 0x67, 0x2f, 0x64, 0x63, 0x2f, 0x65, 0x6c, + 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x31, + 0x2e, 0x31, 0x2f, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, 0x63, 0x63, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x65, 0x62, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x63, 0x63, 0x2f, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, + 0x72, 0x64, 0x66, 0x3d, 0x22, 0x68, 0x74, 0x74, + 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, + 0x77, 0x33, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x31, + 0x39, 0x39, 0x39, 0x2f, 0x30, 0x32, 0x2f, 0x32, + 0x32, 0x2d, 0x72, 0x64, 0x66, 0x2d, 0x73, 0x79, + 0x6e, 0x74, 0x61, 0x78, 0x2d, 0x6e, 0x73, 0x23, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, + 0x6e, 0x73, 0x3a, 0x73, 0x76, 0x67, 0x3d, 0x22, + 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, + 0x77, 0x77, 0x2e, 0x77, 0x33, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x32, 0x30, 0x30, 0x30, 0x2f, 0x73, + 0x76, 0x67, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, + 0x6d, 0x6c, 0x6e, 0x73, 0x3d, 0x22, 0x68, 0x74, + 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, + 0x2e, 0x77, 0x33, 0x2e, 0x6f, 0x72, 0x67, 0x2f, + 0x32, 0x30, 0x30, 0x30, 0x2f, 0x73, 0x76, 0x67, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, + 0x6e, 0x73, 0x3a, 0x78, 0x6c, 0x69, 0x6e, 0x6b, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x77, 0x33, 0x2e, + 0x6f, 0x72, 0x67, 0x2f, 0x31, 0x39, 0x39, 0x39, + 0x2f, 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, + 0x3a, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x2e, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x66, 0x6f, 0x72, 0x67, 0x65, 0x2e, 0x6e, + 0x65, 0x74, 0x2f, 0x44, 0x54, 0x44, 0x2f, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x2d, + 0x30, 0x2e, 0x64, 0x74, 0x64, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, + 0x61, 0x63, 0x65, 0x73, 0x2f, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3d, + 0x22, 0x33, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3d, 0x22, + 0x33, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x73, 0x76, 0x67, 0x35, 0x34, + 0x31, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, + 0x22, 0x30, 0x2e, 0x33, 0x32, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x76, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x3d, 0x22, 0x30, 0x2e, 0x34, 0x35, + 0x2e, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x76, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, + 0x31, 0x2e, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x64, 0x6f, 0x63, 0x62, 0x61, 0x73, 0x65, + 0x3d, 0x22, 0x2f, 0x68, 0x6f, 0x6d, 0x65, 0x2f, + 0x6d, 0x63, 0x6c, 0x61, 0x73, 0x65, 0x6e, 0x2f, + 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x2f, + 0x69, 0x6e, 0x74, 0x6c, 0x63, 0x6c, 0x6f, 0x63, + 0x6b, 0x2d, 0x31, 0x2e, 0x30, 0x2f, 0x70, 0x69, + 0x78, 0x6d, 0x61, 0x70, 0x73, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x3a, 0x64, 0x6f, 0x63, 0x6e, 0x61, + 0x6d, 0x65, 0x3d, 0x22, 0x69, 0x6e, 0x74, 0x6c, + 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x2d, 0x66, 0x61, + 0x63, 0x65, 0x2d, 0x73, 0x6d, 0x61, 0x6c, 0x6c, + 0x2d, 0x6d, 0x6f, 0x72, 0x6e, 0x69, 0x6e, 0x67, + 0x2e, 0x73, 0x76, 0x67, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x3a, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, + 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, + 0x6f, 0x6e, 0x3d, 0x22, 0x6f, 0x72, 0x67, 0x2e, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x2e, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x2e, + 0x73, 0x76, 0x67, 0x2e, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x22, 0x3e, 0x0a, 0x20, + 0x20, 0x3c, 0x64, 0x65, 0x66, 0x73, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x64, 0x65, 0x66, 0x73, 0x35, 0x34, 0x31, 0x38, + 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x31, 0x30, 0x36, 0x35, 0x33, 0x22, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, + 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x31, 0x30, 0x36, + 0x35, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, 0x66, + 0x73, 0x65, 0x74, 0x3d, 0x22, 0x30, 0x2e, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, + 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, 0x6c, + 0x6f, 0x72, 0x3a, 0x23, 0x66, 0x33, 0x66, 0x34, + 0x66, 0x66, 0x3b, 0x73, 0x74, 0x6f, 0x70, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x3b, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, + 0x6f, 0x70, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x73, 0x74, 0x6f, 0x70, 0x31, 0x30, 0x36, 0x35, + 0x37, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, + 0x65, 0x74, 0x3d, 0x22, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, + 0x72, 0x3a, 0x23, 0x39, 0x31, 0x39, 0x33, 0x61, + 0x66, 0x3b, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x3b, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x2f, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x34, 0x32, 0x31, 0x37, 0x34, 0x22, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x34, 0x32, + 0x31, 0x37, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, + 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, + 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x34, 0x33, 0x34, + 0x33, 0x34, 0x33, 0x3b, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x30, 0x2e, 0x35, 0x33, 0x35, 0x33, 0x35, + 0x33, 0x35, 0x34, 0x3b, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x34, 0x32, + 0x31, 0x37, 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, + 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, 0x31, 0x2e, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, + 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x66, 0x66, 0x66, + 0x66, 0x66, 0x66, 0x3b, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x3b, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x32, 0x31, 0x34, 0x35, 0x22, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x32, + 0x31, 0x34, 0x37, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, + 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, 0x30, 0x2e, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, + 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x66, 0x66, 0x66, + 0x66, 0x66, 0x64, 0x3b, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x3b, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, + 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x32, 0x31, 0x34, + 0x39, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, + 0x65, 0x74, 0x3d, 0x22, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, + 0x72, 0x3a, 0x23, 0x64, 0x39, 0x64, 0x39, 0x64, + 0x38, 0x3b, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x2f, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x33, 0x37, 0x39, 0x33, 0x35, 0x22, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, + 0x23, 0x39, 0x34, 0x39, 0x37, 0x62, 0x33, 0x3b, + 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, + 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x33, 0x37, + 0x39, 0x33, 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, + 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x34, 0x63, 0x34, 0x30, 0x35, 0x39, 0x3b, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, + 0x22, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x33, 0x37, 0x39, + 0x33, 0x39, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x33, 0x38, 0x31, 0x36, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3d, + 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x22, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x33, + 0x38, 0x31, 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, + 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, + 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x3b, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x3b, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, + 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x33, 0x38, 0x32, + 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, + 0x65, 0x74, 0x3d, 0x22, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, + 0x72, 0x3a, 0x23, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x3b, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x30, + 0x3b, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x2f, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3d, + 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x68, 0x72, + 0x65, 0x66, 0x3d, 0x22, 0x23, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x33, 0x38, 0x31, 0x36, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x72, 0x61, 0x64, 0x69, + 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x35, 0x38, 0x34, 0x37, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x55, + 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, 0x75, 0x73, + 0x65, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x4f, + 0x6e, 0x55, 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x78, 0x3d, + 0x22, 0x33, 0x31, 0x2e, 0x31, 0x31, 0x32, 0x36, + 0x39, 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x63, 0x79, 0x3d, 0x22, 0x31, + 0x39, 0x2e, 0x30, 0x30, 0x38, 0x36, 0x32, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x66, 0x78, 0x3d, 0x22, 0x33, 0x31, 0x2e, + 0x31, 0x31, 0x32, 0x36, 0x39, 0x38, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, + 0x79, 0x3d, 0x22, 0x31, 0x39, 0x2e, 0x30, 0x30, + 0x38, 0x36, 0x32, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x3d, 0x22, + 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, 0x37, + 0x39, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x72, 0x61, 0x64, 0x69, 0x61, + 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, + 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, + 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, + 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x23, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x33, 0x37, 0x39, + 0x33, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x72, + 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x34, + 0x39, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x3d, + 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, 0x70, 0x61, + 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, 0x65, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x63, 0x78, 0x3d, 0x22, 0x38, 0x2e, 0x37, 0x34, + 0x36, 0x38, 0x32, 0x35, 0x32, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x79, + 0x3d, 0x22, 0x36, 0x2e, 0x38, 0x32, 0x38, 0x33, + 0x32, 0x33, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x66, 0x78, 0x3d, 0x22, + 0x38, 0x2e, 0x37, 0x34, 0x36, 0x38, 0x32, 0x35, + 0x32, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x66, 0x79, 0x3d, 0x22, 0x36, 0x2e, + 0x38, 0x32, 0x38, 0x33, 0x32, 0x33, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x72, 0x3d, 0x22, 0x32, 0x39, 0x2e, 0x38, 0x38, + 0x39, 0x37, 0x31, 0x35, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x72, 0x61, + 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, + 0x6c, 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, + 0x77, 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, + 0x6e, 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, + 0x22, 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x32, 0x31, 0x34, 0x35, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, + 0x38, 0x35, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, + 0x73, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, + 0x70, 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, + 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x63, 0x78, 0x3d, 0x22, 0x31, 0x31, + 0x2e, 0x39, 0x30, 0x31, 0x39, 0x39, 0x36, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x63, 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, 0x30, + 0x34, 0x35, 0x34, 0x34, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x78, + 0x3d, 0x22, 0x31, 0x31, 0x2e, 0x39, 0x30, 0x31, + 0x39, 0x39, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x66, 0x79, 0x3d, 0x22, + 0x31, 0x30, 0x2e, 0x30, 0x34, 0x35, 0x34, 0x34, + 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x72, 0x3d, 0x22, 0x32, 0x39, 0x2e, + 0x32, 0x39, 0x32, 0x37, 0x31, 0x35, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, + 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3d, 0x22, + 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, + 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x68, 0x72, 0x65, + 0x66, 0x3d, 0x22, 0x23, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x34, 0x32, 0x31, 0x37, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x35, 0x38, 0x35, 0x33, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x55, + 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, 0x75, 0x73, + 0x65, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x4f, + 0x6e, 0x55, 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x31, 0x3d, + 0x22, 0x36, 0x2e, 0x33, 0x34, 0x32, 0x32, 0x31, + 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x79, 0x31, 0x3d, 0x22, 0x37, 0x2e, + 0x37, 0x38, 0x39, 0x33, 0x33, 0x32, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x78, 0x32, 0x3d, 0x22, 0x32, 0x32, 0x2e, 0x32, + 0x31, 0x38, 0x34, 0x32, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x79, 0x32, + 0x3d, 0x22, 0x32, 0x35, 0x2e, 0x38, 0x38, 0x34, + 0x32, 0x37, 0x34, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x72, 0x61, 0x64, + 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, + 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, + 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, + 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, + 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, + 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x31, + 0x30, 0x36, 0x35, 0x33, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, + 0x38, 0x35, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, + 0x73, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, + 0x70, 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, + 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x63, 0x78, 0x3d, 0x22, 0x31, 0x31, + 0x2e, 0x33, 0x32, 0x39, 0x32, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x79, + 0x3d, 0x22, 0x31, 0x30, 0x2e, 0x35, 0x38, 0x33, + 0x39, 0x37, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x66, 0x78, 0x3d, 0x22, 0x31, + 0x31, 0x2e, 0x33, 0x32, 0x39, 0x32, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, + 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, 0x35, 0x38, + 0x33, 0x39, 0x37, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x72, 0x3d, 0x22, 0x31, + 0x35, 0x2e, 0x35, 0x33, 0x32, 0x30, 0x35, 0x39, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, + 0x3d, 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x68, + 0x72, 0x65, 0x66, 0x3d, 0x22, 0x23, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x34, 0x32, 0x31, 0x37, + 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x72, 0x61, + 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x35, 0x37, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x67, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, + 0x75, 0x73, 0x65, 0x72, 0x53, 0x70, 0x61, 0x63, + 0x65, 0x4f, 0x6e, 0x55, 0x73, 0x65, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, + 0x78, 0x3d, 0x22, 0x31, 0x31, 0x2e, 0x39, 0x30, + 0x31, 0x39, 0x39, 0x36, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x79, 0x3d, + 0x22, 0x31, 0x30, 0x2e, 0x30, 0x34, 0x35, 0x34, + 0x34, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x66, 0x78, 0x3d, 0x22, 0x31, + 0x31, 0x2e, 0x39, 0x30, 0x31, 0x39, 0x39, 0x36, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x66, 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, + 0x30, 0x34, 0x35, 0x34, 0x34, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, + 0x3d, 0x22, 0x32, 0x39, 0x2e, 0x32, 0x39, 0x32, + 0x37, 0x31, 0x35, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, + 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, + 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, + 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, + 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, + 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x34, + 0x32, 0x31, 0x37, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, + 0x38, 0x35, 0x39, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, + 0x73, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, + 0x70, 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, + 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x78, 0x31, 0x3d, 0x22, 0x36, 0x2e, + 0x33, 0x34, 0x32, 0x32, 0x31, 0x36, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x79, + 0x31, 0x3d, 0x22, 0x37, 0x2e, 0x37, 0x38, 0x39, + 0x33, 0x33, 0x32, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x32, 0x3d, + 0x22, 0x32, 0x32, 0x2e, 0x32, 0x31, 0x38, 0x34, + 0x32, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x79, 0x32, 0x3d, 0x22, 0x32, + 0x35, 0x2e, 0x38, 0x38, 0x34, 0x32, 0x37, 0x34, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x3c, + 0x2f, 0x64, 0x65, 0x66, 0x73, 0x3e, 0x0a, 0x20, + 0x20, 0x3c, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x3a, 0x6e, 0x61, 0x6d, 0x65, 0x64, + 0x76, 0x69, 0x65, 0x77, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x62, 0x61, + 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x70, 0x61, 0x67, 0x65, 0x63, 0x6f, 0x6c, + 0x6f, 0x72, 0x3d, 0x22, 0x23, 0x66, 0x66, 0x66, + 0x66, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x62, 0x6f, 0x72, 0x64, 0x65, 0x72, + 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3d, 0x22, 0x23, + 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x6f, 0x72, + 0x64, 0x65, 0x72, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3d, 0x22, 0x31, 0x2e, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x70, + 0x61, 0x67, 0x65, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x70, + 0x61, 0x67, 0x65, 0x73, 0x68, 0x61, 0x64, 0x6f, + 0x77, 0x3d, 0x22, 0x32, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, + 0x61, 0x70, 0x65, 0x3a, 0x7a, 0x6f, 0x6f, 0x6d, + 0x3d, 0x22, 0x32, 0x36, 0x2e, 0x33, 0x38, 0x38, + 0x38, 0x38, 0x39, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x63, 0x78, 0x3d, 0x22, 0x31, + 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x63, 0x79, 0x3d, 0x22, 0x33, 0x39, 0x2e, + 0x32, 0x32, 0x31, 0x30, 0x35, 0x33, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x64, 0x6f, + 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2d, 0x75, + 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, 0x70, 0x78, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x2d, + 0x6c, 0x61, 0x79, 0x65, 0x72, 0x3d, 0x22, 0x6c, + 0x61, 0x79, 0x65, 0x72, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x77, 0x69, 0x6e, + 0x64, 0x6f, 0x77, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3d, 0x22, 0x31, 0x36, 0x30, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x77, + 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2d, 0x68, 0x65, + 0x69, 0x67, 0x68, 0x74, 0x3d, 0x22, 0x31, 0x31, + 0x31, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x3a, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, + 0x2d, 0x78, 0x3d, 0x22, 0x30, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x77, 0x69, 0x6e, + 0x64, 0x6f, 0x77, 0x2d, 0x79, 0x3d, 0x22, 0x33, + 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x3d, 0x22, 0x33, + 0x36, 0x70, 0x78, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, + 0x3d, 0x22, 0x33, 0x36, 0x70, 0x78, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x6d, 0x65, + 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, + 0x35, 0x34, 0x32, 0x31, 0x22, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x72, 0x64, 0x66, 0x3a, + 0x52, 0x44, 0x46, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x63, 0x63, 0x3a, 0x57, + 0x6f, 0x72, 0x6b, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x64, 0x66, + 0x3a, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x3d, 0x22, + 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x64, 0x63, 0x3a, 0x66, + 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x3e, 0x69, 0x6d, + 0x61, 0x67, 0x65, 0x2f, 0x73, 0x76, 0x67, 0x2b, + 0x78, 0x6d, 0x6c, 0x3c, 0x2f, 0x64, 0x63, 0x3a, + 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x64, 0x63, 0x3a, 0x74, 0x79, 0x70, 0x65, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x72, 0x64, 0x66, 0x3a, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x70, 0x75, 0x72, 0x6c, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x64, 0x63, 0x2f, 0x64, 0x63, 0x6d, + 0x69, 0x74, 0x79, 0x70, 0x65, 0x2f, 0x53, 0x74, + 0x69, 0x6c, 0x6c, 0x49, 0x6d, 0x61, 0x67, 0x65, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x63, 0x3a, + 0x57, 0x6f, 0x72, 0x6b, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x2f, 0x72, 0x64, 0x66, 0x3a, + 0x52, 0x44, 0x46, 0x3e, 0x0a, 0x20, 0x20, 0x3c, + 0x2f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, + 0x61, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x67, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x6c, 0x61, + 0x62, 0x65, 0x6c, 0x3d, 0x22, 0x4c, 0x61, 0x79, + 0x65, 0x72, 0x20, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, + 0x61, 0x70, 0x65, 0x3a, 0x67, 0x72, 0x6f, 0x75, + 0x70, 0x6d, 0x6f, 0x64, 0x65, 0x3d, 0x22, 0x6c, + 0x61, 0x79, 0x65, 0x72, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, + 0x61, 0x79, 0x65, 0x72, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73, 0x70, 0x6c, + 0x61, 0x79, 0x3a, 0x69, 0x6e, 0x6c, 0x69, 0x6e, + 0x65, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, + 0x4d, 0x20, 0x33, 0x39, 0x2e, 0x37, 0x37, 0x34, + 0x37, 0x35, 0x35, 0x2c, 0x31, 0x39, 0x2e, 0x30, + 0x30, 0x38, 0x36, 0x32, 0x31, 0x20, 0x41, 0x20, + 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, 0x37, + 0x39, 0x2c, 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, + 0x35, 0x37, 0x39, 0x20, 0x30, 0x20, 0x31, 0x20, + 0x31, 0x20, 0x32, 0x32, 0x2e, 0x34, 0x35, 0x30, + 0x36, 0x34, 0x2c, 0x31, 0x39, 0x2e, 0x30, 0x30, + 0x38, 0x36, 0x32, 0x31, 0x20, 0x41, 0x20, 0x38, + 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, 0x37, 0x39, + 0x2c, 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, + 0x37, 0x39, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, + 0x20, 0x33, 0x39, 0x2e, 0x37, 0x37, 0x34, 0x37, + 0x35, 0x35, 0x2c, 0x31, 0x39, 0x2e, 0x30, 0x30, + 0x38, 0x36, 0x32, 0x31, 0x20, 0x7a, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x72, 0x79, 0x3d, 0x22, 0x38, 0x2e, 0x36, 0x36, + 0x32, 0x30, 0x35, 0x37, 0x39, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x72, + 0x78, 0x3d, 0x22, 0x38, 0x2e, 0x36, 0x36, 0x32, + 0x30, 0x35, 0x37, 0x39, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x79, + 0x3d, 0x22, 0x31, 0x39, 0x2e, 0x30, 0x30, 0x38, + 0x36, 0x32, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, 0x3d, + 0x22, 0x33, 0x31, 0x2e, 0x31, 0x31, 0x32, 0x36, + 0x39, 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x34, 0x34, 0x31, 0x35, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x63, + 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, 0x72, + 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x34, + 0x37, 0x29, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x72, + 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, 0x65, 0x6e, + 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, + 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, 0x70, 0x78, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, 0x70, 0x3a, + 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, + 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, 0x72, 0x6f, + 0x75, 0x6e, 0x64, 0x3b, 0x6d, 0x61, 0x72, 0x6b, + 0x65, 0x72, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, + 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x72, 0x2d, 0x73, + 0x74, 0x61, 0x72, 0x74, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x72, + 0x2d, 0x6d, 0x69, 0x64, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x72, + 0x2d, 0x65, 0x6e, 0x64, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, + 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, + 0x68, 0x61, 0x72, 0x72, 0x61, 0x79, 0x3a, 0x6e, + 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, 0x6f, + 0x66, 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, + 0x69, 0x74, 0x79, 0x3a, 0x76, 0x69, 0x73, 0x69, + 0x62, 0x6c, 0x65, 0x3b, 0x64, 0x69, 0x73, 0x70, + 0x6c, 0x61, 0x79, 0x3a, 0x69, 0x6e, 0x6c, 0x69, + 0x6e, 0x65, 0x3b, 0x6f, 0x76, 0x65, 0x72, 0x66, + 0x6c, 0x6f, 0x77, 0x3a, 0x76, 0x69, 0x73, 0x69, + 0x62, 0x6c, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x74, 0x79, 0x70, + 0x65, 0x3d, 0x22, 0x61, 0x72, 0x63, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, + 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, + 0x3d, 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, + 0x28, 0x31, 0x2e, 0x36, 0x36, 0x32, 0x34, 0x32, + 0x32, 0x34, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, + 0x2e, 0x37, 0x39, 0x31, 0x30, 0x31, 0x34, 0x33, + 0x2c, 0x2d, 0x33, 0x33, 0x2e, 0x37, 0x32, 0x38, + 0x32, 0x37, 0x38, 0x2c, 0x31, 0x34, 0x2e, 0x31, + 0x31, 0x32, 0x30, 0x39, 0x37, 0x29, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x61, 0x6e, + 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x3d, 0x22, 0x6d, + 0x61, 0x74, 0x72, 0x69, 0x78, 0x28, 0x31, 0x2e, + 0x31, 0x31, 0x34, 0x38, 0x36, 0x33, 0x31, 0x2c, + 0x30, 0x2c, 0x30, 0x2c, 0x31, 0x2e, 0x31, 0x31, + 0x34, 0x38, 0x36, 0x33, 0x31, 0x2c, 0x2d, 0x30, + 0x2e, 0x31, 0x31, 0x36, 0x35, 0x32, 0x30, 0x35, + 0x2c, 0x2d, 0x30, 0x2e, 0x38, 0x35, 0x33, 0x31, + 0x33, 0x38, 0x37, 0x29, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, + 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, + 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, + 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, + 0x31, 0x20, 0x31, 0x2e, 0x33, 0x33, 0x39, 0x32, + 0x38, 0x35, 0x39, 0x2c, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, + 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, + 0x31, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, + 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x7a, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x31, 0x34, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x72, 0x78, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, + 0x79, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, + 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x32, 0x35, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x34, 0x34, 0x31, 0x37, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, + 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, 0x72, 0x61, + 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x34, 0x39, + 0x29, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x72, 0x75, + 0x6c, 0x65, 0x3a, 0x65, 0x76, 0x65, 0x6e, 0x6f, + 0x64, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x3a, 0x23, 0x36, 0x30, 0x35, 0x37, 0x37, + 0x33, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, + 0x2e, 0x36, 0x33, 0x35, 0x39, 0x36, 0x30, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, 0x70, 0x3a, + 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, + 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, 0x72, 0x6f, + 0x75, 0x6e, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x64, + 0x61, 0x73, 0x68, 0x6f, 0x66, 0x66, 0x73, 0x65, + 0x74, 0x3a, 0x30, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x74, 0x79, + 0x70, 0x65, 0x3d, 0x22, 0x61, 0x72, 0x63, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x61, + 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x3d, 0x22, + 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x28, 0x30, + 0x2e, 0x39, 0x33, 0x31, 0x38, 0x38, 0x36, 0x36, + 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2e, 0x39, + 0x33, 0x31, 0x38, 0x38, 0x36, 0x36, 0x2c, 0x32, + 0x2e, 0x37, 0x38, 0x33, 0x31, 0x32, 0x31, 0x31, + 0x2c, 0x32, 0x2e, 0x31, 0x36, 0x37, 0x34, 0x32, + 0x39, 0x31, 0x29, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, + 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, 0x31, + 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, + 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, + 0x20, 0x31, 0x2e, 0x33, 0x33, 0x39, 0x32, 0x38, + 0x35, 0x39, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, 0x31, + 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, + 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, + 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x20, 0x7a, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x72, 0x79, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x72, + 0x78, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x79, + 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, 0x3d, + 0x22, 0x31, 0x36, 0x2e, 0x32, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x34, + 0x34, 0x31, 0x39, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, + 0x75, 0x72, 0x6c, 0x28, 0x23, 0x72, 0x61, 0x64, + 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x35, 0x38, 0x35, 0x31, 0x29, + 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x72, 0x75, 0x6c, + 0x65, 0x3a, 0x65, 0x76, 0x65, 0x6e, 0x6f, 0x64, + 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x35, 0x33, + 0x29, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, + 0x2e, 0x36, 0x36, 0x36, 0x30, 0x33, 0x34, 0x37, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, 0x70, 0x3a, + 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, + 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, 0x72, 0x6f, + 0x75, 0x6e, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x64, + 0x61, 0x73, 0x68, 0x6f, 0x66, 0x66, 0x73, 0x65, + 0x74, 0x3a, 0x30, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x74, 0x79, + 0x70, 0x65, 0x3d, 0x22, 0x61, 0x72, 0x63, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x74, 0x79, + 0x70, 0x65, 0x3d, 0x22, 0x61, 0x72, 0x63, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, + 0x69, 0x6c, 0x6c, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, + 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x72, 0x75, 0x6c, + 0x65, 0x3a, 0x65, 0x76, 0x65, 0x6e, 0x6f, 0x64, + 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, 0x72, 0x61, + 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x35, 0x35, + 0x29, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, + 0x2e, 0x37, 0x32, 0x34, 0x39, 0x37, 0x39, 0x31, + 0x36, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, 0x70, + 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, + 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, 0x72, + 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x64, 0x61, 0x73, 0x68, 0x6f, 0x66, 0x66, 0x73, + 0x65, 0x74, 0x3a, 0x30, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x34, 0x34, + 0x32, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, + 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, 0x3d, 0x22, + 0x31, 0x36, 0x2e, 0x32, 0x35, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, + 0x79, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x72, 0x78, + 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x72, 0x79, 0x3d, + 0x22, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, 0x37, 0x31, + 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, 0x31, 0x34, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x2c, + 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, 0x20, + 0x31, 0x2e, 0x33, 0x33, 0x39, 0x32, 0x38, 0x35, + 0x39, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, 0x31, 0x34, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x2c, + 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, 0x20, + 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, 0x37, 0x31, + 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x35, 0x20, 0x7a, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, + 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x3d, + 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x28, + 0x31, 0x2e, 0x30, 0x35, 0x37, 0x33, 0x33, 0x30, + 0x31, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x31, 0x2e, + 0x30, 0x35, 0x37, 0x33, 0x33, 0x30, 0x31, 0x2c, + 0x30, 0x2e, 0x38, 0x31, 0x38, 0x33, 0x34, 0x39, + 0x38, 0x2c, 0x35, 0x2e, 0x30, 0x39, 0x36, 0x31, + 0x32, 0x33, 0x31, 0x65, 0x2d, 0x32, 0x29, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x61, + 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x3d, 0x22, + 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x28, 0x30, + 0x2e, 0x39, 0x33, 0x31, 0x38, 0x38, 0x36, 0x36, + 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2e, 0x39, + 0x33, 0x31, 0x38, 0x38, 0x36, 0x36, 0x2c, 0x32, + 0x2e, 0x37, 0x38, 0x33, 0x31, 0x32, 0x31, 0x31, + 0x2c, 0x32, 0x2e, 0x31, 0x36, 0x37, 0x34, 0x32, + 0x39, 0x31, 0x29, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, + 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, 0x31, + 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, + 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, + 0x20, 0x31, 0x2e, 0x33, 0x33, 0x39, 0x32, 0x38, + 0x35, 0x39, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, 0x31, + 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, + 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, + 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x20, 0x7a, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x72, 0x79, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x72, + 0x78, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x79, + 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, 0x3d, + 0x22, 0x31, 0x36, 0x2e, 0x32, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x34, + 0x34, 0x32, 0x39, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x30, 0x2e, 0x35, 0x33, 0x39, + 0x32, 0x31, 0x35, 0x36, 0x39, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, + 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, + 0x35, 0x37, 0x29, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x2e, 0x30, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, + 0x76, 0x65, 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x75, 0x72, + 0x6c, 0x28, 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x35, 0x38, 0x35, 0x39, 0x29, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, + 0x64, 0x74, 0x68, 0x3a, 0x31, 0x2e, 0x36, 0x36, + 0x36, 0x30, 0x33, 0x34, 0x37, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, + 0x65, 0x63, 0x61, 0x70, 0x3a, 0x72, 0x6f, 0x75, + 0x6e, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, + 0x69, 0x6e, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, + 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, + 0x79, 0x3a, 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, + 0x61, 0x72, 0x63, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, + 0x68, 0x35, 0x35, 0x34, 0x33, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x31, 0x39, 0x2c, 0x31, 0x38, + 0x20, 0x43, 0x20, 0x31, 0x39, 0x2c, 0x31, 0x38, + 0x2e, 0x35, 0x35, 0x32, 0x20, 0x31, 0x38, 0x2e, + 0x35, 0x35, 0x31, 0x39, 0x39, 0x39, 0x2c, 0x31, + 0x39, 0x20, 0x31, 0x38, 0x2c, 0x31, 0x39, 0x20, + 0x43, 0x20, 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, + 0x2c, 0x31, 0x39, 0x20, 0x31, 0x37, 0x2c, 0x31, + 0x38, 0x2e, 0x35, 0x35, 0x32, 0x20, 0x31, 0x37, + 0x2c, 0x31, 0x38, 0x20, 0x43, 0x20, 0x31, 0x37, + 0x2c, 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, 0x20, + 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, 0x2c, 0x31, + 0x37, 0x20, 0x31, 0x38, 0x2c, 0x31, 0x37, 0x20, + 0x43, 0x20, 0x31, 0x38, 0x2e, 0x35, 0x35, 0x31, + 0x39, 0x39, 0x39, 0x2c, 0x31, 0x37, 0x20, 0x31, + 0x39, 0x2c, 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, + 0x20, 0x31, 0x39, 0x2c, 0x31, 0x38, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, + 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x39, 0x39, + 0x39, 0x63, 0x39, 0x63, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, + 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, + 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, + 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x67, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x67, 0x35, 0x38, 0x30, 0x32, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, + 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, + 0x61, 0x38, 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, + 0x66, 0x6f, 0x72, 0x6d, 0x3d, 0x22, 0x6d, 0x61, + 0x74, 0x72, 0x69, 0x78, 0x28, 0x30, 0x2e, 0x39, + 0x39, 0x35, 0x34, 0x31, 0x36, 0x37, 0x2c, 0x30, + 0x2c, 0x30, 0x2c, 0x30, 0x2e, 0x39, 0x39, 0x35, + 0x34, 0x31, 0x36, 0x37, 0x2c, 0x38, 0x2e, 0x32, + 0x34, 0x39, 0x39, 0x32, 0x35, 0x31, 0x65, 0x2d, + 0x32, 0x2c, 0x38, 0x2e, 0x32, 0x34, 0x39, 0x38, + 0x34, 0x30, 0x35, 0x65, 0x2d, 0x32, 0x29, 0x22, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, + 0x38, 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, + 0x20, 0x37, 0x2e, 0x39, 0x34, 0x37, 0x30, 0x34, + 0x39, 0x33, 0x2c, 0x31, 0x38, 0x20, 0x43, 0x20, + 0x37, 0x2e, 0x39, 0x34, 0x37, 0x30, 0x34, 0x39, + 0x33, 0x2c, 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, + 0x20, 0x37, 0x2e, 0x36, 0x31, 0x31, 0x30, 0x34, + 0x38, 0x34, 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x20, 0x37, 0x2e, 0x31, 0x39, 0x37, 0x30, 0x34, + 0x39, 0x33, 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x20, 0x43, 0x20, 0x36, 0x2e, 0x37, 0x38, 0x33, + 0x30, 0x34, 0x39, 0x32, 0x2c, 0x31, 0x38, 0x2e, + 0x37, 0x35, 0x20, 0x36, 0x2e, 0x34, 0x34, 0x37, + 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x38, 0x2e, + 0x34, 0x31, 0x34, 0x20, 0x36, 0x2e, 0x34, 0x34, + 0x37, 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x38, + 0x20, 0x43, 0x20, 0x36, 0x2e, 0x34, 0x34, 0x37, + 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x37, 0x2e, + 0x35, 0x38, 0x36, 0x20, 0x36, 0x2e, 0x37, 0x38, + 0x33, 0x30, 0x34, 0x39, 0x32, 0x2c, 0x31, 0x37, + 0x2e, 0x32, 0x35, 0x20, 0x37, 0x2e, 0x31, 0x39, + 0x37, 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x37, + 0x2e, 0x32, 0x35, 0x20, 0x43, 0x20, 0x37, 0x2e, + 0x36, 0x31, 0x31, 0x30, 0x34, 0x38, 0x34, 0x2c, + 0x31, 0x37, 0x2e, 0x32, 0x35, 0x20, 0x37, 0x2e, + 0x39, 0x34, 0x37, 0x30, 0x34, 0x39, 0x33, 0x2c, + 0x31, 0x37, 0x2e, 0x35, 0x38, 0x36, 0x20, 0x37, + 0x2e, 0x39, 0x34, 0x37, 0x30, 0x34, 0x39, 0x33, + 0x2c, 0x31, 0x38, 0x20, 0x7a, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x35, 0x35, 0x34, 0x35, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, + 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x32, 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, 0x35, + 0x31, 0x2c, 0x31, 0x38, 0x20, 0x43, 0x20, 0x32, + 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, 0x35, 0x31, + 0x2c, 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, 0x20, + 0x32, 0x39, 0x2e, 0x32, 0x31, 0x36, 0x39, 0x35, + 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x20, 0x32, + 0x38, 0x2e, 0x38, 0x30, 0x32, 0x39, 0x35, 0x31, + 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x20, 0x43, + 0x20, 0x32, 0x38, 0x2e, 0x33, 0x38, 0x38, 0x39, + 0x35, 0x31, 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x20, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, 0x39, + 0x35, 0x31, 0x2c, 0x31, 0x38, 0x2e, 0x34, 0x31, + 0x34, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, + 0x39, 0x35, 0x31, 0x2c, 0x31, 0x38, 0x20, 0x43, + 0x20, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, 0x39, + 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, 0x35, 0x38, + 0x36, 0x20, 0x32, 0x38, 0x2e, 0x33, 0x38, 0x38, + 0x39, 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, 0x32, + 0x35, 0x20, 0x32, 0x38, 0x2e, 0x38, 0x30, 0x32, + 0x39, 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, 0x32, + 0x35, 0x20, 0x43, 0x20, 0x32, 0x39, 0x2e, 0x32, + 0x31, 0x36, 0x39, 0x35, 0x2c, 0x31, 0x37, 0x2e, + 0x32, 0x35, 0x20, 0x32, 0x39, 0x2e, 0x35, 0x35, + 0x32, 0x39, 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, + 0x35, 0x38, 0x36, 0x20, 0x32, 0x39, 0x2e, 0x35, + 0x35, 0x32, 0x39, 0x35, 0x31, 0x2c, 0x31, 0x38, + 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, 0x35, 0x35, + 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x35, 0x36, 0x34, 0x39, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x39, + 0x2e, 0x32, 0x39, 0x33, 0x38, 0x38, 0x39, 0x33, + 0x2c, 0x32, 0x33, 0x2e, 0x30, 0x32, 0x36, 0x34, + 0x37, 0x36, 0x20, 0x43, 0x20, 0x39, 0x2e, 0x35, + 0x30, 0x30, 0x38, 0x38, 0x39, 0x33, 0x2c, 0x32, + 0x33, 0x2e, 0x33, 0x38, 0x35, 0x30, 0x31, 0x20, + 0x39, 0x2e, 0x33, 0x37, 0x37, 0x39, 0x30, 0x34, + 0x2c, 0x32, 0x33, 0x2e, 0x38, 0x34, 0x33, 0x39, + 0x39, 0x35, 0x20, 0x39, 0x2e, 0x30, 0x31, 0x39, + 0x33, 0x37, 0x30, 0x33, 0x2c, 0x32, 0x34, 0x2e, + 0x30, 0x35, 0x30, 0x39, 0x39, 0x35, 0x20, 0x43, + 0x20, 0x38, 0x2e, 0x36, 0x36, 0x30, 0x38, 0x33, + 0x35, 0x37, 0x2c, 0x32, 0x34, 0x2e, 0x32, 0x35, + 0x37, 0x39, 0x39, 0x35, 0x20, 0x38, 0x2e, 0x32, + 0x30, 0x31, 0x38, 0x35, 0x31, 0x32, 0x2c, 0x32, + 0x34, 0x2e, 0x31, 0x33, 0x35, 0x30, 0x31, 0x20, + 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, 0x31, + 0x32, 0x2c, 0x32, 0x33, 0x2e, 0x37, 0x37, 0x36, + 0x34, 0x37, 0x36, 0x20, 0x43, 0x20, 0x37, 0x2e, + 0x37, 0x38, 0x37, 0x38, 0x35, 0x31, 0x32, 0x2c, + 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, 0x39, 0x34, + 0x31, 0x20, 0x37, 0x2e, 0x39, 0x31, 0x30, 0x38, + 0x33, 0x35, 0x37, 0x2c, 0x32, 0x32, 0x2e, 0x39, + 0x35, 0x38, 0x39, 0x35, 0x37, 0x20, 0x38, 0x2e, + 0x32, 0x36, 0x39, 0x33, 0x37, 0x30, 0x33, 0x2c, + 0x32, 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, 0x35, + 0x36, 0x20, 0x43, 0x20, 0x38, 0x2e, 0x36, 0x32, + 0x37, 0x39, 0x30, 0x34, 0x2c, 0x32, 0x32, 0x2e, + 0x35, 0x34, 0x34, 0x39, 0x35, 0x37, 0x20, 0x39, + 0x2e, 0x30, 0x38, 0x36, 0x38, 0x38, 0x39, 0x33, + 0x2c, 0x32, 0x32, 0x2e, 0x36, 0x36, 0x37, 0x39, + 0x34, 0x31, 0x20, 0x39, 0x2e, 0x32, 0x39, 0x33, + 0x38, 0x38, 0x39, 0x33, 0x2c, 0x32, 0x33, 0x2e, + 0x30, 0x32, 0x36, 0x34, 0x37, 0x36, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, + 0x38, 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, 0x66, + 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, + 0x36, 0x35, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x30, + 0x35, 0x31, 0x34, 0x39, 0x2c, 0x31, 0x32, 0x2e, + 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, 0x20, 0x43, + 0x20, 0x32, 0x38, 0x2e, 0x32, 0x31, 0x32, 0x31, + 0x34, 0x39, 0x2c, 0x31, 0x32, 0x2e, 0x35, 0x38, + 0x32, 0x30, 0x35, 0x39, 0x20, 0x32, 0x38, 0x2e, + 0x30, 0x38, 0x39, 0x31, 0x36, 0x34, 0x2c, 0x31, + 0x33, 0x2e, 0x30, 0x34, 0x31, 0x30, 0x34, 0x34, + 0x20, 0x32, 0x37, 0x2e, 0x37, 0x33, 0x30, 0x36, + 0x33, 0x2c, 0x31, 0x33, 0x2e, 0x32, 0x34, 0x38, + 0x30, 0x34, 0x34, 0x20, 0x43, 0x20, 0x32, 0x37, + 0x2e, 0x33, 0x37, 0x32, 0x30, 0x39, 0x35, 0x2c, + 0x31, 0x33, 0x2e, 0x34, 0x35, 0x35, 0x30, 0x34, + 0x34, 0x20, 0x32, 0x36, 0x2e, 0x39, 0x31, 0x33, + 0x31, 0x31, 0x31, 0x2c, 0x31, 0x33, 0x2e, 0x33, + 0x33, 0x32, 0x30, 0x35, 0x39, 0x20, 0x32, 0x36, + 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, 0x2c, + 0x31, 0x32, 0x2e, 0x39, 0x37, 0x33, 0x35, 0x32, + 0x35, 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, 0x34, + 0x39, 0x39, 0x31, 0x31, 0x31, 0x2c, 0x31, 0x32, + 0x2e, 0x36, 0x31, 0x34, 0x39, 0x39, 0x20, 0x32, + 0x36, 0x2e, 0x36, 0x32, 0x32, 0x30, 0x39, 0x35, + 0x2c, 0x31, 0x32, 0x2e, 0x31, 0x35, 0x36, 0x30, + 0x30, 0x36, 0x20, 0x32, 0x36, 0x2e, 0x39, 0x38, + 0x30, 0x36, 0x33, 0x2c, 0x31, 0x31, 0x2e, 0x39, + 0x34, 0x39, 0x30, 0x30, 0x36, 0x20, 0x43, 0x20, + 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, 0x31, 0x36, + 0x34, 0x2c, 0x31, 0x31, 0x2e, 0x37, 0x34, 0x32, + 0x30, 0x30, 0x36, 0x20, 0x32, 0x37, 0x2e, 0x37, + 0x39, 0x38, 0x31, 0x34, 0x39, 0x2c, 0x31, 0x31, + 0x2e, 0x38, 0x36, 0x34, 0x39, 0x39, 0x20, 0x32, + 0x38, 0x2e, 0x30, 0x30, 0x35, 0x31, 0x34, 0x39, + 0x2c, 0x31, 0x32, 0x2e, 0x32, 0x32, 0x33, 0x35, + 0x32, 0x35, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, + 0x38, 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, + 0x38, 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, 0x66, + 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, 0x32, 0x2e, + 0x39, 0x37, 0x33, 0x35, 0x32, 0x35, 0x2c, 0x32, + 0x36, 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, + 0x20, 0x43, 0x20, 0x31, 0x33, 0x2e, 0x33, 0x33, + 0x32, 0x30, 0x35, 0x39, 0x2c, 0x32, 0x36, 0x2e, + 0x39, 0x31, 0x33, 0x31, 0x31, 0x31, 0x20, 0x31, + 0x33, 0x2e, 0x34, 0x35, 0x35, 0x30, 0x34, 0x33, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x37, 0x32, 0x30, + 0x39, 0x37, 0x20, 0x31, 0x33, 0x2e, 0x32, 0x34, + 0x38, 0x30, 0x34, 0x34, 0x2c, 0x32, 0x37, 0x2e, + 0x37, 0x33, 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, + 0x20, 0x31, 0x33, 0x2e, 0x30, 0x34, 0x31, 0x30, + 0x34, 0x34, 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x38, + 0x39, 0x31, 0x36, 0x35, 0x20, 0x31, 0x32, 0x2e, + 0x35, 0x38, 0x32, 0x30, 0x35, 0x39, 0x2c, 0x32, + 0x38, 0x2e, 0x32, 0x31, 0x32, 0x31, 0x35, 0x20, + 0x31, 0x32, 0x2e, 0x32, 0x32, 0x33, 0x35, 0x32, + 0x35, 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x30, 0x35, + 0x31, 0x35, 0x20, 0x43, 0x20, 0x31, 0x31, 0x2e, + 0x38, 0x36, 0x34, 0x39, 0x39, 0x2c, 0x32, 0x37, + 0x2e, 0x37, 0x39, 0x38, 0x31, 0x35, 0x20, 0x31, + 0x31, 0x2e, 0x37, 0x34, 0x32, 0x30, 0x30, 0x36, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, 0x31, + 0x36, 0x35, 0x20, 0x31, 0x31, 0x2e, 0x39, 0x34, + 0x39, 0x30, 0x30, 0x36, 0x2c, 0x32, 0x36, 0x2e, + 0x39, 0x38, 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, + 0x20, 0x31, 0x32, 0x2e, 0x31, 0x35, 0x36, 0x30, + 0x30, 0x35, 0x2c, 0x32, 0x36, 0x2e, 0x36, 0x32, + 0x32, 0x30, 0x39, 0x37, 0x20, 0x31, 0x32, 0x2e, + 0x36, 0x31, 0x34, 0x39, 0x39, 0x2c, 0x32, 0x36, + 0x2e, 0x34, 0x39, 0x39, 0x31, 0x31, 0x31, 0x20, + 0x31, 0x32, 0x2e, 0x39, 0x37, 0x33, 0x35, 0x32, + 0x35, 0x2c, 0x32, 0x36, 0x2e, 0x37, 0x30, 0x36, + 0x31, 0x31, 0x31, 0x20, 0x7a, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x35, 0x36, 0x35, 0x35, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, + 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x32, 0x33, 0x2e, 0x37, 0x37, 0x36, 0x34, 0x37, + 0x36, 0x2c, 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, + 0x35, 0x31, 0x38, 0x20, 0x43, 0x20, 0x32, 0x34, + 0x2e, 0x31, 0x33, 0x35, 0x30, 0x31, 0x2c, 0x38, + 0x2e, 0x32, 0x30, 0x31, 0x38, 0x35, 0x31, 0x38, + 0x20, 0x32, 0x34, 0x2e, 0x32, 0x35, 0x37, 0x39, + 0x39, 0x34, 0x2c, 0x38, 0x2e, 0x36, 0x36, 0x30, + 0x38, 0x33, 0x37, 0x32, 0x20, 0x32, 0x34, 0x2e, + 0x30, 0x35, 0x30, 0x39, 0x39, 0x35, 0x2c, 0x39, + 0x2e, 0x30, 0x31, 0x39, 0x33, 0x37, 0x30, 0x38, + 0x20, 0x43, 0x20, 0x32, 0x33, 0x2e, 0x38, 0x34, + 0x33, 0x39, 0x39, 0x35, 0x2c, 0x39, 0x2e, 0x33, + 0x37, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, 0x32, + 0x33, 0x2e, 0x33, 0x38, 0x35, 0x30, 0x31, 0x2c, + 0x39, 0x2e, 0x35, 0x30, 0x30, 0x38, 0x38, 0x39, + 0x39, 0x20, 0x32, 0x33, 0x2e, 0x30, 0x32, 0x36, + 0x34, 0x37, 0x36, 0x2c, 0x39, 0x2e, 0x32, 0x39, + 0x33, 0x38, 0x38, 0x39, 0x39, 0x20, 0x43, 0x20, + 0x32, 0x32, 0x2e, 0x36, 0x36, 0x37, 0x39, 0x34, + 0x31, 0x2c, 0x39, 0x2e, 0x30, 0x38, 0x36, 0x38, + 0x38, 0x39, 0x39, 0x20, 0x32, 0x32, 0x2e, 0x35, + 0x34, 0x34, 0x39, 0x35, 0x36, 0x2c, 0x38, 0x2e, + 0x36, 0x32, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, + 0x32, 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, 0x35, + 0x36, 0x2c, 0x38, 0x2e, 0x32, 0x36, 0x39, 0x33, + 0x37, 0x30, 0x38, 0x20, 0x43, 0x20, 0x32, 0x32, + 0x2e, 0x39, 0x35, 0x38, 0x39, 0x35, 0x36, 0x2c, + 0x37, 0x2e, 0x39, 0x31, 0x30, 0x38, 0x33, 0x37, + 0x32, 0x20, 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, + 0x39, 0x34, 0x31, 0x2c, 0x37, 0x2e, 0x37, 0x38, + 0x37, 0x38, 0x35, 0x31, 0x38, 0x20, 0x32, 0x33, + 0x2e, 0x37, 0x37, 0x36, 0x34, 0x37, 0x36, 0x2c, + 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, 0x31, + 0x38, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, 0x36, + 0x35, 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, + 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x70, 0x61, 0x74, 0x68, 0x35, 0x36, 0x36, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x31, 0x38, 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x35, + 0x32, 0x39, 0x35, 0x32, 0x20, 0x43, 0x20, 0x31, + 0x38, 0x2e, 0x34, 0x31, 0x34, 0x2c, 0x32, 0x38, + 0x2e, 0x30, 0x35, 0x32, 0x39, 0x35, 0x32, 0x20, + 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, 0x32, 0x38, + 0x2e, 0x33, 0x38, 0x38, 0x39, 0x35, 0x33, 0x20, + 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, 0x32, 0x38, + 0x2e, 0x38, 0x30, 0x32, 0x39, 0x35, 0x32, 0x20, + 0x43, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, + 0x32, 0x39, 0x2e, 0x32, 0x31, 0x36, 0x39, 0x35, + 0x32, 0x20, 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, + 0x2c, 0x32, 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x31, 0x38, 0x2c, 0x32, 0x39, + 0x2e, 0x35, 0x35, 0x32, 0x39, 0x35, 0x32, 0x20, + 0x43, 0x20, 0x31, 0x37, 0x2e, 0x35, 0x38, 0x36, + 0x2c, 0x32, 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, + 0x2c, 0x32, 0x39, 0x2e, 0x32, 0x31, 0x36, 0x39, + 0x35, 0x32, 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, + 0x2c, 0x32, 0x38, 0x2e, 0x38, 0x30, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x43, 0x20, 0x31, 0x37, 0x2e, + 0x32, 0x35, 0x2c, 0x32, 0x38, 0x2e, 0x33, 0x38, + 0x38, 0x39, 0x35, 0x33, 0x20, 0x31, 0x37, 0x2e, + 0x35, 0x38, 0x36, 0x2c, 0x32, 0x38, 0x2e, 0x30, + 0x35, 0x32, 0x39, 0x35, 0x32, 0x20, 0x31, 0x38, + 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, + 0x38, 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x35, 0x36, 0x36, 0x33, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, + 0x38, 0x2c, 0x36, 0x2e, 0x34, 0x34, 0x37, 0x30, + 0x35, 0x20, 0x43, 0x20, 0x31, 0x38, 0x2e, 0x34, + 0x31, 0x34, 0x2c, 0x36, 0x2e, 0x34, 0x34, 0x37, + 0x30, 0x35, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x2c, 0x36, 0x2e, 0x37, 0x38, 0x33, 0x30, 0x35, + 0x31, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, + 0x37, 0x2e, 0x31, 0x39, 0x37, 0x30, 0x35, 0x20, + 0x43, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, + 0x37, 0x2e, 0x36, 0x31, 0x31, 0x30, 0x35, 0x20, + 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, 0x2c, 0x37, + 0x2e, 0x39, 0x34, 0x37, 0x30, 0x35, 0x20, 0x31, + 0x38, 0x2c, 0x37, 0x2e, 0x39, 0x34, 0x37, 0x30, + 0x35, 0x20, 0x43, 0x20, 0x31, 0x37, 0x2e, 0x35, + 0x38, 0x36, 0x2c, 0x37, 0x2e, 0x39, 0x34, 0x37, + 0x30, 0x35, 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, + 0x2c, 0x37, 0x2e, 0x36, 0x31, 0x31, 0x30, 0x35, + 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, 0x2c, 0x37, + 0x2e, 0x31, 0x39, 0x37, 0x30, 0x35, 0x20, 0x43, + 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, 0x2c, 0x36, + 0x2e, 0x37, 0x38, 0x33, 0x30, 0x35, 0x31, 0x20, + 0x31, 0x37, 0x2e, 0x35, 0x38, 0x36, 0x2c, 0x36, + 0x2e, 0x34, 0x34, 0x37, 0x30, 0x35, 0x20, 0x31, + 0x38, 0x2c, 0x36, 0x2e, 0x34, 0x34, 0x37, 0x30, + 0x35, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, + 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x38, + 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, + 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, + 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x32, 0x33, 0x2e, 0x30, + 0x32, 0x36, 0x34, 0x37, 0x36, 0x2c, 0x32, 0x36, + 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, 0x20, + 0x43, 0x20, 0x32, 0x33, 0x2e, 0x33, 0x38, 0x35, + 0x30, 0x31, 0x2c, 0x32, 0x36, 0x2e, 0x34, 0x39, + 0x39, 0x31, 0x31, 0x31, 0x20, 0x32, 0x33, 0x2e, + 0x38, 0x34, 0x33, 0x39, 0x39, 0x35, 0x2c, 0x32, + 0x36, 0x2e, 0x36, 0x32, 0x32, 0x30, 0x39, 0x37, + 0x20, 0x32, 0x34, 0x2e, 0x30, 0x35, 0x30, 0x39, + 0x39, 0x35, 0x2c, 0x32, 0x36, 0x2e, 0x39, 0x38, + 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, 0x20, 0x32, + 0x34, 0x2e, 0x32, 0x35, 0x37, 0x39, 0x39, 0x35, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, 0x31, + 0x36, 0x35, 0x20, 0x32, 0x34, 0x2e, 0x31, 0x33, + 0x35, 0x30, 0x31, 0x2c, 0x32, 0x37, 0x2e, 0x37, + 0x39, 0x38, 0x31, 0x35, 0x20, 0x32, 0x33, 0x2e, + 0x37, 0x37, 0x36, 0x34, 0x37, 0x36, 0x2c, 0x32, + 0x38, 0x2e, 0x30, 0x30, 0x35, 0x31, 0x35, 0x20, + 0x43, 0x20, 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, + 0x39, 0x34, 0x31, 0x2c, 0x32, 0x38, 0x2e, 0x32, + 0x31, 0x32, 0x31, 0x35, 0x20, 0x32, 0x32, 0x2e, + 0x39, 0x35, 0x38, 0x39, 0x35, 0x37, 0x2c, 0x32, + 0x38, 0x2e, 0x30, 0x38, 0x39, 0x31, 0x36, 0x35, + 0x20, 0x32, 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, + 0x35, 0x36, 0x2c, 0x32, 0x37, 0x2e, 0x37, 0x33, + 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, 0x20, 0x32, + 0x32, 0x2e, 0x35, 0x34, 0x34, 0x39, 0x35, 0x37, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x37, 0x32, 0x30, + 0x39, 0x37, 0x20, 0x32, 0x32, 0x2e, 0x36, 0x36, + 0x37, 0x39, 0x34, 0x31, 0x2c, 0x32, 0x36, 0x2e, + 0x39, 0x31, 0x33, 0x31, 0x31, 0x31, 0x20, 0x32, + 0x33, 0x2e, 0x30, 0x32, 0x36, 0x34, 0x37, 0x36, + 0x2c, 0x32, 0x36, 0x2e, 0x37, 0x30, 0x36, 0x31, + 0x31, 0x31, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, + 0x36, 0x36, 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, + 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, + 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, 0x35, + 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, + 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, + 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, + 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, + 0x32, 0x2e, 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, + 0x2c, 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, + 0x31, 0x38, 0x20, 0x43, 0x20, 0x31, 0x32, 0x2e, + 0x35, 0x38, 0x32, 0x30, 0x35, 0x39, 0x2c, 0x37, + 0x2e, 0x37, 0x38, 0x37, 0x38, 0x35, 0x31, 0x38, + 0x20, 0x31, 0x33, 0x2e, 0x30, 0x34, 0x31, 0x30, + 0x34, 0x34, 0x2c, 0x37, 0x2e, 0x39, 0x31, 0x30, + 0x38, 0x33, 0x37, 0x32, 0x20, 0x31, 0x33, 0x2e, + 0x32, 0x34, 0x38, 0x30, 0x34, 0x34, 0x2c, 0x38, + 0x2e, 0x32, 0x36, 0x39, 0x33, 0x37, 0x30, 0x38, + 0x20, 0x43, 0x20, 0x31, 0x33, 0x2e, 0x34, 0x35, + 0x35, 0x30, 0x34, 0x34, 0x2c, 0x38, 0x2e, 0x36, + 0x32, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, 0x31, + 0x33, 0x2e, 0x33, 0x33, 0x32, 0x30, 0x35, 0x39, + 0x2c, 0x39, 0x2e, 0x30, 0x38, 0x36, 0x38, 0x38, + 0x39, 0x39, 0x20, 0x31, 0x32, 0x2e, 0x39, 0x37, + 0x33, 0x35, 0x32, 0x35, 0x2c, 0x39, 0x2e, 0x32, + 0x39, 0x33, 0x38, 0x38, 0x39, 0x39, 0x20, 0x43, + 0x20, 0x31, 0x32, 0x2e, 0x36, 0x31, 0x34, 0x39, + 0x39, 0x2c, 0x39, 0x2e, 0x35, 0x30, 0x30, 0x38, + 0x38, 0x39, 0x39, 0x20, 0x31, 0x32, 0x2e, 0x31, + 0x35, 0x36, 0x30, 0x30, 0x36, 0x2c, 0x39, 0x2e, + 0x33, 0x37, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, + 0x31, 0x31, 0x2e, 0x39, 0x34, 0x39, 0x30, 0x30, + 0x36, 0x2c, 0x39, 0x2e, 0x30, 0x31, 0x39, 0x33, + 0x37, 0x30, 0x38, 0x20, 0x43, 0x20, 0x31, 0x31, + 0x2e, 0x37, 0x34, 0x32, 0x30, 0x30, 0x36, 0x2c, + 0x38, 0x2e, 0x36, 0x36, 0x30, 0x38, 0x33, 0x37, + 0x32, 0x20, 0x31, 0x31, 0x2e, 0x38, 0x36, 0x34, + 0x39, 0x39, 0x2c, 0x38, 0x2e, 0x32, 0x30, 0x31, + 0x38, 0x35, 0x31, 0x38, 0x20, 0x31, 0x32, 0x2e, + 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, 0x2c, 0x37, + 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, 0x31, 0x38, + 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, 0x36, 0x36, + 0x39, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x35, 0x36, 0x37, 0x33, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x32, + 0x36, 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, + 0x2c, 0x32, 0x33, 0x2e, 0x30, 0x32, 0x36, 0x34, + 0x37, 0x36, 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, + 0x39, 0x31, 0x33, 0x31, 0x31, 0x31, 0x2c, 0x32, + 0x32, 0x2e, 0x36, 0x36, 0x37, 0x39, 0x34, 0x32, + 0x20, 0x32, 0x37, 0x2e, 0x33, 0x37, 0x32, 0x30, + 0x39, 0x37, 0x2c, 0x32, 0x32, 0x2e, 0x35, 0x34, + 0x34, 0x39, 0x35, 0x38, 0x20, 0x32, 0x37, 0x2e, + 0x37, 0x33, 0x30, 0x36, 0x33, 0x31, 0x2c, 0x32, + 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, 0x35, 0x37, + 0x20, 0x43, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x38, + 0x39, 0x31, 0x36, 0x35, 0x2c, 0x32, 0x32, 0x2e, + 0x39, 0x35, 0x38, 0x39, 0x35, 0x37, 0x20, 0x32, + 0x38, 0x2e, 0x32, 0x31, 0x32, 0x31, 0x35, 0x2c, + 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, 0x39, 0x34, + 0x32, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x30, 0x35, + 0x31, 0x35, 0x2c, 0x32, 0x33, 0x2e, 0x37, 0x37, + 0x36, 0x34, 0x37, 0x36, 0x20, 0x43, 0x20, 0x32, + 0x37, 0x2e, 0x37, 0x39, 0x38, 0x31, 0x35, 0x2c, + 0x32, 0x34, 0x2e, 0x31, 0x33, 0x35, 0x30, 0x31, + 0x31, 0x20, 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, + 0x31, 0x36, 0x35, 0x2c, 0x32, 0x34, 0x2e, 0x32, + 0x35, 0x37, 0x39, 0x39, 0x35, 0x20, 0x32, 0x36, + 0x2e, 0x39, 0x38, 0x30, 0x36, 0x33, 0x31, 0x2c, + 0x32, 0x34, 0x2e, 0x30, 0x35, 0x30, 0x39, 0x39, + 0x35, 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, 0x36, + 0x32, 0x32, 0x30, 0x39, 0x37, 0x2c, 0x32, 0x33, + 0x2e, 0x38, 0x34, 0x33, 0x39, 0x39, 0x36, 0x20, + 0x32, 0x36, 0x2e, 0x34, 0x39, 0x39, 0x31, 0x31, + 0x31, 0x2c, 0x32, 0x33, 0x2e, 0x33, 0x38, 0x35, + 0x30, 0x31, 0x31, 0x20, 0x32, 0x36, 0x2e, 0x37, + 0x30, 0x36, 0x31, 0x31, 0x31, 0x2c, 0x32, 0x33, + 0x2e, 0x30, 0x32, 0x36, 0x34, 0x37, 0x36, 0x20, + 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, + 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, + 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, + 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x35, 0x36, 0x37, 0x35, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x37, 0x2e, 0x39, 0x39, + 0x34, 0x38, 0x35, 0x31, 0x38, 0x2c, 0x31, 0x32, + 0x2e, 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, 0x20, + 0x43, 0x20, 0x38, 0x2e, 0x32, 0x30, 0x31, 0x38, + 0x35, 0x31, 0x38, 0x2c, 0x31, 0x31, 0x2e, 0x38, + 0x36, 0x34, 0x39, 0x39, 0x31, 0x20, 0x38, 0x2e, + 0x36, 0x36, 0x30, 0x38, 0x33, 0x37, 0x32, 0x2c, + 0x31, 0x31, 0x2e, 0x37, 0x34, 0x32, 0x30, 0x30, + 0x37, 0x20, 0x39, 0x2e, 0x30, 0x31, 0x39, 0x33, + 0x37, 0x30, 0x38, 0x2c, 0x31, 0x31, 0x2e, 0x39, + 0x34, 0x39, 0x30, 0x30, 0x36, 0x20, 0x43, 0x20, + 0x39, 0x2e, 0x33, 0x37, 0x37, 0x39, 0x30, 0x35, + 0x34, 0x2c, 0x31, 0x32, 0x2e, 0x31, 0x35, 0x36, + 0x30, 0x30, 0x36, 0x20, 0x39, 0x2e, 0x35, 0x30, + 0x30, 0x38, 0x38, 0x39, 0x39, 0x2c, 0x31, 0x32, + 0x2e, 0x36, 0x31, 0x34, 0x39, 0x39, 0x31, 0x20, + 0x39, 0x2e, 0x32, 0x39, 0x33, 0x38, 0x38, 0x39, + 0x39, 0x2c, 0x31, 0x32, 0x2e, 0x39, 0x37, 0x33, + 0x35, 0x32, 0x35, 0x20, 0x43, 0x20, 0x39, 0x2e, + 0x30, 0x38, 0x36, 0x38, 0x38, 0x39, 0x39, 0x2c, + 0x31, 0x33, 0x2e, 0x33, 0x33, 0x32, 0x30, 0x36, + 0x20, 0x38, 0x2e, 0x36, 0x32, 0x37, 0x39, 0x30, + 0x35, 0x34, 0x2c, 0x31, 0x33, 0x2e, 0x34, 0x35, + 0x35, 0x30, 0x34, 0x34, 0x20, 0x38, 0x2e, 0x32, + 0x36, 0x39, 0x33, 0x37, 0x30, 0x38, 0x2c, 0x31, + 0x33, 0x2e, 0x32, 0x34, 0x38, 0x30, 0x34, 0x34, + 0x20, 0x43, 0x20, 0x37, 0x2e, 0x39, 0x31, 0x30, + 0x38, 0x33, 0x37, 0x32, 0x2c, 0x31, 0x33, 0x2e, + 0x30, 0x34, 0x31, 0x30, 0x34, 0x35, 0x20, 0x37, + 0x2e, 0x37, 0x38, 0x37, 0x38, 0x35, 0x31, 0x38, + 0x2c, 0x31, 0x32, 0x2e, 0x35, 0x38, 0x32, 0x30, + 0x36, 0x20, 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, + 0x35, 0x31, 0x38, 0x2c, 0x31, 0x32, 0x2e, 0x32, + 0x32, 0x33, 0x35, 0x32, 0x35, 0x20, 0x7a, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x38, + 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, + 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, + 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x67, + 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x2f, 0x67, 0x3e, + 0x0a, 0x3c, 0x2f, 0x73, 0x76, 0x67, 0x3e, 0x0a, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x2f, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, + 0x70, 0x61, 0x6e, 0x65, 0x6c, 0x2f, 0x00, 0x00, + 0x0b, 0x00, 0x00, 0x00, 0x63, 0x6c, 0x6f, 0x63, + 0x6b, 0x2f, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, + 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x2e, 0x75, 0x69, + 0x69, 0xbd, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x78, 0xda, 0xed, 0x5d, 0x59, 0x8f, 0xe3, 0x36, + 0x12, 0x7e, 0xcf, 0xaf, 0xd0, 0x6a, 0x81, 0xc1, + 0x06, 0x1b, 0x8f, 0x6d, 0xd9, 0x3d, 0x67, 0xb7, + 0x83, 0x64, 0x92, 0x99, 0x04, 0xdb, 0x18, 0x0c, + 0x32, 0x8d, 0xcc, 0xa3, 0x40, 0x4b, 0x6c, 0x8b, + 0x69, 0x4a, 0x54, 0x48, 0xaa, 0xdd, 0xce, 0xaf, + 0x5f, 0x52, 0x92, 0xe5, 0x4b, 0xf7, 0x61, 0xcb, + 0x6e, 0xbe, 0x59, 0xb2, 0x58, 0xaa, 0xa2, 0xf8, + 0xd5, 0x41, 0x56, 0x91, 0xd7, 0x3f, 0x3e, 0xb9, + 0x58, 0x7b, 0x84, 0x94, 0x21, 0xe2, 0xdd, 0xe8, + 0xe3, 0x97, 0x23, 0xfd, 0xc7, 0xd9, 0x77, 0xd7, + 0xc8, 0xe3, 0x90, 0xde, 0x03, 0x0b, 0xce, 0xbe, + 0xd3, 0xb4, 0x6b, 0x0a, 0xff, 0x0e, 0x10, 0x85, + 0x4c, 0xc3, 0x68, 0x7e, 0xa3, 0x2f, 0xf8, 0xc3, + 0x7f, 0xf5, 0x4d, 0x13, 0xe3, 0xe5, 0xf8, 0x95, + 0x3e, 0x0c, 0x9f, 0xfb, 0xd7, 0x60, 0xa0, 0x25, + 0x2d, 0x07, 0x1e, 0x70, 0x91, 0xb7, 0x18, 0xf8, + 0x04, 0x23, 0x6b, 0xa5, 0x71, 0xe2, 0x63, 0xf8, + 0x08, 0xf1, 0xc0, 0x22, 0xe2, 0x89, 0x27, 0x1e, + 0x00, 0xac, 0x0d, 0x06, 0x61, 0x33, 0x32, 0xff, + 0x0b, 0x5a, 0x5c, 0xb3, 0x30, 0x60, 0xec, 0x46, + 0xff, 0xc4, 0x1f, 0x7e, 0x41, 0x00, 0x93, 0x85, + 0xae, 0x21, 0xfb, 0x46, 0x87, 0x36, 0xe2, 0x03, + 0x4c, 0x2c, 0xc0, 0xc5, 0xdb, 0x06, 0x4b, 0xe4, + 0xd9, 0x64, 0xa9, 0xcb, 0x66, 0xa2, 0xa1, 0x4f, + 0x89, 0x0f, 0x29, 0x5f, 0x69, 0xe2, 0x55, 0xf0, + 0x46, 0x9f, 0x13, 0x6a, 0x43, 0x6a, 0x2e, 0x91, + 0xcd, 0x1d, 0x7d, 0x76, 0x75, 0x3d, 0x5c, 0xff, + 0x9f, 0xfe, 0xb8, 0x10, 0x08, 0xfd, 0x03, 0xe6, + 0x18, 0xea, 0xb3, 0x8f, 0x00, 0x33, 0x58, 0xf4, + 0x3c, 0x5f, 0xf9, 0xd0, 0x74, 0x84, 0x7c, 0xfa, + 0xcc, 0x0e, 0x19, 0x3c, 0x68, 0x60, 0x39, 0x08, + 0xdb, 0x51, 0x0f, 0x78, 0x40, 0x48, 0x2a, 0x2f, + 0x6f, 0xf4, 0xc7, 0x39, 0x79, 0x8a, 0x39, 0x4e, + 0x13, 0xf6, 0xcf, 0x9f, 0xc5, 0xdf, 0xa1, 0xa8, + 0x11, 0xd5, 0x81, 0x7c, 0x7e, 0x92, 0x34, 0x38, + 0xe4, 0xe3, 0x11, 0x31, 0x14, 0x72, 0x7d, 0x47, + 0x83, 0x03, 0xa6, 0xd3, 0x1a, 0x10, 0x8a, 0xa0, + 0xc7, 0xc3, 0x0e, 0xd4, 0x67, 0xe2, 0xbb, 0x71, + 0x64, 0x01, 0x9c, 0xda, 0x30, 0xe4, 0x78, 0x73, + 0x9d, 0xc6, 0xee, 0x5d, 0xd8, 0x63, 0x21, 0xbf, + 0x5c, 0xfe, 0x34, 0x5e, 0xe9, 0xdb, 0x0d, 0x6a, + 0xb0, 0x9b, 0xd6, 0xc8, 0x33, 0x2d, 0x82, 0x03, + 0xd7, 0x63, 0xfa, 0x6c, 0x52, 0xb6, 0x4d, 0xd4, + 0xc2, 0x64, 0x3e, 0xb0, 0xc4, 0xb8, 0xd3, 0x67, + 0xaf, 0xca, 0x36, 0xa4, 0x64, 0x59, 0xa6, 0xd5, + 0x41, 0xe7, 0x14, 0x7d, 0xcf, 0xf0, 0x43, 0x4e, + 0xf5, 0xfd, 0x26, 0x35, 0xbb, 0xa8, 0xd1, 0x97, + 0xcd, 0x22, 0x50, 0x2c, 0x76, 0xb6, 0xe8, 0xe9, + 0xe2, 0x7f, 0xb5, 0x28, 0xc1, 0x18, 0xda, 0xdf, + 0x22, 0xa4, 0x86, 0x1d, 0xc1, 0xe2, 0x7b, 0x11, + 0x7a, 0xc7, 0x86, 0x9e, 0x46, 0xaa, 0x41, 0xb7, + 0xa4, 0x8e, 0x06, 0xe0, 0x99, 0xf7, 0xc4, 0x0a, + 0x58, 0xbd, 0xe6, 0x4e, 0xc4, 0xf3, 0x1c, 0x50, + 0x33, 0x52, 0x60, 0xfa, 0xcc, 0x13, 0xea, 0x8b, + 0x56, 0xa5, 0xf3, 0x58, 0x97, 0x4e, 0x66, 0x97, + 0x67, 0x8c, 0x3a, 0x04, 0x97, 0x3e, 0xa1, 0x3c, + 0x1e, 0x79, 0xf1, 0xd5, 0x44, 0xcf, 0xa2, 0xd0, + 0xb0, 0xb7, 0x53, 0xc7, 0x92, 0x03, 0xc4, 0xd7, + 0x35, 0xa5, 0x9a, 0x14, 0x42, 0x12, 0xaf, 0x1c, + 0x91, 0x5c, 0x39, 0xd3, 0x65, 0xfd, 0xdd, 0x05, + 0x8b, 0x58, 0x05, 0x21, 0xf9, 0x73, 0x32, 0xd2, + 0xf3, 0x08, 0xa4, 0x70, 0xca, 0x89, 0xf5, 0xa0, + 0xcf, 0x84, 0x21, 0x1b, 0xb8, 0x88, 0x31, 0x69, + 0xa5, 0x42, 0x42, 0x65, 0x18, 0x16, 0xd4, 0x86, + 0x11, 0x47, 0x39, 0x42, 0x0d, 0xf3, 0xbf, 0x5e, + 0x2e, 0x81, 0x9c, 0xc6, 0x79, 0x0d, 0xaf, 0x05, + 0x92, 0x1f, 0x84, 0x24, 0xe5, 0x86, 0xa5, 0x4f, + 0x18, 0x8a, 0xb4, 0xc6, 0x28, 0x5f, 0x68, 0xf1, + 0x6f, 0x16, 0xdd, 0x4c, 0x46, 0xab, 0xa8, 0x8b, + 0x03, 0x73, 0xf2, 0xfa, 0x18, 0xca, 0xa1, 0xc0, + 0x53, 0x28, 0x6a, 0xee, 0x99, 0xc2, 0x64, 0xb0, + 0x5a, 0x0d, 0x13, 0xb3, 0x36, 0xad, 0xac, 0xd0, + 0xca, 0x9a, 0xb7, 0x66, 0x66, 0xae, 0xae, 0x02, + 0xba, 0x05, 0x73, 0x88, 0xa3, 0x0f, 0x89, 0xe5, + 0x4f, 0x63, 0x7a, 0x54, 0xe5, 0xf3, 0x04, 0x30, + 0x5a, 0x14, 0x0f, 0xe7, 0xf4, 0xc6, 0x38, 0xe2, + 0x9d, 0x53, 0xe0, 0x31, 0x0c, 0xc2, 0x71, 0x78, + 0xa3, 0xaf, 0x20, 0xd3, 0x35, 0x8b, 0xb8, 0xae, + 0xb0, 0xb0, 0x42, 0xc4, 0x5b, 0xe0, 0x2d, 0x02, + 0xa1, 0x23, 0x98, 0xc6, 0x1d, 0xc0, 0x35, 0x07, + 0x3c, 0x42, 0x0d, 0x68, 0x52, 0x77, 0x60, 0xa8, + 0x2d, 0xc5, 0x78, 0x8a, 0xee, 0xaf, 0x69, 0x88, + 0xe7, 0x00, 0xd3, 0x20, 0xe2, 0x0e, 0xa4, 0xda, + 0x8b, 0xbf, 0x03, 0xc2, 0xdf, 0x33, 0x61, 0xa8, + 0x61, 0xf4, 0x53, 0x23, 0xeb, 0x9b, 0x82, 0x93, + 0x47, 0xe4, 0x59, 0xeb, 0xfb, 0xcc, 0x21, 0x81, + 0x70, 0x21, 0x03, 0x06, 0x23, 0x72, 0xc8, 0x63, + 0x1c, 0x02, 0x5b, 0x23, 0xf7, 0xf1, 0xf3, 0x14, + 0x2e, 0x04, 0x6c, 0xa3, 0xdf, 0x2f, 0xf5, 0xd9, + 0x0b, 0x2c, 0xe8, 0xba, 0x00, 0xe3, 0x17, 0x0b, + 0xfe, 0x5e, 0x5e, 0x20, 0xf9, 0xe3, 0x4e, 0xa8, + 0x60, 0xc1, 0x9c, 0x85, 0xf8, 0xea, 0x07, 0x2d, + 0x6a, 0xf1, 0x83, 0x7c, 0xa5, 0x45, 0x02, 0x8f, + 0xd3, 0x48, 0x6a, 0x0d, 0x78, 0x92, 0x65, 0xe8, + 0x69, 0x0c, 0x62, 0xf9, 0x29, 0x81, 0xe6, 0x02, + 0x6e, 0x39, 0xda, 0x3d, 0x25, 0xae, 0xfc, 0x43, + 0xf3, 0x89, 0x3f, 0x08, 0xfc, 0x97, 0x92, 0xea, + 0x10, 0xad, 0xe9, 0x0f, 0x93, 0xb7, 0xd5, 0xe9, + 0x68, 0x21, 0x97, 0xe9, 0x02, 0xfa, 0x10, 0xf8, + 0xf5, 0xbf, 0xf4, 0x92, 0x82, 0xd2, 0xad, 0x8b, + 0x54, 0x75, 0xbe, 0xd2, 0x4c, 0x1d, 0x2a, 0xf0, + 0x9e, 0x9b, 0x80, 0x73, 0x60, 0x09, 0xc5, 0x31, + 0xae, 0xc3, 0x3f, 0x45, 0x0b, 0x67, 0x43, 0x62, + 0x5a, 0x87, 0x84, 0x88, 0xa5, 0x9a, 0xf1, 0x30, + 0x27, 0x9c, 0x13, 0x37, 0xa1, 0x61, 0xd4, 0x42, + 0x9c, 0x49, 0x7c, 0x69, 0x42, 0x84, 0x2e, 0xfb, + 0x74, 0xf7, 0x3f, 0xf3, 0xe3, 0xef, 0xb7, 0xb7, + 0x75, 0xc8, 0xac, 0x36, 0x64, 0xca, 0x7c, 0xcf, + 0x7c, 0x2b, 0x97, 0x67, 0x77, 0x2b, 0x7b, 0x54, + 0x89, 0x1f, 0xbf, 0x1b, 0x82, 0x4a, 0xb6, 0x07, + 0xdb, 0x21, 0xdd, 0x11, 0xb4, 0x5b, 0x65, 0x3f, + 0xbf, 0x82, 0x7b, 0xe5, 0x63, 0x11, 0xac, 0x3b, + 0x04, 0x0b, 0x83, 0x38, 0xec, 0xc8, 0xa5, 0x39, + 0x5b, 0xa0, 0xb5, 0x3f, 0xc6, 0xcb, 0x93, 0xe9, + 0xc3, 0x58, 0xe7, 0xc8, 0x85, 0xff, 0x08, 0x4f, + 0x5e, 0x8d, 0xf7, 0xe7, 0x67, 0x58, 0x8c, 0x16, + 0x0c, 0xcb, 0x44, 0x81, 0xae, 0x94, 0xc7, 0x9c, + 0xe0, 0x2c, 0xf2, 0x44, 0xcf, 0xde, 0x6f, 0x9e, + 0x99, 0x77, 0xb1, 0x44, 0xef, 0xea, 0xba, 0x89, + 0x81, 0x27, 0x00, 0x8a, 0x91, 0x07, 0x4f, 0xe7, + 0xeb, 0x5d, 0x28, 0x1a, 0x7a, 0x8b, 0x82, 0x5d, + 0x17, 0xeb, 0x62, 0xa0, 0x70, 0x1b, 0x8b, 0xa5, + 0x7d, 0x16, 0x4f, 0x9e, 0x33, 0x1e, 0x2e, 0x7d, + 0x28, 0xfe, 0x2a, 0x83, 0xe3, 0x34, 0x37, 0x48, + 0x7c, 0x50, 0xc4, 0x03, 0x1b, 0x0e, 0x60, 0xf8, + 0xc4, 0x11, 0xc7, 0x64, 0xc5, 0x59, 0xec, 0x34, + 0x12, 0xc8, 0x8b, 0xb9, 0x30, 0x2d, 0x07, 0x50, + 0x7d, 0xf6, 0xe2, 0xdf, 0x4f, 0xc6, 0xc8, 0x30, + 0xde, 0x5f, 0x42, 0xf4, 0x6c, 0x34, 0x75, 0x72, + 0x26, 0x2d, 0xa8, 0xf5, 0xe9, 0x45, 0x81, 0xe0, + 0x03, 0x71, 0xe7, 0x24, 0x23, 0x1c, 0x48, 0x70, + 0x60, 0xc9, 0x87, 0x8e, 0x89, 0x03, 0x97, 0xd8, + 0xd2, 0x18, 0x60, 0xc4, 0x38, 0xe3, 0x84, 0x42, + 0xa3, 0xab, 0xb5, 0x85, 0x0f, 0x10, 0xe3, 0x3f, + 0xa0, 0xd4, 0xb5, 0x90, 0xde, 0xc1, 0xa7, 0x78, + 0x3d, 0xc5, 0x12, 0x77, 0x69, 0x7c, 0x57, 0x2e, + 0x5e, 0x1b, 0xfa, 0x30, 0x97, 0xac, 0x18, 0x1a, + 0x14, 0xcd, 0x03, 0x0e, 0x59, 0xc1, 0xc2, 0x44, + 0xf2, 0xe0, 0x7a, 0x6c, 0xca, 0x57, 0x4a, 0x0b, + 0x94, 0xfc, 0x91, 0xbf, 0x12, 0x51, 0xe6, 0x45, + 0xa7, 0x0d, 0x65, 0x8c, 0xe6, 0x28, 0x9f, 0x9c, + 0x2d, 0xca, 0x9f, 0x61, 0x28, 0x13, 0x4f, 0xfe, + 0x8f, 0x2e, 0xc0, 0x73, 0x4b, 0xe6, 0xd3, 0xff, + 0x13, 0x75, 0x3f, 0xc0, 0xdf, 0x6f, 0x26, 0xc3, + 0x8f, 0x33, 0xfd, 0xdd, 0x31, 0x38, 0x27, 0x3d, + 0x98, 0x67, 0xb8, 0x20, 0x70, 0xf6, 0x1c, 0x94, + 0x93, 0xb7, 0x0a, 0x94, 0x0a, 0x94, 0xa5, 0x40, + 0x39, 0x6d, 0x01, 0x94, 0x57, 0x0a, 0x94, 0x15, + 0xdd, 0x6b, 0xe2, 0x2d, 0x7a, 0xe2, 0x5f, 0x8f, + 0x4f, 0xeb, 0x5f, 0x8f, 0x95, 0x7f, 0x7d, 0x4e, + 0xfe, 0xf5, 0x05, 0x69, 0x8b, 0x7e, 0xfa, 0xd7, + 0xd9, 0x33, 0x53, 0x89, 0xca, 0x50, 0x53, 0x53, + 0x17, 0x36, 0x35, 0x75, 0x32, 0x50, 0x9d, 0x91, + 0x43, 0xfb, 0xe6, 0x02, 0x1c, 0xda, 0x5b, 0x73, + 0x8d, 0xe1, 0xe3, 0xad, 0x0d, 0xa4, 0x38, 0x00, + 0x1e, 0x74, 0x89, 0x87, 0x2c, 0x99, 0x13, 0xb9, + 0x80, 0xc2, 0x46, 0xe6, 0xea, 0x99, 0x53, 0xaf, + 0xc6, 0x29, 0xf7, 0xb4, 0xf3, 0x44, 0x90, 0xb0, + 0x78, 0xe1, 0xea, 0x3c, 0x92, 0x3e, 0x6a, 0x15, + 0x35, 0x64, 0xb5, 0x76, 0x88, 0x4b, 0x16, 0xd0, + 0x83, 0xa4, 0x92, 0x65, 0xab, 0xe1, 0x0a, 0x1f, + 0xaa, 0xb3, 0xd7, 0x15, 0xf3, 0xd8, 0x2b, 0x77, + 0x79, 0x63, 0xb5, 0x56, 0x55, 0xb5, 0xc5, 0x0b, + 0x06, 0xef, 0xea, 0xd2, 0xae, 0xa9, 0xdd, 0xea, + 0x68, 0xb8, 0x9d, 0x35, 0xbe, 0xb6, 0x2a, 0x01, + 0xca, 0x28, 0xba, 0x34, 0x66, 0xe1, 0x93, 0x0f, + 0x3c, 0x3b, 0xa3, 0x30, 0xad, 0x2c, 0x91, 0x7b, + 0x84, 0x71, 0x43, 0x12, 0xa5, 0xeb, 0x04, 0x4a, + 0x2a, 0xab, 0x93, 0xc4, 0x4b, 0xe7, 0x3b, 0xdb, + 0xd8, 0xa1, 0xea, 0x2f, 0x4e, 0x83, 0x3b, 0x72, + 0x21, 0xca, 0xb8, 0xed, 0x42, 0x94, 0x2c, 0x26, + 0xb3, 0x19, 0x6c, 0x10, 0x26, 0xd7, 0xb2, 0xf0, + 0x19, 0x32, 0xa5, 0xc8, 0x93, 0x26, 0x4b, 0xba, + 0x1c, 0x95, 0x3b, 0x38, 0x85, 0x89, 0x03, 0x06, + 0x32, 0x2a, 0x5b, 0x81, 0x25, 0x29, 0x9b, 0x80, + 0x42, 0xa0, 0xe7, 0x57, 0x8d, 0xfe, 0xf6, 0x73, + 0x20, 0x20, 0xe4, 0xed, 0x97, 0xba, 0x6e, 0x11, + 0x98, 0xb4, 0x52, 0x46, 0x5a, 0xb2, 0x46, 0x33, + 0xe2, 0x26, 0x2d, 0xa0, 0x16, 0x51, 0xad, 0x05, + 0xf1, 0x60, 0x1e, 0x3d, 0x50, 0xfc, 0x9d, 0xe3, + 0x2c, 0x25, 0x59, 0x4a, 0x16, 0x35, 0xad, 0x32, + 0x48, 0x6a, 0xd7, 0x7d, 0x56, 0x88, 0xbd, 0xd3, + 0x9a, 0xda, 0xf0, 0x1e, 0x04, 0x98, 0x57, 0x6f, + 0x4c, 0xa1, 0x05, 0xd1, 0x23, 0x64, 0x1b, 0x0a, + 0x85, 0xd6, 0x25, 0xcd, 0xa2, 0xc7, 0xf5, 0x77, + 0xf9, 0x6f, 0x6f, 0x0e, 0xdf, 0xd2, 0x46, 0xb4, + 0xa6, 0xe1, 0xac, 0x65, 0x2c, 0xcb, 0x63, 0xbe, + 0x8d, 0xe1, 0x4c, 0x1e, 0x6a, 0x0d, 0x65, 0xf2, + 0xa0, 0x86, 0xb1, 0x1a, 0xc6, 0x79, 0x26, 0xf9, + 0x18, 0xa6, 0xab, 0x94, 0xe0, 0x07, 0xdc, 0x0b, + 0xca, 0x71, 0x0d, 0x32, 0xf4, 0xec, 0xd2, 0xad, + 0x8a, 0xa0, 0x5b, 0x6c, 0x25, 0x77, 0xe5, 0xdc, + 0xf9, 0xf3, 0x3a, 0xb2, 0x73, 0x83, 0x28, 0xf2, + 0x48, 0x96, 0x12, 0x76, 0x6f, 0x6b, 0x14, 0x32, + 0x5f, 0x38, 0x0c, 0x82, 0x9b, 0xc1, 0xab, 0xfd, + 0xe8, 0x64, 0xc7, 0x2c, 0x5d, 0x0f, 0x77, 0x1a, + 0x16, 0x93, 0xbb, 0xda, 0x27, 0x97, 0xa8, 0x85, + 0x54, 0x52, 0x7b, 0x37, 0x43, 0x7e, 0xb7, 0xa5, + 0x4b, 0x09, 0x65, 0x11, 0xe3, 0x5f, 0xe5, 0xba, + 0x51, 0x1c, 0xce, 0x26, 0xcb, 0x48, 0xeb, 0x9d, + 0x3a, 0xe2, 0xb2, 0xd7, 0x84, 0x55, 0xb9, 0x53, + 0x48, 0x74, 0x2f, 0x4c, 0xf6, 0xd5, 0x10, 0x87, + 0x6e, 0xbc, 0x1d, 0xc8, 0xd6, 0xf3, 0x9a, 0xfc, + 0x8e, 0x37, 0xfa, 0x42, 0xce, 0x0e, 0x03, 0x4a, + 0xc1, 0x6a, 0xbd, 0x2c, 0x24, 0x7a, 0x77, 0x9b, + 0xe0, 0xb5, 0x2d, 0xc2, 0xce, 0xa4, 0x2d, 0x25, + 0xcb, 0x6d, 0xcf, 0x85, 0xe0, 0x90, 0xa7, 0x51, + 0x6a, 0x84, 0xfa, 0x2b, 0x60, 0x3c, 0x24, 0xb6, + 0xf9, 0x8a, 0x5b, 0xcd, 0x2b, 0x91, 0xfa, 0x06, + 0xb3, 0x49, 0x5d, 0x0f, 0xd7, 0x1c, 0xd6, 0xeb, + 0x47, 0xa3, 0xef, 0xfd, 0xf8, 0x99, 0x50, 0xee, + 0xb4, 0xd4, 0x91, 0x5f, 0x49, 0x90, 0x4d, 0xab, + 0x6c, 0x4f, 0x6e, 0x6f, 0x21, 0xe3, 0x53, 0x78, + 0xcf, 0x5a, 0xdd, 0x3a, 0x86, 0x23, 0x2e, 0xab, + 0xd6, 0x53, 0x98, 0xff, 0x20, 0x30, 0xf6, 0xa0, + 0x7d, 0x11, 0x6f, 0x84, 0x14, 0x0a, 0xcc, 0xb2, + 0xb6, 0x77, 0xa1, 0x89, 0xc4, 0x30, 0x37, 0x0a, + 0xcb, 0x82, 0xd2, 0x2b, 0xef, 0xd3, 0xe6, 0x35, + 0xe3, 0xd3, 0x6c, 0x5e, 0x93, 0x35, 0x0b, 0x68, + 0xd4, 0xdd, 0xea, 0xe6, 0x33, 0xe1, 0x70, 0x4e, + 0xc8, 0x43, 0x24, 0xa0, 0xb7, 0xbe, 0xea, 0x60, + 0xbb, 0x9b, 0x92, 0x8e, 0x50, 0xcd, 0x6d, 0x0c, + 0xea, 0xed, 0x5c, 0x33, 0x7e, 0xdd, 0xe5, 0xce, + 0x35, 0xbb, 0xac, 0x8f, 0x8d, 0xd3, 0xec, 0x7a, + 0x33, 0x7e, 0xd3, 0xd6, 0xb6, 0x37, 0x9b, 0xbe, + 0xb3, 0xa4, 0x06, 0x18, 0x24, 0xd1, 0x7f, 0xf7, + 0x9b, 0x59, 0xd4, 0x9a, 0x37, 0xaf, 0x3f, 0x67, + 0xde, 0x78, 0xd5, 0x6e, 0x7c, 0x09, 0xb9, 0xa1, + 0x91, 0x9e, 0xff, 0x48, 0xa8, 0x0b, 0x78, 0x29, + 0xca, 0xe5, 0x52, 0x56, 0x0e, 0x12, 0x56, 0x96, + 0x50, 0xce, 0x41, 0xe9, 0xda, 0x23, 0xc0, 0x41, + 0x08, 0x1b, 0x6c, 0xeb, 0xb9, 0x65, 0xab, 0xc5, + 0xef, 0x69, 0x7f, 0x82, 0xb5, 0xf2, 0x6c, 0x75, + 0xc3, 0x99, 0xea, 0x46, 0xb3, 0xd4, 0xc7, 0x5c, + 0x4e, 0xfb, 0x49, 0x8e, 0x3d, 0xb9, 0x81, 0x48, + 0x34, 0xfe, 0xc1, 0xfa, 0x72, 0x62, 0x1c, 0x13, + 0x02, 0x61, 0x6a, 0x83, 0x0f, 0x6c, 0x3b, 0xd2, + 0x79, 0x9d, 0xd5, 0x4e, 0xfc, 0x96, 0xe8, 0x40, + 0x47, 0xd8, 0x8f, 0xe9, 0xdb, 0x53, 0xac, 0x66, + 0x6d, 0x54, 0xfb, 0xa4, 0x34, 0x89, 0x42, 0x51, + 0xd3, 0xc5, 0xfd, 0x03, 0xd8, 0x88, 0x6c, 0x4f, + 0xbd, 0x8c, 0x0d, 0x87, 0x9a, 0x54, 0xde, 0xd5, + 0x8b, 0xa8, 0x55, 0x2a, 0x20, 0x1c, 0x1b, 0x9a, + 0x43, 0x02, 0xaa, 0xdd, 0x97, 0xd6, 0x36, 0xad, + 0x76, 0x71, 0x4b, 0xc9, 0x3f, 0x2d, 0x4e, 0xc6, + 0x74, 0xb8, 0x6a, 0x98, 0x46, 0xce, 0xa6, 0x60, + 0x69, 0x0a, 0xb7, 0x5b, 0xd8, 0x55, 0x11, 0x8c, + 0x55, 0xa5, 0x57, 0x66, 0x91, 0xb0, 0xfc, 0x42, + 0x61, 0x6b, 0x8b, 0x85, 0x2d, 0x2d, 0x18, 0xb6, + 0xb2, 0x68, 0x58, 0x72, 0xe1, 0xb0, 0xc4, 0xe2, + 0x61, 0xcb, 0x88, 0x36, 0xa6, 0xdd, 0x20, 0xda, + 0x98, 0x2a, 0x44, 0x9f, 0x2f, 0xa2, 0x0f, 0xe9, + 0x2d, 0x28, 0x91, 0xe5, 0x03, 0x1b, 0x03, 0xa0, + 0xd4, 0x43, 0x0b, 0x4b, 0xbe, 0xdd, 0xa8, 0x87, + 0x8e, 0xb7, 0x6f, 0xac, 0xe3, 0x3f, 0x57, 0xea, + 0x91, 0xfa, 0xfe, 0x6b, 0x7b, 0xab, 0xf6, 0x95, + 0x86, 0x54, 0x6f, 0xf7, 0x9e, 0xdc, 0x9d, 0xef, + 0x30, 0xde, 0xaa, 0x60, 0xfd, 0x30, 0x58, 0x37, + 0x2e, 0xa1, 0x66, 0xec, 0x0b, 0xf0, 0x20, 0xd6, + 0x7e, 0x41, 0xcc, 0xc7, 0x60, 0xa5, 0xa2, 0x75, + 0x15, 0xad, 0x57, 0x8c, 0xd6, 0x27, 0x97, 0x18, + 0xad, 0xef, 0xa5, 0xfa, 0x8e, 0x4e, 0x11, 0xad, + 0xd7, 0x4e, 0xf9, 0x6d, 0x9e, 0xf6, 0xdb, 0x24, + 0x4e, 0xf8, 0xe0, 0x40, 0x6b, 0x27, 0xe9, 0xc2, + 0x06, 0x5c, 0xd6, 0xb0, 0x40, 0xeb, 0xa1, 0xd5, + 0x38, 0xe1, 0xab, 0x43, 0x96, 0xe1, 0x56, 0xac, + 0xa6, 0x7c, 0x81, 0x0a, 0x13, 0x54, 0xe0, 0xaf, + 0x02, 0xff, 0xe3, 0x00, 0x9a, 0x41, 0x8b, 0x78, + 0x36, 0xeb, 0x0a, 0xd3, 0x92, 0xbc, 0x29, 0xe8, + 0x2b, 0x48, 0x2b, 0x48, 0xab, 0x60, 0xfd, 0x38, + 0x90, 0x5e, 0x42, 0x20, 0x37, 0x63, 0xef, 0x0a, + 0xd2, 0x66, 0x4c, 0x5f, 0x41, 0x5a, 0x41, 0xfa, + 0x5c, 0x20, 0x6d, 0x9c, 0x39, 0xa4, 0x39, 0x74, + 0x05, 0xf3, 0x80, 0x07, 0xb4, 0x33, 0xef, 0xdb, + 0xdc, 0x7a, 0x87, 0x82, 0xb6, 0x82, 0xf6, 0xb9, + 0x40, 0x7b, 0xa2, 0xa6, 0xd6, 0xcf, 0x73, 0x6a, + 0xfd, 0xe8, 0x05, 0x71, 0x39, 0x95, 0x27, 0x71, + 0xde, 0xb0, 0x50, 0x8a, 0x7a, 0x71, 0xf6, 0xe0, + 0xc1, 0xd4, 0xf1, 0xe8, 0x6d, 0x97, 0x09, 0x84, + 0xd9, 0x7a, 0xfb, 0x13, 0xf4, 0x84, 0xc2, 0xc6, + 0x5d, 0x96, 0x64, 0x88, 0xd7, 0x99, 0xa5, 0x20, + 0xdb, 0x45, 0xb5, 0xcf, 0xde, 0xb2, 0xc5, 0x54, + 0xa5, 0x69, 0x96, 0x5f, 0xf2, 0xd9, 0x4d, 0x51, + 0xba, 0x9a, 0x1e, 0x63, 0xc9, 0xa7, 0xbb, 0xd5, + 0x9a, 0x12, 0x67, 0x2d, 0x8e, 0xce, 0x6c, 0x4b, + 0xa0, 0xba, 0xe7, 0x2e, 0xa6, 0xca, 0xd3, 0x22, + 0xad, 0x9d, 0xc3, 0x0d, 0x91, 0xd7, 0xd5, 0xa4, + 0xfc, 0x1d, 0x85, 0x50, 0x1e, 0xe5, 0x18, 0xa7, + 0x12, 0x0b, 0x4b, 0x20, 0xdc, 0x33, 0x59, 0x06, + 0x72, 0x8a, 0xd9, 0xf9, 0x9a, 0xae, 0xe6, 0xc1, + 0x27, 0x85, 0x40, 0xe8, 0x10, 0x66, 0x26, 0x3c, + 0x35, 0xda, 0x91, 0xc0, 0x21, 0xe2, 0x0b, 0x9a, + 0x6b, 0xc7, 0xab, 0x3c, 0x5f, 0xbd, 0xf6, 0x4d, + 0x46, 0x7d, 0xdb, 0x05, 0x66, 0xb7, 0x5a, 0xfb, + 0x31, 0x2a, 0x16, 0x93, 0xd6, 0xe6, 0x19, 0x6e, + 0x08, 0x83, 0xc1, 0x8a, 0x04, 0xdc, 0x64, 0x7c, + 0x25, 0x85, 0x61, 0x1c, 0x50, 0xde, 0x15, 0xfc, + 0xb7, 0x83, 0xdb, 0xa8, 0x6a, 0x69, 0x5d, 0xb2, + 0xc7, 0x06, 0xc0, 0xb6, 0xb3, 0x6b, 0x79, 0x8b, + 0x3d, 0xa5, 0xb0, 0xae, 0x57, 0xd0, 0xa8, 0x8b, + 0xbb, 0x3e, 0x69, 0x94, 0x4a, 0xc5, 0xbf, 0x1d, + 0x46, 0xc0, 0xb5, 0x8b, 0x82, 0xab, 0x46, 0xa9, + 0x6a, 0x13, 0x99, 0xca, 0xd1, 0x68, 0xdb, 0xf0, + 0x0b, 0x0b, 0x68, 0x9b, 0xe2, 0x4f, 0x12, 0x51, + 0x00, 0x54, 0x00, 0x3c, 0x19, 0x00, 0xc7, 0xe7, + 0x0b, 0x40, 0x0a, 0x5d, 0xe1, 0xfa, 0x35, 0x86, + 0x60, 0x44, 0x46, 0x81, 0x50, 0x81, 0xf0, 0x64, + 0x20, 0x34, 0xce, 0x77, 0x2b, 0xb5, 0xfe, 0xe4, + 0x0e, 0x9e, 0xdd, 0x74, 0xee, 0xa8, 0x7f, 0xfb, + 0x9b, 0xb5, 0xbc, 0xd3, 0x4b, 0x3b, 0xd3, 0xc6, + 0xc6, 0xe8, 0x34, 0xd3, 0xc6, 0xeb, 0x63, 0xfa, + 0x58, 0x97, 0x13, 0xc7, 0x25, 0xc7, 0x6f, 0x9f, + 0xe7, 0x9b, 0xd5, 0xb6, 0x00, 0xf5, 0x4b, 0x0c, + 0xde, 0xa8, 0x12, 0x83, 0x14, 0xc0, 0x4f, 0x2f, + 0xa0, 0xc4, 0x40, 0x15, 0x17, 0xa8, 0xe2, 0x82, + 0xdc, 0x61, 0x9f, 0x59, 0x5c, 0x30, 0xbd, 0xc4, + 0xe2, 0x82, 0xbb, 0x70, 0x47, 0xa3, 0x28, 0x49, + 0x47, 0xfe, 0x34, 0xae, 0x4e, 0xb1, 0x80, 0xe1, + 0x99, 0x94, 0x2c, 0x59, 0xc9, 0x0d, 0x7b, 0xd3, + 0x09, 0xc4, 0xfb, 0x63, 0x55, 0xc8, 0x95, 0x3a, + 0x08, 0xd3, 0x42, 0x0a, 0xe6, 0xc6, 0xb8, 0xd4, + 0xa6, 0x24, 0x84, 0x31, 0x8f, 0x58, 0xe4, 0xb0, + 0x73, 0x52, 0x51, 0xf8, 0x3d, 0x10, 0x46, 0x7c, + 0x65, 0x46, 0x87, 0x13, 0x0d, 0xbb, 0xcb, 0xaa, + 0xa9, 0x7e, 0x14, 0x47, 0x66, 0x8f, 0x55, 0x3f, + 0x92, 0x23, 0xd3, 0x05, 0xab, 0xba, 0x89, 0x74, + 0xb6, 0x8b, 0x53, 0x7d, 0x33, 0xe9, 0x4c, 0x63, + 0x56, 0xef, 0x38, 0x82, 0x2c, 0x72, 0xab, 0x26, + 0xe4, 0xfa, 0x90, 0x21, 0x78, 0xb8, 0xa5, 0xbe, + 0x51, 0x23, 0x25, 0xb0, 0xf2, 0x8e, 0xf8, 0xd5, + 0x5c, 0x05, 0xf3, 0xcf, 0x04, 0x4b, 0x5a, 0xe0, + 0x21, 0xfe, 0xae, 0x47, 0x09, 0x77, 0x07, 0x9b, + 0xe4, 0xef, 0xe3, 0xbe, 0x4f, 0xd9, 0x77, 0xcf, + 0x0c, 0x92, 0x67, 0x96, 0xac, 0xbb, 0x63, 0x3e, + 0x7c, 0x0a, 0x19, 0x0b, 0xd3, 0x74, 0x9f, 0xbd, + 0xf1, 0x30, 0x5a, 0x1c, 0xa9, 0x13, 0x65, 0x3c, + 0xba, 0x34, 0x1e, 0xe3, 0x1e, 0x1a, 0x8f, 0x2f, + 0x31, 0x92, 0xfa, 0x6f, 0x3a, 0x76, 0x31, 0xdf, + 0x57, 0xc3, 0xf1, 0x0c, 0xe0, 0x78, 0xce, 0x86, + 0x43, 0xa6, 0x31, 0x8a, 0xa0, 0x07, 0x42, 0xdb, + 0x2c, 0x3a, 0x14, 0xb5, 0xd5, 0x50, 0xf2, 0x18, + 0xc3, 0xb0, 0xf7, 0xa6, 0x6a, 0xdc, 0x22, 0x36, + 0x0c, 0x65, 0xaa, 0xba, 0xc2, 0xc8, 0x4e, 0x19, + 0x94, 0x02, 0xc9, 0x11, 0x40, 0x72, 0x79, 0xbe, + 0x8e, 0xf1, 0x46, 0x3f, 0x61, 0x51, 0x5b, 0xd7, + 0x4e, 0x93, 0x4c, 0x90, 0xd7, 0x42, 0x2b, 0xd2, + 0x7f, 0xb7, 0x69, 0xdf, 0xe2, 0xf5, 0xd5, 0x71, + 0x7a, 0x06, 0xc6, 0xe1, 0xdc, 0x31, 0xfd, 0xfa, + 0x92, 0x31, 0x7d, 0xb7, 0xb1, 0x7a, 0xfd, 0x07, + 0xf5, 0x81, 0x89, 0xee, 0x13, 0xaa, 0x2f, 0x0b, + 0x40, 0xaa, 0x08, 0xf5, 0xd9, 0x64, 0x2d, 0x19, + 0x3d, 0xca, 0x5a, 0x9a, 0x9c, 0x26, 0x6b, 0xe9, + 0x5b, 0xd1, 0xae, 0x23, 0x47, 0xea, 0xef, 0xa3, + 0xe4, 0x2c, 0x5d, 0xfe, 0x29, 0x98, 0xe3, 0x53, + 0x9d, 0x82, 0x19, 0x65, 0x5b, 0x3b, 0x10, 0xfb, + 0xb5, 0x0e, 0x0c, 0x94, 0x0d, 0xd5, 0x91, 0x81, + 0xc5, 0x3e, 0x86, 0x3a, 0xf9, 0xb2, 0xbb, 0x93, + 0x2f, 0x39, 0x72, 0xe1, 0x80, 0x41, 0xce, 0xc5, + 0x2b, 0x58, 0xd5, 0x51, 0x9c, 0xa6, 0x5b, 0xef, + 0x04, 0x41, 0xcd, 0xfc, 0x1a, 0x53, 0x54, 0xc3, + 0xbb, 0x45, 0x17, 0xfa, 0xd9, 0x9f, 0x8a, 0xd9, + 0x44, 0x4b, 0x5b, 0x98, 0x30, 0x58, 0xef, 0x88, + 0x62, 0xd9, 0xf2, 0xa2, 0x07, 0xb2, 0x03, 0x98, + 0x52, 0xf2, 0x5d, 0x23, 0xc0, 0x50, 0xe7, 0xc2, + 0x96, 0xf7, 0x1b, 0xdb, 0x3c, 0x17, 0x76, 0x3c, + 0x0e, 0x97, 0x55, 0x77, 0x3d, 0xb5, 0xaa, 0xc7, + 0xc1, 0x8e, 0xf4, 0x59, 0x9a, 0xa9, 0xac, 0x7c, + 0xaa, 0xec, 0xeb, 0x35, 0x2f, 0xdb, 0xfa, 0xa8, + 0xa5, 0x03, 0x65, 0x7f, 0xb2, 0xff, 0x0a, 0x18, + 0xdf, 0x4a, 0x97, 0x4d, 0xae, 0xc7, 0x19, 0x27, + 0x78, 0x06, 0xbe, 0xb8, 0xd2, 0x67, 0x57, 0x6f, + 0x8b, 0x4e, 0xc2, 0x0c, 0xd3, 0xa7, 0xcb, 0x3c, + 0xc8, 0x38, 0xf4, 0x4d, 0xe4, 0x59, 0x14, 0x86, + 0x7c, 0x1c, 0xea, 0xfd, 0xc3, 0x21, 0xb6, 0x80, + 0xdb, 0x0d, 0x26, 0x7b, 0x63, 0xa6, 0xae, 0xc8, + 0xc6, 0xf3, 0x13, 0x79, 0x92, 0x2f, 0xb2, 0x31, + 0x29, 0x29, 0x72, 0xf1, 0x83, 0x8d, 0x45, 0xde, + 0xcf, 0xe7, 0xdd, 0x88, 0x7c, 0x3d, 0x0c, 0x43, + 0xc5, 0x7b, 0x60, 0xc1, 0xd9, 0x77, 0xff, 0x07, + 0x9b, 0xd6, 0xab, 0x1c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x61, + 0x70, 0x70, 0x6c, 0x65, 0x74, 0x2f, 0x00, 0x00, + 0x09, 0x00, 0x00, 0x00, 0x63, 0x6c, 0x6f, 0x63, + 0x6b, 0x2d, 0x6d, 0x65, 0x6e, 0x75, 0x2e, 0x78, + 0x6d, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x11, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x78, 0xda, 0xb3, 0xc9, 0x4d, 0xcd, 0x2b, 0xcd, + 0x2c, 0x49, 0xcd, 0x55, 0xc8, 0x4b, 0xcc, 0x4d, + 0xb5, 0x55, 0x72, 0xce, 0xc9, 0x4f, 0xce, 0x56, + 0x70, 0xce, 0x2f, 0xa8, 0x54, 0x08, 0xc9, 0xcc, + 0x4d, 0x55, 0xf0, 0x04, 0x4a, 0x29, 0x29, 0x24, + 0x26, 0x97, 0x64, 0xe6, 0xe7, 0x41, 0x65, 0x41, + 0x92, 0x20, 0x39, 0x25, 0x05, 0x7d, 0x3b, 0x2e, + 0x1b, 0xdc, 0xfa, 0x5d, 0x12, 0x4b, 0x70, 0xea, + 0x07, 0xc9, 0x41, 0xf4, 0x17, 0xa7, 0x16, 0x24, + 0x16, 0x25, 0x96, 0xe4, 0x17, 0xe1, 0x31, 0x2c, + 0x2f, 0x2d, 0x33, 0xbd, 0xb4, 0x08, 0x87, 0x61, + 0x20, 0x49, 0x3c, 0x4e, 0x09, 0x28, 0x4a, 0x4d, + 0x4b, 0x2d, 0x4a, 0xcd, 0x4b, 0x4e, 0x2d, 0xc6, + 0xa6, 0x1f, 0x49, 0x1a, 0x6c, 0x08, 0x17, 0x00, + 0x26, 0x53, 0x5d, 0x2d, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x63, + 0x6c, 0x6f, 0x63, 0x6b, 0x2d, 0x66, 0x61, 0x63, + 0x65, 0x2d, 0x73, 0x6d, 0x61, 0x6c, 0x6c, 0x2d, + 0x6e, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x73, 0x76, + 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x9d, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65, + 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31, + 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f, + 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54, + 0x46, 0x2d, 0x38, 0x22, 0x20, 0x73, 0x74, 0x61, + 0x6e, 0x64, 0x61, 0x6c, 0x6f, 0x6e, 0x65, 0x3d, + 0x22, 0x6e, 0x6f, 0x22, 0x3f, 0x3e, 0x0a, 0x3c, + 0x21, 0x2d, 0x2d, 0x20, 0x43, 0x72, 0x65, 0x61, + 0x74, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, + 0x20, 0x49, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x20, 0x28, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x2e, 0x6f, + 0x72, 0x67, 0x2f, 0x29, 0x20, 0x2d, 0x2d, 0x3e, + 0x0a, 0x3c, 0x73, 0x76, 0x67, 0x0a, 0x20, 0x20, + 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, 0x64, + 0x63, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x70, 0x75, 0x72, 0x6c, 0x2e, 0x6f, + 0x72, 0x67, 0x2f, 0x64, 0x63, 0x2f, 0x65, 0x6c, + 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x31, + 0x2e, 0x31, 0x2f, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, 0x63, 0x63, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x65, 0x62, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x63, 0x63, 0x2f, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, + 0x72, 0x64, 0x66, 0x3d, 0x22, 0x68, 0x74, 0x74, + 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, + 0x77, 0x33, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x31, + 0x39, 0x39, 0x39, 0x2f, 0x30, 0x32, 0x2f, 0x32, + 0x32, 0x2d, 0x72, 0x64, 0x66, 0x2d, 0x73, 0x79, + 0x6e, 0x74, 0x61, 0x78, 0x2d, 0x6e, 0x73, 0x23, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, + 0x6e, 0x73, 0x3a, 0x73, 0x76, 0x67, 0x3d, 0x22, + 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, + 0x77, 0x77, 0x2e, 0x77, 0x33, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x32, 0x30, 0x30, 0x30, 0x2f, 0x73, + 0x76, 0x67, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, + 0x6d, 0x6c, 0x6e, 0x73, 0x3d, 0x22, 0x68, 0x74, + 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, + 0x2e, 0x77, 0x33, 0x2e, 0x6f, 0x72, 0x67, 0x2f, + 0x32, 0x30, 0x30, 0x30, 0x2f, 0x73, 0x76, 0x67, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, + 0x6e, 0x73, 0x3a, 0x78, 0x6c, 0x69, 0x6e, 0x6b, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x77, 0x33, 0x2e, + 0x6f, 0x72, 0x67, 0x2f, 0x31, 0x39, 0x39, 0x39, + 0x2f, 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, + 0x3a, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x2e, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x66, 0x6f, 0x72, 0x67, 0x65, 0x2e, 0x6e, + 0x65, 0x74, 0x2f, 0x44, 0x54, 0x44, 0x2f, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x2d, + 0x30, 0x2e, 0x64, 0x74, 0x64, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, + 0x61, 0x63, 0x65, 0x73, 0x2f, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3d, + 0x22, 0x33, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3d, 0x22, + 0x33, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x73, 0x76, 0x67, 0x35, 0x34, + 0x31, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, + 0x22, 0x30, 0x2e, 0x33, 0x32, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x76, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x3d, 0x22, 0x30, 0x2e, 0x34, 0x35, + 0x2e, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x76, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, + 0x31, 0x2e, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x64, 0x6f, 0x63, 0x62, 0x61, 0x73, 0x65, + 0x3d, 0x22, 0x2f, 0x68, 0x6f, 0x6d, 0x65, 0x2f, + 0x6d, 0x63, 0x6c, 0x61, 0x73, 0x65, 0x6e, 0x2f, + 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x2f, + 0x69, 0x6e, 0x74, 0x6c, 0x63, 0x6c, 0x6f, 0x63, + 0x6b, 0x2d, 0x31, 0x2e, 0x30, 0x2f, 0x70, 0x69, + 0x78, 0x6d, 0x61, 0x70, 0x73, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x3a, 0x64, 0x6f, 0x63, 0x6e, 0x61, + 0x6d, 0x65, 0x3d, 0x22, 0x69, 0x6e, 0x74, 0x6c, + 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x2d, 0x66, 0x61, + 0x63, 0x65, 0x2d, 0x64, 0x61, 0x72, 0x6b, 0x2d, + 0x73, 0x6d, 0x61, 0x6c, 0x6c, 0x2e, 0x73, 0x76, + 0x67, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x6f, + 0x75, 0x74, 0x70, 0x75, 0x74, 0x5f, 0x65, 0x78, + 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3d, + 0x22, 0x6f, 0x72, 0x67, 0x2e, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x2e, 0x6f, 0x75, + 0x74, 0x70, 0x75, 0x74, 0x2e, 0x73, 0x76, 0x67, + 0x2e, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x64, + 0x65, 0x66, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x64, 0x65, 0x66, + 0x73, 0x35, 0x34, 0x31, 0x38, 0x22, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x31, 0x30, 0x36, + 0x35, 0x33, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, + 0x6f, 0x70, 0x31, 0x30, 0x36, 0x35, 0x35, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, + 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, + 0x23, 0x66, 0x33, 0x66, 0x34, 0x66, 0x66, 0x3b, + 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x31, 0x30, 0x36, 0x35, 0x37, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, + 0x22, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x39, 0x31, 0x39, 0x33, 0x61, 0x66, 0x3b, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x2f, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x34, 0x32, + 0x31, 0x37, 0x34, 0x22, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, + 0x70, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, + 0x74, 0x6f, 0x70, 0x34, 0x32, 0x31, 0x37, 0x36, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, + 0x74, 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, + 0x6f, 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, + 0x3a, 0x23, 0x61, 0x30, 0x61, 0x30, 0x61, 0x30, + 0x3b, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, + 0x6f, 0x70, 0x34, 0x32, 0x31, 0x37, 0x38, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, + 0x3d, 0x22, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, + 0x23, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x3b, + 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x2f, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x32, + 0x31, 0x34, 0x35, 0x22, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, + 0x70, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, + 0x74, 0x6f, 0x70, 0x32, 0x31, 0x34, 0x37, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, + 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, + 0x23, 0x66, 0x66, 0x66, 0x66, 0x66, 0x64, 0x3b, + 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x32, 0x31, 0x34, 0x39, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, + 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, + 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x64, + 0x39, 0x64, 0x39, 0x64, 0x38, 0x3b, 0x73, 0x74, + 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x33, 0x37, 0x39, + 0x33, 0x35, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, + 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x32, 0x37, 0x32, + 0x39, 0x33, 0x63, 0x3b, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x3b, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, + 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, + 0x6f, 0x70, 0x33, 0x37, 0x39, 0x33, 0x37, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, + 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, 0x6c, + 0x6f, 0x72, 0x3a, 0x23, 0x64, 0x36, 0x63, 0x61, + 0x65, 0x33, 0x3b, 0x73, 0x74, 0x6f, 0x70, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, 0x66, + 0x73, 0x65, 0x74, 0x3d, 0x22, 0x31, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x33, 0x37, 0x39, 0x33, 0x39, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x2f, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x33, 0x38, + 0x31, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, + 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, + 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, + 0x61, 0x79, 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, + 0x70, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, + 0x74, 0x6f, 0x70, 0x33, 0x38, 0x31, 0x38, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, + 0x3d, 0x22, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, + 0x23, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, + 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x33, 0x38, 0x32, 0x30, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, + 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, + 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x73, 0x74, + 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x30, 0x3b, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x72, 0x61, 0x64, + 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, + 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, + 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, + 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, + 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, + 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x33, + 0x38, 0x31, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, + 0x34, 0x37, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, 0x73, + 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, 0x70, + 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, 0x65, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x63, 0x78, 0x3d, 0x22, 0x33, 0x31, 0x2e, + 0x31, 0x31, 0x32, 0x36, 0x39, 0x38, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, + 0x79, 0x3d, 0x22, 0x31, 0x39, 0x2e, 0x30, 0x30, + 0x38, 0x36, 0x32, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x78, 0x3d, + 0x22, 0x33, 0x31, 0x2e, 0x31, 0x31, 0x32, 0x36, + 0x39, 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x66, 0x79, 0x3d, 0x22, 0x31, + 0x39, 0x2e, 0x30, 0x30, 0x38, 0x36, 0x32, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x72, 0x3d, 0x22, 0x38, 0x2e, 0x36, 0x36, + 0x32, 0x30, 0x35, 0x37, 0x39, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x72, + 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, + 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, + 0x6c, 0x77, 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, + 0x69, 0x6e, 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, + 0x3d, 0x22, 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x33, 0x37, 0x39, 0x33, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x72, 0x61, 0x64, 0x69, 0x61, + 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x35, 0x38, 0x34, 0x39, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x55, 0x6e, + 0x69, 0x74, 0x73, 0x3d, 0x22, 0x75, 0x73, 0x65, + 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x4f, 0x6e, + 0x55, 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x63, 0x78, 0x3d, 0x22, + 0x38, 0x2e, 0x37, 0x34, 0x36, 0x38, 0x32, 0x35, + 0x32, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x63, 0x79, 0x3d, 0x22, 0x36, 0x2e, + 0x38, 0x32, 0x38, 0x33, 0x32, 0x33, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x66, 0x78, 0x3d, 0x22, 0x38, 0x2e, 0x37, 0x34, + 0x36, 0x38, 0x32, 0x35, 0x32, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x79, + 0x3d, 0x22, 0x36, 0x2e, 0x38, 0x32, 0x38, 0x33, + 0x32, 0x33, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x72, 0x3d, 0x22, 0x32, + 0x39, 0x2e, 0x38, 0x38, 0x39, 0x37, 0x31, 0x35, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, + 0x3d, 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x68, + 0x72, 0x65, 0x66, 0x3d, 0x22, 0x23, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x32, 0x31, 0x34, 0x35, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x72, 0x61, 0x64, + 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x35, 0x38, 0x35, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x67, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x55, 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, 0x75, + 0x73, 0x65, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, + 0x4f, 0x6e, 0x55, 0x73, 0x65, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x78, + 0x3d, 0x22, 0x31, 0x31, 0x2e, 0x39, 0x30, 0x31, + 0x39, 0x39, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x63, 0x79, 0x3d, 0x22, + 0x31, 0x30, 0x2e, 0x30, 0x34, 0x35, 0x34, 0x34, + 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x66, 0x78, 0x3d, 0x22, 0x31, 0x31, + 0x2e, 0x39, 0x30, 0x31, 0x39, 0x39, 0x36, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x66, 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, 0x30, + 0x34, 0x35, 0x34, 0x34, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x3d, + 0x22, 0x32, 0x39, 0x2e, 0x32, 0x39, 0x32, 0x37, + 0x31, 0x35, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, + 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, 0x61, + 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, 0x6b, + 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x23, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x34, 0x32, + 0x31, 0x37, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, + 0x35, 0x33, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, 0x73, + 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, 0x70, + 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, 0x65, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x78, 0x31, 0x3d, 0x22, 0x36, 0x2e, 0x33, + 0x34, 0x32, 0x32, 0x31, 0x36, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x79, 0x31, + 0x3d, 0x22, 0x37, 0x2e, 0x37, 0x38, 0x39, 0x33, + 0x33, 0x32, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x78, 0x32, 0x3d, 0x22, + 0x32, 0x32, 0x2e, 0x32, 0x31, 0x38, 0x34, 0x32, + 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x79, 0x32, 0x3d, 0x22, 0x32, 0x35, + 0x2e, 0x38, 0x38, 0x34, 0x32, 0x37, 0x34, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3d, + 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x68, 0x72, + 0x65, 0x66, 0x3d, 0x22, 0x23, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x31, 0x30, 0x36, 0x35, 0x33, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x72, 0x61, 0x64, + 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x35, 0x38, 0x35, 0x35, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x67, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x55, 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, 0x75, + 0x73, 0x65, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, + 0x4f, 0x6e, 0x55, 0x73, 0x65, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x78, + 0x3d, 0x22, 0x31, 0x31, 0x2e, 0x33, 0x32, 0x39, + 0x32, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x63, 0x79, 0x3d, 0x22, 0x31, 0x30, + 0x2e, 0x35, 0x38, 0x33, 0x39, 0x37, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, + 0x78, 0x3d, 0x22, 0x31, 0x31, 0x2e, 0x33, 0x32, + 0x39, 0x32, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x66, 0x79, 0x3d, 0x22, 0x31, + 0x30, 0x2e, 0x35, 0x38, 0x33, 0x39, 0x37, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x72, 0x3d, 0x22, 0x31, 0x35, 0x2e, 0x35, 0x33, + 0x32, 0x30, 0x35, 0x39, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, + 0x6c, 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, + 0x77, 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, + 0x6e, 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, + 0x22, 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x31, 0x30, 0x36, 0x35, 0x33, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x35, 0x38, 0x35, 0x39, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, + 0x74, 0x73, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, + 0x53, 0x70, 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, + 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x78, 0x31, 0x3d, 0x22, 0x36, + 0x2e, 0x33, 0x34, 0x32, 0x32, 0x31, 0x36, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x79, 0x31, 0x3d, 0x22, 0x37, 0x2e, 0x37, 0x38, + 0x39, 0x33, 0x33, 0x32, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x32, + 0x3d, 0x22, 0x32, 0x32, 0x2e, 0x32, 0x31, 0x38, + 0x34, 0x32, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x79, 0x32, 0x3d, 0x22, + 0x32, 0x35, 0x2e, 0x38, 0x38, 0x34, 0x32, 0x37, + 0x34, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x3c, 0x2f, 0x64, 0x65, 0x66, 0x73, 0x3e, 0x0a, + 0x20, 0x20, 0x3c, 0x73, 0x6f, 0x64, 0x69, 0x70, + 0x6f, 0x64, 0x69, 0x3a, 0x6e, 0x61, 0x6d, 0x65, + 0x64, 0x76, 0x69, 0x65, 0x77, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x62, + 0x61, 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x70, 0x61, 0x67, 0x65, 0x63, 0x6f, + 0x6c, 0x6f, 0x72, 0x3d, 0x22, 0x23, 0x66, 0x66, + 0x66, 0x66, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x62, 0x6f, 0x72, 0x64, 0x65, + 0x72, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3d, 0x22, + 0x23, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x6f, + 0x72, 0x64, 0x65, 0x72, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3d, 0x22, 0x31, 0x2e, 0x30, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x70, 0x61, 0x67, 0x65, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3d, 0x22, 0x30, 0x2e, 0x30, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x70, 0x61, 0x67, 0x65, 0x73, 0x68, 0x61, 0x64, + 0x6f, 0x77, 0x3d, 0x22, 0x32, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x7a, 0x6f, 0x6f, + 0x6d, 0x3d, 0x22, 0x32, 0x36, 0x2e, 0x33, 0x38, + 0x38, 0x38, 0x38, 0x39, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, + 0x61, 0x70, 0x65, 0x3a, 0x63, 0x78, 0x3d, 0x22, + 0x31, 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x3a, 0x63, 0x79, 0x3d, 0x22, 0x31, 0x38, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, + 0x2d, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, + 0x70, 0x78, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x3a, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, + 0x74, 0x2d, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x3d, + 0x22, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x77, + 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2d, 0x77, 0x69, + 0x64, 0x74, 0x68, 0x3d, 0x22, 0x31, 0x36, 0x30, + 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2d, + 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3d, 0x22, + 0x31, 0x31, 0x31, 0x35, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, + 0x61, 0x70, 0x65, 0x3a, 0x77, 0x69, 0x6e, 0x64, + 0x6f, 0x77, 0x2d, 0x78, 0x3d, 0x22, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x77, + 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2d, 0x79, 0x3d, + 0x22, 0x33, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3d, + 0x22, 0x33, 0x36, 0x70, 0x78, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x69, 0x67, + 0x68, 0x74, 0x3d, 0x22, 0x33, 0x36, 0x70, 0x78, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x68, 0x6f, 0x77, 0x67, 0x75, 0x69, 0x64, 0x65, + 0x73, 0x3d, 0x22, 0x74, 0x72, 0x75, 0x65, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x67, + 0x75, 0x69, 0x64, 0x65, 0x2d, 0x62, 0x62, 0x6f, + 0x78, 0x3d, 0x22, 0x74, 0x72, 0x75, 0x65, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x6d, + 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, + 0x61, 0x35, 0x34, 0x32, 0x31, 0x22, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x72, 0x64, 0x66, + 0x3a, 0x52, 0x44, 0x46, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x63, 0x3a, + 0x57, 0x6f, 0x72, 0x6b, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x64, + 0x66, 0x3a, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x3d, + 0x22, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x63, 0x3a, + 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x3e, 0x69, + 0x6d, 0x61, 0x67, 0x65, 0x2f, 0x73, 0x76, 0x67, + 0x2b, 0x78, 0x6d, 0x6c, 0x3c, 0x2f, 0x64, 0x63, + 0x3a, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x64, 0x63, 0x3a, 0x74, 0x79, 0x70, + 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x64, 0x66, + 0x3a, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x70, 0x75, 0x72, 0x6c, 0x2e, 0x6f, + 0x72, 0x67, 0x2f, 0x64, 0x63, 0x2f, 0x64, 0x63, + 0x6d, 0x69, 0x74, 0x79, 0x70, 0x65, 0x2f, 0x53, + 0x74, 0x69, 0x6c, 0x6c, 0x49, 0x6d, 0x61, 0x67, + 0x65, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x63, + 0x3a, 0x57, 0x6f, 0x72, 0x6b, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x72, 0x64, 0x66, + 0x3a, 0x52, 0x44, 0x46, 0x3e, 0x0a, 0x20, 0x20, + 0x3c, 0x2f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, + 0x74, 0x61, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x67, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x6c, + 0x61, 0x62, 0x65, 0x6c, 0x3d, 0x22, 0x4c, 0x61, + 0x79, 0x65, 0x72, 0x20, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x67, 0x72, 0x6f, + 0x75, 0x70, 0x6d, 0x6f, 0x64, 0x65, 0x3d, 0x22, + 0x6c, 0x61, 0x79, 0x65, 0x72, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x6c, 0x61, 0x79, 0x65, 0x72, 0x31, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73, 0x70, + 0x6c, 0x61, 0x79, 0x3a, 0x69, 0x6e, 0x6c, 0x69, + 0x6e, 0x65, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x33, 0x39, 0x2e, 0x37, 0x37, + 0x34, 0x37, 0x35, 0x35, 0x2c, 0x31, 0x39, 0x2e, + 0x30, 0x30, 0x38, 0x36, 0x32, 0x31, 0x20, 0x41, + 0x20, 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, + 0x37, 0x39, 0x2c, 0x38, 0x2e, 0x36, 0x36, 0x32, + 0x30, 0x35, 0x37, 0x39, 0x20, 0x30, 0x20, 0x31, + 0x20, 0x31, 0x20, 0x32, 0x32, 0x2e, 0x34, 0x35, + 0x30, 0x36, 0x34, 0x2c, 0x31, 0x39, 0x2e, 0x30, + 0x30, 0x38, 0x36, 0x32, 0x31, 0x20, 0x41, 0x20, + 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, 0x37, + 0x39, 0x2c, 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, + 0x35, 0x37, 0x39, 0x20, 0x30, 0x20, 0x31, 0x20, + 0x31, 0x20, 0x33, 0x39, 0x2e, 0x37, 0x37, 0x34, + 0x37, 0x35, 0x35, 0x2c, 0x31, 0x39, 0x2e, 0x30, + 0x30, 0x38, 0x36, 0x32, 0x31, 0x20, 0x7a, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x38, 0x2e, 0x36, + 0x36, 0x32, 0x30, 0x35, 0x37, 0x39, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x72, 0x78, 0x3d, 0x22, 0x38, 0x2e, 0x36, 0x36, + 0x32, 0x30, 0x35, 0x37, 0x39, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, + 0x79, 0x3d, 0x22, 0x31, 0x39, 0x2e, 0x30, 0x30, + 0x38, 0x36, 0x32, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, + 0x3d, 0x22, 0x33, 0x31, 0x2e, 0x31, 0x31, 0x32, + 0x36, 0x39, 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x70, 0x61, 0x74, 0x68, 0x34, 0x34, 0x31, 0x35, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, + 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, + 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, + 0x34, 0x37, 0x29, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, 0x65, + 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, 0x70, + 0x78, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, 0x70, + 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, + 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, 0x72, + 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x6d, 0x61, 0x72, + 0x6b, 0x65, 0x72, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, + 0x3b, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x72, 0x2d, + 0x73, 0x74, 0x61, 0x72, 0x74, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x6d, 0x61, 0x72, 0x6b, 0x65, + 0x72, 0x2d, 0x6d, 0x69, 0x64, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x6d, 0x61, 0x72, 0x6b, 0x65, + 0x72, 0x2d, 0x65, 0x6e, 0x64, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, + 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x64, 0x61, + 0x73, 0x68, 0x61, 0x72, 0x72, 0x61, 0x79, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, + 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, + 0x6c, 0x69, 0x74, 0x79, 0x3a, 0x76, 0x69, 0x73, + 0x69, 0x62, 0x6c, 0x65, 0x3b, 0x64, 0x69, 0x73, + 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x69, 0x6e, 0x6c, + 0x69, 0x6e, 0x65, 0x3b, 0x6f, 0x76, 0x65, 0x72, + 0x66, 0x6c, 0x6f, 0x77, 0x3a, 0x76, 0x69, 0x73, + 0x69, 0x62, 0x6c, 0x65, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x74, 0x79, + 0x70, 0x65, 0x3d, 0x22, 0x61, 0x72, 0x63, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, + 0x6d, 0x3d, 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, + 0x78, 0x28, 0x31, 0x2e, 0x36, 0x36, 0x32, 0x34, + 0x32, 0x32, 0x34, 0x2c, 0x30, 0x2c, 0x30, 0x2c, + 0x30, 0x2e, 0x37, 0x39, 0x31, 0x30, 0x31, 0x34, + 0x33, 0x2c, 0x2d, 0x33, 0x33, 0x2e, 0x37, 0x32, + 0x38, 0x32, 0x37, 0x38, 0x2c, 0x31, 0x34, 0x2e, + 0x31, 0x31, 0x32, 0x30, 0x39, 0x37, 0x29, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x61, + 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x3d, 0x22, + 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x28, 0x31, + 0x2e, 0x31, 0x31, 0x34, 0x38, 0x36, 0x33, 0x31, + 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x31, 0x2e, 0x31, + 0x31, 0x34, 0x38, 0x36, 0x33, 0x31, 0x2c, 0x2d, + 0x30, 0x2e, 0x31, 0x31, 0x36, 0x35, 0x32, 0x30, + 0x35, 0x2c, 0x2d, 0x30, 0x2e, 0x38, 0x35, 0x33, + 0x31, 0x33, 0x38, 0x37, 0x29, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, + 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, + 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, + 0x20, 0x31, 0x20, 0x31, 0x2e, 0x33, 0x33, 0x39, + 0x32, 0x38, 0x35, 0x39, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, + 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, + 0x20, 0x31, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, + 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x31, 0x34, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x72, 0x78, 0x3d, 0x22, 0x31, 0x34, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x63, 0x79, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, + 0x78, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x32, 0x35, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, + 0x68, 0x34, 0x34, 0x31, 0x37, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, 0x72, + 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x34, + 0x39, 0x29, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x2e, 0x30, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, + 0x65, 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x23, 0x36, 0x30, + 0x35, 0x37, 0x37, 0x33, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x31, 0x2e, 0x36, 0x33, 0x35, 0x39, + 0x36, 0x30, 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, + 0x61, 0x70, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, + 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, + 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, + 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, 0x6f, 0x66, + 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x61, + 0x72, 0x63, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, + 0x6d, 0x3d, 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, + 0x78, 0x28, 0x30, 0x2e, 0x39, 0x33, 0x31, 0x38, + 0x38, 0x36, 0x36, 0x2c, 0x30, 0x2c, 0x30, 0x2c, + 0x30, 0x2e, 0x39, 0x33, 0x31, 0x38, 0x38, 0x36, + 0x36, 0x2c, 0x32, 0x2e, 0x37, 0x38, 0x33, 0x31, + 0x32, 0x31, 0x31, 0x2c, 0x32, 0x2e, 0x31, 0x36, + 0x37, 0x34, 0x32, 0x39, 0x31, 0x29, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, + 0x36, 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, + 0x41, 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, + 0x31, 0x20, 0x31, 0x20, 0x31, 0x2e, 0x33, 0x33, + 0x39, 0x32, 0x38, 0x35, 0x39, 0x2c, 0x31, 0x36, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, + 0x41, 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, + 0x31, 0x20, 0x31, 0x20, 0x33, 0x31, 0x2e, 0x31, + 0x36, 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, + 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x31, + 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x72, 0x78, 0x3d, 0x22, 0x31, 0x34, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x63, 0x79, 0x3d, 0x22, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x63, 0x78, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x32, + 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, + 0x74, 0x68, 0x34, 0x34, 0x31, 0x39, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, + 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, + 0x35, 0x31, 0x29, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, 0x65, + 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x75, 0x72, 0x6c, 0x28, + 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, + 0x38, 0x35, 0x33, 0x29, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x31, 0x2e, 0x36, 0x36, 0x36, 0x30, + 0x33, 0x34, 0x37, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, + 0x61, 0x70, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, + 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, + 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, + 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, 0x6f, 0x66, + 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x61, + 0x72, 0x63, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x61, + 0x72, 0x63, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x6e, + 0x6f, 0x6e, 0x65, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, 0x65, + 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x75, 0x72, 0x6c, 0x28, + 0x23, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, + 0x38, 0x35, 0x35, 0x29, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x31, 0x2e, 0x37, 0x32, 0x34, 0x39, + 0x37, 0x39, 0x31, 0x36, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, + 0x63, 0x61, 0x70, 0x3a, 0x72, 0x6f, 0x75, 0x6e, + 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, + 0x6e, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, + 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, + 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, 0x6f, + 0x66, 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, + 0x68, 0x34, 0x34, 0x32, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, + 0x78, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x32, 0x35, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x63, 0x79, 0x3d, 0x22, 0x31, 0x36, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x72, 0x78, 0x3d, 0x22, 0x31, 0x34, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x72, 0x79, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, + 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, + 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, + 0x20, 0x31, 0x20, 0x31, 0x2e, 0x33, 0x33, 0x39, + 0x32, 0x38, 0x35, 0x39, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, + 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, + 0x20, 0x31, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, + 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, + 0x72, 0x6d, 0x3d, 0x22, 0x6d, 0x61, 0x74, 0x72, + 0x69, 0x78, 0x28, 0x31, 0x2e, 0x30, 0x35, 0x37, + 0x33, 0x33, 0x30, 0x31, 0x2c, 0x30, 0x2c, 0x30, + 0x2c, 0x31, 0x2e, 0x30, 0x35, 0x37, 0x33, 0x33, + 0x30, 0x31, 0x2c, 0x30, 0x2e, 0x38, 0x31, 0x38, + 0x33, 0x34, 0x39, 0x38, 0x2c, 0x35, 0x2e, 0x30, + 0x39, 0x36, 0x31, 0x32, 0x33, 0x31, 0x65, 0x2d, + 0x32, 0x29, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, + 0x6d, 0x3d, 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, + 0x78, 0x28, 0x30, 0x2e, 0x39, 0x33, 0x31, 0x38, + 0x38, 0x36, 0x36, 0x2c, 0x30, 0x2c, 0x30, 0x2c, + 0x30, 0x2e, 0x39, 0x33, 0x31, 0x38, 0x38, 0x36, + 0x36, 0x2c, 0x32, 0x2e, 0x37, 0x38, 0x33, 0x31, + 0x32, 0x31, 0x31, 0x2c, 0x32, 0x2e, 0x31, 0x36, + 0x37, 0x34, 0x32, 0x39, 0x31, 0x29, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, + 0x36, 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, + 0x41, 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, + 0x31, 0x20, 0x31, 0x20, 0x31, 0x2e, 0x33, 0x33, + 0x39, 0x32, 0x38, 0x35, 0x39, 0x2c, 0x31, 0x36, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, + 0x41, 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, + 0x31, 0x20, 0x31, 0x20, 0x33, 0x31, 0x2e, 0x31, + 0x36, 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, + 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x31, + 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x72, 0x78, 0x3d, 0x22, 0x31, 0x34, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x63, 0x79, 0x3d, 0x22, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x63, 0x78, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x32, + 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, + 0x74, 0x68, 0x34, 0x34, 0x32, 0x39, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x30, 0x2e, + 0x35, 0x33, 0x39, 0x32, 0x31, 0x35, 0x36, 0x39, + 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, + 0x76, 0x65, 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x75, 0x72, + 0x6c, 0x28, 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x35, 0x38, 0x35, 0x39, 0x29, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, + 0x64, 0x74, 0x68, 0x3a, 0x31, 0x2e, 0x36, 0x36, + 0x36, 0x30, 0x33, 0x34, 0x37, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, + 0x65, 0x63, 0x61, 0x70, 0x3a, 0x72, 0x6f, 0x75, + 0x6e, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, + 0x69, 0x6e, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, + 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, + 0x79, 0x3a, 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, + 0x61, 0x72, 0x63, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, + 0x68, 0x35, 0x35, 0x34, 0x33, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x31, 0x39, 0x2c, 0x31, 0x38, + 0x20, 0x43, 0x20, 0x31, 0x39, 0x2c, 0x31, 0x38, + 0x2e, 0x35, 0x35, 0x32, 0x20, 0x31, 0x38, 0x2e, + 0x35, 0x35, 0x31, 0x39, 0x39, 0x39, 0x2c, 0x31, + 0x39, 0x20, 0x31, 0x38, 0x2c, 0x31, 0x39, 0x20, + 0x43, 0x20, 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, + 0x2c, 0x31, 0x39, 0x20, 0x31, 0x37, 0x2c, 0x31, + 0x38, 0x2e, 0x35, 0x35, 0x32, 0x20, 0x31, 0x37, + 0x2c, 0x31, 0x38, 0x20, 0x43, 0x20, 0x31, 0x37, + 0x2c, 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, 0x20, + 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, 0x2c, 0x31, + 0x37, 0x20, 0x31, 0x38, 0x2c, 0x31, 0x37, 0x20, + 0x43, 0x20, 0x31, 0x38, 0x2e, 0x35, 0x35, 0x31, + 0x39, 0x39, 0x39, 0x2c, 0x31, 0x37, 0x20, 0x31, + 0x39, 0x2c, 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, + 0x20, 0x31, 0x39, 0x2c, 0x31, 0x38, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, + 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x63, 0x33, + 0x63, 0x39, 0x63, 0x39, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, + 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, + 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, + 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x67, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x67, 0x35, 0x38, 0x30, 0x32, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, + 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x65, 0x61, 0x65, + 0x63, 0x65, 0x37, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, + 0x66, 0x6f, 0x72, 0x6d, 0x3d, 0x22, 0x6d, 0x61, + 0x74, 0x72, 0x69, 0x78, 0x28, 0x30, 0x2e, 0x39, + 0x39, 0x35, 0x34, 0x31, 0x36, 0x37, 0x2c, 0x30, + 0x2c, 0x30, 0x2c, 0x30, 0x2e, 0x39, 0x39, 0x35, + 0x34, 0x31, 0x36, 0x37, 0x2c, 0x38, 0x2e, 0x32, + 0x34, 0x39, 0x39, 0x32, 0x35, 0x31, 0x65, 0x2d, + 0x32, 0x2c, 0x38, 0x2e, 0x32, 0x34, 0x39, 0x38, + 0x34, 0x30, 0x35, 0x65, 0x2d, 0x32, 0x29, 0x22, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x23, 0x65, 0x61, 0x65, 0x63, + 0x65, 0x37, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, + 0x20, 0x37, 0x2e, 0x39, 0x34, 0x37, 0x30, 0x34, + 0x39, 0x33, 0x2c, 0x31, 0x38, 0x20, 0x43, 0x20, + 0x37, 0x2e, 0x39, 0x34, 0x37, 0x30, 0x34, 0x39, + 0x33, 0x2c, 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, + 0x20, 0x37, 0x2e, 0x36, 0x31, 0x31, 0x30, 0x34, + 0x38, 0x34, 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x20, 0x37, 0x2e, 0x31, 0x39, 0x37, 0x30, 0x34, + 0x39, 0x33, 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x20, 0x43, 0x20, 0x36, 0x2e, 0x37, 0x38, 0x33, + 0x30, 0x34, 0x39, 0x32, 0x2c, 0x31, 0x38, 0x2e, + 0x37, 0x35, 0x20, 0x36, 0x2e, 0x34, 0x34, 0x37, + 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x38, 0x2e, + 0x34, 0x31, 0x34, 0x20, 0x36, 0x2e, 0x34, 0x34, + 0x37, 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x38, + 0x20, 0x43, 0x20, 0x36, 0x2e, 0x34, 0x34, 0x37, + 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x37, 0x2e, + 0x35, 0x38, 0x36, 0x20, 0x36, 0x2e, 0x37, 0x38, + 0x33, 0x30, 0x34, 0x39, 0x32, 0x2c, 0x31, 0x37, + 0x2e, 0x32, 0x35, 0x20, 0x37, 0x2e, 0x31, 0x39, + 0x37, 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x37, + 0x2e, 0x32, 0x35, 0x20, 0x43, 0x20, 0x37, 0x2e, + 0x36, 0x31, 0x31, 0x30, 0x34, 0x38, 0x34, 0x2c, + 0x31, 0x37, 0x2e, 0x32, 0x35, 0x20, 0x37, 0x2e, + 0x39, 0x34, 0x37, 0x30, 0x34, 0x39, 0x33, 0x2c, + 0x31, 0x37, 0x2e, 0x35, 0x38, 0x36, 0x20, 0x37, + 0x2e, 0x39, 0x34, 0x37, 0x30, 0x34, 0x39, 0x33, + 0x2c, 0x31, 0x38, 0x20, 0x7a, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x35, 0x35, 0x34, 0x35, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x65, 0x61, 0x65, 0x63, 0x65, + 0x37, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x32, 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, 0x35, + 0x31, 0x2c, 0x31, 0x38, 0x20, 0x43, 0x20, 0x32, + 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, 0x35, 0x31, + 0x2c, 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, 0x20, + 0x32, 0x39, 0x2e, 0x32, 0x31, 0x36, 0x39, 0x35, + 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x20, 0x32, + 0x38, 0x2e, 0x38, 0x30, 0x32, 0x39, 0x35, 0x31, + 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x20, 0x43, + 0x20, 0x32, 0x38, 0x2e, 0x33, 0x38, 0x38, 0x39, + 0x35, 0x31, 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x20, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, 0x39, + 0x35, 0x31, 0x2c, 0x31, 0x38, 0x2e, 0x34, 0x31, + 0x34, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, + 0x39, 0x35, 0x31, 0x2c, 0x31, 0x38, 0x20, 0x43, + 0x20, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, 0x39, + 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, 0x35, 0x38, + 0x36, 0x20, 0x32, 0x38, 0x2e, 0x33, 0x38, 0x38, + 0x39, 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, 0x32, + 0x35, 0x20, 0x32, 0x38, 0x2e, 0x38, 0x30, 0x32, + 0x39, 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, 0x32, + 0x35, 0x20, 0x43, 0x20, 0x32, 0x39, 0x2e, 0x32, + 0x31, 0x36, 0x39, 0x35, 0x2c, 0x31, 0x37, 0x2e, + 0x32, 0x35, 0x20, 0x32, 0x39, 0x2e, 0x35, 0x35, + 0x32, 0x39, 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, + 0x35, 0x38, 0x36, 0x20, 0x32, 0x39, 0x2e, 0x35, + 0x35, 0x32, 0x39, 0x35, 0x31, 0x2c, 0x31, 0x38, + 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, 0x35, 0x35, + 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x35, 0x36, 0x34, 0x39, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x39, + 0x2e, 0x32, 0x39, 0x33, 0x38, 0x38, 0x39, 0x33, + 0x2c, 0x32, 0x33, 0x2e, 0x30, 0x32, 0x36, 0x34, + 0x37, 0x36, 0x20, 0x43, 0x20, 0x39, 0x2e, 0x35, + 0x30, 0x30, 0x38, 0x38, 0x39, 0x33, 0x2c, 0x32, + 0x33, 0x2e, 0x33, 0x38, 0x35, 0x30, 0x31, 0x20, + 0x39, 0x2e, 0x33, 0x37, 0x37, 0x39, 0x30, 0x34, + 0x2c, 0x32, 0x33, 0x2e, 0x38, 0x34, 0x33, 0x39, + 0x39, 0x35, 0x20, 0x39, 0x2e, 0x30, 0x31, 0x39, + 0x33, 0x37, 0x30, 0x33, 0x2c, 0x32, 0x34, 0x2e, + 0x30, 0x35, 0x30, 0x39, 0x39, 0x35, 0x20, 0x43, + 0x20, 0x38, 0x2e, 0x36, 0x36, 0x30, 0x38, 0x33, + 0x35, 0x37, 0x2c, 0x32, 0x34, 0x2e, 0x32, 0x35, + 0x37, 0x39, 0x39, 0x35, 0x20, 0x38, 0x2e, 0x32, + 0x30, 0x31, 0x38, 0x35, 0x31, 0x32, 0x2c, 0x32, + 0x34, 0x2e, 0x31, 0x33, 0x35, 0x30, 0x31, 0x20, + 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, 0x31, + 0x32, 0x2c, 0x32, 0x33, 0x2e, 0x37, 0x37, 0x36, + 0x34, 0x37, 0x36, 0x20, 0x43, 0x20, 0x37, 0x2e, + 0x37, 0x38, 0x37, 0x38, 0x35, 0x31, 0x32, 0x2c, + 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, 0x39, 0x34, + 0x31, 0x20, 0x37, 0x2e, 0x39, 0x31, 0x30, 0x38, + 0x33, 0x35, 0x37, 0x2c, 0x32, 0x32, 0x2e, 0x39, + 0x35, 0x38, 0x39, 0x35, 0x37, 0x20, 0x38, 0x2e, + 0x32, 0x36, 0x39, 0x33, 0x37, 0x30, 0x33, 0x2c, + 0x32, 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, 0x35, + 0x36, 0x20, 0x43, 0x20, 0x38, 0x2e, 0x36, 0x32, + 0x37, 0x39, 0x30, 0x34, 0x2c, 0x32, 0x32, 0x2e, + 0x35, 0x34, 0x34, 0x39, 0x35, 0x37, 0x20, 0x39, + 0x2e, 0x30, 0x38, 0x36, 0x38, 0x38, 0x39, 0x33, + 0x2c, 0x32, 0x32, 0x2e, 0x36, 0x36, 0x37, 0x39, + 0x34, 0x31, 0x20, 0x39, 0x2e, 0x32, 0x39, 0x33, + 0x38, 0x38, 0x39, 0x33, 0x2c, 0x32, 0x33, 0x2e, + 0x30, 0x32, 0x36, 0x34, 0x37, 0x36, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, + 0x65, 0x61, 0x65, 0x63, 0x65, 0x37, 0x3b, 0x66, + 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, + 0x36, 0x35, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x30, + 0x35, 0x31, 0x34, 0x39, 0x2c, 0x31, 0x32, 0x2e, + 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, 0x20, 0x43, + 0x20, 0x32, 0x38, 0x2e, 0x32, 0x31, 0x32, 0x31, + 0x34, 0x39, 0x2c, 0x31, 0x32, 0x2e, 0x35, 0x38, + 0x32, 0x30, 0x35, 0x39, 0x20, 0x32, 0x38, 0x2e, + 0x30, 0x38, 0x39, 0x31, 0x36, 0x34, 0x2c, 0x31, + 0x33, 0x2e, 0x30, 0x34, 0x31, 0x30, 0x34, 0x34, + 0x20, 0x32, 0x37, 0x2e, 0x37, 0x33, 0x30, 0x36, + 0x33, 0x2c, 0x31, 0x33, 0x2e, 0x32, 0x34, 0x38, + 0x30, 0x34, 0x34, 0x20, 0x43, 0x20, 0x32, 0x37, + 0x2e, 0x33, 0x37, 0x32, 0x30, 0x39, 0x35, 0x2c, + 0x31, 0x33, 0x2e, 0x34, 0x35, 0x35, 0x30, 0x34, + 0x34, 0x20, 0x32, 0x36, 0x2e, 0x39, 0x31, 0x33, + 0x31, 0x31, 0x31, 0x2c, 0x31, 0x33, 0x2e, 0x33, + 0x33, 0x32, 0x30, 0x35, 0x39, 0x20, 0x32, 0x36, + 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, 0x2c, + 0x31, 0x32, 0x2e, 0x39, 0x37, 0x33, 0x35, 0x32, + 0x35, 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, 0x34, + 0x39, 0x39, 0x31, 0x31, 0x31, 0x2c, 0x31, 0x32, + 0x2e, 0x36, 0x31, 0x34, 0x39, 0x39, 0x20, 0x32, + 0x36, 0x2e, 0x36, 0x32, 0x32, 0x30, 0x39, 0x35, + 0x2c, 0x31, 0x32, 0x2e, 0x31, 0x35, 0x36, 0x30, + 0x30, 0x36, 0x20, 0x32, 0x36, 0x2e, 0x39, 0x38, + 0x30, 0x36, 0x33, 0x2c, 0x31, 0x31, 0x2e, 0x39, + 0x34, 0x39, 0x30, 0x30, 0x36, 0x20, 0x43, 0x20, + 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, 0x31, 0x36, + 0x34, 0x2c, 0x31, 0x31, 0x2e, 0x37, 0x34, 0x32, + 0x30, 0x30, 0x36, 0x20, 0x32, 0x37, 0x2e, 0x37, + 0x39, 0x38, 0x31, 0x34, 0x39, 0x2c, 0x31, 0x31, + 0x2e, 0x38, 0x36, 0x34, 0x39, 0x39, 0x20, 0x32, + 0x38, 0x2e, 0x30, 0x30, 0x35, 0x31, 0x34, 0x39, + 0x2c, 0x31, 0x32, 0x2e, 0x32, 0x32, 0x33, 0x35, + 0x32, 0x35, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x23, 0x65, 0x61, 0x65, 0x63, + 0x65, 0x37, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, + 0x65, 0x61, 0x65, 0x63, 0x65, 0x37, 0x3b, 0x66, + 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, 0x32, 0x2e, + 0x39, 0x37, 0x33, 0x35, 0x32, 0x35, 0x2c, 0x32, + 0x36, 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, + 0x20, 0x43, 0x20, 0x31, 0x33, 0x2e, 0x33, 0x33, + 0x32, 0x30, 0x35, 0x39, 0x2c, 0x32, 0x36, 0x2e, + 0x39, 0x31, 0x33, 0x31, 0x31, 0x31, 0x20, 0x31, + 0x33, 0x2e, 0x34, 0x35, 0x35, 0x30, 0x34, 0x33, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x37, 0x32, 0x30, + 0x39, 0x37, 0x20, 0x31, 0x33, 0x2e, 0x32, 0x34, + 0x38, 0x30, 0x34, 0x34, 0x2c, 0x32, 0x37, 0x2e, + 0x37, 0x33, 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, + 0x20, 0x31, 0x33, 0x2e, 0x30, 0x34, 0x31, 0x30, + 0x34, 0x34, 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x38, + 0x39, 0x31, 0x36, 0x35, 0x20, 0x31, 0x32, 0x2e, + 0x35, 0x38, 0x32, 0x30, 0x35, 0x39, 0x2c, 0x32, + 0x38, 0x2e, 0x32, 0x31, 0x32, 0x31, 0x35, 0x20, + 0x31, 0x32, 0x2e, 0x32, 0x32, 0x33, 0x35, 0x32, + 0x35, 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x30, 0x35, + 0x31, 0x35, 0x20, 0x43, 0x20, 0x31, 0x31, 0x2e, + 0x38, 0x36, 0x34, 0x39, 0x39, 0x2c, 0x32, 0x37, + 0x2e, 0x37, 0x39, 0x38, 0x31, 0x35, 0x20, 0x31, + 0x31, 0x2e, 0x37, 0x34, 0x32, 0x30, 0x30, 0x36, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, 0x31, + 0x36, 0x35, 0x20, 0x31, 0x31, 0x2e, 0x39, 0x34, + 0x39, 0x30, 0x30, 0x36, 0x2c, 0x32, 0x36, 0x2e, + 0x39, 0x38, 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, + 0x20, 0x31, 0x32, 0x2e, 0x31, 0x35, 0x36, 0x30, + 0x30, 0x35, 0x2c, 0x32, 0x36, 0x2e, 0x36, 0x32, + 0x32, 0x30, 0x39, 0x37, 0x20, 0x31, 0x32, 0x2e, + 0x36, 0x31, 0x34, 0x39, 0x39, 0x2c, 0x32, 0x36, + 0x2e, 0x34, 0x39, 0x39, 0x31, 0x31, 0x31, 0x20, + 0x31, 0x32, 0x2e, 0x39, 0x37, 0x33, 0x35, 0x32, + 0x35, 0x2c, 0x32, 0x36, 0x2e, 0x37, 0x30, 0x36, + 0x31, 0x31, 0x31, 0x20, 0x7a, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x35, 0x36, 0x35, 0x35, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x65, 0x61, 0x65, 0x63, 0x65, + 0x37, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x32, 0x33, 0x2e, 0x37, 0x37, 0x36, 0x34, 0x37, + 0x36, 0x2c, 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, + 0x35, 0x31, 0x38, 0x20, 0x43, 0x20, 0x32, 0x34, + 0x2e, 0x31, 0x33, 0x35, 0x30, 0x31, 0x2c, 0x38, + 0x2e, 0x32, 0x30, 0x31, 0x38, 0x35, 0x31, 0x38, + 0x20, 0x32, 0x34, 0x2e, 0x32, 0x35, 0x37, 0x39, + 0x39, 0x34, 0x2c, 0x38, 0x2e, 0x36, 0x36, 0x30, + 0x38, 0x33, 0x37, 0x32, 0x20, 0x32, 0x34, 0x2e, + 0x30, 0x35, 0x30, 0x39, 0x39, 0x35, 0x2c, 0x39, + 0x2e, 0x30, 0x31, 0x39, 0x33, 0x37, 0x30, 0x38, + 0x20, 0x43, 0x20, 0x32, 0x33, 0x2e, 0x38, 0x34, + 0x33, 0x39, 0x39, 0x35, 0x2c, 0x39, 0x2e, 0x33, + 0x37, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, 0x32, + 0x33, 0x2e, 0x33, 0x38, 0x35, 0x30, 0x31, 0x2c, + 0x39, 0x2e, 0x35, 0x30, 0x30, 0x38, 0x38, 0x39, + 0x39, 0x20, 0x32, 0x33, 0x2e, 0x30, 0x32, 0x36, + 0x34, 0x37, 0x36, 0x2c, 0x39, 0x2e, 0x32, 0x39, + 0x33, 0x38, 0x38, 0x39, 0x39, 0x20, 0x43, 0x20, + 0x32, 0x32, 0x2e, 0x36, 0x36, 0x37, 0x39, 0x34, + 0x31, 0x2c, 0x39, 0x2e, 0x30, 0x38, 0x36, 0x38, + 0x38, 0x39, 0x39, 0x20, 0x32, 0x32, 0x2e, 0x35, + 0x34, 0x34, 0x39, 0x35, 0x36, 0x2c, 0x38, 0x2e, + 0x36, 0x32, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, + 0x32, 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, 0x35, + 0x36, 0x2c, 0x38, 0x2e, 0x32, 0x36, 0x39, 0x33, + 0x37, 0x30, 0x38, 0x20, 0x43, 0x20, 0x32, 0x32, + 0x2e, 0x39, 0x35, 0x38, 0x39, 0x35, 0x36, 0x2c, + 0x37, 0x2e, 0x39, 0x31, 0x30, 0x38, 0x33, 0x37, + 0x32, 0x20, 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, + 0x39, 0x34, 0x31, 0x2c, 0x37, 0x2e, 0x37, 0x38, + 0x37, 0x38, 0x35, 0x31, 0x38, 0x20, 0x32, 0x33, + 0x2e, 0x37, 0x37, 0x36, 0x34, 0x37, 0x36, 0x2c, + 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, 0x31, + 0x38, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, 0x36, + 0x35, 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, + 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x70, 0x61, 0x74, 0x68, 0x35, 0x36, 0x36, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x31, 0x38, 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x35, + 0x32, 0x39, 0x35, 0x32, 0x20, 0x43, 0x20, 0x31, + 0x38, 0x2e, 0x34, 0x31, 0x34, 0x2c, 0x32, 0x38, + 0x2e, 0x30, 0x35, 0x32, 0x39, 0x35, 0x32, 0x20, + 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, 0x32, 0x38, + 0x2e, 0x33, 0x38, 0x38, 0x39, 0x35, 0x33, 0x20, + 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, 0x32, 0x38, + 0x2e, 0x38, 0x30, 0x32, 0x39, 0x35, 0x32, 0x20, + 0x43, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, + 0x32, 0x39, 0x2e, 0x32, 0x31, 0x36, 0x39, 0x35, + 0x32, 0x20, 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, + 0x2c, 0x32, 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x31, 0x38, 0x2c, 0x32, 0x39, + 0x2e, 0x35, 0x35, 0x32, 0x39, 0x35, 0x32, 0x20, + 0x43, 0x20, 0x31, 0x37, 0x2e, 0x35, 0x38, 0x36, + 0x2c, 0x32, 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, + 0x2c, 0x32, 0x39, 0x2e, 0x32, 0x31, 0x36, 0x39, + 0x35, 0x32, 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, + 0x2c, 0x32, 0x38, 0x2e, 0x38, 0x30, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x43, 0x20, 0x31, 0x37, 0x2e, + 0x32, 0x35, 0x2c, 0x32, 0x38, 0x2e, 0x33, 0x38, + 0x38, 0x39, 0x35, 0x33, 0x20, 0x31, 0x37, 0x2e, + 0x35, 0x38, 0x36, 0x2c, 0x32, 0x38, 0x2e, 0x30, + 0x35, 0x32, 0x39, 0x35, 0x32, 0x20, 0x31, 0x38, + 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x23, 0x65, 0x61, 0x65, 0x63, + 0x65, 0x37, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x35, 0x36, 0x36, 0x33, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, + 0x38, 0x2c, 0x36, 0x2e, 0x34, 0x34, 0x37, 0x30, + 0x35, 0x20, 0x43, 0x20, 0x31, 0x38, 0x2e, 0x34, + 0x31, 0x34, 0x2c, 0x36, 0x2e, 0x34, 0x34, 0x37, + 0x30, 0x35, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x2c, 0x36, 0x2e, 0x37, 0x38, 0x33, 0x30, 0x35, + 0x31, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, + 0x37, 0x2e, 0x31, 0x39, 0x37, 0x30, 0x35, 0x20, + 0x43, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, + 0x37, 0x2e, 0x36, 0x31, 0x31, 0x30, 0x35, 0x20, + 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, 0x2c, 0x37, + 0x2e, 0x39, 0x34, 0x37, 0x30, 0x35, 0x20, 0x31, + 0x38, 0x2c, 0x37, 0x2e, 0x39, 0x34, 0x37, 0x30, + 0x35, 0x20, 0x43, 0x20, 0x31, 0x37, 0x2e, 0x35, + 0x38, 0x36, 0x2c, 0x37, 0x2e, 0x39, 0x34, 0x37, + 0x30, 0x35, 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, + 0x2c, 0x37, 0x2e, 0x36, 0x31, 0x31, 0x30, 0x35, + 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, 0x2c, 0x37, + 0x2e, 0x31, 0x39, 0x37, 0x30, 0x35, 0x20, 0x43, + 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, 0x2c, 0x36, + 0x2e, 0x37, 0x38, 0x33, 0x30, 0x35, 0x31, 0x20, + 0x31, 0x37, 0x2e, 0x35, 0x38, 0x36, 0x2c, 0x36, + 0x2e, 0x34, 0x34, 0x37, 0x30, 0x35, 0x20, 0x31, + 0x38, 0x2c, 0x36, 0x2e, 0x34, 0x34, 0x37, 0x30, + 0x35, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x65, 0x61, 0x65, 0x63, 0x65, + 0x37, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x65, + 0x61, 0x65, 0x63, 0x65, 0x37, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, + 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, + 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x32, 0x33, 0x2e, 0x30, + 0x32, 0x36, 0x34, 0x37, 0x36, 0x2c, 0x32, 0x36, + 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, 0x20, + 0x43, 0x20, 0x32, 0x33, 0x2e, 0x33, 0x38, 0x35, + 0x30, 0x31, 0x2c, 0x32, 0x36, 0x2e, 0x34, 0x39, + 0x39, 0x31, 0x31, 0x31, 0x20, 0x32, 0x33, 0x2e, + 0x38, 0x34, 0x33, 0x39, 0x39, 0x35, 0x2c, 0x32, + 0x36, 0x2e, 0x36, 0x32, 0x32, 0x30, 0x39, 0x37, + 0x20, 0x32, 0x34, 0x2e, 0x30, 0x35, 0x30, 0x39, + 0x39, 0x35, 0x2c, 0x32, 0x36, 0x2e, 0x39, 0x38, + 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, 0x20, 0x32, + 0x34, 0x2e, 0x32, 0x35, 0x37, 0x39, 0x39, 0x35, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, 0x31, + 0x36, 0x35, 0x20, 0x32, 0x34, 0x2e, 0x31, 0x33, + 0x35, 0x30, 0x31, 0x2c, 0x32, 0x37, 0x2e, 0x37, + 0x39, 0x38, 0x31, 0x35, 0x20, 0x32, 0x33, 0x2e, + 0x37, 0x37, 0x36, 0x34, 0x37, 0x36, 0x2c, 0x32, + 0x38, 0x2e, 0x30, 0x30, 0x35, 0x31, 0x35, 0x20, + 0x43, 0x20, 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, + 0x39, 0x34, 0x31, 0x2c, 0x32, 0x38, 0x2e, 0x32, + 0x31, 0x32, 0x31, 0x35, 0x20, 0x32, 0x32, 0x2e, + 0x39, 0x35, 0x38, 0x39, 0x35, 0x37, 0x2c, 0x32, + 0x38, 0x2e, 0x30, 0x38, 0x39, 0x31, 0x36, 0x35, + 0x20, 0x32, 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, + 0x35, 0x36, 0x2c, 0x32, 0x37, 0x2e, 0x37, 0x33, + 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, 0x20, 0x32, + 0x32, 0x2e, 0x35, 0x34, 0x34, 0x39, 0x35, 0x37, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x37, 0x32, 0x30, + 0x39, 0x37, 0x20, 0x32, 0x32, 0x2e, 0x36, 0x36, + 0x37, 0x39, 0x34, 0x31, 0x2c, 0x32, 0x36, 0x2e, + 0x39, 0x31, 0x33, 0x31, 0x31, 0x31, 0x20, 0x32, + 0x33, 0x2e, 0x30, 0x32, 0x36, 0x34, 0x37, 0x36, + 0x2c, 0x32, 0x36, 0x2e, 0x37, 0x30, 0x36, 0x31, + 0x31, 0x31, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, + 0x36, 0x36, 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, + 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, + 0x3a, 0x23, 0x65, 0x61, 0x65, 0x63, 0x65, 0x37, + 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, + 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, + 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, + 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, + 0x32, 0x2e, 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, + 0x2c, 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, + 0x31, 0x38, 0x20, 0x43, 0x20, 0x31, 0x32, 0x2e, + 0x35, 0x38, 0x32, 0x30, 0x35, 0x39, 0x2c, 0x37, + 0x2e, 0x37, 0x38, 0x37, 0x38, 0x35, 0x31, 0x38, + 0x20, 0x31, 0x33, 0x2e, 0x30, 0x34, 0x31, 0x30, + 0x34, 0x34, 0x2c, 0x37, 0x2e, 0x39, 0x31, 0x30, + 0x38, 0x33, 0x37, 0x32, 0x20, 0x31, 0x33, 0x2e, + 0x32, 0x34, 0x38, 0x30, 0x34, 0x34, 0x2c, 0x38, + 0x2e, 0x32, 0x36, 0x39, 0x33, 0x37, 0x30, 0x38, + 0x20, 0x43, 0x20, 0x31, 0x33, 0x2e, 0x34, 0x35, + 0x35, 0x30, 0x34, 0x34, 0x2c, 0x38, 0x2e, 0x36, + 0x32, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, 0x31, + 0x33, 0x2e, 0x33, 0x33, 0x32, 0x30, 0x35, 0x39, + 0x2c, 0x39, 0x2e, 0x30, 0x38, 0x36, 0x38, 0x38, + 0x39, 0x39, 0x20, 0x31, 0x32, 0x2e, 0x39, 0x37, + 0x33, 0x35, 0x32, 0x35, 0x2c, 0x39, 0x2e, 0x32, + 0x39, 0x33, 0x38, 0x38, 0x39, 0x39, 0x20, 0x43, + 0x20, 0x31, 0x32, 0x2e, 0x36, 0x31, 0x34, 0x39, + 0x39, 0x2c, 0x39, 0x2e, 0x35, 0x30, 0x30, 0x38, + 0x38, 0x39, 0x39, 0x20, 0x31, 0x32, 0x2e, 0x31, + 0x35, 0x36, 0x30, 0x30, 0x36, 0x2c, 0x39, 0x2e, + 0x33, 0x37, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, + 0x31, 0x31, 0x2e, 0x39, 0x34, 0x39, 0x30, 0x30, + 0x36, 0x2c, 0x39, 0x2e, 0x30, 0x31, 0x39, 0x33, + 0x37, 0x30, 0x38, 0x20, 0x43, 0x20, 0x31, 0x31, + 0x2e, 0x37, 0x34, 0x32, 0x30, 0x30, 0x36, 0x2c, + 0x38, 0x2e, 0x36, 0x36, 0x30, 0x38, 0x33, 0x37, + 0x32, 0x20, 0x31, 0x31, 0x2e, 0x38, 0x36, 0x34, + 0x39, 0x39, 0x2c, 0x38, 0x2e, 0x32, 0x30, 0x31, + 0x38, 0x35, 0x31, 0x38, 0x20, 0x31, 0x32, 0x2e, + 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, 0x2c, 0x37, + 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, 0x31, 0x38, + 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, 0x36, 0x36, + 0x39, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x35, 0x36, 0x37, 0x33, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x32, + 0x36, 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, + 0x2c, 0x32, 0x33, 0x2e, 0x30, 0x32, 0x36, 0x34, + 0x37, 0x36, 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, + 0x39, 0x31, 0x33, 0x31, 0x31, 0x31, 0x2c, 0x32, + 0x32, 0x2e, 0x36, 0x36, 0x37, 0x39, 0x34, 0x32, + 0x20, 0x32, 0x37, 0x2e, 0x33, 0x37, 0x32, 0x30, + 0x39, 0x37, 0x2c, 0x32, 0x32, 0x2e, 0x35, 0x34, + 0x34, 0x39, 0x35, 0x38, 0x20, 0x32, 0x37, 0x2e, + 0x37, 0x33, 0x30, 0x36, 0x33, 0x31, 0x2c, 0x32, + 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, 0x35, 0x37, + 0x20, 0x43, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x38, + 0x39, 0x31, 0x36, 0x35, 0x2c, 0x32, 0x32, 0x2e, + 0x39, 0x35, 0x38, 0x39, 0x35, 0x37, 0x20, 0x32, + 0x38, 0x2e, 0x32, 0x31, 0x32, 0x31, 0x35, 0x2c, + 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, 0x39, 0x34, + 0x32, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x30, 0x35, + 0x31, 0x35, 0x2c, 0x32, 0x33, 0x2e, 0x37, 0x37, + 0x36, 0x34, 0x37, 0x36, 0x20, 0x43, 0x20, 0x32, + 0x37, 0x2e, 0x37, 0x39, 0x38, 0x31, 0x35, 0x2c, + 0x32, 0x34, 0x2e, 0x31, 0x33, 0x35, 0x30, 0x31, + 0x31, 0x20, 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, + 0x31, 0x36, 0x35, 0x2c, 0x32, 0x34, 0x2e, 0x32, + 0x35, 0x37, 0x39, 0x39, 0x35, 0x20, 0x32, 0x36, + 0x2e, 0x39, 0x38, 0x30, 0x36, 0x33, 0x31, 0x2c, + 0x32, 0x34, 0x2e, 0x30, 0x35, 0x30, 0x39, 0x39, + 0x35, 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, 0x36, + 0x32, 0x32, 0x30, 0x39, 0x37, 0x2c, 0x32, 0x33, + 0x2e, 0x38, 0x34, 0x33, 0x39, 0x39, 0x36, 0x20, + 0x32, 0x36, 0x2e, 0x34, 0x39, 0x39, 0x31, 0x31, + 0x31, 0x2c, 0x32, 0x33, 0x2e, 0x33, 0x38, 0x35, + 0x30, 0x31, 0x31, 0x20, 0x32, 0x36, 0x2e, 0x37, + 0x30, 0x36, 0x31, 0x31, 0x31, 0x2c, 0x32, 0x33, + 0x2e, 0x30, 0x32, 0x36, 0x34, 0x37, 0x36, 0x20, + 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, + 0x23, 0x65, 0x61, 0x65, 0x63, 0x65, 0x37, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, + 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, + 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x35, 0x36, 0x37, 0x35, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x37, 0x2e, 0x39, 0x39, + 0x34, 0x38, 0x35, 0x31, 0x38, 0x2c, 0x31, 0x32, + 0x2e, 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, 0x20, + 0x43, 0x20, 0x38, 0x2e, 0x32, 0x30, 0x31, 0x38, + 0x35, 0x31, 0x38, 0x2c, 0x31, 0x31, 0x2e, 0x38, + 0x36, 0x34, 0x39, 0x39, 0x31, 0x20, 0x38, 0x2e, + 0x36, 0x36, 0x30, 0x38, 0x33, 0x37, 0x32, 0x2c, + 0x31, 0x31, 0x2e, 0x37, 0x34, 0x32, 0x30, 0x30, + 0x37, 0x20, 0x39, 0x2e, 0x30, 0x31, 0x39, 0x33, + 0x37, 0x30, 0x38, 0x2c, 0x31, 0x31, 0x2e, 0x39, + 0x34, 0x39, 0x30, 0x30, 0x36, 0x20, 0x43, 0x20, + 0x39, 0x2e, 0x33, 0x37, 0x37, 0x39, 0x30, 0x35, + 0x34, 0x2c, 0x31, 0x32, 0x2e, 0x31, 0x35, 0x36, + 0x30, 0x30, 0x36, 0x20, 0x39, 0x2e, 0x35, 0x30, + 0x30, 0x38, 0x38, 0x39, 0x39, 0x2c, 0x31, 0x32, + 0x2e, 0x36, 0x31, 0x34, 0x39, 0x39, 0x31, 0x20, + 0x39, 0x2e, 0x32, 0x39, 0x33, 0x38, 0x38, 0x39, + 0x39, 0x2c, 0x31, 0x32, 0x2e, 0x39, 0x37, 0x33, + 0x35, 0x32, 0x35, 0x20, 0x43, 0x20, 0x39, 0x2e, + 0x30, 0x38, 0x36, 0x38, 0x38, 0x39, 0x39, 0x2c, + 0x31, 0x33, 0x2e, 0x33, 0x33, 0x32, 0x30, 0x36, + 0x20, 0x38, 0x2e, 0x36, 0x32, 0x37, 0x39, 0x30, + 0x35, 0x34, 0x2c, 0x31, 0x33, 0x2e, 0x34, 0x35, + 0x35, 0x30, 0x34, 0x34, 0x20, 0x38, 0x2e, 0x32, + 0x36, 0x39, 0x33, 0x37, 0x30, 0x38, 0x2c, 0x31, + 0x33, 0x2e, 0x32, 0x34, 0x38, 0x30, 0x34, 0x34, + 0x20, 0x43, 0x20, 0x37, 0x2e, 0x39, 0x31, 0x30, + 0x38, 0x33, 0x37, 0x32, 0x2c, 0x31, 0x33, 0x2e, + 0x30, 0x34, 0x31, 0x30, 0x34, 0x35, 0x20, 0x37, + 0x2e, 0x37, 0x38, 0x37, 0x38, 0x35, 0x31, 0x38, + 0x2c, 0x31, 0x32, 0x2e, 0x35, 0x38, 0x32, 0x30, + 0x36, 0x20, 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, + 0x35, 0x31, 0x38, 0x2c, 0x31, 0x32, 0x2e, 0x32, + 0x32, 0x33, 0x35, 0x32, 0x35, 0x20, 0x7a, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x65, + 0x61, 0x65, 0x63, 0x65, 0x37, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, + 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, + 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x67, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, + 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, + 0x6f, 0x64, 0x69, 0x3a, 0x74, 0x79, 0x70, 0x65, + 0x3d, 0x22, 0x61, 0x72, 0x63, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x23, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, + 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, 0x30, 0x2e, + 0x33, 0x30, 0x30, 0x30, 0x30, 0x30, 0x31, 0x39, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x33, 0x2e, 0x39, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x31, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, + 0x61, 0x72, 0x72, 0x61, 0x79, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, 0x6f, 0x66, + 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x36, 0x30, 0x39, 0x35, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, + 0x3d, 0x22, 0x33, 0x34, 0x2e, 0x36, 0x37, 0x33, + 0x36, 0x38, 0x33, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x79, 0x3d, + 0x22, 0x32, 0x39, 0x2e, 0x38, 0x30, 0x34, 0x32, + 0x31, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, + 0x6f, 0x64, 0x69, 0x3a, 0x72, 0x78, 0x3d, 0x22, + 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x32, + 0x2e, 0x31, 0x30, 0x33, 0x31, 0x35, 0x38, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x33, 0x34, 0x2e, + 0x36, 0x37, 0x33, 0x36, 0x38, 0x33, 0x20, 0x32, + 0x39, 0x2e, 0x38, 0x30, 0x34, 0x32, 0x31, 0x31, + 0x20, 0x41, 0x20, 0x30, 0x20, 0x32, 0x2e, 0x31, + 0x30, 0x33, 0x31, 0x35, 0x38, 0x20, 0x30, 0x20, + 0x31, 0x20, 0x31, 0x20, 0x20, 0x33, 0x34, 0x2e, + 0x36, 0x37, 0x33, 0x36, 0x38, 0x33, 0x2c, 0x32, + 0x39, 0x2e, 0x38, 0x30, 0x34, 0x32, 0x31, 0x31, + 0x20, 0x41, 0x20, 0x30, 0x20, 0x32, 0x2e, 0x31, + 0x30, 0x33, 0x31, 0x35, 0x38, 0x20, 0x30, 0x20, + 0x31, 0x20, 0x31, 0x20, 0x20, 0x33, 0x34, 0x2e, + 0x36, 0x37, 0x33, 0x36, 0x38, 0x33, 0x20, 0x32, + 0x39, 0x2e, 0x38, 0x30, 0x34, 0x32, 0x31, 0x31, + 0x20, 0x7a, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x3c, 0x2f, 0x67, 0x3e, 0x0a, 0x3c, 0x2f, + 0x73, 0x76, 0x67, 0x3e, 0x0a, 0x00, 0x00, 0x28, + 0x75, 0x75, 0x61, 0x79, 0x29, 0x6f, 0x72, 0x67, + 0x2f, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, + 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x2d, 0x66, 0x61, + 0x63, 0x65, 0x2d, 0x73, 0x6d, 0x61, 0x6c, 0x6c, + 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x69, 0x6e, 0x67, + 0x2e, 0x73, 0x76, 0x67, 0x00, 0x00, 0x00, 0x00, + 0xe0, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65, + 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31, + 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f, + 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54, + 0x46, 0x2d, 0x38, 0x22, 0x20, 0x73, 0x74, 0x61, + 0x6e, 0x64, 0x61, 0x6c, 0x6f, 0x6e, 0x65, 0x3d, + 0x22, 0x6e, 0x6f, 0x22, 0x3f, 0x3e, 0x0a, 0x3c, + 0x21, 0x2d, 0x2d, 0x20, 0x43, 0x72, 0x65, 0x61, + 0x74, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, + 0x20, 0x49, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x20, 0x28, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x2e, 0x6f, + 0x72, 0x67, 0x2f, 0x29, 0x20, 0x2d, 0x2d, 0x3e, + 0x0a, 0x3c, 0x73, 0x76, 0x67, 0x0a, 0x20, 0x20, + 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, 0x64, + 0x63, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x70, 0x75, 0x72, 0x6c, 0x2e, 0x6f, + 0x72, 0x67, 0x2f, 0x64, 0x63, 0x2f, 0x65, 0x6c, + 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x31, + 0x2e, 0x31, 0x2f, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, 0x63, 0x63, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x65, 0x62, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x63, 0x63, 0x2f, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, + 0x72, 0x64, 0x66, 0x3d, 0x22, 0x68, 0x74, 0x74, + 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, + 0x77, 0x33, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x31, + 0x39, 0x39, 0x39, 0x2f, 0x30, 0x32, 0x2f, 0x32, + 0x32, 0x2d, 0x72, 0x64, 0x66, 0x2d, 0x73, 0x79, + 0x6e, 0x74, 0x61, 0x78, 0x2d, 0x6e, 0x73, 0x23, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, + 0x6e, 0x73, 0x3a, 0x73, 0x76, 0x67, 0x3d, 0x22, + 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, + 0x77, 0x77, 0x2e, 0x77, 0x33, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x32, 0x30, 0x30, 0x30, 0x2f, 0x73, + 0x76, 0x67, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, + 0x6d, 0x6c, 0x6e, 0x73, 0x3d, 0x22, 0x68, 0x74, + 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, + 0x2e, 0x77, 0x33, 0x2e, 0x6f, 0x72, 0x67, 0x2f, + 0x32, 0x30, 0x30, 0x30, 0x2f, 0x73, 0x76, 0x67, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, + 0x6e, 0x73, 0x3a, 0x78, 0x6c, 0x69, 0x6e, 0x6b, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x77, 0x33, 0x2e, + 0x6f, 0x72, 0x67, 0x2f, 0x31, 0x39, 0x39, 0x39, + 0x2f, 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, + 0x3a, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x2e, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x66, 0x6f, 0x72, 0x67, 0x65, 0x2e, 0x6e, + 0x65, 0x74, 0x2f, 0x44, 0x54, 0x44, 0x2f, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x2d, + 0x30, 0x2e, 0x64, 0x74, 0x64, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, + 0x61, 0x63, 0x65, 0x73, 0x2f, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3d, + 0x22, 0x33, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3d, 0x22, + 0x33, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x73, 0x76, 0x67, 0x35, 0x34, + 0x31, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, + 0x22, 0x30, 0x2e, 0x33, 0x32, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x76, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x3d, 0x22, 0x30, 0x2e, 0x34, 0x35, + 0x2e, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x76, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, + 0x31, 0x2e, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x64, 0x6f, 0x63, 0x62, 0x61, 0x73, 0x65, + 0x3d, 0x22, 0x2f, 0x68, 0x6f, 0x6d, 0x65, 0x2f, + 0x6d, 0x63, 0x6c, 0x61, 0x73, 0x65, 0x6e, 0x2f, + 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x2f, + 0x69, 0x6e, 0x74, 0x6c, 0x63, 0x6c, 0x6f, 0x63, + 0x6b, 0x2d, 0x31, 0x2e, 0x30, 0x2f, 0x70, 0x69, + 0x78, 0x6d, 0x61, 0x70, 0x73, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x3a, 0x64, 0x6f, 0x63, 0x6e, 0x61, + 0x6d, 0x65, 0x3d, 0x22, 0x69, 0x6e, 0x74, 0x6c, + 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x2d, 0x66, 0x61, + 0x63, 0x65, 0x2d, 0x73, 0x6d, 0x61, 0x6c, 0x6c, + 0x2d, 0x6d, 0x6f, 0x72, 0x6e, 0x69, 0x6e, 0x67, + 0x2e, 0x73, 0x76, 0x67, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x3a, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, + 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, + 0x6f, 0x6e, 0x3d, 0x22, 0x6f, 0x72, 0x67, 0x2e, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x2e, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x2e, + 0x73, 0x76, 0x67, 0x2e, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x22, 0x3e, 0x0a, 0x20, + 0x20, 0x3c, 0x64, 0x65, 0x66, 0x73, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x64, 0x65, 0x66, 0x73, 0x35, 0x34, 0x31, 0x38, + 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x31, 0x30, 0x36, 0x35, 0x33, 0x22, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, + 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x31, 0x30, 0x36, + 0x35, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, 0x66, + 0x73, 0x65, 0x74, 0x3d, 0x22, 0x30, 0x2e, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, + 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, 0x6c, + 0x6f, 0x72, 0x3a, 0x23, 0x66, 0x33, 0x66, 0x34, + 0x66, 0x66, 0x3b, 0x73, 0x74, 0x6f, 0x70, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x3b, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, + 0x6f, 0x70, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x73, 0x74, 0x6f, 0x70, 0x31, 0x30, 0x36, 0x35, + 0x37, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, + 0x65, 0x74, 0x3d, 0x22, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, + 0x72, 0x3a, 0x23, 0x39, 0x31, 0x39, 0x33, 0x61, + 0x66, 0x3b, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x3b, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x2f, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x34, 0x32, 0x31, 0x37, 0x34, 0x22, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x34, 0x32, + 0x31, 0x37, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, + 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, + 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x34, 0x33, 0x34, + 0x33, 0x34, 0x33, 0x3b, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x30, 0x2e, 0x35, 0x33, 0x35, 0x33, 0x35, + 0x33, 0x35, 0x34, 0x3b, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x34, 0x32, + 0x31, 0x37, 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, + 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, 0x31, 0x2e, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, + 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x66, 0x66, 0x66, + 0x66, 0x66, 0x66, 0x3b, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x3b, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x32, 0x31, 0x34, 0x35, 0x22, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x32, + 0x31, 0x34, 0x37, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, + 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, 0x30, 0x2e, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, + 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x66, 0x66, 0x66, + 0x66, 0x66, 0x64, 0x3b, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x3b, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, + 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x32, 0x31, 0x34, + 0x39, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, + 0x65, 0x74, 0x3d, 0x22, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, + 0x72, 0x3a, 0x23, 0x64, 0x39, 0x64, 0x39, 0x64, + 0x38, 0x3b, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x2f, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x33, 0x37, 0x39, 0x33, 0x35, 0x22, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, + 0x23, 0x39, 0x34, 0x39, 0x37, 0x62, 0x33, 0x3b, + 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, + 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x33, 0x37, + 0x39, 0x33, 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, + 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x34, 0x63, 0x34, 0x30, 0x35, 0x39, 0x3b, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, + 0x22, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x33, 0x37, 0x39, + 0x33, 0x39, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x33, 0x38, 0x31, 0x36, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3d, + 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x22, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x33, + 0x38, 0x31, 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, + 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, + 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x3b, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x3b, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, + 0x74, 0x6f, 0x70, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x73, 0x74, 0x6f, 0x70, 0x33, 0x38, 0x32, + 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, + 0x65, 0x74, 0x3d, 0x22, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, + 0x72, 0x3a, 0x23, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x3b, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x30, + 0x3b, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x2f, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3d, + 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x68, 0x72, + 0x65, 0x66, 0x3d, 0x22, 0x23, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x33, 0x38, 0x31, 0x36, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x72, 0x61, 0x64, 0x69, + 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x35, 0x38, 0x34, 0x37, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x55, + 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, 0x75, 0x73, + 0x65, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x4f, + 0x6e, 0x55, 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x78, 0x3d, + 0x22, 0x33, 0x31, 0x2e, 0x31, 0x31, 0x32, 0x36, + 0x39, 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x63, 0x79, 0x3d, 0x22, 0x31, + 0x39, 0x2e, 0x30, 0x30, 0x38, 0x36, 0x32, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x66, 0x78, 0x3d, 0x22, 0x33, 0x31, 0x2e, + 0x31, 0x31, 0x32, 0x36, 0x39, 0x38, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, + 0x79, 0x3d, 0x22, 0x31, 0x39, 0x2e, 0x30, 0x30, + 0x38, 0x36, 0x32, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x3d, 0x22, + 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, 0x37, + 0x39, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x72, 0x61, 0x64, 0x69, 0x61, + 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, + 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, + 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, + 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x23, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x33, 0x37, 0x39, + 0x33, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x72, + 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x34, + 0x39, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x3d, + 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, 0x70, 0x61, + 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, 0x65, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x63, 0x78, 0x3d, 0x22, 0x38, 0x2e, 0x37, 0x34, + 0x36, 0x38, 0x32, 0x35, 0x32, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x79, + 0x3d, 0x22, 0x36, 0x2e, 0x38, 0x32, 0x38, 0x33, + 0x32, 0x33, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x66, 0x78, 0x3d, 0x22, + 0x38, 0x2e, 0x37, 0x34, 0x36, 0x38, 0x32, 0x35, + 0x32, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x66, 0x79, 0x3d, 0x22, 0x36, 0x2e, + 0x38, 0x32, 0x38, 0x33, 0x32, 0x33, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x72, 0x3d, 0x22, 0x32, 0x39, 0x2e, 0x38, 0x38, + 0x39, 0x37, 0x31, 0x35, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x72, 0x61, + 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, + 0x6c, 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, + 0x77, 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, + 0x6e, 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, + 0x22, 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x32, 0x31, 0x34, 0x35, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, + 0x38, 0x35, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, + 0x73, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, + 0x70, 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, + 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x63, 0x78, 0x3d, 0x22, 0x31, 0x31, + 0x2e, 0x39, 0x30, 0x31, 0x39, 0x39, 0x36, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x63, 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, 0x30, + 0x34, 0x35, 0x34, 0x34, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x78, + 0x3d, 0x22, 0x31, 0x31, 0x2e, 0x39, 0x30, 0x31, + 0x39, 0x39, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x66, 0x79, 0x3d, 0x22, + 0x31, 0x30, 0x2e, 0x30, 0x34, 0x35, 0x34, 0x34, + 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x72, 0x3d, 0x22, 0x32, 0x39, 0x2e, + 0x32, 0x39, 0x32, 0x37, 0x31, 0x35, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, + 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3d, 0x22, + 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, + 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x68, 0x72, 0x65, + 0x66, 0x3d, 0x22, 0x23, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x34, 0x32, 0x31, 0x37, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x35, 0x38, 0x35, 0x33, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x55, + 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, 0x75, 0x73, + 0x65, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x4f, + 0x6e, 0x55, 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x31, 0x3d, + 0x22, 0x36, 0x2e, 0x33, 0x34, 0x32, 0x32, 0x31, + 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x79, 0x31, 0x3d, 0x22, 0x37, 0x2e, + 0x37, 0x38, 0x39, 0x33, 0x33, 0x32, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x78, 0x32, 0x3d, 0x22, 0x32, 0x32, 0x2e, 0x32, + 0x31, 0x38, 0x34, 0x32, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x79, 0x32, + 0x3d, 0x22, 0x32, 0x35, 0x2e, 0x38, 0x38, 0x34, + 0x32, 0x37, 0x34, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x72, 0x61, 0x64, + 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, + 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, + 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, + 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, + 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, + 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x31, + 0x30, 0x36, 0x35, 0x33, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, + 0x38, 0x35, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, + 0x73, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, + 0x70, 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, + 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x63, 0x78, 0x3d, 0x22, 0x31, 0x31, + 0x2e, 0x33, 0x32, 0x39, 0x32, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x79, + 0x3d, 0x22, 0x31, 0x30, 0x2e, 0x35, 0x38, 0x33, + 0x39, 0x37, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x66, 0x78, 0x3d, 0x22, 0x31, + 0x31, 0x2e, 0x33, 0x32, 0x39, 0x32, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, + 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, 0x35, 0x38, + 0x33, 0x39, 0x37, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x72, 0x3d, 0x22, 0x31, + 0x35, 0x2e, 0x35, 0x33, 0x32, 0x30, 0x35, 0x39, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, + 0x3d, 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x68, + 0x72, 0x65, 0x66, 0x3d, 0x22, 0x23, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x34, 0x32, 0x31, 0x37, + 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x72, 0x61, + 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x35, 0x37, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x67, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, + 0x75, 0x73, 0x65, 0x72, 0x53, 0x70, 0x61, 0x63, + 0x65, 0x4f, 0x6e, 0x55, 0x73, 0x65, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, + 0x78, 0x3d, 0x22, 0x31, 0x31, 0x2e, 0x39, 0x30, + 0x31, 0x39, 0x39, 0x36, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x79, 0x3d, + 0x22, 0x31, 0x30, 0x2e, 0x30, 0x34, 0x35, 0x34, + 0x34, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x66, 0x78, 0x3d, 0x22, 0x31, + 0x31, 0x2e, 0x39, 0x30, 0x31, 0x39, 0x39, 0x36, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x66, 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, + 0x30, 0x34, 0x35, 0x34, 0x34, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, + 0x3d, 0x22, 0x32, 0x39, 0x2e, 0x32, 0x39, 0x32, + 0x37, 0x31, 0x35, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, + 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, + 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, + 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, + 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, + 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x34, + 0x32, 0x31, 0x37, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, + 0x38, 0x35, 0x39, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, + 0x73, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, + 0x70, 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, + 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x78, 0x31, 0x3d, 0x22, 0x36, 0x2e, + 0x33, 0x34, 0x32, 0x32, 0x31, 0x36, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x79, + 0x31, 0x3d, 0x22, 0x37, 0x2e, 0x37, 0x38, 0x39, + 0x33, 0x33, 0x32, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x32, 0x3d, + 0x22, 0x32, 0x32, 0x2e, 0x32, 0x31, 0x38, 0x34, + 0x32, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x79, 0x32, 0x3d, 0x22, 0x32, + 0x35, 0x2e, 0x38, 0x38, 0x34, 0x32, 0x37, 0x34, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x3c, + 0x2f, 0x64, 0x65, 0x66, 0x73, 0x3e, 0x0a, 0x20, + 0x20, 0x3c, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x3a, 0x6e, 0x61, 0x6d, 0x65, 0x64, + 0x76, 0x69, 0x65, 0x77, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x62, 0x61, + 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x70, 0x61, 0x67, 0x65, 0x63, 0x6f, 0x6c, + 0x6f, 0x72, 0x3d, 0x22, 0x23, 0x66, 0x66, 0x66, + 0x66, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x62, 0x6f, 0x72, 0x64, 0x65, 0x72, + 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3d, 0x22, 0x23, + 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x6f, 0x72, + 0x64, 0x65, 0x72, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3d, 0x22, 0x31, 0x2e, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x70, + 0x61, 0x67, 0x65, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x70, + 0x61, 0x67, 0x65, 0x73, 0x68, 0x61, 0x64, 0x6f, + 0x77, 0x3d, 0x22, 0x32, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, + 0x61, 0x70, 0x65, 0x3a, 0x7a, 0x6f, 0x6f, 0x6d, + 0x3d, 0x22, 0x32, 0x36, 0x2e, 0x33, 0x38, 0x38, + 0x38, 0x38, 0x39, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x63, 0x78, 0x3d, 0x22, 0x31, + 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x63, 0x79, 0x3d, 0x22, 0x33, 0x39, 0x2e, + 0x32, 0x32, 0x31, 0x30, 0x35, 0x33, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x64, 0x6f, + 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2d, 0x75, + 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, 0x70, 0x78, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x2d, + 0x6c, 0x61, 0x79, 0x65, 0x72, 0x3d, 0x22, 0x6c, + 0x61, 0x79, 0x65, 0x72, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x77, 0x69, 0x6e, + 0x64, 0x6f, 0x77, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3d, 0x22, 0x31, 0x36, 0x30, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x77, + 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2d, 0x68, 0x65, + 0x69, 0x67, 0x68, 0x74, 0x3d, 0x22, 0x31, 0x31, + 0x31, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x3a, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, + 0x2d, 0x78, 0x3d, 0x22, 0x30, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x77, 0x69, 0x6e, + 0x64, 0x6f, 0x77, 0x2d, 0x79, 0x3d, 0x22, 0x33, + 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x3d, 0x22, 0x33, + 0x36, 0x70, 0x78, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, + 0x3d, 0x22, 0x33, 0x36, 0x70, 0x78, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x6d, 0x65, + 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, + 0x35, 0x34, 0x32, 0x31, 0x22, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x72, 0x64, 0x66, 0x3a, + 0x52, 0x44, 0x46, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x63, 0x63, 0x3a, 0x57, + 0x6f, 0x72, 0x6b, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x64, 0x66, + 0x3a, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x3d, 0x22, + 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x64, 0x63, 0x3a, 0x66, + 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x3e, 0x69, 0x6d, + 0x61, 0x67, 0x65, 0x2f, 0x73, 0x76, 0x67, 0x2b, + 0x78, 0x6d, 0x6c, 0x3c, 0x2f, 0x64, 0x63, 0x3a, + 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x64, 0x63, 0x3a, 0x74, 0x79, 0x70, 0x65, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x72, 0x64, 0x66, 0x3a, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x70, 0x75, 0x72, 0x6c, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x64, 0x63, 0x2f, 0x64, 0x63, 0x6d, + 0x69, 0x74, 0x79, 0x70, 0x65, 0x2f, 0x53, 0x74, + 0x69, 0x6c, 0x6c, 0x49, 0x6d, 0x61, 0x67, 0x65, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x63, 0x3a, + 0x57, 0x6f, 0x72, 0x6b, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x2f, 0x72, 0x64, 0x66, 0x3a, + 0x52, 0x44, 0x46, 0x3e, 0x0a, 0x20, 0x20, 0x3c, + 0x2f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, + 0x61, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x67, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x6c, 0x61, + 0x62, 0x65, 0x6c, 0x3d, 0x22, 0x4c, 0x61, 0x79, + 0x65, 0x72, 0x20, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, + 0x61, 0x70, 0x65, 0x3a, 0x67, 0x72, 0x6f, 0x75, + 0x70, 0x6d, 0x6f, 0x64, 0x65, 0x3d, 0x22, 0x6c, + 0x61, 0x79, 0x65, 0x72, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, + 0x61, 0x79, 0x65, 0x72, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73, 0x70, 0x6c, + 0x61, 0x79, 0x3a, 0x69, 0x6e, 0x6c, 0x69, 0x6e, + 0x65, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, + 0x4d, 0x20, 0x33, 0x39, 0x2e, 0x37, 0x37, 0x34, + 0x37, 0x35, 0x35, 0x2c, 0x31, 0x39, 0x2e, 0x30, + 0x30, 0x38, 0x36, 0x32, 0x31, 0x20, 0x41, 0x20, + 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, 0x37, + 0x39, 0x2c, 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, + 0x35, 0x37, 0x39, 0x20, 0x30, 0x20, 0x31, 0x20, + 0x31, 0x20, 0x32, 0x32, 0x2e, 0x34, 0x35, 0x30, + 0x36, 0x34, 0x2c, 0x31, 0x39, 0x2e, 0x30, 0x30, + 0x38, 0x36, 0x32, 0x31, 0x20, 0x41, 0x20, 0x38, + 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, 0x37, 0x39, + 0x2c, 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, + 0x37, 0x39, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, + 0x20, 0x33, 0x39, 0x2e, 0x37, 0x37, 0x34, 0x37, + 0x35, 0x35, 0x2c, 0x31, 0x39, 0x2e, 0x30, 0x30, + 0x38, 0x36, 0x32, 0x31, 0x20, 0x7a, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x72, 0x79, 0x3d, 0x22, 0x38, 0x2e, 0x36, 0x36, + 0x32, 0x30, 0x35, 0x37, 0x39, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x72, + 0x78, 0x3d, 0x22, 0x38, 0x2e, 0x36, 0x36, 0x32, + 0x30, 0x35, 0x37, 0x39, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x79, + 0x3d, 0x22, 0x31, 0x39, 0x2e, 0x30, 0x30, 0x38, + 0x36, 0x32, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, 0x3d, + 0x22, 0x33, 0x31, 0x2e, 0x31, 0x31, 0x32, 0x36, + 0x39, 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x34, 0x34, 0x31, 0x35, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x63, + 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, 0x72, + 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x34, + 0x37, 0x29, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x72, + 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, 0x65, 0x6e, + 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, + 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, 0x70, 0x78, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, 0x70, 0x3a, + 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, + 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, 0x72, 0x6f, + 0x75, 0x6e, 0x64, 0x3b, 0x6d, 0x61, 0x72, 0x6b, + 0x65, 0x72, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, + 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x72, 0x2d, 0x73, + 0x74, 0x61, 0x72, 0x74, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x72, + 0x2d, 0x6d, 0x69, 0x64, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x72, + 0x2d, 0x65, 0x6e, 0x64, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, + 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, + 0x68, 0x61, 0x72, 0x72, 0x61, 0x79, 0x3a, 0x6e, + 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, 0x6f, + 0x66, 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, + 0x69, 0x74, 0x79, 0x3a, 0x76, 0x69, 0x73, 0x69, + 0x62, 0x6c, 0x65, 0x3b, 0x64, 0x69, 0x73, 0x70, + 0x6c, 0x61, 0x79, 0x3a, 0x69, 0x6e, 0x6c, 0x69, + 0x6e, 0x65, 0x3b, 0x6f, 0x76, 0x65, 0x72, 0x66, + 0x6c, 0x6f, 0x77, 0x3a, 0x76, 0x69, 0x73, 0x69, + 0x62, 0x6c, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x74, 0x79, 0x70, + 0x65, 0x3d, 0x22, 0x61, 0x72, 0x63, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, + 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, + 0x3d, 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, + 0x28, 0x31, 0x2e, 0x36, 0x36, 0x32, 0x34, 0x32, + 0x32, 0x34, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, + 0x2e, 0x37, 0x39, 0x31, 0x30, 0x31, 0x34, 0x33, + 0x2c, 0x2d, 0x33, 0x33, 0x2e, 0x37, 0x32, 0x38, + 0x32, 0x37, 0x38, 0x2c, 0x31, 0x34, 0x2e, 0x31, + 0x31, 0x32, 0x30, 0x39, 0x37, 0x29, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x61, 0x6e, + 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x3d, 0x22, 0x6d, + 0x61, 0x74, 0x72, 0x69, 0x78, 0x28, 0x31, 0x2e, + 0x31, 0x31, 0x34, 0x38, 0x36, 0x33, 0x31, 0x2c, + 0x30, 0x2c, 0x30, 0x2c, 0x31, 0x2e, 0x31, 0x31, + 0x34, 0x38, 0x36, 0x33, 0x31, 0x2c, 0x2d, 0x30, + 0x2e, 0x31, 0x31, 0x36, 0x35, 0x32, 0x30, 0x35, + 0x2c, 0x2d, 0x30, 0x2e, 0x38, 0x35, 0x33, 0x31, + 0x33, 0x38, 0x37, 0x29, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, + 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, + 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, + 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, + 0x31, 0x20, 0x31, 0x2e, 0x33, 0x33, 0x39, 0x32, + 0x38, 0x35, 0x39, 0x2c, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, + 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, + 0x31, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, + 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x7a, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x31, 0x34, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x72, 0x78, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, + 0x79, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, + 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x32, 0x35, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x34, 0x34, 0x31, 0x37, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, + 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, 0x72, 0x61, + 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x34, 0x39, + 0x29, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x72, 0x75, + 0x6c, 0x65, 0x3a, 0x65, 0x76, 0x65, 0x6e, 0x6f, + 0x64, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x3a, 0x23, 0x36, 0x30, 0x35, 0x37, 0x37, + 0x33, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, + 0x2e, 0x36, 0x33, 0x35, 0x39, 0x36, 0x30, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, 0x70, 0x3a, + 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, + 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, 0x72, 0x6f, + 0x75, 0x6e, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x64, + 0x61, 0x73, 0x68, 0x6f, 0x66, 0x66, 0x73, 0x65, + 0x74, 0x3a, 0x30, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x74, 0x79, + 0x70, 0x65, 0x3d, 0x22, 0x61, 0x72, 0x63, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x61, + 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x3d, 0x22, + 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x28, 0x30, + 0x2e, 0x39, 0x33, 0x31, 0x38, 0x38, 0x36, 0x36, + 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2e, 0x39, + 0x33, 0x31, 0x38, 0x38, 0x36, 0x36, 0x2c, 0x32, + 0x2e, 0x37, 0x38, 0x33, 0x31, 0x32, 0x31, 0x31, + 0x2c, 0x32, 0x2e, 0x31, 0x36, 0x37, 0x34, 0x32, + 0x39, 0x31, 0x29, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, + 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, 0x31, + 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, + 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, + 0x20, 0x31, 0x2e, 0x33, 0x33, 0x39, 0x32, 0x38, + 0x35, 0x39, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, 0x31, + 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, + 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, + 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x20, 0x7a, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x72, 0x79, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x72, + 0x78, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x79, + 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, 0x3d, + 0x22, 0x31, 0x36, 0x2e, 0x32, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x34, + 0x34, 0x31, 0x39, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, + 0x75, 0x72, 0x6c, 0x28, 0x23, 0x72, 0x61, 0x64, + 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x35, 0x38, 0x35, 0x31, 0x29, + 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x72, 0x75, 0x6c, + 0x65, 0x3a, 0x65, 0x76, 0x65, 0x6e, 0x6f, 0x64, + 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x35, 0x33, + 0x29, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, + 0x2e, 0x36, 0x36, 0x36, 0x30, 0x33, 0x34, 0x37, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, 0x70, 0x3a, + 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, + 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, 0x72, 0x6f, + 0x75, 0x6e, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x64, + 0x61, 0x73, 0x68, 0x6f, 0x66, 0x66, 0x73, 0x65, + 0x74, 0x3a, 0x30, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x74, 0x79, + 0x70, 0x65, 0x3d, 0x22, 0x61, 0x72, 0x63, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x74, 0x79, + 0x70, 0x65, 0x3d, 0x22, 0x61, 0x72, 0x63, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, + 0x69, 0x6c, 0x6c, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, + 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x72, 0x75, 0x6c, + 0x65, 0x3a, 0x65, 0x76, 0x65, 0x6e, 0x6f, 0x64, + 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, 0x72, 0x61, + 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x35, 0x35, + 0x29, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, + 0x2e, 0x37, 0x32, 0x34, 0x39, 0x37, 0x39, 0x31, + 0x36, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, 0x70, + 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, + 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, 0x72, + 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x64, 0x61, 0x73, 0x68, 0x6f, 0x66, 0x66, 0x73, + 0x65, 0x74, 0x3a, 0x30, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x34, 0x34, + 0x32, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, + 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, 0x3d, 0x22, + 0x31, 0x36, 0x2e, 0x32, 0x35, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, + 0x79, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x72, 0x78, + 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x72, 0x79, 0x3d, + 0x22, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, 0x37, 0x31, + 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, 0x31, 0x34, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x2c, + 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, 0x20, + 0x31, 0x2e, 0x33, 0x33, 0x39, 0x32, 0x38, 0x35, + 0x39, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, 0x31, 0x34, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x2c, + 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, 0x20, + 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, 0x37, 0x31, + 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x35, 0x20, 0x7a, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, + 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x3d, + 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x28, + 0x31, 0x2e, 0x30, 0x35, 0x37, 0x33, 0x33, 0x30, + 0x31, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x31, 0x2e, + 0x30, 0x35, 0x37, 0x33, 0x33, 0x30, 0x31, 0x2c, + 0x30, 0x2e, 0x38, 0x31, 0x38, 0x33, 0x34, 0x39, + 0x38, 0x2c, 0x35, 0x2e, 0x30, 0x39, 0x36, 0x31, + 0x32, 0x33, 0x31, 0x65, 0x2d, 0x32, 0x29, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x61, + 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x3d, 0x22, + 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x28, 0x30, + 0x2e, 0x39, 0x33, 0x31, 0x38, 0x38, 0x36, 0x36, + 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2e, 0x39, + 0x33, 0x31, 0x38, 0x38, 0x36, 0x36, 0x2c, 0x32, + 0x2e, 0x37, 0x38, 0x33, 0x31, 0x32, 0x31, 0x31, + 0x2c, 0x32, 0x2e, 0x31, 0x36, 0x37, 0x34, 0x32, + 0x39, 0x31, 0x29, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, + 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, 0x31, + 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, + 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, + 0x20, 0x31, 0x2e, 0x33, 0x33, 0x39, 0x32, 0x38, + 0x35, 0x39, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, 0x31, + 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, + 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, + 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x20, 0x7a, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x72, 0x79, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x72, + 0x78, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x79, + 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, 0x3d, + 0x22, 0x31, 0x36, 0x2e, 0x32, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x34, + 0x34, 0x32, 0x39, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x30, 0x2e, 0x35, 0x33, 0x39, + 0x32, 0x31, 0x35, 0x36, 0x39, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, + 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, + 0x35, 0x37, 0x29, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x2e, 0x30, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, + 0x76, 0x65, 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x75, 0x72, + 0x6c, 0x28, 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x35, 0x38, 0x35, 0x39, 0x29, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, + 0x64, 0x74, 0x68, 0x3a, 0x31, 0x2e, 0x36, 0x36, + 0x36, 0x30, 0x33, 0x34, 0x37, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, + 0x65, 0x63, 0x61, 0x70, 0x3a, 0x72, 0x6f, 0x75, + 0x6e, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, + 0x69, 0x6e, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, + 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, + 0x79, 0x3a, 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, + 0x61, 0x72, 0x63, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, + 0x68, 0x35, 0x35, 0x34, 0x33, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x31, 0x39, 0x2c, 0x31, 0x38, + 0x20, 0x43, 0x20, 0x31, 0x39, 0x2c, 0x31, 0x38, + 0x2e, 0x35, 0x35, 0x32, 0x20, 0x31, 0x38, 0x2e, + 0x35, 0x35, 0x31, 0x39, 0x39, 0x39, 0x2c, 0x31, + 0x39, 0x20, 0x31, 0x38, 0x2c, 0x31, 0x39, 0x20, + 0x43, 0x20, 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, + 0x2c, 0x31, 0x39, 0x20, 0x31, 0x37, 0x2c, 0x31, + 0x38, 0x2e, 0x35, 0x35, 0x32, 0x20, 0x31, 0x37, + 0x2c, 0x31, 0x38, 0x20, 0x43, 0x20, 0x31, 0x37, + 0x2c, 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, 0x20, + 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, 0x2c, 0x31, + 0x37, 0x20, 0x31, 0x38, 0x2c, 0x31, 0x37, 0x20, + 0x43, 0x20, 0x31, 0x38, 0x2e, 0x35, 0x35, 0x31, + 0x39, 0x39, 0x39, 0x2c, 0x31, 0x37, 0x20, 0x31, + 0x39, 0x2c, 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, + 0x20, 0x31, 0x39, 0x2c, 0x31, 0x38, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, + 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x39, 0x39, + 0x39, 0x63, 0x39, 0x63, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, + 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, + 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, + 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x67, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x67, 0x35, 0x38, 0x30, 0x32, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, + 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, + 0x61, 0x38, 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, + 0x66, 0x6f, 0x72, 0x6d, 0x3d, 0x22, 0x6d, 0x61, + 0x74, 0x72, 0x69, 0x78, 0x28, 0x30, 0x2e, 0x39, + 0x39, 0x35, 0x34, 0x31, 0x36, 0x37, 0x2c, 0x30, + 0x2c, 0x30, 0x2c, 0x30, 0x2e, 0x39, 0x39, 0x35, + 0x34, 0x31, 0x36, 0x37, 0x2c, 0x38, 0x2e, 0x32, + 0x34, 0x39, 0x39, 0x32, 0x35, 0x31, 0x65, 0x2d, + 0x32, 0x2c, 0x38, 0x2e, 0x32, 0x34, 0x39, 0x38, + 0x34, 0x30, 0x35, 0x65, 0x2d, 0x32, 0x29, 0x22, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, + 0x38, 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, + 0x20, 0x37, 0x2e, 0x39, 0x34, 0x37, 0x30, 0x34, + 0x39, 0x33, 0x2c, 0x31, 0x38, 0x20, 0x43, 0x20, + 0x37, 0x2e, 0x39, 0x34, 0x37, 0x30, 0x34, 0x39, + 0x33, 0x2c, 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, + 0x20, 0x37, 0x2e, 0x36, 0x31, 0x31, 0x30, 0x34, + 0x38, 0x34, 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x20, 0x37, 0x2e, 0x31, 0x39, 0x37, 0x30, 0x34, + 0x39, 0x33, 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x20, 0x43, 0x20, 0x36, 0x2e, 0x37, 0x38, 0x33, + 0x30, 0x34, 0x39, 0x32, 0x2c, 0x31, 0x38, 0x2e, + 0x37, 0x35, 0x20, 0x36, 0x2e, 0x34, 0x34, 0x37, + 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x38, 0x2e, + 0x34, 0x31, 0x34, 0x20, 0x36, 0x2e, 0x34, 0x34, + 0x37, 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x38, + 0x20, 0x43, 0x20, 0x36, 0x2e, 0x34, 0x34, 0x37, + 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x37, 0x2e, + 0x35, 0x38, 0x36, 0x20, 0x36, 0x2e, 0x37, 0x38, + 0x33, 0x30, 0x34, 0x39, 0x32, 0x2c, 0x31, 0x37, + 0x2e, 0x32, 0x35, 0x20, 0x37, 0x2e, 0x31, 0x39, + 0x37, 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x37, + 0x2e, 0x32, 0x35, 0x20, 0x43, 0x20, 0x37, 0x2e, + 0x36, 0x31, 0x31, 0x30, 0x34, 0x38, 0x34, 0x2c, + 0x31, 0x37, 0x2e, 0x32, 0x35, 0x20, 0x37, 0x2e, + 0x39, 0x34, 0x37, 0x30, 0x34, 0x39, 0x33, 0x2c, + 0x31, 0x37, 0x2e, 0x35, 0x38, 0x36, 0x20, 0x37, + 0x2e, 0x39, 0x34, 0x37, 0x30, 0x34, 0x39, 0x33, + 0x2c, 0x31, 0x38, 0x20, 0x7a, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x35, 0x35, 0x34, 0x35, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, + 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x32, 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, 0x35, + 0x31, 0x2c, 0x31, 0x38, 0x20, 0x43, 0x20, 0x32, + 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, 0x35, 0x31, + 0x2c, 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, 0x20, + 0x32, 0x39, 0x2e, 0x32, 0x31, 0x36, 0x39, 0x35, + 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x20, 0x32, + 0x38, 0x2e, 0x38, 0x30, 0x32, 0x39, 0x35, 0x31, + 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x20, 0x43, + 0x20, 0x32, 0x38, 0x2e, 0x33, 0x38, 0x38, 0x39, + 0x35, 0x31, 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x20, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, 0x39, + 0x35, 0x31, 0x2c, 0x31, 0x38, 0x2e, 0x34, 0x31, + 0x34, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, + 0x39, 0x35, 0x31, 0x2c, 0x31, 0x38, 0x20, 0x43, + 0x20, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, 0x39, + 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, 0x35, 0x38, + 0x36, 0x20, 0x32, 0x38, 0x2e, 0x33, 0x38, 0x38, + 0x39, 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, 0x32, + 0x35, 0x20, 0x32, 0x38, 0x2e, 0x38, 0x30, 0x32, + 0x39, 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, 0x32, + 0x35, 0x20, 0x43, 0x20, 0x32, 0x39, 0x2e, 0x32, + 0x31, 0x36, 0x39, 0x35, 0x2c, 0x31, 0x37, 0x2e, + 0x32, 0x35, 0x20, 0x32, 0x39, 0x2e, 0x35, 0x35, + 0x32, 0x39, 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, + 0x35, 0x38, 0x36, 0x20, 0x32, 0x39, 0x2e, 0x35, + 0x35, 0x32, 0x39, 0x35, 0x31, 0x2c, 0x31, 0x38, + 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, 0x35, 0x35, + 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x35, 0x36, 0x34, 0x39, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x39, + 0x2e, 0x32, 0x39, 0x33, 0x38, 0x38, 0x39, 0x33, + 0x2c, 0x32, 0x33, 0x2e, 0x30, 0x32, 0x36, 0x34, + 0x37, 0x36, 0x20, 0x43, 0x20, 0x39, 0x2e, 0x35, + 0x30, 0x30, 0x38, 0x38, 0x39, 0x33, 0x2c, 0x32, + 0x33, 0x2e, 0x33, 0x38, 0x35, 0x30, 0x31, 0x20, + 0x39, 0x2e, 0x33, 0x37, 0x37, 0x39, 0x30, 0x34, + 0x2c, 0x32, 0x33, 0x2e, 0x38, 0x34, 0x33, 0x39, + 0x39, 0x35, 0x20, 0x39, 0x2e, 0x30, 0x31, 0x39, + 0x33, 0x37, 0x30, 0x33, 0x2c, 0x32, 0x34, 0x2e, + 0x30, 0x35, 0x30, 0x39, 0x39, 0x35, 0x20, 0x43, + 0x20, 0x38, 0x2e, 0x36, 0x36, 0x30, 0x38, 0x33, + 0x35, 0x37, 0x2c, 0x32, 0x34, 0x2e, 0x32, 0x35, + 0x37, 0x39, 0x39, 0x35, 0x20, 0x38, 0x2e, 0x32, + 0x30, 0x31, 0x38, 0x35, 0x31, 0x32, 0x2c, 0x32, + 0x34, 0x2e, 0x31, 0x33, 0x35, 0x30, 0x31, 0x20, + 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, 0x31, + 0x32, 0x2c, 0x32, 0x33, 0x2e, 0x37, 0x37, 0x36, + 0x34, 0x37, 0x36, 0x20, 0x43, 0x20, 0x37, 0x2e, + 0x37, 0x38, 0x37, 0x38, 0x35, 0x31, 0x32, 0x2c, + 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, 0x39, 0x34, + 0x31, 0x20, 0x37, 0x2e, 0x39, 0x31, 0x30, 0x38, + 0x33, 0x35, 0x37, 0x2c, 0x32, 0x32, 0x2e, 0x39, + 0x35, 0x38, 0x39, 0x35, 0x37, 0x20, 0x38, 0x2e, + 0x32, 0x36, 0x39, 0x33, 0x37, 0x30, 0x33, 0x2c, + 0x32, 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, 0x35, + 0x36, 0x20, 0x43, 0x20, 0x38, 0x2e, 0x36, 0x32, + 0x37, 0x39, 0x30, 0x34, 0x2c, 0x32, 0x32, 0x2e, + 0x35, 0x34, 0x34, 0x39, 0x35, 0x37, 0x20, 0x39, + 0x2e, 0x30, 0x38, 0x36, 0x38, 0x38, 0x39, 0x33, + 0x2c, 0x32, 0x32, 0x2e, 0x36, 0x36, 0x37, 0x39, + 0x34, 0x31, 0x20, 0x39, 0x2e, 0x32, 0x39, 0x33, + 0x38, 0x38, 0x39, 0x33, 0x2c, 0x32, 0x33, 0x2e, + 0x30, 0x32, 0x36, 0x34, 0x37, 0x36, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, + 0x38, 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, 0x66, + 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, + 0x36, 0x35, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x30, + 0x35, 0x31, 0x34, 0x39, 0x2c, 0x31, 0x32, 0x2e, + 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, 0x20, 0x43, + 0x20, 0x32, 0x38, 0x2e, 0x32, 0x31, 0x32, 0x31, + 0x34, 0x39, 0x2c, 0x31, 0x32, 0x2e, 0x35, 0x38, + 0x32, 0x30, 0x35, 0x39, 0x20, 0x32, 0x38, 0x2e, + 0x30, 0x38, 0x39, 0x31, 0x36, 0x34, 0x2c, 0x31, + 0x33, 0x2e, 0x30, 0x34, 0x31, 0x30, 0x34, 0x34, + 0x20, 0x32, 0x37, 0x2e, 0x37, 0x33, 0x30, 0x36, + 0x33, 0x2c, 0x31, 0x33, 0x2e, 0x32, 0x34, 0x38, + 0x30, 0x34, 0x34, 0x20, 0x43, 0x20, 0x32, 0x37, + 0x2e, 0x33, 0x37, 0x32, 0x30, 0x39, 0x35, 0x2c, + 0x31, 0x33, 0x2e, 0x34, 0x35, 0x35, 0x30, 0x34, + 0x34, 0x20, 0x32, 0x36, 0x2e, 0x39, 0x31, 0x33, + 0x31, 0x31, 0x31, 0x2c, 0x31, 0x33, 0x2e, 0x33, + 0x33, 0x32, 0x30, 0x35, 0x39, 0x20, 0x32, 0x36, + 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, 0x2c, + 0x31, 0x32, 0x2e, 0x39, 0x37, 0x33, 0x35, 0x32, + 0x35, 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, 0x34, + 0x39, 0x39, 0x31, 0x31, 0x31, 0x2c, 0x31, 0x32, + 0x2e, 0x36, 0x31, 0x34, 0x39, 0x39, 0x20, 0x32, + 0x36, 0x2e, 0x36, 0x32, 0x32, 0x30, 0x39, 0x35, + 0x2c, 0x31, 0x32, 0x2e, 0x31, 0x35, 0x36, 0x30, + 0x30, 0x36, 0x20, 0x32, 0x36, 0x2e, 0x39, 0x38, + 0x30, 0x36, 0x33, 0x2c, 0x31, 0x31, 0x2e, 0x39, + 0x34, 0x39, 0x30, 0x30, 0x36, 0x20, 0x43, 0x20, + 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, 0x31, 0x36, + 0x34, 0x2c, 0x31, 0x31, 0x2e, 0x37, 0x34, 0x32, + 0x30, 0x30, 0x36, 0x20, 0x32, 0x37, 0x2e, 0x37, + 0x39, 0x38, 0x31, 0x34, 0x39, 0x2c, 0x31, 0x31, + 0x2e, 0x38, 0x36, 0x34, 0x39, 0x39, 0x20, 0x32, + 0x38, 0x2e, 0x30, 0x30, 0x35, 0x31, 0x34, 0x39, + 0x2c, 0x31, 0x32, 0x2e, 0x32, 0x32, 0x33, 0x35, + 0x32, 0x35, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, + 0x38, 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, + 0x38, 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, 0x66, + 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, 0x32, 0x2e, + 0x39, 0x37, 0x33, 0x35, 0x32, 0x35, 0x2c, 0x32, + 0x36, 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, + 0x20, 0x43, 0x20, 0x31, 0x33, 0x2e, 0x33, 0x33, + 0x32, 0x30, 0x35, 0x39, 0x2c, 0x32, 0x36, 0x2e, + 0x39, 0x31, 0x33, 0x31, 0x31, 0x31, 0x20, 0x31, + 0x33, 0x2e, 0x34, 0x35, 0x35, 0x30, 0x34, 0x33, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x37, 0x32, 0x30, + 0x39, 0x37, 0x20, 0x31, 0x33, 0x2e, 0x32, 0x34, + 0x38, 0x30, 0x34, 0x34, 0x2c, 0x32, 0x37, 0x2e, + 0x37, 0x33, 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, + 0x20, 0x31, 0x33, 0x2e, 0x30, 0x34, 0x31, 0x30, + 0x34, 0x34, 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x38, + 0x39, 0x31, 0x36, 0x35, 0x20, 0x31, 0x32, 0x2e, + 0x35, 0x38, 0x32, 0x30, 0x35, 0x39, 0x2c, 0x32, + 0x38, 0x2e, 0x32, 0x31, 0x32, 0x31, 0x35, 0x20, + 0x31, 0x32, 0x2e, 0x32, 0x32, 0x33, 0x35, 0x32, + 0x35, 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x30, 0x35, + 0x31, 0x35, 0x20, 0x43, 0x20, 0x31, 0x31, 0x2e, + 0x38, 0x36, 0x34, 0x39, 0x39, 0x2c, 0x32, 0x37, + 0x2e, 0x37, 0x39, 0x38, 0x31, 0x35, 0x20, 0x31, + 0x31, 0x2e, 0x37, 0x34, 0x32, 0x30, 0x30, 0x36, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, 0x31, + 0x36, 0x35, 0x20, 0x31, 0x31, 0x2e, 0x39, 0x34, + 0x39, 0x30, 0x30, 0x36, 0x2c, 0x32, 0x36, 0x2e, + 0x39, 0x38, 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, + 0x20, 0x31, 0x32, 0x2e, 0x31, 0x35, 0x36, 0x30, + 0x30, 0x35, 0x2c, 0x32, 0x36, 0x2e, 0x36, 0x32, + 0x32, 0x30, 0x39, 0x37, 0x20, 0x31, 0x32, 0x2e, + 0x36, 0x31, 0x34, 0x39, 0x39, 0x2c, 0x32, 0x36, + 0x2e, 0x34, 0x39, 0x39, 0x31, 0x31, 0x31, 0x20, + 0x31, 0x32, 0x2e, 0x39, 0x37, 0x33, 0x35, 0x32, + 0x35, 0x2c, 0x32, 0x36, 0x2e, 0x37, 0x30, 0x36, + 0x31, 0x31, 0x31, 0x20, 0x7a, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x35, 0x36, 0x35, 0x35, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, + 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x32, 0x33, 0x2e, 0x37, 0x37, 0x36, 0x34, 0x37, + 0x36, 0x2c, 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, + 0x35, 0x31, 0x38, 0x20, 0x43, 0x20, 0x32, 0x34, + 0x2e, 0x31, 0x33, 0x35, 0x30, 0x31, 0x2c, 0x38, + 0x2e, 0x32, 0x30, 0x31, 0x38, 0x35, 0x31, 0x38, + 0x20, 0x32, 0x34, 0x2e, 0x32, 0x35, 0x37, 0x39, + 0x39, 0x34, 0x2c, 0x38, 0x2e, 0x36, 0x36, 0x30, + 0x38, 0x33, 0x37, 0x32, 0x20, 0x32, 0x34, 0x2e, + 0x30, 0x35, 0x30, 0x39, 0x39, 0x35, 0x2c, 0x39, + 0x2e, 0x30, 0x31, 0x39, 0x33, 0x37, 0x30, 0x38, + 0x20, 0x43, 0x20, 0x32, 0x33, 0x2e, 0x38, 0x34, + 0x33, 0x39, 0x39, 0x35, 0x2c, 0x39, 0x2e, 0x33, + 0x37, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, 0x32, + 0x33, 0x2e, 0x33, 0x38, 0x35, 0x30, 0x31, 0x2c, + 0x39, 0x2e, 0x35, 0x30, 0x30, 0x38, 0x38, 0x39, + 0x39, 0x20, 0x32, 0x33, 0x2e, 0x30, 0x32, 0x36, + 0x34, 0x37, 0x36, 0x2c, 0x39, 0x2e, 0x32, 0x39, + 0x33, 0x38, 0x38, 0x39, 0x39, 0x20, 0x43, 0x20, + 0x32, 0x32, 0x2e, 0x36, 0x36, 0x37, 0x39, 0x34, + 0x31, 0x2c, 0x39, 0x2e, 0x30, 0x38, 0x36, 0x38, + 0x38, 0x39, 0x39, 0x20, 0x32, 0x32, 0x2e, 0x35, + 0x34, 0x34, 0x39, 0x35, 0x36, 0x2c, 0x38, 0x2e, + 0x36, 0x32, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, + 0x32, 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, 0x35, + 0x36, 0x2c, 0x38, 0x2e, 0x32, 0x36, 0x39, 0x33, + 0x37, 0x30, 0x38, 0x20, 0x43, 0x20, 0x32, 0x32, + 0x2e, 0x39, 0x35, 0x38, 0x39, 0x35, 0x36, 0x2c, + 0x37, 0x2e, 0x39, 0x31, 0x30, 0x38, 0x33, 0x37, + 0x32, 0x20, 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, + 0x39, 0x34, 0x31, 0x2c, 0x37, 0x2e, 0x37, 0x38, + 0x37, 0x38, 0x35, 0x31, 0x38, 0x20, 0x32, 0x33, + 0x2e, 0x37, 0x37, 0x36, 0x34, 0x37, 0x36, 0x2c, + 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, 0x31, + 0x38, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, 0x36, + 0x35, 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, + 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x70, 0x61, 0x74, 0x68, 0x35, 0x36, 0x36, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x31, 0x38, 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x35, + 0x32, 0x39, 0x35, 0x32, 0x20, 0x43, 0x20, 0x31, + 0x38, 0x2e, 0x34, 0x31, 0x34, 0x2c, 0x32, 0x38, + 0x2e, 0x30, 0x35, 0x32, 0x39, 0x35, 0x32, 0x20, + 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, 0x32, 0x38, + 0x2e, 0x33, 0x38, 0x38, 0x39, 0x35, 0x33, 0x20, + 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, 0x32, 0x38, + 0x2e, 0x38, 0x30, 0x32, 0x39, 0x35, 0x32, 0x20, + 0x43, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, + 0x32, 0x39, 0x2e, 0x32, 0x31, 0x36, 0x39, 0x35, + 0x32, 0x20, 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, + 0x2c, 0x32, 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x31, 0x38, 0x2c, 0x32, 0x39, + 0x2e, 0x35, 0x35, 0x32, 0x39, 0x35, 0x32, 0x20, + 0x43, 0x20, 0x31, 0x37, 0x2e, 0x35, 0x38, 0x36, + 0x2c, 0x32, 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, + 0x2c, 0x32, 0x39, 0x2e, 0x32, 0x31, 0x36, 0x39, + 0x35, 0x32, 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, + 0x2c, 0x32, 0x38, 0x2e, 0x38, 0x30, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x43, 0x20, 0x31, 0x37, 0x2e, + 0x32, 0x35, 0x2c, 0x32, 0x38, 0x2e, 0x33, 0x38, + 0x38, 0x39, 0x35, 0x33, 0x20, 0x31, 0x37, 0x2e, + 0x35, 0x38, 0x36, 0x2c, 0x32, 0x38, 0x2e, 0x30, + 0x35, 0x32, 0x39, 0x35, 0x32, 0x20, 0x31, 0x38, + 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, + 0x38, 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x35, 0x36, 0x36, 0x33, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, + 0x38, 0x2c, 0x36, 0x2e, 0x34, 0x34, 0x37, 0x30, + 0x35, 0x20, 0x43, 0x20, 0x31, 0x38, 0x2e, 0x34, + 0x31, 0x34, 0x2c, 0x36, 0x2e, 0x34, 0x34, 0x37, + 0x30, 0x35, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x2c, 0x36, 0x2e, 0x37, 0x38, 0x33, 0x30, 0x35, + 0x31, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, + 0x37, 0x2e, 0x31, 0x39, 0x37, 0x30, 0x35, 0x20, + 0x43, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, + 0x37, 0x2e, 0x36, 0x31, 0x31, 0x30, 0x35, 0x20, + 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, 0x2c, 0x37, + 0x2e, 0x39, 0x34, 0x37, 0x30, 0x35, 0x20, 0x31, + 0x38, 0x2c, 0x37, 0x2e, 0x39, 0x34, 0x37, 0x30, + 0x35, 0x20, 0x43, 0x20, 0x31, 0x37, 0x2e, 0x35, + 0x38, 0x36, 0x2c, 0x37, 0x2e, 0x39, 0x34, 0x37, + 0x30, 0x35, 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, + 0x2c, 0x37, 0x2e, 0x36, 0x31, 0x31, 0x30, 0x35, + 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, 0x2c, 0x37, + 0x2e, 0x31, 0x39, 0x37, 0x30, 0x35, 0x20, 0x43, + 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, 0x2c, 0x36, + 0x2e, 0x37, 0x38, 0x33, 0x30, 0x35, 0x31, 0x20, + 0x31, 0x37, 0x2e, 0x35, 0x38, 0x36, 0x2c, 0x36, + 0x2e, 0x34, 0x34, 0x37, 0x30, 0x35, 0x20, 0x31, + 0x38, 0x2c, 0x36, 0x2e, 0x34, 0x34, 0x37, 0x30, + 0x35, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, + 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x38, + 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, + 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, + 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x32, 0x33, 0x2e, 0x30, + 0x32, 0x36, 0x34, 0x37, 0x36, 0x2c, 0x32, 0x36, + 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, 0x20, + 0x43, 0x20, 0x32, 0x33, 0x2e, 0x33, 0x38, 0x35, + 0x30, 0x31, 0x2c, 0x32, 0x36, 0x2e, 0x34, 0x39, + 0x39, 0x31, 0x31, 0x31, 0x20, 0x32, 0x33, 0x2e, + 0x38, 0x34, 0x33, 0x39, 0x39, 0x35, 0x2c, 0x32, + 0x36, 0x2e, 0x36, 0x32, 0x32, 0x30, 0x39, 0x37, + 0x20, 0x32, 0x34, 0x2e, 0x30, 0x35, 0x30, 0x39, + 0x39, 0x35, 0x2c, 0x32, 0x36, 0x2e, 0x39, 0x38, + 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, 0x20, 0x32, + 0x34, 0x2e, 0x32, 0x35, 0x37, 0x39, 0x39, 0x35, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, 0x31, + 0x36, 0x35, 0x20, 0x32, 0x34, 0x2e, 0x31, 0x33, + 0x35, 0x30, 0x31, 0x2c, 0x32, 0x37, 0x2e, 0x37, + 0x39, 0x38, 0x31, 0x35, 0x20, 0x32, 0x33, 0x2e, + 0x37, 0x37, 0x36, 0x34, 0x37, 0x36, 0x2c, 0x32, + 0x38, 0x2e, 0x30, 0x30, 0x35, 0x31, 0x35, 0x20, + 0x43, 0x20, 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, + 0x39, 0x34, 0x31, 0x2c, 0x32, 0x38, 0x2e, 0x32, + 0x31, 0x32, 0x31, 0x35, 0x20, 0x32, 0x32, 0x2e, + 0x39, 0x35, 0x38, 0x39, 0x35, 0x37, 0x2c, 0x32, + 0x38, 0x2e, 0x30, 0x38, 0x39, 0x31, 0x36, 0x35, + 0x20, 0x32, 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, + 0x35, 0x36, 0x2c, 0x32, 0x37, 0x2e, 0x37, 0x33, + 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, 0x20, 0x32, + 0x32, 0x2e, 0x35, 0x34, 0x34, 0x39, 0x35, 0x37, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x37, 0x32, 0x30, + 0x39, 0x37, 0x20, 0x32, 0x32, 0x2e, 0x36, 0x36, + 0x37, 0x39, 0x34, 0x31, 0x2c, 0x32, 0x36, 0x2e, + 0x39, 0x31, 0x33, 0x31, 0x31, 0x31, 0x20, 0x32, + 0x33, 0x2e, 0x30, 0x32, 0x36, 0x34, 0x37, 0x36, + 0x2c, 0x32, 0x36, 0x2e, 0x37, 0x30, 0x36, 0x31, + 0x31, 0x31, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, + 0x36, 0x36, 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, + 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, + 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, 0x35, + 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, + 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, + 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, + 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, + 0x32, 0x2e, 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, + 0x2c, 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, + 0x31, 0x38, 0x20, 0x43, 0x20, 0x31, 0x32, 0x2e, + 0x35, 0x38, 0x32, 0x30, 0x35, 0x39, 0x2c, 0x37, + 0x2e, 0x37, 0x38, 0x37, 0x38, 0x35, 0x31, 0x38, + 0x20, 0x31, 0x33, 0x2e, 0x30, 0x34, 0x31, 0x30, + 0x34, 0x34, 0x2c, 0x37, 0x2e, 0x39, 0x31, 0x30, + 0x38, 0x33, 0x37, 0x32, 0x20, 0x31, 0x33, 0x2e, + 0x32, 0x34, 0x38, 0x30, 0x34, 0x34, 0x2c, 0x38, + 0x2e, 0x32, 0x36, 0x39, 0x33, 0x37, 0x30, 0x38, + 0x20, 0x43, 0x20, 0x31, 0x33, 0x2e, 0x34, 0x35, + 0x35, 0x30, 0x34, 0x34, 0x2c, 0x38, 0x2e, 0x36, + 0x32, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, 0x31, + 0x33, 0x2e, 0x33, 0x33, 0x32, 0x30, 0x35, 0x39, + 0x2c, 0x39, 0x2e, 0x30, 0x38, 0x36, 0x38, 0x38, + 0x39, 0x39, 0x20, 0x31, 0x32, 0x2e, 0x39, 0x37, + 0x33, 0x35, 0x32, 0x35, 0x2c, 0x39, 0x2e, 0x32, + 0x39, 0x33, 0x38, 0x38, 0x39, 0x39, 0x20, 0x43, + 0x20, 0x31, 0x32, 0x2e, 0x36, 0x31, 0x34, 0x39, + 0x39, 0x2c, 0x39, 0x2e, 0x35, 0x30, 0x30, 0x38, + 0x38, 0x39, 0x39, 0x20, 0x31, 0x32, 0x2e, 0x31, + 0x35, 0x36, 0x30, 0x30, 0x36, 0x2c, 0x39, 0x2e, + 0x33, 0x37, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, + 0x31, 0x31, 0x2e, 0x39, 0x34, 0x39, 0x30, 0x30, + 0x36, 0x2c, 0x39, 0x2e, 0x30, 0x31, 0x39, 0x33, + 0x37, 0x30, 0x38, 0x20, 0x43, 0x20, 0x31, 0x31, + 0x2e, 0x37, 0x34, 0x32, 0x30, 0x30, 0x36, 0x2c, + 0x38, 0x2e, 0x36, 0x36, 0x30, 0x38, 0x33, 0x37, + 0x32, 0x20, 0x31, 0x31, 0x2e, 0x38, 0x36, 0x34, + 0x39, 0x39, 0x2c, 0x38, 0x2e, 0x32, 0x30, 0x31, + 0x38, 0x35, 0x31, 0x38, 0x20, 0x31, 0x32, 0x2e, + 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, 0x2c, 0x37, + 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, 0x31, 0x38, + 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, 0x36, 0x36, + 0x39, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x35, 0x36, 0x37, 0x33, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x32, + 0x36, 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, + 0x2c, 0x32, 0x33, 0x2e, 0x30, 0x32, 0x36, 0x34, + 0x37, 0x36, 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, + 0x39, 0x31, 0x33, 0x31, 0x31, 0x31, 0x2c, 0x32, + 0x32, 0x2e, 0x36, 0x36, 0x37, 0x39, 0x34, 0x32, + 0x20, 0x32, 0x37, 0x2e, 0x33, 0x37, 0x32, 0x30, + 0x39, 0x37, 0x2c, 0x32, 0x32, 0x2e, 0x35, 0x34, + 0x34, 0x39, 0x35, 0x38, 0x20, 0x32, 0x37, 0x2e, + 0x37, 0x33, 0x30, 0x36, 0x33, 0x31, 0x2c, 0x32, + 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, 0x35, 0x37, + 0x20, 0x43, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x38, + 0x39, 0x31, 0x36, 0x35, 0x2c, 0x32, 0x32, 0x2e, + 0x39, 0x35, 0x38, 0x39, 0x35, 0x37, 0x20, 0x32, + 0x38, 0x2e, 0x32, 0x31, 0x32, 0x31, 0x35, 0x2c, + 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, 0x39, 0x34, + 0x32, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x30, 0x35, + 0x31, 0x35, 0x2c, 0x32, 0x33, 0x2e, 0x37, 0x37, + 0x36, 0x34, 0x37, 0x36, 0x20, 0x43, 0x20, 0x32, + 0x37, 0x2e, 0x37, 0x39, 0x38, 0x31, 0x35, 0x2c, + 0x32, 0x34, 0x2e, 0x31, 0x33, 0x35, 0x30, 0x31, + 0x31, 0x20, 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, + 0x31, 0x36, 0x35, 0x2c, 0x32, 0x34, 0x2e, 0x32, + 0x35, 0x37, 0x39, 0x39, 0x35, 0x20, 0x32, 0x36, + 0x2e, 0x39, 0x38, 0x30, 0x36, 0x33, 0x31, 0x2c, + 0x32, 0x34, 0x2e, 0x30, 0x35, 0x30, 0x39, 0x39, + 0x35, 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, 0x36, + 0x32, 0x32, 0x30, 0x39, 0x37, 0x2c, 0x32, 0x33, + 0x2e, 0x38, 0x34, 0x33, 0x39, 0x39, 0x36, 0x20, + 0x32, 0x36, 0x2e, 0x34, 0x39, 0x39, 0x31, 0x31, + 0x31, 0x2c, 0x32, 0x33, 0x2e, 0x33, 0x38, 0x35, + 0x30, 0x31, 0x31, 0x20, 0x32, 0x36, 0x2e, 0x37, + 0x30, 0x36, 0x31, 0x31, 0x31, 0x2c, 0x32, 0x33, + 0x2e, 0x30, 0x32, 0x36, 0x34, 0x37, 0x36, 0x20, + 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, + 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, + 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, + 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x35, 0x36, 0x37, 0x35, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x37, 0x2e, 0x39, 0x39, + 0x34, 0x38, 0x35, 0x31, 0x38, 0x2c, 0x31, 0x32, + 0x2e, 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, 0x20, + 0x43, 0x20, 0x38, 0x2e, 0x32, 0x30, 0x31, 0x38, + 0x35, 0x31, 0x38, 0x2c, 0x31, 0x31, 0x2e, 0x38, + 0x36, 0x34, 0x39, 0x39, 0x31, 0x20, 0x38, 0x2e, + 0x36, 0x36, 0x30, 0x38, 0x33, 0x37, 0x32, 0x2c, + 0x31, 0x31, 0x2e, 0x37, 0x34, 0x32, 0x30, 0x30, + 0x37, 0x20, 0x39, 0x2e, 0x30, 0x31, 0x39, 0x33, + 0x37, 0x30, 0x38, 0x2c, 0x31, 0x31, 0x2e, 0x39, + 0x34, 0x39, 0x30, 0x30, 0x36, 0x20, 0x43, 0x20, + 0x39, 0x2e, 0x33, 0x37, 0x37, 0x39, 0x30, 0x35, + 0x34, 0x2c, 0x31, 0x32, 0x2e, 0x31, 0x35, 0x36, + 0x30, 0x30, 0x36, 0x20, 0x39, 0x2e, 0x35, 0x30, + 0x30, 0x38, 0x38, 0x39, 0x39, 0x2c, 0x31, 0x32, + 0x2e, 0x36, 0x31, 0x34, 0x39, 0x39, 0x31, 0x20, + 0x39, 0x2e, 0x32, 0x39, 0x33, 0x38, 0x38, 0x39, + 0x39, 0x2c, 0x31, 0x32, 0x2e, 0x39, 0x37, 0x33, + 0x35, 0x32, 0x35, 0x20, 0x43, 0x20, 0x39, 0x2e, + 0x30, 0x38, 0x36, 0x38, 0x38, 0x39, 0x39, 0x2c, + 0x31, 0x33, 0x2e, 0x33, 0x33, 0x32, 0x30, 0x36, + 0x20, 0x38, 0x2e, 0x36, 0x32, 0x37, 0x39, 0x30, + 0x35, 0x34, 0x2c, 0x31, 0x33, 0x2e, 0x34, 0x35, + 0x35, 0x30, 0x34, 0x34, 0x20, 0x38, 0x2e, 0x32, + 0x36, 0x39, 0x33, 0x37, 0x30, 0x38, 0x2c, 0x31, + 0x33, 0x2e, 0x32, 0x34, 0x38, 0x30, 0x34, 0x34, + 0x20, 0x43, 0x20, 0x37, 0x2e, 0x39, 0x31, 0x30, + 0x38, 0x33, 0x37, 0x32, 0x2c, 0x31, 0x33, 0x2e, + 0x30, 0x34, 0x31, 0x30, 0x34, 0x35, 0x20, 0x37, + 0x2e, 0x37, 0x38, 0x37, 0x38, 0x35, 0x31, 0x38, + 0x2c, 0x31, 0x32, 0x2e, 0x35, 0x38, 0x32, 0x30, + 0x36, 0x20, 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, + 0x35, 0x31, 0x38, 0x2c, 0x31, 0x32, 0x2e, 0x32, + 0x32, 0x33, 0x35, 0x32, 0x35, 0x20, 0x7a, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x38, + 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, + 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, + 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x67, + 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x2f, 0x67, 0x3e, + 0x0a, 0x3c, 0x2f, 0x73, 0x76, 0x67, 0x3e, 0x0a, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x2d, 0x66, 0x61, + 0x63, 0x65, 0x2d, 0x73, 0x6d, 0x61, 0x6c, 0x6c, + 0x2d, 0x64, 0x61, 0x79, 0x2e, 0x73, 0x76, 0x67, + 0xc0, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65, + 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31, + 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f, + 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54, + 0x46, 0x2d, 0x38, 0x22, 0x20, 0x73, 0x74, 0x61, + 0x6e, 0x64, 0x61, 0x6c, 0x6f, 0x6e, 0x65, 0x3d, + 0x22, 0x6e, 0x6f, 0x22, 0x3f, 0x3e, 0x0a, 0x3c, + 0x21, 0x2d, 0x2d, 0x20, 0x43, 0x72, 0x65, 0x61, + 0x74, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, + 0x20, 0x49, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x20, 0x28, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x2e, 0x6f, + 0x72, 0x67, 0x2f, 0x29, 0x20, 0x2d, 0x2d, 0x3e, + 0x0a, 0x3c, 0x73, 0x76, 0x67, 0x0a, 0x20, 0x20, + 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, 0x64, + 0x63, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x70, 0x75, 0x72, 0x6c, 0x2e, 0x6f, + 0x72, 0x67, 0x2f, 0x64, 0x63, 0x2f, 0x65, 0x6c, + 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x31, + 0x2e, 0x31, 0x2f, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, 0x63, 0x63, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x65, 0x62, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x63, 0x63, 0x2f, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, + 0x72, 0x64, 0x66, 0x3d, 0x22, 0x68, 0x74, 0x74, + 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, + 0x77, 0x33, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x31, + 0x39, 0x39, 0x39, 0x2f, 0x30, 0x32, 0x2f, 0x32, + 0x32, 0x2d, 0x72, 0x64, 0x66, 0x2d, 0x73, 0x79, + 0x6e, 0x74, 0x61, 0x78, 0x2d, 0x6e, 0x73, 0x23, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, + 0x6e, 0x73, 0x3a, 0x73, 0x76, 0x67, 0x3d, 0x22, + 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, + 0x77, 0x77, 0x2e, 0x77, 0x33, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x32, 0x30, 0x30, 0x30, 0x2f, 0x73, + 0x76, 0x67, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, + 0x6d, 0x6c, 0x6e, 0x73, 0x3d, 0x22, 0x68, 0x74, + 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, + 0x2e, 0x77, 0x33, 0x2e, 0x6f, 0x72, 0x67, 0x2f, + 0x32, 0x30, 0x30, 0x30, 0x2f, 0x73, 0x76, 0x67, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, + 0x6e, 0x73, 0x3a, 0x78, 0x6c, 0x69, 0x6e, 0x6b, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x77, 0x33, 0x2e, + 0x6f, 0x72, 0x67, 0x2f, 0x31, 0x39, 0x39, 0x39, + 0x2f, 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, + 0x3a, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x2e, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x66, 0x6f, 0x72, 0x67, 0x65, 0x2e, 0x6e, + 0x65, 0x74, 0x2f, 0x44, 0x54, 0x44, 0x2f, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x2d, + 0x30, 0x2e, 0x64, 0x74, 0x64, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, + 0x61, 0x63, 0x65, 0x73, 0x2f, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3d, + 0x22, 0x33, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3d, 0x22, + 0x33, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x73, 0x76, 0x67, 0x35, 0x34, + 0x31, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, + 0x22, 0x30, 0x2e, 0x33, 0x32, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x76, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x3d, 0x22, 0x30, 0x2e, 0x34, 0x35, + 0x2b, 0x64, 0x65, 0x76, 0x65, 0x6c, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x76, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x3d, 0x22, 0x31, 0x2e, 0x30, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x64, 0x6f, 0x63, + 0x62, 0x61, 0x73, 0x65, 0x3d, 0x22, 0x2f, 0x68, + 0x6f, 0x6d, 0x65, 0x2f, 0x67, 0x61, 0x72, 0x72, + 0x65, 0x74, 0x74, 0x2f, 0x44, 0x65, 0x73, 0x6b, + 0x74, 0x6f, 0x70, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x64, 0x6f, 0x63, 0x6e, 0x61, 0x6d, 0x65, + 0x3d, 0x22, 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x2d, + 0x66, 0x61, 0x63, 0x65, 0x2d, 0x73, 0x6d, 0x61, + 0x6c, 0x6c, 0x2d, 0x32, 0x2e, 0x73, 0x76, 0x67, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x6f, 0x75, + 0x74, 0x70, 0x75, 0x74, 0x5f, 0x65, 0x78, 0x74, + 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, + 0x6f, 0x72, 0x67, 0x2e, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x2e, 0x6f, 0x75, 0x74, + 0x70, 0x75, 0x74, 0x2e, 0x73, 0x76, 0x67, 0x2e, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x64, 0x65, + 0x66, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x64, 0x65, 0x66, 0x73, + 0x35, 0x34, 0x31, 0x38, 0x22, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x31, 0x30, 0x36, 0x35, + 0x33, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x31, 0x30, 0x36, 0x35, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, + 0x22, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x66, 0x33, 0x66, 0x34, 0x66, 0x66, 0x3b, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x31, 0x30, 0x36, 0x35, 0x37, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, + 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, + 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x39, + 0x31, 0x39, 0x33, 0x61, 0x66, 0x3b, 0x73, 0x74, + 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x34, 0x32, 0x31, + 0x37, 0x34, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, + 0x6f, 0x70, 0x34, 0x32, 0x31, 0x37, 0x36, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, + 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, + 0x23, 0x61, 0x30, 0x61, 0x30, 0x61, 0x30, 0x3b, + 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x34, 0x32, 0x31, 0x37, 0x38, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, + 0x22, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x3b, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x2f, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x32, 0x31, + 0x34, 0x35, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, + 0x6f, 0x70, 0x32, 0x31, 0x34, 0x37, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, + 0x22, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x64, 0x3b, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x32, 0x31, 0x34, 0x39, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, + 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, + 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x64, 0x39, + 0x64, 0x39, 0x64, 0x38, 0x3b, 0x73, 0x74, 0x6f, + 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x3b, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x33, 0x37, 0x39, 0x33, + 0x35, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, + 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, 0x6c, + 0x6f, 0x72, 0x3a, 0x23, 0x39, 0x34, 0x39, 0x37, + 0x62, 0x33, 0x3b, 0x73, 0x74, 0x6f, 0x70, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x3b, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, 0x66, + 0x73, 0x65, 0x74, 0x3d, 0x22, 0x30, 0x2e, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x33, 0x37, 0x39, 0x33, 0x37, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, + 0x72, 0x3a, 0x23, 0x34, 0x63, 0x34, 0x30, 0x35, + 0x39, 0x3b, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x3b, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, + 0x65, 0x74, 0x3d, 0x22, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x33, 0x37, 0x39, 0x33, 0x39, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x33, 0x38, 0x31, + 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, + 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, 0x61, + 0x79, 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, + 0x6f, 0x70, 0x33, 0x38, 0x31, 0x38, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, + 0x22, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x33, 0x38, 0x32, 0x30, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, + 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, + 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x3b, 0x73, 0x74, 0x6f, + 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x30, 0x3b, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x72, 0x61, 0x64, 0x69, + 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, + 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, 0x61, + 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, 0x6b, + 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x23, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x33, 0x38, + 0x31, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x72, + 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x34, + 0x37, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x3d, + 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, 0x70, 0x61, + 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, 0x65, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x63, 0x78, 0x3d, 0x22, 0x33, 0x31, 0x2e, 0x31, + 0x31, 0x32, 0x36, 0x39, 0x38, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x79, + 0x3d, 0x22, 0x31, 0x39, 0x2e, 0x30, 0x30, 0x38, + 0x36, 0x32, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x66, 0x78, 0x3d, 0x22, + 0x33, 0x31, 0x2e, 0x31, 0x31, 0x32, 0x36, 0x39, + 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x66, 0x79, 0x3d, 0x22, 0x31, 0x39, + 0x2e, 0x30, 0x30, 0x38, 0x36, 0x32, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x72, 0x3d, 0x22, 0x38, 0x2e, 0x36, 0x36, 0x32, + 0x30, 0x35, 0x37, 0x39, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x72, 0x61, + 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, + 0x6c, 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, + 0x77, 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, + 0x6e, 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, + 0x22, 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x33, 0x37, 0x39, 0x33, 0x35, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x35, 0x38, 0x34, 0x39, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, + 0x74, 0x73, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, + 0x53, 0x70, 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, + 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x63, 0x78, 0x3d, 0x22, 0x38, + 0x2e, 0x37, 0x34, 0x36, 0x38, 0x32, 0x35, 0x32, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x63, 0x79, 0x3d, 0x22, 0x36, 0x2e, 0x38, + 0x32, 0x38, 0x33, 0x32, 0x33, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, + 0x78, 0x3d, 0x22, 0x38, 0x2e, 0x37, 0x34, 0x36, + 0x38, 0x32, 0x35, 0x32, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x79, 0x3d, + 0x22, 0x36, 0x2e, 0x38, 0x32, 0x38, 0x33, 0x32, + 0x33, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x72, 0x3d, 0x22, 0x32, 0x39, + 0x2e, 0x38, 0x38, 0x39, 0x37, 0x31, 0x35, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3d, + 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x68, 0x72, + 0x65, 0x66, 0x3d, 0x22, 0x23, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x32, 0x31, 0x34, 0x35, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x72, 0x61, 0x64, 0x69, + 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x35, 0x38, 0x35, 0x31, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x55, + 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, 0x75, 0x73, + 0x65, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x4f, + 0x6e, 0x55, 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x78, 0x3d, + 0x22, 0x31, 0x31, 0x2e, 0x39, 0x30, 0x31, 0x39, + 0x39, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x63, 0x79, 0x3d, 0x22, 0x31, + 0x30, 0x2e, 0x30, 0x34, 0x35, 0x34, 0x34, 0x34, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x66, 0x78, 0x3d, 0x22, 0x31, 0x31, 0x2e, + 0x39, 0x30, 0x31, 0x39, 0x39, 0x36, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, + 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, 0x30, 0x34, + 0x35, 0x34, 0x34, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x3d, 0x22, + 0x32, 0x39, 0x2e, 0x32, 0x39, 0x32, 0x37, 0x31, + 0x35, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, + 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, + 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, + 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x23, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x34, 0x32, 0x31, + 0x37, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x35, + 0x33, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x3d, + 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, 0x70, 0x61, + 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, 0x65, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x78, 0x31, 0x3d, 0x22, 0x36, 0x2e, 0x33, 0x34, + 0x32, 0x32, 0x31, 0x36, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x79, 0x31, 0x3d, + 0x22, 0x37, 0x2e, 0x37, 0x38, 0x39, 0x33, 0x33, + 0x32, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x78, 0x32, 0x3d, 0x22, 0x32, + 0x32, 0x2e, 0x32, 0x31, 0x38, 0x34, 0x32, 0x34, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x79, 0x32, 0x3d, 0x22, 0x32, 0x35, 0x2e, + 0x38, 0x38, 0x34, 0x32, 0x37, 0x34, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, + 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3d, 0x22, + 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, + 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x68, 0x72, 0x65, + 0x66, 0x3d, 0x22, 0x23, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x31, 0x30, 0x36, 0x35, 0x33, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x72, 0x61, 0x64, 0x69, + 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x35, 0x38, 0x35, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x55, + 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, 0x75, 0x73, + 0x65, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x4f, + 0x6e, 0x55, 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x78, 0x3d, + 0x22, 0x31, 0x31, 0x2e, 0x33, 0x32, 0x39, 0x32, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x63, 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, + 0x35, 0x38, 0x33, 0x39, 0x37, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x78, + 0x3d, 0x22, 0x31, 0x31, 0x2e, 0x33, 0x32, 0x39, + 0x32, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x66, 0x79, 0x3d, 0x22, 0x31, 0x30, + 0x2e, 0x35, 0x38, 0x33, 0x39, 0x37, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, + 0x3d, 0x22, 0x31, 0x35, 0x2e, 0x35, 0x33, 0x32, + 0x30, 0x35, 0x39, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x72, 0x61, 0x64, + 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, + 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, + 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, + 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, + 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, + 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x32, + 0x31, 0x34, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, + 0x35, 0x37, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, 0x73, + 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, 0x70, + 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, 0x65, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x63, 0x78, 0x3d, 0x22, 0x31, 0x31, 0x2e, + 0x39, 0x30, 0x31, 0x39, 0x39, 0x36, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, + 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, 0x30, 0x34, + 0x35, 0x34, 0x34, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x78, 0x3d, + 0x22, 0x31, 0x31, 0x2e, 0x39, 0x30, 0x31, 0x39, + 0x39, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x66, 0x79, 0x3d, 0x22, 0x31, + 0x30, 0x2e, 0x30, 0x34, 0x35, 0x34, 0x34, 0x34, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x72, 0x3d, 0x22, 0x32, 0x39, 0x2e, 0x32, + 0x39, 0x32, 0x37, 0x31, 0x35, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, + 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, + 0x6c, 0x77, 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, + 0x69, 0x6e, 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, + 0x3d, 0x22, 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x34, 0x32, 0x31, 0x37, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x35, 0x38, 0x35, 0x39, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x55, 0x6e, + 0x69, 0x74, 0x73, 0x3d, 0x22, 0x75, 0x73, 0x65, + 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, 0x4f, 0x6e, + 0x55, 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x78, 0x31, 0x3d, 0x22, + 0x36, 0x2e, 0x33, 0x34, 0x32, 0x32, 0x31, 0x36, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x79, 0x31, 0x3d, 0x22, 0x37, 0x2e, 0x37, + 0x38, 0x39, 0x33, 0x33, 0x32, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, + 0x32, 0x3d, 0x22, 0x32, 0x32, 0x2e, 0x32, 0x31, + 0x38, 0x34, 0x32, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x79, 0x32, 0x3d, + 0x22, 0x32, 0x35, 0x2e, 0x38, 0x38, 0x34, 0x32, + 0x37, 0x34, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x3c, 0x2f, 0x64, 0x65, 0x66, 0x73, 0x3e, + 0x0a, 0x20, 0x20, 0x3c, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x6e, 0x61, 0x6d, + 0x65, 0x64, 0x76, 0x69, 0x65, 0x77, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x62, 0x61, 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x70, 0x61, 0x67, 0x65, 0x63, + 0x6f, 0x6c, 0x6f, 0x72, 0x3d, 0x22, 0x23, 0x66, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x62, 0x6f, 0x72, 0x64, + 0x65, 0x72, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3d, + 0x22, 0x23, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, + 0x6f, 0x72, 0x64, 0x65, 0x72, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3d, 0x22, 0x31, 0x2e, + 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x70, 0x61, 0x67, 0x65, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3d, 0x22, 0x30, 0x2e, + 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x70, 0x61, 0x67, 0x65, 0x73, 0x68, 0x61, + 0x64, 0x6f, 0x77, 0x3d, 0x22, 0x32, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x7a, 0x6f, + 0x6f, 0x6d, 0x3d, 0x22, 0x32, 0x36, 0x2e, 0x33, + 0x38, 0x38, 0x38, 0x38, 0x39, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, 0x78, 0x3d, + 0x22, 0x31, 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x63, 0x79, 0x3d, 0x22, 0x31, + 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, + 0x74, 0x2d, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x3d, + 0x22, 0x70, 0x78, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x63, 0x75, 0x72, 0x72, 0x65, + 0x6e, 0x74, 0x2d, 0x6c, 0x61, 0x79, 0x65, 0x72, + 0x3d, 0x22, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2d, 0x77, + 0x69, 0x64, 0x74, 0x68, 0x3d, 0x22, 0x31, 0x36, + 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x3a, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, + 0x2d, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3d, + 0x22, 0x31, 0x31, 0x35, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x77, 0x69, 0x6e, + 0x64, 0x6f, 0x77, 0x2d, 0x78, 0x3d, 0x22, 0x30, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2d, 0x79, + 0x3d, 0x22, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3d, + 0x22, 0x33, 0x36, 0x70, 0x78, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x69, 0x67, + 0x68, 0x74, 0x3d, 0x22, 0x33, 0x36, 0x70, 0x78, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x3c, + 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, + 0x74, 0x61, 0x35, 0x34, 0x32, 0x31, 0x22, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x72, 0x64, + 0x66, 0x3a, 0x52, 0x44, 0x46, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x63, + 0x3a, 0x57, 0x6f, 0x72, 0x6b, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, + 0x64, 0x66, 0x3a, 0x61, 0x62, 0x6f, 0x75, 0x74, + 0x3d, 0x22, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x63, + 0x3a, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x3e, + 0x69, 0x6d, 0x61, 0x67, 0x65, 0x2f, 0x73, 0x76, + 0x67, 0x2b, 0x78, 0x6d, 0x6c, 0x3c, 0x2f, 0x64, + 0x63, 0x3a, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x64, 0x63, 0x3a, 0x74, 0x79, + 0x70, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x64, + 0x66, 0x3a, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, + 0x3a, 0x2f, 0x2f, 0x70, 0x75, 0x72, 0x6c, 0x2e, + 0x6f, 0x72, 0x67, 0x2f, 0x64, 0x63, 0x2f, 0x64, + 0x63, 0x6d, 0x69, 0x74, 0x79, 0x70, 0x65, 0x2f, + 0x53, 0x74, 0x69, 0x6c, 0x6c, 0x49, 0x6d, 0x61, + 0x67, 0x65, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, + 0x63, 0x3a, 0x57, 0x6f, 0x72, 0x6b, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x72, 0x64, + 0x66, 0x3a, 0x52, 0x44, 0x46, 0x3e, 0x0a, 0x20, + 0x20, 0x3c, 0x2f, 0x6d, 0x65, 0x74, 0x61, 0x64, + 0x61, 0x74, 0x61, 0x3e, 0x0a, 0x20, 0x20, 0x3c, + 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3d, 0x22, 0x4c, + 0x61, 0x79, 0x65, 0x72, 0x20, 0x31, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x67, 0x72, + 0x6f, 0x75, 0x70, 0x6d, 0x6f, 0x64, 0x65, 0x3d, + 0x22, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73, + 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x69, 0x6e, 0x6c, + 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x33, 0x39, 0x2e, 0x37, + 0x37, 0x34, 0x37, 0x35, 0x35, 0x2c, 0x31, 0x39, + 0x2e, 0x30, 0x30, 0x38, 0x36, 0x32, 0x31, 0x20, + 0x41, 0x20, 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, + 0x35, 0x37, 0x39, 0x2c, 0x38, 0x2e, 0x36, 0x36, + 0x32, 0x30, 0x35, 0x37, 0x39, 0x20, 0x30, 0x20, + 0x31, 0x20, 0x31, 0x20, 0x32, 0x32, 0x2e, 0x34, + 0x35, 0x30, 0x36, 0x34, 0x2c, 0x31, 0x39, 0x2e, + 0x30, 0x30, 0x38, 0x36, 0x32, 0x31, 0x20, 0x41, + 0x20, 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, + 0x37, 0x39, 0x2c, 0x38, 0x2e, 0x36, 0x36, 0x32, + 0x30, 0x35, 0x37, 0x39, 0x20, 0x30, 0x20, 0x31, + 0x20, 0x31, 0x20, 0x33, 0x39, 0x2e, 0x37, 0x37, + 0x34, 0x37, 0x35, 0x35, 0x2c, 0x31, 0x39, 0x2e, + 0x30, 0x30, 0x38, 0x36, 0x32, 0x31, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x38, 0x2e, + 0x36, 0x36, 0x32, 0x30, 0x35, 0x37, 0x39, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x72, 0x78, 0x3d, 0x22, 0x38, 0x2e, 0x36, + 0x36, 0x32, 0x30, 0x35, 0x37, 0x39, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x63, 0x79, 0x3d, 0x22, 0x31, 0x39, 0x2e, 0x30, + 0x30, 0x38, 0x36, 0x32, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, + 0x78, 0x3d, 0x22, 0x33, 0x31, 0x2e, 0x31, 0x31, + 0x32, 0x36, 0x39, 0x38, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x70, 0x61, 0x74, 0x68, 0x34, 0x34, 0x31, + 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x66, + 0x69, 0x6c, 0x6c, 0x3a, 0x75, 0x72, 0x6c, 0x28, + 0x23, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, + 0x38, 0x34, 0x37, 0x29, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, + 0x65, 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, + 0x70, 0x78, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, + 0x70, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, + 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, + 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x6d, 0x61, + 0x72, 0x6b, 0x65, 0x72, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x72, + 0x2d, 0x73, 0x74, 0x61, 0x72, 0x74, 0x3a, 0x6e, + 0x6f, 0x6e, 0x65, 0x3b, 0x6d, 0x61, 0x72, 0x6b, + 0x65, 0x72, 0x2d, 0x6d, 0x69, 0x64, 0x3a, 0x6e, + 0x6f, 0x6e, 0x65, 0x3b, 0x6d, 0x61, 0x72, 0x6b, + 0x65, 0x72, 0x2d, 0x65, 0x6e, 0x64, 0x3a, 0x6e, + 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x64, + 0x61, 0x73, 0x68, 0x61, 0x72, 0x72, 0x61, 0x79, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, + 0x68, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3a, + 0x30, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x3b, 0x76, 0x69, 0x73, 0x69, 0x62, + 0x69, 0x6c, 0x69, 0x74, 0x79, 0x3a, 0x76, 0x69, + 0x73, 0x69, 0x62, 0x6c, 0x65, 0x3b, 0x64, 0x69, + 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x69, 0x6e, + 0x6c, 0x69, 0x6e, 0x65, 0x3b, 0x6f, 0x76, 0x65, + 0x72, 0x66, 0x6c, 0x6f, 0x77, 0x3a, 0x76, 0x69, + 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x74, + 0x79, 0x70, 0x65, 0x3d, 0x22, 0x61, 0x72, 0x63, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, + 0x72, 0x6d, 0x3d, 0x22, 0x6d, 0x61, 0x74, 0x72, + 0x69, 0x78, 0x28, 0x31, 0x2e, 0x36, 0x36, 0x32, + 0x34, 0x32, 0x32, 0x34, 0x2c, 0x30, 0x2c, 0x30, + 0x2c, 0x30, 0x2e, 0x37, 0x39, 0x31, 0x30, 0x31, + 0x34, 0x33, 0x2c, 0x2d, 0x33, 0x33, 0x2e, 0x37, + 0x32, 0x38, 0x32, 0x37, 0x38, 0x2c, 0x31, 0x34, + 0x2e, 0x31, 0x31, 0x32, 0x30, 0x39, 0x37, 0x29, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, + 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x3d, + 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x28, + 0x31, 0x2e, 0x31, 0x31, 0x34, 0x38, 0x36, 0x33, + 0x31, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x31, 0x2e, + 0x31, 0x31, 0x34, 0x38, 0x36, 0x33, 0x31, 0x2c, + 0x2d, 0x30, 0x2e, 0x31, 0x31, 0x36, 0x35, 0x32, + 0x30, 0x35, 0x2c, 0x2d, 0x30, 0x2e, 0x38, 0x35, + 0x33, 0x31, 0x33, 0x38, 0x37, 0x29, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, + 0x36, 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, + 0x41, 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, + 0x31, 0x20, 0x31, 0x20, 0x31, 0x2e, 0x33, 0x33, + 0x39, 0x32, 0x38, 0x35, 0x39, 0x2c, 0x31, 0x36, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, + 0x41, 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, + 0x31, 0x20, 0x31, 0x20, 0x33, 0x31, 0x2e, 0x31, + 0x36, 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, + 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x31, + 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x72, 0x78, 0x3d, 0x22, 0x31, 0x34, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x63, 0x79, 0x3d, 0x22, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x63, 0x78, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x32, + 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, + 0x74, 0x68, 0x34, 0x34, 0x31, 0x37, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, + 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, + 0x34, 0x39, 0x29, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, 0x65, + 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x23, 0x36, 0x30, 0x35, + 0x37, 0x37, 0x33, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, + 0x3a, 0x31, 0x2e, 0x36, 0x33, 0x35, 0x39, 0x36, + 0x30, 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, + 0x70, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, + 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, + 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, + 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, + 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x64, 0x61, 0x73, 0x68, 0x6f, 0x66, 0x66, + 0x73, 0x65, 0x74, 0x3a, 0x30, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x61, 0x72, + 0x63, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, + 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, + 0x3d, 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, + 0x28, 0x30, 0x2e, 0x39, 0x33, 0x31, 0x38, 0x38, + 0x36, 0x36, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, + 0x2e, 0x39, 0x33, 0x31, 0x38, 0x38, 0x36, 0x36, + 0x2c, 0x32, 0x2e, 0x37, 0x38, 0x33, 0x31, 0x32, + 0x31, 0x31, 0x2c, 0x32, 0x2e, 0x31, 0x36, 0x37, + 0x34, 0x32, 0x39, 0x31, 0x29, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, + 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, + 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, + 0x20, 0x31, 0x20, 0x31, 0x2e, 0x33, 0x33, 0x39, + 0x32, 0x38, 0x35, 0x39, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, + 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, + 0x20, 0x31, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, + 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x31, 0x34, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x72, 0x78, 0x3d, 0x22, 0x31, 0x34, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x63, 0x79, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, + 0x78, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x32, 0x35, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, + 0x68, 0x34, 0x34, 0x31, 0x39, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, 0x72, + 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, 0x35, + 0x31, 0x29, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x72, + 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, 0x65, 0x6e, + 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, + 0x35, 0x33, 0x29, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, + 0x3a, 0x31, 0x2e, 0x36, 0x36, 0x36, 0x30, 0x33, + 0x34, 0x37, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, + 0x70, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, + 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, + 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, + 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, + 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x64, 0x61, 0x73, 0x68, 0x6f, 0x66, 0x66, + 0x73, 0x65, 0x74, 0x3a, 0x30, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x61, 0x72, + 0x63, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x61, 0x72, + 0x63, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x72, + 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, 0x65, 0x6e, + 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, + 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x38, + 0x35, 0x35, 0x29, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, + 0x3a, 0x31, 0x2e, 0x37, 0x32, 0x34, 0x39, 0x37, + 0x39, 0x31, 0x36, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, + 0x61, 0x70, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, + 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, + 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, + 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, 0x6f, 0x66, + 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x34, 0x34, 0x32, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, + 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x32, 0x35, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x63, 0x79, 0x3d, 0x22, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x72, 0x78, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x72, + 0x79, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, + 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, + 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, + 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, + 0x31, 0x20, 0x31, 0x2e, 0x33, 0x33, 0x39, 0x32, + 0x38, 0x35, 0x39, 0x2c, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, + 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, + 0x31, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, + 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x7a, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, + 0x6d, 0x3d, 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, + 0x78, 0x28, 0x31, 0x2e, 0x30, 0x35, 0x37, 0x33, + 0x33, 0x30, 0x31, 0x2c, 0x30, 0x2c, 0x30, 0x2c, + 0x31, 0x2e, 0x30, 0x35, 0x37, 0x33, 0x33, 0x30, + 0x31, 0x2c, 0x30, 0x2e, 0x38, 0x31, 0x38, 0x33, + 0x34, 0x39, 0x38, 0x2c, 0x35, 0x2e, 0x30, 0x39, + 0x36, 0x31, 0x32, 0x33, 0x31, 0x65, 0x2d, 0x32, + 0x29, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, + 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, + 0x3d, 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, + 0x28, 0x30, 0x2e, 0x39, 0x33, 0x31, 0x38, 0x38, + 0x36, 0x36, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, + 0x2e, 0x39, 0x33, 0x31, 0x38, 0x38, 0x36, 0x36, + 0x2c, 0x32, 0x2e, 0x37, 0x38, 0x33, 0x31, 0x32, + 0x31, 0x31, 0x2c, 0x32, 0x2e, 0x31, 0x36, 0x37, + 0x34, 0x32, 0x39, 0x31, 0x29, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, + 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, + 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, + 0x20, 0x31, 0x20, 0x31, 0x2e, 0x33, 0x33, 0x39, + 0x32, 0x38, 0x35, 0x39, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, + 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, + 0x20, 0x31, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, + 0x30, 0x37, 0x31, 0x34, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x31, 0x34, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x72, 0x78, 0x3d, 0x22, 0x31, 0x34, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x63, 0x79, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, + 0x78, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x32, 0x35, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, + 0x68, 0x34, 0x34, 0x32, 0x39, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x30, 0x2e, 0x35, + 0x33, 0x39, 0x32, 0x31, 0x35, 0x36, 0x39, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x75, 0x72, 0x6c, + 0x28, 0x23, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x35, 0x38, 0x35, 0x37, 0x29, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, + 0x76, 0x65, 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x75, 0x72, + 0x6c, 0x28, 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x35, 0x38, 0x35, 0x39, 0x29, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, + 0x64, 0x74, 0x68, 0x3a, 0x31, 0x2e, 0x36, 0x36, + 0x36, 0x30, 0x33, 0x34, 0x37, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, + 0x65, 0x63, 0x61, 0x70, 0x3a, 0x72, 0x6f, 0x75, + 0x6e, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, + 0x69, 0x6e, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, + 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, + 0x79, 0x3a, 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, + 0x61, 0x72, 0x63, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, + 0x68, 0x35, 0x35, 0x34, 0x33, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x31, 0x39, 0x2c, 0x31, 0x38, + 0x20, 0x43, 0x20, 0x31, 0x39, 0x2c, 0x31, 0x38, + 0x2e, 0x35, 0x35, 0x32, 0x20, 0x31, 0x38, 0x2e, + 0x35, 0x35, 0x31, 0x39, 0x39, 0x39, 0x2c, 0x31, + 0x39, 0x20, 0x31, 0x38, 0x2c, 0x31, 0x39, 0x20, + 0x43, 0x20, 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, + 0x2c, 0x31, 0x39, 0x20, 0x31, 0x37, 0x2c, 0x31, + 0x38, 0x2e, 0x35, 0x35, 0x32, 0x20, 0x31, 0x37, + 0x2c, 0x31, 0x38, 0x20, 0x43, 0x20, 0x31, 0x37, + 0x2c, 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, 0x20, + 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, 0x2c, 0x31, + 0x37, 0x20, 0x31, 0x38, 0x2c, 0x31, 0x37, 0x20, + 0x43, 0x20, 0x31, 0x38, 0x2e, 0x35, 0x35, 0x31, + 0x39, 0x39, 0x39, 0x2c, 0x31, 0x37, 0x20, 0x31, + 0x39, 0x2c, 0x31, 0x37, 0x2e, 0x34, 0x34, 0x38, + 0x20, 0x31, 0x39, 0x2c, 0x31, 0x38, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, + 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x39, 0x39, + 0x39, 0x63, 0x39, 0x63, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, + 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, + 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, + 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x67, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x67, 0x35, 0x38, 0x30, 0x32, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, + 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, + 0x61, 0x38, 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, + 0x66, 0x6f, 0x72, 0x6d, 0x3d, 0x22, 0x6d, 0x61, + 0x74, 0x72, 0x69, 0x78, 0x28, 0x30, 0x2e, 0x39, + 0x39, 0x35, 0x34, 0x31, 0x36, 0x37, 0x2c, 0x30, + 0x2c, 0x30, 0x2c, 0x30, 0x2e, 0x39, 0x39, 0x35, + 0x34, 0x31, 0x36, 0x37, 0x2c, 0x38, 0x2e, 0x32, + 0x34, 0x39, 0x39, 0x32, 0x35, 0x31, 0x65, 0x2d, + 0x32, 0x2c, 0x38, 0x2e, 0x32, 0x34, 0x39, 0x38, + 0x34, 0x30, 0x35, 0x65, 0x2d, 0x32, 0x29, 0x22, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, + 0x38, 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, + 0x20, 0x37, 0x2e, 0x39, 0x34, 0x37, 0x30, 0x34, + 0x39, 0x33, 0x2c, 0x31, 0x38, 0x20, 0x43, 0x20, + 0x37, 0x2e, 0x39, 0x34, 0x37, 0x30, 0x34, 0x39, + 0x33, 0x2c, 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, + 0x20, 0x37, 0x2e, 0x36, 0x31, 0x31, 0x30, 0x34, + 0x38, 0x34, 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x20, 0x37, 0x2e, 0x31, 0x39, 0x37, 0x30, 0x34, + 0x39, 0x33, 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x20, 0x43, 0x20, 0x36, 0x2e, 0x37, 0x38, 0x33, + 0x30, 0x34, 0x39, 0x32, 0x2c, 0x31, 0x38, 0x2e, + 0x37, 0x35, 0x20, 0x36, 0x2e, 0x34, 0x34, 0x37, + 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x38, 0x2e, + 0x34, 0x31, 0x34, 0x20, 0x36, 0x2e, 0x34, 0x34, + 0x37, 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x38, + 0x20, 0x43, 0x20, 0x36, 0x2e, 0x34, 0x34, 0x37, + 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x37, 0x2e, + 0x35, 0x38, 0x36, 0x20, 0x36, 0x2e, 0x37, 0x38, + 0x33, 0x30, 0x34, 0x39, 0x32, 0x2c, 0x31, 0x37, + 0x2e, 0x32, 0x35, 0x20, 0x37, 0x2e, 0x31, 0x39, + 0x37, 0x30, 0x34, 0x39, 0x33, 0x2c, 0x31, 0x37, + 0x2e, 0x32, 0x35, 0x20, 0x43, 0x20, 0x37, 0x2e, + 0x36, 0x31, 0x31, 0x30, 0x34, 0x38, 0x34, 0x2c, + 0x31, 0x37, 0x2e, 0x32, 0x35, 0x20, 0x37, 0x2e, + 0x39, 0x34, 0x37, 0x30, 0x34, 0x39, 0x33, 0x2c, + 0x31, 0x37, 0x2e, 0x35, 0x38, 0x36, 0x20, 0x37, + 0x2e, 0x39, 0x34, 0x37, 0x30, 0x34, 0x39, 0x33, + 0x2c, 0x31, 0x38, 0x20, 0x7a, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x35, 0x35, 0x34, 0x35, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, + 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x32, 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, 0x35, + 0x31, 0x2c, 0x31, 0x38, 0x20, 0x43, 0x20, 0x32, + 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, 0x35, 0x31, + 0x2c, 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, 0x20, + 0x32, 0x39, 0x2e, 0x32, 0x31, 0x36, 0x39, 0x35, + 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x20, 0x32, + 0x38, 0x2e, 0x38, 0x30, 0x32, 0x39, 0x35, 0x31, + 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x20, 0x43, + 0x20, 0x32, 0x38, 0x2e, 0x33, 0x38, 0x38, 0x39, + 0x35, 0x31, 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x20, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, 0x39, + 0x35, 0x31, 0x2c, 0x31, 0x38, 0x2e, 0x34, 0x31, + 0x34, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, + 0x39, 0x35, 0x31, 0x2c, 0x31, 0x38, 0x20, 0x43, + 0x20, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, 0x39, + 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, 0x35, 0x38, + 0x36, 0x20, 0x32, 0x38, 0x2e, 0x33, 0x38, 0x38, + 0x39, 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, 0x32, + 0x35, 0x20, 0x32, 0x38, 0x2e, 0x38, 0x30, 0x32, + 0x39, 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, 0x32, + 0x35, 0x20, 0x43, 0x20, 0x32, 0x39, 0x2e, 0x32, + 0x31, 0x36, 0x39, 0x35, 0x2c, 0x31, 0x37, 0x2e, + 0x32, 0x35, 0x20, 0x32, 0x39, 0x2e, 0x35, 0x35, + 0x32, 0x39, 0x35, 0x31, 0x2c, 0x31, 0x37, 0x2e, + 0x35, 0x38, 0x36, 0x20, 0x32, 0x39, 0x2e, 0x35, + 0x35, 0x32, 0x39, 0x35, 0x31, 0x2c, 0x31, 0x38, + 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, 0x35, 0x35, + 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x35, 0x36, 0x34, 0x39, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x39, + 0x2e, 0x32, 0x39, 0x33, 0x38, 0x38, 0x39, 0x33, + 0x2c, 0x32, 0x33, 0x2e, 0x30, 0x32, 0x36, 0x34, + 0x37, 0x36, 0x20, 0x43, 0x20, 0x39, 0x2e, 0x35, + 0x30, 0x30, 0x38, 0x38, 0x39, 0x33, 0x2c, 0x32, + 0x33, 0x2e, 0x33, 0x38, 0x35, 0x30, 0x31, 0x20, + 0x39, 0x2e, 0x33, 0x37, 0x37, 0x39, 0x30, 0x34, + 0x2c, 0x32, 0x33, 0x2e, 0x38, 0x34, 0x33, 0x39, + 0x39, 0x35, 0x20, 0x39, 0x2e, 0x30, 0x31, 0x39, + 0x33, 0x37, 0x30, 0x33, 0x2c, 0x32, 0x34, 0x2e, + 0x30, 0x35, 0x30, 0x39, 0x39, 0x35, 0x20, 0x43, + 0x20, 0x38, 0x2e, 0x36, 0x36, 0x30, 0x38, 0x33, + 0x35, 0x37, 0x2c, 0x32, 0x34, 0x2e, 0x32, 0x35, + 0x37, 0x39, 0x39, 0x35, 0x20, 0x38, 0x2e, 0x32, + 0x30, 0x31, 0x38, 0x35, 0x31, 0x32, 0x2c, 0x32, + 0x34, 0x2e, 0x31, 0x33, 0x35, 0x30, 0x31, 0x20, + 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, 0x31, + 0x32, 0x2c, 0x32, 0x33, 0x2e, 0x37, 0x37, 0x36, + 0x34, 0x37, 0x36, 0x20, 0x43, 0x20, 0x37, 0x2e, + 0x37, 0x38, 0x37, 0x38, 0x35, 0x31, 0x32, 0x2c, + 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, 0x39, 0x34, + 0x31, 0x20, 0x37, 0x2e, 0x39, 0x31, 0x30, 0x38, + 0x33, 0x35, 0x37, 0x2c, 0x32, 0x32, 0x2e, 0x39, + 0x35, 0x38, 0x39, 0x35, 0x37, 0x20, 0x38, 0x2e, + 0x32, 0x36, 0x39, 0x33, 0x37, 0x30, 0x33, 0x2c, + 0x32, 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, 0x35, + 0x36, 0x20, 0x43, 0x20, 0x38, 0x2e, 0x36, 0x32, + 0x37, 0x39, 0x30, 0x34, 0x2c, 0x32, 0x32, 0x2e, + 0x35, 0x34, 0x34, 0x39, 0x35, 0x37, 0x20, 0x39, + 0x2e, 0x30, 0x38, 0x36, 0x38, 0x38, 0x39, 0x33, + 0x2c, 0x32, 0x32, 0x2e, 0x36, 0x36, 0x37, 0x39, + 0x34, 0x31, 0x20, 0x39, 0x2e, 0x32, 0x39, 0x33, + 0x38, 0x38, 0x39, 0x33, 0x2c, 0x32, 0x33, 0x2e, + 0x30, 0x32, 0x36, 0x34, 0x37, 0x36, 0x20, 0x7a, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, + 0x38, 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, 0x66, + 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, + 0x36, 0x35, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x30, + 0x35, 0x31, 0x34, 0x39, 0x2c, 0x31, 0x32, 0x2e, + 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, 0x20, 0x43, + 0x20, 0x32, 0x38, 0x2e, 0x32, 0x31, 0x32, 0x31, + 0x34, 0x39, 0x2c, 0x31, 0x32, 0x2e, 0x35, 0x38, + 0x32, 0x30, 0x35, 0x39, 0x20, 0x32, 0x38, 0x2e, + 0x30, 0x38, 0x39, 0x31, 0x36, 0x34, 0x2c, 0x31, + 0x33, 0x2e, 0x30, 0x34, 0x31, 0x30, 0x34, 0x34, + 0x20, 0x32, 0x37, 0x2e, 0x37, 0x33, 0x30, 0x36, + 0x33, 0x2c, 0x31, 0x33, 0x2e, 0x32, 0x34, 0x38, + 0x30, 0x34, 0x34, 0x20, 0x43, 0x20, 0x32, 0x37, + 0x2e, 0x33, 0x37, 0x32, 0x30, 0x39, 0x35, 0x2c, + 0x31, 0x33, 0x2e, 0x34, 0x35, 0x35, 0x30, 0x34, + 0x34, 0x20, 0x32, 0x36, 0x2e, 0x39, 0x31, 0x33, + 0x31, 0x31, 0x31, 0x2c, 0x31, 0x33, 0x2e, 0x33, + 0x33, 0x32, 0x30, 0x35, 0x39, 0x20, 0x32, 0x36, + 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, 0x2c, + 0x31, 0x32, 0x2e, 0x39, 0x37, 0x33, 0x35, 0x32, + 0x35, 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, 0x34, + 0x39, 0x39, 0x31, 0x31, 0x31, 0x2c, 0x31, 0x32, + 0x2e, 0x36, 0x31, 0x34, 0x39, 0x39, 0x20, 0x32, + 0x36, 0x2e, 0x36, 0x32, 0x32, 0x30, 0x39, 0x35, + 0x2c, 0x31, 0x32, 0x2e, 0x31, 0x35, 0x36, 0x30, + 0x30, 0x36, 0x20, 0x32, 0x36, 0x2e, 0x39, 0x38, + 0x30, 0x36, 0x33, 0x2c, 0x31, 0x31, 0x2e, 0x39, + 0x34, 0x39, 0x30, 0x30, 0x36, 0x20, 0x43, 0x20, + 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, 0x31, 0x36, + 0x34, 0x2c, 0x31, 0x31, 0x2e, 0x37, 0x34, 0x32, + 0x30, 0x30, 0x36, 0x20, 0x32, 0x37, 0x2e, 0x37, + 0x39, 0x38, 0x31, 0x34, 0x39, 0x2c, 0x31, 0x31, + 0x2e, 0x38, 0x36, 0x34, 0x39, 0x39, 0x20, 0x32, + 0x38, 0x2e, 0x30, 0x30, 0x35, 0x31, 0x34, 0x39, + 0x2c, 0x31, 0x32, 0x2e, 0x32, 0x32, 0x33, 0x35, + 0x32, 0x35, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, + 0x38, 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, + 0x38, 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, 0x66, + 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, 0x32, 0x2e, + 0x39, 0x37, 0x33, 0x35, 0x32, 0x35, 0x2c, 0x32, + 0x36, 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, + 0x20, 0x43, 0x20, 0x31, 0x33, 0x2e, 0x33, 0x33, + 0x32, 0x30, 0x35, 0x39, 0x2c, 0x32, 0x36, 0x2e, + 0x39, 0x31, 0x33, 0x31, 0x31, 0x31, 0x20, 0x31, + 0x33, 0x2e, 0x34, 0x35, 0x35, 0x30, 0x34, 0x33, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x37, 0x32, 0x30, + 0x39, 0x37, 0x20, 0x31, 0x33, 0x2e, 0x32, 0x34, + 0x38, 0x30, 0x34, 0x34, 0x2c, 0x32, 0x37, 0x2e, + 0x37, 0x33, 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, + 0x20, 0x31, 0x33, 0x2e, 0x30, 0x34, 0x31, 0x30, + 0x34, 0x34, 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x38, + 0x39, 0x31, 0x36, 0x35, 0x20, 0x31, 0x32, 0x2e, + 0x35, 0x38, 0x32, 0x30, 0x35, 0x39, 0x2c, 0x32, + 0x38, 0x2e, 0x32, 0x31, 0x32, 0x31, 0x35, 0x20, + 0x31, 0x32, 0x2e, 0x32, 0x32, 0x33, 0x35, 0x32, + 0x35, 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x30, 0x35, + 0x31, 0x35, 0x20, 0x43, 0x20, 0x31, 0x31, 0x2e, + 0x38, 0x36, 0x34, 0x39, 0x39, 0x2c, 0x32, 0x37, + 0x2e, 0x37, 0x39, 0x38, 0x31, 0x35, 0x20, 0x31, + 0x31, 0x2e, 0x37, 0x34, 0x32, 0x30, 0x30, 0x36, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, 0x31, + 0x36, 0x35, 0x20, 0x31, 0x31, 0x2e, 0x39, 0x34, + 0x39, 0x30, 0x30, 0x36, 0x2c, 0x32, 0x36, 0x2e, + 0x39, 0x38, 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, + 0x20, 0x31, 0x32, 0x2e, 0x31, 0x35, 0x36, 0x30, + 0x30, 0x35, 0x2c, 0x32, 0x36, 0x2e, 0x36, 0x32, + 0x32, 0x30, 0x39, 0x37, 0x20, 0x31, 0x32, 0x2e, + 0x36, 0x31, 0x34, 0x39, 0x39, 0x2c, 0x32, 0x36, + 0x2e, 0x34, 0x39, 0x39, 0x31, 0x31, 0x31, 0x20, + 0x31, 0x32, 0x2e, 0x39, 0x37, 0x33, 0x35, 0x32, + 0x35, 0x2c, 0x32, 0x36, 0x2e, 0x37, 0x30, 0x36, + 0x31, 0x31, 0x31, 0x20, 0x7a, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x35, 0x36, 0x35, 0x35, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, + 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x32, 0x33, 0x2e, 0x37, 0x37, 0x36, 0x34, 0x37, + 0x36, 0x2c, 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, + 0x35, 0x31, 0x38, 0x20, 0x43, 0x20, 0x32, 0x34, + 0x2e, 0x31, 0x33, 0x35, 0x30, 0x31, 0x2c, 0x38, + 0x2e, 0x32, 0x30, 0x31, 0x38, 0x35, 0x31, 0x38, + 0x20, 0x32, 0x34, 0x2e, 0x32, 0x35, 0x37, 0x39, + 0x39, 0x34, 0x2c, 0x38, 0x2e, 0x36, 0x36, 0x30, + 0x38, 0x33, 0x37, 0x32, 0x20, 0x32, 0x34, 0x2e, + 0x30, 0x35, 0x30, 0x39, 0x39, 0x35, 0x2c, 0x39, + 0x2e, 0x30, 0x31, 0x39, 0x33, 0x37, 0x30, 0x38, + 0x20, 0x43, 0x20, 0x32, 0x33, 0x2e, 0x38, 0x34, + 0x33, 0x39, 0x39, 0x35, 0x2c, 0x39, 0x2e, 0x33, + 0x37, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, 0x32, + 0x33, 0x2e, 0x33, 0x38, 0x35, 0x30, 0x31, 0x2c, + 0x39, 0x2e, 0x35, 0x30, 0x30, 0x38, 0x38, 0x39, + 0x39, 0x20, 0x32, 0x33, 0x2e, 0x30, 0x32, 0x36, + 0x34, 0x37, 0x36, 0x2c, 0x39, 0x2e, 0x32, 0x39, + 0x33, 0x38, 0x38, 0x39, 0x39, 0x20, 0x43, 0x20, + 0x32, 0x32, 0x2e, 0x36, 0x36, 0x37, 0x39, 0x34, + 0x31, 0x2c, 0x39, 0x2e, 0x30, 0x38, 0x36, 0x38, + 0x38, 0x39, 0x39, 0x20, 0x32, 0x32, 0x2e, 0x35, + 0x34, 0x34, 0x39, 0x35, 0x36, 0x2c, 0x38, 0x2e, + 0x36, 0x32, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, + 0x32, 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, 0x35, + 0x36, 0x2c, 0x38, 0x2e, 0x32, 0x36, 0x39, 0x33, + 0x37, 0x30, 0x38, 0x20, 0x43, 0x20, 0x32, 0x32, + 0x2e, 0x39, 0x35, 0x38, 0x39, 0x35, 0x36, 0x2c, + 0x37, 0x2e, 0x39, 0x31, 0x30, 0x38, 0x33, 0x37, + 0x32, 0x20, 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, + 0x39, 0x34, 0x31, 0x2c, 0x37, 0x2e, 0x37, 0x38, + 0x37, 0x38, 0x35, 0x31, 0x38, 0x20, 0x32, 0x33, + 0x2e, 0x37, 0x37, 0x36, 0x34, 0x37, 0x36, 0x2c, + 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, 0x31, + 0x38, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, 0x36, + 0x35, 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, + 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x70, 0x61, 0x74, 0x68, 0x35, 0x36, 0x36, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x31, 0x38, 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x35, + 0x32, 0x39, 0x35, 0x32, 0x20, 0x43, 0x20, 0x31, + 0x38, 0x2e, 0x34, 0x31, 0x34, 0x2c, 0x32, 0x38, + 0x2e, 0x30, 0x35, 0x32, 0x39, 0x35, 0x32, 0x20, + 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, 0x32, 0x38, + 0x2e, 0x33, 0x38, 0x38, 0x39, 0x35, 0x33, 0x20, + 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, 0x32, 0x38, + 0x2e, 0x38, 0x30, 0x32, 0x39, 0x35, 0x32, 0x20, + 0x43, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, + 0x32, 0x39, 0x2e, 0x32, 0x31, 0x36, 0x39, 0x35, + 0x32, 0x20, 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, + 0x2c, 0x32, 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x31, 0x38, 0x2c, 0x32, 0x39, + 0x2e, 0x35, 0x35, 0x32, 0x39, 0x35, 0x32, 0x20, + 0x43, 0x20, 0x31, 0x37, 0x2e, 0x35, 0x38, 0x36, + 0x2c, 0x32, 0x39, 0x2e, 0x35, 0x35, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, + 0x2c, 0x32, 0x39, 0x2e, 0x32, 0x31, 0x36, 0x39, + 0x35, 0x32, 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, + 0x2c, 0x32, 0x38, 0x2e, 0x38, 0x30, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x43, 0x20, 0x31, 0x37, 0x2e, + 0x32, 0x35, 0x2c, 0x32, 0x38, 0x2e, 0x33, 0x38, + 0x38, 0x39, 0x35, 0x33, 0x20, 0x31, 0x37, 0x2e, + 0x35, 0x38, 0x36, 0x2c, 0x32, 0x38, 0x2e, 0x30, + 0x35, 0x32, 0x39, 0x35, 0x32, 0x20, 0x31, 0x38, + 0x2c, 0x32, 0x38, 0x2e, 0x30, 0x35, 0x32, 0x39, + 0x35, 0x32, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, + 0x38, 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x35, 0x36, 0x36, 0x33, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, + 0x38, 0x2c, 0x36, 0x2e, 0x34, 0x34, 0x37, 0x30, + 0x35, 0x20, 0x43, 0x20, 0x31, 0x38, 0x2e, 0x34, + 0x31, 0x34, 0x2c, 0x36, 0x2e, 0x34, 0x34, 0x37, + 0x30, 0x35, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, + 0x2c, 0x36, 0x2e, 0x37, 0x38, 0x33, 0x30, 0x35, + 0x31, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, + 0x37, 0x2e, 0x31, 0x39, 0x37, 0x30, 0x35, 0x20, + 0x43, 0x20, 0x31, 0x38, 0x2e, 0x37, 0x35, 0x2c, + 0x37, 0x2e, 0x36, 0x31, 0x31, 0x30, 0x35, 0x20, + 0x31, 0x38, 0x2e, 0x34, 0x31, 0x34, 0x2c, 0x37, + 0x2e, 0x39, 0x34, 0x37, 0x30, 0x35, 0x20, 0x31, + 0x38, 0x2c, 0x37, 0x2e, 0x39, 0x34, 0x37, 0x30, + 0x35, 0x20, 0x43, 0x20, 0x31, 0x37, 0x2e, 0x35, + 0x38, 0x36, 0x2c, 0x37, 0x2e, 0x39, 0x34, 0x37, + 0x30, 0x35, 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, + 0x2c, 0x37, 0x2e, 0x36, 0x31, 0x31, 0x30, 0x35, + 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, 0x2c, 0x37, + 0x2e, 0x31, 0x39, 0x37, 0x30, 0x35, 0x20, 0x43, + 0x20, 0x31, 0x37, 0x2e, 0x32, 0x35, 0x2c, 0x36, + 0x2e, 0x37, 0x38, 0x33, 0x30, 0x35, 0x31, 0x20, + 0x31, 0x37, 0x2e, 0x35, 0x38, 0x36, 0x2c, 0x36, + 0x2e, 0x34, 0x34, 0x37, 0x30, 0x35, 0x20, 0x31, + 0x38, 0x2c, 0x36, 0x2e, 0x34, 0x34, 0x37, 0x30, + 0x35, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, + 0x35, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x38, + 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, + 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, + 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x32, 0x33, 0x2e, 0x30, + 0x32, 0x36, 0x34, 0x37, 0x36, 0x2c, 0x32, 0x36, + 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, 0x20, + 0x43, 0x20, 0x32, 0x33, 0x2e, 0x33, 0x38, 0x35, + 0x30, 0x31, 0x2c, 0x32, 0x36, 0x2e, 0x34, 0x39, + 0x39, 0x31, 0x31, 0x31, 0x20, 0x32, 0x33, 0x2e, + 0x38, 0x34, 0x33, 0x39, 0x39, 0x35, 0x2c, 0x32, + 0x36, 0x2e, 0x36, 0x32, 0x32, 0x30, 0x39, 0x37, + 0x20, 0x32, 0x34, 0x2e, 0x30, 0x35, 0x30, 0x39, + 0x39, 0x35, 0x2c, 0x32, 0x36, 0x2e, 0x39, 0x38, + 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, 0x20, 0x32, + 0x34, 0x2e, 0x32, 0x35, 0x37, 0x39, 0x39, 0x35, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, 0x31, + 0x36, 0x35, 0x20, 0x32, 0x34, 0x2e, 0x31, 0x33, + 0x35, 0x30, 0x31, 0x2c, 0x32, 0x37, 0x2e, 0x37, + 0x39, 0x38, 0x31, 0x35, 0x20, 0x32, 0x33, 0x2e, + 0x37, 0x37, 0x36, 0x34, 0x37, 0x36, 0x2c, 0x32, + 0x38, 0x2e, 0x30, 0x30, 0x35, 0x31, 0x35, 0x20, + 0x43, 0x20, 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, + 0x39, 0x34, 0x31, 0x2c, 0x32, 0x38, 0x2e, 0x32, + 0x31, 0x32, 0x31, 0x35, 0x20, 0x32, 0x32, 0x2e, + 0x39, 0x35, 0x38, 0x39, 0x35, 0x37, 0x2c, 0x32, + 0x38, 0x2e, 0x30, 0x38, 0x39, 0x31, 0x36, 0x35, + 0x20, 0x32, 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, + 0x35, 0x36, 0x2c, 0x32, 0x37, 0x2e, 0x37, 0x33, + 0x30, 0x36, 0x33, 0x31, 0x20, 0x43, 0x20, 0x32, + 0x32, 0x2e, 0x35, 0x34, 0x34, 0x39, 0x35, 0x37, + 0x2c, 0x32, 0x37, 0x2e, 0x33, 0x37, 0x32, 0x30, + 0x39, 0x37, 0x20, 0x32, 0x32, 0x2e, 0x36, 0x36, + 0x37, 0x39, 0x34, 0x31, 0x2c, 0x32, 0x36, 0x2e, + 0x39, 0x31, 0x33, 0x31, 0x31, 0x31, 0x20, 0x32, + 0x33, 0x2e, 0x30, 0x32, 0x36, 0x34, 0x37, 0x36, + 0x2c, 0x32, 0x36, 0x2e, 0x37, 0x30, 0x36, 0x31, + 0x31, 0x31, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, + 0x36, 0x36, 0x37, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, + 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, + 0x3a, 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, 0x35, + 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, + 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, + 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, + 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, + 0x32, 0x2e, 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, + 0x2c, 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, + 0x31, 0x38, 0x20, 0x43, 0x20, 0x31, 0x32, 0x2e, + 0x35, 0x38, 0x32, 0x30, 0x35, 0x39, 0x2c, 0x37, + 0x2e, 0x37, 0x38, 0x37, 0x38, 0x35, 0x31, 0x38, + 0x20, 0x31, 0x33, 0x2e, 0x30, 0x34, 0x31, 0x30, + 0x34, 0x34, 0x2c, 0x37, 0x2e, 0x39, 0x31, 0x30, + 0x38, 0x33, 0x37, 0x32, 0x20, 0x31, 0x33, 0x2e, + 0x32, 0x34, 0x38, 0x30, 0x34, 0x34, 0x2c, 0x38, + 0x2e, 0x32, 0x36, 0x39, 0x33, 0x37, 0x30, 0x38, + 0x20, 0x43, 0x20, 0x31, 0x33, 0x2e, 0x34, 0x35, + 0x35, 0x30, 0x34, 0x34, 0x2c, 0x38, 0x2e, 0x36, + 0x32, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, 0x31, + 0x33, 0x2e, 0x33, 0x33, 0x32, 0x30, 0x35, 0x39, + 0x2c, 0x39, 0x2e, 0x30, 0x38, 0x36, 0x38, 0x38, + 0x39, 0x39, 0x20, 0x31, 0x32, 0x2e, 0x39, 0x37, + 0x33, 0x35, 0x32, 0x35, 0x2c, 0x39, 0x2e, 0x32, + 0x39, 0x33, 0x38, 0x38, 0x39, 0x39, 0x20, 0x43, + 0x20, 0x31, 0x32, 0x2e, 0x36, 0x31, 0x34, 0x39, + 0x39, 0x2c, 0x39, 0x2e, 0x35, 0x30, 0x30, 0x38, + 0x38, 0x39, 0x39, 0x20, 0x31, 0x32, 0x2e, 0x31, + 0x35, 0x36, 0x30, 0x30, 0x36, 0x2c, 0x39, 0x2e, + 0x33, 0x37, 0x37, 0x39, 0x30, 0x35, 0x34, 0x20, + 0x31, 0x31, 0x2e, 0x39, 0x34, 0x39, 0x30, 0x30, + 0x36, 0x2c, 0x39, 0x2e, 0x30, 0x31, 0x39, 0x33, + 0x37, 0x30, 0x38, 0x20, 0x43, 0x20, 0x31, 0x31, + 0x2e, 0x37, 0x34, 0x32, 0x30, 0x30, 0x36, 0x2c, + 0x38, 0x2e, 0x36, 0x36, 0x30, 0x38, 0x33, 0x37, + 0x32, 0x20, 0x31, 0x31, 0x2e, 0x38, 0x36, 0x34, + 0x39, 0x39, 0x2c, 0x38, 0x2e, 0x32, 0x30, 0x31, + 0x38, 0x35, 0x31, 0x38, 0x20, 0x31, 0x32, 0x2e, + 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, 0x2c, 0x37, + 0x2e, 0x39, 0x39, 0x34, 0x38, 0x35, 0x31, 0x38, + 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x70, 0x61, 0x74, 0x68, 0x35, 0x36, 0x36, + 0x39, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, + 0x61, 0x74, 0x68, 0x35, 0x36, 0x37, 0x33, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x32, + 0x36, 0x2e, 0x37, 0x30, 0x36, 0x31, 0x31, 0x31, + 0x2c, 0x32, 0x33, 0x2e, 0x30, 0x32, 0x36, 0x34, + 0x37, 0x36, 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, + 0x39, 0x31, 0x33, 0x31, 0x31, 0x31, 0x2c, 0x32, + 0x32, 0x2e, 0x36, 0x36, 0x37, 0x39, 0x34, 0x32, + 0x20, 0x32, 0x37, 0x2e, 0x33, 0x37, 0x32, 0x30, + 0x39, 0x37, 0x2c, 0x32, 0x32, 0x2e, 0x35, 0x34, + 0x34, 0x39, 0x35, 0x38, 0x20, 0x32, 0x37, 0x2e, + 0x37, 0x33, 0x30, 0x36, 0x33, 0x31, 0x2c, 0x32, + 0x32, 0x2e, 0x37, 0x35, 0x31, 0x39, 0x35, 0x37, + 0x20, 0x43, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x38, + 0x39, 0x31, 0x36, 0x35, 0x2c, 0x32, 0x32, 0x2e, + 0x39, 0x35, 0x38, 0x39, 0x35, 0x37, 0x20, 0x32, + 0x38, 0x2e, 0x32, 0x31, 0x32, 0x31, 0x35, 0x2c, + 0x32, 0x33, 0x2e, 0x34, 0x31, 0x37, 0x39, 0x34, + 0x32, 0x20, 0x32, 0x38, 0x2e, 0x30, 0x30, 0x35, + 0x31, 0x35, 0x2c, 0x32, 0x33, 0x2e, 0x37, 0x37, + 0x36, 0x34, 0x37, 0x36, 0x20, 0x43, 0x20, 0x32, + 0x37, 0x2e, 0x37, 0x39, 0x38, 0x31, 0x35, 0x2c, + 0x32, 0x34, 0x2e, 0x31, 0x33, 0x35, 0x30, 0x31, + 0x31, 0x20, 0x32, 0x37, 0x2e, 0x33, 0x33, 0x39, + 0x31, 0x36, 0x35, 0x2c, 0x32, 0x34, 0x2e, 0x32, + 0x35, 0x37, 0x39, 0x39, 0x35, 0x20, 0x32, 0x36, + 0x2e, 0x39, 0x38, 0x30, 0x36, 0x33, 0x31, 0x2c, + 0x32, 0x34, 0x2e, 0x30, 0x35, 0x30, 0x39, 0x39, + 0x35, 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, 0x36, + 0x32, 0x32, 0x30, 0x39, 0x37, 0x2c, 0x32, 0x33, + 0x2e, 0x38, 0x34, 0x33, 0x39, 0x39, 0x36, 0x20, + 0x32, 0x36, 0x2e, 0x34, 0x39, 0x39, 0x31, 0x31, + 0x31, 0x2c, 0x32, 0x33, 0x2e, 0x33, 0x38, 0x35, + 0x30, 0x31, 0x31, 0x20, 0x32, 0x36, 0x2e, 0x37, + 0x30, 0x36, 0x31, 0x31, 0x31, 0x2c, 0x32, 0x33, + 0x2e, 0x30, 0x32, 0x36, 0x34, 0x37, 0x36, 0x20, + 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, + 0x23, 0x38, 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, + 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, + 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, + 0x35, 0x36, 0x37, 0x35, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x37, 0x2e, 0x39, 0x39, + 0x34, 0x38, 0x35, 0x31, 0x38, 0x2c, 0x31, 0x32, + 0x2e, 0x32, 0x32, 0x33, 0x35, 0x32, 0x35, 0x20, + 0x43, 0x20, 0x38, 0x2e, 0x32, 0x30, 0x31, 0x38, + 0x35, 0x31, 0x38, 0x2c, 0x31, 0x31, 0x2e, 0x38, + 0x36, 0x34, 0x39, 0x39, 0x31, 0x20, 0x38, 0x2e, + 0x36, 0x36, 0x30, 0x38, 0x33, 0x37, 0x32, 0x2c, + 0x31, 0x31, 0x2e, 0x37, 0x34, 0x32, 0x30, 0x30, + 0x37, 0x20, 0x39, 0x2e, 0x30, 0x31, 0x39, 0x33, + 0x37, 0x30, 0x38, 0x2c, 0x31, 0x31, 0x2e, 0x39, + 0x34, 0x39, 0x30, 0x30, 0x36, 0x20, 0x43, 0x20, + 0x39, 0x2e, 0x33, 0x37, 0x37, 0x39, 0x30, 0x35, + 0x34, 0x2c, 0x31, 0x32, 0x2e, 0x31, 0x35, 0x36, + 0x30, 0x30, 0x36, 0x20, 0x39, 0x2e, 0x35, 0x30, + 0x30, 0x38, 0x38, 0x39, 0x39, 0x2c, 0x31, 0x32, + 0x2e, 0x36, 0x31, 0x34, 0x39, 0x39, 0x31, 0x20, + 0x39, 0x2e, 0x32, 0x39, 0x33, 0x38, 0x38, 0x39, + 0x39, 0x2c, 0x31, 0x32, 0x2e, 0x39, 0x37, 0x33, + 0x35, 0x32, 0x35, 0x20, 0x43, 0x20, 0x39, 0x2e, + 0x30, 0x38, 0x36, 0x38, 0x38, 0x39, 0x39, 0x2c, + 0x31, 0x33, 0x2e, 0x33, 0x33, 0x32, 0x30, 0x36, + 0x20, 0x38, 0x2e, 0x36, 0x32, 0x37, 0x39, 0x30, + 0x35, 0x34, 0x2c, 0x31, 0x33, 0x2e, 0x34, 0x35, + 0x35, 0x30, 0x34, 0x34, 0x20, 0x38, 0x2e, 0x32, + 0x36, 0x39, 0x33, 0x37, 0x30, 0x38, 0x2c, 0x31, + 0x33, 0x2e, 0x32, 0x34, 0x38, 0x30, 0x34, 0x34, + 0x20, 0x43, 0x20, 0x37, 0x2e, 0x39, 0x31, 0x30, + 0x38, 0x33, 0x37, 0x32, 0x2c, 0x31, 0x33, 0x2e, + 0x30, 0x34, 0x31, 0x30, 0x34, 0x35, 0x20, 0x37, + 0x2e, 0x37, 0x38, 0x37, 0x38, 0x35, 0x31, 0x38, + 0x2c, 0x31, 0x32, 0x2e, 0x35, 0x38, 0x32, 0x30, + 0x36, 0x20, 0x37, 0x2e, 0x39, 0x39, 0x34, 0x38, + 0x35, 0x31, 0x38, 0x2c, 0x31, 0x32, 0x2e, 0x32, + 0x32, 0x33, 0x35, 0x32, 0x35, 0x20, 0x7a, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x38, + 0x38, 0x38, 0x61, 0x38, 0x35, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x32, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, + 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, + 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x67, + 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x2f, 0x67, 0x3e, + 0x0a, 0x3c, 0x2f, 0x73, 0x76, 0x67, 0x3e, 0x0a, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, + 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x2d, 0x6d, 0x61, + 0x70, 0x2d, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x2d, 0x63, 0x75, 0x72, 0x72, 0x65, + 0x6e, 0x74, 0x2e, 0x70, 0x6e, 0x67, 0x00, 0x00, + 0x7b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, + 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52, + 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0a, + 0x08, 0x06, 0x00, 0x00, 0x00, 0x8d, 0x32, 0xcf, + 0xbd, 0x00, 0x00, 0x00, 0x01, 0x73, 0x52, 0x47, + 0x42, 0x00, 0xae, 0xce, 0x1c, 0xe9, 0x00, 0x00, + 0x00, 0x06, 0x62, 0x4b, 0x47, 0x44, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0xa0, 0xbd, 0xa7, 0x93, + 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, + 0x00, 0x00, 0x0b, 0x13, 0x00, 0x00, 0x0b, 0x13, + 0x01, 0x00, 0x9a, 0x9c, 0x18, 0x00, 0x00, 0x00, + 0x07, 0x74, 0x49, 0x4d, 0x45, 0x07, 0xd7, 0x09, + 0x1c, 0x02, 0x36, 0x11, 0x34, 0x18, 0x69, 0x88, + 0x00, 0x00, 0x00, 0xfb, 0x49, 0x44, 0x41, 0x54, + 0x18, 0xd3, 0x63, 0x60, 0x40, 0x03, 0x8a, 0x9e, + 0x1d, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x72, 0x5e, + 0x5d, 0x0c, 0x38, 0x81, 0xa0, 0x45, 0x39, 0x03, + 0x03, 0x03, 0x03, 0x43, 0xe7, 0xb2, 0x53, 0xff, + 0x19, 0x18, 0x18, 0x18, 0x24, 0x9d, 0x1b, 0x19, + 0xb5, 0x82, 0x7a, 0x59, 0x19, 0x18, 0x18, 0x18, + 0x18, 0x61, 0x8a, 0x94, 0x3d, 0x5a, 0x19, 0xee, + 0xee, 0xa8, 0x66, 0x68, 0x5d, 0x7a, 0xfa, 0xff, + 0x8b, 0x6f, 0x4c, 0x0c, 0xe2, 0x9c, 0xff, 0x18, + 0xf8, 0x44, 0xc5, 0x38, 0xf2, 0xdc, 0xdd, 0x99, + 0x18, 0x18, 0x6e, 0x7c, 0x67, 0x44, 0x36, 0xb1, + 0x68, 0xca, 0xde, 0xff, 0xdf, 0x98, 0x79, 0x18, + 0x58, 0x98, 0x19, 0x19, 0xfe, 0xff, 0x67, 0x60, + 0x10, 0xe4, 0xe7, 0x62, 0x68, 0x89, 0xd0, 0xe1, + 0x64, 0x60, 0x60, 0xf8, 0x01, 0x57, 0x18, 0x5d, + 0xb7, 0xf6, 0x3f, 0x13, 0xbf, 0x08, 0x03, 0x2b, + 0x0b, 0x13, 0x5c, 0xe3, 0x9f, 0xbf, 0xff, 0x19, + 0x18, 0xbf, 0xbc, 0x63, 0x58, 0x58, 0x17, 0xc0, + 0xc8, 0xc8, 0xc0, 0xc0, 0xc0, 0xe0, 0x5d, 0xb4, + 0xe4, 0x0f, 0x87, 0xb0, 0x18, 0x33, 0x0b, 0x33, + 0x13, 0x86, 0xbb, 0xff, 0xfc, 0xfd, 0xc7, 0xf0, + 0xf7, 0xe3, 0x5b, 0x84, 0x1b, 0xe3, 0xfb, 0xf7, + 0xff, 0x7c, 0xfb, 0xe1, 0x2b, 0x1b, 0xba, 0x42, + 0x61, 0x01, 0xee, 0xdf, 0x0b, 0x0b, 0x1d, 0xd9, + 0x58, 0x60, 0x02, 0x9f, 0xbe, 0x7e, 0x67, 0xfc, + 0xfa, 0xfd, 0x07, 0x86, 0x89, 0xac, 0x2c, 0x10, + 0xb3, 0xe0, 0x0a, 0x3f, 0x7c, 0xfa, 0xca, 0xf0, + 0xf9, 0xeb, 0x4f, 0x2c, 0x81, 0xf6, 0x1f, 0x45, + 0xa1, 0xcc, 0xad, 0x93, 0xa7, 0x8e, 0x30, 0x30, + 0x30, 0xb0, 0xc2, 0x24, 0x60, 0xe0, 0x39, 0x03, + 0xe3, 0x1f, 0x66, 0x36, 0x5e, 0x55, 0x00, 0xde, + 0x8b, 0x47, 0xfa, 0xec, 0x42, 0x8a, 0x36, 0x00, + 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, + 0x42, 0x60, 0x82, 0x00, 0x00, 0x28, 0x75, 0x75, + 0x61, 0x79, 0x29, 0x63, 0x6c, 0x6f, 0x63, 0x6b, + 0x2d, 0x66, 0x61, 0x63, 0x65, 0x2d, 0x6c, 0x61, + 0x72, 0x67, 0x65, 0x2e, 0x73, 0x76, 0x67, 0x00, + 0xb0, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65, + 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31, + 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f, + 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54, + 0x46, 0x2d, 0x38, 0x22, 0x20, 0x73, 0x74, 0x61, + 0x6e, 0x64, 0x61, 0x6c, 0x6f, 0x6e, 0x65, 0x3d, + 0x22, 0x6e, 0x6f, 0x22, 0x3f, 0x3e, 0x0a, 0x3c, + 0x21, 0x2d, 0x2d, 0x20, 0x43, 0x72, 0x65, 0x61, + 0x74, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, + 0x20, 0x49, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x20, 0x28, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x2e, 0x6f, + 0x72, 0x67, 0x2f, 0x29, 0x20, 0x2d, 0x2d, 0x3e, + 0x0a, 0x3c, 0x73, 0x76, 0x67, 0x0a, 0x20, 0x20, + 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, 0x64, + 0x63, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x70, 0x75, 0x72, 0x6c, 0x2e, 0x6f, + 0x72, 0x67, 0x2f, 0x64, 0x63, 0x2f, 0x65, 0x6c, + 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x31, + 0x2e, 0x31, 0x2f, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, 0x63, 0x63, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x65, 0x62, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x63, 0x63, 0x2f, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, + 0x72, 0x64, 0x66, 0x3d, 0x22, 0x68, 0x74, 0x74, + 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, + 0x77, 0x33, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x31, + 0x39, 0x39, 0x39, 0x2f, 0x30, 0x32, 0x2f, 0x32, + 0x32, 0x2d, 0x72, 0x64, 0x66, 0x2d, 0x73, 0x79, + 0x6e, 0x74, 0x61, 0x78, 0x2d, 0x6e, 0x73, 0x23, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, + 0x6e, 0x73, 0x3a, 0x73, 0x76, 0x67, 0x3d, 0x22, + 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, + 0x77, 0x77, 0x2e, 0x77, 0x33, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x32, 0x30, 0x30, 0x30, 0x2f, 0x73, + 0x76, 0x67, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, + 0x6d, 0x6c, 0x6e, 0x73, 0x3d, 0x22, 0x68, 0x74, + 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, + 0x2e, 0x77, 0x33, 0x2e, 0x6f, 0x72, 0x67, 0x2f, + 0x32, 0x30, 0x30, 0x30, 0x2f, 0x73, 0x76, 0x67, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, + 0x6e, 0x73, 0x3a, 0x78, 0x6c, 0x69, 0x6e, 0x6b, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x77, 0x33, 0x2e, + 0x6f, 0x72, 0x67, 0x2f, 0x31, 0x39, 0x39, 0x39, + 0x2f, 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, + 0x3a, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, + 0x2f, 0x2f, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x2e, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x66, 0x6f, 0x72, 0x67, 0x65, 0x2e, 0x6e, + 0x65, 0x74, 0x2f, 0x44, 0x54, 0x44, 0x2f, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x2d, + 0x30, 0x2e, 0x64, 0x74, 0x64, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x78, 0x6d, 0x6c, 0x6e, 0x73, 0x3a, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, + 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x2e, 0x6f, 0x72, + 0x67, 0x2f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, + 0x61, 0x63, 0x65, 0x73, 0x2f, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3d, + 0x22, 0x35, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3d, 0x22, + 0x35, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x73, 0x76, 0x67, 0x35, 0x34, + 0x31, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, + 0x22, 0x30, 0x2e, 0x33, 0x32, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x76, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x3d, 0x22, 0x30, 0x2e, 0x34, 0x33, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x76, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31, 0x2e, + 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x64, + 0x6f, 0x63, 0x62, 0x61, 0x73, 0x65, 0x3d, 0x22, + 0x2f, 0x68, 0x6f, 0x6d, 0x65, 0x2f, 0x67, 0x61, + 0x72, 0x72, 0x65, 0x74, 0x74, 0x2f, 0x44, 0x65, + 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x3a, 0x64, 0x6f, 0x63, 0x6e, 0x61, + 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x6c, 0x6f, 0x63, + 0x6b, 0x2d, 0x66, 0x61, 0x63, 0x65, 0x2d, 0x6c, + 0x61, 0x72, 0x67, 0x65, 0x2e, 0x73, 0x76, 0x67, + 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x64, 0x65, + 0x66, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x64, 0x65, 0x66, 0x73, + 0x35, 0x34, 0x31, 0x38, 0x22, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x31, 0x30, 0x36, 0x35, + 0x33, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x31, 0x30, 0x36, 0x35, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, + 0x22, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x66, 0x33, 0x66, 0x34, 0x66, 0x66, 0x3b, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x31, 0x30, 0x36, 0x35, 0x37, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, + 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, + 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x39, + 0x31, 0x39, 0x33, 0x61, 0x66, 0x3b, 0x73, 0x74, + 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x34, 0x32, 0x31, + 0x37, 0x34, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, + 0x6f, 0x70, 0x34, 0x32, 0x31, 0x37, 0x36, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, + 0x3d, 0x22, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, + 0x23, 0x61, 0x30, 0x61, 0x30, 0x61, 0x30, 0x3b, + 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x34, 0x32, 0x31, 0x37, 0x38, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, + 0x22, 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x3b, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x2f, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x32, 0x31, + 0x34, 0x35, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, + 0x6f, 0x70, 0x32, 0x31, 0x34, 0x37, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, + 0x22, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x64, 0x3b, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x32, 0x31, 0x34, 0x39, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, + 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, + 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x64, 0x39, + 0x64, 0x39, 0x64, 0x38, 0x3b, 0x73, 0x74, 0x6f, + 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x3b, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, 0x65, + 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x33, 0x37, 0x39, 0x33, + 0x35, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, + 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, 0x6c, + 0x6f, 0x72, 0x3a, 0x23, 0x39, 0x34, 0x39, 0x37, + 0x62, 0x33, 0x3b, 0x73, 0x74, 0x6f, 0x70, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x3b, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, 0x66, + 0x73, 0x65, 0x74, 0x3d, 0x22, 0x30, 0x2e, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, + 0x70, 0x33, 0x37, 0x39, 0x33, 0x37, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, + 0x72, 0x3a, 0x23, 0x34, 0x63, 0x34, 0x30, 0x35, + 0x39, 0x3b, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x3b, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x6f, 0x66, 0x66, 0x73, + 0x65, 0x74, 0x3d, 0x22, 0x31, 0x2e, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x33, 0x37, 0x39, 0x33, 0x39, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x33, 0x38, 0x31, + 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, + 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, 0x61, + 0x79, 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, + 0x6f, 0x70, 0x33, 0x38, 0x31, 0x38, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, + 0x22, 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x73, + 0x74, 0x6f, 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x73, 0x74, 0x6f, 0x70, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, + 0x33, 0x38, 0x32, 0x30, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, + 0x66, 0x66, 0x73, 0x65, 0x74, 0x3d, 0x22, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x73, 0x74, 0x6f, 0x70, 0x2d, 0x63, + 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x3b, 0x73, 0x74, 0x6f, + 0x70, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x30, 0x3b, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x72, 0x61, 0x64, 0x69, + 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, + 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, + 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, 0x61, + 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, 0x6b, + 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x23, + 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x33, 0x37, + 0x39, 0x33, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x35, + 0x39, 0x33, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, 0x73, + 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, 0x70, + 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, 0x65, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x63, 0x78, 0x3d, 0x22, 0x38, 0x2e, 0x37, + 0x34, 0x36, 0x38, 0x32, 0x35, 0x32, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, + 0x79, 0x3d, 0x22, 0x36, 0x2e, 0x38, 0x32, 0x38, + 0x33, 0x32, 0x33, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x78, 0x3d, + 0x22, 0x38, 0x2e, 0x37, 0x34, 0x36, 0x38, 0x32, + 0x35, 0x32, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x66, 0x79, 0x3d, 0x22, 0x36, + 0x2e, 0x38, 0x32, 0x38, 0x33, 0x32, 0x33, 0x34, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x72, 0x3d, 0x22, 0x32, 0x39, 0x2e, 0x38, + 0x38, 0x39, 0x37, 0x31, 0x35, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x72, + 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, + 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, + 0x6c, 0x77, 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, + 0x69, 0x6e, 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, + 0x3d, 0x22, 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, + 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x32, 0x31, 0x34, 0x35, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x35, 0x35, 0x39, 0x35, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, + 0x74, 0x73, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, + 0x53, 0x70, 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, + 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x63, 0x78, 0x3d, 0x22, 0x31, + 0x31, 0x2e, 0x39, 0x30, 0x31, 0x39, 0x39, 0x36, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x63, 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, + 0x30, 0x34, 0x35, 0x34, 0x34, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, + 0x78, 0x3d, 0x22, 0x31, 0x31, 0x2e, 0x39, 0x30, + 0x31, 0x39, 0x39, 0x36, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x79, 0x3d, + 0x22, 0x31, 0x30, 0x2e, 0x30, 0x34, 0x35, 0x34, + 0x34, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x72, 0x3d, 0x22, 0x32, 0x39, + 0x2e, 0x32, 0x39, 0x32, 0x37, 0x31, 0x35, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3d, + 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x68, 0x72, + 0x65, 0x66, 0x3d, 0x22, 0x23, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x34, 0x32, 0x31, 0x37, 0x34, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x35, 0x35, 0x39, 0x37, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x67, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x55, 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, 0x75, + 0x73, 0x65, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, + 0x4f, 0x6e, 0x55, 0x73, 0x65, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x31, + 0x3d, 0x22, 0x36, 0x2e, 0x33, 0x34, 0x32, 0x32, + 0x31, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x79, 0x31, 0x3d, 0x22, 0x37, + 0x2e, 0x37, 0x38, 0x39, 0x33, 0x33, 0x32, 0x34, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x78, 0x32, 0x3d, 0x22, 0x32, 0x32, 0x2e, + 0x32, 0x31, 0x38, 0x34, 0x32, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x79, + 0x32, 0x3d, 0x22, 0x32, 0x35, 0x2e, 0x38, 0x38, + 0x34, 0x32, 0x37, 0x34, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x72, 0x61, + 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, + 0x6c, 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, + 0x77, 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, + 0x6e, 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, + 0x22, 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x31, 0x30, 0x36, 0x35, 0x33, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x35, 0x35, 0x39, 0x39, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, + 0x74, 0x73, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, + 0x53, 0x70, 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, + 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x63, 0x78, 0x3d, 0x22, 0x31, + 0x31, 0x2e, 0x33, 0x32, 0x39, 0x32, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, + 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, 0x35, 0x38, + 0x33, 0x39, 0x37, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x66, 0x78, 0x3d, 0x22, + 0x31, 0x31, 0x2e, 0x33, 0x32, 0x39, 0x32, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x66, 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, 0x35, + 0x38, 0x33, 0x39, 0x37, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x3d, 0x22, + 0x31, 0x35, 0x2e, 0x35, 0x33, 0x32, 0x30, 0x35, + 0x39, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x72, 0x61, 0x64, 0x69, 0x61, + 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, + 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, + 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, + 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x23, 0x6c, + 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, + 0x64, 0x69, 0x65, 0x6e, 0x74, 0x32, 0x31, 0x34, + 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x72, 0x61, + 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x35, 0x36, 0x30, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x67, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, + 0x74, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, + 0x75, 0x73, 0x65, 0x72, 0x53, 0x70, 0x61, 0x63, + 0x65, 0x4f, 0x6e, 0x55, 0x73, 0x65, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, + 0x78, 0x3d, 0x22, 0x31, 0x31, 0x2e, 0x39, 0x30, + 0x31, 0x39, 0x39, 0x36, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x79, 0x3d, + 0x22, 0x31, 0x30, 0x2e, 0x30, 0x34, 0x35, 0x34, + 0x34, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x66, 0x78, 0x3d, 0x22, 0x31, + 0x31, 0x2e, 0x39, 0x30, 0x31, 0x39, 0x39, 0x36, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x66, 0x79, 0x3d, 0x22, 0x31, 0x30, 0x2e, + 0x30, 0x34, 0x35, 0x34, 0x34, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, + 0x3d, 0x22, 0x32, 0x39, 0x2e, 0x32, 0x39, 0x32, + 0x37, 0x31, 0x35, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x69, 0x6e, + 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, + 0x61, 0x70, 0x65, 0x3a, 0x63, 0x6f, 0x6c, 0x6c, + 0x65, 0x63, 0x74, 0x3d, 0x22, 0x61, 0x6c, 0x77, + 0x61, 0x79, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x78, 0x6c, 0x69, 0x6e, + 0x6b, 0x3a, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, + 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x34, + 0x32, 0x31, 0x37, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, + 0x36, 0x30, 0x33, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, + 0x73, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x72, 0x53, + 0x70, 0x61, 0x63, 0x65, 0x4f, 0x6e, 0x55, 0x73, + 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x78, 0x31, 0x3d, 0x22, 0x36, 0x2e, + 0x33, 0x34, 0x32, 0x32, 0x31, 0x36, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x79, + 0x31, 0x3d, 0x22, 0x37, 0x2e, 0x37, 0x38, 0x39, + 0x33, 0x33, 0x32, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x32, 0x3d, + 0x22, 0x32, 0x32, 0x2e, 0x32, 0x31, 0x38, 0x34, + 0x32, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x79, 0x32, 0x3d, 0x22, 0x32, + 0x35, 0x2e, 0x38, 0x38, 0x34, 0x32, 0x37, 0x34, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, + 0x3d, 0x22, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x78, 0x6c, 0x69, 0x6e, 0x6b, 0x3a, 0x68, + 0x72, 0x65, 0x66, 0x3d, 0x22, 0x23, 0x6c, 0x69, + 0x6e, 0x65, 0x61, 0x72, 0x47, 0x72, 0x61, 0x64, + 0x69, 0x65, 0x6e, 0x74, 0x33, 0x38, 0x31, 0x36, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x72, 0x61, 0x64, + 0x69, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x64, 0x69, + 0x65, 0x6e, 0x74, 0x35, 0x36, 0x30, 0x35, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x67, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x55, 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, 0x75, + 0x73, 0x65, 0x72, 0x53, 0x70, 0x61, 0x63, 0x65, + 0x4f, 0x6e, 0x55, 0x73, 0x65, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x78, + 0x3d, 0x22, 0x33, 0x31, 0x2e, 0x31, 0x31, 0x32, + 0x36, 0x39, 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x63, 0x79, 0x3d, 0x22, + 0x31, 0x39, 0x2e, 0x30, 0x30, 0x38, 0x36, 0x32, + 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x66, 0x78, 0x3d, 0x22, 0x33, 0x31, + 0x2e, 0x31, 0x31, 0x32, 0x36, 0x39, 0x38, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x66, 0x79, 0x3d, 0x22, 0x31, 0x39, 0x2e, 0x30, + 0x30, 0x38, 0x36, 0x32, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x3d, + 0x22, 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, + 0x37, 0x39, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x3c, 0x2f, 0x64, 0x65, 0x66, 0x73, 0x3e, + 0x0a, 0x20, 0x20, 0x3c, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x6e, 0x61, 0x6d, + 0x65, 0x64, 0x76, 0x69, 0x65, 0x77, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x62, 0x61, 0x73, 0x65, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x70, 0x61, 0x67, 0x65, 0x63, + 0x6f, 0x6c, 0x6f, 0x72, 0x3d, 0x22, 0x23, 0x66, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x62, 0x6f, 0x72, 0x64, + 0x65, 0x72, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3d, + 0x22, 0x23, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, + 0x6f, 0x72, 0x64, 0x65, 0x72, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3d, 0x22, 0x31, 0x2e, + 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x70, 0x61, 0x67, 0x65, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3d, 0x22, 0x30, 0x2e, + 0x30, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x70, 0x61, 0x67, 0x65, 0x73, 0x68, 0x61, + 0x64, 0x6f, 0x77, 0x3d, 0x22, 0x32, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x7a, 0x6f, + 0x6f, 0x6d, 0x3d, 0x22, 0x31, 0x30, 0x2e, 0x34, + 0x34, 0x36, 0x39, 0x38, 0x33, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, + 0x63, 0x61, 0x70, 0x65, 0x3a, 0x63, 0x78, 0x3d, + 0x22, 0x32, 0x34, 0x2e, 0x35, 0x30, 0x39, 0x32, + 0x30, 0x32, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x3a, 0x63, 0x79, 0x3d, 0x22, 0x32, 0x38, + 0x2e, 0x31, 0x36, 0x31, 0x35, 0x35, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x64, + 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2d, + 0x75, 0x6e, 0x69, 0x74, 0x73, 0x3d, 0x22, 0x70, + 0x78, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, + 0x2d, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x3d, 0x22, + 0x6c, 0x61, 0x79, 0x65, 0x72, 0x31, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x77, 0x69, + 0x6e, 0x64, 0x6f, 0x77, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3d, 0x22, 0x31, 0x36, 0x30, 0x30, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, + 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2d, 0x68, + 0x65, 0x69, 0x67, 0x68, 0x74, 0x3d, 0x22, 0x31, + 0x31, 0x35, 0x32, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x3a, 0x77, 0x69, 0x6e, 0x64, 0x6f, + 0x77, 0x2d, 0x78, 0x3d, 0x22, 0x30, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x6b, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x77, 0x69, + 0x6e, 0x64, 0x6f, 0x77, 0x2d, 0x79, 0x3d, 0x22, + 0x30, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x3c, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, + 0x61, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x74, 0x61, 0x64, + 0x61, 0x74, 0x61, 0x35, 0x34, 0x32, 0x31, 0x22, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x72, + 0x64, 0x66, 0x3a, 0x52, 0x44, 0x46, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, + 0x63, 0x3a, 0x57, 0x6f, 0x72, 0x6b, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x72, 0x64, 0x66, 0x3a, 0x61, 0x62, 0x6f, 0x75, + 0x74, 0x3d, 0x22, 0x22, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, + 0x63, 0x3a, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, + 0x3e, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x2f, 0x73, + 0x76, 0x67, 0x2b, 0x78, 0x6d, 0x6c, 0x3c, 0x2f, + 0x64, 0x63, 0x3a, 0x66, 0x6f, 0x72, 0x6d, 0x61, + 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x64, 0x63, 0x3a, 0x74, + 0x79, 0x70, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, + 0x64, 0x66, 0x3a, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x3d, 0x22, 0x68, 0x74, 0x74, + 0x70, 0x3a, 0x2f, 0x2f, 0x70, 0x75, 0x72, 0x6c, + 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x64, 0x63, 0x2f, + 0x64, 0x63, 0x6d, 0x69, 0x74, 0x79, 0x70, 0x65, + 0x2f, 0x53, 0x74, 0x69, 0x6c, 0x6c, 0x49, 0x6d, + 0x61, 0x67, 0x65, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, + 0x63, 0x63, 0x3a, 0x57, 0x6f, 0x72, 0x6b, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x72, + 0x64, 0x66, 0x3a, 0x52, 0x44, 0x46, 0x3e, 0x0a, + 0x20, 0x20, 0x3c, 0x2f, 0x6d, 0x65, 0x74, 0x61, + 0x64, 0x61, 0x74, 0x61, 0x3e, 0x0a, 0x20, 0x20, + 0x3c, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, + 0x3a, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3d, 0x22, + 0x4c, 0x61, 0x79, 0x65, 0x72, 0x20, 0x31, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, + 0x6b, 0x73, 0x63, 0x61, 0x70, 0x65, 0x3a, 0x67, + 0x72, 0x6f, 0x75, 0x70, 0x6d, 0x6f, 0x64, 0x65, + 0x3d, 0x22, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x31, + 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, + 0x20, 0x33, 0x39, 0x2e, 0x37, 0x37, 0x34, 0x37, + 0x35, 0x35, 0x20, 0x31, 0x39, 0x2e, 0x30, 0x30, + 0x38, 0x36, 0x32, 0x31, 0x20, 0x41, 0x20, 0x38, + 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, 0x37, 0x39, + 0x20, 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, + 0x37, 0x39, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, + 0x20, 0x20, 0x32, 0x32, 0x2e, 0x34, 0x35, 0x30, + 0x36, 0x34, 0x2c, 0x31, 0x39, 0x2e, 0x30, 0x30, + 0x38, 0x36, 0x32, 0x31, 0x20, 0x41, 0x20, 0x38, + 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, 0x37, 0x39, + 0x20, 0x38, 0x2e, 0x36, 0x36, 0x32, 0x30, 0x35, + 0x37, 0x39, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, + 0x20, 0x20, 0x33, 0x39, 0x2e, 0x37, 0x37, 0x34, + 0x37, 0x35, 0x35, 0x20, 0x31, 0x39, 0x2e, 0x30, + 0x30, 0x38, 0x36, 0x32, 0x31, 0x20, 0x7a, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x38, 0x2e, 0x36, + 0x36, 0x32, 0x30, 0x35, 0x37, 0x39, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x72, 0x78, 0x3d, 0x22, 0x38, 0x2e, 0x36, 0x36, + 0x32, 0x30, 0x35, 0x37, 0x39, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, + 0x79, 0x3d, 0x22, 0x31, 0x39, 0x2e, 0x30, 0x30, + 0x38, 0x36, 0x32, 0x31, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, + 0x3d, 0x22, 0x33, 0x31, 0x2e, 0x31, 0x31, 0x32, + 0x36, 0x39, 0x38, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x70, 0x61, 0x74, 0x68, 0x34, 0x34, 0x31, 0x35, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, + 0x23, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x75, 0x72, 0x6c, + 0x28, 0x23, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x35, 0x36, 0x30, 0x35, 0x29, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, + 0x76, 0x65, 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, + 0x31, 0x70, 0x78, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, + 0x61, 0x70, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, + 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, 0x6d, + 0x61, 0x72, 0x6b, 0x65, 0x72, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x6d, 0x61, 0x72, 0x6b, 0x65, + 0x72, 0x2d, 0x73, 0x74, 0x61, 0x72, 0x74, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x6d, 0x61, 0x72, + 0x6b, 0x65, 0x72, 0x2d, 0x6d, 0x69, 0x64, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x6d, 0x61, 0x72, + 0x6b, 0x65, 0x72, 0x2d, 0x65, 0x6e, 0x64, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, + 0x72, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x64, 0x61, 0x73, 0x68, 0x61, 0x72, 0x72, 0x61, + 0x79, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x64, 0x61, + 0x73, 0x68, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, + 0x3a, 0x30, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x3b, 0x76, 0x69, 0x73, 0x69, + 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x3a, 0x76, + 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x3b, 0x64, + 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x69, + 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x3b, 0x6f, 0x76, + 0x65, 0x72, 0x66, 0x6c, 0x6f, 0x77, 0x3a, 0x76, + 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x61, 0x72, + 0x63, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, + 0x6f, 0x72, 0x6d, 0x3d, 0x22, 0x6d, 0x61, 0x74, + 0x72, 0x69, 0x78, 0x28, 0x32, 0x2e, 0x33, 0x30, + 0x38, 0x39, 0x32, 0x2c, 0x30, 0x2c, 0x30, 0x2c, + 0x31, 0x2e, 0x30, 0x39, 0x38, 0x36, 0x33, 0x31, + 0x2c, 0x2d, 0x34, 0x36, 0x2e, 0x38, 0x34, 0x34, + 0x38, 0x33, 0x2c, 0x31, 0x39, 0x2e, 0x36, 0x30, + 0x30, 0x31, 0x35, 0x29, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, + 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, + 0x6f, 0x72, 0x6d, 0x3d, 0x22, 0x6d, 0x61, 0x74, + 0x72, 0x69, 0x78, 0x28, 0x31, 0x2e, 0x35, 0x34, + 0x38, 0x34, 0x32, 0x31, 0x2c, 0x30, 0x2c, 0x30, + 0x2c, 0x31, 0x2e, 0x35, 0x34, 0x38, 0x34, 0x32, + 0x31, 0x2c, 0x2d, 0x30, 0x2e, 0x31, 0x36, 0x31, + 0x38, 0x33, 0x34, 0x2c, 0x2d, 0x31, 0x2e, 0x31, + 0x38, 0x34, 0x38, 0x39, 0x39, 0x29, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, + 0x36, 0x30, 0x37, 0x31, 0x34, 0x20, 0x31, 0x36, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, + 0x41, 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x20, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, + 0x31, 0x20, 0x31, 0x20, 0x20, 0x31, 0x2e, 0x33, + 0x33, 0x39, 0x32, 0x38, 0x35, 0x39, 0x2c, 0x31, + 0x36, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, + 0x20, 0x41, 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x20, 0x31, 0x34, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, + 0x20, 0x31, 0x20, 0x31, 0x20, 0x20, 0x33, 0x31, + 0x2e, 0x31, 0x36, 0x30, 0x37, 0x31, 0x34, 0x20, + 0x31, 0x36, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x35, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x72, 0x79, 0x3d, + 0x22, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, + 0x6f, 0x64, 0x69, 0x3a, 0x72, 0x78, 0x3d, 0x22, + 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x34, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x3a, 0x63, 0x79, 0x3d, 0x22, 0x31, + 0x36, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x63, 0x78, 0x3d, 0x22, 0x31, 0x36, + 0x2e, 0x32, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x70, 0x61, 0x74, 0x68, 0x34, 0x34, 0x31, 0x37, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, + 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x75, 0x72, 0x6c, + 0x28, 0x23, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x35, 0x35, 0x39, 0x33, 0x29, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, + 0x76, 0x65, 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x23, 0x36, + 0x30, 0x35, 0x37, 0x37, 0x33, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x31, 0x2e, 0x31, 0x37, 0x37, + 0x38, 0x39, 0x31, 0x32, 0x35, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, + 0x65, 0x63, 0x61, 0x70, 0x3a, 0x72, 0x6f, 0x75, + 0x6e, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, + 0x69, 0x6e, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, + 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x3a, 0x74, 0x79, 0x70, 0x65, 0x3d, + 0x22, 0x61, 0x72, 0x63, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, + 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, + 0x6f, 0x72, 0x6d, 0x3d, 0x22, 0x6d, 0x61, 0x74, + 0x72, 0x69, 0x78, 0x28, 0x31, 0x2e, 0x32, 0x39, + 0x34, 0x32, 0x38, 0x37, 0x2c, 0x30, 0x2c, 0x30, + 0x2c, 0x31, 0x2e, 0x32, 0x39, 0x34, 0x32, 0x38, + 0x37, 0x2c, 0x33, 0x2e, 0x38, 0x36, 0x35, 0x34, + 0x34, 0x36, 0x2c, 0x33, 0x2e, 0x30, 0x31, 0x30, + 0x33, 0x33, 0x34, 0x29, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, + 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, + 0x37, 0x31, 0x34, 0x20, 0x31, 0x36, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, + 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x34, 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, + 0x31, 0x20, 0x20, 0x31, 0x2e, 0x33, 0x33, 0x39, + 0x32, 0x38, 0x35, 0x39, 0x2c, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, 0x41, + 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x34, 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, 0x31, + 0x20, 0x31, 0x20, 0x20, 0x33, 0x31, 0x2e, 0x31, + 0x36, 0x30, 0x37, 0x31, 0x34, 0x20, 0x31, 0x36, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, + 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x31, + 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x72, 0x78, 0x3d, 0x22, 0x31, 0x34, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x63, 0x79, 0x3d, 0x22, 0x31, 0x36, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x63, 0x78, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x32, + 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, + 0x74, 0x68, 0x34, 0x34, 0x31, 0x39, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, + 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x35, + 0x39, 0x35, 0x29, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, 0x65, + 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x75, 0x72, 0x6c, 0x28, + 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, + 0x35, 0x39, 0x37, 0x29, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x31, 0x2e, 0x31, 0x39, 0x39, 0x35, + 0x34, 0x35, 0x30, 0x33, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, + 0x63, 0x61, 0x70, 0x3a, 0x72, 0x6f, 0x75, 0x6e, + 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, + 0x6e, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, + 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, + 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, 0x6f, + 0x66, 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, + 0x61, 0x72, 0x63, 0x22, 0x20, 0x2f, 0x3e, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, + 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, + 0x61, 0x72, 0x63, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, + 0x65, 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x75, 0x72, 0x6c, + 0x28, 0x23, 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, + 0x47, 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, + 0x35, 0x35, 0x39, 0x39, 0x29, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x31, 0x2e, 0x32, 0x34, 0x31, + 0x39, 0x38, 0x34, 0x39, 0x36, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, + 0x65, 0x63, 0x61, 0x70, 0x3a, 0x72, 0x6f, 0x75, + 0x6e, 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, + 0x69, 0x6e, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, + 0x69, 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, + 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x61, + 0x74, 0x68, 0x34, 0x34, 0x32, 0x31, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x63, 0x78, 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x32, + 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, + 0x64, 0x69, 0x3a, 0x63, 0x79, 0x3d, 0x22, 0x31, + 0x36, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x72, 0x78, 0x3d, 0x22, 0x31, 0x34, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x72, 0x79, 0x3d, 0x22, 0x31, 0x34, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x33, 0x31, 0x2e, 0x31, + 0x36, 0x30, 0x37, 0x31, 0x34, 0x20, 0x31, 0x36, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, 0x20, + 0x41, 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x34, 0x20, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, 0x20, + 0x31, 0x20, 0x31, 0x20, 0x20, 0x31, 0x2e, 0x33, + 0x33, 0x39, 0x32, 0x38, 0x35, 0x39, 0x2c, 0x31, + 0x36, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x35, + 0x20, 0x41, 0x20, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x20, 0x31, 0x34, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x20, 0x30, + 0x20, 0x31, 0x20, 0x31, 0x20, 0x20, 0x33, 0x31, + 0x2e, 0x31, 0x36, 0x30, 0x37, 0x31, 0x34, 0x20, + 0x31, 0x36, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x35, 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x61, 0x6e, + 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x3d, 0x22, 0x6d, + 0x61, 0x74, 0x72, 0x69, 0x78, 0x28, 0x31, 0x2e, + 0x34, 0x36, 0x38, 0x35, 0x31, 0x34, 0x2c, 0x30, + 0x2c, 0x30, 0x2c, 0x31, 0x2e, 0x34, 0x36, 0x38, + 0x35, 0x31, 0x34, 0x2c, 0x31, 0x2e, 0x31, 0x33, + 0x36, 0x35, 0x39, 0x37, 0x2c, 0x37, 0x2e, 0x30, + 0x37, 0x39, 0x35, 0x33, 0x33, 0x65, 0x2d, 0x32, + 0x29, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, + 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, + 0x3d, 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, + 0x28, 0x31, 0x2e, 0x32, 0x39, 0x34, 0x32, 0x38, + 0x37, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x31, 0x2e, + 0x32, 0x39, 0x34, 0x32, 0x38, 0x37, 0x2c, 0x33, + 0x2e, 0x38, 0x36, 0x35, 0x34, 0x34, 0x36, 0x2c, + 0x33, 0x2e, 0x30, 0x31, 0x30, 0x33, 0x33, 0x34, + 0x29, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x33, + 0x31, 0x2e, 0x31, 0x36, 0x30, 0x37, 0x31, 0x34, + 0x20, 0x31, 0x36, 0x2e, 0x39, 0x31, 0x30, 0x37, + 0x31, 0x35, 0x20, 0x41, 0x20, 0x31, 0x34, 0x2e, + 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x20, 0x31, + 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, + 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, 0x20, 0x20, + 0x31, 0x2e, 0x33, 0x33, 0x39, 0x32, 0x38, 0x35, + 0x39, 0x2c, 0x31, 0x36, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x35, 0x20, 0x41, 0x20, 0x31, 0x34, + 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, 0x34, 0x20, + 0x31, 0x34, 0x2e, 0x39, 0x31, 0x30, 0x37, 0x31, + 0x34, 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, 0x20, + 0x20, 0x33, 0x31, 0x2e, 0x31, 0x36, 0x30, 0x37, + 0x31, 0x34, 0x20, 0x31, 0x36, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x35, 0x20, 0x7a, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x72, 0x79, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, + 0x31, 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, + 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x72, + 0x78, 0x3d, 0x22, 0x31, 0x34, 0x2e, 0x39, 0x31, + 0x30, 0x37, 0x31, 0x34, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, + 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x79, + 0x3d, 0x22, 0x31, 0x36, 0x2e, 0x39, 0x31, 0x30, + 0x37, 0x31, 0x35, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, 0x3d, + 0x22, 0x31, 0x36, 0x2e, 0x32, 0x35, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x34, + 0x34, 0x32, 0x39, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x30, 0x2e, 0x35, 0x33, 0x39, + 0x32, 0x31, 0x35, 0x36, 0x39, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x75, 0x72, 0x6c, 0x28, 0x23, + 0x72, 0x61, 0x64, 0x69, 0x61, 0x6c, 0x47, 0x72, + 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, 0x36, + 0x30, 0x31, 0x29, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3a, 0x31, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x72, 0x75, 0x6c, 0x65, 0x3a, 0x65, 0x76, 0x65, + 0x6e, 0x6f, 0x64, 0x64, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x75, 0x72, 0x6c, 0x28, + 0x23, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x72, 0x47, + 0x72, 0x61, 0x64, 0x69, 0x65, 0x6e, 0x74, 0x35, + 0x36, 0x30, 0x33, 0x29, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x31, 0x2e, 0x31, 0x39, 0x39, 0x35, + 0x34, 0x35, 0x30, 0x33, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, + 0x63, 0x61, 0x70, 0x3a, 0x72, 0x6f, 0x75, 0x6e, + 0x64, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, + 0x6e, 0x3a, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6d, + 0x69, 0x74, 0x65, 0x72, 0x6c, 0x69, 0x6d, 0x69, + 0x74, 0x3a, 0x34, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x64, 0x61, 0x73, 0x68, 0x6f, + 0x66, 0x66, 0x73, 0x65, 0x74, 0x3a, 0x30, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, + 0x3a, 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, + 0x3a, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x61, + 0x72, 0x63, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x67, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, + 0x22, 0x67, 0x34, 0x37, 0x36, 0x30, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, + 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, + 0x3d, 0x22, 0x6d, 0x61, 0x74, 0x72, 0x69, 0x78, + 0x28, 0x30, 0x2e, 0x39, 0x36, 0x36, 0x38, 0x39, + 0x35, 0x2c, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x2e, + 0x39, 0x36, 0x36, 0x38, 0x39, 0x35, 0x2c, 0x30, + 0x2e, 0x38, 0x32, 0x37, 0x36, 0x33, 0x32, 0x2c, + 0x30, 0x2e, 0x38, 0x32, 0x37, 0x36, 0x33, 0x31, + 0x29, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x74, 0x65, 0x78, + 0x74, 0x34, 0x34, 0x33, 0x33, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x32, 0x33, 0x2e, + 0x33, 0x39, 0x35, 0x31, 0x36, 0x32, 0x2c, 0x39, + 0x2e, 0x30, 0x36, 0x36, 0x38, 0x31, 0x34, 0x33, + 0x20, 0x4c, 0x20, 0x32, 0x33, 0x2e, 0x33, 0x39, + 0x35, 0x31, 0x36, 0x32, 0x2c, 0x31, 0x32, 0x2e, + 0x30, 0x34, 0x33, 0x36, 0x36, 0x32, 0x20, 0x4c, + 0x20, 0x32, 0x33, 0x2e, 0x39, 0x31, 0x33, 0x38, + 0x39, 0x39, 0x2c, 0x31, 0x32, 0x2e, 0x30, 0x34, + 0x33, 0x36, 0x36, 0x32, 0x20, 0x4c, 0x20, 0x32, + 0x33, 0x2e, 0x39, 0x31, 0x33, 0x38, 0x39, 0x39, + 0x2c, 0x37, 0x2e, 0x38, 0x36, 0x34, 0x32, 0x38, + 0x35, 0x39, 0x20, 0x4c, 0x20, 0x32, 0x33, 0x2e, + 0x35, 0x37, 0x32, 0x30, 0x30, 0x34, 0x2c, 0x37, + 0x2e, 0x38, 0x36, 0x34, 0x32, 0x38, 0x35, 0x39, + 0x20, 0x43, 0x20, 0x32, 0x33, 0x2e, 0x33, 0x38, + 0x39, 0x32, 0x36, 0x38, 0x2c, 0x38, 0x2e, 0x35, + 0x30, 0x36, 0x38, 0x31, 0x32, 0x37, 0x20, 0x32, + 0x33, 0x2e, 0x32, 0x37, 0x31, 0x33, 0x37, 0x32, + 0x2c, 0x38, 0x2e, 0x35, 0x39, 0x35, 0x32, 0x33, + 0x34, 0x36, 0x20, 0x32, 0x32, 0x2e, 0x34, 0x36, + 0x39, 0x36, 0x38, 0x37, 0x2c, 0x38, 0x2e, 0x36, + 0x39, 0x35, 0x34, 0x34, 0x35, 0x32, 0x20, 0x4c, + 0x20, 0x32, 0x32, 0x2e, 0x34, 0x36, 0x39, 0x36, + 0x38, 0x37, 0x2c, 0x39, 0x2e, 0x30, 0x36, 0x36, + 0x38, 0x31, 0x34, 0x33, 0x20, 0x4c, 0x20, 0x32, + 0x33, 0x2e, 0x33, 0x39, 0x35, 0x31, 0x36, 0x32, + 0x2c, 0x39, 0x2e, 0x30, 0x36, 0x36, 0x38, 0x31, + 0x34, 0x33, 0x20, 0x4d, 0x20, 0x32, 0x37, 0x2e, + 0x35, 0x30, 0x30, 0x38, 0x33, 0x39, 0x2c, 0x31, + 0x31, 0x2e, 0x35, 0x33, 0x30, 0x38, 0x31, 0x39, + 0x20, 0x4c, 0x20, 0x32, 0x35, 0x2e, 0x33, 0x30, + 0x32, 0x30, 0x39, 0x39, 0x2c, 0x31, 0x31, 0x2e, + 0x35, 0x33, 0x30, 0x38, 0x31, 0x39, 0x20, 0x43, + 0x20, 0x32, 0x35, 0x2e, 0x33, 0x35, 0x35, 0x31, + 0x35, 0x31, 0x2c, 0x31, 0x31, 0x2e, 0x31, 0x38, + 0x38, 0x39, 0x32, 0x34, 0x20, 0x32, 0x35, 0x2e, + 0x35, 0x34, 0x33, 0x37, 0x38, 0x35, 0x2c, 0x31, + 0x30, 0x2e, 0x39, 0x37, 0x30, 0x38, 0x31, 0x37, + 0x20, 0x32, 0x36, 0x2e, 0x30, 0x35, 0x36, 0x36, + 0x32, 0x37, 0x2c, 0x31, 0x30, 0x2e, 0x36, 0x37, + 0x30, 0x31, 0x38, 0x36, 0x20, 0x4c, 0x20, 0x32, + 0x36, 0x2e, 0x36, 0x34, 0x36, 0x31, 0x30, 0x32, + 0x2c, 0x31, 0x30, 0x2e, 0x33, 0x35, 0x31, 0x38, + 0x36, 0x39, 0x20, 0x43, 0x20, 0x32, 0x37, 0x2e, + 0x32, 0x32, 0x39, 0x36, 0x38, 0x31, 0x2c, 0x31, + 0x30, 0x2e, 0x30, 0x33, 0x33, 0x35, 0x35, 0x33, + 0x20, 0x32, 0x37, 0x2e, 0x35, 0x33, 0x30, 0x33, + 0x31, 0x33, 0x2c, 0x39, 0x2e, 0x36, 0x30, 0x33, + 0x32, 0x33, 0x35, 0x38, 0x20, 0x32, 0x37, 0x2e, + 0x35, 0x33, 0x30, 0x33, 0x31, 0x33, 0x2c, 0x39, + 0x2e, 0x30, 0x39, 0x30, 0x33, 0x39, 0x33, 0x33, + 0x20, 0x43, 0x20, 0x32, 0x37, 0x2e, 0x35, 0x33, + 0x30, 0x33, 0x31, 0x33, 0x2c, 0x38, 0x2e, 0x37, + 0x34, 0x32, 0x36, 0x30, 0x33, 0x35, 0x20, 0x32, + 0x37, 0x2e, 0x33, 0x38, 0x38, 0x38, 0x34, 0x2c, + 0x38, 0x2e, 0x34, 0x31, 0x38, 0x33, 0x39, 0x31, + 0x39, 0x20, 0x32, 0x37, 0x2e, 0x31, 0x34, 0x31, + 0x32, 0x36, 0x31, 0x2c, 0x38, 0x2e, 0x31, 0x39, + 0x34, 0x33, 0x39, 0x31, 0x37, 0x20, 0x43, 0x20, + 0x32, 0x36, 0x2e, 0x38, 0x39, 0x33, 0x36, 0x38, + 0x31, 0x2c, 0x37, 0x2e, 0x39, 0x37, 0x30, 0x33, + 0x39, 0x31, 0x35, 0x20, 0x32, 0x36, 0x2e, 0x35, + 0x38, 0x37, 0x31, 0x35, 0x33, 0x2c, 0x37, 0x2e, + 0x38, 0x36, 0x34, 0x32, 0x38, 0x35, 0x39, 0x20, + 0x32, 0x36, 0x2e, 0x31, 0x39, 0x32, 0x32, 0x30, + 0x36, 0x2c, 0x37, 0x2e, 0x38, 0x36, 0x34, 0x32, + 0x38, 0x35, 0x39, 0x20, 0x43, 0x20, 0x32, 0x35, + 0x2e, 0x36, 0x36, 0x31, 0x36, 0x37, 0x39, 0x2c, + 0x37, 0x2e, 0x38, 0x36, 0x34, 0x32, 0x38, 0x35, + 0x39, 0x20, 0x32, 0x35, 0x2e, 0x32, 0x36, 0x36, + 0x37, 0x33, 0x31, 0x2c, 0x38, 0x2e, 0x30, 0x35, + 0x32, 0x39, 0x31, 0x38, 0x31, 0x20, 0x32, 0x35, + 0x2e, 0x30, 0x33, 0x36, 0x38, 0x33, 0x36, 0x2c, + 0x38, 0x2e, 0x34, 0x30, 0x36, 0x36, 0x30, 0x32, + 0x36, 0x20, 0x43, 0x20, 0x32, 0x34, 0x2e, 0x38, + 0x38, 0x39, 0x34, 0x36, 0x36, 0x2c, 0x38, 0x2e, + 0x36, 0x33, 0x30, 0x36, 0x30, 0x32, 0x38, 0x20, + 0x32, 0x34, 0x2e, 0x38, 0x32, 0x34, 0x36, 0x32, + 0x34, 0x2c, 0x38, 0x2e, 0x38, 0x38, 0x39, 0x39, + 0x37, 0x32, 0x33, 0x20, 0x32, 0x34, 0x2e, 0x38, + 0x31, 0x32, 0x38, 0x33, 0x35, 0x2c, 0x39, 0x2e, + 0x33, 0x31, 0x34, 0x33, 0x39, 0x33, 0x37, 0x20, + 0x4c, 0x20, 0x32, 0x35, 0x2e, 0x33, 0x33, 0x31, + 0x35, 0x37, 0x33, 0x2c, 0x39, 0x2e, 0x33, 0x31, + 0x34, 0x33, 0x39, 0x33, 0x37, 0x20, 0x43, 0x20, + 0x32, 0x35, 0x2e, 0x33, 0x34, 0x39, 0x32, 0x35, + 0x37, 0x2c, 0x39, 0x2e, 0x30, 0x33, 0x31, 0x34, + 0x34, 0x36, 0x31, 0x20, 0x32, 0x35, 0x2e, 0x33, + 0x38, 0x34, 0x36, 0x32, 0x35, 0x2c, 0x38, 0x2e, + 0x38, 0x36, 0x30, 0x34, 0x39, 0x38, 0x20, 0x32, + 0x35, 0x2e, 0x34, 0x35, 0x35, 0x33, 0x36, 0x32, + 0x2c, 0x38, 0x2e, 0x37, 0x32, 0x34, 0x39, 0x31, + 0x39, 0x20, 0x43, 0x20, 0x32, 0x35, 0x2e, 0x35, + 0x39, 0x30, 0x39, 0x34, 0x31, 0x2c, 0x38, 0x2e, + 0x34, 0x37, 0x31, 0x34, 0x34, 0x35, 0x31, 0x20, + 0x32, 0x35, 0x2e, 0x38, 0x36, 0x32, 0x31, 0x2c, + 0x38, 0x2e, 0x33, 0x31, 0x38, 0x31, 0x38, 0x31, + 0x34, 0x20, 0x32, 0x36, 0x2e, 0x31, 0x37, 0x34, + 0x35, 0x32, 0x31, 0x2c, 0x38, 0x2e, 0x33, 0x31, + 0x38, 0x31, 0x38, 0x31, 0x34, 0x20, 0x43, 0x20, + 0x32, 0x36, 0x2e, 0x36, 0x34, 0x36, 0x31, 0x30, + 0x31, 0x2c, 0x38, 0x2e, 0x33, 0x31, 0x38, 0x31, + 0x38, 0x31, 0x34, 0x20, 0x32, 0x36, 0x2e, 0x39, + 0x39, 0x39, 0x37, 0x38, 0x36, 0x2c, 0x38, 0x2e, + 0x36, 0x35, 0x34, 0x31, 0x38, 0x32, 0x34, 0x20, + 0x32, 0x36, 0x2e, 0x39, 0x39, 0x39, 0x37, 0x38, + 0x36, 0x2c, 0x39, 0x2e, 0x31, 0x30, 0x32, 0x31, + 0x38, 0x32, 0x38, 0x20, 0x43, 0x20, 0x32, 0x36, + 0x2e, 0x39, 0x39, 0x39, 0x37, 0x38, 0x36, 0x2c, + 0x39, 0x2e, 0x34, 0x33, 0x32, 0x32, 0x38, 0x38, + 0x33, 0x20, 0x32, 0x36, 0x2e, 0x38, 0x30, 0x35, + 0x32, 0x35, 0x39, 0x2c, 0x39, 0x2e, 0x37, 0x31, + 0x35, 0x32, 0x33, 0x36, 0x37, 0x20, 0x32, 0x36, + 0x2e, 0x34, 0x33, 0x33, 0x38, 0x39, 0x2c, 0x39, + 0x2e, 0x39, 0x32, 0x37, 0x34, 0x34, 0x37, 0x20, + 0x4c, 0x20, 0x32, 0x35, 0x2e, 0x38, 0x39, 0x31, + 0x35, 0x37, 0x33, 0x2c, 0x31, 0x30, 0x2e, 0x32, + 0x33, 0x33, 0x39, 0x37, 0x34, 0x20, 0x43, 0x20, + 0x32, 0x35, 0x2e, 0x30, 0x31, 0x39, 0x31, 0x35, + 0x32, 0x2c, 0x31, 0x30, 0x2e, 0x37, 0x32, 0x39, + 0x31, 0x33, 0x33, 0x20, 0x32, 0x34, 0x2e, 0x37, + 0x36, 0x35, 0x36, 0x37, 0x36, 0x2c, 0x31, 0x31, + 0x2e, 0x31, 0x32, 0x34, 0x30, 0x38, 0x32, 0x20, + 0x32, 0x34, 0x2e, 0x37, 0x31, 0x38, 0x35, 0x31, + 0x39, 0x2c, 0x31, 0x32, 0x2e, 0x30, 0x34, 0x33, + 0x36, 0x36, 0x32, 0x20, 0x4c, 0x20, 0x32, 0x37, + 0x2e, 0x35, 0x30, 0x30, 0x38, 0x33, 0x39, 0x2c, + 0x31, 0x32, 0x2e, 0x30, 0x34, 0x33, 0x36, 0x36, + 0x32, 0x20, 0x4c, 0x20, 0x32, 0x37, 0x2e, 0x35, + 0x30, 0x30, 0x38, 0x33, 0x39, 0x2c, 0x31, 0x31, + 0x2e, 0x35, 0x33, 0x30, 0x38, 0x31, 0x39, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x69, + 0x7a, 0x65, 0x3a, 0x35, 0x2e, 0x38, 0x39, 0x34, + 0x37, 0x34, 0x37, 0x32, 0x36, 0x70, 0x78, 0x3b, + 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3a, 0x6e, 0x6f, 0x72, 0x6d, 0x61, + 0x6c, 0x3b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x77, + 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x6e, 0x6f, + 0x72, 0x6d, 0x61, 0x6c, 0x3b, 0x74, 0x65, 0x78, + 0x74, 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x3a, + 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x74, + 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6e, 0x63, 0x68, + 0x6f, 0x72, 0x3a, 0x6d, 0x69, 0x64, 0x64, 0x6c, + 0x65, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, + 0x35, 0x35, 0x35, 0x37, 0x35, 0x33, 0x3b, 0x66, + 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, + 0x70, 0x78, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, + 0x70, 0x3a, 0x62, 0x75, 0x74, 0x74, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, + 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, 0x6d, + 0x69, 0x74, 0x65, 0x72, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x64, 0x69, + 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x69, 0x6e, + 0x6c, 0x69, 0x6e, 0x65, 0x3b, 0x66, 0x6f, 0x6e, + 0x74, 0x2d, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, + 0x3a, 0x4e, 0x69, 0x6d, 0x62, 0x75, 0x73, 0x20, + 0x53, 0x61, 0x6e, 0x73, 0x20, 0x4c, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x74, 0x65, 0x78, 0x74, + 0x34, 0x34, 0x33, 0x37, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x31, 0x36, 0x2e, 0x32, + 0x31, 0x32, 0x30, 0x31, 0x31, 0x2c, 0x31, 0x31, + 0x2e, 0x30, 0x30, 0x37, 0x33, 0x32, 0x36, 0x20, + 0x4c, 0x20, 0x31, 0x36, 0x2e, 0x32, 0x31, 0x32, + 0x30, 0x31, 0x31, 0x2c, 0x31, 0x33, 0x2e, 0x39, + 0x38, 0x34, 0x31, 0x37, 0x33, 0x20, 0x4c, 0x20, + 0x31, 0x36, 0x2e, 0x37, 0x33, 0x30, 0x37, 0x34, + 0x39, 0x2c, 0x31, 0x33, 0x2e, 0x39, 0x38, 0x34, + 0x31, 0x37, 0x33, 0x20, 0x4c, 0x20, 0x31, 0x36, + 0x2e, 0x37, 0x33, 0x30, 0x37, 0x34, 0x39, 0x2c, + 0x39, 0x2e, 0x38, 0x30, 0x34, 0x37, 0x39, 0x37, + 0x36, 0x20, 0x4c, 0x20, 0x31, 0x36, 0x2e, 0x33, + 0x38, 0x38, 0x38, 0x35, 0x33, 0x2c, 0x39, 0x2e, + 0x38, 0x30, 0x34, 0x37, 0x39, 0x37, 0x36, 0x20, + 0x43, 0x20, 0x31, 0x36, 0x2e, 0x32, 0x30, 0x36, + 0x31, 0x31, 0x36, 0x2c, 0x31, 0x30, 0x2e, 0x34, + 0x34, 0x37, 0x33, 0x32, 0x34, 0x20, 0x31, 0x36, + 0x2e, 0x30, 0x38, 0x38, 0x32, 0x32, 0x2c, 0x31, + 0x30, 0x2e, 0x35, 0x33, 0x35, 0x37, 0x34, 0x36, + 0x20, 0x31, 0x35, 0x2e, 0x32, 0x38, 0x36, 0x35, + 0x33, 0x36, 0x2c, 0x31, 0x30, 0x2e, 0x36, 0x33, + 0x35, 0x39, 0x35, 0x37, 0x20, 0x4c, 0x20, 0x31, + 0x35, 0x2e, 0x32, 0x38, 0x36, 0x35, 0x33, 0x36, + 0x2c, 0x31, 0x31, 0x2e, 0x30, 0x30, 0x37, 0x33, + 0x32, 0x36, 0x20, 0x4c, 0x20, 0x31, 0x36, 0x2e, + 0x32, 0x31, 0x32, 0x30, 0x31, 0x31, 0x2c, 0x31, + 0x31, 0x2e, 0x30, 0x30, 0x37, 0x33, 0x32, 0x36, + 0x20, 0x4d, 0x20, 0x31, 0x38, 0x2e, 0x38, 0x36, + 0x31, 0x36, 0x38, 0x37, 0x2c, 0x31, 0x31, 0x2e, + 0x30, 0x30, 0x37, 0x33, 0x32, 0x36, 0x20, 0x4c, + 0x20, 0x31, 0x38, 0x2e, 0x38, 0x36, 0x31, 0x36, + 0x38, 0x37, 0x2c, 0x31, 0x33, 0x2e, 0x39, 0x38, + 0x34, 0x31, 0x37, 0x33, 0x20, 0x4c, 0x20, 0x31, + 0x39, 0x2e, 0x33, 0x38, 0x30, 0x34, 0x32, 0x34, + 0x2c, 0x31, 0x33, 0x2e, 0x39, 0x38, 0x34, 0x31, + 0x37, 0x33, 0x20, 0x4c, 0x20, 0x31, 0x39, 0x2e, + 0x33, 0x38, 0x30, 0x34, 0x32, 0x34, 0x2c, 0x39, + 0x2e, 0x38, 0x30, 0x34, 0x37, 0x39, 0x37, 0x36, + 0x20, 0x4c, 0x20, 0x31, 0x39, 0x2e, 0x30, 0x33, + 0x38, 0x35, 0x32, 0x39, 0x2c, 0x39, 0x2e, 0x38, + 0x30, 0x34, 0x37, 0x39, 0x37, 0x36, 0x20, 0x43, + 0x20, 0x31, 0x38, 0x2e, 0x38, 0x35, 0x35, 0x37, + 0x39, 0x32, 0x2c, 0x31, 0x30, 0x2e, 0x34, 0x34, + 0x37, 0x33, 0x32, 0x34, 0x20, 0x31, 0x38, 0x2e, + 0x37, 0x33, 0x37, 0x38, 0x39, 0x36, 0x2c, 0x31, + 0x30, 0x2e, 0x35, 0x33, 0x35, 0x37, 0x34, 0x36, + 0x20, 0x31, 0x37, 0x2e, 0x39, 0x33, 0x36, 0x32, + 0x31, 0x31, 0x2c, 0x31, 0x30, 0x2e, 0x36, 0x33, + 0x35, 0x39, 0x35, 0x37, 0x20, 0x4c, 0x20, 0x31, + 0x37, 0x2e, 0x39, 0x33, 0x36, 0x32, 0x31, 0x31, + 0x2c, 0x31, 0x31, 0x2e, 0x30, 0x30, 0x37, 0x33, + 0x32, 0x36, 0x20, 0x4c, 0x20, 0x31, 0x38, 0x2e, + 0x38, 0x36, 0x31, 0x36, 0x38, 0x37, 0x2c, 0x31, + 0x31, 0x2e, 0x30, 0x30, 0x37, 0x33, 0x32, 0x36, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, + 0x69, 0x7a, 0x65, 0x3a, 0x35, 0x2e, 0x38, 0x39, + 0x34, 0x37, 0x34, 0x37, 0x32, 0x36, 0x70, 0x78, + 0x3b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3a, 0x6e, 0x6f, 0x72, 0x6d, + 0x61, 0x6c, 0x3b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, + 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x6e, + 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x3b, 0x74, 0x65, + 0x78, 0x74, 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e, + 0x3a, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, + 0x74, 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6e, 0x63, + 0x68, 0x6f, 0x72, 0x3a, 0x6d, 0x69, 0x64, 0x64, + 0x6c, 0x65, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x3a, + 0x23, 0x35, 0x35, 0x35, 0x37, 0x35, 0x33, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, + 0x31, 0x70, 0x78, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, + 0x61, 0x70, 0x3a, 0x62, 0x75, 0x74, 0x74, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, + 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x64, + 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x69, + 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x3b, 0x66, 0x6f, + 0x6e, 0x74, 0x2d, 0x66, 0x61, 0x6d, 0x69, 0x6c, + 0x79, 0x3a, 0x4e, 0x69, 0x6d, 0x62, 0x75, 0x73, + 0x20, 0x53, 0x61, 0x6e, 0x73, 0x20, 0x4c, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x74, 0x65, 0x78, + 0x74, 0x34, 0x34, 0x34, 0x31, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, 0x30, 0x2e, + 0x36, 0x35, 0x35, 0x30, 0x31, 0x38, 0x2c, 0x31, + 0x36, 0x2e, 0x33, 0x36, 0x33, 0x37, 0x32, 0x36, + 0x20, 0x4c, 0x20, 0x31, 0x30, 0x2e, 0x36, 0x35, + 0x35, 0x30, 0x31, 0x38, 0x2c, 0x31, 0x39, 0x2e, + 0x33, 0x34, 0x30, 0x35, 0x37, 0x33, 0x20, 0x4c, + 0x20, 0x31, 0x31, 0x2e, 0x31, 0x37, 0x33, 0x37, + 0x35, 0x36, 0x2c, 0x31, 0x39, 0x2e, 0x33, 0x34, + 0x30, 0x35, 0x37, 0x33, 0x20, 0x4c, 0x20, 0x31, + 0x31, 0x2e, 0x31, 0x37, 0x33, 0x37, 0x35, 0x36, + 0x2c, 0x31, 0x35, 0x2e, 0x31, 0x36, 0x31, 0x31, + 0x39, 0x37, 0x20, 0x4c, 0x20, 0x31, 0x30, 0x2e, + 0x38, 0x33, 0x31, 0x38, 0x36, 0x31, 0x2c, 0x31, + 0x35, 0x2e, 0x31, 0x36, 0x31, 0x31, 0x39, 0x37, + 0x20, 0x43, 0x20, 0x31, 0x30, 0x2e, 0x36, 0x34, + 0x39, 0x31, 0x32, 0x34, 0x2c, 0x31, 0x35, 0x2e, + 0x38, 0x30, 0x33, 0x37, 0x32, 0x34, 0x20, 0x31, + 0x30, 0x2e, 0x35, 0x33, 0x31, 0x32, 0x32, 0x38, + 0x2c, 0x31, 0x35, 0x2e, 0x38, 0x39, 0x32, 0x31, + 0x34, 0x36, 0x20, 0x39, 0x2e, 0x37, 0x32, 0x39, + 0x35, 0x34, 0x32, 0x39, 0x2c, 0x31, 0x35, 0x2e, + 0x39, 0x39, 0x32, 0x33, 0x35, 0x36, 0x20, 0x4c, + 0x20, 0x39, 0x2e, 0x37, 0x32, 0x39, 0x35, 0x34, + 0x32, 0x39, 0x2c, 0x31, 0x36, 0x2e, 0x33, 0x36, + 0x33, 0x37, 0x32, 0x36, 0x20, 0x4c, 0x20, 0x31, + 0x30, 0x2e, 0x36, 0x35, 0x35, 0x30, 0x31, 0x38, + 0x2c, 0x31, 0x36, 0x2e, 0x33, 0x36, 0x33, 0x37, + 0x32, 0x36, 0x20, 0x4d, 0x20, 0x31, 0x33, 0x2e, + 0x33, 0x39, 0x39, 0x30, 0x31, 0x2c, 0x31, 0x35, + 0x2e, 0x31, 0x36, 0x31, 0x31, 0x39, 0x37, 0x20, + 0x43, 0x20, 0x31, 0x33, 0x2e, 0x30, 0x30, 0x39, + 0x39, 0x35, 0x37, 0x2c, 0x31, 0x35, 0x2e, 0x31, + 0x36, 0x31, 0x31, 0x39, 0x37, 0x20, 0x31, 0x32, + 0x2e, 0x36, 0x35, 0x36, 0x32, 0x37, 0x32, 0x2c, + 0x31, 0x35, 0x2e, 0x33, 0x33, 0x32, 0x31, 0x34, + 0x35, 0x20, 0x31, 0x32, 0x2e, 0x34, 0x33, 0x38, + 0x31, 0x36, 0x36, 0x2c, 0x31, 0x35, 0x2e, 0x36, + 0x32, 0x30, 0x39, 0x38, 0x37, 0x20, 0x43, 0x20, + 0x31, 0x32, 0x2e, 0x31, 0x36, 0x37, 0x30, 0x30, + 0x38, 0x2c, 0x31, 0x35, 0x2e, 0x39, 0x38, 0x36, + 0x34, 0x36, 0x31, 0x20, 0x31, 0x32, 0x2e, 0x30, + 0x33, 0x31, 0x34, 0x32, 0x39, 0x2c, 0x31, 0x36, + 0x2e, 0x35, 0x34, 0x36, 0x34, 0x36, 0x33, 0x20, + 0x31, 0x32, 0x2e, 0x30, 0x33, 0x31, 0x34, 0x32, + 0x39, 0x2c, 0x31, 0x37, 0x2e, 0x33, 0x31, 0x38, + 0x36, 0x37, 0x35, 0x20, 0x43, 0x20, 0x31, 0x32, + 0x2e, 0x30, 0x33, 0x31, 0x34, 0x32, 0x39, 0x2c, + 0x31, 0x38, 0x2e, 0x37, 0x32, 0x37, 0x35, 0x31, + 0x38, 0x20, 0x31, 0x32, 0x2e, 0x35, 0x30, 0x33, + 0x30, 0x30, 0x39, 0x2c, 0x31, 0x39, 0x2e, 0x34, + 0x37, 0x36, 0x31, 0x35, 0x32, 0x20, 0x31, 0x33, + 0x2e, 0x33, 0x39, 0x39, 0x30, 0x31, 0x2c, 0x31, + 0x39, 0x2e, 0x34, 0x37, 0x36, 0x31, 0x35, 0x32, + 0x20, 0x43, 0x20, 0x31, 0x34, 0x2e, 0x32, 0x38, + 0x33, 0x32, 0x32, 0x31, 0x2c, 0x31, 0x39, 0x2e, + 0x34, 0x37, 0x36, 0x31, 0x35, 0x32, 0x20, 0x31, + 0x34, 0x2e, 0x37, 0x36, 0x36, 0x35, 0x39, 0x31, + 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x32, 0x37, 0x35, + 0x31, 0x38, 0x20, 0x31, 0x34, 0x2e, 0x37, 0x36, + 0x36, 0x35, 0x39, 0x31, 0x2c, 0x31, 0x37, 0x2e, + 0x33, 0x35, 0x34, 0x30, 0x34, 0x33, 0x20, 0x43, + 0x20, 0x31, 0x34, 0x2e, 0x37, 0x36, 0x36, 0x35, + 0x39, 0x31, 0x2c, 0x31, 0x36, 0x2e, 0x35, 0x34, + 0x30, 0x35, 0x36, 0x39, 0x20, 0x31, 0x34, 0x2e, + 0x36, 0x33, 0x36, 0x39, 0x30, 0x37, 0x2c, 0x31, + 0x35, 0x2e, 0x39, 0x39, 0x38, 0x32, 0x35, 0x31, + 0x20, 0x31, 0x34, 0x2e, 0x33, 0x35, 0x39, 0x38, + 0x35, 0x34, 0x2c, 0x31, 0x35, 0x2e, 0x36, 0x32, + 0x30, 0x39, 0x38, 0x37, 0x20, 0x43, 0x20, 0x31, + 0x34, 0x2e, 0x31, 0x34, 0x31, 0x37, 0x34, 0x38, + 0x2c, 0x31, 0x35, 0x2e, 0x33, 0x32, 0x36, 0x32, + 0x35, 0x20, 0x31, 0x33, 0x2e, 0x37, 0x39, 0x33, + 0x39, 0x35, 0x38, 0x2c, 0x31, 0x35, 0x2e, 0x31, + 0x36, 0x31, 0x31, 0x39, 0x37, 0x20, 0x31, 0x33, + 0x2e, 0x33, 0x39, 0x39, 0x30, 0x31, 0x2c, 0x31, + 0x35, 0x2e, 0x31, 0x36, 0x31, 0x31, 0x39, 0x37, + 0x20, 0x4d, 0x20, 0x31, 0x33, 0x2e, 0x33, 0x39, + 0x39, 0x30, 0x31, 0x2c, 0x31, 0x35, 0x2e, 0x36, + 0x32, 0x30, 0x39, 0x38, 0x37, 0x20, 0x43, 0x20, + 0x31, 0x33, 0x2e, 0x39, 0x35, 0x39, 0x30, 0x31, + 0x2c, 0x31, 0x35, 0x2e, 0x36, 0x32, 0x30, 0x39, + 0x38, 0x37, 0x20, 0x31, 0x34, 0x2e, 0x32, 0x33, + 0x36, 0x30, 0x36, 0x34, 0x2c, 0x31, 0x36, 0x2e, + 0x31, 0x38, 0x36, 0x38, 0x38, 0x34, 0x20, 0x31, + 0x34, 0x2e, 0x32, 0x33, 0x36, 0x30, 0x36, 0x34, + 0x2c, 0x31, 0x37, 0x2e, 0x33, 0x30, 0x36, 0x38, + 0x38, 0x35, 0x20, 0x43, 0x20, 0x31, 0x34, 0x2e, + 0x32, 0x33, 0x36, 0x30, 0x36, 0x34, 0x2c, 0x31, + 0x38, 0x2e, 0x34, 0x39, 0x31, 0x37, 0x32, 0x38, + 0x20, 0x31, 0x33, 0x2e, 0x39, 0x36, 0x34, 0x39, + 0x30, 0x35, 0x2c, 0x31, 0x39, 0x2e, 0x30, 0x34, + 0x35, 0x38, 0x33, 0x36, 0x20, 0x31, 0x33, 0x2e, + 0x33, 0x38, 0x37, 0x32, 0x32, 0x2c, 0x31, 0x39, + 0x2e, 0x30, 0x34, 0x35, 0x38, 0x33, 0x36, 0x20, + 0x43, 0x20, 0x31, 0x32, 0x2e, 0x38, 0x33, 0x39, + 0x30, 0x31, 0x2c, 0x31, 0x39, 0x2e, 0x30, 0x34, + 0x35, 0x38, 0x33, 0x36, 0x20, 0x31, 0x32, 0x2e, + 0x35, 0x36, 0x31, 0x39, 0x35, 0x36, 0x2c, 0x31, + 0x38, 0x2e, 0x34, 0x36, 0x38, 0x31, 0x34, 0x39, + 0x20, 0x31, 0x32, 0x2e, 0x35, 0x36, 0x31, 0x39, + 0x35, 0x36, 0x2c, 0x31, 0x37, 0x2e, 0x33, 0x32, + 0x34, 0x35, 0x36, 0x39, 0x20, 0x43, 0x20, 0x31, + 0x32, 0x2e, 0x35, 0x36, 0x31, 0x39, 0x35, 0x36, + 0x2c, 0x31, 0x36, 0x2e, 0x31, 0x38, 0x30, 0x39, + 0x39, 0x20, 0x31, 0x32, 0x2e, 0x38, 0x33, 0x39, + 0x30, 0x31, 0x2c, 0x31, 0x35, 0x2e, 0x36, 0x32, + 0x30, 0x39, 0x38, 0x37, 0x20, 0x31, 0x33, 0x2e, + 0x33, 0x39, 0x39, 0x30, 0x31, 0x2c, 0x31, 0x35, + 0x2e, 0x36, 0x32, 0x30, 0x39, 0x38, 0x37, 0x22, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, + 0x22, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x69, + 0x7a, 0x65, 0x3a, 0x35, 0x2e, 0x38, 0x39, 0x34, + 0x37, 0x34, 0x37, 0x32, 0x36, 0x70, 0x78, 0x3b, + 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, + 0x6c, 0x65, 0x3a, 0x6e, 0x6f, 0x72, 0x6d, 0x61, + 0x6c, 0x3b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x77, + 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x6e, 0x6f, + 0x72, 0x6d, 0x61, 0x6c, 0x3b, 0x74, 0x65, 0x78, + 0x74, 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x3a, + 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x74, + 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6e, 0x63, 0x68, + 0x6f, 0x72, 0x3a, 0x6d, 0x69, 0x64, 0x64, 0x6c, + 0x65, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, + 0x35, 0x35, 0x35, 0x37, 0x35, 0x33, 0x3b, 0x66, + 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, + 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, + 0x70, 0x78, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, + 0x70, 0x3a, 0x62, 0x75, 0x74, 0x74, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, + 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, 0x6d, + 0x69, 0x74, 0x65, 0x72, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x64, 0x69, + 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x69, 0x6e, + 0x6c, 0x69, 0x6e, 0x65, 0x3b, 0x66, 0x6f, 0x6e, + 0x74, 0x2d, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, + 0x3a, 0x4e, 0x69, 0x6d, 0x62, 0x75, 0x73, 0x20, + 0x53, 0x61, 0x6e, 0x73, 0x20, 0x4c, 0x22, 0x20, + 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x69, 0x64, 0x3d, 0x22, 0x74, 0x65, 0x78, 0x74, + 0x34, 0x34, 0x34, 0x35, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, + 0x3d, 0x22, 0x4d, 0x20, 0x38, 0x2e, 0x37, 0x33, + 0x33, 0x36, 0x39, 0x32, 0x34, 0x2c, 0x32, 0x35, + 0x2e, 0x39, 0x35, 0x38, 0x38, 0x30, 0x33, 0x20, + 0x43, 0x20, 0x38, 0x2e, 0x38, 0x33, 0x33, 0x39, + 0x30, 0x33, 0x2c, 0x32, 0x36, 0x2e, 0x36, 0x34, + 0x32, 0x35, 0x39, 0x33, 0x20, 0x39, 0x2e, 0x32, + 0x38, 0x31, 0x39, 0x30, 0x34, 0x34, 0x2c, 0x32, + 0x37, 0x2e, 0x30, 0x34, 0x39, 0x33, 0x33, 0x31, + 0x20, 0x39, 0x2e, 0x39, 0x31, 0x38, 0x35, 0x33, + 0x36, 0x39, 0x2c, 0x32, 0x37, 0x2e, 0x30, 0x34, + 0x39, 0x33, 0x33, 0x31, 0x20, 0x43, 0x20, 0x31, + 0x30, 0x2e, 0x33, 0x37, 0x38, 0x33, 0x32, 0x36, + 0x2c, 0x32, 0x37, 0x2e, 0x30, 0x34, 0x39, 0x33, + 0x33, 0x31, 0x20, 0x31, 0x30, 0x2e, 0x37, 0x39, + 0x36, 0x38, 0x35, 0x34, 0x2c, 0x32, 0x36, 0x2e, + 0x38, 0x32, 0x35, 0x33, 0x33, 0x31, 0x20, 0x31, + 0x31, 0x2e, 0x30, 0x33, 0x38, 0x35, 0x33, 0x39, + 0x2c, 0x32, 0x36, 0x2e, 0x34, 0x35, 0x33, 0x39, + 0x36, 0x32, 0x20, 0x43, 0x20, 0x31, 0x31, 0x2e, + 0x33, 0x30, 0x33, 0x38, 0x30, 0x32, 0x2c, 0x32, + 0x36, 0x2e, 0x30, 0x34, 0x37, 0x32, 0x32, 0x35, + 0x20, 0x31, 0x31, 0x2e, 0x34, 0x32, 0x31, 0x36, + 0x39, 0x37, 0x2c, 0x32, 0x35, 0x2e, 0x35, 0x33, + 0x34, 0x33, 0x38, 0x31, 0x20, 0x31, 0x31, 0x2e, + 0x34, 0x32, 0x31, 0x36, 0x39, 0x37, 0x2c, 0x32, + 0x34, 0x2e, 0x37, 0x37, 0x33, 0x39, 0x35, 0x39, + 0x20, 0x43, 0x20, 0x31, 0x31, 0x2e, 0x34, 0x32, + 0x31, 0x36, 0x39, 0x37, 0x2c, 0x32, 0x34, 0x2e, + 0x30, 0x37, 0x32, 0x34, 0x38, 0x35, 0x20, 0x31, + 0x31, 0x2e, 0x33, 0x31, 0x35, 0x35, 0x39, 0x32, + 0x2c, 0x32, 0x33, 0x2e, 0x36, 0x32, 0x34, 0x34, + 0x38, 0x33, 0x20, 0x31, 0x31, 0x2e, 0x30, 0x36, + 0x38, 0x30, 0x31, 0x32, 0x2c, 0x32, 0x33, 0x2e, + 0x32, 0x35, 0x33, 0x31, 0x31, 0x34, 0x20, 0x43, + 0x20, 0x31, 0x30, 0x2e, 0x38, 0x33, 0x38, 0x31, + 0x31, 0x37, 0x2c, 0x32, 0x32, 0x2e, 0x39, 0x31, + 0x37, 0x31, 0x31, 0x34, 0x20, 0x31, 0x30, 0x2e, + 0x34, 0x37, 0x32, 0x36, 0x34, 0x32, 0x2c, 0x32, + 0x32, 0x2e, 0x37, 0x33, 0x34, 0x33, 0x37, 0x36, + 0x20, 0x31, 0x30, 0x2e, 0x30, 0x31, 0x32, 0x38, + 0x35, 0x33, 0x2c, 0x32, 0x32, 0x2e, 0x37, 0x33, + 0x34, 0x33, 0x37, 0x36, 0x20, 0x43, 0x20, 0x39, + 0x2e, 0x32, 0x31, 0x37, 0x30, 0x36, 0x32, 0x33, + 0x2c, 0x32, 0x32, 0x2e, 0x37, 0x33, 0x34, 0x33, + 0x37, 0x36, 0x20, 0x38, 0x2e, 0x36, 0x34, 0x35, + 0x32, 0x37, 0x31, 0x31, 0x2c, 0x32, 0x33, 0x2e, + 0x33, 0x32, 0x33, 0x38, 0x35, 0x32, 0x20, 0x38, + 0x2e, 0x36, 0x34, 0x35, 0x32, 0x37, 0x31, 0x31, + 0x2c, 0x32, 0x34, 0x2e, 0x31, 0x34, 0x33, 0x32, + 0x32, 0x31, 0x20, 0x43, 0x20, 0x38, 0x2e, 0x36, + 0x34, 0x35, 0x32, 0x37, 0x31, 0x31, 0x2c, 0x32, + 0x34, 0x2e, 0x39, 0x32, 0x31, 0x33, 0x32, 0x37, + 0x20, 0x39, 0x2e, 0x31, 0x37, 0x35, 0x37, 0x39, + 0x39, 0x31, 0x2c, 0x32, 0x35, 0x2e, 0x34, 0x36, + 0x39, 0x35, 0x33, 0x39, 0x20, 0x39, 0x2e, 0x39, + 0x33, 0x30, 0x33, 0x32, 0x35, 0x38, 0x2c, 0x32, + 0x35, 0x2e, 0x34, 0x36, 0x39, 0x35, 0x33, 0x39, + 0x20, 0x43, 0x20, 0x31, 0x30, 0x2e, 0x33, 0x32, + 0x35, 0x32, 0x37, 0x34, 0x2c, 0x32, 0x35, 0x2e, + 0x34, 0x36, 0x39, 0x35, 0x33, 0x39, 0x20, 0x31, + 0x30, 0x2e, 0x36, 0x31, 0x34, 0x31, 0x31, 0x37, + 0x2c, 0x32, 0x35, 0x2e, 0x33, 0x32, 0x38, 0x30, + 0x36, 0x35, 0x20, 0x31, 0x30, 0x2e, 0x38, 0x38, + 0x35, 0x32, 0x37, 0x35, 0x2c, 0x32, 0x35, 0x2e, + 0x30, 0x30, 0x33, 0x38, 0x35, 0x34, 0x20, 0x43, + 0x20, 0x31, 0x30, 0x2e, 0x38, 0x37, 0x39, 0x33, + 0x38, 0x2c, 0x32, 0x36, 0x2e, 0x30, 0x32, 0x33, + 0x36, 0x34, 0x34, 0x20, 0x31, 0x30, 0x2e, 0x35, + 0x34, 0x39, 0x32, 0x37, 0x34, 0x2c, 0x32, 0x36, + 0x2e, 0x35, 0x38, 0x39, 0x35, 0x34, 0x31, 0x20, + 0x39, 0x2e, 0x39, 0x35, 0x33, 0x39, 0x30, 0x34, + 0x39, 0x2c, 0x32, 0x36, 0x2e, 0x35, 0x38, 0x39, + 0x35, 0x34, 0x31, 0x20, 0x43, 0x20, 0x39, 0x2e, + 0x35, 0x38, 0x38, 0x34, 0x33, 0x31, 0x31, 0x2c, + 0x32, 0x36, 0x2e, 0x35, 0x38, 0x39, 0x35, 0x34, + 0x31, 0x20, 0x39, 0x2e, 0x33, 0x33, 0x34, 0x39, + 0x35, 0x36, 0x34, 0x2c, 0x32, 0x36, 0x2e, 0x33, + 0x35, 0x39, 0x36, 0x34, 0x35, 0x20, 0x39, 0x2e, + 0x32, 0x35, 0x32, 0x34, 0x33, 0x2c, 0x32, 0x35, + 0x2e, 0x39, 0x35, 0x38, 0x38, 0x30, 0x33, 0x20, + 0x4c, 0x20, 0x38, 0x2e, 0x37, 0x33, 0x33, 0x36, + 0x39, 0x32, 0x34, 0x2c, 0x32, 0x35, 0x2e, 0x39, + 0x35, 0x38, 0x38, 0x30, 0x33, 0x20, 0x4d, 0x20, + 0x31, 0x30, 0x2e, 0x30, 0x30, 0x36, 0x39, 0x35, + 0x38, 0x2c, 0x32, 0x33, 0x2e, 0x31, 0x38, 0x38, + 0x32, 0x37, 0x32, 0x20, 0x43, 0x20, 0x31, 0x30, + 0x2e, 0x34, 0x39, 0x30, 0x33, 0x32, 0x37, 0x2c, + 0x32, 0x33, 0x2e, 0x31, 0x38, 0x38, 0x32, 0x37, + 0x32, 0x20, 0x31, 0x30, 0x2e, 0x38, 0x35, 0x35, + 0x38, 0x30, 0x31, 0x2c, 0x32, 0x33, 0x2e, 0x35, + 0x38, 0x39, 0x31, 0x31, 0x35, 0x20, 0x31, 0x30, + 0x2e, 0x38, 0x35, 0x35, 0x38, 0x30, 0x31, 0x2c, + 0x32, 0x34, 0x2e, 0x31, 0x33, 0x31, 0x34, 0x33, + 0x31, 0x20, 0x43, 0x20, 0x31, 0x30, 0x2e, 0x38, + 0x35, 0x35, 0x38, 0x30, 0x31, 0x2c, 0x32, 0x34, + 0x2e, 0x36, 0x34, 0x34, 0x32, 0x37, 0x34, 0x20, + 0x31, 0x30, 0x2e, 0x34, 0x39, 0x36, 0x32, 0x32, + 0x31, 0x2c, 0x32, 0x35, 0x2e, 0x30, 0x30, 0x39, + 0x37, 0x34, 0x39, 0x20, 0x39, 0x2e, 0x39, 0x38, + 0x39, 0x32, 0x37, 0x33, 0x39, 0x2c, 0x32, 0x35, + 0x2e, 0x30, 0x30, 0x39, 0x37, 0x34, 0x39, 0x20, + 0x43, 0x20, 0x39, 0x2e, 0x34, 0x38, 0x38, 0x32, + 0x32, 0x30, 0x35, 0x2c, 0x32, 0x35, 0x2e, 0x30, + 0x30, 0x39, 0x37, 0x34, 0x39, 0x20, 0x39, 0x2e, + 0x31, 0x37, 0x35, 0x37, 0x39, 0x38, 0x33, 0x2c, + 0x32, 0x34, 0x2e, 0x36, 0x36, 0x31, 0x39, 0x35, + 0x38, 0x20, 0x39, 0x2e, 0x31, 0x37, 0x35, 0x37, + 0x39, 0x38, 0x33, 0x2c, 0x32, 0x34, 0x2e, 0x31, + 0x30, 0x31, 0x39, 0x35, 0x38, 0x20, 0x43, 0x20, + 0x39, 0x2e, 0x31, 0x37, 0x35, 0x37, 0x39, 0x38, + 0x33, 0x2c, 0x32, 0x33, 0x2e, 0x35, 0x37, 0x31, + 0x34, 0x33, 0x31, 0x20, 0x39, 0x2e, 0x35, 0x32, + 0x39, 0x34, 0x38, 0x33, 0x36, 0x2c, 0x32, 0x33, + 0x2e, 0x31, 0x38, 0x38, 0x32, 0x37, 0x32, 0x20, + 0x31, 0x30, 0x2e, 0x30, 0x30, 0x36, 0x39, 0x35, + 0x38, 0x2c, 0x32, 0x33, 0x2e, 0x31, 0x38, 0x38, + 0x32, 0x37, 0x32, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x6f, 0x6e, + 0x74, 0x2d, 0x73, 0x69, 0x7a, 0x65, 0x3a, 0x35, + 0x2e, 0x38, 0x39, 0x34, 0x37, 0x34, 0x37, 0x32, + 0x36, 0x70, 0x78, 0x3b, 0x66, 0x6f, 0x6e, 0x74, + 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x6e, + 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x3b, 0x66, 0x6f, + 0x6e, 0x74, 0x2d, 0x77, 0x65, 0x69, 0x67, 0x68, + 0x74, 0x3a, 0x6e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, + 0x3b, 0x74, 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6c, + 0x69, 0x67, 0x6e, 0x3a, 0x63, 0x65, 0x6e, 0x74, + 0x65, 0x72, 0x3b, 0x74, 0x65, 0x78, 0x74, 0x2d, + 0x61, 0x6e, 0x63, 0x68, 0x6f, 0x72, 0x3a, 0x6d, + 0x69, 0x64, 0x64, 0x6c, 0x65, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x3a, 0x23, 0x35, 0x35, 0x35, 0x37, + 0x35, 0x33, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, + 0x74, 0x68, 0x3a, 0x31, 0x70, 0x78, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, + 0x6e, 0x65, 0x63, 0x61, 0x70, 0x3a, 0x62, 0x75, + 0x74, 0x74, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, + 0x69, 0x6e, 0x3a, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, + 0x31, 0x3b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, + 0x79, 0x3a, 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65, + 0x3b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x66, 0x61, + 0x6d, 0x69, 0x6c, 0x79, 0x3a, 0x4e, 0x69, 0x6d, + 0x62, 0x75, 0x73, 0x20, 0x53, 0x61, 0x6e, 0x73, + 0x20, 0x4c, 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, + 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, + 0x74, 0x65, 0x78, 0x74, 0x34, 0x34, 0x34, 0x39, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, + 0x31, 0x32, 0x2e, 0x39, 0x33, 0x31, 0x38, 0x35, + 0x38, 0x2c, 0x33, 0x32, 0x2e, 0x31, 0x35, 0x32, + 0x37, 0x38, 0x32, 0x20, 0x43, 0x20, 0x31, 0x33, + 0x2e, 0x33, 0x36, 0x32, 0x31, 0x37, 0x34, 0x2c, + 0x33, 0x31, 0x2e, 0x38, 0x39, 0x33, 0x34, 0x31, + 0x34, 0x20, 0x31, 0x33, 0x2e, 0x35, 0x30, 0x33, + 0x36, 0x34, 0x38, 0x2c, 0x33, 0x31, 0x2e, 0x36, + 0x38, 0x31, 0x32, 0x30, 0x32, 0x20, 0x31, 0x33, + 0x2e, 0x35, 0x30, 0x33, 0x36, 0x34, 0x38, 0x2c, + 0x33, 0x31, 0x2e, 0x32, 0x38, 0x36, 0x32, 0x35, + 0x34, 0x20, 0x43, 0x20, 0x31, 0x33, 0x2e, 0x35, + 0x30, 0x33, 0x36, 0x34, 0x38, 0x2c, 0x33, 0x30, + 0x2e, 0x36, 0x33, 0x31, 0x39, 0x33, 0x38, 0x20, + 0x31, 0x32, 0x2e, 0x39, 0x39, 0x30, 0x38, 0x30, + 0x34, 0x2c, 0x33, 0x30, 0x2e, 0x31, 0x37, 0x32, + 0x31, 0x34, 0x37, 0x20, 0x31, 0x32, 0x2e, 0x32, + 0x34, 0x38, 0x30, 0x36, 0x37, 0x2c, 0x33, 0x30, + 0x2e, 0x31, 0x37, 0x32, 0x31, 0x34, 0x37, 0x20, + 0x43, 0x20, 0x31, 0x31, 0x2e, 0x35, 0x31, 0x31, + 0x32, 0x32, 0x34, 0x2c, 0x33, 0x30, 0x2e, 0x31, + 0x37, 0x32, 0x31, 0x34, 0x37, 0x20, 0x31, 0x30, + 0x2e, 0x39, 0x39, 0x32, 0x34, 0x38, 0x36, 0x2c, + 0x33, 0x30, 0x2e, 0x36, 0x33, 0x31, 0x39, 0x33, + 0x38, 0x20, 0x31, 0x30, 0x2e, 0x39, 0x39, 0x32, + 0x34, 0x38, 0x36, 0x2c, 0x33, 0x31, 0x2e, 0x32, + 0x38, 0x36, 0x32, 0x35, 0x34, 0x20, 0x43, 0x20, + 0x31, 0x30, 0x2e, 0x39, 0x39, 0x32, 0x34, 0x38, + 0x36, 0x2c, 0x33, 0x31, 0x2e, 0x36, 0x37, 0x35, + 0x33, 0x30, 0x37, 0x20, 0x31, 0x31, 0x2e, 0x31, + 0x33, 0x33, 0x39, 0x36, 0x2c, 0x33, 0x31, 0x2e, + 0x38, 0x38, 0x37, 0x35, 0x31, 0x39, 0x20, 0x31, + 0x31, 0x2e, 0x35, 0x35, 0x38, 0x33, 0x38, 0x32, + 0x2c, 0x33, 0x32, 0x2e, 0x31, 0x35, 0x32, 0x37, + 0x38, 0x32, 0x20, 0x43, 0x20, 0x31, 0x31, 0x2e, + 0x30, 0x38, 0x30, 0x39, 0x30, 0x38, 0x2c, 0x33, + 0x32, 0x2e, 0x33, 0x38, 0x32, 0x36, 0x37, 0x37, + 0x20, 0x31, 0x30, 0x2e, 0x38, 0x34, 0x35, 0x31, + 0x31, 0x37, 0x2c, 0x33, 0x32, 0x2e, 0x37, 0x33, + 0x30, 0x34, 0x36, 0x38, 0x20, 0x31, 0x30, 0x2e, + 0x38, 0x34, 0x35, 0x31, 0x31, 0x37, 0x2c, 0x33, + 0x33, 0x2e, 0x31, 0x39, 0x30, 0x32, 0x35, 0x38, + 0x20, 0x43, 0x20, 0x31, 0x30, 0x2e, 0x38, 0x34, + 0x35, 0x31, 0x31, 0x37, 0x2c, 0x33, 0x33, 0x2e, + 0x39, 0x35, 0x36, 0x35, 0x37, 0x34, 0x20, 0x31, + 0x31, 0x2e, 0x34, 0x32, 0x32, 0x38, 0x30, 0x33, + 0x2c, 0x33, 0x34, 0x2e, 0x34, 0x38, 0x37, 0x31, + 0x30, 0x32, 0x20, 0x31, 0x32, 0x2e, 0x32, 0x34, + 0x38, 0x30, 0x36, 0x37, 0x2c, 0x33, 0x34, 0x2e, + 0x34, 0x38, 0x37, 0x31, 0x30, 0x32, 0x20, 0x43, + 0x20, 0x31, 0x33, 0x2e, 0x30, 0x37, 0x33, 0x33, + 0x33, 0x31, 0x2c, 0x33, 0x34, 0x2e, 0x34, 0x38, + 0x37, 0x31, 0x30, 0x32, 0x20, 0x31, 0x33, 0x2e, + 0x36, 0x35, 0x31, 0x30, 0x31, 0x37, 0x2c, 0x33, + 0x33, 0x2e, 0x39, 0x35, 0x36, 0x35, 0x37, 0x34, + 0x20, 0x31, 0x33, 0x2e, 0x36, 0x35, 0x31, 0x30, + 0x31, 0x37, 0x2c, 0x33, 0x33, 0x2e, 0x31, 0x39, + 0x36, 0x31, 0x35, 0x33, 0x20, 0x43, 0x20, 0x31, + 0x33, 0x2e, 0x36, 0x35, 0x31, 0x30, 0x31, 0x37, + 0x2c, 0x33, 0x32, 0x2e, 0x37, 0x33, 0x30, 0x34, + 0x36, 0x38, 0x20, 0x31, 0x33, 0x2e, 0x34, 0x31, + 0x35, 0x32, 0x32, 0x36, 0x2c, 0x33, 0x32, 0x2e, + 0x33, 0x38, 0x32, 0x36, 0x37, 0x37, 0x20, 0x31, + 0x32, 0x2e, 0x39, 0x33, 0x31, 0x38, 0x35, 0x38, + 0x2c, 0x33, 0x32, 0x2e, 0x31, 0x35, 0x32, 0x37, + 0x38, 0x32, 0x20, 0x4d, 0x20, 0x31, 0x32, 0x2e, + 0x32, 0x34, 0x38, 0x30, 0x36, 0x37, 0x2c, 0x33, + 0x30, 0x2e, 0x36, 0x33, 0x31, 0x39, 0x33, 0x37, + 0x20, 0x43, 0x20, 0x31, 0x32, 0x2e, 0x36, 0x39, + 0x30, 0x31, 0x37, 0x33, 0x2c, 0x33, 0x30, 0x2e, + 0x36, 0x33, 0x31, 0x39, 0x33, 0x37, 0x20, 0x31, + 0x32, 0x2e, 0x39, 0x37, 0x33, 0x31, 0x32, 0x31, + 0x2c, 0x33, 0x30, 0x2e, 0x38, 0x39, 0x31, 0x33, + 0x30, 0x37, 0x20, 0x31, 0x32, 0x2e, 0x39, 0x37, + 0x33, 0x31, 0x32, 0x31, 0x2c, 0x33, 0x31, 0x2e, + 0x32, 0x39, 0x38, 0x30, 0x34, 0x34, 0x20, 0x43, + 0x20, 0x31, 0x32, 0x2e, 0x39, 0x37, 0x33, 0x31, + 0x32, 0x31, 0x2c, 0x33, 0x31, 0x2e, 0x36, 0x38, + 0x37, 0x30, 0x39, 0x37, 0x20, 0x31, 0x32, 0x2e, + 0x36, 0x38, 0x34, 0x32, 0x37, 0x38, 0x2c, 0x33, + 0x31, 0x2e, 0x39, 0x34, 0x36, 0x34, 0x36, 0x36, + 0x20, 0x31, 0x32, 0x2e, 0x32, 0x34, 0x38, 0x30, + 0x36, 0x37, 0x2c, 0x33, 0x31, 0x2e, 0x39, 0x34, + 0x36, 0x34, 0x36, 0x36, 0x20, 0x43, 0x20, 0x31, + 0x31, 0x2e, 0x38, 0x31, 0x31, 0x38, 0x35, 0x36, + 0x2c, 0x33, 0x31, 0x2e, 0x39, 0x34, 0x36, 0x34, + 0x36, 0x36, 0x20, 0x31, 0x31, 0x2e, 0x35, 0x32, + 0x33, 0x30, 0x31, 0x33, 0x2c, 0x33, 0x31, 0x2e, + 0x36, 0x38, 0x37, 0x30, 0x39, 0x37, 0x20, 0x31, + 0x31, 0x2e, 0x35, 0x32, 0x33, 0x30, 0x31, 0x33, + 0x2c, 0x33, 0x31, 0x2e, 0x32, 0x39, 0x32, 0x31, + 0x34, 0x39, 0x20, 0x43, 0x20, 0x31, 0x31, 0x2e, + 0x35, 0x32, 0x33, 0x30, 0x31, 0x33, 0x2c, 0x33, + 0x30, 0x2e, 0x38, 0x39, 0x31, 0x33, 0x30, 0x37, + 0x20, 0x31, 0x31, 0x2e, 0x38, 0x31, 0x31, 0x38, + 0x35, 0x36, 0x2c, 0x33, 0x30, 0x2e, 0x36, 0x33, + 0x31, 0x39, 0x33, 0x37, 0x20, 0x31, 0x32, 0x2e, + 0x32, 0x34, 0x38, 0x30, 0x36, 0x37, 0x2c, 0x33, + 0x30, 0x2e, 0x36, 0x33, 0x31, 0x39, 0x33, 0x37, + 0x20, 0x4d, 0x20, 0x31, 0x32, 0x2e, 0x32, 0x34, + 0x38, 0x30, 0x36, 0x37, 0x2c, 0x33, 0x32, 0x2e, + 0x33, 0x38, 0x32, 0x36, 0x37, 0x37, 0x20, 0x43, + 0x20, 0x31, 0x32, 0x2e, 0x37, 0x36, 0x36, 0x38, + 0x30, 0x34, 0x2c, 0x33, 0x32, 0x2e, 0x33, 0x38, + 0x32, 0x36, 0x37, 0x37, 0x20, 0x31, 0x33, 0x2e, + 0x31, 0x32, 0x30, 0x34, 0x39, 0x2c, 0x33, 0x32, + 0x2e, 0x37, 0x31, 0x32, 0x37, 0x38, 0x34, 0x20, + 0x31, 0x33, 0x2e, 0x31, 0x32, 0x30, 0x34, 0x39, + 0x2c, 0x33, 0x33, 0x2e, 0x32, 0x30, 0x32, 0x30, + 0x34, 0x37, 0x20, 0x43, 0x20, 0x31, 0x33, 0x2e, + 0x31, 0x32, 0x30, 0x34, 0x39, 0x2c, 0x33, 0x33, + 0x2e, 0x36, 0x39, 0x37, 0x32, 0x30, 0x36, 0x20, + 0x31, 0x32, 0x2e, 0x37, 0x36, 0x36, 0x38, 0x30, + 0x34, 0x2c, 0x33, 0x34, 0x2e, 0x30, 0x32, 0x37, + 0x33, 0x31, 0x32, 0x20, 0x31, 0x32, 0x2e, 0x32, + 0x33, 0x36, 0x32, 0x37, 0x37, 0x2c, 0x33, 0x34, + 0x2e, 0x30, 0x32, 0x37, 0x33, 0x31, 0x32, 0x20, + 0x43, 0x20, 0x31, 0x31, 0x2e, 0x37, 0x32, 0x39, + 0x33, 0x33, 0x2c, 0x33, 0x34, 0x2e, 0x30, 0x32, + 0x37, 0x33, 0x31, 0x32, 0x20, 0x31, 0x31, 0x2e, + 0x33, 0x37, 0x35, 0x36, 0x34, 0x34, 0x2c, 0x33, + 0x33, 0x2e, 0x36, 0x39, 0x31, 0x33, 0x31, 0x31, + 0x20, 0x31, 0x31, 0x2e, 0x33, 0x37, 0x35, 0x36, + 0x34, 0x34, 0x2c, 0x33, 0x33, 0x2e, 0x32, 0x30, + 0x32, 0x30, 0x34, 0x37, 0x20, 0x43, 0x20, 0x31, + 0x31, 0x2e, 0x33, 0x37, 0x35, 0x36, 0x34, 0x34, + 0x2c, 0x33, 0x32, 0x2e, 0x37, 0x31, 0x32, 0x37, + 0x38, 0x34, 0x20, 0x31, 0x31, 0x2e, 0x37, 0x32, + 0x39, 0x33, 0x33, 0x2c, 0x33, 0x32, 0x2e, 0x33, + 0x38, 0x32, 0x36, 0x37, 0x37, 0x20, 0x31, 0x32, + 0x2e, 0x32, 0x34, 0x38, 0x30, 0x36, 0x37, 0x2c, + 0x33, 0x32, 0x2e, 0x33, 0x38, 0x32, 0x36, 0x37, + 0x37, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3d, 0x22, 0x66, 0x6f, 0x6e, 0x74, 0x2d, + 0x73, 0x69, 0x7a, 0x65, 0x3a, 0x35, 0x2e, 0x38, + 0x39, 0x34, 0x37, 0x34, 0x37, 0x32, 0x36, 0x70, + 0x78, 0x3b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, + 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x6e, 0x6f, 0x72, + 0x6d, 0x61, 0x6c, 0x3b, 0x66, 0x6f, 0x6e, 0x74, + 0x2d, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, + 0x6e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x3b, 0x74, + 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6c, 0x69, 0x67, + 0x6e, 0x3a, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, + 0x3b, 0x74, 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6e, + 0x63, 0x68, 0x6f, 0x72, 0x3a, 0x6d, 0x69, 0x64, + 0x64, 0x6c, 0x65, 0x3b, 0x66, 0x69, 0x6c, 0x6c, + 0x3a, 0x23, 0x35, 0x35, 0x35, 0x37, 0x35, 0x33, + 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, + 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, + 0x3a, 0x31, 0x70, 0x78, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, + 0x63, 0x61, 0x70, 0x3a, 0x62, 0x75, 0x74, 0x74, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6c, 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, + 0x3a, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, + 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, + 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x3b, 0x66, + 0x6f, 0x6e, 0x74, 0x2d, 0x66, 0x61, 0x6d, 0x69, + 0x6c, 0x79, 0x3a, 0x4e, 0x69, 0x6d, 0x62, 0x75, + 0x73, 0x20, 0x53, 0x61, 0x6e, 0x73, 0x20, 0x4c, + 0x22, 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x74, 0x65, + 0x78, 0x74, 0x34, 0x34, 0x35, 0x33, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x31, 0x38, + 0x2e, 0x37, 0x33, 0x30, 0x35, 0x33, 0x35, 0x2c, + 0x33, 0x35, 0x2e, 0x36, 0x39, 0x31, 0x33, 0x35, + 0x34, 0x20, 0x4c, 0x20, 0x31, 0x35, 0x2e, 0x39, + 0x33, 0x36, 0x34, 0x32, 0x35, 0x2c, 0x33, 0x35, + 0x2e, 0x36, 0x39, 0x31, 0x33, 0x35, 0x34, 0x20, + 0x4c, 0x20, 0x31, 0x35, 0x2e, 0x39, 0x33, 0x36, + 0x34, 0x32, 0x35, 0x2c, 0x33, 0x36, 0x2e, 0x32, + 0x30, 0x34, 0x31, 0x39, 0x37, 0x20, 0x4c, 0x20, + 0x31, 0x38, 0x2e, 0x31, 0x39, 0x34, 0x31, 0x31, + 0x33, 0x2c, 0x33, 0x36, 0x2e, 0x32, 0x30, 0x34, + 0x31, 0x39, 0x37, 0x20, 0x43, 0x20, 0x31, 0x37, + 0x2e, 0x31, 0x39, 0x37, 0x39, 0x30, 0x32, 0x2c, + 0x33, 0x37, 0x2e, 0x36, 0x32, 0x34, 0x38, 0x33, + 0x20, 0x31, 0x36, 0x2e, 0x37, 0x39, 0x31, 0x31, + 0x36, 0x33, 0x2c, 0x33, 0x38, 0x2e, 0x34, 0x39, + 0x37, 0x32, 0x35, 0x35, 0x20, 0x31, 0x36, 0x2e, + 0x34, 0x37, 0x38, 0x37, 0x34, 0x32, 0x2c, 0x33, + 0x39, 0x2e, 0x38, 0x37, 0x30, 0x37, 0x33, 0x20, + 0x4c, 0x20, 0x31, 0x37, 0x2e, 0x30, 0x33, 0x32, + 0x38, 0x34, 0x38, 0x2c, 0x33, 0x39, 0x2e, 0x38, + 0x37, 0x30, 0x37, 0x33, 0x20, 0x43, 0x20, 0x31, + 0x37, 0x2e, 0x32, 0x36, 0x32, 0x37, 0x34, 0x33, + 0x2c, 0x33, 0x38, 0x2e, 0x35, 0x33, 0x32, 0x36, + 0x32, 0x34, 0x20, 0x31, 0x37, 0x2e, 0x37, 0x38, + 0x37, 0x33, 0x37, 0x36, 0x2c, 0x33, 0x37, 0x2e, + 0x33, 0x38, 0x33, 0x31, 0x34, 0x35, 0x20, 0x31, + 0x38, 0x2e, 0x37, 0x33, 0x30, 0x35, 0x33, 0x35, + 0x2c, 0x33, 0x36, 0x2e, 0x31, 0x32, 0x37, 0x35, + 0x36, 0x35, 0x20, 0x4c, 0x20, 0x31, 0x38, 0x2e, + 0x37, 0x33, 0x30, 0x35, 0x33, 0x35, 0x2c, 0x33, + 0x35, 0x2e, 0x36, 0x39, 0x31, 0x33, 0x35, 0x34, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, + 0x69, 0x7a, 0x65, 0x3a, 0x35, 0x2e, 0x38, 0x39, + 0x34, 0x37, 0x34, 0x37, 0x32, 0x36, 0x70, 0x78, + 0x3b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3a, 0x6e, 0x6f, 0x72, 0x6d, + 0x61, 0x6c, 0x3b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, + 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x6e, + 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x3b, 0x74, 0x65, + 0x78, 0x74, 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e, + 0x3a, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, + 0x74, 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6e, 0x63, + 0x68, 0x6f, 0x72, 0x3a, 0x6d, 0x69, 0x64, 0x64, + 0x6c, 0x65, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x3a, + 0x23, 0x35, 0x35, 0x35, 0x37, 0x35, 0x33, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, + 0x31, 0x70, 0x78, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, + 0x61, 0x70, 0x3a, 0x62, 0x75, 0x74, 0x74, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, + 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x64, + 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x69, + 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x3b, 0x66, 0x6f, + 0x6e, 0x74, 0x2d, 0x66, 0x61, 0x6d, 0x69, 0x6c, + 0x79, 0x3a, 0x4e, 0x69, 0x6d, 0x62, 0x75, 0x73, + 0x20, 0x53, 0x61, 0x6e, 0x73, 0x20, 0x4c, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x74, 0x65, 0x78, + 0x74, 0x34, 0x34, 0x35, 0x37, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x32, 0x36, 0x2e, + 0x32, 0x39, 0x36, 0x38, 0x34, 0x35, 0x2c, 0x33, + 0x38, 0x2e, 0x39, 0x31, 0x31, 0x32, 0x38, 0x38, + 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, 0x31, 0x39, + 0x36, 0x36, 0x33, 0x34, 0x2c, 0x33, 0x38, 0x2e, + 0x32, 0x32, 0x37, 0x34, 0x39, 0x38, 0x20, 0x32, + 0x35, 0x2e, 0x37, 0x34, 0x38, 0x36, 0x33, 0x32, + 0x2c, 0x33, 0x37, 0x2e, 0x38, 0x32, 0x30, 0x37, + 0x36, 0x20, 0x32, 0x35, 0x2e, 0x31, 0x31, 0x32, + 0x2c, 0x33, 0x37, 0x2e, 0x38, 0x32, 0x30, 0x37, + 0x36, 0x20, 0x43, 0x20, 0x32, 0x34, 0x2e, 0x36, + 0x35, 0x32, 0x32, 0x31, 0x2c, 0x33, 0x37, 0x2e, + 0x38, 0x32, 0x30, 0x37, 0x36, 0x20, 0x32, 0x34, + 0x2e, 0x32, 0x33, 0x39, 0x35, 0x37, 0x37, 0x2c, + 0x33, 0x38, 0x2e, 0x30, 0x34, 0x34, 0x37, 0x36, + 0x31, 0x20, 0x32, 0x33, 0x2e, 0x39, 0x39, 0x31, + 0x39, 0x39, 0x38, 0x2c, 0x33, 0x38, 0x2e, 0x34, + 0x31, 0x36, 0x31, 0x33, 0x20, 0x43, 0x20, 0x32, + 0x33, 0x2e, 0x37, 0x33, 0x32, 0x36, 0x33, 0x2c, + 0x33, 0x38, 0x2e, 0x38, 0x32, 0x32, 0x38, 0x36, + 0x37, 0x20, 0x32, 0x33, 0x2e, 0x36, 0x31, 0x34, + 0x37, 0x33, 0x34, 0x2c, 0x33, 0x39, 0x2e, 0x33, + 0x33, 0x35, 0x37, 0x31, 0x31, 0x20, 0x32, 0x33, + 0x2e, 0x36, 0x31, 0x34, 0x37, 0x33, 0x34, 0x2c, + 0x34, 0x30, 0x2e, 0x30, 0x39, 0x36, 0x31, 0x33, + 0x33, 0x20, 0x43, 0x20, 0x32, 0x33, 0x2e, 0x36, + 0x31, 0x34, 0x37, 0x33, 0x34, 0x2c, 0x34, 0x30, + 0x2e, 0x37, 0x39, 0x37, 0x36, 0x30, 0x37, 0x20, + 0x32, 0x33, 0x2e, 0x37, 0x32, 0x30, 0x38, 0x34, + 0x2c, 0x34, 0x31, 0x2e, 0x32, 0x34, 0x35, 0x36, + 0x30, 0x39, 0x20, 0x32, 0x33, 0x2e, 0x39, 0x36, + 0x38, 0x34, 0x31, 0x39, 0x2c, 0x34, 0x31, 0x2e, + 0x36, 0x31, 0x36, 0x39, 0x37, 0x37, 0x20, 0x43, + 0x20, 0x32, 0x34, 0x2e, 0x31, 0x39, 0x32, 0x34, + 0x32, 0x2c, 0x34, 0x31, 0x2e, 0x39, 0x35, 0x32, + 0x39, 0x37, 0x38, 0x20, 0x32, 0x34, 0x2e, 0x35, + 0x35, 0x37, 0x38, 0x39, 0x35, 0x2c, 0x34, 0x32, + 0x2e, 0x31, 0x33, 0x35, 0x37, 0x31, 0x35, 0x20, + 0x32, 0x35, 0x2e, 0x30, 0x31, 0x37, 0x36, 0x38, + 0x34, 0x2c, 0x34, 0x32, 0x2e, 0x31, 0x33, 0x35, + 0x37, 0x31, 0x35, 0x20, 0x43, 0x20, 0x32, 0x35, + 0x2e, 0x38, 0x31, 0x33, 0x34, 0x37, 0x34, 0x2c, + 0x34, 0x32, 0x2e, 0x31, 0x33, 0x35, 0x37, 0x31, + 0x35, 0x20, 0x32, 0x36, 0x2e, 0x33, 0x38, 0x35, + 0x32, 0x36, 0x36, 0x2c, 0x34, 0x31, 0x2e, 0x35, + 0x34, 0x36, 0x32, 0x34, 0x20, 0x32, 0x36, 0x2e, + 0x33, 0x38, 0x35, 0x32, 0x36, 0x36, 0x2c, 0x34, + 0x30, 0x2e, 0x37, 0x32, 0x36, 0x38, 0x37, 0x31, + 0x20, 0x43, 0x20, 0x32, 0x36, 0x2e, 0x33, 0x38, + 0x35, 0x32, 0x36, 0x36, 0x2c, 0x33, 0x39, 0x2e, + 0x39, 0x34, 0x38, 0x37, 0x36, 0x35, 0x20, 0x32, + 0x35, 0x2e, 0x38, 0x35, 0x34, 0x37, 0x33, 0x38, + 0x2c, 0x33, 0x39, 0x2e, 0x34, 0x30, 0x30, 0x35, + 0x35, 0x32, 0x20, 0x32, 0x35, 0x2e, 0x31, 0x30, + 0x36, 0x31, 0x30, 0x36, 0x2c, 0x33, 0x39, 0x2e, + 0x34, 0x30, 0x30, 0x35, 0x35, 0x32, 0x20, 0x43, + 0x20, 0x32, 0x34, 0x2e, 0x36, 0x39, 0x33, 0x34, + 0x37, 0x34, 0x2c, 0x33, 0x39, 0x2e, 0x34, 0x30, + 0x30, 0x35, 0x35, 0x32, 0x20, 0x32, 0x34, 0x2e, + 0x33, 0x36, 0x39, 0x32, 0x36, 0x32, 0x2c, 0x33, + 0x39, 0x2e, 0x35, 0x35, 0x39, 0x37, 0x31, 0x31, + 0x20, 0x32, 0x34, 0x2e, 0x31, 0x34, 0x35, 0x32, + 0x36, 0x32, 0x2c, 0x33, 0x39, 0x2e, 0x38, 0x36, + 0x36, 0x32, 0x33, 0x37, 0x20, 0x43, 0x20, 0x32, + 0x34, 0x2e, 0x31, 0x35, 0x31, 0x31, 0x35, 0x36, + 0x2c, 0x33, 0x38, 0x2e, 0x38, 0x34, 0x36, 0x34, + 0x34, 0x37, 0x20, 0x32, 0x34, 0x2e, 0x34, 0x38, + 0x31, 0x32, 0x36, 0x33, 0x2c, 0x33, 0x38, 0x2e, + 0x32, 0x38, 0x30, 0x35, 0x35, 0x20, 0x32, 0x35, + 0x2e, 0x30, 0x37, 0x36, 0x36, 0x33, 0x32, 0x2c, + 0x33, 0x38, 0x2e, 0x32, 0x38, 0x30, 0x35, 0x35, + 0x20, 0x43, 0x20, 0x32, 0x35, 0x2e, 0x34, 0x34, + 0x32, 0x31, 0x30, 0x36, 0x2c, 0x33, 0x38, 0x2e, + 0x32, 0x38, 0x30, 0x35, 0x35, 0x20, 0x32, 0x35, + 0x2e, 0x36, 0x39, 0x35, 0x35, 0x38, 0x2c, 0x33, + 0x38, 0x2e, 0x35, 0x31, 0x30, 0x34, 0x34, 0x36, + 0x20, 0x32, 0x35, 0x2e, 0x37, 0x37, 0x38, 0x31, + 0x30, 0x37, 0x2c, 0x33, 0x38, 0x2e, 0x39, 0x31, + 0x31, 0x32, 0x38, 0x38, 0x20, 0x4c, 0x20, 0x32, + 0x36, 0x2e, 0x32, 0x39, 0x36, 0x38, 0x34, 0x35, + 0x2c, 0x33, 0x38, 0x2e, 0x39, 0x31, 0x31, 0x32, + 0x38, 0x38, 0x20, 0x4d, 0x20, 0x32, 0x35, 0x2e, + 0x30, 0x34, 0x31, 0x32, 0x36, 0x33, 0x2c, 0x33, + 0x39, 0x2e, 0x38, 0x36, 0x30, 0x33, 0x34, 0x33, + 0x20, 0x43, 0x20, 0x32, 0x35, 0x2e, 0x35, 0x34, + 0x32, 0x33, 0x31, 0x36, 0x2c, 0x33, 0x39, 0x2e, + 0x38, 0x36, 0x30, 0x33, 0x34, 0x33, 0x20, 0x32, + 0x35, 0x2e, 0x38, 0x35, 0x34, 0x37, 0x33, 0x38, + 0x2c, 0x34, 0x30, 0x2e, 0x32, 0x30, 0x38, 0x31, + 0x33, 0x33, 0x20, 0x32, 0x35, 0x2e, 0x38, 0x35, + 0x34, 0x37, 0x33, 0x38, 0x2c, 0x34, 0x30, 0x2e, + 0x37, 0x36, 0x38, 0x31, 0x33, 0x34, 0x20, 0x43, + 0x20, 0x32, 0x35, 0x2e, 0x38, 0x35, 0x34, 0x37, + 0x33, 0x38, 0x2c, 0x34, 0x31, 0x2e, 0x32, 0x39, + 0x32, 0x37, 0x36, 0x36, 0x20, 0x32, 0x35, 0x2e, + 0x35, 0x30, 0x31, 0x30, 0x35, 0x33, 0x2c, 0x34, + 0x31, 0x2e, 0x36, 0x37, 0x35, 0x39, 0x32, 0x35, + 0x20, 0x32, 0x35, 0x2e, 0x30, 0x32, 0x33, 0x35, + 0x37, 0x39, 0x2c, 0x34, 0x31, 0x2e, 0x36, 0x37, + 0x35, 0x39, 0x32, 0x35, 0x20, 0x43, 0x20, 0x32, + 0x34, 0x2e, 0x35, 0x34, 0x30, 0x32, 0x31, 0x2c, + 0x34, 0x31, 0x2e, 0x36, 0x37, 0x35, 0x39, 0x32, + 0x35, 0x20, 0x32, 0x34, 0x2e, 0x31, 0x37, 0x34, + 0x37, 0x33, 0x35, 0x2c, 0x34, 0x31, 0x2e, 0x32, + 0x37, 0x35, 0x30, 0x38, 0x32, 0x20, 0x32, 0x34, + 0x2e, 0x31, 0x37, 0x34, 0x37, 0x33, 0x35, 0x2c, + 0x34, 0x30, 0x2e, 0x37, 0x33, 0x38, 0x36, 0x36, + 0x20, 0x43, 0x20, 0x32, 0x34, 0x2e, 0x31, 0x37, + 0x34, 0x37, 0x33, 0x35, 0x2c, 0x34, 0x30, 0x2e, + 0x32, 0x31, 0x39, 0x39, 0x32, 0x33, 0x20, 0x32, + 0x34, 0x2e, 0x35, 0x32, 0x38, 0x34, 0x32, 0x31, + 0x2c, 0x33, 0x39, 0x2e, 0x38, 0x36, 0x30, 0x33, + 0x34, 0x33, 0x20, 0x32, 0x35, 0x2e, 0x30, 0x34, + 0x31, 0x32, 0x36, 0x33, 0x2c, 0x33, 0x39, 0x2e, + 0x38, 0x36, 0x30, 0x33, 0x34, 0x33, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, + 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x69, 0x7a, + 0x65, 0x3a, 0x35, 0x2e, 0x38, 0x39, 0x34, 0x37, + 0x34, 0x37, 0x32, 0x36, 0x70, 0x78, 0x3b, 0x66, + 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3a, 0x6e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, + 0x3b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x77, 0x65, + 0x69, 0x67, 0x68, 0x74, 0x3a, 0x6e, 0x6f, 0x72, + 0x6d, 0x61, 0x6c, 0x3b, 0x74, 0x65, 0x78, 0x74, + 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x3a, 0x63, + 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x74, 0x65, + 0x78, 0x74, 0x2d, 0x61, 0x6e, 0x63, 0x68, 0x6f, + 0x72, 0x3a, 0x6d, 0x69, 0x64, 0x64, 0x6c, 0x65, + 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x35, + 0x35, 0x35, 0x37, 0x35, 0x33, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, 0x70, + 0x78, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, 0x70, + 0x3a, 0x62, 0x75, 0x74, 0x74, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, + 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, 0x6d, 0x69, + 0x74, 0x65, 0x72, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x64, 0x69, 0x73, + 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x69, 0x6e, 0x6c, + 0x69, 0x6e, 0x65, 0x3b, 0x66, 0x6f, 0x6e, 0x74, + 0x2d, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x3a, + 0x4e, 0x69, 0x6d, 0x62, 0x75, 0x73, 0x20, 0x53, + 0x61, 0x6e, 0x73, 0x20, 0x4c, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x74, 0x65, 0x78, 0x74, 0x34, + 0x34, 0x36, 0x31, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x33, 0x33, 0x2e, 0x36, 0x30, + 0x32, 0x34, 0x35, 0x35, 0x2c, 0x33, 0x35, 0x2e, + 0x38, 0x38, 0x33, 0x37, 0x39, 0x20, 0x4c, 0x20, + 0x33, 0x31, 0x2e, 0x34, 0x34, 0x34, 0x39, 0x37, + 0x37, 0x2c, 0x33, 0x35, 0x2e, 0x38, 0x38, 0x33, + 0x37, 0x39, 0x20, 0x4c, 0x20, 0x33, 0x31, 0x2e, + 0x31, 0x33, 0x32, 0x35, 0x35, 0x35, 0x2c, 0x33, + 0x38, 0x2e, 0x31, 0x35, 0x39, 0x31, 0x36, 0x33, + 0x20, 0x4c, 0x20, 0x33, 0x31, 0x2e, 0x36, 0x31, + 0x30, 0x30, 0x33, 0x2c, 0x33, 0x38, 0x2e, 0x31, + 0x35, 0x39, 0x31, 0x36, 0x33, 0x20, 0x43, 0x20, + 0x33, 0x31, 0x2e, 0x38, 0x35, 0x31, 0x37, 0x31, + 0x34, 0x2c, 0x33, 0x37, 0x2e, 0x38, 0x37, 0x30, + 0x33, 0x32, 0x31, 0x20, 0x33, 0x32, 0x2e, 0x30, + 0x35, 0x32, 0x31, 0x33, 0x36, 0x2c, 0x33, 0x37, + 0x2e, 0x37, 0x37, 0x30, 0x31, 0x31, 0x20, 0x33, + 0x32, 0x2e, 0x33, 0x37, 0x36, 0x33, 0x34, 0x37, + 0x2c, 0x33, 0x37, 0x2e, 0x37, 0x37, 0x30, 0x31, + 0x31, 0x20, 0x43, 0x20, 0x33, 0x32, 0x2e, 0x39, + 0x33, 0x36, 0x33, 0x34, 0x38, 0x2c, 0x33, 0x37, + 0x2e, 0x37, 0x37, 0x30, 0x31, 0x31, 0x20, 0x33, + 0x33, 0x2e, 0x32, 0x39, 0x30, 0x30, 0x33, 0x33, + 0x2c, 0x33, 0x38, 0x2e, 0x31, 0x35, 0x33, 0x32, + 0x36, 0x39, 0x20, 0x33, 0x33, 0x2e, 0x32, 0x39, + 0x30, 0x30, 0x33, 0x33, 0x2c, 0x33, 0x38, 0x2e, + 0x37, 0x37, 0x32, 0x32, 0x31, 0x37, 0x20, 0x43, + 0x20, 0x33, 0x33, 0x2e, 0x32, 0x39, 0x30, 0x30, + 0x33, 0x33, 0x2c, 0x33, 0x39, 0x2e, 0x33, 0x37, + 0x33, 0x34, 0x38, 0x20, 0x33, 0x32, 0x2e, 0x39, + 0x34, 0x32, 0x32, 0x34, 0x32, 0x2c, 0x33, 0x39, + 0x2e, 0x37, 0x33, 0x38, 0x39, 0x35, 0x35, 0x20, + 0x33, 0x32, 0x2e, 0x33, 0x37, 0x36, 0x33, 0x34, + 0x37, 0x2c, 0x33, 0x39, 0x2e, 0x37, 0x33, 0x38, + 0x39, 0x35, 0x35, 0x20, 0x43, 0x20, 0x33, 0x31, + 0x2e, 0x39, 0x32, 0x32, 0x34, 0x35, 0x32, 0x2c, + 0x33, 0x39, 0x2e, 0x37, 0x33, 0x38, 0x39, 0x35, + 0x35, 0x20, 0x33, 0x31, 0x2e, 0x36, 0x34, 0x35, + 0x33, 0x39, 0x38, 0x2c, 0x33, 0x39, 0x2e, 0x35, + 0x30, 0x39, 0x30, 0x35, 0x39, 0x20, 0x33, 0x31, + 0x2e, 0x35, 0x32, 0x31, 0x36, 0x30, 0x39, 0x2c, + 0x33, 0x39, 0x2e, 0x30, 0x33, 0x37, 0x34, 0x38, + 0x20, 0x4c, 0x20, 0x33, 0x31, 0x2e, 0x30, 0x30, + 0x32, 0x38, 0x37, 0x31, 0x2c, 0x33, 0x39, 0x2e, + 0x30, 0x33, 0x37, 0x34, 0x38, 0x20, 0x43, 0x20, + 0x33, 0x31, 0x2e, 0x30, 0x37, 0x33, 0x36, 0x30, + 0x38, 0x2c, 0x33, 0x39, 0x2e, 0x33, 0x37, 0x39, + 0x33, 0x37, 0x35, 0x20, 0x33, 0x31, 0x2e, 0x31, + 0x33, 0x32, 0x35, 0x35, 0x36, 0x2c, 0x33, 0x39, + 0x2e, 0x35, 0x34, 0x34, 0x34, 0x32, 0x39, 0x20, + 0x33, 0x31, 0x2e, 0x32, 0x35, 0x36, 0x33, 0x34, + 0x35, 0x2c, 0x33, 0x39, 0x2e, 0x36, 0x39, 0x37, + 0x36, 0x39, 0x32, 0x20, 0x43, 0x20, 0x33, 0x31, + 0x2e, 0x34, 0x39, 0x32, 0x31, 0x33, 0x35, 0x2c, + 0x34, 0x30, 0x2e, 0x30, 0x31, 0x36, 0x30, 0x30, + 0x38, 0x20, 0x33, 0x31, 0x2e, 0x39, 0x31, 0x36, + 0x35, 0x35, 0x37, 0x2c, 0x34, 0x30, 0x2e, 0x31, + 0x39, 0x38, 0x37, 0x34, 0x35, 0x20, 0x33, 0x32, + 0x2e, 0x33, 0x38, 0x38, 0x31, 0x33, 0x37, 0x2c, + 0x34, 0x30, 0x2e, 0x31, 0x39, 0x38, 0x37, 0x34, + 0x35, 0x20, 0x43, 0x20, 0x33, 0x33, 0x2e, 0x32, + 0x33, 0x31, 0x30, 0x38, 0x35, 0x2c, 0x34, 0x30, + 0x2e, 0x31, 0x39, 0x38, 0x37, 0x34, 0x35, 0x20, + 0x33, 0x33, 0x2e, 0x38, 0x32, 0x30, 0x35, 0x36, + 0x2c, 0x33, 0x39, 0x2e, 0x35, 0x38, 0x35, 0x36, + 0x39, 0x31, 0x20, 0x33, 0x33, 0x2e, 0x38, 0x32, + 0x30, 0x35, 0x36, 0x2c, 0x33, 0x38, 0x2e, 0x37, + 0x30, 0x31, 0x34, 0x38, 0x20, 0x43, 0x20, 0x33, + 0x33, 0x2e, 0x38, 0x32, 0x30, 0x35, 0x36, 0x2c, + 0x33, 0x37, 0x2e, 0x38, 0x37, 0x36, 0x32, 0x31, + 0x36, 0x20, 0x33, 0x33, 0x2e, 0x32, 0x37, 0x32, + 0x33, 0x34, 0x38, 0x2c, 0x33, 0x37, 0x2e, 0x33, + 0x31, 0x30, 0x33, 0x31, 0x39, 0x20, 0x33, 0x32, + 0x2e, 0x34, 0x37, 0x30, 0x36, 0x36, 0x33, 0x2c, + 0x33, 0x37, 0x2e, 0x33, 0x31, 0x30, 0x33, 0x31, + 0x39, 0x20, 0x43, 0x20, 0x33, 0x32, 0x2e, 0x31, + 0x37, 0x35, 0x39, 0x32, 0x36, 0x2c, 0x33, 0x37, + 0x2e, 0x33, 0x31, 0x30, 0x33, 0x31, 0x39, 0x20, + 0x33, 0x31, 0x2e, 0x39, 0x34, 0x30, 0x31, 0x33, + 0x36, 0x2c, 0x33, 0x37, 0x2e, 0x33, 0x38, 0x36, + 0x39, 0x35, 0x31, 0x20, 0x33, 0x31, 0x2e, 0x36, + 0x39, 0x38, 0x34, 0x35, 0x31, 0x2c, 0x33, 0x37, + 0x2e, 0x35, 0x36, 0x33, 0x37, 0x39, 0x33, 0x20, + 0x4c, 0x20, 0x33, 0x31, 0x2e, 0x38, 0x36, 0x33, + 0x35, 0x30, 0x34, 0x2c, 0x33, 0x36, 0x2e, 0x33, + 0x39, 0x36, 0x36, 0x33, 0x33, 0x20, 0x4c, 0x20, + 0x33, 0x33, 0x2e, 0x36, 0x30, 0x32, 0x34, 0x35, + 0x35, 0x2c, 0x33, 0x36, 0x2e, 0x33, 0x39, 0x36, + 0x36, 0x33, 0x33, 0x20, 0x4c, 0x20, 0x33, 0x33, + 0x2e, 0x36, 0x30, 0x32, 0x34, 0x35, 0x35, 0x2c, + 0x33, 0x35, 0x2e, 0x38, 0x38, 0x33, 0x37, 0x39, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, + 0x69, 0x7a, 0x65, 0x3a, 0x35, 0x2e, 0x38, 0x39, + 0x34, 0x37, 0x34, 0x37, 0x32, 0x36, 0x70, 0x78, + 0x3b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3a, 0x6e, 0x6f, 0x72, 0x6d, + 0x61, 0x6c, 0x3b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, + 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x6e, + 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x3b, 0x74, 0x65, + 0x78, 0x74, 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e, + 0x3a, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, + 0x74, 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6e, 0x63, + 0x68, 0x6f, 0x72, 0x3a, 0x6d, 0x69, 0x64, 0x64, + 0x6c, 0x65, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x3a, + 0x23, 0x35, 0x35, 0x35, 0x37, 0x35, 0x33, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, + 0x31, 0x70, 0x78, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, + 0x61, 0x70, 0x3a, 0x62, 0x75, 0x74, 0x74, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, + 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x64, + 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x69, + 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x3b, 0x66, 0x6f, + 0x6e, 0x74, 0x2d, 0x66, 0x61, 0x6d, 0x69, 0x6c, + 0x79, 0x3a, 0x4e, 0x69, 0x6d, 0x62, 0x75, 0x73, + 0x20, 0x53, 0x61, 0x6e, 0x73, 0x20, 0x4c, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x74, 0x65, 0x78, + 0x74, 0x34, 0x34, 0x36, 0x35, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x33, 0x38, 0x2e, + 0x32, 0x38, 0x38, 0x35, 0x39, 0x31, 0x2c, 0x33, + 0x33, 0x2e, 0x36, 0x32, 0x30, 0x31, 0x33, 0x20, + 0x4c, 0x20, 0x33, 0x38, 0x2e, 0x32, 0x38, 0x38, + 0x35, 0x39, 0x31, 0x2c, 0x33, 0x34, 0x2e, 0x36, + 0x32, 0x32, 0x32, 0x33, 0x37, 0x20, 0x4c, 0x20, + 0x33, 0x38, 0x2e, 0x38, 0x30, 0x37, 0x33, 0x32, + 0x39, 0x2c, 0x33, 0x34, 0x2e, 0x36, 0x32, 0x32, + 0x32, 0x33, 0x37, 0x20, 0x4c, 0x20, 0x33, 0x38, + 0x2e, 0x38, 0x30, 0x37, 0x33, 0x32, 0x39, 0x2c, + 0x33, 0x33, 0x2e, 0x36, 0x32, 0x30, 0x31, 0x33, + 0x20, 0x4c, 0x20, 0x33, 0x39, 0x2e, 0x34, 0x32, + 0x36, 0x32, 0x37, 0x38, 0x2c, 0x33, 0x33, 0x2e, + 0x36, 0x32, 0x30, 0x31, 0x33, 0x20, 0x4c, 0x20, + 0x33, 0x39, 0x2e, 0x34, 0x32, 0x36, 0x32, 0x37, + 0x38, 0x2c, 0x33, 0x33, 0x2e, 0x31, 0x35, 0x34, + 0x34, 0x34, 0x35, 0x20, 0x4c, 0x20, 0x33, 0x38, + 0x2e, 0x38, 0x30, 0x37, 0x33, 0x32, 0x39, 0x2c, + 0x33, 0x33, 0x2e, 0x31, 0x35, 0x34, 0x34, 0x34, + 0x35, 0x20, 0x4c, 0x20, 0x33, 0x38, 0x2e, 0x38, + 0x30, 0x37, 0x33, 0x32, 0x39, 0x2c, 0x33, 0x30, + 0x2e, 0x34, 0x34, 0x32, 0x38, 0x36, 0x31, 0x20, + 0x4c, 0x20, 0x33, 0x38, 0x2e, 0x34, 0x32, 0x34, + 0x31, 0x37, 0x31, 0x2c, 0x33, 0x30, 0x2e, 0x34, + 0x34, 0x32, 0x38, 0x36, 0x31, 0x20, 0x4c, 0x20, + 0x33, 0x36, 0x2e, 0x35, 0x32, 0x36, 0x30, 0x36, + 0x32, 0x2c, 0x33, 0x33, 0x2e, 0x30, 0x37, 0x31, + 0x39, 0x31, 0x38, 0x20, 0x4c, 0x20, 0x33, 0x36, + 0x2e, 0x35, 0x32, 0x36, 0x30, 0x36, 0x32, 0x2c, + 0x33, 0x33, 0x2e, 0x36, 0x32, 0x30, 0x31, 0x33, + 0x20, 0x4c, 0x20, 0x33, 0x38, 0x2e, 0x32, 0x38, + 0x38, 0x35, 0x39, 0x31, 0x2c, 0x33, 0x33, 0x2e, + 0x36, 0x32, 0x30, 0x31, 0x33, 0x20, 0x4d, 0x20, + 0x33, 0x38, 0x2e, 0x32, 0x38, 0x38, 0x35, 0x39, + 0x31, 0x2c, 0x33, 0x33, 0x2e, 0x31, 0x35, 0x34, + 0x34, 0x34, 0x35, 0x20, 0x4c, 0x20, 0x33, 0x36, + 0x2e, 0x39, 0x37, 0x39, 0x39, 0x35, 0x38, 0x2c, + 0x33, 0x33, 0x2e, 0x31, 0x35, 0x34, 0x34, 0x34, + 0x35, 0x20, 0x4c, 0x20, 0x33, 0x38, 0x2e, 0x32, + 0x38, 0x38, 0x35, 0x39, 0x31, 0x2c, 0x33, 0x31, + 0x2e, 0x33, 0x32, 0x37, 0x30, 0x37, 0x33, 0x20, + 0x4c, 0x20, 0x33, 0x38, 0x2e, 0x32, 0x38, 0x38, + 0x35, 0x39, 0x31, 0x2c, 0x33, 0x33, 0x2e, 0x31, + 0x35, 0x34, 0x34, 0x34, 0x35, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, + 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x69, 0x7a, 0x65, + 0x3a, 0x35, 0x2e, 0x38, 0x39, 0x34, 0x37, 0x34, + 0x37, 0x32, 0x36, 0x70, 0x78, 0x3b, 0x66, 0x6f, + 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3a, 0x6e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x3b, + 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x77, 0x65, 0x69, + 0x67, 0x68, 0x74, 0x3a, 0x6e, 0x6f, 0x72, 0x6d, + 0x61, 0x6c, 0x3b, 0x74, 0x65, 0x78, 0x74, 0x2d, + 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x3a, 0x63, 0x65, + 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x74, 0x65, 0x78, + 0x74, 0x2d, 0x61, 0x6e, 0x63, 0x68, 0x6f, 0x72, + 0x3a, 0x6d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x35, 0x35, + 0x35, 0x37, 0x35, 0x33, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, + 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, 0x70, 0x78, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, 0x70, 0x3a, + 0x62, 0x75, 0x74, 0x74, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, + 0x6a, 0x6f, 0x69, 0x6e, 0x3a, 0x6d, 0x69, 0x74, + 0x65, 0x72, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x3b, 0x64, 0x69, 0x73, 0x70, + 0x6c, 0x61, 0x79, 0x3a, 0x69, 0x6e, 0x6c, 0x69, + 0x6e, 0x65, 0x3b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, + 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x3a, 0x4e, + 0x69, 0x6d, 0x62, 0x75, 0x73, 0x20, 0x53, 0x61, + 0x6e, 0x73, 0x20, 0x4c, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, + 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x64, + 0x3d, 0x22, 0x74, 0x65, 0x78, 0x74, 0x34, 0x34, + 0x36, 0x39, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, + 0x4d, 0x20, 0x33, 0x39, 0x2e, 0x36, 0x37, 0x34, + 0x37, 0x32, 0x36, 0x2c, 0x32, 0x35, 0x2e, 0x32, + 0x31, 0x34, 0x32, 0x35, 0x33, 0x20, 0x4c, 0x20, + 0x33, 0x39, 0x2e, 0x37, 0x33, 0x39, 0x35, 0x36, + 0x38, 0x2c, 0x32, 0x35, 0x2e, 0x32, 0x31, 0x34, + 0x32, 0x35, 0x33, 0x20, 0x4c, 0x20, 0x33, 0x39, + 0x2e, 0x39, 0x35, 0x37, 0x36, 0x37, 0x34, 0x2c, + 0x32, 0x35, 0x2e, 0x32, 0x30, 0x38, 0x33, 0x35, + 0x38, 0x20, 0x43, 0x20, 0x34, 0x30, 0x2e, 0x35, + 0x32, 0x39, 0x34, 0x36, 0x34, 0x2c, 0x32, 0x35, + 0x2e, 0x32, 0x30, 0x38, 0x33, 0x35, 0x38, 0x20, + 0x34, 0x30, 0x2e, 0x38, 0x32, 0x34, 0x32, 0x30, + 0x32, 0x2c, 0x32, 0x35, 0x2e, 0x34, 0x36, 0x37, + 0x37, 0x32, 0x37, 0x20, 0x34, 0x30, 0x2e, 0x38, + 0x32, 0x34, 0x32, 0x30, 0x32, 0x2c, 0x32, 0x35, + 0x2e, 0x39, 0x36, 0x38, 0x37, 0x38, 0x20, 0x43, + 0x20, 0x34, 0x30, 0x2e, 0x38, 0x32, 0x34, 0x32, + 0x30, 0x32, 0x2c, 0x32, 0x36, 0x2e, 0x34, 0x39, + 0x33, 0x34, 0x31, 0x32, 0x20, 0x34, 0x30, 0x2e, + 0x34, 0x39, 0x39, 0x39, 0x39, 0x2c, 0x32, 0x36, + 0x2e, 0x38, 0x30, 0x35, 0x38, 0x33, 0x34, 0x20, + 0x33, 0x39, 0x2e, 0x39, 0x35, 0x37, 0x36, 0x37, + 0x34, 0x2c, 0x32, 0x36, 0x2e, 0x38, 0x30, 0x35, + 0x38, 0x33, 0x34, 0x20, 0x43, 0x20, 0x33, 0x39, + 0x2e, 0x33, 0x39, 0x31, 0x37, 0x37, 0x39, 0x2c, + 0x32, 0x36, 0x2e, 0x38, 0x30, 0x35, 0x38, 0x33, + 0x34, 0x20, 0x33, 0x39, 0x2e, 0x31, 0x31, 0x34, + 0x37, 0x32, 0x35, 0x2c, 0x32, 0x36, 0x2e, 0x35, + 0x32, 0x32, 0x38, 0x38, 0x36, 0x20, 0x33, 0x39, + 0x2e, 0x30, 0x37, 0x39, 0x33, 0x35, 0x36, 0x2c, + 0x32, 0x35, 0x2e, 0x39, 0x31, 0x35, 0x37, 0x32, + 0x38, 0x20, 0x4c, 0x20, 0x33, 0x38, 0x2e, 0x35, + 0x36, 0x30, 0x36, 0x31, 0x39, 0x2c, 0x32, 0x35, + 0x2e, 0x39, 0x31, 0x35, 0x37, 0x32, 0x38, 0x20, + 0x43, 0x20, 0x33, 0x38, 0x2e, 0x35, 0x38, 0x34, + 0x31, 0x39, 0x38, 0x2c, 0x32, 0x36, 0x2e, 0x32, + 0x35, 0x31, 0x37, 0x32, 0x38, 0x20, 0x33, 0x38, + 0x2e, 0x36, 0x34, 0x33, 0x31, 0x34, 0x35, 0x2c, + 0x32, 0x36, 0x2e, 0x34, 0x36, 0x39, 0x38, 0x33, + 0x34, 0x20, 0x33, 0x38, 0x2e, 0x37, 0x34, 0x33, + 0x33, 0x35, 0x36, 0x2c, 0x32, 0x36, 0x2e, 0x36, + 0x35, 0x38, 0x34, 0x36, 0x36, 0x20, 0x43, 0x20, + 0x33, 0x38, 0x2e, 0x39, 0x35, 0x35, 0x35, 0x36, + 0x36, 0x2c, 0x32, 0x37, 0x2e, 0x30, 0x35, 0x39, + 0x33, 0x30, 0x38, 0x20, 0x33, 0x39, 0x2e, 0x33, + 0x36, 0x38, 0x32, 0x2c, 0x32, 0x37, 0x2e, 0x32, + 0x36, 0x35, 0x36, 0x32, 0x35, 0x20, 0x33, 0x39, + 0x2e, 0x39, 0x33, 0x39, 0x39, 0x38, 0x39, 0x2c, + 0x32, 0x37, 0x2e, 0x32, 0x36, 0x35, 0x36, 0x32, + 0x35, 0x20, 0x43, 0x20, 0x34, 0x30, 0x2e, 0x38, + 0x30, 0x30, 0x36, 0x32, 0x32, 0x2c, 0x32, 0x37, + 0x2e, 0x32, 0x36, 0x35, 0x36, 0x32, 0x35, 0x20, + 0x34, 0x31, 0x2e, 0x33, 0x35, 0x34, 0x37, 0x32, + 0x39, 0x2c, 0x32, 0x36, 0x2e, 0x37, 0x35, 0x32, + 0x37, 0x38, 0x31, 0x20, 0x34, 0x31, 0x2e, 0x33, + 0x35, 0x34, 0x37, 0x32, 0x39, 0x2c, 0x32, 0x35, + 0x2e, 0x39, 0x36, 0x32, 0x38, 0x38, 0x36, 0x20, + 0x43, 0x20, 0x34, 0x31, 0x2e, 0x33, 0x35, 0x34, + 0x37, 0x32, 0x39, 0x2c, 0x32, 0x35, 0x2e, 0x34, + 0x33, 0x32, 0x33, 0x35, 0x39, 0x20, 0x34, 0x31, + 0x2e, 0x31, 0x34, 0x38, 0x34, 0x31, 0x32, 0x2c, + 0x32, 0x35, 0x2e, 0x31, 0x33, 0x37, 0x36, 0x32, + 0x31, 0x20, 0x34, 0x30, 0x2e, 0x36, 0x34, 0x37, + 0x33, 0x35, 0x39, 0x2c, 0x32, 0x34, 0x2e, 0x39, + 0x36, 0x36, 0x36, 0x37, 0x33, 0x20, 0x43, 0x20, + 0x34, 0x31, 0x2e, 0x30, 0x33, 0x36, 0x34, 0x31, + 0x32, 0x2c, 0x32, 0x34, 0x2e, 0x38, 0x31, 0x33, + 0x34, 0x31, 0x20, 0x34, 0x31, 0x2e, 0x32, 0x33, + 0x30, 0x39, 0x33, 0x39, 0x2c, 0x32, 0x34, 0x2e, + 0x35, 0x31, 0x38, 0x36, 0x37, 0x32, 0x20, 0x34, + 0x31, 0x2e, 0x32, 0x33, 0x30, 0x39, 0x33, 0x39, + 0x2c, 0x32, 0x34, 0x2e, 0x31, 0x30, 0x30, 0x31, + 0x34, 0x35, 0x20, 0x43, 0x20, 0x34, 0x31, 0x2e, + 0x32, 0x33, 0x30, 0x39, 0x33, 0x39, 0x2c, 0x32, + 0x33, 0x2e, 0x33, 0x38, 0x30, 0x39, 0x38, 0x37, + 0x20, 0x34, 0x30, 0x2e, 0x37, 0x35, 0x33, 0x34, + 0x36, 0x34, 0x2c, 0x32, 0x32, 0x2e, 0x39, 0x35, + 0x30, 0x36, 0x37, 0x20, 0x33, 0x39, 0x2e, 0x39, + 0x35, 0x37, 0x36, 0x37, 0x34, 0x2c, 0x32, 0x32, + 0x2e, 0x39, 0x35, 0x30, 0x36, 0x37, 0x20, 0x43, + 0x20, 0x33, 0x39, 0x2e, 0x31, 0x31, 0x34, 0x37, + 0x32, 0x36, 0x2c, 0x32, 0x32, 0x2e, 0x39, 0x35, + 0x30, 0x36, 0x37, 0x20, 0x33, 0x38, 0x2e, 0x36, + 0x36, 0x36, 0x37, 0x32, 0x34, 0x2c, 0x32, 0x33, + 0x2e, 0x34, 0x31, 0x30, 0x34, 0x36, 0x31, 0x20, + 0x33, 0x38, 0x2e, 0x36, 0x34, 0x39, 0x30, 0x34, + 0x2c, 0x32, 0x34, 0x2e, 0x33, 0x30, 0x30, 0x35, + 0x36, 0x37, 0x20, 0x4c, 0x20, 0x33, 0x39, 0x2e, + 0x31, 0x36, 0x37, 0x37, 0x37, 0x38, 0x2c, 0x32, + 0x34, 0x2e, 0x33, 0x30, 0x30, 0x35, 0x36, 0x37, + 0x20, 0x43, 0x20, 0x33, 0x39, 0x2e, 0x31, 0x37, + 0x33, 0x36, 0x37, 0x32, 0x2c, 0x32, 0x34, 0x2e, + 0x30, 0x34, 0x37, 0x30, 0x39, 0x33, 0x20, 0x33, + 0x39, 0x2e, 0x31, 0x39, 0x37, 0x32, 0x35, 0x31, + 0x2c, 0x32, 0x33, 0x2e, 0x39, 0x30, 0x35, 0x36, + 0x31, 0x39, 0x20, 0x33, 0x39, 0x2e, 0x32, 0x36, + 0x32, 0x30, 0x39, 0x34, 0x2c, 0x32, 0x33, 0x2e, + 0x37, 0x37, 0x35, 0x39, 0x33, 0x34, 0x20, 0x43, + 0x20, 0x33, 0x39, 0x2e, 0x33, 0x37, 0x39, 0x39, + 0x38, 0x38, 0x2c, 0x32, 0x33, 0x2e, 0x35, 0x34, + 0x36, 0x30, 0x33, 0x39, 0x20, 0x33, 0x39, 0x2e, + 0x36, 0x33, 0x39, 0x33, 0x35, 0x38, 0x2c, 0x32, + 0x33, 0x2e, 0x34, 0x30, 0x34, 0x35, 0x36, 0x35, + 0x20, 0x33, 0x39, 0x2e, 0x39, 0x36, 0x33, 0x35, + 0x36, 0x38, 0x2c, 0x32, 0x33, 0x2e, 0x34, 0x30, + 0x34, 0x35, 0x36, 0x35, 0x20, 0x43, 0x20, 0x34, + 0x30, 0x2e, 0x34, 0x32, 0x33, 0x33, 0x35, 0x38, + 0x2c, 0x32, 0x33, 0x2e, 0x34, 0x30, 0x34, 0x35, + 0x36, 0x35, 0x20, 0x34, 0x30, 0x2e, 0x37, 0x30, + 0x30, 0x34, 0x31, 0x32, 0x2c, 0x32, 0x33, 0x2e, + 0x36, 0x37, 0x35, 0x37, 0x32, 0x34, 0x20, 0x34, + 0x30, 0x2e, 0x37, 0x30, 0x30, 0x34, 0x31, 0x32, + 0x2c, 0x32, 0x34, 0x2e, 0x31, 0x31, 0x37, 0x38, + 0x33, 0x20, 0x43, 0x20, 0x34, 0x30, 0x2e, 0x37, + 0x30, 0x30, 0x34, 0x31, 0x32, 0x2c, 0x32, 0x34, + 0x2e, 0x34, 0x31, 0x32, 0x35, 0x36, 0x37, 0x20, + 0x34, 0x30, 0x2e, 0x35, 0x39, 0x34, 0x33, 0x30, + 0x36, 0x2c, 0x32, 0x34, 0x2e, 0x35, 0x38, 0x39, + 0x34, 0x31, 0x20, 0x34, 0x30, 0x2e, 0x33, 0x36, + 0x34, 0x34, 0x31, 0x31, 0x2c, 0x32, 0x34, 0x2e, + 0x36, 0x38, 0x33, 0x37, 0x32, 0x35, 0x20, 0x43, + 0x20, 0x34, 0x30, 0x2e, 0x32, 0x32, 0x32, 0x39, + 0x33, 0x37, 0x2c, 0x32, 0x34, 0x2e, 0x37, 0x34, + 0x32, 0x36, 0x37, 0x33, 0x20, 0x34, 0x30, 0x2e, + 0x30, 0x34, 0x30, 0x32, 0x2c, 0x32, 0x34, 0x2e, + 0x37, 0x36, 0x36, 0x32, 0x35, 0x32, 0x20, 0x33, + 0x39, 0x2e, 0x36, 0x37, 0x34, 0x37, 0x32, 0x36, + 0x2c, 0x32, 0x34, 0x2e, 0x37, 0x37, 0x32, 0x31, + 0x34, 0x37, 0x20, 0x4c, 0x20, 0x33, 0x39, 0x2e, + 0x36, 0x37, 0x34, 0x37, 0x32, 0x36, 0x2c, 0x32, + 0x35, 0x2e, 0x32, 0x31, 0x34, 0x32, 0x35, 0x33, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3d, 0x22, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, + 0x69, 0x7a, 0x65, 0x3a, 0x35, 0x2e, 0x38, 0x39, + 0x34, 0x37, 0x34, 0x37, 0x32, 0x36, 0x70, 0x78, + 0x3b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3a, 0x6e, 0x6f, 0x72, 0x6d, + 0x61, 0x6c, 0x3b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, + 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x6e, + 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x3b, 0x74, 0x65, + 0x78, 0x74, 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e, + 0x3a, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, + 0x74, 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6e, 0x63, + 0x68, 0x6f, 0x72, 0x3a, 0x6d, 0x69, 0x64, 0x64, + 0x6c, 0x65, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x3a, + 0x23, 0x35, 0x35, 0x35, 0x37, 0x35, 0x33, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, + 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, + 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, + 0x31, 0x70, 0x78, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, + 0x61, 0x70, 0x3a, 0x62, 0x75, 0x74, 0x74, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, + 0x69, 0x6e, 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, + 0x6d, 0x69, 0x74, 0x65, 0x72, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x64, + 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x69, + 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x3b, 0x66, 0x6f, + 0x6e, 0x74, 0x2d, 0x66, 0x61, 0x6d, 0x69, 0x6c, + 0x79, 0x3a, 0x4e, 0x69, 0x6d, 0x62, 0x75, 0x73, + 0x20, 0x53, 0x61, 0x6e, 0x73, 0x20, 0x4c, 0x22, + 0x20, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x69, 0x64, 0x3d, 0x22, 0x74, 0x65, 0x78, + 0x74, 0x34, 0x34, 0x37, 0x33, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x64, 0x3d, 0x22, 0x4d, 0x20, 0x33, 0x39, 0x2e, + 0x33, 0x35, 0x32, 0x35, 0x39, 0x33, 0x2c, 0x31, + 0x39, 0x2e, 0x30, 0x34, 0x35, 0x39, 0x30, 0x32, + 0x20, 0x4c, 0x20, 0x33, 0x37, 0x2e, 0x31, 0x35, + 0x33, 0x38, 0x35, 0x32, 0x2c, 0x31, 0x39, 0x2e, + 0x30, 0x34, 0x35, 0x39, 0x30, 0x32, 0x20, 0x43, + 0x20, 0x33, 0x37, 0x2e, 0x32, 0x30, 0x36, 0x39, + 0x30, 0x35, 0x2c, 0x31, 0x38, 0x2e, 0x37, 0x30, + 0x34, 0x30, 0x30, 0x37, 0x20, 0x33, 0x37, 0x2e, + 0x33, 0x39, 0x35, 0x35, 0x33, 0x38, 0x2c, 0x31, + 0x38, 0x2e, 0x34, 0x38, 0x35, 0x39, 0x30, 0x31, + 0x20, 0x33, 0x37, 0x2e, 0x39, 0x30, 0x38, 0x33, + 0x38, 0x2c, 0x31, 0x38, 0x2e, 0x31, 0x38, 0x35, + 0x32, 0x36, 0x39, 0x20, 0x4c, 0x20, 0x33, 0x38, + 0x2e, 0x34, 0x39, 0x37, 0x38, 0x35, 0x35, 0x2c, + 0x31, 0x37, 0x2e, 0x38, 0x36, 0x36, 0x39, 0x35, + 0x33, 0x20, 0x43, 0x20, 0x33, 0x39, 0x2e, 0x30, + 0x38, 0x31, 0x34, 0x33, 0x34, 0x2c, 0x31, 0x37, + 0x2e, 0x35, 0x34, 0x38, 0x36, 0x33, 0x36, 0x20, + 0x33, 0x39, 0x2e, 0x33, 0x38, 0x32, 0x30, 0x36, + 0x37, 0x2c, 0x31, 0x37, 0x2e, 0x31, 0x31, 0x38, + 0x33, 0x31, 0x39, 0x20, 0x33, 0x39, 0x2e, 0x33, + 0x38, 0x32, 0x30, 0x36, 0x37, 0x2c, 0x31, 0x36, + 0x2e, 0x36, 0x30, 0x35, 0x34, 0x37, 0x37, 0x20, + 0x43, 0x20, 0x33, 0x39, 0x2e, 0x33, 0x38, 0x32, + 0x30, 0x36, 0x37, 0x2c, 0x31, 0x36, 0x2e, 0x32, + 0x35, 0x37, 0x36, 0x38, 0x37, 0x20, 0x33, 0x39, + 0x2e, 0x32, 0x34, 0x30, 0x35, 0x39, 0x33, 0x2c, + 0x31, 0x35, 0x2e, 0x39, 0x33, 0x33, 0x34, 0x37, + 0x35, 0x20, 0x33, 0x38, 0x2e, 0x39, 0x39, 0x33, + 0x30, 0x31, 0x34, 0x2c, 0x31, 0x35, 0x2e, 0x37, + 0x30, 0x39, 0x34, 0x37, 0x35, 0x20, 0x43, 0x20, + 0x33, 0x38, 0x2e, 0x37, 0x34, 0x35, 0x34, 0x33, + 0x34, 0x2c, 0x31, 0x35, 0x2e, 0x34, 0x38, 0x35, + 0x34, 0x37, 0x35, 0x20, 0x33, 0x38, 0x2e, 0x34, + 0x33, 0x38, 0x39, 0x30, 0x37, 0x2c, 0x31, 0x35, + 0x2e, 0x33, 0x37, 0x39, 0x33, 0x36, 0x39, 0x20, + 0x33, 0x38, 0x2e, 0x30, 0x34, 0x33, 0x39, 0x35, + 0x39, 0x2c, 0x31, 0x35, 0x2e, 0x33, 0x37, 0x39, + 0x33, 0x36, 0x39, 0x20, 0x43, 0x20, 0x33, 0x37, + 0x2e, 0x35, 0x31, 0x33, 0x34, 0x33, 0x33, 0x2c, + 0x31, 0x35, 0x2e, 0x33, 0x37, 0x39, 0x33, 0x36, + 0x39, 0x20, 0x33, 0x37, 0x2e, 0x31, 0x31, 0x38, + 0x34, 0x38, 0x34, 0x2c, 0x31, 0x35, 0x2e, 0x35, + 0x36, 0x38, 0x30, 0x30, 0x31, 0x20, 0x33, 0x36, + 0x2e, 0x38, 0x38, 0x38, 0x35, 0x38, 0x39, 0x2c, + 0x31, 0x35, 0x2e, 0x39, 0x32, 0x31, 0x36, 0x38, + 0x36, 0x20, 0x43, 0x20, 0x33, 0x36, 0x2e, 0x37, + 0x34, 0x31, 0x32, 0x32, 0x2c, 0x31, 0x36, 0x2e, + 0x31, 0x34, 0x35, 0x36, 0x38, 0x36, 0x20, 0x33, + 0x36, 0x2e, 0x36, 0x37, 0x36, 0x33, 0x37, 0x38, + 0x2c, 0x31, 0x36, 0x2e, 0x34, 0x30, 0x35, 0x30, + 0x35, 0x36, 0x20, 0x33, 0x36, 0x2e, 0x36, 0x36, + 0x34, 0x35, 0x38, 0x38, 0x2c, 0x31, 0x36, 0x2e, + 0x38, 0x32, 0x39, 0x34, 0x37, 0x37, 0x20, 0x4c, + 0x20, 0x33, 0x37, 0x2e, 0x31, 0x38, 0x33, 0x33, + 0x32, 0x36, 0x2c, 0x31, 0x36, 0x2e, 0x38, 0x32, + 0x39, 0x34, 0x37, 0x37, 0x20, 0x43, 0x20, 0x33, + 0x37, 0x2e, 0x32, 0x30, 0x31, 0x30, 0x31, 0x2c, + 0x31, 0x36, 0x2e, 0x35, 0x34, 0x36, 0x35, 0x32, + 0x39, 0x20, 0x33, 0x37, 0x2e, 0x32, 0x33, 0x36, + 0x33, 0x37, 0x39, 0x2c, 0x31, 0x36, 0x2e, 0x33, + 0x37, 0x35, 0x35, 0x38, 0x31, 0x20, 0x33, 0x37, + 0x2e, 0x33, 0x30, 0x37, 0x31, 0x31, 0x36, 0x2c, + 0x31, 0x36, 0x2e, 0x32, 0x34, 0x30, 0x30, 0x30, + 0x32, 0x20, 0x43, 0x20, 0x33, 0x37, 0x2e, 0x34, + 0x34, 0x32, 0x36, 0x39, 0x35, 0x2c, 0x31, 0x35, + 0x2e, 0x39, 0x38, 0x36, 0x35, 0x32, 0x38, 0x20, + 0x33, 0x37, 0x2e, 0x37, 0x31, 0x33, 0x38, 0x35, + 0x34, 0x2c, 0x31, 0x35, 0x2e, 0x38, 0x33, 0x33, + 0x32, 0x36, 0x35, 0x20, 0x33, 0x38, 0x2e, 0x30, + 0x32, 0x36, 0x32, 0x37, 0x35, 0x2c, 0x31, 0x35, + 0x2e, 0x38, 0x33, 0x33, 0x32, 0x36, 0x35, 0x20, + 0x43, 0x20, 0x33, 0x38, 0x2e, 0x34, 0x39, 0x37, + 0x38, 0x35, 0x34, 0x2c, 0x31, 0x35, 0x2e, 0x38, + 0x33, 0x33, 0x32, 0x36, 0x35, 0x20, 0x33, 0x38, + 0x2e, 0x38, 0x35, 0x31, 0x35, 0x34, 0x2c, 0x31, + 0x36, 0x2e, 0x31, 0x36, 0x39, 0x32, 0x36, 0x36, + 0x20, 0x33, 0x38, 0x2e, 0x38, 0x35, 0x31, 0x35, + 0x34, 0x2c, 0x31, 0x36, 0x2e, 0x36, 0x31, 0x37, + 0x32, 0x36, 0x36, 0x20, 0x43, 0x20, 0x33, 0x38, + 0x2e, 0x38, 0x35, 0x31, 0x35, 0x34, 0x2c, 0x31, + 0x36, 0x2e, 0x39, 0x34, 0x37, 0x33, 0x37, 0x32, + 0x20, 0x33, 0x38, 0x2e, 0x36, 0x35, 0x37, 0x30, + 0x31, 0x33, 0x2c, 0x31, 0x37, 0x2e, 0x32, 0x33, + 0x30, 0x33, 0x32, 0x20, 0x33, 0x38, 0x2e, 0x32, + 0x38, 0x35, 0x36, 0x34, 0x34, 0x2c, 0x31, 0x37, + 0x2e, 0x34, 0x34, 0x32, 0x35, 0x33, 0x31, 0x20, + 0x4c, 0x20, 0x33, 0x37, 0x2e, 0x37, 0x34, 0x33, + 0x33, 0x32, 0x37, 0x2c, 0x31, 0x37, 0x2e, 0x37, + 0x34, 0x39, 0x30, 0x35, 0x38, 0x20, 0x43, 0x20, + 0x33, 0x36, 0x2e, 0x38, 0x37, 0x30, 0x39, 0x30, + 0x35, 0x2c, 0x31, 0x38, 0x2e, 0x32, 0x34, 0x34, + 0x32, 0x31, 0x36, 0x20, 0x33, 0x36, 0x2e, 0x36, + 0x31, 0x37, 0x34, 0x33, 0x2c, 0x31, 0x38, 0x2e, + 0x36, 0x33, 0x39, 0x31, 0x36, 0x35, 0x20, 0x33, + 0x36, 0x2e, 0x35, 0x37, 0x30, 0x32, 0x37, 0x32, + 0x2c, 0x31, 0x39, 0x2e, 0x35, 0x35, 0x38, 0x37, + 0x34, 0x35, 0x20, 0x4c, 0x20, 0x33, 0x39, 0x2e, + 0x33, 0x35, 0x32, 0x35, 0x39, 0x33, 0x2c, 0x31, + 0x39, 0x2e, 0x35, 0x35, 0x38, 0x37, 0x34, 0x35, + 0x20, 0x4c, 0x20, 0x33, 0x39, 0x2e, 0x33, 0x35, + 0x32, 0x35, 0x39, 0x33, 0x2c, 0x31, 0x39, 0x2e, + 0x30, 0x34, 0x35, 0x39, 0x30, 0x32, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, + 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x69, 0x7a, + 0x65, 0x3a, 0x35, 0x2e, 0x38, 0x39, 0x34, 0x37, + 0x34, 0x37, 0x32, 0x36, 0x70, 0x78, 0x3b, 0x66, + 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, + 0x65, 0x3a, 0x6e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, + 0x3b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x77, 0x65, + 0x69, 0x67, 0x68, 0x74, 0x3a, 0x6e, 0x6f, 0x72, + 0x6d, 0x61, 0x6c, 0x3b, 0x74, 0x65, 0x78, 0x74, + 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x3a, 0x63, + 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x74, 0x65, + 0x78, 0x74, 0x2d, 0x61, 0x6e, 0x63, 0x68, 0x6f, + 0x72, 0x3a, 0x6d, 0x69, 0x64, 0x64, 0x6c, 0x65, + 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x35, + 0x35, 0x35, 0x37, 0x35, 0x33, 0x3b, 0x66, 0x69, + 0x6c, 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, 0x70, + 0x78, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, + 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, 0x70, + 0x3a, 0x62, 0x75, 0x74, 0x74, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, + 0x65, 0x6a, 0x6f, 0x69, 0x6e, 0x3a, 0x6d, 0x69, + 0x74, 0x65, 0x72, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3a, 0x31, 0x3b, 0x64, 0x69, 0x73, + 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x69, 0x6e, 0x6c, + 0x69, 0x6e, 0x65, 0x3b, 0x66, 0x6f, 0x6e, 0x74, + 0x2d, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x3a, + 0x4e, 0x69, 0x6d, 0x62, 0x75, 0x73, 0x20, 0x53, + 0x61, 0x6e, 0x73, 0x20, 0x4c, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x3c, 0x70, 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x74, 0x65, 0x78, 0x74, 0x34, + 0x34, 0x37, 0x37, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, + 0x22, 0x4d, 0x20, 0x33, 0x32, 0x2e, 0x36, 0x31, + 0x35, 0x30, 0x38, 0x34, 0x2c, 0x31, 0x31, 0x2e, + 0x31, 0x33, 0x32, 0x31, 0x36, 0x34, 0x20, 0x4c, + 0x20, 0x33, 0x32, 0x2e, 0x36, 0x31, 0x35, 0x30, + 0x38, 0x34, 0x2c, 0x31, 0x34, 0x2e, 0x31, 0x30, + 0x39, 0x30, 0x31, 0x31, 0x20, 0x4c, 0x20, 0x33, + 0x33, 0x2e, 0x31, 0x33, 0x33, 0x38, 0x32, 0x32, + 0x2c, 0x31, 0x34, 0x2e, 0x31, 0x30, 0x39, 0x30, + 0x31, 0x31, 0x20, 0x4c, 0x20, 0x33, 0x33, 0x2e, + 0x31, 0x33, 0x33, 0x38, 0x32, 0x32, 0x2c, 0x39, + 0x2e, 0x39, 0x32, 0x39, 0x36, 0x33, 0x35, 0x20, + 0x4c, 0x20, 0x33, 0x32, 0x2e, 0x37, 0x39, 0x31, + 0x39, 0x32, 0x37, 0x2c, 0x39, 0x2e, 0x39, 0x32, + 0x39, 0x36, 0x33, 0x35, 0x20, 0x43, 0x20, 0x33, + 0x32, 0x2e, 0x36, 0x30, 0x39, 0x31, 0x39, 0x2c, + 0x31, 0x30, 0x2e, 0x35, 0x37, 0x32, 0x31, 0x36, + 0x32, 0x20, 0x33, 0x32, 0x2e, 0x34, 0x39, 0x31, + 0x32, 0x39, 0x34, 0x2c, 0x31, 0x30, 0x2e, 0x36, + 0x36, 0x30, 0x35, 0x38, 0x34, 0x20, 0x33, 0x31, + 0x2e, 0x36, 0x38, 0x39, 0x36, 0x30, 0x39, 0x2c, + 0x31, 0x30, 0x2e, 0x37, 0x36, 0x30, 0x37, 0x39, + 0x35, 0x20, 0x4c, 0x20, 0x33, 0x31, 0x2e, 0x36, + 0x38, 0x39, 0x36, 0x30, 0x39, 0x2c, 0x31, 0x31, + 0x2e, 0x31, 0x33, 0x32, 0x31, 0x36, 0x34, 0x20, + 0x4c, 0x20, 0x33, 0x32, 0x2e, 0x36, 0x31, 0x35, + 0x30, 0x38, 0x34, 0x2c, 0x31, 0x31, 0x2e, 0x31, + 0x33, 0x32, 0x31, 0x36, 0x34, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, + 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x69, 0x7a, 0x65, + 0x3a, 0x35, 0x2e, 0x38, 0x39, 0x34, 0x37, 0x34, + 0x37, 0x32, 0x36, 0x70, 0x78, 0x3b, 0x66, 0x6f, + 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, + 0x3a, 0x6e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x3b, + 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x77, 0x65, 0x69, + 0x67, 0x68, 0x74, 0x3a, 0x6e, 0x6f, 0x72, 0x6d, + 0x61, 0x6c, 0x3b, 0x74, 0x65, 0x78, 0x74, 0x2d, + 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x3a, 0x63, 0x65, + 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x74, 0x65, 0x78, + 0x74, 0x2d, 0x61, 0x6e, 0x63, 0x68, 0x6f, 0x72, + 0x3a, 0x6d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x3b, + 0x66, 0x69, 0x6c, 0x6c, 0x3a, 0x23, 0x35, 0x35, + 0x35, 0x37, 0x35, 0x33, 0x3b, 0x66, 0x69, 0x6c, + 0x6c, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x77, + 0x69, 0x64, 0x74, 0x68, 0x3a, 0x31, 0x70, 0x78, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, + 0x6c, 0x69, 0x6e, 0x65, 0x63, 0x61, 0x70, 0x3a, + 0x62, 0x75, 0x74, 0x74, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x6c, 0x69, 0x6e, 0x65, + 0x6a, 0x6f, 0x69, 0x6e, 0x3a, 0x6d, 0x69, 0x74, + 0x65, 0x72, 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, + 0x65, 0x2d, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3a, 0x31, 0x3b, 0x64, 0x69, 0x73, 0x70, + 0x6c, 0x61, 0x79, 0x3a, 0x69, 0x6e, 0x6c, 0x69, + 0x6e, 0x65, 0x3b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, + 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x3a, 0x4e, + 0x69, 0x6d, 0x62, 0x75, 0x73, 0x20, 0x53, 0x61, + 0x6e, 0x73, 0x20, 0x4c, 0x22, 0x20, 0x2f, 0x3e, + 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x67, + 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, + 0x61, 0x74, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, + 0x6f, 0x64, 0x69, 0x3a, 0x74, 0x79, 0x70, 0x65, + 0x3d, 0x22, 0x61, 0x72, 0x63, 0x22, 0x0a, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, + 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, + 0x6c, 0x3a, 0x23, 0x39, 0x39, 0x39, 0x63, 0x39, + 0x63, 0x3b, 0x66, 0x69, 0x6c, 0x6c, 0x2d, 0x6f, + 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, + 0x3b, 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x3a, + 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, 0x72, + 0x6f, 0x6b, 0x65, 0x2d, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x3a, 0x32, 0x3b, 0x73, 0x74, 0x72, 0x6f, + 0x6b, 0x65, 0x2d, 0x6d, 0x69, 0x74, 0x65, 0x72, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x34, 0x3b, + 0x73, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x64, + 0x61, 0x73, 0x68, 0x61, 0x72, 0x72, 0x61, 0x79, + 0x3a, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x73, 0x74, + 0x72, 0x6f, 0x6b, 0x65, 0x2d, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x3a, 0x31, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, + 0x64, 0x3d, 0x22, 0x70, 0x61, 0x74, 0x68, 0x34, + 0x34, 0x32, 0x33, 0x22, 0x0a, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, + 0x70, 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x78, 0x3d, + 0x22, 0x31, 0x31, 0x39, 0x2e, 0x33, 0x38, 0x37, + 0x37, 0x36, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, + 0x6f, 0x64, 0x69, 0x3a, 0x63, 0x79, 0x3d, 0x22, + 0x31, 0x31, 0x38, 0x2e, 0x32, 0x34, 0x34, 0x39, + 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x73, 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, + 0x69, 0x3a, 0x72, 0x78, 0x3d, 0x22, 0x31, 0x31, + 0x2e, 0x32, 0x32, 0x34, 0x34, 0x39, 0x22, 0x0a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, + 0x6f, 0x64, 0x69, 0x70, 0x6f, 0x64, 0x69, 0x3a, + 0x72, 0x79, 0x3d, 0x22, 0x31, 0x31, 0x2e, 0x32, + 0x32, 0x34, 0x34, 0x39, 0x22, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x3d, 0x22, + 0x4d, 0x20, 0x31, 0x33, 0x30, 0x2e, 0x36, 0x31, + 0x32, 0x32, 0x35, 0x20, 0x31, 0x31, 0x38, 0x2e, + 0x32, 0x34, 0x34, 0x39, 0x20, 0x41, 0x20, 0x31, + 0x31, 0x2e, 0x32, 0x32, 0x34, 0x34, 0x39, 0x20, + 0x31, 0x31, 0x2e, 0x32, 0x32, 0x34, 0x34, 0x39, + 0x20, 0x30, 0x20, 0x31, 0x20, 0x31, 0x20, 0x20, + 0x31, 0x30, 0x38, 0x2e, 0x31, 0x36, 0x33, 0x32, + 0x37, 0x2c, 0x31, 0x31, 0x38, 0x2e, 0x32, 0x34, + 0x34, 0x39, 0x20, 0x41, 0x20, 0x31, 0x31, 0x2e, + 0x32, 0x32, 0x34, 0x34, 0x39, 0x20, 0x31, 0x31, + 0x2e, 0x32, 0x32, 0x34, 0x34, 0x39, 0x20, 0x30, + 0x20, 0x31, 0x20, 0x31, 0x20, 0x20, 0x31, 0x33, + 0x30, 0x2e, 0x36, 0x31, 0x32, 0x32, 0x35, 0x20, + 0x31, 0x31, 0x38, 0x2e, 0x32, 0x34, 0x34, 0x39, + 0x20, 0x7a, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, + 0x66, 0x6f, 0x72, 0x6d, 0x3d, 0x22, 0x6d, 0x61, + 0x74, 0x72, 0x69, 0x78, 0x28, 0x30, 0x2e, 0x31, + 0x36, 0x32, 0x36, 0x37, 0x39, 0x2c, 0x30, 0x2c, + 0x30, 0x2c, 0x30, 0x2e, 0x31, 0x36, 0x32, 0x36, + 0x37, 0x39, 0x2c, 0x35, 0x2e, 0x35, 0x37, 0x38, + 0x30, 0x34, 0x35, 0x2c, 0x35, 0x2e, 0x37, 0x36, + 0x33, 0x39, 0x38, 0x31, 0x29, 0x22, 0x20, 0x2f, + 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x2f, 0x67, 0x3e, + 0x0a, 0x3c, 0x2f, 0x73, 0x76, 0x67, 0x3e, 0x0a, + 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29 +} }; + +static GStaticResource static_resource = { clock_resource_data.data, sizeof (clock_resource_data.data) }; +extern GResource *clock_get_resource (void); +GResource *clock_get_resource (void) +{ + return g_static_resource_get_resource (&static_resource); +} +/* + If G_HAS_CONSTRUCTORS is true then the compiler support *both* constructors and + destructors, in a sane way, including e.g. on library unload. If not you're on + your own. + + Some compilers need #pragma to handle this, which does not work with macros, + so the way you need to use this is (for constructors): + + #ifdef G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA + #pragma G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(my_constructor) + #endif + G_DEFINE_CONSTRUCTOR(my_constructor) + static void my_constructor(void) { + ... + } + +*/ + +#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) + +#define G_HAS_CONSTRUCTORS 1 + +#define G_DEFINE_CONSTRUCTOR(_func) static void __attribute__((constructor)) _func (void); +#define G_DEFINE_DESTRUCTOR(_func) static void __attribute__((destructor)) _func (void); + +#elif defined (_MSC_VER) && (_MSC_VER >= 1500) +/* Visual studio 2008 and later has _Pragma */ + +#define G_HAS_CONSTRUCTORS 1 + +#define G_DEFINE_CONSTRUCTOR(_func) \ + static void _func(void); \ + static int _func ## _wrapper(void) { _func(); return 0; } \ + __pragma(section(".CRT$XCU",read)) \ + __declspec(allocate(".CRT$XCU")) static int (* _array ## _func)(void) = _func ## _wrapper; + +#define G_DEFINE_DESTRUCTOR(_func) \ + static void _func(void); \ + static int _func ## _constructor(void) { atexit (_func); return 0; } \ + __pragma(section(".CRT$XCU",read)) \ + __declspec(allocate(".CRT$XCU")) static int (* _array ## _func)(void) = _func ## _constructor; + +#elif defined (_MSC_VER) + +#define G_HAS_CONSTRUCTORS 1 + +/* Pre Visual studio 2008 must use #pragma section */ +#define G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA 1 +#define G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA 1 + +#define G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(_func) \ + section(".CRT$XCU",read) +#define G_DEFINE_CONSTRUCTOR(_func) \ + static void _func(void); \ + static int _func ## _wrapper(void) { _func(); return 0; } \ + __declspec(allocate(".CRT$XCU")) static int (*p)(void) = _func ## _wrapper; + +#define G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(_func) \ + section(".CRT$XCU",read) +#define G_DEFINE_DESTRUCTOR(_func) \ + static void _func(void); \ + static int _func ## _constructor(void) { atexit (_func); return 0; } \ + __declspec(allocate(".CRT$XCU")) static int (* _array ## _func)(void) = _func ## _constructor; + +#elif defined(__SUNPRO_C) + +/* This is not tested, but i believe it should work, based on: + * http://opensource.apple.com/source/OpenSSL098/OpenSSL098-35/src/fips/fips_premain.c + */ + +#define G_HAS_CONSTRUCTORS 1 + +#define G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA 1 +#define G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA 1 + +#define G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(_func) \ + init(_func) +#define G_DEFINE_CONSTRUCTOR(_func) \ + static void _func(void); + +#define G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(_func) \ + fini(_func) +#define G_DEFINE_DESTRUCTOR(_func) \ + static void _func(void); + +#else + +/* constructors not supported for this compiler */ + +#endif + + +#ifdef G_HAS_CONSTRUCTORS + +#ifdef G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA +#pragma G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(resource_constructor) +#endif +G_DEFINE_CONSTRUCTOR(resource_constructor) +#ifdef G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA +#pragma G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(resource_destructor) +#endif +G_DEFINE_DESTRUCTOR(resource_destructor) + +#else +#warning "Constructor not supported on this compiler, linking in resources will not work" +#endif + +static void resource_constructor (void) +{ + g_static_resource_init (&static_resource); +} + +static void resource_destructor (void) +{ + g_static_resource_fini (&static_resource); +} diff -Nru gnome-panel-3.3.3/applets/clock/clock-resources.h gnome-panel-3.3.5/applets/clock/clock-resources.h --- gnome-panel-3.3.3/applets/clock/clock-resources.h 1970-01-01 00:00:00.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/clock-resources.h 2012-02-02 15:36:35.000000000 +0000 @@ -0,0 +1,7 @@ +#ifndef __RESOURCE_clock_H__ +#define __RESOURCE_clock_H__ + +#include + +extern GResource *clock_get_resource (void); +#endif diff -Nru gnome-panel-3.3.3/applets/clock/clock-utils.c gnome-panel-3.3.5/applets/clock/clock-utils.c --- gnome-panel-3.3.3/applets/clock/clock-utils.c 2010-02-09 12:32:08.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/clock-utils.c 2012-02-02 14:25:57.000000000 +0000 @@ -34,6 +34,9 @@ #include +#include +#include + #include "clock.h" #include "clock-utils.h" @@ -125,3 +128,50 @@ gtk_widget_show (dialog); } } + +GdkPixbuf * +clock_utils_pixbuf_from_svg_resource_at_size (const char *resource, + int width, + int height) +{ + GInputStream *stream = NULL; + RsvgHandle *handle = NULL; + RsvgDimensionData svg_dimensions; + GdkPixbuf *pixbuf = NULL; + cairo_surface_t *surface = NULL; + cairo_matrix_t matrix; + cairo_t *cr = NULL; + + stream = g_resources_open_stream (resource, 0, NULL); + if (!stream) + goto out; + + handle = rsvg_handle_new (); + if (!handle) + goto out; + + if (!rsvg_handle_read_stream_sync (handle, stream, NULL, NULL)) + goto out; + + rsvg_handle_get_dimensions (handle, &svg_dimensions); + + surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, width, height); + cr = cairo_create (surface); + cairo_matrix_init_scale (&matrix, + ((double) width / svg_dimensions.width), + ((double) height / svg_dimensions.height)); + cairo_transform (cr, &matrix); + rsvg_handle_render_cairo (handle, cr); + cairo_destroy (cr); + + pixbuf = gdk_pixbuf_get_from_surface (surface, 0, 0, width, height); + cairo_surface_destroy (surface); + +out: + if (handle) + rsvg_handle_close (handle, NULL); + if (stream) + g_object_unref (stream); + + return pixbuf; +} diff -Nru gnome-panel-3.3.3/applets/clock/clock-utils.h gnome-panel-3.3.5/applets/clock/clock-utils.h --- gnome-panel-3.3.3/applets/clock/clock-utils.h 2010-02-09 12:32:08.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/clock-utils.h 2012-02-02 14:25:57.000000000 +0000 @@ -48,6 +48,10 @@ const char *doc_id, const char *link_id); +GdkPixbuf *clock_utils_pixbuf_from_svg_resource_at_size (const char *resource, + int width, + int height); + G_END_DECLS #endif /* __CLOCK_UTILS_H__ */ diff -Nru gnome-panel-3.3.3/applets/clock/Makefile.am gnome-panel-3.3.5/applets/clock/Makefile.am --- gnome-panel-3.3.3/applets/clock/Makefile.am 2011-06-14 12:28:09.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/Makefile.am 2012-02-06 12:14:48.000000000 +0000 @@ -52,9 +52,6 @@ -I$(srcdir)/../../libpanel-applet \ -I$(top_builddir)/libpanel-applet \ -DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ - -DBUILDERDIR=\""$(uidir)"\" \ - -DCLOCK_MENU_UI_DIR=\""$(xmluidir)"\" \ - -DICONDIR=\""$(datadir)/gnome-panel/pixmaps"\" \ -DCLOCK_EDS_ICONDIR="\"$(CLOCK_EDS_ICONDIR)\"" \ -DGWEATHER_I_KNOW_THIS_IS_UNSTABLE @@ -133,6 +130,8 @@ BUILT_SOURCES = \ clock-marshallers.c \ clock-marshallers.h \ + clock-resources.c \ + clock-resources.h \ clock-typebuiltins.c \ clock-typebuiltins.h @@ -160,11 +159,15 @@ $< > $@ endif -uidir = $(datadir)/gnome-panel/ui -ui_DATA = clock.ui +ui_FILES = \ + clock.ui \ + clock-menu.xml -xmluidir = $(datadir)/gnome-panel/ui -xmlui_DATA = clock-menu.xml +clock-resources.c: clock.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies clock.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name clock $(srcdir)/$< + +clock-resources.h: clock.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies clock.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name clock $(srcdir)/$< schemasdir = $(GCONF_SCHEMA_FILE_DIR) schemas_in_files = clock.schemas.in @@ -188,8 +191,8 @@ EXTRA_DIST = \ org.gnome.panel.ClockApplet.panel-applet.in.in \ $(schemas_in_files) \ - $(xmlui_DATA) \ - $(ui_DATA) \ + $(ui_FILES) \ + clock.gresource.xml \ clock-marshallers.list \ $(service_in_files) diff -Nru gnome-panel-3.3.3/applets/clock/Makefile.in gnome-panel-3.3.5/applets/clock/Makefile.in --- gnome-panel-3.3.3/applets/clock/Makefile.in 2011-12-20 08:16:04.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/Makefile.in 2012-02-06 12:16:58.000000000 +0000 @@ -76,8 +76,7 @@ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__installdirs = "$(DESTDIR)$(clock_appletlibdir)" \ "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(appletdir)" \ - "$(DESTDIR)$(schemasdir)" "$(DESTDIR)$(servicedir)" \ - "$(DESTDIR)$(uidir)" "$(DESTDIR)$(xmluidir)" + "$(DESTDIR)$(schemasdir)" "$(DESTDIR)$(servicedir)" LTLIBRARIES = $(clock_appletlib_LTLIBRARIES) $(noinst_LTLIBRARIES) am__DEPENDENCIES_1 = am__DEPENDENCIES_2 = ../../libpanel-applet/libpanel-applet-4.la \ @@ -91,10 +90,11 @@ clock-location-tile.h clock-map.c clock-map.h clock-sunpos.c \ clock-sunpos.h clock-utils.c clock-utils.h set-timezone.c \ set-timezone.h clock-marshallers.c clock-marshallers.h \ - clock-typebuiltins.c clock-typebuiltins.h calendar-client.c \ - calendar-client.h calendar-sources.c calendar-sources.h \ - calendar-debug.h + clock-resources.c clock-resources.h clock-typebuiltins.c \ + clock-typebuiltins.h calendar-client.c calendar-client.h \ + calendar-sources.c calendar-sources.h calendar-debug.h am__objects_1 = libclock_applet_la-clock-marshallers.lo \ + libclock_applet_la-clock-resources.lo \ libclock_applet_la-clock-typebuiltins.lo @HAVE_LIBECAL_TRUE@am__objects_2 = \ @HAVE_LIBECAL_TRUE@ libclock_applet_la-calendar-client.lo \ @@ -129,10 +129,12 @@ clock-location.h clock-location-tile.c clock-location-tile.h \ clock-map.c clock-map.h clock-sunpos.c clock-sunpos.h \ clock-utils.c clock-utils.h set-timezone.c set-timezone.h \ - clock-marshallers.c clock-marshallers.h clock-typebuiltins.c \ - clock-typebuiltins.h calendar-client.c calendar-client.h \ - calendar-sources.c calendar-sources.h calendar-debug.h + clock-marshallers.c clock-marshallers.h clock-resources.c \ + clock-resources.h clock-typebuiltins.c clock-typebuiltins.h \ + calendar-client.c calendar-client.h calendar-sources.c \ + calendar-sources.h calendar-debug.h am__objects_4 = clock_applet-clock-marshallers.$(OBJEXT) \ + clock_applet-clock-resources.$(OBJEXT) \ clock_applet-clock-typebuiltins.$(OBJEXT) @HAVE_LIBECAL_TRUE@am__objects_5 = \ @HAVE_LIBECAL_TRUE@ clock_applet-calendar-client.$(OBJEXT) \ @@ -196,8 +198,7 @@ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive -DATA = $(applet_DATA) $(schemas_DATA) $(service_DATA) $(ui_DATA) \ - $(xmlui_DATA) +DATA = $(applet_DATA) $(schemas_DATA) $(service_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ @@ -275,6 +276,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ @@ -490,9 +492,6 @@ -I$(srcdir)/../../libpanel-applet \ -I$(top_builddir)/libpanel-applet \ -DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ - -DBUILDERDIR=\""$(uidir)"\" \ - -DCLOCK_MENU_UI_DIR=\""$(xmluidir)"\" \ - -DICONDIR=\""$(datadir)/gnome-panel/pixmaps"\" \ -DCLOCK_EDS_ICONDIR="\"$(CLOCK_EDS_ICONDIR)\"" \ -DGWEATHER_I_KNOW_THIS_IS_UNSTABLE @@ -528,6 +527,8 @@ BUILT_SOURCES = \ clock-marshallers.c \ clock-marshallers.h \ + clock-resources.c \ + clock-resources.h \ clock-typebuiltins.c \ clock-typebuiltins.h @@ -537,18 +538,18 @@ @CLOCK_INPROCESS_FALSE@servicedir = $(datadir)/dbus-1/services @CLOCK_INPROCESS_FALSE@service_in_files = org.gnome.panel.applet.ClockAppletFactory.service.in @CLOCK_INPROCESS_FALSE@service_DATA = $(service_in_files:.service.in=.service) -uidir = $(datadir)/gnome-panel/ui -ui_DATA = clock.ui -xmluidir = $(datadir)/gnome-panel/ui -xmlui_DATA = clock-menu.xml +ui_FILES = \ + clock.ui \ + clock-menu.xml + schemasdir = $(GCONF_SCHEMA_FILE_DIR) schemas_in_files = clock.schemas.in schemas_DATA = $(schemas_in_files:.schemas.in=.schemas) EXTRA_DIST = \ org.gnome.panel.ClockApplet.panel-applet.in.in \ $(schemas_in_files) \ - $(xmlui_DATA) \ - $(ui_DATA) \ + $(ui_FILES) \ + clock.gresource.xml \ clock-marshallers.list \ $(service_in_files) @@ -713,6 +714,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/clock_applet-clock-location.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/clock_applet-clock-map.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/clock_applet-clock-marshallers.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/clock_applet-clock-resources.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/clock_applet-clock-sunpos.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/clock_applet-clock-typebuiltins.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/clock_applet-clock-utils.Po@am__quote@ @@ -726,6 +728,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libclock_applet_la-clock-location.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libclock_applet_la-clock-map.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libclock_applet_la-clock-marshallers.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libclock_applet_la-clock-resources.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libclock_applet_la-clock-sunpos.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libclock_applet_la-clock-typebuiltins.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libclock_applet_la-clock-utils.Plo@am__quote@ @@ -838,6 +841,14 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclock_applet_la_CPPFLAGS) $(CPPFLAGS) $(libclock_applet_la_CFLAGS) $(CFLAGS) -c -o libclock_applet_la-clock-marshallers.lo `test -f 'clock-marshallers.c' || echo '$(srcdir)/'`clock-marshallers.c +libclock_applet_la-clock-resources.lo: clock-resources.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclock_applet_la_CPPFLAGS) $(CPPFLAGS) $(libclock_applet_la_CFLAGS) $(CFLAGS) -MT libclock_applet_la-clock-resources.lo -MD -MP -MF $(DEPDIR)/libclock_applet_la-clock-resources.Tpo -c -o libclock_applet_la-clock-resources.lo `test -f 'clock-resources.c' || echo '$(srcdir)/'`clock-resources.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libclock_applet_la-clock-resources.Tpo $(DEPDIR)/libclock_applet_la-clock-resources.Plo +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clock-resources.c' object='libclock_applet_la-clock-resources.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclock_applet_la_CPPFLAGS) $(CPPFLAGS) $(libclock_applet_la_CFLAGS) $(CFLAGS) -c -o libclock_applet_la-clock-resources.lo `test -f 'clock-resources.c' || echo '$(srcdir)/'`clock-resources.c + libclock_applet_la-clock-typebuiltins.lo: clock-typebuiltins.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclock_applet_la_CPPFLAGS) $(CPPFLAGS) $(libclock_applet_la_CFLAGS) $(CFLAGS) -MT libclock_applet_la-clock-typebuiltins.lo -MD -MP -MF $(DEPDIR)/libclock_applet_la-clock-typebuiltins.Tpo -c -o libclock_applet_la-clock-typebuiltins.lo `test -f 'clock-typebuiltins.c' || echo '$(srcdir)/'`clock-typebuiltins.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libclock_applet_la-clock-typebuiltins.Tpo $(DEPDIR)/libclock_applet_la-clock-typebuiltins.Plo @@ -1022,6 +1033,22 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(clock_applet_CPPFLAGS) $(CPPFLAGS) $(clock_applet_CFLAGS) $(CFLAGS) -c -o clock_applet-clock-marshallers.obj `if test -f 'clock-marshallers.c'; then $(CYGPATH_W) 'clock-marshallers.c'; else $(CYGPATH_W) '$(srcdir)/clock-marshallers.c'; fi` +clock_applet-clock-resources.o: clock-resources.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(clock_applet_CPPFLAGS) $(CPPFLAGS) $(clock_applet_CFLAGS) $(CFLAGS) -MT clock_applet-clock-resources.o -MD -MP -MF $(DEPDIR)/clock_applet-clock-resources.Tpo -c -o clock_applet-clock-resources.o `test -f 'clock-resources.c' || echo '$(srcdir)/'`clock-resources.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/clock_applet-clock-resources.Tpo $(DEPDIR)/clock_applet-clock-resources.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clock-resources.c' object='clock_applet-clock-resources.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(clock_applet_CPPFLAGS) $(CPPFLAGS) $(clock_applet_CFLAGS) $(CFLAGS) -c -o clock_applet-clock-resources.o `test -f 'clock-resources.c' || echo '$(srcdir)/'`clock-resources.c + +clock_applet-clock-resources.obj: clock-resources.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(clock_applet_CPPFLAGS) $(CPPFLAGS) $(clock_applet_CFLAGS) $(CFLAGS) -MT clock_applet-clock-resources.obj -MD -MP -MF $(DEPDIR)/clock_applet-clock-resources.Tpo -c -o clock_applet-clock-resources.obj `if test -f 'clock-resources.c'; then $(CYGPATH_W) 'clock-resources.c'; else $(CYGPATH_W) '$(srcdir)/clock-resources.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/clock_applet-clock-resources.Tpo $(DEPDIR)/clock_applet-clock-resources.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clock-resources.c' object='clock_applet-clock-resources.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(clock_applet_CPPFLAGS) $(CPPFLAGS) $(clock_applet_CFLAGS) $(CFLAGS) -c -o clock_applet-clock-resources.obj `if test -f 'clock-resources.c'; then $(CYGPATH_W) 'clock-resources.c'; else $(CYGPATH_W) '$(srcdir)/clock-resources.c'; fi` + clock_applet-clock-typebuiltins.o: clock-typebuiltins.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(clock_applet_CPPFLAGS) $(CPPFLAGS) $(clock_applet_CFLAGS) $(CFLAGS) -MT clock_applet-clock-typebuiltins.o -MD -MP -MF $(DEPDIR)/clock_applet-clock-typebuiltins.Tpo -c -o clock_applet-clock-typebuiltins.o `test -f 'clock-typebuiltins.c' || echo '$(srcdir)/'`clock-typebuiltins.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/clock_applet-clock-typebuiltins.Tpo $(DEPDIR)/clock_applet-clock-typebuiltins.Po @@ -1135,46 +1162,6 @@ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(servicedir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(servicedir)" && rm -f $$files -install-uiDATA: $(ui_DATA) - @$(NORMAL_INSTALL) - test -z "$(uidir)" || $(MKDIR_P) "$(DESTDIR)$(uidir)" - @list='$(ui_DATA)'; test -n "$(uidir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(uidir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(uidir)" || exit $$?; \ - done - -uninstall-uiDATA: - @$(NORMAL_UNINSTALL) - @list='$(ui_DATA)'; test -n "$(uidir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(uidir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(uidir)" && rm -f $$files -install-xmluiDATA: $(xmlui_DATA) - @$(NORMAL_INSTALL) - test -z "$(xmluidir)" || $(MKDIR_P) "$(DESTDIR)$(xmluidir)" - @list='$(xmlui_DATA)'; test -n "$(xmluidir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(xmluidir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(xmluidir)" || exit $$?; \ - done - -uninstall-xmluiDATA: - @$(NORMAL_UNINSTALL) - @list='$(xmlui_DATA)'; test -n "$(xmluidir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(xmluidir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(xmluidir)" && rm -f $$files # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. @@ -1375,7 +1362,7 @@ all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(DATA) installdirs: installdirs-recursive installdirs-am: - for dir in "$(DESTDIR)$(clock_appletlibdir)" "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(appletdir)" "$(DESTDIR)$(schemasdir)" "$(DESTDIR)$(servicedir)" "$(DESTDIR)$(uidir)" "$(DESTDIR)$(xmluidir)"; do \ + for dir in "$(DESTDIR)$(clock_appletlibdir)" "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(appletdir)" "$(DESTDIR)$(schemasdir)" "$(DESTDIR)$(servicedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: $(BUILT_SOURCES) @@ -1433,8 +1420,7 @@ info-am: install-data-am: install-appletDATA install-clock_appletlibLTLIBRARIES \ - install-data-local install-schemasDATA install-serviceDATA \ - install-uiDATA install-xmluiDATA + install-data-local install-schemasDATA install-serviceDATA install-dvi: install-dvi-recursive @@ -1482,8 +1468,7 @@ uninstall-am: uninstall-appletDATA \ uninstall-clock_appletlibLTLIBRARIES uninstall-libexecPROGRAMS \ - uninstall-local uninstall-schemasDATA uninstall-serviceDATA \ - uninstall-uiDATA uninstall-xmluiDATA + uninstall-local uninstall-schemasDATA uninstall-serviceDATA .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check \ ctags-recursive install install-am install-strip \ @@ -1503,15 +1488,13 @@ install-info install-info-am install-libexecPROGRAMS \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-schemasDATA install-serviceDATA \ - install-strip install-uiDATA install-xmluiDATA installcheck \ - installcheck-am installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-recursive uninstall uninstall-am \ - uninstall-appletDATA uninstall-clock_appletlibLTLIBRARIES \ - uninstall-libexecPROGRAMS uninstall-local \ - uninstall-schemasDATA uninstall-serviceDATA uninstall-uiDATA \ - uninstall-xmluiDATA + install-strip installcheck installcheck-am installdirs \ + installdirs-am maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ + uninstall uninstall-am uninstall-appletDATA \ + uninstall-clock_appletlibLTLIBRARIES uninstall-libexecPROGRAMS \ + uninstall-local uninstall-schemasDATA uninstall-serviceDATA @CLOCK_INPROCESS_TRUE@$(libclock_applet_la_OBJECTS): $(BUILT_SOURCES) @CLOCK_INPROCESS_FALSE@$(clock_applet_OBJECTS): $(BUILT_SOURCES) @@ -1564,6 +1547,12 @@ @CLOCK_INPROCESS_FALSE@ -e "s|\@LOCATION\@|$(APPLET_LOCATION)|" \ @CLOCK_INPROCESS_FALSE@ $< > $@ +clock-resources.c: clock.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies clock.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name clock $(srcdir)/$< + +clock-resources.h: clock.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies clock.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name clock $(srcdir)/$< + @INTLTOOL_SCHEMAS_RULE@ @GCONF_SCHEMAS_INSTALL_TRUE@install-data-local: Binary files /tmp/rxuyYPYln7/gnome-panel-3.3.3/applets/clock/pixmaps/clock-calendar-icon.png and /tmp/tEnbJljdLN/gnome-panel-3.3.5/applets/clock/pixmaps/clock-calendar-icon.png differ diff -Nru gnome-panel-3.3.3/applets/clock/pixmaps/Makefile.am gnome-panel-3.3.5/applets/clock/pixmaps/Makefile.am --- gnome-panel-3.3.3/applets/clock/pixmaps/Makefile.am 2010-09-20 15:49:51.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/pixmaps/Makefile.am 2012-02-02 14:25:57.000000000 +0000 @@ -1,6 +1,4 @@ -icondir = $(datadir)/gnome-panel/pixmaps -icon_DATA = \ - clock-calendar-icon.png \ +icon_FILES = \ clock-face-large.svg \ clock-face-small.svg \ clock-face-small-morning.svg \ @@ -14,7 +12,7 @@ EXTRA_DIST = \ clock-map.svg \ - $(icon_DATA) + $(icon_FILES) MAINTAINERCLEANFILES = Makefile.in diff -Nru gnome-panel-3.3.3/applets/clock/pixmaps/Makefile.in gnome-panel-3.3.5/applets/clock/pixmaps/Makefile.in --- gnome-panel-3.3.3/applets/clock/pixmaps/Makefile.in 2011-12-20 08:16:04.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/pixmaps/Makefile.in 2012-02-06 12:16:58.000000000 +0000 @@ -14,7 +14,6 @@ # PARTICULAR PURPOSE. @SET_MAKE@ - VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ @@ -57,29 +56,6 @@ am__v_at_0 = @ SOURCES = DIST_SOURCES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(icondir)" -DATA = $(icon_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ @@ -124,6 +100,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ @@ -291,9 +268,7 @@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -icondir = $(datadir)/gnome-panel/pixmaps -icon_DATA = \ - clock-calendar-icon.png \ +icon_FILES = \ clock-face-large.svg \ clock-face-small.svg \ clock-face-small-morning.svg \ @@ -307,7 +282,7 @@ EXTRA_DIST = \ clock-map.svg \ - $(icon_DATA) + $(icon_FILES) MAINTAINERCLEANFILES = Makefile.in all: all-am @@ -349,26 +324,6 @@ clean-libtool: -rm -rf .libs _libs -install-iconDATA: $(icon_DATA) - @$(NORMAL_INSTALL) - test -z "$(icondir)" || $(MKDIR_P) "$(DESTDIR)$(icondir)" - @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(icondir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(icondir)" || exit $$?; \ - done - -uninstall-iconDATA: - @$(NORMAL_UNINSTALL) - @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(icondir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(icondir)" && rm -f $$files tags: TAGS TAGS: @@ -408,11 +363,8 @@ done check-am: all-am check: check-am -all-am: Makefile $(DATA) +all-am: Makefile installdirs: - for dir in "$(DESTDIR)$(icondir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -459,7 +411,7 @@ info-am: -install-data-am: install-iconDATA +install-data-am: install-dvi: install-dvi-am @@ -503,7 +455,7 @@ ps-am: -uninstall-am: uninstall-iconDATA +uninstall-am: .MAKE: install-am install-strip @@ -512,12 +464,11 @@ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ - install-iconDATA install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-iconDATA + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am -include $(top_srcdir)/git.mk diff -Nru gnome-panel-3.3.3/applets/clock/set-timezone.c gnome-panel-3.3.5/applets/clock/set-timezone.c --- gnome-panel-3.3.3/applets/clock/set-timezone.c 2011-05-23 21:52:51.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/set-timezone.c 2012-02-02 16:51:54.000000000 +0000 @@ -23,28 +23,21 @@ #endif #include -#include -#include -#include -#include -#include -#include +#include #include "set-timezone.h" -#define CACHE_VALIDITY_SEC 2 +#define CACHE_VALIDITY_SEC 20 -#define MECHANISM_BUS_NAME "org.gnome.SettingsDaemon.DateTimeMechanism" -#define MECHANISM_OBJECT_PATH "/" -#define MECHANISM_INTERFACE "org.gnome.SettingsDaemon.DateTimeMechanism" +#define MECHANISM_BUS_NAME "org.freedesktop.timedate1" +#define MECHANISM_OBJECT_PATH "/org/freedesktop/timedate1" +#define MECHANISM_INTERFACE "org.freedesktop.timedate1" typedef struct { - gboolean in_progress; gint value; guint64 stamp; } Cache; -static Cache can_set_time_cache; static Cache can_set_timezone_cache; static GDBusConnection * @@ -66,27 +59,6 @@ return system; } -static void -can_set_call_finished (GObject *source, - GAsyncResult *result, - gpointer user_data) -{ - Cache *cache = user_data; - GVariant *reply; - - reply = g_dbus_connection_call_finish (G_DBUS_CONNECTION (source), - result, NULL); - - if (reply != NULL) - { - g_variant_get (reply, "(i)", &cache->value); - g_variant_unref (reply); - } - - cache->stamp = g_get_monotonic_time (); - cache->in_progress = FALSE; -} - static int can_set (Cache *cache, const gchar *method_name) { @@ -94,23 +66,39 @@ if (now - cache->stamp > (CACHE_VALIDITY_SEC * 1000000)) { - if (!cache->in_progress) - { - GDBusConnection *system_bus = get_system_bus (NULL); - - if (system_bus != NULL) - g_dbus_connection_call (system_bus, MECHANISM_BUS_NAME, - MECHANISM_OBJECT_PATH, MECHANISM_INTERFACE, - method_name, NULL, G_VARIANT_TYPE ("(i)"), - G_DBUS_CALL_FLAGS_NONE, -1, NULL, - can_set_call_finished, cache); - - /* Even if the system bus was NULL, we want to set this in - * order to effectively wedge ourselves from ever trying - * again. - */ - cache->in_progress = TRUE; - } + PolkitAuthority *authority; + PolkitSubject *subject; + PolkitAuthorizationResult *res; + + authority = polkit_authority_get_sync (NULL, NULL); + subject = polkit_unix_session_new_for_process_sync (getpid (), NULL, NULL); + + res = polkit_authority_check_authorization_sync (authority, + subject, + "org.freedesktop.timedate1.set-timezone", + NULL, + POLKIT_CHECK_AUTHORIZATION_FLAGS_NONE, + NULL, + NULL); + + cache->stamp = g_get_monotonic_time (); + + if (res == NULL) + cache->value = 0; + else + { + if (polkit_authorization_result_get_is_authorized (res)) + cache->value = 2; + else if (polkit_authorization_result_get_is_challenge (res)) + cache->value = 1; + else + cache->value = 0; + + g_object_unref (res); + } + + g_object_unref (authority); + g_object_unref (subject); } return cache->value; @@ -122,12 +110,6 @@ return can_set (&can_set_timezone_cache, "CanSetTimezone"); } -gint -can_set_system_time (void) -{ - return can_set (&can_set_time_cache, "CanSetTime"); -} - gboolean set_system_timezone_finish (GAsyncResult *result, GError **error) @@ -177,7 +159,7 @@ g_dbus_connection_call (system_bus, MECHANISM_BUS_NAME, MECHANISM_OBJECT_PATH, MECHANISM_INTERFACE, - "SetTimezone", g_variant_new ("(s)", tz), + "SetTimezone", g_variant_new ("(sb)", tz, TRUE), NULL, G_DBUS_CALL_FLAGS_NONE, -1, NULL, callback, user_data); } diff -Nru gnome-panel-3.3.3/applets/clock/set-timezone.h gnome-panel-3.3.5/applets/clock/set-timezone.h --- gnome-panel-3.3.3/applets/clock/set-timezone.h 2011-05-23 21:52:43.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/set-timezone.h 2012-02-02 15:39:09.000000000 +0000 @@ -25,8 +25,6 @@ gint can_set_system_timezone (void); -gint can_set_system_time (void); - void set_system_timezone_async (const gchar *tz, GAsyncReadyCallback callback, gpointer user_data); diff -Nru gnome-panel-3.3.3/applets/clock/system-timezone.c gnome-panel-3.3.5/applets/clock/system-timezone.c --- gnome-panel-3.3.3/applets/clock/system-timezone.c 2010-03-17 06:45:18.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/system-timezone.c 2012-02-02 15:57:52.000000000 +0000 @@ -63,9 +63,6 @@ #define ETC_CONF_D_CLOCK "/etc/conf.d/clock" #define ETC_LOCALTIME "/etc/localtime" -/* The first 4 characters in a timezone file, from tzfile.h */ -#define TZ_MAGIC "TZif" - static char *files_to_check[CHECK_NB] = { ETC_TIMEZONE, ETC_TIMEZONE_MAJ, @@ -346,35 +343,6 @@ return NULL; } -static gboolean -system_timezone_write_etc_timezone (const char *tz, - GError **error) -{ - char *content; - GError *our_error; - gboolean retval; - - if (!g_file_test (ETC_TIMEZONE, G_FILE_TEST_IS_REGULAR)) - return TRUE; - - content = g_strdup_printf ("%s\n", tz); - - our_error = NULL; - retval = g_file_set_contents (ETC_TIMEZONE, content, -1, &our_error); - g_free (content); - - if (!retval) { - g_set_error (error, SYSTEM_TIMEZONE_ERROR, - SYSTEM_TIMEZONE_ERROR_GENERAL, - ETC_TIMEZONE" cannot be overwritten: %s", - our_error->message); - g_error_free (our_error); - } - - return retval; -} - - /* Read a file that looks like a key-file (but there's no need for groups) * and get the last value for a specific key */ static char * @@ -434,87 +402,6 @@ return retval; } -static gboolean -system_timezone_write_key_file (const char *filename, - const char *key, - const char *value, - GError **error) -{ - GError *our_error; - char *content; - gsize len; - char *key_eq; - char **lines; - gboolean replaced; - gboolean retval; - int n; - - if (!g_file_test (filename, G_FILE_TEST_IS_REGULAR)) - return TRUE; - - our_error = NULL; - - if (!g_file_get_contents (filename, &content, &len, &our_error)) { - g_set_error (error, SYSTEM_TIMEZONE_ERROR, - SYSTEM_TIMEZONE_ERROR_GENERAL, - "%s cannot be read: %s", - filename, our_error->message); - g_error_free (our_error); - return FALSE; - } - - lines = g_strsplit (content, "\n", 0); - g_free (content); - - key_eq = g_strdup_printf ("%s=", key); - replaced = FALSE; - - for (n = 0; lines[n] != NULL; n++) { - if (g_str_has_prefix (lines[n], key_eq)) { - char *old_value; - gboolean use_quotes; - - old_value = lines[n] + strlen (key_eq); - g_strstrip (old_value); - use_quotes = old_value[0] == '\"'; - - g_free (lines[n]); - - if (use_quotes) - lines[n] = g_strdup_printf ("%s\"%s\"", - key_eq, value); - else - lines[n] = g_strdup_printf ("%s%s", - key_eq, value); - - replaced = TRUE; - } - } - - g_free (key_eq); - - if (!replaced) { - g_strfreev (lines); - return TRUE; - } - - content = g_strjoinv ("\n", lines); - g_strfreev (lines); - - retval = g_file_set_contents (filename, content, -1, &our_error); - g_free (content); - - if (!retval) { - g_set_error (error, SYSTEM_TIMEZONE_ERROR, - SYSTEM_TIMEZONE_ERROR_GENERAL, - "%s cannot be overwritten: %s", - filename, our_error->message); - g_error_free (our_error); - } - - return retval; -} - /* This works for Solaris/OpenSolaris */ static char * system_timezone_read_etc_TIMEZONE (void) @@ -523,14 +410,6 @@ "TZ"); } -static gboolean -system_timezone_write_etc_TIMEZONE (const char *tz, - GError **error) -{ - return system_timezone_write_key_file (ETC_TIMEZONE_MAJ, - "TZ", tz, error); -} - /* This works for Fedora and Mandriva */ static char * system_timezone_read_etc_sysconfig_clock (void) @@ -539,14 +418,6 @@ "ZONE"); } -static gboolean -system_timezone_write_etc_sysconfig_clock (const char *tz, - GError **error) -{ - return system_timezone_write_key_file (ETC_SYSCONFIG_CLOCK, - "ZONE", tz, error); -} - /* This works for openSUSE */ static char * system_timezone_read_etc_sysconfig_clock_alt (void) @@ -555,14 +426,6 @@ "TIMEZONE"); } -static gboolean -system_timezone_write_etc_sysconfig_clock_alt (const char *tz, - GError **error) -{ - return system_timezone_write_key_file (ETC_SYSCONFIG_CLOCK, - "TIMEZONE", tz, error); -} - /* This works for old Gentoo */ static char * system_timezone_read_etc_conf_d_clock (void) @@ -571,14 +434,6 @@ "TIMEZONE"); } -static gboolean -system_timezone_write_etc_conf_d_clock (const char *tz, - GError **error) -{ - return system_timezone_write_key_file (ETC_CONF_D_CLOCK, - "TIMEZONE", tz, error); -} - /* This works for Arch Linux */ static char * system_timezone_read_etc_rc_conf (void) @@ -587,14 +442,6 @@ "TIMEZONE"); } -static gboolean -system_timezone_write_etc_rc_conf (const char *tz, - GError **error) -{ - return system_timezone_write_key_file (ETC_RC_CONF, - "TIMEZONE", tz, error); -} - /* * * First, getting the timezone. @@ -848,201 +695,3 @@ return g_strdup ("UTC"); } - -/* - * - * Now, setting the timezone. - * - */ - -static gboolean -system_timezone_is_zone_file_valid (const char *zone_file, - GError **error) -{ - GError *our_error; - GIOChannel *channel; - GIOStatus status; - char buffer[strlen (TZ_MAGIC)]; - gsize read; - - /* First, check the zone_file is properly rooted */ - if (!g_str_has_prefix (zone_file, SYSTEM_ZONEINFODIR"/")) { - g_set_error (error, SYSTEM_TIMEZONE_ERROR, - SYSTEM_TIMEZONE_ERROR_INVALID_TIMEZONE_FILE, - "Timezone file needs to be under "SYSTEM_ZONEINFODIR); - return FALSE; - } - - /* Second, check it's a regular file that exists */ - if (!g_file_test (zone_file, G_FILE_TEST_IS_REGULAR)) { - g_set_error (error, SYSTEM_TIMEZONE_ERROR, - SYSTEM_TIMEZONE_ERROR_INVALID_TIMEZONE_FILE, - "No such timezone file %s", zone_file); - return FALSE; - } - - /* Third, check that it's a tzfile (see tzfile(5)). The file has a 4 - * bytes header which is TZ_MAGIC. - * - * TODO: is there glibc API for this? */ - our_error = NULL; - channel = g_io_channel_new_file (zone_file, "r", &our_error); - if (!our_error) - status = g_io_channel_read_chars (channel, - buffer, strlen (TZ_MAGIC), - &read, &our_error); - if (channel) - g_io_channel_unref (channel); - - if (our_error) { - g_set_error (error, SYSTEM_TIMEZONE_ERROR, - SYSTEM_TIMEZONE_ERROR_INVALID_TIMEZONE_FILE, - "Timezone file %s cannot be read: %s", - zone_file, our_error->message); - g_error_free (our_error); - return FALSE; - } - - if (read != strlen (TZ_MAGIC) || strncmp (buffer, TZ_MAGIC, strlen (TZ_MAGIC)) != 0) { - g_set_error (error, SYSTEM_TIMEZONE_ERROR, - SYSTEM_TIMEZONE_ERROR_INVALID_TIMEZONE_FILE, - "%s is not a timezone file", - zone_file); - return FALSE; - } - - return TRUE; -} - -static gboolean -system_timezone_set_etc_timezone (const char *zone_file, - GError **error) -{ - GError *our_error; - char *content; - gsize len; - - if (!system_timezone_is_zone_file_valid (zone_file, error)) - return FALSE; - - /* If /etc/localtime is a symlink, write a symlink */ - if (g_file_test (ETC_LOCALTIME, G_FILE_TEST_IS_SYMLINK)) { - if (g_unlink (ETC_LOCALTIME) == 0 && - symlink (zone_file, ETC_LOCALTIME) == 0) - return TRUE; - - /* If we couldn't symlink the file, we'll just fallback on - * copying it */ - } - - /* Else copy the file to /etc/localtime. We explicitly avoid doing - * hard links since they break with different partitions */ - our_error = NULL; - if (!g_file_get_contents (zone_file, &content, &len, &our_error)) { - g_set_error (error, SYSTEM_TIMEZONE_ERROR, - SYSTEM_TIMEZONE_ERROR_GENERAL, - "Timezone file %s cannot be read: %s", - zone_file, our_error->message); - g_error_free (our_error); - return FALSE; - } - - if (!g_file_set_contents (ETC_LOCALTIME, content, len, &our_error)) { - g_set_error (error, SYSTEM_TIMEZONE_ERROR, - SYSTEM_TIMEZONE_ERROR_GENERAL, - ETC_LOCALTIME" cannot be overwritten: %s", - our_error->message); - g_error_free (our_error); - g_free (content); - return FALSE; - } - - g_free (content); - - return TRUE; -} - -typedef gboolean (*SetSystemTimezone) (const char *tz, - GError **error); -/* The order here does not matter too much: we'll try to change all files - * that already have a timezone configured. It matters in case of error, - * since the process will be stopped and the last methods won't be called. - * So we use the same order as in get_system_timezone_methods */ -static SetSystemTimezone set_system_timezone_methods[] = { - /* writing various config files if they exist and have the - * setting already present */ - system_timezone_write_etc_timezone, - system_timezone_write_etc_sysconfig_clock, - system_timezone_write_etc_sysconfig_clock_alt, - system_timezone_write_etc_TIMEZONE, - system_timezone_write_etc_rc_conf, - /* writing deprecated config files if they exist and have the - * setting already present */ - system_timezone_write_etc_conf_d_clock, - NULL -}; - -static gboolean -system_timezone_update_config (const char *tz, - GError **error) -{ - int i; - - for (i = 0; set_system_timezone_methods[i] != NULL; i++) { - if (!set_system_timezone_methods[i] (tz, error)) - return FALSE; - /* FIXME: maybe continue to change all config files if - * possible? */ - } - - return TRUE; -} - -gboolean -system_timezone_set_from_file (const char *zone_file, - GError **error) -{ - const char *tz; - - g_return_val_if_fail (error == NULL || *error == NULL, FALSE); - - tz = zone_file + strlen (SYSTEM_ZONEINFODIR"/"); - - /* FIXME: is it right to return FALSE even when /etc/localtime was - * changed but not the config files? */ - return (system_timezone_set_etc_timezone (zone_file, error) && - system_timezone_update_config (tz, error)); -} - -gboolean -system_timezone_set (const char *tz, - GError **error) -{ - char *zone_file; - gboolean retval; - - g_return_val_if_fail (error == NULL || *error == NULL, FALSE); - - zone_file = g_build_filename (SYSTEM_ZONEINFODIR, tz, NULL); - - /* FIXME: is it right to return FALSE even when /etc/localtime was - * changed but not the config files? */ - retval = system_timezone_set_etc_timezone (zone_file, error) && - system_timezone_update_config (tz, error); - - g_free (zone_file); - - return retval; -} - -GQuark -system_timezone_error_quark (void) -{ - static GQuark ret = 0; - - if (ret == 0) { - ret = g_quark_from_static_string ("system-timezone-error"); - } - - return ret; -} diff -Nru gnome-panel-3.3.3/applets/clock/system-timezone.h gnome-panel-3.3.5/applets/clock/system-timezone.h --- gnome-panel-3.3.3/applets/clock/system-timezone.h 2010-02-09 12:32:08.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/system-timezone.h 2012-02-02 15:54:50.000000000 +0000 @@ -61,23 +61,5 @@ const char *system_timezone_get (SystemTimezone *systz); const char *system_timezone_get_env (SystemTimezone *systz); -/* Functions to set the timezone. They won't be used by the applet, but - * by a program with more privileges */ - -#define SYSTEM_TIMEZONE_ERROR system_timezone_error_quark () -GQuark system_timezone_error_quark (void); - -typedef enum -{ - SYSTEM_TIMEZONE_ERROR_GENERAL, - SYSTEM_TIMEZONE_ERROR_INVALID_TIMEZONE_FILE, - SYSTEM_TIMEZONE_NUM_ERRORS -} SystemTimezoneError; - -gboolean system_timezone_set_from_file (const char *zone_file, - GError **error); -gboolean system_timezone_set (const char *tz, - GError **error); - G_END_DECLS #endif /* __SYSTEM_TIMEZONE_H__ */ diff -Nru gnome-panel-3.3.3/applets/clock/test-system-timezone.c gnome-panel-3.3.5/applets/clock/test-system-timezone.c --- gnome-panel-3.3.3/applets/clock/test-system-timezone.c 2010-03-17 06:45:18.000000000 +0000 +++ gnome-panel-3.3.5/applets/clock/test-system-timezone.c 2012-02-02 15:58:44.000000000 +0000 @@ -32,21 +32,6 @@ g_object_unref (systz); } -static int -timezone_set (const char *new_tz) -{ - GError *error; - - error = NULL; - if (!system_timezone_set (new_tz, &error)) { - g_printerr ("%s\n", error->message); - g_error_free (error); - return 1; - } - - return 0; -} - static void timezone_changed (SystemTimezone *systz, const char *new_tz, @@ -78,15 +63,11 @@ { int retval; - gboolean get = FALSE; gboolean monitor = FALSE; - char *tz_set = NULL; GError *error; GOptionContext *context; GOptionEntry options[] = { - { "get", 'g', 0, G_OPTION_ARG_NONE, &get, "Get the current timezone", NULL }, - { "set", 's', 0, G_OPTION_ARG_STRING, &tz_set, "Set the timezone to TIMEZONE", "TIMEZONE" }, { "monitor", 'm', 0, G_OPTION_ARG_NONE, &monitor, "Monitor timezone changes", NULL }, { NULL, 0, 0, 0, NULL, NULL, NULL } }; @@ -109,14 +90,9 @@ g_option_context_free (context); - if (get || (!tz_set && !monitor)) - timezone_print (); - else if (tz_set) - retval = timezone_set (tz_set); - else if (monitor) + timezone_print (); + if (monitor) timezone_monitor (); - else - g_assert_not_reached (); return retval; } diff -Nru gnome-panel-3.3.3/applets/fish/fish.c gnome-panel-3.3.5/applets/fish/fish.c --- gnome-panel-3.3.3/applets/fish/fish.c 2011-03-28 21:08:42.000000000 +0000 +++ gnome-panel-3.3.5/applets/fish/fish.c 2012-02-02 14:25:57.000000000 +0000 @@ -47,6 +47,7 @@ FISH_TYPE_APPLET)) #define FISH_ICON "gnome-panel-fish" +#define FISH_RESOURCE_PATH "/org/gnome/panel/applet/fish/" #define FISH_SCHEMA "org.gnome.gnome-panel.applet.fish" #define FISH_NAME_KEY "name" @@ -264,7 +265,6 @@ FishApplet *fish) { GtkBuilder *builder; - GError *error; GtkWidget *box; GtkWidget *name_entry; GtkWidget *command_entry; @@ -281,14 +281,7 @@ builder = gtk_builder_new (); gtk_builder_set_translation_domain (builder, GETTEXT_PACKAGE); - - error = NULL; - gtk_builder_add_from_file (builder, FISH_BUILDERDIR "/fish.ui", &error); - if (error) { - g_warning ("Error loading preferences: %s", error->message); - g_error_free (error); - return; - } + gtk_builder_add_from_resource (builder, FISH_RESOURCE_PATH "fish.ui", NULL); fish->preferences_dialog = GTK_WIDGET (gtk_builder_get_object (builder, "fish_preferences_dialog")); @@ -1077,7 +1070,6 @@ cairo_t *cr, FishApplet *fish) { - GdkWindow *window; int width, height; int src_x, src_y; @@ -1085,8 +1077,6 @@ g_assert (fish->n_frames > 0); - window = gtk_widget_get_window (widget); - width = cairo_xlib_surface_get_width (fish->surface); height = cairo_xlib_surface_get_height (fish->surface); @@ -1442,7 +1432,6 @@ PanelApplet *applet = (PanelApplet *) fish; GtkActionGroup *action_group; GtkAction *action; - gchar *ui_path; fish->orientation = panel_applet_get_orient (applet); @@ -1460,9 +1449,9 @@ fish_menu_verbs, G_N_ELEMENTS (fish_menu_verbs), fish); - ui_path = g_build_filename (FISH_MENU_UI_DIR, "fish-menu.xml", NULL); - panel_applet_setup_menu_from_file (applet, ui_path, action_group); - g_free (ui_path); + panel_applet_setup_menu_from_resource (applet, + FISH_RESOURCE_PATH "fish-menu.xml", + action_group); action = gtk_action_group_get_action (action_group, "FishPreferences"); g_object_bind_property (applet, "locked-down", diff -Nru gnome-panel-3.3.3/applets/fish/fish.gresource.xml gnome-panel-3.3.5/applets/fish/fish.gresource.xml --- gnome-panel-3.3.3/applets/fish/fish.gresource.xml 1970-01-01 00:00:00.000000000 +0000 +++ gnome-panel-3.3.5/applets/fish/fish.gresource.xml 2012-02-02 14:25:57.000000000 +0000 @@ -0,0 +1,7 @@ + + + + fish.ui + fish-menu.xml + + diff -Nru gnome-panel-3.3.3/applets/fish/fish-resources.c gnome-panel-3.3.5/applets/fish/fish-resources.c --- gnome-panel-3.3.3/applets/fish/fish-resources.c 1970-01-01 00:00:00.000000000 +0000 +++ gnome-panel-3.3.5/applets/fish/fish-resources.c 2012-02-06 11:26:03.000000000 +0000 @@ -0,0 +1,445 @@ +#include + +#if defined (__ELF__) && ( __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6)) +# define SECTION __attribute__ ((section (".gresource.fish"), aligned (8))) +#else +# define SECTION +#endif + +static const SECTION union { const guint8 data[2496]; const double alignment; void * const ptr;} fish_resource_data = { { + 0x47, 0x56, 0x61, 0x72, 0x69, 0x61, 0x6e, 0x74, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x18, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x28, 0x08, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x04, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, + 0x07, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, + 0x48, 0xe2, 0x75, 0x18, 0x06, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x0d, 0x00, 0x76, 0x00, + 0x10, 0x01, 0x00, 0x00, 0x5f, 0x01, 0x00, 0x00, + 0xb0, 0xb7, 0x24, 0x30, 0x03, 0x00, 0x00, 0x00, + 0x5f, 0x01, 0x00, 0x00, 0x06, 0x00, 0x4c, 0x00, + 0x68, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, + 0x93, 0x1c, 0x9c, 0x02, 0x06, 0x00, 0x00, 0x00, + 0x6c, 0x01, 0x00, 0x00, 0x07, 0x00, 0x76, 0x00, + 0x78, 0x01, 0x00, 0x00, 0x87, 0x09, 0x00, 0x00, + 0x4b, 0x50, 0x90, 0x0b, 0x04, 0x00, 0x00, 0x00, + 0x87, 0x09, 0x00, 0x00, 0x04, 0x00, 0x4c, 0x00, + 0x8c, 0x09, 0x00, 0x00, 0x90, 0x09, 0x00, 0x00, + 0xd4, 0xb5, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, + 0x90, 0x09, 0x00, 0x00, 0x01, 0x00, 0x4c, 0x00, + 0x94, 0x09, 0x00, 0x00, 0x98, 0x09, 0x00, 0x00, + 0x44, 0x9f, 0x99, 0xd8, 0x07, 0x00, 0x00, 0x00, + 0x98, 0x09, 0x00, 0x00, 0x07, 0x00, 0x4c, 0x00, + 0xa0, 0x09, 0x00, 0x00, 0xa4, 0x09, 0x00, 0x00, + 0xbd, 0x17, 0x85, 0xaa, 0x05, 0x00, 0x00, 0x00, + 0xa4, 0x09, 0x00, 0x00, 0x05, 0x00, 0x4c, 0x00, + 0xac, 0x09, 0x00, 0x00, 0xb4, 0x09, 0x00, 0x00, + 0x6f, 0xd8, 0xf6, 0x94, 0x01, 0x00, 0x00, 0x00, + 0xb4, 0x09, 0x00, 0x00, 0x06, 0x00, 0x4c, 0x00, + 0xbc, 0x09, 0x00, 0x00, 0xc0, 0x09, 0x00, 0x00, + 0x66, 0x69, 0x73, 0x68, 0x2d, 0x6d, 0x65, 0x6e, + 0x75, 0x2e, 0x78, 0x6d, 0x6c, 0x00, 0x00, 0x00, + 0x42, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x78, 0xda, 0xb3, 0xc9, 0x4d, 0xcd, 0x2b, 0xcd, + 0x2c, 0x49, 0xcd, 0x55, 0xc8, 0x4b, 0xcc, 0x4d, + 0xb5, 0x55, 0x72, 0xcb, 0x2c, 0xce, 0x50, 0x08, + 0x28, 0x4a, 0x4d, 0x4b, 0x2d, 0x4a, 0xcd, 0x4b, + 0x4e, 0x2d, 0x56, 0xf0, 0x04, 0xca, 0x29, 0x29, + 0x24, 0x26, 0x97, 0x64, 0xe6, 0xe7, 0x41, 0xa4, + 0x91, 0x64, 0x95, 0xf4, 0xed, 0xb8, 0x00, 0x1e, + 0x4a, 0x17, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x67, + 0x6e, 0x6f, 0x6d, 0x65, 0x2f, 0x00, 0x00, 0x00, + 0x07, 0x00, 0x00, 0x00, 0x66, 0x69, 0x73, 0x68, + 0x2e, 0x75, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x6d, 0x40, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x78, 0xda, 0xed, 0x5c, 0x5b, 0x73, 0xe2, 0x36, + 0x14, 0x7e, 0xcf, 0xaf, 0x50, 0xd5, 0x99, 0xbe, + 0x74, 0x08, 0x31, 0xdb, 0x24, 0xbb, 0x5b, 0xf0, + 0xce, 0x6e, 0xda, 0xdd, 0x7d, 0xe8, 0x74, 0x76, + 0xda, 0x4e, 0x5f, 0x3d, 0xc2, 0x3e, 0x80, 0x16, + 0x21, 0xb9, 0x92, 0x0c, 0xe4, 0xdf, 0x57, 0xb6, + 0x49, 0x30, 0x60, 0x63, 0xf9, 0x92, 0x84, 0x00, + 0x79, 0x02, 0x5b, 0x47, 0x3e, 0xdf, 0x77, 0x6e, + 0xf6, 0x39, 0x38, 0xfd, 0x0f, 0xcb, 0x19, 0x43, + 0x73, 0x90, 0x8a, 0x0a, 0x3e, 0xc0, 0xce, 0xe5, + 0x15, 0xfe, 0xe0, 0x5e, 0xf4, 0x29, 0xd7, 0x20, + 0x47, 0xc4, 0x07, 0xf7, 0x02, 0xa1, 0xbe, 0x84, + 0xff, 0x22, 0x2a, 0x41, 0x21, 0x46, 0x87, 0x03, + 0x3c, 0xd6, 0xd3, 0x9f, 0xf1, 0x5a, 0xa4, 0x77, + 0xe9, 0xdc, 0xe0, 0x6e, 0xb2, 0xee, 0x87, 0x4e, + 0x07, 0x3d, 0x4a, 0x76, 0x38, 0x99, 0x51, 0x3e, + 0xee, 0x84, 0x82, 0x51, 0xff, 0x1e, 0x69, 0x11, + 0x32, 0x98, 0x03, 0xeb, 0xf8, 0xc2, 0xac, 0x58, + 0xea, 0x88, 0x30, 0xd4, 0xe9, 0x24, 0x62, 0x62, + 0xf8, 0x1d, 0x7c, 0x8d, 0x7c, 0x46, 0x94, 0x1a, + 0xe0, 0x2f, 0x7a, 0xfa, 0x1b, 0x25, 0x4c, 0x8c, + 0x31, 0xa2, 0xc1, 0x00, 0x8f, 0xa8, 0x9a, 0x78, + 0xa1, 0x84, 0x11, 0x48, 0xe0, 0x3e, 0x28, 0x2f, + 0x48, 0x4f, 0xc6, 0x92, 0x46, 0x36, 0x94, 0x22, + 0x04, 0xa9, 0xef, 0x91, 0xb9, 0x1a, 0x0c, 0xf0, + 0x50, 0xc8, 0x00, 0xa4, 0xb7, 0xa0, 0x81, 0x9e, + 0x60, 0xf7, 0xba, 0xdf, 0x7d, 0x38, 0x9f, 0xbf, + 0x5c, 0x53, 0xcd, 0x00, 0x23, 0x2d, 0x09, 0x57, + 0x8c, 0x68, 0x32, 0x64, 0xe6, 0xe0, 0x3d, 0x28, + 0xec, 0x7e, 0x36, 0x97, 0x45, 0xdf, 0xd6, 0x97, + 0x2d, 0xdd, 0xe9, 0x3e, 0x04, 0x6f, 0x62, 0xc0, + 0x63, 0x37, 0x55, 0x70, 0x47, 0xc0, 0x9f, 0x50, + 0x16, 0xa4, 0xf4, 0x70, 0x62, 0x68, 0x88, 0xbf, + 0x0e, 0xf0, 0x7c, 0x28, 0x96, 0x2b, 0x2c, 0x79, + 0x4c, 0xfc, 0xfb, 0xc9, 0x9c, 0x4e, 0x78, 0x48, + 0x77, 0xed, 0xc4, 0xeb, 0x7b, 0x8f, 0x02, 0xbb, + 0x7a, 0xcc, 0xa9, 0xa2, 0x06, 0x05, 0x76, 0xff, + 0x91, 0x11, 0x6c, 0xeb, 0x90, 0x27, 0x20, 0x24, + 0x05, 0xae, 0x89, 0x36, 0xb6, 0xc4, 0xae, 0x31, + 0xaa, 0xa6, 0x3e, 0x61, 0x36, 0x82, 0x2a, 0x24, + 0xbe, 0xb1, 0x2f, 0x76, 0x7b, 0xb9, 0xab, 0x13, + 0x7c, 0xeb, 0xef, 0xfb, 0xc1, 0xc5, 0xa8, 0xae, + 0x71, 0x76, 0x75, 0x0d, 0x64, 0x35, 0xfc, 0xa1, + 0x31, 0x29, 0x7b, 0x89, 0x71, 0xde, 0x16, 0x8a, + 0xec, 0xb0, 0x63, 0xc3, 0xd0, 0x0d, 0xde, 0x96, + 0xa8, 0xc9, 0x52, 0x63, 0xc8, 0x7b, 0x61, 0xdf, + 0xec, 0x95, 0xca, 0x45, 0x9e, 0x8f, 0xfe, 0x0f, + 0x32, 0x04, 0x96, 0xc2, 0x67, 0xf1, 0x47, 0xe7, + 0x0d, 0xce, 0x13, 0x6c, 0x40, 0x42, 0x9e, 0xf0, + 0x92, 0x30, 0x3a, 0x36, 0x1c, 0x5c, 0x55, 0x15, + 0x64, 0xa9, 0xba, 0x39, 0xc9, 0xe4, 0x0b, 0x70, + 0x90, 0xfb, 0xd9, 0x4c, 0x36, 0x24, 0x5a, 0x4b, + 0x3a, 0x8c, 0x34, 0xa8, 0xfc, 0x05, 0xd9, 0x25, + 0xab, 0x8b, 0x2e, 0x80, 0x8e, 0x27, 0xda, 0xa4, + 0x63, 0xc2, 0xa2, 0xc4, 0xdf, 0x59, 0x90, 0x26, + 0xe3, 0x1c, 0xd9, 0xee, 0xfe, 0xfd, 0xfb, 0xdd, + 0xd4, 0x02, 0xb9, 0xe7, 0x8c, 0x71, 0xa7, 0xc6, + 0xba, 0x76, 0x4c, 0xc0, 0x32, 0x24, 0x3c, 0x30, + 0x49, 0x94, 0x30, 0x55, 0x99, 0xff, 0x11, 0x65, + 0xac, 0xa6, 0x68, 0x28, 0x14, 0x4d, 0x1d, 0xb8, + 0xc4, 0x78, 0xe6, 0x6c, 0x11, 0x9e, 0x7e, 0xb7, + 0xc0, 0x43, 0xab, 0x78, 0xee, 0xd7, 0xc7, 0xb8, + 0x9d, 0x14, 0xc4, 0x6d, 0x73, 0xb7, 0x2d, 0x54, + 0xc7, 0x32, 0x98, 0x8a, 0xb4, 0x6a, 0xac, 0x59, + 0x71, 0x6c, 0xb8, 0x2b, 0xee, 0x4b, 0xc4, 0xf7, + 0x39, 0x62, 0xb9, 0x33, 0x36, 0x76, 0xc8, 0x86, + 0x4e, 0xd9, 0xc8, 0x31, 0x4b, 0x9c, 0x73, 0xaf, + 0x83, 0xd6, 0xf1, 0x8a, 0xcd, 0x02, 0x73, 0xfb, + 0x9c, 0x2e, 0x51, 0xb9, 0xe0, 0x34, 0x2b, 0x3c, + 0x76, 0x0c, 0x95, 0x85, 0x73, 0x7c, 0x45, 0x2f, + 0x7b, 0xcb, 0xf6, 0x44, 0x64, 0xed, 0xbf, 0xaf, + 0xe8, 0x59, 0x6f, 0x51, 0x0a, 0xb6, 0x34, 0x59, + 0x24, 0x88, 0x57, 0xe1, 0x5b, 0xb2, 0x4f, 0x4b, + 0xb8, 0x1b, 0x15, 0xe5, 0x7a, 0x05, 0xda, 0xfb, + 0xd3, 0x2c, 0x40, 0x62, 0x84, 0xe2, 0xa7, 0x8d, + 0xf7, 0x4d, 0xae, 0x11, 0x29, 0xf0, 0x66, 0x44, + 0x4e, 0xa3, 0xb0, 0x39, 0xe8, 0x78, 0xaf, 0x88, + 0x9b, 0xfb, 0x57, 0x46, 0x79, 0x0b, 0x1c, 0xce, + 0x38, 0xcc, 0x04, 0xa7, 0x7e, 0x7c, 0x37, 0x3c, + 0x06, 0xf3, 0xa0, 0x92, 0x98, 0xd6, 0xc4, 0xa0, + 0xbc, 0xb7, 0xdf, 0xb6, 0x2c, 0x37, 0xdb, 0xe7, + 0xe8, 0xd6, 0x72, 0x75, 0x4b, 0x39, 0xbb, 0x95, + 0xdc, 0x6d, 0x99, 0xc3, 0xad, 0x72, 0x79, 0xd3, + 0x20, 0xfe, 0x3d, 0xb6, 0x6c, 0x26, 0x88, 0x13, + 0x4b, 0xbf, 0x64, 0x10, 0xfb, 0x84, 0x7b, 0x23, + 0xe1, 0x47, 0xaa, 0xf9, 0x56, 0xc4, 0xd7, 0x74, + 0x4e, 0x74, 0xdc, 0x0e, 0x80, 0x11, 0x89, 0x98, + 0xae, 0xba, 0xe5, 0xd3, 0xfb, 0xf1, 0xda, 0x6f, + 0x9c, 0x97, 0xf0, 0x1b, 0x1b, 0x80, 0x76, 0xe0, + 0x1a, 0x07, 0x84, 0x05, 0xa8, 0x52, 0x40, 0xcd, + 0xca, 0xb6, 0x2f, 0x66, 0x33, 0x93, 0x54, 0x4e, + 0xab, 0x72, 0x3f, 0x80, 0x3e, 0xf6, 0xe2, 0x7d, + 0x27, 0xbc, 0x04, 0x28, 0xd2, 0x02, 0xc9, 0x88, + 0xa3, 0xc5, 0x04, 0xb8, 0x61, 0x84, 0xfa, 0x53, + 0x08, 0xde, 0x1f, 0x72, 0xfd, 0x7d, 0x30, 0xd0, + 0xb9, 0x04, 0x9f, 0x40, 0x09, 0xde, 0x30, 0xf6, + 0xb9, 0x0a, 0x9f, 0xab, 0x70, 0x6b, 0x55, 0xd8, + 0x79, 0xae, 0x2a, 0xdc, 0x7e, 0x5f, 0xa6, 0x12, + 0x88, 0xfa, 0x7d, 0x91, 0xf6, 0x3a, 0x9b, 0xd6, + 0x0a, 0x57, 0xef, 0x30, 0x16, 0x29, 0x59, 0xac, + 0x60, 0xad, 0x34, 0x59, 0xa0, 0x58, 0xae, 0x52, + 0xf5, 0xc6, 0x14, 0x6f, 0x4f, 0x7d, 0x4c, 0xd1, + 0x7b, 0xa5, 0x63, 0x8a, 0x8f, 0x9c, 0xce, 0x12, + 0x66, 0xcf, 0x83, 0x8a, 0xd3, 0x1c, 0x54, 0xdc, + 0x1e, 0xe4, 0xa0, 0xe2, 0xf6, 0xf9, 0x07, 0x15, + 0x79, 0xd1, 0x71, 0x9e, 0x5d, 0x1c, 0xf4, 0xec, + 0xe2, 0xdd, 0x79, 0x76, 0x51, 0x12, 0xe1, 0x2a, + 0x04, 0x38, 0xb1, 0x16, 0x48, 0x0a, 0xf9, 0xe8, + 0xa7, 0x17, 0xdf, 0x48, 0xa4, 0x00, 0x99, 0xc5, + 0x68, 0x24, 0xcd, 0xda, 0x83, 0x6e, 0x7a, 0xa4, + 0x26, 0x51, 0x21, 0xe5, 0xe7, 0x8e, 0xc7, 0x11, + 0x76, 0x3c, 0xfe, 0x36, 0x86, 0xfd, 0x14, 0x69, + 0x6d, 0x54, 0xcf, 0x44, 0x60, 0x6c, 0xee, 0x23, + 0xe9, 0x79, 0x50, 0xbe, 0xd2, 0xca, 0xf3, 0x27, + 0x44, 0x62, 0xf7, 0xa7, 0x1f, 0x97, 0xbd, 0xeb, + 0xbb, 0xcf, 0xbf, 0x36, 0xea, 0xa3, 0x04, 0xdf, + 0x23, 0xa5, 0x67, 0x10, 0xff, 0x7a, 0x70, 0xfd, + 0xb9, 0xd7, 0x08, 0x31, 0xa3, 0xb3, 0xa1, 0x27, + 0x89, 0x36, 0xec, 0x5d, 0x5d, 0x3a, 0x57, 0xe9, + 0x9f, 0xf3, 0xcb, 0xbb, 0x26, 0x9b, 0x06, 0x74, + 0x4c, 0xb5, 0xaa, 0xd4, 0x4a, 0xd9, 0xdd, 0x84, + 0x47, 0x33, 0x90, 0xd4, 0x3f, 0xbc, 0x56, 0xd1, + 0xe1, 0xe6, 0x00, 0xe7, 0x75, 0xe5, 0x80, 0x9d, + 0x02, 0x6c, 0x90, 0xe8, 0xa3, 0xaf, 0xc2, 0x0a, + 0x7c, 0xc1, 0x03, 0x75, 0x98, 0xcd, 0xcf, 0xde, + 0x71, 0x35, 0x3f, 0x6b, 0x85, 0x6a, 0x0b, 0x61, + 0x7a, 0x00, 0x4d, 0xd8, 0x7a, 0x4f, 0x01, 0x77, + 0x13, 0xf0, 0xa7, 0xd9, 0xba, 0x2c, 0x85, 0x79, + 0x7c, 0x01, 0x4f, 0x8b, 0xf1, 0x38, 0x8e, 0xad, + 0x8b, 0x76, 0x62, 0xc0, 0xfb, 0x2b, 0xd9, 0x16, + 0x09, 0x8e, 0x1e, 0x9e, 0x8a, 0x90, 0xb1, 0x14, + 0x30, 0x55, 0x97, 0xe1, 0x56, 0x1e, 0x3e, 0x6a, + 0x96, 0xff, 0xed, 0x6d, 0x24, 0xf8, 0x40, 0xe7, + 0xd9, 0x69, 0x47, 0x23, 0xe7, 0x69, 0x70, 0xa7, + 0xbd, 0x53, 0x98, 0x25, 0x59, 0x78, 0x94, 0x07, + 0x86, 0x70, 0x2d, 0x64, 0x95, 0xbd, 0x4e, 0x29, + 0x46, 0xdf, 0x9c, 0x07, 0x25, 0xe7, 0x41, 0x89, + 0xb5, 0x72, 0xf6, 0x83, 0x92, 0x3c, 0x85, 0xf2, + 0x95, 0xa9, 0xac, 0x48, 0x8e, 0x12, 0x3b, 0x0a, + 0x14, 0xbc, 0x59, 0x14, 0x0f, 0x67, 0x05, 0xf7, + 0x88, 0x04, 0x82, 0xf7, 0xbf, 0x87, 0xf3, 0x35, + 0x2d, 0x0c, 0xdb, 0xaf, 0x1a, 0x65, 0x36, 0xe8, + 0xb5, 0xf2, 0x6e, 0x8e, 0xe5, 0x34, 0x29, 0x5b, + 0xa6, 0x26, 0xc0, 0x42, 0x6f, 0x98, 0x1e, 0x28, + 0xb7, 0xeb, 0xea, 0x16, 0x73, 0xac, 0xa7, 0x9d, + 0x58, 0xb0, 0xca, 0x58, 0xa8, 0xf6, 0x40, 0xaa, + 0x42, 0x6d, 0xc9, 0x13, 0xb5, 0x1e, 0x9c, 0xb7, + 0x50, 0x8c, 0xf2, 0x0a, 0x90, 0xd2, 0xc2, 0x9f, + 0x96, 0x5d, 0xbd, 0x79, 0xc4, 0x59, 0x17, 0x83, + 0x9a, 0x05, 0xe0, 0x60, 0x46, 0xa1, 0x59, 0xe7, + 0x0d, 0x04, 0x87, 0x5a, 0xce, 0xeb, 0x33, 0x51, + 0x0d, 0xee, 0xab, 0xf3, 0xde, 0x09, 0x51, 0x67, + 0xd7, 0x7f, 0x6a, 0xd7, 0x7f, 0xe1, 0xe2, 0x66, + 0x05, 0xbc, 0x06, 0xe8, 0x1d, 0xc0, 0x46, 0x19, + 0x2f, 0x7e, 0xff, 0x16, 0xbb, 0xc0, 0x03, 0x6b, + 0xa9, 0xb2, 0x0c, 0x51, 0x5e, 0x7a, 0x37, 0xa9, + 0xd9, 0x38, 0xd9, 0x4f, 0x8b, 0x67, 0x27, 0xed, + 0x7a, 0x3f, 0x4e, 0xb1, 0x37, 0x0f, 0x23, 0x09, + 0x2a, 0x14, 0x5c, 0x19, 0x6d, 0x3a, 0x8e, 0x83, + 0xdd, 0x4c, 0xb1, 0xeb, 0x77, 0x37, 0x56, 0x96, + 0xcb, 0x5f, 0x63, 0x37, 0x93, 0x6e, 0x72, 0xc5, + 0xb7, 0x0e, 0x26, 0x4a, 0x65, 0x21, 0xec, 0x26, + 0xb3, 0x8f, 0xeb, 0xbe, 0x64, 0x92, 0xd0, 0xd6, + 0xbd, 0x49, 0xa7, 0xe0, 0xfd, 0x6b, 0x26, 0x16, + 0x20, 0x73, 0x3c, 0x6f, 0x27, 0xfe, 0xc2, 0x30, + 0x5e, 0xd7, 0xbb, 0x2e, 0x7d, 0x45, 0x3b, 0xf9, + 0xbd, 0x40, 0xce, 0xbd, 0xfb, 0xce, 0x80, 0x49, + 0x43, 0x68, 0x1e, 0x81, 0x7c, 0x09, 0x69, 0x1f, + 0xb5, 0x54, 0x85, 0x90, 0x8c, 0x21, 0x2b, 0xb0, + 0xa5, 0x49, 0x5d, 0x66, 0x7a, 0xfb, 0x99, 0x59, + 0xf7, 0x62, 0x1f, 0xfe, 0x6c, 0xb9, 0x72, 0xae, + 0x2c, 0xa9, 0x72, 0xaa, 0x52, 0x55, 0x43, 0xa7, + 0x6d, 0xf2, 0x9c, 0x22, 0xf2, 0xfa, 0xdd, 0xcc, + 0xbf, 0x12, 0xf8, 0x1f, 0xe0, 0x76, 0xb0, 0xf8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x6f, + 0x72, 0x67, 0x2f, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x2f, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, + 0x61, 0x70, 0x70, 0x6c, 0x65, 0x74, 0x2f, 0x00, + 0x06, 0x00, 0x00, 0x00, 0x66, 0x69, 0x73, 0x68, + 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x70, 0x61, 0x6e, 0x65, + 0x6c, 0x2f, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00 +} }; + +static GStaticResource static_resource = { fish_resource_data.data, sizeof (fish_resource_data.data) }; +extern GResource *fish_get_resource (void); +GResource *fish_get_resource (void) +{ + return g_static_resource_get_resource (&static_resource); +} +/* + If G_HAS_CONSTRUCTORS is true then the compiler support *both* constructors and + destructors, in a sane way, including e.g. on library unload. If not you're on + your own. + + Some compilers need #pragma to handle this, which does not work with macros, + so the way you need to use this is (for constructors): + + #ifdef G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA + #pragma G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(my_constructor) + #endif + G_DEFINE_CONSTRUCTOR(my_constructor) + static void my_constructor(void) { + ... + } + +*/ + +#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) + +#define G_HAS_CONSTRUCTORS 1 + +#define G_DEFINE_CONSTRUCTOR(_func) static void __attribute__((constructor)) _func (void); +#define G_DEFINE_DESTRUCTOR(_func) static void __attribute__((destructor)) _func (void); + +#elif defined (_MSC_VER) && (_MSC_VER >= 1500) +/* Visual studio 2008 and later has _Pragma */ + +#define G_HAS_CONSTRUCTORS 1 + +#define G_DEFINE_CONSTRUCTOR(_func) \ + static void _func(void); \ + static int _func ## _wrapper(void) { _func(); return 0; } \ + __pragma(section(".CRT$XCU",read)) \ + __declspec(allocate(".CRT$XCU")) static int (* _array ## _func)(void) = _func ## _wrapper; + +#define G_DEFINE_DESTRUCTOR(_func) \ + static void _func(void); \ + static int _func ## _constructor(void) { atexit (_func); return 0; } \ + __pragma(section(".CRT$XCU",read)) \ + __declspec(allocate(".CRT$XCU")) static int (* _array ## _func)(void) = _func ## _constructor; + +#elif defined (_MSC_VER) + +#define G_HAS_CONSTRUCTORS 1 + +/* Pre Visual studio 2008 must use #pragma section */ +#define G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA 1 +#define G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA 1 + +#define G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(_func) \ + section(".CRT$XCU",read) +#define G_DEFINE_CONSTRUCTOR(_func) \ + static void _func(void); \ + static int _func ## _wrapper(void) { _func(); return 0; } \ + __declspec(allocate(".CRT$XCU")) static int (*p)(void) = _func ## _wrapper; + +#define G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(_func) \ + section(".CRT$XCU",read) +#define G_DEFINE_DESTRUCTOR(_func) \ + static void _func(void); \ + static int _func ## _constructor(void) { atexit (_func); return 0; } \ + __declspec(allocate(".CRT$XCU")) static int (* _array ## _func)(void) = _func ## _constructor; + +#elif defined(__SUNPRO_C) + +/* This is not tested, but i believe it should work, based on: + * http://opensource.apple.com/source/OpenSSL098/OpenSSL098-35/src/fips/fips_premain.c + */ + +#define G_HAS_CONSTRUCTORS 1 + +#define G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA 1 +#define G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA 1 + +#define G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(_func) \ + init(_func) +#define G_DEFINE_CONSTRUCTOR(_func) \ + static void _func(void); + +#define G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(_func) \ + fini(_func) +#define G_DEFINE_DESTRUCTOR(_func) \ + static void _func(void); + +#else + +/* constructors not supported for this compiler */ + +#endif + + +#ifdef G_HAS_CONSTRUCTORS + +#ifdef G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA +#pragma G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(resource_constructor) +#endif +G_DEFINE_CONSTRUCTOR(resource_constructor) +#ifdef G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA +#pragma G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(resource_destructor) +#endif +G_DEFINE_DESTRUCTOR(resource_destructor) + +#else +#warning "Constructor not supported on this compiler, linking in resources will not work" +#endif + +static void resource_constructor (void) +{ + g_static_resource_init (&static_resource); +} + +static void resource_destructor (void) +{ + g_static_resource_fini (&static_resource); +} diff -Nru gnome-panel-3.3.3/applets/fish/fish-resources.h gnome-panel-3.3.5/applets/fish/fish-resources.h --- gnome-panel-3.3.3/applets/fish/fish-resources.h 1970-01-01 00:00:00.000000000 +0000 +++ gnome-panel-3.3.5/applets/fish/fish-resources.h 2012-02-06 11:26:03.000000000 +0000 @@ -0,0 +1,7 @@ +#ifndef __RESOURCE_fish_H__ +#define __RESOURCE_fish_H__ + +#include + +extern GResource *fish_get_resource (void); +#endif diff -Nru gnome-panel-3.3.3/applets/fish/Makefile.am gnome-panel-3.3.5/applets/fish/Makefile.am --- gnome-panel-3.3.3/applets/fish/Makefile.am 2011-03-28 21:08:42.000000000 +0000 +++ gnome-panel-3.3.5/applets/fish/Makefile.am 2012-02-06 12:15:04.000000000 +0000 @@ -6,13 +6,13 @@ -I$(top_builddir)/libpanel-applet \ -DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ -DFISH_ICONDIR=\""$(fishbitmapsdir)"\" \ - -DFISH_BUILDERDIR=\""$(uidir)"\" \ - -DFISH_MENU_UI_DIR=\""$(xmluidir)"\" \ $(DISABLE_DEPRECATED_CFLAGS) AM_CFLAGS = $(WARN_CFLAGS) -FISH_SOURCES = fish.c +FISH_SOURCES = \ + fish.c \ + $(BUILT_SOURCES) FISH_LDADD = \ ../../libpanel-applet/libpanel-applet-4.la \ @@ -63,7 +63,7 @@ $< > $@ endif -fishbitmapsdir = $(datadir)/gnome-panel/pixmaps +fishbitmapsdir = $(datadir)/gnome-panel/fish fishbitmaps_DATA = \ wanda.fish \ wanda.png \ @@ -76,20 +76,28 @@ monkey.fish \ monkey.png -uidir = $(datadir)/gnome-panel/ui -ui_DATA = fish.ui - -xmluidir = $(datadir)/gnome-panel/ui -xmlui_DATA = fish-menu.xml +ui_FILES = \ + fish.ui \ + fish-menu.xml + +fish-resources.c: fish.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies fish.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name fish $(srcdir)/$< + +fish-resources.h: fish.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies fish.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name fish $(srcdir)/$< + +BUILT_SOURCES = \ + fish-resources.c \ + fish-resources.h EXTRA_DIST = \ wanda.svg \ $(fishbitmaps_DATA) \ org.gnome.panel.FishApplet.panel-applet.in.in \ $(service_in_files) \ - $(ui_DATA) \ - $(xmlui_DATA) + $(ui_FILES) \ + fish.gresource.xml -CLEANFILES = $(applet_DATA) $(applet_DATA).in $(service_DATA) +CLEANFILES = $(BUILT_SOURCES) $(applet_DATA) $(applet_DATA).in $(service_DATA) -include $(top_srcdir)/git.mk diff -Nru gnome-panel-3.3.3/applets/fish/Makefile.in gnome-panel-3.3.5/applets/fish/Makefile.in --- gnome-panel-3.3.3/applets/fish/Makefile.in 2011-12-20 08:16:04.000000000 +0000 +++ gnome-panel-3.3.5/applets/fish/Makefile.in 2012-02-06 12:16:58.000000000 +0000 @@ -75,17 +75,18 @@ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__installdirs = "$(DESTDIR)$(fish_applet_libdir)" \ "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(appletdir)" \ - "$(DESTDIR)$(fishbitmapsdir)" "$(DESTDIR)$(servicedir)" \ - "$(DESTDIR)$(uidir)" "$(DESTDIR)$(xmluidir)" + "$(DESTDIR)$(fishbitmapsdir)" "$(DESTDIR)$(servicedir)" LTLIBRARIES = $(fish_applet_lib_LTLIBRARIES) am__DEPENDENCIES_1 = am__DEPENDENCIES_2 = ../../libpanel-applet/libpanel-applet-4.la \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) @FISH_INPROCESS_TRUE@libfish_applet_la_DEPENDENCIES = \ @FISH_INPROCESS_TRUE@ $(am__DEPENDENCIES_2) -am__libfish_applet_la_SOURCES_DIST = fish.c -am__objects_1 = libfish_applet_la-fish.lo -@FISH_INPROCESS_TRUE@am_libfish_applet_la_OBJECTS = $(am__objects_1) +am__libfish_applet_la_SOURCES_DIST = fish.c fish-resources.c \ + fish-resources.h +am__objects_1 = libfish_applet_la-fish-resources.lo +am__objects_2 = libfish_applet_la-fish.lo $(am__objects_1) +@FISH_INPROCESS_TRUE@am_libfish_applet_la_OBJECTS = $(am__objects_2) libfish_applet_la_OBJECTS = $(am_libfish_applet_la_OBJECTS) AM_V_lt = $(am__v_lt_$(V)) am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) @@ -97,9 +98,11 @@ @FISH_INPROCESS_TRUE@am_libfish_applet_la_rpath = -rpath \ @FISH_INPROCESS_TRUE@ $(fish_applet_libdir) PROGRAMS = $(libexec_PROGRAMS) -am__fish_applet_SOURCES_DIST = fish.c -am__objects_2 = fish_applet-fish.$(OBJEXT) -@FISH_INPROCESS_FALSE@am_fish_applet_OBJECTS = $(am__objects_2) +am__fish_applet_SOURCES_DIST = fish.c fish-resources.c \ + fish-resources.h +am__objects_3 = fish_applet-fish-resources.$(OBJEXT) +am__objects_4 = fish_applet-fish.$(OBJEXT) $(am__objects_3) +@FISH_INPROCESS_FALSE@am_fish_applet_OBJECTS = $(am__objects_4) fish_applet_OBJECTS = $(am_fish_applet_OBJECTS) @FISH_INPROCESS_FALSE@fish_applet_DEPENDENCIES = \ @FISH_INPROCESS_FALSE@ $(am__DEPENDENCIES_2) @@ -135,8 +138,7 @@ SOURCES = $(libfish_applet_la_SOURCES) $(fish_applet_SOURCES) DIST_SOURCES = $(am__libfish_applet_la_SOURCES_DIST) \ $(am__fish_applet_SOURCES_DIST) -DATA = $(applet_DATA) $(fishbitmaps_DATA) $(service_DATA) $(ui_DATA) \ - $(xmlui_DATA) +DATA = $(applet_DATA) $(fishbitmaps_DATA) $(service_DATA) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) @@ -183,6 +185,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ @@ -358,12 +361,13 @@ -I$(top_builddir)/libpanel-applet \ -DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ -DFISH_ICONDIR=\""$(fishbitmapsdir)"\" \ - -DFISH_BUILDERDIR=\""$(uidir)"\" \ - -DFISH_MENU_UI_DIR=\""$(xmluidir)"\" \ $(DISABLE_DEPRECATED_CFLAGS) AM_CFLAGS = $(WARN_CFLAGS) -FISH_SOURCES = fish.c +FISH_SOURCES = \ + fish.c \ + $(BUILT_SOURCES) + FISH_LDADD = \ ../../libpanel-applet/libpanel-applet-4.la \ $(FISH_LIBS) \ @@ -388,7 +392,7 @@ @FISH_INPROCESS_FALSE@servicedir = $(datadir)/dbus-1/services @FISH_INPROCESS_FALSE@service_in_files = org.gnome.panel.applet.FishAppletFactory.service.in @FISH_INPROCESS_FALSE@service_DATA = $(service_in_files:.service.in=.service) -fishbitmapsdir = $(datadir)/gnome-panel/pixmaps +fishbitmapsdir = $(datadir)/gnome-panel/fish fishbitmaps_DATA = \ wanda.fish \ wanda.png \ @@ -401,20 +405,25 @@ monkey.fish \ monkey.png -uidir = $(datadir)/gnome-panel/ui -ui_DATA = fish.ui -xmluidir = $(datadir)/gnome-panel/ui -xmlui_DATA = fish-menu.xml +ui_FILES = \ + fish.ui \ + fish-menu.xml + +BUILT_SOURCES = \ + fish-resources.c \ + fish-resources.h + EXTRA_DIST = \ wanda.svg \ $(fishbitmaps_DATA) \ org.gnome.panel.FishApplet.panel-applet.in.in \ $(service_in_files) \ - $(ui_DATA) \ - $(xmlui_DATA) + $(ui_FILES) \ + fish.gresource.xml -CLEANFILES = $(applet_DATA) $(applet_DATA).in $(service_DATA) -all: all-am +CLEANFILES = $(BUILT_SOURCES) $(applet_DATA) $(applet_DATA).in $(service_DATA) +all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj @@ -534,7 +543,9 @@ distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fish_applet-fish-resources.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fish_applet-fish.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfish_applet_la-fish-resources.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfish_applet_la-fish.Plo@am__quote@ .c.o: @@ -569,6 +580,14 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfish_applet_la_CFLAGS) $(CFLAGS) -c -o libfish_applet_la-fish.lo `test -f 'fish.c' || echo '$(srcdir)/'`fish.c +libfish_applet_la-fish-resources.lo: fish-resources.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfish_applet_la_CFLAGS) $(CFLAGS) -MT libfish_applet_la-fish-resources.lo -MD -MP -MF $(DEPDIR)/libfish_applet_la-fish-resources.Tpo -c -o libfish_applet_la-fish-resources.lo `test -f 'fish-resources.c' || echo '$(srcdir)/'`fish-resources.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libfish_applet_la-fish-resources.Tpo $(DEPDIR)/libfish_applet_la-fish-resources.Plo +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fish-resources.c' object='libfish_applet_la-fish-resources.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfish_applet_la_CFLAGS) $(CFLAGS) -c -o libfish_applet_la-fish-resources.lo `test -f 'fish-resources.c' || echo '$(srcdir)/'`fish-resources.c + fish_applet-fish.o: fish.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(fish_applet_CFLAGS) $(CFLAGS) -MT fish_applet-fish.o -MD -MP -MF $(DEPDIR)/fish_applet-fish.Tpo -c -o fish_applet-fish.o `test -f 'fish.c' || echo '$(srcdir)/'`fish.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/fish_applet-fish.Tpo $(DEPDIR)/fish_applet-fish.Po @@ -585,6 +604,22 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(fish_applet_CFLAGS) $(CFLAGS) -c -o fish_applet-fish.obj `if test -f 'fish.c'; then $(CYGPATH_W) 'fish.c'; else $(CYGPATH_W) '$(srcdir)/fish.c'; fi` +fish_applet-fish-resources.o: fish-resources.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(fish_applet_CFLAGS) $(CFLAGS) -MT fish_applet-fish-resources.o -MD -MP -MF $(DEPDIR)/fish_applet-fish-resources.Tpo -c -o fish_applet-fish-resources.o `test -f 'fish-resources.c' || echo '$(srcdir)/'`fish-resources.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/fish_applet-fish-resources.Tpo $(DEPDIR)/fish_applet-fish-resources.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fish-resources.c' object='fish_applet-fish-resources.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(fish_applet_CFLAGS) $(CFLAGS) -c -o fish_applet-fish-resources.o `test -f 'fish-resources.c' || echo '$(srcdir)/'`fish-resources.c + +fish_applet-fish-resources.obj: fish-resources.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(fish_applet_CFLAGS) $(CFLAGS) -MT fish_applet-fish-resources.obj -MD -MP -MF $(DEPDIR)/fish_applet-fish-resources.Tpo -c -o fish_applet-fish-resources.obj `if test -f 'fish-resources.c'; then $(CYGPATH_W) 'fish-resources.c'; else $(CYGPATH_W) '$(srcdir)/fish-resources.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/fish_applet-fish-resources.Tpo $(DEPDIR)/fish_applet-fish-resources.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fish-resources.c' object='fish_applet-fish-resources.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(fish_applet_CFLAGS) $(CFLAGS) -c -o fish_applet-fish-resources.obj `if test -f 'fish-resources.c'; then $(CYGPATH_W) 'fish-resources.c'; else $(CYGPATH_W) '$(srcdir)/fish-resources.c'; fi` + mostlyclean-libtool: -rm -f *.lo @@ -650,46 +685,6 @@ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(servicedir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(servicedir)" && rm -f $$files -install-uiDATA: $(ui_DATA) - @$(NORMAL_INSTALL) - test -z "$(uidir)" || $(MKDIR_P) "$(DESTDIR)$(uidir)" - @list='$(ui_DATA)'; test -n "$(uidir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(uidir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(uidir)" || exit $$?; \ - done - -uninstall-uiDATA: - @$(NORMAL_UNINSTALL) - @list='$(ui_DATA)'; test -n "$(uidir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(uidir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(uidir)" && rm -f $$files -install-xmluiDATA: $(xmlui_DATA) - @$(NORMAL_INSTALL) - test -z "$(xmluidir)" || $(MKDIR_P) "$(DESTDIR)$(xmluidir)" - @list='$(xmlui_DATA)'; test -n "$(xmluidir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(xmluidir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(xmluidir)" || exit $$?; \ - done - -uninstall-xmluiDATA: - @$(NORMAL_UNINSTALL) - @list='$(xmlui_DATA)'; test -n "$(xmluidir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(xmluidir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(xmluidir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -774,13 +769,15 @@ fi; \ done check-am: all-am -check: check-am +check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(DATA) installdirs: - for dir in "$(DESTDIR)$(fish_applet_libdir)" "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(appletdir)" "$(DESTDIR)$(fishbitmapsdir)" "$(DESTDIR)$(servicedir)" "$(DESTDIR)$(uidir)" "$(DESTDIR)$(xmluidir)"; do \ + for dir in "$(DESTDIR)$(fish_applet_libdir)" "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(appletdir)" "$(DESTDIR)$(fishbitmapsdir)" "$(DESTDIR)$(servicedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done -install: install-am +install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am @@ -806,6 +803,7 @@ maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) clean: clean-am clean-am: clean-fish_applet_libLTLIBRARIES clean-generic \ @@ -830,8 +828,7 @@ info-am: install-data-am: install-appletDATA install-fish_applet_libLTLIBRARIES \ - install-fishbitmapsDATA install-serviceDATA install-uiDATA \ - install-xmluiDATA + install-fishbitmapsDATA install-serviceDATA install-dvi: install-dvi-am @@ -879,10 +876,9 @@ uninstall-am: uninstall-appletDATA \ uninstall-fish_applet_libLTLIBRARIES uninstall-fishbitmapsDATA \ - uninstall-libexecPROGRAMS uninstall-serviceDATA \ - uninstall-uiDATA uninstall-xmluiDATA + uninstall-libexecPROGRAMS uninstall-serviceDATA -.MAKE: install-am install-strip +.MAKE: all check install install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean \ clean-fish_applet_libLTLIBRARIES clean-generic \ @@ -895,14 +891,13 @@ install-fishbitmapsDATA install-html install-html-am \ install-info install-info-am install-libexecPROGRAMS \ install-man install-pdf install-pdf-am install-ps \ - install-ps-am install-serviceDATA install-strip install-uiDATA \ - install-xmluiDATA installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am \ - uninstall-appletDATA uninstall-fish_applet_libLTLIBRARIES \ - uninstall-fishbitmapsDATA uninstall-libexecPROGRAMS \ - uninstall-serviceDATA uninstall-uiDATA uninstall-xmluiDATA + install-ps-am install-serviceDATA install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-appletDATA \ + uninstall-fish_applet_libLTLIBRARIES uninstall-fishbitmapsDATA \ + uninstall-libexecPROGRAMS uninstall-serviceDATA $(applet_in_files): $(applet_in_files).in Makefile @@ -919,6 +914,12 @@ @FISH_INPROCESS_FALSE@ -e "s|\@LOCATION\@|$(APPLET_LOCATION)|" \ @FISH_INPROCESS_FALSE@ $< > $@ +fish-resources.c: fish.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies fish.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name fish $(srcdir)/$< + +fish-resources.h: fish.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies fish.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name fish $(srcdir)/$< + -include $(top_srcdir)/git.mk # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -Nru gnome-panel-3.3.3/applets/Makefile.in gnome-panel-3.3.5/applets/Makefile.in --- gnome-panel-3.3.3/applets/Makefile.in 2011-12-20 08:16:04.000000000 +0000 +++ gnome-panel-3.3.5/applets/Makefile.in 2012-02-06 12:16:58.000000000 +0000 @@ -140,6 +140,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/applets/notification_area/Makefile.in gnome-panel-3.3.5/applets/notification_area/Makefile.in --- gnome-panel-3.3.3/applets/notification_area/Makefile.in 2011-12-20 08:16:04.000000000 +0000 +++ gnome-panel-3.3.5/applets/notification_area/Makefile.in 2012-02-06 12:16:58.000000000 +0000 @@ -203,6 +203,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/applets/wncklet/Makefile.am gnome-panel-3.3.5/applets/wncklet/Makefile.am --- gnome-panel-3.3.3/applets/wncklet/Makefile.am 2011-03-28 21:08:42.000000000 +0000 +++ gnome-panel-3.3.5/applets/wncklet/Makefile.am 2012-02-06 12:15:22.000000000 +0000 @@ -6,9 +6,6 @@ -I$(top_srcdir)/libpanel-applet \ -I$(top_builddir)/libpanel-applet \ -DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ - -DPAGER_BUILDERDIR=\""$(uidir)"\" \ - -DTASKLIST_BUILDERDIR=\""$(uidir)"\" \ - -DWNCK_MENU_UI_DIR=\""$(xmluidir)"\" \ -DWNCK_I_KNOW_THIS_IS_UNSTABLE \ $(DISABLE_DEPRECATED_CFLAGS) @@ -24,7 +21,8 @@ workspace-switcher.c \ workspace-switcher.h \ showdesktop.c \ - showdesktop.h + showdesktop.h \ + $(BUILT_SOURCES) WNCKLET_LDADD = \ ../../libpanel-applet/libpanel-applet-4.la \ @@ -75,20 +73,29 @@ $< > $@ endif -uidir = $(datadir)/gnome-panel/ui -ui_DATA = workspace-switcher.ui window-list.ui - -xmluidir = $(datadir)/gnome-panel/ui -xmlui_DATA = \ - workspace-switcher-menu.xml \ - window-list-menu.xml +ui_FILES = \ + window-list-menu.xml \ + window-list.ui \ + workspace-switcher-menu.xml \ + workspace-switcher.ui + + +wncklet-resources.c: wncklet.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies wncklet.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name wncklet $(srcdir)/$< + +wncklet-resources.h: wncklet.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies wncklet.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name wncklet $(srcdir)/$< + +BUILT_SOURCES = \ + wncklet-resources.c \ + wncklet-resources.h EXTRA_DIST = \ org.gnome.panel.Wncklet.panel-applet.in.in \ $(service_in_files) \ - $(xmlui_DATA) \ - $(ui_DATA) + $(ui_FILES) \ + wncklet.gresource.xml -CLEANFILES = $(applet_DATA) $(applet_DATA).in $(service_DATA) +CLEANFILES = $(BUILT_SOURCES) $(applet_DATA) $(applet_DATA).in $(service_DATA) -include $(top_srcdir)/git.mk diff -Nru gnome-panel-3.3.3/applets/wncklet/Makefile.in gnome-panel-3.3.5/applets/wncklet/Makefile.in --- gnome-panel-3.3.3/applets/wncklet/Makefile.in 2011-12-20 08:16:04.000000000 +0000 +++ gnome-panel-3.3.5/applets/wncklet/Makefile.in 2012-02-06 12:16:59.000000000 +0000 @@ -75,8 +75,7 @@ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__installdirs = "$(DESTDIR)$(wnck_appletlibdir)" \ "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(appletdir)" \ - "$(DESTDIR)$(servicedir)" "$(DESTDIR)$(uidir)" \ - "$(DESTDIR)$(xmluidir)" + "$(DESTDIR)$(servicedir)" LTLIBRARIES = $(wnck_appletlib_LTLIBRARIES) am__DEPENDENCIES_1 = am__DEPENDENCIES_2 = ../../libpanel-applet/libpanel-applet-4.la \ @@ -85,14 +84,16 @@ @WNCKLET_INPROCESS_TRUE@ $(am__DEPENDENCIES_2) am__libwnck_applet_la_SOURCES_DIST = wncklet.c wncklet.h window-menu.c \ window-menu.h window-list.c window-list.h workspace-switcher.c \ - workspace-switcher.h showdesktop.c showdesktop.h -am__objects_1 = libwnck_applet_la-wncklet.lo \ + workspace-switcher.h showdesktop.c showdesktop.h \ + wncklet-resources.c wncklet-resources.h +am__objects_1 = libwnck_applet_la-wncklet-resources.lo +am__objects_2 = libwnck_applet_la-wncklet.lo \ libwnck_applet_la-window-menu.lo \ libwnck_applet_la-window-list.lo \ libwnck_applet_la-workspace-switcher.lo \ - libwnck_applet_la-showdesktop.lo + libwnck_applet_la-showdesktop.lo $(am__objects_1) @WNCKLET_INPROCESS_TRUE@am_libwnck_applet_la_OBJECTS = \ -@WNCKLET_INPROCESS_TRUE@ $(am__objects_1) +@WNCKLET_INPROCESS_TRUE@ $(am__objects_2) libwnck_applet_la_OBJECTS = $(am_libwnck_applet_la_OBJECTS) AM_V_lt = $(am__v_lt_$(V)) am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) @@ -106,13 +107,15 @@ PROGRAMS = $(libexec_PROGRAMS) am__wnck_applet_SOURCES_DIST = wncklet.c wncklet.h window-menu.c \ window-menu.h window-list.c window-list.h workspace-switcher.c \ - workspace-switcher.h showdesktop.c showdesktop.h -am__objects_2 = wnck_applet-wncklet.$(OBJEXT) \ + workspace-switcher.h showdesktop.c showdesktop.h \ + wncklet-resources.c wncklet-resources.h +am__objects_3 = wnck_applet-wncklet-resources.$(OBJEXT) +am__objects_4 = wnck_applet-wncklet.$(OBJEXT) \ wnck_applet-window-menu.$(OBJEXT) \ wnck_applet-window-list.$(OBJEXT) \ wnck_applet-workspace-switcher.$(OBJEXT) \ - wnck_applet-showdesktop.$(OBJEXT) -@WNCKLET_INPROCESS_FALSE@am_wnck_applet_OBJECTS = $(am__objects_2) + wnck_applet-showdesktop.$(OBJEXT) $(am__objects_3) +@WNCKLET_INPROCESS_FALSE@am_wnck_applet_OBJECTS = $(am__objects_4) wnck_applet_OBJECTS = $(am_wnck_applet_OBJECTS) @WNCKLET_INPROCESS_FALSE@wnck_applet_DEPENDENCIES = \ @WNCKLET_INPROCESS_FALSE@ $(am__DEPENDENCIES_2) @@ -148,7 +151,7 @@ SOURCES = $(libwnck_applet_la_SOURCES) $(wnck_applet_SOURCES) DIST_SOURCES = $(am__libwnck_applet_la_SOURCES_DIST) \ $(am__wnck_applet_SOURCES_DIST) -DATA = $(applet_DATA) $(service_DATA) $(ui_DATA) $(xmlui_DATA) +DATA = $(applet_DATA) $(service_DATA) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) @@ -195,6 +198,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ @@ -370,9 +374,6 @@ -I$(top_srcdir)/libpanel-applet \ -I$(top_builddir)/libpanel-applet \ -DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ - -DPAGER_BUILDERDIR=\""$(uidir)"\" \ - -DTASKLIST_BUILDERDIR=\""$(uidir)"\" \ - -DWNCK_MENU_UI_DIR=\""$(xmluidir)"\" \ -DWNCK_I_KNOW_THIS_IS_UNSTABLE \ $(DISABLE_DEPRECATED_CFLAGS) @@ -387,7 +388,8 @@ workspace-switcher.c \ workspace-switcher.h \ showdesktop.c \ - showdesktop.h + showdesktop.h \ + $(BUILT_SOURCES) WNCKLET_LDADD = \ ../../libpanel-applet/libpanel-applet-4.la \ @@ -413,21 +415,25 @@ @WNCKLET_INPROCESS_FALSE@servicedir = $(datadir)/dbus-1/services @WNCKLET_INPROCESS_FALSE@service_in_files = org.gnome.panel.applet.WnckletFactory.service.in @WNCKLET_INPROCESS_FALSE@service_DATA = $(service_in_files:.service.in=.service) -uidir = $(datadir)/gnome-panel/ui -ui_DATA = workspace-switcher.ui window-list.ui -xmluidir = $(datadir)/gnome-panel/ui -xmlui_DATA = \ - workspace-switcher-menu.xml \ - window-list-menu.xml +ui_FILES = \ + window-list-menu.xml \ + window-list.ui \ + workspace-switcher-menu.xml \ + workspace-switcher.ui + +BUILT_SOURCES = \ + wncklet-resources.c \ + wncklet-resources.h EXTRA_DIST = \ org.gnome.panel.Wncklet.panel-applet.in.in \ $(service_in_files) \ - $(xmlui_DATA) \ - $(ui_DATA) + $(ui_FILES) \ + wncklet.gresource.xml -CLEANFILES = $(applet_DATA) $(applet_DATA).in $(service_DATA) -all: all-am +CLEANFILES = $(BUILT_SOURCES) $(applet_DATA) $(applet_DATA).in $(service_DATA) +all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj @@ -550,11 +556,13 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libwnck_applet_la-showdesktop.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libwnck_applet_la-window-list.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libwnck_applet_la-window-menu.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libwnck_applet_la-wncklet-resources.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libwnck_applet_la-wncklet.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libwnck_applet_la-workspace-switcher.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wnck_applet-showdesktop.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wnck_applet-window-list.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wnck_applet-window-menu.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wnck_applet-wncklet-resources.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wnck_applet-wncklet.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wnck_applet-workspace-switcher.Po@am__quote@ @@ -622,6 +630,14 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwnck_applet_la_CFLAGS) $(CFLAGS) -c -o libwnck_applet_la-showdesktop.lo `test -f 'showdesktop.c' || echo '$(srcdir)/'`showdesktop.c +libwnck_applet_la-wncklet-resources.lo: wncklet-resources.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwnck_applet_la_CFLAGS) $(CFLAGS) -MT libwnck_applet_la-wncklet-resources.lo -MD -MP -MF $(DEPDIR)/libwnck_applet_la-wncklet-resources.Tpo -c -o libwnck_applet_la-wncklet-resources.lo `test -f 'wncklet-resources.c' || echo '$(srcdir)/'`wncklet-resources.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libwnck_applet_la-wncklet-resources.Tpo $(DEPDIR)/libwnck_applet_la-wncklet-resources.Plo +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='wncklet-resources.c' object='libwnck_applet_la-wncklet-resources.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libwnck_applet_la_CFLAGS) $(CFLAGS) -c -o libwnck_applet_la-wncklet-resources.lo `test -f 'wncklet-resources.c' || echo '$(srcdir)/'`wncklet-resources.c + wnck_applet-wncklet.o: wncklet.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(wnck_applet_CFLAGS) $(CFLAGS) -MT wnck_applet-wncklet.o -MD -MP -MF $(DEPDIR)/wnck_applet-wncklet.Tpo -c -o wnck_applet-wncklet.o `test -f 'wncklet.c' || echo '$(srcdir)/'`wncklet.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/wnck_applet-wncklet.Tpo $(DEPDIR)/wnck_applet-wncklet.Po @@ -702,6 +718,22 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(wnck_applet_CFLAGS) $(CFLAGS) -c -o wnck_applet-showdesktop.obj `if test -f 'showdesktop.c'; then $(CYGPATH_W) 'showdesktop.c'; else $(CYGPATH_W) '$(srcdir)/showdesktop.c'; fi` +wnck_applet-wncklet-resources.o: wncklet-resources.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(wnck_applet_CFLAGS) $(CFLAGS) -MT wnck_applet-wncklet-resources.o -MD -MP -MF $(DEPDIR)/wnck_applet-wncklet-resources.Tpo -c -o wnck_applet-wncklet-resources.o `test -f 'wncklet-resources.c' || echo '$(srcdir)/'`wncklet-resources.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/wnck_applet-wncklet-resources.Tpo $(DEPDIR)/wnck_applet-wncklet-resources.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='wncklet-resources.c' object='wnck_applet-wncklet-resources.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(wnck_applet_CFLAGS) $(CFLAGS) -c -o wnck_applet-wncklet-resources.o `test -f 'wncklet-resources.c' || echo '$(srcdir)/'`wncklet-resources.c + +wnck_applet-wncklet-resources.obj: wncklet-resources.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(wnck_applet_CFLAGS) $(CFLAGS) -MT wnck_applet-wncklet-resources.obj -MD -MP -MF $(DEPDIR)/wnck_applet-wncklet-resources.Tpo -c -o wnck_applet-wncklet-resources.obj `if test -f 'wncklet-resources.c'; then $(CYGPATH_W) 'wncklet-resources.c'; else $(CYGPATH_W) '$(srcdir)/wncklet-resources.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/wnck_applet-wncklet-resources.Tpo $(DEPDIR)/wnck_applet-wncklet-resources.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='wncklet-resources.c' object='wnck_applet-wncklet-resources.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(wnck_applet_CFLAGS) $(CFLAGS) -c -o wnck_applet-wncklet-resources.obj `if test -f 'wncklet-resources.c'; then $(CYGPATH_W) 'wncklet-resources.c'; else $(CYGPATH_W) '$(srcdir)/wncklet-resources.c'; fi` + mostlyclean-libtool: -rm -f *.lo @@ -747,46 +779,6 @@ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(servicedir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(servicedir)" && rm -f $$files -install-uiDATA: $(ui_DATA) - @$(NORMAL_INSTALL) - test -z "$(uidir)" || $(MKDIR_P) "$(DESTDIR)$(uidir)" - @list='$(ui_DATA)'; test -n "$(uidir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(uidir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(uidir)" || exit $$?; \ - done - -uninstall-uiDATA: - @$(NORMAL_UNINSTALL) - @list='$(ui_DATA)'; test -n "$(uidir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(uidir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(uidir)" && rm -f $$files -install-xmluiDATA: $(xmlui_DATA) - @$(NORMAL_INSTALL) - test -z "$(xmluidir)" || $(MKDIR_P) "$(DESTDIR)$(xmluidir)" - @list='$(xmlui_DATA)'; test -n "$(xmluidir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(xmluidir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(xmluidir)" || exit $$?; \ - done - -uninstall-xmluiDATA: - @$(NORMAL_UNINSTALL) - @list='$(xmlui_DATA)'; test -n "$(xmluidir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(xmluidir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(xmluidir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -871,13 +863,15 @@ fi; \ done check-am: all-am -check: check-am +check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(DATA) installdirs: - for dir in "$(DESTDIR)$(wnck_appletlibdir)" "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(appletdir)" "$(DESTDIR)$(servicedir)" "$(DESTDIR)$(uidir)" "$(DESTDIR)$(xmluidir)"; do \ + for dir in "$(DESTDIR)$(wnck_appletlibdir)" "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(appletdir)" "$(DESTDIR)$(servicedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done -install: install-am +install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am @@ -903,6 +897,7 @@ maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) clean: clean-am clean-am: clean-generic clean-libexecPROGRAMS clean-libtool \ @@ -926,8 +921,8 @@ info-am: -install-data-am: install-appletDATA install-serviceDATA install-uiDATA \ - install-wnck_appletlibLTLIBRARIES install-xmluiDATA +install-data-am: install-appletDATA install-serviceDATA \ + install-wnck_appletlibLTLIBRARIES install-dvi: install-dvi-am @@ -974,10 +969,9 @@ ps-am: uninstall-am: uninstall-appletDATA uninstall-libexecPROGRAMS \ - uninstall-serviceDATA uninstall-uiDATA \ - uninstall-wnck_appletlibLTLIBRARIES uninstall-xmluiDATA + uninstall-serviceDATA uninstall-wnck_appletlibLTLIBRARIES -.MAKE: install-am install-strip +.MAKE: all check install install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool \ @@ -989,15 +983,13 @@ install-exec-am install-html install-html-am install-info \ install-info-am install-libexecPROGRAMS install-man \ install-pdf install-pdf-am install-ps install-ps-am \ - install-serviceDATA install-strip install-uiDATA \ - install-wnck_appletlibLTLIBRARIES install-xmluiDATA \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-appletDATA \ - uninstall-libexecPROGRAMS uninstall-serviceDATA \ - uninstall-uiDATA uninstall-wnck_appletlibLTLIBRARIES \ - uninstall-xmluiDATA + install-serviceDATA install-strip \ + install-wnck_appletlibLTLIBRARIES installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-appletDATA uninstall-libexecPROGRAMS \ + uninstall-serviceDATA uninstall-wnck_appletlibLTLIBRARIES $(applet_in_files): $(applet_in_files).in Makefile @@ -1014,6 +1006,12 @@ @WNCKLET_INPROCESS_FALSE@ -e "s|\@LOCATION\@|$(APPLET_LOCATION)|" \ @WNCKLET_INPROCESS_FALSE@ $< > $@ +wncklet-resources.c: wncklet.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies wncklet.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name wncklet $(srcdir)/$< + +wncklet-resources.h: wncklet.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies wncklet.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name wncklet $(srcdir)/$< + -include $(top_srcdir)/git.mk # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -Nru gnome-panel-3.3.3/applets/wncklet/window-list.c gnome-panel-3.3.5/applets/wncklet/window-list.c --- gnome-panel-3.3.3/applets/wncklet/window-list.c 2011-04-01 06:03:02.000000000 +0000 +++ gnome-panel-3.3.5/applets/wncklet/window-list.c 2012-02-02 14:25:57.000000000 +0000 @@ -358,7 +358,6 @@ TasklistData *tasklist; GtkActionGroup *action_group; GtkAction *action; - gchar *ui_path; tasklist = g_new0 (TasklistData, 1); @@ -434,10 +433,9 @@ tasklist_menu_actions, G_N_ELEMENTS (tasklist_menu_actions), tasklist); - ui_path = g_build_filename (WNCK_MENU_UI_DIR, "window-list-menu.xml", NULL); - panel_applet_setup_menu_from_file (PANEL_APPLET (tasklist->applet), - ui_path, action_group); - g_free (ui_path); + panel_applet_setup_menu_from_resource (PANEL_APPLET (tasklist->applet), + WNCKLET_RESOURCE_PATH "window-list-menu.xml", + action_group); action = gtk_action_group_get_action (action_group, "TasklistPreferences"); g_object_bind_property (tasklist->applet, "locked-down", @@ -589,18 +587,10 @@ { if (tasklist->properties_dialog == NULL) { GtkBuilder *builder; - GError *error; builder = gtk_builder_new (); gtk_builder_set_translation_domain (builder, GETTEXT_PACKAGE); - - error = NULL; - gtk_builder_add_from_file (builder, TASKLIST_BUILDERDIR "/window-list.ui", &error); - if (error) { - g_warning ("Error loading preferences: %s", error->message); - g_error_free (error); - return; - } + gtk_builder_add_from_resource (builder, WNCKLET_RESOURCE_PATH "window-list.ui", NULL); tasklist->properties_dialog = WID ("tasklist_properties_dialog"); diff -Nru gnome-panel-3.3.3/applets/wncklet/wncklet.gresource.xml gnome-panel-3.3.5/applets/wncklet/wncklet.gresource.xml --- gnome-panel-3.3.3/applets/wncklet/wncklet.gresource.xml 1970-01-01 00:00:00.000000000 +0000 +++ gnome-panel-3.3.5/applets/wncklet/wncklet.gresource.xml 2012-02-02 14:25:57.000000000 +0000 @@ -0,0 +1,9 @@ + + + + window-list.ui + window-list-menu.xml + workspace-switcher.ui + workspace-switcher-menu.xml + + diff -Nru gnome-panel-3.3.3/applets/wncklet/wncklet.h gnome-panel-3.3.5/applets/wncklet/wncklet.h --- gnome-panel-3.3.3/applets/wncklet/wncklet.h 2011-02-22 22:18:58.000000000 +0000 +++ gnome-panel-3.3.5/applets/wncklet/wncklet.h 2012-02-02 14:25:57.000000000 +0000 @@ -30,6 +30,8 @@ #include #include +#define WNCKLET_RESOURCE_PATH "/org/gnome/panel/applet/wncklet/" + G_BEGIN_DECLS void wncklet_display_help (GtkWidget *widget, diff -Nru gnome-panel-3.3.3/applets/wncklet/wncklet-resources.c gnome-panel-3.3.5/applets/wncklet/wncklet-resources.c --- gnome-panel-3.3.3/applets/wncklet/wncklet-resources.c 1970-01-01 00:00:00.000000000 +0000 +++ gnome-panel-3.3.5/applets/wncklet/wncklet-resources.c 2012-02-06 11:26:08.000000000 +0000 @@ -0,0 +1,738 @@ +#include + +#if defined (__ELF__) && ( __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6)) +# define SECTION __attribute__ ((section (".gresource.wncklet"), aligned (8))) +#else +# define SECTION +#endif + +static const SECTION union { const guint8 data[4836]; const double alignment; void * const ptr;} wncklet_resource_data = { { + 0x47, 0x56, 0x61, 0x72, 0x69, 0x61, 0x6e, 0x74, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x18, 0x00, 0x00, 0x00, 0x38, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x28, 0x0a, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, + 0x05, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, + 0x06, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, + 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, + 0xd4, 0xb5, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, + 0x38, 0x01, 0x00, 0x00, 0x01, 0x00, 0x4c, 0x00, + 0x3c, 0x01, 0x00, 0x00, 0x40, 0x01, 0x00, 0x00, + 0x6f, 0xd8, 0xf6, 0x94, 0x09, 0x00, 0x00, 0x00, + 0x40, 0x01, 0x00, 0x00, 0x06, 0x00, 0x4c, 0x00, + 0x48, 0x01, 0x00, 0x00, 0x4c, 0x01, 0x00, 0x00, + 0x0d, 0xdb, 0xe8, 0xa7, 0x04, 0x00, 0x00, 0x00, + 0x4c, 0x01, 0x00, 0x00, 0x14, 0x00, 0x76, 0x00, + 0x60, 0x01, 0x00, 0x00, 0xef, 0x01, 0x00, 0x00, + 0x98, 0x25, 0x49, 0x37, 0x04, 0x00, 0x00, 0x00, + 0xef, 0x01, 0x00, 0x00, 0x0e, 0x00, 0x76, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x0f, 0x0a, 0x00, 0x00, + 0xab, 0x9c, 0xb2, 0x71, 0x06, 0x00, 0x00, 0x00, + 0x0f, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x4c, 0x00, + 0x18, 0x0a, 0x00, 0x00, 0x28, 0x0a, 0x00, 0x00, + 0x4b, 0x50, 0x90, 0x0b, 0x00, 0x00, 0x00, 0x00, + 0x28, 0x0a, 0x00, 0x00, 0x04, 0x00, 0x4c, 0x00, + 0x2c, 0x0a, 0x00, 0x00, 0x30, 0x0a, 0x00, 0x00, + 0x44, 0x9f, 0x99, 0xd8, 0x01, 0x00, 0x00, 0x00, + 0x30, 0x0a, 0x00, 0x00, 0x07, 0x00, 0x4c, 0x00, + 0x38, 0x0a, 0x00, 0x00, 0x3c, 0x0a, 0x00, 0x00, + 0xbc, 0x25, 0x86, 0x61, 0x04, 0x00, 0x00, 0x00, + 0x3c, 0x0a, 0x00, 0x00, 0x15, 0x00, 0x76, 0x00, + 0x58, 0x0a, 0x00, 0x00, 0x67, 0x12, 0x00, 0x00, + 0x31, 0x66, 0x16, 0x9f, 0x04, 0x00, 0x00, 0x00, + 0x67, 0x12, 0x00, 0x00, 0x1b, 0x00, 0x76, 0x00, + 0x88, 0x12, 0x00, 0x00, 0xd7, 0x12, 0x00, 0x00, + 0xb0, 0xb7, 0x24, 0x30, 0x05, 0x00, 0x00, 0x00, + 0xd7, 0x12, 0x00, 0x00, 0x06, 0x00, 0x4c, 0x00, + 0xe0, 0x12, 0x00, 0x00, 0xe4, 0x12, 0x00, 0x00, + 0x2f, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, + 0x70, 0x61, 0x6e, 0x65, 0x6c, 0x2f, 0x00, 0x00, + 0x06, 0x00, 0x00, 0x00, 0x77, 0x69, 0x6e, 0x64, + 0x6f, 0x77, 0x2d, 0x6c, 0x69, 0x73, 0x74, 0x2d, + 0x6d, 0x65, 0x6e, 0x75, 0x2e, 0x78, 0x6d, 0x6c, + 0x4c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x78, 0xda, 0xb3, 0xc9, 0x4d, 0xcd, 0x2b, 0xcd, + 0x2c, 0x49, 0xcd, 0x55, 0xc8, 0x4b, 0xcc, 0x4d, + 0xb5, 0x55, 0x0a, 0x49, 0x2c, 0xce, 0xce, 0xc9, + 0x2c, 0x2e, 0x51, 0x08, 0x28, 0x4a, 0x4d, 0x4b, + 0x2d, 0x4a, 0xcd, 0x4b, 0x4e, 0x2d, 0x56, 0xf0, + 0x04, 0xca, 0x2b, 0x29, 0x24, 0x26, 0x97, 0x64, + 0xe6, 0xe7, 0x21, 0x94, 0x20, 0xa9, 0x50, 0x52, + 0xd0, 0xb7, 0xe3, 0xe2, 0x02, 0x00, 0x36, 0x3d, + 0x1a, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x77, + 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2d, 0x6c, 0x69, + 0x73, 0x74, 0x2e, 0x75, 0x69, 0x00, 0x00, 0x00, + 0xca, 0x3f, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x78, 0xda, 0xed, 0x5b, 0x5b, 0x73, 0xe2, 0x36, + 0x14, 0x7e, 0xdf, 0x5f, 0xa1, 0xea, 0xb5, 0xe3, + 0x25, 0xb0, 0xed, 0xb6, 0x9d, 0x01, 0xef, 0x24, + 0xdd, 0x34, 0xbb, 0xb3, 0xb9, 0x4d, 0x92, 0x76, + 0x1f, 0x35, 0xc2, 0x3e, 0x80, 0x8a, 0x90, 0x5c, + 0x49, 0x86, 0xa4, 0xd3, 0x1f, 0x5f, 0xd9, 0x26, + 0x81, 0x80, 0x00, 0x1b, 0x9c, 0xbb, 0xde, 0xb0, + 0xa5, 0xef, 0xf8, 0xdc, 0x8f, 0xce, 0xc1, 0x6e, + 0x7f, 0xba, 0x1e, 0x71, 0x34, 0x06, 0xa5, 0x99, + 0x14, 0x1d, 0xdc, 0x7c, 0xbf, 0x87, 0x3f, 0x85, + 0xef, 0xda, 0x4c, 0x18, 0x50, 0x3d, 0x1a, 0x41, + 0xf8, 0x0e, 0xa1, 0xb6, 0x82, 0x7f, 0x52, 0xa6, + 0x40, 0x23, 0xce, 0xba, 0x1d, 0xdc, 0x37, 0xc3, + 0x1f, 0xf1, 0x0c, 0xd2, 0x7a, 0xdf, 0xfc, 0x88, + 0x1b, 0xf9, 0xbe, 0x1f, 0x82, 0x00, 0xdd, 0x21, + 0x03, 0x41, 0x47, 0x4c, 0xf4, 0x83, 0x44, 0x72, + 0x16, 0xdd, 0x20, 0x23, 0x13, 0x0e, 0x63, 0xe0, + 0x41, 0x24, 0xed, 0x8e, 0x6b, 0x93, 0x52, 0x8e, + 0x82, 0x20, 0x87, 0xc9, 0xee, 0xdf, 0x10, 0x19, + 0x14, 0x71, 0xaa, 0x75, 0x07, 0x1f, 0x99, 0xe1, + 0x67, 0x46, 0xb9, 0xec, 0x63, 0xc4, 0xe2, 0x0e, + 0x36, 0x54, 0x0f, 0x39, 0xd3, 0x86, 0x24, 0x4a, + 0x26, 0xa0, 0x0c, 0x03, 0x4d, 0xe2, 0x62, 0x3d, + 0x03, 0x5b, 0xf8, 0x74, 0xe1, 0x06, 0xd9, 0x07, + 0x42, 0x07, 0x77, 0xa5, 0x8a, 0x41, 0x91, 0x09, + 0x8b, 0xcd, 0x00, 0x87, 0x3f, 0xb7, 0x1b, 0xb7, + 0xeb, 0xee, 0xed, 0x86, 0x19, 0x0e, 0x18, 0x19, + 0x45, 0x85, 0xe6, 0xd4, 0xd0, 0x2e, 0xb7, 0x37, + 0x6f, 0x40, 0xe3, 0xf0, 0x3b, 0x13, 0xb1, 0x9c, + 0xa0, 0x63, 0xfb, 0x70, 0x74, 0xae, 0xa0, 0x07, + 0x0a, 0x44, 0x04, 0x7a, 0x23, 0xc1, 0x9b, 0x04, + 0xc8, 0xc0, 0xaa, 0x01, 0x87, 0x42, 0xaa, 0x11, + 0xe5, 0x4b, 0x80, 0x68, 0xc0, 0x78, 0x5c, 0x28, + 0x4a, 0x50, 0xab, 0x90, 0xec, 0xb2, 0x83, 0xc7, + 0x5d, 0x79, 0x3d, 0x15, 0xc9, 0xa5, 0x93, 0xbf, + 0x0e, 0xec, 0x72, 0xae, 0x91, 0x42, 0xfa, 0x20, + 0xdb, 0xdf, 0xba, 0x03, 0x2c, 0xf3, 0x31, 0x66, + 0x9a, 0x59, 0x61, 0x70, 0x78, 0xa5, 0x52, 0x58, + 0xe4, 0xc1, 0x05, 0x90, 0x8a, 0x81, 0x30, 0xd4, + 0x58, 0xab, 0xe2, 0x70, 0x9c, 0xa9, 0x3a, 0x5a, + 0x66, 0xde, 0x05, 0xd4, 0x09, 0x8d, 0xac, 0xa5, + 0x71, 0xd8, 0x72, 0xee, 0xce, 0xe5, 0x9b, 0x5d, + 0xaf, 0x17, 0x2e, 0x93, 0xaa, 0x89, 0xe7, 0x77, + 0x6f, 0x21, 0x99, 0x0b, 0x64, 0x7d, 0x4f, 0x18, + 0x6b, 0xd5, 0xa3, 0xcf, 0xdf, 0xc8, 0xf9, 0xd9, + 0xd7, 0xd3, 0xab, 0xc3, 0x0b, 0x72, 0x72, 0x76, + 0xf5, 0xf5, 0xec, 0x94, 0x9c, 0xec, 0x5f, 0x7e, + 0x43, 0xff, 0x21, 0xc7, 0xca, 0x17, 0x7b, 0x35, + 0xbf, 0x7c, 0xf0, 0xe7, 0xd5, 0x95, 0xbd, 0x7d, + 0x7e, 0x71, 0x78, 0x79, 0xe9, 0xb8, 0x7f, 0x71, + 0x78, 0x7c, 0xb8, 0x7f, 0x79, 0x98, 0xaf, 0x94, + 0xe5, 0x6b, 0x83, 0xbb, 0xee, 0x6c, 0xac, 0xb5, + 0x06, 0x6b, 0xfe, 0xba, 0x12, 0xb2, 0x64, 0xb5, + 0x32, 0x96, 0xfb, 0x05, 0x2f, 0x22, 0xb6, 0xb4, + 0xde, 0xce, 0x22, 0xaf, 0x15, 0xfb, 0xe3, 0x5a, + 0x94, 0x53, 0x72, 0xb7, 0xf4, 0xc7, 0xb4, 0x0b, + 0xbc, 0x10, 0x9f, 0x67, 0x3f, 0x9b, 0xd8, 0x85, + 0xdb, 0x41, 0x07, 0x2e, 0xf0, 0x35, 0xe5, 0xac, + 0x6f, 0x55, 0xb0, 0x57, 0x15, 0xc8, 0x0b, 0x6e, + 0x37, 0xa4, 0xba, 0xdf, 0xb3, 0xfc, 0x2c, 0xcc, + 0x46, 0xe2, 0xd4, 0x18, 0xc5, 0xba, 0xa9, 0x01, + 0xed, 0xde, 0x30, 0xbf, 0x65, 0xca, 0xc0, 0x04, + 0x58, 0x7f, 0x60, 0x6c, 0xed, 0xa0, 0x3c, 0xcd, + 0x5d, 0x9f, 0xc7, 0x45, 0xe5, 0x70, 0x60, 0x1b, + 0xeb, 0xe9, 0xb7, 0x1b, 0x85, 0x31, 0x9c, 0x6b, + 0xd6, 0xce, 0x43, 0x6b, 0xe8, 0x72, 0x5a, 0x81, + 0xeb, 0x84, 0x8a, 0x18, 0x87, 0x7f, 0x50, 0xae, + 0x2b, 0xdb, 0xa2, 0xc7, 0x38, 0xdf, 0x12, 0x9a, + 0x48, 0xcd, 0x0a, 0x5f, 0xde, 0x60, 0x48, 0xbb, + 0xba, 0x4a, 0x9e, 0x76, 0x63, 0x85, 0xb3, 0x56, + 0x71, 0xe2, 0xfd, 0xcc, 0x9d, 0x46, 0xd6, 0xe4, + 0x85, 0x23, 0xd3, 0xdb, 0xcb, 0x47, 0x71, 0xe6, + 0xe7, 0x92, 0x96, 0x57, 0xc6, 0x0c, 0xf4, 0xec, + 0xd1, 0x83, 0xc6, 0x71, 0x91, 0x2f, 0x5b, 0x1b, + 0xf1, 0x2b, 0x15, 0x5f, 0x26, 0x7f, 0xfe, 0x86, + 0x57, 0x21, 0x77, 0x54, 0x7b, 0x2d, 0xf9, 0x74, + 0xb7, 0xbc, 0x5a, 0x4e, 0x43, 0x6e, 0x2d, 0x5d, + 0xd0, 0x98, 0xc9, 0x83, 0xd4, 0x18, 0xcb, 0x6a, + 0xae, 0x2c, 0x3d, 0x90, 0x13, 0x12, 0xa5, 0xca, + 0x1e, 0xc9, 0x0c, 0x51, 0xd9, 0x2a, 0x5e, 0x47, + 0xb1, 0x4a, 0x2e, 0xbc, 0x1c, 0x10, 0x9b, 0x0a, + 0x27, 0x79, 0x46, 0xd4, 0xa8, 0xa7, 0xe4, 0x08, + 0x4d, 0x1f, 0x84, 0x26, 0x52, 0x0d, 0x33, 0x61, + 0x4b, 0xa9, 0xbb, 0x16, 0x9b, 0xb9, 0x88, 0x44, + 0x54, 0x90, 0x9e, 0x8c, 0x52, 0xbd, 0x1b, 0x19, + 0x05, 0x11, 0xb0, 0x71, 0x76, 0x9a, 0x86, 0x1e, + 0x4d, 0xb9, 0x29, 0x99, 0xc6, 0x56, 0x91, 0x4b, + 0x35, 0x90, 0x54, 0xd8, 0xa3, 0x0c, 0x67, 0x62, + 0x47, 0x01, 0x63, 0x45, 0x27, 0xc4, 0xea, 0xdf, + 0xfa, 0xa3, 0x91, 0xaa, 0x0a, 0xad, 0x75, 0x55, + 0xa1, 0x5c, 0x75, 0xa8, 0xa5, 0x4a, 0xd4, 0x50, + 0x2d, 0x76, 0xae, 0x1a, 0x25, 0xaa, 0xc7, 0xc6, + 0x2a, 0x52, 0x7f, 0xc8, 0x52, 0xce, 0x6b, 0x0f, + 0xd7, 0xc5, 0x68, 0xa5, 0x84, 0xf3, 0x59, 0xa8, + 0x6a, 0x1f, 0xab, 0xcf, 0x33, 0x56, 0x97, 0x69, + 0xf5, 0x95, 0x4c, 0x13, 0x1c, 0x2e, 0xe7, 0x76, + 0x1f, 0xfc, 0x8b, 0xc1, 0xdf, 0x7c, 0xac, 0xe0, + 0x5f, 0xaf, 0xd4, 0x35, 0xe0, 0xfa, 0x0e, 0xe8, + 0xa5, 0xa5, 0xae, 0x7e, 0x50, 0x5e, 0xc5, 0xe4, + 0x6a, 0x06, 0xb7, 0x76, 0x8d, 0xad, 0x12, 0xf9, + 0x0a, 0x89, 0x9c, 0xd2, 0x6c, 0xd7, 0xb1, 0x37, + 0x9b, 0x6f, 0xbc, 0x65, 0xff, 0xf0, 0xb2, 0x5b, + 0xf6, 0xa3, 0x2c, 0x67, 0x5a, 0x0d, 0xf9, 0x76, + 0xfd, 0xad, 0xb7, 0xeb, 0x2d, 0xdf, 0xae, 0x3f, + 0x76, 0xbb, 0xde, 0x6c, 0xf9, 0x7e, 0xbd, 0xdc, + 0xe1, 0x5f, 0x58, 0xc7, 0x51, 0x24, 0x3f, 0xe0, + 0xd5, 0x7c, 0xfe, 0x27, 0xa7, 0x19, 0x69, 0x94, + 0x93, 0xbe, 0xed, 0x03, 0xfc, 0x91, 0xdf, 0xb7, + 0xe7, 0xbe, 0x3d, 0xaf, 0x16, 0xa1, 0x34, 0x35, + 0xf2, 0x41, 0x02, 0xf4, 0x68, 0x3e, 0x32, 0xd1, + 0x64, 0x00, 0x02, 0x91, 0xbc, 0x33, 0x47, 0x2c, + 0xfb, 0x43, 0x79, 0xc4, 0x0c, 0xc4, 0x3e, 0x60, + 0x5f, 0x58, 0x8f, 0xbe, 0x94, 0xcf, 0x7d, 0x02, + 0x78, 0xb2, 0x16, 0xbd, 0xae, 0x04, 0xc0, 0x27, + 0xf4, 0x46, 0x3f, 0x4c, 0x8d, 0xde, 0xcf, 0x69, + 0xfb, 0x22, 0xed, 0x63, 0xfe, 0x75, 0xc7, 0x7c, + 0xcb, 0x8f, 0xe5, 0x5e, 0xcd, 0x58, 0xae, 0xf9, + 0xa4, 0x63, 0xb9, 0x0f, 0x6f, 0x77, 0x2c, 0x37, + 0x62, 0xc2, 0x9e, 0x0a, 0xff, 0x85, 0x98, 0x4c, + 0x2b, 0x05, 0x29, 0x2a, 0xcb, 0xcb, 0x9c, 0xd3, + 0x5d, 0x80, 0xb6, 0x09, 0xd8, 0x2a, 0x0b, 0x9d, + 0xdc, 0xca, 0x85, 0xbe, 0x97, 0xab, 0x80, 0x7e, + 0x66, 0xf7, 0xda, 0x67, 0x76, 0x1f, 0xfc, 0xcc, + 0xee, 0xd1, 0x67, 0x76, 0x3f, 0xf9, 0x99, 0x5d, + 0xb9, 0x86, 0x60, 0x24, 0xc7, 0x40, 0x66, 0xc9, + 0xb8, 0xde, 0x96, 0xa0, 0x48, 0x8b, 0x80, 0x8c, + 0xbc, 0x7b, 0xbb, 0x86, 0xf8, 0xd7, 0x6b, 0xfc, + 0xfc, 0xce, 0xcf, 0xef, 0xb6, 0x8c, 0xd6, 0x68, + 0x40, 0x45, 0x1f, 0x66, 0x31, 0xf4, 0x70, 0xf1, + 0x2a, 0x28, 0x31, 0xd6, 0xb3, 0xfd, 0xdb, 0x70, + 0x2f, 0xb6, 0x93, 0x77, 0x65, 0x76, 0x9f, 0x01, + 0xfc, 0x3b, 0x36, 0xaf, 0xb7, 0x99, 0x6f, 0xd5, + 0xd1, 0xcc, 0xbb, 0x24, 0x71, 0x4b, 0x51, 0x59, + 0xbd, 0x0e, 0x26, 0x96, 0x18, 0x58, 0xf1, 0xdd, + 0x18, 0x8d, 0x32, 0xca, 0x84, 0x2a, 0xa0, 0x78, + 0xfd, 0x57, 0x56, 0x5f, 0x8a, 0x7a, 0xb1, 0xf8, + 0x21, 0xd9, 0x1c, 0x81, 0x56, 0x2d, 0x5f, 0x5e, + 0x95, 0x9c, 0x78, 0xcc, 0x57, 0xaf, 0x01, 0xf0, + 0x84, 0x74, 0x8b, 0x1b, 0x9b, 0xed, 0x3a, 0x9d, + 0x07, 0xf4, 0xcd, 0x30, 0xc8, 0x80, 0x55, 0x5c, + 0x62, 0xeb, 0x99, 0x49, 0x85, 0x3a, 0xe3, 0x82, + 0xde, 0x95, 0x95, 0xaa, 0xe0, 0x2d, 0x0a, 0x93, + 0xab, 0x18, 0xd9, 0xea, 0x1d, 0x0d, 0x37, 0x3d, + 0xfd, 0x09, 0x43, 0xb5, 0x64, 0xe6, 0x7e, 0x36, + 0x6f, 0xd1, 0xcd, 0x3b, 0x6f, 0x2c, 0x05, 0x6c, + 0xe5, 0xbc, 0x11, 0x97, 0xd5, 0xc4, 0x7d, 0x71, + 0xde, 0x3b, 0xa0, 0xda, 0xbb, 0xfe, 0x43, 0xbb, + 0x7e, 0xf3, 0x69, 0x8b, 0x5b, 0x29, 0xc1, 0x97, + 0xb8, 0xb7, 0x94, 0x49, 0xf6, 0xa9, 0x34, 0x0e, + 0x41, 0xc4, 0xa5, 0x51, 0xbb, 0xd7, 0xd1, 0xfb, + 0x72, 0xde, 0x5b, 0x6c, 0x17, 0x95, 0x30, 0x98, + 0xb0, 0xb8, 0x0f, 0xe6, 0x6e, 0x26, 0x7a, 0xff, + 0x36, 0x52, 0xa0, 0x13, 0x29, 0xb4, 0xe5, 0x26, + 0xc8, 0x5e, 0x9e, 0x9d, 0xab, 0x5c, 0xed, 0xc6, + 0xbd, 0x9d, 0x1b, 0xf1, 0x7b, 0x38, 0x9c, 0x4b, + 0x1d, 0x4e, 0xf4, 0xc2, 0xcd, 0x9c, 0xa7, 0x99, + 0x04, 0xed, 0xc6, 0xdc, 0x77, 0xfa, 0xff, 0x03, + 0xbd, 0x4c, 0x39, 0x07, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x77, + 0x6e, 0x63, 0x6b, 0x6c, 0x65, 0x74, 0x2f, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, + 0x08, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, + 0x6f, 0x72, 0x67, 0x2f, 0x09, 0x00, 0x00, 0x00, + 0x61, 0x70, 0x70, 0x6c, 0x65, 0x74, 0x2f, 0x00, + 0x04, 0x00, 0x00, 0x00, 0x77, 0x6f, 0x72, 0x6b, + 0x73, 0x70, 0x61, 0x63, 0x65, 0x2d, 0x73, 0x77, + 0x69, 0x74, 0x63, 0x68, 0x65, 0x72, 0x2e, 0x75, + 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x27, 0x45, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x78, 0xda, 0xed, 0x5c, 0xdd, 0x73, 0xda, 0x38, + 0x10, 0x7f, 0xef, 0x5f, 0xe1, 0xd3, 0xeb, 0x0d, + 0x0d, 0x4e, 0xaf, 0x9d, 0xb9, 0x0e, 0xa1, 0xd3, + 0x5e, 0xd3, 0x8f, 0x69, 0x9b, 0x74, 0x42, 0xae, + 0x7d, 0xd4, 0x08, 0x5b, 0x60, 0x15, 0x21, 0xf9, + 0x24, 0x19, 0x92, 0x9b, 0xfb, 0xe3, 0x4f, 0xb2, + 0x09, 0x31, 0x20, 0x6c, 0xf9, 0x83, 0x40, 0x32, + 0xbc, 0x05, 0x4b, 0xbb, 0xde, 0x5d, 0x69, 0x7f, + 0xbb, 0xda, 0x95, 0xd3, 0x7b, 0x73, 0x33, 0xa5, + 0xde, 0x0c, 0x0b, 0x49, 0x38, 0x3b, 0x03, 0xfe, + 0xf3, 0x2e, 0x78, 0xd3, 0x7f, 0xd6, 0x23, 0x4c, + 0x61, 0x31, 0x42, 0x01, 0xee, 0x3f, 0xf3, 0xbc, + 0x9e, 0xc0, 0xff, 0x24, 0x44, 0x60, 0xe9, 0x51, + 0x32, 0x3c, 0x03, 0x63, 0x35, 0xf9, 0x1d, 0xdc, + 0x93, 0x9c, 0x3e, 0xf7, 0x5f, 0x81, 0x93, 0x74, + 0xde, 0x6f, 0x9d, 0x8e, 0xb7, 0xa4, 0xec, 0x30, + 0x34, 0x25, 0x6c, 0xdc, 0x89, 0x39, 0x25, 0xc1, + 0xad, 0xa7, 0x78, 0x4c, 0xf1, 0x0c, 0xd3, 0x4e, + 0xc0, 0xf5, 0x8c, 0x1b, 0x95, 0x20, 0xea, 0x75, + 0x3a, 0x29, 0x19, 0x1f, 0xfe, 0xc2, 0x81, 0xf2, + 0x02, 0x8a, 0xa4, 0x3c, 0x03, 0x1f, 0xd5, 0xe4, + 0x3d, 0x41, 0x94, 0x8f, 0x81, 0x47, 0xc2, 0x33, + 0x10, 0xa3, 0x31, 0x16, 0x30, 0x16, 0x3c, 0xc6, + 0x42, 0x11, 0x2c, 0x61, 0x98, 0x0d, 0x1a, 0x4a, + 0x4d, 0xbb, 0x18, 0xb8, 0xf5, 0xf4, 0xdb, 0xf0, + 0x19, 0x18, 0x72, 0x11, 0xea, 0xe9, 0x73, 0x12, + 0xaa, 0x08, 0xf4, 0x5f, 0xf6, 0x4e, 0xee, 0xc6, + 0xed, 0xd3, 0x15, 0x51, 0x14, 0x03, 0x4f, 0x09, + 0xc4, 0x24, 0x45, 0x0a, 0x0d, 0xa9, 0x7e, 0x78, + 0x8b, 0x25, 0xe8, 0xff, 0xe4, 0x62, 0x22, 0x63, + 0xad, 0x86, 0x37, 0x98, 0x13, 0x15, 0x44, 0x58, + 0x78, 0xdf, 0x05, 0x1e, 0x61, 0x81, 0x59, 0x80, + 0x65, 0x19, 0x5f, 0x6d, 0x2b, 0xf2, 0xaf, 0xe1, + 0x06, 0xfa, 0x1f, 0x10, 0x95, 0xb8, 0x54, 0x8e, + 0xdb, 0x18, 0xc3, 0x48, 0x9b, 0x0e, 0xf4, 0x19, + 0x17, 0x53, 0x44, 0x37, 0x08, 0x82, 0x88, 0xd0, + 0x30, 0x33, 0x2e, 0x43, 0xda, 0x88, 0xe6, 0xe7, + 0x19, 0x98, 0x0d, 0xf9, 0xcd, 0xc2, 0x12, 0x36, + 0x3b, 0xfe, 0x78, 0xa7, 0x87, 0x53, 0x2b, 0x66, + 0x46, 0xeb, 0x98, 0xf9, 0xfe, 0x92, 0x60, 0x53, + 0x8e, 0x19, 0x91, 0x24, 0x95, 0xfa, 0x5a, 0x24, + 0x1b, 0x42, 0xdb, 0x08, 0xb8, 0x20, 0x98, 0x29, + 0xa4, 0xf4, 0x4e, 0x00, 0xfd, 0x99, 0x59, 0xa1, + 0x60, 0x53, 0x78, 0x1b, 0xa1, 0xb1, 0xad, 0xde, + 0x1d, 0xa0, 0x7f, 0x6a, 0x9d, 0x9d, 0xea, 0x77, + 0xff, 0xbb, 0x58, 0x39, 0xa3, 0xd5, 0x29, 0xc8, + 0xcf, 0xae, 0xa1, 0x59, 0x8d, 0xdd, 0xd4, 0xd8, + 0x28, 0x85, 0x86, 0xf1, 0x4f, 0xb7, 0x92, 0x6c, + 0x58, 0xc7, 0x6e, 0xa1, 0x0f, 0x42, 0x73, 0xcc, + 0x4c, 0x34, 0x32, 0x7f, 0xfa, 0x60, 0x9d, 0xa6, + 0xa6, 0x9d, 0x6c, 0x84, 0xda, 0xb7, 0x99, 0xd2, + 0x8e, 0xf3, 0xf1, 0xfd, 0x17, 0xf8, 0xfd, 0xf2, + 0xf3, 0xc5, 0xf5, 0xf9, 0x15, 0xfc, 0x76, 0x79, + 0xfd, 0xf9, 0xf2, 0x02, 0x7e, 0x7b, 0x3b, 0xf8, + 0xe2, 0xfd, 0xe7, 0x59, 0x46, 0x3e, 0xe9, 0x5f, + 0xf9, 0xe1, 0x77, 0x7f, 0x5f, 0x5f, 0xeb, 0xc7, + 0xdf, 0xaf, 0xce, 0x07, 0x03, 0xcb, 0xf3, 0xab, + 0xf3, 0xaf, 0xe7, 0x6f, 0x07, 0xe7, 0xe9, 0x48, + 0x15, 0xd9, 0x28, 0x1a, 0x62, 0x0a, 0x6f, 0x10, + 0x25, 0x63, 0xbd, 0x22, 0xdd, 0x2a, 0xa4, 0x32, + 0x42, 0x21, 0x9f, 0x43, 0xe3, 0xa0, 0xc6, 0x37, + 0x59, 0xb1, 0x4d, 0xac, 0x0b, 0x63, 0x5f, 0x9c, + 0xb7, 0x46, 0x98, 0xa9, 0xb6, 0x59, 0xb6, 0x40, + 0xe8, 0xee, 0xe7, 0x29, 0xb0, 0xd1, 0x37, 0x58, + 0xa8, 0x43, 0x5f, 0x2c, 0xeb, 0x82, 0xe1, 0x91, + 0x82, 0x31, 0x0a, 0xc3, 0x12, 0x4f, 0x28, 0x37, + 0xbc, 0x0b, 0x76, 0xbc, 0x04, 0xdb, 0x28, 0x1b, + 0x9a, 0xbd, 0x31, 0x38, 0x38, 0x01, 0xc5, 0x2b, + 0x27, 0xea, 0x42, 0x0b, 0xd9, 0xad, 0x74, 0x85, + 0x42, 0xc2, 0xdf, 0x25, 0x4a, 0x69, 0x51, 0x53, + 0x63, 0x05, 0x89, 0xd0, 0xf1, 0x4f, 0x41, 0xce, + 0xe8, 0x2d, 0x14, 0x66, 0x14, 0x14, 0x71, 0xdc, + 0xe2, 0x88, 0xd6, 0x78, 0x3b, 0x88, 0xf8, 0xdc, + 0x4b, 0x19, 0x7b, 0x2a, 0xc2, 0xde, 0xe2, 0x4d, + 0xde, 0xfc, 0x2e, 0x0c, 0xbb, 0xe8, 0xd8, 0xca, + 0x7a, 0xd9, 0x98, 0x04, 0x88, 0xc1, 0x11, 0x0f, + 0x12, 0xd9, 0x8c, 0x8d, 0xc0, 0x01, 0x26, 0x33, + 0x93, 0xc2, 0xe0, 0x11, 0x4a, 0xa8, 0xda, 0x92, + 0x1c, 0xb8, 0xb2, 0x4b, 0x24, 0x86, 0x09, 0xd3, + 0x01, 0x8a, 0x12, 0xd6, 0x50, 0xc1, 0x50, 0xa0, + 0x39, 0x24, 0x2c, 0xd4, 0x7b, 0x51, 0x71, 0x51, + 0x85, 0x57, 0xef, 0x24, 0xdb, 0x36, 0x85, 0x73, + 0xf4, 0x02, 0x4e, 0xf4, 0x56, 0xad, 0x26, 0x13, + 0xbe, 0x89, 0x11, 0x0b, 0x1b, 0xda, 0x68, 0x44, + 0x28, 0x6d, 0xc8, 0x22, 0xe6, 0x92, 0x64, 0xde, + 0xda, 0x75, 0x35, 0x49, 0xa9, 0xbe, 0xbd, 0x93, + 0x12, 0x77, 0xac, 0xe3, 0xae, 0x9f, 0x96, 0xa0, + 0x16, 0x69, 0x50, 0xfb, 0x13, 0xec, 0xc1, 0x51, + 0x1c, 0x92, 0x97, 0xea, 0x9a, 0x3a, 0x82, 0x13, + 0xa2, 0x14, 0x2e, 0xe1, 0x42, 0x3a, 0xc1, 0x53, + 0x1d, 0x88, 0xd2, 0xaf, 0xb9, 0x47, 0x25, 0xa9, + 0x33, 0xf2, 0xd7, 0xae, 0x9a, 0xb6, 0x66, 0xf5, + 0x16, 0x21, 0x6a, 0x07, 0x30, 0xd5, 0x32, 0x54, + 0xb5, 0x0b, 0x57, 0x76, 0x7e, 0x63, 0xc1, 0x93, + 0x18, 0xf4, 0x37, 0xc3, 0x9b, 0x3b, 0x53, 0x17, + 0x1c, 0x74, 0xc7, 0xc2, 0xd6, 0xf0, 0xb0, 0x25, + 0x4c, 0x6c, 0x05, 0x17, 0x1d, 0xb1, 0xd1, 0x09, + 0x1f, 0x9b, 0x20, 0xc7, 0x2a, 0x4e, 0xfa, 0x5d, + 0xb0, 0x47, 0xb7, 0xad, 0x96, 0xc4, 0x55, 0xd3, + 0xdc, 0xae, 0xfd, 0x20, 0x26, 0x2c, 0x0f, 0x9b, + 0x2c, 0x99, 0x42, 0xc1, 0xe7, 0x12, 0x4a, 0x3d, + 0x00, 0x5c, 0x78, 0xb6, 0x68, 0x8e, 0x96, 0x91, + 0xcc, 0xc6, 0x0e, 0x85, 0xbf, 0x12, 0xa9, 0xd2, + 0x83, 0x56, 0x7f, 0xa9, 0xeb, 0xfd, 0xc3, 0xc6, + 0xd2, 0x52, 0x32, 0x1d, 0x6a, 0xb0, 0x50, 0x5a, + 0x7b, 0xbf, 0x29, 0x33, 0x2d, 0x1f, 0x16, 0x24, + 0xa8, 0xa3, 0xb8, 0x2b, 0xfe, 0x54, 0xc3, 0xa0, + 0xd6, 0xfc, 0xbe, 0x82, 0xef, 0x3b, 0xfb, 0x7f, + 0x53, 0x4f, 0xf8, 0x9a, 0x45, 0x7a, 0xe3, 0x04, + 0x59, 0x81, 0x40, 0x6f, 0x0d, 0x18, 0x70, 0x7a, + 0x08, 0x4e, 0xe0, 0x54, 0xab, 0x68, 0x96, 0xce, + 0x18, 0x47, 0x68, 0xca, 0xdd, 0x78, 0x11, 0x19, + 0xdd, 0xea, 0xd0, 0x89, 0x4d, 0x65, 0xb2, 0x29, + 0xbb, 0x29, 0xc3, 0x53, 0xce, 0x48, 0x60, 0x2a, + 0x6e, 0x63, 0x9c, 0x77, 0x58, 0x03, 0x4e, 0x87, + 0xea, 0x10, 0xb5, 0x03, 0x73, 0x8b, 0xc1, 0xb9, + 0xd8, 0x51, 0xfd, 0x7d, 0x3b, 0xea, 0xee, 0xb3, + 0xa3, 0x5a, 0xca, 0xb6, 0x97, 0x8d, 0xec, 0xee, + 0x18, 0x5c, 0x59, 0xb1, 0xe6, 0xc7, 0xcf, 0x62, + 0x65, 0x0a, 0x88, 0xb7, 0x13, 0x6e, 0x25, 0x5a, + 0x34, 0x36, 0x4c, 0x7d, 0xf5, 0x0e, 0xac, 0xdc, + 0xea, 0xa7, 0xeb, 0xe8, 0x7d, 0xac, 0x9b, 0x16, + 0x1f, 0x5e, 0x17, 0x5d, 0xac, 0x52, 0x8e, 0x48, + 0x29, 0x41, 0x86, 0x89, 0xc2, 0x72, 0xeb, 0xf6, + 0x58, 0x4e, 0x59, 0xbc, 0x75, 0x8e, 0xc9, 0x38, + 0x52, 0xc0, 0x9b, 0x21, 0x9a, 0xa4, 0x5d, 0x13, + 0x1a, 0x66, 0x0d, 0x41, 0xdb, 0x0e, 0x29, 0xe6, + 0x5f, 0x79, 0x07, 0x6d, 0x23, 0xd8, 0xee, 0x6c, + 0xb5, 0xe1, 0xbb, 0x56, 0x22, 0xb4, 0xc5, 0x1b, + 0xad, 0xda, 0xd4, 0xe8, 0xeb, 0xe4, 0x0a, 0x1e, + 0x69, 0x8b, 0xe7, 0xd8, 0xe1, 0x39, 0xfc, 0x0e, + 0x8f, 0x7f, 0x44, 0xaa, 0x87, 0xee, 0xf0, 0xf8, + 0xc7, 0x0e, 0x8f, 0x43, 0x29, 0xe4, 0x8f, 0x27, + 0x5e, 0x32, 0xce, 0xa5, 0x0c, 0xe6, 0x60, 0x91, + 0xc3, 0xce, 0xed, 0x89, 0xc7, 0x03, 0xd5, 0x81, + 0x6a, 0x9d, 0xf7, 0xdc, 0xa3, 0xff, 0x45, 0x32, + 0x1d, 0x62, 0xe1, 0xf1, 0x91, 0x97, 0xd3, 0xfa, + 0xf5, 0x01, 0x55, 0x74, 0x1b, 0x1c, 0x24, 0x9d, + 0x0e, 0x91, 0xb9, 0xb5, 0xae, 0x76, 0x94, 0x3c, + 0xd6, 0x75, 0x1f, 0x4d, 0x5d, 0xd7, 0x56, 0xd9, + 0x5c, 0x5b, 0x77, 0xf0, 0x34, 0x3a, 0x34, 0xeb, + 0x35, 0xcd, 0x9c, 0x96, 0xf5, 0x2a, 0x9b, 0xad, + 0x55, 0x35, 0x5b, 0xaa, 0x68, 0x1e, 0xeb, 0x05, + 0xc7, 0xb6, 0xf9, 0x43, 0xb5, 0xcd, 0x73, 0x59, + 0xc1, 0xd2, 0x8f, 0xa0, 0xd1, 0xc1, 0x2d, 0x2d, + 0xd8, 0x49, 0x52, 0x54, 0x39, 0x1d, 0x70, 0x4f, + 0x05, 0xee, 0x2f, 0xb6, 0x32, 0x04, 0xa7, 0x15, + 0xb2, 0x80, 0x1d, 0x5e, 0x3f, 0xd9, 0x08, 0xd9, + 0x39, 0x40, 0x53, 0x02, 0x63, 0x38, 0x23, 0x78, + 0x7e, 0xbc, 0x8f, 0xb2, 0xb7, 0x82, 0x60, 0x3d, + 0xc7, 0x1a, 0x04, 0x82, 0x53, 0x8a, 0xc3, 0x9f, + 0x84, 0xe9, 0x03, 0xb6, 0xdd, 0xc3, 0x64, 0x3a, + 0xa7, 0xa2, 0x8b, 0x45, 0x69, 0xbd, 0x09, 0x9a, + 0x5b, 0xe9, 0x58, 0xea, 0xdd, 0xe2, 0x77, 0xbb, + 0x4f, 0xe1, 0x7a, 0x58, 0x94, 0x19, 0x63, 0x88, + 0x04, 0xcc, 0xee, 0xcc, 0x83, 0x3e, 0x4a, 0x14, + 0x9f, 0xea, 0x93, 0x64, 0x50, 0x5b, 0xbf, 0x1d, + 0xf0, 0x5c, 0x29, 0x98, 0xb8, 0xe7, 0xd2, 0x75, + 0xd3, 0xba, 0x6b, 0x0d, 0x00, 0x3f, 0xb4, 0xff, + 0x6f, 0x14, 0xbc, 0x96, 0xc8, 0xf0, 0x44, 0xb2, + 0x3a, 0xc5, 0x39, 0x55, 0x24, 0x86, 0xe6, 0xeb, + 0x88, 0x12, 0xe8, 0xbe, 0x30, 0xce, 0xd3, 0xe4, + 0x5d, 0x11, 0x46, 0x1a, 0xb9, 0x25, 0x5c, 0xda, + 0xa1, 0xe2, 0xb1, 0xc1, 0x2d, 0x41, 0x3b, 0x90, + 0xc6, 0xc9, 0xe9, 0x61, 0xe3, 0xe4, 0x5f, 0x11, + 0x0e, 0x26, 0xf9, 0x83, 0xcb, 0x2a, 0x48, 0x42, + 0xc5, 0xc7, 0x63, 0x8a, 0xdb, 0xbd, 0x69, 0xbb, + 0x7c, 0x85, 0x97, 0x01, 0xb1, 0x47, 0x98, 0x27, + 0x1d, 0x5b, 0x04, 0x8f, 0x01, 0x4b, 0x8f, 0x57, + 0x6d, 0x1f, 0x77, 0x6a, 0xf3, 0xe2, 0xd8, 0xeb, + 0x2c, 0xe8, 0x75, 0x1e, 0x3b, 0x08, 0x6e, 0x47, + 0x1c, 0x79, 0xec, 0x76, 0xd6, 0x3a, 0x3d, 0xb8, + 0x37, 0x2d, 0x6d, 0x02, 0xd9, 0x85, 0xa9, 0x2c, + 0x88, 0x45, 0x88, 0x0d, 0x01, 0xb6, 0x7c, 0x16, + 0x89, 0x02, 0xc3, 0x19, 0x22, 0x81, 0x11, 0x28, + 0xfe, 0x88, 0xf0, 0x53, 0x16, 0x77, 0xd7, 0xbf, + 0x93, 0xcc, 0x31, 0xf0, 0x5b, 0xf9, 0xb0, 0xd0, + 0xb1, 0xb3, 0x9b, 0xcf, 0x02, 0x22, 0x4c, 0x63, + 0x38, 0xcc, 0x1e, 0x38, 0x36, 0x40, 0x41, 0x7f, + 0xac, 0x26, 0x1d, 0x43, 0x58, 0xa5, 0x01, 0x5a, + 0xbb, 0x21, 0x5c, 0x21, 0x56, 0xdb, 0x48, 0x97, + 0xa1, 0xb9, 0x2a, 0x71, 0x8d, 0xe0, 0x6e, 0x0b, + 0xe8, 0x52, 0xf1, 0x60, 0x52, 0xf6, 0xf6, 0x3d, + 0xde, 0x2f, 0x70, 0x0c, 0xa8, 0x07, 0x73, 0x2d, + 0x21, 0xbf, 0x79, 0x43, 0xce, 0x70, 0xad, 0xcd, + 0x1b, 0x50, 0x5e, 0x4d, 0xdd, 0x47, 0xb7, 0x7b, + 0x23, 0x24, 0x8f, 0x5b, 0x7f, 0xd7, 0x5b, 0x7f, + 0xcf, 0xc1, 0xcd, 0x49, 0xf1, 0x0d, 0xe9, 0x35, + 0xe7, 0x45, 0x55, 0x05, 0xb3, 0xd0, 0x99, 0xaa, + 0xcc, 0xdd, 0xcb, 0xe3, 0xe8, 0xaa, 0x9e, 0x2b, + 0x83, 0xbd, 0x2c, 0x12, 0x76, 0xb2, 0xc2, 0xec, + 0x32, 0x89, 0x59, 0x7d, 0xec, 0x09, 0x2c, 0x63, + 0xce, 0xa4, 0x96, 0xa6, 0xe3, 0xeb, 0x78, 0x99, + 0x8b, 0x5c, 0x3a, 0x03, 0xca, 0xcf, 0x2c, 0xa5, + 0xef, 0x82, 0x7e, 0x0e, 0x3a, 0xac, 0xd4, 0x6b, + 0x0f, 0x53, 0x99, 0xf2, 0x1a, 0x58, 0x2e, 0xe2, + 0xdc, 0xb7, 0xcb, 0x6c, 0x8d, 0xc1, 0x7c, 0x37, + 0xcd, 0xfa, 0xdf, 0x19, 0xd2, 0x4c, 0xcf, 0xb2, + 0xa7, 0x36, 0x60, 0x8c, 0xcf, 0xb1, 0x70, 0x98, + 0x97, 0xc4, 0xb1, 0x99, 0xf7, 0xe2, 0x55, 0xd9, + 0x44, 0xa9, 0x70, 0xac, 0xcf, 0x8a, 0x81, 0xc0, + 0x99, 0x74, 0xa5, 0x9c, 0xcd, 0x3f, 0xcb, 0x58, + 0x21, 0x58, 0xdb, 0x13, 0xd5, 0xed, 0xb4, 0xf6, + 0xb9, 0xc4, 0xc3, 0x5a, 0xc8, 0xdf, 0xa7, 0x85, + 0x7a, 0x27, 0xb9, 0x7f, 0x82, 0xf2, 0x3f, 0xae, + 0x1d, 0x55, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x77, + 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, + 0x2d, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x65, + 0x72, 0x2d, 0x6d, 0x65, 0x6e, 0x75, 0x2e, 0x78, + 0x6d, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x48, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x78, 0xda, 0xb3, 0xc9, 0x4d, 0xcd, 0x2b, 0xcd, + 0x2c, 0x49, 0xcd, 0x55, 0xc8, 0x4b, 0xcc, 0x4d, + 0xb5, 0x55, 0x0a, 0x48, 0x4c, 0x4f, 0x2d, 0x52, + 0x08, 0x28, 0x4a, 0x4d, 0x4b, 0x2d, 0x4a, 0xcd, + 0x4b, 0x4e, 0x2d, 0x56, 0xf0, 0x04, 0x4a, 0x2a, + 0x29, 0x24, 0x26, 0x97, 0x64, 0xe6, 0xe7, 0x41, + 0xe5, 0x91, 0xa4, 0x95, 0x14, 0xf4, 0xed, 0xb8, + 0x80, 0x00, 0x00, 0xb1, 0xc1, 0x18, 0x48, 0x00, + 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x67, + 0x6e, 0x6f, 0x6d, 0x65, 0x2f, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x00, 0x00 +} }; + +static GStaticResource static_resource = { wncklet_resource_data.data, sizeof (wncklet_resource_data.data) }; +extern GResource *wncklet_get_resource (void); +GResource *wncklet_get_resource (void) +{ + return g_static_resource_get_resource (&static_resource); +} +/* + If G_HAS_CONSTRUCTORS is true then the compiler support *both* constructors and + destructors, in a sane way, including e.g. on library unload. If not you're on + your own. + + Some compilers need #pragma to handle this, which does not work with macros, + so the way you need to use this is (for constructors): + + #ifdef G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA + #pragma G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(my_constructor) + #endif + G_DEFINE_CONSTRUCTOR(my_constructor) + static void my_constructor(void) { + ... + } + +*/ + +#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) + +#define G_HAS_CONSTRUCTORS 1 + +#define G_DEFINE_CONSTRUCTOR(_func) static void __attribute__((constructor)) _func (void); +#define G_DEFINE_DESTRUCTOR(_func) static void __attribute__((destructor)) _func (void); + +#elif defined (_MSC_VER) && (_MSC_VER >= 1500) +/* Visual studio 2008 and later has _Pragma */ + +#define G_HAS_CONSTRUCTORS 1 + +#define G_DEFINE_CONSTRUCTOR(_func) \ + static void _func(void); \ + static int _func ## _wrapper(void) { _func(); return 0; } \ + __pragma(section(".CRT$XCU",read)) \ + __declspec(allocate(".CRT$XCU")) static int (* _array ## _func)(void) = _func ## _wrapper; + +#define G_DEFINE_DESTRUCTOR(_func) \ + static void _func(void); \ + static int _func ## _constructor(void) { atexit (_func); return 0; } \ + __pragma(section(".CRT$XCU",read)) \ + __declspec(allocate(".CRT$XCU")) static int (* _array ## _func)(void) = _func ## _constructor; + +#elif defined (_MSC_VER) + +#define G_HAS_CONSTRUCTORS 1 + +/* Pre Visual studio 2008 must use #pragma section */ +#define G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA 1 +#define G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA 1 + +#define G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(_func) \ + section(".CRT$XCU",read) +#define G_DEFINE_CONSTRUCTOR(_func) \ + static void _func(void); \ + static int _func ## _wrapper(void) { _func(); return 0; } \ + __declspec(allocate(".CRT$XCU")) static int (*p)(void) = _func ## _wrapper; + +#define G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(_func) \ + section(".CRT$XCU",read) +#define G_DEFINE_DESTRUCTOR(_func) \ + static void _func(void); \ + static int _func ## _constructor(void) { atexit (_func); return 0; } \ + __declspec(allocate(".CRT$XCU")) static int (* _array ## _func)(void) = _func ## _constructor; + +#elif defined(__SUNPRO_C) + +/* This is not tested, but i believe it should work, based on: + * http://opensource.apple.com/source/OpenSSL098/OpenSSL098-35/src/fips/fips_premain.c + */ + +#define G_HAS_CONSTRUCTORS 1 + +#define G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA 1 +#define G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA 1 + +#define G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(_func) \ + init(_func) +#define G_DEFINE_CONSTRUCTOR(_func) \ + static void _func(void); + +#define G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(_func) \ + fini(_func) +#define G_DEFINE_DESTRUCTOR(_func) \ + static void _func(void); + +#else + +/* constructors not supported for this compiler */ + +#endif + + +#ifdef G_HAS_CONSTRUCTORS + +#ifdef G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA +#pragma G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(resource_constructor) +#endif +G_DEFINE_CONSTRUCTOR(resource_constructor) +#ifdef G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA +#pragma G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(resource_destructor) +#endif +G_DEFINE_DESTRUCTOR(resource_destructor) + +#else +#warning "Constructor not supported on this compiler, linking in resources will not work" +#endif + +static void resource_constructor (void) +{ + g_static_resource_init (&static_resource); +} + +static void resource_destructor (void) +{ + g_static_resource_fini (&static_resource); +} diff -Nru gnome-panel-3.3.3/applets/wncklet/wncklet-resources.h gnome-panel-3.3.5/applets/wncklet/wncklet-resources.h --- gnome-panel-3.3.3/applets/wncklet/wncklet-resources.h 1970-01-01 00:00:00.000000000 +0000 +++ gnome-panel-3.3.5/applets/wncklet/wncklet-resources.h 2012-02-06 11:26:08.000000000 +0000 @@ -0,0 +1,7 @@ +#ifndef __RESOURCE_wncklet_H__ +#define __RESOURCE_wncklet_H__ + +#include + +extern GResource *wncklet_get_resource (void); +#endif diff -Nru gnome-panel-3.3.3/applets/wncklet/workspace-switcher.c gnome-panel-3.3.5/applets/wncklet/workspace-switcher.c --- gnome-panel-3.3.3/applets/wncklet/workspace-switcher.c 2011-03-28 21:08:42.000000000 +0000 +++ gnome-panel-3.3.5/applets/wncklet/workspace-switcher.c 2012-02-02 14:25:57.000000000 +0000 @@ -307,7 +307,6 @@ PagerData *pager; GtkActionGroup *action_group; GtkAction *action; - gchar *ui_path; gboolean display_names; panel_applet_add_preferences (applet, "/schemas/apps/workspace_switcher_applet/prefs", NULL); @@ -384,10 +383,9 @@ pager_menu_actions, G_N_ELEMENTS (pager_menu_actions), pager); - ui_path = g_build_filename (WNCK_MENU_UI_DIR, "workspace-switcher-menu.xml", NULL); - panel_applet_setup_menu_from_file (PANEL_APPLET (pager->applet), - ui_path, action_group); - g_free (ui_path); + panel_applet_setup_menu_from_resource (PANEL_APPLET (pager->applet), + WNCKLET_RESOURCE_PATH "workspace-switcher-menu.xml", + action_group); action = gtk_action_group_get_action (action_group, "PagerPreferences"); g_object_bind_property (pager->applet, "locked-down", @@ -787,18 +785,10 @@ { if (pager->properties_dialog == NULL) { GtkBuilder *builder; - GError *error; builder = gtk_builder_new (); gtk_builder_set_translation_domain (builder, GETTEXT_PACKAGE); - - error = NULL; - gtk_builder_add_from_file (builder, PAGER_BUILDERDIR "/workspace-switcher.ui", &error); - if (error) { - g_warning ("Error loading preferences: %s", error->message); - g_error_free (error); - return; - } + gtk_builder_add_from_resource (builder, WNCKLET_RESOURCE_PATH "workspace-switcher.ui", NULL); pager->properties_dialog = WID ("pager_properties_dialog"); diff -Nru gnome-panel-3.3.3/ChangeLog gnome-panel-3.3.5/ChangeLog --- gnome-panel-3.3.3/ChangeLog 2011-12-20 08:14:43.000000000 +0000 +++ gnome-panel-3.3.5/ChangeLog 2012-02-06 12:16:40.000000000 +0000 @@ -1,6 +1,292 @@ +commit 695d30c35df9ff4cc53381f473db2d4a24395511 +Author: Vincent Untz +Date: 2012-02-06 + + build: Fix distcheck + +M applets/clock/Makefile.am +M applets/fish/Makefile.am +M applets/wncklet/Makefile.am +M gnome-panel/Makefile.am + +commit 22ed971b882d16b584ca707d1c590243290432d5 +Author: Vincent Untz +Date: 2012-02-02 + + clock: Bump CanSetTimezone cache to 20 seconds + + 2 seconds is pretty low, and there's no reason to not have a higher + value (especially as looking for this information requires some dbus + traffic). + +M applets/clock/set-timezone.c + +commit d6443052ade5ca283e6c070ece8771a8f3c70512 +Author: Vincent Untz +Date: 2012-02-02 + + clock: Port to org.freedesktop.timedate1 (untested) + + As the old org.gnome.SettingsDaemon.DateTimeMechanism service is going + away, we need to move to org.freedesktop.timedate1. + + Unfortunately, due to some brokenness on my system, this is not + tested... + + This adds a dependency on polkit-gobject-1. + +M applets/clock/clock.c +M applets/clock/set-timezone.c +M configure.ac + +commit 816dd9cfacdb9f75d6e1fdbdfcb11ded97a84de2 +Author: Vincent Untz +Date: 2012-02-02 + + clock: Remove distro-specific code to set timezones + + We don't use this code anymore to set the timezone since we use a dbus + service. + +M applets/clock/system-timezone.c +M applets/clock/system-timezone.h +M applets/clock/test-system-timezone.c + +commit 221450b851b7d30c9e3d5389bdb04ff442632a29 +Author: Vincent Untz +Date: 2012-02-02 + + clock: Always show actions to set time + + As we open the control center now and the datetime panel works in a + different way than the old "set time" dialog, just always show the + actions instead of trying to detect when the time cannot be set. + +M applets/clock/clock.c +M applets/clock/set-timezone.c +M applets/clock/set-timezone.h + +commit 8d012f62adf2b810e98033bd4a80e018d3c9654a +Author: Vincent Untz +Date: 2012-02-02 + + panel: Stop using deprecated gtk_[hv]box_new() + +M gnome-panel/panel-addto.c +M gnome-panel/panel-ditem-editor.c +M gnome-panel/panel-force-quit.c + +commit 9fca67f7bf2db30838ba6dcf86d49ca965ed31e5 +Author: Vincent Untz +Date: 2012-02-02 + + panel: Convert to GResource + +M gnome-panel/Makefile.am +M gnome-panel/nothing.cP +M gnome-panel/panel-properties-dialog.c +M gnome-panel/panel-run-dialog.c +M gnome-panel/panel-schemas.h +M gnome-panel/panel-test-applets.c +A gnome-panel/panel-test-applets.gresource.xml +A gnome-panel/panel.gresource.xml + +commit f1e29e9527c9615a333a3be62e8842b84f291841 +Author: Vincent Untz +Date: 2012-02-02 + + fish: Install fish animations in fish-specific directory + +M applets/fish/Makefile.am + +commit 5161260240cc61b52e91ddfe7d297d0382e7a4f9 +Author: Vincent Untz +Date: 2012-02-02 + + clock: Stop using deprecated gtk_[hv]box_new() + +M applets/clock/calendar-window.c +M applets/clock/clock-location-tile.c +M applets/clock/clock.c + +commit 9ade365cd1a79c15ecf2a38a56bdb8d925eccf3a +Author: Vincent Untz +Date: 2012-02-02 + + clock: Remove useless icon + +M applets/clock/clock.gresource.xml +M applets/clock/pixmaps/Makefile.am +D applets/clock/pixmaps/clock-calendar-icon.png + +commit aa2895d338c319f2cd22953937ec1991234fd9bf +Author: Vincent Untz +Date: 2012-02-02 + + clock: Convert to GResource + +M applets/clock/Makefile.am +M applets/clock/clock-face.c +M applets/clock/clock-map.c +M applets/clock/clock-utils.c +M applets/clock/clock-utils.h +M applets/clock/clock.c +A applets/clock/clock.gresource.xml +M applets/clock/clock.h +M applets/clock/pixmaps/Makefile.am + +commit 9fbca7dfa21448e983b71d6530fcf7ea337bdd16 +Author: Vincent Untz +Date: 2012-02-02 + + wncklet: Convert to GResource + +M applets/wncklet/Makefile.am +M applets/wncklet/window-list.c +A applets/wncklet/wncklet.gresource.xml +M applets/wncklet/wncklet.h +M applets/wncklet/workspace-switcher.c + +commit 8a1060a1222d592aaa1957025fc1c366a82f9d46 +Author: Vincent Untz +Date: 2012-02-02 + + fish: Remove unneeded variable + +M applets/fish/fish.c + +commit 5478111b1fc676fc1d97a76911f0c33a7aa2e8c2 +Author: Vincent Untz +Date: 2012-02-02 + + fish: Convert to GResource + +M applets/fish/Makefile.am +M applets/fish/fish.c +A applets/fish/fish.gresource.xml + +commit 182cefdf8cc22be86d2c9fec7db2cd9fbda1e547 +Author: Vincent Untz +Date: 2012-02-02 + + libpanel-applet: Add panel_applet_setup_menu_from_resource() API + + Add API to be able to use the new GResource framework. + +M configure.ac +M libpanel-applet/panel-applet.c +M libpanel-applet/panel-applet.h + +commit 2fd32f37ff6cfb4772292ffb38329741c0f54c20 +Author: Peter Hurley +Date: 2012-01-18 + + panel: Use horizontal/vertical padding for button widgets + + This avoids launcher being too close to each other. + + In addition, the "horizontal"/"vertical" class styles can be used to + express the padding in a natural way: + + ButtonWidget.button.horizontal { + padding : 0px 3px 0px 3px; + } + + https://bugzilla.gnome.org/show_bug.cgi?id=668586 + +M gnome-panel/button-widget.c + +commit 0093d7db9f3d42e81994789c9b16b8ff72014054 +Author: Peter Hurley +Date: 2012-02-02 + + panel: Minor cleanup + + Move some variable initializations around. + +M gnome-panel/panel-applet-frame.c + +commit dbc81aeafc6ae05967a720eed9859d95437ec578 +Author: Matthias Clasen +Date: 2011-12-23 + + panel, libpanel-applet: Don't ask for menus to be pushed in + + That is really only useful for combo boxes. + + https://bugzilla.gnome.org/show_bug.cgi?id=666569 + +M gnome-panel/applet.c +M libpanel-applet/panel-applet.c + +commit 538c21a2d7e096cc03ee44bfe5b736afc837b66e +Author: Kjartan Maraas +Date: 2012-01-25 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit 21e493f47d25e8a890f23c02ccccc28614fa7f9a +Author: OKANO Takayoshi +Date: 2012-01-19 + + [l10n] Update Japanese translation + +M help/clock/ja/ja.po + +commit 90682b3079099d74c64406899ce29a9afe20ccb1 +Author: Gil Forcada +Date: 2012-01-12 + + [l10n]Updated Catalan documentation + +M help/fish/ca/ca.po + +commit 29a89b89111f9dd3d37945c03bf455a5b68bad53 +Author: Jovan Naumovski +Date: 2012-01-08 + + Updated Macedonian translation. + +M po/mk.po + +commit e3cfec380bdf348ab4ab48e0f771a5720a7d6305 +Author: Jiro Matsuzawa +Date: 2012-01-06 + + Updated Japanese translation + +M help/clock/ja/ja.po + +commit cc9b7fd00676ce05d8a2c3f0f9ee58f41b3966e0 +Author: Vincent Untz +Date: 2011-12-20 + + build: Create xz tarballs + +M configure.ac + +commit f924d4804207f0c048ad4f51ba474b74c5a41826 +Author: Vincent Untz +Date: 2011-12-20 + + release: post-release bump to 3.3.4 + +M configure.ac + +commit 18993fb81e2f795f11c6101754fa552352e4d2ab +Author: Vincent Untz +Date: 2011-12-20 + + release: 3.3.3 + +M NEWS +M configure.ac + commit 4f0aaf3dde07534be749821f46c98180e7976ca5 Author: Xandru Armesto -Date: 2011-12-18 +Date: 2011-12-18 Updated asturian translation diff -Nru gnome-panel-3.3.3/configure gnome-panel-3.3.5/configure --- gnome-panel-3.3.3/configure 2011-12-20 08:16:03.000000000 +0000 +++ gnome-panel-3.3.5/configure 2012-02-06 12:16:57.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68 for gnome-panel 3.3.3. +# Generated by GNU Autoconf 2.68 for gnome-panel 3.3.5. # # Report bugs to . # @@ -710,8 +710,8 @@ # Identity of this package. PACKAGE_NAME='gnome-panel' PACKAGE_TARNAME='gnome-panel' -PACKAGE_VERSION='3.3.3' -PACKAGE_STRING='gnome-panel 3.3.3' +PACKAGE_VERSION='3.3.5' +PACKAGE_STRING='gnome-panel 3.3.5' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-panel' PACKAGE_URL='' @@ -857,6 +857,7 @@ PKG_CONFIG WARN_CFLAGS GCONFTOOL +GLIB_COMPILE_RESOURCES GLIB_GENMARSHAL pkgpyexecdir pyexecdir @@ -1626,7 +1627,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures gnome-panel 3.3.3 to adapt to many kinds of systems. +\`configure' configures gnome-panel 3.3.5 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1700,7 +1701,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of gnome-panel 3.3.3:";; + short | recursive ) echo "Configuration of gnome-panel 3.3.5:";; esac cat <<\_ACEOF @@ -1887,7 +1888,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -gnome-panel configure 3.3.3 +gnome-panel configure 3.3.5 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. @@ -2256,7 +2257,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by gnome-panel $as_me 3.3.3, which was +It was created by gnome-panel $as_me 3.3.5, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -3073,7 +3074,7 @@ # Define the identity of the package. PACKAGE='gnome-panel' - VERSION='3.3.3' + VERSION='3.3.5' cat >>confdefs.h <<_ACEOF @@ -3221,7 +3222,7 @@ LIBPANEL_APPLET_API_VERSION=$LIBPANEL_APPLET_API_VERSION -LIB_PANEL_APPLET_LT_VERSION=0:3:0 +LIB_PANEL_APPLET_LT_VERSION=1:0:1 @@ -4921,13 +4922,13 @@ else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext - (eval echo "\"\$as_me:4924: $ac_compile\"" >&5) + (eval echo "\"\$as_me:4925: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 - (eval echo "\"\$as_me:4927: $NM \\\"conftest.$ac_objext\\\"\"" >&5) + (eval echo "\"\$as_me:4928: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 - (eval echo "\"\$as_me:4930: output\"" >&5) + (eval echo "\"\$as_me:4931: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" @@ -6133,7 +6134,7 @@ ;; *-*-irix6*) # Find out which ABI we are using. - echo '#line 6136 "configure"' > conftest.$ac_ext + echo '#line 6137 "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -7660,11 +7661,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:7663: $lt_compile\"" >&5) + (eval echo "\"\$as_me:7664: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:7667: \$? = $ac_status" >&5 + echo "$as_me:7668: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -7999,11 +8000,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:8002: $lt_compile\"" >&5) + (eval echo "\"\$as_me:8003: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:8006: \$? = $ac_status" >&5 + echo "$as_me:8007: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -8104,11 +8105,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:8107: $lt_compile\"" >&5) + (eval echo "\"\$as_me:8108: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:8111: \$? = $ac_status" >&5 + echo "$as_me:8112: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -8159,11 +8160,11 @@ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:8162: $lt_compile\"" >&5) + (eval echo "\"\$as_me:8163: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:8166: \$? = $ac_status" >&5 + echo "$as_me:8167: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -10526,7 +10527,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 10529 "configure" +#line 10530 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -10622,7 +10623,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 10625 "configure" +#line 10626 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12291,6 +12292,46 @@ fi +# Extract the first word of "glib-compile-resources", so it can be a program name with args. +set dummy glib-compile-resources; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_GLIB_COMPILE_RESOURCES+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $GLIB_COMPILE_RESOURCES in + [\\/]* | ?:[\\/]*) + ac_cv_path_GLIB_COMPILE_RESOURCES="$GLIB_COMPILE_RESOURCES" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_GLIB_COMPILE_RESOURCES="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +GLIB_COMPILE_RESOURCES=$ac_cv_path_GLIB_COMPILE_RESOURCES +if test -n "$GLIB_COMPILE_RESOURCES"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GLIB_COMPILE_RESOURCES" >&5 +$as_echo "$GLIB_COMPILE_RESOURCES" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + # Extract the first word of "gconftool-2", so it can be a program name with args. set dummy gconftool-2; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 @@ -12928,7 +12969,7 @@ LIBGNOME_DESKTOP_REQUIRED=2.91.0 GDK_PIXBUF_REQUIRED=2.7.1 PANGO_REQUIRED=1.15.4 -GLIB_REQUIRED=2.25.12 +GLIB_REQUIRED=2.31.14 GTK_REQUIRED=3.0 LIBWNCK_REQUIRED=2.91.0 GCONF_REQUIRED=2.6.1 @@ -13746,12 +13787,12 @@ pkg_cv_CLOCK_CFLAGS="$CLOCK_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"pango >= \$PANGO_REQUIRED gtk+-3.0 >= \$GTK_REQUIRED glib-2.0 >= \$GLIB_REQUIRED gio-2.0 >= \$GLIB_REQUIRED \$LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= \$GWEATHER_REQUIRED gnome-desktop-3.0 >= \$LIBGNOME_DESKTOP_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED") 2>&5 + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"pango >= \$PANGO_REQUIRED gtk+-3.0 >= \$GTK_REQUIRED glib-2.0 >= \$GLIB_REQUIRED gio-2.0 >= \$GLIB_REQUIRED \$LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= \$GWEATHER_REQUIRED gnome-desktop-3.0 >= \$LIBGNOME_DESKTOP_REQUIRED polkit-gobject-1\""; } >&5 + ($PKG_CONFIG --exists --print-errors "pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED polkit-gobject-1") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then - pkg_cv_CLOCK_CFLAGS=`$PKG_CONFIG --cflags "pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED" 2>/dev/null` + pkg_cv_CLOCK_CFLAGS=`$PKG_CONFIG --cflags "pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED polkit-gobject-1" 2>/dev/null` else pkg_failed=yes fi @@ -13762,12 +13803,12 @@ pkg_cv_CLOCK_LIBS="$CLOCK_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"pango >= \$PANGO_REQUIRED gtk+-3.0 >= \$GTK_REQUIRED glib-2.0 >= \$GLIB_REQUIRED gio-2.0 >= \$GLIB_REQUIRED \$LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= \$GWEATHER_REQUIRED gnome-desktop-3.0 >= \$LIBGNOME_DESKTOP_REQUIRED\""; } >&5 - ($PKG_CONFIG --exists --print-errors "pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED") 2>&5 + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"pango >= \$PANGO_REQUIRED gtk+-3.0 >= \$GTK_REQUIRED glib-2.0 >= \$GLIB_REQUIRED gio-2.0 >= \$GLIB_REQUIRED \$LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= \$GWEATHER_REQUIRED gnome-desktop-3.0 >= \$LIBGNOME_DESKTOP_REQUIRED polkit-gobject-1\""; } >&5 + ($PKG_CONFIG --exists --print-errors "pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED polkit-gobject-1") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then - pkg_cv_CLOCK_LIBS=`$PKG_CONFIG --libs "pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED" 2>/dev/null` + pkg_cv_CLOCK_LIBS=`$PKG_CONFIG --libs "pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED polkit-gobject-1" 2>/dev/null` else pkg_failed=yes fi @@ -13787,14 +13828,14 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - CLOCK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED" 2>&1` + CLOCK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED polkit-gobject-1" 2>&1` else - CLOCK_PKG_ERRORS=`$PKG_CONFIG --print-errors "pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED" 2>&1` + CLOCK_PKG_ERRORS=`$PKG_CONFIG --print-errors "pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED polkit-gobject-1" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$CLOCK_PKG_ERRORS" >&5 - as_fn_error $? "Package requirements (pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED) were not met: + as_fn_error $? "Package requirements (pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED polkit-gobject-1) were not met: $CLOCK_PKG_ERRORS @@ -17567,7 +17608,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by gnome-panel $as_me 3.3.3, which was +This file was extended by gnome-panel $as_me 3.3.5, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -17633,7 +17674,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -gnome-panel config.status 3.3.3 +gnome-panel config.status 3.3.5 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" diff -Nru gnome-panel-3.3.3/configure.ac gnome-panel-3.3.5/configure.ac --- gnome-panel-3.3.3/configure.ac 2011-12-20 08:14:52.000000000 +0000 +++ gnome-panel-3.3.5/configure.ac 2012-02-06 11:18:37.000000000 +0000 @@ -1,7 +1,7 @@ -AC_INIT([gnome-panel], [3.3.3], +AC_INIT([gnome-panel], [3.3.5], [http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-panel]) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-bzip2 tar-ustar -Wno-portability]) +AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz tar-ustar -Wno-portability]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AC_CONFIG_MACRO_DIR([m4]) @@ -17,7 +17,7 @@ LIBPANEL_APPLET_API_VERSION=4.0 AC_SUBST([LIBPANEL_APPLET_API_VERSION],[$LIBPANEL_APPLET_API_VERSION]) -LIB_PANEL_APPLET_LT_VERSION=0:3:0 +LIB_PANEL_APPLET_LT_VERSION=1:0:1 AC_SUBST(LIB_PANEL_APPLET_LT_VERSION) GNOME_MAINTAINER_MODE_DEFINES @@ -31,6 +31,7 @@ AM_PATH_PYTHON AC_PATH_PROG(GLIB_GENMARSHAL, glib-genmarshal) +AC_PATH_PROG(GLIB_COMPILE_RESOURCES, glib-compile-resources) AC_PATH_PROG(GCONFTOOL, gconftool-2) GNOME_COMPILE_WARNINGS([maximum]) @@ -60,7 +61,7 @@ LIBGNOME_DESKTOP_REQUIRED=2.91.0 GDK_PIXBUF_REQUIRED=2.7.1 PANGO_REQUIRED=1.15.4 -GLIB_REQUIRED=2.25.12 +GLIB_REQUIRED=2.31.14 GTK_REQUIRED=3.0 LIBWNCK_REQUIRED=2.91.0 GCONF_REQUIRED=2.6.1 @@ -143,7 +144,7 @@ AC_SUBST(TZ_CFLAGS) AC_SUBST(TZ_LIBS) -PKG_CHECK_MODULES(CLOCK, pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED) +PKG_CHECK_MODULES(CLOCK, pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED polkit-gobject-1) AC_SUBST(CLOCK_CFLAGS) AC_SUBST(CLOCK_LIBS) diff -Nru gnome-panel-3.3.3/data/16x16/Makefile.in gnome-panel-3.3.5/data/16x16/Makefile.in --- gnome-panel-3.3.3/data/16x16/Makefile.in 2011-12-20 08:16:04.000000000 +0000 +++ gnome-panel-3.3.5/data/16x16/Makefile.in 2012-02-06 12:16:59.000000000 +0000 @@ -124,6 +124,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/data/22x22/Makefile.in gnome-panel-3.3.5/data/22x22/Makefile.in --- gnome-panel-3.3.3/data/22x22/Makefile.in 2011-12-20 08:16:04.000000000 +0000 +++ gnome-panel-3.3.5/data/22x22/Makefile.in 2012-02-06 12:16:59.000000000 +0000 @@ -124,6 +124,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/data/24x24/Makefile.in gnome-panel-3.3.5/data/24x24/Makefile.in --- gnome-panel-3.3.3/data/24x24/Makefile.in 2011-12-20 08:16:04.000000000 +0000 +++ gnome-panel-3.3.5/data/24x24/Makefile.in 2012-02-06 12:16:59.000000000 +0000 @@ -124,6 +124,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/data/32x32/Makefile.in gnome-panel-3.3.5/data/32x32/Makefile.in --- gnome-panel-3.3.3/data/32x32/Makefile.in 2011-12-20 08:16:05.000000000 +0000 +++ gnome-panel-3.3.5/data/32x32/Makefile.in 2012-02-06 12:16:59.000000000 +0000 @@ -124,6 +124,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/data/48x48/Makefile.in gnome-panel-3.3.5/data/48x48/Makefile.in --- gnome-panel-3.3.3/data/48x48/Makefile.in 2011-12-20 08:16:05.000000000 +0000 +++ gnome-panel-3.3.5/data/48x48/Makefile.in 2012-02-06 12:16:59.000000000 +0000 @@ -124,6 +124,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/data/Makefile.in gnome-panel-3.3.5/data/Makefile.in --- gnome-panel-3.3.3/data/Makefile.in 2011-12-20 08:16:05.000000000 +0000 +++ gnome-panel-3.3.5/data/Makefile.in 2012-02-06 12:16:59.000000000 +0000 @@ -164,6 +164,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/data/scalable/Makefile.in gnome-panel-3.3.5/data/scalable/Makefile.in --- gnome-panel-3.3.3/data/scalable/Makefile.in 2011-12-20 08:16:05.000000000 +0000 +++ gnome-panel-3.3.5/data/scalable/Makefile.in 2012-02-06 12:16:59.000000000 +0000 @@ -124,6 +124,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/debian/changelog gnome-panel-3.3.5/debian/changelog --- gnome-panel-3.3.3/debian/changelog 2012-01-12 14:53:53.000000000 +0000 +++ gnome-panel-3.3.5/debian/changelog 2012-02-08 05:17:43.000000000 +0000 @@ -1,3 +1,16 @@ +gnome-panel (1:3.3.5-0ubuntu1) precise; urgency=low + + * New upstream release. + * debian/control.in: + - Bump minimum glib to 2.31.14 + * debian/patches/13_disable_missing_help.patch: + Updated patch from bugzilla + * debian/patches/14_revert-timedate-change.patch: + - Revert switch to systemd timedate protocol until ubuntu-system- + services supports it + + -- Jeremy Bicha Wed, 08 Feb 2012 00:17:11 -0500 + gnome-panel (1:3.3.3-0ubuntu2) precise; urgency=low * Rebuild for latest evolution-data-server diff -Nru gnome-panel-3.3.3/debian/control gnome-panel-3.3.5/debian/control --- gnome-panel-3.3.3/debian/control 2012-01-12 14:53:55.000000000 +0000 +++ gnome-panel-3.3.5/debian/control 2012-02-08 05:17:50.000000000 +0000 @@ -29,7 +29,7 @@ libgnome-desktop-3-dev (>= 2.91.0), libgdk-pixbuf2.0-dev, libpango1.0-dev (>= 1.15.4), - libglib2.0-dev (>= 2.25.12), + libglib2.0-dev (>= 2.31.14), libgtk-3-dev (>= 3.0), libwnck-3-dev (>= 2.91.0), libgconf2-dev (>= 2.6.1), @@ -52,7 +52,8 @@ network-manager-dev (>= 0.6) [linux-any], gtk-doc-tools (>= 1.0), gnome-doc-utils -Vcs-Bzr: https://code.launchpad.net/~ubuntu-desktop/gnome-panel/ubuntu +Vcs-Svn: svn://anonscm.debian.org/svn/pkg-gnome/desktop/unstable/gnome-panel +Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/gnome-panel Package: gnome-panel Architecture: any diff -Nru gnome-panel-3.3.3/debian/control.in gnome-panel-3.3.5/debian/control.in --- gnome-panel-3.3.3/debian/control.in 2012-01-12 14:53:53.000000000 +0000 +++ gnome-panel-3.3.5/debian/control.in 2012-02-08 05:17:43.000000000 +0000 @@ -24,7 +24,7 @@ libgnome-desktop-3-dev (>= 2.91.0), libgdk-pixbuf2.0-dev, libpango1.0-dev (>= 1.15.4), - libglib2.0-dev (>= 2.25.12), + libglib2.0-dev (>= 2.31.14), libgtk-3-dev (>= 3.0), libwnck-3-dev (>= 2.91.0), libgconf2-dev (>= 2.6.1), @@ -47,7 +47,8 @@ network-manager-dev (>= 0.6) [linux-any], gtk-doc-tools (>= 1.0), gnome-doc-utils -Vcs-Bzr: https://code.launchpad.net/~ubuntu-desktop/gnome-panel/ubuntu +Vcs-Svn: svn://anonscm.debian.org/svn/pkg-gnome/desktop/unstable/gnome-panel +Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/gnome-panel Package: gnome-panel Architecture: any diff -Nru gnome-panel-3.3.3/debian/patches/13_disable_missing_help.patch gnome-panel-3.3.5/debian/patches/13_disable_missing_help.patch --- gnome-panel-3.3.3/debian/patches/13_disable_missing_help.patch 2012-01-12 14:53:53.000000000 +0000 +++ gnome-panel-3.3.5/debian/patches/13_disable_missing_help.patch 2012-02-08 05:17:43.000000000 +0000 @@ -1,64 +1,170 @@ -Description: Disable help buttons since gnome-panel help is no longer in - the GNOME user guide -Bug-Ubuntu: http://pad.lv/885959 -Author: Jeremy Bicha -Index: gnome-panel-3.3.3/gnome-panel/panel-addto.c -=================================================================== ---- gnome-panel-3.3.3.orig/gnome-panel/panel-addto.c 2011-08-01 13:39:56.000000000 -0400 -+++ gnome-panel-3.3.3/gnome-panel/panel-addto.c 2011-12-21 02:12:42.856201099 -0500 -@@ -1243,8 +1243,8 @@ +From f8ab04f86f2fca3676940014033d6ba414ecfba4 Mon Sep 17 00:00:00 2001 +From: Jeremy Bicha +Date: Tue, 7 Feb 2012 22:18:31 -0500 +Subject: [PATCH] panel: remove obsolete help buttons + +The GNOME user guide no longer includes help for gnome-panel, so +remove the help buttons that's don't work any more. + +https://bugzilla.gnome.org/show_bug.cgi?id=669630 +--- + gnome-panel/panel-addto.c | 7 ------- + gnome-panel/panel-menu-bar.c | 11 +---------- + gnome-panel/panel-properties-dialog.ui | 32 -------------------------------- + gnome-panel/panel-run-dialog.ui | 16 ---------------- + 4 files changed, 1 insertions(+), 65 deletions(-) + +diff --git a/gnome-panel/panel-addto.c b/gnome-panel/panel-addto.c +index 86f415b..8d6b5cb 100644 +--- a/gnome-panel/panel-addto.c ++++ b/gnome-panel/panel-addto.c +@@ -800,11 +800,6 @@ panel_addto_dialog_response (GtkWidget *widget_dialog, + GtkTreeIter filter_iter; + + switch (response_id) { +- case GTK_RESPONSE_HELP: +- panel_show_help (gtk_window_get_screen (GTK_WINDOW (dialog->addto_dialog)), +- "user-guide", "gospanel-15", NULL); +- break; +- + case PANEL_ADDTO_RESPONSE_ADD: + selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (dialog->tree_view)); + if (gtk_tree_selection_get_selected (selection, &filter_model, +@@ -1243,8 +1238,6 @@ panel_addto_dialog_new (PanelWidget *panel_widget) dialog); dialog->addto_dialog = gtk_dialog_new (); - gtk_dialog_add_button (GTK_DIALOG (dialog->addto_dialog), - GTK_STOCK_HELP, GTK_RESPONSE_HELP); -+ //gtk_dialog_add_button (GTK_DIALOG (dialog->addto_dialog), -+ // GTK_STOCK_HELP, GTK_RESPONSE_HELP); dialog->back_button = gtk_dialog_add_button (GTK_DIALOG (dialog->addto_dialog), GTK_STOCK_GO_BACK, PANEL_ADDTO_RESPONSE_BACK); -Index: gnome-panel-3.3.3/gnome-panel/panel-menu-bar.c -=================================================================== ---- gnome-panel-3.3.3.orig/gnome-panel/panel-menu-bar.c 2011-12-08 06:29:18.000000000 -0500 -+++ gnome-panel-3.3.3/gnome-panel/panel-menu-bar.c 2011-12-21 02:14:55.284857763 -0500 -@@ -227,12 +227,12 @@ +diff --git a/gnome-panel/panel-menu-bar.c b/gnome-panel/panel-menu-bar.c +index 0988144..acb1217 100644 +--- a/gnome-panel/panel-menu-bar.c ++++ b/gnome-panel/panel-menu-bar.c +@@ -227,12 +227,6 @@ panel_menu_bar_load (PanelWidget *panel, panel_lockdown_get_not_panels_locked_down_s); } - panel_applet_add_callback (menubar->priv->info, -+ /*panel_applet_add_callback (menubar->priv->info, - "help", - GTK_STOCK_HELP, - _("_Help"), - NULL); +- "help", +- GTK_STOCK_HELP, +- _("_Help"), +- NULL); - -+ */ panel_menu_bar_object_object_load_finish (PANEL_MENU_BAR_OBJECT (menubar), panel); } -Index: gnome-panel-3.3.3/gnome-panel/panel-properties-dialog.ui -=================================================================== ---- gnome-panel-3.3.3.orig/gnome-panel/panel-properties-dialog.ui 2011-03-28 17:08:42.000000000 -0400 -+++ gnome-panel-3.3.3/gnome-panel/panel-properties-dialog.ui 2011-12-21 02:08:47.119032127 -0500 -@@ -531,7 +531,7 @@ +@@ -258,10 +252,7 @@ panel_menu_bar_invoke_menu (PanelMenuBar *menubar, + + screen = gtk_widget_get_screen (GTK_WIDGET (menubar)); + +- if (!strcmp (callback_name, "help")) { +- panel_show_help (screen, "user-guide", "menubar", NULL); +- +- } else if (!strcmp (callback_name, "edit")) { ++ if (!strcmp (callback_name, "edit")) { + GError *error = NULL; + + panel_launch_desktop_file_with_fallback ("alacarte.desktop", +diff --git a/gnome-panel/panel-properties-dialog.ui b/gnome-panel/panel-properties-dialog.ui +index dcb795a..8c4ffd6 100644 +--- a/gnome-panel/panel-properties-dialog.ui ++++ b/gnome-panel/panel-properties-dialog.ui +@@ -529,21 +529,6 @@ + + True + +- +- gtk-help +- True +- True +- True +- False +- True +- +- +- False +- False +- 0 +- +- +- + + gtk-close + True +@@ -569,7 +554,6 @@ + + + +- helpbutton1 + closebutton1 + + +@@ -674,21 +658,6 @@ + + True - - gtk-help +- +- gtk-help - True -+ False - True - True - False -Index: gnome-panel-3.3.3/gnome-panel/panel-run-dialog.ui -=================================================================== ---- gnome-panel-3.3.3.orig/gnome-panel/panel-run-dialog.ui 2011-01-31 18:50:19.000000000 -0500 -+++ gnome-panel-3.3.3/gnome-panel/panel-run-dialog.ui 2011-12-21 02:09:12.647158723 -0500 -@@ -199,7 +199,7 @@ +- True +- True +- False +- True +- +- +- False +- False +- 0 +- +- +- + + gtk-close + True +@@ -713,7 +682,6 @@ + + + +- helpbutton2 + closebutton2 + + +diff --git a/gnome-panel/panel-run-dialog.ui b/gnome-panel/panel-run-dialog.ui +index 16afda1..e084f65 100644 +--- a/gnome-panel/panel-run-dialog.ui ++++ b/gnome-panel/panel-run-dialog.ui +@@ -197,21 +197,6 @@ + + True - - gtk-help +- +- gtk-help - True -+ False - True - True - False +- True +- True +- False +- True +- +- +- False +- False +- 0 +- +- +- + + gtk-cancel + True +@@ -258,7 +243,6 @@ + + + +- help_button + cancel_button + run_button + +-- +1.7.8.3 diff -Nru gnome-panel-3.3.3/debian/patches/14_revert-timedate-change.patch gnome-panel-3.3.5/debian/patches/14_revert-timedate-change.patch --- gnome-panel-3.3.3/debian/patches/14_revert-timedate-change.patch 1970-01-01 00:00:00.000000000 +0000 +++ gnome-panel-3.3.5/debian/patches/14_revert-timedate-change.patch 2012-02-08 05:17:43.000000000 +0000 @@ -0,0 +1,151 @@ +Index: gnome-panel-3.3.5/applets/clock/clock.c +=================================================================== +--- gnome-panel-3.3.5.orig/applets/clock/clock.c 2012-02-02 11:51:27.000000000 -0500 ++++ gnome-panel-3.3.5/applets/clock/clock.c 2012-02-07 22:57:41.193548904 -0500 +@@ -68,6 +68,7 @@ + #include "clock-location-tile.h" + #include "clock-map.h" + #include "clock-utils.h" ++#include "set-timezone.h" + #include "system-timezone.h" + + #define INTERNETSECOND (864) +Index: gnome-panel-3.3.5/applets/clock/set-timezone.c +=================================================================== +--- gnome-panel-3.3.5.orig/applets/clock/set-timezone.c 2012-02-02 11:51:54.000000000 -0500 ++++ gnome-panel-3.3.5/applets/clock/set-timezone.c 2012-02-07 22:58:04.109662547 -0500 +@@ -23,17 +23,23 @@ + #endif + + #include +-#include ++#include ++#include ++#include ++#include ++#include ++#include + + #include "set-timezone.h" + + #define CACHE_VALIDITY_SEC 20 + +-#define MECHANISM_BUS_NAME "org.freedesktop.timedate1" +-#define MECHANISM_OBJECT_PATH "/org/freedesktop/timedate1" +-#define MECHANISM_INTERFACE "org.freedesktop.timedate1" ++#define MECHANISM_BUS_NAME "org.gnome.SettingsDaemon.DateTimeMechanism" ++#define MECHANISM_OBJECT_PATH "/" ++#define MECHANISM_INTERFACE "org.gnome.SettingsDaemon.DateTimeMechanism" + + typedef struct { ++ gboolean in_progress; + gint value; + guint64 stamp; + } Cache; +@@ -59,6 +65,27 @@ + return system; + } + ++static void ++can_set_call_finished (GObject *source, ++ GAsyncResult *result, ++ gpointer user_data) ++{ ++ Cache *cache = user_data; ++ GVariant *reply; ++ ++ reply = g_dbus_connection_call_finish (G_DBUS_CONNECTION (source), ++ result, NULL); ++ ++ if (reply != NULL) ++ { ++ g_variant_get (reply, "(i)", &cache->value); ++ g_variant_unref (reply); ++ } ++ ++ cache->stamp = g_get_monotonic_time (); ++ cache->in_progress = FALSE; ++} ++ + static int + can_set (Cache *cache, const gchar *method_name) + { +@@ -66,39 +93,23 @@ + + if (now - cache->stamp > (CACHE_VALIDITY_SEC * 1000000)) + { +- PolkitAuthority *authority; +- PolkitSubject *subject; +- PolkitAuthorizationResult *res; +- +- authority = polkit_authority_get_sync (NULL, NULL); +- subject = polkit_unix_session_new_for_process_sync (getpid (), NULL, NULL); +- +- res = polkit_authority_check_authorization_sync (authority, +- subject, +- "org.freedesktop.timedate1.set-timezone", +- NULL, +- POLKIT_CHECK_AUTHORIZATION_FLAGS_NONE, +- NULL, +- NULL); +- +- cache->stamp = g_get_monotonic_time (); +- +- if (res == NULL) +- cache->value = 0; +- else +- { +- if (polkit_authorization_result_get_is_authorized (res)) +- cache->value = 2; +- else if (polkit_authorization_result_get_is_challenge (res)) +- cache->value = 1; +- else +- cache->value = 0; +- +- g_object_unref (res); +- } +- +- g_object_unref (authority); +- g_object_unref (subject); ++ if (!cache->in_progress) ++ { ++ GDBusConnection *system_bus = get_system_bus (NULL); ++ ++ if (system_bus != NULL) ++ g_dbus_connection_call (system_bus, MECHANISM_BUS_NAME, ++ MECHANISM_OBJECT_PATH, MECHANISM_INTERFACE, ++ method_name, NULL, G_VARIANT_TYPE ("(i)"), ++ G_DBUS_CALL_FLAGS_NONE, -1, NULL, ++ can_set_call_finished, cache); ++ ++ /* Even if the system bus was NULL, we want to set this in ++ * order to effectively wedge ourselves from ever trying ++ * again. ++ */ ++ cache->in_progress = TRUE; ++ } + } + + return cache->value; +@@ -159,7 +170,7 @@ + + g_dbus_connection_call (system_bus, MECHANISM_BUS_NAME, + MECHANISM_OBJECT_PATH, MECHANISM_INTERFACE, +- "SetTimezone", g_variant_new ("(sb)", tz, TRUE), ++ "SetTimezone", g_variant_new ("(s)", tz, TRUE), + NULL, G_DBUS_CALL_FLAGS_NONE, -1, NULL, + callback, user_data); + } +Index: gnome-panel-3.3.5/configure.ac +=================================================================== +--- gnome-panel-3.3.5.orig/configure.ac 2012-02-06 06:18:37.000000000 -0500 ++++ gnome-panel-3.3.5/configure.ac 2012-02-07 22:57:41.201548946 -0500 +@@ -144,7 +144,7 @@ + AC_SUBST(TZ_CFLAGS) + AC_SUBST(TZ_LIBS) + +-PKG_CHECK_MODULES(CLOCK, pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED polkit-gobject-1) ++PKG_CHECK_MODULES(CLOCK, pango >= $PANGO_REQUIRED gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GLIB_REQUIRED $LIBECAL_REQUIREMENT librsvg-2.0 gweather-3.0 >= $GWEATHER_REQUIRED gnome-desktop-3.0 >= $LIBGNOME_DESKTOP_REQUIRED) + AC_SUBST(CLOCK_CFLAGS) + AC_SUBST(CLOCK_LIBS) + diff -Nru gnome-panel-3.3.3/debian/patches/series gnome-panel-3.3.5/debian/patches/series --- gnome-panel-3.3.3/debian/patches/series 2012-01-12 14:53:53.000000000 +0000 +++ gnome-panel-3.3.5/debian/patches/series 2012-02-08 05:17:43.000000000 +0000 @@ -4,5 +4,6 @@ 10_bookmarks_limit.patch 11_compat_options.patch 13_disable_missing_help.patch +14_revert-timedate-change.patch 40_unset_menuproxy.patch 85_disable_shutdown_on_ltsp.patch diff -Nru gnome-panel-3.3.3/doc/Makefile.in gnome-panel-3.3.5/doc/Makefile.in --- gnome-panel-3.3.3/doc/Makefile.in 2011-12-20 08:16:05.000000000 +0000 +++ gnome-panel-3.3.5/doc/Makefile.in 2012-02-06 12:16:59.000000000 +0000 @@ -140,6 +140,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/doc/reference/Makefile.in gnome-panel-3.3.5/doc/reference/Makefile.in --- gnome-panel-3.3.3/doc/reference/Makefile.in 2011-12-20 08:16:05.000000000 +0000 +++ gnome-panel-3.3.5/doc/reference/Makefile.in 2012-02-06 12:16:59.000000000 +0000 @@ -140,6 +140,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/doc/reference/panel-applet/html/panel-applet-GConf-Utilities.html gnome-panel-3.3.5/doc/reference/panel-applet/html/panel-applet-GConf-Utilities.html --- gnome-panel-3.3.3/doc/reference/panel-applet/html/panel-applet-GConf-Utilities.html 2011-12-20 08:18:29.000000000 +0000 +++ gnome-panel-3.3.5/doc/reference/panel-applet/html/panel-applet-GConf-Utilities.html 2012-02-06 12:17:33.000000000 +0000 @@ -43,52 +43,52 @@
 #include <panel-applet-gconf.h>
 
-gchar *             panel_applet_gconf_get_full_key     (PanelApplet *applet,
-                                                         const gchar *key);
-gboolean            panel_applet_gconf_get_bool         (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         GError **error);
-gint                panel_applet_gconf_get_int          (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         GError **error);
-gchar *             panel_applet_gconf_get_string       (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         GError **error);
-gdouble             panel_applet_gconf_get_float        (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         GError **error);
-GSList *            panel_applet_gconf_get_list         (PanelApplet *applet,
-                                                         const gchar *key,
+gchar *             panel_applet_gconf_get_full_key     (PanelApplet *applet,
+                                                         const gchar *key);
+gboolean            panel_applet_gconf_get_bool         (PanelApplet *applet,
+                                                         const gchar *key,
+                                                         GError **error);
+gint                panel_applet_gconf_get_int          (PanelApplet *applet,
+                                                         const gchar *key,
+                                                         GError **error);
+gchar *             panel_applet_gconf_get_string       (PanelApplet *applet,
+                                                         const gchar *key,
+                                                         GError **error);
+gdouble             panel_applet_gconf_get_float        (PanelApplet *applet,
+                                                         const gchar *key,
+                                                         GError **error);
+GSList *            panel_applet_gconf_get_list         (PanelApplet *applet,
+                                                         const gchar *key,
                                                          GConfValueType list_type,
-                                                         GError **error);
+                                                         GError **error);
 GConfValue *        panel_applet_gconf_get_value        (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         GError **error);
+                                                         const gchar *key,
+                                                         GError **error);
 void                panel_applet_gconf_set_bool         (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         gboolean the_bool,
-                                                         GError **error);
+                                                         const gchar *key,
+                                                         gboolean the_bool,
+                                                         GError **error);
 void                panel_applet_gconf_set_int          (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         gint the_int,
-                                                         GError **error);
+                                                         const gchar *key,
+                                                         gint the_int,
+                                                         GError **error);
 void                panel_applet_gconf_set_string       (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         const gchar *the_string,
-                                                         GError **error);
+                                                         const gchar *key,
+                                                         const gchar *the_string,
+                                                         GError **error);
 void                panel_applet_gconf_set_float        (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         gdouble the_float,
-                                                         GError **error);
+                                                         const gchar *key,
+                                                         gdouble the_float,
+                                                         GError **error);
 void                panel_applet_gconf_set_list         (PanelApplet *applet,
-                                                         const gchar *key,
+                                                         const gchar *key,
                                                          GConfValueType list_type,
-                                                         GSList *list,
-                                                         GError **error);
+                                                         GSList *list,
+                                                         GError **error);
 void                panel_applet_gconf_set_value        (PanelApplet *applet,
-                                                         const gchar *key,
+                                                         const gchar *key,
                                                          GConfValue *value,
-                                                         GError **error);
+                                                         GError **error);
 
@@ -107,11 +107,11 @@

Details

panel_applet_gconf_get_full_key ()

-
gchar *             panel_applet_gconf_get_full_key     (PanelApplet *applet,
-                                                         const gchar *key);
+
gchar *             panel_applet_gconf_get_full_key     (PanelApplet *applet,
+                                                         const gchar *key);

Warning

-

panel_applet_gconf_get_full_key has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

+

panel_applet_gconf_get_full_key has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

@@ -135,12 +135,12 @@

panel_applet_gconf_get_bool ()

-
gboolean            panel_applet_gconf_get_bool         (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         GError **error);
+
gboolean            panel_applet_gconf_get_bool         (PanelApplet *applet,
+                                                         const gchar *key,
+                                                         GError **error);

Warning

-

panel_applet_gconf_get_bool has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

+

panel_applet_gconf_get_bool has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

Convenience wrapper around gconf_client_get_bool() to get the value of key @@ -159,7 +159,7 @@

- + @@ -171,12 +171,12 @@

panel_applet_gconf_get_int ()

-
gint                panel_applet_gconf_get_int          (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         GError **error);
+
gint                panel_applet_gconf_get_int          (PanelApplet *applet,
+                                                         const gchar *key,
+                                                         GError **error);

Warning

-

panel_applet_gconf_get_int has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

+

panel_applet_gconf_get_int has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

Convenience wrapper around gconf_client_get_int() to get the value of key @@ -195,7 +195,7 @@

- + @@ -207,12 +207,12 @@

panel_applet_gconf_get_string ()

-
gchar *             panel_applet_gconf_get_string       (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         GError **error);
+
gchar *             panel_applet_gconf_get_string       (PanelApplet *applet,
+                                                         const gchar *key,
+                                                         GError **error);

Warning

-

panel_applet_gconf_get_string has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

+

panel_applet_gconf_get_string has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

Convenience wrapper around gconf_client_get_string() to get the value of key @@ -231,7 +231,7 @@

- + @@ -243,12 +243,12 @@

panel_applet_gconf_get_float ()

-
gdouble             panel_applet_gconf_get_float        (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         GError **error);
+
gdouble             panel_applet_gconf_get_float        (PanelApplet *applet,
+                                                         const gchar *key,
+                                                         GError **error);

Warning

-

panel_applet_gconf_get_float has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

+

panel_applet_gconf_get_float has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

Convenience wrapper around gconf_client_get_float() to get the value of key @@ -267,7 +267,7 @@

- + @@ -279,13 +279,13 @@

panel_applet_gconf_get_list ()

-
GSList *            panel_applet_gconf_get_list         (PanelApplet *applet,
-                                                         const gchar *key,
+
GSList *            panel_applet_gconf_get_list         (PanelApplet *applet,
+                                                         const gchar *key,
                                                          GConfValueType list_type,
-                                                         GError **error);
+ GError **error);

Warning

-

panel_applet_gconf_get_list has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

+

panel_applet_gconf_get_list has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

Convenience wrapper around gconf_client_get_list() to get the value of key @@ -304,7 +304,7 @@

- + @@ -318,11 +318,11 @@

panel_applet_gconf_get_value ()

GConfValue *        panel_applet_gconf_get_value        (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         GError **error);
+ const gchar *key, + GError **error);

Warning

-

panel_applet_gconf_get_value has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

+

panel_applet_gconf_get_value has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

Convenience wrapper around gconf_client_get_value() to get the value of key @@ -341,7 +341,7 @@

- + @@ -354,12 +354,12 @@

panel_applet_gconf_set_bool ()

void                panel_applet_gconf_set_bool         (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         gboolean the_bool,
-                                                         GError **error);
+ const gchar *key, + gboolean the_bool, + GError **error);

Warning

-

panel_applet_gconf_set_bool has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

+

panel_applet_gconf_set_bool has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

Convenience wrapper around gconf_client_set_bool() to update key in the @@ -382,7 +382,7 @@

- +

error :

a GError, or NULL.a GError, or NULL.

Returns :

error :

a GError, or NULL.a GError, or NULL.

Returns :

error :

a GError, or NULL.a GError, or NULL.

Returns :

error :

a GError, or NULL.a GError, or NULL.

Returns :

error :

a GError, or NULL.a GError, or NULL.

Returns :

error :

a GError, or NULL.a GError, or NULL.

Returns :

error :

a GError, or NULL.a GError, or NULL.
@@ -391,12 +391,12 @@

panel_applet_gconf_set_int ()

void                panel_applet_gconf_set_int          (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         gint the_int,
-                                                         GError **error);
+ const gchar *key, + gint the_int, + GError **error);

Warning

-

panel_applet_gconf_set_int has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

+

panel_applet_gconf_set_int has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

Convenience wrapper around gconf_client_set_int() to update key in the @@ -419,7 +419,7 @@

error :

-a GError, or NULL. +a GError, or NULL.
@@ -428,12 +428,12 @@

panel_applet_gconf_set_string ()

void                panel_applet_gconf_set_string       (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         const gchar *the_string,
-                                                         GError **error);
+ const gchar *key, + const gchar *the_string, + GError **error);

Warning

-

panel_applet_gconf_set_string has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

+

panel_applet_gconf_set_string has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

Convenience wrapper around gconf_client_set_string() to update key in the @@ -456,7 +456,7 @@

error :

-a GError, or NULL. +a GError, or NULL.
@@ -465,12 +465,12 @@

panel_applet_gconf_set_float ()

void                panel_applet_gconf_set_float        (PanelApplet *applet,
-                                                         const gchar *key,
-                                                         gdouble the_float,
-                                                         GError **error);
+ const gchar *key, + gdouble the_float, + GError **error);

Warning

-

panel_applet_gconf_set_float has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

+

panel_applet_gconf_set_float has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

Convenience wrapper around gconf_client_set_float() to update key in the @@ -493,7 +493,7 @@

error :

-a GError, or NULL. +a GError, or NULL.
@@ -502,13 +502,13 @@

panel_applet_gconf_set_list ()

void                panel_applet_gconf_set_list         (PanelApplet *applet,
-                                                         const gchar *key,
+                                                         const gchar *key,
                                                          GConfValueType list_type,
-                                                         GSList *list,
-                                                         GError **error);
+ GSList *list, + GError **error);

Warning

-

panel_applet_gconf_set_list has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

+

panel_applet_gconf_set_list has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

Convenience wrapper around gconf_client_set_list() to update key in the @@ -535,7 +535,7 @@

error :

-a GError, or NULL. +a GError, or NULL.
@@ -544,12 +544,12 @@

panel_applet_gconf_set_value ()

void                panel_applet_gconf_set_value        (PanelApplet *applet,
-                                                         const gchar *key,
+                                                         const gchar *key,
                                                          GConfValue *value,
-                                                         GError **error);
+ GError **error);

Warning

-

panel_applet_gconf_set_value has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

+

panel_applet_gconf_set_value has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

Convenience wrapper around gconf_client_set_value() to update key in the @@ -572,7 +572,7 @@

error :

-a GError, or NULL. +a GError, or NULL.
diff -Nru gnome-panel-3.3.3/doc/reference/panel-applet/html/panel-applet-Panel-Applet-Factory.html gnome-panel-3.3.5/doc/reference/panel-applet/html/panel-applet-Panel-Applet-Factory.html --- gnome-panel-3.3.3/doc/reference/panel-applet/html/panel-applet-Panel-Applet-Factory.html 2011-12-20 08:18:29.000000000 +0000 +++ gnome-panel-3.3.5/doc/reference/panel-applet/html/panel-applet-Panel-Applet-Factory.html 2012-02-06 12:17:33.000000000 +0000 @@ -44,9 +44,9 @@
 #include <panel-applet.h>
 
-gboolean            (*PanelAppletFactoryCallback)       (PanelApplet *applet,
-                                                         const gchar *iid,
-                                                         gpointer user_data);
+gboolean            (*PanelAppletFactoryCallback)       (PanelApplet *applet,
+                                                         const gchar *iid,
+                                                         gpointer user_data);
 #define             PANEL_APPLET_OUT_PROCESS_FACTORY    (id,
                                                          type,
                                                          callback,
@@ -55,10 +55,10 @@
                                                          type,
                                                          callback,
                                                          data)
-int                 panel_applet_factory_main           (const gchar *factory_id,
-                                                         GType applet_type,
+int                 panel_applet_factory_main           (const gchar *factory_id,
+                                                         GType applet_type,
                                                          PanelAppletFactoryCallback callback,
-                                                         gpointer data);
+                                                         gpointer data);
 
@@ -73,9 +73,9 @@

Details

PanelAppletFactoryCallback ()

-
gboolean            (*PanelAppletFactoryCallback)       (PanelApplet *applet,
-                                                         const gchar *iid,
-                                                         gpointer user_data);
+
gboolean            (*PanelAppletFactoryCallback)       (PanelApplet *applet,
+                                                         const gchar *iid,
+                                                         gpointer user_data);

The type used for callbacks after. The callback will usually check that iid is a valid applet type identifier for the applet factory, and will then fill @@ -99,8 +99,8 @@

Returns :

-TRUE if iid is a valid applet type identifier for the applet -factory and if the creation of applet was successfully completed, FALSE +TRUE if iid is a valid applet type identifier for the applet +factory and if the creation of applet was successfully completed, FALSE otherwise. @@ -122,7 +122,7 @@

On creation of the applet instances, callback is called to setup the -applet. If callback returns FALSE, the creation of the applet instance is +applet. If callback returns FALSE, the creation of the applet instance is cancelled.

@@ -168,7 +168,7 @@

On creation of the applet instances, callback is called to setup the -applet. If callback returns FALSE, the creation of the applet instance is +applet. If callback returns FALSE, the creation of the applet instance is cancelled.

@@ -202,10 +202,10 @@


panel_applet_factory_main ()

-
int                 panel_applet_factory_main           (const gchar *factory_id,
-                                                         GType applet_type,
+
int                 panel_applet_factory_main           (const gchar *factory_id,
+                                                         GType applet_type,
                                                          PanelAppletFactoryCallback callback,
-                                                         gpointer data);
+ gpointer data);

Creates the applet factory for factory_id, so that the factory can create instances of the applet types it is associated with. @@ -217,7 +217,7 @@

On creation of the applet instances, callback is called to setup the -applet. If callback returns FALSE, the creation of the applet instance is +applet. If callback returns FALSE, the creation of the applet instance is cancelled.

diff -Nru gnome-panel-3.3.3/doc/reference/panel-applet/html/panel-applet-Panel-Applet.html gnome-panel-3.3.5/doc/reference/panel-applet/html/panel-applet-Panel-Applet.html --- gnome-panel-3.3.3/doc/reference/panel-applet/html/panel-applet-Panel-Applet.html 2011-12-20 08:18:29.000000000 +0000 +++ gnome-panel-3.3.5/doc/reference/panel-applet/html/panel-applet-Panel-Applet.html 2012-02-06 12:17:33.000000000 +0000 @@ -56,7 +56,7 @@ enum PanelAppletOrient; enum PanelAppletFlags; PanelAppletOrient panel_applet_get_orient (PanelApplet *applet); -guint panel_applet_get_size (PanelApplet *applet); +guint panel_applet_get_size (PanelApplet *applet); void panel_applet_set_size_hints (PanelApplet *applet, const int *size_hints, int n_elements, @@ -67,28 +67,28 @@ PanelAppletFlags panel_applet_get_flags (PanelApplet *applet); void panel_applet_set_flags (PanelApplet *applet, PanelAppletFlags flags); -gboolean panel_applet_get_locked_down (PanelApplet *applet); -GSettings * panel_applet_settings_new (PanelApplet *applet, +gboolean panel_applet_get_locked_down (PanelApplet *applet); +GSettings * panel_applet_settings_new (PanelApplet *applet, const char *schema); void panel_applet_add_preferences (PanelApplet *applet, - const gchar *schema_dir, - GError **error); -gchar * panel_applet_get_preferences_key (PanelApplet *applet); + const gchar *schema_dir, + GError **error); +gchar * panel_applet_get_preferences_key (PanelApplet *applet); void panel_applet_request_focus (PanelApplet *applet, - guint32 timestamp); + guint32 timestamp); void panel_applet_setup_menu (PanelApplet *applet, - const gchar *xml, + const gchar *xml, GtkActionGroup *action_group); void panel_applet_setup_menu_from_file (PanelApplet *applet, - const gchar *filename, + const gchar *filename, GtkActionGroup *action_group);

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
+  GObject
+   +----GInitiallyUnowned
          +----GtkWidget
                +----GtkContainer
                      +----GtkBin
@@ -105,26 +105,26 @@
 

Properties

-  "background"               gchar*                : Read / Write
-  "closure"                  gpointer              : Read / Write / Construct Only
-  "connection"               GDBusConnection*      : Read / Write / Construct Only
-  "flags"                    guint                 : Read / Write
-  "id"                       gchar*                : Read / Write / Construct Only
-  "locked-down"              gboolean              : Read / Write
-  "orient"                   guint                 : Read / Write
-  "prefs-key"                gchar*                : Read / Write
-  "settings-path"            gchar*                : Read / Write
-  "size"                     guint                 : Read / Write
-  "size-hints"               gpointer              : Read / Write
+  "background"               gchar*                : Read / Write
+  "closure"                  gpointer              : Read / Write / Construct Only
+  "connection"               GDBusConnection*      : Read / Write / Construct Only
+  "flags"                    guint                 : Read / Write
+  "id"                       gchar*                : Read / Write / Construct Only
+  "locked-down"              gboolean              : Read / Write
+  "orient"                   guint                 : Read / Write
+  "prefs-key"                gchar*                : Read / Write
+  "settings-path"            gchar*                : Read / Write
+  "size"                     guint                 : Read / Write
+  "size-hints"               gpointer              : Read / Write
 
@@ -268,7 +268,7 @@

panel_applet_get_size ()

-
guint               panel_applet_get_size               (PanelApplet *applet);
+
guint               panel_applet_get_size               (PanelApplet *applet);

Warning

panel_applet_get_size has been deprecated since version 3.0 and should not be used in newly-written code. Use the allocation of applet instead.

@@ -346,7 +346,7 @@

panel_applet_get_background ()

cairo_pattern_t *   panel_applet_get_background         (PanelApplet *applet);

-Gets the background pattern for applet, or NULL if there is none. +Gets the background pattern for applet, or NULL if there is none.

@@ -436,7 +436,7 @@

panel_applet_get_locked_down ()

-
gboolean            panel_applet_get_locked_down        (PanelApplet *applet);
+
gboolean            panel_applet_get_locked_down        (PanelApplet *applet);

Gets whether the panel applet is on is locked down or not. A locked down applet should not allow any change to its configuration. @@ -451,7 +451,7 @@

+TRUE if the panel applet is on is locked down, FALSE otherwise.

Returns :

-TRUE if the panel applet is on is locked down, FALSE otherwise.
@@ -459,10 +459,10 @@

panel_applet_settings_new ()

-
GSettings *         panel_applet_settings_new           (PanelApplet *applet,
+
GSettings *         panel_applet_settings_new           (PanelApplet *applet,
                                                          const char *schema);

-Creates a new GSettings object for the per-instance settings of applet, +Creates a new GSettings object for the per-instance settings of applet, with a given schema.

@@ -478,7 +478,7 @@ - +

Returns :

a new GSettings object for the per-instance settings of applet.a new GSettings object for the per-instance settings of applet.
@@ -487,11 +487,11 @@

panel_applet_add_preferences ()

void                panel_applet_add_preferences        (PanelApplet *applet,
-                                                         const gchar *schema_dir,
-                                                         GError **error);
+ const gchar *schema_dir, + GError **error);

Warning

-

panel_applet_add_preferences has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

+

panel_applet_add_preferences has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

Associates the per-instance GConf directory of applet to the schemas @@ -512,7 +512,7 @@

error :

-a GError, or NULL. +a GError, or NULL.
@@ -520,10 +520,10 @@

panel_applet_get_preferences_key ()

-
gchar *             panel_applet_get_preferences_key    (PanelApplet *applet);
+
gchar *             panel_applet_get_preferences_key    (PanelApplet *applet);

Warning

-

panel_applet_get_preferences_key has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

+

panel_applet_get_preferences_key has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

Gets the GConf path to the per-instance settings of applet. @@ -546,7 +546,7 @@

panel_applet_request_focus ()

void                panel_applet_request_focus          (PanelApplet *applet,
-                                                         guint32 timestamp);
+ guint32 timestamp);

Requests focus for applet. There is no guarantee that applet will successfully get focus after that call. @@ -570,7 +570,7 @@

panel_applet_setup_menu ()

void                panel_applet_setup_menu             (PanelApplet *applet,
-                                                         const gchar *xml,
+                                                         const gchar *xml,
                                                          GtkActionGroup *action_group);

Sets up the context menu of applet. xml is a GtkUIManager UI definition, @@ -603,7 +603,7 @@

panel_applet_setup_menu_from_file ()

void                panel_applet_setup_menu_from_file   (PanelApplet *applet,
-                                                         const gchar *filename,
+                                                         const gchar *filename,
                                                          GtkActionGroup *action_group);

Sets up the context menu of applet. filename is the path to a menu XML @@ -638,7 +638,7 @@

Property Details

The "background" property

-
  "background"               gchar*                : Read / Write
+
  "background"               gchar*                : Read / Write

Implementation detail.

@@ -647,7 +647,7 @@

The "closure" property

-
  "closure"                  gpointer              : Read / Write / Construct Only
+
  "closure"                  gpointer              : Read / Write / Construct Only

Implementation detail.

@@ -655,7 +655,7 @@

The "connection" property

-
  "connection"               GDBusConnection*      : Read / Write / Construct Only
+
  "connection"               GDBusConnection*      : Read / Write / Construct Only

Implementation detail.

@@ -663,7 +663,7 @@

The "flags" property

-
  "flags"                    guint                 : Read / Write
+
  "flags"                    guint                 : Read / Write

The PanelAppletFlags of the applet.

@@ -673,7 +673,7 @@

The "id" property

-
  "id"                       gchar*                : Read / Write / Construct Only
+
  "id"                       gchar*                : Read / Write / Construct Only

Implementation detail.

@@ -682,7 +682,7 @@

The "locked-down" property

-
  "locked-down"              gboolean              : Read / Write
+
  "locked-down"              gboolean              : Read / Write

Whether the panel the applet is on is locked down.

@@ -691,7 +691,7 @@

The "orient" property

-
  "orient"                   guint                 : Read / Write
+
  "orient"                   guint                 : Read / Write

The PanelAppletOrient of the applet.

@@ -705,10 +705,10 @@

The "prefs-key" property

-
  "prefs-key"                gchar*                : Read / Write
+
  "prefs-key"                gchar*                : Read / Write

Warning

-

PanelApplet:prefs-key has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

+

PanelApplet:prefs-key has been deprecated since version 3.0 and should not be used in newly-written code. Use GSettings to store per-instance settings.

The GConf path to the per-instance settings of the applet. @@ -721,7 +721,7 @@


The "settings-path" property

-
  "settings-path"            gchar*                : Read / Write
+
  "settings-path"            gchar*                : Read / Write

The GSettings path to the per-instance settings of the applet.

@@ -733,7 +733,7 @@

The "size" property

-
  "size"                     guint                 : Read / Write
+
  "size"                     guint                 : Read / Write

Warning

PanelApplet:size has been deprecated since version 3.0 and should not be used in newly-written code. Use the allocation of applet instead.

@@ -752,7 +752,7 @@

The "size-hints" property

-
  "size-hints"               gpointer              : Read / Write
+
  "size-hints"               gpointer              : Read / Write

The size hints set for the applet. See panel_applet_set_size_hints().

@@ -764,7 +764,7 @@

The "change-background" signal

void                user_function                      (PanelApplet  *applet,
                                                         CairoPattern *pattern,
-                                                        gpointer      user_data)      : Run Last
+ gpointer user_data) : Run Last

Emitted when the background of applet has changed.

@@ -777,7 +777,7 @@

pattern :

-the new background pattern for applet, or NULL if there is none. +the new background pattern for applet, or NULL if there is none.

user_data :

@@ -790,8 +790,8 @@

The "change-orient" signal

void                user_function                      (PanelApplet *applet,
-                                                        guint        orient,
-                                                        gpointer     user_data)      : Run Last
+ guint orient, + gpointer user_data) : Run Last

Emitted when the PanelAppletOrient of applet has changed.

@@ -817,8 +817,8 @@

The "change-size" signal

void                user_function                      (PanelApplet *applet,
-                                                        gint         size,
-                                                        gpointer     user_data)      : Run Last
+ gint size, + gpointer user_data) : Run Last

Warning

PanelApplet::change-size has been deprecated since version 3.0 and should not be used in newly-written code. Use the "size-allocate" signal instead.

@@ -849,7 +849,7 @@

The "move-focus-out-of-applet" signal

void                user_function                      (PanelApplet     *applet,
                                                         GtkDirectionType direction,
-                                                        gpointer         user_data)      : Action
+ gpointer user_data) : Action

Emitted when the focus is moved out of applet. This is an implementation detail. diff -Nru gnome-panel-3.3.3/doc/reference/panel-applet/Makefile.in gnome-panel-3.3.5/doc/reference/panel-applet/Makefile.in --- gnome-panel-3.3.3/doc/reference/panel-applet/Makefile.in 2011-12-20 08:16:05.000000000 +0000 +++ gnome-panel-3.3.5/doc/reference/panel-applet/Makefile.in 2012-02-06 12:16:59.000000000 +0000 @@ -107,6 +107,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/gnome-panel/applet.c gnome-panel-3.3.5/gnome-panel/applet.c --- gnome-panel-3.3.3/gnome-panel/applet.c 2011-06-27 20:29:27.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/applet.c 2012-02-02 10:36:00.000000000 +0000 @@ -616,7 +616,7 @@ *x = menu_x; *y = menu_y; - *push_in = TRUE; + *push_in = FALSE; } static void diff -Nru gnome-panel-3.3.3/gnome-panel/button-widget.c gnome-panel-3.3.5/gnome-panel/button-widget.c --- gnome-panel-3.3.3/gnome-panel/button-widget.c 2011-06-27 20:28:01.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/button-widget.c 2012-02-02 10:36:00.000000000 +0000 @@ -442,9 +442,17 @@ parent = gtk_widget_get_parent (widget); - if (button_widget->priv->orientation & PANEL_HORIZONTAL_MASK) - size = gtk_widget_get_allocated_height (parent); - else + if (button_widget->priv->orientation & PANEL_HORIZONTAL_MASK) { + GtkStyleContext *context; + GtkStateFlags state; + GtkBorder padding; + + state = gtk_widget_get_state_flags (widget); + context = gtk_widget_get_style_context (widget); + gtk_style_context_get_padding (context, state, &padding); + + size = gtk_widget_get_allocated_height (parent) + padding.left + padding.right; + } else size = gtk_widget_get_allocated_width (parent); *minimal_width = *natural_width = size; @@ -463,8 +471,18 @@ if (button_widget->priv->orientation & PANEL_HORIZONTAL_MASK) size = gtk_widget_get_allocated_height (parent); - else - size = gtk_widget_get_allocated_width (parent); + else { + GtkStyleContext *context; + GtkStateFlags state; + GtkBorder padding; + + state = gtk_widget_get_state_flags (widget); + context = gtk_widget_get_style_context (widget); + gtk_style_context_get_padding (context, state, &padding); + + size = gtk_widget_get_allocated_width (parent) + padding.top + padding.bottom; + } + *minimal_height = *natural_height = size; } @@ -580,6 +598,8 @@ static void button_widget_init (ButtonWidget *button) { + GtkStyleContext *context; + button->priv = BUTTON_WIDGET_GET_PRIVATE (button); button->priv->icon_theme = NULL; @@ -589,6 +609,8 @@ button->priv->filename = NULL; button->priv->orientation = PANEL_ORIENTATION_TOP; + context = gtk_widget_get_style_context (GTK_WIDGET (button)); + gtk_style_context_add_class (context, GTK_STYLE_CLASS_HORIZONTAL); button->priv->size = 0; @@ -685,7 +707,6 @@ "Whether to highlight the button on mouse over", TRUE, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS)); - } GtkWidget * @@ -762,6 +783,8 @@ button_widget_set_orientation (ButtonWidget *button, PanelOrientation orientation) { + GtkStyleContext *context; + g_return_if_fail (BUTTON_IS_WIDGET (button)); if (button->priv->orientation == orientation) @@ -769,6 +792,16 @@ button->priv->orientation = orientation; + /* Use css class "horizontal"/"vertical" for theming */ + context = gtk_widget_get_style_context (GTK_WIDGET (button)); + if (orientation & PANEL_HORIZONTAL_MASK) { + gtk_style_context_remove_class (context, GTK_STYLE_CLASS_VERTICAL); + gtk_style_context_add_class (context, GTK_STYLE_CLASS_HORIZONTAL); + } else { + gtk_style_context_remove_class (context, GTK_STYLE_CLASS_HORIZONTAL); + gtk_style_context_add_class (context, GTK_STYLE_CLASS_VERTICAL); + } + /* Force a re-scale */ button->priv->size = -1; diff -Nru gnome-panel-3.3.3/gnome-panel/gnome-panel.desktop.in gnome-panel-3.3.5/gnome-panel/gnome-panel.desktop.in --- gnome-panel-3.3.3/gnome-panel/gnome-panel.desktop.in 2011-12-20 08:16:14.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/gnome-panel.desktop.in 2012-02-06 12:17:06.000000000 +0000 @@ -9,7 +9,7 @@ X-GNOME-Bugzilla-Bugzilla=GNOME X-GNOME-Bugzilla-Product=gnome-panel X-GNOME-Bugzilla-Component=general -X-GNOME-Bugzilla-Version=3.3.3 +X-GNOME-Bugzilla-Version=3.3.5 Categories=GNOME;GTK;System;Core; OnlyShowIn=GNOME; NoDisplay=true diff -Nru gnome-panel-3.3.3/gnome-panel/libegg/Makefile.in gnome-panel-3.3.5/gnome-panel/libegg/Makefile.in --- gnome-panel-3.3.3/gnome-panel/libegg/Makefile.in 2011-12-20 08:16:05.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/libegg/Makefile.in 2012-02-06 12:16:59.000000000 +0000 @@ -133,6 +133,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/gnome-panel/libpanel-applet-private/Makefile.in gnome-panel-3.3.5/gnome-panel/libpanel-applet-private/Makefile.in --- gnome-panel-3.3.3/gnome-panel/libpanel-applet-private/Makefile.in 2011-12-20 08:16:05.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/libpanel-applet-private/Makefile.in 2012-02-06 12:17:00.000000000 +0000 @@ -139,6 +139,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/gnome-panel/libpanel-util/Makefile.in gnome-panel-3.3.5/gnome-panel/libpanel-util/Makefile.in --- gnome-panel-3.3.3/gnome-panel/libpanel-util/Makefile.in 2011-12-20 08:16:06.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/libpanel-util/Makefile.in 2012-02-06 12:17:00.000000000 +0000 @@ -135,6 +135,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/gnome-panel/Makefile.am gnome-panel-3.3.5/gnome-panel/Makefile.am --- gnome-panel-3.3.3/gnome-panel/Makefile.am 2011-06-14 12:28:20.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/Makefile.am 2012-02-06 12:15:47.000000000 +0000 @@ -14,17 +14,12 @@ -I$(top_builddir)/gnome-panel/libpanel-util \ -DPANELDATADIR=\""$(datadir)/gnome-panel"\" \ -DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ - -DBUILDERDIR=\""$(uidir)"\" \ - -DICONDIR=\""$(datadir)/gnome-panel/pixmaps"\" \ $(DISABLE_DEPRECATED_CFLAGS) AM_CFLAGS = $(WARN_CFLAGS) panel_sources = \ - panel-typebuiltins.c \ - panel-typebuiltins.h \ - panel-marshal.c \ - panel-marshal.h \ + $(gnome_panel_BUILT_SOURCES) \ main.c \ panel-widget.c \ button-widget.c \ @@ -158,11 +153,11 @@ $(PANEL_LIBS) \ $(X_LIBS) -panel_test_applets_SOURCES = \ - panel-modules.c \ - panel-applet-info.c \ - panel-applets-manager.c \ - panel-marshal.c \ +panel_test_applets_SOURCES = \ + $(panel_test_applets_BUILT_SOURCES) \ + panel-modules.c \ + panel-applet-info.c \ + panel-applets-manager.c \ panel-test-applets.c panel_test_applets_CPPFLAGS = \ @@ -224,17 +219,41 @@ --eprod "GType @enum_name@_get_type (void);\n" \ $(panel_enum_headers) > $@ -BUILT_SOURCES = \ +gnome_panel_BUILT_SOURCES = \ panel-typebuiltins.c \ panel-typebuiltins.h \ + panel-resources.c \ + panel-resources.h \ panel-marshal.c \ panel-marshal.h -uidir = $(datadir)/gnome-panel/ui -ui_DATA = \ +panel_test_applets_BUILT_SOURCES = \ + panel-test-applets-resources.c \ + panel-test-applets-resources.h \ + panel-marshal.c \ + panel-marshal.h + +BUILT_SOURCES = \ + $(gnome_panel_BUILT_SOURCES) \ + $(panel_test_applets_BUILT_SOURCES) + +ui_FILES = \ panel-properties-dialog.ui \ - panel-run-dialog.ui \ - panel-test-applets.ui + panel-run-dialog.ui + +panel-resources.c: panel.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies panel.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name panel $(srcdir)/$< + +panel-resources.h: panel.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies panel.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name panel $(srcdir)/$< + +uitest_FILES = panel-test-applets.ui + +panel-test-applets-resources.c: panel-test-applets.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies panel-test-applets.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name panel $(srcdir)/$< + +panel-test-applets-resources.h: panel-test-applets.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies panel-test-applets.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name panel $(srcdir)/$< desktopdir = $(datadir)/applications desktop_in_files = gnome-panel.desktop.in @@ -243,7 +262,10 @@ @INTLTOOL_DESKTOP_RULE@ EXTRA_DIST = \ - $(ui_DATA) \ + $(ui_FILES) \ + panel.gresource.xml \ + $(uitest_FILES) \ + panel-test-applets.gresource.xml \ nothing.cP \ nothing.h \ panel-marshal.list \ diff -Nru gnome-panel-3.3.3/gnome-panel/Makefile.in gnome-panel-3.3.5/gnome-panel/Makefile.in --- gnome-panel-3.3.3/gnome-panel/Makefile.in 2011-12-20 08:16:05.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/Makefile.in 2012-02-06 12:16:59.000000000 +0000 @@ -55,7 +55,7 @@ CONFIG_CLEAN_FILES = gnome-panel.desktop.in CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libexecdir)" \ - "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(uidir)" + "$(DESTDIR)$(desktopdir)" PROGRAMS = $(bin_PROGRAMS) am_gnome_desktop_item_edit_OBJECTS = \ gnome-desktop-item-edit.$(OBJEXT) panel-ditem-editor.$(OBJEXT) \ @@ -70,7 +70,9 @@ am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent am__objects_1 = gnome_panel-panel-typebuiltins.$(OBJEXT) \ - gnome_panel-panel-marshal.$(OBJEXT) gnome_panel-main.$(OBJEXT) \ + gnome_panel-panel-resources.$(OBJEXT) \ + gnome_panel-panel-marshal.$(OBJEXT) +am__objects_2 = $(am__objects_1) gnome_panel-main.$(OBJEXT) \ gnome_panel-panel-widget.$(OBJEXT) \ gnome_panel-button-widget.$(OBJEXT) \ gnome_panel-xstuff.$(OBJEXT) \ @@ -114,8 +116,8 @@ gnome_panel-panel-object-loader.$(OBJEXT) \ gnome_panel-panel-user-menu.$(OBJEXT) \ gnome_panel-panel-applet-info.$(OBJEXT) -am__objects_2 = -am_gnome_panel_OBJECTS = $(am__objects_1) $(am__objects_2) +am__objects_3 = +am_gnome_panel_OBJECTS = $(am__objects_2) $(am__objects_3) gnome_panel_OBJECTS = $(am_gnome_panel_OBJECTS) gnome_panel_DEPENDENCIES = \ $(top_builddir)/gnome-panel/libegg/libegg.la \ @@ -126,11 +128,13 @@ gnome_panel_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(gnome_panel_LDFLAGS) $(LDFLAGS) -o $@ -am_panel_test_applets_OBJECTS = \ +am__objects_4 = \ + panel_test_applets-panel-test-applets-resources.$(OBJEXT) \ + panel_test_applets-panel-marshal.$(OBJEXT) +am_panel_test_applets_OBJECTS = $(am__objects_4) \ panel_test_applets-panel-modules.$(OBJEXT) \ panel_test_applets-panel-applet-info.$(OBJEXT) \ panel_test_applets-panel-applets-manager.$(OBJEXT) \ - panel_test_applets-panel-marshal.$(OBJEXT) \ panel_test_applets-panel-test-applets.$(OBJEXT) panel_test_applets_OBJECTS = $(am_panel_test_applets_OBJECTS) panel_test_applets_DEPENDENCIES = $(top_builddir)/gnome-panel/libpanel-applet-private/libpanel-applet-private-mini.la \ @@ -199,7 +203,7 @@ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive -DATA = $(desktop_DATA) $(ui_DATA) +DATA = $(desktop_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ @@ -277,6 +281,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ @@ -454,16 +459,11 @@ -I$(top_builddir)/gnome-panel/libpanel-util \ -DPANELDATADIR=\""$(datadir)/gnome-panel"\" \ -DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ - -DBUILDERDIR=\""$(uidir)"\" \ - -DICONDIR=\""$(datadir)/gnome-panel/pixmaps"\" \ $(DISABLE_DEPRECATED_CFLAGS) AM_CFLAGS = $(WARN_CFLAGS) panel_sources = \ - panel-typebuiltins.c \ - panel-typebuiltins.h \ - panel-marshal.c \ - panel-marshal.h \ + $(gnome_panel_BUILT_SOURCES) \ main.c \ panel-widget.c \ button-widget.c \ @@ -597,10 +597,10 @@ $(X_LIBS) panel_test_applets_SOURCES = \ - panel-modules.c \ - panel-applet-info.c \ - panel-applets-manager.c \ - panel-marshal.c \ + $(panel_test_applets_BUILT_SOURCES) \ + panel-modules.c \ + panel-applet-info.c \ + panel-applets-manager.c \ panel-test-applets.c panel_test_applets_CPPFLAGS = \ @@ -619,23 +619,37 @@ $(top_srcdir)/gnome-panel/panel-enums-gsettings.h \ $(top_srcdir)/gnome-panel/panel-types.h -BUILT_SOURCES = \ +gnome_panel_BUILT_SOURCES = \ panel-typebuiltins.c \ panel-typebuiltins.h \ + panel-resources.c \ + panel-resources.h \ + panel-marshal.c \ + panel-marshal.h + +panel_test_applets_BUILT_SOURCES = \ + panel-test-applets-resources.c \ + panel-test-applets-resources.h \ panel-marshal.c \ panel-marshal.h -uidir = $(datadir)/gnome-panel/ui -ui_DATA = \ +BUILT_SOURCES = \ + $(gnome_panel_BUILT_SOURCES) \ + $(panel_test_applets_BUILT_SOURCES) + +ui_FILES = \ panel-properties-dialog.ui \ - panel-run-dialog.ui \ - panel-test-applets.ui + panel-run-dialog.ui +uitest_FILES = panel-test-applets.ui desktopdir = $(datadir)/applications desktop_in_files = gnome-panel.desktop.in desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) EXTRA_DIST = \ - $(ui_DATA) \ + $(ui_FILES) \ + panel.gresource.xml \ + $(uitest_FILES) \ + panel-test-applets.gresource.xml \ nothing.cP \ nothing.h \ panel-marshal.list \ @@ -812,6 +826,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gnome_panel-panel-object-loader.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gnome_panel-panel-properties-dialog.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gnome_panel-panel-recent.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gnome_panel-panel-resources.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gnome_panel-panel-run-dialog.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gnome_panel-panel-separator.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gnome_panel-panel-session.Po@am__quote@ @@ -833,6 +848,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/panel_test_applets-panel-applets-manager.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/panel_test_applets-panel-marshal.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/panel_test_applets-panel-modules.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/panel_test_applets-panel-test-applets-resources.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/panel_test_applets-panel-test-applets.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xstuff.Po@am__quote@ @@ -876,6 +892,22 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_panel_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gnome_panel-panel-typebuiltins.obj `if test -f 'panel-typebuiltins.c'; then $(CYGPATH_W) 'panel-typebuiltins.c'; else $(CYGPATH_W) '$(srcdir)/panel-typebuiltins.c'; fi` +gnome_panel-panel-resources.o: panel-resources.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_panel_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gnome_panel-panel-resources.o -MD -MP -MF $(DEPDIR)/gnome_panel-panel-resources.Tpo -c -o gnome_panel-panel-resources.o `test -f 'panel-resources.c' || echo '$(srcdir)/'`panel-resources.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_panel-panel-resources.Tpo $(DEPDIR)/gnome_panel-panel-resources.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='panel-resources.c' object='gnome_panel-panel-resources.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_panel_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gnome_panel-panel-resources.o `test -f 'panel-resources.c' || echo '$(srcdir)/'`panel-resources.c + +gnome_panel-panel-resources.obj: panel-resources.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_panel_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gnome_panel-panel-resources.obj -MD -MP -MF $(DEPDIR)/gnome_panel-panel-resources.Tpo -c -o gnome_panel-panel-resources.obj `if test -f 'panel-resources.c'; then $(CYGPATH_W) 'panel-resources.c'; else $(CYGPATH_W) '$(srcdir)/panel-resources.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_panel-panel-resources.Tpo $(DEPDIR)/gnome_panel-panel-resources.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='panel-resources.c' object='gnome_panel-panel-resources.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_panel_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gnome_panel-panel-resources.obj `if test -f 'panel-resources.c'; then $(CYGPATH_W) 'panel-resources.c'; else $(CYGPATH_W) '$(srcdir)/panel-resources.c'; fi` + gnome_panel-panel-marshal.o: panel-marshal.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_panel_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gnome_panel-panel-marshal.o -MD -MP -MF $(DEPDIR)/gnome_panel-panel-marshal.Tpo -c -o gnome_panel-panel-marshal.o `test -f 'panel-marshal.c' || echo '$(srcdir)/'`panel-marshal.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gnome_panel-panel-marshal.Tpo $(DEPDIR)/gnome_panel-panel-marshal.Po @@ -1612,6 +1644,38 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gnome_panel_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gnome_panel-panel-applet-info.obj `if test -f 'panel-applet-info.c'; then $(CYGPATH_W) 'panel-applet-info.c'; else $(CYGPATH_W) '$(srcdir)/panel-applet-info.c'; fi` +panel_test_applets-panel-test-applets-resources.o: panel-test-applets-resources.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(panel_test_applets_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT panel_test_applets-panel-test-applets-resources.o -MD -MP -MF $(DEPDIR)/panel_test_applets-panel-test-applets-resources.Tpo -c -o panel_test_applets-panel-test-applets-resources.o `test -f 'panel-test-applets-resources.c' || echo '$(srcdir)/'`panel-test-applets-resources.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/panel_test_applets-panel-test-applets-resources.Tpo $(DEPDIR)/panel_test_applets-panel-test-applets-resources.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='panel-test-applets-resources.c' object='panel_test_applets-panel-test-applets-resources.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(panel_test_applets_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o panel_test_applets-panel-test-applets-resources.o `test -f 'panel-test-applets-resources.c' || echo '$(srcdir)/'`panel-test-applets-resources.c + +panel_test_applets-panel-test-applets-resources.obj: panel-test-applets-resources.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(panel_test_applets_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT panel_test_applets-panel-test-applets-resources.obj -MD -MP -MF $(DEPDIR)/panel_test_applets-panel-test-applets-resources.Tpo -c -o panel_test_applets-panel-test-applets-resources.obj `if test -f 'panel-test-applets-resources.c'; then $(CYGPATH_W) 'panel-test-applets-resources.c'; else $(CYGPATH_W) '$(srcdir)/panel-test-applets-resources.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/panel_test_applets-panel-test-applets-resources.Tpo $(DEPDIR)/panel_test_applets-panel-test-applets-resources.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='panel-test-applets-resources.c' object='panel_test_applets-panel-test-applets-resources.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(panel_test_applets_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o panel_test_applets-panel-test-applets-resources.obj `if test -f 'panel-test-applets-resources.c'; then $(CYGPATH_W) 'panel-test-applets-resources.c'; else $(CYGPATH_W) '$(srcdir)/panel-test-applets-resources.c'; fi` + +panel_test_applets-panel-marshal.o: panel-marshal.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(panel_test_applets_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT panel_test_applets-panel-marshal.o -MD -MP -MF $(DEPDIR)/panel_test_applets-panel-marshal.Tpo -c -o panel_test_applets-panel-marshal.o `test -f 'panel-marshal.c' || echo '$(srcdir)/'`panel-marshal.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/panel_test_applets-panel-marshal.Tpo $(DEPDIR)/panel_test_applets-panel-marshal.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='panel-marshal.c' object='panel_test_applets-panel-marshal.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(panel_test_applets_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o panel_test_applets-panel-marshal.o `test -f 'panel-marshal.c' || echo '$(srcdir)/'`panel-marshal.c + +panel_test_applets-panel-marshal.obj: panel-marshal.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(panel_test_applets_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT panel_test_applets-panel-marshal.obj -MD -MP -MF $(DEPDIR)/panel_test_applets-panel-marshal.Tpo -c -o panel_test_applets-panel-marshal.obj `if test -f 'panel-marshal.c'; then $(CYGPATH_W) 'panel-marshal.c'; else $(CYGPATH_W) '$(srcdir)/panel-marshal.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/panel_test_applets-panel-marshal.Tpo $(DEPDIR)/panel_test_applets-panel-marshal.Po +@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='panel-marshal.c' object='panel_test_applets-panel-marshal.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(panel_test_applets_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o panel_test_applets-panel-marshal.obj `if test -f 'panel-marshal.c'; then $(CYGPATH_W) 'panel-marshal.c'; else $(CYGPATH_W) '$(srcdir)/panel-marshal.c'; fi` + panel_test_applets-panel-modules.o: panel-modules.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(panel_test_applets_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT panel_test_applets-panel-modules.o -MD -MP -MF $(DEPDIR)/panel_test_applets-panel-modules.Tpo -c -o panel_test_applets-panel-modules.o `test -f 'panel-modules.c' || echo '$(srcdir)/'`panel-modules.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/panel_test_applets-panel-modules.Tpo $(DEPDIR)/panel_test_applets-panel-modules.Po @@ -1660,22 +1724,6 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(panel_test_applets_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o panel_test_applets-panel-applets-manager.obj `if test -f 'panel-applets-manager.c'; then $(CYGPATH_W) 'panel-applets-manager.c'; else $(CYGPATH_W) '$(srcdir)/panel-applets-manager.c'; fi` -panel_test_applets-panel-marshal.o: panel-marshal.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(panel_test_applets_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT panel_test_applets-panel-marshal.o -MD -MP -MF $(DEPDIR)/panel_test_applets-panel-marshal.Tpo -c -o panel_test_applets-panel-marshal.o `test -f 'panel-marshal.c' || echo '$(srcdir)/'`panel-marshal.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/panel_test_applets-panel-marshal.Tpo $(DEPDIR)/panel_test_applets-panel-marshal.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='panel-marshal.c' object='panel_test_applets-panel-marshal.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(panel_test_applets_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o panel_test_applets-panel-marshal.o `test -f 'panel-marshal.c' || echo '$(srcdir)/'`panel-marshal.c - -panel_test_applets-panel-marshal.obj: panel-marshal.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(panel_test_applets_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT panel_test_applets-panel-marshal.obj -MD -MP -MF $(DEPDIR)/panel_test_applets-panel-marshal.Tpo -c -o panel_test_applets-panel-marshal.obj `if test -f 'panel-marshal.c'; then $(CYGPATH_W) 'panel-marshal.c'; else $(CYGPATH_W) '$(srcdir)/panel-marshal.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/panel_test_applets-panel-marshal.Tpo $(DEPDIR)/panel_test_applets-panel-marshal.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='panel-marshal.c' object='panel_test_applets-panel-marshal.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(panel_test_applets_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o panel_test_applets-panel-marshal.obj `if test -f 'panel-marshal.c'; then $(CYGPATH_W) 'panel-marshal.c'; else $(CYGPATH_W) '$(srcdir)/panel-marshal.c'; fi` - panel_test_applets-panel-test-applets.o: panel-test-applets.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(panel_test_applets_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT panel_test_applets-panel-test-applets.o -MD -MP -MF $(DEPDIR)/panel_test_applets-panel-test-applets.Tpo -c -o panel_test_applets-panel-test-applets.o `test -f 'panel-test-applets.c' || echo '$(srcdir)/'`panel-test-applets.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/panel_test_applets-panel-test-applets.Tpo $(DEPDIR)/panel_test_applets-panel-test-applets.Po @@ -1717,26 +1765,6 @@ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(desktopdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(desktopdir)" && rm -f $$files -install-uiDATA: $(ui_DATA) - @$(NORMAL_INSTALL) - test -z "$(uidir)" || $(MKDIR_P) "$(DESTDIR)$(uidir)" - @list='$(ui_DATA)'; test -n "$(uidir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(uidir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(uidir)" || exit $$?; \ - done - -uninstall-uiDATA: - @$(NORMAL_UNINSTALL) - @list='$(ui_DATA)'; test -n "$(uidir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(uidir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(uidir)" && rm -f $$files # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. @@ -1940,7 +1968,7 @@ all-am: Makefile $(PROGRAMS) $(SCRIPTS) $(DATA) installdirs: installdirs-recursive installdirs-am: - for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(uidir)"; do \ + for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(desktopdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: $(BUILT_SOURCES) @@ -1993,7 +2021,7 @@ info-am: -install-data-am: install-desktopDATA install-uiDATA +install-data-am: install-desktopDATA install-dvi: install-dvi-recursive @@ -2040,7 +2068,7 @@ ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-desktopDATA \ - uninstall-libexecSCRIPTS uninstall-uiDATA + uninstall-libexecSCRIPTS .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check \ ctags-recursive install install-am install-strip \ @@ -2056,13 +2084,13 @@ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am \ install-libexecSCRIPTS install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip install-uiDATA \ - installcheck installcheck-am installdirs installdirs-am \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-recursive uninstall uninstall-am \ uninstall-binPROGRAMS uninstall-desktopDATA \ - uninstall-libexecSCRIPTS uninstall-uiDATA + uninstall-libexecSCRIPTS gnome-panel-add: gnome-panel-add.in Makefile @@ -2107,6 +2135,18 @@ --eprod "GType @enum_name@_get_type (void);\n" \ $(panel_enum_headers) > $@ +panel-resources.c: panel.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies panel.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name panel $(srcdir)/$< + +panel-resources.h: panel.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies panel.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name panel $(srcdir)/$< + +panel-test-applets-resources.c: panel-test-applets.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies panel-test-applets.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name panel $(srcdir)/$< + +panel-test-applets-resources.h: panel-test-applets.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies panel-test-applets.gresource.xml) + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate --c-name panel $(srcdir)/$< + @INTLTOOL_DESKTOP_RULE@ dist-hook: diff -Nru gnome-panel-3.3.3/gnome-panel/nothing.cP gnome-panel-3.3.5/gnome-panel/nothing.cP --- gnome-panel-3.3.3/gnome-panel/nothing.cP 2011-02-03 11:07:18.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/nothing.cP 2012-02-02 14:25:57.000000000 +0000 @@ -166,10 +166,24 @@ gtk_main_do_event (event); } -static char * -get_phsh_file (void) +static GdkPixbuf * +get_phsh_pixbuf (void) { - return g_strdup_printf ("%s/%cand%c.png", ICONDIR, 'w', 'a'); + char *resource; + GdkPixbuf *pixbuf; + GInputStream *stream; + + resource = g_strdup_printf ("%s%cand%c.png", "/org/gnome/panel/anim/", 'w', 'a'); + stream = g_resources_open_stream (resource, 0, NULL); + g_free (resource); + + if (!stream) + return NULL; + + pixbuf = gdk_pixbuf_new_from_stream (stream, NULL, NULL); + g_object_unref (stream); + + return pixbuf; } static void @@ -284,21 +298,32 @@ check_screen (void) { GdkWindowAttr attributes; - char *phsh_file; + GdkPixbuf *phsh_pixbuf; + int width, height; cairo_surface_t *surface; + cairo_t *cr; int orient; int i; if (phsh.win != NULL) return; - phsh_file = get_phsh_file (); + phsh_pixbuf = get_phsh_pixbuf (); - if (phsh_file == NULL) + if (phsh_pixbuf == NULL) return; - surface = cairo_image_surface_create_from_png (phsh_file); - g_free (phsh_file); + width = gdk_pixbuf_get_width (phsh_pixbuf); + height = gdk_pixbuf_get_height (phsh_pixbuf); + + surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, width, height); + cr = cairo_create (surface); + gdk_cairo_set_source_pixbuf (cr, phsh_pixbuf, 0, 0); + cairo_rectangle (cr, 0, 0, width, height); + cairo_fill (cr); + cairo_destroy (cr); + + g_object_unref (phsh_pixbuf); if (cairo_surface_status(surface) != CAIRO_STATUS_SUCCESS) { cairo_surface_destroy (surface); diff -Nru gnome-panel-3.3.3/gnome-panel/panel-addto.c gnome-panel-3.3.5/gnome-panel/panel-addto.c --- gnome-panel-3.3.3/gnome-panel/panel-addto.c 2011-08-01 17:39:56.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/panel-addto.c 2012-02-02 14:25:57.000000000 +0000 @@ -1269,10 +1269,10 @@ g_signal_connect (dialog->addto_dialog, "destroy", G_CALLBACK (panel_addto_dialog_destroy), dialog); - inner_vbox = gtk_vbox_new (FALSE, 6); + inner_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); gtk_box_pack_start (GTK_BOX (dialog_vbox), inner_vbox, TRUE, TRUE, 0); - find_hbox = gtk_hbox_new (FALSE, 6); + find_hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); gtk_box_pack_start (GTK_BOX (inner_vbox), find_hbox, FALSE, FALSE, 0); dialog->label = gtk_label_new_with_mnemonic (""); diff -Nru gnome-panel-3.3.3/gnome-panel/panel-applet-frame.c gnome-panel-3.3.5/gnome-panel/panel-applet-frame.c --- gnome-panel-3.3.3/gnome-panel/panel-applet-frame.c 2011-06-27 20:29:42.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/panel-applet-frame.c 2012-02-02 10:36:00.000000000 +0000 @@ -234,6 +234,9 @@ GtkAllocation old_allocation; GtkAllocation widget_allocation; + frame = PANEL_APPLET_FRAME (widget); + bin = GTK_BIN (widget); + gtk_widget_get_allocation (widget, &widget_allocation); old_allocation.x = widget_allocation.x; @@ -241,9 +244,6 @@ old_allocation.width = widget_allocation.width; old_allocation.height = widget_allocation.height; - frame = PANEL_APPLET_FRAME (widget); - bin = GTK_BIN (widget); - if (!frame->priv->has_handle) { GTK_WIDGET_CLASS (panel_applet_frame_parent_class)->size_allocate (widget, allocation); @@ -253,8 +253,6 @@ return; } - window = gtk_widget_get_window (widget); - child = gtk_bin_get_child (bin); gtk_widget_set_allocation (widget, allocation); frame->priv->handle_rect.x = 0; @@ -297,6 +295,8 @@ new_allocation.width = MAX (1, new_allocation.width); new_allocation.height = MAX (1, new_allocation.height); + window = gtk_widget_get_window (widget); + /* If the child allocation changed, that means that the frame is drawn * in a new place, so we must redraw the entire widget. */ @@ -318,6 +318,7 @@ MAX (allocation->height - border_width * 2, 0)); } + child = gtk_bin_get_child (bin); if (child && gtk_widget_get_visible (child)) gtk_widget_size_allocate (child, &new_allocation); diff -Nru gnome-panel-3.3.3/gnome-panel/panel-ditem-editor.c gnome-panel-3.3.5/gnome-panel/panel-ditem-editor.c --- gnome-panel-3.3.3/gnome-panel/panel-ditem-editor.c 2011-06-27 20:22:20.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/panel-ditem-editor.c 2012-02-02 14:25:57.000000000 +0000 @@ -640,7 +640,7 @@ /* Command */ priv->command_label = label_new_with_mnemonic (""); - priv->command_hbox = gtk_hbox_new (FALSE, 12); + priv->command_hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12); gtk_widget_show (priv->command_hbox); priv->command_entry = gtk_entry_new (); diff -Nru gnome-panel-3.3.3/gnome-panel/panel-force-quit.c gnome-panel-3.3.5/gnome-panel/panel-force-quit.c --- gnome-panel-3.3.3/gnome-panel/panel-force-quit.c 2011-01-31 23:50:19.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/panel-force-quit.c 2012-02-02 14:25:57.000000000 +0000 @@ -63,7 +63,7 @@ gtk_container_add (GTK_CONTAINER (retval), frame); gtk_widget_show (frame); - vbox = gtk_vbox_new (FALSE, 0); + vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); gtk_container_set_border_width (GTK_CONTAINER (vbox), 8); gtk_container_add (GTK_CONTAINER (frame), vbox); gtk_widget_show (vbox); diff -Nru gnome-panel-3.3.3/gnome-panel/panel.gresource.xml gnome-panel-3.3.5/gnome-panel/panel.gresource.xml --- gnome-panel-3.3.3/gnome-panel/panel.gresource.xml 1970-01-01 00:00:00.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/panel.gresource.xml 2012-02-02 14:25:57.000000000 +0000 @@ -0,0 +1,8 @@ + + + + panel-properties-dialog.ui + panel-run-dialog.ui + ../applets/fish/wanda.png + + diff -Nru gnome-panel-3.3.3/gnome-panel/panel-properties-dialog.c gnome-panel-3.3.5/gnome-panel/panel-properties-dialog.c --- gnome-panel-3.3.3/gnome-panel/panel-properties-dialog.c 2011-03-28 21:08:42.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/panel-properties-dialog.c 2012-02-02 14:25:57.000000000 +0000 @@ -27,7 +27,6 @@ #include #include -#include #include #include #include @@ -793,7 +792,6 @@ { PanelPropertiesDialog *dialog; GtkBuilder *gui; - GError *error; if (!panel_properties_dialog_quark) panel_properties_dialog_quark = @@ -809,29 +807,9 @@ gui = gtk_builder_new (); gtk_builder_set_translation_domain (gui, GETTEXT_PACKAGE); - - error = NULL; - gtk_builder_add_from_file (gui, - BUILDERDIR "/panel-properties-dialog.ui", - &error); - - if (error) { - char *secondary; - - secondary = g_strdup_printf (_("Unable to load file '%s': %s."), - BUILDERDIR"/panel-properties-dialog.ui", - error->message); - panel_error_dialog (GTK_WINDOW (toplevel), - gtk_window_get_screen (GTK_WINDOW (toplevel)), - "cannot_display_properties_dialog", TRUE, - _("Could not display properties dialog"), - secondary); - g_free (secondary); - g_error_free (error); - g_object_unref (gui); - - return; - } + gtk_builder_add_from_resource (gui, + PANEL_RESOURCE_PATH "panel-properties-dialog.ui", + NULL); dialog = panel_properties_dialog_new (toplevel, gui); diff -Nru gnome-panel-3.3.3/gnome-panel/panel-run-dialog.c gnome-panel-3.3.5/gnome-panel/panel-run-dialog.c --- gnome-panel-3.3.3/gnome-panel/panel-run-dialog.c 2011-08-01 17:39:56.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/panel-run-dialog.c 2012-02-02 14:25:57.000000000 +0000 @@ -1869,7 +1869,6 @@ guint32 activate_time) { GtkBuilder *gui; - GError *error; if (panel_lockdown_get_disable_command_line_s ()) return; @@ -1884,28 +1883,9 @@ gui = gtk_builder_new (); gtk_builder_set_translation_domain (gui, GETTEXT_PACKAGE); - - error = NULL; - gtk_builder_add_from_file (gui, - BUILDERDIR "/panel-run-dialog.ui", - &error); - - if (error) { - char *secondary; - - secondary = g_strdup_printf (_("Unable to load file '%s': %s."), - BUILDERDIR"/panel-run-dialog.ui", - error->message); - panel_error_dialog (NULL, screen, "cannot_display_run_dialog", - TRUE, - _("Could not display run dialog"), - secondary); - g_free (secondary); - g_error_free (error); - g_object_unref (gui); - - return; - } + gtk_builder_add_from_resource (gui, + PANEL_RESOURCE_PATH "panel-run-dialog.ui", + NULL); static_dialog = panel_run_dialog_new (screen, gui, activate_time); diff -Nru gnome-panel-3.3.3/gnome-panel/panel-schemas.h gnome-panel-3.3.5/gnome-panel/panel-schemas.h --- gnome-panel-3.3.3/gnome-panel/panel-schemas.h 2011-04-01 10:39:58.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/panel-schemas.h 2012-02-02 14:25:57.000000000 +0000 @@ -1,6 +1,8 @@ #ifndef __PANEL_SCHEMAS_H__ #define __PANEL_SCHEMAS_H__ +#define PANEL_RESOURCE_PATH "/org/gnome/panel/" + #define PANEL_GENERAL_SCHEMA "org.gnome.gnome-panel.general" #define PANEL_GENERAL_CONFIRM_PANEL_REMOVAL_KEY "confirm-panel-removal" #define PANEL_GENERAL_ENABLE_TOOLTIPS_KEY "enable-tooltips" diff -Nru gnome-panel-3.3.3/gnome-panel/panel-test-applets.c gnome-panel-3.3.5/gnome-panel/panel-test-applets.c --- gnome-panel-3.3.3/gnome-panel/panel-test-applets.c 2011-02-17 12:00:31.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/panel-test-applets.c 2012-02-02 14:25:57.000000000 +0000 @@ -312,7 +312,6 @@ main (int argc, char **argv) { GtkBuilder *builder; - char *uifile; char *applets_dir; GError *error; @@ -351,17 +350,7 @@ builder = gtk_builder_new (); gtk_builder_set_translation_domain (builder, GETTEXT_PACKAGE); - - uifile = BUILDERDIR "/panel-test-applets.ui"; - gtk_builder_add_from_file (builder, uifile, &error); - - if (error) { - g_warning ("Error loading \"%s\": %s", uifile, error->message); - g_error_free (error); - panel_cleanup_do (); - - return 1; - } + gtk_builder_add_from_resource (builder, "/org/gnome/panel/test/panel-test-applets.ui", NULL); gtk_builder_connect_signals (builder, NULL); diff -Nru gnome-panel-3.3.3/gnome-panel/panel-test-applets.gresource.xml gnome-panel-3.3.5/gnome-panel/panel-test-applets.gresource.xml --- gnome-panel-3.3.3/gnome-panel/panel-test-applets.gresource.xml 1970-01-01 00:00:00.000000000 +0000 +++ gnome-panel-3.3.5/gnome-panel/panel-test-applets.gresource.xml 2012-02-02 14:25:57.000000000 +0000 @@ -0,0 +1,6 @@ + + + + panel-test-applets.ui + + diff -Nru gnome-panel-3.3.3/help/clock/ja/clock.xml gnome-panel-3.3.5/help/clock/ja/clock.xml --- gnome-panel-3.3.3/help/clock/ja/clock.xml 2011-12-20 08:18:30.000000000 +0000 +++ gnome-panel-3.3.5/help/clock/ja/clock.xml 2012-02-06 12:17:33.000000000 +0000 @@ -52,9 +52,9 @@ -変更不可部分、表カバーテキストおよび裏カバーテキストを除いて、この ドキュメントをGNUフリー文書利用許諾契約書(GFDL)第1.1版およびそれ以 降の版に基づいて複写、再配布、改変することを許諾します。GFDLの複写 はこのリンクから、もしく はこのマニュアルと一緒に配布されるCOPYING-DOCSの中から入手できます。 -このマニュアルは、GFDLに基づいて配布されるGNOMEドキュメントの収集 物の一部です。もしこのマニュアルを収集物から分離して配布したい場合 は、許諾契約書第6章に記述されているように、ドキュメントに許諾契約 書の複写を加えなければなりません。 -製品やサービスを区別するために企業によって利用されている名称の多 くは商標です。これらの名称がGNOMEドキュメンテーションに現れた場合 で、GNOMEドキュメンテーションプロジェクトのメンバーが商標と認識し ている場合、これらの名前は大文字あるいは頭文字を大文字で記述して います。 +変更不可部分、表カバーテキストおよび裏カバーテキストを除いて、このドキュメントをGNUフリー文書利用許諾契約書(GFDL)第1.1版およびそれ以降の版に基づいて複写、再配布、改変することを許諾します。GFDLの複写はこのリンクから、もしくはこのマニュアルと一緒に配布されるCOPYING-DOCSの中から入手できます。 +このマニュアルは、GFDLに基づいて配布されるGNOMEドキュメントの収集物の一部です。もしこのマニュアルを収集物から分離して配布したい場合は、許諾契約書第6章に記述されているように、ドキュメントに許諾契約書の複写を加えなければなりません。 +製品やサービスを区別するために企業によって利用されている名称の多くは商標です。これらの名称がGNOMEドキュメンテーションに現れた場合で、GNOMEドキュメンテーションプロジェクトのメンバーが商標と認識している場合、これらの名前は大文字あるいは頭文字を大文字で記述しています。 DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: DOCUMENT IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND @@ -186,14 +186,14 @@ - このマニュアルは、時計アプレット 第2.5.3.1版について 説明しています。 + このマニュアルは、時計アプレット 第2.5.3.1版について説明しています。 フィードバック - この時計アプレットやマニュアルについてのバグレポートや提案は、GNOMEフィー ドバックページを参照してください。 + この時計アプレットやマニュアルについてのバグレポートや提案は、GNOMEフィードバックページを参照してください。 - 時計アプレットは日付と時刻を表示し、クリックするとカレンダを表示します。時計は、秒の表示や12時制または24時制を切り替える事ができます。 + 時計アプレットは日付と時刻を表示し、クリックするとカレンダーを表示します。時計は、秒の表示や12時制または24時制を切り替える事ができます。 @@ -220,7 +220,7 @@ -時計アプレットは日付と時刻を表示し、クリックするとカレンダを表示します。時計は、秒の表示や12時制または24時制を切り替える事ができます。 +時計アプレットは日付と時刻を表示し、クリックするとカレンダーを表示します。時計は、秒の表示や12時制または24時制を切り替える事ができます。 @@ -235,7 +235,7 @@ パネルへ追加を選択します。 - パネルへ追加ダイアログの項目の一覧をスクロールダウンし、 時計を選択します。 + パネルへ追加ダイアログの項目の一覧をスクロールダウンし、時計を選択します。 追加をクリックします。 @@ -249,17 +249,17 @@ 使い方 - カレンダを表示するには - アプレット上でクリックすると今月の小さなカレンダが開きます。カレンダを閉じるには、再度、パネルの中のアップレットをクリックします。 + カレンダーを表示するには + アプレット上でクリックすると今月の小さなカレンダーが開きます。カレンダーを閉じるには、再度、パネルの中のアプレットをクリックします。 - カレンダの年や月の両側にある矢印をクリックすることによって表示する月を変更できます。 + カレンダーの年や月の両側にある矢印をクリックすることによって表示する月を変更できます。 - カレンダの日付をダブルクリックするとグループウェアアプリケーションEvolutionを起動できます。 + カレンダーの日付をダブルクリックするとグループウェアアプリケーションEvolutionを起動できます。 他のアプリケーションに日付や時刻を挿入するには -時計アプレットはシステムクロック から時刻を取得します。 +時計アプレットはシステムクロックから時刻を取得します。 時刻や日付を時計アプレットから他のアプリケーションに挿入するには、以下の手順を踏みます: @@ -284,7 +284,7 @@ 時刻・日付を挿入したいアプリケーション上の位置を選択します。 - 編集貼り付け と選択するか、マウスの中ボタンをクリックすることで、時刻・日 付を挿入することができます。 + 編集貼り付け と選択するか、マウスの中ボタンをクリックすることで、時刻・日付を挿入することができます。 diff -Nru gnome-panel-3.3.3/help/clock/ja/ja.po gnome-panel-3.3.5/help/clock/ja/ja.po --- gnome-panel-3.3.3/help/clock/ja/ja.po 2011-12-20 08:18:30.000000000 +0000 +++ gnome-panel-3.3.5/help/clock/ja/ja.po 2012-02-06 12:17:34.000000000 +0000 @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: clock applet docs gnome-2-30\n" -"POT-Creation-Date: 2010-09-11 11:44+0000\n" -"PO-Revision-Date: 2010-09-12 03:09+0900\n" -"Last-Translator: Yasumichi Akahoshi \n" +"POT-Creation-Date: 2012-01-05 16:11+0000\n" +"PO-Revision-Date: 2012-01-06 21:24+0900\n" +"Last-Translator: OKANO Takayoshi kano@na.rim.or.jp>\n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +20,11 @@ "of the GFDL at this link or " "in the file COPYING-DOCS distributed with this manual." msgstr "" -"変更不可部分、表カバーテキストおよび裏カバーテキストを除いて、この ドキュメン" -"トをGNUフリー文書利用許諾契約書(GFDL)第1.1版およびそれ以 降の版に基づいて複" -"写、再配布、改変することを許諾します。GFDLの複写 はこのリンクから、もしく はこのマニュアルと一緒に配布され" -"るCOPYING-DOCSの中から入手できます。" +"変更不可部分、表カバーテキストおよび裏カバーテキストを除いて、このドキュメン" +"トをGNUフリー文書利用許諾契約書(GFDL)第1.1版およびそれ以降の版に基づいて複" +"写、再配布、改変することを許諾します。GFDLの複写はこのリンクから、もしくはこのマニュアルと一緒に配布される" +"COPYING-DOCSの中から入手できます。" #: C/legal.xml:12(para) C/clock.xml:12(para) msgid "" @@ -33,9 +33,9 @@ "you can do so by adding a copy of the license to the document, as described " "in section 6 of the license." msgstr "" -"このマニュアルは、GFDLに基づいて配布されるGNOMEドキュメントの収集 物の一部で" -"す。もしこのマニュアルを収集物から分離して配布したい場合 は、許諾契約書第6章" -"に記述されているように、ドキュメントに許諾契約 書の複写を加えなければなりませ" +"このマニュアルは、GFDLに基づいて配布されるGNOMEドキュメントの収集物の一部で" +"す。もしこのマニュアルを収集物から分離して配布したい場合は、許諾契約書第6章に" +"記述されているように、ドキュメントに許諾契約書の複写を加えなければなりませ" "ん。" #: C/legal.xml:18(para) C/clock.xml:18(para) @@ -46,10 +46,10 @@ "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" -"製品やサービスを区別するために企業によって利用されている名称の多 くは商標で" -"す。これらの名称がGNOMEドキュメンテーションに現れた場合 で、GNOMEドキュメン" -"テーションプロジェクトのメンバーが商標と認識し ている場合、これらの名前は大文" -"字あるいは頭文字を大文字で記述して います。" +"製品やサービスを区別するために企業によって利用されている名称の多くは商標で" +"す。これらの名称がGNOMEドキュメンテーションに現れた場合で、GNOMEドキュメン" +"テーションプロジェクトのメンバーが商標と認識している場合、これらの名前は大文" +"字あるいは頭文字を大文字で記述しています。" #: C/legal.xml:29(para) C/clock.xml:29(para) msgid "" @@ -275,7 +275,7 @@ #: C/clock.xml:177(releaseinfo) msgid "This manual describes version 2.5.3.1 of the Clock applet." -msgstr "このマニュアルは、時計アプレット 第2.5.3.1版について 説明しています。" +msgstr "このマニュアルは、時計アプレット 第2.5.3.1版について説明しています。" #: C/clock.xml:180(title) msgid "Feedback" @@ -288,7 +288,7 @@ "type=\"help\">GNOME Feedback Page." msgstr "" "この時計アプレットやマニュアルについてのバグレポートや提案は、GNOMEフィー ドバックページを参" +"\"ghelp:gnome-feedback\" type=\"help\">GNOMEフィードバックページを参" "照してください。" #. ==== End of Figure ======================================= @@ -299,8 +299,8 @@ "be customized to show seconds or a 12 or 24 hour clock." msgstr "" "時計アプレットは日付と時刻を表示し、クリックすると" -"カレンダを表示します。時計は、秒の表示や12時制また" -"は24時制を切り替える事ができます。" +"カレンダーを表示します。時計は、秒の表示や12時制ま" +"たは24時制を切り替える事ができます。" #: C/clock.xml:189(primary) msgid "Clock" @@ -339,8 +339,8 @@ "Scroll down the list of items in the Add to Panel " "dialog, then select Clock." msgstr "" -"パネルへ追加ダイアログの項目の一覧をスクロールダウン" -"し、 時計を選択します。" +"パネルへ追加ダイアログの項目の一覧をスクロールダウンし、" +"時計を選択します。" #: C/clock.xml:239(para) msgid "Click Add." @@ -352,7 +352,7 @@ #: C/clock.xml:252(title) msgid "To Show the Calendar" -msgstr "カレンダを表示するには" +msgstr "カレンダーを表示するには" #: C/clock.xml:253(para) msgid "" @@ -360,23 +360,23 @@ "close the calendar, click again on the part of the applet that is in the " "panel." msgstr "" -"アプレット上でクリックすると今月の小さなカレンダが開きます。カレンダを閉じる" -"には、再度、パネルの中のアップレットをクリックします。" +"アプレット上でクリックすると今月の小さなカレンダーが開きます。カレンダーを閉" +"じるには、再度、パネルの中のアプレットをクリックします。" #: C/clock.xml:255(para) msgid "" "You can change the month shown in the calendar by clicking the arrows to " "each side of the month and year text." msgstr "" -"カレンダの年や月の両側にある矢印をクリックすることによって表示する月を変更で" -"きます。" +"カレンダーの年や月の両側にある矢印をクリックすることによって表示する月を変更" +"できます。" #: C/clock.xml:257(para) msgid "" "Double-click a day in the calendar to launch the Evolution groupware application." msgstr "" -"カレンダの日付をダブルクリックするとグループウェアアプリケーション" +"カレンダーの日付をダブルクリックするとグループウェアアプリケーション" "Evolutionを起動できます。" #: C/clock.xml:261(title) @@ -388,8 +388,8 @@ "The Clock applet takes the time from the system " "clock." msgstr "" -"時計アプレットはシステムクロック から時刻を取得し" -"ます。" +"時計アプレットはシステムクロックから時刻を取得しま" +"す。" #: C/clock.xml:264(para) msgid "" @@ -426,7 +426,7 @@ "menuchoice> or middle-click to insert the item." msgstr "" "編集貼り付け と選択するか、マウスの中ボタンをクリックすることで、時刻・日 付を" +"menuchoice> と選択するか、マウスの中ボタンをクリックすることで、時刻・日付を" "挿入することができます。" #: C/clock.xml:302(title) @@ -680,14 +680,14 @@ #~ msgid "" #~ "Select this option to display Universal Coordinated Time, also known as " #~ "Greenwich Mean Time, in the applet." -#~ msgstr "グリニッジ標準時としても知られる、UTCをアプレット上に表示 します。" +#~ msgstr "グリニッジ標準時としても知られる、UTCをアプレット上に表示します。" #~ msgid "" #~ "To configure Clock, right-click on the applet, " #~ "then choose Preferences." #~ msgstr "" -#~ "時計アプレットを設定するには、ア プレットを右ク" -#~ "リックし、設定を選択し ます。" +#~ "時計アプレットを設定するには、アプレットを右ク" +#~ "リックし、設定を選択します。" #~ msgid "UNIX time" #~ msgstr "UNIX時間" diff -Nru gnome-panel-3.3.3/help/clock/ja/legal.xml gnome-panel-3.3.5/help/clock/ja/legal.xml --- gnome-panel-3.3.3/help/clock/ja/legal.xml 2011-12-20 08:18:30.000000000 +0000 +++ gnome-panel-3.3.5/help/clock/ja/legal.xml 2012-02-06 12:17:33.000000000 +0000 @@ -1,8 +1,8 @@ -変更不可部分、表カバーテキストおよび裏カバーテキストを除いて、この ドキュメントをGNUフリー文書利用許諾契約書(GFDL)第1.1版およびそれ以 降の版に基づいて複写、再配布、改変することを許諾します。GFDLの複写 はこのリンクから、もしく はこのマニュアルと一緒に配布されるCOPYING-DOCSの中から入手できます。 -このマニュアルは、GFDLに基づいて配布されるGNOMEドキュメントの収集 物の一部です。もしこのマニュアルを収集物から分離して配布したい場合 は、許諾契約書第6章に記述されているように、ドキュメントに許諾契約 書の複写を加えなければなりません。 -製品やサービスを区別するために企業によって利用されている名称の多 くは商標です。これらの名称がGNOMEドキュメンテーションに現れた場合 で、GNOMEドキュメンテーションプロジェクトのメンバーが商標と認識し ている場合、これらの名前は大文字あるいは頭文字を大文字で記述して います。 +変更不可部分、表カバーテキストおよび裏カバーテキストを除いて、このドキュメントをGNUフリー文書利用許諾契約書(GFDL)第1.1版およびそれ以降の版に基づいて複写、再配布、改変することを許諾します。GFDLの複写はこのリンクから、もしくはこのマニュアルと一緒に配布されるCOPYING-DOCSの中から入手できます。 +このマニュアルは、GFDLに基づいて配布されるGNOMEドキュメントの収集物の一部です。もしこのマニュアルを収集物から分離して配布したい場合は、許諾契約書第6章に記述されているように、ドキュメントに許諾契約書の複写を加えなければなりません。 +製品やサービスを区別するために企業によって利用されている名称の多くは商標です。これらの名称がGNOMEドキュメンテーションに現れた場合で、GNOMEドキュメンテーションプロジェクトのメンバーが商標と認識している場合、これらの名前は大文字あるいは頭文字を大文字で記述しています。 DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: DOCUMENT IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND diff -Nru gnome-panel-3.3.3/help/clock/Makefile.in gnome-panel-3.3.5/help/clock/Makefile.in --- gnome-panel-3.3.3/help/clock/Makefile.in 2011-12-20 08:16:06.000000000 +0000 +++ gnome-panel-3.3.5/help/clock/Makefile.in 2012-02-06 12:17:00.000000000 +0000 @@ -125,6 +125,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/help/fish/ca/ca.po gnome-panel-3.3.5/help/fish/ca/ca.po --- gnome-panel-3.3.3/help/fish/ca/ca.po 2011-12-20 08:18:33.000000000 +0000 +++ gnome-panel-3.3.5/help/fish/ca/ca.po 2012-02-06 12:17:34.000000000 +0000 @@ -1,269 +1,459 @@ +# +# Gil Forcada , 2012. +# msgid "" msgstr "" "Project-Id-Version: fish\n" -"POT-Creation-Date: 2007-07-01 10:38+0100\n" -"PO-Revision-Date: 2007-07-11 20:50+0100\n" -"Last-Translator: Joan Duran \n" +"POT-Creation-Date: 2011-12-20 08:24+0000\n" +"PO-Revision-Date: 2012-01-12 23:52+0100\n" +"Last-Translator: Gil Forcada \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: C/legal.xml:2(para) C/fish.xml:2(para) -msgid "Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any later version published by the Free Software Foundation with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy of the GFDL at this link or in the file COPYING-DOCS distributed with this manual." -msgstr "Teniu permís per a copiar, distribuir i/o modificar aquest document, sota els termes de la Llicència de documentació lliure GNU (GFDL), versió 1.1 o qualsevol versió publicada posteriorment per la Free Software Foundation, sense seccions invariants, sense texts de portada i sense texts de contraportada. Podeu trobar una còpia de la GFDL en aquest enllaç o en el fitxer COPYING-DOCS distribuït amb aquest manual." - -#: C/legal.xml:12(para) C/fish.xml:12(para) -msgid "This manual is part of a collection of GNOME manuals distributed under the GFDL. If you want to distribute this manual separately from the collection, you can do so by adding a copy of the license to the manual, as described in section 6 of the license." -msgstr "Aquest manual forma part d'una col·lecció de manuals del GNOME distribuïts sota la GFDL. Si voleu distribuir aquest manual independentment de la col·lecció, podeu fer-ho afegint una còpia de la llicència al manual, tal com es descriu a la secció 6 de la llicència." - -#: C/legal.xml:19(para) C/fish.xml:19(para) -msgid "Many of the names used by companies to distinguish their products and services are claimed as trademarks. Where those names appear in any GNOME documentation, and the members of the GNOME Documentation Project are made aware of those trademarks, then the names are in capital letters or initial capital letters." -msgstr "Molts dels noms que les empreses utilitzen per a distingir els seus productes i serveis es consideren marques comercials. Quan aquests noms apareguin en qualsevol documentació del GNOME, si els membres del Projecte de documentació del GNOME han estat avisats pel que fa a les marques, els noms apareixeran en majúscules o amb les inicials en majúscules." - -#: C/legal.xml:35(para) C/fish.xml:35(para) -msgid "DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" -msgstr "EL DOCUMENT S'OFEREIX «TAL COM ÉS», SENSE CAP TIPUS DE GARANTIA, NI EXPLÍCITA NI IMPLÍCITA; AIXÒ INCLOU, SENSE LIMITAR-S'HI, LES GARANTIES QUE EL DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT NO TINGUI DEFECTES, SIGUI COMERCIALITZABLE, SIGUI ADEQUAT PER A UN ÚS CONCRET O NO INFRINGEIXI CAP LLEI. TOT EL RISC PEL QUE FA A LA QUALITAT, EXACTITUD I RENDIMENT DEL DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT ÉS VOSTRE. EN CAS QUE EL DOCUMENT RESULTÉS DEFECTUÓS EN QUALSEVOL ASPECTE, VÓS (NO PAS L'ESCRIPTOR INICIAL, L'AUTOR O CAP ALTRE COL·LABORADOR) ASSUMIU TOT EL COST DE MANTENIMENT, REPARACIÓ O CORRECCIÓ. AQUESTA RENÚNCIA DE GARANTIA CONSTITUEIX UNA PART ESSENCIAL D'AQUESTA LLICÈNCIA. NO S'AUTORITZA L'ÚS DE CAP DOCUMENT O VERSIÓ MODIFICADA DEL DOCUMENT EXCEPTE SOTA AQUESTA RENÚNCIA DE GARANTIA; I " - -#: C/legal.xml:55(para) C/fish.xml:55(para) -msgid "UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES." -msgstr "EN CAP CAS I SOTA CAP INTERPRETACIÓ LEGAL, JA SIGUI PER AGREUJAMENT (INCLOENT-HI LA NEGLIGÈNCIA), CONTRACTE O ALTRE CAS, L'AUTOR, L'ESCRIPTOR ORIGINAL, QUALSEVOL DELS COL·LABORADORS O DISTRIBUÏDORS DEL DOCUMENT O UNA VERSIÓ MODIFICADA DEL DOCUMENT NI CAP PROVEÏDOR D'AQUESTES PARTS NO SERAN RESPONSABLES DAVANT DE NINGÚ PER CAP DANY DIRECTE, INDIRECTE, ESPECIAL, ACCIDENTAL O CONSECUTIU DE QUALSEVOL TIPUS; AIXÒ INCLOU, SENSE LIMITAR-S'HI, ELS DANYS PER PÈRDUA DE CLIENTS, INTERRUPCIONS DE LA FEINA, FALLADA O MALFUNCIONAMENT DE L'ORDINADOR, O QUALSEVOL ALTRA PÈRDUA O DANY RELACIONAT AMB L'ÚS DEL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT, FINS I TOT SI S'HA INFORMAT AQUESTA PART DE LA POSSIBILITAT D'AQUESTS DANYS." - -#: C/legal.xml:28(para) C/fish.xml:28(para) -msgid "DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " -msgstr "EL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT S'OFEREIXEN SOTA ELS TERMES DE LA LLICÈNCIA DE DOCUMENTACIÓ LLIURE DE GNU, TENINT EN COMPTE QUE: " +#: C/legal.xml:2(para) C/fish.xml:2(para) +msgid "" +"Permission is granted to copy, distribute and/or modify this document under " +"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " +"later version published by the Free Software Foundation with no Invariant " +"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " +"of the GFDL at this link or " +"in the file COPYING-DOCS distributed with this manual." +msgstr "" +"Teniu permís per a copiar, distribuir i/o modificar aquest document, sota " +"els termes de la Llicència de documentació lliure GNU (GFDL), versió 1.1 o " +"qualsevol versió publicada posteriorment per la Free Software Foundation, " +"sense seccions invariants, sense texts de portada i sense texts de " +"contraportada. Podeu trobar una còpia de la GFDL en aquest enllaç o en el fitxer COPYING-DOCS distribuït " +"amb aquest manual." + +#: C/legal.xml:12(para) C/fish.xml:12(para) +msgid "" +"This manual is part of a collection of GNOME manuals distributed under the " +"GFDL. If you want to distribute this manual separately from the collection, " +"you can do so by adding a copy of the license to the manual, as described in " +"section 6 of the license." +msgstr "" +"Aquest manual forma part d'una col·lecció de manuals del GNOME distribuïts " +"sota la GFDL. Si voleu distribuir aquest manual independentment de la " +"col·lecció, podeu fer-ho afegint una còpia de la llicència al manual, tal " +"com es descriu a la secció 6 de la llicència." + +#: C/legal.xml:19(para) C/fish.xml:19(para) +msgid "" +"Many of the names used by companies to distinguish their products and " +"services are claimed as trademarks. Where those names appear in any GNOME " +"documentation, and the members of the GNOME Documentation Project are made " +"aware of those trademarks, then the names are in capital letters or initial " +"capital letters." +msgstr "" +"Molts dels noms que les empreses utilitzen per a distingir els seus " +"productes i serveis es consideren marques comercials. Quan aquests noms " +"apareguin en qualsevol documentació del GNOME, si els membres del Projecte " +"de documentació del GNOME han estat avisats pel que fa a les marques, els " +"noms apareixeran en majúscules o amb les inicials en majúscules." + +#: C/legal.xml:35(para) C/fish.xml:35(para) +msgid "" +"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " +"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " +"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " +"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " +"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " +"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " +"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " +"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " +"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " +"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " +"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" +msgstr "" +"EL DOCUMENT S'OFEREIX «TAL COM ÉS», SENSE CAP TIPUS DE GARANTIA, NI " +"EXPLÍCITA NI IMPLÍCITA; AIXÒ INCLOU, SENSE LIMITAR-S'HI, LES GARANTIES QUE " +"EL DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT NO TINGUI DEFECTES, SIGUI " +"COMERCIALITZABLE, SIGUI ADEQUAT PER A UN ÚS CONCRET O NO INFRINGEIXI CAP " +"LLEI. TOT EL RISC PEL QUE FA A LA QUALITAT, EXACTITUD I RENDIMENT DEL " +"DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT ÉS VOSTRE. EN CAS QUE EL " +"DOCUMENT RESULTÉS DEFECTUÓS EN QUALSEVOL ASPECTE, VÓS (NO PAS L'ESCRIPTOR " +"INICIAL, L'AUTOR O CAP ALTRE COL·LABORADOR) ASSUMIU TOT EL COST DE " +"MANTENIMENT, REPARACIÓ O CORRECCIÓ. AQUESTA RENÚNCIA DE GARANTIA CONSTITUEIX " +"UNA PART ESSENCIAL D'AQUESTA LLICÈNCIA. NO S'AUTORITZA L'ÚS DE CAP DOCUMENT " +"O VERSIÓ MODIFICADA DEL DOCUMENT EXCEPTE SOTA AQUESTA RENÚNCIA DE GARANTIA; " +"I " + +#: C/legal.xml:55(para) C/fish.xml:55(para) +msgid "" +"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " +"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " +"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " +"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " +"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " +"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " +"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " +"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " +"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " +"POSSIBILITY OF SUCH DAMAGES." +msgstr "" +"EN CAP CAS I SOTA CAP INTERPRETACIÓ LEGAL, JA SIGUI PER AGREUJAMENT " +"(INCLOENT-HI LA NEGLIGÈNCIA), CONTRACTE O ALTRE CAS, L'AUTOR, L'ESCRIPTOR " +"ORIGINAL, QUALSEVOL DELS COL·LABORADORS O DISTRIBUÏDORS DEL DOCUMENT O UNA " +"VERSIÓ MODIFICADA DEL DOCUMENT NI CAP PROVEÏDOR D'AQUESTES PARTS NO SERAN " +"RESPONSABLES DAVANT DE NINGÚ PER CAP DANY DIRECTE, INDIRECTE, ESPECIAL, " +"ACCIDENTAL O CONSECUTIU DE QUALSEVOL TIPUS; AIXÒ INCLOU, SENSE LIMITAR-S'HI, " +"ELS DANYS PER PÈRDUA DE CLIENTS, INTERRUPCIONS DE LA FEINA, FALLADA O " +"MALFUNCIONAMENT DE L'ORDINADOR, O QUALSEVOL ALTRA PÈRDUA O DANY RELACIONAT " +"AMB L'ÚS DEL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT, FINS I TOT SI " +"S'HA INFORMAT AQUESTA PART DE LA POSSIBILITAT D'AQUESTS DANYS." + +#: C/legal.xml:28(para) C/fish.xml:28(para) +msgid "" +"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " +"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " +"" +msgstr "" +"EL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT S'OFEREIXEN SOTA ELS " +"TERMES DE LA LLICÈNCIA DE DOCUMENTACIÓ LLIURE DE GNU, TENINT EN COMPTE QUE: " +"" #. When image changes, this message will be marked fuzzy or untranslated for you. #. It doesn't matter what you translate it to: it's not used at all. -#: C/fish.xml:151(None) -msgid "@@image: 'figures/fish_applet.png'; md5=97c946f203eedce679f0ca29452fb437" -msgstr "@@image: 'figures/fish_applet.png'; md5=97c946f203eedce679f0ca29452fb437" +#: C/fish.xml:174(None) +msgid "" +"@@image: 'figures/fish_applet.png'; md5=97c946f203eedce679f0ca29452fb437" +msgstr "" +"@@image: 'figures/fish_applet.png'; md5=97c946f203eedce679f0ca29452fb437" -#: C/fish.xml:24(title) +#: C/fish.xml:24(title) msgid "Fish Manual" msgstr "Manual del Peix" -#: C/fish.xml:26(year) +#: C/fish.xml:26(year) +#| msgid "2002" +msgid "2009" +msgstr "2009" + +#: C/fish.xml:27(holder) +msgid "Paul Cutler" +msgstr "Paul Cutler" + +#: C/fish.xml:30(year) msgid "2002" msgstr "2002" -#: C/fish.xml:27(year) +#: C/fish.xml:31(year) msgid "2003" msgstr "2003" -#: C/fish.xml:28(holder) C/fish.xml:55(orgname) +#: C/fish.xml:32(holder) C/fish.xml:67(orgname) msgid "Sun Microsystems" msgstr "Sun Microsystems" -#: C/fish.xml:31(year) C/fish.xml:116(date) +#: C/fish.xml:35(year) C/fish.xml:139(date) msgid "2000" msgstr "2000" -#: C/fish.xml:32(holder) +#: C/fish.xml:36(holder) msgid "Telsa Gwynne" msgstr "Telsa Gwynne" -#: C/fish.xml:44(publishername) C/fish.xml:63(orgname) C/fish.xml:87(para) C/fish.xml:95(para) C/fish.xml:103(para) C/fish.xml:111(para) C/fish.xml:120(para) +#: C/fish.xml:48(publishername) C/fish.xml:59(orgname) C/fish.xml:75(orgname) +#: C/fish.xml:102(para) C/fish.xml:110(para) C/fish.xml:118(para) +#: C/fish.xml:126(para) C/fish.xml:134(para) C/fish.xml:143(para) msgid "GNOME Documentation Project" msgstr "Projecte de documentació del GNOME" -#: C/fish.xml:52(firstname) +#: C/fish.xml:56(firstname) +msgid "Paul" +msgstr "Paul" + +#: C/fish.xml:57(surname) +msgid "Cutler" +msgstr "Cutler" + +#: C/fish.xml:60(email) +msgid "pcutler@gnome.org" +msgstr "pcutler@gnome.org" + +#: C/fish.xml:64(firstname) msgid "Sun" msgstr "Sun" -#: C/fish.xml:53(surname) +#: C/fish.xml:65(surname) msgid "GNOME Documentation Team" msgstr "Equip de documentació del GNOME" -#: C/fish.xml:60(firstname) +#: C/fish.xml:72(firstname) msgid "Telsa" msgstr "Telsa" -#: C/fish.xml:61(surname) +#: C/fish.xml:73(surname) msgid "Gwynne" msgstr "Gwynne" -#: C/fish.xml:64(email) +#: C/fish.xml:76(email) msgid "hobbit@aloss.ukuu.org.uk" msgstr "hobbit@aloss.ukuu.org.uk" -#: C/fish.xml:83(revnumber) -msgid "Fish Applet Manual V2.3" -msgstr "Manual de la miniaplicació Peix v2.3" - -#: C/fish.xml:84(date) -msgid "September 2003" -msgstr "Setembre del 2003" +#: C/fish.xml:98(revnumber) +#| msgid "Fish Applet Manual V2.3" +msgid "Fish Applet Manual V2.5" +msgstr "Manual de la miniaplicació Peix v2.5" + +#: C/fish.xml:99(date) C/fish.xml:107(date) +msgid "June 2009" +msgstr "Juny de 2009" -#: C/fish.xml:86(para) C/fish.xml:94(para) C/fish.xml:102(para) C/fish.xml:110(para) +#: C/fish.xml:101(para) C/fish.xml:109(para) C/fish.xml:117(para) +#: C/fish.xml:125(para) C/fish.xml:133(para) msgid "Sun GNOME Documentation Team" msgstr "Equip de documentació del GNOME Sun" -#: C/fish.xml:91(revnumber) +#: C/fish.xml:106(revnumber) +#| msgid "Fish Applet Manual V2.3" +msgid "Fish Applet Manual V2.4" +msgstr "Manual de la miniaplicació Peix v2.4" + +#: C/fish.xml:114(revnumber) msgid "Fish Applet Manual V2.2" msgstr "Manual de la miniaplicació Peix v2.2" -#: C/fish.xml:92(date) +#: C/fish.xml:115(date) msgid "January 2003" msgstr "Gener del 2003" -#: C/fish.xml:99(revnumber) +#: C/fish.xml:122(revnumber) msgid "Fish Applet Manual V2.1" msgstr "Manual de la miniaplicació Peix v2.1" -#: C/fish.xml:100(date) +#: C/fish.xml:123(date) msgid "August 2002" msgstr "Agost del 2002" -#: C/fish.xml:107(revnumber) +#: C/fish.xml:130(revnumber) msgid "Fish Applet Manual V2.0" msgstr "Manual de la miniaplicació Peix v2.0" -#: C/fish.xml:108(date) +#: C/fish.xml:131(date) msgid "May 2002" msgstr "Maig del 2002" -#: C/fish.xml:115(revnumber) +#: C/fish.xml:138(revnumber) msgid "Fish Applet Manual" msgstr "Manual de la miniaplicació Peix" -#: C/fish.xml:118(para) +#: C/fish.xml:141(para) msgid "Telsa Gwynne hobbit@aloss.ukuu.org.uk" msgstr "Telsa Gwynne hobbit@aloss.ukuu.org.uk" -#: C/fish.xml:124(releaseinfo) +#: C/fish.xml:147(releaseinfo) msgid "This manual describes version 3.4.7.4ac19 of Fish." msgstr "Aquest manual descriu la versió 3.4.7.4ac19 del Peix." -#: C/fish.xml:127(title) +#: C/fish.xml:150(title) msgid "Feedback" msgstr "Comentaris" -#: C/fish.xml:128(para) -msgid "To report a bug or make a suggestion regarding the Fish applet or this manual, follow the directions in the GNOME Feedback Page." -msgstr "Per a informar d'un error o fer algun suggeriment sobre la miniaplicació Peix o d'aquest manual, seguiu les " -"indicacions a la Pàgina de comentaris del GNOME." - -#: C/fish.xml:134(para) -msgid "The Fish program displays an animated image in the panel and gives you your fortune when clicked." -msgstr "El programa Peix visualitza una imatge animada al quadre i us mostra una dita quan el cliqueu." +#: C/fish.xml:151(para) +msgid "" +"To report a bug or make a suggestion regarding the Fish applet or this " +"manual, follow the directions in the GNOME Feedback Page." +msgstr "" +"Per a informar d'un error o fer algun suggeriment sobre la miniaplicació " +"Peix o d'aquest manual, seguiu les indicacions a " +"la Pàgina de comentaris " +"del GNOME." + +#: C/fish.xml:157(para) +#| msgid "" +#| "The Fish program displays an animated image in the panel and gives you " +#| "your fortune when clicked." +msgid "" +"The Fish applet displays an animated image in the panel and gives you your " +"fortune when clicked." +msgstr "" +"El programa Peix visualitza una imatge animada al quadre i us mostra una " +"dita quan hi feu clic." -#: C/fish.xml:139(primary) +#: C/fish.xml:162(primary) msgid "Fish" msgstr "Peix" -#: C/fish.xml:145(title) +#: C/fish.xml:168(title) msgid "Introduction" msgstr "Introducció" -#: C/fish.xml:148(title) +#: C/fish.xml:171(title) msgid "Fish Applet" msgstr "Miniaplicació Peix" -#: C/fish.xml:154(phrase) +#: C/fish.xml:177(phrase) msgid "Shows Fish applet." msgstr "Mostra la miniaplicació Peix." #. ==== End of Figure ======================================= -#: C/fish.xml:160(para) -msgid "The Fish applet displays an animated fish in a panel. The fish gives you your fortune when clicked." -msgstr "La miniaplicació Peix mostra un peix animat en un quadre. El peix us diu una dita quan el cliqueu." - -#: C/fish.xml:162(para) -msgid "You can customize the image shown and the command that is run when it is clicked." -msgstr "Podeu personalitzar la imatge mostrada i l'ordre que s'executa quan s'hi clica." +#: C/fish.xml:183(para) +msgid "" +"The Fish applet displays an animated fish in the " +"panel. You can customize the fish's name and the program that is run when " +"the fish is clicked in the panel. By default, the program that is run when " +"the fish is clicked is Fortune, which displays a " +"usually comical random message from a database of quotations." +msgstr "" +"L'aplicació Peix mostra un peix animat al quadre. " +"Podeu personalitzar el nom del peix i el programa que s'executi quan es fa " +"clic al peix en el quadre. Per defecte s'executa el programa " +"Fortune que mostra un missatge aleatori, " +"normalment còmic, d'una base de dades de cites." + +#: C/fish.xml:188(para) +msgid "" +"You can customize the image shown and the command that is run when it is " +"clicked." +msgstr "" +"Podeu personalitzar la imatge mostrada i l'ordre que s'executa quan s'hi " +"clica." -#: C/fish.xml:164(title) +#: C/fish.xml:190(title) msgid "To Add Fish to a Panel" msgstr "Per a afegir el Peix al quadre" -#: C/fish.xml:165(para) +#: C/fish.xml:191(para) msgid "Perform the following steps:" msgstr "Realitzeu els següents passos:" -#: C/fish.xml:168(para) +#: C/fish.xml:194(para) msgid "Right-click on the panel." msgstr "Cliqueu el botó dret en el quadre." -#: C/fish.xml:173(para) +#: C/fish.xml:199(para) msgid "Choose Add to Panel." msgstr "Seleccioneu Afegeix al quadre." -#: C/fish.xml:178(para) -msgid "Scroll down the list of items in the Add to Panel dialog, then select Fish." -msgstr "Desplaceu la llista d'elements cap avall en el diàleg Afegeix al quadre i seleccioneu el Peix." +#: C/fish.xml:204(para) +msgid "" +"Scroll down the list of items in the Add to Panel " +"dialog, then select Fish." +msgstr "" +"Desplaceu la llista d'elements cap avall en el diàleg Afegeix al " +"quadre i seleccioneu el Peix." -#: C/fish.xml:183(para) +#: C/fish.xml:209(para) msgid "Click Add." msgstr "Cliqueu Afegeix." -#: C/fish.xml:191(title) +#: C/fish.xml:217(title) msgid "Usage" msgstr "Utilització" -#: C/fish.xml:192(para) -msgid "Click on the applet to display the Wanda the Fish dialog. The dialog typically displays a fortune cookie. You can configure the applet to specify the command to run when you click on the applet. See for more information." -msgstr "Cliqueu en la miniaplicació per a mostrar el diàleg Wanda el Peix. El diàleg mostra una dita. Podeu configurar la miniaplicació per a especificar l'ordre a executar en clicar-hi. Per a més informació consulteu ." +#: C/fish.xml:218(para) +msgid "" +"Click on the applet to display the Wanda the Fish " +"dialog. The dialog typically displays a fortune cookie. You can configure " +"the applet to specify the command to run when you click on the applet. See " +" for more information." +msgstr "" +"Cliqueu en la miniaplicació per a mostrar el diàleg Wanda el Peix. El diàleg mostra una dita. Podeu configurar la miniaplicació per " +"a especificar l'ordre a executar en clicar-hi. Per a més informació " +"consulteu ." -#: C/fish.xml:197(title) +#: C/fish.xml:223(title) msgid "Preferences" msgstr "Preferències" -#: C/fish.xml:198(para) -msgid "To configure Fish, right-click on the Fish applet, then choose Preferences." -msgstr "Per a configurar el Peix, cliqueu el botó dret en la miniaplicació Peix i seleccioneu Preferències." +#: C/fish.xml:224(para) +msgid "" +"To configure Fish, right-click on the " +" Fish applet, then choose Preferences." +msgstr "" +"Per a configurar el Peix, cliqueu el botó dret en " +"la miniaplicació Peix i seleccioneu " +"Preferències." -#: C/fish.xml:202(guilabel) +#: C/fish.xml:228(guilabel) msgid "Name of fish" msgstr "Nom del peix" -#: C/fish.xml:204(para) +#: C/fish.xml:230(para) msgid "Use this text box to specify the name of the fish." msgstr "Utilitzeu el quadre de text per a especificar el nom del peix." -#: C/fish.xml:208(guilabel) +#: C/fish.xml:234(guilabel) msgid "Command to run when clicked" msgstr "Ordre a executar quan es fa clic" -#: C/fish.xml:210(para) -msgid "By default, Fish runs the fortune command when you click on the applet. Use this text box to specify an alternative command to run." -msgstr "Per defecte el Peix executa l'ordre fortune quan es fa clic en la miniaplicació. Utilitzeu el quadre de text per a especificar una ordre alternativa a executar." +#: C/fish.xml:236(para) +msgid "" +"By default, Fish runs the fortune command when you click on the applet. Use this text box to specify " +"an alternative command to run." +msgstr "" +"Per defecte el Peix executa l'ordre " +"fortune quan es fa clic en la miniaplicació. Utilitzeu el " +"quadre de text per a especificar una ordre alternativa a executar." -#: C/fish.xml:214(guilabel) +#: C/fish.xml:240(guilabel) msgid "File" msgstr "Fitxer" -#: C/fish.xml:216(para) -msgid "Use this field to select the image to display in the applet. You can select an image that is supplied with the applet or a personal image." -msgstr "Utilitzeu aquest camp per a seleccionar la imatge a mostrar en la miniaplicació. Podeu seleccionar una imatge subministrada amb la miniaplicació o una imatge personal." +#: C/fish.xml:242(para) +msgid "" +"Use this field to select the image to display in the applet. You can select " +"an image that is supplied with the applet or a personal image." +msgstr "" +"Utilitzeu aquest camp per a seleccionar la imatge a mostrar en la " +"miniaplicació. Podeu seleccionar una imatge subministrada amb la " +"miniaplicació o una imatge personal." -#: C/fish.xml:220(guilabel) +#: C/fish.xml:246(guilabel) msgid "Total frames in animation" msgstr "Fotogrames de l'animació" -#: C/fish.xml:222(para) +#: C/fish.xml:248(para) msgid "Use this spin box to specify the number of frames in the animation." -msgstr "Utilitzeu aquest quadre de selecció per a especificar el nombre de fotogrames de l'animació." +msgstr "" +"Utilitzeu aquest quadre de selecció per a especificar el nombre de " +"fotogrames de l'animació." -#: C/fish.xml:226(guilabel) +#: C/fish.xml:252(guilabel) msgid "Pause per frame" msgstr "Pausa per fotograma" -#: C/fish.xml:228(para) -msgid "Use this spin box to specify the pause in seconds between each frame in the animation." -msgstr "Utilitzeu aquest quadre de selecció per a especificar la pausa en segons entre cada fotograma de l'animació." +#: C/fish.xml:254(para) +msgid "" +"Use this spin box to specify the pause in seconds between each frame in the " +"animation." +msgstr "" +"Utilitzeu aquest quadre de selecció per a especificar la pausa en segons " +"entre cada fotograma de l'animació." -#: C/fish.xml:232(guilabel) +#: C/fish.xml:258(guilabel) msgid "Rotate on vertical panels" msgstr "Gira en els quadres verticals" -#: C/fish.xml:234(para) -msgid "Select this option to rotate the applet image when you add the applet to a vertical panel." -msgstr "Seleccioneu aquesta opció per a girar la imatge de la miniaplicació quan afegiu la miniaplicació en un quadre vertical." +#: C/fish.xml:260(para) +msgid "" +"Select this option to rotate the applet image when you add the applet to a " +"vertical panel." +msgstr "" +"Seleccioneu aquesta opció per a girar la imatge de la miniaplicació quan " +"afegiu la miniaplicació en un quadre vertical." -#. Put one translator per line, in the form of NAME , YEAR1, YEAR2. -#: C/fish.xml:0(None) +#. Put one translator per line, in the form of NAME , YEAR1, YEAR2 +#: C/fish.xml:0(None) msgid "translator-credits" msgstr "Joan Duran , 2007" +#~ msgid "September 2003" +#~ msgstr "Setembre del 2003" + +#~ msgid "" +#~ "The Fish applet displays an animated fish in a " +#~ "panel. The fish gives you your fortune when clicked." +#~ msgstr "" +#~ "La miniaplicació Peix mostra un peix animat en " +#~ "un quadre. El peix us diu una dita quan el cliqueu." diff -Nru gnome-panel-3.3.3/help/fish/ca/fish.xml gnome-panel-3.3.5/help/fish/ca/fish.xml --- gnome-panel-3.3.3/help/fish/ca/fish.xml 2011-12-20 08:18:32.000000000 +0000 +++ gnome-panel-3.3.5/help/fish/ca/fish.xml 2012-02-06 12:17:34.000000000 +0000 @@ -107,16 +107,16 @@ - Fish Applet Manual V2.5 - June 2009 + Manual de la miniaplicació Peix v2.5 + Juny de 2009 Equip de documentació del GNOME Sun Projecte de documentació del GNOME - Fish Applet Manual V2.4 - June 2009 + Manual de la miniaplicació Peix v2.4 + Juny de 2009 Equip de documentació del GNOME Sun Projecte de documentació del GNOME @@ -162,8 +162,7 @@ - The Fish applet displays an animated image in the panel and gives you - your fortune when clicked. + El programa Peix visualitza una imatge animada al quadre i us mostra una dita quan hi feu clic. @@ -188,7 +187,7 @@ -The Fish applet displays an animated fish in the panel. You can customize the fish's name and the program that is run when the fish is clicked in the panel. By default, the program that is run when the fish is clicked is Fortune, which displays a usually comical random message from a database of quotations. +L'aplicació Peix mostra un peix animat al quadre. Podeu personalitzar el nom del peix i el programa que s'executi quan es fa clic al peix en el quadre. Per defecte s'executa el programa Fortune que mostra un missatge aleatori, normalment còmic, d'una base de dades de cites. diff -Nru gnome-panel-3.3.3/help/fish/Makefile.in gnome-panel-3.3.5/help/fish/Makefile.in --- gnome-panel-3.3.3/help/fish/Makefile.in 2011-12-20 08:16:06.000000000 +0000 +++ gnome-panel-3.3.5/help/fish/Makefile.in 2012-02-06 12:17:00.000000000 +0000 @@ -125,6 +125,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/help/Makefile.in gnome-panel-3.3.5/help/Makefile.in --- gnome-panel-3.3.3/help/Makefile.in 2011-12-20 08:16:06.000000000 +0000 +++ gnome-panel-3.3.5/help/Makefile.in 2012-02-06 12:17:00.000000000 +0000 @@ -140,6 +140,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/libpanel-applet/Makefile.in gnome-panel-3.3.5/libpanel-applet/Makefile.in --- gnome-panel-3.3.3/libpanel-applet/Makefile.in 2011-12-20 08:16:06.000000000 +0000 +++ gnome-panel-3.3.5/libpanel-applet/Makefile.in 2012-02-06 12:17:00.000000000 +0000 @@ -180,6 +180,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/libpanel-applet/panel-applet.c gnome-panel-3.3.5/libpanel-applet/panel-applet.c --- gnome-panel-3.3.3/libpanel-applet/panel-applet.c 2011-07-18 13:07:18.000000000 +0000 +++ gnome-panel-3.3.5/libpanel-applet/panel-applet.c 2012-02-02 14:25:57.000000000 +0000 @@ -980,6 +980,46 @@ g_free (xml); } +/** + * panel_applet_setup_menu_from_resource: + * @applet: a #PanelApplet. + * @resource_path: a resource path + * @action_group: a #GtkActionGroup. + * + * Sets up the context menu of @applet. @filename is a resource path to a menu + * XML file, containing a #GtkUIManager UI definition that describes how to + * display the menu items. @action_group contains the various #GtkAction that + * are referenced in @xml. + * + * See also the Context + * Menu section. + * + * Since: 3.4 + **/ +void +panel_applet_setup_menu_from_resource (PanelApplet *applet, + const gchar *resource_path, + GtkActionGroup *action_group) +{ + GBytes *bytes; + GError *error = NULL; + + bytes = g_resources_lookup_data (resource_path, + G_RESOURCE_LOOKUP_FLAGS_NONE, + &error); + + if (bytes) { + panel_applet_setup_menu (applet, + g_bytes_get_data (bytes, NULL), + action_group); + } else { + g_warning ("%s", error->message); + g_error_free (error); + } + + g_bytes_unref (bytes); +} + static void panel_applet_finalize (GObject *object) { @@ -1127,7 +1167,7 @@ *x = menu_x; *y = menu_y; - *push_in = TRUE; + *push_in = FALSE; } static void diff -Nru gnome-panel-3.3.3/libpanel-applet/panel-applet.h gnome-panel-3.3.5/libpanel-applet/panel-applet.h --- gnome-panel-3.3.3/libpanel-applet/panel-applet.h 2011-04-05 13:58:20.000000000 +0000 +++ gnome-panel-3.3.5/libpanel-applet/panel-applet.h 2012-02-02 14:25:57.000000000 +0000 @@ -170,6 +170,9 @@ void panel_applet_setup_menu_from_file (PanelApplet *applet, const gchar *filename, GtkActionGroup *action_group); +void panel_applet_setup_menu_from_resource (PanelApplet *applet, + const gchar *resource_path, + GtkActionGroup *action_group); int panel_applet_factory_main (const gchar *factory_id, GType applet_type, diff -Nru gnome-panel-3.3.3/Makefile.in gnome-panel-3.3.5/Makefile.in --- gnome-panel-3.3.3/Makefile.in 2011-12-20 08:16:06.000000000 +0000 +++ gnome-panel-3.3.5/Makefile.in 2012-02-06 12:17:00.000000000 +0000 @@ -110,7 +110,7 @@ done; \ reldir="$$dir2" GZIP_ENV = --best -DIST_ARCHIVES = $(distdir).tar.bz2 +DIST_ARCHIVES = $(distdir).tar.xz distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ @@ -156,6 +156,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ @@ -638,6 +639,7 @@ dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) + dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) @@ -645,7 +647,6 @@ dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) - dist-xz: distdir tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz $(am__remove_distdir) @@ -664,7 +665,7 @@ $(am__remove_distdir) dist dist-all: distdir - tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 + tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then diff -Nru gnome-panel-3.3.3/man/Makefile.in gnome-panel-3.3.5/man/Makefile.in --- gnome-panel-3.3.3/man/Makefile.in 2011-12-20 08:16:06.000000000 +0000 +++ gnome-panel-3.3.5/man/Makefile.in 2012-02-06 12:17:00.000000000 +0000 @@ -125,6 +125,7 @@ GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@ GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GMOFILES = @GMOFILES@ diff -Nru gnome-panel-3.3.3/NEWS gnome-panel-3.3.5/NEWS --- gnome-panel-3.3.3/NEWS 2011-12-20 08:15:40.000000000 +0000 +++ gnome-panel-3.3.5/NEWS 2012-02-06 11:24:40.000000000 +0000 @@ -1,4 +1,51 @@ ============= +Version 3.3.5 +============= + +Note: the port to org.freedesktop.timedate1 is not tested due to some issues on +my system. Feedback welcome! + + Panel + + * Don't ask for menus to be pushed in (Matthias Clasen) + * Use horizontal/vertical padding for button widgets (Peter Hurley) + * Use GResource for data files (Vincent) + * Stop using deprecated gtk_[hv]box_new() (Vincent) + + libpanel-applet + + * Don't ask for menus to be pushed in (Matthias Clasen) + * Add panel_applet_setup_menu_from_resource() API (Vincent) + + All Applets + + * Use GResource for data files (Vincent) + + Clock Applet + + * Stop using deprecated gtk_[hv]box_new() (Vincent) + * Always show actions to set time (Vincent) + * Port to org.freedesktop.timedate1 to set timezones (Vincent) + + Fish Applet + + * Move fish animations data files in fish-specific directory (Vincent) + + Misc + + * New dependency on polkit-gobject-1 (Vincent) + + Docs Translators + + * OKANO Takayoshi (ja) + * Gil Forcada (ca) + + Translators + + * Jovan Naumovski (mk) + * Kjartan Maraas (nb) + +============= Version 3.3.3 ============= diff -Nru gnome-panel-3.3.3/po/mk.po gnome-panel-3.3.5/po/mk.po --- gnome-panel-3.3.3/po/mk.po 2010-02-09 12:32:08.000000000 +0000 +++ gnome-panel-3.3.5/po/mk.po 2012-01-16 14:06:45.000000000 +0000 @@ -15,146 +15,120 @@ msgid "" msgstr "" "Project-Id-Version: gnome-panel.HEAD.mk\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" -"panel&component=general\n" -"POT-Creation-Date: 2009-01-20 06:18+0000\n" -"PO-Revision-Date: 2008-09-24 18:51+0200\n" -"Last-Translator: Jovan Naumovski \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-panel&keywords=I18N+L10N&component=general\n" +"POT-Creation-Date: 2011-12-20 08:22+0000\n" +"PO-Revision-Date: 2012-01-08 17:12+0100\n" +"Last-Translator: Jovan N\n" "Language-Team: Macedonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural= n==1 || n%10==1 ? 0 : 1\n" +"Plural-Forms: nplurals=2; plural= n==1 || n%10==1 ? 0 : 1\n" "X-Generator: KBabel 1.11.4\n" -#: ../applets/clock/GNOME_ClockApplet.xml.h:1 -msgid "Ad_just Date & Time" -msgstr "По_стави датум и време" - -#: ../applets/clock/GNOME_ClockApplet.xml.h:2 -msgid "Copy _Date" -msgstr "Копирај _датум" - -#: ../applets/clock/GNOME_ClockApplet.xml.h:3 -msgid "Copy _Time" -msgstr "Копирај _време" - -#: ../applets/clock/GNOME_ClockApplet.xml.h:4 -#: ../applets/fish/GNOME_FishApplet.xml.h:1 -#: ../applets/notification_area/GNOME_NotificationAreaApplet.xml.h:1 -#: ../applets/wncklet/GNOME_ShowDesktopApplet.xml.h:1 -#: ../applets/wncklet/GNOME_WindowListApplet.xml.h:1 -#: ../applets/wncklet/GNOME_WindowMenuApplet.xml.h:1 -#: ../applets/wncklet/GNOME_WorkspaceSwitcherApplet.xml.h:1 -msgid "_About" -msgstr "_За" - -#: ../applets/clock/GNOME_ClockApplet.xml.h:5 -#: ../applets/fish/GNOME_FishApplet.xml.h:2 -#: ../applets/notification_area/GNOME_NotificationAreaApplet.xml.h:2 -#: ../applets/wncklet/GNOME_ShowDesktopApplet.xml.h:2 -#: ../applets/wncklet/GNOME_WindowListApplet.xml.h:2 -#: ../applets/wncklet/GNOME_WindowMenuApplet.xml.h:2 -#: ../applets/wncklet/GNOME_WorkspaceSwitcherApplet.xml.h:2 -#: ../gnome-panel/drawer.c:601 ../gnome-panel/panel-action-button.c:710 -#: ../gnome-panel/panel-context-menu.c:285 ../gnome-panel/panel-menu-bar.c:343 -#: ../gnome-panel/panel-menu-button.c:663 -msgid "_Help" -msgstr "_Помош" - -#: ../applets/clock/GNOME_ClockApplet.xml.h:6 -#: ../applets/fish/GNOME_FishApplet.xml.h:3 -#: ../applets/wncklet/GNOME_WindowListApplet.xml.h:3 -#: ../applets/wncklet/GNOME_WorkspaceSwitcherApplet.xml.h:3 -msgid "_Preferences" -msgstr "_Параметри" - -#: ../applets/clock/GNOME_ClockApplet_Factory.server.in.in.h:1 -#: ../applets/clock/clock.c:3760 -msgid "Clock" -msgstr "Часовник" - -#: ../applets/clock/GNOME_ClockApplet_Factory.server.in.in.h:2 -msgid "Clock Applet Factory" -msgstr "Часовник аплет фабрика" - -#: ../applets/clock/GNOME_ClockApplet_Factory.server.in.in.h:3 -msgid "Factory for creating clock applets." -msgstr "Фабрика за креирање на часовници аплети." - -#: ../applets/clock/GNOME_ClockApplet_Factory.server.in.in.h:4 -msgid "Get the current time and date" -msgstr "Земи ги тековните датум и време" - -#: ../applets/clock/calendar-window.c:242 ../applets/clock/clock.c:424 +#. Translators: This is a strftime format string. +#. * It is used to display the time in 12-hours format +#. * (eg, like in the US: 8:10 am). The %p expands to +#. * am/pm. +#. Translators: This is a strftime format string. +#. * It is used to display the time in 12-hours format (eg, like +#. * in the US: 8:10 am). The %p expands to am/pm. +#. +#: ../applets/clock/calendar-window.c:324 +#: ../applets/clock/clock.c:452 +#: ../applets/clock/clock-location-tile.c:507 msgid "%l:%M %p" msgstr "%l:%M %p" -#. translators: This is a strftime format string that is used for formatting -#. * the time that is displayed for locations in the popup. This string is used -#. * for 24-hour format. -#. * There should be little need to translate this string. +#. Translators: This is a strftime format string. +#. * It is used to display the time in 24-hours format +#. * (eg, like in France: 20:10). +#. Translators: This is a strftime format +#. * string. +#. * It is used to display the time in 24-hours +#. * format (eg, like in France: 20:10). +#. Translators: This is a strftime format string. +#. * It is used to display the time in 24-hours format +#. * (eg, like in France: 20:10). +#. Translators: This is a strftime format string. +#. * It is used to display the time in 24-hours format (eg, like +#. * in France: 20:10). #. -#: ../applets/clock/calendar-window.c:244 ../applets/clock/clock.c:426 -#: ../applets/clock/clock.c:1534 ../applets/clock/clock-location-tile.c:480 +#: ../applets/clock/calendar-window.c:329 +#: ../applets/clock/clock.c:457 +#: ../applets/clock/clock.c:1600 +#: ../applets/clock/clock-location-tile.c:467 +#: ../applets/clock/clock-location-tile.c:514 msgid "%H:%M" msgstr "%H:%M" -#. Translators: If the event did not start on the current day -#. * we will display the start date in the most abbreviated way -#. * possible. -#: ../applets/clock/calendar-window.c:250 +#. Translators: This is a strftime format string. +#. * It is used to display the start date of an appointment, in +#. * the most abbreviated way possible. +#: ../applets/clock/calendar-window.c:335 msgid "%b %d" msgstr "%b %d" -#: ../applets/clock/calendar-window.c:773 +#: ../applets/clock/calendar-window.c:835 msgid "Tasks" msgstr "Задачи" -#: ../applets/clock/calendar-window.c:773 -#: ../applets/clock/calendar-window.c:949 -#: ../applets/clock/calendar-window.c:1585 +#: ../applets/clock/calendar-window.c:835 +#: ../applets/clock/calendar-window.c:1018 +#: ../applets/clock/calendar-window.c:1624 msgid "Edit" msgstr "Уреди" -#: ../applets/clock/calendar-window.c:894 +#: ../applets/clock/calendar-window.c:958 msgid "All Day" msgstr "Цел ден" -#: ../applets/clock/calendar-window.c:1033 +#: ../applets/clock/calendar-window.c:1102 msgid "Appointments" msgstr "Закажувања" -#: ../applets/clock/calendar-window.c:1058 +#: ../applets/clock/calendar-window.c:1127 msgid "Birthdays and Anniversaries" msgstr "Родендени и годишнини" -#: ../applets/clock/calendar-window.c:1083 +#: ../applets/clock/calendar-window.c:1152 msgid "Weather Information" msgstr "Информации за времето" -#: ../applets/clock/calendar-window.c:1585 ../applets/clock/clock.glade.h:15 +#: ../applets/clock/calendar-window.c:1624 +#: ../applets/clock/clock.ui.h:11 msgid "Locations" msgstr "Локации" -#: ../applets/clock/calendar-window.c:1884 +#: ../applets/clock/calendar-window.c:1922 msgid "Calendar" msgstr "Календар" -#: ../applets/clock/clock.c:424 +#. Translators: This is a strftime format string. +#. * It is used to display the time in 12-hours format (eg, like +#. * in the US: 8:10 am). The %p expands to am/pm. +#: ../applets/clock/clock.c:452 msgid "%l:%M:%S %p" msgstr "%l:%M:%S %p" -#: ../applets/clock/clock.c:426 ../applets/clock/clock.c:1532 +#. Translators: This is a strftime format string. +#. * It is used to display the time in 24-hours format (eg, like +#. * in France: 20:10). +#. Translators: This is a strftime format +#. * string. +#. * It is used to display the time in 24-hours +#. * format (eg, like in France: 20:10). +#: ../applets/clock/clock.c:457 +#: ../applets/clock/clock.c:1594 msgid "%H:%M:%S" msgstr "%H:%M:%S" -#. translators: replace %e with %d if, when the day of the -#. * month as a decimal number is a single digit, it -#. * should begin with a 0 in your locale (e.g. "May -#. * 01" instead of "May 1"). -#. -#: ../applets/clock/clock.c:446 +#. Translators: This is a strftime format string. +#. * It is used to display the date. Replace %e with %d if, when +#. * the day of the month as a decimal number is a single digit, +#. * it should begin with a 0 in your locale (e.g. "May 01" +#. * instead of "May 1"). +#: ../applets/clock/clock.c:468 msgid "%a %b %e" msgstr "%a, %e %b" @@ -162,7 +136,7 @@ #. * if the time should come before the #. * date on a clock in your locale. #. -#: ../applets/clock/clock.c:453 +#: ../applets/clock/clock.c:475 #, c-format msgid "" "%1$s\n" @@ -175,246 +149,255 @@ #. * if the time should come before the #. * date on a clock in your locale. #. -#: ../applets/clock/clock.c:461 +#: ../applets/clock/clock.c:483 #, c-format msgid "%1$s, %2$s" msgstr "%1$s, %2$s" -#. Show date in tooltip. Translators: please leave the "%%s" as it is; we -#. * use it to put in the timezone name later. -#. -#: ../applets/clock/clock.c:643 +#. Show date in tooltip. +#. Translators: This is a strftime format string. +#. * It is used to display a date. Please leave "%%s" as it is: +#. * it will be used to insert the timezone name later. +#: ../applets/clock/clock.c:649 msgid "%A %B %d (%%s)" msgstr "%A %B %d (%%s)" -#: ../applets/clock/clock.c:673 +#: ../applets/clock/clock.c:679 msgid "Click to hide your appointments and tasks" msgstr "Кликнете за да ги скриете Вашите закажувања и задачи" -#: ../applets/clock/clock.c:676 +#: ../applets/clock/clock.c:682 msgid "Click to view your appointments and tasks" msgstr "Кликнете за да ги видите Вашите состаноци и задачи" -#: ../applets/clock/clock.c:680 +#: ../applets/clock/clock.c:686 msgid "Click to hide month calendar" msgstr "Кликнете за да го скриете месечниот календар" -#: ../applets/clock/clock.c:683 +#: ../applets/clock/clock.c:689 msgid "Click to view month calendar" msgstr "Кликнете за да го видите календарот" -#: ../applets/clock/clock.c:1387 +#: ../applets/clock/clock.c:1432 msgid "Computer Clock" msgstr "Компјутерски часовник" -#: ../applets/clock/clock.c:1527 +#. Translators: This is a strftime format +#. * string. +#. * It is used to display the time in 12-hours +#. * format with a leading 0 if needed (eg, like +#. * in the US: 08:10 am). The %p expands to +#. * am/pm. +#: ../applets/clock/clock.c:1579 msgid "%I:%M:%S %p" msgstr "%I:%M:%S %p" -#: ../applets/clock/clock.c:1529 +#. Translators: This is a strftime format +#. * string. +#. * It is used to display the time in 12-hours +#. * format with a leading 0 if needed (eg, like +#. * in the US: 08:10 am). The %p expands to +#. * am/pm. +#: ../applets/clock/clock.c:1587 msgid "%I:%M %p" msgstr "%I:%M %p" -#: ../applets/clock/clock.c:1571 +#. Translators: This is a strftime format string. +#. * It is used to display a date in the full format (so that people can +#. * copy and paste it elsewhere). +#: ../applets/clock/clock.c:1633 msgid "%A, %B %d %Y" msgstr "%A, %d %B %Y" -#: ../applets/clock/clock.c:1648 -#, c-format -msgid "Failed to launch time configuration tool: %s" -msgstr "Не успеав да ја подигнам алатката за конфигурирање на времето : %s" - -#: ../applets/clock/clock.c:1679 -msgid "Set System Time..." -msgstr "Постави го системското време..." +#: ../applets/clock/clock.c:1702 +#| msgid "Failed to set the system time" +msgid "Failed to open the time settings" +msgstr "Не успеав да ги отворам поставувањата за време" + +#: ../applets/clock/clock.c:1722 +#: ../applets/fish/fish.c:1317 +#: ../applets/wncklet/window-list.c:159 +#: ../applets/wncklet/workspace-switcher.c:218 +msgid "_Preferences" +msgstr "_Параметри" -#: ../applets/clock/clock.c:1680 ../applets/clock/clock.glade.h:19 -msgid "Set System Time" -msgstr "Постави го системското време" +#: ../applets/clock/clock.c:1725 +msgid "Copy _Time" +msgstr "Копирај _време" -#: ../applets/clock/clock.c:1695 -msgid "Failed to set the system time" -msgstr "Не успеав да го поставам системското време" +#: ../applets/clock/clock.c:1728 +msgid "Copy _Date" +msgstr "Копирај _датум" -#: ../applets/clock/clock.c:1889 -msgid "" -"Failed to locate a program for configuring the date and time. Perhaps none " -"is installed?" -msgstr "" -"Не успеав да ја лоцирам програмата за конфигурирање на датум и време. " -"Најверојатно не e инсталирана?" +#: ../applets/clock/clock.c:1731 +msgid "Ad_just Date & Time" +msgstr "По_стави датум и време" -#: ../applets/clock/clock.c:2821 +#: ../applets/clock/clock.c:2568 msgid "Custom format" msgstr "Сопствен формат" -#: ../applets/clock/clock.c:3482 +#: ../applets/clock/clock.c:3055 +#| msgid "Location" +msgid "Choose Location" +msgstr "Одбери локација" + +#: ../applets/clock/clock.c:3134 +#| msgid "Location" +msgid "Edit Location" +msgstr "Уреди ја локација" + +#: ../applets/clock/clock.c:3281 msgid "City Name" msgstr "Име на градот" -#: ../applets/clock/clock.c:3486 +#: ../applets/clock/clock.c:3285 msgid "City Time Zone" msgstr "Временска зона на градот" -#: ../applets/clock/clock.c:3656 +#: ../applets/clock/clock.c:3472 msgid "24 hour" msgstr "24 часа" -#: ../applets/clock/clock.c:3657 +#: ../applets/clock/clock.c:3473 msgid "UNIX time" msgstr "UNIX време" -#: ../applets/clock/clock.c:3658 +#: ../applets/clock/clock.c:3474 msgid "Internet time" msgstr "Интернет време" -#: ../applets/clock/clock.c:3666 +#: ../applets/clock/clock.c:3482 msgid "Custom _format:" msgstr "Сопствен _формат:" -#: ../applets/clock/clock.c:3763 -msgid "The Clock displays the current time and date" -msgstr "Часовникот ги покажува моменталниот датум и време" - -#. Translator credits -#: ../applets/clock/clock.c:3766 ../applets/fish/fish.c:613 -#: ../applets/notification_area/main.c:156 -#: ../applets/wncklet/showdesktop.c:531 ../applets/wncklet/window-list.c:607 -#: ../applets/wncklet/window-menu.c:79 -#: ../applets/wncklet/workspace-switcher.c:622 -#: ../gnome-panel/panel-context-menu.c:138 -msgid "translator-credits" -msgstr "" -"Арангел Ангов \n" -"Иван Стојмиров \n" -"Георги Станојевски \n" -" Јован Наумовски " - -#: ../applets/clock/clock.glade.h:1 -msgid "Clock Options" -msgstr "Опции за часовникот" - -#: ../applets/clock/clock.glade.h:2 -msgid "Display" -msgstr "Приказ" - -#: ../applets/clock/clock.glade.h:3 -msgid "Panel Display" -msgstr "Приказ на панелот" - -#: ../applets/clock/clock.glade.h:4 -msgid "Time Settings" -msgstr "Поставувања за времето" - -#: ../applets/clock/clock.glade.h:5 +#: ../applets/clock/clock.ui.h:1 msgid "(optional)" msgstr "(опционално)" #. Languages that have a single word that translates as either "state" or "province" should use that instead of "region". -#: ../applets/clock/clock.glade.h:7 -msgid "" -"Type a city, region, or country name and then select a match from " -"the pop-up." -msgstr "" +#: ../applets/clock/clock.ui.h:3 +msgid "Type a city, region, or country name and then select a match from the pop-up." +msgstr "Внесете град, регион или име на држава и потоа изберете од скокачкиот балон." + +#: ../applets/clock/clock.ui.h:4 +#| msgid "Custom format" +msgid "Clock Format" +msgstr "Формат на часовник" -#: ../applets/clock/clock.glade.h:8 +#: ../applets/clock/clock.ui.h:5 msgid "Clock Preferences" msgstr "Параметри за часовникот" -#: ../applets/clock/clock.glade.h:9 -msgid "Current Time:" -msgstr "Моменталното време:" - -#: ../applets/clock/clock.glade.h:10 -msgid "" -"East\n" -"West" -msgstr "" -"Исток\n" -"Запад" - -#: ../applets/clock/clock.glade.h:12 -#: ../gnome-panel/panel-properties-dialog.glade.h:9 +#: ../applets/clock/clock.ui.h:6 +#| msgid "Display" +msgid "Display" +msgstr "Приказ" + +#: ../applets/clock/clock.ui.h:7 +#| msgid "" +#| "East\n" +#| "West" +msgid "East" +msgstr "Исток" + +#: ../applets/clock/clock.ui.h:8 +#: ../applets/fish/fish.ui.h:5 +#: ../gnome-panel/panel-properties-dialog.ui.h:9 msgid "General" msgstr "Општо" -#: ../applets/clock/clock.glade.h:13 -msgid "Latitude:" -msgstr "Географска ширина:" - -#: ../applets/clock/clock.glade.h:14 -msgid "Location Name:" -msgstr "Име на локација:" - -#: ../applets/clock/clock.glade.h:16 -msgid "Longitude:" -msgstr "Географска должина:" - -#: ../applets/clock/clock.glade.h:17 -msgid "" -"North\n" -"South" -msgstr "" -"Север\n" -"Југ" +#: ../applets/clock/clock.ui.h:9 +#| msgid "Latitude:" +msgid "L_atitude:" +msgstr "Географска ш_ирина:" + +#: ../applets/clock/clock.ui.h:10 +#| msgid "Longitude:" +msgid "L_ongitude:" +msgstr "Географска д_олжина:" + +#: ../applets/clock/clock.ui.h:12 +#| msgid "" +#| "North\n" +#| "South" +msgid "North" +msgstr "Север" + +#: ../applets/clock/clock.ui.h:13 +#| msgid "Panel Display" +msgid "Panel Display" +msgstr "Приказ на панелот" -#: ../applets/clock/clock.glade.h:20 +#: ../applets/clock/clock.ui.h:14 msgid "Show _temperature" msgstr "Прикажи _температура" -#: ../applets/clock/clock.glade.h:21 +#: ../applets/clock/clock.ui.h:15 msgid "Show _weather" msgstr "Прикажи информации за _времето" -#: ../applets/clock/clock.glade.h:22 +#: ../applets/clock/clock.ui.h:16 msgid "Show seco_nds" msgstr "Покажи секу_нди" -#: ../applets/clock/clock.glade.h:23 +#: ../applets/clock/clock.ui.h:17 msgid "Show the _date" msgstr "Покажи го _датумот" -#: ../applets/clock/clock.glade.h:24 -msgid "Time Settings" -msgstr "Поставувања за времето" +#: ../applets/clock/clock.ui.h:18 +#| msgid "" +#| "North\n" +#| "South" +msgid "South" +msgstr "Југ" -#: ../applets/clock/clock.glade.h:25 +#: ../applets/clock/clock.ui.h:19 msgid "Time _Settings" msgstr "_Поставувања за времето" -#: ../applets/clock/clock.glade.h:26 -msgid "Time:" -msgstr "Време:" - -#: ../applets/clock/clock.glade.h:27 -msgid "Timezone:" -msgstr "Временска зона:" - -#: ../applets/clock/clock.glade.h:28 +#: ../applets/clock/clock.ui.h:20 msgid "Weather" msgstr "Време" -#: ../applets/clock/clock.glade.h:29 +#: ../applets/clock/clock.ui.h:21 +#| msgid "" +#| "East\n" +#| "West" +msgid "West" +msgstr "Запад" + +#: ../applets/clock/clock.ui.h:22 msgid "_12 hour format" msgstr "_Формат 12 часа" -#: ../applets/clock/clock.glade.h:30 +#: ../applets/clock/clock.ui.h:23 msgid "_24 hour format" msgstr "_Формат 24 часа" -#: ../applets/clock/clock.glade.h:31 +#: ../applets/clock/clock.ui.h:24 +#| msgid "Location Name:" +msgid "_Location Name:" +msgstr "_Име на локација:" + +#: ../applets/clock/clock.ui.h:25 msgid "_Pressure unit:" msgstr "Единица за _притисок:" -#: ../applets/clock/clock.glade.h:32 +#: ../applets/clock/clock.ui.h:26 msgid "_Temperature unit:" msgstr "Единица за _температура:" -#: ../applets/clock/clock.glade.h:33 +#: ../applets/clock/clock.ui.h:27 +#| msgid "Timezone:" +msgid "_Timezone:" +msgstr "_Временска зона:" + +#: ../applets/clock/clock.ui.h:28 msgid "_Visibility unit:" msgstr "Единица за _видливост:" -#: ../applets/clock/clock.glade.h:34 +#: ../applets/clock/clock.ui.h:29 msgid "_Wind speed unit:" msgstr "Единица за брзина на _ветар:" @@ -477,130 +460,106 @@ msgstr "Прикажи ги секундите во времето." #: ../applets/clock/clock.schemas.in.h:23 -msgid "If true, display time in Universal Coordinated Time zone." -msgstr "Прикажи го времето во универзално време (UTC)." - -#: ../applets/clock/clock.schemas.in.h:24 msgid "If true, expand the list of appointments in the calendar window." -msgstr "" -"Ако е true, прошири ја листата со закажувања во прозорецот на календарот." +msgstr "Ако е true, прошири ја листата со закажувања во прозорецот на календарот." -#: ../applets/clock/clock.schemas.in.h:25 +#: ../applets/clock/clock.schemas.in.h:24 msgid "If true, expand the list of birthdays in the calendar window." -msgstr "" -"Ако е true, прошири ја листата со родендени во прозорецот на календарот." +msgstr "Ако е true, прошири ја листата со родендени во прозорецот на календарот." -#: ../applets/clock/clock.schemas.in.h:26 +#: ../applets/clock/clock.schemas.in.h:25 msgid "If true, expand the list of locations in the calendar window." msgstr "Ако е true, прошири ја листата на локации во прозорецот на календарот." -#: ../applets/clock/clock.schemas.in.h:27 +#: ../applets/clock/clock.schemas.in.h:26 msgid "If true, expand the list of tasks in the calendar window." msgstr "Ако е true, прошири ја листата со задачи во прозорецот на календарот." -#: ../applets/clock/clock.schemas.in.h:28 +#: ../applets/clock/clock.schemas.in.h:27 msgid "If true, expand the list of weather information in the calendar window." -msgstr "" -"Ако е true, прошири ја листата со временски информации во прозорецот на " -"календарот." +msgstr "Ако е true, прошири ја листата со временски информации во прозорецот на календарот." -#: ../applets/clock/clock.schemas.in.h:29 +#: ../applets/clock/clock.schemas.in.h:28 msgid "If true, show date in a tooltip when the pointer is over the clock." msgstr "Прикажи датум во објаснувањето кога глувчето е над часовникот." -#: ../applets/clock/clock.schemas.in.h:30 +#: ../applets/clock/clock.schemas.in.h:29 msgid "If true, show the temperature next to the weather icon." -msgstr "" -"Ако е обележано, прикажи ја температурата веднаш до иконата за времето." +msgstr "Ако е обележано, прикажи ја температурата веднаш до иконата за времето." -#: ../applets/clock/clock.schemas.in.h:31 +#: ../applets/clock/clock.schemas.in.h:30 msgid "If true, show week numbers in the calendar." msgstr "Ако е обележано, прикажи ги бројките од неделата во календарот." -#: ../applets/clock/clock.schemas.in.h:32 +#: ../applets/clock/clock.schemas.in.h:31 msgid "List of locations" msgstr "Листа на локации" -#: ../applets/clock/clock.schemas.in.h:33 +#: ../applets/clock/clock.schemas.in.h:32 msgid "Show date in clock" msgstr "Покажи датум во часовникот" -#: ../applets/clock/clock.schemas.in.h:34 +#: ../applets/clock/clock.schemas.in.h:33 msgid "Show date in tooltip" msgstr "Покажи датум" -#: ../applets/clock/clock.schemas.in.h:35 +#: ../applets/clock/clock.schemas.in.h:34 msgid "Show temperature in clock" msgstr "Покажи температура во часовникот" -#: ../applets/clock/clock.schemas.in.h:36 +#: ../applets/clock/clock.schemas.in.h:35 msgid "Show time with seconds" msgstr "Покажи секунди" -#: ../applets/clock/clock.schemas.in.h:37 +#: ../applets/clock/clock.schemas.in.h:36 msgid "Show weather in clock" msgstr "Покажи временска прогноза во часовникот" -#: ../applets/clock/clock.schemas.in.h:38 +#: ../applets/clock/clock.schemas.in.h:37 msgid "Show week numbers in calendar" msgstr "Покажи ги бројките на неделата во календарот" -#: ../applets/clock/clock.schemas.in.h:39 +#: ../applets/clock/clock.schemas.in.h:38 msgid "Speed unit" msgstr "Единица за брзина" -#: ../applets/clock/clock.schemas.in.h:40 +#: ../applets/clock/clock.schemas.in.h:39 msgid "Temperature unit" msgstr "Единица за температура" -#: ../applets/clock/clock.schemas.in.h:41 +#: ../applets/clock/clock.schemas.in.h:40 msgid "The unit to use when showing temperatures." msgstr "Единицата што се користи за прикажување на температурата." -#: ../applets/clock/clock.schemas.in.h:42 +#: ../applets/clock/clock.schemas.in.h:41 msgid "The unit to use when showing wind speed." msgstr "Единицата што се користи за прикажување на брзината на ветерот." +#: ../applets/clock/clock.schemas.in.h:42 +#| msgid "" +#| "The use of this key was deprecated in GNOME 2.6 in favour of the 'format' " +#| "key. The schema is retained for compatibility with older versions." +msgid "The use of this key was deprecated in GNOME 2.22 with the use of an internal time configuration tool. The schema is retained for compatibility with older versions." +msgstr "Употребата на ова копче беше запоставена во GNOME 2.22 со користење на внатрешна алатка за конфигурација на времето. Оваа шема постои заради компатибилност со постари верзии." + #: ../applets/clock/clock.schemas.in.h:43 -msgid "" -"The use of this key was deprecated in GNOME 2.6 in favour of the 'format' " -"key. The schema is retained for compatibility with older versions." -msgstr "" -"Употребата на ова копче беше запоставена во GNOME 2.6. Оваа шема постои " -"заради компатибилност со постари верзии." +#| msgid "" +#| "The use of this key was deprecated in GNOME 2.6 in favour of the 'format' " +#| "key. The schema is retained for compatibility with older versions." +msgid "The use of this key was deprecated in GNOME 2.28 in favour of the use of timezones. The schema is retained for compatibility with older versions." +msgstr "Употребата на ова копче беше запоставена во GNOME 2.28 поарди користење на временски зони. Оваа шема постои заради компатибилност со постари верзии." #: ../applets/clock/clock.schemas.in.h:44 -msgid "" -"This key specifies the format used by the clock applet when the format key " -"is set to \"custom\". You can use conversion specifiers understood by " -"strftime() to obtain a specific format. See the strftime() manual for more " -"information." -msgstr "" -"Ова копче го одредува форматот користен од страна на аплетот за часовник, " -"кога копчето за формат е поставено на \"сопствен\". За да добиете одреден " -"формат можете да користите одредувачи на конверзија кои се разбриливи од " -"страна на strftime(). Проверете го упатството за strftime() за повеќе " -"информации." +msgid "The use of this key was deprecated in GNOME 2.6 in favour of the 'format' key. The schema is retained for compatibility with older versions." +msgstr "Употребата на ова копче беше запоставена во GNOME 2.6. Оваа шема постои заради компатибилност со постари верзии." #: ../applets/clock/clock.schemas.in.h:45 -msgid "" -"This key specifies the hour format used by the clock applet. Possible values " -"are \"12-hour\", \"24-hour\", \"internet\", \"unix\" and \"custom\". If set " -"to \"internet\", the clock will display Internet time. The Internet time " -"system divides the day into 1000 \".beats\". There are no time zones in this " -"system, so time is the same all over the world. If set to \"unix\", the " -"clock will display time in seconds since Epoch, i.e. 1970-01-01. If set to " -"\"custom\", the clock will display time according to the format specified in " -"the custom_format key." -msgstr "" -"Копчето го одредува форматот на времето користен од страна на аплетот " -"часовник. Можни вредности се \"12-часа\", \"24-часа\", \"интернет\", \"јуникс" -"\" и \"сопствено\". " +msgid "This key specifies the format used by the clock applet when the format key is set to \"custom\". You can use conversion specifiers understood by strftime() to obtain a specific format. See the strftime() manual for more information." +msgstr "Ова копче го одредува форматот користен од страна на аплетот за часовник, кога копчето за формат е поставено на \"сопствен\". За да добиете одреден формат можете да користите одредувачи на конверзија кои се разбриливи од страна на strftime(). Проверете го упатството за strftime() за повеќе информации." #: ../applets/clock/clock.schemas.in.h:46 -msgid "This key specifies the program to run in order to configure the time." -msgstr "" -"Ова копче одредува која програма да се користи за конфигурирање на времето." +msgid "This key specifies the hour format used by the clock applet. Possible values are \"12-hour\", \"24-hour\", \"internet\", \"unix\" and \"custom\". If set to \"internet\", the clock will display Internet time. The Internet time system divides the day into 1000 \".beats\". There are no time zones in this system, so time is the same all over the world. If set to \"unix\", the clock will display time in seconds since Epoch, i.e. 1970-01-01. If set to \"custom\", the clock will display time according to the format specified in the custom_format key." +msgstr "Копчето го одредува форматот на времето користен од страна на аплетот часовник. Можни вредности се \"12-часа\", \"24-часа\", \"интернет\", \"јуникс\" и \"сопствено\". " #: ../applets/clock/clock.schemas.in.h:47 msgid "Time configuration tool" @@ -622,125 +581,101 @@ msgid "Failed to set the system timezone" msgstr "Не успеав да ја поставам временската зона" -#: ../applets/clock/clock-location-tile.c:240 +#: ../applets/clock/clock-location-tile.c:231 msgid "Set..." msgstr "Постави..." -#: ../applets/clock/clock-location-tile.c:241 +#: ../applets/clock/clock-location-tile.c:232 msgid "Set" msgstr "Постави" -#: ../applets/clock/clock-location-tile.c:317 +#: ../applets/clock/clock-location-tile.c:308 msgid "Set location as current location and use its timezone for this computer" msgstr "Постави ја тековната локација како временска зона за овој компјутер" -#. translators: This is a strftime format string that is used for formatting -#. * the time that is displayed for locations in the popup. This string is used -#. * for 12-hour format (the %p expands to am/pm), when the local weekday differs -#. * from the weekday at the location (the %A expands to the weekday). -#. * There should be little need to translate this string. -#. -#: ../applets/clock/clock-location-tile.c:453 +#. Translators: This is a strftime format string. +#. * It is used to display the time in 12-hours format +#. * (eg, like in the US: 8:10 am), when the local +#. * weekday differs from the weekday at the location +#. * (the %A expands to the weekday). The %p expands to +#. * am/pm. +#: ../applets/clock/clock-location-tile.c:444 msgid "%l:%M %p (%A)" msgstr "%l:%M %p (%A)" -#. translators: This is a strftime format string that is used for formatting -#. * the time that is displayed for locations in the popup. This string is used -#. * for 24-hour format (the %p expands to am/pm), when the local weekday differs -#. * from the weekday at the location (the %A expands to the weekday). -#. * There should be little need to translate this string. -#. -#: ../applets/clock/clock-location-tile.c:462 +#. Translators: This is a strftime format string. +#. * It is used to display the time in 24-hours format +#. * (eg, like in France: 20:10), when the local +#. * weekday differs from the weekday at the location +#. * (the %A expands to the weekday). +#: ../applets/clock/clock-location-tile.c:452 msgid "%H:%M (%A)" msgstr "%H:%M (%A)" -#. translators: This is a strftime format string that is used for formatting -#. * the time that is displayed for locations in the popup. This string is used -#. * for 12-hour format (the %p expands to am/pm). -#. * There should be little need to translate this string. -#. -#: ../applets/clock/clock-location-tile.c:472 +#. Translators: This is a strftime format string. +#. * It is used to display the time in 12-hours format +#. * (eg, like in the US: 8:10 am). The %p expands to +#. * am/pm. +#: ../applets/clock/clock-location-tile.c:461 msgid "%l:%M %p" msgstr "%l:%M %p" -#: ../applets/clock/clock-location-tile.c:581 +#: ../applets/clock/clock-location-tile.c:600 #, c-format msgid "%s, %s" msgstr "%s, %s" #. FMQ: it's broken to read from another module's translations; add some API to libgweather. -#: ../applets/clock/clock-location-tile.c:593 -#: ../applets/clock/clock-location-tile.c:601 +#: ../applets/clock/clock-location-tile.c:612 +#: ../applets/clock/clock-location-tile.c:621 msgid "Unknown" msgstr "Непознато" -#: ../applets/clock/clock-location-tile.c:594 +#. Translators: The two strings are temperatures. +#: ../applets/clock/clock-location-tile.c:614 #, c-format msgid "%s, feels like %s" msgstr "%s, чувството е како %s" -#: ../applets/clock/clock-location-tile.c:612 +#: ../applets/clock/clock-location-tile.c:637 #, c-format msgid "Sunrise: %s / Sunset: %s" msgstr "Изгревање: %s / заоѓање: %s" -#: ../applets/clock/clock-utils.c:93 ../applets/fish/fish.c:169 -#: ../applets/notification_area/main.c:95 ../applets/wncklet/wncklet.c:123 -#: ../gnome-panel/libpanel-util/panel-show.c:235 -#, fuzzy, c-format +#: ../applets/clock/clock-utils.c:93 +#: ../applets/fish/fish.c:163 +#: ../applets/wncklet/wncklet.c:74 +#: ../gnome-panel/libpanel-util/panel-show.c:239 +#, c-format #| msgid "Could not display help document" msgid "Could not display help document '%s'" -msgstr "Не можам да го прикажам документот за помош" +msgstr "Не можам да го прикажам документот за помош „%s“" -#: ../applets/clock/clock-utils.c:122 ../applets/fish/fish.c:195 -#: ../applets/notification_area/main.c:116 ../applets/wncklet/wncklet.c:152 -#, fuzzy +#: ../applets/clock/clock-utils.c:122 +#: ../applets/fish/fish.c:189 +#: ../applets/wncklet/wncklet.c:103 #| msgid "Could not display help document" msgid "Error displaying help document" -msgstr "Не можам да го прикажам документот за помош" - -#: ../applets/clock/org.gnome.clockapplet.mechanism.policy.in.h:1 -msgid "Change system time" -msgstr "Смени го системското време" - -#: ../applets/clock/org.gnome.clockapplet.mechanism.policy.in.h:2 -msgid "Change system time zone" -msgstr "Смени ја системската временска зона" - -#: ../applets/clock/org.gnome.clockapplet.mechanism.policy.in.h:3 -msgid "Configure hardware clock" -msgstr "Конфигурирај хардверски часовник" - -#: ../applets/clock/org.gnome.clockapplet.mechanism.policy.in.h:4 -msgid "Privileges are required to change the system time zone." -msgstr "Потребни се привилегии за менување на системската временска зона." - -#: ../applets/clock/org.gnome.clockapplet.mechanism.policy.in.h:5 -msgid "Privileges are required to change the system time." -msgstr "Потребни се привилегии за менување на системското време." - -#: ../applets/clock/org.gnome.clockapplet.mechanism.policy.in.h:6 -msgid "Privileges are required to configure the hardware clock." -msgstr "Потребни се привилегии за конфигурација на хардверскиот часовник." +msgstr "Грешка при прикажувањето на документот за помош" -#: ../applets/fish/GNOME_FishApplet_Factory.server.in.in.h:1 -msgid "Display a swimming fish or another animated creature" -msgstr "Прикажи риба што плива или некое друго анимирано суштество" +#: ../applets/clock/org.gnome.panel.ClockApplet.panel-applet.in.in.h:1 +msgid "Clock" +msgstr "Часовник" -#: ../applets/fish/GNOME_FishApplet_Factory.server.in.in.h:2 -#: ../applets/fish/fish.c:607 -msgid "Fish" -msgstr "Риба" +#: ../applets/clock/org.gnome.panel.ClockApplet.panel-applet.in.in.h:2 +msgid "Clock Applet Factory" +msgstr "Часовник аплет фабрика" -#: ../applets/fish/GNOME_FishApplet_Factory.server.in.in.h:3 -msgid "From Whence That Stupid Fish Came" -msgstr "Од каде дојде таа глупава риба" +#: ../applets/clock/org.gnome.panel.ClockApplet.panel-applet.in.in.h:3 +#| msgid "Factory for creating clock applets." +msgid "Factory for clock applet" +msgstr "Фабрика за креирање на аплети часовници" -#: ../applets/fish/GNOME_FishApplet_Factory.server.in.in.h:4 -msgid "Wanda Factory" -msgstr "Ванда фабрика" +#: ../applets/clock/org.gnome.panel.ClockApplet.panel-applet.in.in.h:4 +msgid "Get the current time and date" +msgstr "Земи ги тековните датум и време" -#: ../applets/fish/fish.c:274 +#: ../applets/fish/fish.c:217 #, c-format msgid "" "Warning: The command appears to be something actually useful.\n" @@ -749,52 +684,31 @@ "which would make the applet \"practical\" or useful." msgstr "" "Предупредување: Командата изгледа дека е нешто корисно.\n" -"Бидејќи ова е бескорисен аплет, најверојатно не би сакале да го правите " -"ова.\n" +"Бидејќи ова е бескорисен аплет, најверојатно не би сакале да го правите ова.\n" "Ве советуваме против користење на %s за било што што би го направило\n" "овој аплет „практичен“ или корисен." -#: ../applets/fish/fish.c:461 -msgid "Images" -msgstr "Слики" - -#: ../applets/fish/fish.c:575 ../applets/fish/fish.c:641 -#: ../applets/fish/fish.c:757 +#: ../applets/fish/fish.c:365 +#: ../applets/fish/fish.c:481 #, no-c-format msgid "%s the Fish" msgstr "%s рибата" -#: ../applets/fish/fish.c:576 -#, c-format -msgid "" -"%s has no use what-so-ever. It only takes up disk space and compilation " -"time, and if loaded it also takes up precious panel space and memory. " -"Anybody found using it should be promptly sent for a psychiatric evaluation." -msgstr "" -"%s и онака не е корисен. Само завзема простор на дискот и троши време за " -"компајлирање, и доколку е вчитан завзема скапоцено место на панелот и троши " -"меморија. Доколку најдете некој што го користи овој аплет, веднаш испратете " -"го на психијатриско испитување." - -#: ../applets/fish/fish.c:600 -msgid "(with minor help from George)" -msgstr "(со мала помош од Џорџ)" - -#: ../applets/fish/fish.c:642 +#: ../applets/fish/fish.c:366 #, c-format msgid "%s the Fish, a contemporary oracle" msgstr "GNOME рибата %s, чудо на природата" -#: ../applets/fish/fish.c:713 +#: ../applets/fish/fish.c:437 msgid "Unable to locate the command to execute" msgstr "Не можам да ја најдам командата која што треба да се изврши" -#: ../applets/fish/fish.c:762 +#: ../applets/fish/fish.c:486 #, no-c-format msgid "%s the Fish Says:" msgstr "GNOME рибата %s вели:" -#: ../applets/fish/fish.c:831 +#: ../applets/fish/fish.c:555 #, c-format msgid "" "Unable to read output from command\n" @@ -805,16 +719,16 @@ "\n" "Детали: %s" -#: ../applets/fish/fish.c:896 +#: ../applets/fish/fish.c:632 msgid "_Speak again" msgstr "_Зборувај пак" -#: ../applets/fish/fish.c:979 +#: ../applets/fish/fish.c:714 #, c-format msgid "The configured command is not working and has been replaced by: %s" msgstr "Конфигурираната команда не работи и е заменета со: %s" -#: ../applets/fish/fish.c:1002 +#: ../applets/fish/fish.c:748 #, c-format msgid "" "Unable to execute '%s'\n" @@ -825,7 +739,7 @@ "\n" "Детали: %s" -#: ../applets/fish/fish.c:1018 +#: ../applets/fish/fish.c:764 #, c-format msgid "" "Unable to read from '%s'\n" @@ -836,581 +750,876 @@ "\n" "Детали: %s" -#: ../applets/fish/fish.c:1640 +#: ../applets/fish/fish.c:1167 msgid "The water needs changing" msgstr "Водата треба да се смени" -#: ../applets/fish/fish.c:1642 +#: ../applets/fish/fish.c:1169 msgid "Look at today's date!" msgstr "Погледнете го датумот!" -#: ../applets/fish/fish.c:1735 +#: ../applets/fish/fish.c:1262 #, c-format msgid "%s the Fish, the fortune teller" msgstr "GNOME Рибата %s, претскажувач на судбината" -#: ../applets/fish/fish.glade.h:1 -#: ../gnome-panel/panel-properties-dialog.glade.h:1 +#: ../applets/fish/fish.ui.h:1 +#: ../gnome-panel/panel-properties-dialog.ui.h:1 msgid " " msgstr "...." -#: ../applets/fish/fish.glade.h:2 -msgid "Animation" -msgstr "Анимација" - -#: ../applets/fish/fish.glade.h:3 -msgid "General" -msgstr "Општо" +#: ../applets/fish/fish.ui.h:2 +#| msgid "Animation speed" +msgid "Animation" +msgstr "Анимација" -#: ../applets/fish/fish.glade.h:4 +#: ../applets/fish/fish.ui.h:3 msgid "Co_mmand to run when clicked:" msgstr "Команда која ќе се изврши кога ќе кликнете:" -#: ../applets/fish/fish.glade.h:5 +#: ../applets/fish/fish.ui.h:4 msgid "Fish Preferences" msgstr "Параметри за рибата" -#: ../applets/fish/fish.glade.h:6 -msgid "Select an animation" -msgstr "Изберете анимација" - -#: ../applets/fish/fish.glade.h:7 -msgid "_File:" -msgstr "_Датотека:" - -#: ../applets/fish/fish.glade.h:8 +#: ../applets/fish/fish.ui.h:6 msgid "_Name of fish:" msgstr "_Име за GNOME рибата:" -#: ../applets/fish/fish.glade.h:9 +#: ../applets/fish/fish.ui.h:7 msgid "_Pause per frame:" msgstr "_Пауза по рамка(и):" -#: ../applets/fish/fish.glade.h:10 +#: ../applets/fish/fish.ui.h:8 msgid "_Rotate on vertical panels" msgstr "_Ротирај на вертикални панели" -#: ../applets/fish/fish.glade.h:11 -msgid "_Total frames in animation:" -msgstr "_Рамки во анимација:" - -#: ../applets/fish/fish.glade.h:12 -msgid "frames" -msgstr "рамки" - -#: ../applets/fish/fish.glade.h:13 +#: ../applets/fish/fish.ui.h:9 msgid "seconds" msgstr "секунди" -#: ../applets/fish/fish.schemas.in.h:1 -msgid "" -"A fish without a name is a pretty dull fish. Bring your fish to life by " -"naming him." -msgstr "" -"Риба без име е доста досадна риба. Оживејте си ја рибата давајќи ѝ име." - -#: ../applets/fish/fish.schemas.in.h:2 -msgid "Command to execute on click" -msgstr "Команда што треба да се изврши при кликање" - -#: ../applets/fish/fish.schemas.in.h:3 -msgid "Frames in fish's animation" -msgstr "Број на рамки во анимацијата на рибата" - -#: ../applets/fish/fish.schemas.in.h:4 -msgid "" -"If true, the fish's animation will be displayed rotated on vertical panels." -msgstr "" -"Ако е точно, сликата во позадина ќе биде прокажана ротирана на " -"вертикалнипанели." - -#: ../applets/fish/fish.schemas.in.h:5 -msgid "Pause per frame" -msgstr "Пауза по рамка(и):" - -#: ../applets/fish/fish.schemas.in.h:6 -msgid "Rotate on vertical panels" -msgstr "_Ротирај на вертикални панели" - -#: ../applets/fish/fish.schemas.in.h:7 -msgid "The fish's animation pixmap" -msgstr "Сликата за анимација на рибата" - -#: ../applets/fish/fish.schemas.in.h:8 -msgid "The fish's name" -msgstr "Името на рибата" +#: ../applets/fish/org.gnome.panel.FishApplet.panel-applet.in.in.h:1 +msgid "Display a swimming fish or another animated creature" +msgstr "Прикажи риба што плива или некое друго анимирано суштество" -#: ../applets/fish/fish.schemas.in.h:9 -msgid "" -"This key specifies the command that will be tried to execute when the fish " -"is clicked." -msgstr "Команда која ќе се _подигне кога ќе кликнете на рибата." +#: ../applets/fish/org.gnome.panel.FishApplet.panel-applet.in.in.h:2 +msgid "Fish" +msgstr "Риба" -#: ../applets/fish/fish.schemas.in.h:10 -msgid "" -"This key specifies the filename of the pixmap which will be used for the " -"animation displayed in the fish applet relative to the pixmap directory." -msgstr "" -"Ова копче го одредува името на датотеката на pixmap-от кој ќе биде користен " -"за анимацијата прикажана во делот со рибата." +#: ../applets/fish/org.gnome.panel.FishApplet.panel-applet.in.in.h:3 +msgid "From Whence That Stupid Fish Came" +msgstr "Од каде дојде таа глупава риба" -#: ../applets/fish/fish.schemas.in.h:11 -msgid "" -"This key specifies the number of frames that will be displayed in the fish's " -"animation." -msgstr "Ова копче го одредува бројот на рамките во анимацијата на рибата." +#: ../applets/fish/org.gnome.panel.FishApplet.panel-applet.in.in.h:4 +msgid "Wanda Factory" +msgstr "Ванда фабрика" -#: ../applets/fish/fish.schemas.in.h:12 -msgid "This key specifies the number of seconds each frame will be displayed." -msgstr "" -"Ова копче го одредува бројот на секунди меѓу кои ќе биде прикажана секоја " -"рамка." +#: ../applets/notification_area/main.c:242 +msgid "Panel Notification Area" +msgstr "Место на панелот за известување" -#: ../applets/notification_area/GNOME_NotificationAreaApplet.server.in.in.h:1 +#: ../applets/notification_area/org.gnome.panel.NotificationAreaApplet.panel-applet.in.in.h:1 msgid "Area where notification icons appear" msgstr "Место каде што се појавуваат икони за известување" -#: ../applets/notification_area/GNOME_NotificationAreaApplet.server.in.in.h:2 -#: ../applets/notification_area/main.c:151 +#: ../applets/notification_area/org.gnome.panel.NotificationAreaApplet.panel-applet.in.in.h:2 +#| msgid "Panel Notification Area" +msgid "Factory for notification area" +msgstr "Фабрика за местото за известување" + +#: ../applets/notification_area/org.gnome.panel.NotificationAreaApplet.panel-applet.in.in.h:3 msgid "Notification Area" msgstr "Место за известување" -#: ../applets/notification_area/GNOME_NotificationAreaApplet.server.in.in.h:3 +#: ../applets/notification_area/org.gnome.panel.NotificationAreaApplet.panel-applet.in.in.h:4 msgid "Notification Area Factory" msgstr "Фабрика за местото за известување" -#: ../applets/notification_area/main.c:240 -msgid "Panel Notification Area" -msgstr "Место на панелот за известување" - -#: ../applets/wncklet/GNOME_Wncklet_Factory.server.in.in.h:1 +#: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:1 msgid "Factory for the window navigation related applets" msgstr "Фабрика за креирање на некои општи аплети" -#: ../applets/wncklet/GNOME_Wncklet_Factory.server.in.in.h:2 +#: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:2 msgid "Hide application windows and show the desktop" -msgstr "" -"Копче кое ги сокрива апликативните прозорци и ја покажува работната површина" +msgstr "Копче кое ги сокрива апликативните прозорци и ја покажува работната површина" -#: ../applets/wncklet/GNOME_Wncklet_Factory.server.in.in.h:3 +#: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:3 msgid "Show Desktop" msgstr "Покажи копче за криење" -#: ../applets/wncklet/GNOME_Wncklet_Factory.server.in.in.h:4 +#: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:4 msgid "Switch between open windows using a menu" msgstr "Скокај помеѓу отворените прозорци преку менито" -#: ../applets/wncklet/GNOME_Wncklet_Factory.server.in.in.h:5 +#: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:5 msgid "Switch between open windows using buttons" msgstr "Скокај помеѓу отворените прозорци преку копчињата" -#: ../applets/wncklet/GNOME_Wncklet_Factory.server.in.in.h:6 +#: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:6 msgid "Switch between workspaces" msgstr "Скокај помеѓу просторите за работа" -#: ../applets/wncklet/GNOME_Wncklet_Factory.server.in.in.h:7 -#: ../applets/wncklet/window-list.c:610 +#: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:7 msgid "Window List" msgstr "Листа на прозорци" -#: ../applets/wncklet/GNOME_Wncklet_Factory.server.in.in.h:8 +#: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:8 msgid "Window Navigation Applet Factory" msgstr "Аплет за навигација низ прозорци" -#: ../applets/wncklet/GNOME_Wncklet_Factory.server.in.in.h:9 -#: ../applets/wncklet/window-menu.c:82 ../applets/wncklet/window-menu.c:244 +#: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:9 +#: ../applets/wncklet/window-menu.c:204 msgid "Window Selector" msgstr "Одбирач на прозорци" -#: ../applets/wncklet/GNOME_Wncklet_Factory.server.in.in.h:10 -#: ../applets/wncklet/workspace-switcher.c:625 +#: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:10 msgid "Workspace Switcher" msgstr "Скокач помеѓу простори за работа" -#: ../applets/wncklet/showdesktop.c:181 +#: ../applets/wncklet/showdesktop.c:177 #, c-format msgid "Failed to load %s: %s\n" msgstr "Не успеав да вчитам %s: %s\n" -#: ../applets/wncklet/showdesktop.c:182 +#: ../applets/wncklet/showdesktop.c:178 msgid "Icon not found" msgstr "Иконата не е најдена" -#: ../applets/wncklet/showdesktop.c:241 +#: ../applets/wncklet/showdesktop.c:231 msgid "Click here to restore hidden windows." msgstr "Кликнeте овде за да ги вратите скриените прозорци." -#: ../applets/wncklet/showdesktop.c:243 +#: ../applets/wncklet/showdesktop.c:233 msgid "Click here to hide all windows and show the desktop." -msgstr "" -"Кликнете овде за да ги сокриете сите прозорци и да стигнете до работната " -"површина." +msgstr "Кликнете овде за да ги сокриете сите прозорци и да стигнете до работната површина." -#: ../applets/wncklet/showdesktop.c:453 ../applets/wncklet/showdesktop.c:534 +#: ../applets/wncklet/showdesktop.c:441 msgid "Show Desktop Button" msgstr "Покажи копче за криење" -#: ../applets/wncklet/showdesktop.c:536 -msgid "This button lets you hide all windows and show the desktop." -msgstr "" -"Ова копче Ви овозможува да ги сокриете сите прозорци и да се вратите на " -"работната површина" - -#: ../applets/wncklet/showdesktop.c:566 -msgid "" -"Your window manager does not support the show desktop button, or you are not " -"running a window manager." -msgstr "" -"Вашиот менаџер на прозорци не поддржува пиказ на копчиња од работната " -"површина или пак не користите менаџер на прозорци" - -#: ../applets/wncklet/window-list.c:612 -msgid "" -"The Window List shows a list of all windows in a set of buttons and lets you " -"browse them." -msgstr "" -"Листата на прозорци покажува листа на сите прозорци прикажани преку копчиња " -"и ви овозможува да ги разгледувате истите." - -#: ../applets/wncklet/window-list.glade.h:1 -msgid "Restoring Minimized Windows" -msgstr "Враќање на минимизираните прозорци" - -#: ../applets/wncklet/window-list.glade.h:2 -msgid "Window Grouping" -msgstr "Групирање на прозорци" - -#: ../applets/wncklet/window-list.glade.h:3 -msgid "Window List Content" -msgstr "Листа на содржина на прозорците" +#: ../applets/wncklet/showdesktop.c:509 +msgid "Your window manager does not support the show desktop button, or you are not running a window manager." +msgstr "Вашиот менаџер на прозорци не поддржува пиказ на копчиња од работната површина или пак не користите менаџер на прозорци" -#: ../applets/wncklet/window-list.glade.h:4 +#: ../applets/wncklet/window-list.ui.h:1 msgid "Group windows when _space is limited" msgstr "Групирај прозорци кога _просторот е ограничен" -#: ../applets/wncklet/window-list.glade.h:5 +#: ../applets/wncklet/window-list.ui.h:2 msgid "Restore to current _workspace" msgstr "Врати на активниот работен простор" -#: ../applets/wncklet/window-list.glade.h:6 +#: ../applets/wncklet/window-list.ui.h:3 msgid "Restore to na_tive workspace" msgstr "Врати на нативниот работен простор" -#: ../applets/wncklet/window-list.glade.h:7 +#: ../applets/wncklet/window-list.ui.h:4 +#| msgid "Restoring Minimized Windows" +msgid "Restoring Minimized Windows" +msgstr "Враќање на минимизираните прозорци" + +#: ../applets/wncklet/window-list.ui.h:5 msgid "Sh_ow windows from current workspace" msgstr "По_кажи прозорци од активниот работен простор" -#: ../applets/wncklet/window-list.glade.h:8 +#: ../applets/wncklet/window-list.ui.h:6 msgid "Show windows from a_ll workspaces" msgstr "Покажи прозорци од сите работни простори" -#: ../applets/wncklet/window-list.glade.h:9 +#: ../applets/wncklet/window-list.ui.h:7 +#| msgid "Window Grouping" +msgid "Window Grouping" +msgstr "Групирање на прозорци" + +#: ../applets/wncklet/window-list.ui.h:8 +#| msgid "Window List Content" +msgid "Window List Content" +msgstr "Листа на содржина на прозорците" + +#: ../applets/wncklet/window-list.ui.h:9 msgid "Window List Preferences" msgstr "Референци за листата на прозорци" -#: ../applets/wncklet/window-list.glade.h:10 +#: ../applets/wncklet/window-list.ui.h:10 msgid "_Always group windows" msgstr "_Секогаш групирај прозорци" -#: ../applets/wncklet/window-list.glade.h:11 +#: ../applets/wncklet/window-list.ui.h:11 msgid "_Never group windows" msgstr "_Никогаш не групирај прозорци" -#: ../applets/wncklet/window-list.schemas.in.h:1 -msgid "" -"Decides when to group windows from the same application on the window list. " -"Possible values are \"never\", \"auto\" and \"always\"." -msgstr "" -"Одлучува дали да ги групира прозорците од иста апликација во листата на " -"прозорци. Може да стои „никогаш“, „автоматски“ и „секогаш“." - -#: ../applets/wncklet/window-list.schemas.in.h:2 -msgid "" -"If true, the window list will show windows from all workspaces. Otherwise it " -"will only display windows from the current workspace." -msgstr "" -"Ако ова е точно листата на прозорци ќе ги прикажува сите прозорци на сите " -"екрани за работа, во спротивно ќе ги прикажува прозорците само на тековниот " -"екран." - -#: ../applets/wncklet/window-list.schemas.in.h:3 -msgid "" -"If true, then when unminimizing a window, move it to the current workspace. " -"Otherwise, switch to the workspace of the window." -msgstr "" -"Ако е точно, кога ќе се зголемува прозорец од листата донеси го на " -"моменталниот екран. Во спротивно префрли се на неговиот екран за работа." - -#: ../applets/wncklet/window-list.schemas.in.h:4 -msgid "Maximum window list size" -msgstr "Максимална големина за листање на прозорецот" - -#: ../applets/wncklet/window-list.schemas.in.h:5 -msgid "Minimum window list size" -msgstr "Минимална големина за листање на прозорецот" - -#: ../applets/wncklet/window-list.schemas.in.h:6 -msgid "Move windows to current workspace when unminimized" -msgstr "" -"Преместувај ги прозорците до тековниот работен простор кога се минимизирани" - -#: ../applets/wncklet/window-list.schemas.in.h:7 -msgid "Show windows from all workspaces" -msgstr "Покажи прозорци од сите работни простори" - -#: ../applets/wncklet/window-list.schemas.in.h:8 -msgid "" -"The use of this key was deprecated in GNOME 2.20. The schema is retained for " -"compatibility with older versions." -msgstr "" -"Употребата на ова копче е запоставена во GNOME 2.20. Оваа шема постои заради " -"компатибилност со постари верзии." - -#: ../applets/wncklet/window-list.schemas.in.h:9 -msgid "When to group windows" -msgstr "Кога да групира прозорци" - -#: ../applets/wncklet/window-menu.c:86 -msgid "" -"The Window Selector shows a list of all windows in a menu and lets you " -"browse them." -msgstr "" -"Листата на прозорци покажува листа на сите прозорци во мени и ви овозможува " -"да ги разгледувате истите." - -#: ../applets/wncklet/workspace-switcher.c:215 -#: ../applets/wncklet/workspace-switcher.c:977 -#: ../applets/wncklet/workspace-switcher.glade.h:10 +#: ../applets/wncklet/workspace-switcher.c:194 +#: ../applets/wncklet/workspace-switcher.c:723 +#: ../applets/wncklet/workspace-switcher.ui.h:10 msgid "rows" msgstr "редици" -#: ../applets/wncklet/workspace-switcher.c:215 -#: ../applets/wncklet/workspace-switcher.c:977 +#: ../applets/wncklet/workspace-switcher.c:194 +#: ../applets/wncklet/workspace-switcher.c:723 msgid "columns" msgstr "колони" -#: ../applets/wncklet/workspace-switcher.c:489 -#, c-format -msgid "Error loading num_rows value for Workspace Switcher: %s\n" -msgstr "" -"Грешка при вчитувањето на вредноста num_rows за скокачот помеѓу работните " -"простори: %s\n" - -#: ../applets/wncklet/workspace-switcher.c:500 -#, c-format -msgid "" -"Error loading display_workspace_names value for Workspace Switcher: %s\n" -msgstr "" -"Грешка при вчитувањето на вредноста display_workspace_names за скокачот " -"Помеѓу работни простори: %s \n" - -#: ../applets/wncklet/workspace-switcher.c:515 -#, c-format -msgid "Error loading display_all_workspaces value for Workspace Switcher: %s\n" -msgstr "" -"Грешка при вчитувањето на вредноста display_all workspaces скокачот помеѓу " -"работни простори: %s \n" - -#: ../applets/wncklet/workspace-switcher.c:627 -msgid "" -"The Workspace Switcher shows you a small version of your workspaces that " -"lets you manage your windows." -msgstr "" -"Скокачот помеѓу просторите за работа ви прикажува минијатурна верзија на " -"Вашите простори за работа за да можете полесно да се движите низ нив." - -#: ../applets/wncklet/workspace-switcher.glade.h:1 -msgid "Switcher" -msgstr "Скокач" - -#: ../applets/wncklet/workspace-switcher.glade.h:2 -msgid "Workspaces" -msgstr "Работни простори" - -#: ../applets/wncklet/workspace-switcher.glade.h:3 +#: ../applets/wncklet/workspace-switcher.ui.h:1 msgid "Number of _workspaces:" msgstr "Број на _работни простори:" -#: ../applets/wncklet/workspace-switcher.glade.h:4 +#: ../applets/wncklet/workspace-switcher.ui.h:2 msgid "Show _all workspaces in:" msgstr "Покажи ги _сите работни простори" -#: ../applets/wncklet/workspace-switcher.glade.h:5 +#: ../applets/wncklet/workspace-switcher.ui.h:3 msgid "Show _only the current workspace" msgstr "Покажи го само тековниот работен простор" -#: ../applets/wncklet/workspace-switcher.glade.h:6 +#: ../applets/wncklet/workspace-switcher.ui.h:4 msgid "Show workspace _names in switcher" msgstr "Покажи ги имињата на работните простори во скокачот" -#: ../applets/wncklet/workspace-switcher.glade.h:7 +#: ../applets/wncklet/workspace-switcher.ui.h:5 +#| msgid "Switcher" +msgid "Switcher" +msgstr "Скокач" + +#: ../applets/wncklet/workspace-switcher.ui.h:6 msgid "Workspace Names" msgstr "Имиња на работни простори" -#: ../applets/wncklet/workspace-switcher.glade.h:8 +#: ../applets/wncklet/workspace-switcher.ui.h:7 msgid "Workspace Switcher Preferences" msgstr "Параметри на скокачот на простори за работа" -#: ../applets/wncklet/workspace-switcher.glade.h:9 +#: ../applets/wncklet/workspace-switcher.ui.h:8 msgid "Workspace na_mes:" msgstr "Имиња на работни простори" -#: ../applets/wncklet/workspace-switcher.schemas.in.h:1 -msgid "Display all workspaces" -msgstr "Прикажи ги сите работни простори" +#: ../applets/wncklet/workspace-switcher.ui.h:9 +#| msgid "Workspace Names" +msgid "Workspaces" +msgstr "Работни простори" + +#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:1 +msgid "A fish without a name is a pretty dull fish. Bring your fish to life by naming him." +msgstr "Риба без име е доста досадна риба. Оживејте си ја рибата давајќи ѝ име." -#: ../applets/wncklet/workspace-switcher.schemas.in.h:2 -msgid "Display workspace names" -msgstr "Прикажи имиња на работни простори" +#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:2 +msgid "Command to execute on click" +msgstr "Команда што треба да се изврши при кликање" -#: ../applets/wncklet/workspace-switcher.schemas.in.h:3 -msgid "" -"If true, the workspace switcher will show all workspaces. Otherwise it will " -"only show the current workspace." -msgstr "" -"Ако е избрано ова, скокачот ќе ги прикаже сите простори за работа. Во " -"спротивно ќе го прикажува само моменталниот простор." +#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:3 +msgid "If true, the fish's animation will be displayed rotated on vertical panels." +msgstr "Ако е точно, сликата во позадина ќе биде прокажана ротирана на вертикалнипанели." -#: ../applets/wncklet/workspace-switcher.schemas.in.h:4 -msgid "" -"If true, the workspaces in the workspace switcher will display the names of " -"the workspaces. Otherwise they will display the windows on the workspace. " -"This setting only works when the window manager is Metacity." -msgstr "" -"Ако е точно, скокачот помеѓу работни простори ќе ги покажува имињата на " -"просторите, во спротивно ќе ја прикажува содржината на просторот. Ова " -"поставување работи само кога користите Metacity." +#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:4 +msgid "Pause per frame" +msgstr "Пауза по рамка(и):" -#: ../applets/wncklet/workspace-switcher.schemas.in.h:5 -msgid "Rows in workspace switcher" -msgstr "Скокач помеѓу простори за работа" +#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:5 +msgid "Rotate on vertical panels" +msgstr "_Ротирај на вертикални панели" -#: ../applets/wncklet/workspace-switcher.schemas.in.h:6 -msgid "" -"This key specifies how many rows (for horizontal layout) or columns (for " -"vertical layout) the workspace switcher shows the workspaces in. This key is " -"only relevant if the display_all_workspaces key is true." -msgstr "" -"Ова копче одредува колку редови (за хоризонтално) и колку колони (за " -"вертикално) ќе прикаже скокачот помеѓу работни простори." +#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:6 +msgid "The fish's animation pixmap" +msgstr "Сликата за анимација на рибата" -#. FIXME: We need a title in this case, but we don't know what -#. * the format should be. Let's put something simple until +#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:7 +msgid "The fish's name" +msgstr "Името на рибата" + +#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:8 +msgid "This key specifies the command that will be tried to execute when the fish is clicked." +msgstr "Команда која ќе се _подигне кога ќе кликнете на рибата." + +#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:9 +msgid "This key specifies the filename of the pixmap which will be used for the animation displayed in the fish applet relative to the pixmap directory." +msgstr "Ова копче го одредува името на датотеката на pixmap-от кој ќе биде користен за анимацијата прикажана во делот со рибата." + +#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:10 +msgid "This key specifies the number of seconds each frame will be displayed." +msgstr "Ова копче го одредува бројот на секунди меѓу кои ќе биде прикажана секоја рамка." + +#: ../data/org.gnome.gnome-panel.applet.window-list.gschema.xml.in.in.h:1 +msgid "Decides when to group windows from the same application on the window list. Possible values are \"never\", \"auto\" and \"always\"." +msgstr "Одлучува дали да ги групира прозорците од иста апликација во листата на прозорци. Може да стои „никогаш“, „автоматски“ и „секогаш“." + +#: ../data/org.gnome.gnome-panel.applet.window-list.gschema.xml.in.in.h:2 +msgid "If true, the window list will show windows from all workspaces. Otherwise it will only display windows from the current workspace." +msgstr "Ако ова е точно листата на прозорци ќе ги прикажува сите прозорци на сите екрани за работа, во спротивно ќе ги прикажува прозорците само на тековниот екран." + +#: ../data/org.gnome.gnome-panel.applet.window-list.gschema.xml.in.in.h:3 +msgid "If true, then when unminimizing a window, move it to the current workspace. Otherwise, switch to the workspace of the window." +msgstr "Ако е точно, кога ќе се зголемува прозорец од листата донеси го на моменталниот екран. Во спротивно префрли се на неговиот екран за работа." + +#: ../data/org.gnome.gnome-panel.applet.window-list.gschema.xml.in.in.h:4 +msgid "Move windows to current workspace when unminimized" +msgstr "Преместувај ги прозорците до тековниот работен простор кога се минимизирани" + +#: ../data/org.gnome.gnome-panel.applet.window-list.gschema.xml.in.in.h:5 +msgid "Show windows from all workspaces" +msgstr "Покажи прозорци од сите работни простори" + +#: ../data/org.gnome.gnome-panel.applet.window-list.gschema.xml.in.in.h:6 +msgid "When to group windows" +msgstr "Кога да групира прозорци" + +#: ../data/org.gnome.gnome-panel.applet.workspace-switcher.gschema.xml.in.in.h:1 +msgid "Display all workspaces" +msgstr "Прикажи ги сите работни простори" + +#: ../data/org.gnome.gnome-panel.applet.workspace-switcher.gschema.xml.in.in.h:2 +msgid "Display workspace names" +msgstr "Прикажи имиња на работни простори" + +#: ../data/org.gnome.gnome-panel.applet.workspace-switcher.gschema.xml.in.in.h:3 +msgid "If true, the workspace switcher will show all workspaces. Otherwise it will only show the current workspace." +msgstr "Ако е избрано ова, скокачот ќе ги прикаже сите простори за работа. Во спротивно ќе го прикажува само моменталниот простор." + +#: ../data/org.gnome.gnome-panel.applet.workspace-switcher.gschema.xml.in.in.h:4 +msgid "If true, the workspaces in the workspace switcher will display the names of the workspaces. Otherwise they will display the windows on the workspace. This setting only works when the window manager is Metacity." +msgstr "Ако е точно, скокачот помеѓу работни простори ќе ги покажува имињата на просторите, во спротивно ќе ја прикажува содржината на просторот. Ова поставување работи само кога користите Metacity." + +#: ../data/org.gnome.gnome-panel.applet.workspace-switcher.gschema.xml.in.in.h:5 +msgid "Rows in workspace switcher" +msgstr "Скокач помеѓу простори за работа" + +#: ../data/org.gnome.gnome-panel.applet.workspace-switcher.gschema.xml.in.in.h:6 +msgid "This key specifies how many rows (for horizontal layout) or columns (for vertical layout) the workspace switcher shows the workspaces in. This key is only relevant if the display_all_workspaces key is true." +msgstr "Ова копче одредува колку редови (за хоризонтално) и колку колони (за вертикално) ќе прикаже скокачот помеѓу работни простори." + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:1 +msgid "A list of applet IIDs that the panel will ignore. This way you can disable certain applets from loading or showing up in the menu. For example to disable the mini-commander applet add 'OAFIID:GNOME_MiniCommanderApplet' to this list. The panel must be restarted for this to take effect." +msgstr "Листа на IID кои што ќе ги игнорира панелот. На овој начин можете да спречите одредени аплети да бидат вчитани или прикажани во менито. На пример, за да го оневозможите аплетот mini-commander, додадете 'OAFIID:GNOME_MiniCommanderApplet' на листата. Панелот мора да се рестартира за да се применат промените." + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:2 +msgid "A list of panel IDs. Each ID identifies an individual toplevel panel. The settings for each of these panels are stored in /apps/panel/toplevels/$(id)." +msgstr "Листа со ID-а на панели. Секоj ID идентификува панел на највисокото ниво. Поставувањата на секој од панелите се чуваат во /apps/panel/general/$(profile)/toplevels/$(id)." + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:3 +#| msgid "" +#| "A list of panel object IDs. Each ID identifies an individual panel object " +#| "(e.g. a launcher, action button or menu button/bar). The settings for " +#| "each of these objects are stored in /apps/panel/objects/$(id)." +msgid "A list of panel object IDs. Each ID identifies an individual panel object (e.g. an applet, launcher, action button or menu button/bar). The settings for each of these objects are stored in /apps/panel/objects/$(id)." +msgstr "Листа со ID-а на панел објекти. Секоj ID идентификува посебен панел објект (на пр. подигнувач, копче за акција, копче за мени). Поставувањата на секој од објекти се чуваат во /apps/panel/objects/$(id)." + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:4 +msgid "Applet IIDs to disable from loading" +msgstr "ID на аплети кои што треба да бидат оневозможени при вчитување" + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:5 +msgid "Complete panel lockdown" +msgstr "Целосно заклучување на панелот" + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:6 +msgid "Confirm panel removal" +msgstr "Потврди го отстранувањето на панелот" + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:7 +msgid "Disable Force Quit" +msgstr "Оневозможи присилен излез" + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:8 +msgid "Enable autocompletion in \"Run Application\" dialog" +msgstr "Овозможете автоматско комплетирање во дијалогот „Изврши апликација“" + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:9 +msgid "Enable program list in \"Run Application\" dialog" +msgstr "Овозможете ја листата на програми во дијалогот \"Изврши апликација\"" + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:10 +msgid "Enable tooltips" +msgstr "Овозможи совети" + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:11 +msgid "Expand program list in \"Run Application\" dialog" +msgstr "Рашири ја листата на програми во дијалогот \"„Стартувај програма“\"" + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:12 +#| msgid "Enable program list in \"Run Application\" dialog" +msgid "History of \"Run Application\" dialog" +msgstr "Историја на дијалогот \"Изврши апликација\"" + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:13 +msgid "If true, a dialog is shown asking for confirmation if the user wants to remove a panel." +msgstr "Ако е точно, се покажува дијалог кој бара потврда за отстранување на панелот." + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:14 +msgid "If true, autocompletion in the \"Run Application\" dialog is made available." +msgstr "Ако е точно, автоматското комплетирање во дијалогот „Изврши апликација“ ќе биде достапно." + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:15 +msgid "If true, the \"Known Applications\" listing in the \"Run Application\" dialog is expanded when the dialog is opened. This key is only relevant if the enable_program_list key is true." +msgstr "Ако е точно, \"листата познати програми\" во дијалогот \"Изврши апликација\" е отворена при отворање на дијалогот. Ова поДали листата ќе биде отворена или не зависи од тоа дали приказот на дијалогот е контролоран од show_program_list_settings. Апликации во изврши програм дијалог програма." + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:16 +msgid "If true, the \"Known Applications\" listing in the \"Run Application\" dialog is made available. Whether or not the listing is expanded when the dialog is shown is controlled by the show_program_list key." +msgstr "Ако е точно,листата познати програми во дијалогот \"Изврши апликација\" е достапна. Дали листата ќе биде отворена или не зависи од тоа дали приказот на дијалогот е контролоран од show_program_list_settings." + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:17 +msgid "If true, the panel will not allow a user to force an application to quit by removing access to the force quit button." +msgstr "Ако е точно, панелот нема да му дозволи на корисникот да форсира исклучување на апликација со отстранување на пристапот до копчето за форсирање." + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:18 +msgid "If true, the panel will not allow any changes to the configuration of the panel. Individual applets may need to be locked down separately however. The panel must be restarted for this to take effect." +msgstr "Ако е точно, панелот нема да дозволува никакви промени во неговата конфигурација.Како и да е, индивидуалните аплети можеби ќе мораат да бидат заклучувани посебно. За да работи ова, прво морате да го рестартирате панелот." + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:19 +msgid "If true, tooltips are shown for objects in panels. Tooltips can be disabled for the whole desktop with the gtk-enable-tooltips property in GTK+." +msgstr "Ако е true, ќе се покажуваат балончиња со совет за објектите на панелите. Балончињата со совет може да се исклучат за целата работна околина преку својството gtk-enable-tooltips во GTK+." + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:20 +msgid "Panel ID list" +msgstr "Панел листа за идентификација" + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:21 +msgid "Panel object ID list" +msgstr "Листа со идентификации на панел објекти" + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:22 +#| msgid "Enable autocompletion in \"Run Application\" dialog" +msgid "The list of commands used in the past in the \"Run Application\" dialog." +msgstr "Листа на команди користени во дијалогот „Изврши апликација“" + +#: ../data/org.gnome.gnome-panel.launcher.gschema.xml.in.in.h:1 +msgid "Launcher location" +msgstr "Локација на пуштачот" + +#: ../data/org.gnome.gnome-panel.launcher.gschema.xml.in.in.h:2 +msgid "The location of the .desktop file describing the launcher. This key is only relevant if the object_type key is \"launcher-object\"." +msgstr "Локацијата на датотеката на вклучувачот на работната површина. Овие подесувања ќе одговараат само ако типот на објектот е ж\"вклучувачки објект\"" + +#: ../data/org.gnome.gnome-panel.menu-button.gschema.xml.in.in.h:1 +#| msgid "Icon used for object's button" +msgid "Icon used for button" +msgstr "Иконата користена за копчето" + +#: ../data/org.gnome.gnome-panel.menu-button.gschema.xml.in.in.h:2 +msgid "Menu content path" +msgstr "Патека до содржината на менито" + +#: ../data/org.gnome.gnome-panel.menu-button.gschema.xml.in.in.h:3 +#| msgid "" +#| "The location of the image file used as the icon for the object's button. " +#| "This key is only relevant if the object_type key is \"drawer-object\" or " +#| "\"menu-object\" and the use_custom_icon key is true." +msgid "The location of the image file used as the icon for the object's button. If empty, the default icon for the menu will be used." +msgstr "Локацијата на сликата користена како икона за објектот на копчето. Ако е празно, ќе се користи стандардната икона." + +#: ../data/org.gnome.gnome-panel.menu-button.gschema.xml.in.in.h:4 +#| msgid "" +#| "The path from which the menu contents is contructed. This key is only " +#| "relevant if the use_menu_path key is true and the object_type key is " +#| "\"menu-object\"." +msgid "The path from which the menu contents is contructed. If empty, the menu will be the default applications menu." +msgstr "Патека од каде се составуваат содржините на менито. Ако е празно, менито ќе биде стандардното мени со апликации." + +#: ../data/org.gnome.gnome-panel.menu-button.gschema.xml.in.in.h:5 +msgid "The text to display in a tooltip for this menu." +msgstr "Текстот кој ќе се прикажува во балонче за совет за ова мени." + +#: ../data/org.gnome.gnome-panel.menu-button.gschema.xml.in.in.h:6 +#| msgid "Tooltip displayed for drawer or menu" +msgid "Tooltip displayed for menu" +msgstr "Балонче со совет кое се прикажува за менито" + +#: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:1 +#| msgid "" +#| "If true, the position of the object is interpreted relative to the right " +#| "(or bottom if vertical) edge of the panel." +msgid "If set to 'end', the position of the object is interpreted relative to the right (or bottom if vertical) edge of the panel." +msgstr "Поставете го на „end“, за позицијата на објектот да се интерпретира релативно на десниот (или долниот ако е вертикален) раб на панелот." + +#: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:2 +msgid "Interpret position relative to bottom/right edge" +msgstr "Интерпретирај ја позицијата релативно во однос на десниот-долен раб" + +#: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:3 +msgid "Object IID" +msgstr "IID на објект" + +#: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:4 +msgid "Object's position on the panel" +msgstr "Позицијата на објектот на панелот" + +#: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:5 +msgid "The identifier of the toplevel panel which contains this object." +msgstr "Идентификаторот на врвот од панелот кој содржи објект." + +#: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:6 +msgid "The implementation ID of the object - e.g. \"ClockAppletFactory::ClockApplet\"." +msgstr "ID на имплементацијата на објектот - пр. „ClockAppletFactory::ClockApplet“." + +#: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:7 +msgid "The position of this panel object. The position is specified by the number of pixels from the left (or top if vertical) panel edge." +msgstr "Позиција на панел објектот. Позицијата е одредена од бројот на пиксели од лево (или од горе ако е вертикален) од работ на панелот." + +#: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:8 +msgid "Toplevel panel containing object" +msgstr "Панел што го содржи објектот" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:1 +msgid "Animation speed" +msgstr "Брзина на анимацијата" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:2 +msgid "Automatically hide panel into corner" +msgstr "Автоматски криј го панелот во ќошето." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:3 +msgid "Background color" +msgstr "Боја на позадина" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:4 +msgid "Background image" +msgstr "Позадинска слика" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:5 +msgid "Background type" +msgstr "Тип на позадина" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:6 +msgid "Center panel on x-axis" +msgstr "Центрирај го панелот на х-оската" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:7 +msgid "Center panel on y-axis" +msgstr "Центрирај го панелот на y-оската." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:8 +msgid "Determines how the image set by image-uri is rendered. Possible values are \"none\", \"stretch\", \"fit\". With \"stretch\", the image will be scaled to the panel dimensions and the aspect ratio of the image will not be maintained. With \"fit\", the image will be scaled (retaining the aspect ratio of the image) to the panel height (if horizontal)." +msgstr "Одредува како ќе се поставува сликата поставена во image-uri. Можни вредности се „none“, „stretch“ и „fit“. Со „stretch“ сликата ќе ја промени големината за да одговара на димензиите на панелот и односот на размерот на сликата нема да биде задржан. Со „fit“ сликата ќе биде скалирана (ќе се зачува односот должина-ширина) за да одговара на висината на панелот." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:9 +msgid "Enable arrows on hide buttons" +msgstr "Вклучи ги стрелките на криечките копчињата." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:10 +msgid "Enable hide buttons" +msgstr "Вклучи ги криечките копчињата." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:11 +msgid "Expand to occupy entire screen width" +msgstr "Прошири низ целиот екран." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:12 +msgid "If true, arrows will be placed on the hide buttons. This key is only relevant if the enable_buttons key is true." +msgstr "Ако е точно,стрелките ќе се сместат на сокривачките копчиња. Овие параметри ќе бидат важечки само ако вклучените копчиња се вистинити." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:13 +msgid "If true, buttons will be placed on each side of the panel which may be used to move the panel to edge of the screen, leaving only a button showing." +msgstr "Ако е точно тогаш копчињата ќе бидат сместени на секоја страна од панлеот кој би можел да биде користен за поместување на панелот во работ на екранот притоа оставајќи видливо копче." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:14 +msgid "If true, the background image will be rotated when the panel is oriented vertically." +msgstr "Ако е точно, позадинската слика ќе биде ротирана ако ориентацијата на панелот е вертикална." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:15 +msgid "If true, the panel is automatically hidden into a corner of the screen when the pointer leaves the panel area. Moving the pointer to that corner again will cause the panel to re-appear." +msgstr "Ако е вистинито тогаш кога покажувачот го напушти панелот ќе биде автоматски скриен во ќошот на екранот. Поместувајќи го покажувачот во тој ќош ќе предизвика панелот повторно да се покаже." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:16 +msgid "If true, the panel will occupy the entire screen width (height if this is a vertical panel). In this mode the panel can only be placed at a screen edge. If false, the panel will only be large enough to accommodate the applets, launchers and buttons on the panel." +msgstr "Ако е точно тогаш панелот да ја завземе цела ширина на еранот (висина ако е вертикален панел). Во овој режим панелот може само да биде сместен на работ од екранот. Доколку е невистинито тогаш панелотќе биде доволно голем да ги смести аплетите, вклучувачите и копчињата на панелот." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:17 +msgid "If true, the x and x_right keys are ignored and the panel is placed at the center of the x-axis of the screen. If the panel is resized it will remain at that position - i.e. the panel will grow on both sides. If false, the x and x_right keys specify the location of the panel." +msgstr "Ако е штиклирано тогаш поставувањата за x и x_right_keys ќе бидат одбегнати и панелот ќе биде сместен на центарот на x-оската на екранот. Доколку големината на панелот е променета тој ќе остане на таа позиција - појаснето. панелот ќе се рашири од двете страни. Ако е исклучено тогаш поставувањата за х у x_right_keys ќе ја одредат локацијата на панелот." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:18 +msgid "If true, the y and y_bottom keys are ignored and the panel is placed at the center of the y-axis of the screen. If the panel is resized it will remain at that position - i.e. the panel will grow on both sides. If false, the y and y_bottom keys specify the location of the panel." +msgstr "Ако е вистинито тогаш поставувањата за y и y_bottom_keys ќе бидат одбегнати и панелот ќе биде сместен нацентарот на оската y на екранот. Доколку големината на панелот е променета тој ќе остане на таа позиција - појаснето. панелот ќе се рашири од двете страни. Ако е невистинито тогаш поставувањата за y и y y_bottom_keys ќе ја одредат локацијата на панелот." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:19 +#| msgid "Images" +msgid "Image options" +msgstr "Опции за слики" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:20 +msgid "In a Xinerama setup, you may have panels on each individual monitor. This key identifies the current monitor the panel is displayed on." +msgstr "Во Xinerama подесувањето, можно е да ги имате панелите посебно на секој монитор. Ова копче го индентификува тековниот монитор на кој е прикажан панелот." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:21 +msgid "Name to identify panel" +msgstr "Име по кое ќе се распознава овој панел." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:22 +msgid "Panel autohide delay" +msgstr "Автоматско криење на доцнењето" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:23 +msgid "Panel autounhide delay" +msgstr "Автоматско откривање на доцнењето" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:24 +msgid "Panel orientation" +msgstr "Ориентација на панелот" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:25 +msgid "Panel size" +msgstr "Големина на панелот" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:26 +msgid "Rotate image on vertical panels" +msgstr "Ротирај ја сликата на вертикалниот панел" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:27 +msgid "Specifies the background color for the panel in #RGB format." +msgstr "Ја одредува бојата на позадината од #RGB палетата." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:28 +msgid "Specifies the file to be used for the background image. If the image contains an alpha channel it will be composited onto the desktop background image." +msgstr "Ја одредува датотеката која ќе биде користена како слика за позадина. Ако сликата содржи алфа канал ќе биде склопена на сликата на работната површина." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:29 +msgid "Specifies the number of milliseconds delay after the pointer enters the panel area before the panel is automatically re-shown. This key is only relevant if the auto_hide key is true." +msgstr "Го одредува бројот на милисекунди за кои ќе се одложува после влегувањето на покажувачот во панелот пред панелот да е автоматски пре-прокажан. Овие параметри ќе одговараат само ако автоматското_криење е вистинито." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:30 +msgid "Specifies the number of milliseconds delay after the pointer leaves the panel area before the panel is automatically hidden. This key is only relevant if the auto_hide key is true." +msgstr "Го одредува бројот на милисекунди за кои ќе се одложува после излегувањето на покажувачот во панелот пред панелот да е автоматски скриен. Овие параметри ќе одговараат само ако автоматското_криење е вистинито." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:31 +msgid "Specifies the number of pixels visible when the panel is automatically hidden into a corner. This key is only relevant if the auto_hide key is true." +msgstr "Го одредува бројот на видливи пиксели панелот е автоматски скриен во ќошот. Овие параметри ќе одговараат само ако автоматското_криење е вистинито." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:32 +msgid "The height (width for a vertical panel) of the panel. The panel will determine at runtime a minimum size based on the font size and other indicators. The maximum size is fixed at one quarter of the screen height (or width)." +msgstr "Висината (ширината за вертикален панел) на панелот. Панелот ќе одреди за време на работа минималната големина базирана на предната големина и други индикатори. Максималната големина е заклучена на една четвртина од висината на екранот (или ширина)." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:33 +msgid "The location of the panel along the x-axis, starting from the right of the screen. If set to -1, the value is ignored and the value of the x key is used. If the value is greater than 0, then the value of the x key is ignored. This key is only relevant in un-expanded mode. In expanded mode this key is ignored and the panel is placed at the screen edge specified by the orientation key." +msgstr "Локацијата на панелот на x-оската, почнувајќи од дното на екранот. Ако е поставено на -1, вредноста се игнорира и се користи вредноста на клучот за x. Ако вредноста е поголема од 0, тогаш вредноста на клучот x се игнорира. Овој клуч е релевантен во непроширен режим. Во проширен режим овој клуч се игнорира и панелог е поставен на рабовите на екранот одредено според ориентацијата на клучот." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:34 +msgid "The location of the panel along the x-axis. This key is only relevant in un-expanded mode. In expanded mode this key is ignored and the panel is placed at the screen edge specified by the orientation key." +msgstr "Локацијата на панелите покрај х-оската. Оваа вредност има значење само во во не проширениот режим. Во проширениот режим вредноста е игнорирана и панеот е сместен во работ на екранот индицирано по орентацијата." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:35 +msgid "The location of the panel along the y-axis, starting from the bottom of the screen. If set to -1, the value is ignored and the value of the y key is used. If the value is greater than 0, then the value of the y key is ignored. This key is only relevant in un-expanded mode. In expanded mode this key is ignored and the panel is placed at the screen edge specified by the orientation key." +msgstr "Локацијата на панелот на y-оската, почнувајќи од дното на екранот. Ако е поставено на -1, вредноста се игнорира и се користи вредноста на клучот за y. Ако вредноста е поголема од 0, тогаш вредноста на клучот y се игнорира. Овој клуч е релевантен во непроширен режим. Во проширен режим овој клуч се игнорира и панелог е поставен на рабовите на екранот одредено според ориентацијата на клучот." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:36 +msgid "The location of the panel along the y-axis. This key is only relevant in un-expanded mode. In expanded mode this key is ignored and the panel is placed at the screen edge specified by the orientation key." +msgstr "Локацијата на панелите покрај -оската. Оваа вредност има значење само во во не проширениот режим. Во проширениот режим вредноста е игнорирана и панеот е сместен во работ на екранот индицирано по орентацијата." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:37 +msgid "The orientation of the panel. Possible values are \"top\", \"bottom\", \"left\", \"right\". In expanded mode the key specifies which screen edge the panel is on. In un-expanded mode the difference between \"top\" and \"bottom\" is less important - both indicate that this is a horizontal panel - but still give a useful hint as to how some panel objects should behave. For example, on a \"top\" panel a menu button will pop up its menu below the panel, whereas on a \"bottom\" panel the menu will be popped up above the panel." +msgstr "Положба на панелот. Има четери можни вредности; \"врв\", \"дно\", \"лево\", \"десно\". Во проширениот режим вредноста специфира кој екрански раб на панелот е вклучен. Во не-проширениот режим разликите меѓу \"врв\" и \"дно\" е помалу важна - и двете индицираат дека ова е хоризонтален панел - но сеуште даваат корисна помош за однесувањето на панелите. На пример, на \"врв\" мени ќе излезе." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:38 +msgid "The speed in which panel animations should occur. Possible values are \"slow\", \"medium\" and \"fast\". This key is only relevant if the enable_animations key is true." +msgstr "Бризината со кој анимациите би требало да се изведуваат. Има три можни вредности; \"споро\"; \"средно\" и \"брзо\". Овие параметри ќе одговараат само ако enable_animation е вистинито." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:39 +msgid "This is a human readable name which you can use to identify a panel. Its main purpose is to serve as the panel's window title which is useful when navigating between panels." +msgstr "Ова е читливо име од кое може да се препознае панел. Неговата главна намена е да служи како прозорец наслов на панел кој е корисен кога се преминува од еден во друг." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:40 +msgid "Visible pixels when hidden" +msgstr "Број на видливи пиксели со сокриен панел" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:41 +#| msgid "" +#| "Which type of background should be used for this panel. Possible values " +#| "are \"gtk\" - the default GTK+ widget background will be used, \"color\" " +#| "- the color key will be used as background color or \"image\" - the image " +#| "specified by the image key will be used as background." +msgid "Which type of background should be used for this panel. Possible values are \"none\" - the default GTK+ widget background will be used, \"color\" - the color key will be used as background color or \"image\" - the image specified by the image key will be used as background." +msgstr "Кој на позадина би требало да биде користен за овој панел. Можни вредности се „none“ - ќе се користи стандардната позадина на GTK+ графичкиот елемент, „color“ - клучот за боја ќе се користи како позадинска боја или „image“ - сликата одредена со овој клуч ќе биде поставена како позадина." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:42 +msgid "With a multi-screen setup, you may have panels on each individual screen. This key identifies the current screen the panel is displayed on." +msgstr "Со повеќе екранско подесување можно е да има панели на секој екран. Ова копче ги индетификува тековнио екран на кој панелот е прикажан." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:43 +msgid "X co-ordinate of panel" +msgstr "Х-кординатата на панелот" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:44 +msgid "X co-ordinate of panel, starting from the right of the screen" +msgstr "X координата на панелот, почнувајќи од десната страна на екранот" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:45 +msgid "X screen where the panel is displayed" +msgstr "X екран каде што е прикажан панелот" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:46 +msgid "Xinerama monitor where the panel is displayed" +msgstr "Xinerama мониторот каде што е прикажан панелот" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:47 +msgid "Y co-ordinate of panel" +msgstr "Y-кординатата на панелот." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:48 +msgid "Y co-ordinate of panel, starting from the bottom of the screen" +msgstr "Y координата на панелот, почнувајќи од дното на екранот" + +#: ../gnome-panel/libegg/eggdesktopfile.c:165 +#, c-format +#| msgid "- Edit .desktop files" +msgid "File is not a valid .desktop file" +msgstr "Датотеката не е валидна .desktop датотека" + +#: ../gnome-panel/libegg/eggdesktopfile.c:188 +#, c-format +msgid "Unrecognized desktop file Version '%s'" +msgstr "Непрепознаена верзија на desktop датотеката „%s“" + +#: ../gnome-panel/libegg/eggdesktopfile.c:968 +#, c-format +msgid "Starting %s" +msgstr "Го стартувам %s" + +#: ../gnome-panel/libegg/eggdesktopfile.c:1110 +#, c-format +msgid "Application does not accept documents on command line" +msgstr "Апликацијата не прифаќа документи од командната линија" + +#: ../gnome-panel/libegg/eggdesktopfile.c:1178 +#, c-format +msgid "Unrecognized launch option: %d" +msgstr "Непрепознаена опција за пуштање: %d" + +#: ../gnome-panel/libegg/eggdesktopfile.c:1383 +#, c-format +msgid "Can't pass document URIs to a 'Type=Link' desktop entry" +msgstr "Не можам да проследам URI на документ на запис 'Type=Link' од desktop датотека" + +#: ../gnome-panel/libegg/eggdesktopfile.c:1404 +#, c-format +#| msgid "Could not launch menu item" +msgid "Not a launchable item" +msgstr "Не е предмет кој може да се подигне" + +#: ../gnome-panel/libegg/eggsmclient.c:226 +msgid "Disable connection to session manager" +msgstr "Оневозможи ја врската до менаџерот на сесии" + +#: ../gnome-panel/libegg/eggsmclient.c:229 +#| msgid "The Applet's containing Panel's orientation" +msgid "Specify file containing saved configuration" +msgstr "Одреди ја датотеката која ја содржи зачуваната конфигурација" + +#: ../gnome-panel/libegg/eggsmclient.c:229 +#| msgid "[FILE...]" +msgid "FILE" +msgstr "FILE" + +#: ../gnome-panel/libegg/eggsmclient.c:232 +msgid "Specify session management ID" +msgstr "Одреди ID на менаџмент на сесии" + +#: ../gnome-panel/libegg/eggsmclient.c:232 +msgid "ID" +msgstr "ID" + +#: ../gnome-panel/libegg/eggsmclient.c:253 +msgid "Session management options:" +msgstr "Опции на менаџмент на сесии:" + +#: ../gnome-panel/libegg/eggsmclient.c:254 +msgid "Show session management options" +msgstr "Покажи ги опциите на менаџментот на сесии" + +#. FIXME: We need a title in this case, but we don't know what +#. * the format should be. Let's put something simple until #. * the following bug gets fixed: #. * http://bugzilla.gnome.org/show_bug.cgi?id=165132 #. FIXME: http://bugzilla.gnome.org/show_bug.cgi?id=165132 -#: ../gnome-panel/libpanel-util/panel-error.c:82 -#: ../gnome-panel/panel-applet-frame.c:1000 -#: ../gnome-panel/panel-applet-frame.c:1088 +#: ../gnome-panel/libpanel-util/panel-error.c:80 +#: ../gnome-panel/panel-applet-frame.c:766 +#: ../gnome-panel/panel-applet-frame.c:938 msgid "Error" msgstr "Грешка" -#: ../gnome-panel/libpanel-util/panel-launch.c:45 -#, fuzzy, c-format +#: ../gnome-panel/libpanel-util/panel-icon-chooser.c:385 +#| msgid "Choose an application..." +msgid "Choose an icon" +msgstr "Одберете икона" + +#: ../gnome-panel/libpanel-util/panel-launch.c:49 +#, c-format #| msgid "Could not run command '%s'" msgid "Could not launch '%s'" -msgstr "Не можам да ја извршам командата '%s'" +msgstr "Не можев да го пуштам „%s“" -#: ../gnome-panel/libpanel-util/panel-launch.c:48 -#: ../gnome-panel/launcher.c:161 +#: ../gnome-panel/libpanel-util/panel-launch.c:52 +#: ../gnome-panel/launcher.c:175 msgid "Could not launch application" msgstr "Не можам да ја пуштам апликацијата" -#: ../gnome-panel/libpanel-util/panel-show.c:44 +#: ../gnome-panel/libpanel-util/panel-show.c:48 #, c-format msgid "Could not open location '%s'" msgstr "Не можам да ја отворам локацијата '%s'" -#: ../gnome-panel/libpanel-util/panel-show.c:162 +#: ../gnome-panel/libpanel-util/panel-show.c:166 msgid "No application to handle search folders is installed." msgstr "Не е инсталирана апликација за справување со папки за пребарување." -#: ../gnome-panel/GNOME_Panel_Popup.xml.h:1 ../gnome-panel/applet.c:544 -msgid "Loc_k To Panel" -msgstr "Заклу_чи за панелот" +#: ../gnome-panel/applet.c:359 +msgid "???" +msgstr "???" -#: ../gnome-panel/GNOME_Panel_Popup.xml.h:2 ../gnome-panel/applet.c:527 +#: ../gnome-panel/applet.c:498 +#: ../libpanel-applet/panel-applet.c:169 msgid "_Move" msgstr "П_омести" -#: ../gnome-panel/GNOME_Panel_Popup.xml.h:3 ../gnome-panel/applet.c:516 +#: ../gnome-panel/applet.c:505 +#: ../libpanel-applet/panel-applet.c:166 msgid "_Remove From Panel" msgstr "О_тстрани од панелот" -#: ../gnome-panel/applet.c:437 -msgid "???" -msgstr "???" - -#: ../gnome-panel/applet.c:1241 -msgid "Cannot find an empty spot" -msgstr "Не можам да најдам празно место" - -#: ../gnome-panel/drawer.c:350 ../gnome-panel/panel-addto.c:175 -#: ../gnome-panel/panel-toplevel.c:1602 -msgid "Drawer" -msgstr "Фиока" - -#: ../gnome-panel/drawer.c:589 -msgid "_Add to Drawer..." -msgstr "_Додај во фиока..." - -#: ../gnome-panel/drawer.c:595 ../gnome-panel/launcher.c:807 -#: ../gnome-panel/panel-action-button.c:141 -#: ../gnome-panel/panel-context-menu.c:216 -msgid "_Properties" -msgstr "_Својства" - -#: ../gnome-panel/gnome-desktop-item-edit.c:31 +#: ../gnome-panel/gnome-desktop-item-edit.c:29 msgid "Create new file in the given directory" msgstr "Креирајте нова датотека во дадениот директориум" -#: ../gnome-panel/gnome-desktop-item-edit.c:32 +#: ../gnome-panel/gnome-desktop-item-edit.c:30 msgid "[FILE...]" msgstr "[ДАТОТЕКА...]" -#: ../gnome-panel/gnome-desktop-item-edit.c:110 +#: ../gnome-panel/gnome-desktop-item-edit.c:108 msgid "- Edit .desktop files" msgstr "- Уредувај .desktop датотеки" -#: ../gnome-panel/gnome-desktop-item-edit.c:149 -#: ../gnome-panel/gnome-desktop-item-edit.c:203 ../gnome-panel/launcher.c:897 +#: ../gnome-panel/gnome-desktop-item-edit.c:146 +#: ../gnome-panel/gnome-desktop-item-edit.c:200 +#: ../gnome-panel/launcher.c:892 msgid "Create Launcher" msgstr "Креирај пуштач" -#: ../gnome-panel/gnome-desktop-item-edit.c:174 -#: ../gnome-panel/gnome-desktop-item-edit.c:197 +#: ../gnome-panel/gnome-desktop-item-edit.c:171 +#: ../gnome-panel/gnome-desktop-item-edit.c:194 msgid "Directory Properties" msgstr "Својства на директориумот" -#: ../gnome-panel/gnome-desktop-item-edit.c:180 ../gnome-panel/launcher.c:735 +#: ../gnome-panel/gnome-desktop-item-edit.c:177 +#: ../gnome-panel/launcher.c:732 msgid "Launcher Properties" msgstr "Својства на пуштачот" #: ../gnome-panel/gnome-panel.desktop.in.in.h:1 -msgid "" -"Launch other applications and provide various utilities to manage windows, " -"show the time, etc." -msgstr "" -"Пушти други апликации и овозможи разни услужни алатки за справување со " -"прозорци, прикажување на време итн." +msgid "Launch other applications and provide various utilities to manage windows, show the time, etc." +msgstr "Пушти други апликации и овозможи разни услужни алатки за справување со прозорци, прикажување на време итн." -#: ../gnome-panel/gnome-panel.desktop.in.in.h:2 ../gnome-panel/main.c:70 +#: ../gnome-panel/gnome-panel.desktop.in.in.h:2 +#: ../gnome-panel/main.c:87 msgid "Panel" msgstr "Панел" -#: ../gnome-panel/launcher.c:118 +#: ../gnome-panel/launcher.c:136 msgid "Could not show this URL" msgstr "Не можам да ја прикажам оваа адреса" -#: ../gnome-panel/launcher.c:119 +#: ../gnome-panel/launcher.c:137 msgid "No URL was specified." msgstr "Нема одредена адреса." -#: ../gnome-panel/launcher.c:227 +#: ../gnome-panel/launcher.c:219 msgid "Could not use dropped item" msgstr "Не можам да искористам пуштен предмет" -#: ../gnome-panel/launcher.c:423 +#: ../gnome-panel/launcher.c:417 #, c-format msgid "No URI provided for panel launcher desktop file\n" msgstr "Нема адреса дадена за десктоп датотеката на Пуштачот на програми\n" @@ -1418,1100 +1627,584 @@ #: ../gnome-panel/launcher.c:462 #, c-format msgid "Unable to open desktop file %s for panel launcher%s%s\n" -msgstr "" -"Не можам да ја отворам датотеката %s од работната околина за пуштачот " -"напанелот %s%s\n" +msgstr "Не можам да ја отворам датотеката %s од работната околина за пуштачот напанелот %s%s\n" -#: ../gnome-panel/launcher.c:801 +#: ../gnome-panel/launcher.c:796 msgid "_Launch" msgstr "_Пушти" -#: ../gnome-panel/launcher.c:840 -#, c-format -msgid "Key %s is not set, cannot load launcher\n" -msgstr "Копчето %s не е поставено, не можам да го вчитам пуштачот\n" +#: ../gnome-panel/launcher.c:802 +#: ../gnome-panel/panel-action-button.c:139 +#: ../gnome-panel/panel-context-menu.c:133 +msgid "_Properties" +msgstr "_Својства" -#: ../gnome-panel/launcher.c:964 ../gnome-panel/panel-ditem-editor.c:1350 -#: ../gnome-panel/panel-ditem-editor.c:1384 -#: ../gnome-panel/panel-ditem-editor.c:1415 +#: ../gnome-panel/launcher.c:833 +#, c-format +#| msgid "Key %s is not set, cannot load launcher\n" +msgid "Launcher location is not set, cannot load launcher\n" +msgstr "Локацијата на пуштачот не е поставена, не можам да го вчитам пуштачот\n" + +#: ../gnome-panel/launcher.c:963 +#: ../gnome-panel/panel-ditem-editor.c:1357 +#: ../gnome-panel/panel-ditem-editor.c:1391 +#: ../gnome-panel/panel-ditem-editor.c:1422 msgid "Could not save launcher" msgstr "Не можам да го зачувам пуштачот" -#: ../gnome-panel/main.c:42 +#: ../gnome-panel/main.c:41 msgid "Replace a currently running panel" -msgstr "" - -#: ../gnome-panel/menu.c:1005 -msgid "Add this launcher to _panel" -msgstr "Додај го овој пуштач на _панелот" - -#: ../gnome-panel/menu.c:1012 -msgid "Add this launcher to _desktop" -msgstr "Додај го пуштачот на _работната површина" - -#: ../gnome-panel/menu.c:1024 -msgid "_Entire menu" -msgstr "_Цело мени" - -#: ../gnome-panel/menu.c:1029 -msgid "Add this as _drawer to panel" -msgstr "Додај го ова како _фиока на панелот" - -#: ../gnome-panel/menu.c:1036 -msgid "Add this as _menu to panel" -msgstr "Додај го ова како _мени на панелот" +msgstr "Замени го панелот кој тековно се извршува" -#: ../gnome-panel/nothing.cP:601 -#, c-format -msgid "GAME OVER at level %d!" -msgstr "ИГРАТА ЗАВРШИ на нивото %d!" - -#. Translators: the first and third strings are similar to a -#. * title, and the second string is a small information text. -#. * The spaces are there only to separate all the strings, so -#. try to keep them as is. -#: ../gnome-panel/nothing.cP:608 -#, c-format -msgid "%1$s %2$s %3$s" -msgstr "%1$s %2$s %3$s" - -#: ../gnome-panel/nothing.cP:609 -msgid "Press 'q' to quit" -msgstr "Притиснете на „q“ за излез" - -#: ../gnome-panel/nothing.cP:614 -msgid "Paused" -msgstr "Паузирано" - -#. Translators: the first string is a title and the second -#. * string is a small information text. -#: ../gnome-panel/nothing.cP:617 ../gnome-panel/nothing.cP:628 -#, c-format -msgid "%1$s\t%2$s" -msgstr "%1$s\t%2$s" - -#: ../gnome-panel/nothing.cP:618 -msgid "Press 'p' to unpause" -msgstr "Притиснете на „p“ за продолжување" - -#: ../gnome-panel/nothing.cP:624 -#, c-format -msgid "Level: %s, Lives: %s" -msgstr "Ниво: %s, животи: %s" - -#: ../gnome-panel/nothing.cP:629 -msgid "Left/Right to move, Space to fire, 'p' to pause, 'q' to quit" -msgstr "Лево/десно за движење, space за пукање, „p“ за пауза, „q“ за излез" - -#: ../gnome-panel/nothing.cP:1369 -msgid "Killer GEGLs from Outer Space" -msgstr "Убиствени GEGL-и од вселената" +#: ../gnome-panel/panel-action-button.c:127 +msgid "_Lock Screen" +msgstr "_Заклучи екран" -#: ../gnome-panel/panel-action-button.c:129 +#: ../gnome-panel/panel-action-button.c:133 msgid "_Activate Screensaver" msgstr "_Активирај затишје" -#: ../gnome-panel/panel-action-button.c:135 -msgid "_Lock Screen" -msgstr "_Заклучи екран" +#: ../gnome-panel/panel-action-button.c:239 +#| msgid "Connect to Server..." +msgid "Connect to server" +msgstr "Поврзи се со сервер" -#: ../gnome-panel/panel-action-button.c:254 +#: ../gnome-panel/panel-action-button.c:263 msgid "Could not connect to server" msgstr "Не можам да се поврзам со серверот" -#: ../gnome-panel/panel-action-button.c:285 +#: ../gnome-panel/panel-action-button.c:293 msgid "Lock Screen" msgstr "Заклучи екран" -#: ../gnome-panel/panel-action-button.c:286 +#: ../gnome-panel/panel-action-button.c:294 msgid "Protect your computer from unauthorized use" msgstr "Заштитете го Вашиот компјутер од неовластено користење" #. when changing one of those two strings, don't forget to #. * update the ones in panel-menu-items.c (look for #. * "1" (msgctxt: "panel:showusername")) -#: ../gnome-panel/panel-action-button.c:300 +#: ../gnome-panel/panel-action-button.c:307 msgid "Log Out..." msgstr "Одјави се..." -#: ../gnome-panel/panel-action-button.c:301 +#: ../gnome-panel/panel-action-button.c:308 msgid "Log out of this session to log in as a different user" msgstr "Одјавете се од оваа сесија за да се најавите како друг корисник" -#: ../gnome-panel/panel-action-button.c:310 +#: ../gnome-panel/panel-action-button.c:316 msgid "Run Application..." msgstr "Изврши апликација..." -#: ../gnome-panel/panel-action-button.c:311 +#: ../gnome-panel/panel-action-button.c:317 msgid "Run an application by typing a command or choosing from a list" msgstr "Извршете апликација со внесување на команда или избирање од листата" -#: ../gnome-panel/panel-action-button.c:320 +#: ../gnome-panel/panel-action-button.c:325 msgid "Search for Files..." msgstr "Барај датотеки..." -#: ../gnome-panel/panel-action-button.c:321 +#: ../gnome-panel/panel-action-button.c:326 msgid "Locate documents and folders on this computer by name or content" msgstr "Лоцирајте документи и папки на овој компјутер по име или содржина" -#: ../gnome-panel/panel-action-button.c:329 -#: ../gnome-panel/panel-force-quit.c:221 +#: ../gnome-panel/panel-action-button.c:333 +#: ../gnome-panel/panel-force-quit.c:239 msgid "Force Quit" msgstr "Наметни излез" -#: ../gnome-panel/panel-action-button.c:330 +#: ../gnome-panel/panel-action-button.c:334 msgid "Force a misbehaving application to quit" msgstr "Наметни исклучување на апликација која што се однесува погрешно" #. FIXME icon -#: ../gnome-panel/panel-action-button.c:339 +#: ../gnome-panel/panel-action-button.c:342 msgid "Connect to Server..." msgstr "Поврзи се со сервер..." -#: ../gnome-panel/panel-action-button.c:340 +#: ../gnome-panel/panel-action-button.c:343 msgid "Connect to a remote computer or shared disk" msgstr "Врзете се за далечен компјутер или споделен диск" -#: ../gnome-panel/panel-action-button.c:348 +#: ../gnome-panel/panel-action-button.c:350 msgid "Shut Down..." msgstr "Исклучи..." -#: ../gnome-panel/panel-action-button.c:349 +#: ../gnome-panel/panel-action-button.c:351 msgid "Shut down the computer" msgstr "Исклучи го компјутерот" -#: ../gnome-panel/panel-addto.c:116 -msgid "Custom Application Launcher" -msgstr "Сопствен пуштач на апликации" - -#: ../gnome-panel/panel-addto.c:117 -msgid "Create a new launcher" -msgstr "Креирај нов пуштач на програми" - -#: ../gnome-panel/panel-addto.c:127 -msgid "Application Launcher..." -msgstr "Пуштач на апликации..." - -#: ../gnome-panel/panel-addto.c:128 -msgid "Copy a launcher from the applications menu" -msgstr "Копирај пуштач од менито со апликации" - -#: ../gnome-panel/panel-addto.c:142 ../gnome-panel/panel-menu-button.c:1081 +#: ../gnome-panel/panel-addto.c:145 +#: ../gnome-panel/panel-menu-button.c:966 msgid "Main Menu" msgstr "Главно мени" -#: ../gnome-panel/panel-addto.c:143 +#: ../gnome-panel/panel-addto.c:146 msgid "The main GNOME menu" msgstr "Главното мени на GNOME" -#: ../gnome-panel/panel-addto.c:153 +#: ../gnome-panel/panel-addto.c:155 msgid "Menu Bar" msgstr "Лента со мени" -#: ../gnome-panel/panel-addto.c:154 +#: ../gnome-panel/panel-addto.c:156 msgid "A custom menu bar" msgstr "Сопствена лента со мени" -#: ../gnome-panel/panel-addto.c:164 +#: ../gnome-panel/panel-addto.c:165 msgid "Separator" msgstr "Разделувач" -#: ../gnome-panel/panel-addto.c:165 +#: ../gnome-panel/panel-addto.c:166 msgid "A separator to organize the panel items" msgstr "Разделувач за организирање на предметите на панелот" +#: ../gnome-panel/panel-addto.c:175 +msgid "User menu" +msgstr "Корисничко мени" + #: ../gnome-panel/panel-addto.c:176 -msgid "A pop out drawer to store other items in" -msgstr "Скокачка фиока за складирање на други предмети" +msgid "Menu to change your settings and your online status" +msgstr "Мени за да ги менувате Вашите поставувања и онлајн статус" -#: ../gnome-panel/panel-addto.c:267 +#: ../gnome-panel/panel-addto.c:222 msgid "(empty)" msgstr "(празно)" -#: ../gnome-panel/panel-addto.c:410 -#: ../libpanel-applet/panel-test-applets.c:250 -#, c-format -msgid "query returned exception %s\n" -msgstr "барањето врати исклучок %s\n" +#: ../gnome-panel/panel-addto.c:422 +msgid "Custom Application Launcher" +msgstr "Сопствен пуштач на апликации" -#: ../gnome-panel/panel-addto.c:1069 -#, c-format -msgid "Find an _item to add to \"%s\":" -msgstr "Одберете _предмет за додавање на \"%s\":" +#: ../gnome-panel/panel-addto.c:423 +msgid "Create a new launcher" +msgstr "Креирај нов пуштач на програми" -#: ../gnome-panel/panel-addto.c:1073 -#, c-format -msgid "Add to Drawer" -msgstr "Додај во фиока" +#: ../gnome-panel/panel-addto.c:433 +msgid "Application Launcher..." +msgstr "Пуштач на апликации..." -#: ../gnome-panel/panel-addto.c:1075 -msgid "Find an _item to add to the drawer:" -msgstr "Најдете _предмет за да го додавање во фиоката:" +#: ../gnome-panel/panel-addto.c:434 +msgid "Copy a launcher from the applications menu" +msgstr "Копирај пуштач од менито со апликации" -#: ../gnome-panel/panel-addto.c:1077 +#: ../gnome-panel/panel-addto.c:1019 #, c-format -msgid "Add to Panel" -msgstr "Додај на панел" +msgid "Find an _item to add to \"%s\":" +msgstr "Одберете _предмет за додавање на \"%s\":" -#: ../gnome-panel/panel-addto.c:1079 +#: ../gnome-panel/panel-addto.c:1023 msgid "Find an _item to add to the panel:" msgstr "Изберете _предмет за да го додавање на панелот:" -#: ../gnome-panel/panel-applet-frame.c:844 -#, c-format -msgid "Exception from popup_menu '%s'\n" -msgstr "Исклучок од popup_menu %s\n" +#: ../gnome-panel/panel-addto.c:1026 +msgid "Add to Panel" +msgstr "Додај на панел" -#: ../gnome-panel/panel-applet-frame.c:969 +#: ../gnome-panel/panel-applet-frame.c:735 #, c-format msgid "\"%s\" has quit unexpectedly" msgstr "\"%s\" се исклучи неочекувано" -#: ../gnome-panel/panel-applet-frame.c:971 +#: ../gnome-panel/panel-applet-frame.c:737 msgid "Panel object has quit unexpectedly" msgstr "Објектот на панелот се исклучи неочекувано" -#: ../gnome-panel/panel-applet-frame.c:978 -msgid "" -"If you reload a panel object, it will automatically be added back to the " -"panel." -msgstr "" -"Ако вчитате објект од панелот повторно, тој автоматски ќе биде вратен на " -"панелот." +#: ../gnome-panel/panel-applet-frame.c:744 +msgid "If you reload a panel object, it will automatically be added back to the panel." +msgstr "Ако вчитате објект од панелот повторно, тој автоматски ќе биде вратен на панелот." -#: ../gnome-panel/panel-applet-frame.c:984 +#: ../gnome-panel/panel-applet-frame.c:750 msgid "_Don't Reload" msgstr "_Не освежувај" -#: ../gnome-panel/panel-applet-frame.c:985 +#: ../gnome-panel/panel-applet-frame.c:751 msgid "_Reload" msgstr "_Освежи" -#: ../gnome-panel/panel-applet-frame.c:1051 +#: ../gnome-panel/panel-applet-frame.c:901 #, c-format msgid "The panel encountered a problem while loading \"%s\"." msgstr "Панелот наиде на проблем додека се вчитуваше \"%s\"." -#: ../gnome-panel/panel-applet-frame.c:1067 +#: ../gnome-panel/panel-applet-frame.c:917 msgid "Do you want to delete the applet from your configuration?" msgstr "Дали сакате да го отстраните аплетот од Вашата конфигурација?" -#: ../gnome-panel/panel-applet-frame.c:1141 -msgid "Unable to obtain AppletShell interface from control\n" -msgstr "Не можам да го добијам интерфејсот од ApletShell контролата\n" - -#: ../gnome-panel/panel-context-menu.c:104 -msgid "And many, many others..." -msgstr "И многу, многу други ..." - -#: ../gnome-panel/panel-context-menu.c:130 -msgid "The GNOME Panel" -msgstr "Панел за GNOME" - -#: ../gnome-panel/panel-context-menu.c:133 -msgid "" -"This program is responsible for launching other applications and provides " -"useful utilities." -msgstr "" -"Оваа програма е одоговорна за подигнување на други апликации и нуди корисни " -"услужни алатки." - -#: ../gnome-panel/panel-context-menu.c:137 -msgid "About the GNOME Panel" -msgstr "За панелот за GNOME" - -#: ../gnome-panel/panel-context-menu.c:171 +#: ../gnome-panel/panel-context-menu.c:63 msgid "Cannot delete this panel" msgstr "Не можам да го избришам овој панел" -#: ../gnome-panel/panel-context-menu.c:172 +#: ../gnome-panel/panel-context-menu.c:64 msgid "You must always have at least one panel." msgstr "Секогаш мора да имате најмалку еден панел." -#: ../gnome-panel/panel-context-menu.c:205 +#: ../gnome-panel/panel-context-menu.c:122 msgid "_Add to Panel..." msgstr "_Додај на панел..." -#: ../gnome-panel/panel-context-menu.c:226 +#: ../gnome-panel/panel-context-menu.c:143 msgid "_Delete This Panel" msgstr "И_збриши го овој панел" -#: ../gnome-panel/panel-context-menu.c:241 +#: ../gnome-panel/panel-context-menu.c:158 msgid "_New Panel" msgstr "_Нов панел" -#: ../gnome-panel/panel-context-menu.c:293 -msgid "A_bout Panels" -msgstr "За _панелите..." - -#: ../gnome-panel/panel-ditem-editor.c:116 +#: ../gnome-panel/panel-ditem-editor.c:114 msgid "Application" msgstr "Апликација" -#: ../gnome-panel/panel-ditem-editor.c:118 +#: ../gnome-panel/panel-ditem-editor.c:116 msgid "Application in Terminal" msgstr "Апликација во терминал" -#: ../gnome-panel/panel-ditem-editor.c:120 +#: ../gnome-panel/panel-ditem-editor.c:118 msgid "Location" msgstr "Локација" #. Type -#: ../gnome-panel/panel-ditem-editor.c:622 +#: ../gnome-panel/panel-ditem-editor.c:618 msgid "_Type:" msgstr "_Тип:" #. Name -#: ../gnome-panel/panel-ditem-editor.c:629 +#: ../gnome-panel/panel-ditem-editor.c:625 msgid "_Name:" msgstr "_Име:" -#: ../gnome-panel/panel-ditem-editor.c:637 -msgid "Browse icons" -msgstr "Разгледај ги иконите" - -#: ../gnome-panel/panel-ditem-editor.c:655 +#: ../gnome-panel/panel-ditem-editor.c:652 msgid "_Browse..." msgstr "_Разгледај..." #. Comment -#: ../gnome-panel/panel-ditem-editor.c:662 +#: ../gnome-panel/panel-ditem-editor.c:659 msgid "Co_mment:" msgstr "Ко_ментар:" -#: ../gnome-panel/panel-ditem-editor.c:1024 +#: ../gnome-panel/panel-ditem-editor.c:1008 msgid "Choose an application..." msgstr "Одберете апликација..." -#: ../gnome-panel/panel-ditem-editor.c:1028 +#: ../gnome-panel/panel-ditem-editor.c:1012 msgid "Choose a file..." msgstr "Одберете датотека..." -#: ../gnome-panel/panel-ditem-editor.c:1153 +#: ../gnome-panel/panel-ditem-editor.c:1177 +#: ../gnome-panel/panel-ditem-editor.c:1186 msgid "Comm_and:" msgstr "Ком_анда:" -#: ../gnome-panel/panel-ditem-editor.c:1162 -msgid "_Command:" -msgstr "_Команда:" - -#: ../gnome-panel/panel-ditem-editor.c:1171 +#: ../gnome-panel/panel-ditem-editor.c:1195 msgid "_Location:" msgstr "_Локација:" -#: ../gnome-panel/panel-ditem-editor.c:1351 +#: ../gnome-panel/panel-ditem-editor.c:1358 msgid "The name of the launcher is not set." msgstr "Името на пуштачот не е поставено." -#: ../gnome-panel/panel-ditem-editor.c:1355 +#: ../gnome-panel/panel-ditem-editor.c:1362 msgid "Could not save directory properties" msgstr "Не можам да ги зачувам својствата на директориумот" -#: ../gnome-panel/panel-ditem-editor.c:1356 +#: ../gnome-panel/panel-ditem-editor.c:1363 msgid "The name of the directory is not set." msgstr "Името на директориумот не е поставено." -#: ../gnome-panel/panel-ditem-editor.c:1372 +#: ../gnome-panel/panel-ditem-editor.c:1379 msgid "The command of the launcher is not set." msgstr "Командата на пуштачот не е поставена." -#: ../gnome-panel/panel-ditem-editor.c:1375 +#: ../gnome-panel/panel-ditem-editor.c:1382 msgid "The location of the launcher is not set." msgstr "Локацијата на пуштачот не е поставена." -#: ../gnome-panel/panel-ditem-editor.c:1452 +#: ../gnome-panel/panel-ditem-editor.c:1459 msgid "Could not display help document" msgstr "Не можам да го прикажам документот за помош" -#: ../gnome-panel/panel-force-quit.c:76 -msgid "" -"Click on a window to force the application to quit. To cancel press ." -msgstr "" -"Притиснете на прозорецот за да предизвикате затворање на апликацијата. За да " -"откажете." +#: ../gnome-panel/panel-force-quit.c:77 +msgid "Click on a window to force the application to quit. To cancel press ." +msgstr "Притиснете на прозорецот за да предизвикате затворање на апликацијата. За да откажете." -#: ../gnome-panel/panel-force-quit.c:204 +#: ../gnome-panel/panel-force-quit.c:222 msgid "Force this application to exit?" msgstr "Да ја присилам оваа апликација да се исклучи?" -#: ../gnome-panel/panel-force-quit.c:207 -msgid "" -"If you choose to force an application to exit, any open documents in it will " -"be lost." -msgstr "" -"Ако изберете да ја присилите апликацијата да се исклучи сите отворени " -"документи ќе бидат изгубени." - -#: ../gnome-panel/panel-general.schemas.in.h:1 -msgid "" -"A boolean flag to indicate whether the user's previous configuration in /" -"apps/panel/profiles/default has been copied to the new location in /apps/" -"panel." -msgstr "" -"Boolean знаменце кое што индицира дали претходната конфигурација на " -"корисникот во /apps/panel/profiles/default е ископирана на новата локација " -"во /apps/panel." - -#: ../gnome-panel/panel-general.schemas.in.h:2 -msgid "" -"A list of panel IDs. Each ID identifies an individual toplevel panel. The " -"settings for each of these panels are stored in /apps/panel/toplevels/$(id)." -msgstr "" -"Листа со ID-а на панели. Секоj ID идентификува панел на највисокото ниво. " -"Поставувањата на секој од панелите се чуваат во /apps/panel/general/" -"$(profile)/toplevels/$(id)." - -#: ../gnome-panel/panel-general.schemas.in.h:3 -msgid "" -"A list of panel applet IDs. Each ID identifies an individual panel applet. " -"The settings for each of these applets are stored in /apps/panel/applets/" -"$(id)." -msgstr "" -"Листа со ID-а на панел аплети. Секоj ID идентификува посебен панел аплет. " -"Поставувањата на секој од аплетите се чуваат во /apps/panel/general/" -"$(profile)/applets/$(id)." - -#: ../gnome-panel/panel-general.schemas.in.h:4 -msgid "" -"A list of panel object IDs. Each ID identifies an individual panel object (e." -"g. a launcher, action button or menu button/bar). The settings for each of " -"these objects are stored in /apps/panel/objects/$(id)." -msgstr "" -"Листа со ID-а на панел објекти. Секоj ID идентификува посебен панел објект" -"(на пр. подигнувач, копче за акција, копче за мени). Поставувањата на секој " -"од објекти се чуваат во /apps/panel/general/$(profile)/objects/$(id)." - -#: ../gnome-panel/panel-general.schemas.in.h:5 -msgid "Enable autocompletion in \"Run Application\" dialog" -msgstr "Овозможете автоматско комплетирање во дијалогот „Изврши апликација“" - -#: ../gnome-panel/panel-general.schemas.in.h:6 -msgid "Enable program list in \"Run Application\" dialog" -msgstr "Овозможете ја листата на програми во дијалогот \"Изврши апликација\"" - -#: ../gnome-panel/panel-general.schemas.in.h:7 -msgid "Expand program list in \"Run Application\" dialog" -msgstr "Рашири ја листата на програми во дијалогот \"„Стартувај програма“\"" - -#: ../gnome-panel/panel-general.schemas.in.h:8 -msgid "" -"If true, autocompletion in the \"Run Application\" dialog is made available." -msgstr "" -"Ако е точно, автоматското комплетирање во дијалогот „Изврши апликација“ ќе " -"биде достапно." - -#: ../gnome-panel/panel-general.schemas.in.h:9 -msgid "" -"If true, the \"Known Applications\" listing in the \"Run Application\" " -"dialog is expanded when the dialog is opened. This key is only relevant if " -"the enable_program_list key is true." -msgstr "" -"Ако е точно, \"листата познати програми\" во дијалогот \"Изврши апликација\" " -"е отворена при отворање на дијалогот. Ова поДали листата ќе биде отворена " -"или не зависи од тоа дали приказот на дијалогот е контролоран од " -"show_program_list_settings. Апликации во изврши програм дијалог програма." - -#: ../gnome-panel/panel-general.schemas.in.h:10 -msgid "" -"If true, the \"Known Applications\" listing in the \"Run Application\" " -"dialog is made available. Whether or not the listing is expanded when the " -"dialog is shown is controlled by the show_program_list key." -msgstr "" -"Ако е точно,листата познати програми во дијалогот \"Изврши апликација\" е " -"достапна. Дали листата ќе биде отворена или не зависи од тоа дали приказот " -"на дијалогот е контролоран од show_program_list_settings." - -#: ../gnome-panel/panel-general.schemas.in.h:11 -msgid "Old profiles configuration migrated" -msgstr "Конфигурацијата од старите профили е мигрирана" - -#: ../gnome-panel/panel-general.schemas.in.h:12 -msgid "Panel ID list" -msgstr "Панел листа за идентификација" - -#: ../gnome-panel/panel-general.schemas.in.h:13 -msgid "Panel applet ID list" -msgstr "Панел аплет листа за идентификација" - -#: ../gnome-panel/panel-general.schemas.in.h:14 -msgid "Panel object ID list" -msgstr "Листа со идентификации на панел објекти" - -#: ../gnome-panel/panel-global.schemas.in.h:1 -msgid "" -"A list of applet IIDs that the panel will ignore. This way you can disable " -"certain applets from loading or showing up in the menu. For example to " -"disable the mini-commander applet add 'OAFIID:GNOME_MiniCommanderApplet' to " -"this list. The panel must be restarted for this to take effect." -msgstr "" -"Листа на IID кои што ќе ги игнорира панелот. На овој начин можете да " -"спречите одредени аплети да бидат вчитани или прикажани во менито. На " -"пример, за да го оневозможите аплетот mini-commander, додадете 'OAFIID:" -"GNOME_MiniCommanderApplet' на листата. Панелот мора да се рестартира за да " -"се применат промените." - -#: ../gnome-panel/panel-global.schemas.in.h:2 -msgid "Applet IIDs to disable from loading" -msgstr "ID на аплети кои што треба да бидат оневозможени при вчитување" - -#: ../gnome-panel/panel-global.schemas.in.h:3 -msgid "Autoclose drawer" -msgstr "Фиока што се затвора автоматски" - -#: ../gnome-panel/panel-global.schemas.in.h:4 -msgid "Complete panel lockdown" -msgstr "Целосно заклучување на панелот" - -#: ../gnome-panel/panel-global.schemas.in.h:5 -msgid "Confirm panel removal" -msgstr "Потврди го отстранувањето на панелот" - -#: ../gnome-panel/panel-global.schemas.in.h:6 -msgid "Deprecated" -msgstr "Заостанато" - -#: ../gnome-panel/panel-global.schemas.in.h:7 -msgid "Disable Force Quit" -msgstr "Оневозможи присилен излез" - -#: ../gnome-panel/panel-global.schemas.in.h:8 -msgid "Disable Lock Screen" -msgstr "Оневозможи заклучување на екран" - -#: ../gnome-panel/panel-global.schemas.in.h:9 -msgid "Disable Logging Out" -msgstr "Оневозможи одјава" - -#: ../gnome-panel/panel-global.schemas.in.h:10 -#: ../gnome-panel/panel-toplevel.schemas.in.h:9 -msgid "Enable animations" -msgstr "Вклучи анимација." - -#: ../gnome-panel/panel-global.schemas.in.h:11 -msgid "Enable tooltips" -msgstr "Овозможи совети" - -#: ../gnome-panel/panel-global.schemas.in.h:12 -msgid "Highlight launchers on mouseover" -msgstr "Осветлени пуштачи со глушецот врз нив" - -#: ../gnome-panel/panel-global.schemas.in.h:13 -msgid "" -"If true, a dialog is shown asking for confirmation if the user wants to " -"remove a panel." -msgstr "" -"Ако е точно, се покажува дијалог кој бара потврда за отстранување на панелот." - -#: ../gnome-panel/panel-global.schemas.in.h:14 -msgid "" -"If true, a drawer will automatically be closed when the user clicks a " -"launcher in it." -msgstr "" -"Ако е точно, фиоката ќе се затвори автоматски кога корисникот ќе кликне врз " -"неа." - -#: ../gnome-panel/panel-global.schemas.in.h:15 -msgid "" -"If true, a launcher is highlighted when the user moves the pointer over it." -msgstr "" -"Ако е точно, пуштачот е осветлен кога корисникот ќе ја донесе стрелката врз " -"него." - -#: ../gnome-panel/panel-global.schemas.in.h:16 -msgid "" -"If true, the panel will not allow a user to force an application to quit by " -"removing access to the force quit button." -msgstr "" -"Ако е точно, панелот нема да му дозволи на корисникот да форсира исклучување " -"на апликација со отстранување на пристапот до копчето за форсирање." - -#: ../gnome-panel/panel-global.schemas.in.h:17 -msgid "" -"If true, the panel will not allow a user to lock their screen, by removing " -"access to the lock screen menu entries." -msgstr "" -"Ако е точно, панелот нема да му дозволи на корисникот да го заклучи неговиот " -"екран со отстранување на пристапот до записите на менито за заклучен екран." - -#: ../gnome-panel/panel-global.schemas.in.h:18 -msgid "" -"If true, the panel will not allow a user to log out, by removing access to " -"the log out menu entries." -msgstr "" -"Ако е точно, панелот нема да му дозволи на корисникот да се одјави со " -"отстранување на пристапот до записите на менито за одјава." - -#: ../gnome-panel/panel-global.schemas.in.h:19 -msgid "" -"If true, the panel will not allow any changes to the configuration of the " -"panel. Individual applets may need to be locked down separately however. The " -"panel must be restarted for this to take effect." -msgstr "" -"Ако е точно, панелот нема да дозволува никакви промени во неговата " -"конфигурација.Како и да е, индивидуалните аплети можеби ќе мораат да бидат " -"заклучувани посебно. За да работи ова, прво морате да го рестартирате " -"панелот." - -#: ../gnome-panel/panel-global.schemas.in.h:20 -msgid "If true, tooltips are shown for objects in panels." -msgstr "Ако е точно, советите се прикажуваат како објекти на панелот." +#: ../gnome-panel/panel-force-quit.c:225 +#| msgid "" +#| "If you choose to force an application to exit, any open documents in it " +#| "will be lost." +msgid "If you choose to force an application to exit, unsaved changes in any open documents in it might get lost." +msgstr "Ако изберете да ја присилите апликацијата да се исклучи, сите отворени документи ќе бидат изгубени." + +#: ../gnome-panel/panel-layout.c:1197 +#: ../gnome-panel/panel-layout.c:1211 +#, c-format +#| msgid "Cannot delete this panel" +msgid "Cannot create initial panel layout.\n" +msgstr "Не можам да креирам почетен распоред на панелот.\n" -#: ../gnome-panel/panel-menu-bar.c:106 +#: ../gnome-panel/panel-menu-bar.c:91 msgid "Browse and run installed applications" msgstr "Разгледај и пушти инсталирани апликации" -#: ../gnome-panel/panel-menu-bar.c:108 +#: ../gnome-panel/panel-menu-bar.c:93 msgid "Access documents, folders and network places" msgstr "Пристапете на документи, папки и мрежни места" -#: ../gnome-panel/panel-menu-bar.c:110 -msgid "Change desktop appearance and behavior, get help, or log out" -msgstr "" -"Сменете го однесувањето и изгледот на работната површина, побарајте помош " -"или одјавете се" - -#: ../gnome-panel/panel-menu-bar.c:145 +#: ../gnome-panel/panel-menu-bar.c:124 msgid "Applications" msgstr "Апликации" -#: ../gnome-panel/panel-menu-bar.c:351 ../gnome-panel/panel-menu-button.c:668 +#: ../gnome-panel/panel-menu-bar.c:226 +#: ../gnome-panel/panel-menu-button.c:562 msgid "_Edit Menus" msgstr "_Уреди менија" -#: ../gnome-panel/panel-menu-items.c:394 +#: ../gnome-panel/panel-menu-bar.c:233 +msgid "_Help" +msgstr "_Помош" + +#: ../gnome-panel/panel-menu-items.c:491 +#| msgid "Switcher" +msgid "Switch User" +msgstr "Смени корисник" + +#: ../gnome-panel/panel-menu-items.c:622 msgid "Bookmarks" msgstr "Обележувачи" #. Translators: %s is a URI -#: ../gnome-panel/panel-menu-items.c:416 ../gnome-panel/panel.c:534 +#: ../gnome-panel/panel-menu-items.c:646 +#: ../gnome-panel/panel.c:596 #, c-format msgid "Open '%s'" msgstr "Отвори %s" -#: ../gnome-panel/panel-menu-items.c:484 +#: ../gnome-panel/panel-menu-items.c:717 #, c-format msgid "Unable to scan %s for media changes" msgstr "Не можам да го скенирам %s за промени на медиумите" -#: ../gnome-panel/panel-menu-items.c:527 +#: ../gnome-panel/panel-menu-items.c:759 #, c-format msgid "Rescan %s" msgstr "Повторно скенирај го %s" -#: ../gnome-panel/panel-menu-items.c:564 +#: ../gnome-panel/panel-menu-items.c:796 #, c-format msgid "Unable to mount %s" msgstr "Не можам да го монтирам %s" -#: ../gnome-panel/panel-menu-items.c:627 +#: ../gnome-panel/panel-menu-items.c:858 #, c-format msgid "Mount %s" msgstr "Монтирај го %s" -#: ../gnome-panel/panel-menu-items.c:830 +#: ../gnome-panel/panel-menu-items.c:1066 msgid "Removable Media" msgstr "Преносни уреди" -#: ../gnome-panel/panel-menu-items.c:911 +#: ../gnome-panel/panel-menu-items.c:1157 msgid "Network Places" msgstr "Мрежни места" -#: ../gnome-panel/panel-menu-items.c:950 +#. is_exec? +#. exec +#. name +#: ../gnome-panel/panel-menu-items.c:1201 +#: ../gnome-panel/panel.c:644 msgid "Open your personal folder" msgstr "Отворете ја Вашата лична папка" #. Translators: Desktop is used here as in #. * "Desktop Folder" (this is not the Desktop #. * environment). -#: ../gnome-panel/panel-menu-items.c:969 -#, fuzzy +#: ../gnome-panel/panel-menu-items.c:1221 #| msgid "Show Desktop" msgctxt "Desktop Folder" msgid "Desktop" -msgstr "Покажи копче за криење" +msgstr "Работна површина" -#: ../gnome-panel/panel-menu-items.c:970 +#: ../gnome-panel/panel-menu-items.c:1222 msgid "Open the contents of your desktop in a folder" msgstr "Отворете је содржината на Вашата работна површина" -#: ../gnome-panel/panel-menu-items.c:1358 +#. is_exec? +#. exec +#: ../gnome-panel/panel-menu-items.c:1237 +#: ../gnome-panel/panel.c:653 +#| msgid "Computer Clock" +msgid "Computer" +msgstr "Компјутер" + +#. name +#: ../gnome-panel/panel-menu-items.c:1243 +#: ../gnome-panel/panel.c:654 +msgid "Browse all local and remote disks and folders accessible from this computer" +msgstr "Прелистај ги сите локални и оддалечени дискови и папки пристапни од овој компјутер" + +#. is_exec? +#. exec +#: ../gnome-panel/panel-menu-items.c:1253 +#: ../gnome-panel/panel.c:661 +#| msgid "Network Places" +msgid "Network" +msgstr "Мрежа" + +#. name +#: ../gnome-panel/panel-menu-items.c:1254 +#: ../gnome-panel/panel.c:662 +msgid "Browse bookmarked and local network locations" +msgstr "Прелистај ги обележаните локации и локациите од локалната мрежа" + +#: ../gnome-panel/panel-menu-items.c:1359 +msgid "Available" +msgstr "Достапен" + +#: ../gnome-panel/panel-menu-items.c:1369 +msgid "Busy" +msgstr "Зафатен" + +#: ../gnome-panel/panel-menu-items.c:1628 msgid "Places" msgstr "Места" -#: ../gnome-panel/panel-menu-items.c:1387 -msgid "System" -msgstr "Систем" - -#. Below this, we only have log out/shutdown items -#. Translators: translate "1" (msgctxt: "panel:showusername") to anything -#. * but "1" if "Log Out %s" doesn't make any sense in your -#. * language (where %s is a username). -#. -#: ../gnome-panel/panel-menu-items.c:1468 -msgctxt "panel:showusername" -msgid "1" -msgstr "" - -#. keep those strings in sync with the ones in -#. * panel-action-button.c -#. Translators: this string is used ONLY if you translated -#. * "1" (msgctxt: "panel:showusername") to "1" -#: ../gnome-panel/panel-menu-items.c:1480 -#, c-format -msgid "Log Out %s..." -msgstr "Одјави се %s..." - -#. Translators: this string is used ONLY if you translated -#. * "1" (msgctxt: "panel:showusername") to "1" -#: ../gnome-panel/panel-menu-items.c:1484 -#, c-format -msgid "Log out %s of this session to log in as a different user" -msgstr "(%s) Одјавете се од оваа сесија за да се најавите како друг корисник" - -#: ../gnome-panel/panel-object.schemas.in.h:1 -msgid "Action button type" -msgstr "Копче за тип на дејство" - -#: ../gnome-panel/panel-object.schemas.in.h:2 -msgid "Applet Bonobo IID" -msgstr "IID за аплетот на Bonobo" - -#: ../gnome-panel/panel-object.schemas.in.h:3 -msgid "Icon used for object's button" -msgstr "Иконата користена за објектот на копчето" - -#: ../gnome-panel/panel-object.schemas.in.h:4 -msgid "" -"If true, the custom_icon key is used as a custom icon for the button. If " -"false, the custom_icon key is ignored. This key is only relevant if the " -"object_type key is \"menu-object\" or \"drawer-object\"." -msgstr "" -"Ако е точно, сопствена_икона поставката се користи како своја икона за " -"копче, ако е неточно, сопствена_икона се игнорира. Оваа поставка се зема во " -"предвид само ако типот на објект е \"мени-објект\" или \"фиока-објект\"." - -#: ../gnome-panel/panel-object.schemas.in.h:5 -msgid "" -"If true, the menu_path key is used as the path from which the menu contents " -"should be constructed. If false, the menu_path key is ignored. This key is " -"only relevant if the object_type key is \"menu-object\"." -msgstr "" -"Ако е точно, копчето за патеката на менито се користи како патека од која се " -"конструира менито. Ако е неточно копчето за патеката на менито се игнорира. " -"Ова копче се зема во предвид само ако \"типот-на-објект\" е \"мени-објект\"." - -#: ../gnome-panel/panel-object.schemas.in.h:6 -msgid "" -"If true, the position of the object is interpreted relative to the right (or " -"bottom if vertical) edge of the panel." -msgstr "" -"Ако е точно, позицијата на објектот се разгледува релативно од десниот (или " -"долниот, ако е вертикален) раб на панелот." - -#: ../gnome-panel/panel-object.schemas.in.h:7 -msgid "" -"If true, the user may not move the applet without first unlocking the object " -"using the \"Unlock\" menuitem." -msgstr "" -"Ако е точно, корисникот можеби нема да може да го помрдне аплетот без " -"претходно да го отклучи објектот користејќи \"Отклучи\"." - -#: ../gnome-panel/panel-object.schemas.in.h:8 -msgid "Interpret position relative to bottom/right edge" -msgstr "Интерпретирај ја позицијата релативно во однос на десниот-долен раб" - -#: ../gnome-panel/panel-object.schemas.in.h:9 -msgid "Launcher location" -msgstr "Локација на пуштачот" - -#: ../gnome-panel/panel-object.schemas.in.h:10 -msgid "Lock the object to the panel" -msgstr "Заклучи го објектот на панелот" - -#: ../gnome-panel/panel-object.schemas.in.h:11 -msgid "Menu content path" -msgstr "Патека до содржината на менито" - -#: ../gnome-panel/panel-object.schemas.in.h:12 -msgid "Object's position on the panel" -msgstr "Позицијата на објектот на панелот" - -#: ../gnome-panel/panel-object.schemas.in.h:13 -msgid "Panel attached to drawer" -msgstr "Панелот прикачен на фиоката" - -#: ../gnome-panel/panel-object.schemas.in.h:14 -msgid "Panel object type" -msgstr "Тип на објект за панелот" - -#: ../gnome-panel/panel-object.schemas.in.h:15 -msgid "" -"The Bonobo implementation ID of the applet - e.g. \"OAFIID:GNOME_ClockApplet" -"\". This key is only relevant if the object_type key is \"bonobo-applet\"." -msgstr "" -"Bonobo имплементираната индетификација на аплетот - пример \"OAFIID:" -"GNOME_ClockApplet\". Овие подесувања ќе одговараат само ако типот на " -"објектот е \"bonobo-applet\"." - -#: ../gnome-panel/panel-object.schemas.in.h:16 -msgid "" -"The action type this button represents. Possible values are \"lock\", " -"\"logout\", \"run\", \"search\" and \"screenshot\". This key is only " -"relevant if the object_type key is \"action-applet\"." -msgstr "" -"Типот на дејство што го извршува ова копче. Можни вредности се \"lock\", " -"\"logout\", \"run\", \"search\" и \"screenshot\". Овие подесувања ќе " -"одговараат само ако типот на објектот е \"action-applet\"." - -#: ../gnome-panel/panel-object.schemas.in.h:17 -msgid "" -"The identifier of the panel attached to this drawer. This key is only " -"relevant if the object_type key is \"drawer-object\"." -msgstr "" -"Идентификаторот на панелот прикачен на овој цртач. Овие подесувања ќе " -"одговараат само ако типот на објектот е \"drawer-object\"." - -#: ../gnome-panel/panel-object.schemas.in.h:18 -msgid "The identifier of the toplevel panel which contains this object." -msgstr "Идентификаторот на врвот од панелот кој содржи објект." - -#: ../gnome-panel/panel-object.schemas.in.h:19 -msgid "" -"The location of the .desktop file describing the launcher. This key is only " -"relevant if the object_type key is \"launcher-object\"." -msgstr "" -"Локацијата на датотеката на вклучувачот на работната површина. Овие " -"подесувања ќе одговараат само ако типот на објектот е ж\"вклучувачки објект\"" - -#: ../gnome-panel/panel-object.schemas.in.h:20 -msgid "" -"The location of the image file used as the icon for the object's button. " -"This key is only relevant if the object_type key is \"drawer-object\" or " -"\"menu-object\" and the use_custom_icon key is true." -msgstr "" -"Локацијата на сликата е користена како икона на копчето. Овие подесувања ќе " -"одговараат само ако типот на објектот е \"цртачки-објект\" или \"мени-објект" -"\" и доколку користената_вобичаена _икона е вистинита." - -#: ../gnome-panel/panel-object.schemas.in.h:21 -msgid "" -"The path from which the menu contents is contructed. This key is only " -"relevant if the use_menu_path key is true and the object_type key is \"menu-" -"object\"." -msgstr "" -"Патека од каде елементите на менито се создаваат. Оваа поставка се зема во " -"предвид само ако use_menu_path е точно и object_type е мени-објект" - -#: ../gnome-panel/panel-object.schemas.in.h:22 -msgid "" -"The position of this panel object. The position is specified by the number " -"of pixels from the left (or top if vertical) panel edge." -msgstr "" -"Позиција на панел објектот. Позицијата е одредена од бројот на пиксели од " -"лево (или од горе ако е вертикален) од работ на панелот." - -#: ../gnome-panel/panel-object.schemas.in.h:23 -msgid "" -"The text to display in a tooltip for this drawer or this menu. This key is " -"only relevant if the object_type key is \"drawer-object\" or \"menu-object\"." -msgstr "" -"Текст за приказ како совет во оваа фиока или мени. Ова подесување се зема во " -"предвид само ако типот на објектот е \"објект-фиока\" \"или објект-мени\"." - -#: ../gnome-panel/panel-object.schemas.in.h:24 -msgid "" -"The type of this panel object. Possible values are \"drawer-object\", \"menu-" -"object\", \"launcher-object\", \"bonobo-applet\", \"action-applet\" and " -"\"menu-bar\"." -msgstr "" -"Типот на овој панел-објект. Има неколку можни вредности - \"цртачки-објект" -"\", \"мени-објект\", \"вклучувачки-објект\", \"bonobo-аплет\", \"акција-аплет" -"\" и \"лента со мени\"." - -#: ../gnome-panel/panel-object.schemas.in.h:25 -msgid "Tooltip displayed for drawer or menu" -msgstr "Совети прикажани за фиоката или менито" - -#: ../gnome-panel/panel-object.schemas.in.h:26 -msgid "Toplevel panel containing object" -msgstr "Панел што го содржи објектот" - -#: ../gnome-panel/panel-object.schemas.in.h:27 -msgid "Use custom icon for object's button" -msgstr "Користи сопствена икона за ова копче" - -#: ../gnome-panel/panel-object.schemas.in.h:28 -msgid "Use custom path for menu contents" -msgstr "Користи сопствена патека за содржината на менијата" - -#: ../gnome-panel/panel-profile.c:768 ../gnome-panel/panel-profile.c:795 -#: ../gnome-panel/panel-profile.c:831 ../gnome-panel/panel-profile.c:1696 -#, c-format -msgid "Error reading GConf string value '%s': %s" -msgstr "Грешка при читање на GConf текстуална вредност %s: %s" - -#. we need to do this since the key was added in 2.19 and * the default value returned when the key is not set * (for people coming from older versions) is 0, which * is not what we want. -#: ../gnome-panel/panel-profile.c:810 ../gnome-panel/panel-profile.c:1592 -#: ../gnome-panel/panel-profile.c:1665 ../gnome-panel/panel-profile.c:1747 -#, c-format -msgid "Error reading GConf integer value '%s': %s" -msgstr "Грешка при читање на GConf целобројна вредност %s: %s" - -#: ../gnome-panel/panel-profile.c:1602 -#, c-format -msgid "" -"Panel '%s' is set to be displayed on screen %d which is not currently " -"available. Not loading this panel." -msgstr "" -"Панелот %s e поставен да се прикаже на екранот %d кој моментално не е " -"достапен. Не го вчитувај овој панел." - -#: ../gnome-panel/panel-profile.c:1680 -#, c-format -msgid "Error reading GConf boolean value '%s': %s" -msgstr "Грешка при читање на GConf boolean вредност %s: %s" - -#: ../gnome-panel/panel-properties-dialog.c:128 -#: ../libpanel-applet/panel-test-applets.c:54 +#: ../gnome-panel/panel-properties-dialog.c:81 +#: ../gnome-panel/panel-test-applets.c:55 msgctxt "Orientation" msgid "Top" -msgstr "" +msgstr "Горе" -#: ../gnome-panel/panel-properties-dialog.c:129 -#: ../libpanel-applet/panel-test-applets.c:55 +#: ../gnome-panel/panel-properties-dialog.c:82 +#: ../gnome-panel/panel-test-applets.c:56 msgctxt "Orientation" msgid "Bottom" -msgstr "" +msgstr "Долу" -#: ../gnome-panel/panel-properties-dialog.c:130 -#: ../libpanel-applet/panel-test-applets.c:56 +#: ../gnome-panel/panel-properties-dialog.c:83 +#: ../gnome-panel/panel-test-applets.c:57 msgctxt "Orientation" msgid "Left" -msgstr "" +msgstr "Лево" -#: ../gnome-panel/panel-properties-dialog.c:131 -#: ../libpanel-applet/panel-test-applets.c:57 +#: ../gnome-panel/panel-properties-dialog.c:84 +#: ../gnome-panel/panel-test-applets.c:58 msgctxt "Orientation" msgid "Right" -msgstr "" - -#: ../gnome-panel/panel-properties-dialog.c:949 -msgid "Drawer Properties" -msgstr "Својства на фиоката" +msgstr "Десно" -#: ../gnome-panel/panel-properties-dialog.c:1057 -#: ../gnome-panel/panel-run-dialog.c:1928 +#: ../gnome-panel/panel-properties-dialog.c:821 +#: ../gnome-panel/panel-run-dialog.c:1896 #, c-format -msgid "Unable to load file '%s'." -msgstr "Не успеав да ја вчитам сликата '%s'." +#| msgid "Unable to load file '%s'." +msgid "Unable to load file '%s': %s." +msgstr "Не можев да ја вчитам датотеката „%s“: %s." -#: ../gnome-panel/panel-properties-dialog.c:1062 +#: ../gnome-panel/panel-properties-dialog.c:827 msgid "Could not display properties dialog" msgstr "Не можам да го прикажам дијалогот со својства" -#: ../gnome-panel/panel-properties-dialog.glade.h:2 +#: ../gnome-panel/panel-properties-dialog.ui.h:2 msgid "Opaque" msgstr " Матно" -#: ../gnome-panel/panel-properties-dialog.glade.h:3 +#: ../gnome-panel/panel-properties-dialog.ui.h:3 msgid "Transparent" msgstr "Транспаренто" -#: ../gnome-panel/panel-properties-dialog.glade.h:4 +#: ../gnome-panel/panel-properties-dialog.ui.h:4 msgid "Arro_ws on hide buttons" msgstr "Пок_ажувај стрелки на копчињата за криење" -#: ../gnome-panel/panel-properties-dialog.glade.h:5 +#: ../gnome-panel/panel-properties-dialog.ui.h:5 msgid "Background" msgstr "Позадина" -#: ../gnome-panel/panel-properties-dialog.glade.h:6 +#: ../gnome-panel/panel-properties-dialog.ui.h:6 msgid "Background _image:" msgstr "Слика за _позадината:" -#: ../gnome-panel/panel-properties-dialog.glade.h:7 +#: ../gnome-panel/panel-properties-dialog.ui.h:7 msgid "Co_lor:" msgstr "Бо_ја:" -#: ../gnome-panel/panel-properties-dialog.glade.h:8 +#: ../gnome-panel/panel-properties-dialog.ui.h:8 msgid "E_xpand" msgstr "З_големи" -#: ../gnome-panel/panel-properties-dialog.glade.h:10 +#: ../gnome-panel/panel-properties-dialog.ui.h:10 msgid "Image Background Details" msgstr "Детали за сликата во позадина" -#: ../gnome-panel/panel-properties-dialog.glade.h:11 +#: ../gnome-panel/panel-properties-dialog.ui.h:11 msgid "Panel Properties" msgstr "Својства на панелот" -#: ../gnome-panel/panel-properties-dialog.glade.h:12 +#: ../gnome-panel/panel-properties-dialog.ui.h:12 msgid "Pick a color" msgstr "Одбери боја" -#: ../gnome-panel/panel-properties-dialog.glade.h:13 +#: ../gnome-panel/panel-properties-dialog.ui.h:13 msgid "Rotate image when panel is _vertical" msgstr "Ротирај ја сликата кога панелот е вертикален" -#: ../gnome-panel/panel-properties-dialog.glade.h:14 +#: ../gnome-panel/panel-properties-dialog.ui.h:14 msgid "S_tyle:" msgstr "С_тил:" -#: ../gnome-panel/panel-properties-dialog.glade.h:15 +#: ../gnome-panel/panel-properties-dialog.ui.h:15 msgid "Select background" msgstr "Одберете позадина" -#: ../gnome-panel/panel-properties-dialog.glade.h:16 +#: ../gnome-panel/panel-properties-dialog.ui.h:16 msgid "Show hide _buttons" msgstr "Покажи ги _копчињата за криење" -#: ../gnome-panel/panel-properties-dialog.glade.h:17 +#: ../gnome-panel/panel-properties-dialog.ui.h:17 msgid "Solid c_olor" msgstr "Полна _боја" -#: ../gnome-panel/panel-properties-dialog.glade.h:18 +#: ../gnome-panel/panel-properties-dialog.ui.h:18 msgid "Some of these properties are locked down" msgstr "Некои од овие својства се заклучени" -#: ../gnome-panel/panel-properties-dialog.glade.h:19 +#: ../gnome-panel/panel-properties-dialog.ui.h:19 msgid "St_retch" msgstr "Ра_звлечи" -#: ../gnome-panel/panel-properties-dialog.glade.h:20 +#: ../gnome-panel/panel-properties-dialog.ui.h:20 msgid "_Autohide" msgstr "_Автоматско криење" -#: ../gnome-panel/panel-properties-dialog.glade.h:21 -msgid "_Icon:" -msgstr "_Икона:" - -#: ../gnome-panel/panel-properties-dialog.glade.h:22 +#: ../gnome-panel/panel-properties-dialog.ui.h:21 msgid "_None (use system theme)" msgstr "_Ништо (користи системска тема)" -#: ../gnome-panel/panel-properties-dialog.glade.h:23 -#: ../libpanel-applet/panel-test-applets.glade.h:4 +#: ../gnome-panel/panel-properties-dialog.ui.h:22 +#: ../gnome-panel/panel-test-applets.ui.h:4 msgid "_Orientation:" msgstr "_Ориентација:" -#: ../gnome-panel/panel-properties-dialog.glade.h:24 +#: ../gnome-panel/panel-properties-dialog.ui.h:23 msgid "_Scale" msgstr "_Скалирај" -#: ../gnome-panel/panel-properties-dialog.glade.h:25 -#: ../libpanel-applet/panel-test-applets.glade.h:6 +#: ../gnome-panel/panel-properties-dialog.ui.h:24 +#: ../gnome-panel/panel-test-applets.ui.h:6 msgid "_Size:" msgstr "_Големина:" -#: ../gnome-panel/panel-properties-dialog.glade.h:26 +#: ../gnome-panel/panel-properties-dialog.ui.h:25 msgid "_Tile" msgstr "_Ситно" -#: ../gnome-panel/panel-properties-dialog.glade.h:27 +#: ../gnome-panel/panel-properties-dialog.ui.h:26 msgid "pixels" msgstr "пиксели" -#: ../gnome-panel/panel-recent.c:78 ../gnome-panel/panel-recent.c:88 +#: ../gnome-panel/panel-recent.c:78 +#: ../gnome-panel/panel-recent.c:88 #, c-format msgid "Could not open recently used document \"%s\"" msgstr "Не можам да го отворам скорешниот документ \"%s\"" @@ -2535,7 +2228,7 @@ "• Сите предмети од менито Дејства → Скорешни документи.\n" "• Сите предмети од листата на скорешни документи за сите апликации." -#: ../gnome-panel/panel-recent.c:161 ../gnome-panel/panel-recent.c:235 +#: ../gnome-panel/panel-recent.c:161 msgid "Clear Recent Documents" msgstr "Исчисти ги скорешните документи" @@ -2543,738 +2236,847 @@ msgid "Recent Documents" msgstr "Скорешни документи" +#: ../gnome-panel/panel-recent.c:235 +#| msgid "Clear Recent Documents" +msgid "Clear Recent Documents..." +msgstr "Исчисти ги скорешните документи..." + #: ../gnome-panel/panel-recent.c:237 msgid "Clear all items from the recent documents list" msgstr "Исчисти ја листата на неодамнешни документи" -#: ../gnome-panel/panel-run-dialog.c:325 +#: ../gnome-panel/panel-run-dialog.c:361 #, c-format msgid "Could not run command '%s'" msgstr "Не можам да ја извршам командата '%s'" -#: ../gnome-panel/panel-run-dialog.c:378 +#: ../gnome-panel/panel-run-dialog.c:409 #, c-format msgid "Could not convert '%s' from UTF-8" msgstr "Не можам да го конвертирам'%s' од UTF-8" -#: ../gnome-panel/panel-run-dialog.c:1186 +#: ../gnome-panel/panel-run-dialog.c:1160 msgid "Choose a file to append to the command..." msgstr "Изберете датотека за припојување со командата..." -#: ../gnome-panel/panel-run-dialog.c:1562 -#: ../gnome-panel/panel-run-dialog.glade.h:10 +#: ../gnome-panel/panel-run-dialog.c:1543 +#: ../gnome-panel/panel-run-dialog.ui.h:8 msgid "Select an application to view its description." msgstr "Изберете апликација за да го видите нејзиниот опис." -#: ../gnome-panel/panel-run-dialog.c:1600 +#: ../gnome-panel/panel-run-dialog.c:1581 #, c-format msgid "Will run command: '%s'" msgstr "Ќе ја стартува командата: '%s'" -#: ../gnome-panel/panel-run-dialog.c:1631 +#: ../gnome-panel/panel-run-dialog.c:1614 #, c-format msgid "URI list dropped on run dialog had wrong format (%d) or length (%d)\n" -msgstr "" -"Листата на адреси падна пред дијалогот за извршување поради погрешен формат " -"(%d) или поради должината (%d)\n" +msgstr "Листата на адреси падна пред дијалогот за извршување поради погрешен формат (%d) или поради должината (%d)\n" -#: ../gnome-panel/panel-run-dialog.c:1932 +#: ../gnome-panel/panel-run-dialog.c:1901 msgid "Could not display run dialog" msgstr "Не можам да го прикажам дијалогот за извршување" -#: ../gnome-panel/panel-run-dialog.glade.h:1 -msgid "" -"Click this button to browse for a file whose name to append to the command " -"string." -msgstr "" -"Кликнете на копчето за да побарате датотека чие име е припоено за командниот " -"стринг." - -#: ../gnome-panel/panel-run-dialog.glade.h:2 -msgid "" -"Click this button to run the selected application or the command in the " -"command entry field." -msgstr "" -"Кликнете на копчето да ја извршите избраната апликација или командата во " -"полето за извршување." +#: ../gnome-panel/panel-run-dialog.ui.h:1 +msgid "Click this button to browse for a file whose name to append to the command string." +msgstr "Кликнете на копчето за да побарате датотека чие име е припоено за командниот стринг." + +#: ../gnome-panel/panel-run-dialog.ui.h:2 +msgid "Click this button to run the selected application or the command in the command entry field." +msgstr "Кликнете на копчето да ја извршите избраната апликација или командата во полето за извршување." -#: ../gnome-panel/panel-run-dialog.glade.h:3 -msgid "Command entry" -msgstr "Команда за извршување" - -#: ../gnome-panel/panel-run-dialog.glade.h:4 +#: ../gnome-panel/panel-run-dialog.ui.h:3 msgid "Command icon" msgstr "Командна икона" -#: ../gnome-panel/panel-run-dialog.glade.h:5 -msgid "Enter a command string here to run it." -msgstr "Внеси команден стринг овде за да го извршиш." - -#: ../gnome-panel/panel-run-dialog.glade.h:6 +#: ../gnome-panel/panel-run-dialog.ui.h:4 msgid "List of known applications" msgstr "Листа на познати апликации" -#: ../gnome-panel/panel-run-dialog.glade.h:7 +#: ../gnome-panel/panel-run-dialog.ui.h:5 msgid "Run Application" msgstr "Изврши апликација" -#: ../gnome-panel/panel-run-dialog.glade.h:8 +#: ../gnome-panel/panel-run-dialog.ui.h:6 msgid "Run in _terminal" msgstr "Изврши во _терминал" -#: ../gnome-panel/panel-run-dialog.glade.h:9 +#: ../gnome-panel/panel-run-dialog.ui.h:7 msgid "Run with _file..." msgstr "Изврши со _датотека..." -#: ../gnome-panel/panel-run-dialog.glade.h:11 +#: ../gnome-panel/panel-run-dialog.ui.h:9 msgid "Select this box to run the command in a terminal window." -msgstr "" -"Изберете ја оваa кутија за да ја извршите командата во терминален прозорец." +msgstr "Изберете ја оваa кутија за да ја извршите командата во терминален прозорец." -#: ../gnome-panel/panel-run-dialog.glade.h:12 +#: ../gnome-panel/panel-run-dialog.ui.h:10 msgid "Show list of known _applications" msgstr "Прикажи листа на познати апликации" -#: ../gnome-panel/panel-run-dialog.glade.h:13 +#: ../gnome-panel/panel-run-dialog.ui.h:11 msgid "The icon of the command to be run." msgstr "Иконата која укажува на командата за извршување." -#: ../gnome-panel/panel-run-dialog.glade.h:14 -#: ../gnome-panel/panel-stock-icons.c:90 +#: ../gnome-panel/panel-run-dialog.ui.h:12 +#: ../gnome-panel/panel-stock-icons.c:83 msgid "_Run" msgstr "_Изврши" -#: ../gnome-panel/panel-stock-icons.c:91 +#: ../gnome-panel/panel-stock-icons.c:84 msgid "_Force quit" msgstr "_Наметни излез" -#: ../gnome-panel/panel-stock-icons.c:92 +#: ../gnome-panel/panel-stock-icons.c:85 msgid "C_lear" msgstr "И_счисти" -#: ../gnome-panel/panel-stock-icons.c:93 +#: ../gnome-panel/panel-stock-icons.c:86 msgid "D_on't Delete" msgstr "Не бриши" -#: ../gnome-panel/panel-toplevel.c:1176 +#: ../gnome-panel/panel-test-applets.c:36 +msgid "Specify an applet IID to load" +msgstr "Одредете име на профилот што треба да се вчита" + +#: ../gnome-panel/panel-test-applets.c:37 +msgid "Specify a gconf location in which the applet preferences should be stored" +msgstr "Ја одредува локацијата на gconf во која би требало да бидат сместени параметрите на аплетот" + +#: ../gnome-panel/panel-test-applets.c:38 +msgid "Specify the initial size of the applet (xx-small, medium, large etc.)" +msgstr "Ја одредува почетната големина на аплетот (хх-мало, средно, големи итн.)" + +#: ../gnome-panel/panel-test-applets.c:39 +msgid "Specify the initial orientation of the applet (top, bottom, left or right)" +msgstr "Ја одредува почетната орентација на аплетот (врв, дно, лево или десно)" + +#: ../gnome-panel/panel-test-applets.c:63 +#| msgid "Size|XX Small" +msgctxt "Size" +msgid "XX Small" +msgstr "Екстра екстра мал" + +#: ../gnome-panel/panel-test-applets.c:64 +#| msgid "Size|X Small" +msgctxt "Size" +msgid "X Small" +msgstr "Екстра мал" + +#: ../gnome-panel/panel-test-applets.c:65 +#| msgid "Size|Small" +msgctxt "Size" +msgid "Small" +msgstr "Мал" + +#: ../gnome-panel/panel-test-applets.c:66 +#| msgid "Size|Medium" +msgctxt "Size" +msgid "Medium" +msgstr "Среден" + +#: ../gnome-panel/panel-test-applets.c:67 +#| msgid "Size|Large" +msgctxt "Size" +msgid "Large" +msgstr "Голем" + +#: ../gnome-panel/panel-test-applets.c:68 +#| msgid "Size|X Large" +msgctxt "Size" +msgid "X Large" +msgstr "Екстра голем" + +#: ../gnome-panel/panel-test-applets.c:69 +#| msgid "Size|XX Large" +msgctxt "Size" +msgid "XX Large" +msgstr "Екстра екстра голем" + +#: ../gnome-panel/panel-test-applets.c:127 +#, c-format +msgid "Failed to load applet %s" +msgstr "Не успеав да го вчитам аплетот %s" + +#. This is an utility to easily test various applets +#: ../gnome-panel/panel-test-applets.ui.h:2 +msgid "Test applet utility" +msgstr "Алатка за тестирање на аплети" + +#: ../gnome-panel/panel-test-applets.ui.h:3 +msgid "_Applet:" +msgstr "_Аплет:" + +#: ../gnome-panel/panel-test-applets.ui.h:5 +msgid "_Prefs Dir:" +msgstr "_Директориум со параметри:" + +#: ../gnome-panel/panel-toplevel.c:1272 msgid "Hide Panel" msgstr "Скриј панел" #. translators: these string will be shown in MetaCity's switch window #. * popup when you pass the focus to a panel -#: ../gnome-panel/panel-toplevel.c:1573 +#: ../gnome-panel/panel-toplevel.c:1657 msgid "Top Expanded Edge Panel" msgstr "Издолжениот панел на работ од врвот " -#: ../gnome-panel/panel-toplevel.c:1574 +#: ../gnome-panel/panel-toplevel.c:1658 msgid "Top Centered Panel" msgstr "Панел на центарот на врвот" -#: ../gnome-panel/panel-toplevel.c:1575 +#: ../gnome-panel/panel-toplevel.c:1659 msgid "Top Floating Panel" msgstr "Лебдечкиот панел на врвот" -#: ../gnome-panel/panel-toplevel.c:1576 +#: ../gnome-panel/panel-toplevel.c:1660 msgid "Top Edge Panel" msgstr "Панел на работ на врвот" -#: ../gnome-panel/panel-toplevel.c:1580 +#: ../gnome-panel/panel-toplevel.c:1664 msgid "Bottom Expanded Edge Panel" msgstr "Издолжениот панел на работ на дното" -#: ../gnome-panel/panel-toplevel.c:1581 +#: ../gnome-panel/panel-toplevel.c:1665 msgid "Bottom Centered Panel" msgstr "Панел на центарот на дното" -#: ../gnome-panel/panel-toplevel.c:1582 +#: ../gnome-panel/panel-toplevel.c:1666 msgid "Bottom Floating Panel" msgstr "Лебдечки панел на дното" -#: ../gnome-panel/panel-toplevel.c:1583 +#: ../gnome-panel/panel-toplevel.c:1667 msgid "Bottom Edge Panel" msgstr "Панел на работ на дното" -#: ../gnome-panel/panel-toplevel.c:1587 +#: ../gnome-panel/panel-toplevel.c:1671 msgid "Left Expanded Edge Panel" msgstr "Проширенот панел на левиот раб" -#: ../gnome-panel/panel-toplevel.c:1588 +#: ../gnome-panel/panel-toplevel.c:1672 msgid "Left Centered Panel" msgstr "Лево центриран панел" -#: ../gnome-panel/panel-toplevel.c:1589 +#: ../gnome-panel/panel-toplevel.c:1673 msgid "Left Floating Panel" msgstr "Лев лебдечки панел" -#: ../gnome-panel/panel-toplevel.c:1590 +#: ../gnome-panel/panel-toplevel.c:1674 msgid "Left Edge Panel" msgstr "Панелот на левиот раб" -#: ../gnome-panel/panel-toplevel.c:1594 +#: ../gnome-panel/panel-toplevel.c:1678 msgid "Right Expanded Edge Panel" msgstr "Десен проширен панел на работ" -#: ../gnome-panel/panel-toplevel.c:1595 +#: ../gnome-panel/panel-toplevel.c:1679 msgid "Right Centered Panel" msgstr "Лево центриран панел" -#: ../gnome-panel/panel-toplevel.c:1596 +#: ../gnome-panel/panel-toplevel.c:1680 msgid "Right Floating Panel" msgstr "Десно лебдечки панел" -#: ../gnome-panel/panel-toplevel.c:1597 +#: ../gnome-panel/panel-toplevel.c:1681 msgid "Right Edge Panel" msgstr "Левиот панел" -#: ../gnome-panel/panel-toplevel.schemas.in.h:1 -msgid "Animation speed" -msgstr "Брзина на анимацијата" +#: ../gnome-panel/panel-util.c:314 +#, c-format +msgid "Icon '%s' not found" +msgstr "Иконата '%s' не е најдена" -#: ../gnome-panel/panel-toplevel.schemas.in.h:2 -msgid "Automatically hide panel into corner" -msgstr "Автоматски криј го панелот во ќошето." +#: ../gnome-panel/panel-util.c:557 +msgid "file" +msgstr "датотека" -#: ../gnome-panel/panel-toplevel.schemas.in.h:3 -msgid "Background color" -msgstr "Боја на позадина" +#: ../gnome-panel/panel-util.c:734 +msgid "Home Folder" +msgstr "Домашна папка" -#: ../gnome-panel/panel-toplevel.schemas.in.h:4 -msgid "Background color opacity" -msgstr "Густината на боја на позадина." +#. Translators: this is the same string as the one found in +#. * nautilus +#: ../gnome-panel/panel-util.c:746 +msgid "File System" +msgstr "Датотечен систем" -#: ../gnome-panel/panel-toplevel.schemas.in.h:5 -msgid "Background image" -msgstr "Позадинска слика" +#: ../gnome-panel/panel-util.c:919 +msgid "Search" +msgstr "Барај" -#: ../gnome-panel/panel-toplevel.schemas.in.h:6 -msgid "Background type" -msgstr "Тип на позадина" +#. Translators: the first string is the name of a gvfs +#. * method, and the second string is a path. For +#. * example, "Trash: some-directory". It means that the +#. * directory called "some-directory" is in the trash. +#. +#: ../gnome-panel/panel-util.c:965 +#, c-format +msgid "%1$s: %2$s" +msgstr "%1$s: %2$s" -#: ../gnome-panel/panel-toplevel.schemas.in.h:7 -msgid "Center panel on x-axis" -msgstr "Центрирај го панелот на х-оската" +#: ../gnome-panel/panel.c:527 +#, c-format +msgid "Open URL: %s" +msgstr "Отвори URL: %s" -#: ../gnome-panel/panel-toplevel.schemas.in.h:8 -msgid "Center panel on y-axis" -msgstr "Центрирај го панелот на y-оската." +#: ../gnome-panel/panel.c:1393 +msgid "Delete this panel?" +msgstr "Да го избришам овој панел?" -#: ../gnome-panel/panel-toplevel.schemas.in.h:10 -msgid "Enable arrows on hide buttons" -msgstr "Вклучи ги стрелките на криечките копчињата." +#: ../gnome-panel/panel.c:1397 +msgid "" +"When a panel is deleted, the panel and its\n" +"settings are lost." +msgstr "" +"Кога се отстранува панел, панелот и неговите \n" +"аплети и поставките се губат." -#: ../gnome-panel/panel-toplevel.schemas.in.h:11 -msgid "Enable hide buttons" -msgstr "Вклучи ги криечките копчињата." +#: ../libpanel-applet/org.gnome.panel.TestApplet.panel-applet.in.h:1 +#| msgid "A simple applet for testing the GNOME-2.0 panel" +msgid "A simple applet for testing the GNOME panel" +msgstr "Едноставен аплет за тестирање на панелот на GNOME" + +#: ../libpanel-applet/org.gnome.panel.TestApplet.panel-applet.in.h:2 +#| msgid "Factory for creating clock applets." +msgid "Factory for Test DBus Applet" +msgstr "Фабрика за тестирање на DBus аплети" + +#: ../libpanel-applet/org.gnome.panel.TestApplet.panel-applet.in.h:3 +#| msgid "Test Bonobo Applet" +msgid "Test DBus Applet" +msgstr "Тест DBus аплет" + +#: ../libpanel-applet/org.gnome.panel.TestApplet.panel-applet.in.h:4 +#| msgid "Test Bonobo Applet Factory" +msgid "Test DBus Applet Factory" +msgstr "Фабрика за тест DBus аплет" + +#~ msgid "_About" +#~ msgstr "_За" -#: ../gnome-panel/panel-toplevel.schemas.in.h:12 -msgid "Expand to occupy entire screen width" -msgstr "Прошири низ целиот екран." +#~ msgid "Failed to launch time configuration tool: %s" +#~ msgstr "Не успеав да ја подигнам алатката за конфигурирање на времето : %s" -#: ../gnome-panel/panel-toplevel.schemas.in.h:13 -msgid "Fit image to panel" -msgstr "Принуди ја сликата да одговара на панелот" +#~ msgid "Set System Time..." +#~ msgstr "Постави го системското време..." -#: ../gnome-panel/panel-toplevel.schemas.in.h:14 -msgid "" -"If true, arrows will be placed on the hide buttons. This key is only " -"relevant if the enable_buttons key is true." -msgstr "" -"Ако е точно,стрелките ќе се сместат на сокривачките копчиња. Овие параметри " -"ќе бидат важечки само ако вклучените копчиња се вистинити." +#~ msgid "Set System Time" +#~ msgstr "Постави го системското време" -#: ../gnome-panel/panel-toplevel.schemas.in.h:15 -msgid "" -"If true, buttons will be placed on each side of the panel which may be used " -"to move the panel to edge of the screen, leaving only a button showing." -msgstr "" -"Ако е точно тогаш копчињата ќе бидат сместени на секоја страна од панлеот " -"кој би можел да биде користен за поместување на панелот во работ на екранот " -"притоа оставајќи видливо копче." +#~ msgid "" +#~ "Failed to locate a program for configuring the date and time. Perhaps " +#~ "none is installed?" +#~ msgstr "" +#~ "Не успеав да ја лоцирам програмата за конфигурирање на датум и време. " +#~ "Најверојатно не e инсталирана?" -#: ../gnome-panel/panel-toplevel.schemas.in.h:16 -msgid "" -"If true, hiding and un-hiding of this panel will be animated rather than " -"happening instantly." -msgstr "" -"Ако е точно тогаш криењето и откривањето на овој панел ќе биде анимиано " -"наместо прикажано моментално." +#~ msgid "The Clock displays the current time and date" +#~ msgstr "Часовникот ги покажува моменталниот датум и време" -#: ../gnome-panel/panel-toplevel.schemas.in.h:17 -msgid "" -"If true, the background image will be rotated when the panel is oriented " -"vertically." -msgstr "" -"Ако е точно, позадинската слика ќе биде ротирана ако ориентацијата на " -"панелот е вертикална." +#~ msgid "translator-credits" +#~ msgstr "" +#~ "Арангел Ангов \n" +#~ "Иван Стојмиров \n" +#~ "Георги Станојевски \n" +#~ " Јован Наумовски " -#: ../gnome-panel/panel-toplevel.schemas.in.h:18 -msgid "" -"If true, the image will be scaled (retaining the aspect ratio of the image) " -"to the panel height (if horizontal)." -msgstr "" -"Ако е точно, сликата ќе биде прилагодена (одржувајќи го односот на сликата) " -"на на висината на панелот (ако е хоризонтално)." +#~ msgid "Clock Options" +#~ msgstr "Опции за часовникот" -#: ../gnome-panel/panel-toplevel.schemas.in.h:19 -msgid "" -"If true, the image will be scaled to the panel dimensions. The aspect ratio " -"of the image will not be maintained." -msgstr "" -"Ако е вистинито сликата ќе биде прилагодена со големината напанелот. Односот " -"на сликата нема да биде одржан." +#~ msgid "Time Settings" +#~ msgstr "Поставувања за времето" -#: ../gnome-panel/panel-toplevel.schemas.in.h:20 -msgid "" -"If true, the panel is automatically hidden into a corner of the screen when " -"the pointer leaves the panel area. Moving the pointer to that corner again " -"will cause the panel to re-appear." -msgstr "" -"Ако е вистинито тогаш кога покажувачот го напушти панелот ќе биде автоматски " -"скриен во ќошот на екранот. Поместувајќи го покажувачот во тој ќош ќе " -"предизвика панелот повторно да се покаже." +#~ msgid "Current Time:" +#~ msgstr "Моменталното време:" -#: ../gnome-panel/panel-toplevel.schemas.in.h:21 -msgid "" -"If true, the panel will occupy the entire screen width (height if this is a " -"vertical panel). In this mode the panel can only be placed at a screen edge. " -"If false, the panel will only be large enough to accommodate the applets, " -"launchers and buttons on the panel." -msgstr "" -"Ако е точно тогаш панелот да ја завземе цела ширина на еранот (висина ако е " -"вертикален панел). Во овој режим панелот може само да биде сместен на работ " -"од екранот. Доколку е невистинито тогаш панелотќе биде доволно голем да ги " -"смести аплетите, вклучувачите и копчињата на панелот." +#~ msgid "Time Settings" +#~ msgstr "Поставувања за времето" -#: ../gnome-panel/panel-toplevel.schemas.in.h:22 -msgid "" -"If true, the x and x_right keys are ignored and the panel is placed at the " -"center of the x-axis of the screen. If the panel is resized it will remain " -"at that position - i.e. the panel will grow on both sides. If false, the x " -"and x_right keys specify the location of the panel." -msgstr "" -"Ако е штиклирано тогаш поставувањата за x и x_right_keys ќе бидат одбегнати " -"и панелот ќе биде сместен на центарот на x-оската на екранот. Доколку " -"големината на панелот е променета тој ќе остане на таа позиција - појаснето. " -"панелот ќе се рашири од двете страни. Ако е исклучено тогаш поставувањата за " -"х у x_right_keys ќе ја одредат локацијата на панелот." +#~ msgid "Time:" +#~ msgstr "Време:" -#: ../gnome-panel/panel-toplevel.schemas.in.h:23 -msgid "" -"If true, the y and y_bottom keys are ignored and the panel is placed at the " -"center of the y-axis of the screen. If the panel is resized it will remain " -"at that position - i.e. the panel will grow on both sides. If false, the y " -"and y_bottom keys specify the location of the panel." -msgstr "" -"Ако е вистинито тогаш поставувањата за y и y_bottom_keys ќе бидат одбегнати " -"и панелот ќе биде сместен нацентарот на оската y на екранот. Доколку " -"големината на панелот е променета тој ќе остане на таа позиција - појаснето. " -"панелот ќе се рашири од двете страни. Ако е невистинито тогаш поставувањата " -"за y и y y_bottom_keys ќе ја одредат локацијата на панелот." +#~ msgid "If true, display time in Universal Coordinated Time zone." +#~ msgstr "Прикажи го времето во универзално време (UTC)." -#: ../gnome-panel/panel-toplevel.schemas.in.h:24 -msgid "" -"In a Xinerama setup, you may have panels on each individual monitor. This " -"key identifies the current monitor the panel is displayed on." -msgstr "" -"Во Xinerama подесувањето, можно е да ги имате панелите посебно на секој " -"монитор. Ова копче го индентификува тековниот монитор на кој е прикажан " -"панелот." +#~ msgid "" +#~ "This key specifies the program to run in order to configure the time." +#~ msgstr "" +#~ "Ова копче одредува која програма да се користи за конфигурирање на " +#~ "времето." -#: ../gnome-panel/panel-toplevel.schemas.in.h:25 -msgid "Name to identify panel" -msgstr "Име по кое ќе се распознава овој панел." +#~ msgid "Change system time" +#~ msgstr "Смени го системското време" -#: ../gnome-panel/panel-toplevel.schemas.in.h:26 -msgid "Panel autohide delay" -msgstr "Автоматско криење на доцнењето" +#~ msgid "Change system time zone" +#~ msgstr "Смени ја системската временска зона" -#: ../gnome-panel/panel-toplevel.schemas.in.h:27 -msgid "Panel autounhide delay" -msgstr "Автоматско откривање на доцнењето" +#~ msgid "Configure hardware clock" +#~ msgstr "Конфигурирај хардверски часовник" -#: ../gnome-panel/panel-toplevel.schemas.in.h:28 -msgid "Panel orientation" -msgstr "Ориентација на панелот" +#~ msgid "Privileges are required to change the system time zone." +#~ msgstr "Потребни се привилегии за менување на системската временска зона." -#: ../gnome-panel/panel-toplevel.schemas.in.h:29 -msgid "Panel size" -msgstr "Големина на панелот" +#~ msgid "Privileges are required to change the system time." +#~ msgstr "Потребни се привилегии за менување на системското време." -#: ../gnome-panel/panel-toplevel.schemas.in.h:30 -msgid "Rotate image on vertical panels" -msgstr "Ротирај ја сликата на вертикалниот панел" +#~ msgid "Privileges are required to configure the hardware clock." +#~ msgstr "Потребни се привилегии за конфигурација на хардверскиот часовник." -#: ../gnome-panel/panel-toplevel.schemas.in.h:31 -msgid "Specifies the background color for the panel in #RGB format." -msgstr "Ја одредува бојата на позадината од #RGB палетата." +#~ msgid "" +#~ "%s has no use what-so-ever. It only takes up disk space and compilation " +#~ "time, and if loaded it also takes up precious panel space and memory. " +#~ "Anybody found using it should be promptly sent for a psychiatric " +#~ "evaluation." +#~ msgstr "" +#~ "%s и онака не е корисен. Само завзема простор на дискот и троши време за " +#~ "компајлирање, и доколку е вчитан завзема скапоцено место на панелот и " +#~ "троши меморија. Доколку најдете некој што го користи овој аплет, веднаш " +#~ "испратете го на психијатриско испитување." -#: ../gnome-panel/panel-toplevel.schemas.in.h:32 -msgid "" -"Specifies the file to be used for the background image. If the image " -"contains an alpha channel it will be composited onto the desktop background " -"image." -msgstr "" -"Ја одредува датотеката која ќе биде користена како слика за позадина. Ако " -"сликата содржи алфа канал ќе биде склопена на сликата на работната површина." +#~ msgid "(with minor help from George)" +#~ msgstr "(со мала помош од Џорџ)" -#: ../gnome-panel/panel-toplevel.schemas.in.h:33 -msgid "" -"Specifies the number of milliseconds delay after the pointer enters the " -"panel area before the panel is automatically re-shown. This key is only " -"relevant if the auto_hide key is true." -msgstr "" -"Го одредува бројот на милисекунди за кои ќе се одложува после влегувањето на " -"покажувачот во панелот пред панелот да е автоматски пре-прокажан. Овие " -"параметри ќе одговараат само ако автоматското_криење е вистинито." +#~ msgid "Animation" +#~ msgstr "Анимација" -#: ../gnome-panel/panel-toplevel.schemas.in.h:34 -msgid "" -"Specifies the number of milliseconds delay after the pointer leaves the " -"panel area before the panel is automatically hidden. This key is only " -"relevant if the auto_hide key is true." -msgstr "" -"Го одредува бројот на милисекунди за кои ќе се одложува после излегувањето " -"на покажувачот во панелот пред панелот да е автоматски скриен. Овие " -"параметри ќе одговараат само ако автоматското_криење е вистинито." +#~ msgid "General" +#~ msgstr "Општо" -#: ../gnome-panel/panel-toplevel.schemas.in.h:35 -msgid "" -"Specifies the number of pixels visible when the panel is automatically " -"hidden into a corner. This key is only relevant if the auto_hide key is true." -msgstr "" -"Го одредува бројот на видливи пиксели панелот е автоматски скриен во ќошот. " -"Овие параметри ќе одговараат само ако автоматското_криење е вистинито." +#~ msgid "Select an animation" +#~ msgstr "Изберете анимација" -#: ../gnome-panel/panel-toplevel.schemas.in.h:36 -msgid "" -"Specifies the opacity of the background color format. If the color is not " -"completely opaque (a value of less than 65535), the color will be composited " -"onto the desktop background image." -msgstr "" -"Ја одредува густината на бојата на позадинската боја. Ако бојата не целосно " -"матна (вредност помала од 65535), бојата ќе биде склопена на сликата на " -"работната површина" - -#: ../gnome-panel/panel-toplevel.schemas.in.h:37 -msgid "Stretch image to panel" -msgstr "Рашири ја сликата низ панелот" +#~ msgid "_File:" +#~ msgstr "_Датотека:" -#: ../gnome-panel/panel-toplevel.schemas.in.h:38 -msgid "" -"The height (width for a vertical panel) of the panel. The panel will " -"determine at runtime a minimum size based on the font size and other " -"indicators. The maximum size is fixed at one quarter of the screen height " -"(or width)." -msgstr "" -"Висината (ширината за вертикален панел) на панелот. Панелот ќе одреди за " -"време на работа минималната големина базирана на предната големина и други " -"индикатори. Максималната големина е заклучена на една четвртина од висината " -"на екранот (или ширина)." +#~ msgid "_Total frames in animation:" +#~ msgstr "_Рамки во анимација:" -#: ../gnome-panel/panel-toplevel.schemas.in.h:39 -msgid "" -"The location of the panel along the x-axis, starting from the right of the " -"screen. If set to -1, the value is ignored and the value of the x key is " -"used. If the value is greater than 0, then the value of the x key is " -"ignored. This key is only relevant in un-expanded mode. In expanded mode " -"this key is ignored and the panel is placed at the screen edge specified by " -"the orientation key." -msgstr "" -"Локацијата на панелот на x-оската, почнувајќи од дното на екранот. Ако е " -"поставено на -1, вредноста се игнорира и се користи вредноста на клучот за " -"x. Ако вредноста е поголема од 0, тогаш вредноста на клучот x се игнорира. " -"Овој клуч е релевантен во непроширен режим. Во проширен режим овој клуч се " -"игнорира и панелог е поставен на рабовите на екранот одредено според " -"ориентацијата на клучот." +#~ msgid "frames" +#~ msgstr "рамки" -#: ../gnome-panel/panel-toplevel.schemas.in.h:40 -msgid "" -"The location of the panel along the x-axis. This key is only relevant in un-" -"expanded mode. In expanded mode this key is ignored and the panel is placed " -"at the screen edge specified by the orientation key." -msgstr "" -"Локацијата на панелите покрај х-оската. Оваа вредност има значење само во во " -"не проширениот режим. Во проширениот режим вредноста е игнорирана и панеот е " -"сместен во работ на екранот индицирано по орентацијата." +#~ msgid "Frames in fish's animation" +#~ msgstr "Број на рамки во анимацијата на рибата" -#: ../gnome-panel/panel-toplevel.schemas.in.h:41 -msgid "" -"The location of the panel along the y-axis, starting from the bottom of the " -"screen. If set to -1, the value is ignored and the value of the y key is " -"used. If the value is greater than 0, then the value of the y key is " -"ignored. This key is only relevant in un-expanded mode. In expanded mode " -"this key is ignored and the panel is placed at the screen edge specified by " -"the orientation key." -msgstr "" -"Локацијата на панелот на y-оската, почнувајќи од дното на екранот. Ако е " -"поставено на -1, вредноста се игнорира и се користи вредноста на клучот за " -"y. Ако вредноста е поголема од 0, тогаш вредноста на клучот y се игнорира. " -"Овој клуч е релевантен во непроширен режим. Во проширен режим овој клуч се " -"игнорира и панелог е поставен на рабовите на екранот одредено според " -"ориентацијата на клучот." +#~ msgid "" +#~ "This key specifies the number of frames that will be displayed in the " +#~ "fish's animation." +#~ msgstr "Ова копче го одредува бројот на рамките во анимацијата на рибата." -#: ../gnome-panel/panel-toplevel.schemas.in.h:42 -msgid "" -"The location of the panel along the y-axis. This key is only relevant in un-" -"expanded mode. In expanded mode this key is ignored and the panel is placed " -"at the screen edge specified by the orientation key." -msgstr "" -"Локацијата на панелите покрај -оската. Оваа вредност има значење само во во " -"не проширениот режим. Во проширениот режим вредноста е игнорирана и панеот е " -"сместен во работ на екранот индицирано по орентацијата." +#~ msgid "This button lets you hide all windows and show the desktop." +#~ msgstr "" +#~ "Ова копче Ви овозможува да ги сокриете сите прозорци и да се вратите на " +#~ "работната површина" -#: ../gnome-panel/panel-toplevel.schemas.in.h:43 -msgid "" -"The orientation of the panel. Possible values are \"top\", \"bottom\", \"left" -"\", \"right\". In expanded mode the key specifies which screen edge the " -"panel is on. In un-expanded mode the difference between \"top\" and \"bottom" -"\" is less important - both indicate that this is a horizontal panel - but " -"still give a useful hint as to how some panel objects should behave. For " -"example, on a \"top\" panel a menu button will pop up its menu below the " -"panel, whereas on a \"bottom\" panel the menu will be popped up above the " -"panel." -msgstr "" -"Положба на панелот. Има четери можни вредности; \"врв\", \"дно\", \"лево\", " -"\"десно\". Во проширениот режим вредноста специфира кој екрански раб на " -"панелот е вклучен. Во не-проширениот режим разликите меѓу \"врв\" и \"дно\" " -"е помалу важна - и двете индицираат дека ова е хоризонтален панел - но " -"сеуште даваат корисна помош за однесувањето на панелите. На пример, на \"врв" -"\" мени ќе излезе." +#~ msgid "" +#~ "The Window List shows a list of all windows in a set of buttons and lets " +#~ "you browse them." +#~ msgstr "" +#~ "Листата на прозорци покажува листа на сите прозорци прикажани преку " +#~ "копчиња и ви овозможува да ги разгледувате истите." -#: ../gnome-panel/panel-toplevel.schemas.in.h:44 -msgid "" -"The speed in which panel animations should occur. Possible values are \"slow" -"\", \"medium\" and \"fast\". This key is only relevant if the " -"enable_animations key is true." -msgstr "" -"Бризината со кој анимациите би требало да се изведуваат. Има три можни " -"вредности; \"споро\"; \"средно\" и \"брзо\". Овие параметри ќе одговараат " -"само ако enable_animation е вистинито." +#~ msgid "Maximum window list size" +#~ msgstr "Максимална големина за листање на прозорецот" -#: ../gnome-panel/panel-toplevel.schemas.in.h:45 -msgid "" -"This is a human readable name which you can use to identify a panel. Its " -"main purpose is to serve as the panel's window title which is useful when " -"navigating between panels." -msgstr "" -"Ова е читливо име од кое може да се препознае панел. Неговата главна намена " -"е да служи како прозорец наслов на панел кој е корисен кога се преминува од " -"еден во друг." +#~ msgid "Minimum window list size" +#~ msgstr "Минимална големина за листање на прозорецот" -#: ../gnome-panel/panel-toplevel.schemas.in.h:46 -msgid "Visible pixels when hidden" -msgstr "Број на видливи пиксели со сокриен панел" +#~ msgid "" +#~ "The use of this key was deprecated in GNOME 2.20. The schema is retained " +#~ "for compatibility with older versions." +#~ msgstr "" +#~ "Употребата на ова копче е запоставена во GNOME 2.20. Оваа шема постои " +#~ "заради компатибилност со постари верзии." -#: ../gnome-panel/panel-toplevel.schemas.in.h:47 -msgid "" -"Which type of background should be used for this panel. Possible values are " -"\"gtk\" - the default GTK+ widget background will be used, \"color\" - the " -"color key will be used as background color or \"image\" - the image " -"specified by the image key will be used as background." -msgstr "" -"Кој на позадина би требало да биде користен за овој панел. Има 3 можни " -"вредности; \"gtk\", стандарната GTK+ елемент позадиан ќе се користи, \"боја" -"\", параметрите на бојата ќе се користат како позадинска боја или \"слика\", " -"специфираната сликата во параметрите на сликата ќе се користи како позадина." +#~ msgid "" +#~ "The Window Selector shows a list of all windows in a menu and lets you " +#~ "browse them." +#~ msgstr "" +#~ "Листата на прозорци покажува листа на сите прозорци во мени и ви " +#~ "овозможува да ги разгледувате истите." -#: ../gnome-panel/panel-toplevel.schemas.in.h:48 -msgid "" -"With a multi-screen setup, you may have panels on each individual screen. " -"This key identifies the current screen the panel is displayed on." -msgstr "" -"Со повеќе екранско подесување можно е да има панели на секој екран. Ова " -"копче ги индетификува тековнио екран на кој панелот е прикажан." +#~ msgid "Error loading num_rows value for Workspace Switcher: %s\n" +#~ msgstr "" +#~ "Грешка при вчитувањето на вредноста num_rows за скокачот помеѓу работните " +#~ "простори: %s\n" -#: ../gnome-panel/panel-toplevel.schemas.in.h:49 -msgid "X co-ordinate of panel" -msgstr "Х-кординатата на панелот" +#~ msgid "" +#~ "Error loading display_workspace_names value for Workspace Switcher: %s\n" +#~ msgstr "" +#~ "Грешка при вчитувањето на вредноста display_workspace_names за скокачот " +#~ "Помеѓу работни простори: %s \n" -#: ../gnome-panel/panel-toplevel.schemas.in.h:50 -msgid "X co-ordinate of panel, starting from the right of the screen" -msgstr "X координата на панелот, почнувајќи од десната страна на екранот" +#~ msgid "" +#~ "Error loading display_all_workspaces value for Workspace Switcher: %s\n" +#~ msgstr "" +#~ "Грешка при вчитувањето на вредноста display_all workspaces скокачот " +#~ "помеѓу работни простори: %s \n" -#: ../gnome-panel/panel-toplevel.schemas.in.h:51 -msgid "X screen where the panel is displayed" -msgstr "X екран каде што е прикажан панелот" +#~ msgid "" +#~ "The Workspace Switcher shows you a small version of your workspaces that " +#~ "lets you manage your windows." +#~ msgstr "" +#~ "Скокачот помеѓу просторите за работа ви прикажува минијатурна верзија на " +#~ "Вашите простори за работа за да можете полесно да се движите низ нив." -#: ../gnome-panel/panel-toplevel.schemas.in.h:52 -msgid "Xinerama monitor where the panel is displayed" -msgstr "Xinerama мониторот каде што е прикажан панелот" +#~ msgid "Workspaces" +#~ msgstr "Работни простори" -#: ../gnome-panel/panel-toplevel.schemas.in.h:53 -msgid "Y co-ordinate of panel" -msgstr "Y-кординатата на панелот." +#~ msgid "Loc_k To Panel" +#~ msgstr "Заклу_чи за панелот" -#: ../gnome-panel/panel-toplevel.schemas.in.h:54 -msgid "Y co-ordinate of panel, starting from the bottom of the screen" -msgstr "Y координата на панелот, почнувајќи од дното на екранот" +#~ msgid "Cannot find an empty spot" +#~ msgstr "Не можам да најдам празно место" -#: ../gnome-panel/panel-util.c:323 -#, c-format -msgid "Icon '%s' not found" -msgstr "Иконата '%s' не е најдена" +#~ msgid "Drawer" +#~ msgstr "Фиока" -#: ../gnome-panel/panel-util.c:426 -#, c-format -msgid "Could not execute '%s'" -msgstr "Не можам да извршам'%s'" +#~ msgid "_Add to Drawer..." +#~ msgstr "_Додај во фиока..." -#: ../gnome-panel/panel-util.c:662 -msgid "file" -msgstr "датотека" +#~ msgid "Add this launcher to _panel" +#~ msgstr "Додај го овој пуштач на _панелот" -#: ../gnome-panel/panel-util.c:879 -msgid "Home Folder" -msgstr "Домашна папка" +#~ msgid "Add this launcher to _desktop" +#~ msgstr "Додај го пуштачот на _работната површина" -#. Translators: this is the same string as the one found in -#. * nautilus -#: ../gnome-panel/panel-util.c:891 -msgid "File System" -msgstr "Датотечен систем" +#~ msgid "_Entire menu" +#~ msgstr "_Цело мени" -#: ../gnome-panel/panel-util.c:1038 -msgid "Search" -msgstr "Барај" +#~ msgid "Add this as _drawer to panel" +#~ msgstr "Додај го ова како _фиока на панелот" -#. Translators: the first string is the name of a gvfs -#. * method, and the second string is a path. For -#. * example, "Trash: some-directory". It means that the -#. * directory called "some-directory" is in the trash. -#. -#: ../gnome-panel/panel-util.c:1084 -#, c-format -msgid "%1$s: %2$s" -msgstr "%1$s: %2$s" +#~ msgid "Add this as _menu to panel" +#~ msgstr "Додај го ова како _мени на панелот" -#: ../gnome-panel/panel.c:474 -#, c-format -msgid "Open URL: %s" -msgstr "Отвори URL: %s" +#~ msgid "GAME OVER at level %d!" +#~ msgstr "ИГРАТА ЗАВРШИ на нивото %d!" -#: ../gnome-panel/panel.c:1302 -msgid "Delete this drawer?" -msgstr "Да ја избришам фиоката?" +#~ msgid "%1$s %2$s %3$s" +#~ msgstr "%1$s %2$s %3$s" -#: ../gnome-panel/panel.c:1303 -msgid "" -"When a drawer is deleted, the drawer and its\n" -"settings are lost." -msgstr "" -"Кога се отстранува фиока, фиоката и нејзините\n" -"аплети и поставувања се губат." +#~ msgid "Press 'q' to quit" +#~ msgstr "Притиснете на „q“ за излез" -#: ../gnome-panel/panel.c:1306 -msgid "Delete this panel?" -msgstr "Да го избришам овој панел?" +#~ msgid "Paused" +#~ msgstr "Паузирано" -#: ../gnome-panel/panel.c:1307 -msgid "" -"When a panel is deleted, the panel and its\n" -"settings are lost." -msgstr "" -"Кога се отстранува панел, панелот и неговите \n" -"аплети и поставките се губат." +#~ msgid "%1$s\t%2$s" +#~ msgstr "%1$s\t%2$s" -#: ../libpanel-applet/GNOME_Panel_TestApplet.server.in.h:1 -msgid "A simple applet for testing the GNOME-2.0 panel" -msgstr "Едноставен аплет за тестирање на GNOME 2.0 панелот" - -#: ../libpanel-applet/GNOME_Panel_TestApplet.server.in.h:2 -msgid "Test Bonobo Applet" -msgstr "Тестирај Bonobo аплет" - -#: ../libpanel-applet/GNOME_Panel_TestApplet.server.in.h:3 -msgid "Test Bonobo Applet Factory" -msgstr "Тестирај Bonobo фабрика за аплет" +#~ msgid "Press 'p' to unpause" +#~ msgstr "Притиснете на „p“ за продолжување" -#: ../libpanel-applet/panel-test-applets.c:35 -msgid "Specify an applet IID to load" -msgstr "Одредете име на профилот што треба да се вчита" +#~ msgid "Level: %s, Lives: %s" +#~ msgstr "Ниво: %s, животи: %s" -#: ../libpanel-applet/panel-test-applets.c:36 -msgid "" -"Specify a gconf location in which the applet preferences should be stored" -msgstr "" -"Ја одредува локацијата на gconf во која би требало да бидат сместени " -"параметрите на аплетот" +#~ msgid "Left/Right to move, Space to fire, 'p' to pause, 'q' to quit" +#~ msgstr "Лево/десно за движење, space за пукање, „p“ за пауза, „q“ за излез" -#: ../libpanel-applet/panel-test-applets.c:37 -msgid "Specify the initial size of the applet (xx-small, medium, large etc.)" -msgstr "" -"Ја одредува почетната големина на аплетот (хх-мало, средно, големи итн.)" +#~ msgid "Killer GEGLs from Outer Space" +#~ msgstr "Убиствени GEGL-и од вселената" -#: ../libpanel-applet/panel-test-applets.c:38 -msgid "" -"Specify the initial orientation of the applet (top, bottom, left or right)" -msgstr "Ја одредува почетната орентација на аплетот (врв, дно, лево или десно)" +#~ msgid "A pop out drawer to store other items in" +#~ msgstr "Скокачка фиока за складирање на други предмети" -#: ../libpanel-applet/panel-test-applets.c:62 -#, fuzzy -#| msgid "Size|XX Small" -msgctxt "Size" -msgid "XX Small" -msgstr "Најмало" +#~ msgid "query returned exception %s\n" +#~ msgstr "барањето врати исклучок %s\n" -#: ../libpanel-applet/panel-test-applets.c:63 -#, fuzzy -#| msgid "Size|X Small" -msgctxt "Size" -msgid "X Small" -msgstr "Помало" +#~ msgid "Add to Drawer" +#~ msgstr "Додај во фиока" -#: ../libpanel-applet/panel-test-applets.c:64 -#, fuzzy -#| msgid "Size|Small" -msgctxt "Size" -msgid "Small" -msgstr "Мало" +#~ msgid "Find an _item to add to the drawer:" +#~ msgstr "Најдете _предмет за да го додавање во фиоката:" -#: ../libpanel-applet/panel-test-applets.c:65 -#, fuzzy -#| msgid "Size|Medium" -msgctxt "Size" -msgid "Medium" -msgstr "Средно" +#~ msgid "Exception from popup_menu '%s'\n" +#~ msgstr "Исклучок од popup_menu %s\n" -#: ../libpanel-applet/panel-test-applets.c:66 -#, fuzzy -#| msgid "Size|Large" -msgctxt "Size" -msgid "Large" -msgstr "Големо" +#~ msgid "Unable to obtain AppletShell interface from control\n" +#~ msgstr "Не можам да го добијам интерфејсот од ApletShell контролата\n" -#: ../libpanel-applet/panel-test-applets.c:67 -#, fuzzy -#| msgid "Size|X Large" -msgctxt "Size" -msgid "X Large" -msgstr "Поголемо" +#~ msgid "And many, many others..." +#~ msgstr "И многу, многу други ..." -#: ../libpanel-applet/panel-test-applets.c:68 -#, fuzzy -#| msgid "Size|XX Large" -msgctxt "Size" -msgid "XX Large" -msgstr "Ептен големо" +#~ msgid "The GNOME Panel" +#~ msgstr "Панел за GNOME" -#: ../libpanel-applet/panel-test-applets.c:130 -#, c-format -msgid "Failed to load applet %s" -msgstr "Не успеав да го вчитам аплетот %s" +#~ msgid "" +#~ "This program is responsible for launching other applications and provides " +#~ "useful utilities." +#~ msgstr "" +#~ "Оваа програма е одоговорна за подигнување на други апликации и нуди " +#~ "корисни услужни алатки." -#. This is an utility to easily test various applets -#: ../libpanel-applet/panel-test-applets.glade.h:2 -msgid "Test applet utility" -msgstr "Алатка за тестирање на аплети" +#~ msgid "About the GNOME Panel" +#~ msgstr "За панелот за GNOME" -#: ../libpanel-applet/panel-test-applets.glade.h:3 -msgid "_Applet:" -msgstr "_Аплет:" +#~ msgid "A_bout Panels" +#~ msgstr "За _панелите..." -#: ../libpanel-applet/panel-test-applets.glade.h:5 -msgid "_Prefs Dir:" -msgstr "_Директориум со параметри:" +#~ msgid "Browse icons" +#~ msgstr "Разгледај ги иконите" + +#~ msgid "_Command:" +#~ msgstr "_Команда:" + +#~ msgid "" +#~ "A boolean flag to indicate whether the user's previous configuration in /" +#~ "apps/panel/profiles/default has been copied to the new location in /apps/" +#~ "panel." +#~ msgstr "" +#~ "Boolean знаменце кое што индицира дали претходната конфигурација на " +#~ "корисникот во /apps/panel/profiles/default е ископирана на новата " +#~ "локација во /apps/panel." + +#~ msgid "" +#~ "A list of panel applet IDs. Each ID identifies an individual panel " +#~ "applet. The settings for each of these applets are stored in /apps/panel/" +#~ "applets/$(id)." +#~ msgstr "" +#~ "Листа со ID-а на панел аплети. Секоj ID идентификува посебен панел аплет. " +#~ "Поставувањата на секој од аплетите се чуваат во /apps/panel/general/" +#~ "$(profile)/applets/$(id)." + +#~ msgid "Old profiles configuration migrated" +#~ msgstr "Конфигурацијата од старите профили е мигрирана" + +#~ msgid "Panel applet ID list" +#~ msgstr "Панел аплет листа за идентификација" + +#~ msgid "Autoclose drawer" +#~ msgstr "Фиока што се затвора автоматски" + +#~ msgid "Deprecated" +#~ msgstr "Заостанато" + +#~ msgid "Disable Lock Screen" +#~ msgstr "Оневозможи заклучување на екран" + +#~ msgid "Disable Logging Out" +#~ msgstr "Оневозможи одјава" + +#~ msgid "Enable animations" +#~ msgstr "Вклучи анимација." + +#~ msgid "Highlight launchers on mouseover" +#~ msgstr "Осветлени пуштачи со глушецот врз нив" + +#~ msgid "" +#~ "If true, a drawer will automatically be closed when the user clicks a " +#~ "launcher in it." +#~ msgstr "" +#~ "Ако е точно, фиоката ќе се затвори автоматски кога корисникот ќе кликне " +#~ "врз неа." + +#~ msgid "" +#~ "If true, a launcher is highlighted when the user moves the pointer over " +#~ "it." +#~ msgstr "" +#~ "Ако е точно, пуштачот е осветлен кога корисникот ќе ја донесе стрелката " +#~ "врз него." + +#~ msgid "" +#~ "If true, the panel will not allow a user to lock their screen, by " +#~ "removing access to the lock screen menu entries." +#~ msgstr "" +#~ "Ако е точно, панелот нема да му дозволи на корисникот да го заклучи " +#~ "неговиот екран со отстранување на пристапот до записите на менито за " +#~ "заклучен екран." + +#~ msgid "" +#~ "If true, the panel will not allow a user to log out, by removing access " +#~ "to the log out menu entries." +#~ msgstr "" +#~ "Ако е точно, панелот нема да му дозволи на корисникот да се одјави со " +#~ "отстранување на пристапот до записите на менито за одјава." + +#~ msgid "If true, tooltips are shown for objects in panels." +#~ msgstr "Ако е точно, советите се прикажуваат како објекти на панелот." + +#~ msgid "Change desktop appearance and behavior, get help, or log out" +#~ msgstr "" +#~ "Сменете го однесувањето и изгледот на работната површина, побарајте помош " +#~ "или одјавете се" + +#~ msgid "System" +#~ msgstr "Систем" + +#~ msgid "Log Out %s..." +#~ msgstr "Одјави се %s..." + +#~ msgid "Log out %s of this session to log in as a different user" +#~ msgstr "" +#~ "(%s) Одјавете се од оваа сесија за да се најавите како друг корисник" + +#~ msgid "Action button type" +#~ msgstr "Копче за тип на дејство" + +#~ msgid "Applet Bonobo IID" +#~ msgstr "IID за аплетот на Bonobo" + +#~ msgid "" +#~ "If true, the custom_icon key is used as a custom icon for the button. If " +#~ "false, the custom_icon key is ignored. This key is only relevant if the " +#~ "object_type key is \"menu-object\" or \"drawer-object\"." +#~ msgstr "" +#~ "Ако е точно, сопствена_икона поставката се користи како своја икона за " +#~ "копче, ако е неточно, сопствена_икона се игнорира. Оваа поставка се зема " +#~ "во предвид само ако типот на објект е \"мени-објект\" или \"фиока-објект" +#~ "\"." + +#~ msgid "" +#~ "If true, the menu_path key is used as the path from which the menu " +#~ "contents should be constructed. If false, the menu_path key is ignored. " +#~ "This key is only relevant if the object_type key is \"menu-object\"." +#~ msgstr "" +#~ "Ако е точно, копчето за патеката на менито се користи како патека од која " +#~ "се конструира менито. Ако е неточно копчето за патеката на менито се " +#~ "игнорира. Ова копче се зема во предвид само ако \"типот-на-објект\" е " +#~ "\"мени-објект\"." + +#~ msgid "" +#~ "If true, the user may not move the applet without first unlocking the " +#~ "object using the \"Unlock\" menuitem." +#~ msgstr "" +#~ "Ако е точно, корисникот можеби нема да може да го помрдне аплетот без " +#~ "претходно да го отклучи објектот користејќи \"Отклучи\"." + +#~ msgid "Lock the object to the panel" +#~ msgstr "Заклучи го објектот на панелот" + +#~ msgid "Panel attached to drawer" +#~ msgstr "Панелот прикачен на фиоката" + +#~ msgid "Panel object type" +#~ msgstr "Тип на објект за панелот" + +#~ msgid "" +#~ "The Bonobo implementation ID of the applet - e.g. \"OAFIID:" +#~ "GNOME_ClockApplet\". This key is only relevant if the object_type key is " +#~ "\"bonobo-applet\"." +#~ msgstr "" +#~ "Bonobo имплементираната индетификација на аплетот - пример \"OAFIID:" +#~ "GNOME_ClockApplet\". Овие подесувања ќе одговараат само ако типот на " +#~ "објектот е \"bonobo-applet\"." + +#~ msgid "" +#~ "The action type this button represents. Possible values are \"lock\", " +#~ "\"logout\", \"run\", \"search\" and \"screenshot\". This key is only " +#~ "relevant if the object_type key is \"action-applet\"." +#~ msgstr "" +#~ "Типот на дејство што го извршува ова копче. Можни вредности се \"lock\", " +#~ "\"logout\", \"run\", \"search\" и \"screenshot\". Овие подесувања ќе " +#~ "одговараат само ако типот на објектот е \"action-applet\"." + +#~ msgid "" +#~ "The identifier of the panel attached to this drawer. This key is only " +#~ "relevant if the object_type key is \"drawer-object\"." +#~ msgstr "" +#~ "Идентификаторот на панелот прикачен на овој цртач. Овие подесувања ќе " +#~ "одговараат само ако типот на објектот е \"drawer-object\"." + +#~ msgid "" +#~ "The text to display in a tooltip for this drawer or this menu. This key " +#~ "is only relevant if the object_type key is \"drawer-object\" or \"menu-" +#~ "object\"." +#~ msgstr "" +#~ "Текст за приказ како совет во оваа фиока или мени. Ова подесување се зема " +#~ "во предвид само ако типот на објектот е \"објект-фиока\" \"или објект-мени" +#~ "\"." + +#~ msgid "" +#~ "The type of this panel object. Possible values are \"drawer-object\", " +#~ "\"menu-object\", \"launcher-object\", \"bonobo-applet\", \"action-applet" +#~ "\" and \"menu-bar\"." +#~ msgstr "" +#~ "Типот на овој панел-објект. Има неколку можни вредности - \"цртачки-објект" +#~ "\", \"мени-објект\", \"вклучувачки-објект\", \"bonobo-аплет\", \"акција-" +#~ "аплет\" и \"лента со мени\"." + +#~ msgid "Use custom icon for object's button" +#~ msgstr "Користи сопствена икона за ова копче" + +#~ msgid "Use custom path for menu contents" +#~ msgstr "Користи сопствена патека за содржината на менијата" + +#~ msgid "Error reading GConf string value '%s': %s" +#~ msgstr "Грешка при читање на GConf текстуална вредност %s: %s" + +#~ msgid "Error reading GConf integer value '%s': %s" +#~ msgstr "Грешка при читање на GConf целобројна вредност %s: %s" + +#~ msgid "" +#~ "Panel '%s' is set to be displayed on screen %d which is not currently " +#~ "available. Not loading this panel." +#~ msgstr "" +#~ "Панелот %s e поставен да се прикаже на екранот %d кој моментално не е " +#~ "достапен. Не го вчитувај овој панел." + +#~ msgid "Error reading GConf boolean value '%s': %s" +#~ msgstr "Грешка при читање на GConf boolean вредност %s: %s" + +#~ msgid "Drawer Properties" +#~ msgstr "Својства на фиоката" + +#~ msgid "_Icon:" +#~ msgstr "_Икона:" + +#~ msgid "Command entry" +#~ msgstr "Команда за извршување" + +#~ msgid "Enter a command string here to run it." +#~ msgstr "Внеси команден стринг овде за да го извршиш." + +#~ msgid "Background color opacity" +#~ msgstr "Густината на боја на позадина." + +#~ msgid "Fit image to panel" +#~ msgstr "Принуди ја сликата да одговара на панелот" + +#~ msgid "" +#~ "If true, hiding and un-hiding of this panel will be animated rather than " +#~ "happening instantly." +#~ msgstr "" +#~ "Ако е точно тогаш криењето и откривањето на овој панел ќе биде анимиано " +#~ "наместо прикажано моментално." + +#~ msgid "" +#~ "If true, the image will be scaled (retaining the aspect ratio of the " +#~ "image) to the panel height (if horizontal)." +#~ msgstr "" +#~ "Ако е точно, сликата ќе биде прилагодена (одржувајќи го односот на " +#~ "сликата) на на висината на панелот (ако е хоризонтално)." + +#~ msgid "" +#~ "If true, the image will be scaled to the panel dimensions. The aspect " +#~ "ratio of the image will not be maintained." +#~ msgstr "" +#~ "Ако е вистинито сликата ќе биде прилагодена со големината напанелот. " +#~ "Односот на сликата нема да биде одржан." + +#~ msgid "" +#~ "Specifies the opacity of the background color format. If the color is not " +#~ "completely opaque (a value of less than 65535), the color will be " +#~ "composited onto the desktop background image." +#~ msgstr "" +#~ "Ја одредува густината на бојата на позадинската боја. Ако бојата не " +#~ "целосно матна (вредност помала од 65535), бојата ќе биде склопена на " +#~ "сликата на работната површина" + +#~ msgid "Stretch image to panel" +#~ msgstr "Рашири ја сликата низ панелот" + +#~ msgid "Could not execute '%s'" +#~ msgstr "Не можам да извршам'%s'" + +#~ msgid "Delete this drawer?" +#~ msgstr "Да ја избришам фиоката?" + +#~ msgid "" +#~ "When a drawer is deleted, the drawer and its\n" +#~ "settings are lost." +#~ msgstr "" +#~ "Кога се отстранува фиока, фиоката и нејзините\n" +#~ "аплети и поставувања се губат." #~ msgid "There was an error displaying help: %s" #~ msgstr "Грешка при прикажувањето на помошта %s" @@ -3297,9 +3099,6 @@ #~ msgid "panel:showusername|1" #~ msgstr "panel:showusername|1" -#~ msgid "Could not launch menu item" -#~ msgstr "Не можам да го подигнам предметот од менито" - #~ msgid "Orientation|Top" #~ msgstr "На врв" @@ -3339,9 +3138,6 @@ #~ msgid "Unknown background type received" #~ msgstr "Примен е непознат тип на позадина" -#~ msgid "The Applet's containing Panel's orientation" -#~ msgstr "Аплетот ја содржи ориентацијата на панелот" - #~ msgid "The Applet's containing Panel's size in pixels" #~ msgstr "Аплетот ја содржи големината на панелот во пиксели" diff -Nru gnome-panel-3.3.3/po/nb.po gnome-panel-3.3.5/po/nb.po --- gnome-panel-3.3.3/po/nb.po 2011-12-08 11:29:18.000000000 +0000 +++ gnome-panel-3.3.5/po/nb.po 2012-02-02 10:36:00.000000000 +0000 @@ -1,23 +1,22 @@ # Norwegian bokmål translation of gnome-panel. # Copyright (C) 1998-2003 Free Software Foundation, Inc. # -# Kjartan Maraas , 1998-2011. +# Kjartan Maraas , 1998-2012. # Øivind Hoel , 2006. # Torstein Adolf Winterseth , 2010. msgid "" msgstr "" "Project-Id-Version: gnome-panel 3.x\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-19 23:42+0200\n" -"PO-Revision-Date: 2011-10-19 23:43+0200\n" +"POT-Creation-Date: 2012-01-25 14:58+0100\n" +"PO-Revision-Date: 2012-01-25 14:59+0100\n" "Last-Translator: Kjartan Maraas \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian bokmål \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 1.1\n" #. Translators: This is a strftime format string. #. * It is used to display the time in 12-hours format @@ -85,7 +84,7 @@ msgid "Weather Information" msgstr "Informasjon om vær" -#: ../applets/clock/calendar-window.c:1624 ../applets/clock/clock.ui.h:11 +#: ../applets/clock/calendar-window.c:1624 ../applets/clock/clock.ui.h:22 msgid "Locations" msgstr "Steder" @@ -255,12 +254,8 @@ msgid "Custom _format:" msgstr "Tilpasset _format:" -#: ../applets/clock/clock.ui.h:1 -msgid "(optional)" -msgstr "(valgfri)" - #. Languages that have a single word that translates as either "state" or "province" should use that instead of "region". -#: ../applets/clock/clock.ui.h:3 +#: ../applets/clock/clock.ui.h:2 msgid "" "Type a city, region, or country name and then select a match from " "the pop-up." @@ -268,106 +263,110 @@ "Skriv inn en by, region eller navn på et land og velg fra listen." +#: ../applets/clock/clock.ui.h:3 +msgid "_Timezone:" +msgstr "_Tidssone:" + #: ../applets/clock/clock.ui.h:4 -msgid "Clock Format" -msgstr "Klokkeformat" +msgid "_Location Name:" +msgstr "Navn på _sted:" #: ../applets/clock/clock.ui.h:5 -msgid "Clock Preferences" -msgstr "Brukervalg for klokke" +msgid "(optional)" +msgstr "(valgfri)" #: ../applets/clock/clock.ui.h:6 -msgid "Display" -msgstr "Vis<" +msgid "L_ongitude:" +msgstr "Le_ngdegrad:" #: ../applets/clock/clock.ui.h:7 +msgid "L_atitude:" +msgstr "Breddegr_ad:" + +#: ../applets/clock/clock.ui.h:8 msgid "East" msgstr "Øst" -#: ../applets/clock/clock.ui.h:8 ../applets/fish/fish.ui.h:5 -#: ../gnome-panel/panel-properties-dialog.ui.h:9 -msgid "General" -msgstr "Generelt" - #: ../applets/clock/clock.ui.h:9 -msgid "L_atitude:" -msgstr "Breddegr_ad:" +msgid "West" +msgstr "Vest" #: ../applets/clock/clock.ui.h:10 -msgid "L_ongitude:" -msgstr "Le_ngdegrad:" - -#: ../applets/clock/clock.ui.h:12 msgid "North" msgstr "Nord" +#: ../applets/clock/clock.ui.h:11 +msgid "South" +msgstr "Sør" + +#: ../applets/clock/clock.ui.h:12 +msgid "Clock Preferences" +msgstr "Brukervalg for klokke" + #: ../applets/clock/clock.ui.h:13 -msgid "Panel Display" -msgstr "Panelvisning" +msgid "Clock Format" +msgstr "Klokkeformat" #: ../applets/clock/clock.ui.h:14 -msgid "Show _temperature" -msgstr "Vis _temperatur" +msgid "_12 hour format" +msgstr "_12-timers format" #: ../applets/clock/clock.ui.h:15 -msgid "Show _weather" -msgstr "Vis _vær" +msgid "_24 hour format" +msgstr "_24-timers format" #: ../applets/clock/clock.ui.h:16 -msgid "Show seco_nds" -msgstr "Vis seku_nder" +msgid "Panel Display" +msgstr "Panelvisning" #: ../applets/clock/clock.ui.h:17 msgid "Show the _date" msgstr "Vis _dato" #: ../applets/clock/clock.ui.h:18 -msgid "South" -msgstr "Sør" +msgid "Show seco_nds" +msgstr "Vis seku_nder" #: ../applets/clock/clock.ui.h:19 -msgid "Time _Settings" -msgstr "Tidsinn_stillinger" +msgid "Show _weather" +msgstr "Vis _vær" #: ../applets/clock/clock.ui.h:20 -msgid "Weather" -msgstr "Vær" - -#: ../applets/clock/clock.ui.h:21 -msgid "West" -msgstr "Vest" +msgid "Show _temperature" +msgstr "Vis _temperatur" -#: ../applets/clock/clock.ui.h:22 -msgid "_12 hour format" -msgstr "_12-timers format" +#: ../applets/clock/clock.ui.h:21 ../applets/fish/fish.ui.h:2 +#: ../gnome-panel/panel-properties-dialog.ui.h:10 +msgid "General" +msgstr "Generelt" #: ../applets/clock/clock.ui.h:23 -msgid "_24 hour format" -msgstr "_24-timers format" +msgid "Display" +msgstr "Vis<" #: ../applets/clock/clock.ui.h:24 -msgid "_Location Name:" -msgstr "Navn på _sted:" +msgid "_Visibility unit:" +msgstr "Enhet for _sikt:" #: ../applets/clock/clock.ui.h:25 msgid "_Pressure unit:" msgstr "Enhet for _trykk:" #: ../applets/clock/clock.ui.h:26 -msgid "_Temperature unit:" -msgstr "Enhet for _temperatur:" +msgid "_Wind speed unit:" +msgstr "Enhet for _vindhastighet:" #: ../applets/clock/clock.ui.h:27 -msgid "_Timezone:" -msgstr "_Tidssone:" +msgid "_Temperature unit:" +msgstr "Enhet for _temperatur:" #: ../applets/clock/clock.ui.h:28 -msgid "_Visibility unit:" -msgstr "Enhet for _sikt:" +msgid "Weather" +msgstr "Vær" #: ../applets/clock/clock.ui.h:29 -msgid "_Wind speed unit:" -msgstr "Enhet for _vindhastighet:" +msgid "Time _Settings" +msgstr "Tidsinn_stillinger" #. Translators: #. This controls whether the GNOME panel clock should display time in 24 hour mode @@ -384,147 +383,163 @@ msgstr "24-hour" #: ../applets/clock/clock.schemas.in.h:12 -msgid "A list of locations to display in the calendar window." -msgstr "En liste med steder som vises i kalendervinduet." +msgid "Hour format" +msgstr "Timeformat" #: ../applets/clock/clock.schemas.in.h:13 -msgid "Custom format of the clock" -msgstr "Tilpasset format for klokken" +msgid "" +"This key specifies the hour format used by the clock applet. Possible values " +"are \"12-hour\", \"24-hour\", \"internet\", \"unix\" and \"custom\". If set " +"to \"internet\", the clock will display Internet time. The Internet time " +"system divides the day into 1000 \".beats\". There are no time zones in this " +"system, so time is the same all over the world. If set to \"unix\", the " +"clock will display time in seconds since Epoch, i.e. 1970-01-01. If set to " +"\"custom\", the clock will display time according to the format specified in " +"the custom_format key." +msgstr "" +"Denne nøkkelen spesifiserer timeformatet som brukes av panelklokken. Mulige " +"verdier er «12-hour», «24-hour», «internet», «unix» og «custom». Hvis den " +"settes til «internet» vil klokken vise Internett-tid. Internett-tidsystemet " +"deler dagen inn i 1000 pulser. Det er ingen tidssoner i dette systemet så " +"tiden er den samme over hele verden. Hvis den settes til «unix» vil klokken " +"vise tiden i sekunder siden Epoch, altså 1. januar 1970. Hvis den settes til " +"«custom» vil den vise tiden i henhold til formatet som oppgis i nøkkelen " +"«custom_key»." #: ../applets/clock/clock.schemas.in.h:14 -msgid "Expand list of appointments" -msgstr "Utvid liste med avtaler" +msgid "Custom format of the clock" +msgstr "Tilpasset format for klokken" #: ../applets/clock/clock.schemas.in.h:15 -msgid "Expand list of birthdays" -msgstr "Utvid liste med fødselsdager" +msgid "" +"This key specifies the format used by the clock applet when the format key " +"is set to \"custom\". You can use conversion specifiers understood by " +"strftime() to obtain a specific format. See the strftime() manual for more " +"information." +msgstr "" +"Denne nøkkelen spesifiserer formatet som brukes av panelklokken når " +"formatnøkkelen er satt til «custom». Du kan bruke " +"konverteringsspesifikasjonene som er gyldige i strftime() for å tilpasse " +"formatet. Se manualsiden for strftime()." #: ../applets/clock/clock.schemas.in.h:16 -msgid "Expand list of locations" -msgstr "Utvid liste med steder" +msgid "Show time with seconds" +msgstr "Vis tid med csekunder" #: ../applets/clock/clock.schemas.in.h:17 -msgid "Expand list of tasks" -msgstr "Utvid liste med oppgaver" +msgid "If true, display seconds in time." +msgstr "Vis sekunder i tid hvis satt til «true»." #: ../applets/clock/clock.schemas.in.h:18 -msgid "Expand list of weather information" -msgstr "Utvid liste med informasjon om vær" +msgid "Show date in clock" +msgstr "Vis dato i klokken" #: ../applets/clock/clock.schemas.in.h:19 -msgid "Hour format" -msgstr "Timeformat" +msgid "If true, display date in the clock, in addition to time." +msgstr "Vis dato i klokken, i tillegg til tid hvis satt til «true»." #: ../applets/clock/clock.schemas.in.h:20 -msgid "If true, display a weather icon." -msgstr "Vis værikon hvis denne er satt til «true»." +msgid "Show date in tooltip" +msgstr "Vis dato i verktøytipset" #: ../applets/clock/clock.schemas.in.h:21 -msgid "If true, display date in the clock, in addition to time." -msgstr "Vis dato i klokken, i tillegg til tid hvis satt til «true»." +msgid "If true, show date in a tooltip when the pointer is over the clock." +msgstr "" +"Vis dato i verktøytipset når muspekeren holdes over klokken hvis satt til " +"«true»." #: ../applets/clock/clock.schemas.in.h:22 -msgid "If true, display seconds in time." -msgstr "Vis sekunder i tid hvis satt til «true»." +msgid "Show weather in clock" +msgstr "Vis været i klokken" #: ../applets/clock/clock.schemas.in.h:23 -msgid "If true, expand the list of appointments in the calendar window." -msgstr "Avtalelisten i kalendervinduet utvides hvis sann." +msgid "If true, display a weather icon." +msgstr "Vis værikon hvis denne er satt til «true»." #: ../applets/clock/clock.schemas.in.h:24 -msgid "If true, expand the list of birthdays in the calendar window." -msgstr "Fødselsdagslisten i kalendervinduet utvides hvis sann." +msgid "Show temperature in clock" +msgstr "Vis temperaturen i klokken" #: ../applets/clock/clock.schemas.in.h:25 -msgid "If true, expand the list of locations in the calendar window." -msgstr "" -"Utvid listen med steder i kalendervinduet hvis denne er satt til «true»." +msgid "If true, show the temperature next to the weather icon." +msgstr "Vis temperatur ved siden av værikonet hvis sann." #: ../applets/clock/clock.schemas.in.h:26 -msgid "If true, expand the list of tasks in the calendar window." -msgstr "Utvid listen med oppgaver i kalendervinduet hvis sann." +msgid "Use UTC" +msgstr "Bruk UTC" #: ../applets/clock/clock.schemas.in.h:27 -msgid "If true, expand the list of weather information in the calendar window." -msgstr "Utvid listen med værinformasjon i kalendervinduet hvis sann." +msgid "" +"The use of this key was deprecated in GNOME 2.28 in favour of the use of " +"timezones. The schema is retained for compatibility with older versions." +msgstr "" +"Bruk av denne nøkkelen gikk ut i GNOME 2.28 til fordel for bruk av " +"tidssoner. Denne bevares for kompatibilitet med eldre versjoner." #: ../applets/clock/clock.schemas.in.h:28 -msgid "If true, show date in a tooltip when the pointer is over the clock." -msgstr "" -"Vis dato i verktøytipset når muspekeren holdes over klokken hvis satt til " -"«true»." +msgid "Time configuration tool" +msgstr "Verktøy for konfigurering av tid" #: ../applets/clock/clock.schemas.in.h:29 -msgid "If true, show the temperature next to the weather icon." -msgstr "Vis temperatur ved siden av værikonet hvis sann." +msgid "" +"The use of this key was deprecated in GNOME 2.22 with the use of an internal " +"time configuration tool. The schema is retained for compatibility with older " +"versions." +msgstr "" +"Bruk av denne nøkkelen gikk ut i GNOME 2.22 til fordel for et internt " +"verktøy for å stille klokken. Denne bevares for kompatibilitet med eldre " +"versjoner." #: ../applets/clock/clock.schemas.in.h:30 -msgid "If true, show week numbers in the calendar." -msgstr "Vis ukenummer i kalenderen hvis sann." +msgid "Show week numbers in calendar" +msgstr "Vis ukenummer i kalenderen" #: ../applets/clock/clock.schemas.in.h:31 -msgid "List of locations" -msgstr "Liste med steder" +msgid "If true, show week numbers in the calendar." +msgstr "Vis ukenummer i kalenderen hvis sann." #: ../applets/clock/clock.schemas.in.h:32 -msgid "Show date in clock" -msgstr "Vis dato i klokken" +msgid "Expand list of appointments" +msgstr "Utvid liste med avtaler" #: ../applets/clock/clock.schemas.in.h:33 -msgid "Show date in tooltip" -msgstr "Vis dato i verktøytipset" +msgid "If true, expand the list of appointments in the calendar window." +msgstr "Avtalelisten i kalendervinduet utvides hvis sann." #: ../applets/clock/clock.schemas.in.h:34 -msgid "Show temperature in clock" -msgstr "Vis temperaturen i klokken" +msgid "Expand list of birthdays" +msgstr "Utvid liste med fødselsdager" #: ../applets/clock/clock.schemas.in.h:35 -msgid "Show time with seconds" -msgstr "Vis tid med csekunder" +msgid "If true, expand the list of birthdays in the calendar window." +msgstr "Fødselsdagslisten i kalendervinduet utvides hvis sann." #: ../applets/clock/clock.schemas.in.h:36 -msgid "Show weather in clock" -msgstr "Vis været i klokken" +msgid "Expand list of tasks" +msgstr "Utvid liste med oppgaver" #: ../applets/clock/clock.schemas.in.h:37 -msgid "Show week numbers in calendar" -msgstr "Vis ukenummer i kalenderen" +msgid "If true, expand the list of tasks in the calendar window." +msgstr "Utvid listen med oppgaver i kalendervinduet hvis sann." #: ../applets/clock/clock.schemas.in.h:38 -msgid "Speed unit" -msgstr "Enhet for hastighet" +msgid "Expand list of weather information" +msgstr "Utvid liste med informasjon om vær" #: ../applets/clock/clock.schemas.in.h:39 -msgid "Temperature unit" -msgstr "Enhet for temperatur" +msgid "If true, expand the list of weather information in the calendar window." +msgstr "Utvid listen med værinformasjon i kalendervinduet hvis sann." #: ../applets/clock/clock.schemas.in.h:40 -msgid "The unit to use when showing temperatures." -msgstr "Enhet som skal brukes ved visning av temperaturer." - -#: ../applets/clock/clock.schemas.in.h:41 -msgid "The unit to use when showing wind speed." -msgstr "Enhet som skal brukes for vindhastighet." - -#: ../applets/clock/clock.schemas.in.h:42 -msgid "" -"The use of this key was deprecated in GNOME 2.22 with the use of an internal " -"time configuration tool. The schema is retained for compatibility with older " -"versions." -msgstr "" -"Bruk av denne nøkkelen gikk ut i GNOME 2.22 til fordel for et internt " -"verktøy for å stille klokken. Denne bevares for kompatibilitet med eldre " -"versjoner." +msgid "Expand list of locations" +msgstr "Utvid liste med steder" -#: ../applets/clock/clock.schemas.in.h:43 -msgid "" -"The use of this key was deprecated in GNOME 2.28 in favour of the use of " -"timezones. The schema is retained for compatibility with older versions." +#: ../applets/clock/clock.schemas.in.h:41 +msgid "If true, expand the list of locations in the calendar window." msgstr "" -"Bruk av denne nøkkelen gikk ut i GNOME 2.28 til fordel for bruk av " -"tidssoner. Denne bevares for kompatibilitet med eldre versjoner." +"Utvid listen med steder i kalendervinduet hvis denne er satt til «true»." -#: ../applets/clock/clock.schemas.in.h:44 +#: ../applets/clock/clock.schemas.in.h:42 msgid "" "The use of this key was deprecated in GNOME 2.6 in favour of the 'format' " "key. The schema is retained for compatibility with older versions." @@ -532,53 +547,37 @@ "Bruk av denne nøkkelen gikk ut i GNOME 2.6 til fordel for «format»-nøkkelen. " "Denne bevares for kompatibilitet med eldre versjoner." +#: ../applets/clock/clock.schemas.in.h:43 +msgid "Use UNIX time" +msgstr "Bruk UNIX tid" + +#: ../applets/clock/clock.schemas.in.h:44 +msgid "Use Internet time" +msgstr "Bruk Internett-tid" + #: ../applets/clock/clock.schemas.in.h:45 -msgid "" -"This key specifies the format used by the clock applet when the format key " -"is set to \"custom\". You can use conversion specifiers understood by " -"strftime() to obtain a specific format. See the strftime() manual for more " -"information." -msgstr "" -"Denne nøkkelen spesifiserer formatet som brukes av panelklokken når " -"formatnøkkelen er satt til «custom». Du kan bruke " -"konverteringsspesifikasjonene som er gyldige i strftime() for å tilpasse " -"formatet. Se manualsiden for strftime()." +msgid "List of locations" +msgstr "Liste med steder" #: ../applets/clock/clock.schemas.in.h:46 -msgid "" -"This key specifies the hour format used by the clock applet. Possible values " -"are \"12-hour\", \"24-hour\", \"internet\", \"unix\" and \"custom\". If set " -"to \"internet\", the clock will display Internet time. The Internet time " -"system divides the day into 1000 \".beats\". There are no time zones in this " -"system, so time is the same all over the world. If set to \"unix\", the " -"clock will display time in seconds since Epoch, i.e. 1970-01-01. If set to " -"\"custom\", the clock will display time according to the format specified in " -"the custom_format key." -msgstr "" -"Denne nøkkelen spesifiserer timeformatet som brukes av panelklokken. Mulige " -"verdier er «12-hour», «24-hour», «internet», «unix» og «custom». Hvis den " -"settes til «internet» vil klokken vise Internett-tid. Internett-tidsystemet " -"deler dagen inn i 1000 pulser. Det er ingen tidssoner i dette systemet så " -"tiden er den samme over hele verden. Hvis den settes til «unix» vil klokken " -"vise tiden i sekunder siden Epoch, altså 1. januar 1970. Hvis den settes til " -"«custom» vil den vise tiden i henhold til formatet som oppgis i nøkkelen " -"«custom_key»." +msgid "A list of locations to display in the calendar window." +msgstr "En liste med steder som vises i kalendervinduet." #: ../applets/clock/clock.schemas.in.h:47 -msgid "Time configuration tool" -msgstr "Verktøy for konfigurering av tid" +msgid "Temperature unit" +msgstr "Enhet for temperatur" #: ../applets/clock/clock.schemas.in.h:48 -msgid "Use Internet time" -msgstr "Bruk Internett-tid" +msgid "The unit to use when showing temperatures." +msgstr "Enhet som skal brukes ved visning av temperaturer." #: ../applets/clock/clock.schemas.in.h:49 -msgid "Use UNIX time" -msgstr "Bruk UNIX tid" +msgid "Speed unit" +msgstr "Enhet for hastighet" #: ../applets/clock/clock.schemas.in.h:50 -msgid "Use UTC" -msgstr "Bruk UTC" +msgid "The unit to use when showing wind speed." +msgstr "Enhet som skal brukes for vindhastighet." #: ../applets/clock/clock-location-tile.c:183 msgid "Failed to set the system timezone" @@ -658,17 +657,17 @@ msgstr "Feil ved visning av hjelpdokument" #: ../applets/clock/org.gnome.panel.ClockApplet.panel-applet.in.in.h:1 -msgid "Clock" -msgstr "Klokke" - -#: ../applets/clock/org.gnome.panel.ClockApplet.panel-applet.in.in.h:2 msgid "Clock Applet Factory" msgstr "Fabrikk for klokkepanelprogram" -#: ../applets/clock/org.gnome.panel.ClockApplet.panel-applet.in.in.h:3 +#: ../applets/clock/org.gnome.panel.ClockApplet.panel-applet.in.in.h:2 msgid "Factory for clock applet" msgstr "Fabrikk for klokkepanelprogrammet" +#: ../applets/clock/org.gnome.panel.ClockApplet.panel-applet.in.in.h:3 +msgid "Clock" +msgstr "Klokke" + #: ../applets/clock/org.gnome.panel.ClockApplet.panel-applet.in.in.h:4 msgid "Get the current time and date" msgstr "Hent tid og dato" @@ -760,61 +759,61 @@ msgid "%s the Fish, the fortune teller" msgstr "Fisken %s, en historieforteller" -#: ../applets/fish/fish.ui.h:1 ../gnome-panel/panel-properties-dialog.ui.h:1 -msgid " " -msgstr " " - -#: ../applets/fish/fish.ui.h:2 -msgid "Animation" -msgstr "Animasjon" +#: ../applets/fish/fish.ui.h:1 +msgid "Fish Preferences" +msgstr "Brukervalg for fisk" #: ../applets/fish/fish.ui.h:3 +msgid "_Name of fish:" +msgstr "_Navn på fisken:" + +#: ../applets/fish/fish.ui.h:4 msgid "Co_mmand to run when clicked:" msgstr "Ko_mmando som skal kjøres når bruker klikker:" -#: ../applets/fish/fish.ui.h:4 -msgid "Fish Preferences" -msgstr "Brukervalg for fisk" +#: ../applets/fish/fish.ui.h:5 +msgid "Animation" +msgstr "Animasjon" -#: ../applets/fish/fish.ui.h:6 -msgid "_Name of fish:" -msgstr "_Navn på fisken:" +#: ../applets/fish/fish.ui.h:6 ../gnome-panel/panel-properties-dialog.ui.h:13 +msgid " " +msgstr " " #: ../applets/fish/fish.ui.h:7 msgid "_Pause per frame:" msgstr "_Varighet for hvert bilde:" #: ../applets/fish/fish.ui.h:8 -msgid "_Rotate on vertical panels" -msgstr "_Roter på vertikale paneler" - -#: ../applets/fish/fish.ui.h:9 msgid "seconds" msgstr "sekunder" +#: ../applets/fish/fish.ui.h:9 +msgid "_Rotate on vertical panels" +msgstr "_Roter på vertikale paneler" + #: ../applets/fish/org.gnome.panel.FishApplet.panel-applet.in.in.h:1 -msgid "Display a swimming fish or another animated creature" -msgstr "Viser en svømmende fisk eller en annen animert skapning" +msgid "Wanda Factory" +msgstr "Wanda-fabrikk" #: ../applets/fish/org.gnome.panel.FishApplet.panel-applet.in.in.h:2 -msgid "Fish" -msgstr "Fisk" - -#: ../applets/fish/org.gnome.panel.FishApplet.panel-applet.in.in.h:3 msgid "From Whence That Stupid Fish Came" msgstr "Hvor den dumme fisken kom fra" +#: ../applets/fish/org.gnome.panel.FishApplet.panel-applet.in.in.h:3 +msgid "Fish" +msgstr "Fisk" + #: ../applets/fish/org.gnome.panel.FishApplet.panel-applet.in.in.h:4 -msgid "Wanda Factory" -msgstr "Wanda-fabrikk" +msgid "Display a swimming fish or another animated creature" +msgstr "Viser en svømmende fisk eller en annen animert skapning" #: ../applets/notification_area/main.c:242 msgid "Panel Notification Area" msgstr "Varslingsområde for panelet" #: ../applets/notification_area/org.gnome.panel.NotificationAreaApplet.panel-applet.in.in.h:1 -msgid "Area where notification icons appear" -msgstr "Område hvor varslingsikoner vises" +msgid "Notification Area Factory" +msgstr "Fabrikk for varslingsområde" #: ../applets/notification_area/org.gnome.panel.NotificationAreaApplet.panel-applet.in.in.h:2 msgid "Factory for notification area" @@ -825,28 +824,29 @@ msgstr "Varslingsområde" #: ../applets/notification_area/org.gnome.panel.NotificationAreaApplet.panel-applet.in.in.h:4 -msgid "Notification Area Factory" -msgstr "Fabrikk for varslingsområde" +msgid "Area where notification icons appear" +msgstr "Område hvor varslingsikoner vises" #: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:1 -msgid "Factory for the window navigation related applets" -msgstr "Fabrikk for panelprogrammer for vindunavigering" +msgid "Window Navigation Applet Factory" +msgstr "Fabrikk for panelprogram for vindulistenavigering" #: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:2 -msgid "Hide application windows and show the desktop" -msgstr "Skjul programvinduer og vis skrivebordet" +msgid "Factory for the window navigation related applets" +msgstr "Fabrikk for panelprogrammer for vindunavigering" #: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:3 -msgid "Show Desktop" -msgstr "Vis skrivebord" +#: ../applets/wncklet/window-menu.c:204 +msgid "Window Selector" +msgstr "Vinduvelger" #: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:4 msgid "Switch between open windows using a menu" msgstr "Bytt mellom åpne vinduer med en meny" #: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:5 -msgid "Switch between open windows using buttons" -msgstr "Bytt mellom åpne vinduer med knapper" +msgid "Workspace Switcher" +msgstr "Arbeidsområdebytter" #: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:6 msgid "Switch between workspaces" @@ -857,17 +857,16 @@ msgstr "Vinduliste" #: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:8 -msgid "Window Navigation Applet Factory" -msgstr "Fabrikk for panelprogram for vindulistenavigering" +msgid "Switch between open windows using buttons" +msgstr "Bytt mellom åpne vinduer med knapper" #: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:9 -#: ../applets/wncklet/window-menu.c:204 -msgid "Window Selector" -msgstr "Vinduvelger" +msgid "Show Desktop" +msgstr "Vis skrivebord" #: ../applets/wncklet/org.gnome.panel.Wncklet.panel-applet.in.in.h:10 -msgid "Workspace Switcher" -msgstr "Arbeidsområdebytter" +msgid "Hide application windows and show the desktop" +msgstr "Skjul programvinduer og vis skrivebordet" #: ../applets/wncklet/showdesktop.c:177 #, c-format @@ -899,52 +898,52 @@ "kanskje du ikke kjører med en vindushåndterer." #: ../applets/wncklet/window-list.ui.h:1 -msgid "Group windows when _space is limited" -msgstr "Grupper vinduer når pla_ssen er begrenset" +msgid "Window List Preferences" +msgstr "Brukervalg for vinduliste" #: ../applets/wncklet/window-list.ui.h:2 -msgid "Restore to current _workspace" -msgstr "Gjeno_pprett til aktivt arbeidsområde" +msgid "Window List Content" +msgstr "Innhold i vinduliste" #: ../applets/wncklet/window-list.ui.h:3 -msgid "Restore to na_tive workspace" -msgstr "Gjenoppre_tt til opprinnelig arbeidsområde" - -#: ../applets/wncklet/window-list.ui.h:4 -msgid "Restoring Minimized Windows" -msgstr "Gjenoppretting av minimerte vinduer" - -#: ../applets/wncklet/window-list.ui.h:5 msgid "Sh_ow windows from current workspace" msgstr "_Vis vinuder fra aktivt arbeidsområde" -#: ../applets/wncklet/window-list.ui.h:6 +#: ../applets/wncklet/window-list.ui.h:4 msgid "Show windows from a_ll workspaces" msgstr "Vis vinduer fra a_lle arbeidsområder" -#: ../applets/wncklet/window-list.ui.h:7 +#: ../applets/wncklet/window-list.ui.h:5 msgid "Window Grouping" msgstr "Gruppering av vinduer" +#: ../applets/wncklet/window-list.ui.h:6 +msgid "_Never group windows" +msgstr "A_ldri grupper vinduer" + +#: ../applets/wncklet/window-list.ui.h:7 +msgid "Group windows when _space is limited" +msgstr "Grupper vinduer når pla_ssen er begrenset" + #: ../applets/wncklet/window-list.ui.h:8 -msgid "Window List Content" -msgstr "Innhold i vinduliste" +msgid "_Always group windows" +msgstr "_Alltid grupper vinduer" #: ../applets/wncklet/window-list.ui.h:9 -msgid "Window List Preferences" -msgstr "Brukervalg for vinduliste" +msgid "Restoring Minimized Windows" +msgstr "Gjenoppretting av minimerte vinduer" #: ../applets/wncklet/window-list.ui.h:10 -msgid "_Always group windows" -msgstr "_Alltid grupper vinduer" +msgid "Restore to current _workspace" +msgstr "Gjeno_pprett til aktivt arbeidsområde" #: ../applets/wncklet/window-list.ui.h:11 -msgid "_Never group windows" -msgstr "A_ldri grupper vinduer" +msgid "Restore to na_tive workspace" +msgstr "Gjenoppre_tt til opprinnelig arbeidsområde" #: ../applets/wncklet/workspace-switcher.c:194 #: ../applets/wncklet/workspace-switcher.c:723 -#: ../applets/wncklet/workspace-switcher.ui.h:10 +#: ../applets/wncklet/workspace-switcher.ui.h:4 msgid "rows" msgstr "rader" @@ -954,42 +953,46 @@ msgstr "kolonner" #: ../applets/wncklet/workspace-switcher.ui.h:1 -msgid "Number of _workspaces:" -msgstr "Antall ar_beidsområder:" +msgid "Workspace Switcher Preferences" +msgstr "Brukervalg for arbeidsområdebytter" #: ../applets/wncklet/workspace-switcher.ui.h:2 -msgid "Show _all workspaces in:" -msgstr "Vis _alle arbeidsområder i:" - -#: ../applets/wncklet/workspace-switcher.ui.h:3 msgid "Show _only the current workspace" msgstr "Vis _kun aktivt arbeidsområde" -#: ../applets/wncklet/workspace-switcher.ui.h:4 -msgid "Show workspace _names in switcher" -msgstr "Vis arbeidsområde_navn i bytteren" +#: ../applets/wncklet/workspace-switcher.ui.h:3 +msgid "Show _all workspaces in:" +msgstr "Vis _alle arbeidsområder i:" #: ../applets/wncklet/workspace-switcher.ui.h:5 msgid "Switcher" msgstr "Bytter" #: ../applets/wncklet/workspace-switcher.ui.h:6 -msgid "Workspace Names" -msgstr "Navn på arbeidsområder" +msgid "Number of _workspaces:" +msgstr "Antall ar_beidsområder:" #: ../applets/wncklet/workspace-switcher.ui.h:7 -msgid "Workspace Switcher Preferences" -msgstr "Brukervalg for arbeidsområdebytter" - -#: ../applets/wncklet/workspace-switcher.ui.h:8 msgid "Workspace na_mes:" msgstr "Navn på arbeidso_mråder:" +#: ../applets/wncklet/workspace-switcher.ui.h:8 +msgid "Workspace Names" +msgstr "Navn på arbeidsområder" + #: ../applets/wncklet/workspace-switcher.ui.h:9 +msgid "Show workspace _names in switcher" +msgstr "Vis arbeidsområde_navn i bytteren" + +#: ../applets/wncklet/workspace-switcher.ui.h:10 msgid "Workspaces" msgstr "Arbeidsområder" #: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:1 +msgid "The fish's name" +msgstr "Fiskens navn" + +#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:2 msgid "" "A fish without a name is a pretty dull fish. Bring your fish to life by " "naming him." @@ -997,58 +1000,50 @@ "En fisk uten et navn er en veldig kjedelig fisk. Gi liv til din fisk ved å " "gi den et navn." -#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:2 -msgid "Command to execute on click" -msgstr "Kommando som skal utføres ved klikk" - #: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:3 -msgid "" -"If true, the fish's animation will be displayed rotated on vertical panels." -msgstr "" -"Fiskens animasjon vil roteres på vertikale paneler hvis denne settes til " -"«true»." +msgid "The fish's animation pixmap" +msgstr "Fiskens animerte bilde" #: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:4 -msgid "Pause per frame" -msgstr "Pause for hvert bilde" +msgid "" +"This key specifies the filename of the pixmap which will be used for the " +"animation displayed in the fish applet relative to the pixmap directory." +msgstr "" +"Denne nøkkelen spesifiserer filnavnet relativ til bildekatalogen for bildet " +"som skal brukes som animasjon for fisken." #: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:5 -msgid "Rotate on vertical panels" -msgstr "Roter på vertikale paneler" +msgid "Command to execute on click" +msgstr "Kommando som skal utføres ved klikk" #: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:6 -msgid "The fish's animation pixmap" -msgstr "Fiskens animerte bilde" - -#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:7 -msgid "The fish's name" -msgstr "Fiskens navn" - -#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:8 msgid "" "This key specifies the command that will be tried to execute when the fish " "is clicked." msgstr "Denne nøkkelen oppgir kommandoen som skal utføres ved klikk på fisken." -#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:9 -msgid "" -"This key specifies the filename of the pixmap which will be used for the " -"animation displayed in the fish applet relative to the pixmap directory." -msgstr "" -"Denne nøkkelen spesifiserer filnavnet relativ til bildekatalogen for bildet " -"som skal brukes som animasjon for fisken." +#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:7 +msgid "Pause per frame" +msgstr "Pause for hvert bilde" -#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:10 +#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:8 msgid "This key specifies the number of seconds each frame will be displayed." msgstr "Denne nøkkelen oppgir antall sekunder hvert bilde vil vises." -#: ../data/org.gnome.gnome-panel.applet.window-list.gschema.xml.in.in.h:1 +#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:9 +msgid "Rotate on vertical panels" +msgstr "Roter på vertikale paneler" + +#: ../data/org.gnome.gnome-panel.applet.fish.gschema.xml.in.in.h:10 msgid "" -"Decides when to group windows from the same application on the window list. " -"Possible values are \"never\", \"auto\" and \"always\"." +"If true, the fish's animation will be displayed rotated on vertical panels." msgstr "" -"Bestemmer når vinduer fra samme program skal grupperes i oppgavelisten. " -"Mulige verdier er «never», «auto» og «always»." +"Fiskens animasjon vil roteres på vertikale paneler hvis denne settes til " +"«true»." + +#: ../data/org.gnome.gnome-panel.applet.window-list.gschema.xml.in.in.h:1 +msgid "Show windows from all workspaces" +msgstr "Vis vinduer fra alle arbeidsområder" #: ../data/org.gnome.gnome-panel.applet.window-list.gschema.xml.in.in.h:2 msgid "" @@ -1059,42 +1054,34 @@ "arbeidsområder. Ellers vil kun vinduer fra aktivt arbeidsområde vises." #: ../data/org.gnome.gnome-panel.applet.window-list.gschema.xml.in.in.h:3 +msgid "When to group windows" +msgstr "Når skal vinduer grupperes" + +#: ../data/org.gnome.gnome-panel.applet.window-list.gschema.xml.in.in.h:4 msgid "" -"If true, then when unminimizing a window, move it to the current workspace. " -"Otherwise, switch to the workspace of the window." +"Decides when to group windows from the same application on the window list. " +"Possible values are \"never\", \"auto\" and \"always\"." msgstr "" -"Hvis satt til «true» hentes vinduer til aktivt arbeidsområde ved " -"gjenoppretting. Ellers bytt til vinduets arbeidsområde." +"Bestemmer når vinduer fra samme program skal grupperes i oppgavelisten. " +"Mulige verdier er «never», «auto» og «always»." -#: ../data/org.gnome.gnome-panel.applet.window-list.gschema.xml.in.in.h:4 +#: ../data/org.gnome.gnome-panel.applet.window-list.gschema.xml.in.in.h:5 msgid "Move windows to current workspace when unminimized" msgstr "Flytt vinuder til aktivt arbeidsområde ved gjenoppretting" -#: ../data/org.gnome.gnome-panel.applet.window-list.gschema.xml.in.in.h:5 -msgid "Show windows from all workspaces" -msgstr "Vis vinduer fra alle arbeidsområder" - #: ../data/org.gnome.gnome-panel.applet.window-list.gschema.xml.in.in.h:6 -msgid "When to group windows" -msgstr "Når skal vinduer grupperes" +msgid "" +"If true, then when unminimizing a window, move it to the current workspace. " +"Otherwise, switch to the workspace of the window." +msgstr "" +"Hvis satt til «true» hentes vinduer til aktivt arbeidsområde ved " +"gjenoppretting. Ellers bytt til vinduets arbeidsområde." #: ../data/org.gnome.gnome-panel.applet.workspace-switcher.gschema.xml.in.in.h:1 -msgid "Display all workspaces" -msgstr "Vis alle arbeidsområder" - -#: ../data/org.gnome.gnome-panel.applet.workspace-switcher.gschema.xml.in.in.h:2 msgid "Display workspace names" msgstr "Vis navn på arbeidsområder" -#: ../data/org.gnome.gnome-panel.applet.workspace-switcher.gschema.xml.in.in.h:3 -msgid "" -"If true, the workspace switcher will show all workspaces. Otherwise it will " -"only show the current workspace." -msgstr "" -"Hvis denne er satt til «true» vil arbeidsområdebytter vise alle " -"arbeidsområder, ellers vil kun aktivt arbeidsområde vises." - -#: ../data/org.gnome.gnome-panel.applet.workspace-switcher.gschema.xml.in.in.h:4 +#: ../data/org.gnome.gnome-panel.applet.workspace-switcher.gschema.xml.in.in.h:2 msgid "" "If true, the workspaces in the workspace switcher will display the names of " "the workspaces. Otherwise they will display the windows on the workspace. " @@ -1104,6 +1091,18 @@ "arbeidsområdene, ellers vil vinduene på arbeidsområdet vises. Denne " "innstillingen virker kun med Metacity vindushåndtereren." +#: ../data/org.gnome.gnome-panel.applet.workspace-switcher.gschema.xml.in.in.h:3 +msgid "Display all workspaces" +msgstr "Vis alle arbeidsområder" + +#: ../data/org.gnome.gnome-panel.applet.workspace-switcher.gschema.xml.in.in.h:4 +msgid "" +"If true, the workspace switcher will show all workspaces. Otherwise it will " +"only show the current workspace." +msgstr "" +"Hvis denne er satt til «true» vil arbeidsområdebytter vise alle " +"arbeidsområder, ellers vil kun aktivt arbeidsområde vises." + #: ../data/org.gnome.gnome-panel.applet.workspace-switcher.gschema.xml.in.in.h:5 msgid "Rows in workspace switcher" msgstr "Rader i arbeidsområdebytter" @@ -1120,19 +1119,35 @@ "«display_all_workspaces» er satt til «true»." #: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:1 +msgid "Enable tooltips" +msgstr "Slå på verktøytips" + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:2 msgid "" -"A list of applet IIDs that the panel will ignore. This way you can disable " -"certain applets from loading or showing up in the menu. For example to " -"disable the mini-commander applet add 'OAFIID:GNOME_MiniCommanderApplet' to " -"this list. The panel must be restarted for this to take effect." +"If true, tooltips are shown for objects in panels. Tooltips can be disabled " +"for the whole desktop with the gtk-enable-tooltips property in GTK+." msgstr "" -"En liste med IIDer for panelprogrammer som panelet skal ignorere. På denne " -"måten kan du hindre at panelprogrammer lastes eller vises i menyen. Du kan " -"for eksempel deaktivere kommandolinjepanelprogrammet ved å legge til «OAFIID:" -"GNOME_MiniCommanderApplet» i listen. Panelet må startes på nytt for at dette " -"skal tre i kraft." +"Hvis satt til «true» vil verktøytips vises for objekter på paneler. " +"Verktøytips kan slås av for hele skrivebordet med egenskapen gtk-enable-" +"tooltips i GTK+." -#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:2 +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:3 +msgid "Confirm panel removal" +msgstr "Bekreft fjerning av panel" + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:4 +msgid "" +"If true, a dialog is shown asking for confirmation if the user wants to " +"remove a panel." +msgstr "" +"Hvis sann vil en dialog vises for å spørre om bekreftelse hvis bruker ønsker " +"å fjerne et panel." + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:5 +msgid "Panel ID list" +msgstr "ID-liste for paneler" + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:6 msgid "" "A list of panel IDs. Each ID identifies an individual toplevel panel. The " "settings for each of these panels are stored in /apps/panel/toplevels/$(id)." @@ -1141,7 +1156,11 @@ "Innstillingene for hvert av disse panelene lagres i /apps/panel/toplevels/" "$(id)." -#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:3 +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:7 +msgid "Panel object ID list" +msgstr "ID-liste over panelobjekter" + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:8 msgid "" "A list of panel object IDs. Each ID identifies an individual panel object (e." "g. an applet, launcher, action button or menu button/bar). The settings for " @@ -1152,69 +1171,64 @@ "knapp/linje. Innstillingene for hvert av disse objektene lagres i /apps/" "panel/objects/$(id)." -#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:4 -msgid "Applet IIDs to disable from loading" -msgstr "IIDer for panelprogrammer som skal hindres å starte" - -#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:5 +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:9 msgid "Complete panel lockdown" msgstr "Fullstending nedlåsing av panelet" -#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:6 -msgid "Confirm panel removal" -msgstr "Bekreft fjerning av panel" - -#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:7 -msgid "Disable Force Quit" -msgstr "Deaktiver tvungen nedstenging" - -#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:8 -msgid "Enable autocompletion in \"Run Application\" dialog" -msgstr "Aktiver automatisk fullføring i «Kjør program»-dialogen" - -#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:9 -msgid "Enable program list in \"Run Application\" dialog" -msgstr "Aktiver programlisten i «Kjør program»-dialogen" - #: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:10 -msgid "Enable tooltips" -msgstr "Slå på verktøytips" +msgid "" +"If true, the panel will not allow any changes to the configuration of the " +"panel. Individual applets may need to be locked down separately however. The " +"panel must be restarted for this to take effect." +msgstr "" +"Hvis sann vil panelet ikke tillate noen endringer i konfigurasjonen for " +"panelet. Individuelle panelprogrammer kan likevel trenge separat nedlåsing. " +"Panelet må startes på nytt for at dette skal tre i kraft." #: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:11 -msgid "Expand program list in \"Run Application\" dialog" -msgstr "Utvid programlisten i «Kjør program»-dialogen" +msgid "Applet IIDs to disable from loading" +msgstr "IIDer for panelprogrammer som skal hindres å starte" #: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:12 -msgid "History of \"Run Application\" dialog" -msgstr "Historikk for «Kjør program»-dialogen" - -#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:13 msgid "" -"If true, a dialog is shown asking for confirmation if the user wants to " -"remove a panel." +"A list of applet IIDs that the panel will ignore. This way you can disable " +"certain applets from loading or showing up in the menu. For example to " +"disable the mini-commander applet add 'OAFIID:GNOME_MiniCommanderApplet' to " +"this list. The panel must be restarted for this to take effect." msgstr "" -"Hvis sann vil en dialog vises for å spørre om bekreftelse hvis bruker ønsker " -"å fjerne et panel." +"En liste med IIDer for panelprogrammer som panelet skal ignorere. På denne " +"måten kan du hindre at panelprogrammer lastes eller vises i menyen. Du kan " +"for eksempel deaktivere kommandolinjepanelprogrammet ved å legge til «OAFIID:" +"GNOME_MiniCommanderApplet» i listen. Panelet må startes på nytt for at dette " +"skal tre i kraft." + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:13 +msgid "Disable Force Quit" +msgstr "Deaktiver tvungen nedstenging" #: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:14 msgid "" -"If true, autocompletion in the \"Run Application\" dialog is made available." +"If true, the panel will not allow a user to force an application to quit by " +"removing access to the force quit button." msgstr "" -"Hvis denne er satt til «true» vil automatisk fullføring være tilgjengelig i " -"dialogen «Kjør program»" +"Hvis sann vil panelet ikke tillate en bruker å tvinge et program til å " +"avslutte ved å fjerne tilgang til knappen for tvungen nedstenging." #: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:15 -msgid "" -"If true, the \"Known Applications\" listing in the \"Run Application\" " -"dialog is expanded when the dialog is opened. This key is only relevant if " -"the enable_program_list key is true." -msgstr "" -"Hvis denne er sann vil listen med «Kjente programmer» i dialogen «Kjør " -"program» utvides når dialogen åpnes. Denne nøkkelen er kun relevant hvis " -"nøkkelen enable_program_list er satt til sann." +msgid "History of \"Run Application\" dialog" +msgstr "Historikk for «Kjør program»-dialogen" #: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:16 msgid "" +"The list of commands used in the past in the \"Run Application\" dialog." +msgstr "Liste med kommandoer brukt tidligere i «Kjør program»-dialogen." + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:17 +msgid "Enable program list in \"Run Application\" dialog" +msgstr "Aktiver programlisten i «Kjør program»-dialogen" + +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:18 +msgid "" "If true, the \"Known Applications\" listing in the \"Run Application\" " "dialog is made available. Whether or not the listing is expanded when the " "dialog is shown is controlled by the show_program_list key." @@ -1223,45 +1237,30 @@ "gjøres tilgjengelig. Om listen skal utvides eller ikke styres av nøkkelen " "show_program_list." -#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:17 -msgid "" -"If true, the panel will not allow a user to force an application to quit by " -"removing access to the force quit button." -msgstr "" -"Hvis sann vil panelet ikke tillate en bruker å tvinge et program til å " -"avslutte ved å fjerne tilgang til knappen for tvungen nedstenging." +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:19 +msgid "Expand program list in \"Run Application\" dialog" +msgstr "Utvid programlisten i «Kjør program»-dialogen" -#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:18 +#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:20 msgid "" -"If true, the panel will not allow any changes to the configuration of the " -"panel. Individual applets may need to be locked down separately however. The " -"panel must be restarted for this to take effect." +"If true, the \"Known Applications\" listing in the \"Run Application\" " +"dialog is expanded when the dialog is opened. This key is only relevant if " +"the enable_program_list key is true." msgstr "" -"Hvis sann vil panelet ikke tillate noen endringer i konfigurasjonen for " -"panelet. Individuelle panelprogrammer kan likevel trenge separat nedlåsing. " -"Panelet må startes på nytt for at dette skal tre i kraft." - -#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:19 -msgid "" -"If true, tooltips are shown for objects in panels. Tooltips can be disabled " -"for the whole desktop with the gtk-enable-tooltips property in GTK+." -msgstr "" -"Hvis satt til «true» vil verktøytips vises for objekter på paneler. " -"Verktøytips kan slås av for hele skrivebordet med egenskapen gtk-enable-" -"tooltips i GTK+." - -#: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:20 -msgid "Panel ID list" -msgstr "ID-liste for paneler" +"Hvis denne er sann vil listen med «Kjente programmer» i dialogen «Kjør " +"program» utvides når dialogen åpnes. Denne nøkkelen er kun relevant hvis " +"nøkkelen enable_program_list er satt til sann." #: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:21 -msgid "Panel object ID list" -msgstr "ID-liste over panelobjekter" +msgid "Enable autocompletion in \"Run Application\" dialog" +msgstr "Aktiver automatisk fullføring i «Kjør program»-dialogen" #: ../data/org.gnome.gnome-panel.gschema.xml.in.in.h:22 msgid "" -"The list of commands used in the past in the \"Run Application\" dialog." -msgstr "Liste med kommandoer brukt tidligere i «Kjør program»-dialogen." +"If true, autocompletion in the \"Run Application\" dialog is made available." +msgstr "" +"Hvis denne er satt til «true» vil automatisk fullføring være tilgjengelig i " +"dialogen «Kjør program»" #: ../data/org.gnome.gnome-panel.launcher.gschema.xml.in.in.h:1 msgid "Launcher location" @@ -1276,14 +1275,18 @@ "relevant hvis nøkkelen «object_type» er satt til «launcher-object»." #: ../data/org.gnome.gnome-panel.menu-button.gschema.xml.in.in.h:1 -msgid "Icon used for button" -msgstr "Ikon brukt for knapp" +msgid "Tooltip displayed for menu" +msgstr "Verktøytips som vises for meny" #: ../data/org.gnome.gnome-panel.menu-button.gschema.xml.in.in.h:2 -msgid "Menu content path" -msgstr "Sti til menyinnhold" +msgid "The text to display in a tooltip for this menu." +msgstr "Tekst som skal vises i verktøytips for denne menyen." #: ../data/org.gnome.gnome-panel.menu-button.gschema.xml.in.in.h:3 +msgid "Icon used for button" +msgstr "Ikon brukt for knapp" + +#: ../data/org.gnome.gnome-panel.menu-button.gschema.xml.in.in.h:4 msgid "" "The location of the image file used as the icon for the object's button. If " "empty, the default icon for the menu will be used." @@ -1291,7 +1294,11 @@ "Adresse til bildefilen som skal brukes som ikon for objektets knapp. Hvis " "den ikke er satt vil forvalgt ikon for menyen bli brukt." -#: ../data/org.gnome.gnome-panel.menu-button.gschema.xml.in.in.h:4 +#: ../data/org.gnome.gnome-panel.menu-button.gschema.xml.in.in.h:5 +msgid "Menu content path" +msgstr "Sti til menyinnhold" + +#: ../data/org.gnome.gnome-panel.menu-button.gschema.xml.in.in.h:6 msgid "" "The path from which the menu contents is contructed. If empty, the menu will " "be the default applications menu." @@ -1299,46 +1306,42 @@ "Sti for oppretting av menyinnhold. Hvis den ikke er satt vil forvalgt " "programmeny brukes." -#: ../data/org.gnome.gnome-panel.menu-button.gschema.xml.in.in.h:5 -msgid "The text to display in a tooltip for this menu." -msgstr "Tekst som skal vises i verktøytips for denne menyen." - -#: ../data/org.gnome.gnome-panel.menu-button.gschema.xml.in.in.h:6 -msgid "Tooltip displayed for menu" -msgstr "Verktøytips som vises for meny" - #: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:1 -msgid "" -"If set to 'end', the position of the object is interpreted relative to the " -"right (or bottom if vertical) edge of the panel." -msgstr "" -"Hvis satt til «end» vil posisjonen for objektet tolkes relativt til høyre " -"(eller nederste) kant av panelet." +msgid "Object IID" +msgstr "IID for objekt" #: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:2 -msgid "Interpret position relative to bottom/right edge" -msgstr "Tolk posisjon relativt til nederste/høyre kant" +msgid "" +"The implementation ID of the object - e.g. \"ClockAppletFactory::ClockApplet" +"\"." +msgstr "" +"Implementasjons-ID for objektet - f.eks. «ClockAppletFactory::ClockApplet»." #: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:3 -msgid "Object IID" -msgstr "IID for objekt" +msgid "Toplevel panel containing object" +msgstr "Toppnivåpanel som inneholder objektet" #: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:4 -msgid "Object's position on the panel" -msgstr "Objektets posisjon på panelet" - -#: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:5 msgid "The identifier of the toplevel panel which contains this object." msgstr "Identifikator for toppnivåpanelet som inneholder dette objektet." +#: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:5 +msgid "Interpret position relative to bottom/right edge" +msgstr "Tolk posisjon relativt til nederste/høyre kant" + #: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:6 msgid "" -"The implementation ID of the object - e.g. \"ClockAppletFactory::ClockApplet" -"\"." +"If set to 'end', the position of the object is interpreted relative to the " +"right (or bottom if vertical) edge of the panel." msgstr "" -"Implementasjons-ID for objektet - f.eks. «ClockAppletFactory::ClockApplet»." +"Hvis satt til «end» vil posisjonen for objektet tolkes relativt til høyre " +"(eller nederste) kant av panelet." #: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:7 +msgid "Object's position on the panel" +msgstr "Objektets posisjon på panelet" + +#: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:8 msgid "" "The position of this panel object. The position is specified by the number " "of pixels from the left (or top if vertical) panel edge." @@ -1346,110 +1349,170 @@ "Posisjon for dette panelobjektet. Posisjonen spesifiseres med antall piksler " "fra venstre (eller øverste hvis vertikalt) kant av panelet." -#: ../data/org.gnome.gnome-panel.object.gschema.xml.in.in.h:8 -msgid "Toplevel panel containing object" -msgstr "Toppnivåpanel som inneholder objektet" - #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:1 -msgid "Animation speed" -msgstr "Animasjonshastighet" +msgid "Name to identify panel" +msgstr "Navn som identifiserer panelet" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:2 -msgid "Automatically hide panel into corner" -msgstr "Skjul panelet automatisk i hjørnet" +msgid "" +"This is a human readable name which you can use to identify a panel. Its " +"main purpose is to serve as the panel's window title which is useful when " +"navigating between panels." +msgstr "" +"Dette er et vanlig navn du kan bruke for å identifisere et panel. " +"Hovedformålet med denne er bruk som panelets vindustittel hvilket er nyttig " +"når man navigerer mellom forskjellige panelet." #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:3 -msgid "Background color" -msgstr "Bakgrunnsfarge" +msgid "X screen where the panel is displayed" +msgstr "X-skjerm panelet vises på" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:4 -msgid "Background image" -msgstr "Bakgrunnsbilde" +msgid "" +"With a multi-screen setup, you may have panels on each individual screen. " +"This key identifies the current screen the panel is displayed on." +msgstr "" +"I et oppsett med flere skjermer kan du ha paneler på hver individuelle " +"skjerm. Denne nøkkelen identifiserer skjermen panelet vises på." #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:5 -msgid "Background type" -msgstr "Bakgrunnstype" +msgid "Xinerama monitor where the panel is displayed" +msgstr "Xinerama-skjerm hvor panelet vises" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:6 -msgid "Center panel on x-axis" -msgstr "Sentrer panelet på x-aksen" +msgid "" +"In a Xinerama setup, you may have panels on each individual monitor. This " +"key identifies the current monitor the panel is displayed on." +msgstr "" +"Med et Xinerama-oppsett kan du ha paneler på hver individuelle skjerm. Denne " +"nøkkelen identifiserer skjermen panelet vises på." #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:7 -msgid "Center panel on y-axis" -msgstr "Sentrer panelet på y-aksen" +msgid "Expand to occupy entire screen width" +msgstr "Utvid til å bruke hele skjermbredden" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:8 msgid "" -"Determines how the image set by image-uri is rendered. Possible values are " -"\"none\", \"stretch\", \"fit\". With \"stretch\", the image will be scaled " -"to the panel dimensions and the aspect ratio of the image will not be " -"maintained. With \"fit\", the image will be scaled (retaining the aspect " -"ratio of the image) to the panel height (if horizontal)." +"If true, the panel will occupy the entire screen width (height if this is a " +"vertical panel). In this mode the panel can only be placed at a screen edge. " +"If false, the panel will only be large enough to accommodate the applets, " +"launchers and buttons on the panel." msgstr "" -"Bestemmer hvordan bildet satt av image-uri vises. Mulige verdier er «none», " -"«stretch», «fit». Med «stretch» vil bildet skaleres til panelets størrelse " -"og høyde-/breddeforhold for bildet vil ikke bli beholdt. Med «fit» vil " -"bildet bli skalert til panelets høyde hvis det har vertikal orientering, og " -"høyde-/breddeforhold for bildet blir bevart." +"Hvis «true» vil panlet oppta hele skjermbredden (høyden hvis det er et " +"vertikalt panel). Panelet kan kun plasseres ved skjermkanten i dette modus. " +"Hvis «false» vil panelet kun tilpasses nødvendig størrelse for " +"panelprogrammer, oppstartere og knapper på panelet." #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:9 -msgid "Enable arrows on hide buttons" -msgstr "Slå på piler på knapp for skjuling" +msgid "Panel orientation" +msgstr "Panelets orientering" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:10 -msgid "Enable hide buttons" -msgstr "Slå på knapper for skjuling" +msgid "" +"The orientation of the panel. Possible values are \"top\", \"bottom\", \"left" +"\", \"right\". In expanded mode the key specifies which screen edge the " +"panel is on. In un-expanded mode the difference between \"top\" and \"bottom" +"\" is less important - both indicate that this is a horizontal panel - but " +"still give a useful hint as to how some panel objects should behave. For " +"example, on a \"top\" panel a menu button will pop up its menu below the " +"panel, whereas on a \"bottom\" panel the menu will be popped up above the " +"panel." +msgstr "" +"Orientering for panelet. Mulige verdier er «top», «bottom», «left», «right». " +"I utvidet modus oppgir nøkkelen hvilken skjermkant panelet er på. I ikke-" +"utvidet modus er forskjellen mellom «top» og «bottom» mindre viktig - begge " +"indikerer at dette er et horisontalt panel - men de gir fremdeles et nyttig " +"hint for oppførselen for noen panelobjekter. På et «top»-panel vil for " +"eksempel en menyknapp vise meny under panelet, men på et «bottom»-panel vil " +"menyen vises over panelet." #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:11 -msgid "Expand to occupy entire screen width" -msgstr "Utvid til å bruke hele skjermbredden" +msgid "Panel size" +msgstr "Panelets størrelse" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:12 msgid "" -"If true, arrows will be placed on the hide buttons. This key is only " -"relevant if the enable_buttons key is true." +"The height (width for a vertical panel) of the panel. The panel will " +"determine at runtime a minimum size based on the font size and other " +"indicators. The maximum size is fixed at one quarter of the screen height " +"(or width)." msgstr "" -"Hvis denne er satt til «true» vil piler plasseres på knappene for skjuling. " -"Denne nøkkelen er kun relevant hvis nøkkelen «enable_buttons» er «true»." +"Høyde (bredde for et vertikalt panel) på panelet. Panelet vil bestemme " +"minste størrelse basert på skriftstørrelse og andre faktorer ved oppstart. " +"Maksimal størrelse er fastsatt til en fjerdedel av skjermhøyden (eller " +"bredden)." #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:13 -msgid "" -"If true, buttons will be placed on each side of the panel which may be used " -"to move the panel to edge of the screen, leaving only a button showing." -msgstr "" -"Hvis denne er satt til «true» vil knapper som kan brukes til å skjule " -"panelet til en av sidene plasseres på hver side av panelet." +msgid "X co-ordinate of panel" +msgstr "Panelets x-koordinat" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:14 msgid "" -"If true, the background image will be rotated when the panel is oriented " -"vertically." +"The location of the panel along the x-axis. This key is only relevant in un-" +"expanded mode. In expanded mode this key is ignored and the panel is placed " +"at the screen edge specified by the orientation key." msgstr "" -"Hvis «true» vil bakgrunnsbildet roteres når panelet er plassert vertikalt." +"Plasseringen til panelet langs x-aksen. Denne nøkkelen er kun relevant i " +"ikke-utvidet modus. I utvidet modus ignoreres denne nøkkelen og panelet " +"plasseres ved skjermkanten oppgitt av nøkkelen orientation." #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:15 -msgid "" -"If true, the panel is automatically hidden into a corner of the screen when " -"the pointer leaves the panel area. Moving the pointer to that corner again " -"will cause the panel to re-appear." -msgstr "" -"Hvis «true» vil panelet skjules i et hjørne av skjermen når pekeren forlater " -"panelområdet. Panelet vil komme til syne igjen hvis pekeren flyttes til " -"aktuelt hjørne igjen." +msgid "Y co-ordinate of panel" +msgstr "Panelets y-koordinat" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:16 msgid "" -"If true, the panel will occupy the entire screen width (height if this is a " -"vertical panel). In this mode the panel can only be placed at a screen edge. " -"If false, the panel will only be large enough to accommodate the applets, " -"launchers and buttons on the panel." +"The location of the panel along the y-axis. This key is only relevant in un-" +"expanded mode. In expanded mode this key is ignored and the panel is placed " +"at the screen edge specified by the orientation key." msgstr "" -"Hvis «true» vil panlet oppta hele skjermbredden (høyden hvis det er et " -"vertikalt panel). Panelet kan kun plasseres ved skjermkanten i dette modus. " -"Hvis «false» vil panelet kun tilpasses nødvendig størrelse for " -"panelprogrammer, oppstartere og knapper på panelet." +"Plasseringen til panelet langs y-aksen. Denne nøkkelen er kun relevant i " +"ikke-utvidet modus. I utvidet modus ignoreres denne nøkkelen og panelet " +"plasseres ved skjermkanten oppgitt av nøkkelen orientation." #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:17 +msgid "X co-ordinate of panel, starting from the right of the screen" +msgstr "X-koordinat for panelet. Starter fra høyre side av skjermen" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:18 +msgid "" +"The location of the panel along the x-axis, starting from the right of the " +"screen. If set to -1, the value is ignored and the value of the x key is " +"used. If the value is greater than 0, then the value of the x key is " +"ignored. This key is only relevant in un-expanded mode. In expanded mode " +"this key is ignored and the panel is placed at the screen edge specified by " +"the orientation key." +msgstr "" +"Plasseringen til panelet langs x-aksen fra bunnen av skjermen Hvis den " +"settes til -1 ignoreres verdien og x-nøkkelen brukes i stedet Hvis verdien " +"er større enn 0 vil x-nøkkelen ignoreres. Denne nøkkelen er kun relevant i " +"ikke-utvidet modus. I utvidet modus ignoreres denne nøkkelen og panelet " +"plasseres ved skjermkanten oppgitt av nøkkelen orientation." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:19 +msgid "Y co-ordinate of panel, starting from the bottom of the screen" +msgstr "Y-koordinat for panelet. Starter fra bunnen av skjermen" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:20 +msgid "" +"The location of the panel along the y-axis, starting from the bottom of the " +"screen. If set to -1, the value is ignored and the value of the y key is " +"used. If the value is greater than 0, then the value of the y key is " +"ignored. This key is only relevant in un-expanded mode. In expanded mode " +"this key is ignored and the panel is placed at the screen edge specified by " +"the orientation key." +msgstr "" +"Plasseringen til panelet langs y-aksen fra bunnen av skjermen Hvis den " +"settes til -1 ignoreres verdien og y-nøkkelen brukes i stedet Hvis verdien " +"er større enn 0 vil y-nøkkelen ignoreres. Denne nøkkelen er kun relevant i " +"ikke-utvidet modus. I utvidet modus ignoreres denne nøkkelen og panelet " +"plasseres ved skjermkanten oppgitt av nøkkelen orientation." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:21 +msgid "Center panel on x-axis" +msgstr "Sentrer panelet på x-aksen" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:22 msgid "" "If true, the x and x_right keys are ignored and the panel is placed at the " "center of the x-axis of the screen. If the panel is resized it will remain " @@ -1461,7 +1524,11 @@ "forbli i denne posisjonen - dvs. panelet vil vokse på begge sider. Hvis " "«false» vil x og x_right-nøkkelen spesifisere panelets plassering." -#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:18 +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:23 +msgid "Center panel on y-axis" +msgstr "Sentrer panelet på y-aksen" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:24 msgid "" "If true, the y and y_bottom keys are ignored and the panel is placed at the " "center of the y-axis of the screen. If the panel is resized it will remain " @@ -1473,66 +1540,49 @@ "forbli i denne posisjonen - dvs. panelet vil vokse på begge sider. Hvis " "«false» vil y og y_bottom-nøkkelen spesifisere panelets plassering." -#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:19 -msgid "Image options" -msgstr "Alternativer for bilde" - -#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:20 -msgid "" -"In a Xinerama setup, you may have panels on each individual monitor. This " -"key identifies the current monitor the panel is displayed on." -msgstr "" -"Med et Xinerama-oppsett kan du ha paneler på hver individuelle skjerm. Denne " -"nøkkelen identifiserer skjermen panelet vises på." - -#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:21 -msgid "Name to identify panel" -msgstr "Navn som identifiserer panelet" - -#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:22 -msgid "Panel autohide delay" -msgstr "Pause før automatisk skjuling av panelet" - -#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:23 -msgid "Panel autounhide delay" -msgstr "Pause før gjenoppretting av panelet" - -#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:24 -msgid "Panel orientation" -msgstr "Panelets orientering" - #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:25 -msgid "Panel size" -msgstr "Panelets størrelse" +msgid "Automatically hide panel into corner" +msgstr "Skjul panelet automatisk i hjørnet" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:26 -msgid "Rotate image on vertical panels" -msgstr "Roter bildet på vertikale paneler" +msgid "" +"If true, the panel is automatically hidden into a corner of the screen when " +"the pointer leaves the panel area. Moving the pointer to that corner again " +"will cause the panel to re-appear." +msgstr "" +"Hvis «true» vil panelet skjules i et hjørne av skjermen når pekeren forlater " +"panelområdet. Panelet vil komme til syne igjen hvis pekeren flyttes til " +"aktuelt hjørne igjen." #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:27 -msgid "Specifies the background color for the panel in #RGB format." -msgstr "Spesifiserer bakgrunnsfargen for panelet i #RGB-format." +msgid "Enable hide buttons" +msgstr "Slå på knapper for skjuling" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:28 msgid "" -"Specifies the file to be used for the background image. If the image " -"contains an alpha channel it will be composited onto the desktop background " -"image." +"If true, buttons will be placed on each side of the panel which may be used " +"to move the panel to edge of the screen, leaving only a button showing." msgstr "" -"Oppgir filen som skal brukes som bakgrunnsbilde. Hvis bildet inneholder en " -"alpha-kanal vil dette kompositeres på bakgrunnsbildet for skrivebordet." +"Hvis denne er satt til «true» vil knapper som kan brukes til å skjule " +"panelet til en av sidene plasseres på hver side av panelet." #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:29 +msgid "Enable arrows on hide buttons" +msgstr "Slå på piler på knapp for skjuling" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:30 msgid "" -"Specifies the number of milliseconds delay after the pointer enters the " -"panel area before the panel is automatically re-shown. This key is only " -"relevant if the auto_hide key is true." +"If true, arrows will be placed on the hide buttons. This key is only " +"relevant if the enable_buttons key is true." msgstr "" -"Oppgir antall millisekunder med pause før panelet vises igjen etter at " -"pekeren går inn i panelområdet. Denne nøkkelen er kun relevant hvis nøkkelen " -"auto_hide er «true»." +"Hvis denne er satt til «true» vil piler plasseres på knappene for skjuling. " +"Denne nøkkelen er kun relevant hvis nøkkelen «enable_buttons» er «true»." -#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:30 +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:31 +msgid "Panel autohide delay" +msgstr "Pause før automatisk skjuling av panelet" + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:32 msgid "" "Specifies the number of milliseconds delay after the pointer leaves the " "panel area before the panel is automatically hidden. This key is only " @@ -1542,94 +1592,35 @@ "forlater panelområdet. Denne nøkkelen er kun relevant hvis nøkkelen " "auto_hide er satt til «true»." -#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:31 -msgid "" -"Specifies the number of pixels visible when the panel is automatically " -"hidden into a corner. This key is only relevant if the auto_hide key is true." -msgstr "" -"Oppgir antall piksler som er synlig når panelet er automatisk skjult i et " -"hjørne. Denne nøkkelen er kun relevant hvis nøkkelen auto_hide er «true»." - -#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:32 -msgid "" -"The height (width for a vertical panel) of the panel. The panel will " -"determine at runtime a minimum size based on the font size and other " -"indicators. The maximum size is fixed at one quarter of the screen height " -"(or width)." -msgstr "" -"Høyde (bredde for et vertikalt panel) på panelet. Panelet vil bestemme " -"minste størrelse basert på skriftstørrelse og andre faktorer ved oppstart. " -"Maksimal størrelse er fastsatt til en fjerdedel av skjermhøyden (eller " -"bredden)." - #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:33 -msgid "" -"The location of the panel along the x-axis, starting from the right of the " -"screen. If set to -1, the value is ignored and the value of the x key is " -"used. If the value is greater than 0, then the value of the x key is " -"ignored. This key is only relevant in un-expanded mode. In expanded mode " -"this key is ignored and the panel is placed at the screen edge specified by " -"the orientation key." -msgstr "" -"Plasseringen til panelet langs x-aksen fra bunnen av skjermen Hvis den " -"settes til -1 ignoreres verdien og x-nøkkelen brukes i stedet Hvis verdien " -"er større enn 0 vil x-nøkkelen ignoreres. Denne nøkkelen er kun relevant i " -"ikke-utvidet modus. I utvidet modus ignoreres denne nøkkelen og panelet " -"plasseres ved skjermkanten oppgitt av nøkkelen orientation." +msgid "Panel autounhide delay" +msgstr "Pause før gjenoppretting av panelet" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:34 msgid "" -"The location of the panel along the x-axis. This key is only relevant in un-" -"expanded mode. In expanded mode this key is ignored and the panel is placed " -"at the screen edge specified by the orientation key." +"Specifies the number of milliseconds delay after the pointer enters the " +"panel area before the panel is automatically re-shown. This key is only " +"relevant if the auto_hide key is true." msgstr "" -"Plasseringen til panelet langs x-aksen. Denne nøkkelen er kun relevant i " -"ikke-utvidet modus. I utvidet modus ignoreres denne nøkkelen og panelet " -"plasseres ved skjermkanten oppgitt av nøkkelen orientation." +"Oppgir antall millisekunder med pause før panelet vises igjen etter at " +"pekeren går inn i panelområdet. Denne nøkkelen er kun relevant hvis nøkkelen " +"auto_hide er «true»." #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:35 -msgid "" -"The location of the panel along the y-axis, starting from the bottom of the " -"screen. If set to -1, the value is ignored and the value of the y key is " -"used. If the value is greater than 0, then the value of the y key is " -"ignored. This key is only relevant in un-expanded mode. In expanded mode " -"this key is ignored and the panel is placed at the screen edge specified by " -"the orientation key." -msgstr "" -"Plasseringen til panelet langs y-aksen fra bunnen av skjermen Hvis den " -"settes til -1 ignoreres verdien og y-nøkkelen brukes i stedet Hvis verdien " -"er større enn 0 vil y-nøkkelen ignoreres. Denne nøkkelen er kun relevant i " -"ikke-utvidet modus. I utvidet modus ignoreres denne nøkkelen og panelet " -"plasseres ved skjermkanten oppgitt av nøkkelen orientation." +msgid "Visible pixels when hidden" +msgstr "Antall synlige piksler når skjult" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:36 msgid "" -"The location of the panel along the y-axis. This key is only relevant in un-" -"expanded mode. In expanded mode this key is ignored and the panel is placed " -"at the screen edge specified by the orientation key." -msgstr "" -"Plasseringen til panelet langs y-aksen. Denne nøkkelen er kun relevant i " -"ikke-utvidet modus. I utvidet modus ignoreres denne nøkkelen og panelet " -"plasseres ved skjermkanten oppgitt av nøkkelen orientation." - -#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:37 -msgid "" -"The orientation of the panel. Possible values are \"top\", \"bottom\", \"left" -"\", \"right\". In expanded mode the key specifies which screen edge the " -"panel is on. In un-expanded mode the difference between \"top\" and \"bottom" -"\" is less important - both indicate that this is a horizontal panel - but " -"still give a useful hint as to how some panel objects should behave. For " -"example, on a \"top\" panel a menu button will pop up its menu below the " -"panel, whereas on a \"bottom\" panel the menu will be popped up above the " -"panel." -msgstr "" -"Orientering for panelet. Mulige verdier er «top», «bottom», «left», «right». " -"I utvidet modus oppgir nøkkelen hvilken skjermkant panelet er på. I ikke-" -"utvidet modus er forskjellen mellom «top» og «bottom» mindre viktig - begge " -"indikerer at dette er et horisontalt panel - men de gir fremdeles et nyttig " -"hint for oppførselen for noen panelobjekter. På et «top»-panel vil for " -"eksempel en menyknapp vise meny under panelet, men på et «bottom»-panel vil " -"menyen vises over panelet." +"Specifies the number of pixels visible when the panel is automatically " +"hidden into a corner. This key is only relevant if the auto_hide key is true." +msgstr "" +"Oppgir antall piksler som er synlig når panelet er automatisk skjult i et " +"hjørne. Denne nøkkelen er kun relevant hvis nøkkelen auto_hide er «true»." + +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:37 +msgid "Animation speed" +msgstr "Animasjonshastighet" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:38 msgid "" @@ -1642,20 +1633,10 @@ "«true»." #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:39 -msgid "" -"This is a human readable name which you can use to identify a panel. Its " -"main purpose is to serve as the panel's window title which is useful when " -"navigating between panels." -msgstr "" -"Dette er et vanlig navn du kan bruke for å identifisere et panel. " -"Hovedformålet med denne er bruk som panelets vindustittel hvilket er nyttig " -"når man navigerer mellom forskjellige panelet." +msgid "Background type" +msgstr "Bakgrunnstype" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:40 -msgid "Visible pixels when hidden" -msgstr "Antall synlige piksler når skjult" - -#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:41 msgid "" "Which type of background should be used for this panel. Possible values are " "\"none\" - the default GTK+ widget background will be used, \"color\" - the " @@ -1667,37 +1648,55 @@ "bakgrunnsvarge, eller «image» - bilde oppgitt av nøkkelen image vil brukes " "som bakgrunn." +#: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:41 +msgid "Background color" +msgstr "Bakgrunnsfarge" + #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:42 -msgid "" -"With a multi-screen setup, you may have panels on each individual screen. " -"This key identifies the current screen the panel is displayed on." -msgstr "" -"I et oppsett med flere skjermer kan du ha paneler på hver individuelle " -"skjerm. Denne nøkkelen identifiserer skjermen panelet vises på." +msgid "Specifies the background color for the panel in #RGB format." +msgstr "Spesifiserer bakgrunnsfargen for panelet i #RGB-format." #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:43 -msgid "X co-ordinate of panel" -msgstr "Panelets x-koordinat" +msgid "Background image" +msgstr "Bakgrunnsbilde" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:44 -msgid "X co-ordinate of panel, starting from the right of the screen" -msgstr "X-koordinat for panelet. Starter fra høyre side av skjermen" +msgid "" +"Specifies the file to be used for the background image. If the image " +"contains an alpha channel it will be composited onto the desktop background " +"image." +msgstr "" +"Oppgir filen som skal brukes som bakgrunnsbilde. Hvis bildet inneholder en " +"alpha-kanal vil dette kompositeres på bakgrunnsbildet for skrivebordet." #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:45 -msgid "X screen where the panel is displayed" -msgstr "X-skjerm panelet vises på" +msgid "Rotate image on vertical panels" +msgstr "Roter bildet på vertikale paneler" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:46 -msgid "Xinerama monitor where the panel is displayed" -msgstr "Xinerama-skjerm hvor panelet vises" +msgid "" +"If true, the background image will be rotated when the panel is oriented " +"vertically." +msgstr "" +"Hvis «true» vil bakgrunnsbildet roteres når panelet er plassert vertikalt." #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:47 -msgid "Y co-ordinate of panel" -msgstr "Panelets y-koordinat" +msgid "Image options" +msgstr "Alternativer for bilde" #: ../data/org.gnome.gnome-panel.toplevel.gschema.xml.in.in.h:48 -msgid "Y co-ordinate of panel, starting from the bottom of the screen" -msgstr "Y-koordinat for panelet. Starter fra bunnen av skjermen" +msgid "" +"Determines how the image set by image-uri is rendered. Possible values are " +"\"none\", \"stretch\", \"fit\". With \"stretch\", the image will be scaled " +"to the panel dimensions and the aspect ratio of the image will not be " +"maintained. With \"fit\", the image will be scaled (retaining the aspect " +"ratio of the image) to the panel height (if horizontal)." +msgstr "" +"Bestemmer hvordan bildet satt av image-uri vises. Mulige verdier er «none», " +"«stretch», «fit». Med «stretch» vil bildet skaleres til panelets størrelse " +"og høyde-/breddeforhold for bildet vil ikke bli beholdt. Med «fit» vil " +"bildet bli skalert til panelets høyde hvis det har vertikal orientering, og " +"høyde-/breddeforhold for bildet blir bevart." #: ../gnome-panel/libegg/eggdesktopfile.c:165 #, c-format @@ -1835,7 +1834,11 @@ msgid "Launcher Properties" msgstr "Egenskaper for oppstarter" -#: ../gnome-panel/gnome-panel.desktop.in.in.h:1 +#: ../gnome-panel/gnome-panel.desktop.in.in.h:1 ../gnome-panel/main.c:87 +msgid "Panel" +msgstr "Panel" + +#: ../gnome-panel/gnome-panel.desktop.in.in.h:2 msgid "" "Launch other applications and provide various utilities to manage windows, " "show the time, etc." @@ -1843,10 +1846,6 @@ "Start andre programmer og bruk forskjellige verktøy for å håndtere vinduer, " "vis klokken etc." -#: ../gnome-panel/gnome-panel.desktop.in.in.h:2 ../gnome-panel/main.c:87 -msgid "Panel" -msgstr "Panel" - #: ../gnome-panel/launcher.c:136 msgid "Could not show this URL" msgstr "Kunne ikke vise denne URLen" @@ -2338,103 +2337,103 @@ msgid "Could not display properties dialog" msgstr "Kan ikke vise dialog for egenskaper" +#: ../gnome-panel/panel-properties-dialog.ui.h:1 +msgid "Panel Properties" +msgstr "Egenskaper for panelet" + #: ../gnome-panel/panel-properties-dialog.ui.h:2 -msgid "Opaque" -msgstr "Ugjennomsiktig" +msgid "Some of these properties are locked down" +msgstr "Noen av disse egenskapene er låst" #: ../gnome-panel/panel-properties-dialog.ui.h:3 -msgid "Transparent" -msgstr "Gjennomsiktig" +msgid "pixels" +msgstr "piksler" #: ../gnome-panel/panel-properties-dialog.ui.h:4 -msgid "Arro_ws on hide buttons" -msgstr "_Piler på knapp for skjuling" +#: ../gnome-panel/panel-test-applets.ui.h:3 +msgid "_Size:" +msgstr "_Størrelse:" #: ../gnome-panel/panel-properties-dialog.ui.h:5 -msgid "Background" -msgstr "Bakgrunn" +#: ../gnome-panel/panel-test-applets.ui.h:5 +msgid "_Orientation:" +msgstr "_Orientering:" #: ../gnome-panel/panel-properties-dialog.ui.h:6 -msgid "Background _image:" -msgstr "Bakgrunnsb_ilde:" +msgid "E_xpand" +msgstr "_Utvid" #: ../gnome-panel/panel-properties-dialog.ui.h:7 -msgid "Co_lor:" -msgstr "_Farge:" +msgid "_Autohide" +msgstr "_Autoskjul" #: ../gnome-panel/panel-properties-dialog.ui.h:8 -msgid "E_xpand" -msgstr "_Utvid" +msgid "Show hide _buttons" +msgstr "Vis _knapper for skjuling" -#: ../gnome-panel/panel-properties-dialog.ui.h:10 -msgid "Image Background Details" -msgstr "Detaljer for bakgrunnsbilde" +#: ../gnome-panel/panel-properties-dialog.ui.h:9 +msgid "Arro_ws on hide buttons" +msgstr "_Piler på knapp for skjuling" #: ../gnome-panel/panel-properties-dialog.ui.h:11 -msgid "Panel Properties" -msgstr "Egenskaper for panelet" +msgid "_None (use system theme)" +msgstr "I_ngen (bruk systemets tema)" #: ../gnome-panel/panel-properties-dialog.ui.h:12 +msgid "Solid c_olor" +msgstr "Helf_ylt farge" + +#: ../gnome-panel/panel-properties-dialog.ui.h:14 msgid "Pick a color" msgstr "Velg en farge" -#: ../gnome-panel/panel-properties-dialog.ui.h:13 -msgid "Rotate image when panel is _vertical" -msgstr "Roter bildet på _vertikale paneler" - -#: ../gnome-panel/panel-properties-dialog.ui.h:14 +#: ../gnome-panel/panel-properties-dialog.ui.h:15 msgid "S_tyle:" msgstr "_S_til:" -#: ../gnome-panel/panel-properties-dialog.ui.h:15 -msgid "Select background" -msgstr "Velg bakgrunn" - #: ../gnome-panel/panel-properties-dialog.ui.h:16 -msgid "Show hide _buttons" -msgstr "Vis _knapper for skjuling" +msgid "Co_lor:" +msgstr "_Farge:" #: ../gnome-panel/panel-properties-dialog.ui.h:17 -msgid "Solid c_olor" -msgstr "Helf_ylt farge" +msgid "Transparent" +msgstr "Gjennomsiktig" #: ../gnome-panel/panel-properties-dialog.ui.h:18 -msgid "Some of these properties are locked down" -msgstr "Noen av disse egenskapene er låst" +msgid "Opaque" +msgstr "Ugjennomsiktig" #: ../gnome-panel/panel-properties-dialog.ui.h:19 -msgid "St_retch" -msgstr "St_rekk" +msgid "Background _image:" +msgstr "Bakgrunnsb_ilde:" #: ../gnome-panel/panel-properties-dialog.ui.h:20 -msgid "_Autohide" -msgstr "_Autoskjul" +msgid "Select background" +msgstr "Velg bakgrunn" #: ../gnome-panel/panel-properties-dialog.ui.h:21 -msgid "_None (use system theme)" -msgstr "I_ngen (bruk systemets tema)" +msgid "Background" +msgstr "Bakgrunn" #: ../gnome-panel/panel-properties-dialog.ui.h:22 -#: ../gnome-panel/panel-test-applets.ui.h:4 -msgid "_Orientation:" -msgstr "_Orientering:" +msgid "Image Background Details" +msgstr "Detaljer for bakgrunnsbilde" #: ../gnome-panel/panel-properties-dialog.ui.h:23 -msgid "_Scale" -msgstr "_Skaler" +msgid "_Tile" +msgstr "_Flislegg" #: ../gnome-panel/panel-properties-dialog.ui.h:24 -#: ../gnome-panel/panel-test-applets.ui.h:6 -msgid "_Size:" -msgstr "_Størrelse:" +msgid "_Scale" +msgstr "_Skaler" #: ../gnome-panel/panel-properties-dialog.ui.h:25 -msgid "_Tile" -msgstr "_Flislegg" +msgid "St_retch" +msgstr "St_rekk" #: ../gnome-panel/panel-properties-dialog.ui.h:26 -msgid "pixels" -msgstr "piksler" +msgid "Rotate image when panel is _vertical" +msgstr "Roter bildet på _vertikale paneler" #: ../gnome-panel/panel-recent.c:78 ../gnome-panel/panel-recent.c:88 #, c-format @@ -2492,7 +2491,7 @@ msgstr "Velg en fil som skal legges til kommandoen …" #: ../gnome-panel/panel-run-dialog.c:1543 -#: ../gnome-panel/panel-run-dialog.ui.h:8 +#: ../gnome-panel/panel-run-dialog.ui.h:9 msgid "Select an application to view its description." msgstr "Velg et program for å vise beskrivelsen." @@ -2513,58 +2512,58 @@ msgstr "Kunne ikke vise dialog for kjøring av programmer" #: ../gnome-panel/panel-run-dialog.ui.h:1 -msgid "" -"Click this button to browse for a file whose name to append to the command " -"string." -msgstr "" -"Klikk på denne knappen for å se etter en fil hvis navn skal legges til etter " -"kommandostrengen." +msgid "Run Application" +msgstr "Kjør program" #: ../gnome-panel/panel-run-dialog.ui.h:2 -msgid "" -"Click this button to run the selected application or the command in the " -"command entry field." -msgstr "" -"Klikk på denne knappen for å kjøre valgt program eller kommandoen i " -"kommandooppføringsfeltet." - -#: ../gnome-panel/panel-run-dialog.ui.h:3 msgid "Command icon" msgstr "Ikon for kommando" +#: ../gnome-panel/panel-run-dialog.ui.h:3 +msgid "The icon of the command to be run." +msgstr "Ikon for kommando som skal kjøres." + #: ../gnome-panel/panel-run-dialog.ui.h:4 -msgid "List of known applications" -msgstr "Liste med kjente programmer" +msgid "Run in _terminal" +msgstr "Kjør i _terminal" #: ../gnome-panel/panel-run-dialog.ui.h:5 -msgid "Run Application" -msgstr "Kjør program" +msgid "Select this box to run the command in a terminal window." +msgstr "Kryss av i denne boksen for å kjøre kommandoen i et terminalvindu." #: ../gnome-panel/panel-run-dialog.ui.h:6 -msgid "Run in _terminal" -msgstr "Kjør i _terminal" - -#: ../gnome-panel/panel-run-dialog.ui.h:7 msgid "Run with _file..." msgstr "Kjør med _fil …" -#: ../gnome-panel/panel-run-dialog.ui.h:9 -msgid "Select this box to run the command in a terminal window." -msgstr "Kryss av i denne boksen for å kjøre kommandoen i et terminalvindu." +#: ../gnome-panel/panel-run-dialog.ui.h:7 +msgid "" +"Click this button to browse for a file whose name to append to the command " +"string." +msgstr "" +"Klikk på denne knappen for å se etter en fil hvis navn skal legges til etter " +"kommandostrengen." + +#: ../gnome-panel/panel-run-dialog.ui.h:8 +msgid "List of known applications" +msgstr "Liste med kjente programmer" #: ../gnome-panel/panel-run-dialog.ui.h:10 msgid "Show list of known _applications" msgstr "Vis liste over kjente _programmer" #: ../gnome-panel/panel-run-dialog.ui.h:11 -msgid "The icon of the command to be run." -msgstr "Ikon for kommando som skal kjøres." - -#: ../gnome-panel/panel-run-dialog.ui.h:12 #: ../gnome-panel/panel-stock-icons.c:83 msgid "_Run" msgstr "Kjø_r" +#: ../gnome-panel/panel-run-dialog.ui.h:12 +msgid "" +"Click this button to run the selected application or the command in the " +"command entry field." +msgstr "" +"Klikk på denne knappen for å kjøre valgt program eller kommandoen i " +"kommandooppføringsfeltet." + #: ../gnome-panel/panel-stock-icons.c:84 msgid "_Force quit" msgstr "_Tvungen nedstenging" @@ -2642,11 +2641,11 @@ msgid "Test applet utility" msgstr "Testverktøy for panelprogrammer" -#: ../gnome-panel/panel-test-applets.ui.h:3 +#: ../gnome-panel/panel-test-applets.ui.h:4 msgid "_Applet:" msgstr "P_anelprogram:" -#: ../gnome-panel/panel-test-applets.ui.h:5 +#: ../gnome-panel/panel-test-applets.ui.h:6 msgid "_Prefs Dir:" msgstr "Katalog for _brukervalg:" @@ -2771,8 +2770,8 @@ "gå tapt hvis du sletter det." #: ../libpanel-applet/org.gnome.panel.TestApplet.panel-applet.in.h:1 -msgid "A simple applet for testing the GNOME panel" -msgstr "Et enkelt panelprogram for å teste GNOME-panelet" +msgid "Test DBus Applet Factory" +msgstr "Testfabrikk for DBus-panelprogram" #: ../libpanel-applet/org.gnome.panel.TestApplet.panel-applet.in.h:2 msgid "Factory for Test DBus Applet" @@ -2783,5 +2782,5 @@ msgstr "Test DBus-panelprogram" #: ../libpanel-applet/org.gnome.panel.TestApplet.panel-applet.in.h:4 -msgid "Test DBus Applet Factory" -msgstr "Testfabrikk for DBus-panelprogram" +msgid "A simple applet for testing the GNOME panel" +msgstr "Et enkelt panelprogram for å teste GNOME-panelet"