diff --git a/applications/lazimageeditor/DLBitmap.pas b/applications/lazimageeditor/DLBitmap.pas
index fd3427748..e4b7b8c1e 100644
--- a/applications/lazimageeditor/DLBitmap.pas
+++ b/applications/lazimageeditor/DLBitmap.pas
@@ -68,6 +68,7 @@ type
procedure Brightness(ValueChange: integer);
procedure Contrast(ValueChange: integer);
procedure ColorReplace(ColorFrom, ColorTo: TColor);
+ procedure ReplaceRectColor(ColorFrom, ColorTo: TColor; aRect: TRect; R: integer; Shape: TShapeType);
property ScanLine[Row: integer]: pRGBATriple read GetScanLine;
procedure FillEllipse(X1, Y1, X2, Y2: integer); virtual;
procedure CutToClipboard; virtual;
@@ -539,6 +540,32 @@ begin
DLBMPColorReplace(Self, ColorFrom, ColorTo);
end;
+procedure TDLBitmap.ReplaceRectColor(ColorFrom, ColorTo: TColor; aRect: TRect; R: integer; Shape: TShapeType);
+var maskbmp: TDLBitmap; i, j: integer;
+begin
+ maskbmp := TDLBitmap.Create;
+ maskbmp.Width := aRect.Right - aRect.Left;
+ maskbmp.Height := aRect.Bottom - aRect.Top;
+ maskbmp.Canvas.Brush.Color := clWhite;
+ maskbmp.Canvas.Brush.Style := bsSolid;
+ maskbmp.Canvas.Pen.Color := clWhite;
+ maskbmp.Canvas.Rectangle(0, 0, Width, Height);
+ maskbmp.Canvas.Brush.Color := clBlack;
+ maskbmp.Canvas.Pen.Color := clBlack;
+ case Shape of
+ stRectangle: maskbmp.Canvas.Rectangle(0, 0, maskbmp.Width, maskbmp.Height);
+ stRoundRect: maskbmp.Canvas.RoundRect(0, 0, maskbmp.Width, maskbmp.Height, R, R);
+ stEllipse : maskbmp.Canvas.Ellipse(0, 0, maskbmp.Width, maskbmp.Height);
+ end;
+ for i := 0 to maskbmp.Width do
+ for j := 0 to maskbmp.Height do
+ if maskbmp.Pixels[i, j] = clBlack then
+ if Pixels[aRect.Left + i, aRect.Top + j] = ColorFrom then
+ Pixels[aRect.Left + i, aRect.Top + j] := ColorTo;
+ InvalidateScanline;
+ maskbmp.Free;
+end;
+
constructor TTextEdit.Create(AOwner: TComponent);
begin
inherited;
diff --git a/applications/lazimageeditor/lazimageeditor.lpi b/applications/lazimageeditor/lazimageeditor.lpi
index 4a56a96c8..34fe4afab 100644
--- a/applications/lazimageeditor/lazimageeditor.lpi
+++ b/applications/lazimageeditor/lazimageeditor.lpi
@@ -41,7 +41,7 @@
-
+
@@ -49,7 +49,7 @@
-
+
@@ -60,21 +60,20 @@
-
-
-
+
+
+
-
-
+
-
-
-
+
+
+
@@ -177,10 +176,12 @@
+
-
-
+
+
+
@@ -241,11 +242,11 @@
-
+
-
-
-
+
+
+
@@ -356,11 +357,12 @@
-
+
+
-
-
-
+
+
+
@@ -389,11 +391,11 @@
-
+
-
+
@@ -426,127 +428,135 @@
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
diff --git a/applications/lazimageeditor/main.lfm b/applications/lazimageeditor/main.lfm
index ce517bb29..369d16449 100644
--- a/applications/lazimageeditor/main.lfm
+++ b/applications/lazimageeditor/main.lfm
@@ -1,10 +1,10 @@
object MainForm: TMainForm
- Left = 150
+ Left = 90
Height = 681
- Top = 63
+ Top = 90
Width = 920
Caption = 'Lazarus Image Editor'
- ClientHeight = 661
+ ClientHeight = 659
ClientWidth = 920
Font.CharSet = GB2312_CHARSET
Font.Height = -13
@@ -18,18 +18,18 @@
LCLVersion = '0.9.31'
object PanelTools: TPanel
Left = 0
- Height = 534
+ Height = 532
Top = 105
Width = 40
Align = alLeft
BevelOuter = bvNone
- ClientHeight = 534
+ ClientHeight = 532
ClientWidth = 40
ParentColor = False
TabOrder = 0
object ToolBarTools: TToolBar
Left = 0
- Height = 534
+ Height = 532
Top = 0
Width = 40
Align = alLeft
@@ -160,22 +160,32 @@
Grouped = True
ImageIndex = 5
OnClick = ToolBrushClick
+ Style = tbsCheck
end
object ToolText: TToolButton
Left = 0
Hint = 'Text'
Top = 442
- Caption = 'ToolBrush'
Grouped = True
ImageIndex = 5
OnClick = ToolTextClick
+ Style = tbsCheck
+ end
+ object ToolcolorReplacer: TToolButton
+ Left = 0
+ Hint = 'Institute Color'
+ Top = 482
+ Grouped = True
+ ImageIndex = 5
+ OnClick = ToolcolorReplacerClick
+ Style = tbsCheck
end
end
end
object StatusBar: TStatusBar
Left = 0
Height = 22
- Top = 639
+ Top = 637
Width = 920
Panels = <
item
@@ -202,18 +212,18 @@
end
object PanelPallete: TPanel
Left = 845
- Height = 534
+ Height = 532
Top = 105
Width = 75
Align = alRight
AutoSize = True
BevelOuter = bvNone
- ClientHeight = 534
+ ClientHeight = 532
ClientWidth = 75
TabOrder = 1
object Palette: TColorPalette
Left = 0
- Height = 534
+ Height = 532
Top = 0
Width = 75
Align = alClient
@@ -1375,9 +1385,9 @@
TabOrder = 5
object checkFuzzy: TCheckBox
Left = 4
- Height = 21
+ Height = 23
Top = 5
- Width = 22
+ Width = 24
OnChange = checkFuzzyChange
TabOrder = 0
end
@@ -1386,7 +1396,7 @@
end
object PanelPictures: TPanel
Left = 40
- Height = 534
+ Height = 532
Top = 105
Width = 805
Align = alClient
diff --git a/applications/lazimageeditor/main.lrs b/applications/lazimageeditor/main.lrs
index c219cc83f..5aea095ef 100644
--- a/applications/lazimageeditor/main.lrs
+++ b/applications/lazimageeditor/main.lrs
@@ -1,27 +1,27 @@
{ This is an automatically generated lazarus resource file }
LazarusResources.Add('TMainForm','FORMDATA',[
- 'TPF0'#9'TMainForm'#8'MainForm'#4'Left'#3#150#0#6'Height'#3#169#2#3'Top'#2'?'
- +#5'Width'#3#152#3#7'Caption'#6#20'Lazarus Image Editor'#12'ClientHeight'#3
- +#149#2#11'ClientWidth'#3#152#3#12'Font.CharSet'#7#14'GB2312_CHARSET'#11'Font'
- +'.Height'#2#243#9'Font.Name'#6#12#229#190#174#232#189#175#233#155#133#233#187
- +#145#10'Font.Pitch'#7#10'fpVariable'#12'Font.Quality'#7#7'fqDraft'#4'Menu'#7
- +#8'MainMenu'#12'OnCloseQuery'#7#14'FormCloseQuery'#8'OnCreate'#7#10'FormCrea'
- +'te'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.31'#0#6'TPanel'#10'Panel'
- +'Tools'#4'Left'#2#0#6'Height'#3#22#2#3'Top'#2'i'#5'Width'#2'('#5'Align'#7#6
- +'alLeft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#3#22#2#11'ClientWidth'#2
- +'('#11'ParentColor'#8#8'TabOrder'#2#0#0#8'TToolBar'#12'ToolBarTools'#4'Left'
- +#2#0#6'Height'#3#22#2#3'Top'#2#0#5'Width'#2'('#5'Align'#7#6'alLeft'#12'Butto'
- +'nHeight'#2'('#11'ButtonWidth'#2'('#7'Caption'#6#12'ToolBarTools'#21'Constra'
- +'ints.MinHeight'#3#146#1#6'Images'#7#14'ImageListTools'#6'Indent'#2#0#8'TabO'
- +'rder'#2#0#7'OnClick'#7#17'ToolBarToolsClick'#0#11'TToolButton'#9'ToolSpray'
- +#4'Left'#2#0#4'Hint'#6#5'Spray'#3'Top'#3'j'#1#7'Grouped'#9#10'ImageIndex'#2#9
- +#7'OnClick'#7#14'ToolSprayClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'
- +#7#8'tbsCheck'#0#0#11'TToolButton'#13'ToolFloodFill'#4'Left'#2#0#4'Hint'#6#10
- +'Flood Fill'#3'Top'#3'B'#1#7'Grouped'#9#10'ImageIndex'#2#8#7'OnClick'#7#18'T'
- +'oolFloodFillClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'
- +#0#0#11'TToolButton'#10'ToolEraser'#4'Left'#2#0#4'Hint'#6#15'Eraser/Replacer'
- +#3'Top'#2'z'#7'Grouped'#9#10'ImageIndex'#2#3#7'OnClick'#7#15'ToolEraserClick'
+ 'TPF0'#9'TMainForm'#8'MainForm'#4'Left'#2'Z'#6'Height'#3#169#2#3'Top'#2'Z'#5
+ +'Width'#3#152#3#7'Caption'#6#20'Lazarus Image Editor'#12'ClientHeight'#3#147
+ +#2#11'ClientWidth'#3#152#3#12'Font.CharSet'#7#14'GB2312_CHARSET'#11'Font.Hei'
+ +'ght'#2#243#9'Font.Name'#6#12#229#190#174#232#189#175#233#155#133#233#187#145
+ +#10'Font.Pitch'#7#10'fpVariable'#12'Font.Quality'#7#7'fqDraft'#4'Menu'#7#8'M'
+ +'ainMenu'#12'OnCloseQuery'#7#14'FormCloseQuery'#8'OnCreate'#7#10'FormCreate'
+ +#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.31'#0#6'TPanel'#10'PanelTool'
+ +'s'#4'Left'#2#0#6'Height'#3#20#2#3'Top'#2'i'#5'Width'#2'('#5'Align'#7#6'alLe'
+ +'ft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#3#20#2#11'ClientWidth'#2'('
+ +#11'ParentColor'#8#8'TabOrder'#2#0#0#8'TToolBar'#12'ToolBarTools'#4'Left'#2#0
+ +#6'Height'#3#20#2#3'Top'#2#0#5'Width'#2'('#5'Align'#7#6'alLeft'#12'ButtonHei'
+ +'ght'#2'('#11'ButtonWidth'#2'('#7'Caption'#6#12'ToolBarTools'#21'Constraints'
+ +'.MinHeight'#3#146#1#6'Images'#7#14'ImageListTools'#6'Indent'#2#0#8'TabOrder'
+ +#2#0#7'OnClick'#7#17'ToolBarToolsClick'#0#11'TToolButton'#9'ToolSpray'#4'Lef'
+ +'t'#2#0#4'Hint'#6#5'Spray'#3'Top'#3'j'#1#7'Grouped'#9#10'ImageIndex'#2#9#7'O'
+ +'nClick'#7#14'ToolSprayClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8
+ +'tbsCheck'#0#0#11'TToolButton'#13'ToolFloodFill'#4'Left'#2#0#4'Hint'#6#10'Fl'
+ +'ood Fill'#3'Top'#3'B'#1#7'Grouped'#9#10'ImageIndex'#2#8#7'OnClick'#7#18'Too'
+ +'lFloodFillClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0
+ +#0#11'TToolButton'#10'ToolEraser'#4'Left'#2#0#4'Hint'#6#15'Eraser/Replacer'#3
+ +'Top'#2'z'#7'Grouped'#9#10'ImageIndex'#2#3#7'OnClick'#7#15'ToolEraserClick'
+#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButto'
+'n'#7'ToolPen'#4'Left'#2#0#4'Hint'#6#3'Pen'#3'Top'#2'R'#7'Grouped'#9#10'Imag'
+'eIndex'#2#2#7'OnClick'#7#12'ToolPenClick'#14'ParentShowHint'#8#8'ShowHint'#9
@@ -44,143 +44,126 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#12'ToolEllClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0
+#0#11'TToolButton'#9'ToolBrush'#4'Left'#2#0#4'Hint'#6#5'Brush'#3'Top'#3#146#1
+#7'Caption'#6#9'ToolBrush'#7'Grouped'#9#10'ImageIndex'#2#5#7'OnClick'#7#14'T'
- +'oolBrushClick'#0#0#11'TToolButton'#8'ToolText'#4'Left'#2#0#4'Hint'#6#4'Text'
- +#3'Top'#3#186#1#7'Caption'#6#9'ToolBrush'#7'Grouped'#9#10'ImageIndex'#2#5#7
- +'OnClick'#7#13'ToolTextClick'#0#0#0#0#10'TStatusBar'#9'StatusBar'#4'Left'#2#0
- +#6'Height'#2#22#3'Top'#3#127#2#5'Width'#3#152#3#6'Panels'#14#1#5'Width'#3#250
- +#0#0#1#9'Alignment'#7#8'taCenter'#5'Width'#2'P'#0#1#9'Alignment'#7#8'taCente'
- +'r'#5'Width'#2'P'#0#1#5'Width'#2'P'#0#1#5'Width'#2'P'#0#1#5'Width'#2'2'#0#0
- +#11'SimplePanel'#8#0#0#6'TPanel'#12'PanelPallete'#4'Left'#3'M'#3#6'Height'#3
- +#22#2#3'Top'#2'i'#5'Width'#2'K'#5'Align'#7#7'alRight'#8'AutoSize'#9#10'Bevel'
- +'Outer'#7#6'bvNone'#12'ClientHeight'#3#22#2#11'ClientWidth'#2'K'#8'TabOrder'
- +#2#1#0#13'TColorPalette'#7'Palette'#4'Left'#2#0#6'Height'#3#22#2#3'Top'#2#0#5
- +'Width'#2'K'#5'Align'#7#8'alClient'#11'ButtonWidth'#2#12#12'ButtonHeight'#2
- +#12#8'DragMode'#7#11'dmAutomatic'#16'OnColorMouseMove'#7#21'PaletteColorMous'
- +'eMove'#11'OnColorPick'#7#16'PaletteColorPick'#0#0#0#6'TPanel'#12'PanelToolB'
- +'ar'#4'Left'#2#0#6'Height'#2'i'#3'Top'#2#0#5'Width'#3#152#3#5'Align'#7#5'alT'
- +'op'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'i'#11'ClientWidth'#3#152#3
- +#8'TabOrder'#2#2#0#6'TBevel'#6'Bevel1'#4'Left'#2#0#6'Height'#2#2#3'Top'#2'E'
- +#5'Width'#3#152#3#5'Align'#7#5'alTop'#5'Shape'#7#12'bsBottomLine'#0#0#6'TBev'
- +'el'#6'Bevel2'#4'Left'#2#0#6'Height'#2#2#3'Top'#2'!'#5'Width'#3#152#3#5'Alig'
- +'n'#7#5'alTop'#5'Shape'#7#12'bsBottomLine'#0#0#8'TToolBar'#7'ToolBar'#4'Left'
- +#2#0#6'Height'#2'!'#3'Top'#2#0#5'Width'#3#152#3#12'ButtonHeight'#2' '#11'But'
- +'tonWidth'#2'$'#5'Color'#7#9'clBtnFace'#11'EdgeBorders'#11#0#6'Images'#7#16
- ,'ImageListActions'#11'ParentColor'#8#8'TabOrder'#2#0#0#11'TToolButton'#9'Too'
- +'lClose'#4'Left'#2'm'#4'Hint'#6#5'Close'#3'Top'#2#0#7'Caption'#6#6'&Close'#10
- +'ImageIndex'#2#3#7'OnClick'#7#16'FileCloseExecute'#14'ParentShowHint'#8#8'Sh'
- +'owHint'#9#0#0#11'TToolButton'#8'ToolSave'#4'Left'#2'I'#4'Hint'#6#4'Save'#3
- +'Top'#2#0#7'Caption'#6#5'&Save'#10'ImageIndex'#2#2#7'OnClick'#7#15'FileSaveE'
- +'xecute'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#8'ToolOpen'#4
- +'Left'#2'%'#4'Hint'#6#4'Open'#3'Top'#2#0#7'Caption'#6#8'&Open...'#10'ImageIn'
- +'dex'#2#1#7'OnClick'#7#15'FileOpenExecute'#14'ParentShowHint'#8#8'ShowHint'#9
- +#0#0#11'TToolButton'#7'ToolNew'#4'Left'#2#1#4'Hint'#6#3'New'#3'Top'#2#0#7'Ca'
- +'ption'#6#7'&New...'#10'ImageIndex'#2#0#7'OnClick'#7#14'FileNewExecute'#14'P'
- +'arentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#11'ToolButton6'#4'Left'#3
- +#145#0#3'Top'#2#0#5'Width'#2#8#7'Caption'#6#11'ToolButton6'#5'Style'#7#12'tb'
- +'sSeparator'#0#0#11'TToolButton'#7'ToolCut'#4'Left'#3#233#0#4'Hint'#6#3'Cut'
- +#3'Top'#2#0#7'Caption'#6#4'Cu&t'#7'Enabled'#8#10'ImageIndex'#2#6#7'OnClick'#7
- +#14'EditCutExecute'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#11
- +'ToolButton8'#4'Left'#3#13#1#4'Hint'#6#4'Copy'#3'Top'#2#0#7'Caption'#6#5'&Co'
- +'py'#7'Enabled'#8#10'ImageIndex'#2#7#7'OnClick'#7#15'EditCopyExecute'#14'Par'
- +'entShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#11'ToolButton9'#4'Left'#3
- +'1'#1#4'Hint'#6#5'Paste'#3'Top'#2#0#7'Caption'#6#6'&Paste'#7'Enabled'#8#10'I'
- +'mageIndex'#2#8#7'OnClick'#7#16'EditPasteExecute'#14'ParentShowHint'#8#8'Sho'
- +'wHint'#9#0#0#11'TToolButton'#12'ToolButton10'#4'Left'#3'y'#1#3'Top'#2#0#5'W'
- +'idth'#2#8#7'Caption'#6#12'ToolButton10'#5'Style'#7#12'tbsSeparator'#0#0#11
- +'TToolButton'#12'ToolButton11'#4'Left'#3'U'#1#4'Hint'#6#6'Delete'#3'Top'#2#0
- +#7'Caption'#6#7'&Delete'#7'Enabled'#8#10'ImageIndex'#2#9#7'OnClick'#7#17'Edi'
- +'tDeleteExecute'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#8'To'
- +'olUndo'#4'Left'#3#153#0#4'Hint'#6#4'Undo'#3'Top'#2#0#7'Caption'#6#5'&Undo'#7
- +'Enabled'#8#10'ImageIndex'#2#4#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TTo'
- +'olButton'#11'ToolButton2'#4'Left'#3#225#0#3'Top'#2#0#5'Width'#2#8#7'Caption'
- +#6#11'ToolButton2'#5'Style'#7#12'tbsSeparator'#0#0#11'TToolButton'#8'ToolRed'
- +'o'#4'Left'#3#189#0#4'Hint'#6#4'Redo'#3'Top'#2#0#7'Caption'#6#5'&Redo'#7'Ena'
- +'bled'#8#10'ImageIndex'#2#5#14'ParentShowHint'#8#8'ShowHint'#9#0#0#6'TPanel'
- +#9'PanelZoom'#4'Left'#3#165#1#6'Height'#2' '#3'Top'#2#0#5'Width'#2'M'#10'Bev'
- +'elOuter'#7#6'bvNone'#12'ClientHeight'#2' '#11'ClientWidth'#2'M'#8'TabOrder'
- +#2#0#0#9'TComboBox'#12'ComboBoxZoom'#4'Left'#2#0#6'Height'#2#27#3'Top'#2#3#5
- +'Width'#2'L'#7'Anchors'#11#6'akLeft'#0#10'ItemHeight'#2#19#9'ItemIndex'#2#2
- +#13'Items.Strings'#1#6#4'25 %'#6#4'50 %'#6#5'100 %'#6#5'200 %'#6#5'400 %'#6#5
- +'800 %'#6#6'1000 %'#0#8'OnChange'#7#18'ComboBoxZoomChange'#13'OnEditingDone'
- +#7#23'ComboBoxZoomEditingDone'#14'ParentShowHint'#8#8'TabOrder'#2#0#4'Text'#6
- +#5'100 %'#0#0#0#11'TToolButton'#9'ZoomInBtn'#4'Left'#3#242#1#3'Top'#2#0#7'Ca'
- +'ption'#6#9'ZoomInBtn'#10'ImageIndex'#2#10#7'OnClick'#7#14'ZoomInBtnClick'#0
- +#0#11'TToolButton'#10'ZoomOutBtn'#4'Left'#3#129#1#3'Top'#2#0#7'Caption'#6#10
- +'ZoomOutBtn'#10'ImageIndex'#2#11#7'OnClick'#7#15'ZoomOutBtnClick'#0#0#11'TTo'
- +'olButton'#11'ToolButton1'#4'Left'#3#22#2#3'Top'#2#0#5'Width'#2#8#7'Caption'
- +#6#11'ToolButton1'#5'Style'#7#12'tbsSeparator'#0#0#6'TPanel'#6'Panel1'#4'Lef'
- +'t'#3#30#2#6'Height'#2' '#3'Top'#2#0#5'Width'#3#170#0#10'BevelOuter'#7#6'bvN'
- +'one'#12'ClientHeight'#2' '#11'ClientWidth'#3#170#0#8'TabOrder'#2#1#0#9'TCom'
- +'boBox'#11'FontListBox'#4'Left'#2#2#6'Height'#2#27#3'Top'#2#3#5'Width'#2'p'
- +#10'ItemHeight'#2#19#8'OnChange'#7#17'FontListBoxChange'#7'OnClick'#7#16'Fon'
- +'tListBoxClick'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#9'TSpinEdi'
- +'t'#8'FontSize'#4'Left'#2'u'#6'Height'#2#27#3'Top'#2#3#5'Width'#2'2'#8'OnCha'
- +'nge'#7#14'FontSizeChange'#8'TabOrder'#2#1#5'Value'#2#10#0#0#0#0#6'TPanel'#12
- +'PanelOptions'#4'Left'#2#0#6'Height'#2'"'#3'Top'#2'#'#5'Width'#3#152#3#5'Ali'
- +'gn'#7#5'alTop'#25'BorderSpacing.InnerBorder'#2#4#31'BorderSpacing.CellAlign'
- +'Vertical'#7#9'ccaCenter'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11
- +'ClientWidth'#3#152#3#8'TabOrder'#2#1#0#6'TLabel'#16'LabelFillOutline'#4'Lef'
- +'t'#2'g'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'H'#5'Align'#7#6'alLeft'#7'Capt'
- +'ion'#6#14'Fill, Outline:'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8'tlCe'
- +'nter'#11'ParentColor'#8#0#0#6'TLabel'#10'LabelShape'#4'Left'#2#0#6'Height'#2
- +'"'#3'Top'#2#0#5'Width'#2'*'#5'Align'#7#6'alLeft'#7'Caption'#6#6'Shape:'#21
- +'Constraints.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6
- +'TLabel'#13'LabelMaskTool'#4'Left'#3#2#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2
- +'C'#5'Align'#7#6'alLeft'#7'Caption'#6#10'Mask Tool:'#21'Constraints.MinHeigh'
- +'t'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TPanel'#11'PanelCol'
- +'ors'#4'Left'#3#196#2#6'Height'#2'"'#3'Top'#2#0#5'Width'#3#212#0#5'Align'#7#7
- ,'alRight'#8'AutoSize'#9#25'BorderSpacing.InnerBorder'#2#4'!BorderSpacing.Cel'
- +'lAlignHorizontal'#7#10'ccaLeftTop'#31'BorderSpacing.CellAlignVertical'#7#9
- +'ccaCenter'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'
- +#3#212#0#8'TabOrder'#2#0#0#6'TLabel'#12'LabelOutline'#4'Left'#2#8#6'Height'#2
- +'"'#3'Top'#2#0#5'Width'#2'1'#5'Align'#7#7'alRight'#7'Caption'#6#8'Outline:'#6
- +'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#9'LabelFill'#4'Left'#2
- +'Y'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2#20#5'Align'#7#7'alRight'#7'Caption'
- +#6#5'Fill:'#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#10'Label'
- +'Paper'#4'Left'#3#141#0#6'Height'#2'"'#3'Top'#2#0#5'Width'#2''''#5'Align'#7#7
- +'alRight'#7'Caption'#6#6'Paper:'#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0
- +#0#6'TPanel'#12'PanelOutline'#4'Left'#2'?'#6'Height'#2#22#3'Top'#2#6#5'Width'
- +#2#20#5'Align'#7#7'alRight'#20'BorderSpacing.Around'#2#6#10'BevelInner'#7#9
- +'bvLowered'#5'Color'#7#7'clWhite'#8'DragMode'#7#11'dmAutomatic'#11'ParentCol'
- +'or'#8#8'TabOrder'#2#0#10'OnDragOver'#7#18'PanelPaperDragOver'#0#0#6'TPanel'
- +#9'PanelFill'#4'Left'#2's'#6'Height'#2#22#3'Top'#2#6#5'Width'#2#20#5'Align'#7
- +#7'alRight'#20'BorderSpacing.Around'#2#6#10'BevelInner'#7#9'bvLowered'#5'Col'
- +'or'#7#7'clWhite'#8'DragMode'#7#11'dmAutomatic'#11'ParentColor'#8#8'TabOrder'
- +#2#1#10'OnDragOver'#7#18'PanelPaperDragOver'#0#0#6'TPanel'#10'PanelPaper'#4
- +'Left'#3#186#0#6'Height'#2#22#3'Top'#2#6#5'Width'#2#20#5'Align'#7#7'alRight'
- +#20'BorderSpacing.Around'#2#6#10'BevelInner'#7#9'bvLowered'#5'Color'#7#7'clW'
- +'hite'#8'DragMode'#7#11'dmAutomatic'#11'ParentColor'#8#8'TabOrder'#2#2#10'On'
- +'DblClick'#7#18'PanelPaperDblClick'#10'OnDragOver'#7#18'PanelPaperDragOver'#0
- +#0#0#6'TPanel'#16'PanelFillOutline'#4'Left'#3#175#0#6'Height'#2'"'#3'Top'#2#0
- +#5'Width'#2'S'#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeig'
- +'ht'#2'"'#11'ClientWidth'#2'S'#8'TabOrder'#2#1#0#12'TSpeedButton'#15'ToolFil'
- +'lOutline'#4'Left'#2#4#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11
- +#6'akLeft'#0#4'Down'#9#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0
- +#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0
- +#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +'oolBrushClick'#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#8'ToolText'#4'Lef'
+ +'t'#2#0#4'Hint'#6#4'Text'#3'Top'#3#186#1#7'Grouped'#9#10'ImageIndex'#2#5#7'O'
+ +'nClick'#7#13'ToolTextClick'#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#17'T'
+ +'oolcolorReplacer'#4'Left'#2#0#4'Hint'#6#15'Institute Color'#3'Top'#3#226#1#7
+ +'Grouped'#9#10'ImageIndex'#2#5#7'OnClick'#7#22'ToolcolorReplacerClick'#5'Sty'
+ +'le'#7#8'tbsCheck'#0#0#0#0#10'TStatusBar'#9'StatusBar'#4'Left'#2#0#6'Height'
+ +#2#22#3'Top'#3'}'#2#5'Width'#3#152#3#6'Panels'#14#1#5'Width'#3#250#0#0#1#9'A'
+ +'lignment'#7#8'taCenter'#5'Width'#2'P'#0#1#9'Alignment'#7#8'taCenter'#5'Widt'
+ +'h'#2'P'#0#1#5'Width'#2'P'#0#1#5'Width'#2'P'#0#1#5'Width'#2'2'#0#0#11'Simple'
+ +'Panel'#8#0#0#6'TPanel'#12'PanelPallete'#4'Left'#3'M'#3#6'Height'#3#20#2#3'T'
+ +'op'#2'i'#5'Width'#2'K'#5'Align'#7#7'alRight'#8'AutoSize'#9#10'BevelOuter'#7
+ +#6'bvNone'#12'ClientHeight'#3#20#2#11'ClientWidth'#2'K'#8'TabOrder'#2#1#0#13
+ +'TColorPalette'#7'Palette'#4'Left'#2#0#6'Height'#3#20#2#3'Top'#2#0#5'Width'#2
+ +'K'#5'Align'#7#8'alClient'#11'ButtonWidth'#2#12#12'ButtonHeight'#2#12#8'Drag'
+ +'Mode'#7#11'dmAutomatic'#16'OnColorMouseMove'#7#21'PaletteColorMouseMove'#11
+ +'OnColorPick'#7#16'PaletteColorPick'#0#0#0#6'TPanel'#12'PanelToolBar'#4'Left'
+ +#2#0#6'Height'#2'i'#3'Top'#2#0#5'Width'#3#152#3#5'Align'#7#5'alTop'#10'Bevel'
+ +'Outer'#7#6'bvNone'#12'ClientHeight'#2'i'#11'ClientWidth'#3#152#3#8'TabOrder'
+ +#2#2#0#6'TBevel'#6'Bevel1'#4'Left'#2#0#6'Height'#2#2#3'Top'#2'E'#5'Width'#3
+ +#152#3#5'Align'#7#5'alTop'#5'Shape'#7#12'bsBottomLine'#0#0#6'TBevel'#6'Bevel'
+ +'2'#4'Left'#2#0#6'Height'#2#2#3'Top'#2'!'#5'Width'#3#152#3#5'Align'#7#5'alTo'
+ ,'p'#5'Shape'#7#12'bsBottomLine'#0#0#8'TToolBar'#7'ToolBar'#4'Left'#2#0#6'Hei'
+ +'ght'#2'!'#3'Top'#2#0#5'Width'#3#152#3#12'ButtonHeight'#2' '#11'ButtonWidth'
+ +#2'$'#5'Color'#7#9'clBtnFace'#11'EdgeBorders'#11#0#6'Images'#7#16'ImageListA'
+ +'ctions'#11'ParentColor'#8#8'TabOrder'#2#0#0#11'TToolButton'#9'ToolClose'#4
+ +'Left'#2'm'#4'Hint'#6#5'Close'#3'Top'#2#0#7'Caption'#6#6'&Close'#10'ImageInd'
+ +'ex'#2#3#7'OnClick'#7#16'FileCloseExecute'#14'ParentShowHint'#8#8'ShowHint'#9
+ +#0#0#11'TToolButton'#8'ToolSave'#4'Left'#2'I'#4'Hint'#6#4'Save'#3'Top'#2#0#7
+ +'Caption'#6#5'&Save'#10'ImageIndex'#2#2#7'OnClick'#7#15'FileSaveExecute'#14
+ +'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#8'ToolOpen'#4'Left'#2'%'
+ +#4'Hint'#6#4'Open'#3'Top'#2#0#7'Caption'#6#8'&Open...'#10'ImageIndex'#2#1#7
+ +'OnClick'#7#15'FileOpenExecute'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TT'
+ +'oolButton'#7'ToolNew'#4'Left'#2#1#4'Hint'#6#3'New'#3'Top'#2#0#7'Caption'#6#7
+ +'&New...'#10'ImageIndex'#2#0#7'OnClick'#7#14'FileNewExecute'#14'ParentShowHi'
+ +'nt'#8#8'ShowHint'#9#0#0#11'TToolButton'#11'ToolButton6'#4'Left'#3#145#0#3'T'
+ +'op'#2#0#5'Width'#2#8#7'Caption'#6#11'ToolButton6'#5'Style'#7#12'tbsSeparato'
+ +'r'#0#0#11'TToolButton'#7'ToolCut'#4'Left'#3#233#0#4'Hint'#6#3'Cut'#3'Top'#2
+ +#0#7'Caption'#6#4'Cu&t'#7'Enabled'#8#10'ImageIndex'#2#6#7'OnClick'#7#14'Edit'
+ +'CutExecute'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#11'ToolB'
+ +'utton8'#4'Left'#3#13#1#4'Hint'#6#4'Copy'#3'Top'#2#0#7'Caption'#6#5'&Copy'#7
+ +'Enabled'#8#10'ImageIndex'#2#7#7'OnClick'#7#15'EditCopyExecute'#14'ParentSho'
+ +'wHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#11'ToolButton9'#4'Left'#3'1'#1#4
+ +'Hint'#6#5'Paste'#3'Top'#2#0#7'Caption'#6#6'&Paste'#7'Enabled'#8#10'ImageInd'
+ +'ex'#2#8#7'OnClick'#7#16'EditPasteExecute'#14'ParentShowHint'#8#8'ShowHint'#9
+ +#0#0#11'TToolButton'#12'ToolButton10'#4'Left'#3'y'#1#3'Top'#2#0#5'Width'#2#8
+ +#7'Caption'#6#12'ToolButton10'#5'Style'#7#12'tbsSeparator'#0#0#11'TToolButto'
+ +'n'#12'ToolButton11'#4'Left'#3'U'#1#4'Hint'#6#6'Delete'#3'Top'#2#0#7'Caption'
+ +#6#7'&Delete'#7'Enabled'#8#10'ImageIndex'#2#9#7'OnClick'#7#17'EditDeleteExec'
+ +'ute'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#8'ToolUndo'#4'L'
+ +'eft'#3#153#0#4'Hint'#6#4'Undo'#3'Top'#2#0#7'Caption'#6#5'&Undo'#7'Enabled'#8
+ +#10'ImageIndex'#2#4#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#11
+ +'ToolButton2'#4'Left'#3#225#0#3'Top'#2#0#5'Width'#2#8#7'Caption'#6#11'ToolBu'
+ +'tton2'#5'Style'#7#12'tbsSeparator'#0#0#11'TToolButton'#8'ToolRedo'#4'Left'#3
+ +#189#0#4'Hint'#6#4'Redo'#3'Top'#2#0#7'Caption'#6#5'&Redo'#7'Enabled'#8#10'Im'
+ +'ageIndex'#2#5#14'ParentShowHint'#8#8'ShowHint'#9#0#0#6'TPanel'#9'PanelZoom'
+ +#4'Left'#3#165#1#6'Height'#2' '#3'Top'#2#0#5'Width'#2'M'#10'BevelOuter'#7#6
+ +'bvNone'#12'ClientHeight'#2' '#11'ClientWidth'#2'M'#8'TabOrder'#2#0#0#9'TCom'
+ +'boBox'#12'ComboBoxZoom'#4'Left'#2#0#6'Height'#2#27#3'Top'#2#3#5'Width'#2'L'
+ +#7'Anchors'#11#6'akLeft'#0#10'ItemHeight'#2#19#9'ItemIndex'#2#2#13'Items.Str'
+ +'ings'#1#6#4'25 %'#6#4'50 %'#6#5'100 %'#6#5'200 %'#6#5'400 %'#6#5'800 %'#6#6
+ +'1000 %'#0#8'OnChange'#7#18'ComboBoxZoomChange'#13'OnEditingDone'#7#23'Combo'
+ +'BoxZoomEditingDone'#14'ParentShowHint'#8#8'TabOrder'#2#0#4'Text'#6#5'100 %'
+ +#0#0#0#11'TToolButton'#9'ZoomInBtn'#4'Left'#3#242#1#3'Top'#2#0#7'Caption'#6#9
+ +'ZoomInBtn'#10'ImageIndex'#2#10#7'OnClick'#7#14'ZoomInBtnClick'#0#0#11'TTool'
+ +'Button'#10'ZoomOutBtn'#4'Left'#3#129#1#3'Top'#2#0#7'Caption'#6#10'ZoomOutBt'
+ +'n'#10'ImageIndex'#2#11#7'OnClick'#7#15'ZoomOutBtnClick'#0#0#11'TToolButton'
+ +#11'ToolButton1'#4'Left'#3#22#2#3'Top'#2#0#5'Width'#2#8#7'Caption'#6#11'Tool'
+ +'Button1'#5'Style'#7#12'tbsSeparator'#0#0#6'TPanel'#6'Panel1'#4'Left'#3#30#2
+ +#6'Height'#2' '#3'Top'#2#0#5'Width'#3#170#0#10'BevelOuter'#7#6'bvNone'#12'Cl'
+ +'ientHeight'#2' '#11'ClientWidth'#3#170#0#8'TabOrder'#2#1#0#9'TComboBox'#11
+ +'FontListBox'#4'Left'#2#2#6'Height'#2#27#3'Top'#2#3#5'Width'#2'p'#10'ItemHei'
+ +'ght'#2#19#8'OnChange'#7#17'FontListBoxChange'#7'OnClick'#7#16'FontListBoxCl'
+ +'ick'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#0#0#9'TSpinEdit'#8'FontS'
+ +'ize'#4'Left'#2'u'#6'Height'#2#27#3'Top'#2#3#5'Width'#2'2'#8'OnChange'#7#14
+ +'FontSizeChange'#8'TabOrder'#2#1#5'Value'#2#10#0#0#0#0#6'TPanel'#12'PanelOpt'
+ +'ions'#4'Left'#2#0#6'Height'#2'"'#3'Top'#2'#'#5'Width'#3#152#3#5'Align'#7#5
+ +'alTop'#25'BorderSpacing.InnerBorder'#2#4#31'BorderSpacing.CellAlignVertical'
+ +#7#9'ccaCenter'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWi'
+ +'dth'#3#152#3#8'TabOrder'#2#1#0#6'TLabel'#16'LabelFillOutline'#4'Left'#2'g'#6
+ +'Height'#2'"'#3'Top'#2#0#5'Width'#2'H'#5'Align'#7#6'alLeft'#7'Caption'#6#14
+ +'Fill, Outline:'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'P'
+ +'arentColor'#8#0#0#6'TLabel'#10'LabelShape'#4'Left'#2#0#6'Height'#2'"'#3'Top'
+ +#2#0#5'Width'#2'*'#5'Align'#7#6'alLeft'#7'Caption'#6#6'Shape:'#21'Constraint'
+ +'s.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#13
+ +'LabelMaskTool'#4'Left'#3#2#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'C'#5'Alig'
+ ,'n'#7#6'alLeft'#7'Caption'#6#10'Mask Tool:'#21'Constraints.MinHeight'#2' '#6
+ +'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TPanel'#11'PanelColors'#4'Lef'
+ +'t'#3#196#2#6'Height'#2'"'#3'Top'#2#0#5'Width'#3#212#0#5'Align'#7#7'alRight'
+ +#8'AutoSize'#9#25'BorderSpacing.InnerBorder'#2#4'!BorderSpacing.CellAlignHor'
+ +'izontal'#7#10'ccaLeftTop'#31'BorderSpacing.CellAlignVertical'#7#9'ccaCenter'
+ +#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#3#212#0#8
+ +'TabOrder'#2#0#0#6'TLabel'#12'LabelOutline'#4'Left'#2#8#6'Height'#2'"'#3'Top'
+ +#2#0#5'Width'#2'1'#5'Align'#7#7'alRight'#7'Caption'#6#8'Outline:'#6'Layout'#7
+ +#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#9'LabelFill'#4'Left'#2'Y'#6'Hei'
+ +'ght'#2'"'#3'Top'#2#0#5'Width'#2#20#5'Align'#7#7'alRight'#7'Caption'#6#5'Fil'
+ +'l:'#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#10'LabelPaper'#4
+ +'Left'#3#141#0#6'Height'#2'"'#3'Top'#2#0#5'Width'#2''''#5'Align'#7#7'alRight'
+ +#7'Caption'#6#6'Paper:'#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TPan'
+ +'el'#12'PanelOutline'#4'Left'#2'?'#6'Height'#2#22#3'Top'#2#6#5'Width'#2#20#5
+ +'Align'#7#7'alRight'#20'BorderSpacing.Around'#2#6#10'BevelInner'#7#9'bvLower'
+ +'ed'#5'Color'#7#7'clWhite'#8'DragMode'#7#11'dmAutomatic'#11'ParentColor'#8#8
+ +'TabOrder'#2#0#10'OnDragOver'#7#18'PanelPaperDragOver'#0#0#6'TPanel'#9'Panel'
+ +'Fill'#4'Left'#2's'#6'Height'#2#22#3'Top'#2#6#5'Width'#2#20#5'Align'#7#7'alR'
+ +'ight'#20'BorderSpacing.Around'#2#6#10'BevelInner'#7#9'bvLowered'#5'Color'#7
+ +#7'clWhite'#8'DragMode'#7#11'dmAutomatic'#11'ParentColor'#8#8'TabOrder'#2#1
+ +#10'OnDragOver'#7#18'PanelPaperDragOver'#0#0#6'TPanel'#10'PanelPaper'#4'Left'
+ +#3#186#0#6'Height'#2#22#3'Top'#2#6#5'Width'#2#20#5'Align'#7#7'alRight'#20'Bo'
+ +'rderSpacing.Around'#2#6#10'BevelInner'#7#9'bvLowered'#5'Color'#7#7'clWhite'
+ +#8'DragMode'#7#11'dmAutomatic'#11'ParentColor'#8#8'TabOrder'#2#2#10'OnDblCli'
+ +'ck'#7#18'PanelPaperDblClick'#10'OnDragOver'#7#18'PanelPaperDragOver'#0#0#0#6
+ +'TPanel'#16'PanelFillOutline'#4'Left'#3#175#0#6'Height'#2'"'#3'Top'#2#0#5'Wi'
+ +'dth'#2'S'#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2
+ +'"'#11'ClientWidth'#2'S'#8'TabOrder'#2#1#0#12'TSpeedButton'#15'ToolFillOutli'
+ +'ne'#4'Left'#2#4#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akL'
+ +'eft'#0#4'Down'#9#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0
+ +'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0
- +#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0
- +#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128
@@ -193,181 +176,6 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- ,#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#20'ToolFillOut'
- +'lineClick'#0#0#12'TSpeedButton'#11'ToolOutline'#4'Left'#2#29#6'Height'#2#24
- +#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#10'Glyph.Data'#10'z'#6#0
- +#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0
- +#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
- +#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
- +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
- +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
- +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
- +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
- +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- ,#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
- +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
- +#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
- +#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255
- +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
- +#0#0#255#0#0#0#255#0#0#0#255#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7
- +#16'ToolOutlineClick'#0#0#12'TSpeedButton'#8'ToolFill'#4'Left'#2'6'#6'Height'
- +#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#10'Glyph.Data'#10
- +#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0
- +#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255
- +#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255
- +#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255
- +#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255
- +#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- ,#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255
- +#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255
- +#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255
- +#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255
- +#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#13'ToolFillClick'#0#0#0#6
- +'TPanel'#10'PanelShape'#4'Left'#2'*'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'='
- +#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'Cl'
- +'ientWidth'#2'='#8'TabOrder'#2#2#0#12'TSpeedButton'#13'ToolRectShape'#4'Left'
- +#2#7#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#4'Dow'
- +'n'#9#10'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('
- +#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0
- +#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0
- +#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
@@ -401,103 +209,312 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0
- +#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#10'Grou'
- +'pIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#18'ToolRectShapeClick'#0#0#12'TSp'
- +'eedButton'#15'ToolCircleShape'#4'Left'#2#31#6'Height'#2#24#3'Top'#2#5#5'Wid'
- +'th'#2#25#7'Anchors'#11#6'akLeft'#0#10'Glyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'
- +#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0
- +'d'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '
- +' '#255' '#255'((('#255'CCC'#255#132#132#132#0#216#216#216#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#133#133#133#0#25#25#25#255#1#1#1#255#0
- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#1#1#1#255#25#25#25
- +#255#133#133#133#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#1#1#1#255#3#3#3#255'+++'
- +#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'jjj'#255'WWW'#255'+++'#255#3#3#3#255
- +#1#1#1#255'PPP'#255#251#251#251#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#251#251#251#0'PPP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255'}}}'#255'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251#251#251#0#255#255#255
- +#0#255#255#255#0#133#133#133#0#1#1#1#255#9#9#9#255'hhh'#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'hhh'#255
- +#9#9#9#255#1#1#1#255#133#133#133#0#255#255#255#0#216#216#216#0#25#25#25#255#3
- +#3#3#255'[[['#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255'[[['#255#3#3#3#255
- +#25#25#25#255#216#216#216#0#132#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0'C'
- +'CC'#255#0#0#0#255'WWW'#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255'WWW'#255#0#0#0#255'CCC'#255'((('#255#0#0#0#255'jjj'
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +'jjj'#255#0#0#0#255'((('#255' '#255#0#0#0#255'ooo'#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255'ooo'#255#0#0#0#255' '
- +#255' '#255#0#0#0#255'ooo'#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- ,#127#127#255#127#127#127#255'ooo'#255#0#0#0#255' '#255'((('#255#0#0#0#255
- +'jjj'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255'jjj'#255#0#0#0#255'((('#255'CCC'#255#0#0#0#255'WWW'#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255'WWW'#255#0#0#0#255
- +'CCC'#255#132#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0#216#216#216#0#25
- +#25#25#255#3#3#3#255'[[['#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'[[['#255
- +#3#3#3#255#25#25#25#255#216#216#216#0#255#255#255#0#133#133#133#0#1#1#1#255#9
- +#9#9#255'hhh'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255'hhh'#255#9#9#9#255#1#1#1#255#133#133#133#0#255#255
- +#255#0#255#255#255#0#251#251#251#0'PPP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255'}}}'#255'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251
- +#251#251#0#255#255#255#0#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#1
- +#1#1#255#3#3#3#255'+++'#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'jjj'#255'WWW'
- +#255'+++'#255#3#3#3#255#1#1#1#255'PPP'#255#251#251#251#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#133#133
- +#133#0#25#25#25#255#1#1#1#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#1#1#1#255#25#25#25#255#133#133#133#0#255#255#255#0#255#255#255
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#20'ToolFillOutlineClic'
+ +'k'#0#0#12'TSpeedButton'#11'ToolOutline'#4'Left'#2#29#6'Height'#2#24#3'Top'#2
+ +#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#10'Glyph.Data'#10'z'#6#0#0'v'#6#0
+ +#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'
+ +#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+ +#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '
- +#255' '#255'((('#255'CCC'#255#132#132#132#0#216#216#216#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#10'GroupIndex'#2#1#9'Nu'
- +'mGlyphs'#2#0#7'OnClick'#7#20'ToolCircleShapeClick'#0#0#0#6'TPanel'#13'Panel'
- +'MaskTool'#4'Left'#3'E'#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'V'#5'Align'#7
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
+ +#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
+ +#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
+ +#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
+ ,#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
+ +#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
+ +#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
+ +#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255
+ +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+ +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+ +#0#0#255#0#0#0#255#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#16'ToolO'
+ +'utlineClick'#0#0#12'TSpeedButton'#8'ToolFill'#4'Left'#2'6'#6'Height'#2#24#3
+ +'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#10'Glyph.Data'#10#234#4#0#0
+ +#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0#24#0
+ +#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255
+ +#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255
+ +#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255
+ +#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255
+ +#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255
+ +#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ ,#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255
+ +#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255#255#255#255
+ +#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255#255#255#255
+ +#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#255#255
+ +#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#255#255#255#255#255#255#255#255#255#255#255#255#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#10'GroupInd'
+ +'ex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#13'ToolFillClick'#0#0#0#6'TPanel'#10
+ +'PanelShape'#4'Left'#2'*'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'='#5'Align'#7
+#6'alLeft'#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2
- +'V'#8'TabOrder'#2#3#0#12'TSpeedButton'#17'ToolMaskRectangle'#4'Left'#2#7#6'H'
- +'eight'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#4'Down'#9#10
- +'Glyph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0
- +#20#0#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0
+ +'='#8'TabOrder'#2#2#0#12'TSpeedButton'#13'ToolRectShape'#4'Left'#2#7#6'Heigh'
+ +'t'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#4'Down'#9#10'Gly'
+ +'ph.Data'#10#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0
+ +#0#0#20#0#0#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128
+ +#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0
+ +#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0
+#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0
+#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ ,#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0
+ +#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0
+ +#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#10'GroupIndex'#2
+ +#1#9'NumGlyphs'#2#0#7'OnClick'#7#18'ToolRectShapeClick'#0#0#12'TSpeedButton'
+ +#15'ToolCircleShape'#4'Left'#2#31#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7
+ +'Anchors'#11#6'akLeft'#0#10'Glyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0
+ +#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'
+ +#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+ +#0#255#255#255#0#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '#255' '
+ +#255'((('#255'CCC'#255#132#132#132#0#216#216#216#0#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#133#133#133#0#25#25#25#255#1#1#1#255#0#0#0#255#0#0#0
+ +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#1#1#1#255#25#25#25#255#133#133
+ +#133#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#251#251#251#0'PPP'#255#1#1#1#255#3#3#3#255'+++'#255'WWW'#255
+ +'jjj'#255'ooo'#255'ooo'#255'jjj'#255'WWW'#255'+++'#255#3#3#3#255#1#1#1#255'P'
+ +'PP'#255#251#251#251#0#255#255#255#0#255#255#255#0#255#255#255#0#251#251#251
+ +#0'PPP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'}}}'#255
+ +'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251#251#251#0#255#255#255#0#255#255
+ +#255#0#133#133#133#0#1#1#1#255#9#9#9#255'hhh'#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255'hhh'#255#9#9#9#255#1
+ +#1#1#255#133#133#133#0#255#255#255#0#216#216#216#0#25#25#25#255#3#3#3#255'[['
+ +'['#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255'[[['#255#3#3#3#255#25#25#25
+ +#255#216#216#216#0#132#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0'CCC'#255#0
+ +#0#0#255'WWW'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255'WWW'#255#0#0#0#255'CCC'#255'((('#255#0#0#0#255'jjj'#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'jjj'#255#0#0
+ +#0#255'((('#255' '#255#0#0#0#255'ooo'#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255'ooo'#255#0#0#0#255' '#255' '#255
+ ,#0#0#0#255'ooo'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255'ooo'#255#0#0#0#255' '#255'((('#255#0#0#0#255'jjj'#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'jjj'#255
+ +#0#0#0#255'((('#255'CCC'#255#0#0#0#255'WWW'#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255'WWW'#255#0#0#0#255'CCC'#255#132
+ +#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0#216#216#216#0#25#25#25#255#3#3
+ +#3#255'[[['#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255'[[['#255#3#3#3#255
+ +#25#25#25#255#216#216#216#0#255#255#255#0#133#133#133#0#1#1#1#255#9#9#9#255
+ +'hhh'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255'hhh'#255#9#9#9#255#1#1#1#255#133#133#133#0#255#255#255#0#255
+ +#255#255#0#251#251#251#0'PPP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255'}}}'#255'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251#251#251#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#1#1#1#255#3
+ +#3#3#255'+++'#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'jjj'#255'WWW'#255'+++'
+ +#255#3#3#3#255#1#1#1#255'PPP'#255#251#251#251#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#133#133#133#0#25#25
+ +#25#255#1#1#1#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255
+ +#1#1#1#255#25#25#25#255#133#133#133#0#255#255#255#0#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '#255' '#255'('
+ +'(('#255'CCC'#255#132#132#132#0#216#216#216#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7
+ +'OnClick'#7#20'ToolCircleShapeClick'#0#0#0#6'TPanel'#13'PanelMaskTool'#4'Lef'
+ +'t'#3'E'#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'V'#5'Align'#7#6'alLeft'#10'B'
+ +'evelOuter'#7#6'bvNone'#12'ClientHeight'#2'"'#11'ClientWidth'#2'V'#8'TabOrde'
+ +'r'#2#3#0#12'TSpeedButton'#17'ToolMaskRectangle'#4'Left'#2#7#6'Height'#2#24#3
+ +'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'akLeft'#0#4'Down'#9#10'Glyph.Data'#10
+ +#234#4#0#0#230#4#0#0'BM'#230#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0
+ +#0#1#0#24#0#0#0#0#0#176#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0
+ +#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+ ,#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0
+ +#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
@@ -513,7 +530,7 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0
+#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- ,#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0
+ +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0
+#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128
@@ -522,154 +539,140 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
+#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#0#0#0#0#0#0#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0
- +#0#0#0#0#0#0#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128#128
- +#128#128#128#128#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ +#128#128#128#128#128#128#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#10'GroupInd'
- +'ex'#2#1#9'NumGlyphs'#2#0#7'OnClick'#7#22'ToolMaskRectangleClick'#0#0#12'TSp'
- +'eedButton'#15'ToolMaskEllipse'#4'Left'#2#31#6'Height'#2#24#3'Top'#2#5#5'Wid'
- +'th'#2#25#7'Anchors'#11#6'akLeft'#0#10'Glyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'
- +#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0
- +'d'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '
- +' '#255' '#255'((('#255'CCC'#255#132#132#132#0#216#216#216#0#255#255#255#0
+ +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#10'GroupIndex'#2#1#9'NumGly'
+ +'phs'#2#0#7'OnClick'#7#22'ToolMaskRectangleClick'#0#0#12'TSpeedButton'#15'To'
+ +'olMaskEllipse'#4'Left'#2#31#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Ancho'
+ +'rs'#11#6'akLeft'#0#10'Glyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'
+ +#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0
+ +#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '#255' '#255'('
+ +'(('#255'CCC'#255#132#132#132#0#216#216#216#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#255#255#255#0#133#133#133#0#25#25#25#255#1#1#1#255#0#0#0#255#0#0#0#255
+ +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#1#1#1#255#25#25#25#255#133#133#133#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#133#133#133#0#25#25#25#255#1#1#1#255#0
- +#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#1#1#1#255#25#25#25
- +#255#133#133#133#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#1#1#1#255#3#3#3#255'+++'
- +#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'jjj'#255'WWW'#255'+++'#255#3#3#3#255
- +#1#1#1#255'PPP'#255#251#251#251#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#251#251#251#0'PPP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'#255#127#127#127#255
+ +#255#255#0#251#251#251#0'PPP'#255#1#1#1#255#3#3#3#255'+++'#255'WWW'#255'jjj'
+ +#255'ooo'#255'ooo'#255'jjj'#255'WWW'#255'+++'#255#3#3#3#255#1#1#1#255'PPP'
+ +#255#251#251#251#0#255#255#255#0#255#255#255#0#255#255#255#0#251#251#251#0'P'
+ +'PP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'}}}'#255
+ +'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251#251#251#0#255#255#255#0#255#255
+ +#255#0#133#133#133#0#1#1#1#255#9#9#9#255'hhh'#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255'hhh'#255#9#9#9#255#1
+ +#1#1#255#133#133#133#0#255#255#255#0#216#216#216#0#25#25#25#255#3#3#3#255'[['
+ +'['#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255'[[['#255#3#3#3#255#25#25#25
+ +#255#216#216#216#0#132#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127#127#255
+#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255'}}}'#255'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251#251#251#0#255#255#255
- +#0#255#255#255#0#133#133#133#0#1#1#1#255#9#9#9#255'hhh'#255#127#127#127#255
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0'CCC'#255#0
+ +#0#0#255'WWW'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255'WWW'#255#0#0#0#255'CCC'#255'((('#255#0#0#0#255'jjj'#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ ,#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'jjj'#255#0#0
+ +#0#255'((('#255' '#255#0#0#0#255'ooo'#255#127#127#127#255#127#127#127#255
+#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'hhh'#255
- +#9#9#9#255#1#1#1#255#133#133#133#0#255#255#255#0#216#216#216#0#25#25#25#255#3
- +#3#3#255'[[['#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255'ooo'#255#0#0#0#255' '#255' '#255
+ +#0#0#0#255'ooo'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255'ooo'#255#0#0#0#255' '#255'((('#255#0#0#0#255'jjj'#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'jjj'#255
+ +#0#0#0#255'((('#255'CCC'#255#0#0#0#255'WWW'#255#127#127#127#255#127#127#127
+ +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+ +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255'WWW'#255#0#0#0#255'CCC'#255#132
+ +#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127#127#255#127#127#127#255#127
+ +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
+ +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+ +#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0#216#216#216#0#25#25#25#255#3#3
+ +#3#255'[[['#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
+#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
+#127#255#127#127#127#255#127#127#127#255#127#127#127#255'[[['#255#3#3#3#255
- +#25#25#25#255#216#216#216#0#132#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#25#25#25#255#216#216#216#0#255#255#255#0#133#133#133#0#1#1#1#255#9#9#9#255
+ +'hhh'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0'C'
- +'CC'#255#0#0#0#255'WWW'#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255'WWW'#255#0#0#0#255'CCC'#255'((('#255#0#0#0#255'jjj'
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
+ +#127#127#127#255'hhh'#255#9#9#9#255#1#1#1#255#133#133#133#0#255#255#255#0#255
+ +#255#255#0#251#251#251#0'PPP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'#255#127
+#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +'jjj'#255#0#0#0#255'((('#255' '#255#0#0#0#255'ooo'#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- ,#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255'ooo'#255#0#0#0#255' '
- +#255' '#255#0#0#0#255'ooo'#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255'ooo'#255#0#0#0#255' '#255'((('#255#0#0#0#255
- +'jjj'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255'jjj'#255#0#0#0#255'((('#255'CCC'#255#0#0#0#255'WWW'#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255'WWW'#255#0#0#0#255
- +'CCC'#255#132#132#132#0#1#1#1#255'+++'#255'}}}'#255#127#127#127#255#127#127
- +#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127
- +#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255'}}}'#255'+++'#255#1#1#1#255#132#132#132#0#216#216#216#0#25
- +#25#25#255#3#3#3#255'[[['#255#127#127#127#255#127#127#127#255#127#127#127#255
- +#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255'[[['#255
- +#3#3#3#255#25#25#25#255#216#216#216#0#255#255#255#0#133#133#133#0#1#1#1#255#9
- +#9#9#255'hhh'#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255'hhh'#255#9#9#9#255#1#1#1#255#133#133#133#0#255#255
- +#255#0#255#255#255#0#251#251#251#0'PPP'#255#0#0#0#255#9#9#9#255'[[['#255'}}}'
- +#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127#127#255#127#127
- +#127#255#127#127#127#255'}}}'#255'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251
- +#251#251#0#255#255#255#0#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#1
- +#1#1#255#3#3#3#255'+++'#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'jjj'#255'WWW'
- +#255'+++'#255#3#3#3#255#1#1#1#255'PPP'#255#251#251#251#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#133#133
- +#133#0#25#25#25#255#1#1#1#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
- +#255#0#0#0#255#1#1#1#255#25#25#25#255#133#133#133#0#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '
- +#255' '#255'((('#255'CCC'#255#132#132#132#0#216#216#216#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#10'GroupIndex'#2#1#9'Nu'
- +'mGlyphs'#2#0#7'OnClick'#7#20'ToolMaskEllipseClick'#0#0#12'TSpeedButton'#17
- +'ToolMaskFloodFill'#4'Left'#2'8'#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'A'
- +'nchors'#11#6'akLeft'#0#10'Glyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0
- +#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'
- +#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+ +#127#127#127#255'}}}'#255'[[['#255#9#9#9#255#0#0#0#255'PPP'#255#251#251#251#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#251#251#251#0'PPP'#255#1#1#1#255#3
+ +#3#3#255'+++'#255'WWW'#255'jjj'#255'ooo'#255'ooo'#255'jjj'#255'WWW'#255'+++'
+ +#255#3#3#3#255#1#1#1#255'PPP'#255#251#251#251#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#133#133#133#0#25#25
+ +#25#255#1#1#1#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255
+ +#1#1#1#255#25#25#25#255#133#133#133#0#255#255#255#0#255#255#255#0#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#216#216#216#0#132#132#132#0'CCC'#255'((('#255' '#255' '#255'('
+ +'(('#255'CCC'#255#132#132#132#0#216#216#216#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#10'GroupIndex'#2#1#9'NumGlyphs'#2#0#7
+ +'OnClick'#7#20'ToolMaskEllipseClick'#0#0#12'TSpeedButton'#17'ToolMaskFloodFi'
+ +'ll'#4'Left'#2'8'#6'Height'#2#24#3'Top'#2#5#5'Width'#2#25#7'Anchors'#11#6'ak'
+ +'Left'#0#10'Glyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0
+ +#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0
+ +#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#0#0#0#3#16#10#10#142#15#11#11#217#13#10#10#193#0
- +#0#0#25#0#0#0'8'#17#11#11#160#15#11#11#201#15#9#9'd'#255#255#255#0#255#255
+ +#255#255#255#0#0#0#0#3#16#10#10#142#15#11#11#217#13#10#10#193#0#0#0#25#0#0#0
+ +'8'#17#11#11#160#15#11#11#201#15#9#9'd'#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#15#10#10#161#140#138
- +#138#249#203#204#204#255'zyy'#254#28#25#25#231'933'#240#127#127#127#255#193
- +#194#194#255#26#23#23#232#0#0#0'"'#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#255#255#255#0#15#10#10#161#140#138#138#249#203
+ +#204#204#255'zyy'#254#28#25#25#231'933'#240#127#127#127#255#193#194#194#255
+ +#26#23#23#232#0#0#0'"'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#14#9
+ +#9'sSQQ'#241#233#233#233#255#189#189#189#255#135#135#135#255#135#135#135#255
+ +#193#193#193#255#222#222#222#255'f__'#243#12#9#9#212#0#0#0#15#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#14#9#9'sSQQ'#241#233#233#233#255#189#189#189#255#135#135#135#255
- +#135#135#135#255#193#193#193#255#222#222#222#255'f__'#243#12#9#9#212#0#0#0#15
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#0#0#0#31'&$$'#233#230#230#230#255#186
- +#187#187#255'~~~'#255#129#129#129#255#166#166#166#255#229#229#229#255#134#134
- +#134#255#10#10#10#220#0#0#0'/'#0#0#0#10#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#15#11#11#170#210#210#210#255#175#175#175#255'}}}'#255#130#130#130#255'}}}'
- +#255#225#225#225#255#194#194#194#255#140#140#140#255#21#21#21#253'222'#236#14
- +#14#14#239#9#9#9#237#13#13#13#211#11#11#11#163#0#0#0'/'#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#17#15#15#211#224#224#224#255'ttt'#255#155
- +#155#155#255#130#130#130#255#162#162#162#255#234#234#234#255#162#162#162#255
- ,#135#135#135#255']]]'#255'yyy'#255#230#230#230#255#222#222#222#255#197#197
- +#197#255#136#136#136#254#19#19#19#237#10#10#10#193#0#0#0'5'#255#255#255#0#255
- +#255#255#0#21#18#18#215#205#205#205#255#135#135#135#255#225#225#225#255'{{{'
- +#255#127#127#127#255#152#152#152#255#131#131#131#255#142#142#142#255#134#134
- +#134#255#30#30#30#255#144#144#144#255#133#133#133#255#153#153#153#255#210#210
- +#210#255#207#207#207#255#141#141#141#255#20#20#20#237#9#9#9#155#0#0#0#1#16#12
- +#12#175#133#134#134#255#131#131#131#255#211#211#211#255#231#231#231#255#144
- +#144#144#255#135#135#135#255'zzz'#255'iii'#255')))'#255#128#128#128#255#191
- +#191#191#255#172#172#172#255#166#166#166#255'zzz'#255'rrr'#255#186#186#186
- +#255#185#185#185#255'888'#241#10#10#10#151#4#2#2'NIFF'#242#135#135#135#255'{'
- +'{{'#255#136#136#136#255#130#130#130#255#135#135#135#255'ccc'#255':::'#255'Q'
- +'QQ'#255#201#201#201#255#177#177#177#255#173#173#173#255#169#169#169#255#171
- +#171#171#255'rrr'#255#180#180#180#255#173#173#173#255#176#176#176#255#9#9#9
- +#231#0#0#0#3#16#14#14#224#196#197#197#255#171#171#171#255#130#130#130#255#135
- +#135#135#255#140#140#140#255'eee'#255'888'#255#129#129#129#255#202#202#202
- +#255#178#178#178#255#173#173#173#255#169#169#169#255#170#170#170#255'uuu'#255
- +#178#178#178#255#174#174#174#255'ZZZ'#251#10#10#10#139#255#255#255#0#16#10#10
- +#149#174#174#174#255#234#234#234#255#154#154#154#255#130#130#130#255#135#135
- +#135#255'xxx'#255'WWW'#255#30#30#30#255#182#182#182#255#141#141#141#255#150
- +#150#150#255#175#175#175#255#132#132#132#255#173#173#173#255#179#179#179#255
- +#187#187#187#255#15#15#15#238#0#0#0'!'#255#255#255#0#0#0#0#25#18#16#16#226
- +#208#208#208#255#223#223#223#255'{{{'#255#178#178#178#255#204#204#204#255#135
- +#135#135#255'333'#255'XXX'#255#201#201#201#255#210#210#210#255#141#141#141
- +#255'___'#255#189#189#189#255#180#180#180#255#148#148#148#255#9#9#9#207#255
- +#255#255#0#255#255#255#0#255#255#255#0#10#3#4'9'#16#13#13#221#206#206#206#255
- +#222#222#222#255#146#146#146#255#209#209#209#255#201#201#201#255#144#144#144
- +#255#18#18#18#255'WWW'#255#129#129#129#255#157#157#157#255#215#215#215#255
- +#195#195#195#255#196#196#196#255'666'#242#2#2#2'['#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#0#0#0#23#13#12#12#231#130#130#130#255#198#198
+ +#255#255#0#255#255#255#0#0#0#0#31'&$$'#233#230#230#230#255#186#187#187#255'~'
+ +'~~'#255#129#129#129#255#166#166#166#255#229#229#229#255#134#134#134#255#10
+ +#10#10#220#0#0#0'/'#0#0#0#10#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#15#11#11
+ +#170#210#210#210#255#175#175#175#255'}}}'#255#130#130#130#255'}}}'#255#225
+ +#225#225#255#194#194#194#255#140#140#140#255#21#21#21#253'222'#236#14#14#14
+ ,#239#9#9#9#237#13#13#13#211#11#11#11#163#0#0#0'/'#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#17#15#15#211#224#224#224#255'ttt'#255#155#155
+ +#155#255#130#130#130#255#162#162#162#255#234#234#234#255#162#162#162#255#135
+ +#135#135#255']]]'#255'yyy'#255#230#230#230#255#222#222#222#255#197#197#197
+ +#255#136#136#136#254#19#19#19#237#10#10#10#193#0#0#0'5'#255#255#255#0#255#255
+ +#255#0#21#18#18#215#205#205#205#255#135#135#135#255#225#225#225#255'{{{'#255
+ +#127#127#127#255#152#152#152#255#131#131#131#255#142#142#142#255#134#134#134
+ +#255#30#30#30#255#144#144#144#255#133#133#133#255#153#153#153#255#210#210#210
+ +#255#207#207#207#255#141#141#141#255#20#20#20#237#9#9#9#155#0#0#0#1#16#12#12
+ +#175#133#134#134#255#131#131#131#255#211#211#211#255#231#231#231#255#144#144
+ +#144#255#135#135#135#255'zzz'#255'iii'#255')))'#255#128#128#128#255#191#191
+ +#191#255#172#172#172#255#166#166#166#255'zzz'#255'rrr'#255#186#186#186#255
+ +#185#185#185#255'888'#241#10#10#10#151#4#2#2'NIFF'#242#135#135#135#255'{{{'
+ +#255#136#136#136#255#130#130#130#255#135#135#135#255'ccc'#255':::'#255'QQQ'
+ +#255#201#201#201#255#177#177#177#255#173#173#173#255#169#169#169#255#171#171
+ +#171#255'rrr'#255#180#180#180#255#173#173#173#255#176#176#176#255#9#9#9#231#0
+ +#0#0#3#16#14#14#224#196#197#197#255#171#171#171#255#130#130#130#255#135#135
+ +#135#255#140#140#140#255'eee'#255'888'#255#129#129#129#255#202#202#202#255
+ +#178#178#178#255#173#173#173#255#169#169#169#255#170#170#170#255'uuu'#255#178
+ +#178#178#255#174#174#174#255'ZZZ'#251#10#10#10#139#255#255#255#0#16#10#10#149
+ +#174#174#174#255#234#234#234#255#154#154#154#255#130#130#130#255#135#135#135
+ +#255'xxx'#255'WWW'#255#30#30#30#255#182#182#182#255#141#141#141#255#150#150
+ +#150#255#175#175#175#255#132#132#132#255#173#173#173#255#179#179#179#255#187
+ +#187#187#255#15#15#15#238#0#0#0'!'#255#255#255#0#0#0#0#25#18#16#16#226#208
+ +#208#208#255#223#223#223#255'{{{'#255#178#178#178#255#204#204#204#255#135#135
+ +#135#255'333'#255'XXX'#255#201#201#201#255#210#210#210#255#141#141#141#255'_'
+ +'__'#255#189#189#189#255#180#180#180#255#148#148#148#255#9#9#9#207#255#255
+ +#255#0#255#255#255#0#255#255#255#0#10#3#4'9'#16#13#13#221#206#206#206#255#222
+ +#222#222#255#146#146#146#255#209#209#209#255#201#201#201#255#144#144#144#255
+ +#18#18#18#255'WWW'#255#129#129#129#255#157#157#157#255#215#215#215#255#195
+ +#195#195#255#196#196#196#255'666'#242#2#2#2'['#255#255#255#0#255#255#255#0
+ +#255#255#255#0#255#255#255#0#0#0#0#23#13#12#12#231#130#130#130#255#198#198
+#198#255#134#134#134#255#142#142#142#255#177#177#177#255'BBB'#255#3#3#3#255
+#14#14#14#255'KKK'#255'qqq'#255#132#132#132#255#203#203#203#255#9#9#9#239#0#0
+#0#8#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0
@@ -702,10 +705,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'entWidth'#3#152#3#8'TabOrder'#2#2#0#6'TLabel'#9'LabelSize'#4'Left'#2#0#6'He'
+'ight'#2'"'#3'Top'#2#0#5'Width'#2#28#5'Align'#7#6'alLeft'#7'Caption'#6#5'Siz'
+'e:'#21'Constraints.MinHeight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8
- +#0#0#6'TLabel'#12'LabelDensity'#4'Left'#3#234#0#6'Height'#2'"'#3'Top'#2#0#5
+ ,#0#0#6'TLabel'#12'LabelDensity'#4'Left'#3#234#0#6'Height'#2'"'#3'Top'#2#0#5
+'Width'#2'2'#5'Align'#7#6'alLeft'#7'Caption'#6#8'Density:'#21'Constraints.Mi'
+'nHeight'#2' '#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#14'La'
- ,'belRoundness'#4'Left'#2'_'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'G'#5'Align'
+ +'belRoundness'#4'Left'#2'_'#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'G'#5'Align'
+#7#6'alLeft'#7'Caption'#6#10'Roundness:'#21'Constraints.MinHeight'#2' '#6'La'
+'yout'#7#8'tlCenter'#11'ParentColor'#8#0#0#6'TLabel'#14'LabelTolerance'#4'Le'
+'ft'#3'a'#1#6'Height'#2'"'#3'Top'#2#0#5'Width'#2'?'#5'Align'#7#6'alLeft'#7'C'
@@ -753,9 +756,9 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'rentColor'#8#0#0#6'TPanel'#15'PanelTolerance2'#4'Left'#3#134#2#6'Height'#2
+'"'#3'Top'#2#0#5'Width'#2#30#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bvNone'
+#12'ClientHeight'#2'"'#11'ClientWidth'#2#30#8'TabOrder'#2#5#0#9'TCheckBox'#10
- +'checkFuzzy'#4'Left'#2#4#6'Height'#2#21#3'Top'#2#5#5'Width'#2#22#8'OnChange'
+ +'checkFuzzy'#4'Left'#2#4#6'Height'#2#23#3'Top'#2#5#5'Width'#2#24#8'OnChange'
+#7#16'checkFuzzyChange'#8'TabOrder'#2#0#0#0#0#0#0#6'TPanel'#13'PanelPictures'
- +#4'Left'#2'('#6'Height'#3#22#2#3'Top'#2'i'#5'Width'#3'%'#3#5'Align'#7#8'alCl'
+ +#4'Left'#2'('#6'Height'#3#20#2#3'Top'#2'i'#5'Width'#3'%'#3#5'Align'#7#8'alCl'
+'ient'#10'BevelOuter'#7#9'bvLowered'#8'TabOrder'#2#3#0#0#9'TMainMenu'#8'Main'
+'Menu'#6'Images'#7#16'ImageListActions'#4'left'#2'r'#3'top'#2'~'#0#9'TMenuIt'
+'em'#12'MenuItemFile'#7'Caption'#6#5'&File'#0#9'TMenuItem'#11'MenuItemNew'#7
@@ -766,10 +769,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#26#22#244#25#25#22#243#25#25#23#242#25#25#24#242#25#25#25#241#0#0#0#255#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#31
+#20#20#20#243#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#253#255#255#255#247#255#255#255#240#255#255#255#228
+ ,#255#255#255#255#255#255#253#255#255#255#247#255#255#255#240#255#255#255#228
+#255#255#255#228#255#255#255#228#255#255#255#231#255#0#0#0#255#0#0#0#2#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#30#19#19#19#244
- ,#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#252#255#255#255
+#236#255#255#255#228#255#255#255#231#255#2#2#2#253#0#0#0#5#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#0#0#0#29#18#18#18#244#255#255#255#255
@@ -830,10 +833,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#7#7
+#7#255#163#163#163#255#14#14#14#255#8#8#8#206#0#0#0#9#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#16#8#8#8#248#240#240
- +#240#255#241#241#241#255#242#242#242#255#243#243#243#255#244#244#244#255#245
+ ,#240#255#241#241#241#255#242#242#242#255#243#243#243#255#244#244#244#255#245
+#245#245#255#246#246#246#255#247#247#247#255#10#10#10#255#9#9#9#254#7#7#7#180
+#0#0#0#2#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
- ,#0#255#255#255#0#0#0#0#12#6#6#6#238#10#10#10#243#9#9#9#244#8#8#8#245#7#7#7
+ +#0#255#255#255#0#0#0#0#12#6#6#6#238#10#10#10#243#9#9#9#244#8#8#8#245#7#7#7
+#246#7#7#7#247#6#6#6#248#5#5#5#249#4#4#4#250#5#5#5#252#5#5#5#140#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#4'H'
+'int'#6#3'New'#10'ImageIndex'#2#0#8'ShortCut'#3'N@'#7'OnClick'#7#14'FileNewE'
@@ -894,10 +897,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#244#244#244#255#244#244#244#255#244#244#244#255#244#244#244#255#244#244
+#244#255#244#244#244#255#244#244#244#255#244#244#244#255#244#244#244#255#244
+#244#244#255#244#244#244#255#244#244#244#255#244#244#244#255#244#244#244#255
- +#157#157#157#249#3#3#3#175#255#255#255#0#255#255#255#0#11#11#11#227#215#215
+ ,#157#157#157#249#3#3#3#175#255#255#255#0#255#255#255#0#11#11#11#227#215#215
+#215#255#244#244#244#255#244#244#244#255#244#244#244#255#244#244#244#255#243
+#243#243#255#236#236#236#255#202#202#202#219#129#129#129#186'|||'#187'{{{'
- ,#186'{{{'#184'{{{'#182'vvv'#174'hhh'#169#16#16#16#218#0#0#0'r'#255#255#255#0
+ +#186'{{{'#184'{{{'#182'vvv'#174'hhh'#169#16#16#16#218#0#0#0'r'#255#255#255#0
+#255#255#255#0#1#1#1#159#204#204#204#250#237#237#237#255#236#236#236#255#239
+#239#239#255#238#238#238#255#213#213#213#246'???'#232#0#0#0#171#0#0#0#156#0#0
+#0#154#0#0#0#151#0#0#0#149#0#0#0#146#0#0#0#143#0#0#0#140#0#0#0'M'#0#0#0#5#255
@@ -958,10 +961,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0
+#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'['#0#0#255#10#0#0#193#8#0
+#0#224'j'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0
- +#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0
+ ,#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0
+#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'\'#0#0#255#10#0#0#195#8#0#0#225'j'#0
+#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0
- ,#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0
+ +#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0
+#0#255'{'#0#0#255'{'#0#0#255'\'#0#0#255#10#0#0#196#8#0#0#225'j'#0#0#255'{'#0
+#0#255'{'#0#0#255'y'#0#0#255'~VU'#255#137'us'#255#137'sr'#255#137'sq'#255#137
+'rp'#255#137'qo'#255#135'nl'#255#132'ki'#255#131'jh'#255#135'kj'#255'v10'#255
@@ -1022,10 +1025,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#22#23' '#250#2#3#12#217#0#0#0#12#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#24#2#3#10#234'!"*'#251'```'
+#255'bbb'#255'ddd'#255'eee'#255'eee'#255'eee'#255'ccc'#255'```'#255#31#31'('
- +#249#2#3#9#233#0#0#0#23#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+ ,#249#2#3#9#233#0#0#0#23#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+#0#255#255#255#0#0#0#0#24#2#3#10#233#30#31''''#250'YYY'#255'ddd'#255'ggg'#255
+'iii'#255'jjj'#255'jjj'#255'iii'#255'hhh'#255'eee'#255']]]'#255#26#27'$'#250
- ,#2#3#10#232#0#0#0#22#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#23#2#3
+ +#2#3#10#232#0#0#0#22#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#23#2#3
+#10#232#28#29'%'#250'VVV'#255'ccc'#255'ggg'#255'kkk'#255'mmm'#255'ooo'#255'o'
+'oo'#255'nnn'#255'lll'#255'iii'#255'eee'#255'\\\'#255#24#25'"'#251#2#3#10#231
+#0#0#0#21#255#255#255#0#0#0#0#21#2#3#9#229#28#29'$'#250'SSS'#255'aaa'#255'ff'
@@ -1086,10 +1089,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#255#255#255#0'3337473'#249'Q'#177'E'#255'S'#184'F'#255'I'#149'@'#255
+'5<4'#208#255#255#255#0#255#255#255#0#255#255#255#0'6:6'#163'G[E'#245#129#201
+'w'#255'585'#248'333'#16#255#255#255#0#255#255#255#0#255#255#255#0'333'#8'33'
- +'31343r594'#244'P'#149'G'#255'V'#185'I'#255'S'#184'F'#255'D|='#255'4:4'#158
+ ,'31343r594'#244'P'#149'G'#255'V'#185'I'#255'S'#184'F'#255'D|='#255'4:4'#158
+#255#255#255#0#255#255#255#0'564t>G='#245#133#197'{'#255#137#206#128#255'696'
+#248'7;7'#174'7<7'#163'8>7'#185'6;6'#229'464'#250';G9'#240'EdA'#243'['#168'Q'
- ,#255'^'#188'R'#255'Y'#186'L'#255'S'#184'F'#255';T7'#243'333T'#255#255#255#0
+ +#255'^'#188'R'#255'Y'#186'L'#255'S'#184'F'#255';T7'#243'333T'#255#255#255#0
+'333J8;7'#247#131#187'{'#255#145#210#136#255#144#209#135#255'w'#171'p'#255'g'
+#145'b'#255'd'#142'^'#255'f'#151'_'#255'o'#176'g'#255'u'#196'j'#255'p'#196'e'
+#255'k'#194'`'#255'f'#191'Z'#255'`'#189'T'#255'['#187'N'#255'K'#146'A'#255'4'
@@ -1150,10 +1153,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#132#204'z'#255'u'#174'm'#255'8<7'#222#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333'#24'3'
+'33'#255'594'#225'333'#15#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0'8=7'#215'v'#172'n'#255#138#207#129#255#135#197'~'#255'575'#248'3333'
+ ,#255#0'8=7'#215'v'#172'n'#255#138#207#129#255#135#197'~'#255'575'#248'3333'
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0'333'#24'6:5'#246'GlC'#248'5:4'#195'333'#3#255#255#255#0#255#255
- ,#255#0#255#255#255#0'8=7'#168'u'#153'q'#255#147#210#138#255#148#211#139#255
+ +#255#0#255#255#255#0'8=7'#168'u'#153'q'#255#147#210#138#255#148#211#139#255
+'x'#164'r'#255'7:7'#244'333n3330333'#7#255#255#255#0#255#255#255#0#255#255
+#255#0'333'#24'6;5'#246'g'#189'\'#255'>S;'#245'494'#154#255#255#255#0#255#255
+#255#0#255#255#255#0'333\SeQ'#244#172#220#165#255#152#212#144#255#157#215#149
@@ -1214,10 +1217,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255
+ ,#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255
+#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255
+ +#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255
+#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255
@@ -1278,10 +1281,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+#0#0#255#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0
+#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ ,#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#0#0#0#255#255#255#255#255#0#0#0#255#255
- ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#21#21#21#255#255#255#255
+#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255
@@ -1342,10 +1345,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#255'--.'#255'99:'#255'334'#255'889'#255'111'#255#22#22#22#255#0#0#0#255
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#27#27#27#255#128#128#128#255#128#128#128#255#128#128#128
+ ,#255#0#255#255#255#0#27#27#27#255#128#128#128#255#128#128#128#255#128#128#128
+#255#128#128#128#255#128#128#128#255#128#128#128#255#128#128#128#255#0#0#0
+#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0' !'#255#128#128#128#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+#0#0#255#128#128#128#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -1406,10 +1409,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255';;;'#255
- +'777'#255'%%%'#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ ,'777'#255'%%%'#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#4'Hint'#6#5'Paste'#10'ImageIndex'
+#2#8#8'ShortCut'#3'V@'#7'OnClick'#7#16'EditPasteExecute'#0#0#9'TMenuItem'#14
- ,'MenuItemDelete'#7'Caption'#6#7'&Delete'#11'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0
+ +'MenuItemDelete'#7'Caption'#6#7'&Delete'#11'Bitmap.Data'#10'z'#6#0#0'v'#6#0#0
+'BMv'#6#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6
+#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255
+#255#0#0#0#5'A'#2#3#27#191#1#2#21#169#0#0#0#10#255#255#255#0#255#255#255#0
@@ -1470,10 +1473,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#249'ss'#232#255'dd'#230#255'AA'#141#255#1#2#9#248#0#0#0'*'#255#255#255#0#255
+#255#255#0#255#255#255#0#0#0#5'B'#0#1#4#251'#$_'#254#17#18'2'#247#2#2#13#225
+#0#0#0#16#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#14#3
- +#4#16#217#19#20'6'#250'"#\'#252#2#2#10#246#0#0#0'0'#255#255#255#0#255#255#255
+ ,#4#16#217#19#20'6'#250'"#\'#252#2#2#10#246#0#0#0'0'#255#255#255#0#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#29#1#2#19#171#3#4#19'x'#0
+#0#0#5#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#0#0#0#5#0#2#16#141#2#3#22#157#0#0#0'+'#255#255#255#0#255#255
+ +#255#255#255#0#0#0#0#5#0#2#16#141#2#3#22#157#0#0#0'+'#255#255#255#0#255#255
+#255#0#255#255#255#0#4'Hint'#6#6'Delete'#10'ImageIndex'#2#9#8'ShortCut'#2'.'
+#7'OnClick'#7#17'EditDeleteExecute'#0#0#9'TMenuItem'#17'MenuItemSelectAll'#7
+'Caption'#6#11'Select &All'#4'Hint'#6#10'Select All'#8'ShortCut'#3'A@'#7'OnC'
@@ -1534,10 +1537,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#128#0#0#255#128#0#0#255#128#0#0#255#255#255#255#0#255#255#255#0#128#0#0#255
+#128#0#0#255#128#0#0#255#128#0#0#255#255#255#255#0#255#255#255#0#128#0#0#255
+#128#0#0#255#128#0#0#255#128#0#0#255#255#255#255#0#255#255#255#0#128#0#0#255
- +#128#0#0#255#128#0#0#255#128#0#0#255#255#255#255#0#255#255#255#0#255#255#255
+ ,#128#0#0#255#128#0#0#255#128#0#0#255#255#255#255#0#255#255#255#0#255#255#255
+#0#255#255#255#0#128#0#0#255#128#0#0#255#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#128#0#0#255#128#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -1598,10 +1601,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#128#0#0#255#128#0#0#255#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#128#0#0#255#128#0#0#255#255#255#255#0#255#255#255#0#255
- ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -1662,10 +1665,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#128#0#0#255#128#0#0#255#255#255#255#0#255#255
+ +#255#255#255#0#255#255#255#0#128#0#0#255#128#0#0#255#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -1726,10 +1729,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#0#2#2#131#1#16#19#249#5#172#217#255#2#162#218#255#0'|'#177#255#0'Ik'#255#0#8
+ ,#0#2#2#131#1#16#19#249#5#172#217#255#2#162#218#255#0'|'#177#255#0'Ik'#255#0#8
+#11#255#1'Ka'#255#3#140#173#255#0#3#4#255#14'AQ'#255#0#4#5#250#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#0#0#0'4'#0#2#2#252#4#136#170#255#3#176#230#255#1
+#162#226#255#0#149#222#255#1#160#225#255#2#142#188#255#0#13#16#255#4'|'#148
@@ -1790,10 +1793,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#155#155#155#235#192#192#192#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0
+#0#255#0#0#0#247#0#0#0#143#0#0#0#14#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#7#174#174#174#251'ccc'#255#0
@@ -1854,10 +1857,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#245#8'6'#196#255'"P'#225#255'4]'#228#255':b'#229#255'2Y'#222#255#23':'#169
+#255#3'%'#138#255#0#7#28#242#0#0#0'Q'#255#255#255#0#255#255#255#0#18#2#0#166
+'+'#4#0#240#148#16#2#255#179'$'#22#255#207'6'''#255#208':,'#255#171'+'#31#255
- +'}'#23#13#255'O'#8#0#242#12#1#0#231#0#0#0#24#255#255#255#0#255#255#255#0#255
+ ,'}'#23#13#255'O'#8#0#242#12#1#0#231#0#0#0#24#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#0#0#0#4#0#2#7'q'#0#3#15#227#0#2#9#243#1#5#19#240#2#9#27#237#1#3#12#243
- ,#0#3#13#235#0#4#18#199#0#0#0'A'#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#0#3#13#235#0#4#18#199#0#0#0'A'#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#0#0#0'H'#19#2#0#161#22#3#0#194#19#2#0#220#17#2#0#222#21#3#0#195#16
+#2#0#161#3#0#0'c'#0#0#0#5#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -1918,10 +1921,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#196#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0
+'d'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255
+#0'd'#201#255#0'b'#197#255#0#25'2'#255#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+'F'#0#0#0#253#0#12#24#254#0'['#184#255#0'd'#201#255#0'd'#201#255#0'd'#201#255
- ,#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201
+ +#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201
+#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'd'#201#255#0'+W'#255#0#0#0#255
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -1982,10 +1985,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#0#0#0#195#4#4#5#254#174#181#207#255#158#169#205#255
- +#157#168#204#255#157#168#204#255#157#168#204#255#157#168#204#255#157#168#204
+ ,#157#168#204#255#157#168#204#255#157#168#204#255#157#168#204#255#157#168#204
+#255#128#137#166#255'$''/'#255#0#0#0#255#1#1#1#238#0#0#0'e'#0#0#0#2#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#30#0
+#0#0#254'58C'#255#167#177#209#255#157#168#204#255#157#168#204#255#157#168#204
+#255#157#168#204#255#147#157#191#255'BGV'#255#1#2#2#254#0#0#0#253#0#0#0#151#0
@@ -2046,10 +2049,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -2110,10 +2113,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#3#0#0#0#243#0#0#0#255'Dm|'
+#255#128#183#196#255'q'#194#205#255#18#203#215#255#14#252#254#255#11#230#247
+#255#8#208#240#255#5#185#233#255#2#132#183#255#0#3#5#255#0#19'&'#255#0'a'#196
- +#255#0'U'#171#255#0#5#11#253#0#0#1#228#0#0#0#22#255#255#255#0#255#255#255#0
+ ,#255#0'U'#171#255#0#5#11#253#0#0#1#228#0#0#0#22#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- ,#255#0#0#0#0#219#0#0#0#255'!&'''#255#127#127#127#255'|||'#255#26#26#26#255#0
+ +#255#0#0#0#0#219#0#0#0#255'!&'''#255#127#127#127#255'|||'#255#26#26#26#255#0
+#1#1#255#4'X^'#255#7#189#216#255#5#188#234#255#2#166#227#255#0#153#223#255#2
+'a~'#255#0#0#0#255#0':v'#255#0#15#31#253#0#0#1#248#0#0#0'2'#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -2174,10 +2177,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#2#1#1#1#251'V<`'#255#227#159
- +#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227
+ ,#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227
+#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#226#158#251#255
+'D0L'#255#0#0#0#255#0#0#0'q'#255#255#255#0#255#255#255#0#255#255#255#0#255
- ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#0#0#0#1#2#1#2#240'D/K'#255#227#159#252#255#227
+#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255#227#159#252#255
@@ -2238,10 +2241,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -2302,10 +2305,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
- ,#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -2366,10 +2369,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
+ ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0
+#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
@@ -2430,10 +2433,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -2494,10 +2497,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#0#0#0'@'#5#14#5#247'^'#239'^'#255'f'
+#240'f'#255'k'#241'k'#255'k'#241'k'#255'g'#240'f'#255' E!'#255#26#19#30#255
+#165'\'#183#255#221#129#244#255#223#132#244#255#222#129#244#255#219'{'#243
- +#255#215'q'#242#255#210'f'#240#255#205'Y'#238#255#200'L'#236#255#194'?'#235
+ ,#255#215'q'#242#255#210'f'#240#255#205'Y'#238#255#200'L'#236#255#194'?'#235
+#255#188'1'#233#255#182'#'#231#255#176#21#229#255'}'#4#166#255#16#0#23#248#7
+#0#9#176#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
- ,#0#255#255#255#0#255#255#255#0#0#0#0'@'#4#14#4#247'N'#237'O'#255'U'#238'V'
+ +#0#255#255#255#0#255#255#255#0#0#0#0'@'#4#14#4#247'N'#237'O'#255'U'#238'V'
+#255'Y'#238'Y'#255'Y'#238'Y'#255'4'#146'5'#255#14#12#15#255#200'p'#222#255
+#224#135#245#255#228#144#246#255#229#147#247#255#227#143#246#255#223#133#245
+#255#218'y'#243#255#213'l'#241#255#207'^'#239#255#201'P'#237#255#195'B'#235
@@ -2558,10 +2561,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#24#0'!'#243#0#0#0'X'#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#0#0#0'@'#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+#255#24#5#31#255#184'('#231#255#186','#232#255#187'.'#232#255#187'/'#232#255
- +#187'-'#232#255#185'*'#232#255#184'&'#231#255#181' '#230#255#178#25#229#255
+ ,#187'-'#232#255#185'*'#232#255#184'&'#231#255#181' '#230#255#178#25#229#255
+#175#17#228#255#171#8#227#255#168#0#226#255#168#0#226#255#168#0#226#255#168#0
+#226#255#168#0#226#255#168#0#226#255#168#0#226#255#21#0#28#244#0#0#0'S'#255
- ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#10#0
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#10#0
+#0#0'('#0#0#0'('#0#0#0'('#0#0#0'('#0#0#0'R'#3#0#4#252#175#26#225#255#180#29
+#230#255#181#31#230#255#181#31#230#255#180#30#230#255#179#27#229#255#177#23
+#229#255#175#17#228#255#172#11#227#255#169#3#226#255#168#0#226#255#168#0#226
@@ -2622,10 +2625,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#18#0#0#0#22#0
+#0#0#1#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -2686,10 +2689,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#192#239#255'd'#195#240#255'h'#197#240#255'j'#198#241#255'g'#197#240#255'a'
+#194#239#255'X'#191#238#255'N'#186#237#255'B'#181#235#255'5'#176#233#255''''
+#170#231#255#25#164#229#255#10#158#227#255#0#154#226#255#0#154#226#255#0#154
- +#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0#17#27#249#0#0#0'{'#255
+ ,#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0#17#27#249#0#0#0'{'#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#0#0#0#138#8'$2'#247'2'#175#233#255'>'#180#234#255'H'#184#236#255'Q'
- ,#187#237#255'W'#190#238#255'['#192#239#255'\'#192#239#255'Y'#191#238#255'T'
+ +#187#237#255'W'#190#238#255'['#192#239#255'\'#192#239#255'Y'#191#238#255'T'
+#189#238#255'L'#185#236#255'B'#181#235#255'7'#177#233#255'+'#172#232#255#30
+#166#230#255#16#161#228#255#2#155#226#255#0#154#226#255#0#154#226#255#0#154
+#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0'A`'#255#0#5#7#192#255
@@ -2750,10 +2753,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#0#0#27#0#3#4#244#0'Ko'#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154
+#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154#226
+#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0
- +#154#226#255#0#154#226#255#0'm'#160#255#0#0#0#254#0#0#0'C'#255#255#255#0#255
+ ,#154#226#255#0#154#226#255#0'm'#160#255#0#0#0#254#0#0#0'C'#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'_'#0#1#2
- ,#253#0'T{'#255#0#153#224#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154
+ +#253#0'T{'#255#0#153#224#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154
+#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154#226
+#255#0#154#226#255#0#154#226#255#0#154#226#255#0#154#226#255#0'j'#156#255#0#9
+#13#250#0#2#3#153#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -2814,10 +2817,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#8#3#2#2#151#5#2#2#164
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#8#3#2#2#151#5#2#2#164
+#0#0#0#11#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -2878,10 +2881,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#255#255#255#0#255#255#255#0#255#255#255#0#9#4#4#217#136'82'#255#233'e^'
+#255#234'kd'#255#235'oj'#255#235'rn'#255#236'tp'#255#236'tp'#255#235'sn'#255
+#235'oj'#255#234'kd'#255#233'e^'#255#232'_W'#255#231'YO'#255#230'RG'#255#229
- +'K>'#255#228'C6'#255#227'<-'#255#225'4$'#255#224'-'#27#255#223'%'#18#255#222
+ ,'K>'#255#228'C6'#255#227'<-'#255#225'4$'#255#224'-'#27#255#223'%'#18#255#222
+#29#9#255#221#22#0#255#221#22#0#255#142#14#0#255#8#1#0#232#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'|3'
- ,#21#18#246#232'`X'#255#233'e]'#255#234'hb'#255#234'ke'#255#234'lf'#255#234'l'
+ +#21#18#246#232'`X'#255#233'e]'#255#234'hb'#255#234'ke'#255#234'lf'#255#234'l'
+'f'#255#234'jd'#255#234'g`'#255#233'c['#255#232'^V'#255#231'YO'#255#230'SH'
+#255#229'L@'#255#228'E8'#255#227'>0'#255#226'7'''#255#225'0'#31#255#224'('#22
+#255#222'!'#13#255#221#25#4#255#221#22#0#255#221#22#0#255'B'#6#0#249#2#0#0
@@ -2942,10 +2945,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#0#0#0#1#6#1#0#237#146#14#0#255#221#22#0#255#221#22#0#255#221#22#0#255
- +#221#22#0#255#221#22#0#255#221#22#0#255#221#22#0#255#221#22#0#255#221#22#0
+ ,#221#22#0#255#221#22#0#255#221#22#0#255#221#22#0#255#221#22#0#255#221#22#0
+#255#221#22#0#255#221#22#0#255#221#22#0#255#221#22#0#255#221#22#0#255#166#17
+#0#255#4#0#0#248#0#0#0#9#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#3#0#0#151'!'#3#0#251
+'P'#8#0#252'O'#8#0#251'N'#8#0#251'M'#8#0#251'M'#7#0#250'J'#7#0#250'I'#7#0#250
+'I'#7#0#250'J'#7#0#250'K'#7#0#250'L'#7#0#251'M'#8#0#251'N'#8#0#251'P'#8#0#252
@@ -3006,10 +3009,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#2#3#3#255'.AB'#255'^'#132#135#255#133#185#189#255'j'#147#150#255';RT'#255'-'
+'?@'#255'B[]'#255'^'#131#134#255'{'#171#174#255#152#211#215#255#165#229#234
+#255#132#182#187#255#13#18#18#255#0#0#0#255#0#0#0#255#0#0#0'f'#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#0#0#0'+'#0#0#0#186#0#0#0#255#0#0#0#255
+#13#19#19#255'Gfg'#255'y'#173#174#255'Rtv'#255'+=>'#255'4IJ'#255'c'#138#140
- ,#255#150#208#212#255#167#231#236#255#167#231#236#255#167#231#236#255#167#231
+ +#255#150#208#212#255#167#231#236#255#167#231#236#255#167#231#236#255#167#231
+#236#255#166#230#235#255'i'#145#148#255#10#13#14#255#0#0#0#255'III'#255#0#0#0
+#255#0#0#0#193#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#0#0#0#23#0#0#0#160#0#0#0#252#0#0#0#255
@@ -3070,10 +3073,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#214'xy'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#200
+'GI'#255#192'DF'#255'w*+'#255'w*+'#255'[ !'#255#1#0#0#255#158#142'i'#255#219
+#197#144#255#221#198#145#255#219#196#143#255#217#194#141#255#215#192#139#255
- +#213#190#137#255#210#187#134#255#209#186#133#255#207#184#131#255#204#181#128
+ ,#213#190#137#255#210#187#134#255#209#186#133#255#207#184#131#255#204#181#128
+#255#187#166'u'#255'olg'#255#180#180#180#255#176#176#176#255#172#172#172#255
+#167#167#167#255#210'jk'#255#226#158#159#255#212'op'#255#200'GI'#255#200'GI'
- ,#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#174'>?'#255
+ +#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'GI'#255#174'>?'#255
+'w*+'#255'w*+'#255')'#15#15#255'60#'#255#225#202#149#255#223#200#147#255#221
+#198#145#255#218#195#142#255#217#194#141#255#215#192#139#255#212#189#136#255
+#210#187#134#255#209#186#133#255#206#183#130#255#204#181#128#255#202#179'~'
@@ -3134,10 +3137,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#207#255#210'kl'#255#200'GI'#255#200'GI'#255#176'>@'#255#1#0#0#255'FFF'#255
+'ooo'#255'[[['#255'III'#255'555'#255#14#14#14#255#0#0#0#255#0#0#0#255#0#0#0
+#255#0#0#0#255#0#0#0#205#0#0#0'S'#0#0#0#1#255#255#255#0#255#255#255#0#255#255
- +#255#0#236#192#192#255#203'SU'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'G'
+ ,#255#0#236#192#192#255#203'SU'#255#200'GI'#255#200'GI'#255#200'GI'#255#200'G'
+'I'#255#200'GI'#255#200'GI'#255#230#173#174#255#240#207#207#255#240#207#207
+#255#217#130#131#255#200'GI'#255#200'GI'#255'w*+'#255#0#0#0#255#0#0#0#255#0#0
- ,#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#238#0#0#0#185#0#0#0#132#0#0#0'N'#0
+ +#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#238#0#0#0#185#0#0#0#132#0#0#0'N'#0
+#0#0#24#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#240#207#207#255#236#192#192#255#209'fg'#255#200'GI'#255#200'G'
+'I'#255#200'GI'#255#200'GI'#255#200'GI'#255#204'VW'#255#238#198#199#255#240
@@ -3198,10 +3201,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#10#10#10#255'<<<'#255#0#0#0#254#0#0#0';'#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#2#2#2'|'#3#3#3#252'ddd'#252#213#213#213#255#240#240#240#255#241
+#241#241#255#242#242#242#255#160#160#160#255#6#6#6#255'eee'#255#195#195#195
- ,#255'AAA'#251#5#5#5#213#0#0#0#3#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255'AAA'#251#5#5#5#213#0#0#0#3#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#0#0#0#3#5#5#5#155#10#10#10#250#184#184#184#255
@@ -3262,10 +3265,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'0'#197#199#255'('#185#186#255#23'z{'#255#234#230#144#255#234#230#144#255#234
+#230#144#255#234#230#144#255#234#230#144#255#234#230#144#255#234#230#144#255
+#234#230#144#255#234#230#144#255#234#230#144#255'@?'''#250#5#5#3#194#255#255
- +#255#0#0#0#0#13#2#2#2#251'uuu'#255#145#145#145#255'jjj'#255'BDD'#255#8#11#11
+ ,#255#0#0#0#0#13#2#2#2#251'uuu'#255#145#145#145#255'jjj'#255'BDD'#255#8#11#11
+#255#12#24#24#255'5'#128#131#255'V'#214#218#255'U'#219#223#255'P'#216#220#255
+'K'#213#216#255'E'#210#213#255'@'#206#209#255':'#203#205#255'4'#200#202#255
- ,'.'#196#198#255#27#134#135#255#234#230#144#255#234#230#144#255#234#230#144
+ +'.'#196#198#255#27#134#135#255#234#230#144#255#234#230#144#255#234#230#144
+#255#234#230#144#255#234#230#144#255#234#230#144#255#234#230#144#255#234#230
+#144#255#234#230#144#255#175#172'k'#255#0#0#0#254#0#0#0'4'#255#255#255#0#255
+#255#255#0#4#6#6#248#0#0#0#255#4#6#6#255#22'+,'#255')X['#255'A'#143#146#255
@@ -3326,10 +3329,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#27#28#255#0#0#0#255#0#0#0#255#19'12'#255'/y|'#255'I'#191#195#255'O'#215#219
+#255'K'#213#216#255'F'#210#213#255'A'#207#210#255'<'#204#207#255'6'#201#203
+#255'1'#198#200#255'+'#195#196#255#234#230#144#255#234#230#144#255#234#230
- +#144#255#234#230#144#255'KJ.'#251#6#5#3#204#255#255#255#0#255#255#255#0#255
+ ,#144#255#234#230#144#255'KJ.'#251#6#5#3#204#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#0#0#0#157#1#3#3#254#26'IJ'#255'#^`'#255'/~'#129#255'?'#165#168#255'L'
- ,#202#206#255'Q'#217#221#255'O'#215#219#255'L'#214#218#255'I'#212#215#255'E'
+ +#202#206#255'Q'#217#221#255'O'#215#219#255'L'#214#218#255'I'#212#215#255'E'
+#210#213#255'A'#207#210#255'='#205#207#255'8'#202#204#255'3'#199#201#255'-'
+#196#197#255'('#193#194#255#234#230#144#255#234#230#144#255#234#230#144#255
+#184#181'q'#255#0#0#0#255#0#0#0'='#255#255#255#0#255#255#255#0#255#255#255#0
@@ -3390,10 +3393,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#245#255#11#11#11#248#0#0#0#18#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#0#0#0#26#17#17#17#244#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ ,#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#241#255#8#8#8#248#0#0#0#15#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#0#0#0#27#17#17#17#244#255#255#255#255#255#255#255#255#255#255#255#255
- ,#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#234#255#6#6#6
+#250#0#0#0#13#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0
+#28#17#17#17#244#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
@@ -3454,10 +3457,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#181#131#255#254#186#137#255#249#180#130#255#244#174'{'#255#239#168's'#255
+#234#162'k'#255#229#156'd'#255#224#149'\'#255#219#143'U'#255#214#137'M'#255
+#209#131'E'#255#204'}>'#255#199'w6'#255#194'q.'#255#189'j'''#255#184'd'#31
- +#255'k8'#13#255#8#4#0#185#12#8#5#190'yV<'#255#247#177#127#255#248#179#129#255
+ ,#255'k8'#13#255#8#4#0#185#12#8#5#190'yV<'#255#247#177#127#255#248#179#129#255
+#246#177'~'#255#243#172'x'#255#238#166'q'#255#233#161'j'#255#228#155'c'#255
+#223#149'['#255#218#143'T'#255#214#137'L'#255#208#131'E'#255#203'|='#255#199
- ,'v6'#255#193'p.'#255#188'j&'#255#183'd'#31#255'< '#7#254#0#0#0'|'#0#0#0'|R9'
+ +'v6'#255#193'p.'#255#188'j&'#255#183'd'#31#255'< '#7#254#0#0#0'|'#0#0#0'|R9'
+''''#254#242#172'x'#255#243#173'y'#255#242#171'x'#255#239#168's'#255#235#163
+'n'#255#231#158'g'#255#227#153'`'#255#222#147'Y'#255#217#141'R'#255#212#135
+'K'#255#208#129'C'#255#203'{<'#255#198'u4'#255#193'o-'#255#188'i%'#255#183'c'
@@ -3518,10 +3521,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0
+#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'{'#0#0#255'['#0#0#255#10#0#0#193#8#0#0
+#223'i'#0#0#255#157#137#193#255#128#128#221#255#128#128#221#255#128#128#221
- +#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128
+ ,#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128
+#221#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221#255#128
+#128#221#255#128#128#221#255#152#143#210#255'Z'#0#0#255#10#0#0#192#8#0#0#222
- ,'i'#0#0#255#157#137#193#255#128#128#221#255#128#128#221#255#128#128#221#255
+ +'i'#0#0#255#157#137#193#255#128#128#221#255#128#128#221#255#128#128#221#255
+#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221
+#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128#221#255#128#128
+#221#255#128#128#221#255#152#143#210#255'Y'#0#0#255#10#0#0#191#8#0#0#221'i'#0
@@ -3582,10 +3585,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#26#27'$'#250#2#3#10#232#0#0#0#22#255#255#255#0#255#255#255#0#255#255#255
+#0#255#255#255#0#255#255#255#0#0#0#0#24#2#3#10#234'!"*'#251'```'#255'bbb'#255
+'ddd'#255'eee'#255'eee'#255'eee'#255'ccc'#255'```'#255#31#31'('#249#2#3#9#233
- +#0#0#0#23#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+ ,#0#0#0#23#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+#0#255#255#255#0#0#0#0#13#2#4#13#218#23#24'"'#250'YYY'#255']]]'#255'___'#255
+'```'#255'```'#255'```'#255'^^^'#255'ZZZ'#255#22#23' '#250#2#3#12#217#0#0#0
- ,#12#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0
+ +#12#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0
+#0#13#2#3#12#219#24#25'"'#249'ZZZ'#255'WWW'#255'YYY'#255'ZZZ'#255'[[['#255'['
+'[['#255'[[['#255'YYY'#255'XXX'#255'WWW'#255#24#25'#'#249#2#3#12#217#0#0#0#12
+#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#14#2#3#12#221#23#24'!'#250
@@ -3646,10 +3649,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'L'#255'S'#184'F'#255';T7'#243'333T'#255#255#255#0#255#255#255#0#255#255#255
+#0'6:6'#163'G[E'#245#129#201'w'#255'585'#248'333'#16#255#255#255#0#255#255
+#255#0#255#255#255#0'333'#8'3331343r594'#244'P'#149'G'#255'V'#185'I'#255'S'
- +#184'F'#255'D|='#255'4:4'#158#255#255#255#0#255#255#255#0#255#255#255#0'333'
+ ,#184'F'#255'D|='#255'4:4'#158#255#255#255#0#255#255#255#0#255#255#255#0'333'
+#5'6:6'#202'RtM'#249'585'#248'333'#16#255#255#255#0#255#255#255#0#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0'3337473'#249'Q'#177'E'#255'S'
- ,#184'F'#255'I'#149'@'#255'5<4'#208#255#255#255#0#255#255#255#0#255#255#255#0
+ +#184'F'#255'I'#149'@'#255'5<4'#208#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0'333'#19'595'#230'333'#255'333'#16#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'4:4'
+#229'M'#161'B'#255'S'#184'F'#255'@}8'#255'5=4'#186#255#255#255#0#255#255#255
@@ -3710,10 +3713,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'8<7'#228'8>8'#184'7<6'#164'6;6'#177'6<6'#246'i'#193']'#255'_'#180'T'#255'7B'
+'6'#245'353k'#255#255#255#0#255#255#255#0'8=7'#168'u'#153'q'#255#147#210#138
+#255#148#211#139#255'x'#164'r'#255'7:7'#244'333n3330333'#7#255#255#255#0#255
- +#255#255#0#255#255#255#0'333'#24'6;5'#246'g'#189'\'#255'>S;'#245'494'#154#255
+ ,#255#255#0#255#255#255#0'333'#24'6;5'#246'g'#189'\'#255'>S;'#245'494'#154#255
+#255#255#0#255#255#255#0#255#255#255#0'8=7'#215'v'#172'n'#255#138#207#129#255
+#135#197'~'#255'575'#248'3333'#255#255#255#0#255#255#255#0#255#255#255#0#255
- ,#255#255#0#255#255#255#0#255#255#255#0'333'#24'6:5'#246'GlC'#248'5:4'#195'33'
+ +#255#255#0#255#255#255#0#255#255#255#0'333'#24'6:5'#246'GlC'#248'5:4'#195'33'
+'3'#3#255#255#255#0#255#255#255#0#255#255#255#0'8>7'#195'j'#159'c'#255#132
+#204'z'#255'u'#174'm'#255'8<7'#222#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'333'#24'333'#255'59'
@@ -3774,10 +3777,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#0#0
+#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255
+ ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255
+#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0
+#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -3838,10 +3841,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#255#255#0#21#21#21#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#0#0#0
- +#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255
+ ,#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#21#21#21#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
- ,#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255
+ +#255#0#0#0#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#21#21#21#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#0#0
@@ -3902,10 +3905,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#255#0#255#255#255#0#0#0#0#255#128#128#128#255#0#0#0#255#128#128#128#255#0#0
+#0#255#0#0#0#255#0#0#0#255#128#128#128#255#0#0#0#255#128#128#128#255#0#0#0
+#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#128#128
+ ,#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#128#128
+#128#255#0#0#0#255#128#128#128#255#0#0#0#255#255#255#255#0#0#0#0#255#128#128
+#128#255#0#0#0#255#128#128#128#255#0#0#0#255#255#255#255#0#255#255#255#0#255
- ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#0#0#0#255#128#128#128#255#0#0#0#255#128#128#128#255#0#0
+#0#255#255#255#255#0#0#0#0#255#128#128#128#255#0#0#0#255#128#128#128#255#0#0
+#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -3966,10 +3969,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'GG'#208#255'UU'#227#255'\\'#229#255'cc'#231#255'jj'#233#255'qq'#235#255'{{'
+#233#255#30#31'D'#249'#$K'#249'}}'#235#255'tt'#236#255'mm'#234#255'ff'#232
+#255'__'#230#255'WW'#228#255'LL'#217#255#14#14'5'#247#1#3#20#156#0#0#0#21#1#2
- +#13#229#24#25'R'#250'JJ'#203#255'ZZ'#229#255'``'#231#255'gg'#232#255'mm'#234
+ ,#13#229#24#25'R'#250'JJ'#203#255'ZZ'#229#255'``'#231#255'gg'#232#255'mm'#234
+#255'rr'#236#255'ss'#232#255'uu'#235#255'ss'#236#255'oo'#235#255'ii'#233#255
+'cc'#231#255'\\'#230#255'PP'#216#255#20#21'E'#251#1#2#14#228#0#0#0#14#255#255
- ,#255#0#0#0#0#23#1#2#13#232#25#26'P'#250'MM'#206#255']]'#230#255'bb'#231#255
+ +#255#0#0#0#0#23#1#2#13#232#25#26'P'#250'MM'#206#255']]'#230#255'bb'#231#255
+'gg'#233#255'll'#234#255'nn'#234#255'nn'#235#255'mm'#234#255'ii'#233#255'dd'
+#232#255'__'#230#255'TT'#219#255#22#23'G'#251#2#2#14#231#0#0#0#21#255#255#255
+#0#255#255#255#0#255#255#255#0#0#0#0#24#1#2#13#233#26#27'T'#250'RR'#213#255
@@ -4030,10 +4033,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#226#221#255#225#215#205#255#185#131'V'#248#233#227#221#167'TWU'#236#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0'SWU'#235#233#228#223#165#203#155'n'#250#231#226#220#255#236#238#238#255
- +#236#238#238#255#236#238#238#255#236#238#238#255#231#227#223#255#177'yK'#250
+ ,#236#238#238#255#236#238#238#255#236#238#238#255#231#227#223#255#177'yK'#250
+#233#227#221#168'TWU'#236#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'SWU'#185#199#198#196#158#206#163'{'
- ,#205#192#139'^'#253#189#138']'#253#235#235#234#255#236#238#238#255#181#127'S'
+ +#205#192#139'^'#253#189#138']'#253#235#235#234#255#236#238#238#255#181#127'S'
+#252#173'rC'#254#186#135'_'#187#199#195#189#173'UXU'#188#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'SWUbp'
+'sr'#208#244#234#224#161#207#164'y'#128#181'|N'#253#229#223#218#255#230#225
@@ -4094,10 +4097,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+#250#233#227#221#168'TWU'#236#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'SWU'#185#199#198#196#158#206#163
+'{'#205#192#139'^'#253#189#137'\'#252#185#131'U'#252#182'~O'#252#177'xI'#252
- +#173'rC'#254#186#135'_'#187#199#195#189#173'UXU'#188#255#255#255#0#255#255
+ ,#173'rC'#254#186#135'_'#187#199#195#189#173'UXU'#188#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'SWUbpsr'
+#208#244#234#224#161#207#164'y'#128#204#156'ls'#204#155'lh'#203#153'n^'#202
- ,#154'lT'#208#164#127'Q'#245#236#228#156'sur'#214'SWUb'#255#255#255#0#255#255
+ +#154'lT'#208#164#127'Q'#245#236#228#156'sur'#214'SWUb'#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255
+#255#0'SWU'#189#154#157#155#170#243#232#222#166#225#196#168#133#214#175#136
+'h'#214#175#138'`'#229#203#179'o'#244#235#226#161#159#157#152#184'TWU'#190
@@ -4158,10 +4161,10 @@ LazarusResources.Add('TMainForm','FORMDATA',[
+'ewExecute'#8'ShortCut'#3'N@'#0#0#7'TAction'#8'FileOpen'#8'Category'#6#4'Fil'
+'e'#7'Caption'#6#8'&Open...'#4'Hint'#6#4'Open'#10'ImageIndex'#2#1#9'OnExecut'
+'e'#7#15'FileOpenExecute'#8'ShortCut'#3'O@'#0#0#7'TAction'#8'FileSave'#8'Cat'
- +'egory'#6#4'File'#7'Caption'#6#5'&Save'#4'Hint'#6#4'Save'#10'ImageIndex'#2#2
+ ,'egory'#6#4'File'#7'Caption'#6#5'&Save'#4'Hint'#6#4'Save'#10'ImageIndex'#2#2
+#9'OnExecute'#7#15'FileSaveExecute'#8'ShortCut'#3'S@'#0#0#7'TAction'#10'File'
+'SaveAs'#8'Category'#6#4'File'#7'Caption'#6#11'Save &As...'#4'Hint'#6#7'Save'
- ,' As'#9'OnExecute'#7#17'FileSaveAsExecute'#0#0#7'TAction'#9'FileClose'#8'Cat'
+ +' As'#9'OnExecute'#7#17'FileSaveAsExecute'#0#0#7'TAction'#9'FileClose'#8'Cat'
+'egory'#6#4'File'#7'Caption'#6#6'&Close'#4'Hint'#6#5'Close'#10'ImageIndex'#2
+#3#9'OnExecute'#7#16'FileCloseExecute'#8'ShortCut'#3's@'#0#0#9'TEditUndo'#8
+'EditUndo'#8'Category'#6#4'Edit'#7'Caption'#6#5'&Undo'#7'Checked'#9#7'Enable'
diff --git a/applications/lazimageeditor/main.pas b/applications/lazimageeditor/main.pas
index 04880cb1f..ab82fb9c0 100644
--- a/applications/lazimageeditor/main.pas
+++ b/applications/lazimageeditor/main.pas
@@ -173,6 +173,7 @@ type
ToolBrush: TToolButton;
ToolButton1: TToolButton;
ToolText: TToolButton;
+ ToolcolorReplacer: TToolButton;
ZoomInBtn: TToolButton;
ZoomOutBtn: TToolButton;
ToolCircleShape: TSpeedButton;
@@ -274,6 +275,7 @@ type
procedure spinFillAlphaChange(Sender: TObject);
procedure ToolBarToolsClick(Sender: TObject);
procedure ToolBrushClick(Sender: TObject);
+ procedure ToolcolorReplacerClick(Sender: TObject);
procedure ToolTextClick(Sender: TObject);
procedure ZoomInBtnClick(Sender: TObject);
procedure ZoomOutBtnClick(Sender: TObject);
@@ -493,6 +495,14 @@ begin
ChangeTool(ptBrush);
end;
+procedure TMainForm.ToolcolorReplacerClick(Sender: TObject);
+begin
+ if not Pictures.CanEdit then
+ Exit;
+ ChangeTool(ptColorReplacer);
+ ActivePictureEdit.ChangeColor(BtnFromColor.ButtonColor, BtnToColor.ButtonColor);
+end;
+
procedure TMainForm.ToolTextClick(Sender: TObject);
begin
if not Pictures.CanEdit then
@@ -1343,7 +1353,7 @@ end;
procedure TMainForm.BtnToColorClick(Sender: TObject);
begin
-
+ ActivePictureEdit.ChangeColor(BtnFromColor.ButtonColor, BtnToColor.ButtonColor);
end;
procedure TMainForm.EditSizeChange(Sender: TObject);
diff --git a/applications/lazimageeditor/picturectrls.pas b/applications/lazimageeditor/picturectrls.pas
index 1fb19cc11..7382408bc 100644
--- a/applications/lazimageeditor/picturectrls.pas
+++ b/applications/lazimageeditor/picturectrls.pas
@@ -111,7 +111,7 @@ type
tdRoundRectangle, tdPolygon);
TPictureEditTool = (ptLine, ptPen, ptRectangle, ptFloodFill, ptEllipse,
- ptMask, ptColorPick, ptEraser, ptSpray, ptPolygon, ptBrush, ptText);
+ ptMask, ptColorPick, ptEraser, ptSpray, ptPolygon, ptBrush, ptText, ptColorReplacer);
TPicturePos = (ppTopLeft, ppTopCenter, ppTopRight, ppCenterLeft, ppCentered,
ppCenterRight, ppBottomLeft, ppBottomCenter, ppBottomRight);
@@ -147,6 +147,7 @@ type
procedure SetPaperColor(const AValue: TColor);
procedure SetTool(const AValue: TPictureEditTool);
protected
+ FromColor, ToColor: TColor;
procedure Change; dynamic;
procedure ColorChange; dynamic;
procedure PictureSizeChange; dynamic;
@@ -170,6 +171,7 @@ type
procedure FloodFill(X, Y: integer; Shift: TShiftState = [ssLeft]);
procedure MaskFloodFill(X, Y: integer; Shift: TShiftState = [ssLeft]);
procedure Eraser(X, Y: integer; Shift: TShiftState = [ssLeft]);
+ procedure ColorReplacer(X, Y: integer; Shift: TShiftState = [ssLeft]);
procedure Spray(X, Y: integer; Shift: TShiftState = [ssLeft]);
procedure Brush(X, Y: integer; Shift: TShiftState = [ssLeft]);
procedure Line(X1, Y1, X2, Y2: integer; Shift: TShiftState = [ssLeft]);
@@ -209,6 +211,7 @@ type
procedure BeginDraw;
procedure EndDraw;
procedure UpdatePicture;
+ procedure ChangeColor(FrColor, taColor: TColor);
public
TextEditor: TTextEditor;
property DrawMode: TDrawMode read FDrawMode write FDrawMode;
@@ -638,6 +641,7 @@ begin
MaskFloodFill(X, Y, Shift);
ptColorPick: ColorPick(X, Y, Shift);
ptEraser: Eraser(X, Y, Shift);
+ ptColorReplacer: ColorReplacer(X, Y, Shift);
ptSpray: Spray(X, Y, Shift);
ptText: ProcessEditorText(X, Y, X, Y);
ptBrush: Brush(X, Y, Shift);
@@ -659,6 +663,7 @@ begin
Line(FTempPos.X, FTempPos.Y, X, Y, Shift);
end;
ptEraser: Eraser(X, Y, Shift);
+ ptColorReplacer: ColorReplacer(X, Y, Shift);
ptSpray: Spray(X, Y, Shift);
ptBrush: Brush(X, Y, Shift);
ptColorPick: ColorPick(X, Y, Shift);
@@ -896,6 +901,39 @@ begin
InvalidatePictureRect(R);
end;
+procedure TCustomPictureEdit.ChangeColor(FrColor, TaColor: TColor);
+begin
+ FromColor := FrColor;
+ ToColor := TaColor;
+end;
+
+procedure TCustomPictureEdit.ColorReplacer(X, Y: integer; Shift: TShiftState = [ssLeft]);
+var
+ R: TRect;
+begin
+ if Picture = nil then
+ Exit;
+
+ BeginDraw;
+ if ssLeft in Shift then
+ Picture.EraseMode := ermErase;
+ if ssRight in Shift then
+ Picture.EraseMode := ermReplace;
+ try
+ R := Bounds(X - FSize div 2, Y - FSize div 2, FSize, FSize);
+ Picture.Canvas.Pen.Color := FPaperColor;
+ Picture.Canvas.Brush.Color := FpaperColor;
+ case Shape of
+ psRect: Picture.ReplaceRectColor(FromColor, ToColor, R, 6, stRoundRect);
+ psCircle: Picture.ReplaceRectColor(FromColor, ToColor, R, 6, stEllipse);
+ end;
+ finally
+ Picture.EraseMode := ermNone;
+ EndDraw;
+ end;
+ InvalidatePictureRect(R);
+end;
+
procedure TCustomPictureEdit.Spray(X, Y: integer; Shift: TShiftState);
var
R: TRect;