-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLBATxt1.dfm
1763 lines (1763 loc) · 71 KB
/
LBATxt1.dfm
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
object Form1: TForm1
Left = 241
Top = 111
AutoScroll = False
Caption = 'LBA Text Editor 2'
ClientHeight = 332
ClientWidth = 545
Color = clBtnFace
TransparentColorValue = clAqua
Constraints.MinHeight = 156
Constraints.MinWidth = 230
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
KeyPreview = True
Menu = MainMenu
OldCreateOrder = False
Position = poScreenCenter
Scaled = False
OnClose = FormClose
OnConstrainedResize = FormConstrainedResize
OnCreate = FormCreate
OnKeyDown = FormKeyDown
OnMouseWheel = FormMouseWheel
OnResize = FormResize
DesignSize = (
545
332)
PixelsPerInch = 96
TextHeight = 16
object Bevel1: TBevel
Left = 0
Top = 27
Width = 545
Height = 286
Anchors = [akLeft, akTop, akRight, akBottom]
end
object ImgTBuf: TImage
Left = 368
Top = 224
Width = 525
Height = 304
Visible = False
end
object TextPB: TPaintBox
Left = 1
Top = 28
Width = 524
Height = 284
Anchors = [akLeft, akTop, akRight, akBottom]
PopupMenu = PopupMenu1
OnDblClick = aEditExecute
OnMouseDown = TextPBMouseDown
OnPaint = TextPBPaint
end
object TextScr: TScrollBar
Left = 526
Top = 29
Width = 17
Height = 282
Anchors = [akTop, akRight, akBottom]
Enabled = False
Kind = sbVertical
LargeChange = 20
PageSize = 0
SmallChange = 20
TabOrder = 0
OnChange = TextScrChange
end
object Status: TStatusBar
Left = 0
Top = 313
Width = 545
Height = 19
Panels = <
item
Alignment = taCenter
Style = psOwnerDraw
Text = 'Modified'
Width = 70
end
item
Alignment = taCenter
Text = 'LBA ?'
Width = 40
end
item
Alignment = taCenter
Text = 'Text ... of ...'
Width = 100
end
item
Text = 'Offset:'
Width = 120
end
item
Text = 'File size:'
Width = 50
end>
OnDrawPanel = StatusDrawPanel
end
object reInt: TRichEdit
Left = 280
Top = 64
Width = 189
Height = 64
Anchors = [akLeft, akTop, akRight, akBottom]
BevelInner = bvNone
BevelKind = bkSoft
BorderStyle = bsNone
Color = clCream
Ctl3D = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -15
Font.Name = 'Courier New'
Font.Style = []
Lines.Strings = (
'sgsdgshgsh')
ParentCtl3D = False
ParentFont = False
PlainText = True
ScrollBars = ssVertical
TabOrder = 2
Visible = False
OnChange = reIntChange
OnKeyDown = reIntKeyDown
end
object ToolBar1: TToolBar
Left = 0
Top = 0
Width = 545
Height = 26
ButtonHeight = 24
ButtonWidth = 24
Caption = 'ToolBar1'
Color = clBtnFace
EdgeBorders = [ebLeft, ebTop, ebRight, ebBottom]
EdgeInner = esNone
Flat = True
Images = ImageList1
ParentColor = False
ParentShowHint = False
ShowHint = True
TabOrder = 3
Transparent = False
Wrapable = False
object ToolButton1: TToolButton
Left = 0
Top = 0
Action = aOpen
end
object ToolButton2: TToolButton
Left = 24
Top = 0
Action = aSave
end
object ToolButton3: TToolButton
Left = 48
Top = 0
Action = aSaveAs
end
object ToolButton4: TToolButton
Left = 72
Top = 0
Action = aReload
end
object ToolButton5: TToolButton
Left = 96
Top = 0
Action = aClone
end
object ToolButton6: TToolButton
Left = 120
Top = 0
Width = 8
Caption = 'ToolButton6'
ImageIndex = 5
Style = tbsSeparator
end
object ToolButton7: TToolButton
Left = 128
Top = 0
Action = aEdit
end
object ToolButton8: TToolButton
Left = 152
Top = 0
Action = aPreview
end
object ToolButton9: TToolButton
Left = 176
Top = 0
Width = 8
Caption = 'ToolButton9'
ImageIndex = 7
Style = tbsSeparator
end
object ToolButton10: TToolButton
Left = 184
Top = 0
Action = aFind
end
object ToolButton11: TToolButton
Left = 208
Top = 0
Action = aFindNext
end
object ToolButton12: TToolButton
Left = 232
Top = 0
Action = aFindRep
end
object ToolButton13: TToolButton
Left = 256
Top = 0
Width = 8
Caption = 'ToolButton13'
ImageIndex = 10
Style = tbsSeparator
end
object ToolButton14: TToolButton
Left = 264
Top = 0
Action = aInsAbove
end
object ToolButton15: TToolButton
Left = 288
Top = 0
Action = aInsBelow
end
object ToolButton16: TToolButton
Left = 312
Top = 0
Action = aDelete
end
object ToolButton17: TToolButton
Left = 336
Top = 0
Width = 8
Caption = 'ToolButton17'
ImageIndex = 13
Style = tbsSeparator
end
object ToolButton18: TToolButton
Left = 344
Top = 0
Action = aMoveUp
end
object ToolButton19: TToolButton
Left = 368
Top = 0
Action = aMoveDown
end
object ToolButton20: TToolButton
Left = 392
Top = 0
Width = 8
Caption = 'ToolButton20'
ImageIndex = 15
Style = tbsSeparator
end
object paGoTo: TPanel
Left = 400
Top = 0
Width = 113
Height = 24
BevelOuter = bvNone
Ctl3D = True
ParentCtl3D = False
TabOrder = 0
object lbGoTo: TLabel
Left = 1
Top = 4
Width = 61
Height = 16
Caption = 'Go to text: '
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
OnMouseDown = lbGoToMouseDown
end
object eGoTo: TEdit
Left = 63
Top = 1
Width = 36
Height = 22
AutoSize = False
Ctl3D = True
MaxLength = 1
ParentCtl3D = False
TabOrder = 0
OnKeyPress = eGoToKeyPress
end
end
end
object dOpen: TOpenDialog
Filter = 'LBA text files (*.lbt)|*.lbt|XML files (*.xml)|*.xml'
Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofEnableSizing]
OptionsEx = [ofExNoPlacesBar]
Title = 'Open Lba text file'
Left = 224
Top = 176
end
object dSave: TSaveDialog
DefaultExt = 'lbt'
Filter = 'LBA text files (*.lbt)|*.lbt|XML files (*.xml)|*.xml'
Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofEnableSizing]
OptionsEx = [ofExNoPlacesBar]
Title = 'Save text file'
Left = 256
Top = 176
end
object ActionList: TActionList
Images = ImageList1
Left = 352
Top = 176
object aOpen: TAction
Category = 'File'
Caption = 'Open...'
ImageIndex = 9
OnExecute = aOpenExecute
end
object aSave: TAction
Category = 'File'
Caption = 'Save'
Enabled = False
ImageIndex = 11
OnExecute = aSaveExecute
end
object aReload: TAction
Category = 'File'
Caption = 'Reload'
ImageIndex = 10
OnExecute = aReloadExecute
end
object aExit: TAction
Category = 'File'
Caption = 'Exit'
OnExecute = aExitExecute
end
object aEdit: TAction
Category = 'Edit'
Caption = 'Edit selected entry'
ImageIndex = 13
OnExecute = aEditExecute
end
object aPreview: TAction
Category = 'Edit'
Caption = 'Preview selected entry'
ImageIndex = 14
ShortCut = 32848
OnExecute = aPreviewExecute
end
object aFind: TAction
Category = 'Edit'
Caption = 'Find...'
ImageIndex = 2
OnExecute = aFindExecute
end
object aFindNext: TAction
Category = 'Edit'
Caption = 'Find next'
Enabled = False
ImageIndex = 3
ShortCut = 114
OnExecute = aFindNextExecute
end
object aFindRep: TAction
Category = 'Edit'
Caption = 'Find and replace...'
ImageIndex = 4
OnExecute = aFindRepExecute
end
object aLtr: TAction
Category = 'Direction'
AutoCheck = True
Caption = 'Left to right'
Checked = True
GroupIndex = 1
OnExecute = aBiDiExecute
end
object aRtl: TAction
Category = 'Direction'
AutoCheck = True
Caption = 'Right to left'
GroupIndex = 1
OnExecute = aBiDiExecute
end
object aRtlNa: TAction
Category = 'Direction'
AutoCheck = True
Caption = 'Right to left - no align'
GroupIndex = 1
OnExecute = aBiDiExecute
end
object aRtlRo: TAction
Category = 'Direction'
AutoCheck = True
Caption = 'Right to left - reading only'
GroupIndex = 1
OnExecute = aBiDiExecute
end
object aDefault: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'Default'
Checked = True
GroupIndex = 2
OnExecute = aCharsetExecute
end
object aHebrew: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'Hebrew'
GroupIndex = 2
OnExecute = aCharsetExecute
end
object aDefMap: TAction
Category = 'Conversion map'
AutoCheck = True
Caption = 'Default (used in Lba)'
Checked = True
GroupIndex = 3
OnExecute = aDefMapExecute
end
object aNoneMap: TAction
Category = 'Conversion map'
AutoCheck = True
Caption = 'None'
GroupIndex = 3
OnExecute = aDefMapExecute
end
object aCustomMap: TAction
Category = 'Conversion map'
AutoCheck = True
Caption = 'Custom...'
GroupIndex = 3
OnExecute = aDefMapExecute
end
object aLoadMap: TAction
Category = 'Conversion map'
Caption = 'Load from file...'
OnExecute = aLoadMapExecute
end
object aPolski: TAction
Category = 'Language'
AutoCheck = True
Caption = 'Polski'
GroupIndex = 4
ImageIndex = 0
OnExecute = aLangExecute
end
object aEnglish: TAction
Category = 'Language'
AutoCheck = True
Caption = 'English'
Checked = True
GroupIndex = 4
ImageIndex = 1
OnExecute = aLangExecute
end
object aRemember: TAction
Category = 'Conversion map'
AutoCheck = True
Caption = 'Remember last map'
OnExecute = aEmptyAction
end
object aDelete: TAction
Category = 'Edit'
Caption = 'Delete selected entry'
Enabled = False
ImageIndex = 12
OnExecute = aDeleteExecute
end
object aMoveUp: TAction
Category = 'Edit'
Caption = 'Move up'
Enabled = False
ImageIndex = 8
OnExecute = aMoveUpExecute
end
object aMoveDown: TAction
Category = 'Edit'
Caption = 'Move down'
Enabled = False
ImageIndex = 7
OnExecute = aMoveDownExecute
end
object aInsAbove: TAction
Category = 'Edit'
Caption = 'Insert above'
Enabled = False
ImageIndex = 6
OnExecute = aInsAboveExecute
end
object aInsBelow: TAction
Category = 'Edit'
Caption = 'Insert below'
Enabled = False
ImageIndex = 5
OnExecute = aInsBelowExecute
end
object aLock: TAction
Category = 'Edit'
AutoCheck = True
Caption = 'Lock file structure'
Checked = True
ImageIndex = 15
OnExecute = aLockExecute
end
object aSaveAs: TAction
Category = 'File'
Caption = 'SaveAs'
ImageIndex = 16
OnExecute = aSaveAsExecute
end
object aAutoDetect: TAction
Category = 'Options'
AutoCheck = True
Caption = 'Autodetect file type'
Checked = True
OnExecute = aEmptyAction
end
object aLangFile: TAction
Category = 'Language'
AutoCheck = True
Caption = 'From file...'
GroupIndex = 4
OnExecute = aLangExecute
end
object aAssociate: TAction
Category = 'Options'
AutoCheck = True
Caption = 'Associate with LBA text files (*.lbt)'
OnExecute = aAssociateExecute
end
object aInternal: TAction
Category = 'Options'
AutoCheck = True
Caption = 'Internal editor'
Checked = True
OnExecute = aInternalExecute
end
object aSendCom: TAction
Category = 'Translator mode'
AutoCheck = True
Caption = 'Send commands'
GroupIndex = 5
OnExecute = aTranslatorExecute
end
object aReceiveCom: TAction
Category = 'Translator mode'
AutoCheck = True
Caption = 'Receive commands'
GroupIndex = 5
OnExecute = aTranslatorExecute
end
object aBothCom: TAction
Category = 'Translator mode'
AutoCheck = True
Caption = 'Send and receive commands'
GroupIndex = 5
OnExecute = aTranslatorExecute
end
object aOff: TAction
Category = 'Translator mode'
AutoCheck = True
Caption = 'Off'
Checked = True
GroupIndex = 5
OnExecute = aTranslatorExecute
end
object aClone: TAction
Category = 'File'
Caption = 'Clone window'
ImageIndex = 17
OnExecute = aCloneExecute
end
object aAnsi: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'ANSI'
GroupIndex = 2
OnExecute = aCharsetExecute
end
object aArabic: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'Arabic'
GroupIndex = 2
OnExecute = aCharsetExecute
end
object aBaltic: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'Baltic'
GroupIndex = 2
OnExecute = aCharsetExecute
end
object aChineseBig5: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'Chinese Big5'
GroupIndex = 2
OnExecute = aCharsetExecute
end
object aEastEurope: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'East Europe'
GroupIndex = 2
OnExecute = aCharsetExecute
end
object aGB2312: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'GB2312'
GroupIndex = 2
OnExecute = aCharsetExecute
end
object aGreek: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'Greek'
GroupIndex = 2
OnExecute = aCharsetExecute
end
object aHangeul: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'Hangeul'
GroupIndex = 2
OnExecute = aCharsetExecute
end
object aJohab: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'Johab'
GroupIndex = 2
OnExecute = aCharsetExecute
end
object aMac: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'Mac'
GroupIndex = 2
OnExecute = aCharsetExecute
end
object aOem: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'OEM'
GroupIndex = 2
OnExecute = aCharsetExecute
end
object aRussian: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'Russian'
GroupIndex = 2
OnExecute = aCharsetExecute
end
object aShiftjis: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'Shiftjis'
GroupIndex = 2
OnExecute = aCharsetExecute
end
object aThai: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'Thai'
GroupIndex = 2
OnExecute = aCharsetExecute
end
object aTurkish: TAction
Category = 'Charset'
AutoCheck = True
Caption = 'Turkish'
GroupIndex = 2
OnExecute = aCharsetExecute
end
end
object ImageList1: TImageList
AllocBy = 18
Left = 288
Top = 176
Bitmap = {
494C010112001300040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
0000000000003600000028000000400000005000000001002000000000000050
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000A0756E0074434200744342007443420074434200744342007443
4200744342007443420074434200000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000A0756E00FFF8E500F7EDD900F7EBD500F4E9D100F4E9D000F4E7
CF00F6EAD000EEDDC40075444300000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000008080000080
800000000000000000000000000000FFFF0000FFFF0000000000C0C0C000C0C0
C000000000000080800000000000000000000000000000000000000000000000
000000000000A0756E00F7EDDC00F2D9BF00F2D7BB00F0D5BA00EFD4B500EED3
B200EED9BF00E5D0BA0075444300000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000008080000080
8000000000000000000000FFFF000000FF000000FF0000FFFF00C0C0C000C0C0
C000000000000080800000000000000000000000000000000000000000000000
000000000000A0756E00FAEFDE00FCC59100FCC59100FCC59100FCC59100FCC5
9100FCC59100E3D1BC0075444300000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000008080000080
800000000000000000000000000000FFFF0000FFFF0000000000C0C0C000C0C0
C0000000000000808000000000000000000000000000A0756E00744342007443
420074434200A0756E00FCF4E700F6D9BA00F7D7B600F6D4B500F6D4B200F4D1
AD00F0DCC200E6D3C00081524C00000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000008080000080
8000000000000000000000FFFF000000FF000000FF0000FFFF00000000000000
00000000000000808000000000000000000000000000A0756E00FFF8E500F7ED
D900F7EBD500A0756E00FEF6EB00F8DABC00F8D9B800F8D8B700F7D5B600F7D4
B200F3DEC700E7D7C50081524D00000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000008080000080
8000008080000080800000FFFF000000FF000000FF0000FFFF00008080000080
80000080800000808000000000000000000000000000A0756E00F7EDDC00F2D9
BF00F2D7BB00A0756E00FEFAF200FCC59100FCC59100FCC59100FCC59100FCC5
9100FCC59100EBDDCF008F5F5A00000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000008080000080
8000000000000000000000FFFF000000FF000000FF0000FFFF00000000000000
00000080800000808000000000000000000000000000A0756E00FAEFDE00FCC5
9100FCC59100A0756E00FFFCFA00FCE3CC00FBE0C700FADEC600F8DEC400FCE2
C600FCF0DE00E1D7CE008F5E5900000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000008080000000
0000C0C0C000C0C0C000C0C0C00000FFFF000000FF000000FF0000FFFF00C0C0
C0000000000000808000000000000000000000000000A0756E00FCF4E700F6D9
BA00F7D7B600A0756E00FFFFFF00FEFFFF00FBFBFB00FAF8F700FAFAF600E5D5
D000C6B1AF00A79395009E675A00000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000008080000000
0000C0C0C00000FFFF0000FFFF00C0C0C00000FFFF000000FF000000FF0000FF
FF000000000000808000000000000000000000000000A0756E00FEF6EB00F8DA
BC00F8D9B800A0756E00FFFFFF00FFFFFF00FFFEFE00FFFCF800FFFEFA00A075
6E00A0756E00A0756E00A0756E00000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000008080000000
000000FFFF000000FF000000FF0000FFFF0000FFFF000000FF000000FF0000FF
FF000000000000808000000000000000000000000000A0756E00FEFAF200FCC5
9100FCC59100A0756E00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00A075
6E00E5A15400B6735D0000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000008080000000
000000FFFF000000FF000000FF0000FFFF0000FFFF000000FF000000FF0000FF
FF000000000000808000000000000000000000000000A0756E00FFFCFA00FCE3
CC00FBE0C700A0756E00A0756E00A0756E00A0756E00A0756E00A0756E00A075
6E00AA6D68000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000008080000000
0000C0C0C00000FFFF000000FF000000FF000000FF000000FF0000FFFF00C0C0
C0000000000000000000000000000000000000000000A0756E00FFFFFF00FEFF
FF00FBFBFB00FAF8F700FAFAF600E5D5D000C6B1AF00A79395009E675A000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000008080000000
0000C0C0C000C0C0C00000FFFF0000FFFF0000FFFF0000FFFF00C0C0C000C0C0
C00000000000C0C0C000000000000000000000000000A0756E00FFFFFF00FFFF
FF00FFFEFE00FFFCF800FFFEFA00A0756E00A0756E00A0756E00A0756E000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000A0756E00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00A0756E00E5A15400B6735D00000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000A0756E00A0756E00A075
6E00A0756E00A0756E00A0756E00A0756E00AA6D680000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000202000404000008040000080600000806000008080000080A000008080
000080800000FF806000FF806000FF8060000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000B101B1006F01
6F00000000000000000000000000000000000000000000000000000000000000
000000000000A801A80091019100000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000040400000804000008060000080600000808000008080000080A0
A00080A0A000FF806000FFC04000FF8060000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000009101ED002A01DF004001
A600660166000000000000000000000000000000000000000000000000000000
00006301B3002F01D80000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000FFFFFF00000000000000000000000000000000000000
0000000000000000000080400000806000008060000080600000808080008080
80008080FF0080A0A000FF806000FFC060000000000000000000000000000000
0000000000008080800080808000808080008080800080808000000000000000
00000000000000000000000000000000000000000000BD01F6002A01DF003101
DC0054016B008001800000000000000000000000000000000000000000004601
C3002A01DF007E01CE0000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000FFFFFF0000000000000000000000000000000000000000000000
00000000000000000000404000008040000080400000806000008060000080A0
A0008080FF00FF806000FF806000FF8060000000000000000000000000008080
8000808080008080800000808000000000000080800080808000808080008080
80000000000000000000000000000000000000000000000000008801EE002A01
DF003E01D20060016000950195000000000000000000000000003A01CD002F01
D800000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000FFFFFF0000000000000000000000000000000000000000000000
00000000000000000000002020004040000040404000804000008060000080A0
000080A0A000FF806000FF806000FFC060000000000000000000808080008080
8000808080008080800000808000000000000080800080808000808080008080
8000808080000000000000000000000000000000000000000000000000007A01
EC002A01DF005301C3006501650093019300000000003A01CD002F01D8000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000FFFF
FF00FFFFFF000000000000000000000000000000000000000000000000000000
0000000000000000000000000000406060004020000040400000806060008080
0000FF806000FFA08000FF806000808000000000000000000000808080008080
8000808080008080800080808000000000008080800080808000808080008080
8000808080000000000000000000000000000000000000000000000000000000
00007A01EC002A01DF005201C30054015F003401C8002D01D700000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000FFFF
FF00FFFFFF00FFFFFF0000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000040400000404040008080
800080A0A0008080000080600000000000000000000000000000808080008080
8000808080008080800000000000000000000000000080808000808080008080
8000808080000000000000000000000000000000000000000000000000000000
0000000000007A01EA002A01DF002D01D7002C01D6006B018D00000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000FFFF
FF00FFFFFF000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000808080008080
FF0080A0FF000000000000000000000000000000000000000000808080008080
8000808080008080800000000000000000000000000080808000808080008080
8000808080000000000000000000000000000000000000000000000000000000
000000000000C801D4003001D9002A01DF004801C40075017500920192000000
00000000000000000000000000000000000000000000FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF0000000000FFFF
FF0000000000FFFFFF00FFFFFF00000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000808080008080
800080A0A0000000000000000000000000000000000000000000808080008080
8000808080008080800080808000808080008080800080808000808080008080
8000808080000000000000000000000000000000000000000000000000000000
0000C801D4003A01CD002F01D8007101CC003601E0005A01D6007E0189008601
86000000000000000000000000000000000000000000FFFFFF0000000000FFFF
FF0000000000FFFFFF00FFFFFF000000000000000000FFFFFF00000000000000
0000FFFFFF00FFFFFF00FFFFFF00000000000000000000000000000000000000
00000000000000000000000000000000000000000000808080008080800080A0
A00080C0FF0080FFFF0000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000C801
D4003A01CD002A01DF008B01B90000000000000000004401E2004B01DE007B01
9D007D017D0000000000000000000000000000000000FFFFFF00000000000000
000000000000FFFFFF0000000000FFFFFF0000000000FFFFFF0000000000FFFF
FF00FFFFFF00FFFFFF00FFFFFF00000000000000000000000000000000000000
000000000000FFFFFF0000000000000000000000000080606000808080008080
8000FFFFFF00FFFFFF0080FFFF00000000000000000000000000000000000000
0000808080000000000000000000000000000000000000000000808080000000
0000000000000000000000000000000000000000000000000000BC01C8003A01
CC002A01DF007301B700000000000000000000000000000000006001E7003601
DF007C01B5008A018A00000000000000000000000000FFFFFF0000000000FFFF
FF0000000000FFFFFF00FFFFFF0000000000FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00000000000000000000000000000000000000
0000FFFFFF0000000000000000000000000000000000808080000000000080A0
A00080C0C00080A0A00000000000000000000000000000000000000000000000
0000808080000000000000000000000000000000000000000000808080000000
00000000000000000000000000000000000000000000000000003A01CC002A01
DF005B01B6000000000000000000000000000000000000000000000000009501
F0002A01DF0000000000000000000000000000000000FFFFFF00FFFFFF000000
0000FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF000000000000000000FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF0000000000000000000000000080808000808080008080
FF008080FF0080A0FF0080FFFF00000000000000000000000000000000000000
0000808080000000000000000000000000000000000000000000808080000000
000000000000000000000000000000000000000000004201E0002A01DF004601
C300000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF000000000000000000FFFFFF0000000000FFFF
FF0000000000FFFFFF00000000000000000000000000000000008060600080A0
A0008080FF0080FFFF0000000000000000000000000000000000000000000000
0000808080008080800000000000000000000000000080808000808080000000
000000000000000000000000000000000000000000003701E1004E01E2000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF0000000000000000000000000000000000000000000020
4000002040000020400000000000000000000000000000000000000000000000
0000000000008080800080808000808080008080800080808000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000008080
8000402020000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000008000000080000000800000008000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000C1000000C1000000C1000000C1000000C100000080
0000008000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000FFFFFF000000
0000FFFFFF000000000000000000FFFFFF0000000000FFFFFF00000000000000
0000FFFFFF000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000C1000000C1000000C1000000C1000000C1
000000C100000080000000000000000000000000000000000000008080000080
8000000000000000000000000000000000000000000000000000C6D1D700C6D1
D700000000000080800000000000000000000000000000000000FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF000000000000000000000000000000000000000000008080000080
8000008080000080800000808000008080000080800000808000008080000000
0000000000000000000000000000000000000000000000800000008000000080
000000800000008000000080000000000000000000000000000000C1000000C1
000000C1000000C1000000800000000000000000000000000000008080000080
8000000000000000000000000000000000000000000000000000C6D1D700C6D1
D700000000000080800000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000FFFF00000000000080
8000008080000080800000808000008080000080800000808000008080000080
80000000000000000000000000000000000000C1000000C1000000C1000000C1
000000C1000000C1000000800000000000000000000000000000000000000000
000000C1000000C1000000800000000000000000000000000000008080000080
8000000000000000000000000000000000000000000000000000C6D1D700C6D1
D700000000000080800000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000FFFFFF0000FFFF000000
0000008080000080800000808000008080000080800000808000008080000080
8000008080000000000000000000000000000000000000C1000000C1000000C1
000000C1000000C1000000800000000000000000000000000000000000000000
000000C1000000C1000000C10000008000000000000000000000008080000080