-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathL2-easy.aip
1899 lines (1899 loc) · 259 KB
/
L2-easy.aip
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<DOCUMENT Type="Advanced Installer" CreateVersion="18.0" version="18.0" Modules="simple" RootPath="." Language="en" Id="{B8968104-5823-4484-AC22-6D883822E250}">
<COMPONENT cid="caphyon.advinst.msicomp.MsiPropsComponent">
<ROW Property="AI_BITMAP_DISPLAY_MODE" Value="0"/>
<ROW Property="ALLUSERS" Value="1"/>
<ROW Property="ARPCOMMENTS" Value="L2-easy installer contains the logic and data required to install [|ProductName]." ValueLocId="*"/>
<ROW Property="ARPHELPLINK" Value="market-lv2data.com"/>
<ROW Property="ARPURLINFOABOUT" Value="market-lv2data.com"/>
<ROW Property="ARPURLUPDATEINFO" Value="market-lv2data.com"/>
<ROW Property="Manufacturer" Value="market-lv2data.com"/>
<ROW Property="ProductCode" Value="1033:{6291BC5C-51DD-4762-9689-44CC0122E6F2} " Type="16"/>
<ROW Property="ProductLanguage" Value="1033"/>
<ROW Property="ProductName" Value="L2-easy"/>
<ROW Property="ProductVersion" Value="3.9.4" Type="32"/>
<ROW Property="SecureCustomProperties" Value="OLDPRODUCTS;AI_NEWERPRODUCTFOUND"/>
<ROW Property="UpgradeCode" Value="{02F86287-F147-4DDA-B60A-458D5F787C3F}"/>
<ROW Property="WindowsType9X" MultiBuildValue="DefaultBuild:Windows 9x/ME" ValueLocId="-"/>
<ROW Property="WindowsType9XDisplay" MultiBuildValue="DefaultBuild:Windows 9x/ME" ValueLocId="-"/>
<ROW Property="WindowsTypeNT40" MultiBuildValue="DefaultBuild:Windows NT 4.0" ValueLocId="-"/>
<ROW Property="WindowsTypeNT40Display" MultiBuildValue="DefaultBuild:Windows NT 4.0" ValueLocId="-"/>
<ROW Property="WindowsTypeNT50" MultiBuildValue="DefaultBuild:Windows 2000" ValueLocId="-"/>
<ROW Property="WindowsTypeNT50Display" MultiBuildValue="DefaultBuild:Windows 2000" ValueLocId="-"/>
<ROW Property="WindowsTypeNT5X" MultiBuildValue="DefaultBuild:Windows XP/2003" ValueLocId="-"/>
<ROW Property="WindowsTypeNT5XDisplay" MultiBuildValue="DefaultBuild:Windows XP/2003" ValueLocId="-"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.MsiDirsComponent">
<ROW Directory="APPDIR" Directory_Parent="TARGETDIR" DefaultDir="APPDIR:." IsPseudoRoot="1"/>
<ROW Directory="Africa_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Africa"/>
<ROW Directory="America_Dir" Directory_Parent="tzdata_Dir" DefaultDir="America"/>
<ROW Directory="Antarctica_Dir" Directory_Parent="tzdata_Dir" DefaultDir="ANTARC~1|Antarctica"/>
<ROW Directory="Arctic_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Arctic"/>
<ROW Directory="Argentina_Dir" Directory_Parent="America_Dir" DefaultDir="ARGENT~1|Argentina"/>
<ROW Directory="Asia_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Asia"/>
<ROW Directory="Atlantic_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Atlantic"/>
<ROW Directory="Australia_Dir" Directory_Parent="tzdata_Dir" DefaultDir="AUSTRA~1|Australia"/>
<ROW Directory="Brazil_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Brazil"/>
<ROW Directory="Canada_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Canada"/>
<ROW Directory="Chile_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Chile"/>
<ROW Directory="DesktopFolder" Directory_Parent="TARGETDIR" DefaultDir="DESKTO~1|DesktopFolder" IsPseudoRoot="1"/>
<ROW Directory="Etc_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Etc"/>
<ROW Directory="Europe_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Europe"/>
<ROW Directory="Include_Dir" Directory_Parent="L2easy_Dir" DefaultDir="Include"/>
<ROW Directory="Indian_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Indian"/>
<ROW Directory="Indiana_Dir" Directory_Parent="America_Dir" DefaultDir="Indiana"/>
<ROW Directory="Kentucky_Dir" Directory_Parent="America_Dir" DefaultDir="Kentucky"/>
<ROW Directory="L2easy_Dir" Directory_Parent="APPDIR" DefaultDir="L2-easy"/>
<ROW Directory="Mexico_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Mexico"/>
<ROW Directory="North_Dakota_Dir" Directory_Parent="America_Dir" DefaultDir="NORTH_~1|North_Dakota"/>
<ROW Directory="PIL_Dir" Directory_Parent="L2easy_Dir" DefaultDir="PIL"/>
<ROW Directory="Pacific_Dir" Directory_Parent="tzdata_Dir" DefaultDir="Pacific"/>
<ROW Directory="PyQt5_Dir" Directory_Parent="L2easy_Dir" DefaultDir="PyQt5"/>
<ROW Directory="Qt_Dir" Directory_Parent="PyQt5_Dir" DefaultDir="Qt"/>
<ROW Directory="SystemV_Dir" Directory_Parent="tzdata_Dir" DefaultDir="SystemV"/>
<ROW Directory="TARGETDIR" DefaultDir="SourceDir"/>
<ROW Directory="TesseractOCR_Dir" Directory_Parent="L2easy_Dir" DefaultDir="TESSER~1|Tesseract-OCR"/>
<ROW Directory="US_Dir" Directory_Parent="tzdata_Dir" DefaultDir="US"/>
<ROW Directory="__1_Dir" Directory_Parent="tcl8_Dir" DefaultDir="8.5"/>
<ROW Directory="__2_Dir" Directory_Parent="tcl8_Dir" DefaultDir="8.6"/>
<ROW Directory="__Dir" Directory_Parent="tcl8_Dir" DefaultDir="8.4"/>
<ROW Directory="configs_Dir" Directory_Parent="tessdata_1_Dir" DefaultDir="configs"/>
<ROW Directory="core_Dir" Directory_Parent="numpy_Dir" DefaultDir="core"/>
<ROW Directory="cv2_Dir" Directory_Parent="L2easy_Dir" DefaultDir="cv2"/>
<ROW Directory="doc_Dir" Directory_Parent="TesseractOCR_Dir" DefaultDir="doc"/>
<ROW Directory="encoding_Dir" Directory_Parent="tcl_Dir" DefaultDir="encoding"/>
<ROW Directory="fft_Dir" Directory_Parent="numpy_Dir" DefaultDir="fft"/>
<ROW Directory="http1.0_Dir" Directory_Parent="tcl_Dir" DefaultDir="http1.0"/>
<ROW Directory="iconengines_Dir" Directory_Parent="plugins_Dir" DefaultDir="ICONEN~1|iconengines"/>
<ROW Directory="imageformats_Dir" Directory_Parent="plugins_Dir" DefaultDir="IMAGEF~1|imageformats"/>
<ROW Directory="images_Dir" Directory_Parent="tk_Dir" DefaultDir="images"/>
<ROW Directory="linalg_Dir" Directory_Parent="numpy_Dir" DefaultDir="linalg"/>
<ROW Directory="msgs_1_Dir" Directory_Parent="tk_Dir" DefaultDir="msgs"/>
<ROW Directory="msgs_Dir" Directory_Parent="tcl_Dir" DefaultDir="msgs"/>
<ROW Directory="numpy_Dir" Directory_Parent="L2easy_Dir" DefaultDir="numpy"/>
<ROW Directory="opt0.4_Dir" Directory_Parent="tcl_Dir" DefaultDir="opt0.4"/>
<ROW Directory="platform_Dir" Directory_Parent="__Dir" DefaultDir="platform"/>
<ROW Directory="platforms_Dir" Directory_Parent="plugins_Dir" DefaultDir="PLATFO~1|platforms"/>
<ROW Directory="platformthemes_Dir" Directory_Parent="plugins_Dir" DefaultDir="PLATFO~2|platformthemes"/>
<ROW Directory="plugins_Dir" Directory_Parent="Qt_Dir" DefaultDir="plugins"/>
<ROW Directory="pygame_Dir" Directory_Parent="L2easy_Dir" DefaultDir="pygame"/>
<ROW Directory="random_Dir" Directory_Parent="numpy_Dir" DefaultDir="random"/>
<ROW Directory="styles_Dir" Directory_Parent="plugins_Dir" DefaultDir="styles"/>
<ROW Directory="tcl8_Dir" Directory_Parent="L2easy_Dir" DefaultDir="tcl8"/>
<ROW Directory="tcl_Dir" Directory_Parent="L2easy_Dir" DefaultDir="tcl"/>
<ROW Directory="tessconfigs_Dir" Directory_Parent="tessdata_1_Dir" DefaultDir="TESSCO~1|tessconfigs"/>
<ROW Directory="tessdata_1_Dir" Directory_Parent="TesseractOCR_Dir" DefaultDir="tessdata"/>
<ROW Directory="tessdata_Dir" Directory_Parent="L2easy_Dir" DefaultDir="tessdata"/>
<ROW Directory="tk_Dir" Directory_Parent="L2easy_Dir" DefaultDir="tk"/>
<ROW Directory="translations_Dir" Directory_Parent="Qt_Dir" DefaultDir="TRANSL~1|translations"/>
<ROW Directory="ttk_Dir" Directory_Parent="tk_Dir" DefaultDir="ttk"/>
<ROW Directory="tzdata_Dir" Directory_Parent="tcl_Dir" DefaultDir="tzdata"/>
<ROW Directory="yaml_Dir" Directory_Parent="L2easy_Dir" DefaultDir="yaml"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.MsiCompsComponent">
<ROW Component="ACT" ComponentId="{3AE6E9EC-17C7-44D1-AC54-EE5DF7D4E87A}" Directory_="Australia_Dir" Attributes="0" KeyPath="ACT" Type="0"/>
<ROW Component="APPDIR" ComponentId="{E6FEB112-8AD2-4A5C-B0CA-6FF54772FDBB}" Directory_="APPDIR" Attributes="0"/>
<ROW Component="AST4" ComponentId="{5D688FC8-4922-4E86-9D19-6F769A3380A8}" Directory_="SystemV_Dir" Attributes="0" KeyPath="AST4" Type="0"/>
<ROW Component="AUTHORS" ComponentId="{C1696B63-0740-4287-B06E-1F4796665F34}" Directory_="doc_Dir" Attributes="0" KeyPath="AUTHORS" Type="0"/>
<ROW Component="Abidjan" ComponentId="{C46F75E7-0DD6-49F8-AED9-605484445F18}" Directory_="Africa_Dir" Attributes="0" KeyPath="Abidjan" Type="0"/>
<ROW Component="Acre" ComponentId="{86B69628-2B69-4402-951D-B630F03D748F}" Directory_="Brazil_Dir" Attributes="0" KeyPath="Acre" Type="0"/>
<ROW Component="Adak" ComponentId="{9FD0E194-5BDD-44D8-976A-F6335D2A5612}" Directory_="America_Dir" Attributes="0" KeyPath="Adak" Type="0"/>
<ROW Component="Aden" ComponentId="{489626BB-69D1-4D9A-82D7-8E7C6DC57774}" Directory_="Asia_Dir" Attributes="0" KeyPath="Aden" Type="0"/>
<ROW Component="Alaska" ComponentId="{545EDABF-0B86-44CC-AA0F-ECC47D9734E6}" Directory_="US_Dir" Attributes="0" KeyPath="Alaska" Type="0"/>
<ROW Component="Amsterdam" ComponentId="{04742260-0FE5-4804-BC81-0C77F8923F5A}" Directory_="Europe_Dir" Attributes="0" KeyPath="Amsterdam" Type="0"/>
<ROW Component="Antananarivo" ComponentId="{1E7BCCF8-3788-4106-831D-61CB3A097DE8}" Directory_="Indian_Dir" Attributes="0" KeyPath="Antananarivo" Type="0"/>
<ROW Component="Apia" ComponentId="{9A92AA4A-AB3A-461A-BBAA-3138C8B7E66A}" Directory_="Pacific_Dir" Attributes="0" KeyPath="Apia" Type="0"/>
<ROW Component="Atlantic" ComponentId="{0ACCF065-05CD-4DCF-9EA6-F6B294CD623D}" Directory_="Canada_Dir" Attributes="0" KeyPath="Atlantic" Type="0"/>
<ROW Component="Azores" ComponentId="{E4B16081-8638-420F-8A9A-86FDF6F58335}" Directory_="Atlantic_Dir" Attributes="0" KeyPath="Azores" Type="0"/>
<ROW Component="BajaNorte" ComponentId="{997DFF61-F451-4303-A975-38F248335EE3}" Directory_="Mexico_Dir" Attributes="0" KeyPath="BajaNorte" Type="0"/>
<ROW Component="Beulah" ComponentId="{21F0E4E9-52A8-4473-B8D5-8C45EBFB25CC}" Directory_="North_Dakota_Dir" Attributes="0" KeyPath="Beulah" Type="0"/>
<ROW Component="Buenos_Aires" ComponentId="{4468BBFE-23BD-4B08-B725-C9978C3C1C78}" Directory_="Argentina_Dir" Attributes="0" KeyPath="Buenos_Aires" Type="0"/>
<ROW Component="CET" ComponentId="{AC457C4B-7673-411E-8CF2-34175B133405}" Directory_="tzdata_Dir" Attributes="0" KeyPath="CET" Type="0"/>
<ROW Component="Casey" ComponentId="{BAE861DB-B6D6-43FC-9323-2737CF240BE6}" Directory_="Antarctica_Dir" Attributes="0" KeyPath="Casey" Type="0"/>
<ROW Component="Continental" ComponentId="{B34F0C2F-534E-440F-9ABE-1D9EC1933384}" Directory_="Chile_Dir" Attributes="0" KeyPath="Continental" Type="0"/>
<ROW Component="GMT" ComponentId="{22B14F0D-CA00-4D97-B2E5-DFE005AEDB88}" Directory_="Etc_Dir" Attributes="0" KeyPath="GMT" Type="0"/>
<ROW Component="Indianapolis" ComponentId="{F9B22C29-DC22-4900-9A56-38EAEC0883CA}" Directory_="Indiana_Dir" Attributes="0" KeyPath="Indianapolis" Type="0"/>
<ROW Component="L2easy.exe" ComponentId="{39439247-0B91-48BD-A429-5B5844D6D184}" Directory_="L2easy_Dir" Attributes="256" KeyPath="L2easy.exe"/>
<ROW Component="LexActivator.dll" ComponentId="{381A2A57-9BA8-4106-8C71-50675C5DBA94}" Directory_="L2easy_Dir" Attributes="256" KeyPath="LexActivator.dll"/>
<ROW Component="Longyearbyen" ComponentId="{902AB445-C9EB-464A-9D63-E83236E13F61}" Directory_="Arctic_Dir" Attributes="0" KeyPath="Longyearbyen" Type="0"/>
<ROW Component="Louisville" ComponentId="{B2989E9F-D323-4151-855D-B423A16477E6}" Directory_="Kentucky_Dir" Attributes="0" KeyPath="Louisville" Type="0"/>
<ROW Component="MSVCP140.dll" ComponentId="{7AF19FF0-475F-49D3-B662-F3D8C9B2452C}" Directory_="L2easy_Dir" Attributes="256" KeyPath="MSVCP140.dll"/>
<ROW Component="MSVCP140_1.dll" ComponentId="{846B459E-D034-47E8-B8EC-4111F89F985C}" Directory_="L2easy_Dir" Attributes="256" KeyPath="MSVCP140_1.dll"/>
<ROW Component="ProductInformation" ComponentId="{BC716334-29C3-4ADE-A04D-67FE6D807935}" Directory_="APPDIR" Attributes="260" KeyPath="Version"/>
<ROW Component="Qt5Core.dll" ComponentId="{3F44B2DE-5612-4B91-9520-4A1933348089}" Directory_="L2easy_Dir" Attributes="256" KeyPath="Qt5Core.dll"/>
<ROW Component="Qt5DBus.dll" ComponentId="{9165A0C2-3B06-44CA-A26D-8E7C5309D0FB}" Directory_="L2easy_Dir" Attributes="256" KeyPath="Qt5DBus.dll"/>
<ROW Component="Qt5Gui.dll" ComponentId="{2C963CEE-26DC-44F9-8093-DE0B771E1DF2}" Directory_="L2easy_Dir" Attributes="256" KeyPath="Qt5Gui.dll"/>
<ROW Component="Qt5Network.dll" ComponentId="{A2F76D8D-C8B3-4CDD-8D0D-44B9EF8D1E04}" Directory_="L2easy_Dir" Attributes="256" KeyPath="Qt5Network.dll"/>
<ROW Component="Qt5Qml.dll" ComponentId="{A1D91CF6-8162-460D-BF0B-7B470404EA95}" Directory_="L2easy_Dir" Attributes="256" KeyPath="Qt5Qml.dll"/>
<ROW Component="Qt5QmlModels.dll" ComponentId="{CFC3C8C0-2076-4DF0-9A6A-D8DC4193FE20}" Directory_="L2easy_Dir" Attributes="256" KeyPath="Qt5QmlModels.dll"/>
<ROW Component="Qt5Quick.dll" ComponentId="{B58B4E21-FC9A-4056-AE62-6C8EC81A5F6C}" Directory_="L2easy_Dir" Attributes="256" KeyPath="Qt5Quick.dll"/>
<ROW Component="Qt5Svg.dll" ComponentId="{82A5C9A1-8329-4768-A2F9-D6BF250AEDAB}" Directory_="L2easy_Dir" Attributes="256" KeyPath="Qt5Svg.dll"/>
<ROW Component="Qt5WebSockets.dll" ComponentId="{5370A4C4-F96D-4B10-9264-FEE8D09422F4}" Directory_="L2easy_Dir" Attributes="256" KeyPath="Qt5WebSockets.dll"/>
<ROW Component="Qt5Widgets.dll" ComponentId="{26CA89E8-A355-4A36-9E29-A17B2290A7B6}" Directory_="L2easy_Dir" Attributes="256" KeyPath="Qt5Widgets.dll"/>
<ROW Component="QtCore.pyd" ComponentId="{D512CCD3-FA41-4031-9F43-995013889440}" Directory_="PyQt5_Dir" Attributes="256" KeyPath="QtCore.pyd" Type="0"/>
<ROW Component="SDL2.dll" ComponentId="{1EEFE43E-E064-47B3-B21C-B104563CE51F}" Directory_="L2easy_Dir" Attributes="256" KeyPath="SDL2.dll"/>
<ROW Component="SDL2_image.dll" ComponentId="{E6FD2B63-F7B9-4E7F-A527-A6FF68626A84}" Directory_="L2easy_Dir" Attributes="256" KeyPath="SDL2_image.dll"/>
<ROW Component="SDL2_mixer.dll" ComponentId="{BAB71062-4EA4-4333-A83D-5F95D102FE5F}" Directory_="L2easy_Dir" Attributes="256" KeyPath="SDL2_mixer.dll"/>
<ROW Component="SDL2_ttf.dll" ComponentId="{230D52FD-F49F-42E2-B297-62F1E51297CC}" Directory_="L2easy_Dir" Attributes="256" KeyPath="SDL2_ttf.dll"/>
<ROW Component="VCRUNTIME140.dll" ComponentId="{BBE6C7B2-9A9A-456A-A45D-DB49BD3287B9}" Directory_="L2easy_Dir" Attributes="256" KeyPath="VCRUNTIME140.dll"/>
<ROW Component="VCRUNTIME140_1.dll" ComponentId="{141D1766-2F4A-474C-9A14-F3B0BE6FB1D6}" Directory_="L2easy_Dir" Attributes="256" KeyPath="VCRUNTIME140_1.dll"/>
<ROW Component="_imaging.cp37win_amd64.pyd" ComponentId="{1096503B-7149-4A00-9C33-B276853DDF97}" Directory_="PIL_Dir" Attributes="256" KeyPath="_imaging.cp37win_amd64.pyd" Type="0"/>
<ROW Component="_multiarray_tests.cp37win_amd64.pyd" ComponentId="{DD24D745-E79E-41A3-94A6-2959F3C7C82F}" Directory_="core_Dir" Attributes="256" KeyPath="_multiarray_tests.cp37win_amd64.pyd" Type="0"/>
<ROW Component="_pocketfft_internal.cp37win_amd64.pyd" ComponentId="{3BF37CE7-15EE-4A93-9E3E-C8A43D63ACCD}" Directory_="fft_Dir" Attributes="256" KeyPath="_pocketfft_internal.cp37win_amd64.pyd" Type="0"/>
<ROW Component="_yaml.cp37win_amd64.pyd" ComponentId="{A1F8AD02-1CDE-44B9-B079-CF7978F69004}" Directory_="yaml_Dir" Attributes="256" KeyPath="_yaml.cp37win_amd64.pyd" Type="0"/>
<ROW Component="af.msg" ComponentId="{63D7F107-2534-447F-A787-56759BEFC58F}" Directory_="msgs_Dir" Attributes="0" KeyPath="af.msg" Type="0"/>
<ROW Component="alarm.mp3" ComponentId="{2C5B3A5A-823A-4C18-822F-2483A29CF86C}" Directory_="L2easy_Dir" Attributes="0" KeyPath="alarm.mp3" Type="0"/>
<ROW Component="altTheme.tcl" ComponentId="{77D616A8-B279-42DD-A513-33773387396A}" Directory_="ttk_Dir" Attributes="0" KeyPath="altTheme.tcl" Type="0"/>
<ROW Component="alto" ComponentId="{D636BB6F-FEF4-44A6-9776-EF3066C81CD4}" Directory_="configs_Dir" Attributes="0" KeyPath="alto" Type="0"/>
<ROW Component="ambiguous_words.1.html" ComponentId="{9897F6FB-8C75-4D88-9F6E-5E09531A3E12}" Directory_="TesseractOCR_Dir" Attributes="0" KeyPath="ambiguous_words.1.html" Type="0"/>
<ROW Component="ambiguous_words.exe" ComponentId="{5F75213F-B319-4A38-B955-CA615BE3D696}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="ambiguous_words.exe"/>
<ROW Component="apimswincoreconsolel110.dll" ComponentId="{9420E4C8-FE0C-45AA-B878-2C6BF2E53684}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincoreconsolel110.dll"/>
<ROW Component="apimswincoredatetimel110.dll" ComponentId="{F076A5EA-071A-471A-BDF6-1746E285DCF1}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincoredatetimel110.dll"/>
<ROW Component="apimswincoredebugl110.dll" ComponentId="{2A7FDD01-B840-41C5-9619-73007CB61C78}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincoredebugl110.dll"/>
<ROW Component="apimswincoreerrorhandlingl110.dll" ComponentId="{29E47DF6-4893-45F8-80BC-2233A89E8D7F}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincoreerrorhandlingl110.dll"/>
<ROW Component="apimswincorefilel110.dll" ComponentId="{84A8EF13-BCD9-4228-A841-656B0CD3FB20}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincorefilel110.dll"/>
<ROW Component="apimswincorefilel120.dll" ComponentId="{4C571626-043B-4AE6-A810-B9481884470C}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincorefilel120.dll"/>
<ROW Component="apimswincorefilel210.dll" ComponentId="{AABEB0B2-D648-4D55-97DE-00ED5DBC78A4}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincorefilel210.dll"/>
<ROW Component="apimswincorehandlel110.dll" ComponentId="{6D99465E-EAD0-4E2B-92A0-CC08FBDFAD2C}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincorehandlel110.dll"/>
<ROW Component="apimswincoreheapl110.dll" ComponentId="{1B1DEAC7-8263-41AA-A4D0-B311D3AF15E8}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincoreheapl110.dll"/>
<ROW Component="apimswincoreinterlockedl110.dll" ComponentId="{63E71306-3956-4D58-A3D1-23CD645DCF69}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincoreinterlockedl110.dll"/>
<ROW Component="apimswincorelibraryloaderl110.dll" ComponentId="{373398E3-43D2-4979-B4DA-1AAFB211AAC4}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincorelibraryloaderl110.dll"/>
<ROW Component="apimswincorelocalizationl120.dll" ComponentId="{37615FDE-A482-411C-BEDA-5E544A7153AA}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincorelocalizationl120.dll"/>
<ROW Component="apimswincorememoryl110.dll" ComponentId="{BA0CD30E-F40B-4623-B11F-DE5F56B9A14D}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincorememoryl110.dll"/>
<ROW Component="apimswincorenamedpipel110.dll" ComponentId="{A1629862-377C-4BC4-84BB-C358A81762AA}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincorenamedpipel110.dll"/>
<ROW Component="apimswincoreprocessenvironmentl110.dll" ComponentId="{29C8B10F-3241-4F36-B5AF-947D1D0FD1D8}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincoreprocessenvironmentl110.dll"/>
<ROW Component="apimswincoreprocessthreadsl110.dll" ComponentId="{30A92A71-B568-42DE-8AD6-221C33DDF507}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincoreprocessthreadsl110.dll"/>
<ROW Component="apimswincoreprocessthreadsl111.dll" ComponentId="{CBE4E26D-A378-4574-A96D-B7E7BA4DA913}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincoreprocessthreadsl111.dll"/>
<ROW Component="apimswincoreprofilel110.dll" ComponentId="{F971AFE9-2F04-42EC-A6A3-96B9ACC4AB02}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincoreprofilel110.dll"/>
<ROW Component="apimswincorertlsupportl110.dll" ComponentId="{B3E89063-6DE9-4E2C-B3D3-7EADEDE5F359}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincorertlsupportl110.dll"/>
<ROW Component="apimswincorestringl110.dll" ComponentId="{5E45F807-1C08-4E28-B087-ABA3D459A5CE}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincorestringl110.dll"/>
<ROW Component="apimswincoresynchl110.dll" ComponentId="{2A619A37-CE0C-4EBE-A12B-E142D2485CFF}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincoresynchl110.dll"/>
<ROW Component="apimswincoresynchl120.dll" ComponentId="{3E6BC4C0-553E-4650-9F31-FA6A99BCD916}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincoresynchl120.dll"/>
<ROW Component="apimswincoresysinfol110.dll" ComponentId="{DBCC4C7E-0CE7-4344-B0AF-986E37F3A4C2}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincoresysinfol110.dll"/>
<ROW Component="apimswincoretimezonel110.dll" ComponentId="{B2B9AE9B-9445-469C-9989-AEEC568E2611}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincoretimezonel110.dll"/>
<ROW Component="apimswincoreutill110.dll" ComponentId="{62096A0C-E71B-43CB-B915-1D39C22D688A}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincoreutill110.dll"/>
<ROW Component="apimswincrtconiol110.dll" ComponentId="{72E74806-079F-4EF9-B2CB-E0098C3D8049}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincrtconiol110.dll"/>
<ROW Component="apimswincrtconvertl110.dll" ComponentId="{12CEF55F-3B8D-4815-ABEC-1594C88D4E79}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincrtconvertl110.dll"/>
<ROW Component="apimswincrtenvironmentl110.dll" ComponentId="{A5F25A66-57C9-4827-8D25-7C513CFF6F99}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincrtenvironmentl110.dll"/>
<ROW Component="apimswincrtfilesysteml110.dll" ComponentId="{3ABDA544-1003-4FE9-AE31-D2C594DD2E51}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincrtfilesysteml110.dll"/>
<ROW Component="apimswincrtheapl110.dll" ComponentId="{C1A3AB75-280C-4EBE-9119-12F590A0D8F9}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincrtheapl110.dll"/>
<ROW Component="apimswincrtlocalel110.dll" ComponentId="{21FC225F-2298-4295-A00C-B80D1A7BBA3C}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincrtlocalel110.dll"/>
<ROW Component="apimswincrtmathl110.dll" ComponentId="{B40B64F0-E31A-4585-AFA1-BF9B434EC50C}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincrtmathl110.dll"/>
<ROW Component="apimswincrtprocessl110.dll" ComponentId="{39C480B8-3F5B-4C3F-AB09-CF35FA6F6BD7}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincrtprocessl110.dll"/>
<ROW Component="apimswincrtruntimel110.dll" ComponentId="{298DA231-DF75-4531-9038-FBB4E3C570E3}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincrtruntimel110.dll"/>
<ROW Component="apimswincrtstdiol110.dll" ComponentId="{8A35464A-0D5F-4EA9-88C7-DD2E8DAB8F1F}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincrtstdiol110.dll"/>
<ROW Component="apimswincrtstringl110.dll" ComponentId="{12DDAFDF-F3B9-4B64-97A8-33475B48D7F9}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincrtstringl110.dll"/>
<ROW Component="apimswincrttimel110.dll" ComponentId="{DE4E4141-DC53-41D7-BCC8-EBDEEEDD7791}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincrttimel110.dll"/>
<ROW Component="apimswincrtutilityl110.dll" ComponentId="{FEBC5B9C-CA86-442C-BD39-6785E38A1CED}" Directory_="L2easy_Dir" Attributes="256" KeyPath="apimswincrtutilityl110.dll"/>
<ROW Component="ascii.enc" ComponentId="{8275F6C7-059D-488B-9D63-0CA976AF0B56}" Directory_="encoding_Dir" Attributes="0" KeyPath="ascii.enc" Type="0"/>
<ROW Component="auto.tcl" ComponentId="{49387325-A4CA-440E-AD23-E90C06442269}" Directory_="tcl_Dir" Attributes="0" KeyPath="auto.tcl" Type="0"/>
<ROW Component="base.cp37win_amd64.pyd" ComponentId="{F4F428EF-6F17-484D-B401-B0234F8995EE}" Directory_="pygame_Dir" Attributes="256" KeyPath="base.cp37win_amd64.pyd" Type="0"/>
<ROW Component="batch" ComponentId="{3FD2E431-5C40-4837-A643-244B2346A3F3}" Directory_="tessconfigs_Dir" Attributes="0" KeyPath="batch" Type="0"/>
<ROW Component="bgerror.tcl" ComponentId="{181D74BC-6370-4C94-86B3-1ABE1D452FCB}" Directory_="tk_Dir" Attributes="0" KeyPath="bgerror.tcl" Type="0"/>
<ROW Component="bit_generator.cp37win_amd64.pyd" ComponentId="{8A6DF269-A820-4C7F-91A5-A44A9A2D462E}" Directory_="random_Dir" Attributes="256" KeyPath="bit_generator.cp37win_amd64.pyd" Type="0"/>
<ROW Component="classifier_tester.exe" ComponentId="{EE095AB1-761F-440E-A8E2-634B9E2254A7}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="classifier_tester.exe"/>
<ROW Component="cntraining.exe" ComponentId="{33E71515-3641-4396-801F-0A11B1043F1E}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="cntraining.exe"/>
<ROW Component="combine_lang_model.exe" ComponentId="{9DDDA111-7763-498A-B113-BAA346469B8A}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="combine_lang_model.exe"/>
<ROW Component="combine_tessdata.exe" ComponentId="{AC520C8C-956C-4D41-99D6-E6F9F672FE20}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="combine_tessdata.exe"/>
<ROW Component="cs.msg" ComponentId="{D9D99A75-E10E-43AF-AE87-C7CA8499E5CA}" Directory_="msgs_1_Dir" Attributes="0" KeyPath="cs.msg_1" Type="0"/>
<ROW Component="cv2.cp37win_amd64.pyd" ComponentId="{3928CFDD-98D6-41DE-B972-515C901D769A}" Directory_="cv2_Dir" Attributes="256" KeyPath="cv2.cp37win_amd64.pyd" Type="0"/>
<ROW Component="d3dcompiler_47.dll" ComponentId="{48BA7D91-546E-4A76-90CA-64AC7364FE46}" Directory_="L2easy_Dir" Attributes="256" KeyPath="d3dcompiler_47.dll"/>
<ROW Component="dawg2wordlist.exe" ComponentId="{EC22A8A7-98CE-4156-A8EE-38C2593E65E2}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="dawg2wordlist.exe"/>
<ROW Component="digits_comma.traineddata" ComponentId="{F75B3F33-C516-4B8E-959C-6B28F9B708FD}" Directory_="tessdata_Dir" Attributes="0" KeyPath="digits_comma.traineddata" Type="0"/>
<ROW Component="eng.traineddata" ComponentId="{2475DCD9-A4A3-4071-B92F-3D767A5508F4}" Directory_="tessdata_1_Dir" Attributes="0" KeyPath="eng.traineddata" Type="0"/>
<ROW Component="http.tcl" ComponentId="{57954933-5F6F-439B-B64D-47AE96A8073E}" Directory_="http1.0_Dir" Attributes="0" KeyPath="http.tcl" Type="0"/>
<ROW Component="http2.9.0.tm" ComponentId="{68015BD0-1615-4298-8880-B54021C9FB7E}" Directory_="__2_Dir" Attributes="0" KeyPath="http2.9.0.tm" Type="0"/>
<ROW Component="iconv.dll" ComponentId="{A00EE53B-73E1-4A04-9A2C-D30696FA4979}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="iconv.dll"/>
<ROW Component="icudt64.dll" ComponentId="{AB38BF0A-A32A-4C7C-A588-E36F80AFEA64}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="icudt64.dll"/>
<ROW Component="icuin64.dll" ComponentId="{9984CDD7-8921-40AB-9FA9-B4E1E154A818}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="icuin64.dll"/>
<ROW Component="icuuc64.dll" ComponentId="{7658B6B1-3C03-492F-BD78-9361EDB10C99}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="icuuc64.dll"/>
<ROW Component="lapack_lite.cp37win_amd64.pyd" ComponentId="{2A2B52EE-B615-4521-B102-3695D89D612E}" Directory_="linalg_Dir" Attributes="256" KeyPath="lapack_lite.cp37win_amd64.pyd" Type="0"/>
<ROW Component="libEGL.dll" ComponentId="{AF3DC68F-F547-418F-B13E-4A03F7063170}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libEGL.dll"/>
<ROW Component="libFLAC8.dll" ComponentId="{EFE942FA-570C-425F-A85A-B3144638DE9B}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libFLAC8.dll"/>
<ROW Component="libGLESv2.dll" ComponentId="{74197902-6AFB-48A3-96C5-4EBCFE488401}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libGLESv2.dll"/>
<ROW Component="libarchive13.dll" ComponentId="{307ADB89-7811-4F40-B289-FBEE8D06E31A}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libarchive13.dll"/>
<ROW Component="libbz21.dll" ComponentId="{FECF53AA-3876-46A3-AD34-82538E303657}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libbz21.dll"/>
<ROW Component="libcairo2.dll" ComponentId="{0B6A25B9-66FE-4E82-9F61-15496EE50868}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libcairo2.dll"/>
<ROW Component="libcrypto1_1.dll" ComponentId="{074BFF92-BFBB-4156-B777-AB6F54FA907E}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libcrypto1_1.dll"/>
<ROW Component="libcurl4.dll" ComponentId="{B83EF112-583D-44F3-BFD1-BA804219AC88}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libcurl4.dll"/>
<ROW Component="libeay32.dll" ComponentId="{5787FEEC-50D5-416C-A5E4-1FA97A34289D}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libeay32.dll"/>
<ROW Component="libexpat1.dll" ComponentId="{E4E99041-3A1E-455B-AA04-57408409A91F}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libexpat1.dll"/>
<ROW Component="libffi6.dll" ComponentId="{B4DF3C34-8BAB-4801-B7F4-D83CA6565DED}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libffi6.dll"/>
<ROW Component="libfontconfig1.dll" ComponentId="{2D98B059-7F74-4004-AC2A-735AD0760CF9}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libfontconfig1.dll"/>
<ROW Component="libfreetype6.dll" ComponentId="{1D5F4726-B1BA-4772-B789-9B7866F785D7}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libfreetype6.dll"/>
<ROW Component="libfreetype6.dll_1" ComponentId="{19BE9487-4FBF-46C0-A680-A62CCCC7FD18}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libfreetype6.dll_1"/>
<ROW Component="libgcc_s_seh1.dll" ComponentId="{C5C83A1D-94E6-471B-83B5-F50B7D323615}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libgcc_s_seh1.dll"/>
<ROW Component="libgif7.dll" ComponentId="{57E9397B-0A98-4C05-827F-F4C28AA92F0E}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libgif7.dll"/>
<ROW Component="libglib2.00.dll" ComponentId="{F2A9042B-8978-4854-9D10-F61D717868D7}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libglib2.00.dll"/>
<ROW Component="libgobject2.00.dll" ComponentId="{5EE66260-B727-44F9-861B-6143DC7CCA79}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libgobject2.00.dll"/>
<ROW Component="libgomp1.dll" ComponentId="{FBB5DC94-376A-4FEF-B131-9BE251190D78}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libgomp1.dll"/>
<ROW Component="libharfbuzz0.dll" ComponentId="{1E9F76FE-43CD-4196-AC82-A2EE98073471}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libharfbuzz0.dll"/>
<ROW Component="libintl8.dll" ComponentId="{E5C5BE8A-72C7-415B-8AEB-93C09C142A7C}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libintl8.dll"/>
<ROW Component="libjbig2.dll" ComponentId="{E534DCC5-F9F9-48FA-A114-B6C92F03BC5A}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libjbig2.dll"/>
<ROW Component="libjpeg8.dll" ComponentId="{1275BEDF-77A1-43BA-BC57-F602BD5C0838}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libjpeg8.dll"/>
<ROW Component="libjpeg9.dll" ComponentId="{3C257FF4-FEFC-4771-ACB5-85DF8A697DCC}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libjpeg9.dll"/>
<ROW Component="liblept5.dll" ComponentId="{46569B0A-D11C-48B8-87FF-1C94517328D2}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="liblept5.dll"/>
<ROW Component="liblz41.dll" ComponentId="{6584339F-AE5F-4968-A70E-2E883A1AC61E}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="liblz41.dll"/>
<ROW Component="liblzma5.dll" ComponentId="{23F91E52-58E8-4B95-9996-7BDCFA835C4A}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="liblzma5.dll"/>
<ROW Component="libmodplug1.dll" ComponentId="{F698909B-DED6-49A4-9C81-766A19DB5577}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libmodplug1.dll"/>
<ROW Component="libmpg1230.dll" ComponentId="{88B6C185-50C8-43FC-B4DC-A73E61F93A8A}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libmpg1230.dll"/>
<ROW Component="libnettle6.dll" ComponentId="{7F23C714-701A-4E75-B328-8F9164E26CB5}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libnettle6.dll"/>
<ROW Component="libnghttp214.dll" ComponentId="{E001CDC4-7989-4B1E-8632-4BD9B3600E84}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libnghttp214.dll"/>
<ROW Component="libogg0.dll" ComponentId="{ACDB4C96-E9B2-445E-9276-313AAB295FE1}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libogg0.dll"/>
<ROW Component="libopenblas.JPIJNSWNNAN3CE6LLI5FWSPHUT2VXMTH.gfortranwin_amd64.dll" ComponentId="{7E413713-D3C5-4E60-920D-BED92B1DD158}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libopenblas.JPIJNSWNNAN3CE6LLI5FWSPHUT2VXMTH.gfortranwin_amd64.dll"/>
<ROW Component="libopenjp2.dll" ComponentId="{F6D3202C-0AA0-46A9-A04F-6BEE55A76789}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libopenjp2.dll"/>
<ROW Component="libopus0.dll" ComponentId="{6D4EBE01-2296-4238-987A-AC835564E240}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libopus0.dll"/>
<ROW Component="libopusfile0.dll" ComponentId="{DC110AFD-60F8-4C76-BD48-F8F9CBE918AA}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libopusfile0.dll"/>
<ROW Component="libpango1.00.dll" ComponentId="{7B9DF278-50BA-4012-A078-D3A32182F7C9}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libpango1.00.dll"/>
<ROW Component="libpangocairo1.00.dll" ComponentId="{C8CC98DB-08F6-4356-B5E7-A1269B6ECC8E}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libpangocairo1.00.dll"/>
<ROW Component="libpangoft21.00.dll" ComponentId="{7A118A3D-323B-420A-ADC0-05207AAA7FF7}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libpangoft21.00.dll"/>
<ROW Component="libpangowin321.00.dll" ComponentId="{D61D10BA-3ED9-4189-8222-2D6FB4FE13EC}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libpangowin321.00.dll"/>
<ROW Component="libpcre1.dll" ComponentId="{A2E37026-053D-4B01-8C59-BD188BCB1511}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libpcre1.dll"/>
<ROW Component="libpixman10.dll" ComponentId="{BCCF103D-A7C8-47FC-9ACB-6B4F2D9EEC24}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libpixman10.dll"/>
<ROW Component="libpng1616.dll" ComponentId="{5A530941-5EDD-4D29-B99D-215C1795F6E1}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libpng1616.dll"/>
<ROW Component="libpng1616.dll_1" ComponentId="{27EE09BF-B049-4245-B572-2AC8BCE0E873}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libpng1616.dll_1"/>
<ROW Component="libssh21.dll" ComponentId="{0900CAE7-C5A6-4CDC-A3F8-0C512D9999B7}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libssh21.dll"/>
<ROW Component="libssl1_1.dll" ComponentId="{F0BA4681-7873-43DD-9410-7BF5306C2BC4}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libssl1_1.dll"/>
<ROW Component="libstdc6.dll" ComponentId="{34ACE217-6199-4762-BB70-D8E978DF722C}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libstdc6.dll"/>
<ROW Component="libtesseract5.dll" ComponentId="{8CCA4D38-3001-42EC-92C2-E1A4A3C1193C}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libtesseract5.dll"/>
<ROW Component="libtiff5.dll" ComponentId="{3FBB623A-B7F8-4E98-9E60-B60A4DD0DACB}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libtiff5.dll"/>
<ROW Component="libtiff5.dll_1" ComponentId="{6FB16BB4-EBCA-4A5F-B217-A1858D50FCC5}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libtiff5.dll_1"/>
<ROW Component="libvorbis0.dll" ComponentId="{9889F73F-C401-4E94-ADE1-FF4AD63585B7}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libvorbis0.dll"/>
<ROW Component="libvorbisfile3.dll" ComponentId="{EB745BE7-5390-493E-ADC4-ECFFE01BD4FF}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libvorbisfile3.dll"/>
<ROW Component="libwebp7.dll" ComponentId="{6A8FE79B-2E02-447B-9F63-8BDB2538F3DB}" Directory_="L2easy_Dir" Attributes="256" KeyPath="libwebp7.dll"/>
<ROW Component="libwebp7.dll_1" ComponentId="{B9123AAB-E271-4D8D-8337-2355CC6A326A}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libwebp7.dll_1"/>
<ROW Component="libwinpthread1.dll" ComponentId="{381638E7-D802-4390-8150-4D2A2147D458}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libwinpthread1.dll"/>
<ROW Component="libxml22.dll" ComponentId="{0CC74C28-1DF5-4546-B390-7745AC184A63}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="libxml22.dll"/>
<ROW Component="logo.eps" ComponentId="{434606F3-8314-4058-9FAF-9E637E942A12}" Directory_="images_Dir" Attributes="0" KeyPath="logo.eps" Type="0"/>
<ROW Component="lstmeval.exe" ComponentId="{6FB7BA1C-762D-4098-8A50-3BD7828235FD}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="lstmeval.exe"/>
<ROW Component="lstmtraining.exe" ComponentId="{2AA3B06D-EDB7-4CDC-BF8C-F6126ECB9FA2}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="lstmtraining.exe"/>
<ROW Component="merge_unicharsets.exe" ComponentId="{6DB71C8E-BFB6-4598-9BE0-6B282F56FD34}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="merge_unicharsets.exe"/>
<ROW Component="mftraining.exe" ComponentId="{C1319DC0-C14E-4716-A3D3-B3D2DB3DDB4B}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="mftraining.exe"/>
<ROW Component="msgcat1.6.1.tm" ComponentId="{168322B9-EDD4-45CD-9E76-6E66847503BC}" Directory_="__1_Dir" Attributes="0" KeyPath="msgcat1.6.1.tm" Type="0"/>
<ROW Component="opencv_videoio_ffmpeg451_64.dll" ComponentId="{3CFFAA96-6B86-457E-9307-B238D816FCEB}" Directory_="cv2_Dir" Attributes="256" KeyPath="opencv_videoio_ffmpeg451_64.dll"/>
<ROW Component="opengl32sw.dll" ComponentId="{22E80A41-2269-4655-BC68-0CB2AB6CE43F}" Directory_="L2easy_Dir" Attributes="256" KeyPath="opengl32sw.dll"/>
<ROW Component="optparse.tcl" ComponentId="{5F9D38ED-3AEB-4E95-8E46-4FA66FE52C44}" Directory_="opt0.4_Dir" Attributes="0" KeyPath="optparse.tcl" Type="0"/>
<ROW Component="platform1.0.14.tm" ComponentId="{940CF3A2-33E2-468B-975A-C308CEB7F844}" Directory_="__Dir" Attributes="0" KeyPath="platform1.0.14.tm" Type="0"/>
<ROW Component="portmidi.dll" ComponentId="{2D9759CB-5848-45D0-9DC9-8585FF540B53}" Directory_="L2easy_Dir" Attributes="256" KeyPath="portmidi.dll"/>
<ROW Component="pyconfig.h" ComponentId="{766CB4C4-F84E-4EFA-BB49-F164BA81016B}" Directory_="Include_Dir" Attributes="0" KeyPath="pyconfig.h" Type="0"/>
<ROW Component="python3.dll" ComponentId="{0C8B0A83-CEAC-4A88-B598-63C4B66A183F}" Directory_="L2easy_Dir" Attributes="256" KeyPath="python3.dll"/>
<ROW Component="python37.dll" ComponentId="{7466E800-345A-4CD9-B616-3977569E12E5}" Directory_="L2easy_Dir" Attributes="256" KeyPath="python37.dll"/>
<ROW Component="qgif.dll" ComponentId="{F49CBCE3-7E98-4269-B276-FC7275BFC495}" Directory_="imageformats_Dir" Attributes="256" KeyPath="qgif.dll"/>
<ROW Component="qicns.dll" ComponentId="{59BB70A0-E226-4F50-A9F9-8CDEC1E41094}" Directory_="imageformats_Dir" Attributes="256" KeyPath="qicns.dll"/>
<ROW Component="qico.dll" ComponentId="{7BF867B2-4E8B-4FDF-8039-0C558CF86C1F}" Directory_="imageformats_Dir" Attributes="256" KeyPath="qico.dll"/>
<ROW Component="qjpeg.dll" ComponentId="{64F93E8F-A617-47F8-B058-A3B30B59B025}" Directory_="imageformats_Dir" Attributes="256" KeyPath="qjpeg.dll"/>
<ROW Component="qminimal.dll" ComponentId="{9F41BC45-66C3-4E36-9FD6-91D07EDD02FA}" Directory_="platforms_Dir" Attributes="256" KeyPath="qminimal.dll"/>
<ROW Component="qoffscreen.dll" ComponentId="{B1D27B1D-FFF2-459D-A80A-F8F7BA3D0B49}" Directory_="platforms_Dir" Attributes="256" KeyPath="qoffscreen.dll"/>
<ROW Component="qsvg.dll" ComponentId="{4686C8E5-DF61-4AF8-8268-5ECE9202A4C0}" Directory_="imageformats_Dir" Attributes="256" KeyPath="qsvg.dll"/>
<ROW Component="qsvgicon.dll" ComponentId="{6339AEEB-768D-4061-80AD-260FABC7CE40}" Directory_="iconengines_Dir" Attributes="256" KeyPath="qsvgicon.dll"/>
<ROW Component="qtbase_ar.qm" ComponentId="{25678142-E80F-4CDF-A5BB-18CD4F55B123}" Directory_="translations_Dir" Attributes="0" KeyPath="qtbase_ar.qm" Type="0"/>
<ROW Component="qtga.dll" ComponentId="{E51B0EFA-101F-4E90-A256-7BC034F2F051}" Directory_="imageformats_Dir" Attributes="256" KeyPath="qtga.dll"/>
<ROW Component="qtiff.dll" ComponentId="{4B1D400D-297B-46F7-B4FD-C81F6672EE97}" Directory_="imageformats_Dir" Attributes="256" KeyPath="qtiff.dll"/>
<ROW Component="qwbmp.dll" ComponentId="{AF41C999-AA62-4BF3-A7CB-65CAE5ABF2E4}" Directory_="imageformats_Dir" Attributes="256" KeyPath="qwbmp.dll"/>
<ROW Component="qwebgl.dll" ComponentId="{D2D30C08-090F-464F-B29A-CE5E972E3E52}" Directory_="platforms_Dir" Attributes="256" KeyPath="qwebgl.dll"/>
<ROW Component="qwebp.dll" ComponentId="{2EA20FAB-ECAD-4665-8D3E-A928874B1243}" Directory_="imageformats_Dir" Attributes="256" KeyPath="qwebp.dll"/>
<ROW Component="qwindows.dll" ComponentId="{95831787-F725-4DDA-833C-67B10FE504B5}" Directory_="platforms_Dir" Attributes="256" KeyPath="qwindows.dll"/>
<ROW Component="qwindowsvistastyle.dll" ComponentId="{9746629B-0F9E-4239-B9AB-199A825C1851}" Directory_="styles_Dir" Attributes="256" KeyPath="qwindowsvistastyle.dll"/>
<ROW Component="qxdgdesktopportal.dll" ComponentId="{7BCBB527-3AD7-4C5C-BF19-F2CA23C62A3B}" Directory_="platformthemes_Dir" Attributes="256" KeyPath="qxdgdesktopportal.dll"/>
<ROW Component="set_unicharset_properties.exe" ComponentId="{E90E734F-7A05-4F40-91A7-698648A75634}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="set_unicharset_properties.exe"/>
<ROW Component="shapeclustering.exe" ComponentId="{5EAA2F24-2C55-4BC4-9078-515979F5107F}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="shapeclustering.exe"/>
<ROW Component="shell1.1.4.tm" ComponentId="{2EC578D1-E436-4B1C-91D5-CA9A32A810DF}" Directory_="platform_Dir" Attributes="0" KeyPath="shell1.1.4.tm" Type="0"/>
<ROW Component="ssleay32.dll" ComponentId="{25FC981C-EB8B-4AB4-8269-65C43C70F579}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="ssleay32.dll"/>
<ROW Component="tcl86t.dll" ComponentId="{E6A632B3-138C-493C-B1E6-8747EFEE0F7B}" Directory_="L2easy_Dir" Attributes="256" KeyPath="tcl86t.dll"/>
<ROW Component="tesseract.exe" ComponentId="{68BD5A93-0C60-40E0-9EBD-3A0AF62B2855}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="tesseract.exe"/>
<ROW Component="tesseractuninstall.exe" ComponentId="{EFE46969-28E9-4D64-AE41-FEC90F015DCB}" Directory_="TesseractOCR_Dir" Attributes="0" KeyPath="tesseractuninstall.exe"/>
<ROW Component="text2image.exe" ComponentId="{CBB0B897-0E28-4386-8C5F-D799D4F479C5}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="text2image.exe"/>
<ROW Component="tk86t.dll" ComponentId="{40B52608-43E1-4DB4-AA01-0B65D49E6D3D}" Directory_="L2easy_Dir" Attributes="256" KeyPath="tk86t.dll"/>
<ROW Component="ucrtbase.dll" ComponentId="{C8300B30-1DA1-423E-8B76-DB208BBCA7A2}" Directory_="L2easy_Dir" Attributes="256" KeyPath="ucrtbase.dll"/>
<ROW Component="unicharset_extractor.exe" ComponentId="{53ACC5DF-0865-4449-8628-4AF1152C5B48}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="unicharset_extractor.exe"/>
<ROW Component="winpath.exe" ComponentId="{E5929475-1F49-40D3-A338-E136618D7470}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="winpath.exe"/>
<ROW Component="wordlist2dawg.exe" ComponentId="{13109D03-0BF0-4BDF-8ACE-D4FA6559170A}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="wordlist2dawg.exe"/>
<ROW Component="zlib1.dll" ComponentId="{A1F195AF-97D8-4BE9-AECF-E5D66E908B56}" Directory_="TesseractOCR_Dir" Attributes="256" KeyPath="zlib1.dll"/>
<ROW Component="zlib1.dll_1" ComponentId="{BE81713F-324A-42F8-9DD1-CB19C3BC5542}" Directory_="L2easy_Dir" Attributes="256" KeyPath="zlib1.dll_1"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.MsiFeatsComponent">
<ROW Feature="MainFeature" Title="MainFeature" Description="Description" Display="1" Level="1" Directory_="APPDIR" Attributes="0"/>
<ATTRIBUTE name="CurrentFeature" value="MainFeature"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.MsiFilesComponent">
<ROW File="alarm.mp3" Component_="alarm.mp3" FileName="alarm.mp3" Attributes="0" SourcePath="L2-easy\alarm.mp3" SelfReg="false"/>
<ROW File="apimswincoreconsolel110.dll" Component_="apimswincoreconsolel110.dll" FileName="API-MS~1.DLL|api-ms-win-core-console-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-console-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoredatetimel110.dll" Component_="apimswincoredatetimel110.dll" FileName="API-MS~2.DLL|api-ms-win-core-datetime-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-datetime-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoredebugl110.dll" Component_="apimswincoredebugl110.dll" FileName="API-MS~3.DLL|api-ms-win-core-debug-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-debug-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreerrorhandlingl110.dll" Component_="apimswincoreerrorhandlingl110.dll" FileName="API-MS~4.DLL|api-ms-win-core-errorhandling-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-errorhandling-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorefilel110.dll" Component_="apimswincorefilel110.dll" FileName="API-MS~5.DLL|api-ms-win-core-file-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-file-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorefilel120.dll" Component_="apimswincorefilel120.dll" FileName="API-MS~6.DLL|api-ms-win-core-file-l1-2-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-file-l1-2-0.dll" SelfReg="false"/>
<ROW File="apimswincorefilel210.dll" Component_="apimswincorefilel210.dll" FileName="API-MS~7.DLL|api-ms-win-core-file-l2-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-file-l2-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorehandlel110.dll" Component_="apimswincorehandlel110.dll" FileName="API-MS~8.DLL|api-ms-win-core-handle-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-handle-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreheapl110.dll" Component_="apimswincoreheapl110.dll" FileName="API-MS~9.DLL|api-ms-win-core-heap-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-heap-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreinterlockedl110.dll" Component_="apimswincoreinterlockedl110.dll" FileName="API-M~10.DLL|api-ms-win-core-interlocked-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-interlocked-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorelibraryloaderl110.dll" Component_="apimswincorelibraryloaderl110.dll" FileName="API-M~11.DLL|api-ms-win-core-libraryloader-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-libraryloader-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorelocalizationl120.dll" Component_="apimswincorelocalizationl120.dll" FileName="API-M~12.DLL|api-ms-win-core-localization-l1-2-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-localization-l1-2-0.dll" SelfReg="false"/>
<ROW File="apimswincorememoryl110.dll" Component_="apimswincorememoryl110.dll" FileName="API-M~13.DLL|api-ms-win-core-memory-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-memory-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorenamedpipel110.dll" Component_="apimswincorenamedpipel110.dll" FileName="API-M~14.DLL|api-ms-win-core-namedpipe-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-namedpipe-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreprocessenvironmentl110.dll" Component_="apimswincoreprocessenvironmentl110.dll" FileName="API-M~15.DLL|api-ms-win-core-processenvironment-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-processenvironment-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreprocessthreadsl110.dll" Component_="apimswincoreprocessthreadsl110.dll" FileName="API-M~16.DLL|api-ms-win-core-processthreads-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-processthreads-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreprocessthreadsl111.dll" Component_="apimswincoreprocessthreadsl111.dll" FileName="API-M~17.DLL|api-ms-win-core-processthreads-l1-1-1.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-processthreads-l1-1-1.dll" SelfReg="false"/>
<ROW File="apimswincoreprofilel110.dll" Component_="apimswincoreprofilel110.dll" FileName="API-M~18.DLL|api-ms-win-core-profile-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-profile-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorertlsupportl110.dll" Component_="apimswincorertlsupportl110.dll" FileName="API-M~19.DLL|api-ms-win-core-rtlsupport-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-rtlsupport-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorestringl110.dll" Component_="apimswincorestringl110.dll" FileName="API-M~20.DLL|api-ms-win-core-string-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-string-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoresynchl110.dll" Component_="apimswincoresynchl110.dll" FileName="API-M~21.DLL|api-ms-win-core-synch-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-synch-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoresynchl120.dll" Component_="apimswincoresynchl120.dll" FileName="API-M~22.DLL|api-ms-win-core-synch-l1-2-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-synch-l1-2-0.dll" SelfReg="false"/>
<ROW File="apimswincoresysinfol110.dll" Component_="apimswincoresysinfol110.dll" FileName="API-M~23.DLL|api-ms-win-core-sysinfo-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-sysinfo-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoretimezonel110.dll" Component_="apimswincoretimezonel110.dll" FileName="API-M~24.DLL|api-ms-win-core-timezone-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-timezone-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreutill110.dll" Component_="apimswincoreutill110.dll" FileName="API-M~25.DLL|api-ms-win-core-util-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-core-util-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtconiol110.dll" Component_="apimswincrtconiol110.dll" FileName="API-M~26.DLL|api-ms-win-crt-conio-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-crt-conio-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtconvertl110.dll" Component_="apimswincrtconvertl110.dll" FileName="API-M~27.DLL|api-ms-win-crt-convert-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-crt-convert-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtenvironmentl110.dll" Component_="apimswincrtenvironmentl110.dll" FileName="API-M~28.DLL|api-ms-win-crt-environment-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-crt-environment-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtfilesysteml110.dll" Component_="apimswincrtfilesysteml110.dll" FileName="API-M~29.DLL|api-ms-win-crt-filesystem-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-crt-filesystem-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtheapl110.dll" Component_="apimswincrtheapl110.dll" FileName="API-M~30.DLL|api-ms-win-crt-heap-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-crt-heap-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtlocalel110.dll" Component_="apimswincrtlocalel110.dll" FileName="API-M~31.DLL|api-ms-win-crt-locale-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-crt-locale-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtmathl110.dll" Component_="apimswincrtmathl110.dll" FileName="API-M~32.DLL|api-ms-win-crt-math-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-crt-math-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtprocessl110.dll" Component_="apimswincrtprocessl110.dll" FileName="API-M~33.DLL|api-ms-win-crt-process-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-crt-process-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtruntimel110.dll" Component_="apimswincrtruntimel110.dll" FileName="API-M~34.DLL|api-ms-win-crt-runtime-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-crt-runtime-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtstdiol110.dll" Component_="apimswincrtstdiol110.dll" FileName="API-M~35.DLL|api-ms-win-crt-stdio-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-crt-stdio-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtstringl110.dll" Component_="apimswincrtstringl110.dll" FileName="API-M~36.DLL|api-ms-win-crt-string-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-crt-string-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrttimel110.dll" Component_="apimswincrttimel110.dll" FileName="API-M~37.DLL|api-ms-win-crt-time-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-crt-time-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtutilityl110.dll" Component_="apimswincrtutilityl110.dll" FileName="API-M~38.DLL|api-ms-win-crt-utility-l1-1-0.dll" Attributes="0" SourcePath="L2-easy\api-ms-win-crt-utility-l1-1-0.dll" SelfReg="false"/>
<ROW File="base_library.zip" Component_="alarm.mp3" FileName="BASE_L~1.ZIP|base_library.zip" Attributes="0" SourcePath="L2-easy\base_library.zip" SelfReg="false"/>
<ROW File="config.yaml" Component_="alarm.mp3" FileName="CONFIG~1.YAM|config.yaml" Attributes="0" SourcePath="L2-easy\config.yaml" SelfReg="false"/>
<ROW File="cv2.cp37win_amd64.pyd" Component_="cv2.cp37win_amd64.pyd" FileName="CV2CP3~1.PYD|cv2.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\cv2\cv2.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="opencv_videoio_ffmpeg451_64.dll" Component_="opencv_videoio_ffmpeg451_64.dll" FileName="OPENCV~1.DLL|opencv_videoio_ffmpeg451_64.dll" Attributes="0" SourcePath="L2-easy\cv2\opencv_videoio_ffmpeg451_64.dll" SelfReg="false"/>
<ROW File="d3dcompiler_47.dll" Component_="d3dcompiler_47.dll" FileName="D3DCOM~1.DLL|d3dcompiler_47.dll" Attributes="0" SourcePath="L2-easy\d3dcompiler_47.dll" SelfReg="false"/>
<ROW File="pyconfig.h" Component_="pyconfig.h" FileName="pyconfig.h" Attributes="0" SourcePath="L2-easy\Include\pyconfig.h" SelfReg="false"/>
<ROW File="L2easy.7z" Component_="alarm.mp3" FileName="L2-easy.7z" Attributes="0" SourcePath="L2-easy\L2-easy.7z" SelfReg="false"/>
<ROW File="L2easy.exe" Component_="L2easy.exe" FileName="L2-easy.exe" Attributes="0" SourcePath="L2-easy\L2-easy.exe" SelfReg="false" DigSign="true"/>
<ROW File="L2easy.exe.manifest" Component_="alarm.mp3" FileName="L2-EAS~1.MAN|L2-easy.exe.manifest" Attributes="0" SourcePath="L2-easy\L2-easy.exe.manifest" SelfReg="false"/>
<ROW File="L2easy.ico" Component_="alarm.mp3" FileName="L2-easy.ico" Attributes="1" SourcePath="L2-easy\L2-easy.ico" SelfReg="false"/>
<ROW File="LexActivator.dll" Component_="LexActivator.dll" FileName="LEXACT~1.DLL|LexActivator.dll" Attributes="0" SourcePath="L2-easy\LexActivator.dll" SelfReg="false"/>
<ROW File="libcrypto1_1.dll" Component_="libcrypto1_1.dll" FileName="LIBCRY~1.DLL|libcrypto-1_1.dll" Attributes="0" SourcePath="L2-easy\libcrypto-1_1.dll" SelfReg="false"/>
<ROW File="libEGL.dll" Component_="libEGL.dll" FileName="libEGL.dll" Attributes="0" SourcePath="L2-easy\libEGL.dll" SelfReg="false"/>
<ROW File="libFLAC8.dll" Component_="libFLAC8.dll" FileName="LIBFLA~1.DLL|libFLAC-8.dll" Attributes="0" SourcePath="L2-easy\libFLAC-8.dll" SelfReg="false"/>
<ROW File="libfreetype6.dll" Component_="libfreetype6.dll" FileName="LIBFRE~1.DLL|libfreetype-6.dll" Attributes="0" SourcePath="L2-easy\libfreetype-6.dll" SelfReg="false"/>
<ROW File="libGLESv2.dll" Component_="libGLESv2.dll" FileName="LIBGLE~1.DLL|libGLESv2.dll" Attributes="0" SourcePath="L2-easy\libGLESv2.dll" SelfReg="false"/>
<ROW File="libjpeg9.dll" Component_="libjpeg9.dll" FileName="LIBJPE~1.DLL|libjpeg-9.dll" Attributes="0" SourcePath="L2-easy\libjpeg-9.dll" SelfReg="false"/>
<ROW File="libmodplug1.dll" Component_="libmodplug1.dll" FileName="LIBMOD~1.DLL|libmodplug-1.dll" Attributes="0" SourcePath="L2-easy\libmodplug-1.dll" SelfReg="false"/>
<ROW File="libmpg1230.dll" Component_="libmpg1230.dll" FileName="LIBMPG~1.DLL|libmpg123-0.dll" Attributes="0" SourcePath="L2-easy\libmpg123-0.dll" SelfReg="false"/>
<ROW File="libogg0.dll" Component_="libogg0.dll" FileName="libogg-0.dll" Attributes="0" SourcePath="L2-easy\libogg-0.dll" SelfReg="false"/>
<ROW File="libopenblas.JPIJNSWNNAN3CE6LLI5FWSPHUT2VXMTH.gfortranwin_amd64.dll" Component_="libopenblas.JPIJNSWNNAN3CE6LLI5FWSPHUT2VXMTH.gfortranwin_amd64.dll" FileName="LIBOPE~1.DLL|libopenblas.JPIJNSWNNAN3CE6LLI5FWSPHUT2VXMTH.gfortran-win_amd64.dll" Attributes="0" SourcePath="L2-easy\libopenblas.JPIJNSWNNAN3CE6LLI5FWSPHUT2VXMTH.gfortran-win_amd64.dll" SelfReg="false"/>
<ROW File="libopus0.dll" Component_="libopus0.dll" FileName="LIBOPU~1.DLL|libopus-0.dll" Attributes="0" SourcePath="L2-easy\libopus-0.dll" SelfReg="false"/>
<ROW File="libopusfile0.dll" Component_="libopusfile0.dll" FileName="LIBOPU~2.DLL|libopusfile-0.dll" Attributes="0" SourcePath="L2-easy\libopusfile-0.dll" SelfReg="false"/>
<ROW File="libpng1616.dll" Component_="libpng1616.dll" FileName="LIBPNG~1.DLL|libpng16-16.dll" Attributes="0" SourcePath="L2-easy\libpng16-16.dll" SelfReg="false"/>
<ROW File="libssl1_1.dll" Component_="libssl1_1.dll" FileName="LIBSSL~1.DLL|libssl-1_1.dll" Attributes="0" SourcePath="L2-easy\libssl-1_1.dll" SelfReg="false"/>
<ROW File="libtiff5.dll" Component_="libtiff5.dll" FileName="LIBTIF~1.DLL|libtiff-5.dll" Attributes="0" SourcePath="L2-easy\libtiff-5.dll" SelfReg="false"/>
<ROW File="libvorbis0.dll" Component_="libvorbis0.dll" FileName="LIBVOR~1.DLL|libvorbis-0.dll" Attributes="0" SourcePath="L2-easy\libvorbis-0.dll" SelfReg="false"/>
<ROW File="libvorbisfile3.dll" Component_="libvorbisfile3.dll" FileName="LIBVOR~2.DLL|libvorbisfile-3.dll" Attributes="0" SourcePath="L2-easy\libvorbisfile-3.dll" SelfReg="false"/>
<ROW File="libwebp7.dll" Component_="libwebp7.dll" FileName="LIBWEB~1.DLL|libwebp-7.dll" Attributes="0" SourcePath="L2-easy\libwebp-7.dll" SelfReg="false"/>
<ROW File="MSVCP140.dll" Component_="MSVCP140.dll" FileName="MSVCP140.dll" Attributes="0" SourcePath="L2-easy\MSVCP140.dll" SelfReg="false"/>
<ROW File="MSVCP140_1.dll" Component_="MSVCP140_1.dll" FileName="MSVCP1~1.DLL|MSVCP140_1.dll" Attributes="0" SourcePath="L2-easy\MSVCP140_1.dll" SelfReg="false"/>
<ROW File="_multiarray_tests.cp37win_amd64.pyd" Component_="_multiarray_tests.cp37win_amd64.pyd" FileName="_MULTI~1.PYD|_multiarray_tests.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\numpy\core\_multiarray_tests.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="_multiarray_umath.cp37win_amd64.pyd" Component_="_multiarray_tests.cp37win_amd64.pyd" FileName="_MULTI~2.PYD|_multiarray_umath.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\numpy\core\_multiarray_umath.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="_pocketfft_internal.cp37win_amd64.pyd" Component_="_pocketfft_internal.cp37win_amd64.pyd" FileName="_POCKE~1.PYD|_pocketfft_internal.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\numpy\fft\_pocketfft_internal.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="lapack_lite.cp37win_amd64.pyd" Component_="lapack_lite.cp37win_amd64.pyd" FileName="LAPACK~1.PYD|lapack_lite.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\numpy\linalg\lapack_lite.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="_umath_linalg.cp37win_amd64.pyd" Component_="lapack_lite.cp37win_amd64.pyd" FileName="_UMATH~1.PYD|_umath_linalg.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\numpy\linalg\_umath_linalg.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="bit_generator.cp37win_amd64.pyd" Component_="bit_generator.cp37win_amd64.pyd" FileName="BIT_GE~1.PYD|bit_generator.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\numpy\random\bit_generator.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="mtrand.cp37win_amd64.pyd" Component_="bit_generator.cp37win_amd64.pyd" FileName="MTRAND~1.PYD|mtrand.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\numpy\random\mtrand.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="_bounded_integers.cp37win_amd64.pyd" Component_="bit_generator.cp37win_amd64.pyd" FileName="_BOUND~1.PYD|_bounded_integers.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\numpy\random\_bounded_integers.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="_common.cp37win_amd64.pyd" Component_="bit_generator.cp37win_amd64.pyd" FileName="_COMMO~1.PYD|_common.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\numpy\random\_common.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="_generator.cp37win_amd64.pyd" Component_="bit_generator.cp37win_amd64.pyd" FileName="_GENER~1.PYD|_generator.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\numpy\random\_generator.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="_mt19937.cp37win_amd64.pyd" Component_="bit_generator.cp37win_amd64.pyd" FileName="_MT199~1.PYD|_mt19937.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\numpy\random\_mt19937.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="_pcg64.cp37win_amd64.pyd" Component_="bit_generator.cp37win_amd64.pyd" FileName="_PCG64~1.PYD|_pcg64.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\numpy\random\_pcg64.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="_philox.cp37win_amd64.pyd" Component_="bit_generator.cp37win_amd64.pyd" FileName="_PHILO~1.PYD|_philox.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\numpy\random\_philox.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="_sfc64.cp37win_amd64.pyd" Component_="bit_generator.cp37win_amd64.pyd" FileName="_SFC64~1.PYD|_sfc64.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\numpy\random\_sfc64.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="opengl32sw.dll" Component_="opengl32sw.dll" FileName="OPENGL~1.DLL|opengl32sw.dll" Attributes="0" SourcePath="L2-easy\opengl32sw.dll" SelfReg="false"/>
<ROW File="_imaging.cp37win_amd64.pyd" Component_="_imaging.cp37win_amd64.pyd" FileName="_IMAGI~1.PYD|_imaging.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\PIL\_imaging.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="_imagingtk.cp37win_amd64.pyd" Component_="_imaging.cp37win_amd64.pyd" FileName="_IMAGI~2.PYD|_imagingtk.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\PIL\_imagingtk.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="_webp.cp37win_amd64.pyd" Component_="_imaging.cp37win_amd64.pyd" FileName="_WEBPC~1.PYD|_webp.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\PIL\_webp.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="portmidi.dll" Component_="portmidi.dll" FileName="portmidi.dll" Attributes="0" SourcePath="L2-easy\portmidi.dll" SelfReg="false"/>
<ROW File="product_v5b67c9c840944f55b3d3fd1227899e1a.dat" Component_="alarm.mp3" FileName="PRODUC~1.DAT|product_v5b67c9c8-4094-4f55-b3d3-fd1227899e1a.dat" Attributes="0" SourcePath="L2-easy\product_v5b67c9c8-4094-4f55-b3d3-fd1227899e1a.dat" SelfReg="false"/>
<ROW File="pyexpat.pyd" Component_="alarm.mp3" FileName="pyexpat.pyd" Attributes="0" SourcePath="L2-easy\pyexpat.pyd" SelfReg="false"/>
<ROW File="base.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="BASECP~1.PYD|base.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\base.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="bufferproxy.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="BUFFER~1.PYD|bufferproxy.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\bufferproxy.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="color.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="COLORC~1.PYD|color.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\color.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="constants.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="CONSTA~1.PYD|constants.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\constants.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="display.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="DISPLA~1.PYD|display.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\display.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="draw.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="DRAWCP~1.PYD|draw.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\draw.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="event.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="EVENTC~1.PYD|event.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\event.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="fastevent.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="FASTEV~1.PYD|fastevent.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\fastevent.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="font.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="FONTCP~1.PYD|font.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\font.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="freesansbold.ttf" Component_="base.cp37win_amd64.pyd" FileName="FREESA~1.TTF|freesansbold.ttf" Attributes="0" SourcePath="L2-easy\pygame\freesansbold.ttf" SelfReg="false"/>
<ROW File="image.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="IMAGEC~1.PYD|image.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\image.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="imageext.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="IMAGEE~1.PYD|imageext.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\imageext.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="joystick.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="JOYSTI~1.PYD|joystick.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\joystick.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="key.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="KEYCP3~1.PYD|key.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\key.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="mask.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="MASKCP~1.PYD|mask.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\mask.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="math.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="MATHCP~1.PYD|math.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\math.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="mixer.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="MIXERC~1.PYD|mixer.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\mixer.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="mixer_music.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="MIXER_~1.PYD|mixer_music.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\mixer_music.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="mouse.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="MOUSEC~1.PYD|mouse.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\mouse.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="pixelarray.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="PIXELA~1.PYD|pixelarray.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\pixelarray.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="pixelcopy.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="PIXELC~1.PYD|pixelcopy.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\pixelcopy.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="pygame_icon.bmp" Component_="base.cp37win_amd64.pyd" FileName="PYGAME~1.BMP|pygame_icon.bmp" Attributes="0" SourcePath="L2-easy\pygame\pygame_icon.bmp" SelfReg="false"/>
<ROW File="rect.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="RECTCP~1.PYD|rect.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\rect.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="rwobject.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="RWOBJE~1.PYD|rwobject.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\rwobject.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="scrap.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="SCRAPC~1.PYD|scrap.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\scrap.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="surface.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="SURFAC~1.PYD|surface.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\surface.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="surflock.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="SURFLO~1.PYD|surflock.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\surflock.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="time.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="TIMECP~1.PYD|time.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\time.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="transform.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="TRANSF~1.PYD|transform.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\transform.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="_freetype.cp37win_amd64.pyd" Component_="base.cp37win_amd64.pyd" FileName="_FREET~1.PYD|_freetype.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\pygame\_freetype.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="qsvgicon.dll" Component_="qsvgicon.dll" FileName="qsvgicon.dll" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\plugins\iconengines\qsvgicon.dll" SelfReg="false"/>
<ROW File="qgif.dll" Component_="qgif.dll" FileName="qgif.dll" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\plugins\imageformats\qgif.dll" SelfReg="false"/>
<ROW File="qicns.dll" Component_="qicns.dll" FileName="qicns.dll" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\plugins\imageformats\qicns.dll" SelfReg="false"/>
<ROW File="qico.dll" Component_="qico.dll" FileName="qico.dll" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\plugins\imageformats\qico.dll" SelfReg="false"/>
<ROW File="qjpeg.dll" Component_="qjpeg.dll" FileName="qjpeg.dll" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\plugins\imageformats\qjpeg.dll" SelfReg="false"/>
<ROW File="qsvg.dll" Component_="qsvg.dll" FileName="qsvg.dll" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\plugins\imageformats\qsvg.dll" SelfReg="false"/>
<ROW File="qtga.dll" Component_="qtga.dll" FileName="qtga.dll" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\plugins\imageformats\qtga.dll" SelfReg="false"/>
<ROW File="qtiff.dll" Component_="qtiff.dll" FileName="qtiff.dll" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\plugins\imageformats\qtiff.dll" SelfReg="false"/>
<ROW File="qwbmp.dll" Component_="qwbmp.dll" FileName="qwbmp.dll" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\plugins\imageformats\qwbmp.dll" SelfReg="false"/>
<ROW File="qwebp.dll" Component_="qwebp.dll" FileName="qwebp.dll" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\plugins\imageformats\qwebp.dll" SelfReg="false"/>
<ROW File="qminimal.dll" Component_="qminimal.dll" FileName="qminimal.dll" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\plugins\platforms\qminimal.dll" SelfReg="false"/>
<ROW File="qoffscreen.dll" Component_="qoffscreen.dll" FileName="QOFFSC~1.DLL|qoffscreen.dll" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\plugins\platforms\qoffscreen.dll" SelfReg="false"/>
<ROW File="qwebgl.dll" Component_="qwebgl.dll" FileName="qwebgl.dll" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\plugins\platforms\qwebgl.dll" SelfReg="false"/>
<ROW File="qwindows.dll" Component_="qwindows.dll" FileName="qwindows.dll" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\plugins\platforms\qwindows.dll" SelfReg="false"/>
<ROW File="qxdgdesktopportal.dll" Component_="qxdgdesktopportal.dll" FileName="QXDGDE~1.DLL|qxdgdesktopportal.dll" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\plugins\platformthemes\qxdgdesktopportal.dll" SelfReg="false"/>
<ROW File="qwindowsvistastyle.dll" Component_="qwindowsvistastyle.dll" FileName="QWINDO~1.DLL|qwindowsvistastyle.dll" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\plugins\styles\qwindowsvistastyle.dll" SelfReg="false"/>
<ROW File="qtbase_ar.qm" Component_="qtbase_ar.qm" FileName="QTBASE~1.QM|qtbase_ar.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_ar.qm" SelfReg="false"/>
<ROW File="qtbase_bg.qm" Component_="qtbase_ar.qm" FileName="QTBASE~2.QM|qtbase_bg.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_bg.qm" SelfReg="false"/>
<ROW File="qtbase_ca.qm" Component_="qtbase_ar.qm" FileName="QTBASE~3.QM|qtbase_ca.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_ca.qm" SelfReg="false"/>
<ROW File="qtbase_cs.qm" Component_="qtbase_ar.qm" FileName="QTBASE~4.QM|qtbase_cs.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_cs.qm" SelfReg="false"/>
<ROW File="qtbase_da.qm" Component_="qtbase_ar.qm" FileName="QTBASE~5.QM|qtbase_da.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_da.qm" SelfReg="false"/>
<ROW File="qtbase_de.qm" Component_="qtbase_ar.qm" FileName="QTBASE~6.QM|qtbase_de.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_de.qm" SelfReg="false"/>
<ROW File="qtbase_en.qm" Component_="qtbase_ar.qm" FileName="QTBASE~7.QM|qtbase_en.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_en.qm" SelfReg="false"/>
<ROW File="qtbase_es.qm" Component_="qtbase_ar.qm" FileName="QTBASE~8.QM|qtbase_es.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_es.qm" SelfReg="false"/>
<ROW File="qtbase_fi.qm" Component_="qtbase_ar.qm" FileName="QTBASE~9.QM|qtbase_fi.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_fi.qm" SelfReg="false"/>
<ROW File="qtbase_fr.qm" Component_="qtbase_ar.qm" FileName="QTBAS~10.QM|qtbase_fr.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_fr.qm" SelfReg="false"/>
<ROW File="qtbase_gd.qm" Component_="qtbase_ar.qm" FileName="QTBAS~11.QM|qtbase_gd.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_gd.qm" SelfReg="false"/>
<ROW File="qtbase_he.qm" Component_="qtbase_ar.qm" FileName="QTBAS~12.QM|qtbase_he.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_he.qm" SelfReg="false"/>
<ROW File="qtbase_hu.qm" Component_="qtbase_ar.qm" FileName="QTBAS~13.QM|qtbase_hu.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_hu.qm" SelfReg="false"/>
<ROW File="qtbase_it.qm" Component_="qtbase_ar.qm" FileName="QTBAS~14.QM|qtbase_it.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_it.qm" SelfReg="false"/>
<ROW File="qtbase_ja.qm" Component_="qtbase_ar.qm" FileName="QTBAS~15.QM|qtbase_ja.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_ja.qm" SelfReg="false"/>
<ROW File="qtbase_ko.qm" Component_="qtbase_ar.qm" FileName="QTBAS~16.QM|qtbase_ko.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_ko.qm" SelfReg="false"/>
<ROW File="qtbase_lv.qm" Component_="qtbase_ar.qm" FileName="QTBAS~17.QM|qtbase_lv.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_lv.qm" SelfReg="false"/>
<ROW File="qtbase_pl.qm" Component_="qtbase_ar.qm" FileName="QTBAS~18.QM|qtbase_pl.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_pl.qm" SelfReg="false"/>
<ROW File="qtbase_ru.qm" Component_="qtbase_ar.qm" FileName="QTBAS~19.QM|qtbase_ru.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_ru.qm" SelfReg="false"/>
<ROW File="qtbase_sk.qm" Component_="qtbase_ar.qm" FileName="QTBAS~20.QM|qtbase_sk.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_sk.qm" SelfReg="false"/>
<ROW File="qtbase_tr.qm" Component_="qtbase_ar.qm" FileName="QTBAS~21.QM|qtbase_tr.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_tr.qm" SelfReg="false"/>
<ROW File="qtbase_uk.qm" Component_="qtbase_ar.qm" FileName="QTBAS~22.QM|qtbase_uk.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_uk.qm" SelfReg="false"/>
<ROW File="qtbase_zh_TW.qm" Component_="qtbase_ar.qm" FileName="QTBAS~23.QM|qtbase_zh_TW.qm" Attributes="0" SourcePath="L2-easy\PyQt5\Qt\translations\qtbase_zh_TW.qm" SelfReg="false"/>
<ROW File="QtCore.pyd" Component_="QtCore.pyd" FileName="QtCore.pyd" Attributes="0" SourcePath="L2-easy\PyQt5\QtCore.pyd" SelfReg="false"/>
<ROW File="QtGui.pyd" Component_="QtCore.pyd" FileName="QtGui.pyd" Attributes="0" SourcePath="L2-easy\PyQt5\QtGui.pyd" SelfReg="false"/>
<ROW File="QtWidgets.pyd" Component_="QtCore.pyd" FileName="QTWIDG~1.PYD|QtWidgets.pyd" Attributes="0" SourcePath="L2-easy\PyQt5\QtWidgets.pyd" SelfReg="false"/>
<ROW File="sip.cp37win_amd64.pyd" Component_="QtCore.pyd" FileName="SIPCP3~1.PYD|sip.cp37-win_amd64.pyd" Attributes="0" SourcePath="L2-easy\PyQt5\sip.cp37-win_amd64.pyd" SelfReg="false"/>
<ROW File="python3.dll" Component_="python3.dll" FileName="python3.dll" Attributes="0" SourcePath="L2-easy\python3.dll" SelfReg="false"/>
<ROW File="python37.dll" Component_="python37.dll" FileName="python37.dll" Attributes="0" SourcePath="L2-easy\python37.dll" SelfReg="false"/>
<ROW File="Qt5Core.dll" Component_="Qt5Core.dll" FileName="Qt5Core.dll" Attributes="0" SourcePath="L2-easy\Qt5Core.dll" SelfReg="false"/>
<ROW File="Qt5DBus.dll" Component_="Qt5DBus.dll" FileName="Qt5DBus.dll" Attributes="0" SourcePath="L2-easy\Qt5DBus.dll" SelfReg="false"/>
<ROW File="Qt5Gui.dll" Component_="Qt5Gui.dll" FileName="Qt5Gui.dll" Attributes="0" SourcePath="L2-easy\Qt5Gui.dll" SelfReg="false"/>
<ROW File="Qt5Network.dll" Component_="Qt5Network.dll" FileName="QT5NET~1.DLL|Qt5Network.dll" Attributes="0" SourcePath="L2-easy\Qt5Network.dll" SelfReg="false"/>
<ROW File="Qt5Qml.dll" Component_="Qt5Qml.dll" FileName="Qt5Qml.dll" Attributes="0" SourcePath="L2-easy\Qt5Qml.dll" SelfReg="false"/>
<ROW File="Qt5QmlModels.dll" Component_="Qt5QmlModels.dll" FileName="QT5QML~1.DLL|Qt5QmlModels.dll" Attributes="0" SourcePath="L2-easy\Qt5QmlModels.dll" SelfReg="false"/>
<ROW File="Qt5Quick.dll" Component_="Qt5Quick.dll" FileName="Qt5Quick.dll" Attributes="0" SourcePath="L2-easy\Qt5Quick.dll" SelfReg="false"/>
<ROW File="Qt5Svg.dll" Component_="Qt5Svg.dll" FileName="Qt5Svg.dll" Attributes="0" SourcePath="L2-easy\Qt5Svg.dll" SelfReg="false"/>
<ROW File="Qt5WebSockets.dll" Component_="Qt5WebSockets.dll" FileName="QT5WEB~1.DLL|Qt5WebSockets.dll" Attributes="0" SourcePath="L2-easy\Qt5WebSockets.dll" SelfReg="false"/>
<ROW File="Qt5Widgets.dll" Component_="Qt5Widgets.dll" FileName="QT5WID~1.DLL|Qt5Widgets.dll" Attributes="0" SourcePath="L2-easy\Qt5Widgets.dll" SelfReg="false"/>
<ROW File="SDL2.dll" Component_="SDL2.dll" FileName="SDL2.dll" Attributes="0" SourcePath="L2-easy\SDL2.dll" SelfReg="false"/>
<ROW File="SDL2_image.dll" Component_="SDL2_image.dll" FileName="SDL2_I~1.DLL|SDL2_image.dll" Attributes="0" SourcePath="L2-easy\SDL2_image.dll" SelfReg="false"/>
<ROW File="SDL2_mixer.dll" Component_="SDL2_mixer.dll" FileName="SDL2_M~1.DLL|SDL2_mixer.dll" Attributes="0" SourcePath="L2-easy\SDL2_mixer.dll" SelfReg="false"/>
<ROW File="SDL2_ttf.dll" Component_="SDL2_ttf.dll" FileName="SDL2_ttf.dll" Attributes="0" SourcePath="L2-easy\SDL2_ttf.dll" SelfReg="false"/>
<ROW File="select.pyd" Component_="alarm.mp3" FileName="select.pyd" Attributes="0" SourcePath="L2-easy\select.pyd" SelfReg="false"/>
<ROW File="auto.tcl" Component_="auto.tcl" FileName="auto.tcl" Attributes="0" SourcePath="L2-easy\tcl\auto.tcl" SelfReg="false"/>
<ROW File="clock.tcl" Component_="auto.tcl" FileName="clock.tcl" Attributes="0" SourcePath="L2-easy\tcl\clock.tcl" SelfReg="false"/>
<ROW File="ascii.enc" Component_="ascii.enc" FileName="ascii.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\ascii.enc" SelfReg="false"/>
<ROW File="big5.enc" Component_="ascii.enc" FileName="big5.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\big5.enc" SelfReg="false"/>
<ROW File="cp1250.enc" Component_="ascii.enc" FileName="cp1250.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp1250.enc" SelfReg="false"/>
<ROW File="cp1251.enc" Component_="ascii.enc" FileName="cp1251.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp1251.enc" SelfReg="false"/>
<ROW File="cp1252.enc" Component_="ascii.enc" FileName="cp1252.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp1252.enc" SelfReg="false"/>
<ROW File="cp1253.enc" Component_="ascii.enc" FileName="cp1253.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp1253.enc" SelfReg="false"/>
<ROW File="cp1254.enc" Component_="ascii.enc" FileName="cp1254.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp1254.enc" SelfReg="false"/>
<ROW File="cp1255.enc" Component_="ascii.enc" FileName="cp1255.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp1255.enc" SelfReg="false"/>
<ROW File="cp1256.enc" Component_="ascii.enc" FileName="cp1256.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp1256.enc" SelfReg="false"/>
<ROW File="cp1257.enc" Component_="ascii.enc" FileName="cp1257.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp1257.enc" SelfReg="false"/>
<ROW File="cp1258.enc" Component_="ascii.enc" FileName="cp1258.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp1258.enc" SelfReg="false"/>
<ROW File="cp437.enc" Component_="ascii.enc" FileName="cp437.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp437.enc" SelfReg="false"/>
<ROW File="cp737.enc" Component_="ascii.enc" FileName="cp737.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp737.enc" SelfReg="false"/>
<ROW File="cp775.enc" Component_="ascii.enc" FileName="cp775.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp775.enc" SelfReg="false"/>
<ROW File="cp850.enc" Component_="ascii.enc" FileName="cp850.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp850.enc" SelfReg="false"/>
<ROW File="cp852.enc" Component_="ascii.enc" FileName="cp852.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp852.enc" SelfReg="false"/>
<ROW File="cp855.enc" Component_="ascii.enc" FileName="cp855.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp855.enc" SelfReg="false"/>
<ROW File="cp857.enc" Component_="ascii.enc" FileName="cp857.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp857.enc" SelfReg="false"/>
<ROW File="cp860.enc" Component_="ascii.enc" FileName="cp860.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp860.enc" SelfReg="false"/>
<ROW File="cp861.enc" Component_="ascii.enc" FileName="cp861.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp861.enc" SelfReg="false"/>
<ROW File="cp862.enc" Component_="ascii.enc" FileName="cp862.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp862.enc" SelfReg="false"/>
<ROW File="cp863.enc" Component_="ascii.enc" FileName="cp863.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp863.enc" SelfReg="false"/>
<ROW File="cp864.enc" Component_="ascii.enc" FileName="cp864.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp864.enc" SelfReg="false"/>
<ROW File="cp865.enc" Component_="ascii.enc" FileName="cp865.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp865.enc" SelfReg="false"/>
<ROW File="cp866.enc" Component_="ascii.enc" FileName="cp866.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp866.enc" SelfReg="false"/>
<ROW File="cp869.enc" Component_="ascii.enc" FileName="cp869.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp869.enc" SelfReg="false"/>
<ROW File="cp874.enc" Component_="ascii.enc" FileName="cp874.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp874.enc" SelfReg="false"/>
<ROW File="cp932.enc" Component_="ascii.enc" FileName="cp932.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp932.enc" SelfReg="false"/>
<ROW File="cp936.enc" Component_="ascii.enc" FileName="cp936.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp936.enc" SelfReg="false"/>
<ROW File="cp949.enc" Component_="ascii.enc" FileName="cp949.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp949.enc" SelfReg="false"/>
<ROW File="cp950.enc" Component_="ascii.enc" FileName="cp950.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\cp950.enc" SelfReg="false"/>
<ROW File="dingbats.enc" Component_="ascii.enc" FileName="dingbats.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\dingbats.enc" SelfReg="false"/>
<ROW File="ebcdic.enc" Component_="ascii.enc" FileName="ebcdic.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\ebcdic.enc" SelfReg="false"/>
<ROW File="euccn.enc" Component_="ascii.enc" FileName="euc-cn.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\euc-cn.enc" SelfReg="false"/>
<ROW File="eucjp.enc" Component_="ascii.enc" FileName="euc-jp.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\euc-jp.enc" SelfReg="false"/>
<ROW File="euckr.enc" Component_="ascii.enc" FileName="euc-kr.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\euc-kr.enc" SelfReg="false"/>
<ROW File="gb12345.enc" Component_="ascii.enc" FileName="gb12345.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\gb12345.enc" SelfReg="false"/>
<ROW File="gb1988.enc" Component_="ascii.enc" FileName="gb1988.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\gb1988.enc" SelfReg="false"/>
<ROW File="gb2312raw.enc" Component_="ascii.enc" FileName="GB2312~1.ENC|gb2312-raw.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\gb2312-raw.enc" SelfReg="false"/>
<ROW File="gb2312.enc" Component_="ascii.enc" FileName="gb2312.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\gb2312.enc" SelfReg="false"/>
<ROW File="iso2022jp.enc" Component_="ascii.enc" FileName="ISO202~1.ENC|iso2022-jp.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso2022-jp.enc" SelfReg="false"/>
<ROW File="iso2022kr.enc" Component_="ascii.enc" FileName="ISO202~2.ENC|iso2022-kr.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso2022-kr.enc" SelfReg="false"/>
<ROW File="iso2022.enc" Component_="ascii.enc" FileName="iso2022.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso2022.enc" SelfReg="false"/>
<ROW File="iso88591.enc" Component_="ascii.enc" FileName="ISO885~1.ENC|iso8859-1.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso8859-1.enc" SelfReg="false"/>
<ROW File="iso885910.enc" Component_="ascii.enc" FileName="ISO885~2.ENC|iso8859-10.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso8859-10.enc" SelfReg="false"/>
<ROW File="iso885913.enc" Component_="ascii.enc" FileName="ISO885~3.ENC|iso8859-13.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso8859-13.enc" SelfReg="false"/>
<ROW File="iso885914.enc" Component_="ascii.enc" FileName="ISO885~4.ENC|iso8859-14.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso8859-14.enc" SelfReg="false"/>
<ROW File="iso885915.enc" Component_="ascii.enc" FileName="ISO885~5.ENC|iso8859-15.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso8859-15.enc" SelfReg="false"/>
<ROW File="iso885916.enc" Component_="ascii.enc" FileName="ISO885~6.ENC|iso8859-16.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso8859-16.enc" SelfReg="false"/>
<ROW File="iso88592.enc" Component_="ascii.enc" FileName="ISO885~7.ENC|iso8859-2.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso8859-2.enc" SelfReg="false"/>
<ROW File="iso88593.enc" Component_="ascii.enc" FileName="ISO885~8.ENC|iso8859-3.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso8859-3.enc" SelfReg="false"/>
<ROW File="iso88594.enc" Component_="ascii.enc" FileName="ISO885~9.ENC|iso8859-4.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso8859-4.enc" SelfReg="false"/>
<ROW File="iso88595.enc" Component_="ascii.enc" FileName="ISO88~10.ENC|iso8859-5.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso8859-5.enc" SelfReg="false"/>
<ROW File="iso88596.enc" Component_="ascii.enc" FileName="ISO88~11.ENC|iso8859-6.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso8859-6.enc" SelfReg="false"/>
<ROW File="iso88597.enc" Component_="ascii.enc" FileName="ISO88~12.ENC|iso8859-7.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso8859-7.enc" SelfReg="false"/>
<ROW File="iso88598.enc" Component_="ascii.enc" FileName="ISO88~13.ENC|iso8859-8.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso8859-8.enc" SelfReg="false"/>
<ROW File="iso88599.enc" Component_="ascii.enc" FileName="ISO88~14.ENC|iso8859-9.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\iso8859-9.enc" SelfReg="false"/>
<ROW File="jis0201.enc" Component_="ascii.enc" FileName="jis0201.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\jis0201.enc" SelfReg="false"/>
<ROW File="jis0208.enc" Component_="ascii.enc" FileName="jis0208.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\jis0208.enc" SelfReg="false"/>
<ROW File="jis0212.enc" Component_="ascii.enc" FileName="jis0212.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\jis0212.enc" SelfReg="false"/>
<ROW File="koi8r.enc" Component_="ascii.enc" FileName="koi8-r.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\koi8-r.enc" SelfReg="false"/>
<ROW File="koi8u.enc" Component_="ascii.enc" FileName="koi8-u.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\koi8-u.enc" SelfReg="false"/>
<ROW File="ksc5601.enc" Component_="ascii.enc" FileName="ksc5601.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\ksc5601.enc" SelfReg="false"/>
<ROW File="macCentEuro.enc" Component_="ascii.enc" FileName="MACCEN~1.ENC|macCentEuro.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\macCentEuro.enc" SelfReg="false"/>
<ROW File="macCroatian.enc" Component_="ascii.enc" FileName="MACCRO~1.ENC|macCroatian.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\macCroatian.enc" SelfReg="false"/>
<ROW File="macCyrillic.enc" Component_="ascii.enc" FileName="MACCYR~1.ENC|macCyrillic.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\macCyrillic.enc" SelfReg="false"/>
<ROW File="macDingbats.enc" Component_="ascii.enc" FileName="MACDIN~1.ENC|macDingbats.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\macDingbats.enc" SelfReg="false"/>
<ROW File="macGreek.enc" Component_="ascii.enc" FileName="macGreek.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\macGreek.enc" SelfReg="false"/>
<ROW File="macIceland.enc" Component_="ascii.enc" FileName="MACICE~1.ENC|macIceland.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\macIceland.enc" SelfReg="false"/>
<ROW File="macJapan.enc" Component_="ascii.enc" FileName="macJapan.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\macJapan.enc" SelfReg="false"/>
<ROW File="macRoman.enc" Component_="ascii.enc" FileName="macRoman.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\macRoman.enc" SelfReg="false"/>
<ROW File="macRomania.enc" Component_="ascii.enc" FileName="MACROM~1.ENC|macRomania.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\macRomania.enc" SelfReg="false"/>
<ROW File="macThai.enc" Component_="ascii.enc" FileName="macThai.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\macThai.enc" SelfReg="false"/>
<ROW File="macTurkish.enc" Component_="ascii.enc" FileName="MACTUR~1.ENC|macTurkish.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\macTurkish.enc" SelfReg="false"/>
<ROW File="macUkraine.enc" Component_="ascii.enc" FileName="MACUKR~1.ENC|macUkraine.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\macUkraine.enc" SelfReg="false"/>
<ROW File="shiftjis.enc" Component_="ascii.enc" FileName="shiftjis.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\shiftjis.enc" SelfReg="false"/>
<ROW File="symbol.enc" Component_="ascii.enc" FileName="symbol.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\symbol.enc" SelfReg="false"/>
<ROW File="tis620.enc" Component_="ascii.enc" FileName="tis-620.enc" Attributes="0" SourcePath="L2-easy\tcl\encoding\tis-620.enc" SelfReg="false"/>
<ROW File="history.tcl" Component_="auto.tcl" FileName="history.tcl" Attributes="0" SourcePath="L2-easy\tcl\history.tcl" SelfReg="false"/>
<ROW File="http.tcl" Component_="http.tcl" FileName="http.tcl" Attributes="0" SourcePath="L2-easy\tcl\http1.0\http.tcl" SelfReg="false"/>
<ROW File="pkgIndex.tcl" Component_="http.tcl" FileName="pkgIndex.tcl" Attributes="0" SourcePath="L2-easy\tcl\http1.0\pkgIndex.tcl" SelfReg="false"/>
<ROW File="init.tcl" Component_="auto.tcl" FileName="init.tcl" Attributes="0" SourcePath="L2-easy\tcl\init.tcl" SelfReg="false"/>
<ROW File="af.msg" Component_="af.msg" FileName="af.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\af.msg" SelfReg="false"/>
<ROW File="af_za.msg" Component_="af.msg" FileName="af_za.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\af_za.msg" SelfReg="false"/>
<ROW File="ar.msg" Component_="af.msg" FileName="ar.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ar.msg" SelfReg="false"/>
<ROW File="ar_in.msg" Component_="af.msg" FileName="ar_in.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ar_in.msg" SelfReg="false"/>
<ROW File="ar_jo.msg" Component_="af.msg" FileName="ar_jo.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ar_jo.msg" SelfReg="false"/>
<ROW File="ar_lb.msg" Component_="af.msg" FileName="ar_lb.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ar_lb.msg" SelfReg="false"/>
<ROW File="ar_sy.msg" Component_="af.msg" FileName="ar_sy.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ar_sy.msg" SelfReg="false"/>
<ROW File="be.msg" Component_="af.msg" FileName="be.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\be.msg" SelfReg="false"/>
<ROW File="bg.msg" Component_="af.msg" FileName="bg.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\bg.msg" SelfReg="false"/>
<ROW File="bn.msg" Component_="af.msg" FileName="bn.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\bn.msg" SelfReg="false"/>
<ROW File="bn_in.msg" Component_="af.msg" FileName="bn_in.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\bn_in.msg" SelfReg="false"/>
<ROW File="ca.msg" Component_="af.msg" FileName="ca.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ca.msg" SelfReg="false"/>
<ROW File="cs.msg" Component_="af.msg" FileName="cs.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\cs.msg" SelfReg="false"/>
<ROW File="da.msg" Component_="af.msg" FileName="da.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\da.msg" SelfReg="false"/>
<ROW File="de.msg" Component_="af.msg" FileName="de.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\de.msg" SelfReg="false"/>
<ROW File="de_at.msg" Component_="af.msg" FileName="de_at.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\de_at.msg" SelfReg="false"/>
<ROW File="de_be.msg" Component_="af.msg" FileName="de_be.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\de_be.msg" SelfReg="false"/>
<ROW File="el.msg" Component_="af.msg" FileName="el.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\el.msg" SelfReg="false"/>
<ROW File="en_au.msg" Component_="af.msg" FileName="en_au.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\en_au.msg" SelfReg="false"/>
<ROW File="en_be.msg" Component_="af.msg" FileName="en_be.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\en_be.msg" SelfReg="false"/>
<ROW File="en_bw.msg" Component_="af.msg" FileName="en_bw.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\en_bw.msg" SelfReg="false"/>
<ROW File="en_ca.msg" Component_="af.msg" FileName="en_ca.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\en_ca.msg" SelfReg="false"/>
<ROW File="en_gb.msg" Component_="af.msg" FileName="en_gb.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\en_gb.msg" SelfReg="false"/>
<ROW File="en_hk.msg" Component_="af.msg" FileName="en_hk.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\en_hk.msg" SelfReg="false"/>
<ROW File="en_ie.msg" Component_="af.msg" FileName="en_ie.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\en_ie.msg" SelfReg="false"/>
<ROW File="en_in.msg" Component_="af.msg" FileName="en_in.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\en_in.msg" SelfReg="false"/>
<ROW File="en_nz.msg" Component_="af.msg" FileName="en_nz.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\en_nz.msg" SelfReg="false"/>
<ROW File="en_ph.msg" Component_="af.msg" FileName="en_ph.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\en_ph.msg" SelfReg="false"/>
<ROW File="en_sg.msg" Component_="af.msg" FileName="en_sg.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\en_sg.msg" SelfReg="false"/>
<ROW File="en_za.msg" Component_="af.msg" FileName="en_za.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\en_za.msg" SelfReg="false"/>
<ROW File="en_zw.msg" Component_="af.msg" FileName="en_zw.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\en_zw.msg" SelfReg="false"/>
<ROW File="eo.msg" Component_="af.msg" FileName="eo.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\eo.msg" SelfReg="false"/>
<ROW File="es.msg" Component_="af.msg" FileName="es.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es.msg" SelfReg="false"/>
<ROW File="es_ar.msg" Component_="af.msg" FileName="es_ar.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_ar.msg" SelfReg="false"/>
<ROW File="es_bo.msg" Component_="af.msg" FileName="es_bo.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_bo.msg" SelfReg="false"/>
<ROW File="es_cl.msg" Component_="af.msg" FileName="es_cl.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_cl.msg" SelfReg="false"/>
<ROW File="es_co.msg" Component_="af.msg" FileName="es_co.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_co.msg" SelfReg="false"/>
<ROW File="es_cr.msg" Component_="af.msg" FileName="es_cr.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_cr.msg" SelfReg="false"/>
<ROW File="es_do.msg" Component_="af.msg" FileName="es_do.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_do.msg" SelfReg="false"/>
<ROW File="es_ec.msg" Component_="af.msg" FileName="es_ec.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_ec.msg" SelfReg="false"/>
<ROW File="es_gt.msg" Component_="af.msg" FileName="es_gt.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_gt.msg" SelfReg="false"/>
<ROW File="es_hn.msg" Component_="af.msg" FileName="es_hn.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_hn.msg" SelfReg="false"/>
<ROW File="es_mx.msg" Component_="af.msg" FileName="es_mx.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_mx.msg" SelfReg="false"/>
<ROW File="es_ni.msg" Component_="af.msg" FileName="es_ni.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_ni.msg" SelfReg="false"/>
<ROW File="es_pa.msg" Component_="af.msg" FileName="es_pa.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_pa.msg" SelfReg="false"/>
<ROW File="es_pe.msg" Component_="af.msg" FileName="es_pe.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_pe.msg" SelfReg="false"/>
<ROW File="es_pr.msg" Component_="af.msg" FileName="es_pr.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_pr.msg" SelfReg="false"/>
<ROW File="es_py.msg" Component_="af.msg" FileName="es_py.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_py.msg" SelfReg="false"/>
<ROW File="es_sv.msg" Component_="af.msg" FileName="es_sv.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_sv.msg" SelfReg="false"/>
<ROW File="es_uy.msg" Component_="af.msg" FileName="es_uy.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_uy.msg" SelfReg="false"/>
<ROW File="es_ve.msg" Component_="af.msg" FileName="es_ve.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\es_ve.msg" SelfReg="false"/>
<ROW File="et.msg" Component_="af.msg" FileName="et.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\et.msg" SelfReg="false"/>
<ROW File="eu.msg" Component_="af.msg" FileName="eu.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\eu.msg" SelfReg="false"/>
<ROW File="eu_es.msg" Component_="af.msg" FileName="eu_es.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\eu_es.msg" SelfReg="false"/>
<ROW File="fa.msg" Component_="af.msg" FileName="fa.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\fa.msg" SelfReg="false"/>
<ROW File="fa_in.msg" Component_="af.msg" FileName="fa_in.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\fa_in.msg" SelfReg="false"/>
<ROW File="fa_ir.msg" Component_="af.msg" FileName="fa_ir.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\fa_ir.msg" SelfReg="false"/>
<ROW File="fi.msg" Component_="af.msg" FileName="fi.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\fi.msg" SelfReg="false"/>
<ROW File="fo.msg" Component_="af.msg" FileName="fo.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\fo.msg" SelfReg="false"/>
<ROW File="fo_fo.msg" Component_="af.msg" FileName="fo_fo.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\fo_fo.msg" SelfReg="false"/>
<ROW File="fr.msg" Component_="af.msg" FileName="fr.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\fr.msg" SelfReg="false"/>
<ROW File="fr_be.msg" Component_="af.msg" FileName="fr_be.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\fr_be.msg" SelfReg="false"/>
<ROW File="fr_ca.msg" Component_="af.msg" FileName="fr_ca.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\fr_ca.msg" SelfReg="false"/>
<ROW File="fr_ch.msg" Component_="af.msg" FileName="fr_ch.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\fr_ch.msg" SelfReg="false"/>
<ROW File="ga.msg" Component_="af.msg" FileName="ga.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ga.msg" SelfReg="false"/>
<ROW File="ga_ie.msg" Component_="af.msg" FileName="ga_ie.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ga_ie.msg" SelfReg="false"/>
<ROW File="gl.msg" Component_="af.msg" FileName="gl.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\gl.msg" SelfReg="false"/>
<ROW File="gl_es.msg" Component_="af.msg" FileName="gl_es.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\gl_es.msg" SelfReg="false"/>
<ROW File="gv.msg" Component_="af.msg" FileName="gv.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\gv.msg" SelfReg="false"/>
<ROW File="gv_gb.msg" Component_="af.msg" FileName="gv_gb.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\gv_gb.msg" SelfReg="false"/>
<ROW File="he.msg" Component_="af.msg" FileName="he.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\he.msg" SelfReg="false"/>
<ROW File="hi.msg" Component_="af.msg" FileName="hi.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\hi.msg" SelfReg="false"/>
<ROW File="hi_in.msg" Component_="af.msg" FileName="hi_in.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\hi_in.msg" SelfReg="false"/>
<ROW File="hr.msg" Component_="af.msg" FileName="hr.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\hr.msg" SelfReg="false"/>
<ROW File="hu.msg" Component_="af.msg" FileName="hu.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\hu.msg" SelfReg="false"/>
<ROW File="id.msg" Component_="af.msg" FileName="id.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\id.msg" SelfReg="false"/>
<ROW File="id_id.msg" Component_="af.msg" FileName="id_id.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\id_id.msg" SelfReg="false"/>
<ROW File="is.msg" Component_="af.msg" FileName="is.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\is.msg" SelfReg="false"/>
<ROW File="it.msg" Component_="af.msg" FileName="it.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\it.msg" SelfReg="false"/>
<ROW File="it_ch.msg" Component_="af.msg" FileName="it_ch.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\it_ch.msg" SelfReg="false"/>
<ROW File="ja.msg" Component_="af.msg" FileName="ja.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ja.msg" SelfReg="false"/>
<ROW File="kl.msg" Component_="af.msg" FileName="kl.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\kl.msg" SelfReg="false"/>
<ROW File="kl_gl.msg" Component_="af.msg" FileName="kl_gl.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\kl_gl.msg" SelfReg="false"/>
<ROW File="ko.msg" Component_="af.msg" FileName="ko.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ko.msg" SelfReg="false"/>
<ROW File="kok.msg" Component_="af.msg" FileName="kok.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\kok.msg" SelfReg="false"/>
<ROW File="kok_in.msg" Component_="af.msg" FileName="kok_in.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\kok_in.msg" SelfReg="false"/>
<ROW File="ko_kr.msg" Component_="af.msg" FileName="ko_kr.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ko_kr.msg" SelfReg="false"/>
<ROW File="kw.msg" Component_="af.msg" FileName="kw.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\kw.msg" SelfReg="false"/>
<ROW File="kw_gb.msg" Component_="af.msg" FileName="kw_gb.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\kw_gb.msg" SelfReg="false"/>
<ROW File="lt.msg" Component_="af.msg" FileName="lt.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\lt.msg" SelfReg="false"/>
<ROW File="lv.msg" Component_="af.msg" FileName="lv.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\lv.msg" SelfReg="false"/>
<ROW File="mk.msg" Component_="af.msg" FileName="mk.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\mk.msg" SelfReg="false"/>
<ROW File="mr.msg" Component_="af.msg" FileName="mr.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\mr.msg" SelfReg="false"/>
<ROW File="mr_in.msg" Component_="af.msg" FileName="mr_in.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\mr_in.msg" SelfReg="false"/>
<ROW File="ms.msg" Component_="af.msg" FileName="ms.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ms.msg" SelfReg="false"/>
<ROW File="ms_my.msg" Component_="af.msg" FileName="ms_my.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ms_my.msg" SelfReg="false"/>
<ROW File="mt.msg" Component_="af.msg" FileName="mt.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\mt.msg" SelfReg="false"/>
<ROW File="nb.msg" Component_="af.msg" FileName="nb.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\nb.msg" SelfReg="false"/>
<ROW File="nl.msg" Component_="af.msg" FileName="nl.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\nl.msg" SelfReg="false"/>
<ROW File="nl_be.msg" Component_="af.msg" FileName="nl_be.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\nl_be.msg" SelfReg="false"/>
<ROW File="nn.msg" Component_="af.msg" FileName="nn.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\nn.msg" SelfReg="false"/>
<ROW File="pl.msg" Component_="af.msg" FileName="pl.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\pl.msg" SelfReg="false"/>
<ROW File="pt.msg" Component_="af.msg" FileName="pt.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\pt.msg" SelfReg="false"/>
<ROW File="pt_br.msg" Component_="af.msg" FileName="pt_br.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\pt_br.msg" SelfReg="false"/>
<ROW File="ro.msg" Component_="af.msg" FileName="ro.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ro.msg" SelfReg="false"/>
<ROW File="ru.msg" Component_="af.msg" FileName="ru.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ru.msg" SelfReg="false"/>
<ROW File="ru_ua.msg" Component_="af.msg" FileName="ru_ua.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ru_ua.msg" SelfReg="false"/>
<ROW File="sh.msg" Component_="af.msg" FileName="sh.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\sh.msg" SelfReg="false"/>
<ROW File="sk.msg" Component_="af.msg" FileName="sk.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\sk.msg" SelfReg="false"/>
<ROW File="sl.msg" Component_="af.msg" FileName="sl.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\sl.msg" SelfReg="false"/>
<ROW File="sq.msg" Component_="af.msg" FileName="sq.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\sq.msg" SelfReg="false"/>
<ROW File="sr.msg" Component_="af.msg" FileName="sr.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\sr.msg" SelfReg="false"/>
<ROW File="sv.msg" Component_="af.msg" FileName="sv.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\sv.msg" SelfReg="false"/>
<ROW File="sw.msg" Component_="af.msg" FileName="sw.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\sw.msg" SelfReg="false"/>
<ROW File="ta.msg" Component_="af.msg" FileName="ta.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ta.msg" SelfReg="false"/>
<ROW File="ta_in.msg" Component_="af.msg" FileName="ta_in.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\ta_in.msg" SelfReg="false"/>
<ROW File="te.msg" Component_="af.msg" FileName="te.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\te.msg" SelfReg="false"/>
<ROW File="te_in.msg" Component_="af.msg" FileName="te_in.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\te_in.msg" SelfReg="false"/>
<ROW File="th.msg" Component_="af.msg" FileName="th.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\th.msg" SelfReg="false"/>
<ROW File="tr.msg" Component_="af.msg" FileName="tr.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\tr.msg" SelfReg="false"/>
<ROW File="uk.msg" Component_="af.msg" FileName="uk.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\uk.msg" SelfReg="false"/>
<ROW File="vi.msg" Component_="af.msg" FileName="vi.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\vi.msg" SelfReg="false"/>
<ROW File="zh.msg" Component_="af.msg" FileName="zh.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\zh.msg" SelfReg="false"/>
<ROW File="zh_cn.msg" Component_="af.msg" FileName="zh_cn.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\zh_cn.msg" SelfReg="false"/>
<ROW File="zh_hk.msg" Component_="af.msg" FileName="zh_hk.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\zh_hk.msg" SelfReg="false"/>
<ROW File="zh_sg.msg" Component_="af.msg" FileName="zh_sg.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\zh_sg.msg" SelfReg="false"/>
<ROW File="zh_tw.msg" Component_="af.msg" FileName="zh_tw.msg" Attributes="0" SourcePath="L2-easy\tcl\msgs\zh_tw.msg" SelfReg="false"/>
<ROW File="optparse.tcl" Component_="optparse.tcl" FileName="optparse.tcl" Attributes="0" SourcePath="L2-easy\tcl\opt0.4\optparse.tcl" SelfReg="false"/>
<ROW File="pkgIndex.tcl_1" Component_="optparse.tcl" FileName="pkgIndex.tcl" Attributes="0" SourcePath="L2-easy\tcl\opt0.4\pkgIndex.tcl" SelfReg="false"/>
<ROW File="package.tcl" Component_="auto.tcl" FileName="package.tcl" Attributes="0" SourcePath="L2-easy\tcl\package.tcl" SelfReg="false"/>
<ROW File="parray.tcl" Component_="auto.tcl" FileName="parray.tcl" Attributes="0" SourcePath="L2-easy\tcl\parray.tcl" SelfReg="false"/>
<ROW File="safe.tcl" Component_="auto.tcl" FileName="safe.tcl" Attributes="0" SourcePath="L2-easy\tcl\safe.tcl" SelfReg="false"/>
<ROW File="tclIndex" Component_="auto.tcl" FileName="tclIndex" Attributes="0" SourcePath="L2-easy\tcl\tclIndex" SelfReg="false"/>
<ROW File="tm.tcl" Component_="auto.tcl" FileName="tm.tcl" Attributes="0" SourcePath="L2-easy\tcl\tm.tcl" SelfReg="false"/>
<ROW File="Abidjan" Component_="Abidjan" FileName="Abidjan" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Abidjan" SelfReg="false"/>
<ROW File="Accra" Component_="Abidjan" FileName="Accra" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Accra" SelfReg="false"/>
<ROW File="Addis_Ababa" Component_="Abidjan" FileName="ADDIS_~1|Addis_Ababa" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Addis_Ababa" SelfReg="false"/>
<ROW File="Algiers" Component_="Abidjan" FileName="Algiers" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Algiers" SelfReg="false"/>
<ROW File="Asmara" Component_="Abidjan" FileName="Asmara" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Asmara" SelfReg="false"/>
<ROW File="Asmera" Component_="Abidjan" FileName="Asmera" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Asmera" SelfReg="false"/>
<ROW File="Bamako" Component_="Abidjan" FileName="Bamako" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Bamako" SelfReg="false"/>
<ROW File="Bangui" Component_="Abidjan" FileName="Bangui" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Bangui" SelfReg="false"/>
<ROW File="Banjul" Component_="Abidjan" FileName="Banjul" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Banjul" SelfReg="false"/>
<ROW File="Bissau" Component_="Abidjan" FileName="Bissau" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Bissau" SelfReg="false"/>
<ROW File="Blantyre" Component_="Abidjan" FileName="Blantyre" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Blantyre" SelfReg="false"/>
<ROW File="Brazzaville" Component_="Abidjan" FileName="BRAZZA~1|Brazzaville" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Brazzaville" SelfReg="false"/>
<ROW File="Bujumbura" Component_="Abidjan" FileName="BUJUMB~1|Bujumbura" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Bujumbura" SelfReg="false"/>
<ROW File="Cairo" Component_="Abidjan" FileName="Cairo" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Cairo" SelfReg="false"/>
<ROW File="Casablanca" Component_="Abidjan" FileName="CASABL~1|Casablanca" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Casablanca" SelfReg="false"/>
<ROW File="Ceuta" Component_="Abidjan" FileName="Ceuta" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Ceuta" SelfReg="false"/>
<ROW File="Conakry" Component_="Abidjan" FileName="Conakry" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Conakry" SelfReg="false"/>
<ROW File="Dakar" Component_="Abidjan" FileName="Dakar" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Dakar" SelfReg="false"/>
<ROW File="Dar_es_Salaam" Component_="Abidjan" FileName="DAR_ES~1|Dar_es_Salaam" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Dar_es_Salaam" SelfReg="false"/>
<ROW File="Djibouti" Component_="Abidjan" FileName="Djibouti" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Djibouti" SelfReg="false"/>
<ROW File="Douala" Component_="Abidjan" FileName="Douala" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Douala" SelfReg="false"/>
<ROW File="El_Aaiun" Component_="Abidjan" FileName="El_Aaiun" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\El_Aaiun" SelfReg="false"/>
<ROW File="Freetown" Component_="Abidjan" FileName="Freetown" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Freetown" SelfReg="false"/>
<ROW File="Gaborone" Component_="Abidjan" FileName="Gaborone" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Gaborone" SelfReg="false"/>
<ROW File="Harare" Component_="Abidjan" FileName="Harare" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Harare" SelfReg="false"/>
<ROW File="Johannesburg" Component_="Abidjan" FileName="JOHANN~1|Johannesburg" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Johannesburg" SelfReg="false"/>
<ROW File="Juba" Component_="Abidjan" FileName="Juba" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Juba" SelfReg="false"/>
<ROW File="Kampala" Component_="Abidjan" FileName="Kampala" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Kampala" SelfReg="false"/>
<ROW File="Khartoum" Component_="Abidjan" FileName="Khartoum" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Khartoum" SelfReg="false"/>
<ROW File="Kigali" Component_="Abidjan" FileName="Kigali" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Kigali" SelfReg="false"/>
<ROW File="Kinshasa" Component_="Abidjan" FileName="Kinshasa" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Kinshasa" SelfReg="false"/>
<ROW File="Lagos" Component_="Abidjan" FileName="Lagos" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Lagos" SelfReg="false"/>
<ROW File="Libreville" Component_="Abidjan" FileName="LIBREV~1|Libreville" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Libreville" SelfReg="false"/>
<ROW File="Lome" Component_="Abidjan" FileName="Lome" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Lome" SelfReg="false"/>
<ROW File="Luanda" Component_="Abidjan" FileName="Luanda" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Luanda" SelfReg="false"/>
<ROW File="Lubumbashi" Component_="Abidjan" FileName="LUBUMB~1|Lubumbashi" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Lubumbashi" SelfReg="false"/>
<ROW File="Lusaka" Component_="Abidjan" FileName="Lusaka" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Lusaka" SelfReg="false"/>
<ROW File="Malabo" Component_="Abidjan" FileName="Malabo" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Malabo" SelfReg="false"/>
<ROW File="Maputo" Component_="Abidjan" FileName="Maputo" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Maputo" SelfReg="false"/>
<ROW File="Maseru" Component_="Abidjan" FileName="Maseru" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Maseru" SelfReg="false"/>
<ROW File="Mbabane" Component_="Abidjan" FileName="Mbabane" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Mbabane" SelfReg="false"/>
<ROW File="Mogadishu" Component_="Abidjan" FileName="MOGADI~1|Mogadishu" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Mogadishu" SelfReg="false"/>
<ROW File="Monrovia" Component_="Abidjan" FileName="Monrovia" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Monrovia" SelfReg="false"/>
<ROW File="Nairobi" Component_="Abidjan" FileName="Nairobi" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Nairobi" SelfReg="false"/>
<ROW File="Ndjamena" Component_="Abidjan" FileName="Ndjamena" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Ndjamena" SelfReg="false"/>
<ROW File="Niamey" Component_="Abidjan" FileName="Niamey" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Niamey" SelfReg="false"/>
<ROW File="Nouakchott" Component_="Abidjan" FileName="NOUAKC~1|Nouakchott" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Nouakchott" SelfReg="false"/>
<ROW File="Ouagadougou" Component_="Abidjan" FileName="OUAGAD~1|Ouagadougou" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Ouagadougou" SelfReg="false"/>
<ROW File="PortoNovo" Component_="Abidjan" FileName="PORTO-~1|Porto-Novo" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Porto-Novo" SelfReg="false"/>
<ROW File="Sao_Tome" Component_="Abidjan" FileName="Sao_Tome" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Sao_Tome" SelfReg="false"/>
<ROW File="Timbuktu" Component_="Abidjan" FileName="Timbuktu" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Timbuktu" SelfReg="false"/>
<ROW File="Tripoli" Component_="Abidjan" FileName="Tripoli" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Tripoli" SelfReg="false"/>
<ROW File="Tunis" Component_="Abidjan" FileName="Tunis" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Tunis" SelfReg="false"/>
<ROW File="Windhoek" Component_="Abidjan" FileName="Windhoek" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Africa\Windhoek" SelfReg="false"/>
<ROW File="Adak" Component_="Adak" FileName="Adak" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Adak" SelfReg="false"/>
<ROW File="Anchorage" Component_="Adak" FileName="ANCHOR~1|Anchorage" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Anchorage" SelfReg="false"/>
<ROW File="Anguilla" Component_="Adak" FileName="Anguilla" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Anguilla" SelfReg="false"/>
<ROW File="Antigua" Component_="Adak" FileName="Antigua" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Antigua" SelfReg="false"/>
<ROW File="Araguaina" Component_="Adak" FileName="ARAGUA~1|Araguaina" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Araguaina" SelfReg="false"/>
<ROW File="Buenos_Aires" Component_="Buenos_Aires" FileName="BUENOS~1|Buenos_Aires" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Argentina\Buenos_Aires" SelfReg="false"/>
<ROW File="Catamarca" Component_="Buenos_Aires" FileName="CATAMA~1|Catamarca" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Argentina\Catamarca" SelfReg="false"/>
<ROW File="ComodRivadavia" Component_="Buenos_Aires" FileName="COMODR~1|ComodRivadavia" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Argentina\ComodRivadavia" SelfReg="false"/>
<ROW File="Cordoba" Component_="Buenos_Aires" FileName="Cordoba" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Argentina\Cordoba" SelfReg="false"/>
<ROW File="Jujuy" Component_="Buenos_Aires" FileName="Jujuy" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Argentina\Jujuy" SelfReg="false"/>
<ROW File="La_Rioja" Component_="Buenos_Aires" FileName="La_Rioja" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Argentina\La_Rioja" SelfReg="false"/>
<ROW File="Mendoza" Component_="Buenos_Aires" FileName="Mendoza" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Argentina\Mendoza" SelfReg="false"/>
<ROW File="Rio_Gallegos" Component_="Buenos_Aires" FileName="RIO_GA~1|Rio_Gallegos" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Argentina\Rio_Gallegos" SelfReg="false"/>
<ROW File="Salta" Component_="Buenos_Aires" FileName="Salta" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Argentina\Salta" SelfReg="false"/>
<ROW File="San_Juan" Component_="Buenos_Aires" FileName="San_Juan" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Argentina\San_Juan" SelfReg="false"/>
<ROW File="San_Luis" Component_="Buenos_Aires" FileName="San_Luis" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Argentina\San_Luis" SelfReg="false"/>
<ROW File="Tucuman" Component_="Buenos_Aires" FileName="Tucuman" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Argentina\Tucuman" SelfReg="false"/>
<ROW File="Ushuaia" Component_="Buenos_Aires" FileName="Ushuaia" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Argentina\Ushuaia" SelfReg="false"/>
<ROW File="Aruba" Component_="Adak" FileName="Aruba" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Aruba" SelfReg="false"/>
<ROW File="Asuncion" Component_="Adak" FileName="Asuncion" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Asuncion" SelfReg="false"/>
<ROW File="Atikokan" Component_="Adak" FileName="Atikokan" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Atikokan" SelfReg="false"/>
<ROW File="Atka" Component_="Adak" FileName="Atka" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Atka" SelfReg="false"/>
<ROW File="Bahia" Component_="Adak" FileName="Bahia" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Bahia" SelfReg="false"/>
<ROW File="Bahia_Banderas" Component_="Adak" FileName="BAHIA_~1|Bahia_Banderas" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Bahia_Banderas" SelfReg="false"/>
<ROW File="Barbados" Component_="Adak" FileName="Barbados" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Barbados" SelfReg="false"/>
<ROW File="Belem" Component_="Adak" FileName="Belem" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Belem" SelfReg="false"/>
<ROW File="Belize" Component_="Adak" FileName="Belize" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Belize" SelfReg="false"/>
<ROW File="BlancSablon" Component_="Adak" FileName="BLANC-~1|Blanc-Sablon" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Blanc-Sablon" SelfReg="false"/>
<ROW File="Boa_Vista" Component_="Adak" FileName="BOA_VI~1|Boa_Vista" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Boa_Vista" SelfReg="false"/>
<ROW File="Bogota" Component_="Adak" FileName="Bogota" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Bogota" SelfReg="false"/>
<ROW File="Boise" Component_="Adak" FileName="Boise" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Boise" SelfReg="false"/>
<ROW File="Buenos_Aires_1" Component_="Adak" FileName="BUENOS~1|Buenos_Aires" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Buenos_Aires" SelfReg="false"/>
<ROW File="Cambridge_Bay" Component_="Adak" FileName="CAMBRI~1|Cambridge_Bay" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Cambridge_Bay" SelfReg="false"/>
<ROW File="Campo_Grande" Component_="Adak" FileName="CAMPO_~1|Campo_Grande" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Campo_Grande" SelfReg="false"/>
<ROW File="Cancun" Component_="Adak" FileName="Cancun" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Cancun" SelfReg="false"/>
<ROW File="Caracas" Component_="Adak" FileName="Caracas" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Caracas" SelfReg="false"/>
<ROW File="Catamarca_1" Component_="Adak" FileName="CATAMA~1|Catamarca" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Catamarca" SelfReg="false"/>
<ROW File="Cayenne" Component_="Adak" FileName="Cayenne" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Cayenne" SelfReg="false"/>
<ROW File="Cayman" Component_="Adak" FileName="Cayman" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Cayman" SelfReg="false"/>
<ROW File="Chicago" Component_="Adak" FileName="Chicago" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Chicago" SelfReg="false"/>
<ROW File="Chihuahua" Component_="Adak" FileName="CHIHUA~1|Chihuahua" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Chihuahua" SelfReg="false"/>
<ROW File="Coral_Harbour" Component_="Adak" FileName="CORAL_~1|Coral_Harbour" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Coral_Harbour" SelfReg="false"/>
<ROW File="Cordoba_1" Component_="Adak" FileName="Cordoba" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Cordoba" SelfReg="false"/>
<ROW File="Costa_Rica" Component_="Adak" FileName="COSTA_~1|Costa_Rica" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Costa_Rica" SelfReg="false"/>
<ROW File="Creston" Component_="Adak" FileName="Creston" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Creston" SelfReg="false"/>
<ROW File="Cuiaba" Component_="Adak" FileName="Cuiaba" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Cuiaba" SelfReg="false"/>
<ROW File="Curacao" Component_="Adak" FileName="Curacao" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Curacao" SelfReg="false"/>
<ROW File="Danmarkshavn" Component_="Adak" FileName="DANMAR~1|Danmarkshavn" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Danmarkshavn" SelfReg="false"/>
<ROW File="Dawson" Component_="Adak" FileName="Dawson" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Dawson" SelfReg="false"/>
<ROW File="Dawson_Creek" Component_="Adak" FileName="DAWSON~1|Dawson_Creek" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Dawson_Creek" SelfReg="false"/>
<ROW File="Denver" Component_="Adak" FileName="Denver" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Denver" SelfReg="false"/>
<ROW File="Detroit" Component_="Adak" FileName="Detroit" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Detroit" SelfReg="false"/>
<ROW File="Dominica" Component_="Adak" FileName="Dominica" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Dominica" SelfReg="false"/>
<ROW File="Edmonton" Component_="Adak" FileName="Edmonton" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Edmonton" SelfReg="false"/>
<ROW File="Eirunepe" Component_="Adak" FileName="Eirunepe" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Eirunepe" SelfReg="false"/>
<ROW File="El_Salvador" Component_="Adak" FileName="EL_SAL~1|El_Salvador" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\El_Salvador" SelfReg="false"/>
<ROW File="Ensenada" Component_="Adak" FileName="Ensenada" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Ensenada" SelfReg="false"/>
<ROW File="Fortaleza" Component_="Adak" FileName="FORTAL~1|Fortaleza" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Fortaleza" SelfReg="false"/>
<ROW File="Fort_Nelson" Component_="Adak" FileName="FORT_N~1|Fort_Nelson" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Fort_Nelson" SelfReg="false"/>
<ROW File="Fort_Wayne" Component_="Adak" FileName="FORT_W~1|Fort_Wayne" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Fort_Wayne" SelfReg="false"/>
<ROW File="Glace_Bay" Component_="Adak" FileName="GLACE_~1|Glace_Bay" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Glace_Bay" SelfReg="false"/>
<ROW File="Godthab" Component_="Adak" FileName="Godthab" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Godthab" SelfReg="false"/>
<ROW File="Goose_Bay" Component_="Adak" FileName="GOOSE_~1|Goose_Bay" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Goose_Bay" SelfReg="false"/>
<ROW File="Grand_Turk" Component_="Adak" FileName="GRAND_~1|Grand_Turk" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Grand_Turk" SelfReg="false"/>
<ROW File="Grenada" Component_="Adak" FileName="Grenada" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Grenada" SelfReg="false"/>
<ROW File="Guadeloupe" Component_="Adak" FileName="GUADEL~1|Guadeloupe" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Guadeloupe" SelfReg="false"/>
<ROW File="Guatemala" Component_="Adak" FileName="GUATEM~1|Guatemala" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Guatemala" SelfReg="false"/>
<ROW File="Guayaquil" Component_="Adak" FileName="GUAYAQ~1|Guayaquil" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Guayaquil" SelfReg="false"/>
<ROW File="Guyana" Component_="Adak" FileName="Guyana" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Guyana" SelfReg="false"/>
<ROW File="Halifax" Component_="Adak" FileName="Halifax" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Halifax" SelfReg="false"/>
<ROW File="Havana" Component_="Adak" FileName="Havana" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Havana" SelfReg="false"/>
<ROW File="Hermosillo" Component_="Adak" FileName="HERMOS~1|Hermosillo" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Hermosillo" SelfReg="false"/>
<ROW File="Indianapolis" Component_="Indianapolis" FileName="INDIAN~1|Indianapolis" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Indiana\Indianapolis" SelfReg="false"/>
<ROW File="Knox" Component_="Indianapolis" FileName="Knox" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Indiana\Knox" SelfReg="false"/>
<ROW File="Marengo" Component_="Indianapolis" FileName="Marengo" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Indiana\Marengo" SelfReg="false"/>
<ROW File="Petersburg" Component_="Indianapolis" FileName="PETERS~1|Petersburg" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Indiana\Petersburg" SelfReg="false"/>
<ROW File="Tell_City" Component_="Indianapolis" FileName="TELL_C~1|Tell_City" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Indiana\Tell_City" SelfReg="false"/>
<ROW File="Vevay" Component_="Indianapolis" FileName="Vevay" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Indiana\Vevay" SelfReg="false"/>
<ROW File="Vincennes" Component_="Indianapolis" FileName="VINCEN~1|Vincennes" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Indiana\Vincennes" SelfReg="false"/>
<ROW File="Winamac" Component_="Indianapolis" FileName="Winamac" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Indiana\Winamac" SelfReg="false"/>
<ROW File="Indianapolis_1" Component_="Adak" FileName="INDIAN~1|Indianapolis" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Indianapolis" SelfReg="false"/>
<ROW File="Inuvik" Component_="Adak" FileName="Inuvik" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Inuvik" SelfReg="false"/>
<ROW File="Iqaluit" Component_="Adak" FileName="Iqaluit" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Iqaluit" SelfReg="false"/>
<ROW File="Jamaica" Component_="Adak" FileName="Jamaica" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Jamaica" SelfReg="false"/>
<ROW File="Jujuy_1" Component_="Adak" FileName="Jujuy" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Jujuy" SelfReg="false"/>
<ROW File="Juneau" Component_="Adak" FileName="Juneau" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Juneau" SelfReg="false"/>
<ROW File="Louisville" Component_="Louisville" FileName="LOUISV~1|Louisville" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Kentucky\Louisville" SelfReg="false"/>
<ROW File="Monticello" Component_="Louisville" FileName="MONTIC~1|Monticello" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Kentucky\Monticello" SelfReg="false"/>
<ROW File="Knox_IN" Component_="Adak" FileName="Knox_IN" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Knox_IN" SelfReg="false"/>
<ROW File="Kralendijk" Component_="Adak" FileName="KRALEN~1|Kralendijk" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Kralendijk" SelfReg="false"/>
<ROW File="La_Paz" Component_="Adak" FileName="La_Paz" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\La_Paz" SelfReg="false"/>
<ROW File="Lima" Component_="Adak" FileName="Lima" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Lima" SelfReg="false"/>
<ROW File="Los_Angeles" Component_="Adak" FileName="LOS_AN~1|Los_Angeles" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Los_Angeles" SelfReg="false"/>
<ROW File="Louisville_1" Component_="Adak" FileName="LOUISV~1|Louisville" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Louisville" SelfReg="false"/>
<ROW File="Lower_Princes" Component_="Adak" FileName="LOWER_~1|Lower_Princes" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Lower_Princes" SelfReg="false"/>
<ROW File="Maceio" Component_="Adak" FileName="Maceio" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Maceio" SelfReg="false"/>
<ROW File="Managua" Component_="Adak" FileName="Managua" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Managua" SelfReg="false"/>
<ROW File="Manaus" Component_="Adak" FileName="Manaus" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Manaus" SelfReg="false"/>
<ROW File="Marigot" Component_="Adak" FileName="Marigot" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Marigot" SelfReg="false"/>
<ROW File="Martinique" Component_="Adak" FileName="MARTIN~1|Martinique" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Martinique" SelfReg="false"/>
<ROW File="Matamoros" Component_="Adak" FileName="MATAMO~1|Matamoros" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Matamoros" SelfReg="false"/>
<ROW File="Mazatlan" Component_="Adak" FileName="Mazatlan" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Mazatlan" SelfReg="false"/>
<ROW File="Mendoza_1" Component_="Adak" FileName="Mendoza" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Mendoza" SelfReg="false"/>
<ROW File="Menominee" Component_="Adak" FileName="MENOMI~1|Menominee" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Menominee" SelfReg="false"/>
<ROW File="Merida" Component_="Adak" FileName="Merida" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Merida" SelfReg="false"/>
<ROW File="Metlakatla" Component_="Adak" FileName="METLAK~1|Metlakatla" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Metlakatla" SelfReg="false"/>
<ROW File="Mexico_City" Component_="Adak" FileName="MEXICO~1|Mexico_City" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Mexico_City" SelfReg="false"/>
<ROW File="Miquelon" Component_="Adak" FileName="Miquelon" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Miquelon" SelfReg="false"/>
<ROW File="Moncton" Component_="Adak" FileName="Moncton" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Moncton" SelfReg="false"/>
<ROW File="Monterrey" Component_="Adak" FileName="MONTER~1|Monterrey" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Monterrey" SelfReg="false"/>
<ROW File="Montevideo" Component_="Adak" FileName="MONTEV~1|Montevideo" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Montevideo" SelfReg="false"/>
<ROW File="Montreal" Component_="Adak" FileName="Montreal" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Montreal" SelfReg="false"/>
<ROW File="Montserrat" Component_="Adak" FileName="MONTSE~1|Montserrat" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Montserrat" SelfReg="false"/>
<ROW File="Nassau" Component_="Adak" FileName="Nassau" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Nassau" SelfReg="false"/>
<ROW File="New_York" Component_="Adak" FileName="New_York" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\New_York" SelfReg="false"/>
<ROW File="Nipigon" Component_="Adak" FileName="Nipigon" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Nipigon" SelfReg="false"/>
<ROW File="Nome" Component_="Adak" FileName="Nome" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Nome" SelfReg="false"/>
<ROW File="Noronha" Component_="Adak" FileName="Noronha" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Noronha" SelfReg="false"/>
<ROW File="Beulah" Component_="Beulah" FileName="Beulah" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\North_Dakota\Beulah" SelfReg="false"/>
<ROW File="Center" Component_="Beulah" FileName="Center" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\North_Dakota\Center" SelfReg="false"/>
<ROW File="New_Salem" Component_="Beulah" FileName="NEW_SA~1|New_Salem" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\North_Dakota\New_Salem" SelfReg="false"/>
<ROW File="Ojinaga" Component_="Adak" FileName="Ojinaga" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Ojinaga" SelfReg="false"/>
<ROW File="Panama" Component_="Adak" FileName="Panama" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Panama" SelfReg="false"/>
<ROW File="Pangnirtung" Component_="Adak" FileName="PANGNI~1|Pangnirtung" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Pangnirtung" SelfReg="false"/>
<ROW File="Paramaribo" Component_="Adak" FileName="PARAMA~1|Paramaribo" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Paramaribo" SelfReg="false"/>
<ROW File="Phoenix" Component_="Adak" FileName="Phoenix" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Phoenix" SelfReg="false"/>
<ROW File="PortauPrince" Component_="Adak" FileName="PORT-A~1|Port-au-Prince" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Port-au-Prince" SelfReg="false"/>
<ROW File="Porto_Acre" Component_="Adak" FileName="PORTO_~1|Porto_Acre" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Porto_Acre" SelfReg="false"/>
<ROW File="Porto_Velho" Component_="Adak" FileName="PORTO_~2|Porto_Velho" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Porto_Velho" SelfReg="false"/>
<ROW File="Port_of_Spain" Component_="Adak" FileName="PORT_O~1|Port_of_Spain" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Port_of_Spain" SelfReg="false"/>
<ROW File="Puerto_Rico" Component_="Adak" FileName="PUERTO~1|Puerto_Rico" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Puerto_Rico" SelfReg="false"/>
<ROW File="Punta_Arenas" Component_="Adak" FileName="PUNTA_~1|Punta_Arenas" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Punta_Arenas" SelfReg="false"/>
<ROW File="Rainy_River" Component_="Adak" FileName="RAINY_~1|Rainy_River" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Rainy_River" SelfReg="false"/>
<ROW File="Rankin_Inlet" Component_="Adak" FileName="RANKIN~1|Rankin_Inlet" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Rankin_Inlet" SelfReg="false"/>
<ROW File="Recife" Component_="Adak" FileName="Recife" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Recife" SelfReg="false"/>
<ROW File="Regina" Component_="Adak" FileName="Regina" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Regina" SelfReg="false"/>
<ROW File="Resolute" Component_="Adak" FileName="Resolute" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Resolute" SelfReg="false"/>
<ROW File="Rio_Branco" Component_="Adak" FileName="RIO_BR~1|Rio_Branco" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Rio_Branco" SelfReg="false"/>
<ROW File="Rosario" Component_="Adak" FileName="Rosario" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Rosario" SelfReg="false"/>
<ROW File="Santarem" Component_="Adak" FileName="Santarem" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Santarem" SelfReg="false"/>
<ROW File="Santa_Isabel" Component_="Adak" FileName="SANTA_~1|Santa_Isabel" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Santa_Isabel" SelfReg="false"/>
<ROW File="Santiago" Component_="Adak" FileName="Santiago" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Santiago" SelfReg="false"/>
<ROW File="Santo_Domingo" Component_="Adak" FileName="SANTO_~1|Santo_Domingo" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Santo_Domingo" SelfReg="false"/>
<ROW File="Sao_Paulo" Component_="Adak" FileName="SAO_PA~1|Sao_Paulo" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Sao_Paulo" SelfReg="false"/>
<ROW File="Scoresbysund" Component_="Adak" FileName="SCORES~1|Scoresbysund" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Scoresbysund" SelfReg="false"/>
<ROW File="Shiprock" Component_="Adak" FileName="Shiprock" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Shiprock" SelfReg="false"/>
<ROW File="Sitka" Component_="Adak" FileName="Sitka" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Sitka" SelfReg="false"/>
<ROW File="St_Barthelemy" Component_="Adak" FileName="ST_BAR~1|St_Barthelemy" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\St_Barthelemy" SelfReg="false"/>
<ROW File="St_Johns" Component_="Adak" FileName="St_Johns" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\St_Johns" SelfReg="false"/>
<ROW File="St_Kitts" Component_="Adak" FileName="St_Kitts" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\St_Kitts" SelfReg="false"/>
<ROW File="St_Lucia" Component_="Adak" FileName="St_Lucia" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\St_Lucia" SelfReg="false"/>
<ROW File="St_Thomas" Component_="Adak" FileName="ST_THO~1|St_Thomas" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\St_Thomas" SelfReg="false"/>
<ROW File="St_Vincent" Component_="Adak" FileName="ST_VIN~1|St_Vincent" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\St_Vincent" SelfReg="false"/>
<ROW File="Swift_Current" Component_="Adak" FileName="SWIFT_~1|Swift_Current" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Swift_Current" SelfReg="false"/>
<ROW File="Tegucigalpa" Component_="Adak" FileName="TEGUCI~1|Tegucigalpa" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Tegucigalpa" SelfReg="false"/>
<ROW File="Thule" Component_="Adak" FileName="Thule" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Thule" SelfReg="false"/>
<ROW File="Thunder_Bay" Component_="Adak" FileName="THUNDE~1|Thunder_Bay" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Thunder_Bay" SelfReg="false"/>
<ROW File="Tijuana" Component_="Adak" FileName="Tijuana" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Tijuana" SelfReg="false"/>
<ROW File="Toronto" Component_="Adak" FileName="Toronto" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Toronto" SelfReg="false"/>
<ROW File="Tortola" Component_="Adak" FileName="Tortola" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Tortola" SelfReg="false"/>
<ROW File="Vancouver" Component_="Adak" FileName="VANCOU~1|Vancouver" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Vancouver" SelfReg="false"/>
<ROW File="Virgin" Component_="Adak" FileName="Virgin" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Virgin" SelfReg="false"/>
<ROW File="Whitehorse" Component_="Adak" FileName="WHITEH~1|Whitehorse" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Whitehorse" SelfReg="false"/>
<ROW File="Winnipeg" Component_="Adak" FileName="Winnipeg" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Winnipeg" SelfReg="false"/>
<ROW File="Yakutat" Component_="Adak" FileName="Yakutat" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Yakutat" SelfReg="false"/>
<ROW File="Yellowknife" Component_="Adak" FileName="YELLOW~1|Yellowknife" Attributes="0" SourcePath="L2-easy\tcl\tzdata\America\Yellowknife" SelfReg="false"/>
<ROW File="Casey" Component_="Casey" FileName="Casey" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Antarctica\Casey" SelfReg="false"/>
<ROW File="Davis" Component_="Casey" FileName="Davis" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Antarctica\Davis" SelfReg="false"/>
<ROW File="DumontDUrville" Component_="Casey" FileName="DUMONT~1|DumontDUrville" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Antarctica\DumontDUrville" SelfReg="false"/>
<ROW File="Macquarie" Component_="Casey" FileName="MACQUA~1|Macquarie" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Antarctica\Macquarie" SelfReg="false"/>
<ROW File="Mawson" Component_="Casey" FileName="Mawson" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Antarctica\Mawson" SelfReg="false"/>
<ROW File="McMurdo" Component_="Casey" FileName="McMurdo" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Antarctica\McMurdo" SelfReg="false"/>
<ROW File="Palmer" Component_="Casey" FileName="Palmer" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Antarctica\Palmer" SelfReg="false"/>
<ROW File="Rothera" Component_="Casey" FileName="Rothera" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Antarctica\Rothera" SelfReg="false"/>
<ROW File="South_Pole" Component_="Casey" FileName="SOUTH_~1|South_Pole" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Antarctica\South_Pole" SelfReg="false"/>
<ROW File="Syowa" Component_="Casey" FileName="Syowa" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Antarctica\Syowa" SelfReg="false"/>
<ROW File="Troll" Component_="Casey" FileName="Troll" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Antarctica\Troll" SelfReg="false"/>
<ROW File="Vostok" Component_="Casey" FileName="Vostok" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Antarctica\Vostok" SelfReg="false"/>
<ROW File="Longyearbyen" Component_="Longyearbyen" FileName="LONGYE~1|Longyearbyen" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Arctic\Longyearbyen" SelfReg="false"/>
<ROW File="Aden" Component_="Aden" FileName="Aden" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Aden" SelfReg="false"/>
<ROW File="Almaty" Component_="Aden" FileName="Almaty" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Almaty" SelfReg="false"/>
<ROW File="Amman" Component_="Aden" FileName="Amman" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Amman" SelfReg="false"/>
<ROW File="Anadyr" Component_="Aden" FileName="Anadyr" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Anadyr" SelfReg="false"/>
<ROW File="Aqtau" Component_="Aden" FileName="Aqtau" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Aqtau" SelfReg="false"/>
<ROW File="Aqtobe" Component_="Aden" FileName="Aqtobe" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Aqtobe" SelfReg="false"/>
<ROW File="Ashgabat" Component_="Aden" FileName="Ashgabat" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Ashgabat" SelfReg="false"/>
<ROW File="Ashkhabad" Component_="Aden" FileName="ASHKHA~1|Ashkhabad" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Ashkhabad" SelfReg="false"/>
<ROW File="Atyrau" Component_="Aden" FileName="Atyrau" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Atyrau" SelfReg="false"/>
<ROW File="Baghdad" Component_="Aden" FileName="Baghdad" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Baghdad" SelfReg="false"/>
<ROW File="Bahrain" Component_="Aden" FileName="Bahrain" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Bahrain" SelfReg="false"/>
<ROW File="Baku" Component_="Aden" FileName="Baku" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Baku" SelfReg="false"/>
<ROW File="Bangkok" Component_="Aden" FileName="Bangkok" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Bangkok" SelfReg="false"/>
<ROW File="Barnaul" Component_="Aden" FileName="Barnaul" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Barnaul" SelfReg="false"/>
<ROW File="Beirut" Component_="Aden" FileName="Beirut" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Beirut" SelfReg="false"/>
<ROW File="Bishkek" Component_="Aden" FileName="Bishkek" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Bishkek" SelfReg="false"/>
<ROW File="Brunei" Component_="Aden" FileName="Brunei" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Brunei" SelfReg="false"/>
<ROW File="Calcutta" Component_="Aden" FileName="Calcutta" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Calcutta" SelfReg="false"/>
<ROW File="Chita" Component_="Aden" FileName="Chita" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Chita" SelfReg="false"/>
<ROW File="Choibalsan" Component_="Aden" FileName="CHOIBA~1|Choibalsan" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Choibalsan" SelfReg="false"/>
<ROW File="Chongqing" Component_="Aden" FileName="CHONGQ~1|Chongqing" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Chongqing" SelfReg="false"/>
<ROW File="Chungking" Component_="Aden" FileName="CHUNGK~1|Chungking" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Chungking" SelfReg="false"/>
<ROW File="Colombo" Component_="Aden" FileName="Colombo" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Colombo" SelfReg="false"/>
<ROW File="Dacca" Component_="Aden" FileName="Dacca" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Dacca" SelfReg="false"/>
<ROW File="Damascus" Component_="Aden" FileName="Damascus" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Damascus" SelfReg="false"/>
<ROW File="Dhaka" Component_="Aden" FileName="Dhaka" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Dhaka" SelfReg="false"/>
<ROW File="Dili" Component_="Aden" FileName="Dili" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Dili" SelfReg="false"/>
<ROW File="Dubai" Component_="Aden" FileName="Dubai" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Dubai" SelfReg="false"/>
<ROW File="Dushanbe" Component_="Aden" FileName="Dushanbe" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Dushanbe" SelfReg="false"/>
<ROW File="Famagusta" Component_="Aden" FileName="FAMAGU~1|Famagusta" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Famagusta" SelfReg="false"/>
<ROW File="Gaza" Component_="Aden" FileName="Gaza" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Gaza" SelfReg="false"/>
<ROW File="Harbin" Component_="Aden" FileName="Harbin" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Harbin" SelfReg="false"/>
<ROW File="Hebron" Component_="Aden" FileName="Hebron" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Hebron" SelfReg="false"/>
<ROW File="Hong_Kong" Component_="Aden" FileName="HONG_K~1|Hong_Kong" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Hong_Kong" SelfReg="false"/>
<ROW File="Hovd" Component_="Aden" FileName="Hovd" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Hovd" SelfReg="false"/>
<ROW File="Ho_Chi_Minh" Component_="Aden" FileName="HO_CHI~1|Ho_Chi_Minh" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Ho_Chi_Minh" SelfReg="false"/>
<ROW File="Irkutsk" Component_="Aden" FileName="Irkutsk" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Irkutsk" SelfReg="false"/>
<ROW File="Istanbul" Component_="Aden" FileName="Istanbul" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Istanbul" SelfReg="false"/>
<ROW File="Jakarta" Component_="Aden" FileName="Jakarta" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Jakarta" SelfReg="false"/>
<ROW File="Jayapura" Component_="Aden" FileName="Jayapura" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Jayapura" SelfReg="false"/>
<ROW File="Jerusalem" Component_="Aden" FileName="JERUSA~1|Jerusalem" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Jerusalem" SelfReg="false"/>
<ROW File="Kabul" Component_="Aden" FileName="Kabul" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Kabul" SelfReg="false"/>
<ROW File="Kamchatka" Component_="Aden" FileName="KAMCHA~1|Kamchatka" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Kamchatka" SelfReg="false"/>
<ROW File="Karachi" Component_="Aden" FileName="Karachi" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Karachi" SelfReg="false"/>
<ROW File="Kashgar" Component_="Aden" FileName="Kashgar" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Kashgar" SelfReg="false"/>
<ROW File="Kathmandu" Component_="Aden" FileName="KATHMA~1|Kathmandu" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Kathmandu" SelfReg="false"/>
<ROW File="Katmandu" Component_="Aden" FileName="Katmandu" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Katmandu" SelfReg="false"/>
<ROW File="Khandyga" Component_="Aden" FileName="Khandyga" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Khandyga" SelfReg="false"/>
<ROW File="Kolkata" Component_="Aden" FileName="Kolkata" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Kolkata" SelfReg="false"/>
<ROW File="Krasnoyarsk" Component_="Aden" FileName="KRASNO~1|Krasnoyarsk" Attributes="0" SourcePath="L2-easy\tcl\tzdata\Asia\Krasnoyarsk" SelfReg="false"/>