-
Notifications
You must be signed in to change notification settings - Fork 1
/
PyPew.aip
executable file
·1258 lines (1258 loc) · 180 KB
/
PyPew.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="19.3" version="19.3" Modules="simple" RootPath="." Language="en" Id="{BE15D76D-0B00-4C60-ADFA-E079F4DE020A}">
<COMPONENT cid="caphyon.advinst.msicomp.ProjectOptionsComponent">
<ROW Name="HiddenItems" Value="AppXProductDetailsComponent;AppXDependenciesComponent;AppXAppDetailsComponent;AppXVisualAssetsComponent;AppXCapabilitiesComponent;AppXAppDeclarationsComponent;AppXUriRulesComponent;DigCertStoreComponent;MsiAssemblyComponent;MsiClassComponent;MsiServInstComponent;MsiExtComponent;TilesComponent;MsiOrgComponent;FixupComponent;MsiXDiffComponent;MsixManifestEditorComponent;MsiThemeComponent;BackgroundImagesComponent;UpdaterComponent;SerValComponent;MsiInstExSeqComponent;DictionaryComponent;MsiAppSearchComponent;MsiOdbcDataSrcComponent;CPLAppletComponent;ActSyncAppComponent;PreReqComponent;WebApplicationsComponent;MsiJavaComponent;MsiDriverPackagesComponent;UserAccountsComponent;ScheduledTasksComponent;SqlConnectionComponent;AutorunComponent;FirewallExceptionComponent;GameUxComponent;MsiDirectEditorComponent;SharePointSlnComponent;SilverlightSlnComponent;MultipleInstancesComponent;SccmComponent;TilesComponent;ActSyncAppComponent;AutorunComponent;CPLAppletComponent;GameUxComponent;SilverlightSlnComponent"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.MsiPropsComponent">
<ROW Property="AI_BITMAP_DISPLAY_MODE" Value="0"/>
<ROW Property="AI_CURRENT_YEAR" Value="2022" ValueLocId="-"/>
<ROW Property="ALLUSERS" Value="1"/>
<ROW Property="ARPCOMMENTS" Value="This installer database contains the logic and data required to install [|ProductName]." ValueLocId="*"/>
<ROW Property="ARPCONTACT" Value="[email protected]"/>
<ROW Property="ARPHELPLINK" Value="https://github.com/jftsang/pypew"/>
<ROW Property="ARPPRODUCTICON" Value="pypew.exe" Type="8"/>
<ROW Property="Manufacturer" Value="J. M. F. Tsang"/>
<ROW Property="ProductCode" Value="1033:{7E61B169-EBFF-487E-BB8E-245CCF956710} " Type="16"/>
<ROW Property="ProductLanguage" Value="1033"/>
<ROW Property="ProductName" Value="PyPew"/>
<ROW Property="ProductVersion" Value="0.0.0"/>
<ROW Property="SecureCustomProperties" Value="OLDPRODUCTS;AI_NEWERPRODUCTFOUND"/>
<ROW Property="UpgradeCode" Value="{DDA08555-B076-42BF-B140-05522DDA14C4}"/>
<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="zoneinfo_Dir" DefaultDir="Africa"/>
<ROW Directory="America_Dir" Directory_Parent="zoneinfo_Dir" DefaultDir="America"/>
<ROW Directory="Antarctica_Dir" Directory_Parent="zoneinfo_Dir" DefaultDir="ANTARC~1|Antarctica"/>
<ROW Directory="Arctic_Dir" Directory_Parent="zoneinfo_Dir" DefaultDir="Arctic"/>
<ROW Directory="Argentina_Dir" Directory_Parent="America_Dir" DefaultDir="ARGENT~1|Argentina"/>
<ROW Directory="Asia_Dir" Directory_Parent="zoneinfo_Dir" DefaultDir="Asia"/>
<ROW Directory="Atlantic_Dir" Directory_Parent="zoneinfo_Dir" DefaultDir="Atlantic"/>
<ROW Directory="Australia_Dir" Directory_Parent="zoneinfo_Dir" DefaultDir="AUSTRA~1|Australia"/>
<ROW Directory="Brazil_Dir" Directory_Parent="zoneinfo_Dir" DefaultDir="Brazil"/>
<ROW Directory="Canada_Dir" Directory_Parent="zoneinfo_Dir" DefaultDir="Canada"/>
<ROW Directory="Chile_Dir" Directory_Parent="zoneinfo_Dir" DefaultDir="Chile"/>
<ROW Directory="Etc_Dir" Directory_Parent="zoneinfo_Dir" DefaultDir="Etc"/>
<ROW Directory="Europe_Dir" Directory_Parent="zoneinfo_Dir" DefaultDir="Europe"/>
<ROW Directory="Indian_Dir" Directory_Parent="zoneinfo_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="Mexico_Dir" Directory_Parent="zoneinfo_Dir" DefaultDir="Mexico"/>
<ROW Directory="North_Dakota_Dir" Directory_Parent="America_Dir" DefaultDir="NORTH_~1|North_Dakota"/>
<ROW Directory="Pacific_Dir" Directory_Parent="zoneinfo_Dir" DefaultDir="Pacific"/>
<ROW Directory="SHORTCUTDIR" Directory_Parent="TARGETDIR" DefaultDir="SHORTC~1|SHORTCUTDIR" IsPseudoRoot="1"/>
<ROW Directory="TARGETDIR" DefaultDir="SourceDir"/>
<ROW Directory="US_Dir" Directory_Parent="zoneinfo_Dir" DefaultDir="US"/>
<ROW Directory="_libs_Dir" Directory_Parent="pandas_Dir" DefaultDir="_libs"/>
<ROW Directory="altgraph0.17.2.distinfo_Dir" Directory_Parent="pypew_Dir" DefaultDir="ALTGRA~1.DIS|altgraph-0.17.2.dist-info"/>
<ROW Directory="core_Dir" Directory_Parent="numpy_Dir" DefaultDir="core"/>
<ROW Directory="data_Dir" Directory_Parent="pypew_Dir" DefaultDir="data"/>
<ROW Directory="docx2pdf0.1.8.distinfo_Dir" Directory_Parent="pypew_Dir" DefaultDir="DOCX2P~1.DIS|docx2pdf-0.1.8.dist-info"/>
<ROW Directory="docx2pdf_Dir" Directory_Parent="pypew_Dir" DefaultDir="docx2pdf"/>
<ROW Directory="docx_Dir" Directory_Parent="pypew_Dir" DefaultDir="docx"/>
<ROW Directory="favicon_io_Dir" Directory_Parent="static_Dir" DefaultDir="FAVICO~1|favicon_io"/>
<ROW Directory="fft_Dir" Directory_Parent="numpy_Dir" DefaultDir="fft"/>
<ROW Directory="formats_Dir" Directory_Parent="io_Dir" DefaultDir="formats"/>
<ROW Directory="html_Dir" Directory_Parent="lxml_Dir" DefaultDir="html"/>
<ROW Directory="io_Dir" Directory_Parent="pandas_Dir" DefaultDir="io"/>
<ROW Directory="isoschematron_Dir" Directory_Parent="lxml_Dir" DefaultDir="ISOSCH~1|isoschematron"/>
<ROW Directory="isoschematronxslt1_Dir" Directory_Parent="xsl_Dir" DefaultDir="ISO-SC~1|iso-schematron-xslt1"/>
<ROW Directory="linalg_Dir" Directory_Parent="numpy_Dir" DefaultDir="linalg"/>
<ROW Directory="lxml_Dir" Directory_Parent="pypew_Dir" DefaultDir="lxml"/>
<ROW Directory="markupsafe_Dir" Directory_Parent="pypew_Dir" DefaultDir="MARKUP~1|markupsafe"/>
<ROW Directory="numpy_Dir" Directory_Parent="pypew_Dir" DefaultDir="numpy"/>
<ROW Directory="pandas_Dir" Directory_Parent="pypew_Dir" DefaultDir="pandas"/>
<ROW Directory="pip21.1.2.distinfo_Dir" Directory_Parent="pypew_Dir" DefaultDir="PIP-21~1.DIS|pip-21.1.2.dist-info"/>
<ROW Directory="pyinstaller4.10.distinfo_Dir" Directory_Parent="pypew_Dir" DefaultDir="PYINST~1.DIS|pyinstaller-4.10.dist-info"/>
<ROW Directory="pypew_Dir" Directory_Parent="APPDIR" DefaultDir="pypew"/>
<ROW Directory="pytz_Dir" Directory_Parent="pypew_Dir" DefaultDir="pytz"/>
<ROW Directory="random_Dir" Directory_Parent="numpy_Dir" DefaultDir="random"/>
<ROW Directory="resources_Dir" Directory_Parent="isoschematron_Dir" DefaultDir="RESOUR~1|resources"/>
<ROW Directory="rng_Dir" Directory_Parent="resources_Dir" DefaultDir="rng"/>
<ROW Directory="sas_Dir" Directory_Parent="io_Dir" DefaultDir="sas"/>
<ROW Directory="setuptools50.3.2.distinfo_Dir" Directory_Parent="pypew_Dir" DefaultDir="SETUPT~1.DIS|setuptools-50.3.2.dist-info"/>
<ROW Directory="shell_Dir" Directory_Parent="win32com_Dir" DefaultDir="shell"/>
<ROW Directory="static_Dir" Directory_Parent="pypew_Dir" DefaultDir="static"/>
<ROW Directory="templates_1_Dir" Directory_Parent="formats_Dir" DefaultDir="TEMPLA~1|templates"/>
<ROW Directory="templates_2_Dir" Directory_Parent="pypew_Dir" DefaultDir="TEMPLA~1|templates"/>
<ROW Directory="templates_Dir" Directory_Parent="docx_Dir" DefaultDir="TEMPLA~1|templates"/>
<ROW Directory="tslibs_Dir" Directory_Parent="_libs_Dir" DefaultDir="tslibs"/>
<ROW Directory="wheel0.36.2.distinfo_Dir" Directory_Parent="pypew_Dir" DefaultDir="WHEEL-~1.DIS|wheel-0.36.2.dist-info"/>
<ROW Directory="win32com_Dir" Directory_Parent="pypew_Dir" DefaultDir="win32com"/>
<ROW Directory="window_Dir" Directory_Parent="_libs_Dir" DefaultDir="window"/>
<ROW Directory="xsl_Dir" Directory_Parent="resources_Dir" DefaultDir="xsl"/>
<ROW Directory="zoneinfo_Dir" Directory_Parent="pytz_Dir" DefaultDir="zoneinfo"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.MsiCompsComponent">
<ROW Component="ACT" ComponentId="{931C1C0C-2A03-4702-BFA8-8D8312AEA759}" Directory_="Australia_Dir" Attributes="0" KeyPath="ACT" Type="0"/>
<ROW Component="APPDIR" ComponentId="{67772AFB-95DA-4B7D-994B-DFC97983D84C}" Directory_="APPDIR" Attributes="0"/>
<ROW Component="Abidjan" ComponentId="{850C86E3-0259-4816-BE68-5E581F3395A6}" Directory_="Africa_Dir" Attributes="0" KeyPath="Abidjan" Type="0"/>
<ROW Component="Acre" ComponentId="{917A3FE4-A742-422F-97DB-78DAAE56EFB6}" Directory_="Brazil_Dir" Attributes="0" KeyPath="Acre" Type="0"/>
<ROW Component="Adak" ComponentId="{C99AA151-817C-4A2C-B4E7-A4AC524E8C7B}" Directory_="America_Dir" Attributes="0" KeyPath="Adak" Type="0"/>
<ROW Component="Aden" ComponentId="{199686C3-5B35-4031-BCA6-9EDB40D3A298}" Directory_="Asia_Dir" Attributes="0" KeyPath="Aden" Type="0"/>
<ROW Component="Alaska" ComponentId="{F6D129DD-02F9-4A9E-B4A8-18322003C232}" Directory_="US_Dir" Attributes="0" KeyPath="Alaska" Type="0"/>
<ROW Component="Amsterdam" ComponentId="{2CE04800-D802-43DA-9DD9-66F13DCE8E2D}" Directory_="Europe_Dir" Attributes="0" KeyPath="Amsterdam" Type="0"/>
<ROW Component="Antananarivo" ComponentId="{3AA9069E-1840-4399-9570-01FE16E9EB78}" Directory_="Indian_Dir" Attributes="0" KeyPath="Antananarivo" Type="0"/>
<ROW Component="Apia" ComponentId="{3BBC9719-925C-431B-B351-5D0D77968BA7}" Directory_="Pacific_Dir" Attributes="0" KeyPath="Apia" Type="0"/>
<ROW Component="Atlantic" ComponentId="{C53B96C3-F930-4174-8A2A-24255BA7CE0C}" Directory_="Canada_Dir" Attributes="0" KeyPath="Atlantic" Type="0"/>
<ROW Component="Azores" ComponentId="{CB652D2F-B8E7-4C60-9D80-C37A103F52EE}" Directory_="Atlantic_Dir" Attributes="0" KeyPath="Azores" Type="0"/>
<ROW Component="BajaNorte" ComponentId="{A877F7B7-9538-4BAF-A8F4-3158D063B781}" Directory_="Mexico_Dir" Attributes="0" KeyPath="BajaNorte" Type="0"/>
<ROW Component="Beulah" ComponentId="{7BFFB700-E797-49BB-8171-4E238BEE1E4F}" Directory_="North_Dakota_Dir" Attributes="0" KeyPath="Beulah" Type="0"/>
<ROW Component="Buenos_Aires" ComponentId="{EFD1A67B-8A26-4179-885D-04FD9963956D}" Directory_="Argentina_Dir" Attributes="0" KeyPath="Buenos_Aires" Type="0"/>
<ROW Component="CET" ComponentId="{19BBADCA-72CD-4817-A24C-267061795F7A}" Directory_="zoneinfo_Dir" Attributes="0" KeyPath="CET" Type="0"/>
<ROW Component="COPYING.txt" ComponentId="{47C145E9-9B1E-42BA-9CCE-FAB05EF5832E}" Directory_="pyinstaller4.10.distinfo_Dir" Attributes="0" KeyPath="COPYING.txt" Type="0"/>
<ROW Component="Casey" ComponentId="{6E51390F-A37A-4B7C-ABE0-36F6503D40E1}" Directory_="Antarctica_Dir" Attributes="0" KeyPath="Casey" Type="0"/>
<ROW Component="Clemens_Romanus.jpg" ComponentId="{D78C26D9-719D-4D97-AC69-D4678A4580E7}" Directory_="static_Dir" Attributes="0" KeyPath="Clemens_Romanus.jpg" Type="0"/>
<ROW Component="Continental" ComponentId="{1A225E10-D672-46C6-BC0C-138E35752E7C}" Directory_="Chile_Dir" Attributes="0" KeyPath="Continental" Type="0"/>
<ROW Component="GMT" ComponentId="{A5E548F9-905D-4CC0-A9E7-98B601EE61DC}" Directory_="Etc_Dir" Attributes="0" KeyPath="GMT" Type="0"/>
<ROW Component="INSTALLER" ComponentId="{3BA91E0E-72E4-440E-9ACF-602447533A9B}" Directory_="altgraph0.17.2.distinfo_Dir" Attributes="0" KeyPath="INSTALLER" Type="0"/>
<ROW Component="Indianapolis" ComponentId="{8B5E12BF-7D40-48C3-97AA-823919AC1E2D}" Directory_="Indiana_Dir" Attributes="0" KeyPath="Indianapolis" Type="0"/>
<ROW Component="Longyearbyen" ComponentId="{50A511E4-7B6B-4EC9-8DDB-A33FCB39543F}" Directory_="Arctic_Dir" Attributes="0" KeyPath="Longyearbyen" Type="0"/>
<ROW Component="Louisville" ComponentId="{892965F2-651D-42E1-942A-E4DDEA74A759}" Directory_="Kentucky_Dir" Attributes="0" KeyPath="Louisville" Type="0"/>
<ROW Component="MSVCP140.dll" ComponentId="{C0C3AD1C-EA70-4D97-B642-BF75931C4958}" Directory_="pypew_Dir" Attributes="256" KeyPath="MSVCP140.dll"/>
<ROW Component="ProductInformation" ComponentId="{AD877201-D4F1-43A5-AFF3-4C7C19CC0FA4}" Directory_="APPDIR" Attributes="4" KeyPath="Version"/>
<ROW Component="RNG2Schtrn.xsl" ComponentId="{09A0DD42-CEE0-4AB9-9388-5BBCFCDD8336}" Directory_="xsl_Dir" Attributes="0" KeyPath="RNG2Schtrn.xsl" Type="0"/>
<ROW Component="SHORTCUTDIR" ComponentId="{BD537495-0BE0-4DCF-97A7-AD278728E0A7}" Directory_="SHORTCUTDIR" Attributes="0"/>
<ROW Component="VCRUNTIME140.dll" ComponentId="{39E8FF3B-79BF-476F-9552-E56A3709ABF2}" Directory_="pypew_Dir" Attributes="256" KeyPath="VCRUNTIME140.dll"/>
<ROW Component="_multiarray_tests.cp39win_amd64.pyd" ComponentId="{CDD81DFB-0891-4ECB-9BF8-6AB42C4A0BD1}" Directory_="core_Dir" Attributes="256" KeyPath="_multiarray_tests.cp39win_amd64.pyd" Type="0"/>
<ROW Component="_pocketfft_internal.cp39win_amd64.pyd" ComponentId="{C8EAF426-B80C-4CFF-B57A-990E11377E2E}" Directory_="fft_Dir" Attributes="256" KeyPath="_pocketfft_internal.cp39win_amd64.pyd" Type="0"/>
<ROW Component="_sas.cp39win_amd64.pyd" ComponentId="{7736959A-5522-474A-9606-D5133DB62B02}" Directory_="sas_Dir" Attributes="256" KeyPath="_sas.cp39win_amd64.pyd" Type="0"/>
<ROW Component="_speedups.cp39win_amd64.pyd" ComponentId="{E1E1F6BB-ED11-4B06-ABD1-13D8CEEF9FD0}" Directory_="markupsafe_Dir" Attributes="256" KeyPath="_speedups.cp39win_amd64.pyd" Type="0"/>
<ROW Component="aggregations.cp39win_amd64.pyd" ComponentId="{C6285CF4-E96E-44BC-90DC-97F49AAC2C5C}" Directory_="window_Dir" Attributes="256" KeyPath="aggregations.cp39win_amd64.pyd" Type="0"/>
<ROW Component="algos.cp39win_amd64.pyd" ComponentId="{0B82FCF4-5982-440C-8CA4-0EA81276192F}" Directory_="_libs_Dir" Attributes="256" KeyPath="algos.cp39win_amd64.pyd" Type="0"/>
<ROW Component="androidchrome192x192.png" ComponentId="{A4367202-CD66-45B8-8655-3F8D833F4696}" Directory_="favicon_io_Dir" Attributes="0" KeyPath="androidchrome192x192.png" Type="0"/>
<ROW Component="apimswincoreconsolel110.dll" ComponentId="{6686717B-91FA-4280-95F1-D37A8CA01181}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincoreconsolel110.dll"/>
<ROW Component="apimswincoredatetimel110.dll" ComponentId="{CA5490F8-09E3-452F-B835-F854A0627FB2}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincoredatetimel110.dll"/>
<ROW Component="apimswincoredebugl110.dll" ComponentId="{E853A1A8-BA89-4A08-9E26-AADB51D11AA0}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincoredebugl110.dll"/>
<ROW Component="apimswincoreerrorhandlingl110.dll" ComponentId="{C3DE4ECF-5BED-4CE3-83FE-BD82F2AEE712}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincoreerrorhandlingl110.dll"/>
<ROW Component="apimswincorefilel110.dll" ComponentId="{75E3505E-ECCB-4A47-957A-BA2C842BA863}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincorefilel110.dll"/>
<ROW Component="apimswincorefilel120.dll" ComponentId="{EAE9CE04-84AE-468E-AF80-F1F44C54B93D}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincorefilel120.dll"/>
<ROW Component="apimswincorefilel210.dll" ComponentId="{ED23B2E8-D185-4B0F-980E-CF556C09ACE2}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincorefilel210.dll"/>
<ROW Component="apimswincorehandlel110.dll" ComponentId="{8AFC2081-BF9E-401B-8CB8-FCC7A8E7A37C}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincorehandlel110.dll"/>
<ROW Component="apimswincoreheapl110.dll" ComponentId="{4C6D982B-A720-41DB-AAFD-07AC548763CE}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincoreheapl110.dll"/>
<ROW Component="apimswincoreinterlockedl110.dll" ComponentId="{7095B8DA-BF48-4BA2-BC24-48E2ED7499AF}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincoreinterlockedl110.dll"/>
<ROW Component="apimswincorelibraryloaderl110.dll" ComponentId="{70C8DCB9-6186-4672-92F2-988A891CF1D1}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincorelibraryloaderl110.dll"/>
<ROW Component="apimswincorelocalizationl120.dll" ComponentId="{00A030A6-97E0-4198-A20C-5B029A1ABF87}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincorelocalizationl120.dll"/>
<ROW Component="apimswincorememoryl110.dll" ComponentId="{80DFA62E-649F-42C3-BD13-E09F447DC815}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincorememoryl110.dll"/>
<ROW Component="apimswincorenamedpipel110.dll" ComponentId="{9CAE21FC-23F0-4A7A-9DD8-55131F1E46A0}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincorenamedpipel110.dll"/>
<ROW Component="apimswincoreprocessenvironmentl110.dll" ComponentId="{0A1EE6B9-5AA7-4313-83D7-34C06AD9749E}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincoreprocessenvironmentl110.dll"/>
<ROW Component="apimswincoreprocessthreadsl110.dll" ComponentId="{F9E3455A-23AA-43D0-9482-C2A2EDE664F9}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincoreprocessthreadsl110.dll"/>
<ROW Component="apimswincoreprocessthreadsl111.dll" ComponentId="{50CC20B2-7333-4BA2-A0D4-8E4F2CFF8D37}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincoreprocessthreadsl111.dll"/>
<ROW Component="apimswincoreprofilel110.dll" ComponentId="{EB1BD9C8-E32E-4262-B6FE-5667C8B2B223}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincoreprofilel110.dll"/>
<ROW Component="apimswincorertlsupportl110.dll" ComponentId="{9269C694-B20B-432E-B676-B623E2637797}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincorertlsupportl110.dll"/>
<ROW Component="apimswincorestringl110.dll" ComponentId="{E2008C6D-FDCB-4DAD-8189-03F976AF1427}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincorestringl110.dll"/>
<ROW Component="apimswincoresynchl110.dll" ComponentId="{A7549430-D978-4980-A35A-E649B3158394}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincoresynchl110.dll"/>
<ROW Component="apimswincoresynchl120.dll" ComponentId="{24EBA4DE-F343-48F7-831D-1CA07122944C}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincoresynchl120.dll"/>
<ROW Component="apimswincoresysinfol110.dll" ComponentId="{0E8F7000-BC69-42FE-B85B-0605B937E3F3}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincoresysinfol110.dll"/>
<ROW Component="apimswincoretimezonel110.dll" ComponentId="{DC5B72B6-DEB3-44DE-8D17-C8E5BDC2E6B9}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincoretimezonel110.dll"/>
<ROW Component="apimswincoreutill110.dll" ComponentId="{6576C98F-2E93-482F-B5A7-BDD12E8CA2A4}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincoreutill110.dll"/>
<ROW Component="apimswincrtconiol110.dll" ComponentId="{846558C0-8752-4344-99BF-86258A4E453A}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincrtconiol110.dll"/>
<ROW Component="apimswincrtconvertl110.dll" ComponentId="{97B8C788-AF42-4FAB-B097-9B00017C52D3}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincrtconvertl110.dll"/>
<ROW Component="apimswincrtenvironmentl110.dll" ComponentId="{FB421664-169A-461A-B4CA-064E30212F3E}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincrtenvironmentl110.dll"/>
<ROW Component="apimswincrtfilesysteml110.dll" ComponentId="{5F0FD47D-2F1E-48F3-BB38-6043A60FCAC2}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincrtfilesysteml110.dll"/>
<ROW Component="apimswincrtheapl110.dll" ComponentId="{9FDE87F4-DF0F-4A5A-8384-C025BDF4F6CE}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincrtheapl110.dll"/>
<ROW Component="apimswincrtlocalel110.dll" ComponentId="{023A3162-0B3A-4A71-A3B9-10E8EE182876}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincrtlocalel110.dll"/>
<ROW Component="apimswincrtmathl110.dll" ComponentId="{41CE4EAB-2EFA-4C58-AE8C-0CAD5E69E6D4}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincrtmathl110.dll"/>
<ROW Component="apimswincrtmultibytel110.dll" ComponentId="{36711110-DB49-4330-8DD0-EE826386A30B}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincrtmultibytel110.dll"/>
<ROW Component="apimswincrtprocessl110.dll" ComponentId="{AF1999F2-082B-4C3A-AB12-C951B07E6188}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincrtprocessl110.dll"/>
<ROW Component="apimswincrtruntimel110.dll" ComponentId="{DF090F76-E317-46F5-9A83-E02287446312}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincrtruntimel110.dll"/>
<ROW Component="apimswincrtstdiol110.dll" ComponentId="{43EB5056-F550-4A39-9FF5-7423B41B7159}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincrtstdiol110.dll"/>
<ROW Component="apimswincrtstringl110.dll" ComponentId="{6BA713DF-BB84-43C0-93CA-9050C39AB2E9}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincrtstringl110.dll"/>
<ROW Component="apimswincrttimel110.dll" ComponentId="{0ECED989-A14B-4D3E-981A-957E92091726}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincrttimel110.dll"/>
<ROW Component="apimswincrtutilityl110.dll" ComponentId="{DD6F48C3-302E-4C57-929A-AAEA3F29CFD9}" Directory_="pypew_Dir" Attributes="256" KeyPath="apimswincrtutilityl110.dll"/>
<ROW Component="base.cp39win_amd64.pyd" ComponentId="{E1E4AF73-66B3-4B88-8C86-4EBC63331AEB}" Directory_="tslibs_Dir" Attributes="256" KeyPath="base.cp39win_amd64.pyd" Type="0"/>
<ROW Component="base_library.zip" ComponentId="{DAD0BA89-3752-4F61-8BE6-BDDA64E89A2D}" Directory_="pypew_Dir" Attributes="0" KeyPath="base_library.zip" Type="0"/>
<ROW Component="bit_generator.cp39win_amd64.pyd" ComponentId="{B0069FA4-9D78-4F2D-859A-C2F3D792E0FC}" Directory_="random_Dir" Attributes="256" KeyPath="bit_generator.cp39win_amd64.pyd" Type="0"/>
<ROW Component="builder.cp39win_amd64.pyd" ComponentId="{F21D8EE2-05F0-4252-A03A-57ECF7D4EF5D}" Directory_="lxml_Dir" Attributes="256" KeyPath="builder.cp39win_amd64.pyd" Type="0"/>
<ROW Component="clean.cp39win_amd64.pyd" ComponentId="{206C2603-E3A4-4626-9B50-C64E90B16BFC}" Directory_="html_Dir" Attributes="256" KeyPath="clean.cp39win_amd64.pyd" Type="0"/>
<ROW Component="convert.jxa" ComponentId="{6EAEF388-58A6-47D4-A7CA-D8E26636DDFB}" Directory_="docx2pdf_Dir" Attributes="0" KeyPath="convert.jxa" Type="0"/>
<ROW Component="defaultfooter.xml" ComponentId="{ED8F0A97-E190-4B16-89F4-ABF09D609A61}" Directory_="templates_Dir" Attributes="0" KeyPath="defaultfooter.xml" Type="0"/>
<ROW Component="dependency_links.txt" ComponentId="{D80C657F-D859-4ADF-A36F-E21F4F637CF7}" Directory_="setuptools50.3.2.distinfo_Dir" Attributes="0" KeyPath="dependency_links.txt" Type="0"/>
<ROW Component="entry_points.txt" ComponentId="{AD816ADB-11A4-455C-B747-054DDC93B69D}" Directory_="docx2pdf0.1.8.distinfo_Dir" Attributes="0" KeyPath="entry_points.txt" Type="0"/>
<ROW Component="entry_points.txt_1" ComponentId="{201B553B-742D-4237-9035-DC29FEC740A6}" Directory_="pip21.1.2.distinfo_Dir" Attributes="0" KeyPath="entry_points.txt_1" Type="0"/>
<ROW Component="entry_points.txt_2" ComponentId="{1A72C9A5-A673-488D-AF82-0DED74E0248D}" Directory_="wheel0.36.2.distinfo_Dir" Attributes="0" KeyPath="entry_points.txt_4" Type="0"/>
<ROW Component="feasts.csv" ComponentId="{A075EBE8-B540-4C5D-9131-8E71109AE460}" Directory_="data_Dir" Attributes="0" KeyPath="feasts.csv" Type="0"/>
<ROW Component="html" ComponentId="{5C81C354-7A57-4DF4-9905-0D8E76DB3D21}" Directory_="templates_2_Dir" Attributes="0" KeyPath="html" Type="0"/>
<ROW Component="html.tpl" ComponentId="{AFD23BD3-E91D-411E-BAB1-529A0AF277CC}" Directory_="templates_1_Dir" Attributes="0" KeyPath="html.tpl" Type="0"/>
<ROW Component="iso_abstract_expand.xsl" ComponentId="{EC2EDE7C-59BF-412A-B2D3-D4E4554DFF80}" Directory_="isoschematronxslt1_Dir" Attributes="0" KeyPath="iso_abstract_expand.xsl" Type="0"/>
<ROW Component="isoschematron.rng" ComponentId="{8CF1DB2F-99D0-43F1-84EC-DB6354595E85}" Directory_="rng_Dir" Attributes="0" KeyPath="isoschematron.rng" Type="0"/>
<ROW Component="lapack_lite.cp39win_amd64.pyd" ComponentId="{CE3DC9E1-E3EE-46C0-86AB-C77909697F5C}" Directory_="linalg_Dir" Attributes="256" KeyPath="lapack_lite.cp39win_amd64.pyd" Type="0"/>
<ROW Component="libcrypto1_1.dll" ComponentId="{EE704077-BCA7-4883-91B2-834F29E02F9D}" Directory_="pypew_Dir" Attributes="256" KeyPath="libcrypto1_1.dll"/>
<ROW Component="libffi7.dll" ComponentId="{CC88F092-FAA4-4568-A05B-48638B19C7DF}" Directory_="pypew_Dir" Attributes="256" KeyPath="libffi7.dll"/>
<ROW Component="libopenblas.EL2C6PLE4ZYW3ECEVIV3OXXGRN2NRFM2.gfortranwin_amd64.dll" ComponentId="{75F5DF01-C189-41DB-9F3D-E0E4CD753E82}" Directory_="pypew_Dir" Attributes="256" KeyPath="libopenblas.EL2C6PLE4ZYW3ECEVIV3OXXGRN2NRFM2.gfortranwin_amd64.dll"/>
<ROW Component="libssl1_1.dll" ComponentId="{5888B061-CAD5-4438-B5C6-0DFD8160002E}" Directory_="pypew_Dir" Attributes="256" KeyPath="libssl1_1.dll"/>
<ROW Component="mfc140u.dll" ComponentId="{3C5F923D-95D6-4894-9072-118F3D57C766}" Directory_="pypew_Dir" Attributes="256" KeyPath="mfc140u.dll"/>
<ROW Component="pypew.exe" ComponentId="{8596DA56-C48E-4A79-937C-8E93A7E5BA85}" Directory_="pypew_Dir" Attributes="256" KeyPath="pypew.exe"/>
<ROW Component="python39.dll" ComponentId="{35958DB7-5582-440B-975D-1AD4AA6092A0}" Directory_="pypew_Dir" Attributes="256" KeyPath="python39.dll"/>
<ROW Component="pythoncom39.dll" ComponentId="{9AFB1EE6-F442-4AAC-96AF-0B8F2F7C7810}" Directory_="pypew_Dir" Attributes="256" KeyPath="pythoncom39.dll"/>
<ROW Component="pywintypes39.dll" ComponentId="{9D66A204-DD56-4274-9707-C6B817D67407}" Directory_="pypew_Dir" Attributes="256" KeyPath="pywintypes39.dll"/>
<ROW Component="shell.pyd" ComponentId="{81358E4B-0F9F-4946-9912-4D163ABBDC3B}" Directory_="shell_Dir" Attributes="256" KeyPath="shell.pyd" Type="0"/>
<ROW Component="sqlite3.dll" ComponentId="{E6EF000E-4228-4AB5-B189-F1FFBEA62592}" Directory_="pypew_Dir" Attributes="256" KeyPath="sqlite3.dll"/>
<ROW Component="ucrtbase.dll" ComponentId="{CF0EF709-9EC2-4540-B8E1-A9732314137D}" Directory_="pypew_Dir" Attributes="256" KeyPath="ucrtbase.dll"/>
</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="INSTALLER" Component_="INSTALLER" FileName="INSTAL~1|INSTALLER" Attributes="0" SourcePath="dist\pypew\altgraph-0.17.2.dist-info\INSTALLER" SelfReg="false"/>
<ROW File="LICENSE" Component_="INSTALLER" FileName="LICENSE" Attributes="0" SourcePath="dist\pypew\altgraph-0.17.2.dist-info\LICENSE" SelfReg="false"/>
<ROW File="METADATA" Component_="INSTALLER" FileName="METADATA" Attributes="0" SourcePath="dist\pypew\altgraph-0.17.2.dist-info\METADATA" SelfReg="false"/>
<ROW File="RECORD" Component_="INSTALLER" FileName="RECORD" Attributes="0" SourcePath="dist\pypew\altgraph-0.17.2.dist-info\RECORD" SelfReg="false"/>
<ROW File="top_level.txt" Component_="INSTALLER" FileName="TOP_LE~1.TXT|top_level.txt" Attributes="0" SourcePath="dist\pypew\altgraph-0.17.2.dist-info\top_level.txt" SelfReg="false"/>
<ROW File="WHEEL" Component_="INSTALLER" FileName="WHEEL" Attributes="0" SourcePath="dist\pypew\altgraph-0.17.2.dist-info\WHEEL" SelfReg="false"/>
<ROW File="zipsafe" Component_="INSTALLER" FileName="zip-safe" Attributes="0" SourcePath="dist\pypew\altgraph-0.17.2.dist-info\zip-safe" 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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\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="dist\pypew\api-ms-win-crt-math-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtmultibytel110.dll" Component_="apimswincrtmultibytel110.dll" FileName="API-M~33.DLL|api-ms-win-crt-multibyte-l1-1-0.dll" Attributes="0" SourcePath="dist\pypew\api-ms-win-crt-multibyte-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtprocessl110.dll" Component_="apimswincrtprocessl110.dll" FileName="API-M~34.DLL|api-ms-win-crt-process-l1-1-0.dll" Attributes="0" SourcePath="dist\pypew\api-ms-win-crt-process-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtruntimel110.dll" Component_="apimswincrtruntimel110.dll" FileName="API-M~35.DLL|api-ms-win-crt-runtime-l1-1-0.dll" Attributes="0" SourcePath="dist\pypew\api-ms-win-crt-runtime-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtstdiol110.dll" Component_="apimswincrtstdiol110.dll" FileName="API-M~36.DLL|api-ms-win-crt-stdio-l1-1-0.dll" Attributes="0" SourcePath="dist\pypew\api-ms-win-crt-stdio-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtstringl110.dll" Component_="apimswincrtstringl110.dll" FileName="API-M~37.DLL|api-ms-win-crt-string-l1-1-0.dll" Attributes="0" SourcePath="dist\pypew\api-ms-win-crt-string-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrttimel110.dll" Component_="apimswincrttimel110.dll" FileName="API-M~38.DLL|api-ms-win-crt-time-l1-1-0.dll" Attributes="0" SourcePath="dist\pypew\api-ms-win-crt-time-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtutilityl110.dll" Component_="apimswincrtutilityl110.dll" FileName="API-M~39.DLL|api-ms-win-crt-utility-l1-1-0.dll" Attributes="0" SourcePath="dist\pypew\api-ms-win-crt-utility-l1-1-0.dll" SelfReg="false"/>
<ROW File="base_library.zip" Component_="base_library.zip" FileName="BASE_L~1.ZIP|base_library.zip" Attributes="0" SourcePath="dist\pypew\base_library.zip" SelfReg="false"/>
<ROW File="feasts.csv" Component_="feasts.csv" FileName="feasts.csv" Attributes="0" SourcePath="dist\pypew\data\feasts.csv" SelfReg="false"/>
<ROW File="neh.csv" Component_="feasts.csv" FileName="neh.csv" Attributes="0" SourcePath="dist\pypew\data\neh.csv" SelfReg="false"/>
<ROW File="defaultfooter.xml" Component_="defaultfooter.xml" FileName="DEFAUL~1.XML|default-footer.xml" Attributes="0" SourcePath="dist\pypew\docx\templates\default-footer.xml" SelfReg="false"/>
<ROW File="defaultheader.xml" Component_="defaultfooter.xml" FileName="DEFAUL~2.XML|default-header.xml" Attributes="0" SourcePath="dist\pypew\docx\templates\default-header.xml" SelfReg="false"/>
<ROW File="defaultsettings.xml" Component_="defaultfooter.xml" FileName="DEFAUL~3.XML|default-settings.xml" Attributes="0" SourcePath="dist\pypew\docx\templates\default-settings.xml" SelfReg="false"/>
<ROW File="defaultstyles.xml" Component_="defaultfooter.xml" FileName="DEFAUL~4.XML|default-styles.xml" Attributes="0" SourcePath="dist\pypew\docx\templates\default-styles.xml" SelfReg="false"/>
<ROW File="default.docx" Component_="defaultfooter.xml" FileName="DEFAUL~1.DOC|default.docx" Attributes="0" SourcePath="dist\pypew\docx\templates\default.docx" SelfReg="false"/>
<ROW File="convert.jxa" Component_="convert.jxa" FileName="convert.jxa" Attributes="0" SourcePath="dist\pypew\docx2pdf\convert.jxa" SelfReg="false"/>
<ROW File="entry_points.txt" Component_="entry_points.txt" FileName="ENTRY_~1.TXT|entry_points.txt" Attributes="0" SourcePath="dist\pypew\docx2pdf-0.1.8.dist-info\entry_points.txt" SelfReg="false"/>
<ROW File="INSTALLER_1" Component_="entry_points.txt" FileName="INSTAL~1|INSTALLER" Attributes="0" SourcePath="dist\pypew\docx2pdf-0.1.8.dist-info\INSTALLER" SelfReg="false"/>
<ROW File="LICENSE_1" Component_="entry_points.txt" FileName="LICENSE" Attributes="0" SourcePath="dist\pypew\docx2pdf-0.1.8.dist-info\LICENSE" SelfReg="false"/>
<ROW File="METADATA_1" Component_="entry_points.txt" FileName="METADATA" Attributes="0" SourcePath="dist\pypew\docx2pdf-0.1.8.dist-info\METADATA" SelfReg="false"/>
<ROW File="RECORD_1" Component_="entry_points.txt" FileName="RECORD" Attributes="0" SourcePath="dist\pypew\docx2pdf-0.1.8.dist-info\RECORD" SelfReg="false"/>
<ROW File="REQUESTED" Component_="entry_points.txt" FileName="REQUES~1|REQUESTED" Attributes="0" SourcePath="dist\pypew\docx2pdf-0.1.8.dist-info\REQUESTED" SelfReg="false"/>
<ROW File="WHEEL_1" Component_="entry_points.txt" FileName="WHEEL" Attributes="0" SourcePath="dist\pypew\docx2pdf-0.1.8.dist-info\WHEEL" SelfReg="false"/>
<ROW File="libcrypto1_1.dll" Component_="libcrypto1_1.dll" FileName="LIBCRY~1.DLL|libcrypto-1_1.dll" Attributes="0" SourcePath="dist\pypew\libcrypto-1_1.dll" SelfReg="false"/>
<ROW File="libffi7.dll" Component_="libffi7.dll" FileName="libffi-7.dll" Attributes="0" SourcePath="dist\pypew\libffi-7.dll" SelfReg="false"/>
<ROW File="libopenblas.EL2C6PLE4ZYW3ECEVIV3OXXGRN2NRFM2.gfortranwin_amd64.dll" Component_="libopenblas.EL2C6PLE4ZYW3ECEVIV3OXXGRN2NRFM2.gfortranwin_amd64.dll" FileName="LIBOPE~1.DLL|libopenblas.EL2C6PLE4ZYW3ECEVIV3OXXGRN2NRFM2.gfortran-win_amd64.dll" Attributes="0" SourcePath="dist\pypew\libopenblas.EL2C6PLE4ZYW3ECEVIV3OXXGRN2NRFM2.gfortran-win_amd64.dll" SelfReg="false"/>
<ROW File="libssl1_1.dll" Component_="libssl1_1.dll" FileName="LIBSSL~1.DLL|libssl-1_1.dll" Attributes="0" SourcePath="dist\pypew\libssl-1_1.dll" SelfReg="false"/>
<ROW File="builder.cp39win_amd64.pyd" Component_="builder.cp39win_amd64.pyd" FileName="BUILDE~1.PYD|builder.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\lxml\builder.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="etree.cp39win_amd64.pyd" Component_="builder.cp39win_amd64.pyd" FileName="ETREEC~1.PYD|etree.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\lxml\etree.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="clean.cp39win_amd64.pyd" Component_="clean.cp39win_amd64.pyd" FileName="CLEANC~1.PYD|clean.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\lxml\html\clean.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="diff.cp39win_amd64.pyd" Component_="clean.cp39win_amd64.pyd" FileName="DIFFCP~1.PYD|diff.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\lxml\html\diff.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="isoschematron.rng" Component_="isoschematron.rng" FileName="ISO-SC~1.RNG|iso-schematron.rng" Attributes="0" SourcePath="dist\pypew\lxml\isoschematron\resources\rng\iso-schematron.rng" SelfReg="false"/>
<ROW File="iso_abstract_expand.xsl" Component_="iso_abstract_expand.xsl" FileName="ISO_AB~1.XSL|iso_abstract_expand.xsl" Attributes="0" SourcePath="dist\pypew\lxml\isoschematron\resources\xsl\iso-schematron-xslt1\iso_abstract_expand.xsl" SelfReg="false"/>
<ROW File="iso_dsdl_include.xsl" Component_="iso_abstract_expand.xsl" FileName="ISO_DS~1.XSL|iso_dsdl_include.xsl" Attributes="0" SourcePath="dist\pypew\lxml\isoschematron\resources\xsl\iso-schematron-xslt1\iso_dsdl_include.xsl" SelfReg="false"/>
<ROW File="iso_schematron_message.xsl" Component_="iso_abstract_expand.xsl" FileName="ISO_SC~1.XSL|iso_schematron_message.xsl" Attributes="0" SourcePath="dist\pypew\lxml\isoschematron\resources\xsl\iso-schematron-xslt1\iso_schematron_message.xsl" SelfReg="false"/>
<ROW File="iso_schematron_skeleton_for_xslt1.xsl" Component_="iso_abstract_expand.xsl" FileName="ISO_SC~2.XSL|iso_schematron_skeleton_for_xslt1.xsl" Attributes="0" SourcePath="dist\pypew\lxml\isoschematron\resources\xsl\iso-schematron-xslt1\iso_schematron_skeleton_for_xslt1.xsl" SelfReg="false"/>
<ROW File="iso_svrl_for_xslt1.xsl" Component_="iso_abstract_expand.xsl" FileName="ISO_SV~1.XSL|iso_svrl_for_xslt1.xsl" Attributes="0" SourcePath="dist\pypew\lxml\isoschematron\resources\xsl\iso-schematron-xslt1\iso_svrl_for_xslt1.xsl" SelfReg="false"/>
<ROW File="readme.txt" Component_="iso_abstract_expand.xsl" FileName="readme.txt" Attributes="0" SourcePath="dist\pypew\lxml\isoschematron\resources\xsl\iso-schematron-xslt1\readme.txt" SelfReg="false"/>
<ROW File="RNG2Schtrn.xsl" Component_="RNG2Schtrn.xsl" FileName="RNG2SC~1.XSL|RNG2Schtrn.xsl" Attributes="0" SourcePath="dist\pypew\lxml\isoschematron\resources\xsl\RNG2Schtrn.xsl" SelfReg="false"/>
<ROW File="XSD2Schtrn.xsl" Component_="RNG2Schtrn.xsl" FileName="XSD2SC~1.XSL|XSD2Schtrn.xsl" Attributes="0" SourcePath="dist\pypew\lxml\isoschematron\resources\xsl\XSD2Schtrn.xsl" SelfReg="false"/>
<ROW File="objectify.cp39win_amd64.pyd" Component_="builder.cp39win_amd64.pyd" FileName="OBJECT~1.PYD|objectify.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\lxml\objectify.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="sax.cp39win_amd64.pyd" Component_="builder.cp39win_amd64.pyd" FileName="SAXCP3~1.PYD|sax.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\lxml\sax.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="_elementpath.cp39win_amd64.pyd" Component_="builder.cp39win_amd64.pyd" FileName="_ELEME~1.PYD|_elementpath.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\lxml\_elementpath.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="_speedups.cp39win_amd64.pyd" Component_="_speedups.cp39win_amd64.pyd" FileName="_SPEED~1.PYD|_speedups.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\markupsafe\_speedups.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="mfc140u.dll" Component_="mfc140u.dll" FileName="mfc140u.dll" Attributes="0" SourcePath="dist\pypew\mfc140u.dll" SelfReg="false"/>
<ROW File="MSVCP140.dll" Component_="MSVCP140.dll" FileName="MSVCP140.dll" Attributes="0" SourcePath="dist\pypew\MSVCP140.dll" SelfReg="false"/>
<ROW File="_multiarray_tests.cp39win_amd64.pyd" Component_="_multiarray_tests.cp39win_amd64.pyd" FileName="_MULTI~1.PYD|_multiarray_tests.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\numpy\core\_multiarray_tests.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="_multiarray_umath.cp39win_amd64.pyd" Component_="_multiarray_tests.cp39win_amd64.pyd" FileName="_MULTI~2.PYD|_multiarray_umath.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\numpy\core\_multiarray_umath.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="_pocketfft_internal.cp39win_amd64.pyd" Component_="_pocketfft_internal.cp39win_amd64.pyd" FileName="_POCKE~1.PYD|_pocketfft_internal.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\numpy\fft\_pocketfft_internal.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="lapack_lite.cp39win_amd64.pyd" Component_="lapack_lite.cp39win_amd64.pyd" FileName="LAPACK~1.PYD|lapack_lite.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\numpy\linalg\lapack_lite.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="_umath_linalg.cp39win_amd64.pyd" Component_="lapack_lite.cp39win_amd64.pyd" FileName="_UMATH~1.PYD|_umath_linalg.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\numpy\linalg\_umath_linalg.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="bit_generator.cp39win_amd64.pyd" Component_="bit_generator.cp39win_amd64.pyd" FileName="BIT_GE~1.PYD|bit_generator.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\numpy\random\bit_generator.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="mtrand.cp39win_amd64.pyd" Component_="bit_generator.cp39win_amd64.pyd" FileName="MTRAND~1.PYD|mtrand.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\numpy\random\mtrand.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="_bounded_integers.cp39win_amd64.pyd" Component_="bit_generator.cp39win_amd64.pyd" FileName="_BOUND~1.PYD|_bounded_integers.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\numpy\random\_bounded_integers.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="_common.cp39win_amd64.pyd" Component_="bit_generator.cp39win_amd64.pyd" FileName="_COMMO~1.PYD|_common.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\numpy\random\_common.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="_generator.cp39win_amd64.pyd" Component_="bit_generator.cp39win_amd64.pyd" FileName="_GENER~1.PYD|_generator.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\numpy\random\_generator.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="_mt19937.cp39win_amd64.pyd" Component_="bit_generator.cp39win_amd64.pyd" FileName="_MT199~1.PYD|_mt19937.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\numpy\random\_mt19937.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="_pcg64.cp39win_amd64.pyd" Component_="bit_generator.cp39win_amd64.pyd" FileName="_PCG64~1.PYD|_pcg64.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\numpy\random\_pcg64.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="_philox.cp39win_amd64.pyd" Component_="bit_generator.cp39win_amd64.pyd" FileName="_PHILO~1.PYD|_philox.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\numpy\random\_philox.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="_sfc64.cp39win_amd64.pyd" Component_="bit_generator.cp39win_amd64.pyd" FileName="_SFC64~1.PYD|_sfc64.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\numpy\random\_sfc64.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="html.tpl" Component_="html.tpl" FileName="html.tpl" Attributes="0" SourcePath="dist\pypew\pandas\io\formats\templates\html.tpl" SelfReg="false"/>
<ROW File="_sas.cp39win_amd64.pyd" Component_="_sas.cp39win_amd64.pyd" FileName="_SASCP~1.PYD|_sas.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\io\sas\_sas.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="algos.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="ALGOSC~1.PYD|algos.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\algos.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="groupby.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="GROUPB~1.PYD|groupby.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\groupby.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="hashing.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="HASHIN~1.PYD|hashing.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\hashing.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="hashtable.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="HASHTA~1.PYD|hashtable.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\hashtable.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="index.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="INDEXC~1.PYD|index.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\index.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="indexing.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="INDEXI~1.PYD|indexing.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\indexing.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="internals.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="INTERN~1.PYD|internals.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\internals.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="interval.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="INTERV~1.PYD|interval.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\interval.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="join.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="JOINCP~1.PYD|join.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\join.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="json.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="JSONCP~1.PYD|json.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\json.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="lib.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="LIBCP3~1.PYD|lib.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\lib.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="missing.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="MISSIN~1.PYD|missing.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\missing.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="ops.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="OPSCP3~1.PYD|ops.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\ops.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="ops_dispatch.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="OPS_DI~1.PYD|ops_dispatch.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\ops_dispatch.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="parsers.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="PARSER~1.PYD|parsers.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\parsers.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="properties.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="PROPER~1.PYD|properties.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\properties.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="reduction.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="REDUCT~1.PYD|reduction.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\reduction.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="reshape.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="RESHAP~1.PYD|reshape.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\reshape.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="sparse.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="SPARSE~1.PYD|sparse.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\sparse.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="testing.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="TESTIN~1.PYD|testing.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\testing.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="tslib.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="TSLIBC~1.PYD|tslib.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslib.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="base.cp39win_amd64.pyd" Component_="base.cp39win_amd64.pyd" FileName="BASECP~1.PYD|base.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslibs\base.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="ccalendar.cp39win_amd64.pyd" Component_="base.cp39win_amd64.pyd" FileName="CCALEN~1.PYD|ccalendar.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslibs\ccalendar.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="conversion.cp39win_amd64.pyd" Component_="base.cp39win_amd64.pyd" FileName="CONVER~1.PYD|conversion.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslibs\conversion.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="dtypes.cp39win_amd64.pyd" Component_="base.cp39win_amd64.pyd" FileName="DTYPES~1.PYD|dtypes.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslibs\dtypes.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="fields.cp39win_amd64.pyd" Component_="base.cp39win_amd64.pyd" FileName="FIELDS~1.PYD|fields.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslibs\fields.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="nattype.cp39win_amd64.pyd" Component_="base.cp39win_amd64.pyd" FileName="NATTYP~1.PYD|nattype.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslibs\nattype.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="np_datetime.cp39win_amd64.pyd" Component_="base.cp39win_amd64.pyd" FileName="NP_DAT~1.PYD|np_datetime.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslibs\np_datetime.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="offsets.cp39win_amd64.pyd" Component_="base.cp39win_amd64.pyd" FileName="OFFSET~1.PYD|offsets.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslibs\offsets.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="parsing.cp39win_amd64.pyd" Component_="base.cp39win_amd64.pyd" FileName="PARSIN~1.PYD|parsing.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslibs\parsing.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="period.cp39win_amd64.pyd" Component_="base.cp39win_amd64.pyd" FileName="PERIOD~1.PYD|period.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslibs\period.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="strptime.cp39win_amd64.pyd" Component_="base.cp39win_amd64.pyd" FileName="STRPTI~1.PYD|strptime.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslibs\strptime.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="timedeltas.cp39win_amd64.pyd" Component_="base.cp39win_amd64.pyd" FileName="TIMEDE~1.PYD|timedeltas.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslibs\timedeltas.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="timestamps.cp39win_amd64.pyd" Component_="base.cp39win_amd64.pyd" FileName="TIMEST~1.PYD|timestamps.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslibs\timestamps.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="timezones.cp39win_amd64.pyd" Component_="base.cp39win_amd64.pyd" FileName="TIMEZO~1.PYD|timezones.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslibs\timezones.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="tzconversion.cp39win_amd64.pyd" Component_="base.cp39win_amd64.pyd" FileName="TZCONV~1.PYD|tzconversion.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslibs\tzconversion.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="vectorized.cp39win_amd64.pyd" Component_="base.cp39win_amd64.pyd" FileName="VECTOR~1.PYD|vectorized.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\tslibs\vectorized.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="aggregations.cp39win_amd64.pyd" Component_="aggregations.cp39win_amd64.pyd" FileName="AGGREG~1.PYD|aggregations.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\window\aggregations.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="indexers.cp39win_amd64.pyd" Component_="aggregations.cp39win_amd64.pyd" FileName="INDEXE~1.PYD|indexers.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\window\indexers.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="writers.cp39win_amd64.pyd" Component_="algos.cp39win_amd64.pyd" FileName="WRITER~1.PYD|writers.cp39-win_amd64.pyd" Attributes="0" SourcePath="dist\pypew\pandas\_libs\writers.cp39-win_amd64.pyd" SelfReg="false"/>
<ROW File="entry_points.txt_1" Component_="entry_points.txt_1" FileName="ENTRY_~1.TXT|entry_points.txt" Attributes="0" SourcePath="dist\pypew\pip-21.1.2.dist-info\entry_points.txt" SelfReg="false"/>
<ROW File="INSTALLER_2" Component_="entry_points.txt_1" FileName="INSTAL~1|INSTALLER" Attributes="0" SourcePath="dist\pypew\pip-21.1.2.dist-info\INSTALLER" SelfReg="false"/>
<ROW File="LICENSE.txt" Component_="entry_points.txt_1" FileName="LICENSE.txt" Attributes="0" SourcePath="dist\pypew\pip-21.1.2.dist-info\LICENSE.txt" SelfReg="false"/>
<ROW File="METADATA_2" Component_="entry_points.txt_1" FileName="METADATA" Attributes="0" SourcePath="dist\pypew\pip-21.1.2.dist-info\METADATA" SelfReg="false"/>
<ROW File="RECORD_2" Component_="entry_points.txt_1" FileName="RECORD" Attributes="0" SourcePath="dist\pypew\pip-21.1.2.dist-info\RECORD" SelfReg="false"/>
<ROW File="top_level.txt_1" Component_="entry_points.txt_1" FileName="TOP_LE~1.TXT|top_level.txt" Attributes="0" SourcePath="dist\pypew\pip-21.1.2.dist-info\top_level.txt" SelfReg="false"/>
<ROW File="WHEEL_2" Component_="entry_points.txt_1" FileName="WHEEL" Attributes="0" SourcePath="dist\pypew\pip-21.1.2.dist-info\WHEEL" SelfReg="false"/>
<ROW File="pyexpat.pyd" Component_="base_library.zip" FileName="pyexpat.pyd" Attributes="0" SourcePath="dist\pypew\pyexpat.pyd" SelfReg="false"/>
<ROW File="COPYING.txt" Component_="COPYING.txt" FileName="COPYING.txt" Attributes="0" SourcePath="dist\pypew\pyinstaller-4.10.dist-info\COPYING.txt" SelfReg="false"/>
<ROW File="entry_points.txt_2" Component_="COPYING.txt" FileName="ENTRY_~1.TXT|entry_points.txt" Attributes="0" SourcePath="dist\pypew\pyinstaller-4.10.dist-info\entry_points.txt" SelfReg="false"/>
<ROW File="INSTALLER_3" Component_="COPYING.txt" FileName="INSTAL~1|INSTALLER" Attributes="0" SourcePath="dist\pypew\pyinstaller-4.10.dist-info\INSTALLER" SelfReg="false"/>
<ROW File="METADATA_3" Component_="COPYING.txt" FileName="METADATA" Attributes="0" SourcePath="dist\pypew\pyinstaller-4.10.dist-info\METADATA" SelfReg="false"/>
<ROW File="RECORD_3" Component_="COPYING.txt" FileName="RECORD" Attributes="0" SourcePath="dist\pypew\pyinstaller-4.10.dist-info\RECORD" SelfReg="false"/>
<ROW File="REQUESTED_1" Component_="COPYING.txt" FileName="REQUES~1|REQUESTED" Attributes="0" SourcePath="dist\pypew\pyinstaller-4.10.dist-info\REQUESTED" SelfReg="false"/>
<ROW File="top_level.txt_2" Component_="COPYING.txt" FileName="TOP_LE~1.TXT|top_level.txt" Attributes="0" SourcePath="dist\pypew\pyinstaller-4.10.dist-info\top_level.txt" SelfReg="false"/>
<ROW File="WHEEL_3" Component_="COPYING.txt" FileName="WHEEL" Attributes="0" SourcePath="dist\pypew\pyinstaller-4.10.dist-info\WHEEL" SelfReg="false"/>
<ROW File="pypew.exe" Component_="pypew.exe" FileName="pypew.exe" Attributes="0" SourcePath="dist\pypew\pypew.exe" SelfReg="false" DigSign="true"/>
<ROW File="python39.dll" Component_="python39.dll" FileName="python39.dll" Attributes="0" SourcePath="dist\pypew\python39.dll" SelfReg="false"/>
<ROW File="pythoncom39.dll" Component_="pythoncom39.dll" FileName="PYTHON~1.DLL|pythoncom39.dll" Attributes="0" SourcePath="dist\pypew\pythoncom39.dll" SelfReg="false"/>
<ROW File="Abidjan" Component_="Abidjan" FileName="Abidjan" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Abidjan" SelfReg="false"/>
<ROW File="Accra" Component_="Abidjan" FileName="Accra" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Accra" SelfReg="false"/>
<ROW File="Addis_Ababa" Component_="Abidjan" FileName="ADDIS_~1|Addis_Ababa" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Addis_Ababa" SelfReg="false"/>
<ROW File="Algiers" Component_="Abidjan" FileName="Algiers" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Algiers" SelfReg="false"/>
<ROW File="Asmara" Component_="Abidjan" FileName="Asmara" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Asmara" SelfReg="false"/>
<ROW File="Asmera" Component_="Abidjan" FileName="Asmera" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Asmera" SelfReg="false"/>
<ROW File="Bamako" Component_="Abidjan" FileName="Bamako" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Bamako" SelfReg="false"/>
<ROW File="Bangui" Component_="Abidjan" FileName="Bangui" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Bangui" SelfReg="false"/>
<ROW File="Banjul" Component_="Abidjan" FileName="Banjul" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Banjul" SelfReg="false"/>
<ROW File="Bissau" Component_="Abidjan" FileName="Bissau" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Bissau" SelfReg="false"/>
<ROW File="Blantyre" Component_="Abidjan" FileName="Blantyre" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Blantyre" SelfReg="false"/>
<ROW File="Brazzaville" Component_="Abidjan" FileName="BRAZZA~1|Brazzaville" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Brazzaville" SelfReg="false"/>
<ROW File="Bujumbura" Component_="Abidjan" FileName="BUJUMB~1|Bujumbura" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Bujumbura" SelfReg="false"/>
<ROW File="Cairo" Component_="Abidjan" FileName="Cairo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Cairo" SelfReg="false"/>
<ROW File="Casablanca" Component_="Abidjan" FileName="CASABL~1|Casablanca" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Casablanca" SelfReg="false"/>
<ROW File="Ceuta" Component_="Abidjan" FileName="Ceuta" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Ceuta" SelfReg="false"/>
<ROW File="Conakry" Component_="Abidjan" FileName="Conakry" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Conakry" SelfReg="false"/>
<ROW File="Dakar" Component_="Abidjan" FileName="Dakar" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Dakar" SelfReg="false"/>
<ROW File="Dar_es_Salaam" Component_="Abidjan" FileName="DAR_ES~1|Dar_es_Salaam" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Dar_es_Salaam" SelfReg="false"/>
<ROW File="Djibouti" Component_="Abidjan" FileName="Djibouti" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Djibouti" SelfReg="false"/>
<ROW File="Douala" Component_="Abidjan" FileName="Douala" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Douala" SelfReg="false"/>
<ROW File="El_Aaiun" Component_="Abidjan" FileName="El_Aaiun" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\El_Aaiun" SelfReg="false"/>
<ROW File="Freetown" Component_="Abidjan" FileName="Freetown" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Freetown" SelfReg="false"/>
<ROW File="Gaborone" Component_="Abidjan" FileName="Gaborone" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Gaborone" SelfReg="false"/>
<ROW File="Harare" Component_="Abidjan" FileName="Harare" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Harare" SelfReg="false"/>
<ROW File="Johannesburg" Component_="Abidjan" FileName="JOHANN~1|Johannesburg" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Johannesburg" SelfReg="false"/>
<ROW File="Juba" Component_="Abidjan" FileName="Juba" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Juba" SelfReg="false"/>
<ROW File="Kampala" Component_="Abidjan" FileName="Kampala" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Kampala" SelfReg="false"/>
<ROW File="Khartoum" Component_="Abidjan" FileName="Khartoum" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Khartoum" SelfReg="false"/>
<ROW File="Kigali" Component_="Abidjan" FileName="Kigali" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Kigali" SelfReg="false"/>
<ROW File="Kinshasa" Component_="Abidjan" FileName="Kinshasa" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Kinshasa" SelfReg="false"/>
<ROW File="Lagos" Component_="Abidjan" FileName="Lagos" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Lagos" SelfReg="false"/>
<ROW File="Libreville" Component_="Abidjan" FileName="LIBREV~1|Libreville" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Libreville" SelfReg="false"/>
<ROW File="Lome" Component_="Abidjan" FileName="Lome" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Lome" SelfReg="false"/>
<ROW File="Luanda" Component_="Abidjan" FileName="Luanda" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Luanda" SelfReg="false"/>
<ROW File="Lubumbashi" Component_="Abidjan" FileName="LUBUMB~1|Lubumbashi" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Lubumbashi" SelfReg="false"/>
<ROW File="Lusaka" Component_="Abidjan" FileName="Lusaka" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Lusaka" SelfReg="false"/>
<ROW File="Malabo" Component_="Abidjan" FileName="Malabo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Malabo" SelfReg="false"/>
<ROW File="Maputo" Component_="Abidjan" FileName="Maputo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Maputo" SelfReg="false"/>
<ROW File="Maseru" Component_="Abidjan" FileName="Maseru" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Maseru" SelfReg="false"/>
<ROW File="Mbabane" Component_="Abidjan" FileName="Mbabane" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Mbabane" SelfReg="false"/>
<ROW File="Mogadishu" Component_="Abidjan" FileName="MOGADI~1|Mogadishu" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Mogadishu" SelfReg="false"/>
<ROW File="Monrovia" Component_="Abidjan" FileName="Monrovia" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Monrovia" SelfReg="false"/>
<ROW File="Nairobi" Component_="Abidjan" FileName="Nairobi" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Nairobi" SelfReg="false"/>
<ROW File="Ndjamena" Component_="Abidjan" FileName="Ndjamena" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Ndjamena" SelfReg="false"/>
<ROW File="Niamey" Component_="Abidjan" FileName="Niamey" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Niamey" SelfReg="false"/>
<ROW File="Nouakchott" Component_="Abidjan" FileName="NOUAKC~1|Nouakchott" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Nouakchott" SelfReg="false"/>
<ROW File="Ouagadougou" Component_="Abidjan" FileName="OUAGAD~1|Ouagadougou" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Ouagadougou" SelfReg="false"/>
<ROW File="PortoNovo" Component_="Abidjan" FileName="PORTO-~1|Porto-Novo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Porto-Novo" SelfReg="false"/>
<ROW File="Sao_Tome" Component_="Abidjan" FileName="Sao_Tome" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Sao_Tome" SelfReg="false"/>
<ROW File="Timbuktu" Component_="Abidjan" FileName="Timbuktu" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Timbuktu" SelfReg="false"/>
<ROW File="Tripoli" Component_="Abidjan" FileName="Tripoli" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Tripoli" SelfReg="false"/>
<ROW File="Tunis" Component_="Abidjan" FileName="Tunis" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Tunis" SelfReg="false"/>
<ROW File="Windhoek" Component_="Abidjan" FileName="Windhoek" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Africa\Windhoek" SelfReg="false"/>
<ROW File="Adak" Component_="Adak" FileName="Adak" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Adak" SelfReg="false"/>
<ROW File="Anchorage" Component_="Adak" FileName="ANCHOR~1|Anchorage" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Anchorage" SelfReg="false"/>
<ROW File="Anguilla" Component_="Adak" FileName="Anguilla" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Anguilla" SelfReg="false"/>
<ROW File="Antigua" Component_="Adak" FileName="Antigua" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Antigua" SelfReg="false"/>
<ROW File="Araguaina" Component_="Adak" FileName="ARAGUA~1|Araguaina" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Araguaina" SelfReg="false"/>
<ROW File="Buenos_Aires" Component_="Buenos_Aires" FileName="BUENOS~1|Buenos_Aires" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Argentina\Buenos_Aires" SelfReg="false"/>
<ROW File="Catamarca" Component_="Buenos_Aires" FileName="CATAMA~1|Catamarca" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Argentina\Catamarca" SelfReg="false"/>
<ROW File="ComodRivadavia" Component_="Buenos_Aires" FileName="COMODR~1|ComodRivadavia" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Argentina\ComodRivadavia" SelfReg="false"/>
<ROW File="Cordoba" Component_="Buenos_Aires" FileName="Cordoba" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Argentina\Cordoba" SelfReg="false"/>
<ROW File="Jujuy" Component_="Buenos_Aires" FileName="Jujuy" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Argentina\Jujuy" SelfReg="false"/>
<ROW File="La_Rioja" Component_="Buenos_Aires" FileName="La_Rioja" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Argentina\La_Rioja" SelfReg="false"/>
<ROW File="Mendoza" Component_="Buenos_Aires" FileName="Mendoza" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Argentina\Mendoza" SelfReg="false"/>
<ROW File="Rio_Gallegos" Component_="Buenos_Aires" FileName="RIO_GA~1|Rio_Gallegos" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Argentina\Rio_Gallegos" SelfReg="false"/>
<ROW File="Salta" Component_="Buenos_Aires" FileName="Salta" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Argentina\Salta" SelfReg="false"/>
<ROW File="San_Juan" Component_="Buenos_Aires" FileName="San_Juan" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Argentina\San_Juan" SelfReg="false"/>
<ROW File="San_Luis" Component_="Buenos_Aires" FileName="San_Luis" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Argentina\San_Luis" SelfReg="false"/>
<ROW File="Tucuman" Component_="Buenos_Aires" FileName="Tucuman" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Argentina\Tucuman" SelfReg="false"/>
<ROW File="Ushuaia" Component_="Buenos_Aires" FileName="Ushuaia" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Argentina\Ushuaia" SelfReg="false"/>
<ROW File="Aruba" Component_="Adak" FileName="Aruba" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Aruba" SelfReg="false"/>
<ROW File="Asuncion" Component_="Adak" FileName="Asuncion" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Asuncion" SelfReg="false"/>
<ROW File="Atikokan" Component_="Adak" FileName="Atikokan" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Atikokan" SelfReg="false"/>
<ROW File="Atka" Component_="Adak" FileName="Atka" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Atka" SelfReg="false"/>
<ROW File="Bahia" Component_="Adak" FileName="Bahia" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Bahia" SelfReg="false"/>
<ROW File="Bahia_Banderas" Component_="Adak" FileName="BAHIA_~1|Bahia_Banderas" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Bahia_Banderas" SelfReg="false"/>
<ROW File="Barbados" Component_="Adak" FileName="Barbados" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Barbados" SelfReg="false"/>
<ROW File="Belem" Component_="Adak" FileName="Belem" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Belem" SelfReg="false"/>
<ROW File="Belize" Component_="Adak" FileName="Belize" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Belize" SelfReg="false"/>
<ROW File="BlancSablon" Component_="Adak" FileName="BLANC-~1|Blanc-Sablon" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Blanc-Sablon" SelfReg="false"/>
<ROW File="Boa_Vista" Component_="Adak" FileName="BOA_VI~1|Boa_Vista" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Boa_Vista" SelfReg="false"/>
<ROW File="Bogota" Component_="Adak" FileName="Bogota" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Bogota" SelfReg="false"/>
<ROW File="Boise" Component_="Adak" FileName="Boise" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Boise" SelfReg="false"/>
<ROW File="Buenos_Aires_1" Component_="Adak" FileName="BUENOS~1|Buenos_Aires" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Buenos_Aires" SelfReg="false"/>
<ROW File="Cambridge_Bay" Component_="Adak" FileName="CAMBRI~1|Cambridge_Bay" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Cambridge_Bay" SelfReg="false"/>
<ROW File="Campo_Grande" Component_="Adak" FileName="CAMPO_~1|Campo_Grande" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Campo_Grande" SelfReg="false"/>
<ROW File="Cancun" Component_="Adak" FileName="Cancun" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Cancun" SelfReg="false"/>
<ROW File="Caracas" Component_="Adak" FileName="Caracas" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Caracas" SelfReg="false"/>
<ROW File="Catamarca_1" Component_="Adak" FileName="CATAMA~1|Catamarca" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Catamarca" SelfReg="false"/>
<ROW File="Cayenne" Component_="Adak" FileName="Cayenne" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Cayenne" SelfReg="false"/>
<ROW File="Cayman" Component_="Adak" FileName="Cayman" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Cayman" SelfReg="false"/>
<ROW File="Chicago" Component_="Adak" FileName="Chicago" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Chicago" SelfReg="false"/>
<ROW File="Chihuahua" Component_="Adak" FileName="CHIHUA~1|Chihuahua" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Chihuahua" SelfReg="false"/>
<ROW File="Coral_Harbour" Component_="Adak" FileName="CORAL_~1|Coral_Harbour" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Coral_Harbour" SelfReg="false"/>
<ROW File="Cordoba_1" Component_="Adak" FileName="Cordoba" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Cordoba" SelfReg="false"/>
<ROW File="Costa_Rica" Component_="Adak" FileName="COSTA_~1|Costa_Rica" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Costa_Rica" SelfReg="false"/>
<ROW File="Creston" Component_="Adak" FileName="Creston" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Creston" SelfReg="false"/>
<ROW File="Cuiaba" Component_="Adak" FileName="Cuiaba" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Cuiaba" SelfReg="false"/>
<ROW File="Curacao" Component_="Adak" FileName="Curacao" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Curacao" SelfReg="false"/>
<ROW File="Danmarkshavn" Component_="Adak" FileName="DANMAR~1|Danmarkshavn" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Danmarkshavn" SelfReg="false"/>
<ROW File="Dawson" Component_="Adak" FileName="Dawson" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Dawson" SelfReg="false"/>
<ROW File="Dawson_Creek" Component_="Adak" FileName="DAWSON~1|Dawson_Creek" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Dawson_Creek" SelfReg="false"/>
<ROW File="Denver" Component_="Adak" FileName="Denver" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Denver" SelfReg="false"/>
<ROW File="Detroit" Component_="Adak" FileName="Detroit" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Detroit" SelfReg="false"/>
<ROW File="Dominica" Component_="Adak" FileName="Dominica" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Dominica" SelfReg="false"/>
<ROW File="Edmonton" Component_="Adak" FileName="Edmonton" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Edmonton" SelfReg="false"/>
<ROW File="Eirunepe" Component_="Adak" FileName="Eirunepe" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Eirunepe" SelfReg="false"/>
<ROW File="El_Salvador" Component_="Adak" FileName="EL_SAL~1|El_Salvador" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\El_Salvador" SelfReg="false"/>
<ROW File="Ensenada" Component_="Adak" FileName="Ensenada" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Ensenada" SelfReg="false"/>
<ROW File="Fortaleza" Component_="Adak" FileName="FORTAL~1|Fortaleza" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Fortaleza" SelfReg="false"/>
<ROW File="Fort_Nelson" Component_="Adak" FileName="FORT_N~1|Fort_Nelson" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Fort_Nelson" SelfReg="false"/>
<ROW File="Fort_Wayne" Component_="Adak" FileName="FORT_W~1|Fort_Wayne" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Fort_Wayne" SelfReg="false"/>
<ROW File="Glace_Bay" Component_="Adak" FileName="GLACE_~1|Glace_Bay" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Glace_Bay" SelfReg="false"/>
<ROW File="Godthab" Component_="Adak" FileName="Godthab" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Godthab" SelfReg="false"/>
<ROW File="Goose_Bay" Component_="Adak" FileName="GOOSE_~1|Goose_Bay" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Goose_Bay" SelfReg="false"/>
<ROW File="Grand_Turk" Component_="Adak" FileName="GRAND_~1|Grand_Turk" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Grand_Turk" SelfReg="false"/>
<ROW File="Grenada" Component_="Adak" FileName="Grenada" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Grenada" SelfReg="false"/>
<ROW File="Guadeloupe" Component_="Adak" FileName="GUADEL~1|Guadeloupe" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Guadeloupe" SelfReg="false"/>
<ROW File="Guatemala" Component_="Adak" FileName="GUATEM~1|Guatemala" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Guatemala" SelfReg="false"/>
<ROW File="Guayaquil" Component_="Adak" FileName="GUAYAQ~1|Guayaquil" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Guayaquil" SelfReg="false"/>
<ROW File="Guyana" Component_="Adak" FileName="Guyana" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Guyana" SelfReg="false"/>
<ROW File="Halifax" Component_="Adak" FileName="Halifax" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Halifax" SelfReg="false"/>
<ROW File="Havana" Component_="Adak" FileName="Havana" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Havana" SelfReg="false"/>
<ROW File="Hermosillo" Component_="Adak" FileName="HERMOS~1|Hermosillo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Hermosillo" SelfReg="false"/>
<ROW File="Indianapolis" Component_="Indianapolis" FileName="INDIAN~1|Indianapolis" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Indiana\Indianapolis" SelfReg="false"/>
<ROW File="Knox" Component_="Indianapolis" FileName="Knox" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Indiana\Knox" SelfReg="false"/>
<ROW File="Marengo" Component_="Indianapolis" FileName="Marengo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Indiana\Marengo" SelfReg="false"/>
<ROW File="Petersburg" Component_="Indianapolis" FileName="PETERS~1|Petersburg" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Indiana\Petersburg" SelfReg="false"/>
<ROW File="Tell_City" Component_="Indianapolis" FileName="TELL_C~1|Tell_City" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Indiana\Tell_City" SelfReg="false"/>
<ROW File="Vevay" Component_="Indianapolis" FileName="Vevay" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Indiana\Vevay" SelfReg="false"/>
<ROW File="Vincennes" Component_="Indianapolis" FileName="VINCEN~1|Vincennes" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Indiana\Vincennes" SelfReg="false"/>
<ROW File="Winamac" Component_="Indianapolis" FileName="Winamac" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Indiana\Winamac" SelfReg="false"/>
<ROW File="Indianapolis_1" Component_="Adak" FileName="INDIAN~1|Indianapolis" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Indianapolis" SelfReg="false"/>
<ROW File="Inuvik" Component_="Adak" FileName="Inuvik" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Inuvik" SelfReg="false"/>
<ROW File="Iqaluit" Component_="Adak" FileName="Iqaluit" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Iqaluit" SelfReg="false"/>
<ROW File="Jamaica" Component_="Adak" FileName="Jamaica" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Jamaica" SelfReg="false"/>
<ROW File="Jujuy_1" Component_="Adak" FileName="Jujuy" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Jujuy" SelfReg="false"/>
<ROW File="Juneau" Component_="Adak" FileName="Juneau" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Juneau" SelfReg="false"/>
<ROW File="Louisville" Component_="Louisville" FileName="LOUISV~1|Louisville" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Kentucky\Louisville" SelfReg="false"/>
<ROW File="Monticello" Component_="Louisville" FileName="MONTIC~1|Monticello" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Kentucky\Monticello" SelfReg="false"/>
<ROW File="Knox_IN" Component_="Adak" FileName="Knox_IN" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Knox_IN" SelfReg="false"/>
<ROW File="Kralendijk" Component_="Adak" FileName="KRALEN~1|Kralendijk" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Kralendijk" SelfReg="false"/>
<ROW File="La_Paz" Component_="Adak" FileName="La_Paz" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\La_Paz" SelfReg="false"/>
<ROW File="Lima" Component_="Adak" FileName="Lima" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Lima" SelfReg="false"/>
<ROW File="Los_Angeles" Component_="Adak" FileName="LOS_AN~1|Los_Angeles" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Los_Angeles" SelfReg="false"/>
<ROW File="Louisville_1" Component_="Adak" FileName="LOUISV~1|Louisville" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Louisville" SelfReg="false"/>
<ROW File="Lower_Princes" Component_="Adak" FileName="LOWER_~1|Lower_Princes" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Lower_Princes" SelfReg="false"/>
<ROW File="Maceio" Component_="Adak" FileName="Maceio" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Maceio" SelfReg="false"/>
<ROW File="Managua" Component_="Adak" FileName="Managua" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Managua" SelfReg="false"/>
<ROW File="Manaus" Component_="Adak" FileName="Manaus" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Manaus" SelfReg="false"/>
<ROW File="Marigot" Component_="Adak" FileName="Marigot" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Marigot" SelfReg="false"/>
<ROW File="Martinique" Component_="Adak" FileName="MARTIN~1|Martinique" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Martinique" SelfReg="false"/>
<ROW File="Matamoros" Component_="Adak" FileName="MATAMO~1|Matamoros" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Matamoros" SelfReg="false"/>
<ROW File="Mazatlan" Component_="Adak" FileName="Mazatlan" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Mazatlan" SelfReg="false"/>
<ROW File="Mendoza_1" Component_="Adak" FileName="Mendoza" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Mendoza" SelfReg="false"/>
<ROW File="Menominee" Component_="Adak" FileName="MENOMI~1|Menominee" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Menominee" SelfReg="false"/>
<ROW File="Merida" Component_="Adak" FileName="Merida" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Merida" SelfReg="false"/>
<ROW File="Metlakatla" Component_="Adak" FileName="METLAK~1|Metlakatla" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Metlakatla" SelfReg="false"/>
<ROW File="Mexico_City" Component_="Adak" FileName="MEXICO~1|Mexico_City" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Mexico_City" SelfReg="false"/>
<ROW File="Miquelon" Component_="Adak" FileName="Miquelon" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Miquelon" SelfReg="false"/>
<ROW File="Moncton" Component_="Adak" FileName="Moncton" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Moncton" SelfReg="false"/>
<ROW File="Monterrey" Component_="Adak" FileName="MONTER~1|Monterrey" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Monterrey" SelfReg="false"/>
<ROW File="Montevideo" Component_="Adak" FileName="MONTEV~1|Montevideo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Montevideo" SelfReg="false"/>
<ROW File="Montreal" Component_="Adak" FileName="Montreal" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Montreal" SelfReg="false"/>
<ROW File="Montserrat" Component_="Adak" FileName="MONTSE~1|Montserrat" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Montserrat" SelfReg="false"/>
<ROW File="Nassau" Component_="Adak" FileName="Nassau" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Nassau" SelfReg="false"/>
<ROW File="New_York" Component_="Adak" FileName="New_York" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\New_York" SelfReg="false"/>
<ROW File="Nipigon" Component_="Adak" FileName="Nipigon" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Nipigon" SelfReg="false"/>
<ROW File="Nome" Component_="Adak" FileName="Nome" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Nome" SelfReg="false"/>
<ROW File="Noronha" Component_="Adak" FileName="Noronha" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Noronha" SelfReg="false"/>
<ROW File="Beulah" Component_="Beulah" FileName="Beulah" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\North_Dakota\Beulah" SelfReg="false"/>
<ROW File="Center" Component_="Beulah" FileName="Center" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\North_Dakota\Center" SelfReg="false"/>
<ROW File="New_Salem" Component_="Beulah" FileName="NEW_SA~1|New_Salem" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\North_Dakota\New_Salem" SelfReg="false"/>
<ROW File="Nuuk" Component_="Adak" FileName="Nuuk" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Nuuk" SelfReg="false"/>
<ROW File="Ojinaga" Component_="Adak" FileName="Ojinaga" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Ojinaga" SelfReg="false"/>
<ROW File="Panama" Component_="Adak" FileName="Panama" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Panama" SelfReg="false"/>
<ROW File="Pangnirtung" Component_="Adak" FileName="PANGNI~1|Pangnirtung" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Pangnirtung" SelfReg="false"/>
<ROW File="Paramaribo" Component_="Adak" FileName="PARAMA~1|Paramaribo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Paramaribo" SelfReg="false"/>
<ROW File="Phoenix" Component_="Adak" FileName="Phoenix" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Phoenix" SelfReg="false"/>
<ROW File="PortauPrince" Component_="Adak" FileName="PORT-A~1|Port-au-Prince" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Port-au-Prince" SelfReg="false"/>
<ROW File="Porto_Acre" Component_="Adak" FileName="PORTO_~1|Porto_Acre" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Porto_Acre" SelfReg="false"/>
<ROW File="Porto_Velho" Component_="Adak" FileName="PORTO_~2|Porto_Velho" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Porto_Velho" SelfReg="false"/>
<ROW File="Port_of_Spain" Component_="Adak" FileName="PORT_O~1|Port_of_Spain" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Port_of_Spain" SelfReg="false"/>
<ROW File="Puerto_Rico" Component_="Adak" FileName="PUERTO~1|Puerto_Rico" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Puerto_Rico" SelfReg="false"/>
<ROW File="Punta_Arenas" Component_="Adak" FileName="PUNTA_~1|Punta_Arenas" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Punta_Arenas" SelfReg="false"/>
<ROW File="Rainy_River" Component_="Adak" FileName="RAINY_~1|Rainy_River" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Rainy_River" SelfReg="false"/>
<ROW File="Rankin_Inlet" Component_="Adak" FileName="RANKIN~1|Rankin_Inlet" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Rankin_Inlet" SelfReg="false"/>
<ROW File="Recife" Component_="Adak" FileName="Recife" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Recife" SelfReg="false"/>
<ROW File="Regina" Component_="Adak" FileName="Regina" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Regina" SelfReg="false"/>
<ROW File="Resolute" Component_="Adak" FileName="Resolute" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Resolute" SelfReg="false"/>
<ROW File="Rio_Branco" Component_="Adak" FileName="RIO_BR~1|Rio_Branco" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Rio_Branco" SelfReg="false"/>
<ROW File="Rosario" Component_="Adak" FileName="Rosario" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Rosario" SelfReg="false"/>
<ROW File="Santarem" Component_="Adak" FileName="Santarem" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Santarem" SelfReg="false"/>
<ROW File="Santa_Isabel" Component_="Adak" FileName="SANTA_~1|Santa_Isabel" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Santa_Isabel" SelfReg="false"/>
<ROW File="Santiago" Component_="Adak" FileName="Santiago" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Santiago" SelfReg="false"/>
<ROW File="Santo_Domingo" Component_="Adak" FileName="SANTO_~1|Santo_Domingo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Santo_Domingo" SelfReg="false"/>
<ROW File="Sao_Paulo" Component_="Adak" FileName="SAO_PA~1|Sao_Paulo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Sao_Paulo" SelfReg="false"/>
<ROW File="Scoresbysund" Component_="Adak" FileName="SCORES~1|Scoresbysund" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Scoresbysund" SelfReg="false"/>
<ROW File="Shiprock" Component_="Adak" FileName="Shiprock" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Shiprock" SelfReg="false"/>
<ROW File="Sitka" Component_="Adak" FileName="Sitka" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Sitka" SelfReg="false"/>
<ROW File="St_Barthelemy" Component_="Adak" FileName="ST_BAR~1|St_Barthelemy" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\St_Barthelemy" SelfReg="false"/>
<ROW File="St_Johns" Component_="Adak" FileName="St_Johns" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\St_Johns" SelfReg="false"/>
<ROW File="St_Kitts" Component_="Adak" FileName="St_Kitts" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\St_Kitts" SelfReg="false"/>
<ROW File="St_Lucia" Component_="Adak" FileName="St_Lucia" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\St_Lucia" SelfReg="false"/>
<ROW File="St_Thomas" Component_="Adak" FileName="ST_THO~1|St_Thomas" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\St_Thomas" SelfReg="false"/>
<ROW File="St_Vincent" Component_="Adak" FileName="ST_VIN~1|St_Vincent" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\St_Vincent" SelfReg="false"/>
<ROW File="Swift_Current" Component_="Adak" FileName="SWIFT_~1|Swift_Current" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Swift_Current" SelfReg="false"/>
<ROW File="Tegucigalpa" Component_="Adak" FileName="TEGUCI~1|Tegucigalpa" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Tegucigalpa" SelfReg="false"/>
<ROW File="Thule" Component_="Adak" FileName="Thule" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Thule" SelfReg="false"/>
<ROW File="Thunder_Bay" Component_="Adak" FileName="THUNDE~1|Thunder_Bay" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Thunder_Bay" SelfReg="false"/>
<ROW File="Tijuana" Component_="Adak" FileName="Tijuana" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Tijuana" SelfReg="false"/>
<ROW File="Toronto" Component_="Adak" FileName="Toronto" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Toronto" SelfReg="false"/>
<ROW File="Tortola" Component_="Adak" FileName="Tortola" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Tortola" SelfReg="false"/>
<ROW File="Vancouver" Component_="Adak" FileName="VANCOU~1|Vancouver" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Vancouver" SelfReg="false"/>
<ROW File="Virgin" Component_="Adak" FileName="Virgin" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Virgin" SelfReg="false"/>
<ROW File="Whitehorse" Component_="Adak" FileName="WHITEH~1|Whitehorse" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Whitehorse" SelfReg="false"/>
<ROW File="Winnipeg" Component_="Adak" FileName="Winnipeg" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Winnipeg" SelfReg="false"/>
<ROW File="Yakutat" Component_="Adak" FileName="Yakutat" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Yakutat" SelfReg="false"/>
<ROW File="Yellowknife" Component_="Adak" FileName="YELLOW~1|Yellowknife" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\America\Yellowknife" SelfReg="false"/>
<ROW File="Casey" Component_="Casey" FileName="Casey" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Antarctica\Casey" SelfReg="false"/>
<ROW File="Davis" Component_="Casey" FileName="Davis" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Antarctica\Davis" SelfReg="false"/>
<ROW File="DumontDUrville" Component_="Casey" FileName="DUMONT~1|DumontDUrville" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Antarctica\DumontDUrville" SelfReg="false"/>
<ROW File="Macquarie" Component_="Casey" FileName="MACQUA~1|Macquarie" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Antarctica\Macquarie" SelfReg="false"/>
<ROW File="Mawson" Component_="Casey" FileName="Mawson" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Antarctica\Mawson" SelfReg="false"/>
<ROW File="McMurdo" Component_="Casey" FileName="McMurdo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Antarctica\McMurdo" SelfReg="false"/>
<ROW File="Palmer" Component_="Casey" FileName="Palmer" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Antarctica\Palmer" SelfReg="false"/>
<ROW File="Rothera" Component_="Casey" FileName="Rothera" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Antarctica\Rothera" SelfReg="false"/>
<ROW File="South_Pole" Component_="Casey" FileName="SOUTH_~1|South_Pole" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Antarctica\South_Pole" SelfReg="false"/>
<ROW File="Syowa" Component_="Casey" FileName="Syowa" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Antarctica\Syowa" SelfReg="false"/>
<ROW File="Troll" Component_="Casey" FileName="Troll" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Antarctica\Troll" SelfReg="false"/>
<ROW File="Vostok" Component_="Casey" FileName="Vostok" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Antarctica\Vostok" SelfReg="false"/>
<ROW File="Longyearbyen" Component_="Longyearbyen" FileName="LONGYE~1|Longyearbyen" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Arctic\Longyearbyen" SelfReg="false"/>
<ROW File="Aden" Component_="Aden" FileName="Aden" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Aden" SelfReg="false"/>
<ROW File="Almaty" Component_="Aden" FileName="Almaty" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Almaty" SelfReg="false"/>
<ROW File="Amman" Component_="Aden" FileName="Amman" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Amman" SelfReg="false"/>
<ROW File="Anadyr" Component_="Aden" FileName="Anadyr" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Anadyr" SelfReg="false"/>
<ROW File="Aqtau" Component_="Aden" FileName="Aqtau" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Aqtau" SelfReg="false"/>
<ROW File="Aqtobe" Component_="Aden" FileName="Aqtobe" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Aqtobe" SelfReg="false"/>
<ROW File="Ashgabat" Component_="Aden" FileName="Ashgabat" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Ashgabat" SelfReg="false"/>
<ROW File="Ashkhabad" Component_="Aden" FileName="ASHKHA~1|Ashkhabad" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Ashkhabad" SelfReg="false"/>
<ROW File="Atyrau" Component_="Aden" FileName="Atyrau" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Atyrau" SelfReg="false"/>
<ROW File="Baghdad" Component_="Aden" FileName="Baghdad" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Baghdad" SelfReg="false"/>
<ROW File="Bahrain" Component_="Aden" FileName="Bahrain" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Bahrain" SelfReg="false"/>
<ROW File="Baku" Component_="Aden" FileName="Baku" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Baku" SelfReg="false"/>
<ROW File="Bangkok" Component_="Aden" FileName="Bangkok" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Bangkok" SelfReg="false"/>
<ROW File="Barnaul" Component_="Aden" FileName="Barnaul" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Barnaul" SelfReg="false"/>
<ROW File="Beirut" Component_="Aden" FileName="Beirut" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Beirut" SelfReg="false"/>
<ROW File="Bishkek" Component_="Aden" FileName="Bishkek" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Bishkek" SelfReg="false"/>
<ROW File="Brunei" Component_="Aden" FileName="Brunei" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Brunei" SelfReg="false"/>
<ROW File="Calcutta" Component_="Aden" FileName="Calcutta" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Calcutta" SelfReg="false"/>
<ROW File="Chita" Component_="Aden" FileName="Chita" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Chita" SelfReg="false"/>
<ROW File="Choibalsan" Component_="Aden" FileName="CHOIBA~1|Choibalsan" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Choibalsan" SelfReg="false"/>
<ROW File="Chongqing" Component_="Aden" FileName="CHONGQ~1|Chongqing" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Chongqing" SelfReg="false"/>
<ROW File="Chungking" Component_="Aden" FileName="CHUNGK~1|Chungking" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Chungking" SelfReg="false"/>
<ROW File="Colombo" Component_="Aden" FileName="Colombo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Colombo" SelfReg="false"/>
<ROW File="Dacca" Component_="Aden" FileName="Dacca" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Dacca" SelfReg="false"/>
<ROW File="Damascus" Component_="Aden" FileName="Damascus" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Damascus" SelfReg="false"/>
<ROW File="Dhaka" Component_="Aden" FileName="Dhaka" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Dhaka" SelfReg="false"/>
<ROW File="Dili" Component_="Aden" FileName="Dili" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Dili" SelfReg="false"/>
<ROW File="Dubai" Component_="Aden" FileName="Dubai" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Dubai" SelfReg="false"/>
<ROW File="Dushanbe" Component_="Aden" FileName="Dushanbe" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Dushanbe" SelfReg="false"/>
<ROW File="Famagusta" Component_="Aden" FileName="FAMAGU~1|Famagusta" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Famagusta" SelfReg="false"/>
<ROW File="Gaza" Component_="Aden" FileName="Gaza" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Gaza" SelfReg="false"/>
<ROW File="Harbin" Component_="Aden" FileName="Harbin" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Harbin" SelfReg="false"/>
<ROW File="Hebron" Component_="Aden" FileName="Hebron" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Hebron" SelfReg="false"/>
<ROW File="Hong_Kong" Component_="Aden" FileName="HONG_K~1|Hong_Kong" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Hong_Kong" SelfReg="false"/>
<ROW File="Hovd" Component_="Aden" FileName="Hovd" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Hovd" SelfReg="false"/>
<ROW File="Ho_Chi_Minh" Component_="Aden" FileName="HO_CHI~1|Ho_Chi_Minh" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Ho_Chi_Minh" SelfReg="false"/>
<ROW File="Irkutsk" Component_="Aden" FileName="Irkutsk" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Irkutsk" SelfReg="false"/>
<ROW File="Istanbul" Component_="Aden" FileName="Istanbul" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Istanbul" SelfReg="false"/>
<ROW File="Jakarta" Component_="Aden" FileName="Jakarta" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Jakarta" SelfReg="false"/>
<ROW File="Jayapura" Component_="Aden" FileName="Jayapura" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Jayapura" SelfReg="false"/>
<ROW File="Jerusalem" Component_="Aden" FileName="JERUSA~1|Jerusalem" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Jerusalem" SelfReg="false"/>
<ROW File="Kabul" Component_="Aden" FileName="Kabul" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Kabul" SelfReg="false"/>
<ROW File="Kamchatka" Component_="Aden" FileName="KAMCHA~1|Kamchatka" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Kamchatka" SelfReg="false"/>
<ROW File="Karachi" Component_="Aden" FileName="Karachi" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Karachi" SelfReg="false"/>
<ROW File="Kashgar" Component_="Aden" FileName="Kashgar" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Kashgar" SelfReg="false"/>
<ROW File="Kathmandu" Component_="Aden" FileName="KATHMA~1|Kathmandu" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Kathmandu" SelfReg="false"/>
<ROW File="Katmandu" Component_="Aden" FileName="Katmandu" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Katmandu" SelfReg="false"/>
<ROW File="Khandyga" Component_="Aden" FileName="Khandyga" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Khandyga" SelfReg="false"/>
<ROW File="Kolkata" Component_="Aden" FileName="Kolkata" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Kolkata" SelfReg="false"/>
<ROW File="Krasnoyarsk" Component_="Aden" FileName="KRASNO~1|Krasnoyarsk" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Krasnoyarsk" SelfReg="false"/>
<ROW File="Kuala_Lumpur" Component_="Aden" FileName="KUALA_~1|Kuala_Lumpur" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Kuala_Lumpur" SelfReg="false"/>
<ROW File="Kuching" Component_="Aden" FileName="Kuching" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Kuching" SelfReg="false"/>
<ROW File="Kuwait" Component_="Aden" FileName="Kuwait" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Kuwait" SelfReg="false"/>
<ROW File="Macao" Component_="Aden" FileName="Macao" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Macao" SelfReg="false"/>
<ROW File="Macau" Component_="Aden" FileName="Macau" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Macau" SelfReg="false"/>
<ROW File="Magadan" Component_="Aden" FileName="Magadan" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Magadan" SelfReg="false"/>
<ROW File="Makassar" Component_="Aden" FileName="Makassar" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Makassar" SelfReg="false"/>
<ROW File="Manila" Component_="Aden" FileName="Manila" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Manila" SelfReg="false"/>
<ROW File="Muscat" Component_="Aden" FileName="Muscat" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Muscat" SelfReg="false"/>
<ROW File="Nicosia" Component_="Aden" FileName="Nicosia" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Nicosia" SelfReg="false"/>
<ROW File="Novokuznetsk" Component_="Aden" FileName="NOVOKU~1|Novokuznetsk" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Novokuznetsk" SelfReg="false"/>
<ROW File="Novosibirsk" Component_="Aden" FileName="NOVOSI~1|Novosibirsk" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Novosibirsk" SelfReg="false"/>
<ROW File="Omsk" Component_="Aden" FileName="Omsk" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Omsk" SelfReg="false"/>
<ROW File="Oral" Component_="Aden" FileName="Oral" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Oral" SelfReg="false"/>
<ROW File="Phnom_Penh" Component_="Aden" FileName="PHNOM_~1|Phnom_Penh" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Phnom_Penh" SelfReg="false"/>
<ROW File="Pontianak" Component_="Aden" FileName="PONTIA~1|Pontianak" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Pontianak" SelfReg="false"/>
<ROW File="Pyongyang" Component_="Aden" FileName="PYONGY~1|Pyongyang" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Pyongyang" SelfReg="false"/>
<ROW File="Qatar" Component_="Aden" FileName="Qatar" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Qatar" SelfReg="false"/>
<ROW File="Qostanay" Component_="Aden" FileName="Qostanay" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Qostanay" SelfReg="false"/>
<ROW File="Qyzylorda" Component_="Aden" FileName="QYZYLO~1|Qyzylorda" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Qyzylorda" SelfReg="false"/>
<ROW File="Rangoon" Component_="Aden" FileName="Rangoon" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Rangoon" SelfReg="false"/>
<ROW File="Riyadh" Component_="Aden" FileName="Riyadh" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Riyadh" SelfReg="false"/>
<ROW File="Saigon" Component_="Aden" FileName="Saigon" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Saigon" SelfReg="false"/>
<ROW File="Sakhalin" Component_="Aden" FileName="Sakhalin" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Sakhalin" SelfReg="false"/>
<ROW File="Samarkand" Component_="Aden" FileName="SAMARK~1|Samarkand" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Samarkand" SelfReg="false"/>
<ROW File="Seoul" Component_="Aden" FileName="Seoul" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Seoul" SelfReg="false"/>
<ROW File="Shanghai" Component_="Aden" FileName="Shanghai" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Shanghai" SelfReg="false"/>
<ROW File="Singapore" Component_="Aden" FileName="SINGAP~1|Singapore" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Singapore" SelfReg="false"/>
<ROW File="Srednekolymsk" Component_="Aden" FileName="SREDNE~1|Srednekolymsk" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Srednekolymsk" SelfReg="false"/>
<ROW File="Taipei" Component_="Aden" FileName="Taipei" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Taipei" SelfReg="false"/>
<ROW File="Tashkent" Component_="Aden" FileName="Tashkent" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Tashkent" SelfReg="false"/>
<ROW File="Tbilisi" Component_="Aden" FileName="Tbilisi" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Tbilisi" SelfReg="false"/>
<ROW File="Tehran" Component_="Aden" FileName="Tehran" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Tehran" SelfReg="false"/>
<ROW File="Tel_Aviv" Component_="Aden" FileName="Tel_Aviv" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Tel_Aviv" SelfReg="false"/>
<ROW File="Thimbu" Component_="Aden" FileName="Thimbu" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Thimbu" SelfReg="false"/>
<ROW File="Thimphu" Component_="Aden" FileName="Thimphu" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Thimphu" SelfReg="false"/>
<ROW File="Tokyo" Component_="Aden" FileName="Tokyo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Tokyo" SelfReg="false"/>
<ROW File="Tomsk" Component_="Aden" FileName="Tomsk" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Tomsk" SelfReg="false"/>
<ROW File="Ujung_Pandang" Component_="Aden" FileName="UJUNG_~1|Ujung_Pandang" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Ujung_Pandang" SelfReg="false"/>
<ROW File="Ulaanbaatar" Component_="Aden" FileName="ULAANB~1|Ulaanbaatar" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Ulaanbaatar" SelfReg="false"/>
<ROW File="Ulan_Bator" Component_="Aden" FileName="ULAN_B~1|Ulan_Bator" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Ulan_Bator" SelfReg="false"/>
<ROW File="Urumqi" Component_="Aden" FileName="Urumqi" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Urumqi" SelfReg="false"/>
<ROW File="UstNera" Component_="Aden" FileName="Ust-Nera" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Ust-Nera" SelfReg="false"/>
<ROW File="Vientiane" Component_="Aden" FileName="VIENTI~1|Vientiane" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Vientiane" SelfReg="false"/>
<ROW File="Vladivostok" Component_="Aden" FileName="VLADIV~1|Vladivostok" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Vladivostok" SelfReg="false"/>
<ROW File="Yakutsk" Component_="Aden" FileName="Yakutsk" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Yakutsk" SelfReg="false"/>
<ROW File="Yangon" Component_="Aden" FileName="Yangon" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Yangon" SelfReg="false"/>
<ROW File="Yekaterinburg" Component_="Aden" FileName="YEKATE~1|Yekaterinburg" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Yekaterinburg" SelfReg="false"/>
<ROW File="Yerevan" Component_="Aden" FileName="Yerevan" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Asia\Yerevan" SelfReg="false"/>
<ROW File="Azores" Component_="Azores" FileName="Azores" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Atlantic\Azores" SelfReg="false"/>
<ROW File="Bermuda" Component_="Azores" FileName="Bermuda" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Atlantic\Bermuda" SelfReg="false"/>
<ROW File="Canary" Component_="Azores" FileName="Canary" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Atlantic\Canary" SelfReg="false"/>
<ROW File="Cape_Verde" Component_="Azores" FileName="CAPE_V~1|Cape_Verde" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Atlantic\Cape_Verde" SelfReg="false"/>
<ROW File="Faeroe" Component_="Azores" FileName="Faeroe" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Atlantic\Faeroe" SelfReg="false"/>
<ROW File="Faroe" Component_="Azores" FileName="Faroe" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Atlantic\Faroe" SelfReg="false"/>
<ROW File="Jan_Mayen" Component_="Azores" FileName="JAN_MA~1|Jan_Mayen" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Atlantic\Jan_Mayen" SelfReg="false"/>
<ROW File="Madeira" Component_="Azores" FileName="Madeira" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Atlantic\Madeira" SelfReg="false"/>
<ROW File="Reykjavik" Component_="Azores" FileName="REYKJA~1|Reykjavik" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Atlantic\Reykjavik" SelfReg="false"/>
<ROW File="South_Georgia" Component_="Azores" FileName="SOUTH_~1|South_Georgia" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Atlantic\South_Georgia" SelfReg="false"/>
<ROW File="Stanley" Component_="Azores" FileName="Stanley" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Atlantic\Stanley" SelfReg="false"/>
<ROW File="St_Helena" Component_="Azores" FileName="ST_HEL~1|St_Helena" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Atlantic\St_Helena" SelfReg="false"/>
<ROW File="ACT" Component_="ACT" FileName="ACT" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\ACT" SelfReg="false"/>
<ROW File="Adelaide" Component_="ACT" FileName="Adelaide" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Adelaide" SelfReg="false"/>
<ROW File="Brisbane" Component_="ACT" FileName="Brisbane" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Brisbane" SelfReg="false"/>
<ROW File="Broken_Hill" Component_="ACT" FileName="BROKEN~1|Broken_Hill" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Broken_Hill" SelfReg="false"/>
<ROW File="Canberra" Component_="ACT" FileName="Canberra" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Canberra" SelfReg="false"/>
<ROW File="Currie" Component_="ACT" FileName="Currie" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Currie" SelfReg="false"/>
<ROW File="Darwin" Component_="ACT" FileName="Darwin" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Darwin" SelfReg="false"/>
<ROW File="Eucla" Component_="ACT" FileName="Eucla" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Eucla" SelfReg="false"/>
<ROW File="Hobart" Component_="ACT" FileName="Hobart" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Hobart" SelfReg="false"/>
<ROW File="LHI" Component_="ACT" FileName="LHI" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\LHI" SelfReg="false"/>
<ROW File="Lindeman" Component_="ACT" FileName="Lindeman" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Lindeman" SelfReg="false"/>
<ROW File="Lord_Howe" Component_="ACT" FileName="LORD_H~1|Lord_Howe" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Lord_Howe" SelfReg="false"/>
<ROW File="Melbourne" Component_="ACT" FileName="MELBOU~1|Melbourne" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Melbourne" SelfReg="false"/>
<ROW File="North" Component_="ACT" FileName="North" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\North" SelfReg="false"/>
<ROW File="NSW" Component_="ACT" FileName="NSW" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\NSW" SelfReg="false"/>
<ROW File="Perth" Component_="ACT" FileName="Perth" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Perth" SelfReg="false"/>
<ROW File="Queensland" Component_="ACT" FileName="QUEENS~1|Queensland" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Queensland" SelfReg="false"/>
<ROW File="South" Component_="ACT" FileName="South" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\South" SelfReg="false"/>
<ROW File="Sydney" Component_="ACT" FileName="Sydney" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Sydney" SelfReg="false"/>
<ROW File="Tasmania" Component_="ACT" FileName="Tasmania" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Tasmania" SelfReg="false"/>
<ROW File="Victoria" Component_="ACT" FileName="Victoria" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Victoria" SelfReg="false"/>
<ROW File="West" Component_="ACT" FileName="West" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\West" SelfReg="false"/>
<ROW File="Yancowinna" Component_="ACT" FileName="YANCOW~1|Yancowinna" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Australia\Yancowinna" SelfReg="false"/>
<ROW File="Acre" Component_="Acre" FileName="Acre" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Brazil\Acre" SelfReg="false"/>
<ROW File="DeNoronha" Component_="Acre" FileName="DENORO~1|DeNoronha" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Brazil\DeNoronha" SelfReg="false"/>
<ROW File="East" Component_="Acre" FileName="East" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Brazil\East" SelfReg="false"/>
<ROW File="West_1" Component_="Acre" FileName="West" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Brazil\West" SelfReg="false"/>
<ROW File="Atlantic" Component_="Atlantic" FileName="Atlantic" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Canada\Atlantic" SelfReg="false"/>
<ROW File="Central" Component_="Atlantic" FileName="Central" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Canada\Central" SelfReg="false"/>
<ROW File="Eastern" Component_="Atlantic" FileName="Eastern" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Canada\Eastern" SelfReg="false"/>
<ROW File="Mountain" Component_="Atlantic" FileName="Mountain" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Canada\Mountain" SelfReg="false"/>
<ROW File="Newfoundland" Component_="Atlantic" FileName="NEWFOU~1|Newfoundland" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Canada\Newfoundland" SelfReg="false"/>
<ROW File="Pacific" Component_="Atlantic" FileName="Pacific" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Canada\Pacific" SelfReg="false"/>
<ROW File="Saskatchewan" Component_="Atlantic" FileName="SASKAT~1|Saskatchewan" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Canada\Saskatchewan" SelfReg="false"/>
<ROW File="Yukon" Component_="Atlantic" FileName="Yukon" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Canada\Yukon" SelfReg="false"/>
<ROW File="CET" Component_="CET" FileName="CET" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\CET" SelfReg="false"/>
<ROW File="Continental" Component_="Continental" FileName="CONTIN~1|Continental" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Chile\Continental" SelfReg="false"/>
<ROW File="EasterIsland" Component_="Continental" FileName="EASTER~1|EasterIsland" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Chile\EasterIsland" SelfReg="false"/>
<ROW File="CST6CDT" Component_="CET" FileName="CST6CDT" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\CST6CDT" SelfReg="false"/>
<ROW File="Cuba" Component_="CET" FileName="Cuba" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Cuba" SelfReg="false"/>
<ROW File="EET" Component_="CET" FileName="EET" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\EET" SelfReg="false"/>
<ROW File="Egypt" Component_="CET" FileName="Egypt" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Egypt" SelfReg="false"/>
<ROW File="Eire" Component_="CET" FileName="Eire" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Eire" SelfReg="false"/>
<ROW File="EST" Component_="CET" FileName="EST" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\EST" SelfReg="false"/>
<ROW File="EST5EDT" Component_="CET" FileName="EST5EDT" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\EST5EDT" SelfReg="false"/>
<ROW File="GMT" Component_="GMT" FileName="GMT" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT" SelfReg="false"/>
<ROW File="GMT0" Component_="GMT" FileName="GMT_0~1|GMT+0" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT+0" SelfReg="false"/>
<ROW File="GMT1" Component_="GMT" FileName="GMT_1~1|GMT+1" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT+1" SelfReg="false"/>
<ROW File="GMT10" Component_="GMT" FileName="GMT_10~1|GMT+10" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT+10" SelfReg="false"/>
<ROW File="GMT11" Component_="GMT" FileName="GMT_11~1|GMT+11" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT+11" SelfReg="false"/>
<ROW File="GMT12" Component_="GMT" FileName="GMT_12~1|GMT+12" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT+12" SelfReg="false"/>
<ROW File="GMT2" Component_="GMT" FileName="GMT_2~1|GMT+2" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT+2" SelfReg="false"/>
<ROW File="GMT3" Component_="GMT" FileName="GMT_3~1|GMT+3" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT+3" SelfReg="false"/>
<ROW File="GMT4" Component_="GMT" FileName="GMT_4~1|GMT+4" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT+4" SelfReg="false"/>
<ROW File="GMT5" Component_="GMT" FileName="GMT_5~1|GMT+5" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT+5" SelfReg="false"/>
<ROW File="GMT6" Component_="GMT" FileName="GMT_6~1|GMT+6" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT+6" SelfReg="false"/>
<ROW File="GMT7" Component_="GMT" FileName="GMT_7~1|GMT+7" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT+7" SelfReg="false"/>
<ROW File="GMT8" Component_="GMT" FileName="GMT_8~1|GMT+8" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT+8" SelfReg="false"/>
<ROW File="GMT9" Component_="GMT" FileName="GMT_9~1|GMT+9" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT+9" SelfReg="false"/>
<ROW File="GMT0_1" Component_="GMT" FileName="GMT-0" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT-0" SelfReg="false"/>
<ROW File="GMT1_1" Component_="GMT" FileName="GMT-1" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT-1" SelfReg="false"/>
<ROW File="GMT10_1" Component_="GMT" FileName="GMT-10" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT-10" SelfReg="false"/>
<ROW File="GMT11_1" Component_="GMT" FileName="GMT-11" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT-11" SelfReg="false"/>
<ROW File="GMT12_1" Component_="GMT" FileName="GMT-12" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT-12" SelfReg="false"/>
<ROW File="GMT13" Component_="GMT" FileName="GMT-13" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT-13" SelfReg="false"/>
<ROW File="GMT14" Component_="GMT" FileName="GMT-14" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT-14" SelfReg="false"/>
<ROW File="GMT2_1" Component_="GMT" FileName="GMT-2" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT-2" SelfReg="false"/>
<ROW File="GMT3_1" Component_="GMT" FileName="GMT-3" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT-3" SelfReg="false"/>
<ROW File="GMT4_1" Component_="GMT" FileName="GMT-4" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT-4" SelfReg="false"/>
<ROW File="GMT5_1" Component_="GMT" FileName="GMT-5" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT-5" SelfReg="false"/>
<ROW File="GMT6_1" Component_="GMT" FileName="GMT-6" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT-6" SelfReg="false"/>
<ROW File="GMT7_1" Component_="GMT" FileName="GMT-7" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT-7" SelfReg="false"/>
<ROW File="GMT8_1" Component_="GMT" FileName="GMT-8" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT-8" SelfReg="false"/>
<ROW File="GMT9_1" Component_="GMT" FileName="GMT-9" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT-9" SelfReg="false"/>
<ROW File="GMT0_2" Component_="GMT" FileName="GMT0" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\GMT0" SelfReg="false"/>
<ROW File="Greenwich" Component_="GMT" FileName="GREENW~1|Greenwich" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\Greenwich" SelfReg="false"/>
<ROW File="UCT" Component_="GMT" FileName="UCT" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\UCT" SelfReg="false"/>
<ROW File="Universal" Component_="GMT" FileName="UNIVER~1|Universal" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\Universal" SelfReg="false"/>
<ROW File="UTC" Component_="GMT" FileName="UTC" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\UTC" SelfReg="false"/>
<ROW File="Zulu" Component_="GMT" FileName="Zulu" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Etc\Zulu" SelfReg="false"/>
<ROW File="Amsterdam" Component_="Amsterdam" FileName="AMSTER~1|Amsterdam" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Amsterdam" SelfReg="false"/>
<ROW File="Andorra" Component_="Amsterdam" FileName="Andorra" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Andorra" SelfReg="false"/>
<ROW File="Astrakhan" Component_="Amsterdam" FileName="ASTRAK~1|Astrakhan" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Astrakhan" SelfReg="false"/>
<ROW File="Athens" Component_="Amsterdam" FileName="Athens" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Athens" SelfReg="false"/>
<ROW File="Belfast" Component_="Amsterdam" FileName="Belfast" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Belfast" SelfReg="false"/>
<ROW File="Belgrade" Component_="Amsterdam" FileName="Belgrade" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Belgrade" SelfReg="false"/>
<ROW File="Berlin" Component_="Amsterdam" FileName="Berlin" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Berlin" SelfReg="false"/>
<ROW File="Bratislava" Component_="Amsterdam" FileName="BRATIS~1|Bratislava" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Bratislava" SelfReg="false"/>
<ROW File="Brussels" Component_="Amsterdam" FileName="Brussels" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Brussels" SelfReg="false"/>
<ROW File="Bucharest" Component_="Amsterdam" FileName="BUCHAR~1|Bucharest" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Bucharest" SelfReg="false"/>
<ROW File="Budapest" Component_="Amsterdam" FileName="Budapest" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Budapest" SelfReg="false"/>
<ROW File="Busingen" Component_="Amsterdam" FileName="Busingen" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Busingen" SelfReg="false"/>
<ROW File="Chisinau" Component_="Amsterdam" FileName="Chisinau" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Chisinau" SelfReg="false"/>
<ROW File="Copenhagen" Component_="Amsterdam" FileName="COPENH~1|Copenhagen" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Copenhagen" SelfReg="false"/>
<ROW File="Dublin" Component_="Amsterdam" FileName="Dublin" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Dublin" SelfReg="false"/>
<ROW File="Gibraltar" Component_="Amsterdam" FileName="GIBRAL~1|Gibraltar" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Gibraltar" SelfReg="false"/>
<ROW File="Guernsey" Component_="Amsterdam" FileName="Guernsey" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Guernsey" SelfReg="false"/>
<ROW File="Helsinki" Component_="Amsterdam" FileName="Helsinki" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Helsinki" SelfReg="false"/>
<ROW File="Isle_of_Man" Component_="Amsterdam" FileName="ISLE_O~1|Isle_of_Man" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Isle_of_Man" SelfReg="false"/>
<ROW File="Istanbul_1" Component_="Amsterdam" FileName="Istanbul" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Istanbul" SelfReg="false"/>
<ROW File="Jersey" Component_="Amsterdam" FileName="Jersey" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Jersey" SelfReg="false"/>
<ROW File="Kaliningrad" Component_="Amsterdam" FileName="KALINI~1|Kaliningrad" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Kaliningrad" SelfReg="false"/>
<ROW File="Kiev" Component_="Amsterdam" FileName="Kiev" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Kiev" SelfReg="false"/>
<ROW File="Kirov" Component_="Amsterdam" FileName="Kirov" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Kirov" SelfReg="false"/>
<ROW File="Lisbon" Component_="Amsterdam" FileName="Lisbon" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Lisbon" SelfReg="false"/>
<ROW File="Ljubljana" Component_="Amsterdam" FileName="LJUBLJ~1|Ljubljana" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Ljubljana" SelfReg="false"/>
<ROW File="London" Component_="Amsterdam" FileName="London" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\London" SelfReg="false"/>
<ROW File="Luxembourg" Component_="Amsterdam" FileName="LUXEMB~1|Luxembourg" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Luxembourg" SelfReg="false"/>
<ROW File="Madrid" Component_="Amsterdam" FileName="Madrid" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Madrid" SelfReg="false"/>
<ROW File="Malta" Component_="Amsterdam" FileName="Malta" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Malta" SelfReg="false"/>
<ROW File="Mariehamn" Component_="Amsterdam" FileName="MARIEH~1|Mariehamn" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Mariehamn" SelfReg="false"/>
<ROW File="Minsk" Component_="Amsterdam" FileName="Minsk" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Minsk" SelfReg="false"/>
<ROW File="Monaco" Component_="Amsterdam" FileName="Monaco" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Monaco" SelfReg="false"/>
<ROW File="Moscow" Component_="Amsterdam" FileName="Moscow" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Moscow" SelfReg="false"/>
<ROW File="Nicosia_1" Component_="Amsterdam" FileName="Nicosia" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Nicosia" SelfReg="false"/>
<ROW File="Oslo" Component_="Amsterdam" FileName="Oslo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Oslo" SelfReg="false"/>
<ROW File="Paris" Component_="Amsterdam" FileName="Paris" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Paris" SelfReg="false"/>
<ROW File="Podgorica" Component_="Amsterdam" FileName="PODGOR~1|Podgorica" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Podgorica" SelfReg="false"/>
<ROW File="Prague" Component_="Amsterdam" FileName="Prague" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Prague" SelfReg="false"/>
<ROW File="Riga" Component_="Amsterdam" FileName="Riga" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Riga" SelfReg="false"/>
<ROW File="Rome" Component_="Amsterdam" FileName="Rome" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Rome" SelfReg="false"/>
<ROW File="Samara" Component_="Amsterdam" FileName="Samara" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Samara" SelfReg="false"/>
<ROW File="San_Marino" Component_="Amsterdam" FileName="SAN_MA~1|San_Marino" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\San_Marino" SelfReg="false"/>
<ROW File="Sarajevo" Component_="Amsterdam" FileName="Sarajevo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Sarajevo" SelfReg="false"/>
<ROW File="Saratov" Component_="Amsterdam" FileName="Saratov" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Saratov" SelfReg="false"/>
<ROW File="Simferopol" Component_="Amsterdam" FileName="SIMFER~1|Simferopol" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Simferopol" SelfReg="false"/>
<ROW File="Skopje" Component_="Amsterdam" FileName="Skopje" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Skopje" SelfReg="false"/>
<ROW File="Sofia" Component_="Amsterdam" FileName="Sofia" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Sofia" SelfReg="false"/>
<ROW File="Stockholm" Component_="Amsterdam" FileName="STOCKH~1|Stockholm" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Stockholm" SelfReg="false"/>
<ROW File="Tallinn" Component_="Amsterdam" FileName="Tallinn" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Tallinn" SelfReg="false"/>
<ROW File="Tirane" Component_="Amsterdam" FileName="Tirane" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Tirane" SelfReg="false"/>
<ROW File="Tiraspol" Component_="Amsterdam" FileName="Tiraspol" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Tiraspol" SelfReg="false"/>
<ROW File="Ulyanovsk" Component_="Amsterdam" FileName="ULYANO~1|Ulyanovsk" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Ulyanovsk" SelfReg="false"/>
<ROW File="Uzhgorod" Component_="Amsterdam" FileName="Uzhgorod" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Uzhgorod" SelfReg="false"/>
<ROW File="Vaduz" Component_="Amsterdam" FileName="Vaduz" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Vaduz" SelfReg="false"/>
<ROW File="Vatican" Component_="Amsterdam" FileName="Vatican" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Vatican" SelfReg="false"/>
<ROW File="Vienna" Component_="Amsterdam" FileName="Vienna" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Vienna" SelfReg="false"/>
<ROW File="Vilnius" Component_="Amsterdam" FileName="Vilnius" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Vilnius" SelfReg="false"/>
<ROW File="Volgograd" Component_="Amsterdam" FileName="VOLGOG~1|Volgograd" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Volgograd" SelfReg="false"/>
<ROW File="Warsaw" Component_="Amsterdam" FileName="Warsaw" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Warsaw" SelfReg="false"/>
<ROW File="Zagreb" Component_="Amsterdam" FileName="Zagreb" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Zagreb" SelfReg="false"/>
<ROW File="Zaporozhye" Component_="Amsterdam" FileName="ZAPORO~1|Zaporozhye" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Zaporozhye" SelfReg="false"/>
<ROW File="Zurich" Component_="Amsterdam" FileName="Zurich" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Europe\Zurich" SelfReg="false"/>
<ROW File="Factory" Component_="CET" FileName="Factory" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Factory" SelfReg="false"/>
<ROW File="GB" Component_="CET" FileName="GB" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\GB" SelfReg="false"/>
<ROW File="GBEire" Component_="CET" FileName="GB-Eire" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\GB-Eire" SelfReg="false"/>
<ROW File="GMT_1" Component_="CET" FileName="GMT" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\GMT" SelfReg="false"/>
<ROW File="GMT0_3" Component_="CET" FileName="GMT_0~1|GMT+0" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\GMT+0" SelfReg="false"/>
<ROW File="GMT0_4" Component_="CET" FileName="GMT-0" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\GMT-0" SelfReg="false"/>
<ROW File="GMT0_5" Component_="CET" FileName="GMT0" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\GMT0" SelfReg="false"/>
<ROW File="Greenwich_1" Component_="CET" FileName="GREENW~1|Greenwich" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Greenwich" SelfReg="false"/>
<ROW File="Hongkong" Component_="CET" FileName="Hongkong" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Hongkong" SelfReg="false"/>
<ROW File="HST" Component_="CET" FileName="HST" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\HST" SelfReg="false"/>
<ROW File="Iceland" Component_="CET" FileName="Iceland" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Iceland" SelfReg="false"/>
<ROW File="Antananarivo" Component_="Antananarivo" FileName="ANTANA~1|Antananarivo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Indian\Antananarivo" SelfReg="false"/>
<ROW File="Chagos" Component_="Antananarivo" FileName="Chagos" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Indian\Chagos" SelfReg="false"/>
<ROW File="Christmas" Component_="Antananarivo" FileName="CHRIST~1|Christmas" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Indian\Christmas" SelfReg="false"/>
<ROW File="Cocos" Component_="Antananarivo" FileName="Cocos" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Indian\Cocos" SelfReg="false"/>
<ROW File="Comoro" Component_="Antananarivo" FileName="Comoro" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Indian\Comoro" SelfReg="false"/>
<ROW File="Kerguelen" Component_="Antananarivo" FileName="KERGUE~1|Kerguelen" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Indian\Kerguelen" SelfReg="false"/>
<ROW File="Mahe" Component_="Antananarivo" FileName="Mahe" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Indian\Mahe" SelfReg="false"/>
<ROW File="Maldives" Component_="Antananarivo" FileName="Maldives" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Indian\Maldives" SelfReg="false"/>
<ROW File="Mauritius" Component_="Antananarivo" FileName="MAURIT~1|Mauritius" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Indian\Mauritius" SelfReg="false"/>
<ROW File="Mayotte" Component_="Antananarivo" FileName="Mayotte" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Indian\Mayotte" SelfReg="false"/>
<ROW File="Reunion" Component_="Antananarivo" FileName="Reunion" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Indian\Reunion" SelfReg="false"/>
<ROW File="Iran" Component_="CET" FileName="Iran" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Iran" SelfReg="false"/>
<ROW File="iso3166.tab" Component_="CET" FileName="iso3166.tab" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\iso3166.tab" SelfReg="false"/>
<ROW File="Israel" Component_="CET" FileName="Israel" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Israel" SelfReg="false"/>
<ROW File="Jamaica_1" Component_="CET" FileName="Jamaica" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Jamaica" SelfReg="false"/>
<ROW File="Japan" Component_="CET" FileName="Japan" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Japan" SelfReg="false"/>
<ROW File="Kwajalein" Component_="CET" FileName="KWAJAL~1|Kwajalein" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Kwajalein" SelfReg="false"/>
<ROW File="leapseconds" Component_="CET" FileName="LEAPSE~1|leapseconds" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\leapseconds" SelfReg="false"/>
<ROW File="Libya" Component_="CET" FileName="Libya" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Libya" SelfReg="false"/>
<ROW File="MET" Component_="CET" FileName="MET" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\MET" SelfReg="false"/>
<ROW File="BajaNorte" Component_="BajaNorte" FileName="BAJANO~1|BajaNorte" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Mexico\BajaNorte" SelfReg="false"/>
<ROW File="BajaSur" Component_="BajaNorte" FileName="BajaSur" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Mexico\BajaSur" SelfReg="false"/>
<ROW File="General" Component_="BajaNorte" FileName="General" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Mexico\General" SelfReg="false"/>
<ROW File="MST" Component_="CET" FileName="MST" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\MST" SelfReg="false"/>
<ROW File="MST7MDT" Component_="CET" FileName="MST7MDT" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\MST7MDT" SelfReg="false"/>
<ROW File="Navajo" Component_="CET" FileName="Navajo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Navajo" SelfReg="false"/>
<ROW File="NZ" Component_="CET" FileName="NZ" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\NZ" SelfReg="false"/>
<ROW File="NZCHAT" Component_="CET" FileName="NZ-CHAT" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\NZ-CHAT" SelfReg="false"/>
<ROW File="Apia" Component_="Apia" FileName="Apia" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Apia" SelfReg="false"/>
<ROW File="Auckland" Component_="Apia" FileName="Auckland" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Auckland" SelfReg="false"/>
<ROW File="Bougainville" Component_="Apia" FileName="BOUGAI~1|Bougainville" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Bougainville" SelfReg="false"/>
<ROW File="Chatham" Component_="Apia" FileName="Chatham" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Chatham" SelfReg="false"/>
<ROW File="Chuuk" Component_="Apia" FileName="Chuuk" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Chuuk" SelfReg="false"/>
<ROW File="Easter" Component_="Apia" FileName="Easter" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Easter" SelfReg="false"/>
<ROW File="Efate" Component_="Apia" FileName="Efate" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Efate" SelfReg="false"/>
<ROW File="Enderbury" Component_="Apia" FileName="ENDERB~1|Enderbury" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Enderbury" SelfReg="false"/>
<ROW File="Fakaofo" Component_="Apia" FileName="Fakaofo" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Fakaofo" SelfReg="false"/>
<ROW File="Fiji" Component_="Apia" FileName="Fiji" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Fiji" SelfReg="false"/>
<ROW File="Funafuti" Component_="Apia" FileName="Funafuti" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Funafuti" SelfReg="false"/>
<ROW File="Galapagos" Component_="Apia" FileName="GALAPA~1|Galapagos" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Galapagos" SelfReg="false"/>
<ROW File="Gambier" Component_="Apia" FileName="Gambier" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Gambier" SelfReg="false"/>
<ROW File="Guadalcanal" Component_="Apia" FileName="GUADAL~1|Guadalcanal" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Guadalcanal" SelfReg="false"/>
<ROW File="Guam" Component_="Apia" FileName="Guam" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Guam" SelfReg="false"/>
<ROW File="Honolulu" Component_="Apia" FileName="Honolulu" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Honolulu" SelfReg="false"/>
<ROW File="Johnston" Component_="Apia" FileName="Johnston" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Johnston" SelfReg="false"/>
<ROW File="Kanton" Component_="Apia" FileName="Kanton" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Kanton" SelfReg="false"/>
<ROW File="Kiritimati" Component_="Apia" FileName="KIRITI~1|Kiritimati" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Kiritimati" SelfReg="false"/>
<ROW File="Kosrae" Component_="Apia" FileName="Kosrae" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Kosrae" SelfReg="false"/>
<ROW File="Kwajalein_1" Component_="Apia" FileName="KWAJAL~1|Kwajalein" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Kwajalein" SelfReg="false"/>
<ROW File="Majuro" Component_="Apia" FileName="Majuro" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Majuro" SelfReg="false"/>
<ROW File="Marquesas" Component_="Apia" FileName="MARQUE~1|Marquesas" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Marquesas" SelfReg="false"/>
<ROW File="Midway" Component_="Apia" FileName="Midway" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Midway" SelfReg="false"/>
<ROW File="Nauru" Component_="Apia" FileName="Nauru" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Nauru" SelfReg="false"/>
<ROW File="Niue" Component_="Apia" FileName="Niue" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Niue" SelfReg="false"/>
<ROW File="Norfolk" Component_="Apia" FileName="Norfolk" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Norfolk" SelfReg="false"/>
<ROW File="Noumea" Component_="Apia" FileName="Noumea" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Noumea" SelfReg="false"/>
<ROW File="Pago_Pago" Component_="Apia" FileName="PAGO_P~1|Pago_Pago" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Pago_Pago" SelfReg="false"/>
<ROW File="Palau" Component_="Apia" FileName="Palau" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Palau" SelfReg="false"/>
<ROW File="Pitcairn" Component_="Apia" FileName="Pitcairn" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Pitcairn" SelfReg="false"/>
<ROW File="Pohnpei" Component_="Apia" FileName="Pohnpei" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Pohnpei" SelfReg="false"/>
<ROW File="Ponape" Component_="Apia" FileName="Ponape" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Ponape" SelfReg="false"/>
<ROW File="Port_Moresby" Component_="Apia" FileName="PORT_M~1|Port_Moresby" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Port_Moresby" SelfReg="false"/>
<ROW File="Rarotonga" Component_="Apia" FileName="RAROTO~1|Rarotonga" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Rarotonga" SelfReg="false"/>
<ROW File="Saipan" Component_="Apia" FileName="Saipan" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Saipan" SelfReg="false"/>
<ROW File="Samoa" Component_="Apia" FileName="Samoa" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Samoa" SelfReg="false"/>
<ROW File="Tahiti" Component_="Apia" FileName="Tahiti" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Tahiti" SelfReg="false"/>
<ROW File="Tarawa" Component_="Apia" FileName="Tarawa" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Tarawa" SelfReg="false"/>
<ROW File="Tongatapu" Component_="Apia" FileName="TONGAT~1|Tongatapu" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Tongatapu" SelfReg="false"/>
<ROW File="Truk" Component_="Apia" FileName="Truk" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Truk" SelfReg="false"/>
<ROW File="Wake" Component_="Apia" FileName="Wake" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Wake" SelfReg="false"/>
<ROW File="Wallis" Component_="Apia" FileName="Wallis" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Wallis" SelfReg="false"/>
<ROW File="Yap" Component_="Apia" FileName="Yap" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Pacific\Yap" SelfReg="false"/>
<ROW File="Poland" Component_="CET" FileName="Poland" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Poland" SelfReg="false"/>
<ROW File="Portugal" Component_="CET" FileName="Portugal" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Portugal" SelfReg="false"/>
<ROW File="PRC" Component_="CET" FileName="PRC" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\PRC" SelfReg="false"/>
<ROW File="PST8PDT" Component_="CET" FileName="PST8PDT" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\PST8PDT" SelfReg="false"/>
<ROW File="ROC" Component_="CET" FileName="ROC" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\ROC" SelfReg="false"/>
<ROW File="ROK" Component_="CET" FileName="ROK" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\ROK" SelfReg="false"/>
<ROW File="Singapore_1" Component_="CET" FileName="SINGAP~1|Singapore" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Singapore" SelfReg="false"/>
<ROW File="Turkey" Component_="CET" FileName="Turkey" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Turkey" SelfReg="false"/>
<ROW File="tzdata.zi" Component_="CET" FileName="tzdata.zi" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\tzdata.zi" SelfReg="false"/>
<ROW File="UCT_1" Component_="CET" FileName="UCT" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\UCT" SelfReg="false"/>
<ROW File="Universal_1" Component_="CET" FileName="UNIVER~1|Universal" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Universal" SelfReg="false"/>
<ROW File="Alaska" Component_="Alaska" FileName="Alaska" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\US\Alaska" SelfReg="false"/>
<ROW File="Aleutian" Component_="Alaska" FileName="Aleutian" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\US\Aleutian" SelfReg="false"/>
<ROW File="Arizona" Component_="Alaska" FileName="Arizona" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\US\Arizona" SelfReg="false"/>
<ROW File="Central_1" Component_="Alaska" FileName="Central" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\US\Central" SelfReg="false"/>
<ROW File="EastIndiana" Component_="Alaska" FileName="EAST-I~1|East-Indiana" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\US\East-Indiana" SelfReg="false"/>
<ROW File="Eastern_1" Component_="Alaska" FileName="Eastern" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\US\Eastern" SelfReg="false"/>
<ROW File="Hawaii" Component_="Alaska" FileName="Hawaii" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\US\Hawaii" SelfReg="false"/>
<ROW File="IndianaStarke" Component_="Alaska" FileName="INDIAN~1|Indiana-Starke" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\US\Indiana-Starke" SelfReg="false"/>
<ROW File="Michigan" Component_="Alaska" FileName="Michigan" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\US\Michigan" SelfReg="false"/>
<ROW File="Mountain_1" Component_="Alaska" FileName="Mountain" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\US\Mountain" SelfReg="false"/>
<ROW File="Pacific_1" Component_="Alaska" FileName="Pacific" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\US\Pacific" SelfReg="false"/>
<ROW File="Samoa_1" Component_="Alaska" FileName="Samoa" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\US\Samoa" SelfReg="false"/>
<ROW File="UTC_1" Component_="CET" FileName="UTC" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\UTC" SelfReg="false"/>
<ROW File="WSU" Component_="CET" FileName="W-SU" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\W-SU" SelfReg="false"/>
<ROW File="WET" Component_="CET" FileName="WET" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\WET" SelfReg="false"/>
<ROW File="zone.tab" Component_="CET" FileName="zone.tab" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\zone.tab" SelfReg="false"/>
<ROW File="zone1970.tab" Component_="CET" FileName="zone1970.tab" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\zone1970.tab" SelfReg="false"/>
<ROW File="Zulu_1" Component_="CET" FileName="Zulu" Attributes="0" SourcePath="dist\pypew\pytz\zoneinfo\Zulu" SelfReg="false"/>
<ROW File="pywintypes39.dll" Component_="pywintypes39.dll" FileName="PYWINT~1.DLL|pywintypes39.dll" Attributes="0" SourcePath="dist\pypew\pywintypes39.dll" SelfReg="false"/>
<ROW File="select.pyd" Component_="base_library.zip" FileName="select.pyd" Attributes="0" SourcePath="dist\pypew\select.pyd" SelfReg="false"/>
<ROW File="dependency_links.txt" Component_="dependency_links.txt" FileName="DEPEND~1.TXT|dependency_links.txt" Attributes="0" SourcePath="dist\pypew\setuptools-50.3.2.dist-info\dependency_links.txt" SelfReg="false"/>
<ROW File="entry_points.txt_3" Component_="dependency_links.txt" FileName="ENTRY_~1.TXT|entry_points.txt" Attributes="0" SourcePath="dist\pypew\setuptools-50.3.2.dist-info\entry_points.txt" SelfReg="false"/>
<ROW File="INSTALLER_4" Component_="dependency_links.txt" FileName="INSTAL~1|INSTALLER" Attributes="0" SourcePath="dist\pypew\setuptools-50.3.2.dist-info\INSTALLER" SelfReg="false"/>
<ROW File="LICENSE_2" Component_="dependency_links.txt" FileName="LICENSE" Attributes="0" SourcePath="dist\pypew\setuptools-50.3.2.dist-info\LICENSE" SelfReg="false"/>
<ROW File="METADATA_4" Component_="dependency_links.txt" FileName="METADATA" Attributes="0" SourcePath="dist\pypew\setuptools-50.3.2.dist-info\METADATA" SelfReg="false"/>
<ROW File="RECORD_4" Component_="dependency_links.txt" FileName="RECORD" Attributes="0" SourcePath="dist\pypew\setuptools-50.3.2.dist-info\RECORD" SelfReg="false"/>
<ROW File="REQUESTED_2" Component_="dependency_links.txt" FileName="REQUES~1|REQUESTED" Attributes="0" SourcePath="dist\pypew\setuptools-50.3.2.dist-info\REQUESTED" SelfReg="false"/>
<ROW File="top_level.txt_3" Component_="dependency_links.txt" FileName="TOP_LE~1.TXT|top_level.txt" Attributes="0" SourcePath="dist\pypew\setuptools-50.3.2.dist-info\top_level.txt" SelfReg="false"/>
<ROW File="WHEEL_4" Component_="dependency_links.txt" FileName="WHEEL" Attributes="0" SourcePath="dist\pypew\setuptools-50.3.2.dist-info\WHEEL" SelfReg="false"/>
<ROW File="zipsafe_1" Component_="dependency_links.txt" FileName="zip-safe" Attributes="0" SourcePath="dist\pypew\setuptools-50.3.2.dist-info\zip-safe" SelfReg="false"/>
<ROW File="sqlite3.dll" Component_="sqlite3.dll" FileName="sqlite3.dll" Attributes="0" SourcePath="dist\pypew\sqlite3.dll" SelfReg="false"/>
<ROW File="Clemens_Romanus.jpg" Component_="Clemens_Romanus.jpg" FileName="CLEMEN~1.JPG|Clemens_Romanus.jpg" Attributes="0" SourcePath="dist\pypew\static\Clemens_Romanus.jpg" SelfReg="false"/>
<ROW File="androidchrome192x192.png" Component_="androidchrome192x192.png" FileName="ANDROI~1.PNG|android-chrome-192x192.png" Attributes="0" SourcePath="dist\pypew\static\favicon_io\android-chrome-192x192.png" SelfReg="false"/>
<ROW File="androidchrome512x512.png" Component_="androidchrome192x192.png" FileName="ANDROI~2.PNG|android-chrome-512x512.png" Attributes="0" SourcePath="dist\pypew\static\favicon_io\android-chrome-512x512.png" SelfReg="false"/>
<ROW File="appletouchicon.png" Component_="androidchrome192x192.png" FileName="APPLE-~1.PNG|apple-touch-icon.png" Attributes="0" SourcePath="dist\pypew\static\favicon_io\apple-touch-icon.png" SelfReg="false"/>
<ROW File="favicon16x16.png" Component_="androidchrome192x192.png" FileName="FAVICO~1.PNG|favicon-16x16.png" Attributes="0" SourcePath="dist\pypew\static\favicon_io\favicon-16x16.png" SelfReg="false"/>
<ROW File="favicon32x32.png" Component_="androidchrome192x192.png" FileName="FAVICO~2.PNG|favicon-32x32.png" Attributes="0" SourcePath="dist\pypew\static\favicon_io\favicon-32x32.png" SelfReg="false"/>
<ROW File="favicon.ico" Component_="androidchrome192x192.png" FileName="favicon.ico" Attributes="0" SourcePath="dist\pypew\static\favicon_io\favicon.ico" SelfReg="false"/>
<ROW File="site.webmanifest" Component_="androidchrome192x192.png" FileName="SITE~1.WEB|site.webmanifest" Attributes="0" SourcePath="dist\pypew\static\favicon_io\site.webmanifest" SelfReg="false"/>
<ROW File="notify.css" Component_="Clemens_Romanus.jpg" FileName="notify.css" Attributes="0" SourcePath="dist\pypew\static\notify.css" SelfReg="false"/>
<ROW File="notify.js" Component_="Clemens_Romanus.jpg" FileName="notify.js" Attributes="0" SourcePath="dist\pypew\static\notify.js" SelfReg="false"/>
<ROW File="notify.min.css" Component_="Clemens_Romanus.jpg" FileName="NOTIFY~1.CSS|notify.min.css" Attributes="0" SourcePath="dist\pypew\static\notify.min.css" SelfReg="false"/>
<ROW File="notify.min.js" Component_="Clemens_Romanus.jpg" FileName="NOTIFY~1.JS|notify.min.js" Attributes="0" SourcePath="dist\pypew\static\notify.min.js" SelfReg="false"/>
<ROW File="styles.css" Component_="Clemens_Romanus.jpg" FileName="styles.css" Attributes="0" SourcePath="dist\pypew\static\styles.css" SelfReg="false"/>
<ROW File="html" Component_="html" FileName="404~1.HTM|404.html" Attributes="0" SourcePath="dist\pypew\templates\404.html" SelfReg="false"/>
<ROW File="acknowledgements.html" Component_="html" FileName="ACKNOW~1.HTM|acknowledgements.html" Attributes="0" SourcePath="dist\pypew\templates\acknowledgements.html" SelfReg="false"/>
<ROW File="base.html" Component_="html" FileName="BASE~1.HTM|base.html" Attributes="0" SourcePath="dist\pypew\templates\base.html" SelfReg="false"/>
<ROW File="exception.html" Component_="html" FileName="EXCEPT~1.HTM|exception.html" Attributes="0" SourcePath="dist\pypew\templates\exception.html" SelfReg="false"/>
<ROW File="feastDetails.html" Component_="html" FileName="FEASTD~1.HTM|feastDetails.html" Attributes="0" SourcePath="dist\pypew\templates\feastDetails.html" SelfReg="false"/>
<ROW File="feastList.html" Component_="html" FileName="FEASTL~1.HTM|feastList.html" Attributes="0" SourcePath="dist\pypew\templates\feastList.html" SelfReg="false"/>
<ROW File="feasts.html" Component_="html" FileName="FEASTS~1.HTM|feasts.html" Attributes="0" SourcePath="dist\pypew\templates\feasts.html" SelfReg="false"/>
<ROW File="footer.html" Component_="html" FileName="FOOTER~1.HTM|footer.html" Attributes="0" SourcePath="dist\pypew\templates\footer.html" SelfReg="false"/>
<ROW File="index.html" Component_="html" FileName="INDEX~1.HTM|index.html" Attributes="0" SourcePath="dist\pypew\templates\index.html" SelfReg="false"/>