Newer
Older
# TOAR II Database
### Models
#### Contact
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| person | [Person](#person) | | Yes |
| organisation | [Organisation](#organisation) | | Yes |
#### Coordinates
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| lat | number | longitude coordinate of station (decimal degrees_east). This is our best estimate of the station location which is not always identical to the official station coordinates (see potential changelog entry). | No |
| lng | number | latitude coordinate of station (decimal degrees_north). This is our best estimate of the station location which is not always identical to the official station coordinates (see potential changelog entry). | No |
| alt | number | altitude of station (in m above sea level). This is our best estimate of the station altitude, which is not always identical to the reported station altitude, but frequently uses the elevation from google earth instead (see potential changelog entry). | No |
#### Data
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| datetime | dateTime | date and time of observation | Yes |
| value | number | variable value at datetime | Yes |
| flags | string | flags | Yes |
| version | string | version | Yes |
| timeseries_id | integer | ID of timeseries | Yes |
#### Organisation
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| id | integer | | Yes |
| name | string | Short name (abbreviation) of organisation | Yes |
| longname | string | Long name of organisation | Yes |
| kind | string | Kind of organisation | Yes |
| city | string | City where organisation resides | Yes |
| postcode | string | Postcode of organisation city | Yes |
| street_address | string | Street address of organisation city | Yes |
| country | string | Country to which organisation belongs | Yes |
| homepage | string | Homepage of organisation | Yes |
#### Person
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| id | integer | | Yes |
| name | string | Name of person | Yes |
| email | string | Email address of person | Yes |
| phone | string | Phone number of person | Yes |
| isprivate | boolean | Set this flag to true if the contact details shall not be exposed publicly | Yes |
#### Stationmeta
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| id | integer | | Yes |
| codes | [ string ] | list of station's codes | Yes |
| name | string | Station name for use in TOAR; normally equal to data provider’s name | Yes |
| coordinates | [Coordinates](#coordinates) | Best estimate of station latitude, longitude and altitude | Yes |
| coordinate_validation_status | string | Flag indicating whether the location of a station has been verified | Yes |
| country | string | The country, where the station resides, or which operates the station (e.g. in Antarctica) | Yes |
| state | string | The state or province, where the station resides | Yes |
| type_of_environment | string | Type of station | Yes |
| type_of_area | string | Type of station area | Yes |
| timezone | string | Station timezone | Yes |
| additional_metadata | string (json-string) | Any additional metadata about the station as a JSON data structure | Yes |
| roles | [ [StationmetaRole](#stationmetarole) ] | | No |
| annotations | [ [StationmetaAnnotation](#stationmetaannotation) ] | | No |
| aux_images | [ [StationmetaAuxImage](#stationmetaauximage) ] | | No |
| aux_docs | [ [StationmetaAuxDoc](#stationmetaauxdoc) ] | | No |
| aux_urls | [ [StationmetaAuxUrl](#stationmetaauxurl) ] | | No |
| globalmeta | [StationmetaGlobal](#stationmetaglobal) | | No |
| changelog | [ [StationmetaChangelog](#stationmetachangelog) ] | | No |
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
#### StationmetaAnnotation
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| id | integer | | Yes |
| kind | integer | | Yes |
| text | string | | Yes |
| date_added | dateTime | | Yes |
| approved | boolean | | Yes |
| contributor_id | integer | | Yes |
#### StationmetaAuxDoc
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| id | integer | | Yes |
| resource_description | string | | Yes |
| date_added | dateTime | | Yes |
| resource | string | | Yes |
| station_id | integer | | Yes |
#### StationmetaAuxImage
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| id | integer | | Yes |
| resource_description | string | | Yes |
| date_added | dateTime | | Yes |
| resource | string | | Yes |
| image_height | integer | | Yes |
| image_width | integer | | Yes |
| station_id | integer | | Yes |
#### StationmetaAuxUrl
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| id | integer | | Yes |
| resource_description | string | | Yes |
| date_added | dateTime | | Yes |
| resource | string | | Yes |
| station_id | integer | | Yes |
#### StationmetaChangelog
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| datetime | dateTime | | Yes |
| description | string | | Yes |
| old_value | string | | Yes |
| new_value | string | | Yes |
| station_id | integer | | Yes |
| author_id | integer | | Yes |
| type_of_change | integer | | Yes |
#### StationmetaCore
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| id | integer | | Yes |
| codes | [ string ] | list of station's codes | Yes |
| name | string | Station name for use in TOAR; normally equal to data provider’s name | Yes |
| coordinates | [Coordinates](#coordinates) | Best estimate of station latitude, longitude and altitude | Yes |
| coordinate_validation_status | string | Flag indicating whether the location of a station has been verified | Yes |
| country | string | The country, where the station resides, or which operates the station (e.g. in Antarctica) | Yes |
| state | string | The state or province, where the station resides | Yes |
| type_of_environment | string | Type of station | Yes |
| type_of_area | string | Type of station area | Yes |
| timezone | string | Station timezone | Yes |
| additional_metadata | string (json-string) | Any additional metadata about the station as a JSON data structure | Yes |

Sabine Schröder
committed
#### StationmetaCoreBase
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| id | integer | | No |
| codes | [ string ] | list of station's codes | Yes |
| name | string | Station name for use in TOAR; normally equal to data provider’s name | Yes |
| coordinates | [Coordinates](#coordinates) | Best estimate of station latitude, longitude and altitude | Yes |
| coordinate_validation_status | string | Flag indicating whether the location of a station has been verified | Yes |
| country | string | The country, where the station resides, or which operates the station (e.g. in Antarctica) | Yes |
| state | string | The state or province, where the station resides | Yes |
| type_of_environment | string | Type of station | Yes |
| type_of_area | string | Type of station area | Yes |
| timezone | string | Station timezone | Yes |
| additional_metadata | string (json-string) | Any additional metadata about the station as a JSON data structure | Yes |
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
#### StationmetaGlobal
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| population_density_year2010 | number | | Yes |
| max_population_density_25km_year2010 | number | | Yes |
| climatic_zone | string | | Yes |
| nightlight_1km_year2013 | number | | Yes |
| nightlight_5km_year2013 | number | | Yes |
| max_nightlight_25km_year2013 | number | | Yes |
| wheat_production_year2000 | number | | Yes |
| rice_production_year2000 | number | | Yes |
| edgar_htap_v2_nox_emissions_year2010 | number | | Yes |
| omi_no2_column_years2011to2015 | number | | Yes |
| htap_region_tier1 | string | | Yes |
| etopo_alt | number | | Yes |
| etopo_min_alt_5km | number | | Yes |
| etopo_relative_alt | number | | Yes |
| dominant_landcover_year2012 | string | | Yes |
| toar1_category | string | | Yes |
| station_id | integer | | Yes |
#### StationmetaRole
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| id | integer | | Yes |
| role | string | | Yes |
| status | string | | Yes |

Sabine Schröder
committed
| contact | [Contact](#contact) | | Yes |
#### Timeseries
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| id | integer | | Yes |
| label | string | | Yes |
| order | integer | | Yes |
| access_rights | string | | Yes |
| sampling_frequency | string | | Yes |
| aggregation | string | | Yes |
| source | string | | Yes |
| data_start_date | dateTime | | Yes |
| data_end_date | dateTime | | Yes |
| measurement_method | string | | Yes |
| sampling_height | number | | Yes |
| date_added | dateTime | | Yes |
| date_modified | dateTime | | Yes |
| additional_metadata | string (json-string) | | No |

Sabine Schröder
committed
| station | [StationmetaCoreBase](#stationmetacorebase) | | Yes |
| variable | [Variable](#variable) | | Yes |
| programme | [TimeseriesProgramme](#timeseriesprogramme) | | Yes |
| roles | [ [TimeseriesRole](#timeseriesrole) ] | | No |
| annotations | [ [TimeseriesAnnotation](#timeseriesannotation) ] | | No |
| changelog | [ [TimeseriesChangelog](#timeserieschangelog) ] | | No |
#### TimeseriesAnnotation
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| id | integer | | Yes |
| kind | integer | | Yes |
| text | string | | Yes |
| date_added | dateTime | | Yes |
| approved | boolean | | Yes |
| contributor_id | integer | | Yes |
| timeseries_id | integer | | Yes |
#### TimeseriesChangelog
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| datetime | dateTime | | Yes |
| description | string | | Yes |
| old_value | string | | Yes |
| new_value | string | | Yes |
| timeseries_id | integer | | Yes |
| author_id | integer | | Yes |
| type_of_change | integer | | Yes |
| period_start | dateTime | | No |
| period_end | dateTime | | No |
| version | string | | No |
#### TimeseriesProgramme
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| id | integer | | Yes |
| name | string | | Yes |
| longname | string | | Yes |
| homepage | string | | Yes |
| description | string | | Yes |
#### TimeseriesRole
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| id | integer | | Yes |
| role | string | | Yes |
| status | string | | Yes |

Sabine Schröder
committed
| contact | [Contact](#contact) | | Yes |
#### Variable
| Name | Type | Description | Required |
| ---- | ---- | ----------- | -------- |
| name | string | Name. Short variable-like name of the variable | Yes |
| longname | string | Longname. Long (explicit) name of the variable | Yes |
| displayname | string | Displayname. Display name of the variable | Yes |
| cf_standardname | string | Cf standardname. CF standard name of the variable if defined | Yes |
| units | string | Units. Physical units of variable | Yes |
| chemical_formula | string | Chemical formula. Chemical formula of variable(if applicable) | Yes |
| id | integer | | Yes |

Sabine Schröder
committed
## controlled vocabulary

Sabine Schröder
committed
#### Role Codes ####
* Role Codes: [

Sabine Schröder
committed
[0, 'PointOfContact', 'point of contact'],
[1, 'PrincipalInvestigator', 'principal investigator'],
[2, 'Originator', 'originator'],
[3, 'Contributor', 'contributor'],
[4, 'Collaborator', 'collaborator'],
[5, 'ResourceProvider', 'resource provider']]

Sabine Schröder
committed
#### Role Status ####
* Role Status: [

Sabine Schröder
committed
[0, 'active', 'active'],
[1, 'inactive', 'inactive'],
[2, 'unknown', 'unknown']]

Sabine Schröder
committed
#### Kind Of Annotations ####
* Kind of Annotations: [
[0, 'User', 'user comment'],
[1, 'Provider', 'provider comment']]

Sabine Schröder
committed
#### Kind Of Organizations ####
* Kind of Organizations: [

Sabine Schröder
committed
[1, 'Government', 'government'],
[2, 'Research', 'research'],
[8, 'Other', 'other'],
[7, 'Individual', 'individual'],
[6, 'Commercial', 'commercial'],
[5, 'NonProfit', 'non-profit'],
[4, 'International', 'international'],
[3, 'University', 'university']]

Sabine Schröder
committed
#### Data Access Rights ####
* Data Access Rights: [

Sabine Schröder
committed
[0, 'ByAttribution', 'by attribution'],
[1, 'ShareAlike', 'share alike'],
[2, 'Restricted', 'restricted']]

Sabine Schröder
committed
#### Sampling Frequencies ####
* Sampling Frequencies: [

Sabine Schröder
committed
[0, 'Hourly', 'hourly'],
[1, 'ThreeHourly', '3-hourly'],
[2, 'SixHourly', '6-hourly'],
[3, 'Daily', 'daily'],
[4, 'Weekly', 'weekly'],
[5, 'Monthly', 'monthly'],
[6, 'Yearly', 'yearly'],
[7, 'Irregular', 'irregular data samples of constant length'],
[8, 'Irregular2', 'irregular data samples of varying length']]

Sabine Schröder
committed
#### Aggregation Types ####
* Aggregation Types: [

Sabine Schröder
committed
[0, 'Mean', 'mean'],
[1, 'Mean1Of2', 'mean of two values'],
[2, 'Mean1OfWeek', 'weekly mean'],
[3, 'Mean4Samples', 'mean out of 4 samples'],
[4, 'MeanMonth', 'monthly mean'],
[5, 'None', 'none'],
[6, 'Unknown', 'unknown']]

Sabine Schröder
committed
#### Data Sources ####
* Data Sources: [

Sabine Schröder
committed
[0, 'Model', 'model'],
[1, 'Measurement', 'measurement']]

Sabine Schröder
committed
#### Measurement Methods ####
* Measurement Methods: [

Sabine Schröder
committed
[0, 'UVAbsorption', 'UV absorption'],
[1, 'UnknownInstrument', 'unknown instrument']]

Sabine Schröder
committed
#### Climatic Zones ####
* Climatic Zones: [

Sabine Schröder
committed
[-1, 'Undefined', 'undefined'],
[0, 'Unclassified', 'unclassified'],
[1, 'WarmTemperateMoist', 'warm temperate moist'],
[2, 'WarmTemperateDry', 'warm temperate dry'],
[3, 'CoolTemperateMoist', 'cool temperate moist'],
[4, 'CoolTemperateDry', 'cool temperate dry'],
[5, 'PolarMoist', 'polar moist'],
[6, 'PolarDry', 'polar dry'],
[7, 'BorealMoist', 'boreal moist'],
[8, 'BorealDry', 'boreal dry'],
[9, 'TropicalMontane', 'tropical montane'],
[10, 'TropicalWet', 'tropical wet'],
[11, 'TropicalMoist', 'tropical moist'],
[12, 'TropicalDry', 'tropical dry']]

Sabine Schröder
committed
#### Coordinate Validity ####
* Coordinate Validity: [

Sabine Schröder
committed
[0, 'NotChecked', 'not checked'],
[1, 'Verified', 'verified'],
[2, 'Plausible', 'plausible'],
[3, 'Doubtful', 'doubtful'],
[4, 'Unverifyable', 'not verifyable']]
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
#### Countries ####
* Countries: [
[0, 'AF', 'Afghanistan'],
[1, 'AX', 'Åland Islands'],
[2, 'AL', 'Albania'],
[3, 'DZ', 'Algeria'],
[4, 'AS', 'American Samoa'],
[5, 'AD', 'Andorra'],
[6, 'AO', 'Angola'],
[7, 'AI', 'Anguilla'],
[8, 'AQ', 'Antarctica'],
[9, 'AG', 'Antigua and Barbuda'],
[10, 'AR', 'Argentina'],
[11, 'AM', 'Armenia'],
[12, 'AW', 'Aruba'],
[13, 'AU', 'Australia'],
[14, 'AT', 'Austria'],
[15, 'AZ', 'Azerbaijan'],
[16, 'BS', 'Bahamas'],
[17, 'BH', 'Bahrain'],
[18, 'BD', 'Bangladesh'],
[19, 'BB', 'Barbados'],
[20, 'BY', 'Belarus'],
[21, 'BE', 'Belgium'],
[22, 'BZ', 'Belize'],
[23, 'BJ', 'Benin'],
[24, 'BM', 'Bermuda'],
[25, 'BT', 'Bhutan'],
[26, 'BO', 'Plurinational State of Bolivia'],
[27, 'BQ', 'Bonaire, Sint Eustatius and Saba'],
[28, 'BA', 'Bosnia and Herzegovina'],
[29, 'BW', 'Botswana'],
[30, 'BV', 'Bouvet Island'],
[31, 'BR', 'Brazil'],
[32, 'IO', 'British Indian Ocean Territory'],
[33, 'UM', 'United States Minor Outlying Islands'],
[34, 'VG', 'British Virgin Islands'],
[35, 'VI', 'U.S. Virgin Islands'],
[36, 'BN', 'Brunei Darussalam'],
[37, 'BG', 'Bulgaria'],
[38, 'BF', 'Burkina Faso'],
[39, 'BI', 'Burundi'],
[40, 'KH', 'Cambodia'],
[41, 'CM', 'Cameroon'],
[42, 'CA', 'Canada'],
[43, 'CV', 'Cabo Verde'],
[44, 'KY', 'Cayman Islands'],
[45, 'CF', 'Central African Republic'],
[46, 'TD', 'Chad'],
[47, 'CL', 'Chile'],
[48, 'CN', 'China'],
[49, 'CX', 'Christmas Island'],
[50, 'CC', 'Cocos (Keeling) Islands'],
[51, 'CO', 'Colombia'],
[52, 'KM', 'Comoros'],
[53, 'CG', 'Congo'],
[54, 'CD', 'Democratic Republic of the Congo'],
[55, 'CK', 'Cook Islands'],
[56, 'CR', 'Costa Rica'],
[57, 'HR', 'Croatia'],
[58, 'CU', 'Cuba'],
[59, 'CW', 'Curaçao'],
[60, 'CY', 'Cyprus'],
[61, 'CZ', 'Czech Republic'],
[62, 'DK', 'Denmark'],
[63, 'DJ', 'Djibouti'],
[64, 'DM', 'Dominica'],
[65, 'DO', 'Dominican Republic'],
[66, 'EC', 'Ecuador'],
[67, 'EG', 'Egypt'],
[68, 'SV', 'El Salvador'],
[69, 'GQ', 'Equatorial Guinea'],
[70, 'ER', 'Eritrea'],
[71, 'EE', 'Estonia'],
[72, 'ET', 'Ethiopia'],
[73, 'FK', 'Falkland Islands (Malvinas)'],
[74, 'FO', 'Faroe Islands'],
[75, 'FJ', 'Fiji'],
[76, 'FI', 'Finland'],
[77, 'FR', 'France'],
[78, 'GF', 'French Guiana'],
[79, 'PF', 'French Polynesia'],
[80, 'TF', 'French Southern Territories'],
[81, 'GA', 'Gabon'],
[82, 'GM', 'Gambia'],
[83, 'GE', 'Georgia'],
[84, 'DE', 'Germany'],
[85, 'GH', 'Ghana'],
[86, 'GI', 'Gibraltar'],
[87, 'GR', 'Greece'],
[88, 'GL', 'Greenland'],
[89, 'GD', 'Grenada'],
[90, 'GP', 'Guadeloupe'],
[91, 'GU', 'Guam'],
[92, 'GT', 'Guatemala'],
[93, 'GG', 'Guernsey'],
[94, 'GN', 'Guinea'],
[95, 'GW', 'Guinea-Bissau'],
[96, 'GY', 'Guyana'],
[97, 'HT', 'Haiti'],
[98, 'HM', 'Heard Island and McDonald Islands'],
[99, 'VA', 'Holy See'],
[100, 'HN', 'Honduras'],
[101, 'HK', 'Hong Kong'],
[102, 'HU', 'Hungary'],
[103, 'IS', 'Iceland'],
[104, 'IN', 'India'],
[105, 'ID', 'Indonesia'],
[106, 'CI', "Côte d'Ivoire"],
[107, 'IR', 'Islamic Republic of Iran'],
[108, 'IQ', 'Iraq'],
[109, 'IE', 'Ireland'],
[110, 'IM', 'Isle of Man'],
[111, 'IL', 'Israel'],
[112, 'IT', 'Italy'],
[113, 'JM', 'Jamaica'],
[114, 'JP', 'Japan'],
[115, 'JE', 'Jersey'],
[116, 'JO', 'Jordan'],
[117, 'KZ', 'Kazakhstan'],
[118, 'KE', 'Kenya'],
[119, 'KI', 'Kiribati'],
[120, 'KW', 'Kuwait'],
[121, 'KG', 'Kyrgyzstan'],
[122, 'LA', "Lao People's Democratic Republic"],
[123, 'LV', 'Latvia'],
[124, 'LB', 'Lebanon'],
[125, 'LS', 'Lesotho'],
[126, 'LR', 'Liberia'],
[127, 'LY', 'Libya'],
[128, 'LI', 'Liechtenstein'],
[129, 'LT', 'Lithuania'],
[130, 'LU', 'Luxembourg'],
[131, 'MO', 'Macao'],
[132, 'MK', 'North Macedonia'],
[133, 'MG', 'Madagascar'],
[134, 'MW', 'Malawi'],
[135, 'MY', 'Malaysia'],
[136, 'MV', 'Maldives'],
[137, 'ML', 'Mali'],
[138, 'MT', 'Malta'],
[139, 'MH', 'Marshall Islands'],
[140, 'MQ', 'Martinique'],
[141, 'MR', 'Mauritania'],
[142, 'MU', 'Mauritius'],
[143, 'YT', 'Mayotte'],
[144, 'MX', 'Mexico'],
[145, 'FM', 'Federated States of Micronesia'],
[146, 'MD', 'Republic of Moldova'],
[147, 'MC', 'Monaco'],
[148, 'MN', 'Mongolia'],
[149, 'ME', 'Montenegro'],
[150, 'MS', 'Montserrat'],
[151, 'MA', 'Morocco'],
[152, 'MZ', 'Mozambique'],
[153, 'MM', 'Myanmar'],
[154, 'NA', 'Namibia'],
[155, 'NR', 'Nauru'],
[156, 'NP', 'Nepal'],
[157, 'NL', 'Netherlands'],
[158, 'NC', 'New Caledonia'],
[159, 'NZ', 'New Zealand'],
[160, 'NI', 'Nicaragua'],
[161, 'NE', 'Niger'],
[162, 'NG', 'Nigeria'],
[163, 'NU', 'Niue'],
[164, 'NF', 'Norfolk Island'],
[165, 'KP', "Democratic People's Republic of Korea"],
[166, 'MP', 'Northern Mariana Islands'],
[167, 'NO', 'Norway'],
[168, 'OM', 'Oman'],
[169, 'PK', 'Pakistan'],
[170, 'PW', 'Palau'],
[171, 'PS', 'State of Palestine'],
[172, 'PA', 'Panama'],
[173, 'PG', 'Papua New Guinea'],
[174, 'PY', 'Paraguay'],
[175, 'PE', 'Peru'],
[176, 'PH', 'Philippines'],
[177, 'PN', 'Pitcairn'],
[178, 'PL', 'Poland'],
[179, 'PT', 'Portugal'],
[180, 'PR', 'Puerto Rico'],
[181, 'QA', 'Qatar'],
[182, 'XK', 'Republic of Kosovo'],
[183, 'RE', 'Réunion'],
[184, 'RO', 'Romania'],
[185, 'RU', 'Russian Federation'],
[186, 'RW', 'Rwanda'],
[187, 'BL', 'Saint Barthélemy'],
[188, 'SH', 'Saint Helena, Ascension and Tristan da Cunha'],
[189, 'KN', 'Saint Kitts and Nevis'],
[190, 'LC', 'Saint Lucia'],
[191, 'MF', 'Saint Martin (French part)'],
[192, 'PM', 'Saint Pierre and Miquelon'],
[193, 'VC', 'Saint Vincent and the Grenadines'],
[194, 'WS', 'Samoa'],
[195, 'SM', 'San Marino'],
[196, 'ST', 'Sao Tome and Principe'],
[197, 'SA', 'Saudi Arabia'],
[198, 'SN', 'Senegal'],
[199, 'RS', 'Serbia'],
[200, 'SC', 'Seychelles'],
[201, 'SL', 'Sierra Leone'],
[202, 'SG', 'Singapore'],
[203, 'SX', 'Sint Maarten (Dutch part)'],
[204, 'SK', 'Slovakia'],
[205, 'SI', 'Slovenia'],
[206, 'SB', 'Solomon Islands'],
[207, 'SO', 'Somalia'],
[208, 'ZA', 'South Africa'],
[209, 'GS', 'South Georgia and the South Sandwich Islands'],
[210, 'KR', 'Republic of Korea'],
[211, 'SS', 'South Sudan'],
[212, 'ES', 'Spain'],
[213, 'LK', 'Sri Lanka'],
[214, 'SD', 'Sudan'],
[215, 'SR', 'Suriname'],
[216, 'SJ', 'Svalbard and Jan Mayen'],
[217, 'SZ', 'Swaziland'],
[218, 'SE', 'Sweden'],
[219, 'CH', 'Switzerland'],
[220, 'SY', 'Syrian Arab Republic'],
[221, 'TW', 'Taiwan'],
[222, 'TJ', 'Tajikistan'],
[223, 'TZ', 'Tanzania, United Republic of'],
[224, 'TH', 'Thailand'],
[225, 'TL', 'Timor-Leste'],
[226, 'TG', 'Togo'],
[227, 'TK', 'Tokelau'],
[228, 'TO', 'Tonga'],
[229, 'TT', 'Trinidad and Tobago'],
[230, 'TN', 'Tunisia'],
[231, 'TR', 'Turkey'],
[232, 'TM', 'Turkmenistan'],
[233, 'TC', 'Turks and Caicos Islands'],
[234, 'TV', 'Tuvalu'],
[235, 'UG', 'Uganda'],
[236, 'UA', 'Ukraine'],
[237, 'AE', 'United Arab Emirates'],
[238, 'GB', 'United Kingdom of Great Britain and Northern Ireland'],
[239, 'US', 'United States of America'],
[240, 'UY', 'Uruguay'],
[241, 'UZ', 'Uzbekistan'],
[242, 'VU', 'Vanuatu'],
[243, 'VE', 'Bolivarian Republic of Venezuela'],
[244, 'VN', 'Viet Nam'],
[245, 'WF', 'Wallis and Futuna'],
[246, 'EH', 'Western Sahara'],
[247, 'YE', 'Yemen'],
[248, 'ZM', 'Zambia'],
[249, 'ZW', 'Zimbabwe'],
[-1, 'N/A', 'N/A']]
#### Timezones ####
* Timezones: [
[0, 'Africa/Abidjan', 'Africa/Abidjan'],
[1, 'Africa/Accra', 'Africa/Accra'],
[2, 'Africa/Addis_Ababa', 'Africa/Addis_Ababa'],
[3, 'Africa/Algiers', 'Africa/Algiers'],
[4, 'Africa/Asmara', 'Africa/Asmara'],
[5, 'Africa/Asmera', 'Africa/Asmera'],
[6, 'Africa/Bamako', 'Africa/Bamako'],
[7, 'Africa/Bangui', 'Africa/Bangui'],
[8, 'Africa/Banjul', 'Africa/Banjul'],
[9, 'Africa/Bissau', 'Africa/Bissau'],
[10, 'Africa/Blantyre', 'Africa/Blantyre'],
[11, 'Africa/Brazzaville', 'Africa/Brazzaville'],
[12, 'Africa/Bujumbura', 'Africa/Bujumbura'],
[13, 'Africa/Cairo', 'Africa/Cairo'],
[14, 'Africa/Casablanca', 'Africa/Casablanca'],
[15, 'Africa/Ceuta', 'Africa/Ceuta'],
[16, 'Africa/Conakry', 'Africa/Conakry'],
[17, 'Africa/Dakar', 'Africa/Dakar'],
[18, 'Africa/Dar_es_Salaam', 'Africa/Dar_es_Salaam'],
[19, 'Africa/Djibouti', 'Africa/Djibouti'],
[20, 'Africa/Douala', 'Africa/Douala'],
[21, 'Africa/El_Aaiun', 'Africa/El_Aaiun'],
[22, 'Africa/Freetown', 'Africa/Freetown'],
[23, 'Africa/Gaborone', 'Africa/Gaborone'],
[24, 'Africa/Harare', 'Africa/Harare'],
[25, 'Africa/Johannesburg', 'Africa/Johannesburg'],
[26, 'Africa/Juba', 'Africa/Juba'],
[27, 'Africa/Kampala', 'Africa/Kampala'],
[28, 'Africa/Khartoum', 'Africa/Khartoum'],
[29, 'Africa/Kigali', 'Africa/Kigali'],
[30, 'Africa/Kinshasa', 'Africa/Kinshasa'],
[31, 'Africa/Lagos', 'Africa/Lagos'],
[32, 'Africa/Libreville', 'Africa/Libreville'],
[33, 'Africa/Lome', 'Africa/Lome'],
[34, 'Africa/Luanda', 'Africa/Luanda'],
[35, 'Africa/Lubumbashi', 'Africa/Lubumbashi'],
[36, 'Africa/Lusaka', 'Africa/Lusaka'],
[37, 'Africa/Malabo', 'Africa/Malabo'],
[38, 'Africa/Maputo', 'Africa/Maputo'],
[39, 'Africa/Maseru', 'Africa/Maseru'],
[40, 'Africa/Mbabane', 'Africa/Mbabane'],
[41, 'Africa/Mogadishu', 'Africa/Mogadishu'],
[42, 'Africa/Monrovia', 'Africa/Monrovia'],
[43, 'Africa/Nairobi', 'Africa/Nairobi'],
[44, 'Africa/Ndjamena', 'Africa/Ndjamena'],
[45, 'Africa/Niamey', 'Africa/Niamey'],
[46, 'Africa/Nouakchott', 'Africa/Nouakchott'],
[47, 'Africa/Ouagadougou', 'Africa/Ouagadougou'],
[48, 'Africa/Porto-Novo', 'Africa/Porto-Novo'],
[49, 'Africa/Sao_Tome', 'Africa/Sao_Tome'],
[50, 'Africa/Timbuktu', 'Africa/Timbuktu'],
[51, 'Africa/Tripoli', 'Africa/Tripoli'],
[52, 'Africa/Tunis', 'Africa/Tunis'],
[53, 'Africa/Windhoek', 'Africa/Windhoek'],
[54, 'America/Adak', 'America/Adak'],
[55, 'America/Anchorage', 'America/Anchorage'],
[56, 'America/Anguilla', 'America/Anguilla'],
[57, 'America/Antigua', 'America/Antigua'],
[58, 'America/Araguaina', 'America/Araguaina'],
[59, 'America/Argentina/Buenos_Aires', 'America/Argentina/Buenos_Aires'],
[60, 'America/Argentina/Catamarca', 'America/Argentina/Catamarca'],
[61, 'America/Argentina/ComodRivadavia', 'America/Argentina/ComodRivadavia'],
[62, 'America/Argentina/Cordoba', 'America/Argentina/Cordoba'],
[63, 'America/Argentina/Jujuy', 'America/Argentina/Jujuy'],
[64, 'America/Argentina/La_Rioja', 'America/Argentina/La_Rioja'],
[65, 'America/Argentina/Mendoza', 'America/Argentina/Mendoza'],
[66, 'America/Argentina/Rio_Gallegos', 'America/Argentina/Rio_Gallegos'],
[67, 'America/Argentina/Salta', 'America/Argentina/Salta'],
[68, 'America/Argentina/San_Juan', 'America/Argentina/San_Juan'],
[69, 'America/Argentina/San_Luis', 'America/Argentina/San_Luis'],
[70, 'America/Argentina/Tucuman', 'America/Argentina/Tucuman'],
[71, 'America/Argentina/Ushuaia', 'America/Argentina/Ushuaia'],
[72, 'America/Aruba', 'America/Aruba'],
[73, 'America/Asuncion', 'America/Asuncion'],
[74, 'America/Atikokan', 'America/Atikokan'],
[75, 'America/Atka', 'America/Atka'],
[76, 'America/Bahia', 'America/Bahia'],
[77, 'America/Bahia_Banderas', 'America/Bahia_Banderas'],
[78, 'America/Barbados', 'America/Barbados'],
[79, 'America/Belem', 'America/Belem'],
[80, 'America/Belize', 'America/Belize'],
[81, 'America/Blanc-Sablon', 'America/Blanc-Sablon'],
[82, 'America/Boa_Vista', 'America/Boa_Vista'],
[83, 'America/Bogota', 'America/Bogota'],
[84, 'America/Boise', 'America/Boise'],
[85, 'America/Buenos_Aires', 'America/Buenos_Aires'],
[86, 'America/Cambridge_Bay', 'America/Cambridge_Bay'],
[87, 'America/Campo_Grande', 'America/Campo_Grande'],
[88, 'America/Cancun', 'America/Cancun'],
[89, 'America/Caracas', 'America/Caracas'],
[90, 'America/Catamarca', 'America/Catamarca'],
[91, 'America/Cayenne', 'America/Cayenne'],
[92, 'America/Cayman', 'America/Cayman'],
[93, 'America/Chicago', 'America/Chicago'],
[94, 'America/Chihuahua', 'America/Chihuahua'],
[95, 'America/Coral_Harbour', 'America/Coral_Harbour'],
[96, 'America/Cordoba', 'America/Cordoba'],
[97, 'America/Costa_Rica', 'America/Costa_Rica'],
[98, 'America/Creston', 'America/Creston'],
[99, 'America/Cuiaba', 'America/Cuiaba'],
[100, 'America/Curacao', 'America/Curacao'],
[101, 'America/Danmarkshavn', 'America/Danmarkshavn'],
[102, 'America/Dawson', 'America/Dawson'],
[103, 'America/Dawson_Creek', 'America/Dawson_Creek'],
[104, 'America/Denver', 'America/Denver'],
[105, 'America/Detroit', 'America/Detroit'],
[106, 'America/Dominica', 'America/Dominica'],
[107, 'America/Edmonton', 'America/Edmonton'],
[108, 'America/Eirunepe', 'America/Eirunepe'],
[109, 'America/El_Salvador', 'America/El_Salvador'],
[110, 'America/Ensenada', 'America/Ensenada'],
[111, 'America/Fort_Nelson', 'America/Fort_Nelson'],
[112, 'America/Fort_Wayne', 'America/Fort_Wayne'],
[113, 'America/Fortaleza', 'America/Fortaleza'],
[114, 'America/Glace_Bay', 'America/Glace_Bay'],
[115, 'America/Godthab', 'America/Godthab'],
[116, 'America/Goose_Bay', 'America/Goose_Bay'],
[117, 'America/Grand_Turk', 'America/Grand_Turk'],
[118, 'America/Grenada', 'America/Grenada'],
[119, 'America/Guadeloupe', 'America/Guadeloupe'],
[120, 'America/Guatemala', 'America/Guatemala'],
[121, 'America/Guayaquil', 'America/Guayaquil'],
[122, 'America/Guyana', 'America/Guyana'],
[123, 'America/Halifax', 'America/Halifax'],
[124, 'America/Havana', 'America/Havana'],
[125, 'America/Hermosillo', 'America/Hermosillo'],
[126, 'America/Indiana/Indianapolis', 'America/Indiana/Indianapolis'],
[127, 'America/Indiana/Knox', 'America/Indiana/Knox'],
[128, 'America/Indiana/Marengo', 'America/Indiana/Marengo'],
[129, 'America/Indiana/Petersburg', 'America/Indiana/Petersburg'],
[130, 'America/Indiana/Tell_City', 'America/Indiana/Tell_City'],
[131, 'America/Indiana/Vevay', 'America/Indiana/Vevay'],
[132, 'America/Indiana/Vincennes', 'America/Indiana/Vincennes'],
[133, 'America/Indiana/Winamac', 'America/Indiana/Winamac'],
[134, 'America/Indianapolis', 'America/Indianapolis'],
[135, 'America/Inuvik', 'America/Inuvik'],
[136, 'America/Iqaluit', 'America/Iqaluit'],
[137, 'America/Jamaica', 'America/Jamaica'],
[138, 'America/Jujuy', 'America/Jujuy'],
[139, 'America/Juneau', 'America/Juneau'],
[140, 'America/Kentucky/Louisville', 'America/Kentucky/Louisville'],
[141, 'America/Kentucky/Monticello', 'America/Kentucky/Monticello'],
[142, 'America/Knox_IN', 'America/Knox_IN'],
[143, 'America/Kralendijk', 'America/Kralendijk'],
[144, 'America/La_Paz', 'America/La_Paz'],
[145, 'America/Lima', 'America/Lima'],
[146, 'America/Los_Angeles', 'America/Los_Angeles'],
[147, 'America/Louisville', 'America/Louisville'],
[148, 'America/Lower_Princes', 'America/Lower_Princes'],
[149, 'America/Maceio', 'America/Maceio'],
[150, 'America/Managua', 'America/Managua'],
[151, 'America/Manaus', 'America/Manaus'],
[152, 'America/Marigot', 'America/Marigot'],
[153, 'America/Martinique', 'America/Martinique'],
[154, 'America/Matamoros', 'America/Matamoros'],
[155, 'America/Mazatlan', 'America/Mazatlan'],
[156, 'America/Mendoza', 'America/Mendoza'],
[157, 'America/Menominee', 'America/Menominee'],
[158, 'America/Merida', 'America/Merida'],
[159, 'America/Metlakatla', 'America/Metlakatla'],
[160, 'America/Mexico_City', 'America/Mexico_City'],
[161, 'America/Miquelon', 'America/Miquelon'],
[162, 'America/Moncton', 'America/Moncton'],
[163, 'America/Monterrey', 'America/Monterrey'],
[164, 'America/Montevideo', 'America/Montevideo'],
[165, 'America/Montreal', 'America/Montreal'],
[166, 'America/Montserrat', 'America/Montserrat'],
[167, 'America/Nassau', 'America/Nassau'],
[168, 'America/New_York', 'America/New_York'],
[169, 'America/Nipigon', 'America/Nipigon'],
[170, 'America/Nome', 'America/Nome'],
[171, 'America/Noronha', 'America/Noronha'],
[172, 'America/North_Dakota/Beulah', 'America/North_Dakota/Beulah'],
[173, 'America/North_Dakota/Center', 'America/North_Dakota/Center'],
[174, 'America/North_Dakota/New_Salem', 'America/North_Dakota/New_Salem'],
[175, 'America/Nuuk', 'America/Nuuk'],
[176, 'America/Ojinaga', 'America/Ojinaga'],
[177, 'America/Panama', 'America/Panama'],
[178, 'America/Pangnirtung', 'America/Pangnirtung'],
[179, 'America/Paramaribo', 'America/Paramaribo'],
[180, 'America/Phoenix', 'America/Phoenix'],
[181, 'America/Port-au-Prince', 'America/Port-au-Prince'],
[182, 'America/Port_of_Spain', 'America/Port_of_Spain'],
[183, 'America/Porto_Acre', 'America/Porto_Acre'],
[184, 'America/Porto_Velho', 'America/Porto_Velho'],
[185, 'America/Puerto_Rico', 'America/Puerto_Rico'],
[186, 'America/Punta_Arenas', 'America/Punta_Arenas'],
[187, 'America/Rainy_River', 'America/Rainy_River'],
[188, 'America/Rankin_Inlet', 'America/Rankin_Inlet'],
[189, 'America/Recife', 'America/Recife'],
[190, 'America/Regina', 'America/Regina'],
[191, 'America/Resolute', 'America/Resolute'],
[192, 'America/Rio_Branco', 'America/Rio_Branco'],
[193, 'America/Rosario', 'America/Rosario'],
[194, 'America/Santa_Isabel', 'America/Santa_Isabel'],
[195, 'America/Santarem', 'America/Santarem'],
[196, 'America/Santiago', 'America/Santiago'],
[197, 'America/Santo_Domingo', 'America/Santo_Domingo'],
[198, 'America/Sao_Paulo', 'America/Sao_Paulo'],
[199, 'America/Scoresbysund', 'America/Scoresbysund'],
[200, 'America/Shiprock', 'America/Shiprock'],
[201, 'America/Sitka', 'America/Sitka'],
[202, 'America/St_Barthelemy', 'America/St_Barthelemy'],
[203, 'America/St_Johns', 'America/St_Johns'],
[204, 'America/St_Kitts', 'America/St_Kitts'],
[205, 'America/St_Lucia', 'America/St_Lucia'],
[206, 'America/St_Thomas', 'America/St_Thomas'],
[207, 'America/St_Vincent', 'America/St_Vincent'],
[208, 'America/Swift_Current', 'America/Swift_Current'],
[209, 'America/Tegucigalpa', 'America/Tegucigalpa'],
[210, 'America/Thule', 'America/Thule'],
[211, 'America/Thunder_Bay', 'America/Thunder_Bay'],
[212, 'America/Tijuana', 'America/Tijuana'],
[213, 'America/Toronto', 'America/Toronto'],
[214, 'America/Tortola', 'America/Tortola'],
[215, 'America/Vancouver', 'America/Vancouver'],
[216, 'America/Virgin', 'America/Virgin'],
[217, 'America/Whitehorse', 'America/Whitehorse'],
[218, 'America/Winnipeg', 'America/Winnipeg'],
[219, 'America/Yakutat', 'America/Yakutat'],
[220, 'America/Yellowknife', 'America/Yellowknife'],
[221, 'Antarctica/Casey', 'Antarctica/Casey'],
[222, 'Antarctica/Davis', 'Antarctica/Davis'],
[223, 'Antarctica/DumontDUrville', 'Antarctica/DumontDUrville'],
[224, 'Antarctica/Macquarie', 'Antarctica/Macquarie'],
[225, 'Antarctica/Mawson', 'Antarctica/Mawson'],
[226, 'Antarctica/McMurdo', 'Antarctica/McMurdo'],
[227, 'Antarctica/Palmer', 'Antarctica/Palmer'],
[228, 'Antarctica/Rothera', 'Antarctica/Rothera'],
[229, 'Antarctica/South_Pole', 'Antarctica/South_Pole'],
[230, 'Antarctica/Syowa', 'Antarctica/Syowa'],
[231, 'Antarctica/Troll', 'Antarctica/Troll'],
[232, 'Antarctica/Vostok', 'Antarctica/Vostok'],
[233, 'Arctic/Longyearbyen', 'Arctic/Longyearbyen'],
[234, 'Asia/Aden', 'Asia/Aden'],
[235, 'Asia/Almaty', 'Asia/Almaty'],
[236, 'Asia/Amman', 'Asia/Amman'],
[237, 'Asia/Anadyr', 'Asia/Anadyr'],
[238, 'Asia/Aqtau', 'Asia/Aqtau'],
[239, 'Asia/Aqtobe', 'Asia/Aqtobe'],
[240, 'Asia/Ashgabat', 'Asia/Ashgabat'],
[241, 'Asia/Ashkhabad', 'Asia/Ashkhabad'],
[242, 'Asia/Atyrau', 'Asia/Atyrau'],
[243, 'Asia/Baghdad', 'Asia/Baghdad'],
[244, 'Asia/Bahrain', 'Asia/Bahrain'],
[245, 'Asia/Baku', 'Asia/Baku'],
[246, 'Asia/Bangkok', 'Asia/Bangkok'],
[247, 'Asia/Barnaul', 'Asia/Barnaul'],
[248, 'Asia/Beirut', 'Asia/Beirut'],
[249, 'Asia/Bishkek', 'Asia/Bishkek'],
[250, 'Asia/Brunei', 'Asia/Brunei'],
[251, 'Asia/Calcutta', 'Asia/Calcutta'],
[252, 'Asia/Chita', 'Asia/Chita'],
[253, 'Asia/Choibalsan', 'Asia/Choibalsan'],
[254, 'Asia/Chongqing', 'Asia/Chongqing'],
[255, 'Asia/Chungking', 'Asia/Chungking'],
[256, 'Asia/Colombo', 'Asia/Colombo'],
[257, 'Asia/Dacca', 'Asia/Dacca'],
[258, 'Asia/Damascus', 'Asia/Damascus'],
[259, 'Asia/Dhaka', 'Asia/Dhaka'],
[260, 'Asia/Dili', 'Asia/Dili'],
[261, 'Asia/Dubai', 'Asia/Dubai'],
[262, 'Asia/Dushanbe', 'Asia/Dushanbe'],
[263, 'Asia/Famagusta', 'Asia/Famagusta'],
[264, 'Asia/Gaza', 'Asia/Gaza'],
[265, 'Asia/Harbin', 'Asia/Harbin'],
[266, 'Asia/Hebron', 'Asia/Hebron'],
[267, 'Asia/Ho_Chi_Minh', 'Asia/Ho_Chi_Minh'],
[268, 'Asia/Hong_Kong', 'Asia/Hong_Kong'],
[269, 'Asia/Hovd', 'Asia/Hovd'],
[270, 'Asia/Irkutsk', 'Asia/Irkutsk'],
[271, 'Asia/Istanbul', 'Asia/Istanbul'],
[272, 'Asia/Jakarta', 'Asia/Jakarta'],
[273, 'Asia/Jayapura', 'Asia/Jayapura'],
[274, 'Asia/Jerusalem', 'Asia/Jerusalem'],
[275, 'Asia/Kabul', 'Asia/Kabul'],
[276, 'Asia/Kamchatka', 'Asia/Kamchatka'],
[277, 'Asia/Karachi', 'Asia/Karachi'],
[278, 'Asia/Kashgar', 'Asia/Kashgar'],
[279, 'Asia/Kathmandu', 'Asia/Kathmandu'],
[280, 'Asia/Katmandu', 'Asia/Katmandu'],
[281, 'Asia/Khandyga', 'Asia/Khandyga'],
[282, 'Asia/Kolkata', 'Asia/Kolkata'],
[283, 'Asia/Krasnoyarsk', 'Asia/Krasnoyarsk'],
[284, 'Asia/Kuala_Lumpur', 'Asia/Kuala_Lumpur'],
[285, 'Asia/Kuching', 'Asia/Kuching'],
[286, 'Asia/Kuwait', 'Asia/Kuwait'],
[287, 'Asia/Macao', 'Asia/Macao'],
[288, 'Asia/Macau', 'Asia/Macau'],
[289, 'Asia/Magadan', 'Asia/Magadan'],
[290, 'Asia/Makassar', 'Asia/Makassar'],
[291, 'Asia/Manila', 'Asia/Manila'],
[292, 'Asia/Muscat', 'Asia/Muscat'],
[293, 'Asia/Nicosia', 'Asia/Nicosia'],
[294, 'Asia/Novokuznetsk', 'Asia/Novokuznetsk'],
[295, 'Asia/Novosibirsk', 'Asia/Novosibirsk'],
[296, 'Asia/Omsk', 'Asia/Omsk'],
[297, 'Asia/Oral', 'Asia/Oral'],
[298, 'Asia/Phnom_Penh', 'Asia/Phnom_Penh'],
[299, 'Asia/Pontianak', 'Asia/Pontianak'],
[300, 'Asia/Pyongyang', 'Asia/Pyongyang'],
[301, 'Asia/Qatar', 'Asia/Qatar'],
[302, 'Asia/Qostanay', 'Asia/Qostanay'],
[303, 'Asia/Qyzylorda', 'Asia/Qyzylorda'],
[304, 'Asia/Rangoon', 'Asia/Rangoon'],
[305, 'Asia/Riyadh', 'Asia/Riyadh'],
[306, 'Asia/Saigon', 'Asia/Saigon'],
[307, 'Asia/Sakhalin', 'Asia/Sakhalin'],
[308, 'Asia/Samarkand', 'Asia/Samarkand'],
[309, 'Asia/Seoul', 'Asia/Seoul'],
[310, 'Asia/Shanghai', 'Asia/Shanghai'],
[311, 'Asia/Singapore', 'Asia/Singapore'],
[312, 'Asia/Srednekolymsk', 'Asia/Srednekolymsk'],
[313, 'Asia/Taipei', 'Asia/Taipei'],
[314, 'Asia/Tashkent', 'Asia/Tashkent'],
[315, 'Asia/Tbilisi', 'Asia/Tbilisi'],
[316, 'Asia/Tehran', 'Asia/Tehran'],
[317, 'Asia/Tel_Aviv', 'Asia/Tel_Aviv'],
[318, 'Asia/Thimbu', 'Asia/Thimbu'],
[319, 'Asia/Thimphu', 'Asia/Thimphu'],
[320, 'Asia/Tokyo', 'Asia/Tokyo'],
[321, 'Asia/Tomsk', 'Asia/Tomsk'],
[322, 'Asia/Ujung_Pandang', 'Asia/Ujung_Pandang'],
[323, 'Asia/Ulaanbaatar', 'Asia/Ulaanbaatar'],
[324, 'Asia/Ulan_Bator', 'Asia/Ulan_Bator'],
[325, 'Asia/Urumqi', 'Asia/Urumqi'],
[326, 'Asia/Ust-Nera', 'Asia/Ust-Nera'],
[327, 'Asia/Vientiane', 'Asia/Vientiane'],
[328, 'Asia/Vladivostok', 'Asia/Vladivostok'],
[329, 'Asia/Yakutsk', 'Asia/Yakutsk'],
[330, 'Asia/Yangon', 'Asia/Yangon'],
[331, 'Asia/Yekaterinburg', 'Asia/Yekaterinburg'],
[332, 'Asia/Yerevan', 'Asia/Yerevan'],
[333, 'Atlantic/Azores', 'Atlantic/Azores'],
[334, 'Atlantic/Bermuda', 'Atlantic/Bermuda'],
[335, 'Atlantic/Canary', 'Atlantic/Canary'],
[336, 'Atlantic/Cape_Verde', 'Atlantic/Cape_Verde'],
[337, 'Atlantic/Faeroe', 'Atlantic/Faeroe'],
[338, 'Atlantic/Faroe', 'Atlantic/Faroe'],
[339, 'Atlantic/Jan_Mayen', 'Atlantic/Jan_Mayen'],
[340, 'Atlantic/Madeira', 'Atlantic/Madeira'],
[341, 'Atlantic/Reykjavik', 'Atlantic/Reykjavik'],
[342, 'Atlantic/South_Georgia', 'Atlantic/South_Georgia'],
[343, 'Atlantic/St_Helena', 'Atlantic/St_Helena'],
[344, 'Atlantic/Stanley', 'Atlantic/Stanley'],
[345, 'Australia/ACT', 'Australia/ACT'],
[346, 'Australia/Adelaide', 'Australia/Adelaide'],
[347, 'Australia/Brisbane', 'Australia/Brisbane'],
[348, 'Australia/Broken_Hill', 'Australia/Broken_Hill'],
[349, 'Australia/Canberra', 'Australia/Canberra'],
[350, 'Australia/Currie', 'Australia/Currie'],
[351, 'Australia/Darwin', 'Australia/Darwin'],
[352, 'Australia/Eucla', 'Australia/Eucla'],
[353, 'Australia/Hobart', 'Australia/Hobart'],
[354, 'Australia/LHI', 'Australia/LHI'],
[355, 'Australia/Lindeman', 'Australia/Lindeman'],
[356, 'Australia/Lord_Howe', 'Australia/Lord_Howe'],
[357, 'Australia/Melbourne', 'Australia/Melbourne'],
[358, 'Australia/NSW', 'Australia/NSW'],
[359, 'Australia/North', 'Australia/North'],
[360, 'Australia/Perth', 'Australia/Perth'],
[361, 'Australia/Queensland', 'Australia/Queensland'],
[362, 'Australia/South', 'Australia/South'],
[363, 'Australia/Sydney', 'Australia/Sydney'],
[364, 'Australia/Tasmania', 'Australia/Tasmania'],
[365, 'Australia/Victoria', 'Australia/Victoria'],
[366, 'Australia/West', 'Australia/West'],
[367, 'Australia/Yancowinna', 'Australia/Yancowinna'],
[368, 'Brazil/Acre', 'Brazil/Acre'],
[369, 'Brazil/DeNoronha', 'Brazil/DeNoronha'],
[370, 'Brazil/East', 'Brazil/East'],
[371, 'Brazil/West', 'Brazil/West'],
[372, 'CET', 'CET'],
[373, 'CST6CDT', 'CST6CDT'],
[374, 'Canada/Atlantic', 'Canada/Atlantic'],
[375, 'Canada/Central', 'Canada/Central'],
[376, 'Canada/Eastern', 'Canada/Eastern'],
[377, 'Canada/Mountain', 'Canada/Mountain'],
[378, 'Canada/Newfoundland', 'Canada/Newfoundland'],
[379, 'Canada/Pacific', 'Canada/Pacific'],