mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
add global find
Query form add find all tabs
This commit is contained in:
parent
1a7d00f1f4
commit
759214fe03
9 changed files with 537 additions and 246 deletions
Binary file not shown.
|
|
@ -23,6 +23,7 @@
|
|||
#include "frm/menu.h"
|
||||
#include "utils/sysProcess.h"
|
||||
#include <wx/clipbrd.h>
|
||||
#include <wx/aui/aui.h>
|
||||
|
||||
wxString ctlSQLBox::sqlKeywords;
|
||||
static const wxString s_leftBrace(_T("([{"));
|
||||
|
|
@ -91,10 +92,15 @@ wxColour ctlSQLBox::SetSQLBoxColourBackground(bool transaction) {
|
|||
StyleSetBackground(wxSTC_STYLE_DEFAULT, bgColor);
|
||||
return bgColor;
|
||||
}
|
||||
void ctlSQLBox::SetQueryBook(ctlAuiNotebook *query_book)
|
||||
{
|
||||
sql_query_book=query_book;
|
||||
}
|
||||
void ctlSQLBox::Create(wxWindow *parent, wxWindowID id, const wxPoint &pos, const wxSize &size, long style)
|
||||
{
|
||||
wxStyledTextCtrl::Create(parent, id , pos, size, style);
|
||||
fix_pos=-1;
|
||||
sql_query_book =NULL;
|
||||
// Clear all styles
|
||||
StyleClearAll();
|
||||
m_name=NULL;
|
||||
|
|
@ -301,12 +307,14 @@ void ctlSQLBox::OnSearchReplace(wxCommandEvent &ev)
|
|||
m_dlgFindReplace->FocusSearch();
|
||||
}
|
||||
|
||||
bool ctlSQLBox::Find(const wxString &find, bool wholeWord, bool matchCase, bool useRegexps, bool startAtTop, bool reverse)
|
||||
bool ctlSQLBox::Find(const wxString &find, bool wholeWord, bool matchCase, bool useRegexps, bool startAtTop, bool reverse, bool all)
|
||||
{
|
||||
if (!DoFind(find, wxString(wxEmptyString), false, wholeWord, matchCase, useRegexps, startAtTop, reverse))
|
||||
{
|
||||
wxWindow *w = wxWindow::FindFocus();
|
||||
wxMessageBox(_("Reached the end of the document"), _("Find text"), wxICON_EXCLAMATION | wxOK, w);
|
||||
if (!all) {
|
||||
wxWindow *w = wxWindow::FindFocus();
|
||||
wxMessageBox(_("Reached the end of the document"), _("Find text"), wxICON_EXCLAMATION | wxOK, w);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@ END_EVENT_TABLE()
|
|||
#define rdDirectionForward CTRL_RADIOBUTTON("rdDirectionForward")
|
||||
#define rdDirectionBackward CTRL_RADIOBUTTON("rdDirectionBackward")
|
||||
#define chkOptionsWholeWord CTRL_CHECKBOX("chkOptionsWholeWord")
|
||||
#define chkOptionsAllFind CTRL_CHECKBOX("chkOptionsAllFind")
|
||||
#define chkOptionsMatchCase CTRL_CHECKBOX("chkOptionsMatchCase")
|
||||
#define chkOptionsUseRegexps CTRL_CHECKBOX("chkOptionsUseRegexps")
|
||||
|
||||
|
|
@ -47,7 +48,7 @@ dlgFindReplace::dlgFindReplace(ctlSQLBox *parent) :
|
|||
pgDialog()
|
||||
{
|
||||
sqlbox = parent;
|
||||
|
||||
startsqlbox = parent;
|
||||
SetFont(settings->GetSystemFont());
|
||||
LoadResource(parent, wxT("dlgFindReplace"));
|
||||
RestorePosition();
|
||||
|
|
@ -62,7 +63,7 @@ dlgFindReplace::dlgFindReplace(ctlSQLBox *parent) :
|
|||
wxAcceleratorTable accel(2, entries);
|
||||
SetAcceleratorTable(accel);
|
||||
|
||||
|
||||
if (startsqlbox->GetQueryBook()==NULL) chkOptionsAllFind->Disable();
|
||||
// Load up the defaults
|
||||
wxString val;
|
||||
bool bVal;
|
||||
|
|
@ -196,6 +197,7 @@ void dlgFindReplace::OnFind(wxCommandEvent &ev)
|
|||
matchCase = false,
|
||||
useRegexps = false,
|
||||
startAtTop = false,
|
||||
all = false,
|
||||
reverse = false;
|
||||
|
||||
if (rdOriginTop->GetValue() == true)
|
||||
|
|
@ -215,8 +217,10 @@ void dlgFindReplace::OnFind(wxCommandEvent &ev)
|
|||
|
||||
if (chkOptionsUseRegexps->GetValue() == true)
|
||||
useRegexps = true;
|
||||
if (chkOptionsAllFind->GetValue() == true)
|
||||
all = true;
|
||||
|
||||
if (sqlbox->Find(txtFind->GetValue(), wholeWord, matchCase, useRegexps, startAtTop, reverse))
|
||||
if (sqlbox->Find(txtFind->GetValue(), wholeWord, matchCase, useRegexps, startAtTop, reverse,all))
|
||||
{
|
||||
if (startAtTop)
|
||||
{
|
||||
|
|
@ -224,7 +228,57 @@ void dlgFindReplace::OnFind(wxCommandEvent &ev)
|
|||
rdOriginCursor->SetValue(true);
|
||||
wxCommandEvent nullEvent;
|
||||
OnChange(nullEvent);
|
||||
return;
|
||||
|
||||
}
|
||||
} else
|
||||
{
|
||||
rdOriginTop->SetValue(true);
|
||||
rdOriginCursor->SetValue(false);
|
||||
wxCommandEvent nullEvent;
|
||||
OnChange(nullEvent);
|
||||
startAtTop=true;
|
||||
reverse=false;
|
||||
// not find in current tabs
|
||||
ctlAuiNotebook *note=startsqlbox->GetQueryBook();
|
||||
if (note!=NULL) {
|
||||
size_t count_pages=note->GetPageCount();
|
||||
ctlSQLBox *sqlQuery;
|
||||
for(int i=0;i<count_pages;i++) {
|
||||
sqlQuery = wxDynamicCast(note->GetPage(i), ctlSQLBox);
|
||||
if (sqlQuery==sqlbox) {
|
||||
while (true) {
|
||||
i++;
|
||||
if (i>=count_pages) i=0;
|
||||
// next tabs
|
||||
sqlQuery = wxDynamicCast(note->GetPage(i), ctlSQLBox);
|
||||
if (sqlQuery==startsqlbox) {
|
||||
note->SetSelection(i);
|
||||
sqlbox=sqlQuery;
|
||||
wxWindow *w = wxWindow::FindFocus();
|
||||
wxMessageBox(_("Reached the end of the document"), _("Replace text"), wxICON_EXCLAMATION | wxOK, w);
|
||||
return ;
|
||||
}
|
||||
note->SetSelection(i);
|
||||
sqlbox=sqlQuery;
|
||||
if (sqlbox->Find(txtFind->GetValue(), wholeWord, matchCase, useRegexps, startAtTop, reverse,all))
|
||||
{
|
||||
if (startAtTop)
|
||||
{
|
||||
rdOriginTop->SetValue(false);
|
||||
rdOriginCursor->SetValue(true);
|
||||
wxCommandEvent nullEvent;
|
||||
OnChange(nullEvent);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
wxWindow *w = wxWindow::FindFocus();
|
||||
wxMessageBox(_("Reached the end of the document"), _("Replace text"), wxICON_EXCLAMATION | wxOK, w);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -254,7 +308,7 @@ void dlgFindReplace::OnReplace(wxCommandEvent &ev)
|
|||
if (chkOptionsUseRegexps->GetValue() == true)
|
||||
useRegexps = true;
|
||||
|
||||
if (sqlbox->Replace(txtFind->GetValue(), txtReplace->GetValue(), wholeWord, matchCase, useRegexps, startAtTop, reverse))
|
||||
if (startsqlbox->Replace(txtFind->GetValue(), txtReplace->GetValue(), wholeWord, matchCase, useRegexps, startAtTop, reverse))
|
||||
{
|
||||
if (startAtTop)
|
||||
{
|
||||
|
|
@ -265,7 +319,6 @@ void dlgFindReplace::OnReplace(wxCommandEvent &ev)
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
void dlgFindReplace::OnReplaceAll(wxCommandEvent &ev)
|
||||
{
|
||||
if (txtFind->GetValue().IsEmpty())
|
||||
|
|
@ -284,7 +337,7 @@ void dlgFindReplace::OnReplaceAll(wxCommandEvent &ev)
|
|||
if (chkOptionsUseRegexps->GetValue() == true)
|
||||
useRegexps = true;
|
||||
|
||||
sqlbox->ReplaceAll(txtFind->GetValue(), txtReplace->GetValue(), wholeWord, matchCase, useRegexps);
|
||||
startsqlbox->ReplaceAll(txtFind->GetValue(), txtReplace->GetValue(), wholeWord, matchCase, useRegexps);
|
||||
}
|
||||
|
||||
void dlgFindReplace::FindNext()
|
||||
|
|
|
|||
|
|
@ -1906,7 +1906,8 @@ void frmQuery::OnChangeStc(wxStyledTextEvent &event)
|
|||
{
|
||||
// The STC seems to fire this event even if it loses focus. Fortunately,
|
||||
// that seems to be m_modificationType == 512.
|
||||
if (event.m_modificationType != 512 &&
|
||||
// 0x4010 - SC_MOD_CHANGEINDICATOR | SC_PERFORMED_USER
|
||||
if ((event.m_modificationType != 512 && event.m_modificationType != 0x4010)&&
|
||||
// Sometimes there come events 20 and 520 AFTER the initial query was set by constructor.
|
||||
// Their occurrence is related to query's size and possibly international characters in it (??)
|
||||
// Filter them out to keep "initial" origin of query text.
|
||||
|
|
@ -4018,7 +4019,7 @@ void frmQuery::SqlBookAddPage()
|
|||
box->SetDropTarget(new DnDFile(this));
|
||||
box->SetChanged(false);
|
||||
box->SetOrigin(ORIGIN_MANUAL);
|
||||
|
||||
box->SetQueryBook(sqlQueryBook);
|
||||
bVal = editMenu->IsChecked(MNU_AUTOINDENT);
|
||||
box->SetAutoIndent(bVal);
|
||||
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@
|
|||
|
||||
#include "db/pgConn.h"
|
||||
#include "dlg/dlgFindReplace.h"
|
||||
#include "ctl/ctlAuiNotebook.h"
|
||||
|
||||
// These structs are from Scintilla.h which isn't easily #included :-(
|
||||
struct CharacterRange
|
||||
|
|
@ -55,8 +56,13 @@ public:
|
|||
void OnAutoComplete(wxCommandEvent &event);
|
||||
void OnSearchReplace(wxCommandEvent &event);
|
||||
void OnKillFocus(wxFocusEvent &event);
|
||||
void SetQueryBook(ctlAuiNotebook *query_book);
|
||||
ctlAuiNotebook* GetQueryBook()
|
||||
{
|
||||
return sql_query_book;
|
||||
};
|
||||
|
||||
bool Find(const wxString &find, bool wholeWord, bool matchCase, bool useRegexps, bool startAtTop, bool reverse);
|
||||
bool Find(const wxString &find, bool wholeWord, bool matchCase, bool useRegexps, bool startAtTop, bool reverse, bool all=false);
|
||||
bool Replace(const wxString &find, const wxString &replace, bool wholeWord, bool matchCase, bool useRegexps, bool startAtTop, bool reverse);
|
||||
bool ReplaceAll(const wxString &find, const wxString &replace, bool wholeWord, bool matchCase, bool useRegexps);
|
||||
bool DoFind(const wxString &find, const wxString &replace, bool doReplace, bool wholeWord, bool matchCase, bool useRegexps, bool startAtTop, bool reverse);
|
||||
|
|
@ -104,6 +110,7 @@ private:
|
|||
void OnPositionStc(wxStyledTextEvent &event);
|
||||
void OnDoubleClick(wxStyledTextEvent &event);
|
||||
void OnMarginClick(wxStyledTextEvent &event);
|
||||
ctlAuiNotebook *sql_query_book;
|
||||
queryMacroList *autoreplace;
|
||||
wxArrayString *m_name; // field proname
|
||||
wxArrayString *m_def; // finction arguments
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
#define dlgFindReplace_H
|
||||
|
||||
#include "dlg/dlgClasses.h"
|
||||
#include "ctl/ctlAuiNotebook.h"
|
||||
|
||||
class ctlSQLBox;
|
||||
|
||||
|
|
@ -37,7 +38,7 @@ private:
|
|||
void ResetTabOrder();
|
||||
void SaveSettings();
|
||||
|
||||
ctlSQLBox *sqlbox;
|
||||
ctlSQLBox *sqlbox,*startsqlbox;
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
};
|
||||
|
|
|
|||
204
ui/dlgFindReplace.bak
Normal file
204
ui/dlgFindReplace.bak
Normal file
|
|
@ -0,0 +1,204 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<resource>
|
||||
<object class="wxDialog" name="dlgFindReplace">
|
||||
<title>Find and Replace</title>
|
||||
<size>300,166d</size>
|
||||
<style>wxDEFAULT_DIALOG_STYLE|wxCAPTION|wxSYSTEM_MENU|wxRESIZE_BORDER</style>
|
||||
<object class="wxFlexGridSizer">
|
||||
<cols>1</cols>
|
||||
<growablecols>0</growablecols>
|
||||
<growablerows>0</growablerows>
|
||||
<object class="sizeritem">
|
||||
<object class="wxFlexGridSizer">
|
||||
<cols>3</cols>
|
||||
<growablecols>1</growablecols>
|
||||
<object class="sizeritem">
|
||||
<object class="wxStaticText" name="lblFind">
|
||||
<label>Find what:</label>
|
||||
</object>
|
||||
<flag>wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxTextCtrl" name="txtFind">
|
||||
<tooltip>Enter the string to search for</tooltip>
|
||||
</object>
|
||||
<flag>wxEXPAND|wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxButton" name="wxID_FIND">
|
||||
<label>&Find</label>
|
||||
<default>1</default>
|
||||
<tooltip>Find the specified text</tooltip>
|
||||
</object>
|
||||
<flag>wxEXPAND|wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxStaticText" name="lblReplace">
|
||||
<label>Replace with:</label>
|
||||
</object>
|
||||
<flag>wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxTextCtrl" name="txtReplace">
|
||||
<tooltip>Enter the replacement text</tooltip>
|
||||
</object>
|
||||
<flag>wxEXPAND|wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxButton" name="wxID_REPLACE">
|
||||
<label>&Replace</label>
|
||||
<tooltip>Find and replace the specified text</tooltip>
|
||||
</object>
|
||||
<flag>wxEXPAND|wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="spacer">
|
||||
<size>0,0d</size>
|
||||
</object>
|
||||
<object class="spacer">
|
||||
<size>0,0d</size>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxButton" name="wxID_REPLACEALL">
|
||||
<label>Replace &All</label>
|
||||
<tooltip>Find and replace all occurrences of the specified text</tooltip>
|
||||
</object>
|
||||
<flag>wxEXPAND|wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
</object>
|
||||
<flag>wxEXPAND|wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxFlexGridSizer">
|
||||
<cols>3</cols>
|
||||
<growablecols>2</growablecols>
|
||||
<object class="sizeritem">
|
||||
<object class="wxFlexGridSizer">
|
||||
<cols>1</cols>
|
||||
<object class="sizeritem">
|
||||
<object class="wxStaticText" name="sbOrigin">
|
||||
<label>Origin</label>
|
||||
</object>
|
||||
<flag>wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxRadioButton" name="rdOriginCursor">
|
||||
<label>From the cursor</label>
|
||||
<style>wxRB_GROUP</style>
|
||||
<value>1</value>
|
||||
<tooltip>Begin searching at the current cursor position</tooltip>
|
||||
</object>
|
||||
<flag>wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxRadioButton" name="rdOriginTop">
|
||||
<label>From the top</label>
|
||||
<tooltip>Begin searching at the top of the text</tooltip>
|
||||
</object>
|
||||
<flag>wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxStaticText" name="sbDirection">
|
||||
<label>Direction</label>
|
||||
</object>
|
||||
<flag>wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxRadioButton" name="rdDirectionForward">
|
||||
<label>Forwards</label>
|
||||
<style>wxRB_GROUP</style>
|
||||
<value>1</value>
|
||||
<tooltip>Search forwards through the text</tooltip>
|
||||
</object>
|
||||
<flag>wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxRadioButton" name="rdDirectionBackward">
|
||||
<label>Backwards</label>
|
||||
<tooltip>Search backwards through the text</tooltip>
|
||||
</object>
|
||||
<flag>wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
</object>
|
||||
<flag>wxEXPAND|wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxFlexGridSizer">
|
||||
<cols>1</cols>
|
||||
<object class="sizeritem">
|
||||
<object class="wxStaticText" name="sbOptions">
|
||||
<label>Options</label>
|
||||
</object>
|
||||
<flag>wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxCheckBox" name="chkOptionsWholeWord">
|
||||
<label>Whole word</label>
|
||||
<tooltip>Match on whole words</tooltip>
|
||||
</object>
|
||||
<flag>wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxCheckBox" name="chkOptionsMatchCase">
|
||||
<label>Match case</label>
|
||||
<tooltip>Match the case of the text</tooltip>
|
||||
</object>
|
||||
<flag>wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxCheckBox" name="chkOptionsUseRegexps">
|
||||
<label>Regular expressions</label>
|
||||
<tooltip>Use regular expressions when searching</tooltip>
|
||||
</object>
|
||||
<flag>wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
</object>
|
||||
<flag>wxEXPAND|wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="spacer">
|
||||
<size>0,0d</size>
|
||||
</object>
|
||||
</object>
|
||||
<flag>wxEXPAND|wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxFlexGridSizer">
|
||||
<cols>2</cols>
|
||||
<growablecols>0</growablecols>
|
||||
<object class="spacer">
|
||||
<size>0,0d</size>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxButton" name="wxID_CANCEL">
|
||||
<label>&Close</label>
|
||||
<tooltip>Close the dialog</tooltip>
|
||||
</object>
|
||||
<flag>wxALIGN_CENTRE_VERTICAL|wxALL</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
</object>
|
||||
<flag>wxEXPAND|wxALIGN_CENTRE_VERTICAL</flag>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
</resource>
|
||||
|
|
@ -60,8 +60,13 @@
|
|||
<object class="spacer">
|
||||
<size>0,0d</size>
|
||||
</object>
|
||||
<object class="spacer">
|
||||
<size>0,0d</size>
|
||||
<object class="sizeritem">
|
||||
<object class="wxCheckBox" name="chkOptionsAllFind">
|
||||
<label>All find tabs</label>
|
||||
<tooltip>All find tabs</tooltip>
|
||||
</object>
|
||||
<flag>wxALIGN_CENTRE_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxButton" name="wxID_REPLACEALL">
|
||||
|
|
|
|||
|
|
@ -6077,7 +6077,7 @@ static unsigned char xml_res_file_16[] = {
|
|||
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_17 = 8453;
|
||||
static size_t xml_res_size_17 = 8704;
|
||||
static unsigned char xml_res_file_17[] = {
|
||||
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,34,63,62,
|
||||
|
|
@ -6197,52 +6197,118 @@ static unsigned char xml_res_file_17[] = {
|
|||
32,32,32,32,32,32,32,32,32,60,115,105,122,101,62,48,44,48,100,60,47,115,
|
||||
105,122,101,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,115,112,97,99,101,114,34,62,10,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,60,115,105,122,101,62,48,44,48,100,60,47,115,105,122,101,
|
||||
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,115,105,122,101,114,105,116,101,109,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,66,117,116,116,111,110,34,32,110,97,109,101,61,34,119,120,73,68,95,
|
||||
82,69,80,76,65,67,69,65,76,76,34,62,10,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,60,108,97,98,101,108,62,82,101,112,108,97,99,101,32,38,97,109,
|
||||
112,59,65,108,108,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,60,116,111,111,108,116,105,112,62,70,105,110,100,32,97,
|
||||
110,100,32,114,101,112,108,97,99,101,32,97,108,108,32,111,99,99,117,114,
|
||||
114,101,110,99,101,115,32,111,102,32,116,104,101,32,115,112,101,99,105,
|
||||
102,105,101,100,32,116,101,120,116,60,47,116,111,111,108,116,105,112,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,102,108,97,103,62,119,120,69,88,
|
||||
80,65,78,68,124,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,69,82,
|
||||
84,73,67,65,76,124,119,120,84,79,80,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,60,98,111,114,100,101,114,62,52,60,47,98,111,114,100,101,114,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,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,
|
||||
60,102,108,97,103,62,119,120,69,88,80,65,78,68,124,119,120,65,76,73,71,
|
||||
78,95,67,69,78,84,82,69,95,86,69,82,84,73,67,65,76,124,119,120,84,79,80,
|
||||
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,60,98,111,114,100,101,114,62,52,60,47,98,
|
||||
111,114,100,101,114,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,105,122,101,114,105,116,101,109,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,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,60,99,111,108,115,62,51,60,47,99,111,108,115,62,10,32,32,32,32,32,
|
||||
32,32,32,32,32,60,103,114,111,119,97,98,108,101,99,111,108,115,62,50,60,
|
||||
47,103,114,111,119,97,98,108,101,99,111,108,115,62,10,32,32,32,32,32,32,
|
||||
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,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,99,104,107,79,112,116,105,111,110,115,65,108,108,70,105,110,100,34,62,
|
||||
10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,65,
|
||||
108,108,32,102,105,110,100,32,116,97,98,115,60,47,108,97,98,101,108,62,
|
||||
10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,111,111,108,116,105,
|
||||
112,62,65,108,108,32,102,105,110,100,32,116,97,98,115,60,47,116,111,111,
|
||||
108,116,105,112,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,102,108,97,
|
||||
103,62,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,69,82,84,73,67,
|
||||
65,76,124,119,120,84,79,80,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,60,
|
||||
98,111,114,100,101,114,62,52,60,47,98,111,114,100,101,114,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,115,105,
|
||||
122,101,114,105,116,101,109,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,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,60,99,111,108,115,62,49,60,47,99,111,108,115,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,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,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,115,98,79,114,105,103,105,110,34,62,10,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,105,
|
||||
103,105,110,60,47,108,97,98,101,108,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,119,120,66,117,116,
|
||||
116,111,110,34,32,110,97,109,101,61,34,119,120,73,68,95,82,69,80,76,65,
|
||||
67,69,65,76,76,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,
|
||||
97,98,101,108,62,82,101,112,108,97,99,101,32,38,97,109,112,59,65,108,108,
|
||||
60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
60,116,111,111,108,116,105,112,62,70,105,110,100,32,97,110,100,32,114,101,
|
||||
112,108,97,99,101,32,97,108,108,32,111,99,99,117,114,114,101,110,99,101,
|
||||
115,32,111,102,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,
|
||||
116,101,120,116,60,47,116,111,111,108,116,105,112,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,102,108,97,103,62,119,120,69,88,80,65,78,68,124,119,
|
||||
120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,69,82,84,73,67,65,76,124,
|
||||
119,120,84,79,80,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,60,98,111,114,
|
||||
100,101,114,62,52,60,47,98,111,114,100,101,114,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,60,
|
||||
47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,60,102,108,97,103,
|
||||
62,119,120,69,88,80,65,78,68,124,119,120,65,76,73,71,78,95,67,69,78,84,
|
||||
82,69,95,86,69,82,84,73,67,65,76,124,119,120,84,79,80,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,60,98,111,114,100,101,114,62,52,60,47,98,111,114,100,101,114,
|
||||
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,105,122,101,
|
||||
114,105,116,101,109,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,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,60,99,111,108,
|
||||
115,62,51,60,47,99,111,108,115,62,10,32,32,32,32,32,32,32,32,32,32,60,103,
|
||||
114,111,119,97,98,108,101,99,111,108,115,62,50,60,47,103,114,111,119,97,
|
||||
98,108,101,99,111,108,115,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,115,105,122,101,114,105,116,101,
|
||||
109,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,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,60,99,111,
|
||||
108,115,62,49,60,47,99,111,108,115,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,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,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,115,98,79,
|
||||
114,105,103,105,110,34,62,10,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,105,103,105,110,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,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,60,102,108,97,103,62,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,
|
||||
86,69,82,84,73,67,65,76,124,119,120,84,79,80,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,60,98,111,114,100,101,114,62,52,60,47,98,111,
|
||||
114,100,101,114,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,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,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,114,100,79,114,105,103,
|
||||
105,110,67,117,114,115,111,114,34,62,10,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,70,114,111,109,32,116,104,
|
||||
101,32,99,117,114,115,111,114,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,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,60,118,97,108,117,101,62,49,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,60,116,111,111,108,116,105,112,62,66,101,103,105,110,32,115,101,
|
||||
97,114,99,104,105,110,103,32,97,116,32,116,104,101,32,99,117,114,114,101,
|
||||
110,116,32,99,117,114,115,111,114,32,112,111,115,105,116,105,111,110,60,
|
||||
47,116,111,111,108,116,105,112,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,32,32,60,102,108,97,103,62,119,120,65,76,73,71,78,95,67,
|
||||
69,78,84,82,69,95,86,69,82,84,73,67,65,76,124,119,120,84,79,80,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,60,98,111,114,100,101,114,
|
||||
62,52,60,47,98,111,114,100,101,114,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,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,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,
|
||||
114,100,79,114,105,103,105,110,84,111,112,34,62,10,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,70,114,111,109,
|
||||
32,116,104,101,32,116,111,112,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,60,116,111,111,108,116,105,112,
|
||||
62,66,101,103,105,110,32,115,101,97,114,99,104,105,110,103,32,97,116,32,
|
||||
116,104,101,32,116,111,112,32,111,102,32,116,104,101,32,116,101,120,116,
|
||||
60,47,116,111,111,108,116,105,112,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,32,32,60,102,108,97,103,62,119,120,65,76,73,71,78,95,
|
||||
67,69,78,84,82,69,95,86,69,82,84,73,67,65,76,124,119,120,84,79,80,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,60,98,111,114,100,101,114,
|
||||
62,52,60,47,98,111,114,100,101,114,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,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,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,115,
|
||||
98,68,105,114,101,99,116,105,111,110,34,62,10,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,114,101,99,116,
|
||||
105,111,110,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,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,60,102,108,97,103,62,119,120,65,76,73,71,78,
|
||||
95,67,69,78,84,82,69,95,86,69,82,84,73,67,65,76,124,119,120,84,79,80,124,
|
||||
|
|
@ -6254,17 +6320,60 @@ static unsigned char xml_res_file_17[] = {
|
|||
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,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,
|
||||
114,100,79,114,105,103,105,110,67,117,114,115,111,114,34,62,10,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,70,
|
||||
114,111,109,32,116,104,101,32,99,117,114,115,111,114,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,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,60,118,
|
||||
97,108,117,101,62,49,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,60,116,111,111,108,116,105,112,62,66,101,
|
||||
103,105,110,32,115,101,97,114,99,104,105,110,103,32,97,116,32,116,104,101,
|
||||
32,99,117,114,114,101,110,116,32,99,117,114,115,111,114,32,112,111,115,
|
||||
105,116,105,111,110,60,47,116,111,111,108,116,105,112,62,10,32,32,32,32,
|
||||
114,100,68,105,114,101,99,116,105,111,110,70,111,114,119,97,114,100,34,
|
||||
62,10,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,70,111,114,119,97,114,100,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,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,60,118,97,108,117,
|
||||
101,62,49,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,60,116,111,111,108,116,105,112,62,83,101,97,114,
|
||||
99,104,32,102,111,114,119,97,114,100,115,32,116,104,114,111,117,103,104,
|
||||
32,116,104,101,32,116,101,120,116,60,47,116,111,111,108,116,105,112,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,32,32,60,102,108,
|
||||
97,103,62,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,69,82,84,73,
|
||||
67,65,76,124,119,120,84,79,80,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,60,98,111,114,100,101,114,62,52,60,47,98,111,114,100,101,114,
|
||||
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,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,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,114,100,68,105,114,101,99,116,105,111,
|
||||
110,66,97,99,107,119,97,114,100,34,62,10,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,66,97,99,107,119,97,114,
|
||||
100,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,60,116,111,111,108,116,105,112,62,83,101,97,114,99,
|
||||
104,32,98,97,99,107,119,97,114,100,115,32,116,104,114,111,117,103,104,32,
|
||||
116,104,101,32,116,101,120,116,60,47,116,111,111,108,116,105,112,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,32,32,60,102,108,97,
|
||||
103,62,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,69,82,84,73,67,
|
||||
65,76,124,119,120,84,79,80,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,60,98,111,114,100,101,114,62,52,60,47,98,111,114,100,101,114,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,102,108,97,103,62,119,120,69,
|
||||
88,80,65,78,68,124,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,69,
|
||||
82,84,73,67,65,76,124,119,120,84,79,80,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,60,98,111,114,100,101,114,62,52,60,47,98,111,114,100,101,114,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,115,105,122,101,114,105,116,101,109,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,
|
||||
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,60,99,111,108,115,62,49,60,47,99,111,108,115,
|
||||
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,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,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,115,98,79,112,116,105,111,110,115,34,62,10,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,112,116,105,111,110,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,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,60,102,108,97,103,62,119,120,
|
||||
65,76,73,71,78,95,67,69,78,84,82,69,95,86,69,82,84,73,67,65,76,124,119,
|
||||
|
|
@ -6275,67 +6384,49 @@ static unsigned char xml_res_file_17[] = {
|
|||
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,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,114,100,79,114,105,103,105,110,84,111,112,34,62,10,
|
||||
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,70,114,111,109,32,116,104,101,32,116,111,112,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,60,116,
|
||||
111,111,108,116,105,112,62,66,101,103,105,110,32,115,101,97,114,99,104,
|
||||
105,110,103,32,97,116,32,116,104,101,32,116,111,112,32,111,102,32,116,104,
|
||||
101,32,116,101,120,116,60,47,116,111,111,108,116,105,112,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,32,32,60,102,108,97,103,62,119,
|
||||
120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,69,82,84,73,67,65,76,124,
|
||||
119,120,84,79,80,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,
|
||||
60,98,111,114,100,101,114,62,52,60,47,98,111,114,100,101,114,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,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,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,115,98,68,105,114,101,99,116,105,111,110,34,62,10,32,32,
|
||||
97,115,115,61,34,119,120,67,104,101,99,107,66,111,120,34,32,110,97,109,
|
||||
101,61,34,99,104,107,79,112,116,105,111,110,115,87,104,111,108,101,87,111,
|
||||
114,100,34,62,10,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,87,104,111,108,101,32,119,111,114,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,60,116,111,111,108,116,105,112,62,77,97,116,99,104,32,111,110,32,119,
|
||||
104,111,108,101,32,119,111,114,100,115,60,47,116,111,111,108,116,105,112,
|
||||
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,32,32,60,102,
|
||||
108,97,103,62,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,69,82,84,
|
||||
73,67,65,76,124,119,120,84,79,80,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,60,98,111,114,100,101,114,62,52,60,47,98,111,114,100,101,
|
||||
114,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,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,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,99,104,107,79,112,116,105,111,110,115,77,97,
|
||||
116,99,104,67,97,115,101,34,62,10,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,77,97,116,99,104,32,99,97,115,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,60,116,111,111,108,116,105,112,62,77,97,116,99,104,32,116,104,
|
||||
101,32,99,97,115,101,32,111,102,32,116,104,101,32,116,101,120,116,60,47,
|
||||
116,111,111,108,116,105,112,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,32,32,60,102,108,97,103,62,119,120,65,76,73,71,78,95,67,69,
|
||||
78,84,82,69,95,86,69,82,84,73,67,65,76,124,119,120,84,79,80,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,60,98,111,114,100,101,114,62,
|
||||
52,60,47,98,111,114,100,101,114,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,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,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,99,104,107,79,112,
|
||||
116,105,111,110,115,85,115,101,82,101,103,101,120,112,115,34,62,10,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,114,101,99,116,105,111,110,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,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,60,102,108,97,103,62,119,
|
||||
120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,69,82,84,73,67,65,76,124,
|
||||
119,120,84,79,80,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,
|
||||
60,98,111,114,100,101,114,62,52,60,47,98,111,114,100,101,114,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,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,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,114,100,68,105,114,101,99,116,105,111,110,70,111,114,
|
||||
119,97,114,100,34,62,10,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,70,111,114,119,97,114,100,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,
|
||||
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,
|
||||
60,118,97,108,117,101,62,49,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,60,116,111,111,108,116,105,112,
|
||||
62,83,101,97,114,99,104,32,102,111,114,119,97,114,100,115,32,116,104,114,
|
||||
111,117,103,104,32,116,104,101,32,116,101,120,116,60,47,116,111,111,108,
|
||||
116,105,112,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,32,
|
||||
32,60,102,108,97,103,62,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,
|
||||
86,69,82,84,73,67,65,76,124,119,120,84,79,80,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,60,98,111,114,100,101,114,62,52,60,47,98,111,
|
||||
114,100,101,114,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,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,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,114,100,68,105,114,101,
|
||||
99,116,105,111,110,66,97,99,107,119,97,114,100,34,62,10,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,66,97,99,
|
||||
107,119,97,114,100,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,60,116,111,111,108,116,105,112,62,83,
|
||||
101,97,114,99,104,32,98,97,99,107,119,97,114,100,115,32,116,104,114,111,
|
||||
117,103,104,32,116,104,101,32,116,101,120,116,60,47,116,111,111,108,116,
|
||||
82,101,103,117,108,97,114,32,101,120,112,114,101,115,115,105,111,110,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,60,116,111,111,108,116,105,112,62,85,115,101,32,114,101,103,
|
||||
117,108,97,114,32,101,120,112,114,101,115,115,105,111,110,115,32,119,104,
|
||||
101,110,32,115,101,97,114,99,104,105,110,103,60,47,116,111,111,108,116,
|
||||
105,112,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,32,32,
|
||||
60,102,108,97,103,62,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,
|
||||
|
|
@ -6351,121 +6442,42 @@ static unsigned char xml_res_file_17[] = {
|
|||
32,32,32,32,32,60,98,111,114,100,101,114,62,52,60,47,98,111,114,100,101,
|
||||
114,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,115,105,122,101,114,105,116,101,109,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,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,60,99,111,108,115,62,49,60,47,99,
|
||||
111,108,115,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,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,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,115,98,79,112,116,105,111,110,115,34,
|
||||
62,10,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,112,116,105,111,110,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,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,60,102,108,97,103,
|
||||
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,60,115,105,122,101,62,48,44,48,100,60,47,115,105,122,101,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,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,
|
||||
60,102,108,97,103,62,119,120,69,88,80,65,78,68,124,119,120,65,76,73,71,
|
||||
78,95,67,69,78,84,82,69,95,86,69,82,84,73,67,65,76,124,119,120,84,79,80,
|
||||
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,60,98,111,114,100,101,114,62,52,60,47,98,
|
||||
111,114,100,101,114,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,105,122,101,114,105,116,101,109,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,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,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,60,103,114,111,119,97,98,108,101,99,111,108,115,62,48,60,
|
||||
47,103,114,111,119,97,98,108,101,99,111,108,115,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,115,112,
|
||||
97,99,101,114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,115,105,122,
|
||||
101,62,48,44,48,100,60,47,115,105,122,101,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,115,105,122,101,114,105,
|
||||
116,101,109,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,66,117,116,116,111,110,34,
|
||||
32,110,97,109,101,61,34,119,120,73,68,95,67,65,78,67,69,76,34,62,10,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,38,97,109,
|
||||
112,59,67,108,111,115,101,60,47,108,97,98,101,108,62,10,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,60,116,111,111,108,116,105,112,62,67,108,111,
|
||||
115,101,32,116,104,101,32,100,105,97,108,111,103,60,47,116,111,111,108,
|
||||
116,105,112,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,102,108,97,103,
|
||||
62,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,69,82,84,73,67,65,
|
||||
76,124,119,120,84,79,80,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,60,98,111,114,100,101,114,62,52,60,47,98,111,114,100,101,114,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,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,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,99,104,107,79,112,116,105,111,110,115,87,104,111,108,101,
|
||||
87,111,114,100,34,62,10,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,87,104,111,108,101,32,119,111,114,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,60,116,111,111,108,116,105,112,62,77,97,116,99,104,32,111,110,
|
||||
32,119,104,111,108,101,32,119,111,114,100,115,60,47,116,111,111,108,116,
|
||||
105,112,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,32,32,
|
||||
60,102,108,97,103,62,119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,
|
||||
69,82,84,73,67,65,76,124,119,120,84,79,80,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,60,98,111,114,100,101,114,62,52,60,47,98,111,114,100,
|
||||
101,114,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,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,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,99,104,107,79,112,116,105,111,110,115,77,
|
||||
97,116,99,104,67,97,115,101,34,62,10,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,77,97,116,99,104,32,99,97,115,
|
||||
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,60,116,111,111,108,116,105,112,62,77,97,116,99,104,32,116,
|
||||
104,101,32,99,97,115,101,32,111,102,32,116,104,101,32,116,101,120,116,60,
|
||||
47,116,111,111,108,116,105,112,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,32,32,60,102,108,97,103,62,119,120,65,76,73,71,78,95,67,
|
||||
69,78,84,82,69,95,86,69,82,84,73,67,65,76,124,119,120,84,79,80,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,60,98,111,114,100,101,114,
|
||||
62,52,60,47,98,111,114,100,101,114,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,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,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,99,104,107,
|
||||
79,112,116,105,111,110,115,85,115,101,82,101,103,101,120,112,115,34,62,
|
||||
10,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,101,103,117,108,97,114,32,101,120,112,114,101,115,115,105,111,
|
||||
110,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,60,116,111,111,108,116,105,112,62,85,115,101,32,114,
|
||||
101,103,117,108,97,114,32,101,120,112,114,101,115,115,105,111,110,115,32,
|
||||
119,104,101,110,32,115,101,97,114,99,104,105,110,103,60,47,116,111,111,
|
||||
108,116,105,112,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,
|
||||
32,32,60,102,108,97,103,62,119,120,65,76,73,71,78,95,67,69,78,84,82,69,
|
||||
95,86,69,82,84,73,67,65,76,124,119,120,84,79,80,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,60,98,111,114,100,101,114,62,52,60,47,98,
|
||||
111,114,100,101,114,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,102,
|
||||
108,97,103,62,119,120,69,88,80,65,78,68,124,119,120,65,76,73,71,78,95,67,
|
||||
69,78,84,82,69,95,86,69,82,84,73,67,65,76,124,119,120,84,79,80,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,60,98,111,114,100,101,114,62,52,60,47,
|
||||
98,111,114,100,101,114,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,115,112,97,99,101,114,34,62,10,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,60,115,105,122,101,62,48,44,48,100,60,47,115,
|
||||
105,122,101,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,60,47,111,98,106,101,99,116,62,10,32,
|
||||
32,32,32,32,32,32,32,60,102,108,97,103,62,119,120,69,88,80,65,78,68,124,
|
||||
119,120,65,76,73,71,78,95,67,69,78,84,82,69,95,86,69,82,84,73,67,65,76,
|
||||
124,119,120,84,79,80,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,60,98,111,114,100,101,
|
||||
114,62,52,60,47,98,111,114,100,101,114,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,105,122,101,114,105,116,101,109,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,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,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,60,103,114,111,119,97,98,108,101,99,111,108,
|
||||
115,62,48,60,47,103,114,111,119,97,98,108,101,99,111,108,115,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,115,112,97,99,101,114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,
|
||||
115,105,122,101,62,48,44,48,100,60,47,115,105,122,101,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,115,105,122,
|
||||
101,114,105,116,101,109,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,66,117,116,116,
|
||||
111,110,34,32,110,97,109,101,61,34,119,120,73,68,95,67,65,78,67,69,76,34,
|
||||
62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,
|
||||
38,97,109,112,59,67,108,111,115,101,60,47,108,97,98,101,108,62,10,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,60,116,111,111,108,116,105,112,62,67,
|
||||
108,111,115,101,32,116,104,101,32,100,105,97,108,111,103,60,47,116,111,
|
||||
111,108,116,105,112,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,102,108,
|
||||
97,103,62,119,120,65,76,73,71,78,95,67,69,78,84,82,69,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,60,98,111,114,100,101,114,62,52,60,47,98,111,114,100,
|
||||
101,114,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,60,47,111,98,106,101,99,116,62,10,32,32,32,
|
||||
32,32,32,32,32,60,102,108,97,103,62,119,120,69,88,80,65,78,68,124,119,120,
|
||||
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,60,98,111,114,100,101,114,62,52,60,47,98,111,114,100,101,
|
||||
114,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,60,47,111,98,106,101,99,116,62,10,32,32,32,32,
|
||||
32,32,32,32,60,102,108,97,103,62,119,120,69,88,80,65,78,68,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,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,60,47,111,98,106,101,99,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue