From e3eba5afc28cf6f437398b19604d01dda2e9e5bd Mon Sep 17 00:00:00 2001 From: Xun Li Date: Tue, 19 Feb 2019 12:28:20 -0700 Subject: [PATCH 1/6] fix a bug that change string content in table crashes GeoDa This is caused by new feature: saving encoded characters in geoda. --- DataViewer/OGRColumn.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/DataViewer/OGRColumn.cpp b/DataViewer/OGRColumn.cpp index 1136689a9..e2263e233 100644 --- a/DataViewer/OGRColumn.cpp +++ b/DataViewer/OGRColumn.cpp @@ -1074,7 +1074,10 @@ void OGRColumnString::SetValueAt(int row_idx, const wxString &value, new_data[row_idx] = value; } else { int col_idx = GetColIndex(); - ogr_layer->data[row_idx]->SetField(col_idx, value.mb_str(*m_wx_encoding)); + if (m_wx_encoding) + ogr_layer->data[row_idx]->SetField(col_idx, value.mb_str(*m_wx_encoding)); + else + ogr_layer->data[row_idx]->SetField(col_idx, value.mb_str()); } undef_markers[row_idx] = false; } From b11ee74b530b30f006f03d7708230f6d1687741a Mon Sep 17 00:00:00 2001 From: Xun Li Date: Tue, 19 Feb 2019 14:28:42 -0700 Subject: [PATCH 2/6] fix bounding box issue with multiple layers Make the full extent set using the top layer bounding box; When reorder layers in MapLayerSettings dialog, set map extent using top layer bounding box automatically; --- Explore/Basemap.cpp | 15 ++++++++++++ Explore/Basemap.h | 3 ++- Explore/MapLayer.cpp | 6 +++++ Explore/MapLayer.hpp | 4 +++- Explore/MapNewView.cpp | 54 ++++++++++++++++++++++++++++++++++++------ Explore/MapNewView.h | 6 ++++- version.h | 4 ++-- 7 files changed, 80 insertions(+), 12 deletions(-) diff --git a/Explore/Basemap.cpp b/Explore/Basemap.cpp index 110a641cd..1e044726e 100644 --- a/Explore/Basemap.cpp +++ b/Explore/Basemap.cpp @@ -286,6 +286,21 @@ void Basemap::Reset(int map_type) SetupMapType(basemap_item); } +void Basemap::Extent(double _n, double _w, double _s, double _e, + OGRCoordinateTransformation *_poCT) +{ + if (poCT!= NULL) { + poCT->Transform(1, &_w, &_n); + poCT->Transform(1, &_e, &_s); + } + map->north = _n; + map->south= _s; + map->west= _w; + map->east= _e; + GetEasyZoomLevel(); + SetupMapType(basemap_item); +} + void Basemap::ResizeScreen(int _width, int _height) { if (screen) { diff --git a/Explore/Basemap.h b/Explore/Basemap.h index a426fe4a2..805cef6f8 100644 --- a/Explore/Basemap.h +++ b/Explore/Basemap.h @@ -397,7 +397,8 @@ namespace Gda { wxString GetTilePath(int x, int y); bool Draw(wxBitmap* buffer); - + void Extent(double _n, double _w, double _s, double _e, + OGRCoordinateTransformation *_poCT); void ResizeScreen(int _width, int _height); void ZoomIn(int mouseX, int mouseY); void ZoomOut(int mouseX, int mouseY); diff --git a/Explore/MapLayer.cpp b/Explore/MapLayer.cpp index 5ed37e3ae..2e8e32614 100644 --- a/Explore/MapLayer.cpp +++ b/Explore/MapLayer.cpp @@ -56,6 +56,12 @@ BackgroundMapLayer::~BackgroundMapLayer() } } +void BackgroundMapLayer::GetExtent(double &minx, double &miny, double &maxx, + double &maxy) +{ + layer_proxy->GetExtent(minx, miny, maxx, maxy); +} + void BackgroundMapLayer::CleanMemory() { // shapes and geoms will be not deleted until the map destroyed diff --git a/Explore/MapLayer.hpp b/Explore/MapLayer.hpp index df1204cb4..9b479e4a2 100644 --- a/Explore/MapLayer.hpp +++ b/Explore/MapLayer.hpp @@ -51,7 +51,8 @@ class AssociateLayerInt virtual GdaShape* GetShape(int i) = 0; //virtual vector GetShapes() = 0; - //virtual wxRect GetExtent() = 0; + virtual void GetExtent(double &minx, double &miny, double &maxx, + double &maxy) = 0; virtual void SetLayerAssociation(wxString my_key, AssociateLayerInt* layer, wxString key, bool show_connline=true) = 0; @@ -105,6 +106,7 @@ class BackgroundMapLayer : public AssociateLayerInt virtual bool IsAssociatedWith(AssociateLayerInt* layer); virtual void RemoveAssociatedLayer(AssociateLayerInt* layer); virtual int GetHighlightRecords(); + virtual void GetExtent(double &minx, double &miny, double &maxx, double &maxy); // clone all except shapes and geoms, which are owned by Project* instance; // so that different map window can configure the multi-layers diff --git a/Explore/MapNewView.cpp b/Explore/MapNewView.cpp index 37dc2ed13..fbe3d8638 100644 --- a/Explore/MapNewView.cpp +++ b/Explore/MapNewView.cpp @@ -259,6 +259,11 @@ MapCanvas::~MapCanvas() } } +void MapCanvas::GetExtent(double &minx, double &miny, double &maxx, double &maxy) +{ + project->GetMapExtent(minx, miny, maxx, maxy); +} + Shapefile::Main& MapCanvas::GetGeometryData() { return project->main_data; @@ -551,16 +556,40 @@ void MapCanvas::deleteLayerBms() TemplateCanvas::deleteLayerBms(); } +void MapCanvas::ExtentMap() +{ + double minx, miny, maxx, maxy; + if (fg_maps.empty()) { + this->GetExtent(minx, miny, maxx, maxy); + } else { + // if multi layers are loaded, use top layer to extent map + BackgroundMapLayer* top_layer = fg_maps[0]; + top_layer->GetExtent(minx, miny, maxx, maxy); + } + if (basemap) { + OGRCoordinateTransformation *poCT = NULL; + if (project->sourceSR != NULL) { + OGRSpatialReference destSR; + destSR.importFromEPSG(4326); + poCT = OGRCreateCoordinateTransformation(project->sourceSR, + &destSR); + } + basemap->Extent(miny, minx, maxy, maxx, poCT); + } + last_scale_trans.SetData(minx, miny, maxx, maxy); +} + void MapCanvas::ResetShapes() { if (faded_layer_bm) { delete faded_layer_bm; faded_layer_bm = NULL; } - if (basemap) { - basemap->Reset(); - } - last_scale_trans.Reset(); + + // extent map + ExtentMap(); + + // other rest is_pan_zoom = false; ResetBrushing(); SetMouseMode(select); @@ -748,8 +777,16 @@ bool MapCanvas::InitBasemap() poCT = OGRCreateCoordinateTransformation(project->sourceSR,&destSR); } Gda::Screen* screen = new Gda::Screen(screenW, screenH); - Gda::MapLayer* current_map = new Gda::MapLayer(last_scale_trans.data_y_max, last_scale_trans.data_x_min, last_scale_trans.data_y_min, last_scale_trans.data_x_max, poCT); - Gda::MapLayer* orig_map = new Gda::MapLayer(last_scale_trans.orig_data_y_max, last_scale_trans.orig_data_x_min, last_scale_trans.orig_data_y_min, last_scale_trans.orig_data_x_max, poCT); + Gda::MapLayer* current_map = new Gda::MapLayer(last_scale_trans.data_y_max, + last_scale_trans.data_x_min, + last_scale_trans.data_y_min, + last_scale_trans.data_x_max, + poCT); + Gda::MapLayer* orig_map = new Gda::MapLayer(last_scale_trans.orig_data_y_max, + last_scale_trans.orig_data_x_min, + last_scale_trans.orig_data_y_min, + last_scale_trans.orig_data_x_max, + poCT); if (poCT == NULL && !orig_map->IsWGS84Valid()) { isDrawBasemap = false; wxStatusBar* sb = 0; @@ -762,7 +799,9 @@ bool MapCanvas::InitBasemap() } return false; } else { - basemap = new Gda::Basemap(basemap_item, screen, current_map, orig_map, GenUtils::GetBasemapCacheDir(), poCT, scale_factor); + basemap = new Gda::Basemap(basemap_item, screen, current_map, + orig_map, GenUtils::GetBasemapCacheDir(), + poCT, scale_factor); } } return true; @@ -2615,6 +2654,7 @@ void MapCanvas::DisplayMapLayers() { wxLogMessage("MapCanvas::DisplayMapLayers()"); full_map_redraw_needed = true; + ExtentMap(); PopulateCanvas(); } diff --git a/Explore/MapNewView.h b/Explore/MapNewView.h index 2fa6b6b6a..7faecf736 100644 --- a/Explore/MapNewView.h +++ b/Explore/MapNewView.h @@ -86,7 +86,8 @@ class SliderDialog: public wxDialog }; -class MapCanvas : public TemplateCanvas, public CatClassifStateObserver, public MapLayerStateObserver, public AssociateLayerInt +class MapCanvas : public TemplateCanvas, public CatClassifStateObserver, + public MapLayerStateObserver, public AssociateLayerInt { DECLARE_CLASS(MapCanvas) public: @@ -149,6 +150,7 @@ class MapCanvas : public TemplateCanvas, public CatClassifStateObserver, public virtual void ResetShapes(); virtual void ZoomShapes(bool is_zoomin = true); virtual void PanShapes(); + virtual void ExtentMap(); virtual void ResizeSelectableShps(int virtual_scrn_w = 0, int virtual_scrn_h = 0); virtual void PopulateCanvas(); @@ -211,6 +213,8 @@ class MapCanvas : public TemplateCanvas, public CatClassifStateObserver, public virtual bool IsAssociatedWith(AssociateLayerInt* layer); virtual GdaShape* GetShape(int idx); virtual int GetHighlightRecords(); + virtual void GetExtent(double &minx, double &miny, double &maxx, + double &maxy); void UpdateMapTree(); Shapefile::Main& GetGeometryData(); diff --git a/version.h b/version.h index 91ddc27c0..a504e0def 100644 --- a/version.h +++ b/version.h @@ -2,10 +2,10 @@ namespace Gda { const int version_major = 1; const int version_minor = 12; const int version_build = 1; - const int version_subbuild = 197; + const int version_subbuild = 199; const int version_year = 2019; const int version_month = 2; - const int version_day = 12; + const int version_day = 19; const int version_night = 0; const int version_type = 2; // 0: alpha, 1: beta, 2: release } From d7382bf7f8c5e8c8d7ae28374dd300bfe255bf2a Mon Sep 17 00:00:00 2001 From: Xun Li Date: Tue, 19 Feb 2019 17:21:14 -0700 Subject: [PATCH 3/6] fix bounding box issue with multiple layers prevent reset extent when change layer order after zoom/pan --- Explore/Basemap.cpp | 13 ++++++++++ Explore/Basemap.h | 2 +- Explore/MapLayerTree.cpp | 1 + Explore/MapNewView.cpp | 51 ++++++++++++++++++++++++++-------------- Explore/MapNewView.h | 1 + 5 files changed, 49 insertions(+), 19 deletions(-) diff --git a/Explore/Basemap.cpp b/Explore/Basemap.cpp index 1e044726e..c9ff6b7b0 100644 --- a/Explore/Basemap.cpp +++ b/Explore/Basemap.cpp @@ -297,6 +297,10 @@ void Basemap::Extent(double _n, double _w, double _s, double _e, map->south= _s; map->west= _w; map->east= _e; + origMap->north = _n; + origMap->south= _s; + origMap->west= _w; + origMap->east= _e; GetEasyZoomLevel(); SetupMapType(basemap_item); } @@ -369,6 +373,15 @@ bool Basemap::Zoom(bool is_zoomin, int x0, int y0, int x1, int y1) return true; } +bool Basemap::IsExtentChanged() +{ + bool no_change = (origMap->north == map->north && + origMap->south == map->south && + origMap->east == map->east && + origMap->west == map->west); + return !no_change; +} + void Basemap::ZoomIn(int mouseX, int mouseY) { // 2X by default diff --git a/Explore/Basemap.h b/Explore/Basemap.h index 805cef6f8..ac259359f 100644 --- a/Explore/Basemap.h +++ b/Explore/Basemap.h @@ -408,7 +408,7 @@ namespace Gda { void Reset(); void Refresh(); bool IsReady(); - + bool IsExtentChanged(); void SetupMapType(BasemapItem& basemap_item); void CleanCache(); diff --git a/Explore/MapLayerTree.cpp b/Explore/MapLayerTree.cpp index 9a116f042..882fcda55 100644 --- a/Explore/MapLayerTree.cpp +++ b/Explore/MapLayerTree.cpp @@ -1008,6 +1008,7 @@ void MapTree::OnMapLayerChange() is_resize = true; canvas->SetForegroundMayLayers(fg_maps); canvas->SetBackgroundMayLayers(bg_maps); + if (!canvas->IsExtentChanged()) canvas->ExtentMap(); canvas->DisplayMapLayers(); } diff --git a/Explore/MapNewView.cpp b/Explore/MapNewView.cpp index fbe3d8638..a95889ffd 100644 --- a/Explore/MapNewView.cpp +++ b/Explore/MapNewView.cpp @@ -556,6 +556,22 @@ void MapCanvas::deleteLayerBms() TemplateCanvas::deleteLayerBms(); } +bool MapCanvas::IsExtentChanged() +{ + // indicate if there is any zoom or pan applied on current map + bool no_change; + if (basemap) { + no_change = !basemap->IsExtentChanged(); + } else { + no_change = (last_scale_trans.data_x_min == last_scale_trans.orig_data_x_min && + last_scale_trans.data_x_max == last_scale_trans.orig_data_x_max && + last_scale_trans.data_y_min == last_scale_trans.orig_data_y_min && + last_scale_trans.data_y_max == last_scale_trans.orig_data_y_max); + } + + return !no_change; +} + void MapCanvas::ExtentMap() { double minx, miny, maxx, maxy; @@ -574,7 +590,7 @@ void MapCanvas::ExtentMap() poCT = OGRCreateCoordinateTransformation(project->sourceSR, &destSR); } - basemap->Extent(miny, minx, maxy, maxx, poCT); + basemap->Extent(maxy, minx, miny, maxx, poCT); } last_scale_trans.SetData(minx, miny, maxx, maxy); } @@ -650,10 +666,10 @@ void MapCanvas::OnIdle(wxIdleEvent& event) last_scale_trans.SetView(cs_w, cs_h); resizeLayerBms(cs_w, cs_h); if (isDrawBasemap) { - if (basemap == NULL) - InitBasemap(); - if (basemap) + if (basemap == NULL) InitBasemap(); + if (basemap) { // it is not sure InitBasemap will success basemap->ResizeScreen(cs_w, cs_h); + } } ResizeSelectableShps(); event.RequestMore(); // render continuously, not only once on idle @@ -769,24 +785,23 @@ bool MapCanvas::InitBasemap() int screenW = sz.GetWidth(); int screenH = sz.GetHeight(); OGRCoordinateTransformation *poCT = NULL; - if (project->sourceSR != NULL) { - int nGCS = project->sourceSR->GetEPSGGeogCS(); OGRSpatialReference destSR; destSR.importFromEPSG(4326); poCT = OGRCreateCoordinateTransformation(project->sourceSR,&destSR); } Gda::Screen* screen = new Gda::Screen(screenW, screenH); - Gda::MapLayer* current_map = new Gda::MapLayer(last_scale_trans.data_y_max, - last_scale_trans.data_x_min, - last_scale_trans.data_y_min, - last_scale_trans.data_x_max, - poCT); - Gda::MapLayer* orig_map = new Gda::MapLayer(last_scale_trans.orig_data_y_max, - last_scale_trans.orig_data_x_min, - last_scale_trans.orig_data_y_min, - last_scale_trans.orig_data_x_max, - poCT); + Gda::MapLayer *current_map, *orig_map; + current_map = new Gda::MapLayer(last_scale_trans.data_y_max, + last_scale_trans.data_x_min, + last_scale_trans.data_y_min, + last_scale_trans.data_x_max, + poCT); + orig_map = new Gda::MapLayer(last_scale_trans.orig_data_y_max, + last_scale_trans.orig_data_x_min, + last_scale_trans.orig_data_y_min, + last_scale_trans.orig_data_x_max, + poCT); if (poCT == NULL && !orig_map->IsWGS84Valid()) { isDrawBasemap = false; wxStatusBar* sb = 0; @@ -797,6 +812,8 @@ bool MapCanvas::InitBasemap() sb->SetStatusText(s); } } + delete current_map; + delete orig_map; return false; } else { basemap = new Gda::Basemap(basemap_item, screen, current_map, @@ -910,7 +927,6 @@ void MapCanvas::DrawLayerBase() if (basemap != 0) { layerbase_valid = basemap->Draw(basemap_bm); // trigger to draw again, since it's drawing on ONE bitmap, - // not multilayer with transparency support layer0_valid = false; } } @@ -2654,7 +2670,6 @@ void MapCanvas::DisplayMapLayers() { wxLogMessage("MapCanvas::DisplayMapLayers()"); full_map_redraw_needed = true; - ExtentMap(); PopulateCanvas(); } diff --git a/Explore/MapNewView.h b/Explore/MapNewView.h index 7faecf736..babc35f1b 100644 --- a/Explore/MapNewView.h +++ b/Explore/MapNewView.h @@ -151,6 +151,7 @@ class MapCanvas : public TemplateCanvas, public CatClassifStateObserver, virtual void ZoomShapes(bool is_zoomin = true); virtual void PanShapes(); virtual void ExtentMap(); + virtual bool IsExtentChanged(); virtual void ResizeSelectableShps(int virtual_scrn_w = 0, int virtual_scrn_h = 0); virtual void PopulateCanvas(); From 20ec4c59690476631f08a80e94afd240c8b77a4f Mon Sep 17 00:00:00 2001 From: Xun Li Date: Wed, 20 Feb 2019 13:53:06 -0700 Subject: [PATCH 4/6] fix issue: editing is limited to 10 digits in a integer field in table fix: editing is limited to 10 digits in a integer field in table update the logic of resize column width based on content instead of using column lable width; --- DataViewer/OGRColumn.cpp | 23 ++++++++++++----------- DataViewer/TableBase.cpp | 2 +- DataViewer/TableFrame.cpp | 31 +++++++++---------------------- DialogTools/CreatingWeightDlg.cpp | 17 +++++++++++++++-- DialogTools/CreatingWeightDlg.h | 3 ++- rc/dialogs.xrc | 4 ++-- wxTranslationHelper.cpp | 4 +--- 7 files changed, 42 insertions(+), 42 deletions(-) diff --git a/DataViewer/OGRColumn.cpp b/DataViewer/OGRColumn.cpp index e2263e233..aab5c786f 100644 --- a/DataViewer/OGRColumn.cpp +++ b/DataViewer/OGRColumn.cpp @@ -289,7 +289,7 @@ OGRColumnInteger::OGRColumnInteger(wxString name, int field_length, int decimals undef_markers.resize(rows); for (int i=0; i& data) for (int i=0; i& data) } else if (tmp.ToDouble(&val)) { data[i] = val; } else { + // get name of current locale + char *old_locale = setlocale(LC_NUMERIC, NULL); // try comma as decimal point setlocale(LC_NUMERIC, "de_DE"); double _val; @@ -824,7 +823,7 @@ void OGRColumnString::FillData(vector& data) data[i] = 0.0; undef_markers[i] = true; } - setlocale(LC_NUMERIC, "C"); + setlocale(LC_NUMERIC, old_locale); } } } @@ -879,6 +878,8 @@ void OGRColumnString::FillData(vector &data) data[i] = val; } else { + // get name of current locale + char *old_locale = setlocale(LC_NUMERIC, NULL); setlocale(LC_NUMERIC, "de_DE"); wxInt64 val_; double val_d_; @@ -893,7 +894,7 @@ void OGRColumnString::FillData(vector &data) data[i] = 0; undef_markers[i] = true; } - setlocale(LC_NUMERIC, "C"); + setlocale(LC_NUMERIC, old_locale); } } } diff --git a/DataViewer/TableBase.cpp b/DataViewer/TableBase.cpp index 351166323..7c1655b7b 100644 --- a/DataViewer/TableBase.cpp +++ b/DataViewer/TableBase.cpp @@ -506,7 +506,7 @@ void TableBase::update(TableState* o) BOOST_FOREACH(const TableDeltaEntry& e, o->GetTableDeltaListRef()) { if (e.insert) { if (e.type == GdaConst::long64_type) { - GetView()->SetColFormatNumber(e.pos_final); + // leave as a string: for more than 10 digts 64-bit number } else if (e.type == GdaConst::double_type) { int dd = e.displayed_decimals; if (dd == -1) dd = e.decimals; diff --git a/DataViewer/TableFrame.cpp b/DataViewer/TableFrame.cpp index 839534b31..52d5bfb5a 100644 --- a/DataViewer/TableFrame.cpp +++ b/DataViewer/TableFrame.cpp @@ -106,42 +106,30 @@ TableFrame::TableFrame(wxFrame *parent, Project* project, for (int i=0, iend=table_base->GetNumberCols(); iGetColSize(i); double cur_lbl_len = grid->GetColLabelValue(i).length(); - double avg_cell_len = 0; + double max_cell_len = 0; for (int j=0; jGetCellValue(j, i); cv.Trim(true); cv.Trim(false); - avg_cell_len += cv.length(); + if (cv.length() > max_cell_len) max_cell_len = cv.length(); } - if (sample >= 1) { // sample last row - wxString txt = grid->GetCellValue(table_base->GetNumberRows()-1, i); - avg_cell_len += txt.length(); - } - avg_cell_len /= (double) sample; - if (avg_cell_len > cur_lbl_len && - avg_cell_len >= 1 && cur_lbl_len >= 1) { + if (max_cell_len > cur_lbl_len && + max_cell_len >= 1 && cur_lbl_len >= 1) { // attempt to scale up col width based on cur_col_size - double fac = avg_cell_len / cur_lbl_len; - fac *= 1.2; + double fac = max_cell_len / cur_lbl_len; if (fac < 1) fac = 1; - if (fac < 1.5 && fac > 1) fac = 1.5; if (fac > 5) fac = 5; - grid->SetColMinimalWidth(i, cur_col_size*fac); - grid->SetColSize(i, cur_col_size*fac); + fac = fac * 1.2; + grid->SetColMinimalWidth(i, cur_col_size * fac); + grid->SetColSize(i, cur_col_size * fac); } else { // add a few pixels of buffer to current label grid->SetColMinimalWidth(i, cur_col_size+6); grid->SetColSize(i, cur_col_size+6); } } - - //if (!project->IsFileDataSource()) { - // grid->DisableDragColMove(); - //} - - //grid->SetMargins(0 - wxSYS_VSCROLL_X, 0); grid->ForceRefresh(); - + wxBoxSizer *box = new wxBoxSizer(wxVERTICAL); box->Add(grid, 1, wxEXPAND | wxALL, 0); panel->SetSizerAndFit(box); @@ -223,7 +211,6 @@ void TableFrame::OnMenuClose(wxCommandEvent& event) void TableFrame::MapMenus() { // Map Default Options Menus - //wxMenu* optMenu=wxXmlResource::Get()->LoadMenu("ID_DEFAULT_MENU_OPTIONS"); wxMenu* optMenu=wxXmlResource::Get()->LoadMenu("ID_TABLE_VIEW_MENU_CONTEXT"); GeneralWxUtils::ReplaceMenu(GdaFrame::GetGdaFrame()->GetMenuBar(), _("Options"), optMenu); } diff --git a/DialogTools/CreatingWeightDlg.cpp b/DialogTools/CreatingWeightDlg.cpp index 610f16b01..fd9e895dc 100644 --- a/DialogTools/CreatingWeightDlg.cpp +++ b/DialogTools/CreatingWeightDlg.cpp @@ -97,7 +97,8 @@ w_man_int(project_s->GetWManInt()), w_man_state(project_s->GetWManState()), m_num_obs(project_s->GetNumRecords()), m_cbx_precision_threshold_first_click(true), -suspend_table_state_updates(false) +suspend_table_state_updates(false), +is_table_only(project_s->IsTableOnlyProject()) { wxLogMessage("Open CreatingWeightDlg"); Create(parent, id, caption, pos, size, style); @@ -219,13 +220,25 @@ void CreatingWeightDlg::CreateControls() m_power->Enable(false); m_power_knn->Enable(false); - m_nb_distance_variables->Bind(wxEVT_NOTEBOOK_PAGE_CHANGED, &CreatingWeightDlg::OnDistanceWeightsInputUpdate, this); + m_nb_weights_type->Bind(wxEVT_NOTEBOOK_PAGE_CHANGED, + &CreatingWeightDlg::OnWeightTypeSelect, this); + m_nb_distance_variables->Bind(wxEVT_NOTEBOOK_PAGE_CHANGED, + &CreatingWeightDlg::OnDistanceWeightsInputUpdate, this); m_Vars->Bind(wxEVT_LISTBOX, &CreatingWeightDlg::OnDistanceWeightsVarsSel, this); m_dist_choice_vars->Bind(wxEVT_CHOICE, &CreatingWeightDlg::OnDistanceMetricVarsSel, this); m_trans_choice_vars->Bind(wxEVT_CHOICE, &CreatingWeightDlg::OnDistanceMetricVarsSel, this); InitDlg(); } +void CreatingWeightDlg::OnWeightTypeSelect( wxCommandEvent& event ) +{ + int sel = event.GetSelection(); + if (is_table_only && sel == 0) { + // force to "distance weight" + m_nb_weights_type->SetSelection(1); + } +} + void CreatingWeightDlg::OnDistanceMetricVarsSel( wxCommandEvent& event ) { int metric = m_dist_choice_vars->GetSelection(); diff --git a/DialogTools/CreatingWeightDlg.h b/DialogTools/CreatingWeightDlg.h index e835ee64f..651bed3d7 100644 --- a/DialogTools/CreatingWeightDlg.h +++ b/DialogTools/CreatingWeightDlg.h @@ -94,6 +94,7 @@ public TableStateObserver, public WeightsManStateObserver void OnDistanceWeightsInputUpdate( wxBookCtrlEvent& event ); void OnDistanceWeightsVarsSel( wxCommandEvent& event ); void OnDistanceMetricVarsSel( wxCommandEvent& event ); + void OnWeightTypeSelect( wxCommandEvent& event ); /** Implementation of FramesManagerObserver interface */ virtual void update(FramesManager* o); @@ -165,7 +166,7 @@ public TableStateObserver, public WeightsManStateObserver TableState* table_state; WeightsManState* w_man_state; WeightsManInterface* w_man_int; - + bool is_table_only; bool user_xy; // col_id_map[i] is a map from the i'th numeric item in the // fields drop-down to the actual col_id_map. Items diff --git a/rc/dialogs.xrc b/rc/dialogs.xrc index b5b915a08..3bdaed816 100644 --- a/rc/dialogs.xrc +++ b/rc/dialogs.xrc @@ -3482,7 +3482,7 @@ - + wxVERTICAL @@ -3568,7 +3568,7 @@ wxALL|wxEXPAND - + wxVERTICAL diff --git a/wxTranslationHelper.cpp b/wxTranslationHelper.cpp index 64f1b4ec3..6e16d573d 100644 --- a/wxTranslationHelper.cpp +++ b/wxTranslationHelper.cpp @@ -74,9 +74,7 @@ bool wxTranslationHelper::Load() wxArrayString names; wxArrayLong identifiers; GetInstalledLanguages(names, identifiers); - - //AskUserForLanguage(names, identifiers); - + for(size_t i = 0; i < identifiers.Count(); i++) { if(identifiers[i] == language) { if(m_Locale) { From 9f4ba03e9423fde8816b2661c5ac10b533f905c3 Mon Sep 17 00:00:00 2001 From: Xun Li Date: Wed, 20 Feb 2019 14:12:56 -0700 Subject: [PATCH 5/6] UI logic update when GeoDa loads a table-only data source, only "Variables" based "Distance Weight" is enabled in Weights File Creation dialog. --- DialogTools/CreatingWeightDlg.cpp | 19 ++++++++++++++++++- DialogTools/CreatingWeightDlg.h | 1 + 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/DialogTools/CreatingWeightDlg.cpp b/DialogTools/CreatingWeightDlg.cpp index fd9e895dc..f8501e29c 100644 --- a/DialogTools/CreatingWeightDlg.cpp +++ b/DialogTools/CreatingWeightDlg.cpp @@ -222,6 +222,8 @@ void CreatingWeightDlg::CreateControls() m_nb_weights_type->Bind(wxEVT_NOTEBOOK_PAGE_CHANGED, &CreatingWeightDlg::OnWeightTypeSelect, this); + m_nb_distance_variables->Bind(wxEVT_NOTEBOOK_PAGE_CHANGED, + &CreatingWeightDlg::OnWeightVariableSelect, this); m_nb_distance_variables->Bind(wxEVT_NOTEBOOK_PAGE_CHANGED, &CreatingWeightDlg::OnDistanceWeightsInputUpdate, this); m_Vars->Bind(wxEVT_LISTBOX, &CreatingWeightDlg::OnDistanceWeightsVarsSel, this); @@ -236,6 +238,16 @@ void CreatingWeightDlg::OnWeightTypeSelect( wxCommandEvent& event ) if (is_table_only && sel == 0) { // force to "distance weight" m_nb_weights_type->SetSelection(1); + m_nb_distance_variables->SetSelection(1); + } +} + +void CreatingWeightDlg::OnWeightVariableSelect( wxCommandEvent& event ) +{ + int sel = event.GetSelection(); + if (is_table_only && sel == 0) { + // force to "distance weight" + m_nb_distance_variables->SetSelection(1); } } @@ -977,7 +989,12 @@ void CreatingWeightDlg::InitDlg() FindWindow(XRCID("IDC_STATIC_YCOORD_VAR"))->Hide(); m_nb_distance_variables->Hide(); } - + + if (is_table_only) { + // force to "distance weight" + m_nb_weights_type->SetSelection(1); + m_nb_distance_variables->SetSelection(1); + } Refresh(); } diff --git a/DialogTools/CreatingWeightDlg.h b/DialogTools/CreatingWeightDlg.h index 651bed3d7..f3e2fb2e0 100644 --- a/DialogTools/CreatingWeightDlg.h +++ b/DialogTools/CreatingWeightDlg.h @@ -95,6 +95,7 @@ public TableStateObserver, public WeightsManStateObserver void OnDistanceWeightsVarsSel( wxCommandEvent& event ); void OnDistanceMetricVarsSel( wxCommandEvent& event ); void OnWeightTypeSelect( wxCommandEvent& event ); + void OnWeightVariableSelect( wxCommandEvent& event ); /** Implementation of FramesManagerObserver interface */ virtual void update(FramesManager* o); From d4b8550652743105b2d53b7bea11d6988245af1a Mon Sep 17 00:00:00 2001 From: Xun Li Date: Wed, 20 Feb 2019 18:28:28 -0700 Subject: [PATCH 6/6] Remove "set number separators" menu Set to use default en_US number formatting, which use DOT as decimal separator internal. If COMMA decimal separator used in data (e.g. csv), GeoDa will read the value as string by default, and user can convert the field from string to real by automatically detecting if DOT/COMMA used as decimal separator. --- DataViewer/DataViewerAddColDlg.cpp | 5 +- DataViewer/OGRColumn.cpp | 48 +- DialogTools/CsvFieldConfDlg.cpp | 5 +- DialogTools/LocaleSetupDlg.cpp | 14 +- GeoDa.cpp | 19 +- rc/GdaAppResources.cpp | 2803 ++++++++++++++-------------- rc/menus.xrc | 8 +- version.h | 4 +- 8 files changed, 1450 insertions(+), 1456 deletions(-) diff --git a/DataViewer/DataViewerAddColDlg.cpp b/DataViewer/DataViewerAddColDlg.cpp index e4c6b82ee..7adb446a6 100644 --- a/DataViewer/DataViewerAddColDlg.cpp +++ b/DataViewer/DataViewerAddColDlg.cpp @@ -358,8 +358,9 @@ void DataViewerAddColDlg::OnOkClick( wxCommandEvent& ev ) int time_steps = 1; // non-space-time column by default - wxLogMessage(wxString::Format(_("Inserting new column %s into Table"), - colname)); + //wxString log_msg = wxString::Format(_("Inserting new column %s into Table"), + //colname); + //wxLogMessage(log_msg); bool success; if (fixed_lengths) { diff --git a/DataViewer/OGRColumn.cpp b/DataViewer/OGRColumn.cpp index aab5c786f..c55f6b695 100644 --- a/DataViewer/OGRColumn.cpp +++ b/DataViewer/OGRColumn.cpp @@ -795,16 +795,14 @@ void OGRColumnString::FillData(vector& data) } else { int col_idx = GetColIndex(); wxString tmp; - - // default C locale + char *old_locale, *saved_locale = 0; + for (int i=0; idata[i]->GetFieldAsString(col_idx)); - double val; if (tmp.IsEmpty()) { data[i] = 0.0; @@ -812,10 +810,15 @@ void OGRColumnString::FillData(vector& data) } else if (tmp.ToDouble(&val)) { data[i] = val; } else { - // get name of current locale - char *old_locale = setlocale(LC_NUMERIC, NULL); - // try comma as decimal point - setlocale(LC_NUMERIC, "de_DE"); + // try to use different locale + if (i==0) { + // get name of current locale + old_locale = setlocale(LC_NUMERIC, NULL); + // Copy the name so it won’t be clobbered by setlocale + saved_locale = strdup (old_locale); + // try comma as decimal point + setlocale(LC_NUMERIC, "de_DE"); + } double _val; if (tmp.ToDouble(&_val)) { data[i] = _val; @@ -823,9 +826,13 @@ void OGRColumnString::FillData(vector& data) data[i] = 0.0; undef_markers[i] = true; } - setlocale(LC_NUMERIC, old_locale); } } + if (saved_locale) { + // restore locale + setlocale(LC_NUMERIC, saved_locale); + free(saved_locale); + } } } @@ -854,14 +861,13 @@ void OGRColumnString::FillData(vector &data) int col_idx = GetColIndex(); bool conv_success = true; wxString tmp; - - // default C locale + char *old_locale, *saved_locale = 0; + for (int i=0; idata[i]->GetFieldAsString(col_idx)); wxInt64 val; double val_d; @@ -878,9 +884,15 @@ void OGRColumnString::FillData(vector &data) data[i] = val; } else { - // get name of current locale - char *old_locale = setlocale(LC_NUMERIC, NULL); - setlocale(LC_NUMERIC, "de_DE"); + // try to use different locale + if (i==0) { + // get name of current locale + old_locale = setlocale(LC_NUMERIC, NULL); + // Copy the name so it won’t be clobbered by setlocale + saved_locale = strdup (old_locale); + // try comma as decimal point + setlocale(LC_NUMERIC, "de_DE"); + } wxInt64 val_; double val_d_; if (tmp.ToLongLong(&val_)) { @@ -894,9 +906,13 @@ void OGRColumnString::FillData(vector &data) data[i] = 0; undef_markers[i] = true; } - setlocale(LC_NUMERIC, old_locale); } } + if (saved_locale) { + // restore locale + setlocale(LC_NUMERIC, saved_locale); + free(saved_locale); + } } } diff --git a/DialogTools/CsvFieldConfDlg.cpp b/DialogTools/CsvFieldConfDlg.cpp index dc243c3f9..be30bf184 100644 --- a/DialogTools/CsvFieldConfDlg.cpp +++ b/DialogTools/CsvFieldConfDlg.cpp @@ -212,8 +212,9 @@ CsvFieldConfDlg::CsvFieldConfDlg(wxWindow* parent, fieldGrid->Connect(wxEVT_COMMAND_COMBOBOX_SELECTED, wxCommandEventHandler(CsvFieldConfDlg::OnFieldSelected), - NULL, - this); + NULL, this); + // hide locale button, since it will be handled in Table directly + btn_locale->Hide(); } CsvFieldConfDlg::~CsvFieldConfDlg() diff --git a/DialogTools/LocaleSetupDlg.cpp b/DialogTools/LocaleSetupDlg.cpp index f0d61bd3a..8b04a2858 100644 --- a/DialogTools/LocaleSetupDlg.cpp +++ b/DialogTools/LocaleSetupDlg.cpp @@ -59,8 +59,10 @@ LocaleSetupDlg::LocaleSetupDlg(wxWindow* parent, m_txt_decimal = XRCCTRL(*this, "IDC_FIELD_DECIMAL",wxTextCtrl); m_txt_thousands->SetMaxLength(1); m_txt_decimal->SetMaxLength(1); - wxString thousands_sep = CPLGetConfigOption("GDAL_LOCALE_SEPARATOR", ""); - wxString decimal_point = CPLGetConfigOption("GDAL_LOCALE_DECIMAL", ""); + + struct lconv *poLconv = localeconv(); + wxString thousands_sep = poLconv->thousands_sep; + wxString decimal_point = poLconv->decimal_point; m_txt_thousands->SetValue(thousands_sep); m_txt_decimal->SetValue(decimal_point); @@ -74,13 +76,7 @@ void LocaleSetupDlg::OnResetSysLocale( wxCommandEvent& event ) { wxLogMessage("Click LocaleSetupDlg::OnResetSysLocale"); - setlocale(LC_ALL, ""); - struct lconv *poLconv = localeconv(); - CPLSetConfigOption("GDAL_LOCALE_SEPARATOR", poLconv->thousands_sep); - CPLSetConfigOption("GDAL_LOCALE_DECIMAL", poLconv->decimal_point); - // forcing to C locale, which is used internally in GeoDa - setlocale(LC_ALL, "C"); - + struct lconv *poLconv = localeconv(); wxString thousands_sep = poLconv->thousands_sep; wxString decimal_point = poLconv->decimal_point; diff --git a/GeoDa.cpp b/GeoDa.cpp index 432a68767..c74fad5e3 100644 --- a/GeoDa.cpp +++ b/GeoDa.cpp @@ -215,20 +215,10 @@ bool GdaApp::OnInit(void) { if (!wxApp::OnInit()) return false; - + // initialize OGR connection OGRDataAdapter::GetInstance(); - // By defaut, GDAL will use user's system locale to read any input datasource - // However, user can change the Separators in GeoDa, after re-open the - // datasource, CSV reader will use the Separators - struct lconv *poLconv = localeconv(); - CPLSetConfigOption("GDAL_LOCALE_SEPARATOR", poLconv->thousands_sep); - CPLSetConfigOption("GDAL_LOCALE_DECIMAL", poLconv->decimal_point); - - // forcing to UTF-8 locale, which is used internally in GeoDa - setlocale(LC_ALL, "en_US.UTF-8"); - // load preferences PreferenceDlg::ReadFromCache(); @@ -244,7 +234,9 @@ bool GdaApp::OnInit(void) m_TranslationHelper = new wxTranslationHelper(*this, search_path, use_native_config); m_TranslationHelper->SetConfigPath(config_path); m_TranslationHelper->Load(); - + // forcing numeric settings to en_US, which is used internally in GeoDa + setlocale(LC_NUMERIC, "en_US"); + // Other GDAL configurations if (GdaConst::hide_sys_table_postgres == false) { CPLSetConfigOption("PG_LIST_ALL_TABLES", "YES"); @@ -253,7 +245,8 @@ bool GdaApp::OnInit(void) CPLSetConfigOption("SQLITE_LIST_ALL_TABLES", "YES"); } if (GdaConst::gdal_http_timeout >= 0 ) { - CPLSetConfigOption("GDAL_HTTP_TIMEOUT", wxString::Format("%d", GdaConst::gdal_http_timeout)); + CPLSetConfigOption("GDAL_HTTP_TIMEOUT", + wxString::Format("%d", GdaConst::gdal_http_timeout)); } CPLSetConfigOption("OGR_XLS_HEADERS", "FORCE"); CPLSetConfigOption("OGR_XLSX_HEADERS", "FORCE"); diff --git a/rc/GdaAppResources.cpp b/rc/GdaAppResources.cpp index 0365c6f68..3904969fb 100644 --- a/rc/GdaAppResources.cpp +++ b/rc/GdaAppResources.cpp @@ -15530,7 +15530,7 @@ static unsigned char xml_res_file_7[] = { 16,48,4,12,1,67,192,16,48,4,12,1,67,160,133,35,240,255,75,175,9,51,209, 227,12,205,0,0,0,0,73,69,78,68,174,66,96,130}; -static size_t xml_res_size_8 = 395039; +static size_t xml_res_size_8 = 395105; static unsigned char xml_res_file_8[] = { 60,63,120,109,108,32,118,101,114,115,105,111,110,61,34,49,46,48,34,32,101, 110,99,111,100,105,110,103,61,34,117,116,102,45,56,34,63,62,10,60,114,101, @@ -21993,28 +21993,108 @@ static unsigned char xml_res_file_8[] = { 101,98,111,111,107,34,32,110,97,109,101,61,34,73,68,67,95,78,66,95,87,69, 73,71,72,84,83,95,67,82,69,65,84,73,79,78,34,62,10,32,32,32,32,32,32,32, 32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,110,111,116, -101,98,111,111,107,112,97,103,101,34,62,10,32,32,32,32,32,32,32,32,32,32, -32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,80,97, -110,101,108,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98, -106,101,99,116,32,99,108,97,115,115,61,34,119,120,66,111,120,83,105,122, -101,114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111, -114,105,101,110,116,62,119,120,86,69,82,84,73,67,65,76,60,47,111,114,105, -101,110,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111, -98,106,101,99,116,32,99,108,97,115,115,61,34,115,105,122,101,114,105,116, -101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,70,108,101, -120,71,114,105,100,83,105,122,101,114,34,62,10,32,32,32,32,32,32,32,32, +101,98,111,111,107,112,97,103,101,34,32,110,97,109,101,61,34,73,68,67,95, +78,66,80,71,95,67,79,78,84,73,71,85,73,84,89,95,87,69,73,71,72,84,34,62, +10,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, +97,115,115,61,34,119,120,80,97,110,101,108,34,62,10,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, +119,120,66,111,120,83,105,122,101,114,34,62,10,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,60,111,114,105,101,110,116,62,119,120,86,69,82, +84,73,67,65,76,60,47,111,114,105,101,110,116,62,10,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, +61,34,115,105,122,101,114,105,116,101,109,34,62,10,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, +115,115,61,34,119,120,70,108,101,120,71,114,105,100,83,105,122,101,114, +34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60, +111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,105,122,101,114,105, +116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,82,97,100,105,111,66,117,116,116,111,110,34,32,110,97,109,101,61,34, +73,68,67,95,82,65,68,73,79,95,81,85,69,69,78,34,62,10,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101, +108,62,81,117,101,101,110,32,99,111,110,116,105,103,117,105,116,121,60, +47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,60,115,116,121,108,101,62,119,120,82,66,95,71, +82,79,85,80,60,47,115,116,121,108,101,62,10,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,102, +108,97,103,62,119,120,65,76,73,71,78,95,76,69,70,84,124,119,120,65,76,73, +71,78,95,67,69,78,84,82,69,95,86,69,82,84,73,67,65,76,60,47,102,108,97, +103,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60, +47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115, +105,122,101,114,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32, 32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,115,105,122,101,114,105,116,101,109,34,62,10,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106, -101,99,116,32,99,108,97,115,115,61,34,119,120,82,97,100,105,111,66,117, -116,116,111,110,34,32,110,97,109,101,61,34,73,68,67,95,82,65,68,73,79,95, -81,85,69,69,78,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,81,117,101,101,110,32,99, -111,110,116,105,103,117,105,116,121,60,47,108,97,98,101,108,62,10,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115, -116,121,108,101,62,119,120,82,66,95,71,82,79,85,80,60,47,115,116,121,108, -101,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +97,115,115,61,34,119,120,66,111,120,83,105,122,101,114,34,62,10,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98, +106,101,99,116,32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,101, +109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,60,102,108,97,103,62,119,120,65,76,73,71,78,95,82,73, +71,72,84,124,119,120,65,76,73,71,78,95,67,69,78,84,69,82,95,86,69,82,84, +73,67,65,76,124,119,120,65,76,76,124,119,120,65,68,74,85,83,84,95,77,73, +78,83,73,90,69,60,47,102,108,97,103,62,10,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,111,114,100,101,114, +62,50,60,47,98,111,114,100,101,114,62,10,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116, +32,99,108,97,115,115,61,34,119,120,83,116,97,116,105,99,84,101,120,116, +34,32,110,97,109,101,61,34,73,68,67,95,83,84,65,84,73,67,95,79,79,67,49, +34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,60,108,97,98,101,108,62,79,114,100,101,114,32,111, +102,32,99,111,110,116,105,103,117,105,116,121,60,47,108,97,98,101,108,62, +10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62, +10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,105,122,101, +114,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, +97,115,115,61,34,119,120,84,101,120,116,67,116,114,108,34,32,110,97,109, +101,61,34,73,68,67,95,69,68,73,84,95,79,82,68,69,82,79,70,67,79,78,84,73, +71,85,73,84,89,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,60,115,105,122,101,62,50,53,44,45,49, +100,60,47,115,105,122,101,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,116,121,108,101,62, +119,120,84,69,95,82,69,65,68,79,78,76,89,124,119,120,84,69,95,82,73,71, +72,84,60,47,115,116,121,108,101,62,10,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,60,102,108,97,103,62,119,120,65,76,73,71,78,95,67,69,78,84, +69,82,95,86,69,82,84,73,67,65,76,124,119,120,65,76,76,60,47,102,108,97, +103,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,60,98,111,114,100,101,114,62,50,60,47,98,111,114,100,101, +114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, +108,97,115,115,61,34,115,112,97,99,101,114,34,62,10,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,105,122, +101,62,50,44,50,60,47,115,105,122,101,62,10,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,105,122,101, +114,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,60,102,108,97,103,62,119,120,65,76, +73,71,78,95,67,69,78,84,69,82,95,86,69,82,84,73,67,65,76,124,119,120,65, +76,76,60,47,102,108,97,103,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,111,114,100,101,114,62,50, +60,47,98,111,114,100,101,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, +108,97,115,115,61,34,119,120,83,112,105,110,66,117,116,116,111,110,34,32, +110,97,109,101,61,34,73,68,67,95,83,80,73,78,95,79,82,68,69,82,79,70,67, +79,78,84,73,71,85,73,84,89,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,116,121,108,101, +62,119,120,83,80,95,86,69,82,84,73,67,65,76,60,47,115,116,121,108,101,62, +10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,60,118,97,108,117,101,62,48,60,47,118,97,108,117,101,62, +10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,60,109,105,110,62,48,60,47,109,105,110,62,10,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +60,109,97,120,62,49,48,48,60,47,109,97,120,62,10,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106, +101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,114,105,101,110, +116,62,119,120,72,79,82,73,90,79,78,84,65,76,60,47,111,114,105,101,110, +116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, 32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32, 32,32,32,32,32,32,32,32,32,32,60,102,108,97,103,62,119,120,65,76,73,71, 78,95,76,69,70,84,124,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,86, @@ -22023,242 +22103,165 @@ static unsigned char xml_res_file_8[] = { 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106, 101,99,116,32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,101,109, 34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,66,111,120, -83,105,122,101,114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, -61,34,115,105,122,101,114,105,116,101,109,34,62,10,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,102,108,97, -103,62,119,120,65,76,73,71,78,95,82,73,71,72,84,124,119,120,65,76,73,71, -78,95,67,69,78,84,69,82,95,86,69,82,84,73,67,65,76,124,119,120,65,76,76, -124,119,120,65,68,74,85,83,84,95,77,73,78,83,73,90,69,60,47,102,108,97, -103,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,60,98,111,114,100,101,114,62,50,60,47,98,111,114,100,101, -114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,83,116,97,116,105,99,84,101,120,116,34,32,110,97,109,101,61,34,73,68, -67,95,83,84,65,84,73,67,95,79,79,67,49,34,62,10,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98, -101,108,62,79,114,100,101,114,32,111,102,32,99,111,110,116,105,103,117, -105,116,121,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99, -116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32, +32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,82,97,100, +105,111,66,117,116,116,111,110,34,32,110,97,109,101,61,34,73,68,67,95,82, +65,68,73,79,95,82,79,79,75,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,82,111,111, +107,32,99,111,110,116,105,103,117,105,116,121,60,47,108,97,98,101,108,62, +10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60, +47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,60,102,108,97,103,62,119,120,65,76,73,71,78,95, +76,69,70,84,124,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,69,82, +84,73,67,65,76,60,47,102,108,97,103,62,10,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99, +116,32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,101,109,34,62, +10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60, +111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,67,104,101,99, +107,66,111,120,34,32,110,97,109,101,61,34,73,68,67,95,67,72,69,67,75,49, +34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,60,108,97,98,101,108,62,73,110,99,108,117,100,101,32,108,111,119, +101,114,32,111,114,100,101,114,115,60,47,108,97,98,101,108,62,10,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98, +106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,60,102,108,97,103,62,119,120,65,76,73,71,78,95,76,69,70, +84,124,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,69,82,84,73,67, +65,76,60,47,102,108,97,103,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32, 32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, 108,97,115,115,61,34,115,105,122,101,114,105,116,101,109,34,62,10,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106, +101,99,116,32,99,108,97,115,115,61,34,119,120,67,104,101,99,107,66,111, +120,34,32,110,97,109,101,61,34,73,68,67,95,80,82,69,67,73,83,73,79,78,95, +67,66,88,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,60,108,97,98,101,108,62,80,114,101,99,105,115,105,111, +110,32,116,104,114,101,115,104,111,108,100,60,47,108,97,98,101,108,62,10, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47, +111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,60,102,108,97,103,62,119,120,65,76,73,71,78,95,76, +69,70,84,124,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,69,82,84, +73,67,65,76,60,47,102,108,97,103,62,10,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116, +32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,101,109,34,62,10, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111, +98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,84,101,120,116,67, +116,114,108,34,32,110,97,109,101,61,34,73,68,67,95,80,82,69,67,73,83,73, +79,78,95,84,72,82,69,83,72,79,76,68,95,69,68,73,84,34,62,10,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,105, +122,101,62,57,48,44,45,49,100,60,47,115,105,122,101,62,10,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,118,97,108, +117,101,62,48,60,47,118,97,108,117,101,62,10,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,116,121,108,101,62, +119,120,84,69,95,82,73,71,72,84,60,47,115,116,121,108,101,62,10,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106, +101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,60,102,108,97,103,62,119,120,65,76,73,71,78,95,76,69,70,84, +124,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,69,82,84,73,67,65, +76,60,47,102,108,97,103,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,60,99,111,108,115,62,50,60,47,99, +111,108,115,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,60,114,111,119,115,62,51,60,47,114,111,119,115,62,10,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,118,103,97,112,62,49, +48,60,47,118,103,97,112,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,60,104,103,97,112,62,52,48,60,47,104,103,97,112,62,10, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106, +101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +60,102,108,97,103,62,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,72, +79,82,73,90,79,78,84,65,76,124,119,120,65,76,76,124,119,120,69,88,80,65, +78,68,60,47,102,108,97,103,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,60,98,111,114,100,101,114,62,49,53,60,47,98,111,114,100, +101,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111, +98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47, +111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111, +98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98, +101,108,62,67,111,110,116,105,103,117,105,116,121,32,87,101,105,103,104, +116,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60, +102,108,97,103,62,119,120,65,76,76,124,119,120,69,88,80,65,78,68,60,47, +102,108,97,103,62,10,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101, +99,116,62,10,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32, +99,108,97,115,115,61,34,110,111,116,101,98,111,111,107,112,97,103,101,34, +32,110,97,109,101,61,34,73,68,67,95,78,66,80,71,95,68,73,83,84,65,78,67, +69,95,87,69,73,71,72,84,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60, +111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,80,97,110,101, +108,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101, +99,116,32,99,108,97,115,115,61,34,119,120,66,111,120,83,105,122,101,114, +34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,114,105, +101,110,116,62,119,120,86,69,82,84,73,67,65,76,60,47,111,114,105,101,110, +116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106, +101,99,116,32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,101,109, +34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98, +106,101,99,116,32,99,108,97,115,115,61,34,119,120,66,111,120,83,105,122, +101,114,34,32,110,97,109,101,61,34,119,120,73,68,95,65,78,89,34,62,10,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,114,105, +101,110,116,62,119,120,86,69,82,84,73,67,65,76,60,47,111,114,105,101,110, +116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60, +108,97,98,101,108,62,68,105,115,116,97,110,99,101,32,87,101,105,103,104, +116,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, +115,105,122,101,114,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,60,102,108,97,103,62,119,120,65, +76,73,71,78,95,76,69,70,84,124,119,120,65,76,76,60,47,102,108,97,103,62, +10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60, +98,111,114,100,101,114,62,50,60,47,98,111,114,100,101,114,62,10,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106, +101,99,116,32,99,108,97,115,115,61,34,119,120,83,116,97,116,105,99,84,101, +120,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,60,108,97,98,101,108,62,86,97,114,105,97,98,108,101,115, +58,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99, +116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60, +111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,105,122,101,114,105, +116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,78,111,116,101,98,111,111,107,34,32,110,97,109,101,61,34,73,68,67,95, +78,66,95,68,73,83,84,65,78,67,69,95,86,65,82,73,65,66,76,69,83,34,62,10, 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,84,101,120, -116,67,116,114,108,34,32,110,97,109,101,61,34,73,68,67,95,69,68,73,84,95, -79,82,68,69,82,79,70,67,79,78,84,73,71,85,73,84,89,34,62,10,32,32,32,32, +60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,110,111,116,101,98, +111,111,107,112,97,103,101,34,32,110,97,109,101,61,34,73,68,67,95,78,66, +95,80,65,71,69,95,71,69,79,77,95,67,69,78,84,82,79,73,68,83,34,62,10,32, 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -60,115,105,122,101,62,50,53,44,45,49,100,60,47,115,105,122,101,62,10,32, +32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,80,97,110, +101,108,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +115,61,34,119,120,66,111,120,83,105,122,101,114,34,62,10,32,32,32,32,32, 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,60,115,116,121,108,101,62,119,120,84,69,95,82,69,65,68,79,78,76, -89,124,119,120,84,69,95,82,73,71,72,84,60,47,115,116,121,108,101,62,10, +32,60,111,114,105,101,110,116,62,119,120,86,69,82,84,73,67,65,76,60,47, +111,114,105,101,110,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116, +32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,101,109,34,62,10, 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,102,108,97,103,62,119,120, -65,76,73,71,78,95,67,69,78,84,69,82,95,86,69,82,84,73,67,65,76,124,119, -120,65,76,76,60,47,102,108,97,103,62,10,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,111,114,100,101,114, -62,50,60,47,98,111,114,100,101,114,62,10,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62, -10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,112,97,99,101, -114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,60,115,105,122,101,62,50,44,50,60,47,115,105,122,101, -62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,115,105,122,101,114,105,116,101,109,34,62,10,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60, -102,108,97,103,62,119,120,65,76,73,71,78,95,67,69,78,84,69,82,95,86,69, -82,84,73,67,65,76,124,119,120,65,76,76,60,47,102,108,97,103,62,10,32,32, +32,32,32,32,32,32,32,32,60,102,108,97,103,62,119,120,65,76,73,71,78,95, +67,69,78,84,69,82,95,86,69,82,84,73,67,65,76,124,119,120,76,69,70,84,124, +119,120,82,73,71,72,84,60,47,102,108,97,103,62,10,32,32,32,32,32,32,32, 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -60,98,111,114,100,101,114,62,50,60,47,98,111,114,100,101,114,62,10,32,32, +32,60,98,111,114,100,101,114,62,49,48,60,47,98,111,114,100,101,114,62,10, 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,83,112,105, -110,66,117,116,116,111,110,34,32,110,97,109,101,61,34,73,68,67,95,83,80, -73,78,95,79,82,68,69,82,79,70,67,79,78,84,73,71,85,73,84,89,34,62,10,32, +32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, +34,119,120,66,111,120,83,105,122,101,114,34,62,10,32,32,32,32,32,32,32, 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,60,115,116,121,108,101,62,119,120,83,80,95,86,69,82,84,73,67,65, -76,60,47,115,116,121,108,101,62,10,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,118,97,108,117,101,62, -48,60,47,118,97,108,117,101,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,109,105,110,62,48,60,47, -109,105,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,60,109,97,120,62,49,48,48,60,47,109,97,120, +32,32,32,60,111,114,105,101,110,116,62,119,120,72,79,82,73,90,79,78,84, +65,76,60,47,111,114,105,101,110,116,62,10,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,112,97,99,101,114, +34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,105,122,101,62,51,48, +44,50,60,47,115,105,122,101,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111, +98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101, +99,116,32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,101,109,34, 62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116, -62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,60,111,114,105,101,110,116,62,119,120,72,79,82,73,90,79,78,84,65, -76,60,47,111,114,105,101,110,116,62,10,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,102,108, -97,103,62,119,120,65,76,73,71,78,95,76,69,70,84,124,119,120,65,76,73,71, -78,95,67,69,78,84,82,69,95,86,69,82,84,73,67,65,76,60,47,102,108,97,103, -62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47, -111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115, -105,122,101,114,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,119,120,82,97,100,105,111,66,117,116,116,111,110,34,32, -110,97,109,101,61,34,73,68,67,95,82,65,68,73,79,95,82,79,79,75,34,62,10, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -60,108,97,98,101,108,62,82,111,111,107,32,99,111,110,116,105,103,117,105, -116,121,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,102,108, -97,103,62,119,120,65,76,73,71,78,95,76,69,70,84,124,119,120,65,76,73,71, -78,95,67,69,78,84,82,69,95,86,69,82,84,73,67,65,76,60,47,102,108,97,103, -62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47, -111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115, -105,122,101,114,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,119,120,67,104,101,99,107,66,111,120,34,32,110,97,109, -101,61,34,73,68,67,95,67,72,69,67,75,49,34,62,10,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62, -73,110,99,108,117,100,101,32,108,111,119,101,114,32,111,114,100,101,114, -115,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,102,108,97,103, -62,119,120,65,76,73,71,78,95,76,69,70,84,124,119,120,65,76,73,71,78,95, -67,69,78,84,82,69,95,86,69,82,84,73,67,65,76,60,47,102,108,97,103,62,10, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98, -106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,105,122, -101,114,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, -61,34,119,120,67,104,101,99,107,66,111,120,34,32,110,97,109,101,61,34,73, -68,67,95,80,82,69,67,73,83,73,79,78,95,67,66,88,34,62,10,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101, -108,62,80,114,101,99,105,115,105,111,110,32,116,104,114,101,115,104,111, -108,100,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,102,108, -97,103,62,119,120,65,76,73,71,78,95,76,69,70,84,124,119,120,65,76,73,71, -78,95,67,69,78,84,82,69,95,86,69,82,84,73,67,65,76,60,47,102,108,97,103, -62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47, -111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115, -105,122,101,114,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,119,120,84,101,120,116,67,116,114,108,34,32,110,97,109, -101,61,34,73,68,67,95,80,82,69,67,73,83,73,79,78,95,84,72,82,69,83,72,79, -76,68,95,69,68,73,84,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,60,115,105,122,101,62,57,48,44,45,49,100, -60,47,115,105,122,101,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,60,118,97,108,117,101,62,48,60,47,118,97,108, -117,101,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,60,115,116,121,108,101,62,119,120,84,69,95,82,73,71,72,84, -60,47,115,116,121,108,101,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,102,108,97,103, -62,119,120,65,76,73,71,78,95,76,69,70,84,124,119,120,65,76,73,71,78,95, -67,69,78,84,82,69,95,86,69,82,84,73,67,65,76,60,47,102,108,97,103,62,10, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98, -106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,60,99,111,108,115,62,50,60,47,99,111,108,115,62,10,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,114,111,119,115,62,51, -60,47,114,111,119,115,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,60,118,103,97,112,62,49,48,60,47,118,103,97,112,62,10,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,103,97, -112,62,52,48,60,47,104,103,97,112,62,10,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,60,102,108,97,103,62,119,120,65,76, -73,71,78,95,67,69,78,84,82,69,95,72,79,82,73,90,79,78,84,65,76,124,119, -120,65,76,76,124,119,120,69,88,80,65,78,68,60,47,102,108,97,103,62,10,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,111,114,100,101, -114,62,49,53,60,47,98,111,114,100,101,114,62,10,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32, -32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32, -32,32,32,32,32,32,32,60,108,97,98,101,108,62,67,111,110,116,105,103,117, -105,116,121,32,87,101,105,103,104,116,60,47,108,97,98,101,108,62,10,32, -32,32,32,32,32,32,32,32,32,32,32,60,102,108,97,103,62,119,120,65,76,76, -124,119,120,69,88,80,65,78,68,60,47,102,108,97,103,62,10,32,32,32,32,32, -32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32, -32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,110,111,116,101, -98,111,111,107,112,97,103,101,34,62,10,32,32,32,32,32,32,32,32,32,32,32, -32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,80,97,110, -101,108,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106, -101,99,116,32,99,108,97,115,115,61,34,119,120,66,111,120,83,105,122,101, -114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,114, -105,101,110,116,62,119,120,86,69,82,84,73,67,65,76,60,47,111,114,105,101, -110,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98, -106,101,99,116,32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,101, -109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111, -98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,66,111,120,83,105, -122,101,114,34,32,110,97,109,101,61,34,119,120,73,68,95,65,78,89,34,62, -10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,114, -105,101,110,116,62,119,120,86,69,82,84,73,67,65,76,60,47,111,114,105,101, -110,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,60,108,97,98,101,108,62,68,105,115,116,97,110,99,101,32,87,101,105,103, -104,116,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, -61,34,115,105,122,101,114,105,116,101,109,34,62,10,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,102,108,97,103,62,119,120, -65,76,73,71,78,95,76,69,70,84,124,119,120,65,76,76,60,47,102,108,97,103, -62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -60,98,111,114,100,101,114,62,50,60,47,98,111,114,100,101,114,62,10,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106, -101,99,116,32,99,108,97,115,115,61,34,119,120,83,116,97,116,105,99,84,101, -120,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,60,108,97,98,101,108,62,86,97,114,105,97,98,108,101,115, -58,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99, -116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60, -111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,105,122,101,114,105, -116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,78,111,116,101,98,111,111,107,34,32,110,97,109,101,61,34,73,68,67,95, -78,66,95,68,73,83,84,65,78,67,69,95,86,65,82,73,65,66,76,69,83,34,62,10, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,110,111,116,101,98, -111,111,107,112,97,103,101,34,32,110,97,109,101,61,34,73,68,67,95,78,66, -95,80,65,71,69,95,71,69,79,77,95,67,69,78,84,82,79,73,68,83,34,62,10,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,80,97,110, -101,108,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, -115,61,34,119,120,66,111,120,83,105,122,101,114,34,62,10,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,60,111,114,105,101,110,116,62,119,120,86,69,82,84,73,67,65,76,60,47, -111,114,105,101,110,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116, -32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,101,109,34,62,10, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,60,102,108,97,103,62,119,120,65,76,73,71,78,95, -67,69,78,84,69,82,95,86,69,82,84,73,67,65,76,124,119,120,76,69,70,84,124, -119,120,82,73,71,72,84,60,47,102,108,97,103,62,10,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,60,98,111,114,100,101,114,62,49,48,60,47,98,111,114,100,101,114,62,10, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, -34,119,120,66,111,120,83,105,122,101,114,34,62,10,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,60,111,114,105,101,110,116,62,119,120,72,79,82,73,90,79,78,84, -65,76,60,47,111,114,105,101,110,116,62,10,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,112,97,99,101,114, -34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,105,122,101,62,51,48, -44,50,60,47,115,105,122,101,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111, -98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101, -99,116,32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,101,109,34, -62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, -108,97,115,115,61,34,119,120,83,116,97,116,105,99,84,101,120,116,34,32, -110,97,109,101,61,34,73,68,67,95,83,84,65,84,73,67,95,88,67,79,79,82,68, -95,86,65,82,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97, -98,101,108,62,88,45,99,111,111,114,100,105,110,97,116,101,32,118,97,114, -105,97,98,108,101,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32, -32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, +108,97,115,115,61,34,119,120,83,116,97,116,105,99,84,101,120,116,34,32, +110,97,109,101,61,34,73,68,67,95,83,84,65,84,73,67,95,88,67,79,79,82,68, +95,86,65,82,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97, +98,101,108,62,88,45,99,111,111,114,100,105,110,97,116,101,32,118,97,114, +105,97,98,108,101,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, 32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32, 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, 32,32,32,60,102,108,97,103,62,119,120,65,76,73,71,78,95,76,69,70,84,124, @@ -37160,7 +37163,7 @@ static unsigned char xml_res_file_10[] = { 88,60,47,115,116,121,108,101,62,10,32,32,60,47,111,98,106,101,99,116,62, 10,60,47,114,101,115,111,117,114,99,101,62,10}; -static size_t xml_res_size_11 = 188734; +static size_t xml_res_size_11 = 188496; static unsigned char xml_res_file_11[] = { 60,63,120,109,108,32,118,101,114,115,105,111,110,61,34,49,46,48,34,32,101, 110,99,111,100,105,110,103,61,34,73,83,79,45,56,56,53,57,45,49,53,34,63, @@ -37559,416 +37562,410 @@ static unsigned char xml_res_file_11[] = { 98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,60,99,104,101,99,107,97, 98,108,101,62,49,60,47,99,104,101,99,107,97,98,108,101,62,10,32,32,32,32, 32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,47,111, -98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, -108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97, -109,101,61,34,73,68,95,84,65,66,76,69,95,83,69,84,95,76,79,67,65,76,69, -34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,83,101,116,32, -78,117,109,98,101,114,32,83,101,112,97,114,97,116,111,114,115,60,47,108, -97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10, -32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106, +98,106,101,99,116,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32, +32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, +101,110,117,34,32,110,97,109,101,61,34,73,68,95,67,65,84,95,67,76,65,83, +83,73,70,95,65,95,77,69,78,85,34,62,10,32,32,32,32,32,32,60,108,97,98,101, +108,62,38,97,109,112,59,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32, +32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, +101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69, +78,95,77,65,80,65,78,65,76,89,83,73,83,95,84,72,69,77,69,76,69,83,83,34, +62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,84,104,101,109,101, +108,101,115,115,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32, +32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106, 101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110, -97,109,101,61,34,73,68,95,67,65,84,95,67,76,65,83,83,73,70,95,65,95,77, -69,78,85,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,38,97,109,112, -59,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,111,98, -106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, -101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65, -78,65,76,89,83,73,83,95,84,72,69,77,69,76,69,83,83,34,62,10,32,32,32,32, -32,32,32,32,60,108,97,98,101,108,62,84,104,101,109,101,108,101,115,115, -32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111, -98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, -108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61,34, -73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,83,85,66,77,69,78,85, -34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,81,117,97,110, -116,105,108,101,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32, -32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120, -77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80, -69,78,95,81,85,65,78,84,73,76,69,95,50,34,62,10,32,32,32,32,32,32,32,32, -32,32,60,108,97,98,101,108,62,50,60,47,108,97,98,101,108,62,10,32,32,32, -32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32, -60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, +97,109,101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,83, +85,66,77,69,78,85,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108, +62,81,117,97,110,116,105,108,101,32,77,97,112,60,47,108,97,98,101,108,62, +10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, +61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34, +73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,50,34,62,10,32,32,32, +32,32,32,32,32,32,32,60,108,97,98,101,108,62,50,60,47,108,97,98,101,108, +62,10,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, +32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79, +80,69,78,95,81,85,65,78,84,73,76,69,95,51,34,62,10,32,32,32,32,32,32,32, +32,32,32,60,108,97,98,101,108,62,51,60,47,108,97,98,101,108,62,10,32,32, +32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32, +32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, 117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,81, -85,65,78,84,73,76,69,95,51,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108, -97,98,101,108,62,51,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32, +85,65,78,84,73,76,69,95,52,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108, +97,98,101,108,62,52,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32, 32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98, 106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, 101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,81,85,65,78, -84,73,76,69,95,52,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101, -108,62,52,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,47,111, +84,73,76,69,95,53,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101, +108,62,53,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,47,111, 98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116, 32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, 110,97,109,101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95, -53,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,53,60, +54,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,54,60, 47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,47,111,98,106,101, 99,116,62,10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, 97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, -101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,54,34,62,10, -32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,54,60,47,108,97,98, +101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,55,34,62,10, +32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,55,60,47,108,97,98, 101,108,62,10,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10, 32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, 34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73, -68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,55,34,62,10,32,32,32,32, -32,32,32,32,32,32,60,108,97,98,101,108,62,55,60,47,108,97,98,101,108,62, +68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,56,34,62,10,32,32,32,32, +32,32,32,32,32,32,60,108,97,98,101,108,62,56,60,47,108,97,98,101,108,62, 10,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32, 32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120, 77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80, -69,78,95,81,85,65,78,84,73,76,69,95,56,34,62,10,32,32,32,32,32,32,32,32, -32,32,60,108,97,98,101,108,62,56,60,47,108,97,98,101,108,62,10,32,32,32, +69,78,95,81,85,65,78,84,73,76,69,95,57,34,62,10,32,32,32,32,32,32,32,32, +32,32,60,108,97,98,101,108,62,57,60,47,108,97,98,101,108,62,10,32,32,32, 32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32, 60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, 117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,81, -85,65,78,84,73,76,69,95,57,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108, -97,98,101,108,62,57,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32, -32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98, -106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, -101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,81,85,65,78, -84,73,76,69,95,49,48,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98, -101,108,62,49,48,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32, -60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,47,111,98,106,101, -99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, -115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, -34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89,83,73,83,95,67,72,79, -82,79,80,76,69,84,72,95,80,69,82,67,69,78,84,73,76,69,34,62,10,32,32,32, -32,32,32,32,32,60,108,97,98,101,108,62,80,101,114,99,101,110,116,105,108, -101,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47, +85,65,78,84,73,76,69,95,49,48,34,62,10,32,32,32,32,32,32,32,32,32,32,60, +108,97,98,101,108,62,49,48,60,47,108,97,98,101,108,62,10,32,32,32,32,32, +32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,47,111, +98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, +108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97, +109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89,83,73,83, +95,67,72,79,82,79,80,76,69,84,72,95,80,69,82,67,69,78,84,73,76,69,34,62, +10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,80,101,114,99,101,110, +116,105,108,101,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32, +32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106, +101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101, +109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65, +76,89,83,73,83,95,72,73,78,71,69,95,49,53,34,62,10,32,32,32,32,32,32,32, +32,60,108,97,98,101,108,62,66,111,120,32,77,97,112,32,40,72,105,110,103, +101,61,49,46,53,41,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47, 111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116, 32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, 110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89,83, -73,83,95,72,73,78,71,69,95,49,53,34,62,10,32,32,32,32,32,32,32,32,60,108, -97,98,101,108,62,66,111,120,32,77,97,112,32,40,72,105,110,103,101,61,49, -46,53,41,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106, +73,83,95,72,73,78,71,69,95,51,48,34,62,10,32,32,32,32,32,32,32,32,60,108, +97,98,101,108,62,66,111,120,32,77,97,112,32,40,72,105,110,103,101,61,51, +46,48,41,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106, 101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, 115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101, -61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89,83,73,83,95,72,73, -78,71,69,95,51,48,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108, -62,66,111,120,32,77,97,112,32,40,72,105,110,103,101,61,51,46,48,41,60,47, -108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62, -10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, -119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68, -95,79,80,69,78,95,77,65,80,65,78,65,76,89,83,73,83,95,67,72,79,82,79,80, -76,69,84,72,95,83,84,68,68,69,86,34,62,10,32,32,32,32,32,32,32,32,60,108, -97,98,101,108,62,83,116,97,110,100,97,114,100,32,68,101,118,105,97,116, -105,111,110,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32, -60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99, -116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, -32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89, -83,73,83,95,85,78,73,81,85,69,95,86,65,76,85,69,83,34,62,10,32,32,32,32, -32,32,32,32,60,108,97,98,101,108,62,85,110,105,113,117,101,32,86,97,108, -117,101,115,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32, -60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99, +61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89,83,73,83,95,67,72, +79,82,79,80,76,69,84,72,95,83,84,68,68,69,86,34,62,10,32,32,32,32,32,32, +32,32,60,108,97,98,101,108,62,83,116,97,110,100,97,114,100,32,68,101,118, +105,97,116,105,111,110,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32, +32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111, +98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, +116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80, +65,78,65,76,89,83,73,83,95,85,78,73,81,85,69,95,86,65,76,85,69,83,34,62, +10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,85,110,105,113,117,101, +32,86,97,108,117,101,115,32,77,97,112,60,47,108,97,98,101,108,62,10,32, +32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111, +98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, +116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80, +65,78,65,76,89,83,73,83,95,67,79,76,79,67,65,84,73,79,78,34,62,10,32,32, +32,32,32,32,32,32,60,108,97,98,101,108,62,67,111,45,108,111,99,97,116,105, +111,110,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60, +47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116, +32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101, +61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83, +95,83,85,66,77,69,78,85,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, +108,62,78,97,116,117,114,97,108,32,66,114,101,97,107,115,32,77,97,112,60, +47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,111,98,106,101,99, 116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, -32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89, -83,73,83,95,67,79,76,79,67,65,84,73,79,78,34,62,10,32,32,32,32,32,32,32, -32,60,108,97,98,101,108,62,67,111,45,108,111,99,97,116,105,111,110,32,77, -97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106, -101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, -115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61,34,73,68,95, -79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,83,85,66,77, -69,78,85,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,78,97, -116,117,114,97,108,32,66,114,101,97,107,115,32,77,97,112,60,47,108,97,98, -101,108,62,10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, -101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75, -83,95,50,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62, -50,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,47,111,98,106, -101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, -108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97, -109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69, -65,75,83,95,51,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101, -108,62,51,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,47,111, -98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116, -32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66, -82,69,65,75,83,95,52,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98, -101,108,62,52,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60, -47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98,106,101, -99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109, -34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76, -95,66,82,69,65,75,83,95,53,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108, -97,98,101,108,62,53,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32, -32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98, -106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, -101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85, -82,65,76,95,66,82,69,65,75,83,95,54,34,62,10,32,32,32,32,32,32,32,32,32, -32,60,108,97,98,101,108,62,54,60,47,108,97,98,101,108,62,10,32,32,32,32, -32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60, -111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, -73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65, -84,85,82,65,76,95,66,82,69,65,75,83,95,55,34,62,10,32,32,32,32,32,32,32, -32,32,32,60,108,97,98,101,108,62,55,60,47,108,97,98,101,108,62,10,32,32, -32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32, -32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, +32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95, +66,82,69,65,75,83,95,50,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97, +98,101,108,62,50,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32, +60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98,106, +101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101, +109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65, +76,95,66,82,69,65,75,83,95,51,34,62,10,32,32,32,32,32,32,32,32,32,32,60, +108,97,98,101,108,62,51,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32, +32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111, +98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, +116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84, +85,82,65,76,95,66,82,69,65,75,83,95,52,34,62,10,32,32,32,32,32,32,32,32, +32,32,60,108,97,98,101,108,62,52,60,47,108,97,98,101,108,62,10,32,32,32, +32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32, +60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, 117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78, -65,84,85,82,65,76,95,66,82,69,65,75,83,95,56,34,62,10,32,32,32,32,32,32, -32,32,32,32,60,108,97,98,101,108,62,56,60,47,108,97,98,101,108,62,10,32, +65,84,85,82,65,76,95,66,82,69,65,75,83,95,53,34,62,10,32,32,32,32,32,32, +32,32,32,32,60,108,97,98,101,108,62,53,60,47,108,97,98,101,108,62,10,32, 32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32, 32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101, 110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78, -95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,57,34,62,10,32,32,32,32, -32,32,32,32,32,32,60,108,97,98,101,108,62,57,60,47,108,97,98,101,108,62, +95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,54,34,62,10,32,32,32,32, +32,32,32,32,32,32,60,108,97,98,101,108,62,54,60,47,108,97,98,101,108,62, 10,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32, 32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120, 77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80, -69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,49,48,34,62,10,32, -32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,49,48,60,47,108,97,98, -101,108,62,10,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10, -32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60, -111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, -34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,69,81,85,65,76,95,73, -78,84,69,82,86,65,76,83,95,83,85,66,77,69,78,85,34,62,10,32,32,32,32,32, -32,32,32,60,108,97,98,101,108,62,69,113,117,97,108,32,73,110,116,101,114, -118,97,108,115,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,32, -32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, -101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69, -78,95,69,81,85,65,76,95,73,78,84,69,82,86,65,76,83,95,50,34,62,10,32,32, -32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,50,60,47,108,97,98,101, +69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,55,34,62,10,32,32, +32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,55,60,47,108,97,98,101, 108,62,10,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32, 32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, 119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68, -95,79,80,69,78,95,69,81,85,65,76,95,73,78,84,69,82,86,65,76,83,95,51,34, -62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,51,60,47,108, -97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116, +95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,56,34,62, +10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,56,60,47,108,97, +98,101,108,62,10,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62, +10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, +61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34, +73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,57, +34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,57,60,47, +108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99, +116,62,10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, +115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101, +61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83, +95,49,48,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62, +49,48,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,47,111,98, +106,101,99,116,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10, +32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,77,101,110,117,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,69, +81,85,65,76,95,73,78,84,69,82,86,65,76,83,95,83,85,66,77,69,78,85,34,62, +10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,69,113,117,97,108,32, +73,110,116,101,114,118,97,108,115,32,77,97,112,60,47,108,97,98,101,108, 62,10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, 115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, 34,73,68,95,79,80,69,78,95,69,81,85,65,76,95,73,78,84,69,82,86,65,76,83, -95,52,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,52, +95,50,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,50, 60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,47,111,98,106, 101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, 108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97, 109,101,61,34,73,68,95,79,80,69,78,95,69,81,85,65,76,95,73,78,84,69,82, -86,65,76,83,95,53,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101, -108,62,53,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,47,111, +86,65,76,83,95,51,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101, +108,62,51,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,47,111, 98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116, 32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, 110,97,109,101,61,34,73,68,95,79,80,69,78,95,69,81,85,65,76,95,73,78,84, -69,82,86,65,76,83,95,54,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97, -98,101,108,62,54,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32, +69,82,86,65,76,83,95,52,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97, +98,101,108,62,52,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32, 60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98,106, 101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101, 109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,69,81,85,65,76,95, -73,78,84,69,82,86,65,76,83,95,55,34,62,10,32,32,32,32,32,32,32,32,32,32, -60,108,97,98,101,108,62,55,60,47,108,97,98,101,108,62,10,32,32,32,32,32, +73,78,84,69,82,86,65,76,83,95,53,34,62,10,32,32,32,32,32,32,32,32,32,32, +60,108,97,98,101,108,62,53,60,47,108,97,98,101,108,62,10,32,32,32,32,32, 32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111, 98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, 116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,69,81,85, -65,76,95,73,78,84,69,82,86,65,76,83,95,56,34,62,10,32,32,32,32,32,32,32, -32,32,32,60,108,97,98,101,108,62,56,60,47,108,97,98,101,108,62,10,32,32, +65,76,95,73,78,84,69,82,86,65,76,83,95,54,34,62,10,32,32,32,32,32,32,32, +32,32,32,60,108,97,98,101,108,62,54,60,47,108,97,98,101,108,62,10,32,32, 32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32, 32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, 117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,69, -81,85,65,76,95,73,78,84,69,82,86,65,76,83,95,57,34,62,10,32,32,32,32,32, -32,32,32,32,32,60,108,97,98,101,108,62,57,60,47,108,97,98,101,108,62,10, +81,85,65,76,95,73,78,84,69,82,86,65,76,83,95,55,34,62,10,32,32,32,32,32, +32,32,32,32,32,60,108,97,98,101,108,62,55,60,47,108,97,98,101,108,62,10, 32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32, 32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, 101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69, -78,95,69,81,85,65,76,95,73,78,84,69,82,86,65,76,83,95,49,48,34,62,10,32, -32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,49,48,60,47,108,97,98, -101,108,62,10,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10, -32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60, -111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, -34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,67,85,83,84,79,77,95, -66,82,69,65,75,83,95,83,85,66,77,69,78,85,34,62,10,32,32,32,32,32,32,32, -32,60,108,97,98,101,108,62,67,117,115,116,111,109,32,66,114,101,97,107, -115,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,111,98,106, -101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101, -109,34,32,110,97,109,101,61,34,73,68,95,78,69,87,95,67,85,83,84,79,77,95, -67,65,84,95,67,76,65,83,83,73,70,95,65,34,62,10,32,32,32,32,32,32,32,32, -32,32,60,108,97,98,101,108,62,67,114,101,97,116,101,32,78,101,119,32,67, -117,115,116,111,109,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32, -32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98, -106,101,99,116,32,99,108,97,115,115,61,34,115,101,112,97,114,97,116,111, -114,34,47,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32, -32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115, -101,112,97,114,97,116,111,114,34,47,62,10,32,32,32,32,32,32,60,111,98,106, -101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110, -97,109,101,61,34,73,68,95,77,69,78,85,34,62,10,32,32,32,32,32,32,32,32, -60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,82, -65,84,69,83,95,83,77,79,79,84,72,95,82,65,87,82,65,84,69,34,62,10,32,32, -32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,82,97,119,32,82,97,116, -101,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,60,99,104, -101,99,107,97,98,108,101,62,49,60,47,99,104,101,99,107,97,98,108,101,62, -10,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32, -32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120, -77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80, -69,78,95,82,65,84,69,83,95,83,77,79,79,84,72,95,69,88,67,69,83,83,82,73, -83,75,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,69, -120,99,101,115,115,32,82,105,115,107,60,47,108,97,98,101,108,62,10,32,32, -32,32,32,32,32,32,32,32,60,99,104,101,99,107,97,98,108,101,62,49,60,47, -99,104,101,99,107,97,98,108,101,62,10,32,32,32,32,32,32,32,32,60,47,111, -98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116, -32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,95,79,80,69,78,95,82,65,84,69,83,95,69,77,80, -73,82,73,67,65,76,95,66,65,89,69,83,95,83,77,79,79,84,72,69,82,34,62,10, -32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,69,109,112,105,114, -105,99,97,108,32,66,97,121,101,115,60,47,108,97,98,101,108,62,10,32,32, -32,32,32,32,32,32,32,32,60,99,104,101,99,107,97,98,108,101,62,49,60,47, -99,104,101,99,107,97,98,108,101,62,10,32,32,32,32,32,32,32,32,60,47,111, -98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116, -32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,95,79,80,69,78,95,82,65,84,69,83,95,83,80,65, -84,73,65,76,95,82,65,84,69,95,83,77,79,79,84,72,69,82,34,62,10,32,32,32, -32,32,32,32,32,32,32,60,108,97,98,101,108,62,83,112,97,116,105,97,108,32, -82,97,116,101,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32, -32,60,99,104,101,99,107,97,98,108,101,62,49,60,47,99,104,101,99,107,97, -98,108,101,62,10,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62, -10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, -61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34, -73,68,95,79,80,69,78,95,82,65,84,69,83,95,83,80,65,84,73,65,76,95,69,77, -80,73,82,73,67,65,76,95,66,65,89,69,83,34,62,10,32,32,32,32,32,32,32,32, -32,32,60,108,97,98,101,108,62,83,112,97,116,105,97,108,32,69,109,112,105, -114,105,99,97,108,32,66,97,121,101,115,60,47,108,97,98,101,108,62,10,32, -32,32,32,32,32,32,32,32,32,60,99,104,101,99,107,97,98,108,101,62,49,60, -47,99,104,101,99,107,97,98,108,101,62,10,32,32,32,32,32,32,32,32,60,47, -111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108, -62,82,97,116,101,115,45,67,97,108,99,117,108,97,116,101,100,32,77,97,112, -60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99, -116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, -61,34,115,101,112,97,114,97,116,111,114,34,47,62,10,32,32,32,32,32,32,60, -111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, -73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,72,79,87,95,67,79, -78,68,73,84,73,79,78,65,76,95,77,65,80,95,86,73,69,87,95,77,65,80,95,77, -69,78,85,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,67,111, -110,100,105,116,105,111,110,97,108,32,77,97,112,60,47,108,97,98,101,108, -62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32, +78,95,69,81,85,65,76,95,73,78,84,69,82,86,65,76,83,95,56,34,62,10,32,32, +32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,56,60,47,108,97,98,101, +108,62,10,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32, +32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, +119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68, +95,79,80,69,78,95,69,81,85,65,76,95,73,78,84,69,82,86,65,76,83,95,57,34, +62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,57,60,47,108, +97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, +34,73,68,95,79,80,69,78,95,69,81,85,65,76,95,73,78,84,69,82,86,65,76,83, +95,49,48,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62, +49,48,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,47,111,98, +106,101,99,116,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10, +32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,77,101,110,117,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,67, +85,83,84,79,77,95,66,82,69,65,75,83,95,83,85,66,77,69,78,85,34,62,10,32, +32,32,32,32,32,32,32,60,108,97,98,101,108,62,67,117,115,116,111,109,32, +66,114,101,97,107,115,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32, 32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,72,79,87,95,67, -65,82,84,79,71,82,65,77,95,78,69,87,95,86,73,69,87,34,62,10,32,32,32,32, -32,32,32,32,60,108,97,98,101,108,62,67,97,114,116,111,103,114,97,109,60, -47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116, +117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,78,69,87,95,67,85, +83,84,79,77,95,67,65,84,95,67,76,65,83,83,73,70,95,65,34,62,10,32,32,32, +32,32,32,32,32,32,32,60,108,97,98,101,108,62,67,114,101,97,116,101,32,78, +101,119,32,67,117,115,116,111,109,60,47,108,97,98,101,108,62,10,32,32,32, +32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32, +60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,101,112,97,114, +97,116,111,114,34,47,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116, 62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, 34,115,101,112,97,114,97,116,111,114,34,47,62,10,32,32,32,32,32,32,60,111, -98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, -116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,72,79,87,95,68,65,84, -65,95,77,79,86,73,69,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, -108,62,77,97,112,32,77,111,118,105,101,60,47,108,97,98,101,108,62,10,32, -32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,47,111, -98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61,34,73,68, -95,77,69,78,85,34,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, -108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97, -109,101,61,34,73,68,77,95,72,73,83,84,34,62,10,32,32,32,32,32,32,32,32, -60,108,97,98,101,108,62,72,105,115,116,111,103,114,97,109,60,47,108,97, -98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32, -32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95, -66,79,88,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,66,111, -120,32,80,108,111,116,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60, -47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116, -32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,77,95,83,67,65,84,84,69,82,80,76,79,84,34,62, -10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,83,99,97,116,116,101, -114,32,80,108,111,116,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60, -47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116, -32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,77,95,83,67,65,84,84,69,82,80,76,79,84,95,77, -65,84,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,83,99,97, -116,116,101,114,32,80,108,111,116,32,77,97,116,114,105,120,60,47,108,97, -98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32, -32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95, -66,85,66,66,76,69,67,72,65,82,84,34,62,10,32,32,32,32,32,32,32,32,60,108, -97,98,101,108,62,66,117,98,98,108,101,32,67,104,97,114,116,60,47,108,97, -98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32, -32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95, -51,68,80,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,51,68, -32,83,99,97,116,116,101,114,32,80,108,111,116,60,47,108,97,98,101,108,62, -10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32, -60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95,80,67,80,34,62, -10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,80,97,114,97,108,108, -101,108,32,67,111,111,114,100,105,110,97,116,101,32,80,108,111,116,60,47, -108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62, -10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, +98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,34, +32,110,97,109,101,61,34,73,68,95,77,69,78,85,34,62,10,32,32,32,32,32,32, +32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101, +110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78, +95,82,65,84,69,83,95,83,77,79,79,84,72,95,82,65,87,82,65,84,69,34,62,10, +32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,82,97,119,32,82,97, +116,101,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,60, +99,104,101,99,107,97,98,108,101,62,49,60,47,99,104,101,99,107,97,98,108, +101,62,10,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32, +32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, 119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68, -77,95,76,73,78,69,95,67,72,65,82,84,34,62,10,32,32,32,32,32,32,32,32,60, -108,97,98,101,108,62,65,118,101,114,97,103,101,115,32,67,104,97,114,116, -60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99, -116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, -61,34,119,120,77,101,110,117,34,32,110,97,109,101,61,34,73,68,95,67,79, -78,68,95,77,69,78,85,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, -108,62,67,111,110,100,105,116,105,111,110,97,108,32,80,108,111,116,60,47, -108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116, -32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,95,83,72,79,87,95,67,79,78,68,73,84,73,79,78, -65,76,95,77,65,80,95,86,73,69,87,34,62,10,32,32,32,32,32,32,32,32,32,32, -60,108,97,98,101,108,62,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32, -32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32, -60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,72,79,87,95,67, -79,78,68,73,84,73,79,78,65,76,95,72,73,83,84,95,86,73,69,87,34,62,10,32, -32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,72,105,115,116,111,103, -114,97,109,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,47, -111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98,106,101,99, -116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, -32,110,97,109,101,61,34,73,68,95,83,72,79,87,95,67,79,78,68,73,84,73,79, -78,65,76,95,83,67,65,84,84,69,82,95,86,73,69,87,34,62,10,32,32,32,32,32, -32,32,32,32,32,60,108,97,98,101,108,62,83,99,97,116,116,101,114,32,80,108, -111,116,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,47,111, -98,106,101,99,116,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62, -10,32,32,32,32,32,32,60,108,97,98,101,108,62,69,38,97,109,112,59,120,112, -108,111,114,101,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98, -106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, -115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61,34,73,68,95, -67,76,85,83,84,69,82,73,78,71,95,77,69,78,85,34,62,10,32,32,32,32,32,32, -60,108,97,98,101,108,62,67,108,117,115,116,101,114,115,60,47,108,97,98, -101,108,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, -115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, -34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,80,67,65,34,62,10,32,32,32, -32,32,32,32,32,60,108,97,98,101,108,62,80,67,65,60,47,108,97,98,101,108, -62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32, -32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,84,79,79,76,83,95, -68,65,84,65,95,77,68,83,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, -108,62,77,68,83,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111, +95,79,80,69,78,95,82,65,84,69,83,95,83,77,79,79,84,72,95,69,88,67,69,83, +83,82,73,83,75,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101, +108,62,69,120,99,101,115,115,32,82,105,115,107,60,47,108,97,98,101,108, +62,10,32,32,32,32,32,32,32,32,32,32,60,99,104,101,99,107,97,98,108,101, +62,49,60,47,99,104,101,99,107,97,98,108,101,62,10,32,32,32,32,32,32,32, +32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98, +106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, +101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,82,65,84,69, +83,95,69,77,80,73,82,73,67,65,76,95,66,65,89,69,83,95,83,77,79,79,84,72, +69,82,34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,69, +109,112,105,114,105,99,97,108,32,66,97,121,101,115,60,47,108,97,98,101, +108,62,10,32,32,32,32,32,32,32,32,32,32,60,99,104,101,99,107,97,98,108, +101,62,49,60,47,99,104,101,99,107,97,98,108,101,62,10,32,32,32,32,32,32, +32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111, +98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, +116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,82,65,84, +69,83,95,83,80,65,84,73,65,76,95,82,65,84,69,95,83,77,79,79,84,72,69,82, +34,62,10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,83,112,97, +116,105,97,108,32,82,97,116,101,60,47,108,97,98,101,108,62,10,32,32,32, +32,32,32,32,32,32,32,60,99,104,101,99,107,97,98,108,101,62,49,60,47,99, +104,101,99,107,97,98,108,101,62,10,32,32,32,32,32,32,32,32,60,47,111,98, +106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32, +99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110, +97,109,101,61,34,73,68,95,79,80,69,78,95,82,65,84,69,83,95,83,80,65,84, +73,65,76,95,69,77,80,73,82,73,67,65,76,95,66,65,89,69,83,34,62,10,32,32, +32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,83,112,97,116,105,97,108, +32,69,109,112,105,114,105,99,97,108,32,66,97,121,101,115,60,47,108,97,98, +101,108,62,10,32,32,32,32,32,32,32,32,32,32,60,99,104,101,99,107,97,98, +108,101,62,49,60,47,99,104,101,99,107,97,98,108,101,62,10,32,32,32,32,32, +32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,108, +97,98,101,108,62,82,97,116,101,115,45,67,97,108,99,117,108,97,116,101,100, +32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111, 98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, 108,97,115,115,61,34,115,101,112,97,114,97,116,111,114,34,47,62,10,32,32, 32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120, -77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,84,79, -79,76,83,95,68,65,84,65,95,75,77,69,65,78,83,34,62,10,32,32,32,32,32,32, -32,32,60,108,97,98,101,108,62,75,32,77,101,97,110,115,60,47,108,97,98,101, -108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, +77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,72, +79,87,95,67,79,78,68,73,84,73,79,78,65,76,95,77,65,80,95,86,73,69,87,95, +77,65,80,95,77,69,78,85,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, +108,62,67,111,110,100,105,116,105,111,110,97,108,32,77,97,112,60,47,108, +97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10, +32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,83, +72,79,87,95,67,65,82,84,79,71,82,65,77,95,78,69,87,95,86,73,69,87,34,62, +10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,67,97,114,116,111,103, +114,97,109,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98, +106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, +97,115,115,61,34,115,101,112,97,114,97,116,111,114,34,47,62,10,32,32,32, 32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, -101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,84,79,79, -76,83,95,68,65,84,65,95,75,77,69,68,73,65,78,83,34,62,10,32,32,32,32,32, -32,32,32,60,108,97,98,101,108,62,75,32,77,101,100,105,97,110,115,60,47, -108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62, -10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, -119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68, -95,84,79,79,76,83,95,68,65,84,65,95,75,77,69,68,79,73,68,83,34,62,10,32, -32,32,32,32,32,32,32,60,108,97,98,101,108,62,75,32,77,101,100,111,105,100, -115,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101, +101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,72,79, +87,95,68,65,84,65,95,77,79,86,73,69,34,62,10,32,32,32,32,32,32,32,32,60, +108,97,98,101,108,62,77,97,112,32,77,111,118,105,101,60,47,108,97,98,101, +108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, +32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116, +32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101, +61,34,73,68,95,77,69,78,85,34,62,10,32,32,32,32,32,32,60,111,98,106,101, +99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109, +34,32,110,97,109,101,61,34,73,68,77,95,72,73,83,84,34,62,10,32,32,32,32, +32,32,32,32,60,108,97,98,101,108,62,72,105,115,116,111,103,114,97,109,60, +47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, +34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73, +68,77,95,66,79,88,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108, +62,66,111,120,32,80,108,111,116,60,47,108,97,98,101,108,62,10,32,32,32, +32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98, +106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, +101,109,34,32,110,97,109,101,61,34,73,68,77,95,83,67,65,84,84,69,82,80, +76,79,84,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,83,99, +97,116,116,101,114,32,80,108,111,116,60,47,108,97,98,101,108,62,10,32,32, +32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111, +98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, +116,101,109,34,32,110,97,109,101,61,34,73,68,77,95,83,67,65,84,84,69,82, +80,76,79,84,95,77,65,84,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, +108,62,83,99,97,116,116,101,114,32,80,108,111,116,32,77,97,116,114,105, +120,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101, 99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, 115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, -34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,83,80,69,67,84,82,65,76,34, -62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,83,112,101,99,116, -114,97,108,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98, +34,73,68,77,95,66,85,66,66,76,69,67,72,65,82,84,34,62,10,32,32,32,32,32, +32,32,32,60,108,97,98,101,108,62,66,117,98,98,108,101,32,67,104,97,114, +116,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101, +99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, +34,73,68,77,95,51,68,80,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, +108,62,51,68,32,83,99,97,116,116,101,114,32,80,108,111,116,60,47,108,97, +98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32, +32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95, +80,67,80,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,80,97, +114,97,108,108,101,108,32,67,111,111,114,100,105,110,97,116,101,32,80,108, +111,116,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106, +101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, +115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101, +61,34,73,68,77,95,76,73,78,69,95,67,72,65,82,84,34,62,10,32,32,32,32,32, +32,32,32,60,108,97,98,101,108,62,65,118,101,114,97,103,101,115,32,67,104, +97,114,116,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98, 106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, +97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61,34,73,68, +95,67,79,78,68,95,77,69,78,85,34,62,10,32,32,32,32,32,32,32,32,60,108,97, +98,101,108,62,67,111,110,100,105,116,105,111,110,97,108,32,80,108,111,116, +60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,111,98,106,101, +99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109, +34,32,110,97,109,101,61,34,73,68,95,83,72,79,87,95,67,79,78,68,73,84,73, +79,78,65,76,95,77,65,80,95,86,73,69,87,34,62,10,32,32,32,32,32,32,32,32, +32,32,60,108,97,98,101,108,62,77,97,112,60,47,108,97,98,101,108,62,10,32, +32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32, +32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101, +110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,72,79,87, +95,67,79,78,68,73,84,73,79,78,65,76,95,72,73,83,84,95,86,73,69,87,34,62, +10,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,72,105,115,116, +111,103,114,97,109,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32, +60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,111,98,106, +101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101, +109,34,32,110,97,109,101,61,34,73,68,95,83,72,79,87,95,67,79,78,68,73,84, +73,79,78,65,76,95,83,67,65,84,84,69,82,95,86,73,69,87,34,62,10,32,32,32, +32,32,32,32,32,32,32,60,108,97,98,101,108,62,83,99,97,116,116,101,114,32, +80,108,111,116,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60, +47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99, +116,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,69,38,97,109,112,59, +120,112,108,111,114,101,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47, +111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99, +108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61,34, +73,68,95,67,76,85,83,84,69,82,73,78,71,95,77,69,78,85,34,62,10,32,32,32, +32,32,32,60,108,97,98,101,108,62,67,108,117,115,116,101,114,115,60,47,108, +97,98,101,108,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, 97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, -101,61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,72,67,76,85,83,84,69, -82,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,72,105,101, -114,97,114,99,104,105,99,97,108,60,47,108,97,98,101,108,62,10,32,32,32, -32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98, -106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, -101,109,34,32,110,97,109,101,61,34,73,68,95,84,79,79,76,83,95,68,65,84, -65,95,72,68,66,83,67,65,78,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98, -101,108,62,72,68,66,83,99,97,110,60,47,108,97,98,101,108,62,10,32,32,32, -32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98, -106,101,99,116,32,99,108,97,115,115,61,34,115,101,112,97,114,97,116,111, -114,34,47,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, -115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101, -61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,83,75,65,84,69,82,34,62, -10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,115,107,97,116,101,114, -60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99, -116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, +101,61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,80,67,65,34,62,10,32, +32,32,32,32,32,32,32,60,108,97,98,101,108,62,80,67,65,60,47,108,97,98,101, +108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, +32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, +101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,84,79,79, +76,83,95,68,65,84,65,95,77,68,83,34,62,10,32,32,32,32,32,32,32,32,60,108, +97,98,101,108,62,77,68,83,60,47,108,97,98,101,108,62,10,32,32,32,32,32, +32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101, +99,116,32,99,108,97,115,115,61,34,115,101,112,97,114,97,116,111,114,34, +47,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, 61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34, -73,68,95,84,79,79,76,83,95,68,65,84,65,95,82,69,68,67,65,80,34,62,10,32, -32,32,32,32,32,32,32,60,108,97,98,101,108,62,114,101,100,99,97,112,60,47, -108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62, -10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, -119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68, -95,84,79,79,76,83,95,68,65,84,65,95,77,65,88,80,34,62,10,32,32,32,32,32, -32,32,32,60,108,97,98,101,108,62,109,97,120,45,112,60,47,108,97,98,101, +73,68,95,84,79,79,76,83,95,68,65,84,65,95,75,77,69,65,78,83,34,62,10,32, +32,32,32,32,32,32,32,60,108,97,98,101,108,62,75,32,77,101,97,110,115,60, +47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, +34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73, +68,95,84,79,79,76,83,95,68,65,84,65,95,75,77,69,68,73,65,78,83,34,62,10, +32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,75,32,77,101,100,105,97, +110,115,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106, +101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, +115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101, +61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,75,77,69,68,79,73,68,83, +34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,75,32,77,101,100, +111,105,100,115,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111, +98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, +108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97, +109,101,61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,83,80,69,67,84, +82,65,76,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,83,112, +101,99,116,114,97,108,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60, +47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116, +32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, +110,97,109,101,61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,72,67,76, +85,83,84,69,82,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62, +72,105,101,114,97,114,99,104,105,99,97,108,60,47,108,97,98,101,108,62,10, +32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60, +111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, +73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,84,79,79,76,83,95,68, +65,84,65,95,72,68,66,83,67,65,78,34,62,10,32,32,32,32,32,32,32,32,60,108, +97,98,101,108,62,72,68,66,83,99,97,110,60,47,108,97,98,101,108,62,10,32, +32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111, +98,106,101,99,116,32,99,108,97,115,115,61,34,115,101,112,97,114,97,116, +111,114,34,47,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, +97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, +101,61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,83,75,65,84,69,82,34, +62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,115,107,97,116,101, +114,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101, +99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, +34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,82,69,68,67,65,80,34,62,10, +32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,114,101,100,99,97,112,60, +47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, +34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73, +68,95,84,79,79,76,83,95,68,65,84,65,95,77,65,88,80,34,62,10,32,32,32,32, +32,32,32,32,60,108,97,98,101,108,62,109,97,120,45,112,60,47,108,97,98,101, 108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, 32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116, 32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101, @@ -44844,765 +44841,521 @@ static unsigned char xml_res_file_11[] = { 62,10,32,32,32,32,32,32,32,32,60,99,104,101,99,107,97,98,108,101,62,49, 60,47,99,104,101,99,107,97,98,108,101,62,10,32,32,32,32,32,32,60,47,111, 98,106,101,99,116,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32, -32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, -101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,84,65,66, -76,69,95,83,69,84,95,76,79,67,65,76,69,34,62,10,32,32,32,32,32,32,60,108, -97,98,101,108,62,83,101,116,32,78,117,109,98,101,114,32,83,101,112,97,114, -97,116,111,114,115,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111, -98,106,101,99,116,62,10,32,32,32,32,60,108,97,98,101,108,62,84,97,98,108, -101,60,47,108,97,98,101,108,62,10,32,32,60,47,111,98,106,101,99,116,62, -10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, -101,110,117,34,32,110,97,109,101,61,34,73,68,95,82,69,80,79,82,84,95,86, -73,69,87,95,77,69,78,85,95,67,79,78,84,69,88,84,34,62,10,32,32,32,32,60, +32,32,32,60,108,97,98,101,108,62,84,97,98,108,101,60,47,108,97,98,101,108, +62,10,32,32,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99, +116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109, +101,61,34,73,68,95,82,69,80,79,82,84,95,86,73,69,87,95,77,69,78,85,95,67, +79,78,84,69,88,84,34,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108, +97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, +101,61,34,73,68,95,70,79,78,84,34,62,10,32,32,32,32,32,32,60,108,97,98, +101,108,62,67,104,97,110,103,101,32,70,111,110,116,60,47,108,97,98,101, +108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60, +108,97,98,101,108,62,79,112,116,105,111,110,115,60,47,108,97,98,101,108, +62,10,32,32,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99, +116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109, +101,61,34,73,68,95,84,69,83,84,77,65,80,95,86,73,69,87,95,77,69,78,85,95, +67,79,78,84,69,88,84,34,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99, +108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61,34, +73,68,95,77,69,78,85,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62, +83,101,108,101,99,116,105,111,110,32,83,104,97,112,101,60,47,108,97,98, +101,108,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, +34,73,68,95,83,69,76,69,67,84,95,87,73,84,72,95,82,69,67,84,34,62,10,32, +32,32,32,32,32,32,32,60,108,97,98,101,108,62,82,101,99,116,97,110,103,108, +101,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,99,104,101, +99,107,97,98,108,101,62,49,60,47,99,104,101,99,107,97,98,108,101,62,10, +32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60, 111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, -73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,70,79,78,84,34,62,10, -32,32,32,32,32,32,60,108,97,98,101,108,62,67,104,97,110,103,101,32,70,111, -110,116,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101, -99,116,62,10,32,32,32,32,60,108,97,98,101,108,62,79,112,116,105,111,110, -115,60,47,108,97,98,101,108,62,10,32,32,60,47,111,98,106,101,99,116,62, -10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, -101,110,117,34,32,110,97,109,101,61,34,73,68,95,84,69,83,84,77,65,80,95, -86,73,69,87,95,77,69,78,85,95,67,79,78,84,69,88,84,34,62,10,32,32,32,32, -60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,34,32,110,97,109,101,61,34,73,68,95,77,69,78,85,34,62,10,32,32,32,32, -32,32,60,108,97,98,101,108,62,83,101,108,101,99,116,105,111,110,32,83,104, -97,112,101,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,111,98,106, -101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101, -109,34,32,110,97,109,101,61,34,73,68,95,83,69,76,69,67,84,95,87,73,84,72, -95,82,69,67,84,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62, -82,101,99,116,97,110,103,108,101,60,47,108,97,98,101,108,62,10,32,32,32, -32,32,32,32,32,60,99,104,101,99,107,97,98,108,101,62,49,60,47,99,104,101, -99,107,97,98,108,101,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116, -62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, -34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73, -68,95,83,69,76,69,67,84,95,87,73,84,72,95,67,73,82,67,76,69,34,62,10,32, -32,32,32,32,32,32,32,60,108,97,98,101,108,62,67,105,114,99,108,101,60,47, -108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,99,104,101,99,107,97, -98,108,101,62,49,60,47,99,104,101,99,107,97,98,108,101,62,10,32,32,32,32, -32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106, -101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101, -109,34,32,110,97,109,101,61,34,73,68,95,83,69,76,69,67,84,95,87,73,84,72, -95,76,73,78,69,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62, -76,105,110,101,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60, -99,104,101,99,107,97,98,108,101,62,49,60,47,99,104,101,99,107,97,98,108, -101,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, -32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116, -32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101, -61,34,73,68,95,77,69,78,85,34,62,10,32,32,32,32,32,32,60,108,97,98,101, -108,62,67,111,108,111,114,60,47,108,97,98,101,108,62,10,32,32,32,32,32, -32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,69,76,69,67,84, -65,66,76,69,95,79,85,84,76,73,78,69,95,86,73,83,73,66,76,69,34,62,10,32, -32,32,32,32,32,32,32,60,108,97,98,101,108,62,79,117,116,108,105,110,101, -115,32,86,105,115,105,98,108,101,60,47,108,97,98,101,108,62,10,32,32,32, -32,32,32,32,32,60,99,104,101,99,107,97,98,108,101,62,49,60,47,99,104,101, -99,107,97,98,108,101,62,10,32,32,32,32,32,32,32,32,60,99,104,101,99,107, -101,100,62,49,60,47,99,104,101,99,107,101,100,62,10,32,32,32,32,32,32,60, -47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116, -32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,95,77,65,80,95,83,72,79,87,95,77,65,80,95,67, -79,78,84,79,85,82,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108, -62,83,104,111,119,32,77,97,112,32,66,111,117,110,100,97,114,121,60,47,108, -97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,99,104,101,99,107,97,98, -108,101,62,49,60,47,99,104,101,99,107,97,98,108,101,62,10,32,32,32,32,32, -32,32,32,60,99,104,101,99,107,101,100,62,48,60,47,99,104,101,99,107,101, -100,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, -32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, -101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,69,76, -69,67,84,65,66,76,69,95,70,73,76,76,95,67,79,76,79,82,34,62,10,32,32,32, -32,32,32,32,32,60,108,97,98,101,108,62,83,101,108,101,99,116,97,98,108, -101,32,70,105,108,108,32,67,111,108,111,114,60,47,108,97,98,101,108,62, -10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32, -60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,67,65,78,86,65,83, -95,66,65,67,75,71,82,79,85,78,68,95,67,79,76,79,82,34,62,10,32,32,32,32, -32,32,32,32,60,108,97,98,101,108,62,66,97,99,107,103,114,111,117,110,100, -32,67,111,108,111,114,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60, -47,111,98,106,101,99,116,62,10,32,32,32,32,60,47,111,98,106,101,99,116, -62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,68, -73,83,80,76,65,89,95,83,84,65,84,85,83,95,66,65,82,34,62,10,32,32,32,32, -32,32,60,108,97,98,101,108,62,83,104,111,119,32,83,116,97,116,117,115,32, -66,97,114,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,99,104,101, -99,107,97,98,108,101,62,49,60,47,99,104,101,99,107,97,98,108,101,62,10, -32,32,32,32,32,32,60,99,104,101,99,107,101,100,62,49,60,47,99,104,101,99, -107,101,100,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, -32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,101,112,97,114, -97,116,111,114,34,47,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, -101,61,34,73,68,95,83,65,86,69,95,83,69,76,69,67,84,69,68,95,84,79,95,67, -79,76,85,77,78,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,83,97, -118,101,32,83,101,108,101,99,116,105,111,110,60,47,108,97,98,101,108,62, -10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98, -106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, -101,109,34,32,110,97,109,101,61,34,73,68,95,67,79,80,89,95,73,77,65,71, -69,95,84,79,95,67,76,73,80,66,79,65,82,68,34,62,10,32,32,32,32,32,32,60, -108,97,98,101,108,62,67,111,112,121,32,73,109,97,103,101,32,84,111,32,67, -108,105,112,98,111,97,114,100,60,47,108,97,98,101,108,62,10,32,32,32,32, -60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116, -32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,95,83,65,86,69,95,67,65,78,86,65,83,95,73,77, -65,71,69,95,65,83,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,83, -97,118,101,32,73,109,97,103,101,32,65,115,60,47,108,97,98,101,108,62,10, -32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,108,97,98, -101,108,62,79,112,116,105,111,110,115,60,47,108,97,98,101,108,62,10,32, -32,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32, -99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61, -34,73,68,95,84,69,83,84,95,84,65,66,76,69,95,86,73,69,87,95,77,69,78,85, -95,67,79,78,84,69,88,84,34,62,10,32,32,32,32,60,111,98,106,101,99,116,32, -99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61, -34,73,68,95,77,69,78,85,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108, -62,67,111,108,111,114,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60, -111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, -73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,69,76,69,67,84,65, -66,76,69,95,79,85,84,76,73,78,69,95,86,73,83,73,66,76,69,34,62,10,32,32, -32,32,32,32,32,32,60,108,97,98,101,108,62,79,117,116,108,105,110,101,115, -32,86,105,115,105,98,108,101,60,47,108,97,98,101,108,62,10,32,32,32,32, -32,32,32,32,60,99,104,101,99,107,97,98,108,101,62,49,60,47,99,104,101,99, -107,97,98,108,101,62,10,32,32,32,32,32,32,32,32,60,99,104,101,99,107,101, -100,62,49,60,47,99,104,101,99,107,101,100,62,10,32,32,32,32,32,32,60,47, -111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116, -32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,95,77,65,80,95,83,72,79,87,95,77,65,80,95,67, -79,78,84,79,85,82,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108, -62,83,104,111,119,32,77,97,112,32,66,111,117,110,100,97,114,121,60,47,108, -97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,99,104,101,99,107,97,98, -108,101,62,49,60,47,99,104,101,99,107,97,98,108,101,62,10,32,32,32,32,32, -32,32,32,60,99,104,101,99,107,101,100,62,48,60,47,99,104,101,99,107,101, -100,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, -32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, -101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,69,76, -69,67,84,65,66,76,69,95,70,73,76,76,95,67,79,76,79,82,34,62,10,32,32,32, -32,32,32,32,32,60,108,97,98,101,108,62,83,101,108,101,99,116,97,98,108, -101,32,70,105,108,108,32,67,111,108,111,114,60,47,108,97,98,101,108,62, -10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32, -60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,67,65,78,86,65,83, -95,66,65,67,75,71,82,79,85,78,68,95,67,79,76,79,82,34,62,10,32,32,32,32, -32,32,32,32,60,108,97,98,101,108,62,66,97,99,107,103,114,111,117,110,100, -32,67,111,108,111,114,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60, -47,111,98,106,101,99,116,62,10,32,32,32,32,60,47,111,98,106,101,99,116, -62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,68, -73,83,80,76,65,89,95,83,84,65,84,85,83,95,66,65,82,34,62,10,32,32,32,32, -32,32,60,108,97,98,101,108,62,83,104,111,119,32,83,116,97,116,117,115,32, -66,97,114,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,99,104,101, -99,107,97,98,108,101,62,49,60,47,99,104,101,99,107,97,98,108,101,62,10, -32,32,32,32,32,32,60,99,104,101,99,107,101,100,62,49,60,47,99,104,101,99, -107,101,100,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, -32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,101,112,97,114, -97,116,111,114,34,47,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, -101,61,34,73,68,95,83,65,86,69,95,83,69,76,69,67,84,69,68,95,84,79,95,67, -79,76,85,77,78,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,83,97, -118,101,32,83,101,108,101,99,116,105,111,110,60,47,108,97,98,101,108,62, -10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98, -106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, -101,109,34,32,110,97,109,101,61,34,73,68,95,67,79,80,89,95,73,77,65,71, -69,95,84,79,95,67,76,73,80,66,79,65,82,68,34,62,10,32,32,32,32,32,32,60, -108,97,98,101,108,62,67,111,112,121,32,73,109,97,103,101,32,84,111,32,67, -108,105,112,98,111,97,114,100,60,47,108,97,98,101,108,62,10,32,32,32,32, -60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116, -32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,95,83,65,86,69,95,67,65,78,86,65,83,95,73,77, -65,71,69,95,65,83,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,83, -97,118,101,32,73,109,97,103,101,32,65,115,60,47,108,97,98,101,108,62,10, -32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,108,97,98, -101,108,62,79,112,116,105,111,110,115,60,47,108,97,98,101,108,62,10,32, -32,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32, -99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61, -34,73,68,95,67,79,78,68,95,77,69,78,85,34,62,10,32,32,32,32,60,108,97,98, -101,108,62,67,111,110,100,105,116,105,111,110,97,108,32,80,108,111,116, -60,47,108,97,98,101,108,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99, -108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97, -109,101,61,34,73,68,95,83,72,79,87,95,67,79,78,68,73,84,73,79,78,65,76, -95,77,65,80,95,86,73,69,87,34,62,10,32,32,32,32,32,32,60,108,97,98,101, -108,62,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98, -106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, -115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101, -61,34,73,68,95,83,72,79,87,95,67,79,78,68,73,84,73,79,78,65,76,95,72,73, -83,84,95,86,73,69,87,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62, -72,105,115,116,111,103,114,97,109,60,47,108,97,98,101,108,62,10,32,32,32, -32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116, -32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,95,83,72,79,87,95,67,79,78,68,73,84,73,79,78, -65,76,95,83,67,65,84,84,69,82,95,86,73,69,87,34,62,10,32,32,32,32,32,32, -60,108,97,98,101,108,62,83,99,97,116,116,101,114,32,80,108,111,116,60,47, -108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32, -32,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32, -99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61, -34,73,68,95,67,76,85,83,84,69,82,73,78,71,95,77,69,78,85,34,62,10,32,32, -32,32,60,108,97,98,101,108,62,67,108,117,115,116,101,114,115,60,47,108, -97,98,101,108,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, -115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, -34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,80,67,65,34,62,10,32,32,32, -32,32,32,60,108,97,98,101,108,62,80,67,65,60,47,108,97,98,101,108,62,10, -32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106, -101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101, -109,34,32,110,97,109,101,61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95, -77,68,83,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,77,68,83,60, -47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10, -32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,101, -112,97,114,97,116,111,114,34,47,62,10,32,32,32,32,60,111,98,106,101,99, -116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, -32,110,97,109,101,61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,75,77, -69,65,78,83,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,75,32,77, -101,97,110,115,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106, -101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,69,76,69,67,84,95, +87,73,84,72,95,67,73,82,67,76,69,34,62,10,32,32,32,32,32,32,32,32,60,108, +97,98,101,108,62,67,105,114,99,108,101,60,47,108,97,98,101,108,62,10,32, +32,32,32,32,32,32,32,60,99,104,101,99,107,97,98,108,101,62,49,60,47,99, +104,101,99,107,97,98,108,101,62,10,32,32,32,32,32,32,60,47,111,98,106,101, +99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, 115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, -34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,75,77,69,68,73,65,78,83,34, -62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,75,32,77,101,100,105,97, -110,115,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101, -99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, -61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34, -73,68,95,84,79,79,76,83,95,68,65,84,65,95,75,77,69,68,79,73,68,83,34,62, -10,32,32,32,32,32,32,60,108,97,98,101,108,62,75,32,77,101,100,111,105,100, -115,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116, +34,73,68,95,83,69,76,69,67,84,95,87,73,84,72,95,76,73,78,69,34,62,10,32, +32,32,32,32,32,32,32,60,108,97,98,101,108,62,76,105,110,101,60,47,108,97, +98,101,108,62,10,32,32,32,32,32,32,32,32,60,99,104,101,99,107,97,98,108, +101,62,49,60,47,99,104,101,99,107,97,98,108,101,62,10,32,32,32,32,32,32, +60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,47,111,98,106,101,99,116, 62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,84, -79,79,76,83,95,68,65,84,65,95,83,80,69,67,84,82,65,76,34,62,10,32,32,32, -32,32,32,60,108,97,98,101,108,62,83,112,101,99,116,114,97,108,60,47,108, -97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, -32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101, -110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,84,79,79,76, -83,95,68,65,84,65,95,72,67,76,85,83,84,69,82,34,62,10,32,32,32,32,32,32, -60,108,97,98,101,108,62,72,105,101,114,97,114,99,104,105,99,97,108,60,47, -108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32, -32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, -101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,84,79,79, -76,83,95,68,65,84,65,95,72,68,66,83,67,65,78,34,62,10,32,32,32,32,32,32, -60,108,97,98,101,108,62,72,68,66,83,99,97,110,60,47,108,97,98,101,108,62, -10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98, -106,101,99,116,32,99,108,97,115,115,61,34,115,101,112,97,114,97,116,111, -114,34,47,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, -61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34, -73,68,95,84,79,79,76,83,95,68,65,84,65,95,83,75,65,84,69,82,34,62,10,32, -32,32,32,32,32,60,108,97,98,101,108,62,115,107,97,116,101,114,60,47,108, -97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, -32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101, -110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,84,79,79,76, -83,95,68,65,84,65,95,82,69,68,67,65,80,34,62,10,32,32,32,32,32,32,60,108, -97,98,101,108,62,114,101,100,99,97,112,60,47,108,97,98,101,108,62,10,32, -32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101, -99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109, -34,32,110,97,109,101,61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,77, -65,88,80,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,109,97,120, -45,112,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99, -116,62,10,32,32,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101, -99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109, -101,61,34,73,68,95,77,79,82,65,78,95,77,69,78,85,34,62,10,32,32,32,32,60, -108,97,98,101,108,62,77,111,114,97,110,32,83,99,97,116,116,101,114,32,80, -108,111,116,60,47,108,97,98,101,108,62,10,32,32,32,32,60,111,98,106,101, -99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109, -34,32,110,97,109,101,61,34,73,68,77,95,77,83,80,76,34,62,10,32,32,32,32, -32,32,60,108,97,98,101,108,62,85,110,105,118,97,114,105,97,116,101,32,77, -111,114,97,110,39,115,32,73,60,47,108,97,98,101,108,62,10,32,32,32,32,60, -47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32, -99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110, -97,109,101,61,34,73,68,77,95,71,77,79,82,65,78,34,62,10,32,32,32,32,32, -32,60,108,97,98,101,108,62,66,105,118,97,114,105,97,116,101,32,77,111,114, -97,110,39,115,32,73,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111, -98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108, +120,77,101,110,117,34,32,110,97,109,101,61,34,73,68,95,77,69,78,85,34,62, +10,32,32,32,32,32,32,60,108,97,98,101,108,62,67,111,108,111,114,60,47,108, +97,98,101,108,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, 97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, -101,61,34,73,68,77,95,68,77,79,82,65,78,34,62,10,32,32,32,32,32,32,60,108, -97,98,101,108,62,68,105,102,102,101,114,101,110,116,105,97,108,32,77,111, -114,97,110,39,115,32,73,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47, -111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99, +101,61,34,73,68,95,83,69,76,69,67,84,65,66,76,69,95,79,85,84,76,73,78,69, +95,86,73,83,73,66,76,69,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, +108,62,79,117,116,108,105,110,101,115,32,86,105,115,105,98,108,101,60,47, +108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60,99,104,101,99,107,97, +98,108,101,62,49,60,47,99,104,101,99,107,97,98,108,101,62,10,32,32,32,32, +32,32,32,32,60,99,104,101,99,107,101,100,62,49,60,47,99,104,101,99,107, +101,100,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, +32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120, +77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,77,65, +80,95,83,72,79,87,95,77,65,80,95,67,79,78,84,79,85,82,34,62,10,32,32,32, +32,32,32,32,32,60,108,97,98,101,108,62,83,104,111,119,32,77,97,112,32,66, +111,117,110,100,97,114,121,60,47,108,97,98,101,108,62,10,32,32,32,32,32, +32,32,32,60,99,104,101,99,107,97,98,108,101,62,49,60,47,99,104,101,99,107, +97,98,108,101,62,10,32,32,32,32,32,32,32,32,60,99,104,101,99,107,101,100, +62,48,60,47,99,104,101,99,107,101,100,62,10,32,32,32,32,32,32,60,47,111, +98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, 108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97, -109,101,61,34,73,68,77,95,77,79,82,65,78,95,69,66,82,65,84,69,34,62,10, -32,32,32,32,32,32,60,108,97,98,101,108,62,77,111,114,97,110,39,115,32,73, -32,119,105,116,104,32,69,66,32,82,97,116,101,60,47,108,97,98,101,108,62, -10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,60,47,111,98,106, -101,99,116,62,10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, -34,119,120,77,101,110,117,34,32,110,97,109,101,61,34,73,68,95,76,73,83, -65,95,77,69,78,85,34,62,10,32,32,32,32,60,108,97,98,101,108,62,76,111,99, -97,108,32,77,111,114,97,110,39,115,32,73,32,77,97,112,115,60,47,108,97, -98,101,108,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +109,101,61,34,73,68,95,83,69,76,69,67,84,65,66,76,69,95,70,73,76,76,95, +67,79,76,79,82,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62, +83,101,108,101,99,116,97,98,108,101,32,70,105,108,108,32,67,111,108,111, +114,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101, +99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, 115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, -34,73,68,77,95,85,78,73,95,76,73,83,65,34,62,10,32,32,32,32,32,32,60,108, -97,98,101,108,62,85,110,105,118,97,114,105,97,116,101,32,76,111,99,97,108, -32,77,111,114,97,110,39,115,32,73,60,47,108,97,98,101,108,62,10,32,32,32, +34,73,68,95,67,65,78,86,65,83,95,66,65,67,75,71,82,79,85,78,68,95,67,79, +76,79,82,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,66,97, +99,107,103,114,111,117,110,100,32,67,111,108,111,114,60,47,108,97,98,101, +108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, 32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116, 32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,77,95,77,85,76,84,73,95,76,73,83,65,34,62,10, -32,32,32,32,32,32,60,108,97,98,101,108,62,66,105,118,97,114,105,97,116, -101,32,76,111,99,97,108,32,77,111,114,97,110,39,115,32,73,60,47,108,97, -98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, -32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95,68,73,70,70,95, -76,73,83,65,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,68,105,102, -102,101,114,101,110,116,105,97,108,32,76,111,99,97,108,32,77,111,114,97, -110,39,115,32,73,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98, +110,97,109,101,61,34,73,68,95,68,73,83,80,76,65,89,95,83,84,65,84,85,83, +95,66,65,82,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,83,104,111, +119,32,83,116,97,116,117,115,32,66,97,114,60,47,108,97,98,101,108,62,10, +32,32,32,32,32,32,60,99,104,101,99,107,97,98,108,101,62,49,60,47,99,104, +101,99,107,97,98,108,101,62,10,32,32,32,32,32,32,60,99,104,101,99,107,101, +100,62,49,60,47,99,104,101,99,107,101,100,62,10,32,32,32,32,60,47,111,98, 106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, -115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101, -61,34,73,68,77,95,76,73,83,65,95,69,66,82,65,84,69,34,62,10,32,32,32,32, -32,32,60,108,97,98,101,108,62,76,111,99,97,108,32,77,111,114,97,110,39, -115,32,73,32,119,105,116,104,32,69,66,32,82,97,116,101,60,47,108,97,98, -101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32, -60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,101,112,97,114, -97,116,111,114,34,47,62,10,32,32,32,32,60,108,97,98,101,108,62,76,111,99, -97,108,32,71,32,77,97,112,115,60,47,108,97,98,101,108,62,10,32,32,32,32, +115,115,61,34,115,101,112,97,114,97,116,111,114,34,47,62,10,32,32,32,32, 60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95,76,79,67,65,76, -95,71,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,76,111,99,97,108, -32,71,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99, -116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, -34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73, -68,77,95,76,79,67,65,76,95,71,95,83,84,65,82,34,62,10,32,32,32,32,32,32, -60,108,97,98,101,108,62,76,111,99,97,108,32,71,42,60,47,108,97,98,101,108, -62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111, -98,106,101,99,116,32,99,108,97,115,115,61,34,115,101,112,97,114,97,116, -111,114,34,47,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, -115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, -34,73,68,77,95,76,79,67,65,76,95,74,79,73,78,84,95,67,79,85,78,84,34,62, -10,32,32,32,32,32,32,60,108,97,98,101,108,62,85,110,105,118,97,114,105, -97,116,101,32,76,111,99,97,108,32,74,111,105,110,32,67,111,117,110,116, -60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62, -10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95, -66,73,86,95,76,74,67,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62, -66,105,118,97,114,105,97,116,101,32,76,111,99,97,108,32,74,111,105,110, -32,67,111,117,110,116,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111, -98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, -101,61,34,73,68,77,95,77,85,76,95,76,74,67,34,62,10,32,32,32,32,32,32,60, -108,97,98,101,108,62,77,117,108,116,105,118,97,114,105,97,116,101,32,76, -111,99,97,108,32,74,111,105,110,32,67,111,117,110,116,60,47,108,97,98,101, -108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60, -111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,101,112,97,114,97, -116,111,114,34,47,62,10,32,32,32,32,60,108,97,98,101,108,62,76,111,99,97, -108,32,71,101,97,114,121,32,77,97,112,115,60,47,108,97,98,101,108,62,10, -32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120, -77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95,85, -78,73,95,76,79,67,65,76,95,71,69,65,82,89,34,62,10,32,32,32,32,32,32,60, -108,97,98,101,108,62,85,110,105,118,97,114,105,97,116,101,32,76,111,99, -97,108,32,71,101,97,114,121,60,47,108,97,98,101,108,62,10,32,32,32,32,60, -47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32, -99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110, -97,109,101,61,34,73,68,77,95,77,85,76,95,76,79,67,65,76,95,71,69,65,82, -89,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,77,117,108,116,105, -118,97,114,105,97,116,101,32,76,111,99,97,108,32,71,101,97,114,121,60,47, -108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32, -32,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32, -99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61, -34,73,68,95,84,79,79,76,83,95,77,69,78,85,34,62,10,32,32,32,32,60,111,98, -106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32, -110,97,109,101,61,34,73,68,95,77,69,78,85,34,62,10,32,32,32,32,32,32,60, -108,97,98,101,108,62,83,104,97,112,101,60,47,108,97,98,101,108,62,10,32, -32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,80, -79,73,78,84,83,95,70,82,79,77,95,84,65,66,76,69,34,62,10,32,32,32,32,32, -32,32,32,60,108,97,98,101,108,62,80,111,105,110,116,115,32,102,114,111, -109,32,84,97,98,108,101,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32, -60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99, -116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, -32,110,97,109,101,61,34,73,68,95,83,72,65,80,69,95,80,79,76,89,71,79,78, -83,95,70,82,79,77,95,71,82,73,68,34,62,10,32,32,32,32,32,32,32,32,60,108, -97,98,101,108,62,67,114,101,97,116,101,32,71,114,105,100,60,47,108,97,98, -101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, -32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99, -116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, -32,110,97,109,101,61,34,73,68,95,84,65,66,76,69,95,83,80,65,84,73,65,76, -95,74,79,73,78,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,83,112, -97,116,105,97,108,32,74,111,105,110,60,47,108,97,98,101,108,62,10,32,32, -32,32,60,47,111,98,106,101,99,116,62,10,32,32,60,47,111,98,106,101,99,116, -62,10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120, -77,101,110,117,34,32,110,97,109,101,61,34,73,68,95,71,69,84,73,83,95,77, -69,78,85,34,62,10,32,32,32,32,60,108,97,98,101,108,62,76,111,99,97,108, -32,71,32,77,97,112,115,60,47,108,97,98,101,108,62,10,32,32,32,32,60,111, -98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, -116,101,109,34,32,110,97,109,101,61,34,73,68,77,95,76,79,67,65,76,95,71, -34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,76,111,99,97,108,32, -71,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116, -62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95, -76,79,67,65,76,95,71,95,83,84,65,82,34,62,10,32,32,32,32,32,32,60,108,97, -98,101,108,62,76,111,99,97,108,32,71,42,60,47,108,97,98,101,108,62,10,32, -32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101, -99,116,32,99,108,97,115,115,61,34,115,101,112,97,114,97,116,111,114,34, -47,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, -119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68, -77,95,76,79,67,65,76,95,74,79,73,78,84,95,67,79,85,78,84,34,62,10,32,32, -32,32,32,32,60,108,97,98,101,108,62,85,110,105,118,97,114,105,97,116,101, -32,76,111,99,97,108,32,74,111,105,110,32,67,111,117,110,116,60,47,108,97, -98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, -32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95,66,73,86,95,76, -74,67,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,66,105,118,97, -114,105,97,116,101,32,76,111,99,97,108,32,74,111,105,110,32,67,111,117, -110,116,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101, +117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,65,86,69,95,83, +69,76,69,67,84,69,68,95,84,79,95,67,79,76,85,77,78,34,62,10,32,32,32,32, +32,32,60,108,97,98,101,108,62,83,97,118,101,32,83,101,108,101,99,116,105, +111,110,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101, 99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, 61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34, -73,68,77,95,77,85,76,95,76,74,67,34,62,10,32,32,32,32,32,32,60,108,97,98, -101,108,62,77,117,108,116,105,118,97,114,105,97,116,101,32,76,111,99,97, -108,32,74,111,105,110,32,67,111,117,110,116,60,47,108,97,98,101,108,62, -10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,60,47,111,98,106, -101,99,116,62,10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, -34,119,120,77,101,110,117,34,32,110,97,109,101,61,34,73,68,95,77,65,80, -95,67,72,79,73,67,69,83,34,62,10,32,32,32,32,60,111,98,106,101,99,116,32, -99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110, -97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89,83,73, -83,95,84,72,69,77,69,76,69,83,83,34,62,10,32,32,32,32,32,32,60,108,97,98, -101,108,62,84,104,101,109,101,108,101,115,115,32,77,97,112,60,47,108,97, -98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, -32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73, -76,69,95,83,85,66,77,69,78,85,34,62,10,32,32,32,32,32,32,60,108,97,98,101, -108,62,81,117,97,110,116,105,108,101,32,77,97,112,60,47,108,97,98,101,108, -62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, -34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73, -68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,50,34,62,10,32,32,32,32, -32,32,32,32,60,108,97,98,101,108,62,50,60,47,108,97,98,101,108,62,10,32, -32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111, -98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, -116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,81,85,65, -78,84,73,76,69,95,51,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, -108,62,51,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98, -106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, -101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,52,34,62,10, -32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,52,60,47,108,97,98,101, -108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, -32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, -101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69, -78,95,81,85,65,78,84,73,76,69,95,53,34,62,10,32,32,32,32,32,32,32,32,60, -108,97,98,101,108,62,53,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32, -60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99, -116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, -32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69, -95,54,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,54,60,47, -108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62, -10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, -119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68, -95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,55,34,62,10,32,32,32,32,32, -32,32,32,60,108,97,98,101,108,62,55,60,47,108,97,98,101,108,62,10,32,32, -32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111, -98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, -116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,81,85,65, -78,84,73,76,69,95,56,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, -108,62,56,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98, -106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, -101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,57,34,62,10, -32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,57,60,47,108,97,98,101, -108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, +73,68,95,67,79,80,89,95,73,77,65,71,69,95,84,79,95,67,76,73,80,66,79,65, +82,68,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,67,111,112,121, +32,73,109,97,103,101,32,84,111,32,67,108,105,112,98,111,97,114,100,60,47, +108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32, 32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, -101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69, -78,95,81,85,65,78,84,73,76,69,95,49,48,34,62,10,32,32,32,32,32,32,32,32, -60,108,97,98,101,108,62,49,48,60,47,108,97,98,101,108,62,10,32,32,32,32, -32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,47,111,98,106,101, -99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, -61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34, -73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89,83,73,83,95,67,72,79,82, -79,80,76,69,84,72,95,80,69,82,67,69,78,84,73,76,69,34,62,10,32,32,32,32, -32,32,60,108,97,98,101,108,62,80,101,114,99,101,110,116,105,108,101,32, -77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101, -99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, -61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34, -73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89,83,73,83,95,72,73,78,71, -69,95,49,53,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,66,111,120, -32,77,97,112,32,40,72,105,110,103,101,61,49,46,53,41,60,47,108,97,98,101, -108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60, -111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, -73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65, -80,65,78,65,76,89,83,73,83,95,72,73,78,71,69,95,51,48,34,62,10,32,32,32, -32,32,32,60,108,97,98,101,108,62,66,111,120,32,77,97,112,32,40,72,105,110, -103,101,61,51,46,48,41,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47, -111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99, -108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97, -109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89,83,73,83, -95,67,72,79,82,79,80,76,69,84,72,95,83,84,68,68,69,86,34,62,10,32,32,32, -32,32,32,60,108,97,98,101,108,62,83,116,97,110,100,97,114,100,32,68,101, -118,105,97,116,105,111,110,32,77,97,112,60,47,108,97,98,101,108,62,10,32, -32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101, -99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109, -34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76, -89,83,73,83,95,85,78,73,81,85,69,95,86,65,76,85,69,83,34,62,10,32,32,32, -32,32,32,60,108,97,98,101,108,62,85,110,105,113,117,101,32,86,97,108,117, -101,115,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111, -98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, -101,61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89,83,73,83,95,67, -79,76,79,67,65,84,73,79,78,34,62,10,32,32,32,32,32,32,60,108,97,98,101, -108,62,67,111,45,108,111,99,97,116,105,111,110,32,77,97,112,60,47,108,97, -98,101,108,62,10,32,32,32,32,32,32,60,99,104,101,99,107,97,98,108,101,62, -49,60,47,99,104,101,99,107,97,98,108,101,62,10,32,32,32,32,60,47,111,98, -106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, -115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61,34,73,68,95, -79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,83,85,66,77, -69,78,85,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,78,97,116,117, -114,97,108,32,66,114,101,97,107,115,32,77,97,112,60,47,108,97,98,101,108, -62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, -34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73, -68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,50,34, -62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,50,60,47,108,97,98, -101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, -32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120, -77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80, -69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,51,34,62,10,32,32, -32,32,32,32,32,32,60,108,97,98,101,108,62,51,60,47,108,97,98,101,108,62, -10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32, +101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,65,86, +69,95,67,65,78,86,65,83,95,73,77,65,71,69,95,65,83,34,62,10,32,32,32,32, +32,32,60,108,97,98,101,108,62,83,97,118,101,32,73,109,97,103,101,32,65, +115,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,60,108,97,98,101,108,62,79,112,116,105,111,110,115,60, +47,108,97,98,101,108,62,10,32,32,60,47,111,98,106,101,99,116,62,10,32,32, 60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78, -65,84,85,82,65,76,95,66,82,69,65,75,83,95,52,34,62,10,32,32,32,32,32,32, -32,32,60,108,97,98,101,108,62,52,60,47,108,97,98,101,108,62,10,32,32,32, -32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98, -106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, -101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85, -82,65,76,95,66,82,69,65,75,83,95,53,34,62,10,32,32,32,32,32,32,32,32,60, -108,97,98,101,108,62,53,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32, -60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99, -116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, -32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95, -66,82,69,65,75,83,95,54,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, -108,62,54,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98, -106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, -101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75, -83,95,55,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,55,60, -47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116, +117,34,32,110,97,109,101,61,34,73,68,95,84,69,83,84,95,84,65,66,76,69,95, +86,73,69,87,95,77,69,78,85,95,67,79,78,84,69,88,84,34,62,10,32,32,32,32, +60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, +117,34,32,110,97,109,101,61,34,73,68,95,77,69,78,85,34,62,10,32,32,32,32, +32,32,60,108,97,98,101,108,62,67,111,108,111,114,60,47,108,97,98,101,108, 62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, 34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73, -68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,56,34, -62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,56,60,47,108,97,98, -101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, -32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120, -77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80, -69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,57,34,62,10,32,32, -32,32,32,32,32,32,60,108,97,98,101,108,62,57,60,47,108,97,98,101,108,62, +68,95,83,69,76,69,67,84,65,66,76,69,95,79,85,84,76,73,78,69,95,86,73,83, +73,66,76,69,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,79, +117,116,108,105,110,101,115,32,86,105,115,105,98,108,101,60,47,108,97,98, +101,108,62,10,32,32,32,32,32,32,32,32,60,99,104,101,99,107,97,98,108,101, +62,49,60,47,99,104,101,99,107,97,98,108,101,62,10,32,32,32,32,32,32,32, +32,60,99,104,101,99,107,101,100,62,49,60,47,99,104,101,99,107,101,100,62, 10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32, 60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78, -65,84,85,82,65,76,95,66,82,69,65,75,83,95,49,48,34,62,10,32,32,32,32,32, -32,32,32,60,108,97,98,101,108,62,49,48,60,47,108,97,98,101,108,62,10,32, -32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,47,111, +117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,77,65,80,95,83,72, +79,87,95,77,65,80,95,67,79,78,84,79,85,82,34,62,10,32,32,32,32,32,32,32, +32,60,108,97,98,101,108,62,83,104,111,119,32,77,97,112,32,66,111,117,110, +100,97,114,121,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,60, +99,104,101,99,107,97,98,108,101,62,49,60,47,99,104,101,99,107,97,98,108, +101,62,10,32,32,32,32,32,32,32,32,60,99,104,101,99,107,101,100,62,48,60, +47,99,104,101,99,107,101,100,62,10,32,32,32,32,32,32,60,47,111,98,106,101, +99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, +34,73,68,95,83,69,76,69,67,84,65,66,76,69,95,70,73,76,76,95,67,79,76,79, +82,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,83,101,108, +101,99,116,97,98,108,101,32,70,105,108,108,32,67,111,108,111,114,60,47, +108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62, +10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, +119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68, +95,67,65,78,86,65,83,95,66,65,67,75,71,82,79,85,78,68,95,67,79,76,79,82, +34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,66,97,99,107,103, +114,111,117,110,100,32,67,111,108,111,114,60,47,108,97,98,101,108,62,10, +32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,47,111, 98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61,34,73,68, -95,79,80,69,78,95,69,81,85,65,76,95,73,78,84,69,82,86,65,76,83,95,83,85, -66,77,69,78,85,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,69,113, -117,97,108,32,73,110,116,101,114,118,97,108,115,32,77,97,112,60,47,108, -97,98,101,108,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, 97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, -101,61,34,73,68,95,79,80,69,78,95,69,81,85,65,76,95,73,78,84,69,82,86,65, -76,83,95,50,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,50, -60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99, -116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, -61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34, -73,68,95,79,80,69,78,95,69,81,85,65,76,95,73,78,84,69,82,86,65,76,83,95, -51,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,51,60,47,108, -97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10, -32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79, -80,69,78,95,69,81,85,65,76,95,73,78,84,69,82,86,65,76,83,95,52,34,62,10, -32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,52,60,47,108,97,98,101, -108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, -32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, -101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69, -78,95,69,81,85,65,76,95,73,78,84,69,82,86,65,76,83,95,53,34,62,10,32,32, -32,32,32,32,32,32,60,108,97,98,101,108,62,53,60,47,108,97,98,101,108,62, -10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32, -60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,69, -81,85,65,76,95,73,78,84,69,82,86,65,76,83,95,54,34,62,10,32,32,32,32,32, -32,32,32,60,108,97,98,101,108,62,54,60,47,108,97,98,101,108,62,10,32,32, -32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111, +101,61,34,73,68,95,68,73,83,80,76,65,89,95,83,84,65,84,85,83,95,66,65,82, +34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,83,104,111,119,32,83, +116,97,116,117,115,32,66,97,114,60,47,108,97,98,101,108,62,10,32,32,32, +32,32,32,60,99,104,101,99,107,97,98,108,101,62,49,60,47,99,104,101,99,107, +97,98,108,101,62,10,32,32,32,32,32,32,60,99,104,101,99,107,101,100,62,49, +60,47,99,104,101,99,107,101,100,62,10,32,32,32,32,60,47,111,98,106,101, +99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, +61,34,115,101,112,97,114,97,116,111,114,34,47,62,10,32,32,32,32,60,111, 98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, -116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,69,81,85, -65,76,95,73,78,84,69,82,86,65,76,83,95,55,34,62,10,32,32,32,32,32,32,32, -32,60,108,97,98,101,108,62,55,60,47,108,97,98,101,108,62,10,32,32,32,32, -32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106, +116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,65,86,69,95,83,69,76, +69,67,84,69,68,95,84,79,95,67,79,76,85,77,78,34,62,10,32,32,32,32,32,32, +60,108,97,98,101,108,62,83,97,118,101,32,83,101,108,101,99,116,105,111, +110,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,67, +79,80,89,95,73,77,65,71,69,95,84,79,95,67,76,73,80,66,79,65,82,68,34,62, +10,32,32,32,32,32,32,60,108,97,98,101,108,62,67,111,112,121,32,73,109,97, +103,101,32,84,111,32,67,108,105,112,98,111,97,114,100,60,47,108,97,98,101, +108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60, +111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, +73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,65,86,69,95,67,65, +78,86,65,83,95,73,77,65,71,69,95,65,83,34,62,10,32,32,32,32,32,32,60,108, +97,98,101,108,62,83,97,118,101,32,73,109,97,103,101,32,65,115,60,47,108, +97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, +32,32,60,108,97,98,101,108,62,79,112,116,105,111,110,115,60,47,108,97,98, +101,108,62,10,32,32,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106, +101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110, +97,109,101,61,34,73,68,95,67,79,78,68,95,77,69,78,85,34,62,10,32,32,32, +32,60,108,97,98,101,108,62,67,111,110,100,105,116,105,111,110,97,108,32, +80,108,111,116,60,47,108,97,98,101,108,62,10,32,32,32,32,60,111,98,106, 101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101, -109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,69,81,85,65,76,95, -73,78,84,69,82,86,65,76,83,95,56,34,62,10,32,32,32,32,32,32,32,32,60,108, -97,98,101,108,62,56,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60, -47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116, +109,34,32,110,97,109,101,61,34,73,68,95,83,72,79,87,95,67,79,78,68,73,84, +73,79,78,65,76,95,77,65,80,95,86,73,69,87,34,62,10,32,32,32,32,32,32,60, +108,97,98,101,108,62,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32, +60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116, 32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,95,79,80,69,78,95,69,81,85,65,76,95,73,78,84, -69,82,86,65,76,83,95,57,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, -108,62,57,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98, -106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, -101,61,34,73,68,95,79,80,69,78,95,69,81,85,65,76,95,73,78,84,69,82,86,65, -76,83,95,49,48,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62, -49,48,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106, -101,99,116,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, -32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,67,85,83,84,79,77, -95,66,82,69,65,75,83,95,83,85,66,77,69,78,85,34,62,10,32,32,32,32,32,32, -60,108,97,98,101,108,62,67,117,115,116,111,109,32,66,114,101,97,107,115, -60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116, +110,97,109,101,61,34,73,68,95,83,72,79,87,95,67,79,78,68,73,84,73,79,78, +65,76,95,72,73,83,84,95,86,73,69,87,34,62,10,32,32,32,32,32,32,60,108,97, +98,101,108,62,72,105,115,116,111,103,114,97,109,60,47,108,97,98,101,108, +62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111, +98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, +116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,72,79,87,95,67,79,78, +68,73,84,73,79,78,65,76,95,83,67,65,84,84,69,82,95,86,73,69,87,34,62,10, +32,32,32,32,32,32,60,108,97,98,101,108,62,83,99,97,116,116,101,114,32,80, +108,111,116,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106, +101,99,116,62,10,32,32,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98, +106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32, +110,97,109,101,61,34,73,68,95,67,76,85,83,84,69,82,73,78,71,95,77,69,78, +85,34,62,10,32,32,32,32,60,108,97,98,101,108,62,67,108,117,115,116,101, +114,115,60,47,108,97,98,101,108,62,10,32,32,32,32,60,111,98,106,101,99, +116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, +32,110,97,109,101,61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,80,67, +65,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,80,67,65,60,47,108, +97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, +32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101, +110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,84,79,79,76, +83,95,68,65,84,65,95,77,68,83,34,62,10,32,32,32,32,32,32,60,108,97,98,101, +108,62,77,68,83,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98, +106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, +115,115,61,34,115,101,112,97,114,97,116,111,114,34,47,62,10,32,32,32,32, +60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, +117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,84,79,79,76,83,95, +68,65,84,65,95,75,77,69,65,78,83,34,62,10,32,32,32,32,32,32,60,108,97,98, +101,108,62,75,32,77,101,97,110,115,60,47,108,97,98,101,108,62,10,32,32, +32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99, +116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, +32,110,97,109,101,61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,75,77, +69,68,73,65,78,83,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,75, +32,77,101,100,105,97,110,115,60,47,108,97,98,101,108,62,10,32,32,32,32, +60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116, 32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,95,78,69,87,95,67,85,83,84,79,77,95,67,65,84, -95,67,76,65,83,83,73,70,95,65,34,62,10,32,32,32,32,32,32,32,32,60,108,97, -98,101,108,62,67,114,101,97,116,101,32,78,101,119,32,67,117,115,116,111, -109,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101, -99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, -115,61,34,115,101,112,97,114,97,116,111,114,34,47,62,10,32,32,32,32,60, +110,97,109,101,61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,75,77,69, +68,79,73,68,83,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,75,32, +77,101,100,111,105,100,115,60,47,108,97,98,101,108,62,10,32,32,32,32,60, 47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32, -99,108,97,115,115,61,34,115,101,112,97,114,97,116,111,114,34,47,62,10,32, -32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, -101,110,117,34,32,110,97,109,101,61,34,73,68,95,77,65,80,95,83,77,79,79, -84,72,73,78,71,95,67,72,79,73,67,69,83,34,62,10,32,32,32,32,32,32,60,111, +99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110, +97,109,101,61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,83,80,69,67, +84,82,65,76,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,83,112,101, +99,116,114,97,108,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98, +106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, +115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101, +61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,72,67,76,85,83,84,69,82, +34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,72,105,101,114,97,114, +99,104,105,99,97,108,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111, +98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108, +97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, +101,61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,72,68,66,83,67,65,78, +34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,72,68,66,83,99,97,110, +60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62, +10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115, +101,112,97,114,97,116,111,114,34,47,62,10,32,32,32,32,60,111,98,106,101, +99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109, +34,32,110,97,109,101,61,34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,83, +75,65,84,69,82,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,115,107, +97,116,101,114,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106, +101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, +34,73,68,95,84,79,79,76,83,95,68,65,84,65,95,82,69,68,67,65,80,34,62,10, +32,32,32,32,32,32,60,108,97,98,101,108,62,114,101,100,99,97,112,60,47,108, +97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, +32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101, +110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,84,79,79,76, +83,95,68,65,84,65,95,77,65,88,80,34,62,10,32,32,32,32,32,32,60,108,97,98, +101,108,62,109,97,120,45,112,60,47,108,97,98,101,108,62,10,32,32,32,32, +60,47,111,98,106,101,99,116,62,10,32,32,60,47,111,98,106,101,99,116,62, +10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, +101,110,117,34,32,110,97,109,101,61,34,73,68,95,77,79,82,65,78,95,77,69, +78,85,34,62,10,32,32,32,32,60,108,97,98,101,108,62,77,111,114,97,110,32, +83,99,97,116,116,101,114,32,80,108,111,116,60,47,108,97,98,101,108,62,10, +32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120, +77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95,77, +83,80,76,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,85,110,105, +118,97,114,105,97,116,101,32,77,111,114,97,110,39,115,32,73,60,47,108,97, +98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, +32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, +117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95,71,77,79,82,65, +78,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,66,105,118,97,114, +105,97,116,101,32,77,111,114,97,110,39,115,32,73,60,47,108,97,98,101,108, +62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111, 98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, -116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,82,65,84, -69,83,95,83,77,79,79,84,72,95,82,65,87,82,65,84,69,34,62,10,32,32,32,32, -32,32,32,32,60,108,97,98,101,108,62,82,97,119,32,82,97,116,101,60,47,108, -97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10, -32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79, -80,69,78,95,82,65,84,69,83,95,83,77,79,79,84,72,95,69,88,67,69,83,83,82, -73,83,75,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,69,120, -99,101,115,115,32,82,105,115,107,60,47,108,97,98,101,108,62,10,32,32,32, -32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98, -106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, -101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,82,65,84,69, -83,95,69,77,80,73,82,73,67,65,76,95,66,65,89,69,83,95,83,77,79,79,84,72, -69,82,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,69,109,112, -105,114,105,99,97,108,32,66,97,121,101,115,60,47,108,97,98,101,108,62,10, -32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60, -111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, -73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,82,65, -84,69,83,95,83,80,65,84,73,65,76,95,82,65,84,69,95,83,77,79,79,84,72,69, -82,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,83,112,97,116, -105,97,108,32,82,97,116,101,60,47,108,97,98,101,108,62,10,32,32,32,32,32, -32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101, +116,101,109,34,32,110,97,109,101,61,34,73,68,77,95,68,77,79,82,65,78,34, +62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,68,105,102,102,101,114, +101,110,116,105,97,108,32,77,111,114,97,110,39,115,32,73,60,47,108,97,98, +101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32, +60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, +117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95,77,79,82,65,78, +95,69,66,82,65,84,69,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62, +77,111,114,97,110,39,115,32,73,32,119,105,116,104,32,69,66,32,82,97,116, +101,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99, +116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109, +101,61,34,73,68,95,76,73,83,65,95,77,69,78,85,34,62,10,32,32,32,32,60,108, +97,98,101,108,62,76,111,99,97,108,32,77,111,114,97,110,39,115,32,73,32, +77,97,112,115,60,47,108,97,98,101,108,62,10,32,32,32,32,60,111,98,106,101, 99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109, -34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,82,65,84,69,83,95,83, -80,65,84,73,65,76,95,69,77,80,73,82,73,67,65,76,95,66,65,89,69,83,34,62, -10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,83,112,97,116,105,97, -108,32,69,109,112,105,114,105,99,97,108,32,66,97,121,101,115,60,47,108, -97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10, -32,32,32,32,32,32,60,108,97,98,101,108,62,82,97,116,101,115,45,67,97,108, -99,117,108,97,116,101,100,32,77,97,112,115,60,47,108,97,98,101,108,62,10, -32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,108,97,98, -101,108,62,79,112,116,105,111,110,115,60,47,108,97,98,101,108,62,10,32, -32,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32, -99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61, -34,73,68,95,77,65,80,95,67,72,79,73,67,69,83,95,78,79,95,73,67,79,78,83, -34,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, -119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68, -95,79,80,69,78,95,77,65,80,65,78,65,76,89,83,73,83,95,84,72,69,77,69,76, -69,83,83,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,84,104,101, -109,101,108,101,115,115,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32, +34,32,110,97,109,101,61,34,73,68,77,95,85,78,73,95,76,73,83,65,34,62,10, +32,32,32,32,32,32,60,108,97,98,101,108,62,85,110,105,118,97,114,105,97, +116,101,32,76,111,99,97,108,32,77,111,114,97,110,39,115,32,73,60,47,108, +97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, +32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101, +110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95,77,85,76, +84,73,95,76,73,83,65,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62, +66,105,118,97,114,105,97,116,101,32,76,111,99,97,108,32,77,111,114,97,110, +39,115,32,73,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106, +101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, +34,73,68,77,95,68,73,70,70,95,76,73,83,65,34,62,10,32,32,32,32,32,32,60, +108,97,98,101,108,62,68,105,102,102,101,114,101,110,116,105,97,108,32,76, +111,99,97,108,32,77,111,114,97,110,39,115,32,73,60,47,108,97,98,101,108, +62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111, +98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, +116,101,109,34,32,110,97,109,101,61,34,73,68,77,95,76,73,83,65,95,69,66, +82,65,84,69,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,76,111,99, +97,108,32,77,111,114,97,110,39,115,32,73,32,119,105,116,104,32,69,66,32, +82,97,116,101,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106, +101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +115,61,34,115,101,112,97,114,97,116,111,114,34,47,62,10,32,32,32,32,60, +108,97,98,101,108,62,76,111,99,97,108,32,71,32,77,97,112,115,60,47,108, +97,98,101,108,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, +34,73,68,77,95,76,79,67,65,76,95,71,34,62,10,32,32,32,32,32,32,60,108,97, +98,101,108,62,76,111,99,97,108,32,71,60,47,108,97,98,101,108,62,10,32,32, 32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99, -116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109, -101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,83,85,66,77, -69,78,85,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,81,117,97,110, -116,105,108,101,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32, +116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, +32,110,97,109,101,61,34,73,68,77,95,76,79,67,65,76,95,71,95,83,84,65,82, +34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,76,111,99,97,108,32, +71,42,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99, +116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, +34,115,101,112,97,114,97,116,111,114,34,47,62,10,32,32,32,32,60,111,98, +106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, +101,109,34,32,110,97,109,101,61,34,73,68,77,95,76,79,67,65,76,95,74,79, +73,78,84,95,67,79,85,78,84,34,62,10,32,32,32,32,32,32,60,108,97,98,101, +108,62,85,110,105,118,97,114,105,97,116,101,32,76,111,99,97,108,32,74,111, +105,110,32,67,111,117,110,116,60,47,108,97,98,101,108,62,10,32,32,32,32, +60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116, +32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, +110,97,109,101,61,34,73,68,77,95,66,73,86,95,76,74,67,34,62,10,32,32,32, +32,32,32,60,108,97,98,101,108,62,66,105,118,97,114,105,97,116,101,32,76, +111,99,97,108,32,74,111,105,110,32,67,111,117,110,116,60,47,108,97,98,101, +108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60, +111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, +73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95,77,85,76,95,76,74, +67,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,77,117,108,116,105, +118,97,114,105,97,116,101,32,76,111,99,97,108,32,74,111,105,110,32,67,111, +117,110,116,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106, +101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +115,61,34,115,101,112,97,114,97,116,111,114,34,47,62,10,32,32,32,32,60, +108,97,98,101,108,62,76,111,99,97,108,32,71,101,97,114,121,32,77,97,112, +115,60,47,108,97,98,101,108,62,10,32,32,32,32,60,111,98,106,101,99,116, +32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, +110,97,109,101,61,34,73,68,77,95,85,78,73,95,76,79,67,65,76,95,71,69,65, +82,89,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,85,110,105,118, +97,114,105,97,116,101,32,76,111,99,97,108,32,71,101,97,114,121,60,47,108, +97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, 32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101, -110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78, -95,81,85,65,78,84,73,76,69,95,50,34,62,10,32,32,32,32,32,32,32,32,60,108, -97,98,101,108,62,50,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60, -47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116, +110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,77,95,77,85,76, +95,76,79,67,65,76,95,71,69,65,82,89,34,62,10,32,32,32,32,32,32,60,108,97, +98,101,108,62,77,117,108,116,105,118,97,114,105,97,116,101,32,76,111,99, +97,108,32,71,101,97,114,121,60,47,108,97,98,101,108,62,10,32,32,32,32,60, +47,111,98,106,101,99,116,62,10,32,32,60,47,111,98,106,101,99,116,62,10, +32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101, +110,117,34,32,110,97,109,101,61,34,73,68,95,84,79,79,76,83,95,77,69,78, +85,34,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, +34,119,120,77,101,110,117,34,32,110,97,109,101,61,34,73,68,95,77,69,78, +85,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,83,104,97,112,101, +60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116, 32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95, -51,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,51,60,47,108, -97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10, -32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79, -80,69,78,95,81,85,65,78,84,73,76,69,95,52,34,62,10,32,32,32,32,32,32,32, -32,60,108,97,98,101,108,62,52,60,47,108,97,98,101,108,62,10,32,32,32,32, -32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106, +110,97,109,101,61,34,73,68,95,80,79,73,78,84,83,95,70,82,79,77,95,84,65, +66,76,69,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,80,111, +105,110,116,115,32,102,114,111,109,32,84,97,98,108,101,60,47,108,97,98, +101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, +32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120, +77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,83,72, +65,80,69,95,80,79,76,89,71,79,78,83,95,70,82,79,77,95,71,82,73,68,34,62, +10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,67,114,101,97,116,101, +32,71,114,105,100,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47, +111,98,106,101,99,116,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62, +10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,84, +65,66,76,69,95,83,80,65,84,73,65,76,95,74,79,73,78,34,62,10,32,32,32,32, +32,32,60,108,97,98,101,108,62,83,112,97,116,105,97,108,32,74,111,105,110, +60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62, +10,32,32,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116, +32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101, +61,34,73,68,95,71,69,84,73,83,95,77,69,78,85,34,62,10,32,32,32,32,60,108, +97,98,101,108,62,76,111,99,97,108,32,71,32,77,97,112,115,60,47,108,97,98, +101,108,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, +61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34, +73,68,77,95,76,79,67,65,76,95,71,34,62,10,32,32,32,32,32,32,60,108,97,98, +101,108,62,76,111,99,97,108,32,71,60,47,108,97,98,101,108,62,10,32,32,32, +32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116, +32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, +110,97,109,101,61,34,73,68,77,95,76,79,67,65,76,95,71,95,83,84,65,82,34, +62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,76,111,99,97,108,32,71, +42,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115, +101,112,97,114,97,116,111,114,34,47,62,10,32,32,32,32,60,111,98,106,101, +99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109, +34,32,110,97,109,101,61,34,73,68,77,95,76,79,67,65,76,95,74,79,73,78,84, +95,67,79,85,78,84,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,85, +110,105,118,97,114,105,97,116,101,32,76,111,99,97,108,32,74,111,105,110, +32,67,111,117,110,116,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111, +98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108, +97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, +101,61,34,73,68,77,95,66,73,86,95,76,74,67,34,62,10,32,32,32,32,32,32,60, +108,97,98,101,108,62,66,105,118,97,114,105,97,116,101,32,76,111,99,97,108, +32,74,111,105,110,32,67,111,117,110,116,60,47,108,97,98,101,108,62,10,32, +32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101, +99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109, +34,32,110,97,109,101,61,34,73,68,77,95,77,85,76,95,76,74,67,34,62,10,32, +32,32,32,32,32,60,108,97,98,101,108,62,77,117,108,116,105,118,97,114,105, +97,116,101,32,76,111,99,97,108,32,74,111,105,110,32,67,111,117,110,116, +60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62, +10,32,32,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116, +32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101, +61,34,73,68,95,77,65,80,95,67,72,79,73,67,69,83,34,62,10,32,32,32,32,60, +111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, +73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65, +80,65,78,65,76,89,83,73,83,95,84,72,69,77,69,76,69,83,83,34,62,10,32,32, +32,32,32,32,60,108,97,98,101,108,62,84,104,101,109,101,108,101,115,115, +32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106, +101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61,34,73,68,95,79, +80,69,78,95,81,85,65,78,84,73,76,69,95,83,85,66,77,69,78,85,34,62,10,32, +32,32,32,32,32,60,108,97,98,101,108,62,81,117,97,110,116,105,108,101,32, +77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,111,98,106, 101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101, 109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73, -76,69,95,53,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,53, +76,69,95,50,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,50, 60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99, 116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, 61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34, -73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,54,34,62,10,32,32,32, -32,32,32,32,32,60,108,97,98,101,108,62,54,60,47,108,97,98,101,108,62,10, +73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,51,34,62,10,32,32,32, +32,32,32,32,32,60,108,97,98,101,108,62,51,60,47,108,97,98,101,108,62,10, 32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60, 111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, 73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,81,85, -65,78,84,73,76,69,95,55,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, -108,62,55,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98, +65,78,84,73,76,69,95,52,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, +108,62,52,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98, 106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, 97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, -101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,56,34,62,10, -32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,56,60,47,108,97,98,101, +101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,53,34,62,10, +32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,53,60,47,108,97,98,101, 108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, 32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, 101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69, -78,95,81,85,65,78,84,73,76,69,95,57,34,62,10,32,32,32,32,32,32,32,32,60, -108,97,98,101,108,62,57,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32, +78,95,81,85,65,78,84,73,76,69,95,54,34,62,10,32,32,32,32,32,32,32,32,60, +108,97,98,101,108,62,54,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32, 60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99, 116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, 32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69, -95,49,48,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,49,48, -60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99, -116,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60, -111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, -73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65, -80,65,78,65,76,89,83,73,83,95,67,72,79,82,79,80,76,69,84,72,95,80,69,82, -67,69,78,84,73,76,69,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62, -80,101,114,99,101,110,116,105,108,101,32,77,97,112,60,47,108,97,98,101, -108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60, -111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, -73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65, -80,65,78,65,76,89,83,73,83,95,72,73,78,71,69,95,49,53,34,62,10,32,32,32, -32,32,32,60,108,97,98,101,108,62,66,111,120,32,77,97,112,32,40,72,105,110, -103,101,61,49,46,53,41,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47, -111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99, -108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97, -109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89,83,73,83, -95,72,73,78,71,69,95,51,48,34,62,10,32,32,32,32,32,32,60,108,97,98,101, -108,62,66,111,120,32,77,97,112,32,40,72,105,110,103,101,61,51,46,48,41, -60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62, -10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79, -80,69,78,95,77,65,80,65,78,65,76,89,83,73,83,95,67,72,79,82,79,80,76,69, -84,72,95,83,84,68,68,69,86,34,62,10,32,32,32,32,32,32,60,108,97,98,101, -108,62,83,116,97,110,100,97,114,100,32,68,101,118,105,97,116,105,111,110, -32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106, -101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, -115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, -34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89,83,73,83,95,85,78,73, -81,85,69,95,86,65,76,85,69,83,34,62,10,32,32,32,32,32,32,60,108,97,98,101, -108,62,85,110,105,113,117,101,32,86,97,108,117,101,115,32,77,97,112,60, -47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10, -32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120, -77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80, -69,78,95,77,65,80,65,78,65,76,89,83,73,83,95,67,79,76,79,67,65,84,73,79, -78,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,67,111,45,108,111, -99,97,116,105,111,110,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32, -32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99, -116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109, -101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75, -83,95,83,85,66,77,69,78,85,34,62,10,32,32,32,32,32,32,60,108,97,98,101, -108,62,78,97,116,117,114,97,108,32,66,114,101,97,107,115,32,77,97,112,60, -47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32, -99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110, -97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82, -69,65,75,83,95,50,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108, -62,50,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106, -101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, -115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101, -61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83, -95,51,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,51,60,47, +95,55,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,55,60,47, 108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62, 10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, 119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68, -95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,52,34,62, -10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,52,60,47,108,97,98,101, -108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, -32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, -101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69, -78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,53,34,62,10,32,32,32, -32,32,32,32,32,60,108,97,98,101,108,62,53,60,47,108,97,98,101,108,62,10, -32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60, -111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, -73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65, -84,85,82,65,76,95,66,82,69,65,75,83,95,54,34,62,10,32,32,32,32,32,32,32, -32,60,108,97,98,101,108,62,54,60,47,108,97,98,101,108,62,10,32,32,32,32, -32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106, -101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101, -109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65, -76,95,66,82,69,65,75,83,95,55,34,62,10,32,32,32,32,32,32,32,32,60,108,97, -98,101,108,62,55,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47, -111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116, +95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,56,34,62,10,32,32,32,32,32, +32,32,32,60,108,97,98,101,108,62,56,60,47,108,97,98,101,108,62,10,32,32, +32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111, +98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, +116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,81,85,65, +78,84,73,76,69,95,57,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, +108,62,57,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98, +106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, +97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, +101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,49,48,34,62, +10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,49,48,60,47,108,97,98, +101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, +32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99, +116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, +32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89, +83,73,83,95,67,72,79,82,79,80,76,69,84,72,95,80,69,82,67,69,78,84,73,76, +69,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,80,101,114,99,101, +110,116,105,108,101,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32, +32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116, 32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, +110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89,83, +73,83,95,72,73,78,71,69,95,49,53,34,62,10,32,32,32,32,32,32,60,108,97,98, +101,108,62,66,111,120,32,77,97,112,32,40,72,105,110,103,101,61,49,46,53, +41,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79, +80,69,78,95,77,65,80,65,78,65,76,89,83,73,83,95,72,73,78,71,69,95,51,48, +34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,66,111,120,32,77,97, +112,32,40,72,105,110,103,101,61,51,46,48,41,60,47,108,97,98,101,108,62, +10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98, +106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, +101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65, +78,65,76,89,83,73,83,95,67,72,79,82,79,80,76,69,84,72,95,83,84,68,68,69, +86,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,83,116,97,110,100, +97,114,100,32,68,101,118,105,97,116,105,111,110,32,77,97,112,60,47,108, +97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, +32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101, +110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78, +95,77,65,80,65,78,65,76,89,83,73,83,95,85,78,73,81,85,69,95,86,65,76,85, +69,83,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,85,110,105,113, +117,101,32,86,97,108,117,101,115,32,77,97,112,60,47,108,97,98,101,108,62, +10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98, +106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, +101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65, +78,65,76,89,83,73,83,95,67,79,76,79,67,65,84,73,79,78,34,62,10,32,32,32, +32,32,32,60,108,97,98,101,108,62,67,111,45,108,111,99,97,116,105,111,110, +32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,99,104, +101,99,107,97,98,108,101,62,49,60,47,99,104,101,99,107,97,98,108,101,62, +10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98, +106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,34,32, 110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66, -82,69,65,75,83,95,56,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, +82,69,65,75,83,95,83,85,66,77,69,78,85,34,62,10,32,32,32,32,32,32,60,108, +97,98,101,108,62,78,97,116,117,114,97,108,32,66,114,101,97,107,115,32,77, +97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,111,98,106,101, +99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109, +34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76, +95,66,82,69,65,75,83,95,50,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98, +101,108,62,50,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111, +98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, +108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97, +109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69, +65,75,83,95,51,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62, +51,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101, +99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, +34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95, +52,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,52,60,47,108, +97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10, +32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79, +80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,53,34,62,10,32, +32,32,32,32,32,32,32,60,108,97,98,101,108,62,53,60,47,108,97,98,101,108, +62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32, +32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, +117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78, +65,84,85,82,65,76,95,66,82,69,65,75,83,95,54,34,62,10,32,32,32,32,32,32, +32,32,60,108,97,98,101,108,62,54,60,47,108,97,98,101,108,62,10,32,32,32, +32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98, +106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, +101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85, +82,65,76,95,66,82,69,65,75,83,95,55,34,62,10,32,32,32,32,32,32,32,32,60, +108,97,98,101,108,62,55,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32, +60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99, +116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, +32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95, +66,82,69,65,75,83,95,56,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, 108,62,56,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98, 106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, 97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, @@ -45677,130 +45430,368 @@ static unsigned char xml_res_file_11[] = { 32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111, 98,106,101,99,116,32,99,108,97,115,115,61,34,115,101,112,97,114,97,116, 111,114,34,47,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, -32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101, -110,117,34,32,110,97,109,101,61,34,73,68,95,77,65,80,95,83,77,79,79,84, -72,73,78,71,95,67,72,79,73,67,69,83,34,62,10,32,32,32,32,32,32,60,111,98, -106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, -101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,82,65,84,69, -83,95,83,77,79,79,84,72,95,82,65,87,82,65,84,69,34,62,10,32,32,32,32,32, -32,32,32,60,108,97,98,101,108,62,82,97,119,32,82,97,116,101,60,47,108,97, -98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32, -32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79, -80,69,78,95,82,65,84,69,83,95,83,77,79,79,84,72,95,69,88,67,69,83,83,82, -73,83,75,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,69,120, -99,101,115,115,32,82,105,115,107,60,47,108,97,98,101,108,62,10,32,32,32, -32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98, -106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, -101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,82,65,84,69, -83,95,69,77,80,73,82,73,67,65,76,95,66,65,89,69,83,95,83,77,79,79,84,72, -69,82,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,69,109,112, -105,114,105,99,97,108,32,66,97,121,101,115,60,47,108,97,98,101,108,62,10, -32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60, -111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, -73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,82,65, -84,69,83,95,83,80,65,84,73,65,76,95,82,65,84,69,95,83,77,79,79,84,72,69, -82,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,83,112,97,116, -105,97,108,32,82,97,116,101,60,47,108,97,98,101,108,62,10,32,32,32,32,32, +32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,101,112,97, +114,97,116,111,114,34,47,62,10,32,32,32,32,60,111,98,106,101,99,116,32, +99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61, +34,73,68,95,77,65,80,95,83,77,79,79,84,72,73,78,71,95,67,72,79,73,67,69, +83,34,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, +34,73,68,95,79,80,69,78,95,82,65,84,69,83,95,83,77,79,79,84,72,95,82,65, +87,82,65,84,69,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62, +82,97,119,32,82,97,116,101,60,47,108,97,98,101,108,62,10,32,32,32,32,32, 32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101, 99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109, 34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,82,65,84,69,83,95,83, -80,65,84,73,65,76,95,69,77,80,73,82,73,67,65,76,95,66,65,89,69,83,34,62, -10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,83,112,97,116,105,97, -108,32,69,109,112,105,114,105,99,97,108,32,66,97,121,101,115,60,47,108, -97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10, -32,32,32,32,32,32,60,108,97,98,101,108,62,82,97,116,101,115,45,67,97,108, -99,117,108,97,116,101,100,32,77,97,112,115,60,47,108,97,98,101,108,62,10, -32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,108,97,98, -101,108,62,79,112,116,105,111,110,115,60,47,108,97,98,101,108,62,10,32, -32,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32, -99,108,97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61, -34,73,68,95,68,65,84,65,83,79,85,82,67,69,95,80,79,80,85,80,34,62,10,32, -32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, -101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,68,83,95, -83,72,80,69,70,73,76,69,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108, -62,69,83,82,73,32,83,104,97,112,101,102,105,108,101,32,40,42,46,115,104, -112,41,124,42,46,115,104,112,60,47,108,97,98,101,108,62,10,32,32,32,32, -60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116, -32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,95,68,83,95,71,69,79,68,65,84,65,66,65,83,69, -34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,69,83,82,73,32,70,105, -108,101,32,71,101,111,100,97,116,97,98,97,115,101,32,40,42,46,103,100,98, -41,124,42,46,103,100,98,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47, -111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99, -108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97, -109,101,61,34,73,68,95,68,83,95,71,69,79,68,65,84,65,66,65,83,69,34,62, -10,32,32,32,32,32,32,60,108,97,98,101,108,62,71,101,111,74,83,79,78,32, -40,42,46,103,101,111,106,115,111,110,59,42,46,106,115,111,110,41,124,42, -46,103,101,111,106,115,111,110,59,42,46,106,115,111,110,60,47,108,97,98, -101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32, -60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,68,83,95,71,69,79, -80,65,67,75,65,71,69,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62, -71,101,111,80,97,99,107,97,103,101,32,40,42,46,103,112,107,103,41,124,42, -46,103,112,107,103,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111, -98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108, -97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, -101,61,34,73,68,95,68,83,95,83,81,76,73,84,69,34,62,10,32,32,32,32,32,32, -60,108,97,98,101,108,62,83,81,76,105,116,101,47,83,112,97,116,105,97,76, -105,116,101,32,40,42,46,115,113,108,105,116,101,41,124,42,46,115,113,108, -105,116,101,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106, -101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, -115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, -34,73,68,95,68,83,95,80,71,69,79,34,62,10,32,32,32,32,32,32,60,108,97,98, -101,108,62,69,83,82,73,32,80,101,114,115,111,110,97,108,32,71,101,111,100, -97,116,97,98,97,115,101,32,40,42,46,109,100,98,41,124,42,46,109,100,98, +77,79,79,84,72,95,69,88,67,69,83,83,82,73,83,75,34,62,10,32,32,32,32,32, +32,32,32,60,108,97,98,101,108,62,69,120,99,101,115,115,32,82,105,115,107, +60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99, +116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, +61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34, +73,68,95,79,80,69,78,95,82,65,84,69,83,95,69,77,80,73,82,73,67,65,76,95, +66,65,89,69,83,95,83,77,79,79,84,72,69,82,34,62,10,32,32,32,32,32,32,32, +32,60,108,97,98,101,108,62,69,109,112,105,114,105,99,97,108,32,66,97,121, +101,115,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106, +101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, +115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101, +61,34,73,68,95,79,80,69,78,95,82,65,84,69,83,95,83,80,65,84,73,65,76,95, +82,65,84,69,95,83,77,79,79,84,72,69,82,34,62,10,32,32,32,32,32,32,32,32, +60,108,97,98,101,108,62,83,112,97,116,105,97,108,32,82,97,116,101,60,47, +108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62, +10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, +119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68, +95,79,80,69,78,95,82,65,84,69,83,95,83,80,65,84,73,65,76,95,69,77,80,73, +82,73,67,65,76,95,66,65,89,69,83,34,62,10,32,32,32,32,32,32,32,32,60,108, +97,98,101,108,62,83,112,97,116,105,97,108,32,69,109,112,105,114,105,99, +97,108,32,66,97,121,101,115,60,47,108,97,98,101,108,62,10,32,32,32,32,32, +32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,108,97,98,101, +108,62,82,97,116,101,115,45,67,97,108,99,117,108,97,116,101,100,32,77,97, +112,115,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101, +99,116,62,10,32,32,32,32,60,108,97,98,101,108,62,79,112,116,105,111,110, +115,60,47,108,97,98,101,108,62,10,32,32,60,47,111,98,106,101,99,116,62, +10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, +101,110,117,34,32,110,97,109,101,61,34,73,68,95,77,65,80,95,67,72,79,73, +67,69,83,95,78,79,95,73,67,79,78,83,34,62,10,32,32,32,32,60,111,98,106, +101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101, +109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65, +76,89,83,73,83,95,84,72,69,77,69,76,69,83,83,34,62,10,32,32,32,32,32,32, +60,108,97,98,101,108,62,84,104,101,109,101,108,101,115,115,32,77,97,112, 60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62, 10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, -120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,68, -83,95,71,77,76,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,71,101, -111,103,114,97,112,104,121,32,77,97,114,107,117,112,32,76,97,110,103,117, -97,103,101,32,40,42,46,103,109,108,41,124,42,46,103,109,108,60,47,108,97, -98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, -32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, -117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,68,83,95,75,77,76, -34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,75,101,121,104,111,108, -101,32,77,97,114,107,117,112,32,76,97,110,103,117,97,103,101,32,40,42,46, -107,109,108,41,124,42,46,107,109,108,60,47,108,97,98,101,108,62,10,32,32, -32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99, +120,77,101,110,117,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,81, +85,65,78,84,73,76,69,95,83,85,66,77,69,78,85,34,62,10,32,32,32,32,32,32, +60,108,97,98,101,108,62,81,117,97,110,116,105,108,101,32,77,97,112,60,47, +108,97,98,101,108,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, +108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97, +109,101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,50,34, +62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,50,60,47,108,97,98, +101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, +32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120, +77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80, +69,78,95,81,85,65,78,84,73,76,69,95,51,34,62,10,32,32,32,32,32,32,32,32, +60,108,97,98,101,108,62,51,60,47,108,97,98,101,108,62,10,32,32,32,32,32, +32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101, +99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109, +34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76, +69,95,52,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,52,60, +47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, +34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73, +68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,53,34,62,10,32,32,32,32, +32,32,32,32,60,108,97,98,101,108,62,53,60,47,108,97,98,101,108,62,10,32, +32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111, +98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, +116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,81,85,65, +78,84,73,76,69,95,54,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, +108,62,54,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98, +106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, +97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, +101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,55,34,62,10, +32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,55,60,47,108,97,98,101, +108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, +32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, +101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69, +78,95,81,85,65,78,84,73,76,69,95,56,34,62,10,32,32,32,32,32,32,32,32,60, +108,97,98,101,108,62,56,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32, +60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99, 116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, -32,110,97,109,101,61,34,73,68,95,68,83,95,77,65,80,73,78,70,79,34,62,10, -32,32,32,32,32,32,60,108,97,98,101,108,62,77,97,112,73,110,102,111,32,40, -42,46,116,97,98,59,42,46,109,105,102,59,42,46,109,105,100,41,124,42,46, -116,97,98,59,42,46,109,105,102,59,42,46,109,105,100,60,47,108,97,98,101, -108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60, -111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,101,112,97,114,97, -116,111,114,34,47,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108, +32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,81,85,65,78,84,73,76,69, +95,57,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,57,60,47, +108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62, +10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, +119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68, +95,79,80,69,78,95,81,85,65,78,84,73,76,69,95,49,48,34,62,10,32,32,32,32, +32,32,32,32,60,108,97,98,101,108,62,49,48,60,47,108,97,98,101,108,62,10, +32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,47,111, +98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108, 97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, -101,61,34,73,68,95,68,83,95,68,66,65,83,69,34,62,10,32,32,32,32,32,32,60, -108,97,98,101,108,62,100,66,97,115,101,32,68,97,116,97,98,97,115,101,32, -70,105,108,101,32,40,42,46,100,98,102,41,124,42,46,100,98,102,60,47,108, +101,61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89,83,73,83,95,67, +72,79,82,79,80,76,69,84,72,95,80,69,82,67,69,78,84,73,76,69,34,62,10,32, +32,32,32,32,32,60,108,97,98,101,108,62,80,101,114,99,101,110,116,105,108, +101,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98, +106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, +115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101, +61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89,83,73,83,95,72,73, +78,71,69,95,49,53,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,66, +111,120,32,77,97,112,32,40,72,105,110,103,101,61,49,46,53,41,60,47,108, 97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, 32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101, -110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,68,83,95,67, -83,86,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,67,111,109,109, -97,32,83,101,112,97,114,97,116,101,100,32,86,97,108,117,101,32,40,42,46, -99,115,118,41,124,42,46,99,115,118,60,47,108,97,98,101,108,62,10,32,32, +110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78, +95,77,65,80,65,78,65,76,89,83,73,83,95,72,73,78,71,69,95,51,48,34,62,10, +32,32,32,32,32,32,60,108,97,98,101,108,62,66,111,120,32,77,97,112,32,40, +72,105,110,103,101,61,51,46,48,41,60,47,108,97,98,101,108,62,10,32,32,32, +32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116, +32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, +110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89,83, +73,83,95,67,72,79,82,79,80,76,69,84,72,95,83,84,68,68,69,86,34,62,10,32, +32,32,32,32,32,60,108,97,98,101,108,62,83,116,97,110,100,97,114,100,32, +68,101,118,105,97,116,105,111,110,32,77,97,112,60,47,108,97,98,101,108, +62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111, +98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, +116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80, +65,78,65,76,89,83,73,83,95,85,78,73,81,85,69,95,86,65,76,85,69,83,34,62, +10,32,32,32,32,32,32,60,108,97,98,101,108,62,85,110,105,113,117,101,32, +86,97,108,117,101,115,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32, 32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99, 116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, -32,110,97,109,101,61,34,73,68,95,68,83,95,88,76,83,34,62,10,32,32,32,32, -32,32,60,108,97,98,101,108,62,77,83,32,69,120,99,101,108,32,40,42,46,120, -108,115,41,124,42,46,120,108,115,60,47,108,97,98,101,108,62,10,32,32,32, +32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,77,65,80,65,78,65,76,89, +83,73,83,95,67,79,76,79,67,65,84,73,79,78,34,62,10,32,32,32,32,32,32,60, +108,97,98,101,108,62,67,111,45,108,111,99,97,116,105,111,110,32,77,97,112, +60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62, +10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,77,101,110,117,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78, +65,84,85,82,65,76,95,66,82,69,65,75,83,95,83,85,66,77,69,78,85,34,62,10, +32,32,32,32,32,32,60,108,97,98,101,108,62,78,97,116,117,114,97,108,32,66, +114,101,97,107,115,32,77,97,112,60,47,108,97,98,101,108,62,10,32,32,32, +32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, +101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69, +78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,50,34,62,10,32,32,32, +32,32,32,32,32,60,108,97,98,101,108,62,50,60,47,108,97,98,101,108,62,10, +32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60, +111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, +73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65, +84,85,82,65,76,95,66,82,69,65,75,83,95,51,34,62,10,32,32,32,32,32,32,32, +32,60,108,97,98,101,108,62,51,60,47,108,97,98,101,108,62,10,32,32,32,32, +32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106, +101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101, +109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65, +76,95,66,82,69,65,75,83,95,52,34,62,10,32,32,32,32,32,32,32,32,60,108,97, +98,101,108,62,52,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47, +111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116, +32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, +110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66, +82,69,65,75,83,95,53,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, +108,62,53,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98, +106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, +97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, +101,61,34,73,68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75, +83,95,54,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,54,60, +47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, +34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73, +68,95,79,80,69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,55,34, +62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,55,60,47,108,97,98, +101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32, +32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120, +77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80, +69,78,95,78,65,84,85,82,65,76,95,66,82,69,65,75,83,95,56,34,62,10,32,32, +32,32,32,32,32,32,60,108,97,98,101,108,62,56,60,47,108,97,98,101,108,62, +10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32, +60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, +117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78, +65,84,85,82,65,76,95,66,82,69,65,75,83,95,57,34,62,10,32,32,32,32,32,32, +32,32,60,108,97,98,101,108,62,57,60,47,108,97,98,101,108,62,10,32,32,32, +32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98, +106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, +101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,78,65,84,85, +82,65,76,95,66,82,69,65,75,83,95,49,48,34,62,10,32,32,32,32,32,32,32,32, +60,108,97,98,101,108,62,49,48,60,47,108,97,98,101,108,62,10,32,32,32,32, +32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,47,111,98,106,101, +99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, +61,34,119,120,77,101,110,117,34,32,110,97,109,101,61,34,73,68,95,79,80, +69,78,95,69,81,85,65,76,95,73,78,84,69,82,86,65,76,83,95,83,85,66,77,69, +78,85,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,69,113,117,97, +108,32,73,110,116,101,114,118,97,108,115,32,77,97,112,60,47,108,97,98,101, +108,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, +61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34, +73,68,95,79,80,69,78,95,69,81,85,65,76,95,73,78,84,69,82,86,65,76,83,95, +50,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,50,60,47,108, +97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10, +32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79, +80,69,78,95,69,81,85,65,76,95,73,78,84,69,82,86,65,76,83,95,51,34,62,10, +32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,51,60,47,108,97,98,101, +108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32, +32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77, +101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69, +78,95,69,81,85,65,76,95,73,78,84,69,82,86,65,76,83,95,52,34,62,10,32,32, +32,32,32,32,32,32,60,108,97,98,101,108,62,52,60,47,108,97,98,101,108,62, +10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32, +60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110, +117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,69, +81,85,65,76,95,73,78,84,69,82,86,65,76,83,95,53,34,62,10,32,32,32,32,32, +32,32,32,60,108,97,98,101,108,62,53,60,47,108,97,98,101,108,62,10,32,32, +32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111, +98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, +116,101,109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,69,81,85, +65,76,95,73,78,84,69,82,86,65,76,83,95,54,34,62,10,32,32,32,32,32,32,32, +32,60,108,97,98,101,108,62,54,60,47,108,97,98,101,108,62,10,32,32,32,32, +32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106, +101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101, +109,34,32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,69,81,85,65,76,95, +73,78,84,69,82,86,65,76,83,95,55,34,62,10,32,32,32,32,32,32,32,32,60,108, +97,98,101,108,62,55,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60, +47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116, +32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, +110,97,109,101,61,34,73,68,95,79,80,69,78,95,69,81,85,65,76,95,73,78,84, +69,82,86,65,76,83,95,56,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, +108,62,56,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98, +106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108, +97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109, +101,61,34,73,68,95,79,80,69,78,95,69,81,85,65,76,95,73,78,84,69,82,86,65, +76,83,95,57,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,57, +60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99, +116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115, +61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34, +73,68,95,79,80,69,78,95,69,81,85,65,76,95,73,78,84,69,82,86,65,76,83,95, +49,48,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,49,48,60, +47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111, +98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,34, +32,110,97,109,101,61,34,73,68,95,79,80,69,78,95,67,85,83,84,79,77,95,66, +82,69,65,75,83,95,83,85,66,77,69,78,85,34,62,10,32,32,32,32,32,32,60,108, +97,98,101,108,62,67,117,115,116,111,109,32,66,114,101,97,107,115,60,47, +108,97,98,101,108,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99, +108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97, +109,101,61,34,73,68,95,78,69,87,95,67,85,83,84,79,77,95,67,65,84,95,67, +76,65,83,83,73,70,95,65,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101, +108,62,67,114,101,97,116,101,32,78,101,119,32,67,117,115,116,111,109,60, +47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61, +34,115,101,112,97,114,97,116,111,114,34,47,62,10,32,32,32,32,60,47,111, +98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108, +97,115,115,61,34,119,120,77,101,110,117,34,32,110,97,109,101,61,34,73,68, +95,77,65,80,95,83,77,79,79,84,72,73,78,71,95,67,72,79,73,67,69,83,34,62, +10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, +119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68, +95,79,80,69,78,95,82,65,84,69,83,95,83,77,79,79,84,72,95,82,65,87,82,65, +84,69,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,82,97,119, +32,82,97,116,101,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47, +111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116, +32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, +110,97,109,101,61,34,73,68,95,79,80,69,78,95,82,65,84,69,83,95,83,77,79, +79,84,72,95,69,88,67,69,83,83,82,73,83,75,34,62,10,32,32,32,32,32,32,32, +32,60,108,97,98,101,108,62,69,120,99,101,115,115,32,82,105,115,107,60,47, +108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62, +10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34, +119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68, +95,79,80,69,78,95,82,65,84,69,83,95,69,77,80,73,82,73,67,65,76,95,66,65, +89,69,83,95,83,77,79,79,84,72,69,82,34,62,10,32,32,32,32,32,32,32,32,60, +108,97,98,101,108,62,69,109,112,105,114,105,99,97,108,32,66,97,121,101, +115,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101, +99,116,62,10,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, +34,73,68,95,79,80,69,78,95,82,65,84,69,83,95,83,80,65,84,73,65,76,95,82, +65,84,69,95,83,77,79,79,84,72,69,82,34,62,10,32,32,32,32,32,32,32,32,60, +108,97,98,101,108,62,83,112,97,116,105,97,108,32,82,97,116,101,60,47,108, +97,98,101,108,62,10,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10, +32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,79, +80,69,78,95,82,65,84,69,83,95,83,80,65,84,73,65,76,95,69,77,80,73,82,73, +67,65,76,95,66,65,89,69,83,34,62,10,32,32,32,32,32,32,32,32,60,108,97,98, +101,108,62,83,112,97,116,105,97,108,32,69,109,112,105,114,105,99,97,108, +32,66,97,121,101,115,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,60, +47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62, +82,97,116,101,115,45,67,97,108,99,117,108,97,116,101,100,32,77,97,112,115, +60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62, +10,32,32,32,32,60,108,97,98,101,108,62,79,112,116,105,111,110,115,60,47, +108,97,98,101,108,62,10,32,32,60,47,111,98,106,101,99,116,62,10,32,32,60, +111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, +34,32,110,97,109,101,61,34,73,68,95,68,65,84,65,83,79,85,82,67,69,95,80, +79,80,85,80,34,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97, +115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101, +61,34,73,68,95,68,83,95,83,72,80,69,70,73,76,69,34,62,10,32,32,32,32,32, +32,60,108,97,98,101,108,62,69,83,82,73,32,83,104,97,112,101,102,105,108, +101,32,40,42,46,115,104,112,41,124,42,46,115,104,112,60,47,108,97,98,101, +108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60, +111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, +73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,68,83,95,71,69,79,68, +65,84,65,66,65,83,69,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62, +69,83,82,73,32,70,105,108,101,32,71,101,111,100,97,116,97,98,97,115,101, +32,40,42,46,103,100,98,41,124,42,46,103,100,98,60,47,108,97,98,101,108, +62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111, +98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73, +116,101,109,34,32,110,97,109,101,61,34,73,68,95,68,83,95,71,69,79,68,65, +84,65,66,65,83,69,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,71, +101,111,74,83,79,78,32,40,42,46,103,101,111,106,115,111,110,59,42,46,106, +115,111,110,41,124,42,46,103,101,111,106,115,111,110,59,42,46,106,115,111, +110,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,68, +83,95,71,69,79,80,65,67,75,65,71,69,34,62,10,32,32,32,32,32,32,60,108,97, +98,101,108,62,71,101,111,80,97,99,107,97,103,101,32,40,42,46,103,112,107, +103,41,124,42,46,103,112,107,103,60,47,108,97,98,101,108,62,10,32,32,32, 32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116, 32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32, -110,97,109,101,61,34,73,68,95,68,83,95,79,68,83,34,62,10,32,32,32,32,32, -32,60,108,97,98,101,108,62,79,112,101,110,32,68,111,99,117,109,101,110, -116,32,83,112,114,101,97,100,115,104,101,101,116,32,40,42,46,111,100,115, -41,124,42,46,111,100,115,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47, +110,97,109,101,61,34,73,68,95,68,83,95,83,81,76,73,84,69,34,62,10,32,32, +32,32,32,32,60,108,97,98,101,108,62,83,81,76,105,116,101,47,83,112,97,116, +105,97,76,105,116,101,32,40,42,46,115,113,108,105,116,101,41,124,42,46, +115,113,108,105,116,101,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47, 111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99, -108,97,115,115,61,34,115,101,112,97,114,97,116,111,114,34,47,62,10,32,32, -32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101, -110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,68,83,95,71, -68,65,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,71,101,111,68, -97,32,80,114,111,106,101,99,116,32,70,105,108,101,32,40,42,46,103,100,97, -41,124,42,46,103,100,97,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47, -111,98,106,101,99,116,62,10,32,32,60,47,111,98,106,101,99,116,62,10,60, -47,114,101,115,111,117,114,99,101,62,10}; +108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97, +109,101,61,34,73,68,95,68,83,95,80,71,69,79,34,62,10,32,32,32,32,32,32, +60,108,97,98,101,108,62,69,83,82,73,32,80,101,114,115,111,110,97,108,32, +71,101,111,100,97,116,97,98,97,115,101,32,40,42,46,109,100,98,41,124,42, +46,109,100,98,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106, +101,99,116,62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115, +115,61,34,119,120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61, +34,73,68,95,68,83,95,71,77,76,34,62,10,32,32,32,32,32,32,60,108,97,98,101, +108,62,71,101,111,103,114,97,112,104,121,32,77,97,114,107,117,112,32,76, +97,110,103,117,97,103,101,32,40,42,46,103,109,108,41,124,42,46,103,109, +108,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,68, +83,95,75,77,76,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,75,101, +121,104,111,108,101,32,77,97,114,107,117,112,32,76,97,110,103,117,97,103, +101,32,40,42,46,107,109,108,41,124,42,46,107,109,108,60,47,108,97,98,101, +108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60, +111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117, +73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,68,83,95,77,65,80,73, +78,70,79,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,77,97,112,73, +110,102,111,32,40,42,46,116,97,98,59,42,46,109,105,102,59,42,46,109,105, +100,41,124,42,46,116,97,98,59,42,46,109,105,102,59,42,46,109,105,100,60, +47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116,62,10, +32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,101, +112,97,114,97,116,111,114,34,47,62,10,32,32,32,32,60,111,98,106,101,99, +116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116,101,109,34, +32,110,97,109,101,61,34,73,68,95,68,83,95,68,66,65,83,69,34,62,10,32,32, +32,32,32,32,60,108,97,98,101,108,62,100,66,97,115,101,32,68,97,116,97,98, +97,115,101,32,70,105,108,101,32,40,42,46,100,98,102,41,124,42,46,100,98, +102,60,47,108,97,98,101,108,62,10,32,32,32,32,60,47,111,98,106,101,99,116, +62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,68, +83,95,67,83,86,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,67,111, +109,109,97,32,83,101,112,97,114,97,116,101,100,32,86,97,108,117,101,32, +40,42,46,99,115,118,41,124,42,46,99,115,118,60,47,108,97,98,101,108,62, +10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98, +106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, +101,109,34,32,110,97,109,101,61,34,73,68,95,68,83,95,88,76,83,34,62,10, +32,32,32,32,32,32,60,108,97,98,101,108,62,77,83,32,69,120,99,101,108,32, +40,42,46,120,108,115,41,124,42,46,120,108,115,60,47,108,97,98,101,108,62, +10,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98, +106,101,99,116,32,99,108,97,115,115,61,34,119,120,77,101,110,117,73,116, +101,109,34,32,110,97,109,101,61,34,73,68,95,68,83,95,79,68,83,34,62,10, +32,32,32,32,32,32,60,108,97,98,101,108,62,79,112,101,110,32,68,111,99,117, +109,101,110,116,32,83,112,114,101,97,100,115,104,101,101,116,32,40,42,46, +111,100,115,41,124,42,46,111,100,115,60,47,108,97,98,101,108,62,10,32,32, +32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,60,111,98,106,101,99, +116,32,99,108,97,115,115,61,34,115,101,112,97,114,97,116,111,114,34,47, +62,10,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119, +120,77,101,110,117,73,116,101,109,34,32,110,97,109,101,61,34,73,68,95,68, +83,95,71,68,65,34,62,10,32,32,32,32,32,32,60,108,97,98,101,108,62,71,101, +111,68,97,32,80,114,111,106,101,99,116,32,70,105,108,101,32,40,42,46,103, +100,97,41,124,42,46,103,100,97,60,47,108,97,98,101,108,62,10,32,32,32,32, +60,47,111,98,106,101,99,116,62,10,32,32,60,47,111,98,106,101,99,116,62, +10,60,47,114,101,115,111,117,114,99,101,62,10}; static size_t xml_res_size_12 = 1697; static unsigned char xml_res_file_12[] = { diff --git a/rc/menus.xrc b/rc/menus.xrc index 98e2789a5..be13c885a 100644 --- a/rc/menus.xrc +++ b/rc/menus.xrc @@ -223,9 +223,7 @@ 1 - - - + @@ -4596,9 +4594,7 @@ 1 - - - + diff --git a/version.h b/version.h index a504e0def..b427dc763 100644 --- a/version.h +++ b/version.h @@ -2,10 +2,10 @@ namespace Gda { const int version_major = 1; const int version_minor = 12; const int version_build = 1; - const int version_subbuild = 199; + const int version_subbuild = 201; const int version_year = 2019; const int version_month = 2; - const int version_day = 19; + const int version_day = 20; const int version_night = 0; const int version_type = 2; // 0: alpha, 1: beta, 2: release }