tosijs-timezone-picker 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +94 -0
- package/cdn/index.js +3 -0
- package/cdn/index.js.map +12 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2947 -0
- package/dist/index.js.map +12 -0
- package/dist/polygons.d.ts +10 -0
- package/dist/regions.d.ts +13 -0
- package/dist/timezone-picker.d.ts +75 -0
- package/dist/timezones.d.ts +12 -0
- package/package.json +47 -0
package/dist/index.js
ADDED
|
@@ -0,0 +1,2947 @@
|
|
|
1
|
+
// src/timezone-picker.ts
|
|
2
|
+
import { Component, elements } from "tosijs";
|
|
3
|
+
|
|
4
|
+
// src/timezones.ts
|
|
5
|
+
var timeNow = new Date;
|
|
6
|
+
var timezones = Intl.supportedValuesOf("timeZone").map((name) => {
|
|
7
|
+
const offset = Number(Intl.DateTimeFormat("en-GB", {
|
|
8
|
+
hour: "numeric",
|
|
9
|
+
minute: "numeric",
|
|
10
|
+
timeZoneName: "shortOffset",
|
|
11
|
+
timeZone: name
|
|
12
|
+
}).format(timeNow).split("GMT").pop().replace(/\:30/, ".5"));
|
|
13
|
+
const abbr = Intl.DateTimeFormat("en-GB", {
|
|
14
|
+
hour: "numeric",
|
|
15
|
+
minute: "numeric",
|
|
16
|
+
timeZoneName: "short",
|
|
17
|
+
timeZone: name
|
|
18
|
+
}).format(timeNow).split(" ").pop();
|
|
19
|
+
const tz = {
|
|
20
|
+
name,
|
|
21
|
+
abbr,
|
|
22
|
+
offset
|
|
23
|
+
};
|
|
24
|
+
const parts = name.split("/");
|
|
25
|
+
if (parts.length === 3) {
|
|
26
|
+
tz.shortName = `${parts[0]}/${parts[2]}`;
|
|
27
|
+
}
|
|
28
|
+
return tz;
|
|
29
|
+
});
|
|
30
|
+
var localTimezone = timezones.find((z) => z.name === Intl.DateTimeFormat().resolvedOptions().timeZone);
|
|
31
|
+
var timezoneAliases = {
|
|
32
|
+
"Africa/Asmera": "Africa/Asmara",
|
|
33
|
+
"Africa/Asmara": "Africa/Asmera",
|
|
34
|
+
"America/Coral_Harbour": "America/Edmonton",
|
|
35
|
+
"America/Godthab": "America/Nuuk",
|
|
36
|
+
"America/Nuuk": "America/Godthab",
|
|
37
|
+
"Asia/Calcutta": "Asia/Kolkata",
|
|
38
|
+
"Asia/Kolkata": "Asia/Calcutta",
|
|
39
|
+
"Asia/Katmandu": "Asia/Kathmandu",
|
|
40
|
+
"Asia/Kathmandu": "Asia/Katmandu",
|
|
41
|
+
"Asia/Rangoon": "Asia/Yangon",
|
|
42
|
+
"Asia/Yangon": "Asia/Rangoon",
|
|
43
|
+
"Asia/Saigon": "Asia/Ho_Chi_Minh",
|
|
44
|
+
"Asia/Ho_Chi_Minh": "Asia/Saigon",
|
|
45
|
+
"Europe/Kiev": "Europe/Kyiv",
|
|
46
|
+
"Europe/Kyiv": "Europe/Kiev",
|
|
47
|
+
"Europe/Uzhgorod": "Europe/Kiev",
|
|
48
|
+
"Europe/Zaporozhye": "Europe/Kiev",
|
|
49
|
+
"America/Montreal": "America/Toronto",
|
|
50
|
+
"America/Nipigon": "America/Toronto",
|
|
51
|
+
"America/Pangnirtung": "America/Iqaluit",
|
|
52
|
+
"America/Rainy_River": "America/Winnipeg",
|
|
53
|
+
"America/Santa_Isabel": "America/Tijuana",
|
|
54
|
+
"America/Thunder_Bay": "America/Toronto",
|
|
55
|
+
"America/Yellowknife": "America/Edmonton",
|
|
56
|
+
"Asia/Choibalsan": "Asia/Ulaanbaatar",
|
|
57
|
+
"Australia/Currie": "Australia/Hobart",
|
|
58
|
+
"Pacific/Johnston": "Pacific/Honolulu"
|
|
59
|
+
};
|
|
60
|
+
var zoneFromName = (name) => {
|
|
61
|
+
return timezones.find((tz) => tz.name === name || tz.shortName === name) ?? timezones.find((tz) => tz.name === timezoneAliases[name]);
|
|
62
|
+
};
|
|
63
|
+
var zoneId = (tz) => {
|
|
64
|
+
const name = tz.shortName !== undefined ? tz.shortName : tz.name;
|
|
65
|
+
const { offset } = tz;
|
|
66
|
+
const signedOffset = offset > 0 ? `+${offset}` : offset < 0 ? String(offset) : "";
|
|
67
|
+
return `${name.replace(/_/g, " ")} GMT${signedOffset}`;
|
|
68
|
+
};
|
|
69
|
+
var zoneFromId = (id) => {
|
|
70
|
+
return timezones.find((tz) => id === zoneId(tz));
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
// src/regions.ts
|
|
74
|
+
var regionId = (region) => {
|
|
75
|
+
let offset = zoneFromRegion(region)?.offset;
|
|
76
|
+
if (offset === undefined) {
|
|
77
|
+
offset = region.offset;
|
|
78
|
+
}
|
|
79
|
+
return `${region.timezone.replace(/_/g, " ")} GMT${offset > 0 ? "+" : ""}${offset !== 0 ? offset : ""}`;
|
|
80
|
+
};
|
|
81
|
+
var zoneFromRegion = (region) => {
|
|
82
|
+
const alias = timezoneAliases[region.timezone];
|
|
83
|
+
return timezones.find((tz) => tz.name === region.timezone) ?? timezones.find((tz) => tz.name === alias) ?? timezones.find((tz) => tz.name === timezoneAliases[alias]);
|
|
84
|
+
};
|
|
85
|
+
var regions = [
|
|
86
|
+
{
|
|
87
|
+
timezone: "Africa/Abidjan",
|
|
88
|
+
country: "CI",
|
|
89
|
+
points: "241,118,246,118,245,116,247,113,246,111,244,112,243,111,239,111,238,116,241,118",
|
|
90
|
+
abbr: "GMT"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
timezone: "Africa/Accra",
|
|
94
|
+
country: "GH",
|
|
95
|
+
points: "251,117,251,116,251,113,250,110,246,110,247,114,246,118,251,117",
|
|
96
|
+
abbr: "GMT"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
timezone: "Africa/Addis_Ababa",
|
|
100
|
+
country: "ET",
|
|
101
|
+
points: "313,118,317,114,310,112,308,110,309,108,307,105,301,105,299,110,298,110,296,114,299,116,300,119,305,120,307,119,308,120,311,118,313,118",
|
|
102
|
+
abbr: "EAT"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
timezone: "Africa/Algiers",
|
|
106
|
+
country: "DZ",
|
|
107
|
+
points: "263,83,263,81,260,78,262,77,261,74,254,74,247,76,249,80,246,81,243,83,239,85,238,87,250,95,252,97,254,97,255,99,258,98,267,92,264,91,263,89,264,88,263,83",
|
|
108
|
+
abbr: "CET"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
timezone: "Africa/Asmara",
|
|
112
|
+
country: "ER",
|
|
113
|
+
points: "306,104,304,100,301,101,301,105,303,105,306,105,309,108,310,107,306,104",
|
|
114
|
+
abbr: "EAT"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
timezone: "Africa/Bamako",
|
|
118
|
+
country: "ML",
|
|
119
|
+
points: "244,107,245,107,246,105,249,104,255,104,256,101,256,98,255,99,254,97,252,96,243,90,241,90,242,103,237,103,235,104,234,103,233,105,234,108,237,108,240,111,242,109,244,107",
|
|
120
|
+
abbr: "GMT"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
timezone: "Africa/Bangui",
|
|
124
|
+
country: "CF",
|
|
125
|
+
points: "284,118,288,118,283,111,280,110,276,114,272,115,270,117,270,119,272,122,273,120,276,120,277,118,281,119,284,118",
|
|
126
|
+
abbr: "WAT"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
timezone: "Africa/Banjul",
|
|
130
|
+
country: "GM",
|
|
131
|
+
points: "228,105,228,107,226,107,226,105",
|
|
132
|
+
abbr: "GMT"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
timezone: "Africa/Bissau",
|
|
136
|
+
country: "GW",
|
|
137
|
+
points: "229,108,229,110,227,110,227,108",
|
|
138
|
+
abbr: "GMT"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
timezone: "Africa/Blantyre",
|
|
142
|
+
country: "MW",
|
|
143
|
+
points: "298,144,299,141,298,139,296,138,297,142,295,144,298,145,299,149,300,146,298,144",
|
|
144
|
+
abbr: "CAT"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
timezone: "Africa/Brazzaville",
|
|
148
|
+
country: "CG",
|
|
149
|
+
points: "266,131,268,131,270,132,275,126,276,120,273,120,272,123,268,122,269,125,270,128,268,128,267,130,266,131",
|
|
150
|
+
abbr: "WAT"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
timezone: "Africa/Bujumbura",
|
|
154
|
+
country: "BI",
|
|
155
|
+
points: "290,129,290,131,292,131,292,129",
|
|
156
|
+
abbr: "CAT"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
timezone: "Asia/Oral",
|
|
160
|
+
country: "KZ",
|
|
161
|
+
points: "316,55,315,58,319,58,321,57,323,58,326,56,326,54,323,53,320,53,316,55",
|
|
162
|
+
abbr: "ORAT"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
timezone: "Africa/Cairo",
|
|
166
|
+
country: "EG",
|
|
167
|
+
points: "294,94,297,95,300,92,295,84,296,85,298,86,298,82,295,82,294,81,290,82,285,81,284,83,285,94,294,94",
|
|
168
|
+
abbr: "EET"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
timezone: "Africa/Casablanca",
|
|
172
|
+
country: "MA",
|
|
173
|
+
points: "242,84,243,82,245,81,248,80,248,77,242,75,241,78,236,81,237,83,232,87,238,87,238,85,242,84",
|
|
174
|
+
abbr: "WET"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
timezone: "Africa/Ceuta",
|
|
178
|
+
country: "ES",
|
|
179
|
+
points: "244,74,244,76,242,76,242,74",
|
|
180
|
+
abbr: "CET"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
timezone: "Africa/Conakry",
|
|
184
|
+
country: "GN",
|
|
185
|
+
points: "238,114,239,114,237,108,231,107,231,109,229,109,233,111,236,113,237,115,238,114",
|
|
186
|
+
abbr: "GMT"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
timezone: "Africa/Dakar",
|
|
190
|
+
country: "SN",
|
|
191
|
+
points: "227,107,229,107,234,108,233,105,230,102,227,102,226,105,227,107",
|
|
192
|
+
abbr: "GMT"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
timezone: "Africa/Dar_es_Salaam",
|
|
196
|
+
country: "TZ",
|
|
197
|
+
points: "306,139,304,134,304,131,302,129,297,126,292,126,293,130,291,132,291,134,293,137,297,138,299,141,302,141,306,140,306,139",
|
|
198
|
+
abbr: "EAT"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
timezone: "Asia/Yekaterinburg",
|
|
202
|
+
country: "RU",
|
|
203
|
+
points: "333,53,335,52,335,50,341,50,346,48,348,48,350,46,348,44,353,44,356,42,357,40,364,41,369,40,367,39,369,36,367,35,366,32,364,32,365,29,360,28,362,27,362,25,356,25,359,27,355,26,354,25,351,26,353,27,353,29,358,29,358,31,356,29,353,30,354,31,350,33,346,33,346,32,350,32,352,30,350,26,351,24,346,24,343,27,345,28,345,30,340,29,342,31,333,35,332,39,329,40,322,40,325,43,326,46,324,47,325,49,322,50,321,53,324,53,327,55,329,54,333,55,335,54,333,53",
|
|
204
|
+
abbr: "YEKT"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
timezone: "Africa/Djibouti",
|
|
208
|
+
country: "DJ",
|
|
209
|
+
points: "311,108,311,110,309,110,309,108",
|
|
210
|
+
abbr: "EAT"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
timezone: "Africa/Douala",
|
|
214
|
+
country: "CM",
|
|
215
|
+
points: "270,117,272,114,269,112,272,111,271,110,271,107,270,109,266,115,265,115,262,117,262,119,264,122,270,122,272,123,272,121,270,119,270,117",
|
|
216
|
+
abbr: "WAT"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
timezone: "Africa/Freetown",
|
|
220
|
+
country: "SL",
|
|
221
|
+
points: "235,115,236,114,235,112,233,111,232,114,235,115",
|
|
222
|
+
abbr: "GMT"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
timezone: "Africa/Gaborone",
|
|
226
|
+
country: "BW",
|
|
227
|
+
points: "287,158,291,156,289,155,289,153,286,152,285,150,283,151,282,150,279,150,279,156,278,156,278,159,279,161,281,162,282,160,285,161,287,158",
|
|
228
|
+
abbr: "CAT"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
timezone: "Africa/Harare",
|
|
232
|
+
country: "ZW",
|
|
233
|
+
points: "293,156,295,155,296,153,295,151,296,148,291,147,288,150,285,150,286,152,289,153,289,155,293,156",
|
|
234
|
+
abbr: "CAT"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
timezone: "Africa/El_Aaiun",
|
|
238
|
+
country: "EH",
|
|
239
|
+
points: "233,89,238,89,238,87,232,87,226,95,227,95,232,95,233,92,233,89",
|
|
240
|
+
abbr: "WET"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
timezone: "Africa/Johannesburg",
|
|
244
|
+
country: "ZA",
|
|
245
|
+
points: "283,172,286,172,289,171,295,165,296,162,294,161,293,156,290,156,285,161,282,160,279,162,278,159,278,164,273,165,275,169,276,173,278,173,283,172",
|
|
246
|
+
abbr: "SAST"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
timezone: "Africa/Juba",
|
|
250
|
+
country: "SS",
|
|
251
|
+
points: "299,117,296,114,297,111,295,110,290,112,287,112,286,111,284,113,287,116,289,119,293,120,297,120,300,119,299,117",
|
|
252
|
+
abbr: "EAT"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
timezone: "Africa/Kampala",
|
|
256
|
+
country: "UG",
|
|
257
|
+
points: "293,126,297,126,299,122,297,120,293,120,293,122,291,127,293,126",
|
|
258
|
+
abbr: "EAT"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
timezone: "Africa/Khartoum",
|
|
262
|
+
country: "SD",
|
|
263
|
+
points: "300,107,301,106,301,101,304,100,302,99,302,96,301,94,299,93,297,95,294,94,285,94,285,97,283,97,283,103,282,103,280,107,281,107,283,113,285,111,287,112,290,112,295,110,296,108,297,112,299,110,300,107",
|
|
264
|
+
abbr: "EAT"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
timezone: "Africa/Kinshasa",
|
|
268
|
+
country: "CD",
|
|
269
|
+
points: "271,131,270,132,268,131,267,133,273,133,274,136,277,136,278,135,278,131,279,131,279,128,284,127,282,126,283,125,281,123,283,122,281,120,283,120,277,118,276,119,275,126,271,131",
|
|
270
|
+
abbr: "WAT"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
timezone: "Africa/Lagos",
|
|
274
|
+
country: "NG",
|
|
275
|
+
points: "261,119,264,115,266,115,270,109,269,106,267,107,265,106,263,107,261,106,260,107,256,106,254,112,254,116,256,116,258,119,261,119",
|
|
276
|
+
abbr: "WAT"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
timezone: "Africa/Libreville",
|
|
280
|
+
country: "GA",
|
|
281
|
+
points: "269,125,270,123,266,122,266,124,263,124,263,125,263,128,266,131,267,130,266,128,270,128,269,125",
|
|
282
|
+
abbr: "WAT"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
timezone: "Africa/Lome",
|
|
286
|
+
country: "TG",
|
|
287
|
+
points: "252,116,253,116,252,111,250,110,251,113,251,116,252,116",
|
|
288
|
+
abbr: "GMT"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
timezone: "Africa/Kigali",
|
|
292
|
+
country: "RW",
|
|
293
|
+
points: "292,128,292,126,290,129,292,128",
|
|
294
|
+
abbr: "CAT"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
timezone: "Africa/Luanda",
|
|
298
|
+
country: "AO",
|
|
299
|
+
points: "281,140,280,138,280,135,277,135,277,136,274,136,273,133,267,133,269,137,268,138,269,142,267,144,266,149,276,149,279,150,283,149,281,148,281,143,283,143,283,140,281,140",
|
|
300
|
+
abbr: "WAT"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
timezone: "Africa/Lubumbashi",
|
|
304
|
+
country: "CD",
|
|
305
|
+
points: "291,132,290,128,291,127,293,120,288,118,282,118,281,120,283,122,281,122,283,125,282,126,284,127,279,128,279,131,278,131,277,134,280,135,281,141,283,140,286,142,288,141,290,144,291,142,289,141,290,139,289,138,293,136,291,134,291,132",
|
|
306
|
+
abbr: "CAT"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
timezone: "Africa/Lusaka",
|
|
310
|
+
country: "ZM",
|
|
311
|
+
points: "290,147,292,146,296,144,297,142,296,138,293,136,290,137,290,139,289,141,290,144,288,141,287,142,283,140,283,143,281,143,281,148,287,150,290,148,290,147",
|
|
312
|
+
abbr: "CAT"
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
timezone: "Africa/Malabo",
|
|
316
|
+
country: "GQ",
|
|
317
|
+
points: "266,123,266,122,263,123,266,124,266,123",
|
|
318
|
+
abbr: "WAT"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
timezone: "Africa/Maputo",
|
|
322
|
+
country: "MZ",
|
|
323
|
+
points: "296,160,299,158,298,152,305,148,306,146,306,140,302,141,298,141,298,144,300,146,299,149,296,144,292,146,292,147,296,148,295,151,296,153,295,155,293,156,295,162,296,160",
|
|
324
|
+
abbr: "CAT"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
timezone: "Africa/Mbabane",
|
|
328
|
+
country: "SZ",
|
|
329
|
+
points: "294,161,294,163,292,163,292,161",
|
|
330
|
+
abbr: "SAST"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
timezone: "Africa/Mogadishu",
|
|
334
|
+
country: "SO",
|
|
335
|
+
points: "310,125,317,119,321,112,321,109,312,111,310,109,309,110,311,113,317,114,312,118,308,119,307,121,307,126,308,127,310,125",
|
|
336
|
+
abbr: "EAT"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
timezone: "Africa/Monrovia",
|
|
340
|
+
country: "LR",
|
|
341
|
+
points: "239,118,240,117,238,116,239,115,236,113,234,116,238,119,239,118",
|
|
342
|
+
abbr: "GMT"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
timezone: "Africa/Nairobi",
|
|
346
|
+
country: "KE",
|
|
347
|
+
points: "308,127,307,126,307,121,308,119,305,120,300,119,297,119,299,122,297,126,302,129,304,131,308,127",
|
|
348
|
+
abbr: "EAT"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
timezone: "Africa/Maseru",
|
|
352
|
+
country: "LS",
|
|
353
|
+
points: "289,165,289,167,287,167,287,165",
|
|
354
|
+
abbr: "SAST"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
timezone: "Africa/Ndjamena",
|
|
358
|
+
country: "TD",
|
|
359
|
+
points: "278,112,280,110,282,110,281,107,280,107,282,103,283,103,283,98,272,92,271,93,272,97,272,102,269,105,271,107,271,110,272,111,269,112,272,115,276,114,278,112",
|
|
360
|
+
abbr: "WAT"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
timezone: "Africa/Niamey",
|
|
364
|
+
country: "NE",
|
|
365
|
+
points: "256,106,260,107,261,106,263,107,265,106,267,107,269,105,272,102,272,97,270,94,267,92,258,98,256,98,256,101,255,104,250,104,251,106,253,107,255,109,256,106",
|
|
366
|
+
abbr: "WAT"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
timezone: "Africa/Nouakchott",
|
|
370
|
+
country: "MR",
|
|
371
|
+
points: "234,103,235,104,237,103,242,103,241,90,243,90,238,87,238,89,233,89,233,92,232,95,226,96,227,95,228,97,227,98,228,100,227,102,230,102,233,105,234,103",
|
|
372
|
+
abbr: "GMT"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
timezone: "Africa/Ouagadougou",
|
|
376
|
+
country: "BF",
|
|
377
|
+
points: "249,110,252,110,253,109,252,106,250,104,247,105,244,108,242,109,243,112,246,111,246,110,249,110",
|
|
378
|
+
abbr: "GMT"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
timezone: "Africa/Porto-Novo",
|
|
382
|
+
country: "BJ",
|
|
383
|
+
points: "254,114,255,110,254,108,251,111,252,112,252,116,254,116,254,114",
|
|
384
|
+
abbr: "WAT"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
timezone: "Africa/Tunis",
|
|
388
|
+
country: "TN",
|
|
389
|
+
points: "266,80,264,78,266,76,264,73,261,74,262,76,260,78,263,80,263,83,266,80",
|
|
390
|
+
abbr: "CET"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
timezone: "Africa/Sao_Tome",
|
|
394
|
+
country: "ST",
|
|
395
|
+
points: "260,124,260,126,258,126,258,124",
|
|
396
|
+
abbr: "GMT"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
timezone: "Africa/Tripoli",
|
|
400
|
+
country: "LY",
|
|
401
|
+
points: "285,88,284,83,285,81,281,79,278,80,278,82,276,83,271,80,266,79,264,81,263,83,264,86,263,89,264,91,270,94,272,92,283,98,285,97,285,88",
|
|
402
|
+
abbr: "EET"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
timezone: "Africa/Windhoek",
|
|
406
|
+
country: "NA",
|
|
407
|
+
points: "278,163,278,156,279,156,279,150,282,150,283,151,285,150,284,149,279,150,276,149,266,149,270,156,271,162,272,164,274,165,277,165,278,163",
|
|
408
|
+
abbr: "WAST"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
timezone: "America/Adak",
|
|
412
|
+
country: "US",
|
|
413
|
+
points: "6,52,6,54,4,54,4,52",
|
|
414
|
+
abbr: "HST"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
timezone: "America/Argentina/Salta",
|
|
418
|
+
country: "AR",
|
|
419
|
+
points: "162,180,162,174,160,175,155,175,155,177,153,177,152,175,151,176,152,179,150,180,150,183,160,183,160,182,163,182,162,180",
|
|
420
|
+
abbr: "ART"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
timezone: "America/Argentina/Salta",
|
|
424
|
+
country: "AR",
|
|
425
|
+
points: "159,156,160,158,159,159,158,157,157,158,155,160,158,160,158,162,162,161,163,159,163,156,159,156",
|
|
426
|
+
abbr: "ART"
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
timezone: "America/Anchorage",
|
|
430
|
+
country: "US",
|
|
431
|
+
points: "42,42,47,40,46,41,50,42,54,41,54,28,51,28,39,27,34,26,25,27,25,32,25,35,27,35,25,37,25,44,27,43,29,44,32,43,31,45,27,47,27,48,30,47,36,44,36,43,40,40,43,41,40,41,39,42,42,42",
|
|
432
|
+
abbr: "AKST"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
timezone: "America/Anguilla",
|
|
436
|
+
country: "AI",
|
|
437
|
+
points: "163,99,163,101,161,101,161,99",
|
|
438
|
+
abbr: "AST"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
timezone: "America/Antigua",
|
|
442
|
+
country: "AG",
|
|
443
|
+
points: "165,100,165,102,163,102,163,100",
|
|
444
|
+
abbr: "AST"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
timezone: "America/Araguaina",
|
|
448
|
+
country: "BR",
|
|
449
|
+
points: "185,136,183,132,182,137,180,140,180,143,182,143,186,143,186,139,185,136",
|
|
450
|
+
abbr: "BRT"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
timezone: "America/Buenos_Aires",
|
|
454
|
+
country: "AR",
|
|
455
|
+
points: "167,171,162,173,162,182,164,181,163,179,169,178,171,176,171,174,167,171",
|
|
456
|
+
abbr: "ART"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
timezone: "America/Catamarca",
|
|
460
|
+
country: "AR",
|
|
461
|
+
points: "159,188,159,186,161,185,160,183,150,184,151,186,150,187,151,189,156,189,159,188",
|
|
462
|
+
abbr: "ART"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
timezone: "America/Catamarca",
|
|
466
|
+
country: "AR",
|
|
467
|
+
points: "160,167,159,162,157,161,158,160,155,160,154,164,158,164,160,167",
|
|
468
|
+
abbr: "ART"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
timezone: "America/Cordoba",
|
|
472
|
+
country: "AR",
|
|
473
|
+
points: "163,173,166,171,169,172,170,167,173,164,175,163,175,161,173,163,169,163,170,160,165,158,163,156,163,159,161,161,159,164,160,166,159,168,160,170,160,174,163,173",
|
|
474
|
+
abbr: "ART"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
timezone: "America/Jujuy",
|
|
478
|
+
country: "AR",
|
|
479
|
+
points: "157,157,159,159,160,158,158,155,157,157",
|
|
480
|
+
abbr: "ART"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
timezone: "America/Argentina/La_Rioja",
|
|
484
|
+
country: "AR",
|
|
485
|
+
points: "156,167,157,169,159,169,160,167,158,164,153,164,156,167",
|
|
486
|
+
abbr: "ART"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
timezone: "America/Mendoza",
|
|
490
|
+
country: "AR",
|
|
491
|
+
points: "152,170,153,171,152,174,153,177,155,177,155,175,157,175,157,171,156,170,152,170",
|
|
492
|
+
abbr: "ART"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
timezone: "America/Argentina/Rio_Gallegos",
|
|
496
|
+
country: "AR",
|
|
497
|
+
points: "151,189,150,192,148,193,148,195,150,195,149,197,155,198,154,195,159,191,156,189,151,189",
|
|
498
|
+
abbr: "ART"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
timezone: "America/Argentina/San_Juan",
|
|
502
|
+
country: "AR",
|
|
503
|
+
points: "153,167,152,170,154,169,156,170,156,167,154,166,153,167",
|
|
504
|
+
abbr: "ART"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
timezone: "America/Argentina/San_Luis",
|
|
508
|
+
country: "AR",
|
|
509
|
+
points: "159,169,156,169,157,175,160,175,160,170,159,169",
|
|
510
|
+
abbr: "ART"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
timezone: "America/Argentina/Tucuman",
|
|
514
|
+
country: "AR",
|
|
515
|
+
points: "158,161,158,163,160,164,160,161,158,161",
|
|
516
|
+
abbr: "ART"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
timezone: "America/Aruba",
|
|
520
|
+
country: "AW",
|
|
521
|
+
points: "154,107,154,109,152,109,152,107",
|
|
522
|
+
abbr: "AST"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
timezone: "America/Argentina/Ushuaia",
|
|
526
|
+
country: "AR",
|
|
527
|
+
points: "156,200,156,202,154,202,154,200",
|
|
528
|
+
abbr: "ART"
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
timezone: "America/Asuncion",
|
|
532
|
+
country: "PY",
|
|
533
|
+
points: "174,161,175,158,173,158,172,156,169,156,169,152,164,152,163,156,165,158,170,160,169,163,173,163,174,161",
|
|
534
|
+
abbr: "PYST"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
timezone: "America/Bahia_Banderas",
|
|
538
|
+
country: "MX",
|
|
539
|
+
points: "105,95,105,97,103,97,103,95",
|
|
540
|
+
abbr: "CST"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
timezone: "America/Toronto",
|
|
544
|
+
country: "CA",
|
|
545
|
+
points: "124,56,124,58,122,58,122,56",
|
|
546
|
+
abbr: "EST"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
timezone: "America/Bahia",
|
|
550
|
+
country: "BR",
|
|
551
|
+
points: "187,146,189,145,192,146,194,149,195,150,196,147,196,143,198,141,198,139,197,137,193,137,189,138,189,140,187,139,186,141,186,146,187,146",
|
|
552
|
+
abbr: "BRT"
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
timezone: "America/Barbados",
|
|
556
|
+
country: "BB",
|
|
557
|
+
points: "168,106,168,108,166,108,166,106",
|
|
558
|
+
abbr: "AST"
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
timezone: "America/Belem",
|
|
562
|
+
country: "BR",
|
|
563
|
+
points: "179,126,181,123,178,119,177,122,174,122,176,123,178,129,177,130,178,134,177,136,178,138,180,139,182,137,183,133,182,132,185,130,186,127,183,126,182,127,183,125,180,125,179,126",
|
|
564
|
+
abbr: "BRT"
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
timezone: "America/Belize",
|
|
568
|
+
country: "BZ",
|
|
569
|
+
points: "129,100,129,102,127,102,127,100",
|
|
570
|
+
abbr: "CST"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
timezone: "America/Blanc-Sablon",
|
|
574
|
+
country: "CA",
|
|
575
|
+
points: "172,53,172,55,170,55,170,53",
|
|
576
|
+
abbr: "AST"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
timezone: "America/Boa_Vista",
|
|
580
|
+
country: "BR",
|
|
581
|
+
points: "167,118,163,120,160,119,161,122,163,122,163,126,164,127,168,125,167,122,167,118",
|
|
582
|
+
abbr: "AMT"
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
timezone: "America/Bogota",
|
|
586
|
+
country: "CO",
|
|
587
|
+
points: "154,126,153,123,156,122,157,123,157,120,156,117,154,117,153,115,149,115,148,112,151,108,145,110,145,112,143,113,142,115,143,117,142,119,143,120,140,123,146,125,149,128,152,128,153,131,154,126",
|
|
588
|
+
abbr: "COT"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
timezone: "America/Boise",
|
|
592
|
+
country: "US",
|
|
593
|
+
points: "96,66,96,63,93,63,92,62,89,62,88,61,86,64,87,67,96,67,96,66",
|
|
594
|
+
abbr: "MST"
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
timezone: "America/Cambridge_Bay",
|
|
598
|
+
country: "CA",
|
|
599
|
+
points: "99,18,97,19,97,21,103,21,104,20,101,19,99,18",
|
|
600
|
+
abbr: "MST"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
timezone: "America/Cambridge_Bay",
|
|
604
|
+
country: "CA",
|
|
605
|
+
points: "108,36,108,32,126,32,126,29,124,29,121,28,121,27,120,25,116,26,116,28,120,28,120,30,116,30,113,31,109,31,106,30,105,31,103,29,100,30,103,30,100,31,101,32,97,31,90,31,92,30,89,29,81,28,81,30,92,34,95,34,97,35,108,36",
|
|
606
|
+
abbr: "MST"
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
timezone: "America/Cambridge_Bay",
|
|
610
|
+
country: "CA",
|
|
611
|
+
points: "115,24,110,23,111,24,107,24,113,26,115,24",
|
|
612
|
+
abbr: "MST"
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
timezone: "America/Cambridge_Bay",
|
|
616
|
+
country: "CA",
|
|
617
|
+
points: "100,23,101,25,100,26,99,24,97,24,97,28,87,28,88,29,93,29,93,30,99,30,102,28,104,29,107,29,107,28,110,28,110,27,105,26,103,24,100,23",
|
|
618
|
+
abbr: "MST"
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
timezone: "America/Campo_Grande",
|
|
622
|
+
country: "BR",
|
|
623
|
+
points: "176,150,173,150,172,149,170,150,169,156,172,156,173,158,175,158,179,153,179,152,176,150",
|
|
624
|
+
abbr: "AMST"
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
timezone: "America/Cancun",
|
|
628
|
+
country: "MX",
|
|
629
|
+
points: "128,95,126,98,127,100,130,96,128,95",
|
|
630
|
+
abbr: "EST"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
timezone: "America/Caracas",
|
|
634
|
+
country: "VE",
|
|
635
|
+
points: "163,111,161,110,160,111,158,110,155,110,155,109,151,110,151,112,149,110,149,112,150,115,153,115,154,117,156,116,156,121,158,124,161,122,160,119,163,120,163,119,166,118,165,117,167,113,165,113,163,111",
|
|
636
|
+
abbr: "VET"
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
timezone: "America/Cayenne",
|
|
640
|
+
country: "GF",
|
|
641
|
+
points: "176,117,174,118,175,122,177,122,178,119,176,117",
|
|
642
|
+
abbr: "GFT"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
timezone: "America/Cayman",
|
|
646
|
+
country: "KY",
|
|
647
|
+
points: "138,97,138,99,136,99,136,97",
|
|
648
|
+
abbr: "EST"
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
timezone: "America/Chicago",
|
|
652
|
+
country: "US",
|
|
653
|
+
points: "128,72,128,68,130,67,128,66,129,63,128,61,122,60,126,58,118,57,105,57,106,59,110,59,111,61,109,64,110,67,109,67,109,70,109,73,107,74,107,81,104,81,105,84,107,85,109,84,112,87,112,88,115,89,116,85,120,83,125,85,126,83,129,83,132,84,132,80,131,76,132,74,128,72",
|
|
654
|
+
abbr: "CST"
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
timezone: "America/Chihuahua",
|
|
658
|
+
country: "MX",
|
|
659
|
+
points: "106,85,102,81,99,82,99,86,98,86,101,89,103,88,106,88,106,85",
|
|
660
|
+
abbr: "MST"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
timezone: "America/Edmonton",
|
|
664
|
+
country: "",
|
|
665
|
+
points: "131,33,130,34,131,37,135,36,137,37,139,36,136,36,136,35,131,33",
|
|
666
|
+
abbr: "EST"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
timezone: "America/Costa_Rica",
|
|
670
|
+
country: "CR",
|
|
671
|
+
points: "132,112,135,114,134,110,131,109,132,112",
|
|
672
|
+
abbr: "CST"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
timezone: "America/Creston",
|
|
676
|
+
country: "CA",
|
|
677
|
+
points: "89,56,89,58,87,58,87,56",
|
|
678
|
+
abbr: "MST"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
timezone: "America/Cuiaba",
|
|
682
|
+
country: "BR",
|
|
683
|
+
points: "179,146,180,143,180,139,171,138,169,137,164,137,165,140,167,141,166,144,166,148,169,148,170,150,172,149,173,150,176,148,179,146",
|
|
684
|
+
abbr: "AMST"
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
timezone: "America/Curacao",
|
|
688
|
+
country: "CW",
|
|
689
|
+
points: "155,107,155,109,153,109,153,107",
|
|
690
|
+
abbr: "AST"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
timezone: "America/Danmarkshavn",
|
|
694
|
+
country: "GL",
|
|
695
|
+
points: "223,15,219,14,218,20,223,20,220,19,223,19,218,18,225,18,221,17,223,15",
|
|
696
|
+
abbr: "GMT"
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
timezone: "America/Dawson",
|
|
700
|
+
country: "CA",
|
|
701
|
+
points: "57,35,57,37,55,37,55,35",
|
|
702
|
+
abbr: "PST"
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
timezone: "America/Dawson_Creek",
|
|
706
|
+
country: "CA",
|
|
707
|
+
points: "83,45,78,46,79,48,83,50,83,45",
|
|
708
|
+
abbr: "MST"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
timezone: "America/Denver",
|
|
712
|
+
country: "US",
|
|
713
|
+
points: "93,63,96,63,96,67,92,67,92,74,95,74,96,76,99,76,99,81,104,81,107,81,107,74,109,73,109,70,108,70,110,67,109,64,111,62,109,61,106,59,105,57,89,57,89,59,91,60,91,62,93,63",
|
|
714
|
+
abbr: "MST"
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
timezone: "America/Detroit",
|
|
718
|
+
country: "US",
|
|
719
|
+
points: "132,67,134,67,136,65,135,64,133,65,134,63,132,61,132,63,130,63,129,67,132,67",
|
|
720
|
+
abbr: "EST"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
timezone: "America/Detroit",
|
|
724
|
+
country: "US",
|
|
725
|
+
points: "125,60,129,62,131,61,134,61,132,60,130,61,125,60",
|
|
726
|
+
abbr: "EST"
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
timezone: "America/Dominica",
|
|
730
|
+
country: "DM",
|
|
731
|
+
points: "166,103,166,105,164,105,164,103",
|
|
732
|
+
abbr: "AST"
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
timezone: "America/Edmonton",
|
|
736
|
+
country: "CA",
|
|
737
|
+
points: "92,57,97,57,97,51,97,42,83,42,83,51,86,52,85,53,88,55,88,56,92,57",
|
|
738
|
+
abbr: "MST"
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
timezone: "America/Eirunepe",
|
|
742
|
+
country: "BR",
|
|
743
|
+
points: "156,138,153,131,150,131,148,135,156,138",
|
|
744
|
+
abbr: "ACT"
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
timezone: "America/El_Salvador",
|
|
748
|
+
country: "SV",
|
|
749
|
+
points: "127,105,127,107,125,107,125,105",
|
|
750
|
+
abbr: "CST"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
timezone: "America/Fortaleza",
|
|
754
|
+
country: "BR",
|
|
755
|
+
points: "201,134,201,132,198,132,194,129,191,129,188,128,186,126,185,130,182,132,184,133,185,138,189,140,189,138,192,138,194,135,197,136,198,135,199,137,201,134",
|
|
756
|
+
abbr: "BRT"
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
timezone: "America/Glace_Bay",
|
|
760
|
+
country: "CA",
|
|
761
|
+
points: "168,60,168,62,166,62,166,60",
|
|
762
|
+
abbr: "AST"
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
timezone: "America/Nuuk",
|
|
766
|
+
country: "GL",
|
|
767
|
+
points: "188,42,189,41,191,40,190,38,191,37,194,37,193,35,198,33,202,33,205,30,213,30,219,28,213,27,209,27,210,26,212,25,216,26,215,24,212,24,212,23,216,23,214,22,219,23,222,22,219,22,224,22,219,21,223,21,223,20,218,20,219,14,222,14,229,13,234,12,228,11,217,13,221,11,213,12,216,11,204,11,220,10,214,10,214,9,196,9,199,10,186,10,191,11,188,11,180,10,181,12,176,11,166,11,166,12,162,12,156,13,162,14,158,15,161,19,169,20,172,21,170,22,172,23,174,24,173,26,176,26,179,26,179,27,174,27,180,28,179,30,180,31,176,30,175,31,180,32,175,32,176,33,177,34,177,35,180,35,178,36,180,38,182,39,183,41,187,40,186,41,188,42",
|
|
768
|
+
abbr: "WGT"
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
timezone: "America/Goose_Bay",
|
|
772
|
+
country: "CA",
|
|
773
|
+
points: "171,53,170,51,171,50,166,51,170,49,166,49,164,47,165,46,161,43,160,41,160,44,162,45,161,49,157,48,156,50,158,51,158,53,161,53,171,53",
|
|
774
|
+
abbr: "AST"
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
timezone: "America/Grand_Turk",
|
|
778
|
+
country: "TC",
|
|
779
|
+
points: "152,94,152,96,150,96,150,94",
|
|
780
|
+
abbr: "AST"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
timezone: "America/Grenada",
|
|
784
|
+
country: "GD",
|
|
785
|
+
points: "165,107,165,109,163,109,163,107",
|
|
786
|
+
abbr: "AST"
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
timezone: "America/Guadeloupe",
|
|
790
|
+
country: "GP",
|
|
791
|
+
points: "166,101,166,103,164,103,164,101",
|
|
792
|
+
abbr: "AST"
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
timezone: "America/Guatemala",
|
|
796
|
+
country: "GT",
|
|
797
|
+
points: "125,106,127,103,126,103,126,100,124,100,124,103,122,104,125,106",
|
|
798
|
+
abbr: "CST"
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
timezone: "America/Guayaquil",
|
|
802
|
+
country: "EC",
|
|
803
|
+
points: "141,130,146,126,141,123,139,124,137,128,139,129,138,131,140,132,141,130",
|
|
804
|
+
abbr: "ECT"
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
timezone: "America/Guyana",
|
|
808
|
+
country: "GY",
|
|
809
|
+
points: "170,116,167,113,165,116,167,118,166,119,168,123,172,122,169,119,170,116",
|
|
810
|
+
abbr: "GYT"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
timezone: "America/Halifax",
|
|
814
|
+
country: "CA",
|
|
815
|
+
points: "161,63,160,62,158,63,159,65,163,62,161,61,161,63",
|
|
816
|
+
abbr: "AST"
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
timezone: "America/Havana",
|
|
820
|
+
country: "CU",
|
|
821
|
+
points: "146,96,138,93,134,93,132,95,136,93,137,94,141,95,142,97,147,97,146,96",
|
|
822
|
+
abbr: "CST"
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
timezone: "America/Hermosillo",
|
|
826
|
+
country: "MX",
|
|
827
|
+
points: "90,81,93,82,94,85,97,86,96,87,98,88,99,86,99,81,96,81,91,80,90,81",
|
|
828
|
+
abbr: "MST"
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
timezone: "America/Indiana/Petersburg",
|
|
832
|
+
country: "US",
|
|
833
|
+
points: "130,71,130,73,128,73,128,71",
|
|
834
|
+
abbr: "EST"
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
timezone: "America/Indiana/Tell_City",
|
|
838
|
+
country: "US",
|
|
839
|
+
points: "130,71,130,73,128,73,128,71",
|
|
840
|
+
abbr: "CST"
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
timezone: "America/Indiana/Vevay",
|
|
844
|
+
country: "US",
|
|
845
|
+
points: "133,70,133,72,131,72,131,70",
|
|
846
|
+
abbr: "EST"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
timezone: "America/Indianapolis",
|
|
850
|
+
country: "US",
|
|
851
|
+
points: "132,71,132,67,128,68,128,71,132,71",
|
|
852
|
+
abbr: "EST"
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
timezone: "America/Indiana/Knox",
|
|
856
|
+
country: "US",
|
|
857
|
+
points: "131,67,131,69,129,69,129,67",
|
|
858
|
+
abbr: "CST"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
timezone: "America/Indiana/Marengo",
|
|
862
|
+
country: "US",
|
|
863
|
+
points: "131,71,131,73,129,73,129,71",
|
|
864
|
+
abbr: "EST"
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
timezone: "America/Indiana/Vincennes",
|
|
868
|
+
country: "US",
|
|
869
|
+
points: "129,70,129,72,127,72,127,70",
|
|
870
|
+
abbr: "EST"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
timezone: "America/Indiana/Winamac",
|
|
874
|
+
country: "US",
|
|
875
|
+
points: "131,67,131,69,129,69,129,67",
|
|
876
|
+
abbr: "EST"
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
timezone: "America/Inuvik",
|
|
880
|
+
country: "CA",
|
|
881
|
+
points: "65,29,65,31,63,31,63,29",
|
|
882
|
+
abbr: "MST"
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
timezone: "America/Iqaluit",
|
|
886
|
+
country: "CA",
|
|
887
|
+
points: "139,20,132,20,132,21,140,21,139,20",
|
|
888
|
+
abbr: "EST"
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
timezone: "America/Iqaluit",
|
|
892
|
+
country: "CA",
|
|
893
|
+
points: "139,10,137,10,135,11,140,11,132,10,132,12,132,13,139,13,140,12,143,12,140,13,134,13,139,14,132,14,132,15,137,15,134,16,132,15,132,17,134,17,132,19,138,19,141,19,141,18,142,17,145,17,146,16,142,15,148,15,146,14,153,14,152,13,156,13,156,12,156,10,145,10,139,10",
|
|
894
|
+
abbr: "EST"
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
timezone: "America/Iqaluit",
|
|
898
|
+
country: "CA",
|
|
899
|
+
points: "132,30,132,32,134,33,137,31,135,30,136,29,132,28,132,30",
|
|
900
|
+
abbr: "EST"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
timezone: "America/Iqaluit",
|
|
904
|
+
country: "CA",
|
|
905
|
+
points: "144,24,142,23,138,23,140,24,144,24",
|
|
906
|
+
abbr: "EST"
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
timezone: "America/Iqaluit",
|
|
910
|
+
country: "CA",
|
|
911
|
+
points: "133,23,133,25,132,28,138,28,142,28,145,29,148,30,150,32,147,33,148,34,142,34,142,36,149,36,156,39,156,37,156,33,156,30,153,28,156,27,152,28,155,27,152,27,151,28,151,26,147,25,144,25,146,24,139,24,138,25,137,23,133,23",
|
|
912
|
+
abbr: "EST"
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
timezone: "America/La_Paz",
|
|
916
|
+
country: "BO",
|
|
917
|
+
points: "164,154,164,152,168,152,170,153,170,150,169,148,166,148,166,144,160,142,159,138,153,140,155,142,154,147,153,149,155,152,156,157,158,155,161,157,163,156,164,154",
|
|
918
|
+
abbr: "BOT"
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
timezone: "America/Jamaica",
|
|
922
|
+
country: "JM",
|
|
923
|
+
points: "144,99,144,101,142,101,142,99",
|
|
924
|
+
abbr: "EST"
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
timezone: "America/Juneau",
|
|
928
|
+
country: "US",
|
|
929
|
+
points: "59,43,60,44,63,44,66,45,62,42,59,43",
|
|
930
|
+
abbr: "AKST"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
timezone: "America/Louisville",
|
|
934
|
+
country: "US",
|
|
935
|
+
points: "132,71,132,73,130,73,130,71",
|
|
936
|
+
abbr: "EST"
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
timezone: "America/Kentucky/Monticello",
|
|
940
|
+
country: "US",
|
|
941
|
+
points: "133,73,133,75,131,75,131,73",
|
|
942
|
+
abbr: "EST"
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
timezone: "America/Kralendijk",
|
|
946
|
+
country: "BQ",
|
|
947
|
+
points: "156,107,156,109,154,109,154,107",
|
|
948
|
+
abbr: "AST"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
timezone: "America/Lima",
|
|
952
|
+
country: "PE",
|
|
953
|
+
points: "153,149,154,148,155,142,152,138,150,139,149,137,147,135,149,132,152,131,153,129,149,128,146,125,146,126,141,130,140,132,137,131,139,135,144,144,144,145,151,149,153,149",
|
|
954
|
+
abbr: "PET"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
timezone: "America/Managua",
|
|
958
|
+
country: "NI",
|
|
959
|
+
points: "132,110,134,110,135,104,132,104,131,106,128,107,131,110,132,110",
|
|
960
|
+
abbr: "CST"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
timezone: "America/Manaus",
|
|
964
|
+
country: "BR",
|
|
965
|
+
points: "167,125,166,126,163,126,162,122,159,124,156,122,153,123,153,124,154,127,153,131,156,138,157,139,160,138,162,136,164,137,169,137,169,134,172,128,169,127,167,125",
|
|
966
|
+
abbr: "AMT"
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
timezone: "America/Los_Angeles",
|
|
970
|
+
country: "US",
|
|
971
|
+
points: "91,62,91,60,89,59,89,57,80,57,80,58,77,58,78,60,77,66,78,67,77,69,78,71,80,72,82,77,85,78,87,80,91,79,92,75,92,67,87,67,86,64,88,62,91,62",
|
|
972
|
+
abbr: "PST"
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
timezone: "America/Lower_Princes",
|
|
976
|
+
country: "SX",
|
|
977
|
+
points: "163,99,163,101,161,101,161,99",
|
|
978
|
+
abbr: "AST"
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
timezone: "America/Maceio",
|
|
982
|
+
country: "BR",
|
|
983
|
+
points: "199,140,201,137,197,138,199,140",
|
|
984
|
+
abbr: "BRT"
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
timezone: "America/Marigot",
|
|
988
|
+
country: "MF",
|
|
989
|
+
points: "163,99,163,101,161,101,161,99",
|
|
990
|
+
abbr: "AST"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
timezone: "America/Martinique",
|
|
994
|
+
country: "MQ",
|
|
995
|
+
points: "166,104,166,106,164,106,164,104",
|
|
996
|
+
abbr: "AST"
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
timezone: "America/Matamoros",
|
|
1000
|
+
country: "MX",
|
|
1001
|
+
points: "113,89,115,89,112,88,112,87,109,84,112,89,113,89",
|
|
1002
|
+
abbr: "CST"
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
timezone: "America/Mazatlan",
|
|
1006
|
+
country: "MX",
|
|
1007
|
+
points: "104,93,101,90,100,88,98,88,100,90,103,94,106,95,104,93",
|
|
1008
|
+
abbr: "MST"
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
timezone: "America/Mazatlan",
|
|
1012
|
+
country: "MX",
|
|
1013
|
+
points: "91,86,93,88,94,91,98,93,93,86,91,86",
|
|
1014
|
+
abbr: "MST"
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
timezone: "America/Menominee",
|
|
1018
|
+
country: "US",
|
|
1019
|
+
points: "129,61,129,63,127,63,127,61",
|
|
1020
|
+
abbr: "CST"
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
timezone: "America/Mexico_City",
|
|
1024
|
+
country: "MX",
|
|
1025
|
+
points: "119,103,119,102,122,105,124,102,122,99,119,100,117,99,114,94,111,93,110,91,108,91,106,92,105,94,106,95,104,98,114,103,118,102,119,103",
|
|
1026
|
+
abbr: "CST"
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
timezone: "America/Merida",
|
|
1030
|
+
country: "MX",
|
|
1031
|
+
points: "124,96,122,100,126,100,126,98,128,95,125,95,124,96",
|
|
1032
|
+
abbr: "CST"
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
timezone: "America/Metlakatla",
|
|
1036
|
+
country: "US",
|
|
1037
|
+
points: "68,47,68,49,66,49,66,47",
|
|
1038
|
+
abbr: "PST"
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
timezone: "America/Miquelon",
|
|
1042
|
+
country: "PM",
|
|
1043
|
+
points: "173,59,173,61,171,61,171,59",
|
|
1044
|
+
abbr: "PMST"
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
timezone: "America/Moncton",
|
|
1048
|
+
country: "CA",
|
|
1049
|
+
points: "157,58,154,59,156,60,156,62,161,61,160,59,157,58",
|
|
1050
|
+
abbr: "AST"
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
timezone: "America/Monterrey",
|
|
1054
|
+
country: "MX",
|
|
1055
|
+
points: "107,90,110,91,111,93,114,94,114,90,115,89,112,89,109,84,106,85,106,88,103,88,101,90,104,94,106,92,108,91,107,90",
|
|
1056
|
+
abbr: "CST"
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
timezone: "America/Montevideo",
|
|
1060
|
+
country: "UY",
|
|
1061
|
+
points: "172,173,175,173,176,170,173,168,170,167,169,172,172,173",
|
|
1062
|
+
abbr: "UYT"
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
timezone: "America/Toronto",
|
|
1066
|
+
country: "",
|
|
1067
|
+
points: "146,63,151,63,155,58,159,58,160,57,157,57,149,61,152,60,155,57,158,55,167,55,171,53,161,53,161,52,158,53,158,51,156,52,156,50,159,49,161,48,162,45,160,43,156,45,154,45,154,43,153,42,153,40,151,39,148,38,146,39,142,38,142,40,143,42,141,44,143,44,144,47,139,49,140,50,140,53,139,59,141,61,144,62,147,62,146,63",
|
|
1068
|
+
abbr: "EST"
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
timezone: "America/Montserrat",
|
|
1072
|
+
country: "MS",
|
|
1073
|
+
points: "165,101,165,103,163,103,163,101",
|
|
1074
|
+
abbr: "AST"
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
timezone: "America/Nassau",
|
|
1078
|
+
country: "BS",
|
|
1079
|
+
points: "144,89,144,91,142,91,142,89",
|
|
1080
|
+
abbr: "EST"
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
timezone: "America/New_York",
|
|
1084
|
+
country: "US",
|
|
1085
|
+
points: "132,82,131,84,133,83,135,84,135,87,137,90,139,88,137,82,138,80,144,77,145,75,143,72,144,70,146,71,148,68,151,68,151,66,152,64,155,64,157,63,156,60,154,59,152,62,146,63,144,65,140,65,140,66,136,67,132,67,132,71,130,72,133,74,131,76,132,82",
|
|
1086
|
+
abbr: "EST"
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
timezone: "America/Toronto",
|
|
1090
|
+
country: "CA",
|
|
1091
|
+
points: "128,56,128,58,126,58,126,56",
|
|
1092
|
+
abbr: "EST"
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
timezone: "America/Nome",
|
|
1096
|
+
country: "US",
|
|
1097
|
+
points: "25,32,25,27,23,29,19,29,18,30,25,32",
|
|
1098
|
+
abbr: "AKST"
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
timezone: "America/Nome",
|
|
1102
|
+
country: "US",
|
|
1103
|
+
points: "25,35,25,33,22,33,16,34,19,34,18,35,24,36,25,35",
|
|
1104
|
+
abbr: "AKST"
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
timezone: "America/Nome",
|
|
1108
|
+
country: "US",
|
|
1109
|
+
points: "25,42,25,37,23,37,19,39,21,40,20,41,22,42,25,42",
|
|
1110
|
+
abbr: "AKST"
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
timezone: "America/Noronha",
|
|
1114
|
+
country: "BR",
|
|
1115
|
+
points: "206,129,206,131,204,131,204,129",
|
|
1116
|
+
abbr: "FNT"
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
timezone: "America/North_Dakota/Beulah",
|
|
1120
|
+
country: "US",
|
|
1121
|
+
points: "110,58,110,60,108,60,108,58",
|
|
1122
|
+
abbr: "CST"
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
timezone: "America/North_Dakota/Center",
|
|
1126
|
+
country: "US",
|
|
1127
|
+
points: "110,59,110,61,108,61,108,59",
|
|
1128
|
+
abbr: "CST"
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
timezone: "America/North_Dakota/New_Salem",
|
|
1132
|
+
country: "US",
|
|
1133
|
+
points: "110,59,110,61,108,61,108,59",
|
|
1134
|
+
abbr: "CST"
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
timezone: "America/Ojinaga",
|
|
1138
|
+
country: "MX",
|
|
1139
|
+
points: "106,83,106,85,104,85,104,83",
|
|
1140
|
+
abbr: "MST"
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
timezone: "America/Panama",
|
|
1144
|
+
country: "PA",
|
|
1145
|
+
points: "142,113,140,112,136,113,138,114,140,112,142,113",
|
|
1146
|
+
abbr: "EST"
|
|
1147
|
+
},
|
|
1148
|
+
{
|
|
1149
|
+
timezone: "America/Iqaluit",
|
|
1150
|
+
country: "CA",
|
|
1151
|
+
points: "156,10,156,12,165,11,160,10,156,10",
|
|
1152
|
+
abbr: "EST"
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
timezone: "America/Iqaluit",
|
|
1156
|
+
country: "CA",
|
|
1157
|
+
points: "156,34,156,37,159,36,160,35,157,35,156,34",
|
|
1158
|
+
abbr: "EST"
|
|
1159
|
+
},
|
|
1160
|
+
{
|
|
1161
|
+
timezone: "America/Iqaluit",
|
|
1162
|
+
country: "CA",
|
|
1163
|
+
points: "156,30,156,33,159,34,162,35,163,34,165,32,160,31,156,30",
|
|
1164
|
+
abbr: "EST"
|
|
1165
|
+
},
|
|
1166
|
+
{
|
|
1167
|
+
timezone: "America/Paramaribo",
|
|
1168
|
+
country: "SR",
|
|
1169
|
+
points: "175,118,175,117,171,117,169,119,171,122,174,122,175,118",
|
|
1170
|
+
abbr: "SRT"
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
timezone: "America/Phoenix",
|
|
1174
|
+
country: "US",
|
|
1175
|
+
points: "99,80,99,76,96,76,95,74,92,74,91,75,91,80,96,81,99,81,99,80",
|
|
1176
|
+
abbr: "MST"
|
|
1177
|
+
},
|
|
1178
|
+
{
|
|
1179
|
+
timezone: "America/Port-au-Prince",
|
|
1180
|
+
country: "HT",
|
|
1181
|
+
points: "151,98,151,100,149,100,149,98",
|
|
1182
|
+
abbr: "EST"
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
timezone: "America/Port_of_Spain",
|
|
1186
|
+
country: "TT",
|
|
1187
|
+
points: "166,109,166,111,164,111,164,109",
|
|
1188
|
+
abbr: "AST"
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
timezone: "America/Porto_Velho",
|
|
1192
|
+
country: "BR",
|
|
1193
|
+
points: "167,142,167,140,165,140,165,137,163,136,159,138,160,142,164,144,166,144,167,142",
|
|
1194
|
+
abbr: "AMT"
|
|
1195
|
+
},
|
|
1196
|
+
{
|
|
1197
|
+
timezone: "America/Puerto_Rico",
|
|
1198
|
+
country: "PR",
|
|
1199
|
+
points: "159,98,159,100,157,100,157,98",
|
|
1200
|
+
abbr: "AST"
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
timezone: "America/Winnipeg",
|
|
1204
|
+
country: "CA",
|
|
1205
|
+
points: "120,56,120,58,118,58,118,56",
|
|
1206
|
+
abbr: "CST"
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
timezone: "America/Rankin_Inlet",
|
|
1210
|
+
country: "CA",
|
|
1211
|
+
points: "132,12,132,11,122,12,132,12",
|
|
1212
|
+
abbr: "CST"
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
timezone: "America/Rankin_Inlet",
|
|
1216
|
+
country: "CA",
|
|
1217
|
+
points: "113,19,110,19,111,20,111,21,115,20,113,19",
|
|
1218
|
+
abbr: "CST"
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
timezone: "America/Rankin_Inlet",
|
|
1222
|
+
country: "CA",
|
|
1223
|
+
points: "125,16,128,16,132,15,129,15,127,14,120,12,116,13,119,14,119,15,125,16",
|
|
1224
|
+
abbr: "CST"
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
timezone: "America/Rankin_Inlet",
|
|
1228
|
+
country: "CA",
|
|
1229
|
+
points: "132,21,132,20,126,20,123,19,120,19,121,18,117,18,118,19,121,19,122,21,132,21",
|
|
1230
|
+
abbr: "CST"
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
timezone: "America/Rankin_Inlet",
|
|
1234
|
+
country: "CA",
|
|
1235
|
+
points: "132,19,130,18,125,19,132,19",
|
|
1236
|
+
abbr: "CST"
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
timezone: "America/Rankin_Inlet",
|
|
1240
|
+
country: "CA",
|
|
1241
|
+
points: "132,28,132,26,130,25,132,23,128,23,125,24,126,26,127,27,132,28",
|
|
1242
|
+
abbr: "CST"
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
timezone: "America/Rankin_Inlet",
|
|
1246
|
+
country: "CA",
|
|
1247
|
+
points: "125,36,128,36,129,35,123,33,129,34,132,33,132,30,129,32,127,31,128,30,126,29,126,32,108,32,108,42,118,42,119,40,124,37,125,36",
|
|
1248
|
+
abbr: "CST"
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
timezone: "America/Rankin_Inlet",
|
|
1252
|
+
country: "CA",
|
|
1253
|
+
points: "118,22,119,23,117,24,120,25,122,24,125,22,118,22",
|
|
1254
|
+
abbr: "CST"
|
|
1255
|
+
},
|
|
1256
|
+
{
|
|
1257
|
+
timezone: "America/Recife",
|
|
1258
|
+
country: "BR",
|
|
1259
|
+
points: "196,136,194,135,195,137,199,138,201,137,201,135,199,137,198,135,196,136",
|
|
1260
|
+
abbr: "BRT"
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
timezone: "America/Regina",
|
|
1264
|
+
country: "CA",
|
|
1265
|
+
points: "104,57,109,57,109,50,108,49,108,42,97,42,97,52,97,57,104,57",
|
|
1266
|
+
abbr: "CST"
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
timezone: "America/Resolute",
|
|
1270
|
+
country: "CA",
|
|
1271
|
+
points: "119,20,119,22,117,22,117,20",
|
|
1272
|
+
abbr: "CST"
|
|
1273
|
+
},
|
|
1274
|
+
{
|
|
1275
|
+
timezone: "America/Rio_Branco",
|
|
1276
|
+
country: "BR",
|
|
1277
|
+
points: "148,135,149,137,148,138,152,138,152,140,155,140,157,139,152,136,148,135",
|
|
1278
|
+
abbr: "ACT"
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
timezone: "America/Tijuana",
|
|
1282
|
+
country: "MX",
|
|
1283
|
+
points: "91,80,88,80,89,84,93,86,91,83,91,80",
|
|
1284
|
+
abbr: "PST"
|
|
1285
|
+
},
|
|
1286
|
+
{
|
|
1287
|
+
timezone: "America/Santarem",
|
|
1288
|
+
country: "BR",
|
|
1289
|
+
points: "176,125,176,123,174,123,174,121,172,122,168,123,168,126,172,128,169,134,171,138,177,138,177,136,178,134,177,132,178,129,176,125",
|
|
1290
|
+
abbr: "BRT"
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
timezone: "America/Santiago",
|
|
1294
|
+
country: "CL",
|
|
1295
|
+
points: "152,199,153,200,155,201,155,198,152,199",
|
|
1296
|
+
abbr: "CLT"
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
timezone: "America/Santiago",
|
|
1300
|
+
country: "CL",
|
|
1301
|
+
points: "148,193,149,193,150,190,151,186,150,184,150,180,152,179,151,176,153,173,152,168,153,167,153,164,155,162,155,159,156,157,154,149,152,150,153,155,152,157,152,162,151,165,151,172,148,177,148,180,147,182,149,183,148,186,149,187,147,190,146,192,148,194,147,196,148,198,151,198,151,200,152,198,155,198,150,197,150,195,148,196,148,193",
|
|
1302
|
+
abbr: "CLT"
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
timezone: "America/Santo_Domingo",
|
|
1306
|
+
country: "DO",
|
|
1307
|
+
points: "151,100,155,100,155,99,150,97,151,100",
|
|
1308
|
+
abbr: "AST"
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
timezone: "America/Scoresbysund",
|
|
1312
|
+
country: "GL",
|
|
1313
|
+
points: "216,25,217,27,220,27,219,25,216,25",
|
|
1314
|
+
abbr: "EGT"
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
timezone: "America/Sao_Paulo",
|
|
1318
|
+
country: "BR",
|
|
1319
|
+
points: "181,166,183,160,188,157,192,157,195,152,194,149,195,147,189,145,186,146,186,143,180,142,179,146,176,149,177,151,179,152,178,155,176,157,174,161,175,162,170,167,173,168,176,172,181,166",
|
|
1320
|
+
abbr: "BRST"
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
timezone: "America/Sitka",
|
|
1324
|
+
country: "US",
|
|
1325
|
+
points: "63,45,63,47,61,47,61,45",
|
|
1326
|
+
abbr: "AKST"
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
timezone: "America/St_Barthelemy",
|
|
1330
|
+
country: "BL",
|
|
1331
|
+
points: "164,99,164,101,162,101,162,99",
|
|
1332
|
+
abbr: "AST"
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
timezone: "America/St_Johns",
|
|
1336
|
+
country: "CA",
|
|
1337
|
+
points: "173,53,170,55,170,56,168,59,171,59,173,58,175,59,176,57,174,56,173,57,172,55,173,53",
|
|
1338
|
+
abbr: "NST"
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
timezone: "America/Thule",
|
|
1342
|
+
country: "GL",
|
|
1343
|
+
points: "161,19,158,15,149,16,153,17,158,17,151,18,156,18,153,19,161,19",
|
|
1344
|
+
abbr: "AST"
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
timezone: "America/St_Kitts",
|
|
1348
|
+
country: "KN",
|
|
1349
|
+
points: "164,100,164,102,162,102,162,100",
|
|
1350
|
+
abbr: "AST"
|
|
1351
|
+
},
|
|
1352
|
+
{
|
|
1353
|
+
timezone: "America/St_Lucia",
|
|
1354
|
+
country: "LC",
|
|
1355
|
+
points: "166,105,166,107,164,107,164,105",
|
|
1356
|
+
abbr: "AST"
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
timezone: "America/St_Thomas",
|
|
1360
|
+
country: "VI",
|
|
1361
|
+
points: "161,99,161,101,159,101,159,99",
|
|
1362
|
+
abbr: "AST"
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
timezone: "America/St_Vincent",
|
|
1366
|
+
country: "VC",
|
|
1367
|
+
points: "166,106,166,108,164,108,164,106",
|
|
1368
|
+
abbr: "AST"
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
timezone: "America/Swift_Current",
|
|
1372
|
+
country: "CA",
|
|
1373
|
+
points: "101,54,101,56,99,56,99,54",
|
|
1374
|
+
abbr: "CST"
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
timezone: "America/Tegucigalpa",
|
|
1378
|
+
country: "HN",
|
|
1379
|
+
points: "129,106,131,106,132,104,135,104,133,103,128,103,126,105,129,106",
|
|
1380
|
+
abbr: "CST"
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
timezone: "America/Toronto",
|
|
1384
|
+
country: "CA",
|
|
1385
|
+
points: "127,57,127,59,125,59,125,57",
|
|
1386
|
+
abbr: "EST"
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
timezone: "America/Tijuana",
|
|
1390
|
+
country: "MX",
|
|
1391
|
+
points: "88,79,88,81,86,81,86,79",
|
|
1392
|
+
abbr: "PST"
|
|
1393
|
+
},
|
|
1394
|
+
{
|
|
1395
|
+
timezone: "America/Toronto",
|
|
1396
|
+
country: "CA",
|
|
1397
|
+
points: "146,62,144,62,140,60,140,54,138,54,136,51,136,48,132,48,128,47,127,46,125,47,125,50,127,51,125,52,125,55,124,58,127,57,130,57,132,58,133,61,136,62,137,61,139,63,137,62,137,65,135,67,140,65,140,64,143,64,146,62",
|
|
1398
|
+
abbr: "EST"
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
timezone: "America/Tortola",
|
|
1402
|
+
country: "VG",
|
|
1403
|
+
points: "161,98,161,100,159,100,159,98",
|
|
1404
|
+
abbr: "AST"
|
|
1405
|
+
},
|
|
1406
|
+
{
|
|
1407
|
+
timezone: "America/Vancouver",
|
|
1408
|
+
country: "CA",
|
|
1409
|
+
points: "72,54,72,55,79,58,76,55,72,54",
|
|
1410
|
+
abbr: "PST"
|
|
1411
|
+
},
|
|
1412
|
+
{
|
|
1413
|
+
timezone: "America/Vancouver",
|
|
1414
|
+
country: "CA",
|
|
1415
|
+
points: "63,43,69,47,69,49,71,51,72,53,75,52,73,54,75,55,78,55,79,57,88,57,88,55,85,53,86,52,79,48,78,46,83,45,83,42,57,42,59,43,62,42,63,43",
|
|
1416
|
+
abbr: "PST"
|
|
1417
|
+
},
|
|
1418
|
+
{
|
|
1419
|
+
timezone: "America/Whitehorse",
|
|
1420
|
+
country: "CA",
|
|
1421
|
+
points: "57,29,54,28,54,41,78,42,77,40,74,41,70,39,70,37,66,35,66,33,64,32,61,32,60,29,57,29",
|
|
1422
|
+
abbr: "PST"
|
|
1423
|
+
},
|
|
1424
|
+
{
|
|
1425
|
+
timezone: "America/Winnipeg",
|
|
1426
|
+
country: "CA",
|
|
1427
|
+
points: "122,58,125,56,124,53,127,51,125,50,125,47,126,46,122,45,121,43,118,43,118,42,108,42,108,48,109,50,109,57,118,57,118,56,122,58",
|
|
1428
|
+
abbr: "CST"
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
timezone: "America/Yakutat",
|
|
1432
|
+
country: "US",
|
|
1433
|
+
points: "57,41,57,43,55,43,55,41",
|
|
1434
|
+
abbr: "AKST"
|
|
1435
|
+
},
|
|
1436
|
+
{
|
|
1437
|
+
timezone: "America/Edmonton",
|
|
1438
|
+
country: "CA",
|
|
1439
|
+
points: "83,31,81,30,81,28,79,28,76,29,72,27,67,28,70,28,64,29,64,28,60,29,61,32,64,32,66,33,66,35,69,36,70,39,74,41,77,40,78,42,108,42,108,36,97,35,95,34,92,34,83,31",
|
|
1440
|
+
abbr: "MST"
|
|
1441
|
+
},
|
|
1442
|
+
{
|
|
1443
|
+
timezone: "America/Edmonton",
|
|
1444
|
+
country: "CA",
|
|
1445
|
+
points: "88,17,79,19,83,20,86,18,86,19,89,18,88,17",
|
|
1446
|
+
abbr: "MST"
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
timezone: "America/Edmonton",
|
|
1450
|
+
country: "CA",
|
|
1451
|
+
points: "84,22,81,21,77,22,78,23,75,25,79,26,83,26,85,24,90,23,87,22,84,22",
|
|
1452
|
+
abbr: "MST"
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
timezone: "America/Edmonton",
|
|
1456
|
+
country: "CA",
|
|
1457
|
+
points: "91,19,88,20,96,20,91,21,93,22,97,21,97,20,91,19",
|
|
1458
|
+
abbr: "MST"
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
timezone: "America/Edmonton",
|
|
1462
|
+
country: "CA",
|
|
1463
|
+
points: "90,23,86,24,86,26,87,27,95,27,87,28,97,28,97,24,96,24,93,24,90,23",
|
|
1464
|
+
abbr: "MST"
|
|
1465
|
+
},
|
|
1466
|
+
{
|
|
1467
|
+
timezone: "Antarctica/Macquarie",
|
|
1468
|
+
country: "AU",
|
|
1469
|
+
points: "472,200,472,202,470,202,470,200",
|
|
1470
|
+
abbr: "MIST"
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
timezone: "Arctic/Longyearbyen",
|
|
1474
|
+
country: "SJ",
|
|
1475
|
+
points: "275,14,270,14,269,15,267,14,265,15,268,16,271,16,269,17,273,18,274,19,276,16,280,16,275,14",
|
|
1476
|
+
abbr: "CET"
|
|
1477
|
+
},
|
|
1478
|
+
{
|
|
1479
|
+
timezone: "Arctic/Longyearbyen",
|
|
1480
|
+
country: "SJ",
|
|
1481
|
+
points: "285,14,281,14,277,13,277,14,283,15,288,14,285,14",
|
|
1482
|
+
abbr: "CET"
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
timezone: "Asia/Aden",
|
|
1486
|
+
country: "YE",
|
|
1487
|
+
points: "313,107,324,102,322,99,318,100,314,103,314,102,310,101,309,104,310,107,313,107",
|
|
1488
|
+
abbr: "AST"
|
|
1489
|
+
},
|
|
1490
|
+
{
|
|
1491
|
+
timezone: "Asia/Almaty",
|
|
1492
|
+
country: "KZ",
|
|
1493
|
+
points: "348,66,352,65,355,66,359,65,361,66,362,63,364,62,365,59,369,60,369,58,371,56,368,56,366,54,361,55,358,51,356,50,357,49,352,51,352,50,349,50,348,48,342,49,342,51,344,52,345,55,342,57,340,57,337,60,343,61,345,64,342,66,343,68,345,68,348,66",
|
|
1494
|
+
abbr: "ALMT"
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
timezone: "Asia/Amman",
|
|
1498
|
+
country: "JO",
|
|
1499
|
+
points: "302,82,301,81,305,80,304,79,299,80,299,84,302,82",
|
|
1500
|
+
abbr: "EET"
|
|
1501
|
+
},
|
|
1502
|
+
{
|
|
1503
|
+
timezone: "Asia/Anadyr",
|
|
1504
|
+
country: "RU",
|
|
1505
|
+
points: "10,32,7,32,7,31,0,29,0,35,2,34,6,34,6,35,10,36,9,35,11,34,14,33,10,32",
|
|
1506
|
+
abbr: "ANAT"
|
|
1507
|
+
},
|
|
1508
|
+
{
|
|
1509
|
+
timezone: "Asia/Anadyr",
|
|
1510
|
+
country: "RU",
|
|
1511
|
+
points: "497,35,500,35,500,29,495,28,487,28,488,29,486,30,483,28,476,28,476,30,470,30,469,31,471,32,470,33,473,35,484,36,484,37,487,39,491,38,492,39,496,38,499,39,498,36,493,35,497,35",
|
|
1512
|
+
abbr: "ANAT"
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
timezone: "Asia/Aqtau",
|
|
1516
|
+
country: "KZ",
|
|
1517
|
+
points: "328,63,329,62,327,60,326,57,319,58,315,58,318,59,319,61,323,60,324,62,321,62,320,63,321,65,325,66,328,68,328,63",
|
|
1518
|
+
abbr: "AQTT"
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
timezone: "Asia/Aqtobe",
|
|
1522
|
+
country: "KZ",
|
|
1523
|
+
points: "326,55,326,57,326,59,328,60,329,62,331,62,335,59,337,60,339,58,337,57,336,54,333,55,331,54,328,54,326,55",
|
|
1524
|
+
abbr: "AQTT"
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
timezone: "Asia/Ashgabat",
|
|
1528
|
+
country: "TM",
|
|
1529
|
+
points: "340,74,343,72,337,70,336,68,334,68,333,66,331,66,327,68,325,66,323,67,324,70,325,73,329,72,332,73,337,76,340,75,340,74",
|
|
1530
|
+
abbr: "TMT"
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
timezone: "Asia/Baghdad",
|
|
1534
|
+
country: "IQ",
|
|
1535
|
+
points: "315,83,317,83,316,80,313,78,314,75,312,73,309,73,307,74,307,77,304,79,304,80,315,85,315,83",
|
|
1536
|
+
abbr: "AST"
|
|
1537
|
+
},
|
|
1538
|
+
{
|
|
1539
|
+
timezone: "Asia/Bahrain",
|
|
1540
|
+
country: "BH",
|
|
1541
|
+
points: "321,87,321,89,319,89,319,87",
|
|
1542
|
+
abbr: "AST"
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
timezone: "Asia/Bangkok",
|
|
1546
|
+
country: "TH",
|
|
1547
|
+
points: "391,116,389,112,388,112,389,107,390,107,393,109,392,106,396,105,397,103,394,100,393,100,390,101,391,98,390,97,387,98,386,97,385,99,387,102,386,104,388,106,388,109,386,113,389,116,391,116",
|
|
1548
|
+
abbr: "ICT"
|
|
1549
|
+
},
|
|
1550
|
+
{
|
|
1551
|
+
timezone: "Asia/Baku",
|
|
1552
|
+
country: "AZ",
|
|
1553
|
+
points: "314,67,313,68,317,70,318,72,319,69,317,67,316,68,314,67",
|
|
1554
|
+
abbr: "AZT"
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
timezone: "Asia/Shanghai",
|
|
1558
|
+
country: "CN",
|
|
1559
|
+
points: "403,95,404,93,407,95,406,91,405,89,402,89,402,87,401,84,403,82,402,80,404,79,403,77,404,73,403,72,404,70,408,69,407,67,404,65,403,66,399,66,396,67,390,66,385,66,386,68,384,70,385,71,388,72,387,75,388,77,385,78,385,80,387,81,388,84,386,86,387,89,385,92,387,91,388,94,391,96,392,93,394,94,398,93,399,95,403,95",
|
|
1560
|
+
abbr: "CST"
|
|
1561
|
+
},
|
|
1562
|
+
{
|
|
1563
|
+
timezone: "Asia/Beirut",
|
|
1564
|
+
country: "LB",
|
|
1565
|
+
points: "300,77,300,79,298,79,298,77",
|
|
1566
|
+
abbr: "EET"
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
timezone: "Asia/Bishkek",
|
|
1570
|
+
country: "KG",
|
|
1571
|
+
points: "354,69,359,68,361,66,359,65,355,66,353,65,352,66,349,66,347,67,349,68,350,67,352,68,346,70,350,71,354,69",
|
|
1572
|
+
abbr: "KGT"
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
timezone: "Asia/Brunei",
|
|
1576
|
+
country: "BN",
|
|
1577
|
+
points: "411,117,411,119,409,119,409,117",
|
|
1578
|
+
abbr: "BNT"
|
|
1579
|
+
},
|
|
1580
|
+
{
|
|
1581
|
+
timezone: "Asia/Ulaanbaatar",
|
|
1582
|
+
country: "MN",
|
|
1583
|
+
points: "412,61,415,60,415,58,411,59,410,58,412,56,409,55,406,56,407,59,405,59,406,62,408,63,412,61",
|
|
1584
|
+
abbr: "CHOT"
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
timezone: "Asia/Colombo",
|
|
1588
|
+
country: "LK",
|
|
1589
|
+
points: "363,116,364,115,361,111,361,116,363,116",
|
|
1590
|
+
abbr: "IST"
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
timezone: "Asia/Damascus",
|
|
1594
|
+
country: "SY",
|
|
1595
|
+
points: "302,80,307,77,307,75,309,73,304,74,301,74,301,77,299,80,302,80",
|
|
1596
|
+
abbr: "EET"
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
timezone: "Asia/Dhaka",
|
|
1600
|
+
country: "BD",
|
|
1601
|
+
points: "375,94,376,93,379,95,378,90,375,90,375,89,372,89,374,90,373,91,374,95,375,94",
|
|
1602
|
+
abbr: "BDT"
|
|
1603
|
+
},
|
|
1604
|
+
{
|
|
1605
|
+
timezone: "Asia/Dili",
|
|
1606
|
+
country: "TL",
|
|
1607
|
+
points: "425,136,425,138,423,138,423,136",
|
|
1608
|
+
abbr: "TLT"
|
|
1609
|
+
},
|
|
1610
|
+
{
|
|
1611
|
+
timezone: "Asia/Dubai",
|
|
1612
|
+
country: "AE",
|
|
1613
|
+
points: "328,91,328,89,325,91,322,92,323,93,327,94,328,91",
|
|
1614
|
+
abbr: "GST"
|
|
1615
|
+
},
|
|
1616
|
+
{
|
|
1617
|
+
timezone: "Asia/Dushanbe",
|
|
1618
|
+
country: "TJ",
|
|
1619
|
+
points: "346,73,349,72,350,74,354,72,350,71,349,70,346,70,348,68,344,70,346,73",
|
|
1620
|
+
abbr: "TJT"
|
|
1621
|
+
},
|
|
1622
|
+
{
|
|
1623
|
+
timezone: "Asia/Gaza",
|
|
1624
|
+
country: "PS",
|
|
1625
|
+
points: "299,80,299,82,297,82,297,80",
|
|
1626
|
+
abbr: "EET"
|
|
1627
|
+
},
|
|
1628
|
+
{
|
|
1629
|
+
timezone: "Asia/Shanghai",
|
|
1630
|
+
country: "CN",
|
|
1631
|
+
points: "424,68,428,67,431,66,432,63,435,62,437,58,432,59,431,57,427,56,425,52,423,51,420,53,421,54,424,53,425,54,423,58,420,59,422,60,419,61,421,65,423,66,424,68",
|
|
1632
|
+
abbr: "CST"
|
|
1633
|
+
},
|
|
1634
|
+
{
|
|
1635
|
+
timezone: "Asia/Hebron",
|
|
1636
|
+
country: "PS",
|
|
1637
|
+
points: "300,80,300,82,298,82,298,80",
|
|
1638
|
+
abbr: "EET"
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
timezone: "Asia/Ho_Chi_Minh",
|
|
1642
|
+
country: "VN",
|
|
1643
|
+
points: "397,112,398,110,401,109,402,107,401,104,397,99,398,96,400,95,398,93,392,94,395,96,394,98,396,99,400,104,399,108,396,110,395,113,397,112",
|
|
1644
|
+
abbr: "ICT"
|
|
1645
|
+
},
|
|
1646
|
+
{
|
|
1647
|
+
timezone: "Asia/Hong_Kong",
|
|
1648
|
+
country: "HK",
|
|
1649
|
+
points: "410,93,410,95,408,95,408,93",
|
|
1650
|
+
abbr: "HKT"
|
|
1651
|
+
},
|
|
1652
|
+
{
|
|
1653
|
+
timezone: "Asia/Hovd",
|
|
1654
|
+
country: "MN",
|
|
1655
|
+
points: "387,63,387,61,385,60,387,59,386,58,388,57,385,56,381,56,381,55,378,54,372,57,372,58,375,59,376,62,383,63,384,66,386,66,387,63",
|
|
1656
|
+
abbr: "HOVT"
|
|
1657
|
+
},
|
|
1658
|
+
{
|
|
1659
|
+
timezone: "Asia/Irkutsk",
|
|
1660
|
+
country: "RU",
|
|
1661
|
+
points: "411,46,413,46,415,43,411,41,406,43,406,42,402,43,404,40,402,40,403,38,401,36,398,36,398,39,395,41,397,42,395,44,392,43,389,44,386,45,386,47,384,48,383,50,388,51,387,52,392,54,392,55,396,55,400,56,401,53,404,53,408,52,412,49,411,46",
|
|
1662
|
+
abbr: "IRKT"
|
|
1663
|
+
},
|
|
1664
|
+
{
|
|
1665
|
+
timezone: "Asia/Jakarta",
|
|
1666
|
+
country: "ID",
|
|
1667
|
+
points: "406,135,404,134,403,135,397,133,396,134,400,136,409,137,409,136,406,135",
|
|
1668
|
+
abbr: "WIB"
|
|
1669
|
+
},
|
|
1670
|
+
{
|
|
1671
|
+
timezone: "Asia/Jakarta",
|
|
1672
|
+
country: "ID",
|
|
1673
|
+
points: "397,131,397,129,395,129,395,126,393,124,386,119,382,117,383,119,389,125,392,131,395,133,397,131",
|
|
1674
|
+
abbr: "WIB"
|
|
1675
|
+
},
|
|
1676
|
+
{
|
|
1677
|
+
timezone: "Asia/Jayapura",
|
|
1678
|
+
country: "ID",
|
|
1679
|
+
points: "438,131,441,132,443,135,445,136,446,138,446,129,441,127,438,130,436,128,436,126,434,125,432,127,435,128,433,129,435,131,436,129,438,131",
|
|
1680
|
+
abbr: "WIT"
|
|
1681
|
+
},
|
|
1682
|
+
{
|
|
1683
|
+
timezone: "Asia/Kabul",
|
|
1684
|
+
country: "AF",
|
|
1685
|
+
points: "338,84,342,84,343,82,347,79,349,78,350,76,349,75,354,73,350,74,349,72,344,74,341,73,337,76,335,76,334,79,336,82,335,84,338,84",
|
|
1686
|
+
abbr: "AFT"
|
|
1687
|
+
},
|
|
1688
|
+
{
|
|
1689
|
+
timezone: "Asia/Jerusalem",
|
|
1690
|
+
country: "IL",
|
|
1691
|
+
points: "300,80,300,82,298,82,298,80",
|
|
1692
|
+
abbr: "IST"
|
|
1693
|
+
},
|
|
1694
|
+
{
|
|
1695
|
+
timezone: "Asia/Kamchatka",
|
|
1696
|
+
country: "RU",
|
|
1697
|
+
points: "476,45,475,44,477,42,481,42,484,41,487,42,489,40,492,39,491,38,486,38,484,36,477,35,477,38,480,38,478,40,475,41,471,44,468,45,466,47,468,54,472,50,475,49,477,47,476,45",
|
|
1698
|
+
abbr: "PETT"
|
|
1699
|
+
},
|
|
1700
|
+
{
|
|
1701
|
+
timezone: "Asia/Karachi",
|
|
1702
|
+
country: "PK",
|
|
1703
|
+
points: "348,86,350,86,354,82,355,80,353,79,353,77,358,76,355,74,350,74,350,76,348,79,346,81,343,82,342,84,335,84,338,87,336,90,342,89,343,91,346,91,349,91,347,88,348,86",
|
|
1704
|
+
abbr: "PKT"
|
|
1705
|
+
},
|
|
1706
|
+
{
|
|
1707
|
+
timezone: "Asia/Urumqi",
|
|
1708
|
+
country: "CN",
|
|
1709
|
+
points: "361,83,365,82,366,80,364,77,365,76,364,74,365,70,364,70,365,65,363,63,363,62,362,63,362,67,356,69,352,70,354,72,354,74,358,76,360,79,359,82,361,83",
|
|
1710
|
+
abbr: "XJT"
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
timezone: "Asia/Kathmandu",
|
|
1714
|
+
country: "NP",
|
|
1715
|
+
points: "368,86,368,85,363,83,361,85,369,88,372,88,372,86,368,86",
|
|
1716
|
+
abbr: "NPT"
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
timezone: "Asia/Kolkata",
|
|
1720
|
+
country: "IN",
|
|
1721
|
+
points: "362,106,362,103,364,101,370,97,372,94,374,95,373,91,374,90,372,89,373,88,375,90,378,90,378,92,379,95,380,92,381,92,382,88,385,87,384,84,381,84,379,86,377,86,378,88,374,88,373,86,372,88,369,88,361,85,363,83,359,82,360,80,360,77,358,76,353,77,353,79,355,80,354,82,350,86,347,87,349,91,346,91,345,92,347,94,348,96,351,95,352,103,356,113,357,114,361,111,362,106",
|
|
1722
|
+
abbr: "IST"
|
|
1723
|
+
},
|
|
1724
|
+
{
|
|
1725
|
+
timezone: "Asia/Krasnoyarsk",
|
|
1726
|
+
country: "RU",
|
|
1727
|
+
points: "396,16,393,15,388,17,396,16",
|
|
1728
|
+
abbr: "KRAT"
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
timezone: "Asia/Krasnoyarsk",
|
|
1732
|
+
country: "RU",
|
|
1733
|
+
points: "385,14,379,14,382,15,389,15,389,14,385,14",
|
|
1734
|
+
abbr: "KRAT"
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
timezone: "Asia/Krasnoyarsk",
|
|
1738
|
+
country: "RU",
|
|
1739
|
+
points: "383,12,377,14,385,14,383,12",
|
|
1740
|
+
abbr: "KRAT"
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
timezone: "Asia/Krasnoyarsk",
|
|
1744
|
+
country: "RU",
|
|
1745
|
+
points: "384,51,383,50,386,47,385,46,389,44,390,45,393,43,396,43,395,41,398,39,397,35,399,34,397,32,398,29,402,28,403,27,407,26,406,25,403,23,396,24,400,23,407,21,408,20,404,18,398,19,398,18,395,17,391,18,390,19,380,19,381,20,374,20,371,21,371,22,362,23,362,24,366,26,367,28,364,28,366,25,359,24,362,25,360,26,362,27,360,28,365,29,364,31,366,32,366,34,369,35,369,37,367,40,367,42,371,42,373,43,372,44,374,45,373,48,374,52,372,53,374,54,374,56,378,54,381,55,381,56,385,56,388,51,384,51",
|
|
1746
|
+
abbr: "KRAT"
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
timezone: "Asia/Kuala_Lumpur",
|
|
1750
|
+
country: "MY",
|
|
1751
|
+
points: "394,121,393,117,392,116,390,117,389,116,391,121,394,123,394,121",
|
|
1752
|
+
abbr: "MYT"
|
|
1753
|
+
},
|
|
1754
|
+
{
|
|
1755
|
+
timezone: "Asia/Kuching",
|
|
1756
|
+
country: "MY",
|
|
1757
|
+
points: "410,118,410,118,407,121,405,121,404,123,402,122,404,124,406,123,409,123,411,119,415,119,414,117,413,115,410,118",
|
|
1758
|
+
abbr: "MYT"
|
|
1759
|
+
},
|
|
1760
|
+
{
|
|
1761
|
+
timezone: "Asia/Kuwait",
|
|
1762
|
+
country: "KW",
|
|
1763
|
+
points: "318,83,318,85,316,85,316,83",
|
|
1764
|
+
abbr: "AST"
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
timezone: "Asia/Macau",
|
|
1768
|
+
country: "MO",
|
|
1769
|
+
points: "409,93,409,95,407,95,407,93",
|
|
1770
|
+
abbr: "CST"
|
|
1771
|
+
},
|
|
1772
|
+
{
|
|
1773
|
+
timezone: "Asia/Magadan",
|
|
1774
|
+
country: "RU",
|
|
1775
|
+
points: "464,42,469,39,473,39,472,40,476,39,475,37,477,35,471,34,471,32,469,31,470,30,476,30,474,29,472,28,470,26,461,27,457,25,450,25,446,28,447,29,445,32,444,35,445,38,450,39,453,39,454,40,452,41,454,43,458,42,462,43,466,43,464,42",
|
|
1776
|
+
abbr: "MAGT"
|
|
1777
|
+
},
|
|
1778
|
+
{
|
|
1779
|
+
timezone: "Asia/Makassar",
|
|
1780
|
+
country: "ID",
|
|
1781
|
+
points: "412,128,411,127,413,126,414,123,413,120,411,119,410,122,408,124,410,124,411,127,409,129,409,131,411,130,412,128",
|
|
1782
|
+
abbr: "WITA"
|
|
1783
|
+
},
|
|
1784
|
+
{
|
|
1785
|
+
timezone: "Asia/Makassar",
|
|
1786
|
+
country: "ID",
|
|
1787
|
+
points: "420,129,418,128,421,126,418,127,417,124,422,124,418,123,417,124,415,129,416,130,417,133,417,129,418,129,419,132,421,131,420,129",
|
|
1788
|
+
abbr: "WITA"
|
|
1789
|
+
},
|
|
1790
|
+
{
|
|
1791
|
+
timezone: "Asia/Manila",
|
|
1792
|
+
country: "PH",
|
|
1793
|
+
points: "423,117,426,115,424,111,422,114,423,117",
|
|
1794
|
+
abbr: "PHT"
|
|
1795
|
+
},
|
|
1796
|
+
{
|
|
1797
|
+
timezone: "Asia/Manila",
|
|
1798
|
+
country: "PH",
|
|
1799
|
+
points: "421,105,419,106,420,102,420,99,418,99,417,103,418,106,422,108,421,105",
|
|
1800
|
+
abbr: "PHT"
|
|
1801
|
+
},
|
|
1802
|
+
{
|
|
1803
|
+
timezone: "Asia/Muscat",
|
|
1804
|
+
country: "OM",
|
|
1805
|
+
points: "328,100,331,97,333,94,332,92,329,92,328,90,327,92,326,97,322,99,324,102,328,100",
|
|
1806
|
+
abbr: "GST"
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
timezone: "Asia/Nicosia",
|
|
1810
|
+
country: "CY",
|
|
1811
|
+
points: "297,75,297,77,295,77,295,75",
|
|
1812
|
+
abbr: "EET"
|
|
1813
|
+
},
|
|
1814
|
+
{
|
|
1815
|
+
timezone: "Asia/Novokuznetsk",
|
|
1816
|
+
country: "RU",
|
|
1817
|
+
points: "373,46,367,47,368,49,373,53,374,52,373,49,373,46",
|
|
1818
|
+
abbr: "KRAT"
|
|
1819
|
+
},
|
|
1820
|
+
{
|
|
1821
|
+
timezone: "Asia/Novosibirsk",
|
|
1822
|
+
country: "RU",
|
|
1823
|
+
points: "367,47,373,46,374,45,372,44,373,43,371,42,368,42,366,40,364,41,357,40,354,44,356,46,354,48,356,50,358,51,362,49,365,51,368,49,367,47",
|
|
1824
|
+
abbr: "NOVT"
|
|
1825
|
+
},
|
|
1826
|
+
{
|
|
1827
|
+
timezone: "Asia/Omsk",
|
|
1828
|
+
country: "RU",
|
|
1829
|
+
points: "354,44,349,44,350,46,348,47,349,50,352,50,352,51,355,50,354,48,356,46,354,44",
|
|
1830
|
+
abbr: "OMST"
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
timezone: "Asia/Omsk",
|
|
1834
|
+
country: "RU",
|
|
1835
|
+
points: "373,53,371,52,368,49,365,51,362,49,358,51,361,55,363,55,366,54,368,56,371,56,371,57,375,56,373,53",
|
|
1836
|
+
abbr: "OMST"
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
timezone: "Asia/Phnom_Penh",
|
|
1840
|
+
country: "KH",
|
|
1841
|
+
points: "397,109,399,108,399,105,397,106,394,105,392,106,393,110,394,110,397,110,397,109",
|
|
1842
|
+
abbr: "ICT"
|
|
1843
|
+
},
|
|
1844
|
+
{
|
|
1845
|
+
timezone: "Asia/Pontianak",
|
|
1846
|
+
country: "ID",
|
|
1847
|
+
points: "411,127,408,123,405,124,402,122,401,123,403,129,407,129,409,130,411,127",
|
|
1848
|
+
abbr: "WIB"
|
|
1849
|
+
},
|
|
1850
|
+
{
|
|
1851
|
+
timezone: "Asia/Pyongyang",
|
|
1852
|
+
country: "KP",
|
|
1853
|
+
points: "426,72,428,72,427,70,430,68,429,67,426,67,423,69,424,70,424,73,426,72",
|
|
1854
|
+
abbr: "KST"
|
|
1855
|
+
},
|
|
1856
|
+
{
|
|
1857
|
+
timezone: "Asia/Qatar",
|
|
1858
|
+
country: "QA",
|
|
1859
|
+
points: "323,89,323,91,321,91,321,89",
|
|
1860
|
+
abbr: "AST"
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
timezone: "Asia/Qyzylorda",
|
|
1864
|
+
country: "KZ",
|
|
1865
|
+
points: "344,52,342,52,342,49,335,50,333,53,336,54,339,58,342,57,345,55,344,52",
|
|
1866
|
+
abbr: "QYZT"
|
|
1867
|
+
},
|
|
1868
|
+
{
|
|
1869
|
+
timezone: "Asia/Qyzylorda",
|
|
1870
|
+
country: "KZ",
|
|
1871
|
+
points: "342,65,342,66,345,64,343,61,341,61,335,59,331,61,335,60,334,63,336,65,340,64,342,65",
|
|
1872
|
+
abbr: "QYZT"
|
|
1873
|
+
},
|
|
1874
|
+
{
|
|
1875
|
+
timezone: "Asia/Yangon",
|
|
1876
|
+
country: "MM",
|
|
1877
|
+
points: "386,104,387,102,385,99,386,97,389,97,391,95,388,94,387,91,385,92,387,89,386,85,385,87,382,88,381,92,380,92,378,96,381,98,381,103,383,102,386,102,386,106,387,107,387,111,388,109,388,106,386,104",
|
|
1878
|
+
abbr: "MMT"
|
|
1879
|
+
},
|
|
1880
|
+
{
|
|
1881
|
+
timezone: "Asia/Riyadh",
|
|
1882
|
+
country: "SA",
|
|
1883
|
+
points: "310,101,312,101,314,103,318,100,326,97,327,93,323,93,319,89,320,88,318,87,317,85,312,84,304,80,301,81,303,83,300,84,299,86,303,92,304,96,307,98,309,102,310,101",
|
|
1884
|
+
abbr: "AST"
|
|
1885
|
+
},
|
|
1886
|
+
{
|
|
1887
|
+
timezone: "Asia/Sakhalin",
|
|
1888
|
+
country: "RU",
|
|
1889
|
+
points: "450,56,449,53,449,50,447,51,448,54,447,57,447,61,448,59,450,56",
|
|
1890
|
+
abbr: "SAKT"
|
|
1891
|
+
},
|
|
1892
|
+
{
|
|
1893
|
+
timezone: "Asia/Samarkand",
|
|
1894
|
+
country: "UZ",
|
|
1895
|
+
points: "345,71,343,69,342,65,340,64,336,65,334,63,333,64,331,62,328,63,328,68,329,67,333,66,334,68,336,68,337,70,343,72,344,73,345,71",
|
|
1896
|
+
abbr: "UZT"
|
|
1897
|
+
},
|
|
1898
|
+
{
|
|
1899
|
+
timezone: "Asia/Seoul",
|
|
1900
|
+
country: "KR",
|
|
1901
|
+
points: "429,76,430,75,428,71,426,72,426,75,425,77,429,76",
|
|
1902
|
+
abbr: "KST"
|
|
1903
|
+
},
|
|
1904
|
+
{
|
|
1905
|
+
timezone: "Asia/Shanghai",
|
|
1906
|
+
country: "CN",
|
|
1907
|
+
points: "401,84,402,85,402,89,405,89,404,90,406,92,407,94,409,93,412,93,412,92,416,90,419,86,420,83,417,83,419,81,416,76,420,74,418,72,416,73,415,71,418,68,420,69,418,71,425,68,423,66,420,64,419,61,420,59,423,58,425,54,424,53,421,54,420,53,423,51,418,51,418,53,415,55,412,56,410,58,411,59,415,58,416,61,414,60,408,63,406,62,406,64,404,65,407,67,409,66,408,69,404,70,403,72,404,73,403,77,404,79,402,79,403,82,401,84",
|
|
1908
|
+
abbr: "CST"
|
|
1909
|
+
},
|
|
1910
|
+
{
|
|
1911
|
+
timezone: "Asia/Singapore",
|
|
1912
|
+
country: "SG",
|
|
1913
|
+
points: "395,122,395,124,393,124,393,122",
|
|
1914
|
+
abbr: "SGT"
|
|
1915
|
+
},
|
|
1916
|
+
{
|
|
1917
|
+
timezone: "Asia/Taipei",
|
|
1918
|
+
country: "TW",
|
|
1919
|
+
points: "417,94,418,95,419,90,417,94",
|
|
1920
|
+
abbr: "CST"
|
|
1921
|
+
},
|
|
1922
|
+
{
|
|
1923
|
+
timezone: "Asia/Tashkent",
|
|
1924
|
+
country: "UZ",
|
|
1925
|
+
points: "345,69,348,68,348,69,352,68,350,67,349,68,347,67,345,68,343,68,344,70,345,69",
|
|
1926
|
+
abbr: "UZT"
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
timezone: "Asia/Tbilisi",
|
|
1930
|
+
country: "GE",
|
|
1931
|
+
points: "309,67,310,68,315,68,313,66,310,65,306,64,309,67",
|
|
1932
|
+
abbr: "GET"
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
timezone: "Asia/Tehran",
|
|
1936
|
+
country: "IR",
|
|
1937
|
+
points: "335,81,334,79,335,77,335,74,328,72,325,73,325,74,322,74,318,73,317,70,314,71,312,70,311,72,313,75,313,77,314,79,316,80,317,83,320,83,321,86,325,88,329,87,330,89,335,90,338,88,337,87,335,84,336,82,335,81",
|
|
1938
|
+
abbr: "IRST"
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
timezone: "Asia/Thimphu",
|
|
1942
|
+
country: "BT",
|
|
1943
|
+
points: "378,87,377,86,373,87,375,88,378,88,378,87",
|
|
1944
|
+
abbr: "BTT"
|
|
1945
|
+
},
|
|
1946
|
+
{
|
|
1947
|
+
timezone: "Asia/Tokyo",
|
|
1948
|
+
country: "JP",
|
|
1949
|
+
points: "448,63,447,62,445,66,449,67,450,65,453,65,451,64,448,63",
|
|
1950
|
+
abbr: "JST"
|
|
1951
|
+
},
|
|
1952
|
+
{
|
|
1953
|
+
timezone: "Asia/Tokyo",
|
|
1954
|
+
country: "JP",
|
|
1955
|
+
points: "432,78,430,79,431,81,433,79,432,78",
|
|
1956
|
+
abbr: "JST"
|
|
1957
|
+
},
|
|
1958
|
+
{
|
|
1959
|
+
timezone: "Asia/Tokyo",
|
|
1960
|
+
country: "JP",
|
|
1961
|
+
points: "437,76,434,76,434,77,438,77,439,79,440,77,442,77,445,75,446,72,447,72,446,67,445,68,444,71,442,73,440,73,439,75,437,76",
|
|
1962
|
+
abbr: "JST"
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
timezone: "Asia/Ulaanbaatar",
|
|
1966
|
+
country: "MN",
|
|
1967
|
+
points: "396,67,399,66,403,66,406,64,406,62,405,60,407,59,406,56,403,57,398,55,394,55,392,54,387,53,385,56,388,57,387,59,385,60,387,62,386,66,390,66,396,67",
|
|
1968
|
+
abbr: "ULAT"
|
|
1969
|
+
},
|
|
1970
|
+
{
|
|
1971
|
+
timezone: "Asia/Urumqi",
|
|
1972
|
+
country: "CN",
|
|
1973
|
+
points: "386,86,388,84,385,78,388,77,387,75,388,72,385,71,384,70,385,68,384,66,383,63,376,62,376,60,372,58,372,57,369,58,369,60,365,59,364,62,365,64,365,65,364,68,365,70,364,74,365,75,364,77,366,80,366,82,364,83,369,86,375,86,378,86,381,84,383,84,386,86",
|
|
1974
|
+
abbr: "XJT"
|
|
1975
|
+
},
|
|
1976
|
+
{
|
|
1977
|
+
timezone: "Asia/Vientiane",
|
|
1978
|
+
country: "LA",
|
|
1979
|
+
points: "398,105,399,103,396,99,394,98,396,97,393,96,391,94,390,95,389,97,391,98,390,101,393,99,397,103,396,105,398,105",
|
|
1980
|
+
abbr: "ICT"
|
|
1981
|
+
},
|
|
1982
|
+
{
|
|
1983
|
+
timezone: "Asia/Vladivostok",
|
|
1984
|
+
country: "RU",
|
|
1985
|
+
points: "433,63,433,65,435,66,441,61,445,57,445,55,447,53,444,50,441,50,438,49,448,43,454,42,452,41,454,40,453,39,448,39,444,38,445,37,444,33,446,31,446,28,449,25,455,25,446,24,443,25,444,26,436,26,434,25,433,26,435,27,434,29,435,31,431,33,434,35,433,37,439,39,437,40,436,39,433,42,433,44,432,48,435,48,431,50,433,51,437,51,435,52,432,54,433,56,432,59,437,58,435,62,433,63",
|
|
1986
|
+
abbr: "VLAT"
|
|
1987
|
+
},
|
|
1988
|
+
{
|
|
1989
|
+
timezone: "Asia/Vladivostok",
|
|
1990
|
+
country: "RU",
|
|
1991
|
+
points: "443,19,441,20,443,21,449,21,452,20,446,19,445,20,443,19",
|
|
1992
|
+
abbr: "VLAT"
|
|
1993
|
+
},
|
|
1994
|
+
{
|
|
1995
|
+
timezone: "Asia/Yakutsk",
|
|
1996
|
+
country: "RU",
|
|
1997
|
+
points: "432,48,432,46,433,43,435,40,437,40,439,39,433,37,434,35,431,33,435,31,434,29,435,27,432,27,429,26,429,24,423,22,421,24,411,23,408,23,407,22,403,23,406,26,402,28,398,29,397,32,398,34,397,35,401,36,402,37,402,39,404,40,402,43,406,42,406,43,411,41,415,42,415,44,413,44,413,46,410,46,412,49,408,51,408,52,404,53,401,53,400,56,404,57,409,55,414,56,418,53,418,51,422,51,425,52,428,56,432,57,433,56,431,55,433,53,437,51,433,51,431,50,435,48,432,48",
|
|
1998
|
+
abbr: "YAKT"
|
|
1999
|
+
},
|
|
2000
|
+
{
|
|
2001
|
+
timezone: "Asia/Yerevan",
|
|
2002
|
+
country: "AM",
|
|
2003
|
+
points: "313,68,310,68,315,71,313,68",
|
|
2004
|
+
abbr: "AMT"
|
|
2005
|
+
},
|
|
2006
|
+
{
|
|
2007
|
+
timezone: "Atlantic/Azores",
|
|
2008
|
+
country: "PT",
|
|
2009
|
+
points: "215,72,215,74,213,74,213,72",
|
|
2010
|
+
abbr: "AZOT"
|
|
2011
|
+
},
|
|
2012
|
+
{
|
|
2013
|
+
timezone: "Atlantic/Bermuda",
|
|
2014
|
+
country: "BM",
|
|
2015
|
+
points: "161,79,161,81,159,81,159,79",
|
|
2016
|
+
abbr: "AST"
|
|
2017
|
+
},
|
|
2018
|
+
{
|
|
2019
|
+
timezone: "Atlantic/Canary",
|
|
2020
|
+
country: "ES",
|
|
2021
|
+
points: "230,85,230,87,228,87,228,85",
|
|
2022
|
+
abbr: "WET"
|
|
2023
|
+
},
|
|
2024
|
+
{
|
|
2025
|
+
timezone: "Atlantic/Cape_Verde",
|
|
2026
|
+
country: "CV",
|
|
2027
|
+
points: "218,103,218,105,216,105,216,103",
|
|
2028
|
+
abbr: "CVT"
|
|
2029
|
+
},
|
|
2030
|
+
{
|
|
2031
|
+
timezone: "Atlantic/Madeira",
|
|
2032
|
+
country: "PT",
|
|
2033
|
+
points: "228,79,228,81,226,81,226,79",
|
|
2034
|
+
abbr: "WET"
|
|
2035
|
+
},
|
|
2036
|
+
{
|
|
2037
|
+
timezone: "Atlantic/Reykjavik",
|
|
2038
|
+
country: "IS",
|
|
2039
|
+
points: "221,35,221,37,219,37,219,35",
|
|
2040
|
+
abbr: "GMT"
|
|
2041
|
+
},
|
|
2042
|
+
{
|
|
2043
|
+
timezone: "Atlantic/South_Georgia",
|
|
2044
|
+
country: "GS",
|
|
2045
|
+
points: "200,199,200,201,198,201,198,199",
|
|
2046
|
+
abbr: "GST"
|
|
2047
|
+
},
|
|
2048
|
+
{
|
|
2049
|
+
timezone: "Atlantic/St_Helena",
|
|
2050
|
+
country: "SH",
|
|
2051
|
+
points: "243,146,243,148,241,148,241,146",
|
|
2052
|
+
abbr: "GMT"
|
|
2053
|
+
},
|
|
2054
|
+
{
|
|
2055
|
+
timezone: "Atlantic/Stanley",
|
|
2056
|
+
country: "FK",
|
|
2057
|
+
points: "171,196,171,198,169,198,169,196",
|
|
2058
|
+
abbr: "FKST"
|
|
2059
|
+
},
|
|
2060
|
+
{
|
|
2061
|
+
timezone: "Australia/Adelaide",
|
|
2062
|
+
country: "AU",
|
|
2063
|
+
points: "438,161,429,161,429,169,432,169,436,170,439,174,441,171,442,172,444,175,444,177,446,178,446,161,438,161",
|
|
2064
|
+
abbr: "ACDT"
|
|
2065
|
+
},
|
|
2066
|
+
{
|
|
2067
|
+
timezone: "Australia/Brisbane",
|
|
2068
|
+
country: "AU",
|
|
2069
|
+
points: "458,156,457,153,453,151,452,146,450,145,448,140,446,144,447,146,446,149,444,150,442,148,442,161,446,161,446,165,457,165,460,166,463,164,463,161,461,158,458,156",
|
|
2070
|
+
abbr: "AEST"
|
|
2071
|
+
},
|
|
2072
|
+
{
|
|
2073
|
+
timezone: "Australia/Broken_Hill",
|
|
2074
|
+
country: "AU",
|
|
2075
|
+
points: "447,168,447,170,445,170,445,168",
|
|
2076
|
+
abbr: "ACDT"
|
|
2077
|
+
},
|
|
2078
|
+
{
|
|
2079
|
+
timezone: "Australia/Hobart",
|
|
2080
|
+
country: "AU",
|
|
2081
|
+
points: "451,179,451,181,449,181,449,179",
|
|
2082
|
+
abbr: "AEDT"
|
|
2083
|
+
},
|
|
2084
|
+
{
|
|
2085
|
+
timezone: "Australia/Darwin",
|
|
2086
|
+
country: "AU",
|
|
2087
|
+
points: "429,146,429,161,442,161,442,148,437,146,439,142,436,142,433,140,434,142,431,143,429,146",
|
|
2088
|
+
abbr: "ACST"
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
timezone: "Australia/Eucla",
|
|
2092
|
+
country: "AU",
|
|
2093
|
+
points: "429,168,424,168,424,170,428,169,429,168",
|
|
2094
|
+
abbr: "ACWST"
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
timezone: "Australia/Hobart",
|
|
2098
|
+
country: "AU",
|
|
2099
|
+
points: "456,182,454,183,451,182,454,186,454,184,456,185,456,182",
|
|
2100
|
+
abbr: "AEDT"
|
|
2101
|
+
},
|
|
2102
|
+
{
|
|
2103
|
+
timezone: "Australia/Lindeman",
|
|
2104
|
+
country: "AU",
|
|
2105
|
+
points: "458,152,458,154,456,154,456,152",
|
|
2106
|
+
abbr: "AEST"
|
|
2107
|
+
},
|
|
2108
|
+
{
|
|
2109
|
+
timezone: "Australia/Lord_Howe",
|
|
2110
|
+
country: "AU",
|
|
2111
|
+
points: "472,168,472,170,470,170,470,168",
|
|
2112
|
+
abbr: "LHDT"
|
|
2113
|
+
},
|
|
2114
|
+
{
|
|
2115
|
+
timezone: "Australia/Melbourne",
|
|
2116
|
+
country: "AU",
|
|
2117
|
+
points: "448,173,446,172,446,178,449,179,451,178,453,179,458,177,455,175,451,175,448,173",
|
|
2118
|
+
abbr: "AEDT"
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
timezone: "Australia/Perth",
|
|
2122
|
+
country: "AU",
|
|
2123
|
+
points: "424,146,423,146,421,148,418,152,413,154,409,155,407,159,409,162,408,162,410,165,411,169,410,173,414,174,417,172,422,172,424,168,429,168,429,146,428,145,425,144,424,146",
|
|
2124
|
+
abbr: "AWST"
|
|
2125
|
+
},
|
|
2126
|
+
{
|
|
2127
|
+
timezone: "Australia/Sydney",
|
|
2128
|
+
country: "AU",
|
|
2129
|
+
points: "459,174,462,169,463,164,460,166,459,165,446,165,446,169,447,169,446,172,449,173,451,175,455,175,458,177,459,174",
|
|
2130
|
+
abbr: "AEDT"
|
|
2131
|
+
},
|
|
2132
|
+
{
|
|
2133
|
+
timezone: "Europe/Amsterdam",
|
|
2134
|
+
country: "NL",
|
|
2135
|
+
points: "258,53,260,52,258,51,258,53",
|
|
2136
|
+
abbr: "CET"
|
|
2137
|
+
},
|
|
2138
|
+
{
|
|
2139
|
+
timezone: "Europe/Andorra",
|
|
2140
|
+
country: "AD",
|
|
2141
|
+
points: "253,65,253,67,251,67,251,65",
|
|
2142
|
+
abbr: "CET"
|
|
2143
|
+
},
|
|
2144
|
+
{
|
|
2145
|
+
timezone: "Europe/Athens",
|
|
2146
|
+
country: "GR",
|
|
2147
|
+
points: "282,72,281,71,281,69,283,70,283,68,286,68,287,67,279,68,278,70,280,72,280,74,282,72",
|
|
2148
|
+
abbr: "EET"
|
|
2149
|
+
},
|
|
2150
|
+
{
|
|
2151
|
+
timezone: "Europe/Belgrade",
|
|
2152
|
+
country: "RS",
|
|
2153
|
+
points: "280,63,278,61,276,62,279,67,282,65,280,63",
|
|
2154
|
+
abbr: "CET"
|
|
2155
|
+
},
|
|
2156
|
+
{
|
|
2157
|
+
timezone: "Europe/Bucharest",
|
|
2158
|
+
country: "RO",
|
|
2159
|
+
points: "289,62,289,60,287,58,285,59,282,58,278,61,282,64,290,64,291,62,289,62",
|
|
2160
|
+
abbr: "EET"
|
|
2161
|
+
},
|
|
2162
|
+
{
|
|
2163
|
+
timezone: "Europe/Berlin",
|
|
2164
|
+
country: "DE",
|
|
2165
|
+
points: "260,57,261,59,268,59,269,57,267,55,271,54,270,50,267,49,265,50,264,49,260,50,258,53,260,57",
|
|
2166
|
+
abbr: "CET"
|
|
2167
|
+
},
|
|
2168
|
+
{
|
|
2169
|
+
timezone: "Europe/Budapest",
|
|
2170
|
+
country: "HU",
|
|
2171
|
+
points: "279,61,282,58,279,58,276,59,274,58,273,59,275,61,279,61",
|
|
2172
|
+
abbr: "CET"
|
|
2173
|
+
},
|
|
2174
|
+
{
|
|
2175
|
+
timezone: "Europe/Chisinau",
|
|
2176
|
+
country: "MD",
|
|
2177
|
+
points: "292,60,291,58,288,58,289,60,289,62,292,60",
|
|
2178
|
+
abbr: "EET"
|
|
2179
|
+
},
|
|
2180
|
+
{
|
|
2181
|
+
timezone: "Europe/Bratislava",
|
|
2182
|
+
country: "SK",
|
|
2183
|
+
points: "274,58,276,59,278,58,281,58,281,57,276,56,274,58",
|
|
2184
|
+
abbr: "CET"
|
|
2185
|
+
},
|
|
2186
|
+
{
|
|
2187
|
+
timezone: "Europe/Brussels",
|
|
2188
|
+
country: "BE",
|
|
2189
|
+
points: "254,54,256,56,259,55,257,53,254,54",
|
|
2190
|
+
abbr: "CET"
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
timezone: "Europe/Copenhagen",
|
|
2194
|
+
country: "DK",
|
|
2195
|
+
points: "263,48,265,47,265,45,261,46,261,48,263,48",
|
|
2196
|
+
abbr: "CET"
|
|
2197
|
+
},
|
|
2198
|
+
{
|
|
2199
|
+
timezone: "Europe/Dublin",
|
|
2200
|
+
country: "IE",
|
|
2201
|
+
points: "241,50,239,49,236,51,238,52,237,54,241,53,242,50,241,50",
|
|
2202
|
+
abbr: "GMT"
|
|
2203
|
+
},
|
|
2204
|
+
{
|
|
2205
|
+
timezone: "Europe/Gibraltar",
|
|
2206
|
+
country: "GI",
|
|
2207
|
+
points: "244,74,244,76,242,76,242,74",
|
|
2208
|
+
abbr: "CET"
|
|
2209
|
+
},
|
|
2210
|
+
{
|
|
2211
|
+
timezone: "Europe/Guernsey",
|
|
2212
|
+
country: "GG",
|
|
2213
|
+
points: "247,55,247,57,245,57,245,55",
|
|
2214
|
+
abbr: "GMT"
|
|
2215
|
+
},
|
|
2216
|
+
{
|
|
2217
|
+
timezone: "Europe/Helsinki",
|
|
2218
|
+
country: "FI",
|
|
2219
|
+
points: "287,41,289,41,294,38,292,36,292,34,290,32,292,31,290,30,291,28,287,28,285,30,281,30,283,31,285,35,282,36,279,38,282,42,287,41",
|
|
2220
|
+
abbr: "EET"
|
|
2221
|
+
},
|
|
2222
|
+
{
|
|
2223
|
+
timezone: "Europe/Isle_of_Man",
|
|
2224
|
+
country: "IM",
|
|
2225
|
+
points: "245,49,245,51,243,51,243,49",
|
|
2226
|
+
abbr: "GMT"
|
|
2227
|
+
},
|
|
2228
|
+
{
|
|
2229
|
+
timezone: "Europe/Istanbul",
|
|
2230
|
+
country: "TR",
|
|
2231
|
+
points: "301,74,304,74,309,73,312,74,311,72,312,70,309,67,303,68,299,67,295,67,293,68,286,69,288,72,288,74,291,75,293,74,296,75,301,74",
|
|
2232
|
+
abbr: "EET"
|
|
2233
|
+
},
|
|
2234
|
+
{
|
|
2235
|
+
timezone: "Europe/Jersey",
|
|
2236
|
+
country: "JE",
|
|
2237
|
+
points: "248,56,248,58,246,58,246,56",
|
|
2238
|
+
abbr: "GMT"
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
timezone: "Europe/Kaliningrad",
|
|
2242
|
+
country: "RU",
|
|
2243
|
+
points: "279,48,279,50,277,50,277,48",
|
|
2244
|
+
abbr: "EET"
|
|
2245
|
+
},
|
|
2246
|
+
{
|
|
2247
|
+
timezone: "Europe/Kyiv",
|
|
2248
|
+
country: "UA",
|
|
2249
|
+
points: "304,59,305,59,306,56,303,56,302,55,299,55,297,52,293,53,292,54,284,53,283,55,281,56,285,59,288,58,291,58,292,61,290,60,289,62,291,61,294,60,295,61,299,61,298,58,301,59,304,59",
|
|
2250
|
+
abbr: "EET"
|
|
2251
|
+
},
|
|
2252
|
+
{
|
|
2253
|
+
timezone: "Europe/Lisbon",
|
|
2254
|
+
country: "PT",
|
|
2255
|
+
points: "240,73,241,67,238,67,237,71,238,74,240,73",
|
|
2256
|
+
abbr: "WET"
|
|
2257
|
+
},
|
|
2258
|
+
{
|
|
2259
|
+
timezone: "Europe/Ljubljana",
|
|
2260
|
+
country: "SI",
|
|
2261
|
+
points: "272,60,269,60,271,62,272,60",
|
|
2262
|
+
abbr: "CET"
|
|
2263
|
+
},
|
|
2264
|
+
{
|
|
2265
|
+
timezone: "Europe/London",
|
|
2266
|
+
country: "GB",
|
|
2267
|
+
points: "246,53,246,54,242,55,245,55,251,54,252,53,250,52,248,49,247,47,245,47,247,45,244,45,246,44,243,44,243,45,242,47,243,49,246,49,246,50,245,52,243,53,245,54,246,53",
|
|
2268
|
+
abbr: "GMT"
|
|
2269
|
+
},
|
|
2270
|
+
{
|
|
2271
|
+
timezone: "Europe/Luxembourg",
|
|
2272
|
+
country: "LU",
|
|
2273
|
+
points: "260,55,260,57,258,57,258,55",
|
|
2274
|
+
abbr: "CET"
|
|
2275
|
+
},
|
|
2276
|
+
{
|
|
2277
|
+
timezone: "Europe/Madrid",
|
|
2278
|
+
country: "ES",
|
|
2279
|
+
points: "249,72,251,68,255,66,249,66,248,65,239,64,237,65,239,66,240,68,240,72,242,75,244,74,247,74,249,72",
|
|
2280
|
+
abbr: "CET"
|
|
2281
|
+
},
|
|
2282
|
+
{
|
|
2283
|
+
timezone: "Europe/Malta",
|
|
2284
|
+
country: "MT",
|
|
2285
|
+
points: "271,74,271,76,269,76,269,74",
|
|
2286
|
+
abbr: "CET"
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
timezone: "Europe/Mariehamn",
|
|
2290
|
+
country: "AX",
|
|
2291
|
+
points: "279,41,279,43,277,43,277,41",
|
|
2292
|
+
abbr: "EET"
|
|
2293
|
+
},
|
|
2294
|
+
{
|
|
2295
|
+
timezone: "Europe/Minsk",
|
|
2296
|
+
country: "BY",
|
|
2297
|
+
points: "292,53,294,51,296,51,293,49,292,47,289,47,287,48,286,50,283,50,283,53,292,53",
|
|
2298
|
+
abbr: "MSK"
|
|
2299
|
+
},
|
|
2300
|
+
{
|
|
2301
|
+
timezone: "Europe/Monaco",
|
|
2302
|
+
country: "MC",
|
|
2303
|
+
points: "261,63,261,65,259,65,259,63",
|
|
2304
|
+
abbr: "CET"
|
|
2305
|
+
},
|
|
2306
|
+
{
|
|
2307
|
+
timezone: "Europe/Moscow",
|
|
2308
|
+
country: "RU",
|
|
2309
|
+
points: "326,23,321,25,325,26,324,27,330,27,327,25,329,23,326,23",
|
|
2310
|
+
abbr: "MSK"
|
|
2311
|
+
},
|
|
2312
|
+
{
|
|
2313
|
+
timezone: "Europe/Moscow",
|
|
2314
|
+
country: "RU",
|
|
2315
|
+
points: "333,20,328,21,324,23,329,23,329,22,332,22,332,21,335,20,345,19,344,18,333,20",
|
|
2316
|
+
abbr: "MSK"
|
|
2317
|
+
},
|
|
2318
|
+
{
|
|
2319
|
+
timezone: "Europe/Moscow",
|
|
2320
|
+
country: "RU",
|
|
2321
|
+
points: "315,63,316,60,312,58,312,59,308,58,309,56,307,54,310,54,310,52,317,52,317,51,320,49,324,50,325,49,324,46,321,47,318,45,315,46,314,44,316,43,314,41,316,40,319,42,323,41,322,40,329,40,332,39,333,35,342,31,340,29,335,28,335,29,333,30,332,29,323,30,317,31,316,32,312,32,315,31,314,30,310,30,312,31,311,33,305,34,306,35,301,35,303,36,298,35,298,33,294,32,304,33,307,32,307,31,300,29,296,29,295,28,289,29,292,31,290,32,292,34,291,35,294,38,289,41,292,42,289,42,288,44,289,47,293,48,293,49,296,51,293,51,294,53,297,52,299,55,302,55,303,56,306,56,306,58,302,60,303,61,301,62,306,65,310,65,313,66,316,68,317,67,315,63",
|
|
2322
|
+
abbr: "MSK"
|
|
2323
|
+
},
|
|
2324
|
+
{
|
|
2325
|
+
timezone: "Europe/Oslo",
|
|
2326
|
+
country: "NO",
|
|
2327
|
+
points: "261,44,263,43,266,43,268,40,267,37,269,36,272,33,273,31,275,31,278,29,281,30,285,30,286,28,290,29,293,28,293,27,288,27,285,28,284,27,281,28,278,28,275,30,272,30,272,31,268,33,266,36,260,37,259,38,257,40,257,41,259,42,258,44,261,44",
|
|
2328
|
+
abbr: "CET"
|
|
2329
|
+
},
|
|
2330
|
+
{
|
|
2331
|
+
timezone: "Europe/Paris",
|
|
2332
|
+
country: "FR",
|
|
2333
|
+
points: "256,65,259,65,260,64,258,61,261,57,256,56,254,54,252,55,246,57,243,58,244,59,247,59,249,63,248,65,254,66,256,65",
|
|
2334
|
+
abbr: "CET"
|
|
2335
|
+
},
|
|
2336
|
+
{
|
|
2337
|
+
timezone: "Europe/Podgorica",
|
|
2338
|
+
country: "ME",
|
|
2339
|
+
points: "278,65,278,67,276,67,276,65",
|
|
2340
|
+
abbr: "CET"
|
|
2341
|
+
},
|
|
2342
|
+
{
|
|
2343
|
+
timezone: "Europe/Prague",
|
|
2344
|
+
country: "CZ",
|
|
2345
|
+
points: "271,57,274,57,276,56,275,55,271,54,267,55,271,57",
|
|
2346
|
+
abbr: "CET"
|
|
2347
|
+
},
|
|
2348
|
+
{
|
|
2349
|
+
timezone: "Europe/Riga",
|
|
2350
|
+
country: "LV",
|
|
2351
|
+
points: "281,45,279,47,285,47,287,48,289,47,288,45,285,44,283,46,281,45",
|
|
2352
|
+
abbr: "EET"
|
|
2353
|
+
},
|
|
2354
|
+
{
|
|
2355
|
+
timezone: "Europe/Rome",
|
|
2356
|
+
country: "IT",
|
|
2357
|
+
points: "273,69,276,69,272,67,270,67,267,63,269,62,269,60,264,61,262,60,259,61,260,64,262,63,264,64,265,66,272,69,274,71,273,69",
|
|
2358
|
+
abbr: "CET"
|
|
2359
|
+
},
|
|
2360
|
+
{
|
|
2361
|
+
timezone: "Europe/Samara",
|
|
2362
|
+
country: "RU",
|
|
2363
|
+
points: "320,49,317,52,321,53,323,49,320,49",
|
|
2364
|
+
abbr: "SAMT"
|
|
2365
|
+
},
|
|
2366
|
+
{
|
|
2367
|
+
timezone: "Europe/Samara",
|
|
2368
|
+
country: "RU",
|
|
2369
|
+
points: "325,47,325,44,322,44,321,47,325,47",
|
|
2370
|
+
abbr: "SAMT"
|
|
2371
|
+
},
|
|
2372
|
+
{
|
|
2373
|
+
timezone: "Europe/San_Marino",
|
|
2374
|
+
country: "SM",
|
|
2375
|
+
points: "268,63,268,65,266,65,266,63",
|
|
2376
|
+
abbr: "CET"
|
|
2377
|
+
},
|
|
2378
|
+
{
|
|
2379
|
+
timezone: "Europe/Sarajevo",
|
|
2380
|
+
country: "BA",
|
|
2381
|
+
points: "272,63,276,66,277,63,272,63",
|
|
2382
|
+
abbr: "CET"
|
|
2383
|
+
},
|
|
2384
|
+
{
|
|
2385
|
+
timezone: "Europe/Simferopol",
|
|
2386
|
+
country: "RU",
|
|
2387
|
+
points: "298,61,295,62,297,63,301,62,298,61",
|
|
2388
|
+
abbr: "MSK"
|
|
2389
|
+
},
|
|
2390
|
+
{
|
|
2391
|
+
timezone: "Europe/Skopje",
|
|
2392
|
+
country: "MK",
|
|
2393
|
+
points: "281,66,279,68,282,68,281,66",
|
|
2394
|
+
abbr: "CET"
|
|
2395
|
+
},
|
|
2396
|
+
{
|
|
2397
|
+
timezone: "Europe/Sofia",
|
|
2398
|
+
country: "BG",
|
|
2399
|
+
points: "289,66,290,64,282,64,281,66,282,68,286,68,289,66",
|
|
2400
|
+
abbr: "EET"
|
|
2401
|
+
},
|
|
2402
|
+
{
|
|
2403
|
+
timezone: "Europe/Stockholm",
|
|
2404
|
+
country: "SE",
|
|
2405
|
+
points: "267,47,268,48,272,47,274,43,274,41,275,38,279,36,280,34,284,34,283,31,278,29,278,30,274,30,272,31,273,32,270,33,270,36,267,37,268,41,266,42,267,44,267,47",
|
|
2406
|
+
abbr: "CET"
|
|
2407
|
+
},
|
|
2408
|
+
{
|
|
2409
|
+
timezone: "Europe/Tallinn",
|
|
2410
|
+
country: "EE",
|
|
2411
|
+
points: "283,43,285,44,289,45,289,43,286,42,283,43",
|
|
2412
|
+
abbr: "EET"
|
|
2413
|
+
},
|
|
2414
|
+
{
|
|
2415
|
+
timezone: "Europe/Tirane",
|
|
2416
|
+
country: "AL",
|
|
2417
|
+
points: "278,70,278,68,279,66,277,66,278,70",
|
|
2418
|
+
abbr: "CET"
|
|
2419
|
+
},
|
|
2420
|
+
{
|
|
2421
|
+
timezone: "Europe/Kyiv",
|
|
2422
|
+
country: "UA",
|
|
2423
|
+
points: "282,56,282,58,280,58,280,56",
|
|
2424
|
+
abbr: "EET"
|
|
2425
|
+
},
|
|
2426
|
+
{
|
|
2427
|
+
timezone: "Europe/Vaduz",
|
|
2428
|
+
country: "LI",
|
|
2429
|
+
points: "264,59,264,61,262,61,262,59",
|
|
2430
|
+
abbr: "CET"
|
|
2431
|
+
},
|
|
2432
|
+
{
|
|
2433
|
+
timezone: "Europe/Vatican",
|
|
2434
|
+
country: "VA",
|
|
2435
|
+
points: "268,66,268,68,266,68,266,66",
|
|
2436
|
+
abbr: "CET"
|
|
2437
|
+
},
|
|
2438
|
+
{
|
|
2439
|
+
timezone: "Europe/Vienna",
|
|
2440
|
+
country: "AT",
|
|
2441
|
+
points: "263,59,264,60,267,60,270,61,273,60,273,57,268,58,268,59,263,59",
|
|
2442
|
+
abbr: "CET"
|
|
2443
|
+
},
|
|
2444
|
+
{
|
|
2445
|
+
timezone: "Europe/Vilnius",
|
|
2446
|
+
country: "LT",
|
|
2447
|
+
points: "279,47,283,50,286,50,287,48,285,47,279,47",
|
|
2448
|
+
abbr: "EET"
|
|
2449
|
+
},
|
|
2450
|
+
{
|
|
2451
|
+
timezone: "Europe/Volgograd",
|
|
2452
|
+
country: "RU",
|
|
2453
|
+
points: "315,57,317,55,320,54,320,53,317,52,310,52,310,54,307,54,309,56,308,58,311,59,313,58,315,61,317,62,316,59,315,57",
|
|
2454
|
+
abbr: "MSK"
|
|
2455
|
+
},
|
|
2456
|
+
{
|
|
2457
|
+
timezone: "Europe/Volgograd",
|
|
2458
|
+
country: "RU",
|
|
2459
|
+
points: "317,40,314,41,315,42,314,44,316,45,315,46,318,45,321,47,322,44,325,44,324,41,321,42,317,42,317,40",
|
|
2460
|
+
abbr: "MSK"
|
|
2461
|
+
},
|
|
2462
|
+
{
|
|
2463
|
+
timezone: "Europe/Warsaw",
|
|
2464
|
+
country: "PL",
|
|
2465
|
+
points: "283,55,284,54,282,52,283,51,282,49,277,50,277,49,270,50,271,54,276,56,280,56,282,57,283,55",
|
|
2466
|
+
abbr: "CET"
|
|
2467
|
+
},
|
|
2468
|
+
{
|
|
2469
|
+
timezone: "Europe/Zagreb",
|
|
2470
|
+
country: "HR",
|
|
2471
|
+
points: "277,63,277,62,273,60,270,62,272,65,274,65,272,62,277,63",
|
|
2472
|
+
abbr: "CET"
|
|
2473
|
+
},
|
|
2474
|
+
{
|
|
2475
|
+
timezone: "Europe/Kyiv",
|
|
2476
|
+
country: "UA",
|
|
2477
|
+
points: "298,59,299,61,302,59,299,58,298,59",
|
|
2478
|
+
abbr: "EET"
|
|
2479
|
+
},
|
|
2480
|
+
{
|
|
2481
|
+
timezone: "Europe/Zurich",
|
|
2482
|
+
country: "CH",
|
|
2483
|
+
points: "259,61,262,60,263,61,265,60,263,59,260,59,259,61",
|
|
2484
|
+
abbr: "CET"
|
|
2485
|
+
},
|
|
2486
|
+
{
|
|
2487
|
+
timezone: "Indian/Antananarivo",
|
|
2488
|
+
country: "MG",
|
|
2489
|
+
points: "317,142,311,148,312,152,309,157,311,159,315,160,317,153,320,146",
|
|
2490
|
+
abbr: "EAT"
|
|
2491
|
+
},
|
|
2492
|
+
{
|
|
2493
|
+
timezone: "Indian/Chagos",
|
|
2494
|
+
country: "IO",
|
|
2495
|
+
points: "352,134,352,136,350,136,350,134",
|
|
2496
|
+
abbr: "IOT"
|
|
2497
|
+
},
|
|
2498
|
+
{
|
|
2499
|
+
timezone: "Indian/Christmas",
|
|
2500
|
+
country: "CX",
|
|
2501
|
+
points: "398,138,398,140,396,140,396,138",
|
|
2502
|
+
abbr: "CXT"
|
|
2503
|
+
},
|
|
2504
|
+
{
|
|
2505
|
+
timezone: "Indian/Cocos",
|
|
2506
|
+
country: "CC",
|
|
2507
|
+
points: "386,141,386,143,384,143,384,141",
|
|
2508
|
+
abbr: "CCT"
|
|
2509
|
+
},
|
|
2510
|
+
{
|
|
2511
|
+
timezone: "Indian/Comoro",
|
|
2512
|
+
country: "KM",
|
|
2513
|
+
points: "311,140,311,142,309,142,309,140",
|
|
2514
|
+
abbr: "EAT"
|
|
2515
|
+
},
|
|
2516
|
+
{
|
|
2517
|
+
timezone: "Indian/Kerguelen",
|
|
2518
|
+
country: "TF",
|
|
2519
|
+
points: "349,193,349,195,347,195,347,193",
|
|
2520
|
+
abbr: "TFT"
|
|
2521
|
+
},
|
|
2522
|
+
{
|
|
2523
|
+
timezone: "Indian/Mahe",
|
|
2524
|
+
country: "SC",
|
|
2525
|
+
points: "328,130,328,132,326,132,326,130",
|
|
2526
|
+
abbr: "SCT"
|
|
2527
|
+
},
|
|
2528
|
+
{
|
|
2529
|
+
timezone: "Indian/Maldives",
|
|
2530
|
+
country: "MV",
|
|
2531
|
+
points: "353,118,353,120,351,120,351,118",
|
|
2532
|
+
abbr: "MVT"
|
|
2533
|
+
},
|
|
2534
|
+
{
|
|
2535
|
+
timezone: "Indian/Mauritius",
|
|
2536
|
+
country: "MU",
|
|
2537
|
+
points: "331,152,331,154,329,154,329,152",
|
|
2538
|
+
abbr: "MUT"
|
|
2539
|
+
},
|
|
2540
|
+
{
|
|
2541
|
+
timezone: "Indian/Mayotte",
|
|
2542
|
+
country: "YT",
|
|
2543
|
+
points: "314,142,314,144,312,144,312,142",
|
|
2544
|
+
abbr: "EAT"
|
|
2545
|
+
},
|
|
2546
|
+
{
|
|
2547
|
+
timezone: "Indian/Reunion",
|
|
2548
|
+
country: "RE",
|
|
2549
|
+
points: "328,153,328,155,326,155,326,153",
|
|
2550
|
+
abbr: "RET"
|
|
2551
|
+
},
|
|
2552
|
+
{
|
|
2553
|
+
timezone: "Pacific/Apia",
|
|
2554
|
+
country: "WS",
|
|
2555
|
+
points: "12,143,12,145,10,145,10,143",
|
|
2556
|
+
abbr: "WSDT"
|
|
2557
|
+
},
|
|
2558
|
+
{
|
|
2559
|
+
timezone: "Pacific/Auckland",
|
|
2560
|
+
country: "NZ",
|
|
2561
|
+
points: "485,190,487,189,488,187,490,186,492,183,490,181,487,185,484,186,481,189,485,190",
|
|
2562
|
+
abbr: "NZDT"
|
|
2563
|
+
},
|
|
2564
|
+
{
|
|
2565
|
+
timezone: "Pacific/Auckland",
|
|
2566
|
+
country: "NZ",
|
|
2567
|
+
points: "495,181,498,177,495,178,492,174,490,173,493,178,491,180,493,181,494,183,495,181",
|
|
2568
|
+
abbr: "NZDT"
|
|
2569
|
+
},
|
|
2570
|
+
{
|
|
2571
|
+
timezone: "Pacific/Chatham",
|
|
2572
|
+
country: "NZ",
|
|
2573
|
+
points: "6,185,6,187,4,187,4,185",
|
|
2574
|
+
abbr: "CHADT"
|
|
2575
|
+
},
|
|
2576
|
+
{
|
|
2577
|
+
timezone: "Pacific/Easter",
|
|
2578
|
+
country: "CL",
|
|
2579
|
+
points: "99,162,99,164,97,164,97,162",
|
|
2580
|
+
abbr: "EAST"
|
|
2581
|
+
},
|
|
2582
|
+
{
|
|
2583
|
+
timezone: "Pacific/Enderbury",
|
|
2584
|
+
country: "KI",
|
|
2585
|
+
points: "13,128,13,130,11,130,11,128",
|
|
2586
|
+
abbr: "PHOT"
|
|
2587
|
+
},
|
|
2588
|
+
{
|
|
2589
|
+
timezone: "Pacific/Fakaofo",
|
|
2590
|
+
country: "TK",
|
|
2591
|
+
points: "13,137,13,139,11,139,11,137",
|
|
2592
|
+
abbr: "TKT"
|
|
2593
|
+
},
|
|
2594
|
+
{
|
|
2595
|
+
timezone: "Pacific/Efate",
|
|
2596
|
+
country: "VU",
|
|
2597
|
+
points: "485,149,485,151,483,151,483,149",
|
|
2598
|
+
abbr: "VUT"
|
|
2599
|
+
},
|
|
2600
|
+
{
|
|
2601
|
+
timezone: "Pacific/Fiji",
|
|
2602
|
+
country: "FJ",
|
|
2603
|
+
points: "499,149,499,151,497,151,497,149",
|
|
2604
|
+
abbr: "FJST"
|
|
2605
|
+
},
|
|
2606
|
+
{
|
|
2607
|
+
timezone: "Pacific/Funafuti",
|
|
2608
|
+
country: "TV",
|
|
2609
|
+
points: "500,136,500,138,498,138,498,136",
|
|
2610
|
+
abbr: "TVT"
|
|
2611
|
+
},
|
|
2612
|
+
{
|
|
2613
|
+
timezone: "Pacific/Galapagos",
|
|
2614
|
+
country: "EC",
|
|
2615
|
+
points: "127,125,127,127,125,127,125,125",
|
|
2616
|
+
abbr: "GALT"
|
|
2617
|
+
},
|
|
2618
|
+
{
|
|
2619
|
+
timezone: "Pacific/Gambier",
|
|
2620
|
+
country: "PF",
|
|
2621
|
+
points: "64,156,64,158,62,158,62,156",
|
|
2622
|
+
abbr: "GAMT"
|
|
2623
|
+
},
|
|
2624
|
+
{
|
|
2625
|
+
timezone: "Pacific/Kwajalein",
|
|
2626
|
+
country: "MH",
|
|
2627
|
+
points: "483,111,483,113,481,113,481,111",
|
|
2628
|
+
abbr: "MHT"
|
|
2629
|
+
},
|
|
2630
|
+
{
|
|
2631
|
+
timezone: "Pacific/Guadalcanal",
|
|
2632
|
+
country: "SB",
|
|
2633
|
+
points: "474,137,474,139,472,139,472,137",
|
|
2634
|
+
abbr: "SBT"
|
|
2635
|
+
},
|
|
2636
|
+
{
|
|
2637
|
+
timezone: "Pacific/Guam",
|
|
2638
|
+
country: "GU",
|
|
2639
|
+
points: "452,105,452,107,450,107,450,105",
|
|
2640
|
+
abbr: "ChST"
|
|
2641
|
+
},
|
|
2642
|
+
{
|
|
2643
|
+
timezone: "Pacific/Honolulu",
|
|
2644
|
+
country: "US",
|
|
2645
|
+
points: "32,94,32,96,30,96,30,94",
|
|
2646
|
+
abbr: "HST"
|
|
2647
|
+
},
|
|
2648
|
+
{
|
|
2649
|
+
timezone: "Pacific/Honolulu",
|
|
2650
|
+
country: "UM",
|
|
2651
|
+
points: "16,101,16,103,14,103,14,101",
|
|
2652
|
+
abbr: "HST"
|
|
2653
|
+
},
|
|
2654
|
+
{
|
|
2655
|
+
timezone: "Pacific/Kiritimati",
|
|
2656
|
+
country: "KI",
|
|
2657
|
+
points: "32,121,32,123,30,123,30,121",
|
|
2658
|
+
abbr: "LINT"
|
|
2659
|
+
},
|
|
2660
|
+
{
|
|
2661
|
+
timezone: "Pacific/Kosrae",
|
|
2662
|
+
country: "FM",
|
|
2663
|
+
points: "477,117,477,119,475,119,475,117",
|
|
2664
|
+
abbr: "KOST"
|
|
2665
|
+
},
|
|
2666
|
+
{
|
|
2667
|
+
timezone: "Pacific/Majuro",
|
|
2668
|
+
country: "MH",
|
|
2669
|
+
points: "489,114,489,116,487,116,487,114",
|
|
2670
|
+
abbr: "MHT"
|
|
2671
|
+
},
|
|
2672
|
+
{
|
|
2673
|
+
timezone: "Pacific/Midway",
|
|
2674
|
+
country: "UM",
|
|
2675
|
+
points: "5,85,5,87,3,87,3,85",
|
|
2676
|
+
abbr: "SST"
|
|
2677
|
+
},
|
|
2678
|
+
{
|
|
2679
|
+
timezone: "Pacific/Marquesas",
|
|
2680
|
+
country: "PF",
|
|
2681
|
+
points: "57,137,57,139,55,139,55,137",
|
|
2682
|
+
abbr: "MART"
|
|
2683
|
+
},
|
|
2684
|
+
{
|
|
2685
|
+
timezone: "Pacific/Nauru",
|
|
2686
|
+
country: "NR",
|
|
2687
|
+
points: "483,125,483,127,481,127,481,125",
|
|
2688
|
+
abbr: "NRT"
|
|
2689
|
+
},
|
|
2690
|
+
{
|
|
2691
|
+
timezone: "Pacific/Niue",
|
|
2692
|
+
country: "NU",
|
|
2693
|
+
points: "15,150,15,152,13,152,13,150",
|
|
2694
|
+
abbr: "NUT"
|
|
2695
|
+
},
|
|
2696
|
+
{
|
|
2697
|
+
timezone: "Pacific/Norfolk",
|
|
2698
|
+
country: "NF",
|
|
2699
|
+
points: "484,164,484,166,482,166,482,164",
|
|
2700
|
+
abbr: "NFT"
|
|
2701
|
+
},
|
|
2702
|
+
{
|
|
2703
|
+
timezone: "Pacific/Noumea",
|
|
2704
|
+
country: "NC",
|
|
2705
|
+
points: "482,155,482,157,480,157,480,155",
|
|
2706
|
+
abbr: "NCT"
|
|
2707
|
+
},
|
|
2708
|
+
{
|
|
2709
|
+
timezone: "Pacific/Pago_Pago",
|
|
2710
|
+
country: "AS",
|
|
2711
|
+
points: "14,144,14,146,12,146,12,144",
|
|
2712
|
+
abbr: "SST"
|
|
2713
|
+
},
|
|
2714
|
+
{
|
|
2715
|
+
timezone: "Pacific/Palau",
|
|
2716
|
+
country: "PW",
|
|
2717
|
+
points: "438,114,438,116,436,116,436,114",
|
|
2718
|
+
abbr: "PWT"
|
|
2719
|
+
},
|
|
2720
|
+
{
|
|
2721
|
+
timezone: "Pacific/Pitcairn",
|
|
2722
|
+
country: "PN",
|
|
2723
|
+
points: "70,159,70,161,68,161,68,159",
|
|
2724
|
+
abbr: "PST"
|
|
2725
|
+
},
|
|
2726
|
+
{
|
|
2727
|
+
timezone: "Pacific/Port_Moresby",
|
|
2728
|
+
country: "PG",
|
|
2729
|
+
points: "446,129,451,131,455,134,453,135,458,139,453,140,451,136,449,138,446,138",
|
|
2730
|
+
abbr: "PGT"
|
|
2731
|
+
},
|
|
2732
|
+
{
|
|
2733
|
+
timezone: "Pacific/Rarotonga",
|
|
2734
|
+
country: "CK",
|
|
2735
|
+
points: "29,153,29,155,27,155,27,153",
|
|
2736
|
+
abbr: "CKT"
|
|
2737
|
+
},
|
|
2738
|
+
{
|
|
2739
|
+
timezone: "Pacific/Saipan",
|
|
2740
|
+
country: "MP",
|
|
2741
|
+
points: "453,103,453,105,451,105,451,103",
|
|
2742
|
+
abbr: "ChST"
|
|
2743
|
+
},
|
|
2744
|
+
{
|
|
2745
|
+
timezone: "Pacific/Tahiti",
|
|
2746
|
+
country: "PF",
|
|
2747
|
+
points: "43,148,43,150,41,150,41,148",
|
|
2748
|
+
abbr: "TAHT"
|
|
2749
|
+
},
|
|
2750
|
+
{
|
|
2751
|
+
timezone: "Pacific/Tarawa",
|
|
2752
|
+
country: "KI",
|
|
2753
|
+
points: "491,122,491,124,489,124,489,122",
|
|
2754
|
+
abbr: "GILT"
|
|
2755
|
+
},
|
|
2756
|
+
{
|
|
2757
|
+
timezone: "Pacific/Tongatapu",
|
|
2758
|
+
country: "TO",
|
|
2759
|
+
points: "8,153,8,155,6,155,6,153",
|
|
2760
|
+
abbr: "TOT"
|
|
2761
|
+
},
|
|
2762
|
+
{
|
|
2763
|
+
timezone: "Pacific/Wake",
|
|
2764
|
+
country: "UM",
|
|
2765
|
+
points: "482,97,482,99,480,99,480,97",
|
|
2766
|
+
abbr: "WAKT"
|
|
2767
|
+
},
|
|
2768
|
+
{
|
|
2769
|
+
timezone: "Pacific/Wallis",
|
|
2770
|
+
country: "WF",
|
|
2771
|
+
points: "6,142,6,144,4,144,4,142",
|
|
2772
|
+
abbr: "WFT"
|
|
2773
|
+
}
|
|
2774
|
+
].map((rg) => ({
|
|
2775
|
+
...rg,
|
|
2776
|
+
offset: zoneFromRegion(rg).offset
|
|
2777
|
+
}));
|
|
2778
|
+
|
|
2779
|
+
// src/timezone-picker.ts
|
|
2780
|
+
var { fragment, div, option, input, datalist } = elements;
|
|
2781
|
+
var SVG_XMLNS = "http://www.w3.org/2000/svg";
|
|
2782
|
+
var DATALIST_ID = "-timezone-list-";
|
|
2783
|
+
var regionKey = Symbol("region");
|
|
2784
|
+
var timezoneMap = () => {
|
|
2785
|
+
const svg = document.createElementNS(SVG_XMLNS, "svg");
|
|
2786
|
+
svg.setAttribute("viewBox", "0 0 500 250");
|
|
2787
|
+
svg.setAttribute("alt", "world timezone map");
|
|
2788
|
+
svg.append(...regions.map((region) => {
|
|
2789
|
+
const polygon = document.createElementNS(SVG_XMLNS, "polygon");
|
|
2790
|
+
const title = document.createElementNS(SVG_XMLNS, "title");
|
|
2791
|
+
title.textContent = regionId(region);
|
|
2792
|
+
polygon.append(title);
|
|
2793
|
+
polygon.setAttribute("points", region.points);
|
|
2794
|
+
polygon[regionKey] = region;
|
|
2795
|
+
return polygon;
|
|
2796
|
+
}));
|
|
2797
|
+
return svg;
|
|
2798
|
+
};
|
|
2799
|
+
var timezoneDatalist = datalist({ id: DATALIST_ID }, ...timezones.map((tz) => option({ value: zoneId(tz) })));
|
|
2800
|
+
|
|
2801
|
+
class TimezonePicker extends Component {
|
|
2802
|
+
value = localTimezone.name;
|
|
2803
|
+
static preferredTagName = "tosijs-timezone-picker";
|
|
2804
|
+
static initAttributes = {
|
|
2805
|
+
timezone: localTimezone.name
|
|
2806
|
+
};
|
|
2807
|
+
static shadowStyleSpec = {
|
|
2808
|
+
":host": {
|
|
2809
|
+
display: "flex",
|
|
2810
|
+
flexDirection: "column",
|
|
2811
|
+
position: "relative",
|
|
2812
|
+
width: `calc(500px * var(--scale, 1))`,
|
|
2813
|
+
height: `calc(250px * var(--scale, 1))`,
|
|
2814
|
+
overflow: "hidden"
|
|
2815
|
+
},
|
|
2816
|
+
".map": {
|
|
2817
|
+
background: "var(--map-ocean, #79b)",
|
|
2818
|
+
flex: "1 1 auto",
|
|
2819
|
+
overflow: "hidden"
|
|
2820
|
+
},
|
|
2821
|
+
".map, svg": {
|
|
2822
|
+
width: "100%",
|
|
2823
|
+
height: "100%"
|
|
2824
|
+
},
|
|
2825
|
+
polygon: {
|
|
2826
|
+
transition: "var(--transition, ease-out 0.3s)",
|
|
2827
|
+
fill: "var(--map-land, #555)",
|
|
2828
|
+
stroke: "var(--map-land, #555)",
|
|
2829
|
+
strokeWidth: 0.5
|
|
2830
|
+
},
|
|
2831
|
+
"polygon.hover": {
|
|
2832
|
+
fill: "var(--hover-color, #888)",
|
|
2833
|
+
stroke: "var(--hover-color, #888)"
|
|
2834
|
+
},
|
|
2835
|
+
"polygon.active": {
|
|
2836
|
+
fill: `var(--active-color, #ccc)`,
|
|
2837
|
+
stroke: `var(--active-color, #ccc)`
|
|
2838
|
+
},
|
|
2839
|
+
"polygon.offset": {
|
|
2840
|
+
filter: `var(--offset-filter, brightness(0.75))`
|
|
2841
|
+
},
|
|
2842
|
+
".zone-name": {
|
|
2843
|
+
fontFamily: "var(--font-family, Sans-serif)",
|
|
2844
|
+
position: "absolute",
|
|
2845
|
+
bottom: `var(--inset, 10px)`,
|
|
2846
|
+
left: `var(--inset, 10px)`,
|
|
2847
|
+
right: `var(--inset, 10px)`,
|
|
2848
|
+
color: "var(--font-color, white)",
|
|
2849
|
+
fontSize: "var(--font-size, 16px)",
|
|
2850
|
+
padding: `calc(var(--padding, 10px))`,
|
|
2851
|
+
background: "var(--input-bg, #fff4)",
|
|
2852
|
+
borderRadius: "var(--input-radius, 5px)",
|
|
2853
|
+
textAlign: "center",
|
|
2854
|
+
border: "none",
|
|
2855
|
+
outline: "none",
|
|
2856
|
+
width: "calc(100% - var(--inset, 10px) * 4)"
|
|
2857
|
+
}
|
|
2858
|
+
};
|
|
2859
|
+
get zone() {
|
|
2860
|
+
return zoneFromName(this.timezone);
|
|
2861
|
+
}
|
|
2862
|
+
get region() {
|
|
2863
|
+
return regions.find((rg) => rg.timezone === this.timezone);
|
|
2864
|
+
}
|
|
2865
|
+
get zoneId() {
|
|
2866
|
+
return zoneId(this.zone);
|
|
2867
|
+
}
|
|
2868
|
+
content = fragment(div({ class: "map", part: "map" }), input({
|
|
2869
|
+
title: "timezone name, including GMT offset",
|
|
2870
|
+
placeholder: "region/city GMT+x",
|
|
2871
|
+
class: "zone-name",
|
|
2872
|
+
part: "zoneName"
|
|
2873
|
+
}), timezoneDatalist);
|
|
2874
|
+
hoverRegion = (event) => {
|
|
2875
|
+
const region = event.target[regionKey];
|
|
2876
|
+
this.updateRegions(region, "hover");
|
|
2877
|
+
};
|
|
2878
|
+
pickRegion = (event) => {
|
|
2879
|
+
const { zoneName } = this.parts;
|
|
2880
|
+
const region = event.target[regionKey];
|
|
2881
|
+
if (region === undefined) {
|
|
2882
|
+
return;
|
|
2883
|
+
}
|
|
2884
|
+
const zone = zoneFromRegion(region);
|
|
2885
|
+
if (zone !== undefined) {
|
|
2886
|
+
zoneName.value = this.zoneId;
|
|
2887
|
+
this.value = this.timezone = zone.name;
|
|
2888
|
+
}
|
|
2889
|
+
};
|
|
2890
|
+
pickZone = (event) => {
|
|
2891
|
+
const { zoneName } = this.parts;
|
|
2892
|
+
const id = event.target.value;
|
|
2893
|
+
const zone = zoneFromId(id);
|
|
2894
|
+
if (zone !== undefined) {
|
|
2895
|
+
this.value = this.timezone = zone.name;
|
|
2896
|
+
} else {
|
|
2897
|
+
zoneName.value = this.zoneId;
|
|
2898
|
+
}
|
|
2899
|
+
};
|
|
2900
|
+
focusInput = (event) => {
|
|
2901
|
+
event.target.select();
|
|
2902
|
+
};
|
|
2903
|
+
connectedCallback() {
|
|
2904
|
+
super.connectedCallback();
|
|
2905
|
+
const { map, zoneName } = this.parts;
|
|
2906
|
+
zoneName.setAttribute("list", DATALIST_ID);
|
|
2907
|
+
if (map.querySelector("svg") === null) {
|
|
2908
|
+
map.append(timezoneMap());
|
|
2909
|
+
}
|
|
2910
|
+
map.addEventListener("mouseover", this.hoverRegion);
|
|
2911
|
+
map.addEventListener("click", this.pickRegion);
|
|
2912
|
+
zoneName.addEventListener("change", this.pickZone);
|
|
2913
|
+
zoneName.addEventListener("focus", this.focusInput);
|
|
2914
|
+
}
|
|
2915
|
+
validate() {
|
|
2916
|
+
if (this.value !== this.timezone) {
|
|
2917
|
+
const newZone = zoneFromName(this.value);
|
|
2918
|
+
if (newZone === undefined) {
|
|
2919
|
+
this.value = this.timezone;
|
|
2920
|
+
}
|
|
2921
|
+
}
|
|
2922
|
+
}
|
|
2923
|
+
updateRegions(region, className) {
|
|
2924
|
+
const { map } = this.parts;
|
|
2925
|
+
[...map.querySelectorAll(`polygon`)].forEach((polygon) => {
|
|
2926
|
+
const rg = polygon[regionKey];
|
|
2927
|
+
polygon.classList.toggle(className, rg === region || rg.offset === region?.offset);
|
|
2928
|
+
});
|
|
2929
|
+
}
|
|
2930
|
+
render() {
|
|
2931
|
+
super.render();
|
|
2932
|
+
this.validate();
|
|
2933
|
+
this.updateRegions(this.region, "active");
|
|
2934
|
+
const { zoneName } = this.parts;
|
|
2935
|
+
zoneName.value = this.zoneId;
|
|
2936
|
+
}
|
|
2937
|
+
}
|
|
2938
|
+
var timezonePicker = TimezonePicker.elementCreator();
|
|
2939
|
+
export {
|
|
2940
|
+
timezones,
|
|
2941
|
+
timezonePicker,
|
|
2942
|
+
regions,
|
|
2943
|
+
localTimezone,
|
|
2944
|
+
TimezonePicker
|
|
2945
|
+
};
|
|
2946
|
+
|
|
2947
|
+
//# debugId=832AA248FC85A88064756E2164756E21
|