nnnjjj123
2020-11-17 1b2c1edb61190eeb19f465ff031eaa3b2a1b8dbc
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
Rule    GB-Eire    1916    only    -    May    21    2:00s    1:00    BST
Rule    GB-Eire    1916    only    -    Oct     1    2:00s    0    GMT
Rule    GB-Eire    1917    only    -    Apr     8    2:00s    1:00    BST
Rule    GB-Eire    1917    only    -    Sep    17    2:00s    0    GMT
Rule    GB-Eire    1918    only    -    Mar    24    2:00s    1:00    BST
Rule    GB-Eire    1918    only    -    Sep    30    2:00s    0    GMT
Rule    GB-Eire    1919    only    -    Mar    30    2:00s    1:00    BST
Rule    GB-Eire    1919    only    -    Sep    29    2:00s    0    GMT
Rule    GB-Eire    1920    only    -    Mar    28    2:00s    1:00    BST
Rule    GB-Eire    1920    only    -    Oct    25    2:00s    0    GMT
Rule    GB-Eire    1921    only    -    Apr     3    2:00s    1:00    BST
Rule    GB-Eire    1921    only    -    Oct     3    2:00s    0    GMT
Rule    GB-Eire    1922    only    -    Mar    26    2:00s    1:00    BST
Rule    GB-Eire    1922    only    -    Oct     8    2:00s    0    GMT
Rule    GB-Eire    1923    only    -    Apr    Sun>=16    2:00s    1:00    BST
Rule    GB-Eire    1923    1924    -    Sep    Sun>=16    2:00s    0    GMT
Rule    GB-Eire    1924    only    -    Apr    Sun>=9    2:00s    1:00    BST
Rule    GB-Eire    1925    1926    -    Apr    Sun>=16    2:00s    1:00    BST
Rule    GB-Eire    1925    1938    -    Oct    Sun>=2    2:00s    0    GMT
Rule    GB-Eire    1927    only    -    Apr    Sun>=9    2:00s    1:00    BST
Rule    GB-Eire    1928    1929    -    Apr    Sun>=16    2:00s    1:00    BST
Rule    GB-Eire    1930    only    -    Apr    Sun>=9    2:00s    1:00    BST
Rule    GB-Eire    1931    1932    -    Apr    Sun>=16    2:00s    1:00    BST
Rule    GB-Eire    1933    only    -    Apr    Sun>=9    2:00s    1:00    BST
Rule    GB-Eire    1934    only    -    Apr    Sun>=16    2:00s    1:00    BST
Rule    GB-Eire    1935    only    -    Apr    Sun>=9    2:00s    1:00    BST
Rule    GB-Eire    1936    1937    -    Apr    Sun>=16    2:00s    1:00    BST
Rule    GB-Eire    1938    only    -    Apr    Sun>=9    2:00s    1:00    BST
Rule    GB-Eire    1939    only    -    Apr    Sun>=16    2:00s    1:00    BST
Rule    GB-Eire    1939    only    -    Nov    Sun>=16    2:00s    0    GMT
Rule    GB-Eire    1940    only    -    Feb    Sun>=23    2:00s    1:00    BST
Rule    GB-Eire    1941    only    -    May    Sun>=2    1:00s    2:00    BDST
Rule    GB-Eire    1941    1943    -    Aug    Sun>=9    1:00s    1:00    BST
Rule    GB-Eire    1942    1944    -    Apr    Sun>=2    1:00s    2:00    BDST
Rule    GB-Eire    1944    only    -    Sep    Sun>=16    1:00s    1:00    BST
Rule    GB-Eire    1945    only    -    Apr    Mon>=2    1:00s    2:00    BDST
Rule    GB-Eire    1945    only    -    Jul    Sun>=9    1:00s    1:00    BST
Rule    GB-Eire    1945    1946    -    Oct    Sun>=2    2:00s    0    GMT
Rule    GB-Eire    1946    only    -    Apr    Sun>=9    2:00s    1:00    BST
Rule    GB-Eire    1947    only    -    Mar    16    2:00s    1:00    BST
Rule    GB-Eire    1947    only    -    Apr    13    1:00s    2:00    BDST
Rule    GB-Eire    1947    only    -    Aug    10    1:00s    1:00    BST
Rule    GB-Eire    1947    only    -    Nov     2    2:00s    0    GMT
Rule    GB-Eire    1948    only    -    Mar    14    2:00s    1:00    BST
Rule    GB-Eire    1948    only    -    Oct    31    2:00s    0    GMT
Rule    GB-Eire    1949    only    -    Apr     3    2:00s    1:00    BST
Rule    GB-Eire    1949    only    -    Oct    30    2:00s    0    GMT
Rule    GB-Eire    1950    1952    -    Apr    Sun>=14    2:00s    1:00    BST
Rule    GB-Eire    1950    1952    -    Oct    Sun>=21    2:00s    0    GMT
Rule    GB-Eire    1953    only    -    Apr    Sun>=16    2:00s    1:00    BST
Rule    GB-Eire    1953    1960    -    Oct    Sun>=2    2:00s    0    GMT
Rule    GB-Eire    1954    only    -    Apr    Sun>=9    2:00s    1:00    BST
Rule    GB-Eire    1955    1956    -    Apr    Sun>=16    2:00s    1:00    BST
Rule    GB-Eire    1957    only    -    Apr    Sun>=9    2:00s    1:00    BST
Rule    GB-Eire    1958    1959    -    Apr    Sun>=16    2:00s    1:00    BST
Rule    GB-Eire    1960    only    -    Apr    Sun>=9    2:00s    1:00    BST
Rule    GB-Eire    1961    1963    -    Mar    lastSun    2:00s    1:00    BST
Rule    GB-Eire    1961    1968    -    Oct    Sun>=23    2:00s    0    GMT
Rule    GB-Eire    1964    1967    -    Mar    Sun>=19    2:00s    1:00    BST
Rule    GB-Eire    1968    only    -    Feb    18    2:00s    1:00    BST
Rule    GB-Eire    1972    1980    -    Mar    Sun>=16    2:00s    1:00    BST
Rule    GB-Eire    1972    1980    -    Oct    Sun>=23    2:00s    0    GMT
Rule    GB-Eire    1981    1995    -    Mar    lastSun    1:00u    1:00    BST
Rule    GB-Eire 1981    1989    -    Oct    Sun>=23    1:00u    0    GMT
Rule    GB-Eire 1990    1995    -    Oct    Sun>=22    1:00u    0    GMT
Zone    Europe/London    -0:01:15 -    LMT    1847 Dec  1 0:00s
             0:00    GB-Eire    %s    1968 Oct 27
             1:00    -    BST    1971 Oct 31 2:00u
             0:00    GB-Eire    %s    1996
             0:00    EU    GMT/BST
Link    Europe/London    Europe/Jersey
Link    Europe/London    Europe/Guernsey
Link    Europe/London    Europe/Isle_of_Man
Zone    Europe/Dublin    -0:25:00 -    LMT    1880 Aug  2
            -0:25:21 -    DMT    1916 May 21 2:00
            -0:25:21 1:00    IST    1916 Oct  1 2:00s
             0:00    GB-Eire    %s    1921 Dec  6 # independence
             0:00    GB-Eire    GMT/IST    1940 Feb 25 2:00
             0:00    1:00    IST    1946 Oct  6 2:00
             0:00    -    GMT    1947 Mar 16 2:00
             0:00    1:00    IST    1947 Nov  2 2:00
             0:00    -    GMT    1948 Apr 18 2:00
             0:00    GB-Eire    GMT/IST    1968 Oct 27
             1:00    -    IST    1971 Oct 31 2:00u
             0:00    GB-Eire    GMT/IST    1996
             0:00    EU    GMT/IST
Rule    EU    1977    1980    -    Apr    Sun>=1     1:00u    1:00    S
Rule    EU    1977    only    -    Sep    lastSun     1:00u    0    -
Rule    EU    1978    only    -    Oct     1     1:00u    0    -
Rule    EU    1979    1995    -    Sep    lastSun     1:00u    0    -
Rule    EU    1981    max    -    Mar    lastSun     1:00u    1:00    S
Rule    EU    1996    max    -    Oct    lastSun     1:00u    0    -
Rule    W-Eur    1977    1980    -    Apr    Sun>=1     1:00s    1:00    S
Rule    W-Eur    1977    only    -    Sep    lastSun     1:00s    0    -
Rule    W-Eur    1978    only    -    Oct     1     1:00s    0    -
Rule    W-Eur    1979    1995    -    Sep    lastSun     1:00s    0    -
Rule    W-Eur    1981    max    -    Mar    lastSun     1:00s    1:00    S
Rule    W-Eur    1996    max    -    Oct    lastSun     1:00s    0    -
Rule    C-Eur    1916    only    -    Apr    30    23:00    1:00    S
Rule    C-Eur    1916    only    -    Oct     1     1:00    0    -
Rule    C-Eur    1917    1918    -    Apr    Mon>=15     2:00s    1:00    S
Rule    C-Eur    1917    1918    -    Sep    Mon>=15     2:00s    0    -
Rule    C-Eur    1940    only    -    Apr     1     2:00s    1:00    S
Rule    C-Eur    1942    only    -    Nov     2     2:00s    0    -
Rule    C-Eur    1943    only    -    Mar    29     2:00s    1:00    S
Rule    C-Eur    1943    only    -    Oct     4     2:00s    0    -
Rule    C-Eur    1944    1945    -    Apr    Mon>=1     2:00s    1:00    S
Rule    C-Eur    1944    only    -    Oct     2     2:00s    0    -
Rule    C-Eur    1945    only    -    Sep    16     2:00s    0    -
Rule    C-Eur    1977    1980    -    Apr    Sun>=1     2:00s    1:00    S
Rule    C-Eur    1977    only    -    Sep    lastSun     2:00s    0    -
Rule    C-Eur    1978    only    -    Oct     1     2:00s    0    -
Rule    C-Eur    1979    1995    -    Sep    lastSun     2:00s    0    -
Rule    C-Eur    1981    max    -    Mar    lastSun     2:00s    1:00    S
Rule    C-Eur    1996    max    -    Oct    lastSun     2:00s    0    -
Rule    E-Eur    1977    1980    -    Apr    Sun>=1     0:00    1:00    S
Rule    E-Eur    1977    only    -    Sep    lastSun     0:00    0    -
Rule    E-Eur    1978    only    -    Oct     1     0:00    0    -
Rule    E-Eur    1979    1995    -    Sep    lastSun     0:00    0    -
Rule    E-Eur    1981    max    -    Mar    lastSun     0:00    1:00    S
Rule    E-Eur    1996    max    -    Oct    lastSun     0:00    0    -
Rule    Russia    1917    only    -    Jul     1    23:00    1:00    MST    # Moscow Summer Time
Rule    Russia    1917    only    -    Dec    28     0:00    0    MMT    # Moscow Mean Time
Rule    Russia    1918    only    -    May    31    22:00    2:00    MDST    # Moscow Double Summer Time
Rule    Russia    1918    only    -    Sep    16     1:00    1:00    MST
Rule    Russia    1919    only    -    May    31    23:00    2:00    MDST
Rule    Russia    1919    only    -    Jul     1     2:00    1:00    S
Rule    Russia    1919    only    -    Aug    16     0:00    0    -
Rule    Russia    1921    only    -    Feb    14    23:00    1:00    S
Rule    Russia    1921    only    -    Mar    20    23:00    2:00    M # Midsummer
Rule    Russia    1921    only    -    Sep     1     0:00    1:00    S
Rule    Russia    1921    only    -    Oct     1     0:00    0    -
Rule    Russia    1981    1984    -    Apr     1     0:00    1:00    S
Rule    Russia    1981    1983    -    Oct     1     0:00    0    -
Rule    Russia    1984    1991    -    Sep    lastSun     2:00s    0    -
Rule    Russia    1985    1991    -    Mar    lastSun     2:00s    1:00    S
Rule    Russia    1992    only    -    Mar    lastSat     23:00    1:00    S
Rule    Russia    1992    only    -    Sep    lastSat     23:00    0    -
Rule    Russia    1993    max    -    Mar    lastSun     2:00s    1:00    S
Rule    Russia    1993    1995    -    Sep    lastSun     2:00s    0    -
Rule    Russia    1996    max    -    Oct    lastSun     2:00s    0    -
Zone    WET        0:00    EU    WE%sT
Zone    CET        1:00    C-Eur    CE%sT
Zone    MET        1:00    C-Eur    ME%sT
Zone    EET        2:00    EU    EE%sT
Rule    Albania    1940    only    -    Jun    16    0:00    1:00    S
Rule    Albania    1942    only    -    Nov     2    3:00    0    -
Rule    Albania    1943    only    -    Mar    29    2:00    1:00    S
Rule    Albania    1943    only    -    Apr    10    3:00    0    -
Rule    Albania    1974    only    -    May     4    0:00    1:00    S
Rule    Albania    1974    only    -    Oct     2    0:00    0    -
Rule    Albania    1975    only    -    May     1    0:00    1:00    S
Rule    Albania    1975    only    -    Oct     2    0:00    0    -
Rule    Albania    1976    only    -    May     2    0:00    1:00    S
Rule    Albania    1976    only    -    Oct     3    0:00    0    -
Rule    Albania    1977    only    -    May     8    0:00    1:00    S
Rule    Albania    1977    only    -    Oct     2    0:00    0    -
Rule    Albania    1978    only    -    May     6    0:00    1:00    S
Rule    Albania    1978    only    -    Oct     1    0:00    0    -
Rule    Albania    1979    only    -    May     5    0:00    1:00    S
Rule    Albania    1979    only    -    Sep    30    0:00    0    -
Rule    Albania    1980    only    -    May     3    0:00    1:00    S
Rule    Albania    1980    only    -    Oct     4    0:00    0    -
Rule    Albania    1981    only    -    Apr    26    0:00    1:00    S
Rule    Albania    1981    only    -    Sep    27    0:00    0    -
Rule    Albania    1982    only    -    May     2    0:00    1:00    S
Rule    Albania    1982    only    -    Oct     3    0:00    0    -
Rule    Albania    1983    only    -    Apr    18    0:00    1:00    S
Rule    Albania    1983    only    -    Oct     1    0:00    0    -
Rule    Albania    1984    only    -    Apr     1    0:00    1:00    S
Zone    Europe/Tirane    1:19:20 -    LMT    1914
            1:00    -    CET    1940 Jun 16
            1:00    Albania    CE%sT    1984 Jul
            1:00    EU    CE%sT
Zone    Europe/Andorra    0:06:04 -    LMT    1901
            0:00    -    WET    1946 Sep 30
            1:00    -    CET    1985 Mar 31 2:00
            1:00    EU    CE%sT
Rule    Austria    1920    only    -    Apr     5    2:00s    1:00    S
Rule    Austria    1920    only    -    Sep    13    2:00s    0    -
Rule    Austria    1946    only    -    Apr    14    2:00s    1:00    S
Rule    Austria    1946    1948    -    Oct    Sun>=1    2:00s    0    -
Rule    Austria    1947    only    -    Apr     6    2:00s    1:00    S
Rule    Austria    1948    only    -    Apr    18    2:00s    1:00    S
Rule    Austria    1980    only    -    Apr     6    0:00    1:00    S
Rule    Austria    1980    only    -    Sep    28    0:00    0    -
Zone    Europe/Vienna    1:05:20 -    LMT    1893 Apr
            1:00    C-Eur    CE%sT    1920
            1:00    Austria    CE%sT    1940 Apr  1 2:00s
            1:00    C-Eur    CE%sT    1945 Apr  2 2:00s
            1:00    1:00    CEST    1945 Apr 12 2:00s
            1:00    -    CET    1946
            1:00    Austria    CE%sT    1981
            1:00    EU    CE%sT
Zone    Europe/Minsk    1:50:16 -    LMT    1880
            1:50    -    MMT    1924 May 2 # Minsk Mean Time
            2:00    -    EET    1930 Jun 21
            3:00    -    MSK    1941 Jun 28
            1:00    C-Eur    CE%sT    1944 Jul  3
            3:00    Russia    MSK/MSD    1990
            3:00    -    MSK    1991 Mar 31 2:00s
            2:00    1:00    EEST    1991 Sep 29 2:00s
            2:00    -    EET    1992 Mar 29 0:00s
            2:00    1:00    EEST    1992 Sep 27 0:00s
            2:00    Russia    EE%sT
Rule    Belgium    1918    only    -    Mar     9     0:00s    1:00    S
Rule    Belgium    1918    1919    -    Oct    Sat>=1    23:00s    0    -
Rule    Belgium    1919    only    -    Mar     1    23:00s    1:00    S
Rule    Belgium    1920    only    -    Feb    14    23:00s    1:00    S
Rule    Belgium    1920    only    -    Oct    23    23:00s    0    -
Rule    Belgium    1921    only    -    Mar    14    23:00s    1:00    S
Rule    Belgium    1921    only    -    Oct    25    23:00s    0    -
Rule    Belgium    1922    only    -    Mar    25    23:00s    1:00    S
Rule    Belgium    1922    1927    -    Oct    Sat>=1    23:00s    0    -
Rule    Belgium    1923    only    -    Apr    21    23:00s    1:00    S
Rule    Belgium    1924    only    -    Mar    29    23:00s    1:00    S
Rule    Belgium    1925    only    -    Apr     4    23:00s    1:00    S
Rule    Belgium    1926    only    -    Apr    17    23:00s    1:00    S
Rule    Belgium    1927    only    -    Apr     9    23:00s    1:00    S
Rule    Belgium    1928    only    -    Apr    14    23:00s    1:00    S
Rule    Belgium    1928    1938    -    Oct    Sun>=2     2:00s    0    -
Rule    Belgium    1929    only    -    Apr    21     2:00s    1:00    S
Rule    Belgium    1930    only    -    Apr    13     2:00s    1:00    S
Rule    Belgium    1931    only    -    Apr    19     2:00s    1:00    S
Rule    Belgium    1932    only    -    Apr     3     2:00s    1:00    S
Rule    Belgium    1933    only    -    Mar    26     2:00s    1:00    S
Rule    Belgium    1934    only    -    Apr     8     2:00s    1:00    S
Rule    Belgium    1935    only    -    Mar    31     2:00s    1:00    S
Rule    Belgium    1936    only    -    Apr    19     2:00s    1:00    S
Rule    Belgium    1937    only    -    Apr     4     2:00s    1:00    S
Rule    Belgium    1938    only    -    Mar    27     2:00s    1:00    S
Rule    Belgium    1939    only    -    Apr    16     2:00s    1:00    S
Rule    Belgium    1939    only    -    Nov    19     2:00s    0    -
Rule    Belgium    1940    only    -    Feb    25     2:00s    1:00    S
Rule    Belgium    1944    only    -    Sep    17     2:00s    0    -
Rule    Belgium    1945    only    -    Apr     2     2:00s    1:00    S
Rule    Belgium    1945    only    -    Sep    16     2:00s    0    -
Rule    Belgium    1946    only    -    May    19     2:00s    1:00    S
Rule    Belgium    1946    only    -    Oct     7     2:00s    0    -
Zone    Europe/Brussels    0:17:30 -    LMT    1880
            0:17:30    -    BMT    1892 May  1 12:00 # Brussels MT
            0:00    -    WET    1914 Nov  8
            1:00    -    CET    1916 May  1  0:00
            1:00    C-Eur    CE%sT    1918 Nov 11 11:00u
            0:00    Belgium    WE%sT    1940 May 20  2:00s
            1:00    C-Eur    CE%sT    1944 Sep  3
            1:00    Belgium    CE%sT    1977
            1:00    EU    CE%sT
Rule    Bulg    1979    only    -    Mar    31    23:00    1:00    S
Rule    Bulg    1979    only    -    Oct     1     1:00    0    -
Rule    Bulg    1980    1982    -    Apr    Sat>=1    23:00    1:00    S
Rule    Bulg    1980    only    -    Sep    29     1:00    0    -
Rule    Bulg    1981    only    -    Sep    27     2:00    0    -
Zone    Europe/Sofia    1:33:16 -    LMT    1880
            1:56:56    -    IMT    1894 Nov 30 # Istanbul MT?
            2:00    -    EET    1942 Nov  2  3:00
            1:00    C-Eur    CE%sT    1945
            1:00    -    CET    1945 Apr 2 3:00
            2:00    -    EET    1979 Mar 31 23:00
            2:00    Bulg    EE%sT    1982 Sep 26  2:00
            2:00    C-Eur    EE%sT    1991
            2:00    E-Eur    EE%sT    1997
            2:00    EU    EE%sT
Rule    Czech    1945    only    -    Apr     8    2:00s    1:00    S
Rule    Czech    1945    only    -    Nov    18    2:00s    0    -
Rule    Czech    1946    only    -    May     6    2:00s    1:00    S
Rule    Czech    1946    1949    -    Oct    Sun>=1    2:00s    0    -
Rule    Czech    1947    only    -    Apr    20    2:00s    1:00    S
Rule    Czech    1948    only    -    Apr    18    2:00s    1:00    S
Rule    Czech    1949    only    -    Apr     9    2:00s    1:00    S
Zone    Europe/Prague    0:57:44 -    LMT    1850
            0:57:44    -    PMT    1891 Oct     # Prague Mean Time
            1:00    C-Eur    CE%sT    1944 Sep 17 2:00s
            1:00    Czech    CE%sT    1979
            1:00    EU    CE%sT
Rule    Denmark    1916    only    -    May    14    23:00    1:00    S
Rule    Denmark    1916    only    -    Sep    30    23:00    0    -
Rule    Denmark    1940    only    -    May    15     0:00    1:00    S
Rule    Denmark    1945    only    -    Apr     2     2:00s    1:00    S
Rule    Denmark    1945    only    -    Aug    15     2:00s    0    -
Rule    Denmark    1946    only    -    May     1     2:00s    1:00    S
Rule    Denmark    1946    only    -    Sep     1     2:00s    0    -
Rule    Denmark    1947    only    -    May     4     2:00s    1:00    S
Rule    Denmark    1947    only    -    Aug    10     2:00s    0    -
Rule    Denmark    1948    only    -    May     9     2:00s    1:00    S
Rule    Denmark    1948    only    -    Aug     8     2:00s    0    -
Zone Europe/Copenhagen     0:50:20 -    LMT    1890
             0:50:20 -    CMT    1894 Jan  1 # Copenhagen MT
             1:00    Denmark    CE%sT    1942 Nov  2 2:00s
             1:00    C-Eur    CE%sT    1945 Apr  2 2:00
             1:00    Denmark    CE%sT    1980
             1:00    EU    CE%sT
Zone Atlantic/Faroe    -0:27:04 -    LMT    1908 Jan 11    # Torshavn
             0:00    -    WET    1981
             0:00    EU    WE%sT
Rule    Thule    1991    1992    -    Mar    lastSun    2:00    1:00    D
Rule    Thule    1991    1992    -    Sep    lastSun    2:00    0    S
Rule    Thule    1993    2006    -    Apr    Sun>=1    2:00    1:00    D
Rule    Thule    1993    2006    -    Oct    lastSun    2:00    0    S
Rule    Thule    2007    max    -    Mar    Sun>=8    2:00    1:00    D
Rule    Thule    2007    max    -    Nov    Sun>=1    2:00    0    S
Zone America/Danmarkshavn -1:14:40 -    LMT    1916 Jul 28
            -3:00    -    WGT    1980 Apr  6 2:00
            -3:00    EU    WG%sT    1996
            0:00    -    GMT
Zone America/Scoresbysund -1:27:52 -    LMT    1916 Jul 28 # Ittoqqortoormiit
            -2:00    -    CGT    1980 Apr  6 2:00
            -2:00    C-Eur    CG%sT    1981 Mar 29
            -1:00    EU    EG%sT
Zone America/Godthab    -3:26:56 -    LMT    1916 Jul 28 # Nuuk
            -3:00    -    WGT    1980 Apr  6 2:00
            -3:00    EU    WG%sT
Zone America/Thule    -4:35:08 -    LMT    1916 Jul 28 # Pituffik air base
            -4:00    Thule    A%sT
Zone    Europe/Tallinn    1:39:00    -    LMT    1880
            1:39:00    -    TMT    1918 Feb # Tallinn Mean Time
            1:00    C-Eur    CE%sT    1919 Jul
            1:39:00    -    TMT    1921 May
            2:00    -    EET    1940 Aug  6
            3:00    -    MSK    1941 Sep 15
            1:00    C-Eur    CE%sT    1944 Sep 22
            3:00    Russia    MSK/MSD    1989 Mar 26 2:00s
            2:00    1:00    EEST    1989 Sep 24 2:00s
            2:00    C-Eur    EE%sT    1998 Sep 22
            2:00    EU    EE%sT    1999 Nov  1
            2:00    -    EET    2002 Feb 21
            2:00    EU    EE%sT
Rule    Finland    1942    only    -    Apr    3    0:00    1:00    S
Rule    Finland    1942    only    -    Oct    3    0:00    0    -
Zone    Europe/Helsinki    1:39:52 -    LMT    1878 May 31
            1:39:52    -    HMT    1921 May    # Helsinki Mean Time
            2:00    Finland    EE%sT    1981 Mar 29 2:00
            2:00    EU    EE%sT
Link    Europe/Helsinki    Europe/Mariehamn
Rule    France    1916    only    -    Jun    14    23:00s    1:00    S
Rule    France    1916    1919    -    Oct    Sun>=1    23:00s    0    -
Rule    France    1917    only    -    Mar    24    23:00s    1:00    S
Rule    France    1918    only    -    Mar     9    23:00s    1:00    S
Rule    France    1919    only    -    Mar     1    23:00s    1:00    S
Rule    France    1920    only    -    Feb    14    23:00s    1:00    S
Rule    France    1920    only    -    Oct    23    23:00s    0    -
Rule    France    1921    only    -    Mar    14    23:00s    1:00    S
Rule    France    1921    only    -    Oct    25    23:00s    0    -
Rule    France    1922    only    -    Mar    25    23:00s    1:00    S
Rule    France    1922    1938    -    Oct    Sat>=1    23:00s    0    -
Rule    France    1923    only    -    May    26    23:00s    1:00    S
Rule    France    1924    only    -    Mar    29    23:00s    1:00    S
Rule    France    1925    only    -    Apr     4    23:00s    1:00    S
Rule    France    1926    only    -    Apr    17    23:00s    1:00    S
Rule    France    1927    only    -    Apr     9    23:00s    1:00    S
Rule    France    1928    only    -    Apr    14    23:00s    1:00    S
Rule    France    1929    only    -    Apr    20    23:00s    1:00    S
Rule    France    1930    only    -    Apr    12    23:00s    1:00    S
Rule    France    1931    only    -    Apr    18    23:00s    1:00    S
Rule    France    1932    only    -    Apr     2    23:00s    1:00    S
Rule    France    1933    only    -    Mar    25    23:00s    1:00    S
Rule    France    1934    only    -    Apr     7    23:00s    1:00    S
Rule    France    1935    only    -    Mar    30    23:00s    1:00    S
Rule    France    1936    only    -    Apr    18    23:00s    1:00    S
Rule    France    1937    only    -    Apr     3    23:00s    1:00    S
Rule    France    1938    only    -    Mar    26    23:00s    1:00    S
Rule    France    1939    only    -    Apr    15    23:00s    1:00    S
Rule    France    1939    only    -    Nov    18    23:00s    0    -
Rule    France    1940    only    -    Feb    25     2:00    1:00    S
Rule    France    1941    only    -    May     5     0:00    2:00    M # Midsummer
Rule    France    1941    only    -    Oct     6     0:00    1:00    S
Rule    France    1942    only    -    Mar     9     0:00    2:00    M
Rule    France    1942    only    -    Nov     2     3:00    1:00    S
Rule    France    1943    only    -    Mar    29     2:00    2:00    M
Rule    France    1943    only    -    Oct     4     3:00    1:00    S
Rule    France    1944    only    -    Apr     3     2:00    2:00    M
Rule    France    1944    only    -    Oct     8     1:00    1:00    S
Rule    France    1945    only    -    Apr     2     2:00    2:00    M
Rule    France    1945    only    -    Sep    16     3:00    0    -
Rule    France    1976    only    -    Mar    28     1:00    1:00    S
Rule    France    1976    only    -    Sep    26     1:00    0    -
Zone    Europe/Paris    0:09:21 -    LMT    1891 Mar 15  0:01
            0:09:21    -    PMT    1911 Mar 11  0:01  # Paris MT
            0:00    France    WE%sT    1940 Jun 14 23:00
            1:00    C-Eur    CE%sT    1944 Aug 25
            0:00    France    WE%sT    1945 Sep 16  3:00
            1:00    France    CE%sT    1977
            1:00    EU    CE%sT
Rule    Germany    1946    only    -    Apr    14    2:00s    1:00    S
Rule    Germany    1946    only    -    Oct     7    2:00s    0    -
Rule    Germany    1947    1949    -    Oct    Sun>=1    2:00s    0    -
Rule    Germany    1947    only    -    Apr     6    3:00s    1:00    S
Rule    Germany    1947    only    -    May    11    2:00s    2:00    M
Rule    Germany    1947    only    -    Jun    29    3:00    1:00    S
Rule    Germany    1948    only    -    Apr    18    2:00s    1:00    S
Rule    Germany    1949    only    -    Apr    10    2:00s    1:00    S
Rule SovietZone    1945    only    -    May    24    2:00    2:00    M # Midsummer
Rule SovietZone    1945    only    -    Sep    24    3:00    1:00    S
Rule SovietZone    1945    only    -    Nov    18    2:00s    0    -
Zone    Europe/Berlin    0:53:28 -    LMT    1893 Apr
            1:00    C-Eur    CE%sT    1945 May 24 2:00
            1:00 SovietZone    CE%sT    1946
            1:00    Germany    CE%sT    1980
            1:00    EU    CE%sT
Zone Europe/Gibraltar    -0:21:24 -    LMT    1880 Aug  2 0:00s
            0:00    GB-Eire    %s    1957 Apr 14 2:00
            1:00    -    CET    1982
            1:00    EU    CE%sT
Rule    Greece    1932    only    -    Jul     7    0:00    1:00    S
Rule    Greece    1932    only    -    Sep     1    0:00    0    -
Rule    Greece    1941    only    -    Apr     7    0:00    1:00    S
Rule    Greece    1942    only    -    Nov     2    3:00    0    -
Rule    Greece    1943    only    -    Mar    30    0:00    1:00    S
Rule    Greece    1943    only    -    Oct     4    0:00    0    -
Rule    Greece    1952    only    -    Jul     1    0:00    1:00    S
Rule    Greece    1952    only    -    Nov     2    0:00    0    -
Rule    Greece    1975    only    -    Apr    12    0:00s    1:00    S
Rule    Greece    1975    only    -    Nov    26    0:00s    0    -
Rule    Greece    1976    only    -    Apr    11    2:00s    1:00    S
Rule    Greece    1976    only    -    Oct    10    2:00s    0    -
Rule    Greece    1977    1978    -    Apr    Sun>=1    2:00s    1:00    S
Rule    Greece    1977    only    -    Sep    26    2:00s    0    -
Rule    Greece    1978    only    -    Sep    24    4:00    0    -
Rule    Greece    1979    only    -    Apr     1    9:00    1:00    S
Rule    Greece    1979    only    -    Sep    29    2:00    0    -
Rule    Greece    1980    only    -    Apr     1    0:00    1:00    S
Rule    Greece    1980    only    -    Sep    28    0:00    0    -
Zone    Europe/Athens    1:34:52 -    LMT    1895 Sep 14
            1:34:52    -    AMT    1916 Jul 28 0:01     # Athens MT
            2:00    Greece    EE%sT    1941 Apr 30
            1:00    Greece    CE%sT    1944 Apr  4
            2:00    Greece    EE%sT    1981
            # Shanks & Pottenger say it switched to C-Eur in 1981;
            # go with EU instead, since Greece joined it on Jan 1.
            2:00    EU    EE%sT
Rule    Hungary    1918    only    -    Apr     1     3:00    1:00    S
Rule    Hungary    1918    only    -    Sep    29     3:00    0    -
Rule    Hungary    1919    only    -    Apr    15     3:00    1:00    S
Rule    Hungary    1919    only    -    Sep    15     3:00    0    -
Rule    Hungary    1920    only    -    Apr     5     3:00    1:00    S
Rule    Hungary    1920    only    -    Sep    30     3:00    0    -
Rule    Hungary    1945    only    -    May     1    23:00    1:00    S
Rule    Hungary    1945    only    -    Nov     3     0:00    0    -
Rule    Hungary    1946    only    -    Mar    31     2:00s    1:00    S
Rule    Hungary    1946    1949    -    Oct    Sun>=1     2:00s    0    -
Rule    Hungary    1947    1949    -    Apr    Sun>=4     2:00s    1:00    S
Rule    Hungary    1950    only    -    Apr    17     2:00s    1:00    S
Rule    Hungary    1950    only    -    Oct    23     2:00s    0    -
Rule    Hungary    1954    1955    -    May    23     0:00    1:00    S
Rule    Hungary    1954    1955    -    Oct     3     0:00    0    -
Rule    Hungary    1956    only    -    Jun    Sun>=1     0:00    1:00    S
Rule    Hungary    1956    only    -    Sep    lastSun     0:00    0    -
Rule    Hungary    1957    only    -    Jun    Sun>=1     1:00    1:00    S
Rule    Hungary    1957    only    -    Sep    lastSun     3:00    0    -
Rule    Hungary    1980    only    -    Apr     6     1:00    1:00    S
Zone    Europe/Budapest    1:16:20 -    LMT    1890 Oct
            1:00    C-Eur    CE%sT    1918
            1:00    Hungary    CE%sT    1941 Apr  6  2:00
            1:00    C-Eur    CE%sT    1945
            1:00    Hungary    CE%sT    1980 Sep 28  2:00s
            1:00    EU    CE%sT
Rule    Iceland    1917    1918    -    Feb    19    23:00    1:00    S
Rule    Iceland    1917    only    -    Oct    21     1:00    0    -
Rule    Iceland    1918    only    -    Nov    16     1:00    0    -
Rule    Iceland    1939    only    -    Apr    29    23:00    1:00    S
Rule    Iceland    1939    only    -    Nov    29     2:00    0    -
Rule    Iceland    1940    only    -    Feb    25     2:00    1:00    S
Rule    Iceland    1940    only    -    Nov     3     2:00    0    -
Rule    Iceland    1941    only    -    Mar     2     1:00s    1:00    S
Rule    Iceland    1941    only    -    Nov     2     1:00s    0    -
Rule    Iceland    1942    only    -    Mar     8     1:00s    1:00    S
Rule    Iceland    1942    only    -    Oct    25     1:00s    0    -
Rule    Iceland    1943    1946    -    Mar    Sun>=1     1:00s    1:00    S
Rule    Iceland    1943    1948    -    Oct    Sun>=22     1:00s    0    -
Rule    Iceland    1947    1967    -    Apr    Sun>=1     1:00s    1:00    S
Rule    Iceland    1949    only    -    Oct    30     1:00s    0    -
Rule    Iceland    1950    1966    -    Oct    Sun>=22     1:00s    0    -
Rule    Iceland    1967    only    -    Oct    29     1:00s    0    -
Zone Atlantic/Reykjavik    -1:27:24 -    LMT    1837
            -1:27:48 -    RMT    1908 # Reykjavik Mean Time?
            -1:00    Iceland    IS%sT    1968 Apr 7 1:00s
             0:00    -    GMT
Rule    Italy    1916    only    -    Jun     3    0:00s    1:00    S
Rule    Italy    1916    only    -    Oct     1    0:00s    0    -
Rule    Italy    1917    only    -    Apr     1    0:00s    1:00    S
Rule    Italy    1917    only    -    Sep    30    0:00s    0    -
Rule    Italy    1918    only    -    Mar    10    0:00s    1:00    S
Rule    Italy    1918    1919    -    Oct    Sun>=1    0:00s    0    -
Rule    Italy    1919    only    -    Mar     2    0:00s    1:00    S
Rule    Italy    1920    only    -    Mar    21    0:00s    1:00    S
Rule    Italy    1920    only    -    Sep    19    0:00s    0    -
Rule    Italy    1940    only    -    Jun    15    0:00s    1:00    S
Rule    Italy    1944    only    -    Sep    17    0:00s    0    -
Rule    Italy    1945    only    -    Apr     2    2:00    1:00    S
Rule    Italy    1945    only    -    Sep    15    0:00s    0    -
Rule    Italy    1946    only    -    Mar    17    2:00s    1:00    S
Rule    Italy    1946    only    -    Oct     6    2:00s    0    -
Rule    Italy    1947    only    -    Mar    16    0:00s    1:00    S
Rule    Italy    1947    only    -    Oct     5    0:00s    0    -
Rule    Italy    1948    only    -    Feb    29    2:00s    1:00    S
Rule    Italy    1948    only    -    Oct     3    2:00s    0    -
Rule    Italy    1966    1968    -    May    Sun>=22    0:00    1:00    S
Rule    Italy    1966    1969    -    Sep    Sun>=22    0:00    0    -
Rule    Italy    1969    only    -    Jun     1    0:00    1:00    S
Rule    Italy    1970    only    -    May    31    0:00    1:00    S
Rule    Italy    1970    only    -    Sep    lastSun    0:00    0    -
Rule    Italy    1971    1972    -    May    Sun>=22    0:00    1:00    S
Rule    Italy    1971    only    -    Sep    lastSun    1:00    0    -
Rule    Italy    1972    only    -    Oct     1    0:00    0    -
Rule    Italy    1973    only    -    Jun     3    0:00    1:00    S
Rule    Italy    1973    1974    -    Sep    lastSun    0:00    0    -
Rule    Italy    1974    only    -    May    26    0:00    1:00    S
Rule    Italy    1975    only    -    Jun     1    0:00s    1:00    S
Rule    Italy    1975    1977    -    Sep    lastSun    0:00s    0    -
Rule    Italy    1976    only    -    May    30    0:00s    1:00    S
Rule    Italy    1977    1979    -    May    Sun>=22    0:00s    1:00    S
Rule    Italy    1978    only    -    Oct     1    0:00s    0    -
Rule    Italy    1979    only    -    Sep    30    0:00s    0    -
Zone    Europe/Rome    0:49:56 -    LMT    1866 Sep 22
            0:49:56    -    RMT    1893 Nov  1 0:00s # Rome Mean
            1:00    Italy    CE%sT    1942 Nov  2 2:00s
            1:00    C-Eur    CE%sT    1944 Jul
            1:00    Italy    CE%sT    1980
            1:00    EU    CE%sT
Link    Europe/Rome    Europe/Vatican
Link    Europe/Rome    Europe/San_Marino
Rule    Latvia    1989    1996    -    Mar    lastSun     2:00s    1:00    S
Rule    Latvia    1989    1996    -    Sep    lastSun     2:00s    0    -
Zone    Europe/Riga    1:36:24    -    LMT    1880
            1:36:24    -    RMT    1918 Apr 15 2:00 #Riga Mean Time
            1:36:24    1:00    LST    1918 Sep 16 3:00 #Latvian Summer
            1:36:24    -    RMT    1919 Apr  1 2:00
            1:36:24    1:00    LST    1919 May 22 3:00
            1:36:24    -    RMT    1926 May 11
            2:00    -    EET    1940 Aug  5
            3:00    -    MSK    1941 Jul
            1:00    C-Eur    CE%sT    1944 Oct 13
            3:00    Russia    MSK/MSD    1989 Mar lastSun 2:00s
            2:00    1:00    EEST    1989 Sep lastSun 2:00s
            2:00    Latvia    EE%sT    1997 Jan 21
            2:00    EU    EE%sT    2000 Feb 29
            2:00    -    EET    2001 Jan  2
            2:00    EU    EE%sT
Zone    Europe/Vaduz    0:38:04 -    LMT    1894 Jun
            1:00    -    CET    1981
            1:00    EU    CE%sT
Zone    Europe/Vilnius    1:41:16    -    LMT    1880
            1:24:00    -    WMT    1917        # Warsaw Mean Time
            1:35:36    -    KMT    1919 Oct 10 # Kaunas Mean Time
            1:00    -    CET    1920 Jul 12
            2:00    -    EET    1920 Oct  9
            1:00    -    CET    1940 Aug  3
            3:00    -    MSK    1941 Jun 24
            1:00    C-Eur    CE%sT    1944 Aug
            3:00    Russia    MSK/MSD    1991 Mar 31 2:00s
            2:00    1:00    EEST    1991 Sep 29 2:00s
            2:00    C-Eur    EE%sT    1998
            2:00    -    EET    1998 Mar 29 1:00u
            1:00    EU    CE%sT    1999 Oct 31 1:00u
            2:00    -    EET    2003 Jan  1
            2:00    EU    EE%sT
Rule    Lux    1916    only    -    May    14    23:00    1:00    S
Rule    Lux    1916    only    -    Oct     1     1:00    0    -
Rule    Lux    1917    only    -    Apr    28    23:00    1:00    S
Rule    Lux    1917    only    -    Sep    17     1:00    0    -
Rule    Lux    1918    only    -    Apr    Mon>=15     2:00s    1:00    S
Rule    Lux    1918    only    -    Sep    Mon>=15     2:00s    0    -
Rule    Lux    1919    only    -    Mar     1    23:00    1:00    S
Rule    Lux    1919    only    -    Oct     5     3:00    0    -
Rule    Lux    1920    only    -    Feb    14    23:00    1:00    S
Rule    Lux    1920    only    -    Oct    24     2:00    0    -
Rule    Lux    1921    only    -    Mar    14    23:00    1:00    S
Rule    Lux    1921    only    -    Oct    26     2:00    0    -
Rule    Lux    1922    only    -    Mar    25    23:00    1:00    S
Rule    Lux    1922    only    -    Oct    Sun>=2     1:00    0    -
Rule    Lux    1923    only    -    Apr    21    23:00    1:00    S
Rule    Lux    1923    only    -    Oct    Sun>=2     2:00    0    -
Rule    Lux    1924    only    -    Mar    29    23:00    1:00    S
Rule    Lux    1924    1928    -    Oct    Sun>=2     1:00    0    -
Rule    Lux    1925    only    -    Apr     5    23:00    1:00    S
Rule    Lux    1926    only    -    Apr    17    23:00    1:00    S
Rule    Lux    1927    only    -    Apr     9    23:00    1:00    S
Rule    Lux    1928    only    -    Apr    14    23:00    1:00    S
Rule    Lux    1929    only    -    Apr    20    23:00    1:00    S
Zone Europe/Luxembourg    0:24:36 -    LMT    1904 Jun
            1:00    Lux    CE%sT    1918 Nov 25
            0:00    Lux    WE%sT    1929 Oct  6 2:00s
            0:00    Belgium    WE%sT    1940 May 14 3:00
            1:00    C-Eur    WE%sT    1944 Sep 18 3:00
            1:00    Belgium    CE%sT    1977
            1:00    EU    CE%sT
Rule    Malta    1973    only    -    Mar    31    0:00s    1:00    S
Rule    Malta    1973    only    -    Sep    29    0:00s    0    -
Rule    Malta    1974    only    -    Apr    21    0:00s    1:00    S
Rule    Malta    1974    only    -    Sep    16    0:00s    0    -
Rule    Malta    1975    1979    -    Apr    Sun>=15    2:00    1:00    S
Rule    Malta    1975    1980    -    Sep    Sun>=15    2:00    0    -
Rule    Malta    1980    only    -    Mar    31    2:00    1:00    S
Zone    Europe/Malta    0:58:04 -    LMT    1893 Nov  2 0:00s # Valletta
            1:00    Italy    CE%sT    1942 Nov  2 2:00s
            1:00    C-Eur    CE%sT    1945 Apr  2 2:00s
            1:00    Italy    CE%sT    1973 Mar 31
            1:00    Malta    CE%sT    1981
            1:00    EU    CE%sT
Zone    Europe/Chisinau    1:55:20 -    LMT    1880
            1:55    -    CMT    1918 Feb 15 # Chisinau MT
            1:44:24    -    BMT    1931 Jul 24 # Bucharest MT
            2:00    Romania    EE%sT    1940 Aug 15
            2:00    1:00    EEST    1941 Jul 17
            1:00    C-Eur    CE%sT    1944 Aug 24
            3:00    Russia    MSK/MSD    1990
            3:00    -    MSK    1990 May 6
            2:00    -    EET    1991
            2:00    Russia    EE%sT    1992
            2:00    E-Eur    EE%sT    1997
            2:00    EU    EE%sT
Zone    Europe/Monaco    0:29:32 -    LMT    1891 Mar 15
            0:09:21    -    PMT    1911 Mar 11    # Paris Mean Time
            0:00    France    WE%sT    1945 Sep 16 3:00
            1:00    France    CE%sT    1977
            1:00    EU    CE%sT
Rule    Neth    1916    only    -    May     1    0:00    1:00    NST    # Netherlands Summer Time
Rule    Neth    1916    only    -    Oct     1    0:00    0    AMT    # Amsterdam Mean Time
Rule    Neth    1917    only    -    Apr    16    2:00s    1:00    NST
Rule    Neth    1917    only    -    Sep    17    2:00s    0    AMT
Rule    Neth    1918    1921    -    Apr    Mon>=1    2:00s    1:00    NST
Rule    Neth    1918    1921    -    Sep    lastMon    2:00s    0    AMT
Rule    Neth    1922    only    -    Mar    lastSun    2:00s    1:00    NST
Rule    Neth    1922    1936    -    Oct    Sun>=2    2:00s    0    AMT
Rule    Neth    1923    only    -    Jun    Fri>=1    2:00s    1:00    NST
Rule    Neth    1924    only    -    Mar    lastSun    2:00s    1:00    NST
Rule    Neth    1925    only    -    Jun    Fri>=1    2:00s    1:00    NST
Rule    Neth    1926    1931    -    May    15    2:00s    1:00    NST
Rule    Neth    1932    only    -    May    22    2:00s    1:00    NST
Rule    Neth    1933    1936    -    May    15    2:00s    1:00    NST
Rule    Neth    1937    only    -    May    22    2:00s    1:00    NST
Rule    Neth    1937    only    -    Jul     1    0:00    1:00    S
Rule    Neth    1937    1939    -    Oct    Sun>=2    2:00s    0    -
Rule    Neth    1938    1939    -    May    15    2:00s    1:00    S
Rule    Neth    1945    only    -    Apr     2    2:00s    1:00    S
Rule    Neth    1945    only    -    Sep    16    2:00s    0    -
Zone Europe/Amsterdam    0:19:32 -    LMT    1835
            0:19:32    Neth    %s    1937 Jul  1
            0:20    Neth    NE%sT    1940 May 16 0:00 # Dutch Time
            1:00    C-Eur    CE%sT    1945 Apr  2 2:00
            1:00    Neth    CE%sT    1977
            1:00    EU    CE%sT
Rule    Norway    1916    only    -    May    22    1:00    1:00    S
Rule    Norway    1916    only    -    Sep    30    0:00    0    -
Rule    Norway    1945    only    -    Apr     2    2:00s    1:00    S
Rule    Norway    1945    only    -    Oct     1    2:00s    0    -
Rule    Norway    1959    1964    -    Mar    Sun>=15    2:00s    1:00    S
Rule    Norway    1959    1965    -    Sep    Sun>=15    2:00s    0    -
Rule    Norway    1965    only    -    Apr    25    2:00s    1:00    S
Zone    Europe/Oslo    0:43:00 -    LMT    1895 Jan  1
            1:00    Norway    CE%sT    1940 Aug 10 23:00
            1:00    C-Eur    CE%sT    1945 Apr  2  2:00
            1:00    Norway    CE%sT    1980
            1:00    EU    CE%sT
Link    Europe/Oslo    Arctic/Longyearbyen
Rule    Poland    1918    1919    -    Sep    16    2:00s    0    -
Rule    Poland    1919    only    -    Apr    15    2:00s    1:00    S
Rule    Poland    1944    only    -    Apr     3    2:00s    1:00    S
Rule    Poland    1944    only    -    Oct     4    2:00    0    -
Rule    Poland    1945    only    -    Apr    29    0:00    1:00    S
Rule    Poland    1945    only    -    Nov     1    0:00    0    -
Rule    Poland    1946    only    -    Apr    14    0:00s    1:00    S
Rule    Poland    1946    only    -    Oct     7    2:00s    0    -
Rule    Poland    1947    only    -    May     4    2:00s    1:00    S
Rule    Poland    1947    1949    -    Oct    Sun>=1    2:00s    0    -
Rule    Poland    1948    only    -    Apr    18    2:00s    1:00    S
Rule    Poland    1949    only    -    Apr    10    2:00s    1:00    S
Rule    Poland    1957    only    -    Jun     2    1:00s    1:00    S
Rule    Poland    1957    1958    -    Sep    lastSun    1:00s    0    -
Rule    Poland    1958    only    -    Mar    30    1:00s    1:00    S
Rule    Poland    1959    only    -    May    31    1:00s    1:00    S
Rule    Poland    1959    1961    -    Oct    Sun>=1    1:00s    0    -
Rule    Poland    1960    only    -    Apr     3    1:00s    1:00    S
Rule    Poland    1961    1964    -    May    lastSun    1:00s    1:00    S
Rule    Poland    1962    1964    -    Sep    lastSun    1:00s    0    -
Zone    Europe/Warsaw    1:24:00 -    LMT    1880
            1:24:00    -    WMT    1915 Aug  5   # Warsaw Mean Time
            1:00    C-Eur    CE%sT    1918 Sep 16 3:00
            2:00    Poland    EE%sT    1922 Jun
            1:00    Poland    CE%sT    1940 Jun 23 2:00
            1:00    C-Eur    CE%sT    1944 Oct
            1:00    Poland    CE%sT    1977
            1:00    W-Eur    CE%sT    1988
            1:00    EU    CE%sT
Rule    Port    1916    only    -    Jun    17    23:00    1:00    S
Rule    Port    1916    only    -    Nov     1     1:00    0    -
Rule    Port    1917    only    -    Feb    28    23:00s    1:00    S
Rule    Port    1917    1921    -    Oct    14    23:00s    0    -
Rule    Port    1918    only    -    Mar     1    23:00s    1:00    S
Rule    Port    1919    only    -    Feb    28    23:00s    1:00    S
Rule    Port    1920    only    -    Feb    29    23:00s    1:00    S
Rule    Port    1921    only    -    Feb    28    23:00s    1:00    S
Rule    Port    1924    only    -    Apr    16    23:00s    1:00    S
Rule    Port    1924    only    -    Oct    14    23:00s    0    -
Rule    Port    1926    only    -    Apr    17    23:00s    1:00    S
Rule    Port    1926    1929    -    Oct    Sat>=1    23:00s    0    -
Rule    Port    1927    only    -    Apr     9    23:00s    1:00    S
Rule    Port    1928    only    -    Apr    14    23:00s    1:00    S
Rule    Port    1929    only    -    Apr    20    23:00s    1:00    S
Rule    Port    1931    only    -    Apr    18    23:00s    1:00    S
Rule    Port    1931    1932    -    Oct    Sat>=1    23:00s    0    -
Rule    Port    1932    only    -    Apr     2    23:00s    1:00    S
Rule    Port    1934    only    -    Apr     7    23:00s    1:00    S
Rule    Port    1934    1938    -    Oct    Sat>=1    23:00s    0    -
Rule    Port    1935    only    -    Mar    30    23:00s    1:00    S
Rule    Port    1936    only    -    Apr    18    23:00s    1:00    S
Rule    Port    1937    only    -    Apr     3    23:00s    1:00    S
Rule    Port    1938    only    -    Mar    26    23:00s    1:00    S
Rule    Port    1939    only    -    Apr    15    23:00s    1:00    S
Rule    Port    1939    only    -    Nov    18    23:00s    0    -
Rule    Port    1940    only    -    Feb    24    23:00s    1:00    S
Rule    Port    1940    1941    -    Oct     5    23:00s    0    -
Rule    Port    1941    only    -    Apr     5    23:00s    1:00    S
Rule    Port    1942    1945    -    Mar    Sat>=8    23:00s    1:00    S
Rule    Port    1942    only    -    Apr    25    22:00s    2:00    M # Midsummer
Rule    Port    1942    only    -    Aug    15    22:00s    1:00    S
Rule    Port    1942    1945    -    Oct    Sat>=24    23:00s    0    -
Rule    Port    1943    only    -    Apr    17    22:00s    2:00    M
Rule    Port    1943    1945    -    Aug    Sat>=25    22:00s    1:00    S
Rule    Port    1944    1945    -    Apr    Sat>=21    22:00s    2:00    M
Rule    Port    1946    only    -    Apr    Sat>=1    23:00s    1:00    S
Rule    Port    1946    only    -    Oct    Sat>=1    23:00s    0    -
Rule    Port    1947    1949    -    Apr    Sun>=1     2:00s    1:00    S
Rule    Port    1947    1949    -    Oct    Sun>=1     2:00s    0    -
Rule    Port    1951    1965    -    Apr    Sun>=1     2:00s    1:00    S
Rule    Port    1951    1965    -    Oct    Sun>=1     2:00s    0    -
Rule    Port    1977    only    -    Mar    27     0:00s    1:00    S
Rule    Port    1977    only    -    Sep    25     0:00s    0    -
Rule    Port    1978    1979    -    Apr    Sun>=1     0:00s    1:00    S
Rule    Port    1978    only    -    Oct     1     0:00s    0    -
Rule    Port    1979    1982    -    Sep    lastSun     1:00s    0    -
Rule    Port    1980    only    -    Mar    lastSun     0:00s    1:00    S
Rule    Port    1981    1982    -    Mar    lastSun     1:00s    1:00    S
Rule    Port    1983    only    -    Mar    lastSun     2:00s    1:00    S
Zone    Europe/Lisbon    -0:36:32 -    LMT    1884
            -0:36:32 -    LMT    1912 Jan  1  # Lisbon Mean Time
             0:00    Port    WE%sT    1966 Apr  3 2:00
             1:00    -    CET    1976 Sep 26 1:00
             0:00    Port    WE%sT    1983 Sep 25 1:00s
             0:00    W-Eur    WE%sT    1992 Sep 27 1:00s
             1:00    EU    CE%sT    1996 Mar 31 1:00u
             0:00    EU    WE%sT
Zone Atlantic/Azores    -1:42:40 -    LMT    1884        # Ponta Delgada
            -1:54:32 -    HMT    1911 May 24  # Horta Mean Time
            -2:00    Port    AZO%sT    1966 Apr  3 2:00 # Azores Time
            -1:00    Port    AZO%sT    1983 Sep 25 1:00s
            -1:00    W-Eur    AZO%sT    1992 Sep 27 1:00s
             0:00    EU    WE%sT    1993 Mar 28 1:00u
            -1:00    EU    AZO%sT
Zone Atlantic/Madeira    -1:07:36 -    LMT    1884        # Funchal
            -1:07:36 -    FMT    1911 May 24  # Funchal Mean Time
            -1:00    Port    MAD%sT    1966 Apr  3 2:00 # Madeira Time
             0:00    Port    WE%sT    1983 Sep 25 1:00s
             0:00    EU    WE%sT
Rule    Romania    1932    only    -    May    21     0:00s    1:00    S
Rule    Romania    1932    1939    -    Oct    Sun>=1     0:00s    0    -
Rule    Romania    1933    1939    -    Apr    Sun>=2     0:00s    1:00    S
Rule    Romania    1979    only    -    May    27     0:00    1:00    S
Rule    Romania    1979    only    -    Sep    lastSun     0:00    0    -
Rule    Romania    1980    only    -    Apr     5    23:00    1:00    S
Rule    Romania    1980    only    -    Sep    lastSun     1:00    0    -
Rule    Romania    1991    1993    -    Mar    lastSun     0:00s    1:00    S
Rule    Romania    1991    1993    -    Sep    lastSun     0:00s    0    -
Zone Europe/Bucharest    1:44:24 -    LMT    1891 Oct
            1:44:24    -    BMT    1931 Jul 24    # Bucharest MT
            2:00    Romania    EE%sT    1981 Mar 29 2:00s
            2:00    C-Eur    EE%sT    1991
            2:00    Romania    EE%sT    1994
            2:00    E-Eur    EE%sT    1997
            2:00    EU    EE%sT
Zone Europe/Kaliningrad     1:22:00 -    LMT    1893 Apr
             1:00    C-Eur    CE%sT    1945
             2:00    Poland    CE%sT    1946
             3:00    Russia    MSK/MSD    1991 Mar 31 2:00s
             2:00    Russia    EE%sT
Zone Europe/Moscow     2:30:20 -    LMT    1880
             2:30    -    MMT    1916 Jul  3 # Moscow Mean Time
             2:30:48 Russia    %s    1919 Jul  1 2:00
             3:00    Russia    MSK/MSD    1922 Oct
             2:00    -    EET    1930 Jun 21
             3:00    Russia    MSK/MSD    1991 Mar 31 2:00s
             2:00    Russia    EE%sT    1992 Jan 19 2:00s
             3:00    Russia    MSK/MSD
Zone Europe/Volgograd     2:57:40 -    LMT    1920 Jan  3
             3:00    -    TSAT    1925 Apr  6 # Tsaritsyn Time
             3:00    -    STAT    1930 Jun 21 # Stalingrad Time
             4:00    -    STAT    1961 Nov 11
             4:00    Russia    VOL%sT    1989 Mar 26 2:00s # Volgograd T
             3:00    Russia    VOL%sT    1991 Mar 31 2:00s
             4:00    -    VOLT    1992 Mar 29 2:00s
             3:00    Russia    VOL%sT
Zone Europe/Samara     3:20:36 -    LMT    1919 Jul  1 2:00
             3:00    -    SAMT    1930 Jun 21
             4:00    -    SAMT    1935 Jan 27
             4:00    Russia    KUY%sT    1989 Mar 26 2:00s # Kuybyshev
             3:00    Russia    KUY%sT    1991 Mar 31 2:00s
             2:00    Russia    KUY%sT    1991 Sep 29 2:00s
             3:00    -    KUYT    1991 Oct 20 3:00
             4:00    Russia    SAM%sT    # Samara Time
Zone Asia/Yekaterinburg     4:02:24 -    LMT    1919 Jul 15 4:00
             4:00    -    SVET    1930 Jun 21 # Sverdlovsk Time
             5:00    Russia    SVE%sT    1991 Mar 31 2:00s
             4:00    Russia    SVE%sT    1992 Jan 19 2:00s
             5:00    Russia    YEK%sT    # Yekaterinburg Time
Zone Asia/Omsk         4:53:36 -    LMT    1919 Nov 14
             5:00    -    OMST    1930 Jun 21 # Omsk TIme
             6:00    Russia    OMS%sT    1991 Mar 31 2:00s
             5:00    Russia    OMS%sT    1992 Jan 19 2:00s
             6:00    Russia    OMS%sT
Zone Asia/Novosibirsk     5:31:40 -    LMT    1919 Dec 14 6:00
             6:00    -    NOVT    1930 Jun 21 # Novosibirsk Time
             7:00    Russia    NOV%sT    1991 Mar 31 2:00s
             6:00    Russia    NOV%sT    1992 Jan 19 2:00s
             7:00    Russia    NOV%sT    1993 May 23 # say Shanks & P.
             6:00    Russia    NOV%sT
Zone Asia/Krasnoyarsk     6:11:20 -    LMT    1920 Jan  6
             6:00    -    KRAT    1930 Jun 21 # Krasnoyarsk Time
             7:00    Russia    KRA%sT    1991 Mar 31 2:00s
             6:00    Russia    KRA%sT    1992 Jan 19 2:00s
             7:00    Russia    KRA%sT
Zone Asia/Irkutsk     6:57:20 -    LMT    1880
             6:57:20 -    IMT    1920 Jan 25 # Irkutsk Mean Time
             7:00    -    IRKT    1930 Jun 21 # Irkutsk Time
             8:00    Russia    IRK%sT    1991 Mar 31 2:00s
             7:00    Russia    IRK%sT    1992 Jan 19 2:00s
             8:00    Russia    IRK%sT
Zone Asia/Yakutsk     8:38:40 -    LMT    1919 Dec 15
             8:00    -    YAKT    1930 Jun 21 # Yakutsk Time
             9:00    Russia    YAK%sT    1991 Mar 31 2:00s
             8:00    Russia    YAK%sT    1992 Jan 19 2:00s
             9:00    Russia    YAK%sT
Zone Asia/Vladivostok     8:47:44 -    LMT    1922 Nov 15
             9:00    -    VLAT    1930 Jun 21 # Vladivostok Time
            10:00    Russia    VLA%sT    1991 Mar 31 2:00s
             9:00    Russia    VLA%sST    1992 Jan 19 2:00s
            10:00    Russia    VLA%sT
Zone Asia/Sakhalin     9:30:48 -    LMT    1905 Aug 23
             9:00    -    CJT    1938
             9:00    -    JST    1945 Aug 25
            11:00    Russia    SAK%sT    1991 Mar 31 2:00s # Sakhalin T.
            10:00    Russia    SAK%sT    1992 Jan 19 2:00s
            11:00    Russia    SAK%sT    1997 Mar lastSun 2:00s
            10:00    Russia    SAK%sT
Zone Asia/Magadan    10:03:12 -    LMT    1924 May  2
            10:00    -    MAGT    1930 Jun 21 # Magadan Time
            11:00    Russia    MAG%sT    1991 Mar 31 2:00s
            10:00    Russia    MAG%sT    1992 Jan 19 2:00s
            11:00    Russia    MAG%sT
Zone Asia/Kamchatka    10:34:36 -    LMT    1922 Nov 10
            11:00    -    PETT    1930 Jun 21 # P-K Time
            12:00    Russia    PET%sT    1991 Mar 31 2:00s
            11:00    Russia    PET%sT    1992 Jan 19 2:00s
            12:00    Russia    PET%sT
Zone Asia/Anadyr    11:49:56 -    LMT    1924 May  2
            12:00    -    ANAT    1930 Jun 21 # Anadyr Time
            13:00    Russia    ANA%sT    1982 Apr  1 0:00s
            12:00    Russia    ANA%sT    1991 Mar 31 2:00s
            11:00    Russia    ANA%sT    1992 Jan 19 2:00s
            12:00    Russia    ANA%sT
Zone    Europe/Belgrade    1:22:00    -    LMT    1884
            1:00    -    CET    1941 Apr 18 23:00
            1:00    C-Eur    CE%sT    1945
            1:00    -    CET    1945 May 8 2:00s
            1:00    1:00    CEST    1945 Sep 16  2:00s
            1:00    -    CET    1982 Nov 27
            1:00    EU    CE%sT
Link Europe/Belgrade Europe/Ljubljana    # Slovenia
Link Europe/Belgrade Europe/Podgorica    # Montenegro
Link Europe/Belgrade Europe/Sarajevo    # Bosnia and Herzegovina
Link Europe/Belgrade Europe/Skopje    # Macedonia
Link Europe/Belgrade Europe/Zagreb    # Croatia
Link Europe/Prague Europe/Bratislava
Rule    Spain    1917    only    -    May     5    23:00s    1:00    S
Rule    Spain    1917    1919    -    Oct     6    23:00s    0    -
Rule    Spain    1918    only    -    Apr    15    23:00s    1:00    S
Rule    Spain    1919    only    -    Apr     5    23:00s    1:00    S
Rule    Spain    1924    only    -    Apr    16    23:00s    1:00    S
Rule    Spain    1924    only    -    Oct     4    23:00s    0    -
Rule    Spain    1926    only    -    Apr    17    23:00s    1:00    S
Rule    Spain    1926    1929    -    Oct    Sat>=1    23:00s    0    -
Rule    Spain    1927    only    -    Apr     9    23:00s    1:00    S
Rule    Spain    1928    only    -    Apr    14    23:00s    1:00    S
Rule    Spain    1929    only    -    Apr    20    23:00s    1:00    S
Rule    Spain    1937    only    -    May    22    23:00s    1:00    S
Rule    Spain    1937    1939    -    Oct    Sat>=1    23:00s    0    -
Rule    Spain    1938    only    -    Mar    22    23:00s    1:00    S
Rule    Spain    1939    only    -    Apr    15    23:00s    1:00    S
Rule    Spain    1940    only    -    Mar    16    23:00s    1:00    S
Rule    Spain    1942    only    -    May     2    22:00s    2:00    M # Midsummer
Rule    Spain    1942    only    -    Sep     1    22:00s    1:00    S
Rule    Spain    1943    1946    -    Apr    Sat>=13    22:00s    2:00    M
Rule    Spain    1943    only    -    Oct     3    22:00s    1:00    S
Rule    Spain    1944    only    -    Oct    10    22:00s    1:00    S
Rule    Spain    1945    only    -    Sep    30     1:00    1:00    S
Rule    Spain    1946    only    -    Sep    30     0:00    0    -
Rule    Spain    1949    only    -    Apr    30    23:00    1:00    S
Rule    Spain    1949    only    -    Sep    30     1:00    0    -
Rule    Spain    1974    1975    -    Apr    Sat>=13    23:00    1:00    S
Rule    Spain    1974    1975    -    Oct    Sun>=1     1:00    0    -
Rule    Spain    1976    only    -    Mar    27    23:00    1:00    S
Rule    Spain    1976    1977    -    Sep    lastSun     1:00    0    -
Rule    Spain    1977    1978    -    Apr     2    23:00    1:00    S
Rule    Spain    1978    only    -    Oct     1     1:00    0    -
Rule SpainAfrica 1967    only    -    Jun     3    12:00    1:00    S
Rule SpainAfrica 1967    only    -    Oct     1     0:00    0    -
Rule SpainAfrica 1974    only    -    Jun    24     0:00    1:00    S
Rule SpainAfrica 1974    only    -    Sep     1     0:00    0    -
Rule SpainAfrica 1976    1977    -    May     1     0:00    1:00    S
Rule SpainAfrica 1976    only    -    Aug     1     0:00    0    -
Rule SpainAfrica 1977    only    -    Sep    28     0:00    0    -
Rule SpainAfrica 1978    only    -    Jun     1     0:00    1:00    S
Rule SpainAfrica 1978    only    -    Aug     4     0:00    0    -
Zone    Europe/Madrid    -0:14:44 -    LMT    1901 Jan  1  0:00s
             0:00    Spain    WE%sT    1946 Sep 30
             1:00    Spain    CE%sT    1979
             1:00    EU    CE%sT
Zone    Africa/Ceuta    -0:21:16 -    LMT    1901
             0:00    -    WET    1918 May  6 23:00
             0:00    1:00    WEST    1918 Oct  7 23:00
             0:00    -    WET    1924
             0:00    Spain    WE%sT    1929
             0:00 SpainAfrica WE%sT 1984 Mar 16
             1:00    -    CET    1986
             1:00    EU    CE%sT
Zone    Atlantic/Canary    -1:01:36 -    LMT    1922 Mar # Las Palmas de Gran C.
            -1:00    -    CANT    1946 Sep 30 1:00 # Canaries Time
             0:00    -    WET    1980 Apr  6 0:00s
             0:00    1:00    WEST    1980 Sep 28 0:00s
             0:00    EU    WE%sT
Zone Europe/Stockholm    1:12:12 -    LMT    1879 Jan  1
            1:00:14    -    SET    1900 Jan  1    # Swedish Time
            1:00    -    CET    1916 May 14 23:00
            1:00    1:00    CEST    1916 Oct  1 01:00
            1:00    -    CET    1980
            1:00    EU    CE%sT
Rule    Swiss    1941    1942    -    May    Mon>=1    1:00    1:00    S
Rule    Swiss    1941    1942    -    Oct    Mon>=1    2:00    0    -
Zone    Europe/Zurich    0:34:08 -    LMT    1848 Sep 12
            0:29:44    -    BMT    1894 Jun # Bern Mean Time
            1:00    Swiss    CE%sT    1981
            1:00    EU    CE%sT
Rule    Turkey    1916    only    -    May     1    0:00    1:00    S
Rule    Turkey    1916    only    -    Oct     1    0:00    0    -
Rule    Turkey    1920    only    -    Mar    28    0:00    1:00    S
Rule    Turkey    1920    only    -    Oct    25    0:00    0    -
Rule    Turkey    1921    only    -    Apr     3    0:00    1:00    S
Rule    Turkey    1921    only    -    Oct     3    0:00    0    -
Rule    Turkey    1922    only    -    Mar    26    0:00    1:00    S
Rule    Turkey    1922    only    -    Oct     8    0:00    0    -
Rule    Turkey    1924    only    -    May    13    0:00    1:00    S
Rule    Turkey    1924    1925    -    Oct     1    0:00    0    -
Rule    Turkey    1925    only    -    May     1    0:00    1:00    S
Rule    Turkey    1940    only    -    Jun    30    0:00    1:00    S
Rule    Turkey    1940    only    -    Oct     5    0:00    0    -
Rule    Turkey    1940    only    -    Dec     1    0:00    1:00    S
Rule    Turkey    1941    only    -    Sep    21    0:00    0    -
Rule    Turkey    1942    only    -    Apr     1    0:00    1:00    S
Rule    Turkey    1942    only    -    Nov     1    0:00    0    -
Rule    Turkey    1945    only    -    Apr     2    0:00    1:00    S
Rule    Turkey    1945    only    -    Oct     8    0:00    0    -
Rule    Turkey    1946    only    -    Jun     1    0:00    1:00    S
Rule    Turkey    1946    only    -    Oct     1    0:00    0    -
Rule    Turkey    1947    1948    -    Apr    Sun>=16    0:00    1:00    S
Rule    Turkey    1947    1950    -    Oct    Sun>=2    0:00    0    -
Rule    Turkey    1949    only    -    Apr    10    0:00    1:00    S
Rule    Turkey    1950    only    -    Apr    19    0:00    1:00    S
Rule    Turkey    1951    only    -    Apr    22    0:00    1:00    S
Rule    Turkey    1951    only    -    Oct     8    0:00    0    -
Rule    Turkey    1962    only    -    Jul    15    0:00    1:00    S
Rule    Turkey    1962    only    -    Oct     8    0:00    0    -
Rule    Turkey    1964    only    -    May    15    0:00    1:00    S
Rule    Turkey    1964    only    -    Oct     1    0:00    0    -
Rule    Turkey    1970    1972    -    May    Sun>=2    0:00    1:00    S
Rule    Turkey    1970    1972    -    Oct    Sun>=2    0:00    0    -
Rule    Turkey    1973    only    -    Jun     3    1:00    1:00    S
Rule    Turkey    1973    only    -    Nov     4    3:00    0    -
Rule    Turkey    1974    only    -    Mar    31    2:00    1:00    S
Rule    Turkey    1974    only    -    Nov     3    5:00    0    -
Rule    Turkey    1975    only    -    Mar    30    0:00    1:00    S
Rule    Turkey    1975    1976    -    Oct    lastSun    0:00    0    -
Rule    Turkey    1976    only    -    Jun     1    0:00    1:00    S
Rule    Turkey    1977    1978    -    Apr    Sun>=1    0:00    1:00    S
Rule    Turkey    1977    only    -    Oct    16    0:00    0    -
Rule    Turkey    1979    1980    -    Apr    Sun>=1    3:00    1:00    S
Rule    Turkey    1979    1982    -    Oct    Mon>=11    0:00    0    -
Rule    Turkey    1981    1982    -    Mar    lastSun    3:00    1:00    S
Rule    Turkey    1983    only    -    Jul    31    0:00    1:00    S
Rule    Turkey    1983    only    -    Oct     2    0:00    0    -
Rule    Turkey    1985    only    -    Apr    20    0:00    1:00    S
Rule    Turkey    1985    only    -    Sep    28    0:00    0    -
Rule    Turkey    1986    1990    -    Mar    lastSun    2:00s    1:00    S
Rule    Turkey    1986    1990    -    Sep    lastSun    2:00s    0    -
Rule    Turkey    1991    2006    -    Mar    lastSun    1:00s    1:00    S
Rule    Turkey    1991    1995    -    Sep    lastSun    1:00s    0    -
Rule    Turkey    1996    2006    -    Oct    lastSun    1:00s    0    -
Zone    Europe/Istanbul    1:55:52 -    LMT    1880
            1:56:56    -    IMT    1910 Oct # Istanbul Mean Time?
            2:00    Turkey    EE%sT    1978 Oct 15
            3:00    Turkey    TR%sT    1985 Apr 20 # Turkey Time
            2:00    Turkey    EE%sT    2007
            2:00    EU    EE%sT
Link    Europe/Istanbul    Asia/Istanbul    # Istanbul is in both continents.
Zone Europe/Kiev    2:02:04 -    LMT    1880
            2:02:04    -    KMT    1924 May  2 # Kiev Mean Time
            2:00    -    EET    1930 Jun 21
            3:00    -    MSK    1941 Sep 20
            1:00    C-Eur    CE%sT    1943 Nov  6
            3:00    Russia    MSK/MSD    1990
            3:00    -    MSK    1990 Jul  1 2:00
            2:00    -    EET    1992
            2:00    E-Eur    EE%sT    1995
            2:00    EU    EE%sT
Zone Europe/Uzhgorod    1:29:12 -    LMT    1890 Oct
            1:00    -    CET    1940
            1:00    C-Eur    CE%sT    1944 Oct
            1:00    1:00    CEST    1944 Oct 26
            1:00    -    CET    1945 Jun 29
            3:00    Russia    MSK/MSD    1990
            3:00    -    MSK    1990 Jul  1 2:00
            1:00    -    CET    1991 Mar 31 3:00
            2:00    -    EET    1992
            2:00    E-Eur    EE%sT    1995
            2:00    EU    EE%sT
Zone Europe/Zaporozhye    2:20:40 -    LMT    1880
            2:20    -    CUT    1924 May  2 # Central Ukraine T
            2:00    -    EET    1930 Jun 21
            3:00    -    MSK    1941 Aug 25
            1:00    C-Eur    CE%sT    1943 Oct 25
            3:00    Russia    MSK/MSD    1991 Mar 31 2:00
            2:00    E-Eur    EE%sT    1995
            2:00    EU    EE%sT
Zone Europe/Simferopol    2:16:24 -    LMT    1880
            2:16    -    SMT    1924 May  2 # Simferopol Mean T
            2:00    -    EET    1930 Jun 21
            3:00    -    MSK    1941 Nov
            1:00    C-Eur    CE%sT    1944 Apr 13
            3:00    Russia    MSK/MSD    1990
            3:00    -    MSK    1990 Jul  1 2:00
            2:00    -    EET    1992
            2:00    E-Eur    EE%sT    1994 May
            3:00    E-Eur    MSK/MSD    1996 Mar 31 3:00s
            3:00    1:00    MSD    1996 Oct 27 3:00s
            3:00    Russia    MSK/MSD    1997
            3:00    -    MSK    1997 Mar lastSun 1:00u
            2:00    EU    EE%sT