-
Notifications
You must be signed in to change notification settings - Fork 7
/
vtxedit.lrs
8421 lines (8420 loc) · 656 KB
/
vtxedit.lrs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{ This is an automatically generated lazarus resource file }
LazarusResources.Add('TfMain','FORMDATA',[
'TPF0'#6'TfMain'#5'fMain'#4'Left'#3'"'#1#6'Height'#3#135#2#3'Top'#3#168#0#5'W'
+'idth'#3'&'#4#7'Caption'#6#7'VTXEdit'#12'ClientHeight'#3's'#2#11'ClientWidth'
+#3'&'#4#10'KeyPreview'#9#4'Menu'#7#5'mMenu'#7'OnClose'#7#9'FormClose'#8'OnCr'
+'eate'#7#10'FormCreate'#9'OnKeyDown'#7#11'FormKeyDown'#10'OnKeyPress'#7#12'F'
+'ormKeyPress'#7'OnKeyUp'#7#9'FormKeyUp'#8'OnResize'#7#10'FormResize'#10'LCLV'
+'ersion'#6#7'1.6.4.0'#0#8'TCoolBar'#8'CoolBar1'#4'Left'#2#0#6'Height'#2'2'#3
+'Top'#2#0#5'Width'#3'&'#4#8'AutoSize'#9#12'BandMaximize'#7#6'bmNone'#5'Bands'
+#14#1#5'Break'#8#7'Control'#7#13'tbToolPalette'#9'FixedSize'#9#14'Horizontal'
+'Only'#9#9'MinHeight'#2#24#8'MinWidth'#3'K'#1#5'Width'#3'K'#1#0#1#5'Break'#8
+#7'Control'#7#19'tbAttributesPalette'#9'FixedSize'#9#14'HorizontalOnly'#9#9
+'MinHeight'#2#24#8'MinWidth'#3'e'#1#5'Width'#3'e'#1#0#1#7'Control'#7#13'tbFo'
+'ntPalette'#9'FixedSize'#9#14'HorizontalOnly'#9#9'MinHeight'#2#24#5'Width'#3
+'&'#1#0#0#11'EdgeBorders'#11#0#9'EdgeInner'#7#6'esNone'#9'EdgeOuter'#7#6'esN'
+'one'#9'GrabStyle'#7#9'gsGripper'#9'GrabWidth'#2#8#17'HorizontalSpacing'#2#2
+#15'VerticalSpacing'#2#1#0#8'TToolBar'#13'tbToolPalette'#22'AnchorSideLeft.C'
+'ontrol'#7#8'CoolBar1'#21'AnchorSideTop.Control'#7#8'CoolBar1'#4'Left'#2#14#6
+'Height'#2#21#3'Top'#2#1#5'Width'#3'"'#1#5'Align'#7#6'alNone'#8'AutoSize'#9
+#18'BorderSpacing.Left'#2#14#17'BorderSpacing.Top'#2#1#12'ButtonHeight'#2#21
+#11'ButtonWidth'#2#21#7'Caption'#6#13'tbToolPalette'#14'DisabledImages'#7#17
+'ilDisabledButtons'#11'EdgeBorders'#11#0#9'EdgeInner'#7#6'esNone'#9'EdgeOute'
+'r'#7#6'esNone'#6'Images'#7#9'ilButtons'#8'TabOrder'#2#0#0#11'TToolButton'#9
+'tbPreview'#4'Left'#2#1#4'Hint'#6#7'Preview'#3'Top'#2#0#7'Caption'#6#9'tbPre'
+'view'#10'ImageIndex'#2';'#7'OnClick'#7#14'pbPreviewClick'#14'ParentShowHint'
+#8#8'ShowHint'#9#0#0#11'TToolButton'#11'ToolButton8'#4'Left'#2#22#6'Height'#2
+#21#3'Top'#2#0#5'Width'#2#8#7'Caption'#6#11'ToolButton8'#5'Style'#7#12'tbsSe'
+'parator'#0#0#11'TToolButton'#12'tbToolSelect'#4'Left'#2#30#4'Hint'#6#6'Sele'
+'ct'#3'Top'#2#0#7'Caption'#6#12'tbToolSelect'#7'Grouped'#9#10'ImageIndex'#2
+#15#7'OnClick'#7#11'tbToolClick'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'T'
+'ToolButton'#10'tbToolDraw'#4'Left'#2'3'#4'Hint'#6#4'Draw'#3'Top'#2#0#7'Capt'
+'ion'#6#10'tbToolDraw'#7'Grouped'#9#10'ImageIndex'#2#16#7'OnClick'#7#11'tbTo'
+'olClick'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#10'tbToolFi'
+'ll'#4'Left'#2']'#4'Hint'#6#4'Fill'#3'Top'#2#0#7'Caption'#6#10'tbToolFill'#7
+'Enabled'#8#7'Grouped'#9#10'ImageIndex'#2#17#7'OnClick'#7#11'tbToolClick'#14
+'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#16'tbToolEyedropper'#4
+'Left'#2'H'#4'Hint'#6#10'Eyedropper'#3'Top'#2#0#7'Caption'#6#16'tbToolEyedro'
+'pper'#7'Enabled'#8#7'Grouped'#9#10'ImageIndex'#2#28#7'OnClick'#7#11'tbToolC'
+'lick'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#10'tbToolLine'
+#4'Left'#2'r'#4'Hint'#6#4'Line'#3'Top'#2#0#7'Caption'#6#10'tbToolLine'#7'Ena'
+'bled'#8#7'Grouped'#9#10'ImageIndex'#2#18#7'OnClick'#7#11'tbToolClick'#14'Pa'
+'rentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#10'tbToolRect'#4'Left'#3
+#135#0#4'Hint'#6#9'Rectangle'#3'Top'#2#0#7'Caption'#6#10'tbToolRect'#7'Enabl'
+'ed'#8#7'Grouped'#9#10'ImageIndex'#2#19#7'OnClick'#7#11'tbToolClick'#14'Pare'
+'ntShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#13'tbToolEllipse'#4'Left'#3
+#156#0#4'Hint'#6#7'Ellipse'#3'Top'#2#0#7'Caption'#6#13'tbToolEllipse'#7'Enab'
+'led'#8#7'Grouped'#9#10'ImageIndex'#2#20#7'OnClick'#7#11'tbToolClick'#14'Par'
+'entShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#12'ToolButton15'#4'Left'#3
+#177#0#6'Height'#2#21#3'Top'#2#0#5'Width'#2#8#7'Caption'#6#12'ToolButton15'#5
+'Style'#7#12'tbsSeparator'#0#0#11'TToolButton'#15'tbModeCharacter'#4'Left'#3
+#185#0#4'Hint'#6#15'Draw Characters'#3'Top'#2#0#7'Caption'#6#15'tbModeCharac'
+'ter'#10'ImageIndex'#2#23#7'OnClick'#7#11'tbModeClick'#14'ParentShowHint'#8#8
+'ShowHint'#9#0#0#11'TToolButton'#16'tbModeLeftRights'#4'Left'#3#206#0#4'Hint'
+#6#16'Draw Half Blocks'#3'Top'#2#0#7'Caption'#6#16'tbModeLeftRights'#10'Imag'
+'eIndex'#2#24#7'OnClick'#7#11'tbModeClick'#14'ParentShowHint'#8#8'ShowHint'#9
+#0#0#11'TToolButton'#16'tbModeTopBottoms'#4'Left'#3#227#0#4'Hint'#6#16'Draw '
+'Half Blocks'#3'Top'#2#0#7'Caption'#6#16'tbModeTopBottoms'#10'ImageIndex'#2
+#25#7'OnClick'#7#11'tbModeClick'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'T'
+'ToolButton'#14'tbModeQuarters'#4'Left'#3#248#0#4'Hint'#6#19'Draw Quarter Bl'
+'ocks'#3'Top'#2#0#7'Caption'#6#14'tbModeQuarters'#10'ImageIndex'#2#26#7'OnCl'
+'ick'#7#11'tbModeClick'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButto'
+'n'#12'tbModeSixels'#4'Left'#3#13#1#4'Hint'#6#11'Draw Sixels'#3'Top'#2#0#7'C'
+'aption'#6#12'tbModeSixels'#10'ImageIndex'#2#27#7'OnClick'#7#11'tbModeClick'
+#14'ParentShowHint'#8#8'ShowHint'#9#0#0#0#8'TToolBar'#19'tbAttributesPalette'
+#22'AnchorSideLeft.Control'#7#8'CoolBar1'#21'AnchorSideTop.Control'#7#8'Cool'
+'Bar1'#4'Left'#3'Y'#1#6'Height'#2#21#3'Top'#2#1#5'Width'#3'Q'#1#5'Align'#7#6
,'alNone'#8'AutoSize'#9#18'BorderSpacing.Left'#3'Y'#1#17'BorderSpacing.Top'#2
+#1#12'ButtonHeight'#2#21#11'ButtonWidth'#2#21#7'Caption'#6#19'tbAttributesPa'
+'lette'#14'DisabledImages'#7#17'ilDisabledButtons'#11'EdgeBorders'#11#0#9'Ed'
+'geInner'#7#6'esNone'#9'EdgeOuter'#7#6'esNone'#6'Images'#7#9'ilButtons'#8'Ta'
+'bOrder'#2#1#13'OnPaintButton'#7#30'tbAttributesPalettePaintButton'#0#11'TTo'
+'olButton'#10'tbAttrBold'#4'Left'#2'@'#4'Hint'#6#8'Use Bold'#3'Top'#2#0#7'Ca'
+'ption'#6#10'tbAttrBold'#10'ImageIndex'#2#0#7'OnClick'#7#11'tbAttrClick'#11
+'OnMouseDown'#7#15'tbAttrMouseDown'#14'ParentShowHint'#8#8'ShowHint'#9#5'Sty'
+'le'#7#8'tbsCheck'#0#0#11'TToolButton'#11'tbAttrFaint'#4'Left'#2'U'#4'Hint'#6
+#9'Use Faint'#3'Top'#2#0#7'Caption'#6#11'tbAttrFaint'#10'ImageIndex'#2#1#7'O'
+'nClick'#7#11'tbAttrClick'#11'OnMouseDown'#7#15'tbAttrMouseDown'#14'ParentSh'
+'owHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#13'tbAtt'
+'rItalics'#4'Left'#2'j'#4'Hint'#6#11'Use Italics'#3'Top'#2#0#7'Caption'#6#13
+'tbAttrItalics'#10'ImageIndex'#2#2#7'OnClick'#7#11'tbAttrClick'#11'OnMouseDo'
+'wn'#7#15'tbAttrMouseDown'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8't'
+'bsCheck'#0#0#11'TToolButton'#15'tbAttrUnderline'#4'Left'#2#127#4'Hint'#6#13
+'Use Underline'#3'Top'#2#0#7'Caption'#6#15'tbAttrUnderline'#10'ImageIndex'#2
+#3#7'OnClick'#7#11'tbAttrClick'#11'OnMouseDown'#7#15'tbAttrMouseDown'#14'Par'
+'entShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#15
+'tbAttrBlinkSlow'#4'Left'#3#148#0#4'Hint'#6#14'Use Blink Slow'#3'Top'#2#0#7
+'Caption'#6#15'tbAttrBlinkSlow'#10'ImageIndex'#2#4#7'OnClick'#7#11'tbAttrCli'
+'ck'#11'OnMouseDown'#7#15'tbAttrMouseDown'#14'ParentShowHint'#8#8'ShowHint'#9
+#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#15'tbAttrBlinkFast'#4'Left'#3#169
+#0#4'Hint'#6#14'Use Blink Fast'#3'Top'#2#0#7'Caption'#6#15'tbAttrBlinkFast'
+#10'ImageIndex'#2#5#7'OnClick'#7#11'tbAttrClick'#11'OnMouseDown'#7#15'tbAttr'
+'MouseDown'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11
+'TToolButton'#13'tbAttrReverse'#4'Left'#3#190#0#4'Hint'#6#11'Use Reverse'#3
+'Top'#2#0#7'Caption'#6#13'tbAttrReverse'#10'ImageIndex'#2#6#7'OnClick'#7#11
+'tbAttrClick'#11'OnMouseDown'#7#15'tbAttrMouseDown'#14'ParentShowHint'#8#8'S'
+'howHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#13'tbAttrConceal'#4'L'
+'eft'#3#211#0#4'Hint'#6#11'Use Conceal'#3'Top'#2#0#7'Caption'#6#13'tbAttrCon'
+'ceal'#10'ImageIndex'#2#7#7'OnClick'#7#11'tbAttrClick'#11'OnMouseDown'#7#15
+'tbAttrMouseDown'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0
+#0#11'TToolButton'#19'tbAttrStrikethrough'#4'Left'#3#232#0#4'Hint'#6#17'Use '
+'Strikethrough'#3'Top'#2#0#7'Caption'#6#19'tbAttrStrikethrough'#10'ImageInde'
+'x'#2#8#7'OnClick'#7#11'tbAttrClick'#11'OnMouseDown'#7#15'tbAttrMouseDown'#14
+'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'
+#18'tbAttrDoublestrike'#4'Left'#3#253#0#4'Hint'#6#16'Use Doublestrike'#3'Top'
+#2#0#7'Caption'#6#18'tbAttrDoublestrike'#10'ImageIndex'#2#9#7'OnClick'#7#11
+'tbAttrClick'#11'OnMouseDown'#7#15'tbAttrMouseDown'#14'ParentShowHint'#8#8'S'
+'howHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#12'tbAttrShadow'#4'Le'
+'ft'#3#18#1#4'Hint'#6#10'Use Shadow'#3'Top'#2#0#7'Caption'#6#12'tbAttrShadow'
+#10'ImageIndex'#2#10#7'OnClick'#7#11'tbAttrClick'#11'OnMouseDown'#7#15'tbAtt'
+'rMouseDown'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11
+'TToolButton'#9'tbAttrTop'#4'Left'#3''''#1#4'Hint'#6#12'Use Top Half'#3'Top'
+#2#0#7'Caption'#6#9'tbAttrTop'#10'ImageIndex'#2#11#7'OnClick'#7#11'tbAttrCli'
+'ck'#11'OnMouseDown'#7#15'tbAttrMouseDown'#14'ParentShowHint'#8#8'ShowHint'#9
+#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#12'tbAttrBottom'#4'Left'#3'<'#1#4
+'Hint'#6#15'Use Bottom Half'#3'Top'#2#0#7'Caption'#6#12'tbAttrBottom'#10'Ima'
+'geIndex'#2#12#7'OnClick'#7#11'tbAttrClick'#11'OnMouseDown'#7#15'tbAttrMouse'
+'Down'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToo'
+'lButton'#15'tbAttrCharacter'#4'Left'#2#1#4'Hint'#6#13'Use Character'#3'Top'
+#2#0#7'Caption'#6#15'tbAttrCharacter'#10'ImageIndex'#2#23#7'OnClick'#7#11'tb'
+'AttrClick'#11'OnMouseDown'#7#15'tbAttrMouseDown'#14'ParentShowHint'#8#8'Sho'
+'wHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#8'tbAttrFG'#4'Left'#2#22
+#4'Hint'#6#14'Use Foreground'#3'Top'#2#0#7'Caption'#6#8'tbAttrFG'#10'ImageIn'
+'dex'#2#29#7'OnClick'#7#11'tbAttrClick'#11'OnMouseDown'#7#15'tbAttrMouseDown'
+#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButto'
+'n'#8'tbAttrBG'#4'Left'#2'+'#4'Hint'#6#14'Use Background'#3'Top'#2#0#7'Capti'
+'on'#6#8'tbAttrBG'#10'ImageIndex'#2#30#7'OnClick'#7#11'tbAttrClick'#11'OnMou'
+'seDown'#7#15'tbAttrMouseDown'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7
+#8'tbsCheck'#0#0#0#8'TToolBar'#13'tbFontPalette'#22'AnchorSideLeft.Control'#7
+#8'CoolBar1'#21'AnchorSideTop.Control'#7#8'CoolBar1'#4'Left'#2#14#6'Height'#2
+#21#3'Top'#2#27#5'Width'#3#18#1#5'Align'#7#6'alNone'#8'AutoSize'#9#18'Border'
,'Spacing.Left'#2#14#17'BorderSpacing.Top'#2#27#12'ButtonHeight'#2#21#11'Butt'
+'onWidth'#2#21#7'Caption'#6#13'tbFontPalette'#11'EdgeBorders'#11#0#9'EdgeInn'
+'er'#7#6'esNone'#9'EdgeOuter'#7#6'esNone'#6'Images'#7#9'ilButtons'#8'TabOrde'
+'r'#2#2#0#11'TToolButton'#7'tbFont0'#4'Left'#2#1#3'Top'#2#0#7'Caption'#6#10
+'Use Font 0'#10'ImageIndex'#2'"'#7'OnClick'#7#11'tbFontClick'#14'ParentShowH'
+'int'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#7'tbFont1'#4
+'Left'#2#22#3'Top'#2#0#7'Caption'#6#10'Use Font 1'#10'ImageIndex'#2'#'#7'OnC'
+'lick'#7#11'tbFontClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbs'
+'Check'#0#0#11'TToolButton'#7'tbFont2'#4'Left'#2'+'#3'Top'#2#0#7'Caption'#6
+#10'Use Font 2'#10'ImageIndex'#2'$'#7'OnClick'#7#11'tbFontClick'#14'ParentSh'
+'owHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#7'tbFont'
+'3'#4'Left'#2'@'#3'Top'#2#0#7'Caption'#6#10'Use Font 3'#10'ImageIndex'#2'%'#7
+'OnClick'#7#11'tbFontClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8
+'tbsCheck'#0#0#11'TToolButton'#7'tbFont4'#4'Left'#2'U'#3'Top'#2#0#7'Caption'
+#6#10'Use Font 4'#10'ImageIndex'#2'&'#7'OnClick'#7#11'tbFontClick'#14'Parent'
+'ShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#7'tbFo'
+'nt5'#4'Left'#2'j'#3'Top'#2#0#7'Caption'#6#10'Use Font 5'#10'ImageIndex'#2
+''''#7'OnClick'#7#11'tbFontClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'
+#7#8'tbsCheck'#0#0#11'TToolButton'#7'tbFont6'#4'Left'#2#127#3'Top'#2#0#7'Cap'
+'tion'#6#10'Use Font 6'#10'ImageIndex'#2'('#7'OnClick'#7#11'tbFontClick'#14
+'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#7
+'tbFont7'#4'Left'#3#148#0#3'Top'#2#0#7'Caption'#6#10'Use Font 7'#10'ImageInd'
+'ex'#2')'#7'OnClick'#7#11'tbFontClick'#14'ParentShowHint'#8#8'ShowHint'#9#5
+'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#7'tbFont8'#4'Left'#3#169#0#3'Top'#2
+#0#7'Caption'#6#10'Use Font 8'#10'ImageIndex'#2'*'#7'OnClick'#7#11'tbFontCli'
+'ck'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolB'
+'utton'#7'tbFont9'#4'Left'#3#190#0#3'Top'#2#0#7'Caption'#6#10'Use Font 9'#10
+'ImageIndex'#2'+'#7'OnClick'#7#11'tbFontClick'#14'ParentShowHint'#8#8'ShowHi'
+'nt'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#8'tbFont10'#4'Left'#3#211#0
+#3'Top'#2#0#7'Caption'#6#17'Use Teletext Font'#10'ImageIndex'#2','#7'OnClick'
+#7#11'tbFontClick'#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'
+#0#0#11'TToolButton'#8'tbFont11'#4'Left'#3#232#0#3'Top'#2#0#7'Caption'#6#25
+'Use Teletext Solid Blocks'#10'ImageIndex'#2'-'#7'OnClick'#7#11'tbFontClick'
+#14'ParentShowHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#11'TToolButto'
+'n'#8'tbFont12'#4'Left'#3#253#0#3'Top'#2#0#7'Caption'#6#29'Use Teletext Sepa'
+'rated Blocks'#10'ImageIndex'#2'.'#7'OnClick'#7#11'tbFontClick'#14'ParentSho'
+'wHint'#8#8'ShowHint'#9#5'Style'#7#8'tbsCheck'#0#0#0#0#6'TPanel'#6'Panel1'#4
+'Left'#2#0#6'Height'#3'A'#2#3'Top'#2'2'#5'Width'#3'&'#4#5'Align'#7#8'alClien'
+'t'#7'Caption'#6#6'Panel1'#12'ClientHeight'#3'A'#2#11'ClientWidth'#3'&'#4#8
+'TabOrder'#2#1#0#6'TPanel'#9'pSettings'#4'Left'#2#0#6'Height'#3'*'#2#3'Top'#2
+#0#5'Width'#3#170#0#7'Anchors'#11#5'akTop'#6'akLeft'#8'akBottom'#0#10'BevelO'
+'uter'#7#6'bvNone'#12'ClientHeight'#3'*'#2#11'ClientWidth'#3#170#0#11'Parent'
+'Color'#8#8'TabOrder'#2#0#7'TabStop'#9#0#6'TLabel'#6'Label1'#4'Left'#2#30#6
+'Height'#2#15#3'Top'#2'J'#5'Width'#2#31#7'Caption'#6#5'Rows:'#11'ParentColor'
+#8#0#0#9'TSpinEdit'#6'seRows'#4'Left'#2'@'#6'Height'#2#21#3'Top'#2'H'#5'Widt'
+'h'#2'd'#11'Font.Height'#2#245#8'MaxValue'#3#244#1#8'MinValue'#2#1#8'OnChang'
+'e'#7#16'sePageSizeChange'#10'ParentFont'#8#8'TabOrder'#2#1#5'Value'#3#250#0
+#0#0#6'TLabel'#6'Label2'#4'Left'#2'#'#6'Height'#2#15#3'Top'#2'b'#5'Width'#2
+#26#7'Caption'#6#5'Cols:'#11'ParentColor'#8#0#0#9'TSpinEdit'#6'seCols'#4'Lef'
+'t'#2'@'#6'Height'#2#21#3'Top'#2'`'#5'Width'#2'd'#11'Font.Height'#2#245#8'Ma'
+'xValue'#3#132#0#8'MinValue'#2#1#8'OnChange'#7#16'sePageSizeChange'#10'Paren'
+'tFont'#8#8'TabOrder'#2#3#5'Value'#3#132#0#0#0#9'TComboBox'#10'cbCodePage'#4
+'Left'#2'@'#6'Height'#2#21#3'Top'#2#24#5'Width'#2'd'#11'Font.Height'#2#245#10
+'ItemHeight'#2#13#9'ItemIndex'#2#0#13'Items.Strings'#1#6#6'CP 437'#6#4'UTF8'
+#6#5'UTF16'#0#8'OnChange'#7#16'cbCodePageChange'#10'ParentFont'#8#5'Style'#7
+#14'csDropDownList'#8'TabOrder'#2#2#7'TabStop'#8#4'Text'#6#6'CP 437'#0#0#6'T'
+'Label'#6'Label3'#4'Left'#2#4#6'Height'#2#15#3'Top'#2#28#5'Width'#2'9'#7'Cap'
+'tion'#6#9'Codepage:'#11'ParentColor'#8#0#0#14'TFloatSpinEdit'#8'seXScale'#4
+'Left'#2'@'#6'Height'#2#21#3'Top'#2'x'#5'Width'#2'd'#11'Font.Height'#2#245#9
+'Increment'#5#0#0#0#0#0#0#0#128#253'?'#8'MaxValue'#5#0#0#0#0#0#0#0#128#1'@'#8
+'MinValue'#5#0#0#0#0#0#0#0#128#253'?'#8'OnChange'#7#14'seXScaleChange'#10'Pa'
+'rentFont'#8#8'TabOrder'#2#5#5'Value'#5#0#0#0#0#0#0#0#128#255'?'#0#0#6'TLabe'
+'l'#6'Label4'#4'Left'#2#21#6'Height'#2#15#3'Top'#2'z'#5'Width'#2'('#7'Captio'
+'n'#6#8'X Scale:'#11'ParentColor'#8#0#0#9'TComboBox'#13'cbColorScheme'#4'Lef'
,'t'#2'@'#6'Height'#2#21#3'Top'#2'0'#5'Width'#2'd'#11'Font.Height'#2#245#10'I'
+'temHeight'#2#13#9'ItemIndex'#2#0#13'Items.Strings'#1#6#10'ANSI Basic'#6#8'A'
+'NSI BBS'#6#8'ANSI iCE'#6#14'ANSI 256 Color'#0#8'OnChange'#7#19'cbColorSchem'
+'eChange'#10'ParentFont'#8#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#4#7'T'
+'abStop'#8#4'Text'#6#10'ANSI Basic'#0#0#6'TLabel'#6'Label5'#4'Left'#2#24#6'H'
+'eight'#2#15#3'Top'#2'4'#5'Width'#2'%'#7'Caption'#6#7'Colors:'#11'ParentColo'
+'r'#8#0#0#9'TComboBox'#10'cbPageType'#4'Left'#2'@'#6'Height'#2#21#3'Top'#2#0
+#5'Width'#2'd'#11'Font.Height'#2#245#10'ItemHeight'#2#13#9'ItemIndex'#2#0#13
+'Items.Strings'#1#6#3'BBS'#6#5'CTerm'#6#3'VTX'#0#8'OnChange'#7#16'cbPageType'
+'Change'#10'ParentFont'#8#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#0#7'Ta'
+'bStop'#8#4'Text'#6#3'BBS'#0#0#6'TLabel'#6'Label6'#4'Left'#2#4#6'Height'#2#15
+#3'Top'#2#4#5'Width'#2'9'#7'Caption'#6#10'Page Type:'#11'ParentColor'#8#0#0#9
+'TPaintBox'#10'pbCurrCell'#4'Left'#2#10#6'Height'#2'`'#3'Top'#3#164#0#5'Widt'
+'h'#3#154#0#7'OnPaint'#7#15'pbCurrCellPaint'#0#0#6'TLabel'#7'Label11'#4'Left'
+#2#4#6'Height'#2#15#3'Top'#3#12#1#5'Width'#2'd'#7'Caption'#6#18'Sauce Inform'
+'ation:'#11'ParentColor'#8#0#0#6'TLabel'#7'Label12'#4'Left'#2#4#6'Height'#2
+#15#3'Top'#3#146#0#5'Width'#2'`'#7'Caption'#6#18'Current Char/Attr:'#11'Pare'
+'ntColor'#8#0#0#6'TPanel'#6'Panel2'#4'Left'#2#4#6'Height'#3#138#0#3'Top'#3#26
+#1#5'Width'#3#162#0#7'Caption'#6#6'Panel2'#12'ClientHeight'#3#138#0#11'Clien'
+'tWidth'#3#162#0#8'TabOrder'#2#6#0#6'TLabel'#6'Label7'#4'Left'#2#28#6'Height'
+#2#15#3'Top'#2'$'#5'Width'#2#26#7'Caption'#6#6'Title:'#11'ParentColor'#8#0#0
+#5'TEdit'#12'tbSauceTitle'#4'Left'#2':'#6'Height'#2#23#3'Top'#2#30#5'Width'#2
+'d'#7'Enabled'#8#8'ReadOnly'#9#8'TabOrder'#2#0#0#0#6'TLabel'#6'Label8'#4'Lef'
+'t'#2#14#6'Height'#2#15#3'Top'#2'<'#5'Width'#2'('#7'Caption'#6#7'Author:'#11
+'ParentColor'#8#0#0#5'TEdit'#13'tbSauceAuthor'#4'Left'#2':'#6'Height'#2#23#3
+'Top'#2'8'#5'Width'#2'd'#7'Enabled'#8#8'ReadOnly'#9#8'TabOrder'#2#1#0#0#6'TL'
+'abel'#6'Label9'#4'Left'#2#18#6'Height'#2#15#3'Top'#2'T'#5'Width'#2'$'#7'Cap'
+'tion'#6#6'Group:'#11'ParentColor'#8#0#0#5'TEdit'#12'tbSauceGroup'#4'Left'#2
+':'#6'Height'#2#23#3'Top'#2'R'#5'Width'#2'd'#7'Enabled'#8#8'ReadOnly'#9#8'Ta'
+'bOrder'#2#2#0#0#6'TLabel'#7'Label10'#4'Left'#2#27#6'Height'#2#15#3'Top'#2'n'
+#5'Width'#2#27#7'Caption'#6#5'Date:'#11'ParentColor'#8#0#0#5'TEdit'#11'tbSau'
+'ceDate'#4'Left'#2':'#6'Height'#2#23#3'Top'#2'l'#5'Width'#2'd'#7'Enabled'#8#8
+'ReadOnly'#9#8'TabOrder'#2#3#0#0#8'TToolBar'#8'ToolBar2'#4'Left'#2#1#6'Heigh'
+'t'#2#26#3'Top'#2#1#5'Width'#3#160#0#12'ButtonHeight'#2#21#11'ButtonWidth'#2
+#21#7'Caption'#6#8'ToolBar2'#8'TabOrder'#2#4#0#0#0#0#9'TPaintBox'#11'pbStatu'
+'sBar'#4'Left'#2#0#6'Height'#2#23#3'Top'#3'*'#2#5'Width'#3'&'#4#7'Anchors'#11
+#6'akLeft'#7'akRight'#8'akBottom'#0#7'OnPaint'#7#16'pbStatusBarPaint'#0#0#6
+'TPanel'#10'pPagePanel'#4'Left'#3#170#0#6'Height'#3'*'#2#3'Top'#2#0#5'Width'
+#3#4#2#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#7'Caption'#6
+#10'pPagePanel'#12'ClientHeight'#3'*'#2#11'ClientWidth'#3#4#2#8'TabOrder'#2#1
+#0#10'TScrollBar'#6'sbHorz'#4'Left'#2#16#6'Height'#2#16#3'Top'#3#26#2#5'Widt'
+'h'#3#228#1#7'Anchors'#11#6'akLeft'#7'akRight'#8'akBottom'#0#3'Max'#2'P'#8'P'
+'ageSize'#2'P'#8'TabOrder'#2#0#8'OnChange'#7#12'sbHorzChange'#0#0#9'TPaintBo'
+'x'#6'pbPage'#4'Left'#2#16#6'Height'#3#11#2#3'Top'#2#16#5'Width'#3#228#1#7'A'
+'nchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#5'Color'#7#15'clActi'
+'veCaption'#11'ParentColor'#8#11'OnMouseDown'#7#15'pbPageMouseDown'#12'OnMou'
+'seLeave'#7#16'pbPageMouseLeave'#11'OnMouseMove'#7#15'pbPageMouseMove'#9'OnM'
+'ouseUp'#7#13'pbPageMouseUp'#12'OnMouseWheel'#7#16'pbPageMouseWheel'#7'OnPai'
+'nt'#7#11'pbPagePaint'#0#0#9'TPaintBox'#11'pbRulerLeft'#4'Left'#2#0#6'Height'
+#3#26#2#3'Top'#2#16#5'Width'#2#16#7'Anchors'#11#5'akTop'#6'akLeft'#8'akBotto'
+'m'#0#5'Color'#7#15'clActiveCaption'#11'ParentColor'#8#7'OnPaint'#7#16'pbRul'
+'erLeftPaint'#0#0#9'TPaintBox'#10'pbRulerTop'#4'Left'#2#0#6'Height'#2#16#3'T'
+'op'#2#0#5'Width'#3#4#2#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#5'Colo'
+'r'#7#11'clHighlight'#11'ParentColor'#8#7'OnPaint'#7#15'pbRulerTopPaint'#0#0
+#12'TSpeedButton'#12'SpeedButton1'#4'Left'#3#244#1#6'Height'#2#16#3'Top'#3#26
+#2#5'Width'#2#16#7'Anchors'#11#7'akRight'#8'akBottom'#0#0#0#10'TScrollBar'#6
+'sbVert'#4'Left'#3#244#1#6'Height'#3#10#2#3'Top'#2#16#5'Width'#2#16#7'Anchor'
+'s'#11#5'akTop'#7'akRight'#8'akBottom'#0#4'Kind'#7#10'sbVertical'#8'PageSize'
+#2#0#8'TabOrder'#2#1#8'OnChange'#7#12'sbVertChange'#0#0#0#6'TPanel'#9'pRight'
+'Bar'#4'Left'#3#172#2#6'Height'#3'*'#2#3'Top'#2#0#5'Width'#3'z'#1#7'Anchors'
+#11#5'akTop'#7'akRight'#8'akBottom'#0#12'ClientHeight'#3'*'#2#11'ClientWidth'
+#3'z'#1#11'ParentColor'#8#8'TabOrder'#2#2#0#12'TPageControl'#12'PageControl1'
+#4'Left'#2#1#6'Height'#3'('#2#3'Top'#2#1#5'Width'#3'x'#1#10'ActivePage'#7#9
+'TabSheet3'#5'Align'#7#8'alClient'#8'TabIndex'#2#2#8'TabOrder'#2#0#0#9'TTabS'
,'heet'#9'TabSheet1'#7'Caption'#6#6'Colors'#12'ClientHeight'#3#242#1#11'Clien'
+'tWidth'#3'p'#1#0#9'TPaintBox'#8'pbColors'#4'Left'#2#2#6'Height'#3'E'#1#3'To'
+'p'#2'2'#5'Width'#3'h'#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBot'
+'tom'#0#14'ParentShowHint'#8#8'ShowHint'#9#11'OnMouseDown'#7#17'pbColorsMous'
+'eDown'#7'OnPaint'#7#13'pbColorsPaint'#0#0#6'TLabel'#7'Label13'#4'Left'#2#4#6
+'Height'#2#15#3'Top'#2#4#5'Width'#2'a'#7'Caption'#6#17'Foreground Color:'#11
+'ParentColor'#8#0#0#6'TLabel'#7'Label16'#4'Left'#3#186#0#6'Height'#2#15#3'To'
+'p'#2#4#5'Width'#2'`'#7'Caption'#6#16'Background Color'#11'ParentColor'#8#0#0
+#0#9'TTabSheet'#9'TabSheet2'#7'Caption'#6#10'Characters'#12'ClientHeight'#3
+#242#1#11'ClientWidth'#3'p'#1#0#10'TScrollBox'#7'sbChars'#4'Left'#2#0#6'Heig'
+'ht'#3#206#1#3'Top'#2'"'#5'Width'#3'p'#1#18'HorzScrollBar.Page'#3#170#0#23'V'
+'ertScrollBar.Increment'#2#17#18'VertScrollBar.Page'#3#170#0#20'VertScrollBa'
+'r.Smooth'#9#22'VertScrollBar.Tracking'#9#7'Anchors'#11#5'akTop'#6'akLeft'#7
+'akRight'#8'akBottom'#0#8'AutoSize'#9#12'ClientHeight'#3#202#1#11'ClientWidt'
+'h'#3'l'#1#5'Color'#7#7'clBlack'#11'ParentColor'#8#8'TabOrder'#2#0#0#9'TPain'
+'tBox'#7'pbChars'#4'Left'#2#0#6'Height'#3#170#0#3'Top'#2#0#5'Width'#3#170#0#5
+'Align'#7#8'alCustom'#5'Color'#7#7'clBlack'#11'ParentColor'#8#11'OnMouseDown'
+#7#16'pbCharsMouseDown'#7'OnPaint'#7#12'pbCharsPaint'#0#0#0#5'TEdit'#10'tbCo'
+'dePage'#4'Left'#2#2#6'Height'#2#21#3'Top'#2#4#5'Width'#2'N'#7'Enabled'#8#11
+'Font.Height'#2#245#10'ParentFont'#8#8'ReadOnly'#9#7'TabStop'#8#8'TabOrder'#2
+#1#4'Text'#6#10'tbCodePage'#0#0#6'TLabel'#7'Label14'#4'Left'#2'^'#6'Height'#2
+#15#3'Top'#2#6#5'Width'#2'6'#7'Caption'#6#10'Character:'#11'ParentColor'#8#0
+#0#9'TSpinEdit'#11'seCharacter'#4'Left'#3#156#0#6'Height'#2#21#3'Top'#2#4#5
+'Width'#2'@'#11'Font.Height'#2#245#8'MaxValue'#4#255#255#0#0#8'OnChange'#7#17
+'seCharacterChange'#10'ParentFont'#8#7'TabStop'#8#8'TabOrder'#2#2#0#0#5'TEdi'
+'t'#9'tbUnicode'#4'Left'#3' '#1#6'Height'#2#21#3'Top'#2#4#5'Width'#2'8'#7'En'
+'abled'#8#11'Font.Height'#2#245#10'ParentFont'#8#8'ReadOnly'#9#7'TabStop'#8#8
+'TabOrder'#2#3#4'Text'#6#9'tbUnicode'#0#0#6'TLabel'#7'Label15'#4'Left'#3#232
+#0#6'Height'#2#15#3'Top'#2#6#5'Width'#2'/'#7'Caption'#6#8'Unicode:'#11'Paren'
+'tColor'#8#0#0#0#9'TTabSheet'#9'TabSheet3'#7'Caption'#6#7'Objects'#12'Client'
+'Height'#3#12#2#11'ClientWidth'#3'p'#1#0#8'TToolBar'#8'ToolBar1'#4'Left'#2#0
+#6'Height'#2#26#3'Top'#2#0#5'Width'#3'p'#1#12'ButtonHeight'#2#21#11'ButtonWi'
+'dth'#2#21#7'Caption'#6#8'ToolBar1'#14'DisabledImages'#7#17'ilDisabledButton'
+'s'#6'Images'#7#9'ilButtons'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2
+#0#0#11'TToolButton'#12'bObjMoveBack'#4'Left'#2'3'#4'Hint'#6#13'Move Back On'
+'e'#3'Top'#2#2#7'Caption'#6#12'bObjMoveBack'#10'ImageIndex'#2'1'#7'OnClick'#7
+#17'bObjMoveBackClick'#0#0#11'TToolButton'#14'bObjMoveToBack'#4'Left'#2'H'#4
+'Hint'#6#12'Move to Back'#3'Top'#2#2#7'Caption'#6#14'bObjMoveToBack'#10'Imag'
+'eIndex'#2'2'#7'OnClick'#7#19'bObjMoveToBackClick'#0#0#11'TToolButton'#16'bO'
+'bnjMoveForward'#4'Left'#2']'#4'Hint'#6#16'Move Forward One'#3'Top'#2#2#7'Ca'
+'ption'#6#16'bObnjMoveForward'#10'ImageIndex'#2'3'#7'OnClick'#7#21'bObnjMove'
+'ForwardClick'#0#0#11'TToolButton'#15'bObjMoveToFront'#4'Left'#2'r'#4'Hint'#6
+#13'Move to Front'#3'Top'#2#2#7'Caption'#6#15'bObjMoveToFront'#10'ImageIndex'
+#2'4'#7'OnClick'#7#20'bObjMoveToFrontClick'#0#0#11'TToolButton'#12'bObjFlipH'
+'orz'#4'Left'#3#135#0#4'Hint'#6#15'Flip Horizontal'#3'Top'#2#2#7'Caption'#6
+#12'bObjFlipHorz'#10'ImageIndex'#2'5'#7'OnClick'#7#17'bObjFlipHorzClick'#0#0
+#11'TToolButton'#12'bObjFlipVert'#4'Left'#3#156#0#4'Hint'#6#13'Flip Vertical'
+#3'Top'#2#2#7'Caption'#6#12'bObjFlipVert'#10'ImageIndex'#2'6'#7'OnClick'#7#17
+'bObjFlipVertClick'#0#0#11'TToolButton'#9'bObjMerge'#4'Left'#3#177#0#4'Hint'
+#6#15'Merge with Page'#3'Top'#2#2#7'Caption'#6#9'bObjMerge'#10'ImageIndex'#2
+'7'#7'OnClick'#7#14'bObjMergeClick'#0#0#11'TToolButton'#8'bObjSave'#4'Left'#2
+#22#4'Hint'#6#11'Save Object'#3'Top'#2#2#7'Caption'#6#8'bObjSave'#10'ImageIn'
+'dex'#2'E'#7'OnClick'#7#13'bObjSaveClick'#0#0#11'TToolButton'#8'bObjLoad'#4
+'Left'#2#1#4'Hint'#6#11'Load Object'#3'Top'#2#2#7'Caption'#6#8'bObjLoad'#10
+'ImageIndex'#2'F'#7'OnClick'#7#13'bObjLoadClick'#0#0#11'TToolButton'#16'bObj'
+'HideOutlines'#4'Left'#3#227#0#4'Hint'#6#15'Toggle Outlines'#3'Top'#2#2#7'Ca'
+'ption'#6#16'bObjHideOutlines'#4'Down'#9#10'ImageIndex'#2'J'#7'OnClick'#7#21
+'bObjHideOutlinesClick'#5'Style'#7#8'tbsCheck'#0#0#11'TToolButton'#11'ToolBu'
+'tton1'#4'Left'#2'+'#6'Height'#2#21#3'Top'#2#2#5'Width'#2#8#7'Caption'#6#11
+'ToolButton1'#5'Style'#7#12'tbsSeparator'#0#0#11'TToolButton'#11'ToolButton2'
+#4'Left'#3#219#0#6'Height'#2#21#3'Top'#2#2#5'Width'#2#8#7'Caption'#6#11'Tool'
+'Button2'#5'Style'#7#12'tbsSeparator'#0#0#11'TToolButton'#12'bObjMergeAll'#4
+'Left'#3#198#0#4'Hint'#6#17'Merge All Objects'#3'Top'#2#2#7'Caption'#6#12'bO'
+'bjMergeAll'#10'ImageIndex'#2'K'#7'OnClick'#7#17'bObjMergeAllClick'#0#0#0#9
,'TListView'#9'lvObjects'#4'Left'#2#0#6'Height'#3#242#1#3'Top'#2#26#5'Width'#3
+'p'#1#5'Align'#7#8'alClient'#19'AutoWidthLastColumn'#9#7'Columns'#14#1#5'Wid'
+'th'#3'l'#1#0#0#11'ColumnClick'#8#11'Font.Height'#2#18#9'GridLines'#9#13'Ite'
+'ms.LazData'#10'@'#0#0#0'@'#0#0#0#2#0#0#0#255#255#255#255#255#255#255#255#255
+#255#255#255#0#0#0#0#7#0#0#0'10Test1'#255#255#255#255#255#255#255#255#255#255
+#255#255#0#0#0#0#9#0#0#0'00Display'#9'OwnerDraw'#9#10'ParentFont'#8#9'RowSel'
+'ect'#9#10'ScrollBars'#7#14'ssAutoVertical'#17'ShowColumnHeaders'#8#8'TabOrd'
+'er'#2#1#9'ViewStyle'#7#8'vsReport'#10'OnDrawItem'#7#17'lvObjectsDrawItem'#8
+'OnEdited'#7#15'lvObjectsEdited'#9'OnEditing'#7#16'lvObjectsEditing'#11'OnMo'
+'useDown'#7#18'lvObjectsMouseDown'#0#0#0#0#0#0#9'TMainMenu'#5'mMenu'#6'Image'
+'s'#7#9'ilButtons'#4'left'#3'"'#1#3'top'#3#22#1#0#9'TMenuItem'#6'miFile'#7'C'
+'aption'#6#5'&File'#0#9'TMenuItem'#9'miFileNew'#7'Caption'#6#4'&New'#11'Bitm'
+'ap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0
+#16#0#0#0#1#0' '#0#0#0#0#0#0#4#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#0#0#0#195#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#195#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#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#0#0#0#255
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#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
+#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#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#255#255#255#255#255#255#255#255#255#255#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#0#0#0
+#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#255#255#255#255#255#255#255#255#255#255#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#0
+#0#0#255#255#255#255#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#255#255#255#255#255#255#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#0#0#0#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#255#255#255#255#255#255#255#255#255#255#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#0#0#0#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#255#255#255#255#255#255#255#255#255#255#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#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#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#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#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#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#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#0#0#0#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#255#255#255#255#255#255#255#255#128#128#128#255#0
+#0#0#203#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#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#0#0#0#255#255#255#255#255#255#255#255#255#128#128#128#255#0#0#0#210#0#0
+#0#21#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#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
+#0#0#0#255#255#255#255#255#128#128#128#255#0#0#0#210#0#0#0#21#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
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#0#0
+#0#255#128#128#128#255#0#0#0#210#0#0#0#21#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#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#202#0#0#0#21#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#10'ImageIndex'#2'<'
+#7'OnClick'#7#14'miFileNewClick'#0#0#9'TMenuItem'#9'MenuItem2'#7'Caption'#6#1
+'-'#0#0#9'TMenuItem'#10'miFileOpen'#7'Caption'#6#8'&Open...'#11'Bitmap.Data'
+#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0
,#1#0' '#0#0#0#0#0#0#4#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#255#255#255#0#255#255#255#0#255#255#255#0#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#199#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#201#0#0#0#4#255#255#255#0#255#255#255#0#0#0#0
+#255#191#191#191#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#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#0#255#255#255#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#191#191#191#255#0#0#0#219#0#0#0#4#255#255#255#0#0#0
+#0#255#0#0#0#255#191#191#191#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#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#0#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#255#255#255#255#255
+#255#255#255#255#255#255#255#255#191#191#191#255#0#0#0#219#0#0#0#4#0#0#0#255
+#0#0#0#255#0#0#0#255#191#191#191#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#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'_'#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#255#255#255#255#255
+#255#255#255#255#255#255#255#255#191#191#191#255#0#0#0#217#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#200#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#249#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#248#0#0#0#133#255#255
+#255#0#255#255#255#0#255#255#255#0#0#0#0#231#0#0#0#255#0#0#0#255#0#0#0#255#0
+#0#0#255#0#0#0#255#0#0#0#231#255#255#255#0#255#255#255#0#255#255#255#0#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'M'#0#0#0#230#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#230#0#0#0'N'
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#10'ImageIndex'#2'='#7'O'
+'nClick'#7#15'miFileOpenClick'#0#0#9'TMenuItem'#10'miFileSave'#7'Caption'#6#8
+'&Save...'#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0
+'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#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#230#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#230#0#0#0'N'#0#0#0#231#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#231#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#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#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#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#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#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#255#255#255#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#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#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#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#255#255#255
+#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#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#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#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#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#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#251#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'}'
+#0#0#0#255#0#0#0#255#170#170#170#255#170#170#170#255#170#170#170#255#170#170
+#170#255#170#170#170#255#170#170#170#255#170#170#170#255#0#0#0#255#0#0#0#255
+#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#128#255#255#255#0#0#0#0#255#0#0#0#255
+#170#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255#0#0#0#255#0
+#0#0#255#170#170#170#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#128
+#255#255#255#0#255#255#255#0#0#0#0#231#0#0#0#255#170#170#170#255#170#170#170
+#255#170#170#170#255#170#170#170#255#0#0#0#255#0#0#0#255#170#170#170#255#0#0
+#0#255#0#0#0#255#0#0#0#255#0#0#0#127#255#255#255#0#255#255#255#0#255#255#255
+#0#0#0#0#0#0#0#0#230#170#170#170#255#170#170#170#255#170#170#170#255#170#170
+#170#255#170#170#170#255#170#170#170#255#170#170#170#255#0#0#0#255#0#0#0#251
+#0#0#0'{'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#10'ImageIn'
+'dex'#2'>'#7'OnClick'#7#15'miFileSaveClick'#0#0#9'TMenuItem'#12'miFileSaveAs'
+#7'Caption'#6#11'Save &As...'#7'OnClick'#7#17'miFileSaveAsClick'#0#0#9'TMenu'
+'Item'#12'miFileExport'#7'Caption'#6#10'&Export...'#7'OnClick'#7#17'miFileEx'
+'portClick'#0#0#9'TMenuItem'#9'MenuItem5'#7'Caption'#6#1'-'#0#0#9'TMenuItem'
+#10'miFileExit'#7'Caption'#6#5'E&xit'#7'OnClick'#7#15'miFileExitClick'#0#0#0
+#9'TMenuItem'#6'miEdit'#7'Caption'#6#5'&Edit'#0#9'TMenuItem'#10'miEditUndo'#7
+'Caption'#6#4'Undo'#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0
+'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#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#0#0#0
+'Z'#0#0#0#31#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#218#0
+#0#0'P'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#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'g'#0#0#0#253#0#0#0
+'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#255#255#255#0#0#0#0#5#0#0#0#228#0#0#0#253#0#0#0'I'#255
+#255#255#0#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#127#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#0#0#0#134#0#0#0#255#0#0#0#230#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#127#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
+'E'#0#0#0#255#0#0#0#255#0#0#0'h'#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#0#0#0#127#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#0#0#0':'#0#0#0#255#0#0#0#255#0#0#0#173
+#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#127#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#0#19#0#0#0
+#170#0#0#0#255#0#0#0#255#0#0#0#192#255#255#255#0#255#255#255#0#0#0#0#127#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#157#255#255#255#0#0#0#0#127#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#254#0#0#0'<'#255#255#255#0
+#0#0#0#127#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#132#255#255#255
+#0#255#255#255#0#255#255#255#0#0#0#0#127#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#244#0#0#0#192#0#0#0'Q'#255
,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#127
+#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#127#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#0#0#0#127#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#0#0#0#127
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#10'ImageI'
+'ndex'#2'?'#0#0#9'TMenuItem'#10'miEditRedo'#7'Caption'#6#4'Redo'#11'Bitmap.D'
+'ata'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0
+#0#0#1#0' '#0#0#0#0#0#0#4#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#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#0#0#0#0#4#0#0#0#139#0#0#0#170#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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
+#0#0#173#0#0#0#246#0#0#0#31#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#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#152#0#0#0#255#0#0#0#153#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#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'C'#0#0#0#255#0#0#0#255#0#0#0'5'#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#0#0#0'D'#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#185#0#0
+#0#255#0#0#0#241#0#0#0#2#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#0#0#0'Q'#0#0#0#242#0#0#0'<'#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#0#0#0#5#0#0#0#249#0#0#0#255#0#0#0#232#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'Q'#0#0#0#255#0#0#0#242
+#0#0#0'<'#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#18#0#0#0#255#0#0#0
+#255#0#0#0#255#0#0#0'f'#0#0#0#6#255#255#255#0#255#255#255#0#255#255#255#0#0#0
+#0'Q'#0#0#0#255#0#0#0#255#0#0#0#242#0#0#0'<'#255#255#255#0#255#255#255#0#0#0
+#0#1#0#0#0#237#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#242#0#0#0'<'#255#255
+#255#0#255#255#255#0#0#0#0#140#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#242#0#0#0'<'#255#255#255#0#0#0#0#12#0#0#0#201#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#242#0#0#0'<'#255#255#255#0#255#255#255#0#0#0#0#8#0#0#0'|'#0#0
+#0#214#0#0#0#250#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#242#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#0#0#0'Q'#0#0#0#255#0#0#0#255#0#0#0#242#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#0#0#0
+'Q'#0#0#0#255#0#0#0#242#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#0#0#0'Q'#0#0#0#242#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#0#0#0'D'#0#0#0'<'#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#10'ImageIndex'#2'@'#0#0#9'T'
+'MenuItem'#9'MenuItem4'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#9'miEditCut'#7'Ca'
+'ption'#6#3'Cut'#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0
+#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#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#0#0#0'6'#0#0#0#222#0#0#0#237#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#0#0#0#181
+#0#0#0'm'#0#0#0'.'#0#0#0#238#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#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#0#0#0#211#0#0#0'5'#255#255#255#0#0#0#0
+#203#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#255#255#255#0
+#255#255#255#0#0#0#0#193#0#0#0'v'#0#0#0#8#0#0#0#230#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#0#0#0#145
+#0#0#0#255#0#0#0#240#0#0#0#161#255#255#255#0#255#255#255#0#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#26#0
+#0#0'D'#0#0#0'F'#0#0#0'1'#0#0#0'\'#0#0#0#255#0#0#0'H'#255#255#255#0#255#255
+#255#0#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#128#0#0#0#239#0#0#0#198#0#0#0#239#0#0#0#255#0#0#0'I'#0#0
+#0'}'#0#0#0's'#0#0#0')'#0#0#0#162#0#0#0#131#0#0#0'`'#0#0#0'2'#0#0#0#3#255#255
+#255#0#255#255#255#0#0#0#0#248#0#0#0#31#255#255#255#0#0#0#0#25#0#0#0#254#0#0
+#0'-'#0#0#0#196#0#0#0#248#0#0#0'8'#0#0#0#186#0#0#0#255#0#0#0#255#0#0#0#255#0
+#0#0#219#0#0#0'='#255#255#255#0#0#0#0#218#0#0#0'n'#0#0#0'3'#0#0#0'l'#0#0#0
+#213#255#255#255#0#0#0#0#173#0#0#0#255#0#0#0#197#0#0#0'<'#0#0#0#253#0#0#0#255
+#0#0#0#255#0#0#0#255#0#0#0#248#0#0#0';'#0#0#0'/'#0#0#0#179#0#0#0#215#0#0#0
+#180#0#0#0'2'#255#255#255#0#0#0#0'p'#0#0#0#255#0#0#0#255#0#0#0'&'#0#0#0#10#0
+#0#0'.'#0#0#0'T'#0#0#0'z'#0#0#0#159#0#0#0#154#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'#0#0#0#255#0#0#0
+#255#0#0#0'm'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#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#0#0#0#239#0#0#0#255#0#0#0#173#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#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#169#0#0#0#255#0#0#0#236#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#0#0#0#0'M'#0#0#0#255#0#0#0#255#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
+#0#0#0#156#0#0#0#255#0#0#0'n'#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#0#0#0
+'k'#0#0#0#138#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#10'ImageIndex'#2'B'#0#0#9'TMenuItem'#10'miEditCopy'#7'Caption'#6#4'Co'
+'py'#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0
+#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#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#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#0#0#0
+#255#0#0#0#255#255#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#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#0#255#255
+#255#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#255#255#255#255#255#255#255#255#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#0#0#0#255#255#255#255#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#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#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#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#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#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#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#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#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#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#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0#255#255
+#255#255#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#255#255
+#255#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#255#255#255#0#255#255#255#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#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#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#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#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#0#0#0#255#255#255#255#0#255#255#255#0
+#255#255#255#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#0#255#255#255#0#255#255#255#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#0#0
+#0#255#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#255#255
+#255#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#0#0#0#255#0
+#0#0#255#255#255#255#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255
+#255#255#0#10'ImageIndex'#2'A'#0#0#9'TMenuItem'#11'miEditPaste'#7'Caption'#6
+#5'Paste'#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('
+#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#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#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#0
+#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0#5#0#0#0#137#0#0
+#0#236#0#0#0#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#0#0#0#133':::'#205#168#168#168#231#170#170#170#255
+#170#170#170#255#170#170#170#255#170#170#170#255#255#255#255#255#255#255#255
+#255#255#255#255#255#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#227#167#167#167#225#170#170
+#170#255#170#170#170#255#170#170#170#255#170#170#170#255#170#170#170#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#0#0#0#244#170#170#170
+#245#170#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255#170#170
+#170#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#0#0#0#244
+#170#170#170#245#170#170#170#255#170#170#170#255#170#170#170#255#170#170#170
+#255#170#170#170#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#0#0#0#244#170#170#170#245#170#170#170#255#170#170#170#255#170#170#170
+#255#170#170#170#255#170#170#170#255#255#255#255#255#255#255#255#255#255#255
+#255#255#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#244#170#170#170#245#170#170#170#255#170
+#170#170#255#170#170#170#255#170#170#170#255#170#170#170#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#0#0#0#244#170#170#170#245#170#170
+#170#255#170#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255#0#0
+#0#255#0#0#0#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
+#255#0#0#0#255#0#0#0#255#0#0#0#244#170#170#170#245#170#170#170#255#170#170
+#170#255#170#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255#170
+#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255#7#7#7#245#0#0#0
+#11#255#255#255#0#255#255#255#0#0#0#0#244#170#170#170#245#170#170#170#255#170
+#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255
+#170#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255#7#7#7#245#0
+#0#0#11#255#255#255#0#255#255#255#0#0#0#0#227#167#167#167#225#170#170#170#255
+#7#7#7#245#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#170
+#170#170#245#170#170#170#241#1#1#1#245#0#0#0#2#255#255#255#0#255#255#255#0#0
+#0#0#133':::'#205#168#168#168#231#7#7#7#245#0#0#0#255#0#0#0#255#0#0#0#255#0#0
,#0#255#0#0#0#255#0#0#0#255#167#167#167#227'JJJ'#198#0#0#0#155#255#255#255#0
+#255#255#255#0#255#255#255#0#0#0#0#5#0#0#0#137#0#0#0#236#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#240#0#0#0#150#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#0#0#0'D'#0#0#0#226#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#232#0#0#0
+'U'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#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#244#0#0#0#145#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#10'Im'
+'ageIndex'#2'C'#0#0#9'TMenuItem'#12'miEditDelete'#7'Caption'#6#6'Delete'#11
+'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0
+#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#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#0#0#0'['#0#0#0#193#0#0#0#234#0#0#0#247#0#0
+#0#234#0#0#0#193#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
+#0#0#0#255#0#0#188#255#0#0#235#255#0#0#245#255#0#0#235#255#0#0#188#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#255
+#255#0#0#0#255#0#0#255#255#0#0#0#255#0#0#255#255#0#0#0#255#255#255#255#0#0#0
+#0#255#0#0#0#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
+#255#0#0#0#255#0#0#0#255#0#0#255#255#0#0#0#255#0#0#255#255#0#0#0#255#0#0#255
+#255#0#0#0#255#255#255#255#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
+#0#0#0#255#0#0#255#255#0#0#0#255#0#0#255#255#0#0#0#255#0#0#255#255#0#0#0#255
+#255#255#255#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#0#0#0
+#255#0#0#255#255#0#0#255#255#0#0#255#255#0#0#255#255#0#0#255#255#0#0#0#255
+#255#255#255#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#0#0#0#255#0#0
+#255#255#0#0#255#255#0#0#255#255#0#0#255#255#0#0#255#255#0#0#0#255#255#255
+#255#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#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
+#255#255#255#255#255#255#255#255#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#255#255#255#255#255#255#255#255#255#255#255#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#255#255#255#0#255#255#255#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#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#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#0#0#0#255#255#255#255#0#255#255#255#0#255#255
+#255#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#0#0#0#255#255#255#255#0#255#255#255
+#0#255#255#255#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#0#255#255#255#0#255#255#255#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#0#0
+#0#255#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#255#255
+#255#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#255#17#17#17#255#0#0#0#255
+#0#0#0#255#238#238#238#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0
+#255#255#255#0#10'ImageIndex'#2'D'#0#0#0#9'TMenuItem'#6'miView'#7'Caption'#6
+#5'&View'#0#9'TMenuItem'#13'miViewPreview'#7'Caption'#6#7'Preview'#11'Bitmap'
+'.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16
+#0#0#0#1#0' '#0#0#0#0#0#0#4#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#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#0#0#0'D'#0#0#0#142#0#0#0#189#0#0#0#212#0
+#0#0#203#0#0#0#171#0#0#0'r'#0#0#0#28#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#0#0#0#191#0#0#0#255#0#0
+#0#255#0#0#0#237#0#0#0#217#0#0#0#218#0#0#0#224#0#0#0#255#0#0#0#252#0#0#0#159
+#0#0#0#25#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0'R'#0#0#0#239#0#0#0
+#247#0#0#0#147#0#0#0'p'#0#0#0#215#0#0#0#255#0#0#0#255#0#0#0#218#0#0#0']'#0#0
+#0#146#0#0#0#250#0#0#0#233#0#0#0'A'#255#255#255#0#0#0#0'^'#0#0#0#253#0#0#0
+#208#0#0#0')'#0#0#0'1'#0#0#0#246#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0
+#0#234#0#0#0#16#0#0#0','#0#0#0#211#0#0#0#248#0#0#0'K'#0#0#0#247#0#0#0#226#0#0
+#0#11#255#255#255#0#0#0#0#147#0#0#0#247#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0
+#255#0#0#0#255#0#0#0'b'#255#255#255#0#0#0#0#18#0#0#0#241#0#0#0#225#0#0#0#144
+#0#0#0#255#0#0#0'd'#255#255#255#0#0#0#0#167#0#0#0'N'#0#0#0#173#0#0#0#255#0#0
+#0#255#0#0#0#255#0#0#0#255#0#0#0#133#255#255#255#0#0#0#0#131#0#0#0#255#0#0#0
+'r'#0#0#0#5#0#0#0#185#0#0#0#253#0#0#0'r'#0#0#0#127#0#0#0'u'#0#0#0'C'#0#0#0
+#242#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0'o'#0#0#0#133#0#0#0#255#0#0#0#145#255
+#255#255#0#255#255#255#0#0#0#0#9#0#0#0#178#0#0#0#255#0#0#0#214#0#0#0#242#0#0
+#0'L'#0#0#0#6#0#0#0#161#0#0#0#255#0#0#0#253#0#0#0#203#0#0#0#255#0#0#0#137#0#0
+#0#1#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#2#0#0#0'r'#0#0#0#241#0#0
+#0#255#0#0#0#255#0#0#0#230#0#0#0#247#0#0#0#255#0#0#0#255#0#0#0#232#0#0#0'W'
+#255#255#255#0#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#17#0#0#0'j'#0#0#0#175#0#0#0#210#0#0#0#212#0#0
+#0#180#0#0#0'h'#0#0#0#13#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#10'ImageIndex'#2';'#7'OnClick'#7#14'pbPreviewClick'#0#0#0#9'TMenuItem'
+#9'miObjects'#7'Caption'#6#8'&Objects'#0#9'TMenuItem'#9'miObjPrev'#7'Caption'
+#6#11'Prev Object'#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'
+#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#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#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#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#255#255#255#255#0#0#0#255#0
+#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255
+#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#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#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#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#0#255
+#255#255#0#255#255#255#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#0#0#0#255#255
+#255#255#0#255#255#255#0#255#255#255#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#226#226#255#255'PP'#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#0#255#255#255#0#255#255#255#0#0#0#0#255#255#255#255#255#255
,#255#255#255#255#255#255#255#252#252#255#255#143#143#255#255#13#13#255#255#0
+#0#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#0#255#255#255#0#255#255#255#0#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255'ff'#255#255#0#0#255#255#0#0#255#255
+#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#0#255#255#255#0#255#255#255#0#0#0#0#255#255#255
+#255#255#255#255#255#255#255#255#255#255#252#252#255#255#143#143#255#255#13
+#13#255#255#0#0#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#0#255#255#255#0#255#255#255#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#226#226#255#255'PP'#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#0#255#255#255#0#255#255#255#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#0#0#0#255#255#255#255#0#255#255#255#0#255
+#255#255#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#0#255#255#255#0#255#255#255#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#0#0#0
+#255#255#255#255#0#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#255#255
+#255#255#0#0#0#255#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#0#0#0#255#0
+#0#0#255#255#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#10'Im'
+'ageIndex'#2'G'#7'OnClick'#7#14'miObjPrevClick'#0#0#9'TMenuItem'#9'miObjNext'
+#7'Caption'#6#11'Next Object'#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0
+#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#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#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#5#0#0#0#255#0#0#0#255#255#255#255#255#0
+#0#0#255#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#0#0#0#255#0#0#0#255
+#255#255#255#255#0#0#0#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255
+#5#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#0#0#0#255#255#255#255#0#255#255#255#0
+#255#255#255#5#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#250#255
+#255#255#0#255#255#255#0#255#255#255#5#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#0#0
+#0#255#255#255#255#0#255#255#255#0#255#255#255#5#0#0#0#255#255#255#255#255
+#255#255#255#255#255#255#255#255#250#250#255#255'TT'#255#255#228#228#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#0#255#255#255#0#255#255#255#5#0#0#0#255#255#255
+#255#255#255#255#255#255#255#255#255#255#250#250#255#255#0#0#255#255#14#14
+#255#255#147#147#255#255#252#252#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#5#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#250#250#255#255#0#0#255
+#255#0#0#255#255#0#0#255#255'kk'#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#250#255#255#255#0#255#255#255#0#255#255#255#5#0#0#0
+#255#255#255#255#255#255#255#255#255#255#255#255#255#250#250#255#255#0#0#255
+#255#14#14#255#255#147#147#255#255#252#252#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#5
+#0#0#0#255#255#255#255#255#255#255#255#255#255#255#255#255#250#250#255#255'T'
+'T'#255#255#228#228#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#0#255#255#255#0#255
,#255#255#5#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#0#0#0#255#255#255#255#0#255#255
+#255#0#255#255#255#5#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#250
+#255#255#255#0#255#255#255#0#255#255#255#5#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
+#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#5#0#0#0#255#0#0#0#255#255
+#255#255#255#0#0#0#255#0#0#0#255#0#0#0#255#250#250#250#255#0#0#0#255#0#0#0
+#255#5#5#5#255#255#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
+#10'ImageIndex'#2'H'#7'OnClick'#7#14'miObjNextClick'#0#0#9'TMenuItem'#9'Menu'
+'Item1'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#12'miObjBackOne'#7'Caption'#6#8'B'
+'ack One'#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('
+#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#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#0#0#0#255#0#0#0#255#170#170#170
+#255#0#0#0#255#0#0#0#255#170#170#170#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#170#170#170#255#170#170#170#255#170#170
+#170#255#170#170#170#255#170#170#170#255#170#170#170#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#170#170#170#255#170#170#170#255#170#170#170#255
+#170#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255#170#170#170
+#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#170#170#170#255#170#170
+#170#255#170#170#170#255#170#170#170#255#170#170#170#255#170#170#170#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#255#255#255#255#0#0#0#255#0#0#0#255#255#255#255#255#0#0#0#255#0#0#0
+#255#170#170#170#255#170#170#170#255#170#170#170#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#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#170#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#255#229#229
+#255#255'**'#255#255#8#8#255#255#8#8#255#255'<<'#255#255#255#255#255#255#255
+#255#255#255#170#170#170#255#170#170#170#255#170#170#170#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#255#255#255
+#255#225#225#255#255#23#23#255#255#0#0#255#255'66'#255#255#255#255#255#255#0
+#0#0#255#0#0#0#255#170#170#170#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#0#0#0#255#255#255#255#255#0#0'e'#255#0#0#226#255
+' '#255#255'66'#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#0#0#0#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#154#154#255#255#29#29#255#255#0#0'$'#255#224#224
+#255#255'VV'#255#255#255#255#255#255#255#255#255#255#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#190#190#255#255#29#29#255#255#219#219#255#255#255
+#255#255#255#255#255#255#255#245#245#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#0#0#0#255#255#255#255
+#255#255#255#255#255#255#255#255#255#252#252#255#255#228#228#255#255#255#255
+#255#255#0#0#0#255#0#0#0#255#255#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#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
+#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#255#255#255#255
+#255#255#255#255#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#255#255#255#0#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#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#0#255#255#255#0#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#255#255#255#255#0#0#0#255#0#0#0#255#255#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#10'ImageIndex'#2'1'#7'OnClick'#7
+#17'bObjMoveBackClick'#0#0#9'TMenuItem'#15'miObjForwardOne'#7'Caption'#6#11
+'Forward One'#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0
+#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0
+#0#0#0#0#0#0#127#127#127#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#1#1#1#255#0#0#0#255#169#169
+#169#255#1#1#1#255#0#0#0#255#169#169#169#255#1#1#1#255#0#0#0#255#127#127#127
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#1#1#1#255#169#169#169#255#170#170#170#255#170#170
+#170#255#170#170#170#255#170#170#170#255#170#170#170#255#1#1#1#255#255#255
+#255#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#170#170#170#253#170#170#170#255#170#170#170#255
+#170#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255#170#170#170
+#255#127#127#127#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#1#1#1#255#169#169#169#255#170#170
+#170#255#170#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255#1#1
+#1#255#127#127#127#0#255#255#255#0#255#255#255#0#255#255#255#0#1#1#1#255#0#0
+#0#255#253#253#253#255#2#2#2#255#0#0#0#255#253#253#253#255#2#2#2#255#0#0#0
+#255#170#170#170#255#170#170#170#255#170#170#170#255#1#1#1#255#255#255#255#1
+#255#255#255#0#255#255#255#0#255#255#255#0#1#1#1#255#253#253#253#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#2#2
+#2#255#170#170#170#255#170#170#170#255#170#170#170#255#170#170#170#255#127
+#127#127#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#253#255#255
+#255#255#255#255#255#255#255#255#255#255#232#232#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#171#171#171#255#170#170#170#255#170#170#170#255
+#1#1#1#255#127#127#127#0#255#255#255#0#255#255#255#0#255#255#255#0#1#1#1#255
+#253#253#253#255#255#255#255#255#192#192#255#255#24#24#255#255#232#232#255
+#255#255#255#255#255#2#2#2#255#1#1#1#255#169#169#169#255#1#1#1#255#0#0#0#255
+#1#1#1#255#0#0#0#255#253#253#253#255#1#1#9#255#0#0#0#255#253#253#253#255#1#1
+'@'#255#0#0#233#255#190#190#254#255#255#255#255#255#255#255#255#255#2#2#2#255
+#127#127#127#3#255#255#255#0#255#255#255#0#255#255#255#0#1#1#1#255#253#253
+#253#255#255#255#255#255'HH'#255#255#247#247#255#255#192#192#255#255#22#22
+#255#255#1#1'A'#255#253#253#253#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#2#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
+#253#255#255#255#255#255#255#255#255#0#0#255#255'<<'#255#255#22#22#255#255