1 | // Copyright (C) 2021 The Qt Company Ltd. |
2 | // Copyright (C) 2013 John Layt <jlayt@kde.org> |
3 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
4 | |
5 | |
6 | #ifndef QTIMEZONEPRIVATE_DATA_P_H |
7 | #define QTIMEZONEPRIVATE_DATA_P_H |
8 | |
9 | // |
10 | // W A R N I N G |
11 | // ------------- |
12 | // |
13 | // This file is not part of the Qt API. It exists for the convenience |
14 | // of internal files. This header file may change from version to version |
15 | // without notice, or even be removed. |
16 | // |
17 | // We mean it. |
18 | // |
19 | |
20 | #include <QtCore/private/qglobal_p.h> |
21 | #include "qbytearrayview.h" |
22 | #include "qstring.h" |
23 | |
24 | QT_BEGIN_NAMESPACE |
25 | |
26 | /* |
27 | Windows Zone ID support, included in default base class build so can be used on all platforms, |
28 | e.g. an app running on Linux may need to communicate with a Windows Outlook server. These |
29 | tables can also be used to look-up Region Codes and UTC Offsets on platforms that don't directly |
30 | support them., e.g. Mac does not support availableTimeZones() filtering by region or offset. |
31 | |
32 | Another data table is provided for generic UTC+00:00 format time zones to be used as a |
33 | fall-back if no system time zones are available (QT_NO_SYSTEMLOCALE is set) or for QDateTimes |
34 | with a QT:Spec of OffsetFromUTC |
35 | |
36 | These tables are automatically adapted from the CLDR supplemental/windowsZones.xml data file |
37 | using a script in qtbase/util/locale_database. Please do not edit this data directly. In the |
38 | future if ICU is made a hard dependency then the ICU resource can be used directly and this |
39 | table removed |
40 | */ |
41 | |
42 | struct QZoneData |
43 | { |
44 | quint16 windowsIdKey; // Windows ID Key |
45 | quint16 territory; // Territory of IANA ID's, AnyTerritory means No Territory |
46 | quint16 ianaIdIndex; // All IANA ID's for the Windows ID and Country, space separated |
47 | inline QLatin1StringView id() const; // Space-joined list of IANA IDs |
48 | inline auto ids() const { return id().tokenize(needle: u' '); } |
49 | }; |
50 | |
51 | struct QWindowsData |
52 | { |
53 | quint16 windowsIdKey; // Windows ID Key |
54 | quint16 windowsIdIndex; // Windows ID Literal |
55 | quint16 ianaIdIndex; // IANA IDs for the Windows ID |
56 | qint32 offsetFromUtc; // Standard Time Offset from UTC, used for quick look-ups |
57 | inline QByteArrayView windowsId() const; |
58 | inline QByteArrayView ianaId() const; // Space-joined list of IANA IDs |
59 | }; |
60 | |
61 | struct QUtcData |
62 | { |
63 | quint16 ianaIdIndex; // IANA IDs |
64 | qint32 offsetFromUtc; // Offset form UTC is seconds |
65 | inline QByteArrayView id() const; // Space-joined list of IANA IDs |
66 | }; |
67 | |
68 | /* |
69 | COPYRIGHT AND PERMISSION NOTICE |
70 | |
71 | Copyright © 1991-2012 Unicode, Inc. All rights reserved. Distributed under |
72 | the Terms of Use in http://www.unicode.org/copyright.html. |
73 | |
74 | Permission is hereby granted, free of charge, to any person obtaining a |
75 | copy of the Unicode data files and any associated documentation (the "Data |
76 | Files") or Unicode software and any associated documentation (the "Software") |
77 | to deal in the Data Files or Software without restriction, including without |
78 | limitation the rights to use, copy, modify, merge, publish, distribute, and/or |
79 | sell copies of the Data Files or Software, and to permit persons to whom the |
80 | Data Files or Software are furnished to do so, provided that (a) the above |
81 | copyright notice(s) and this permission notice appear with all copies of the |
82 | Data Files or Software, (b) both the above copyright notice(s) and this |
83 | permission notice appear in associated documentation, and (c) there is clear |
84 | notice in each modified Data File or in the Software as well as in the |
85 | documentation associated with the Data File(s) or Software that the data or |
86 | software has been modified. |
87 | */ |
88 | |
89 | // GENERATED PART STARTS HERE |
90 | |
91 | /* |
92 | This part of the file was generated on 2023-08-01 from the |
93 | Common Locale Data Repository v43 file supplemental/windowsZones.xml |
94 | |
95 | http://www.unicode.org/cldr/ |
96 | |
97 | Do not edit this code: run cldr2qtimezone.py on updated (or |
98 | edited) CLDR data; see qtbase/util/locale_database/. |
99 | */ |
100 | |
101 | // Windows ID Key, Territory Enum, IANA ID Index |
102 | static constexpr QZoneData zoneDataTable[] = { |
103 | { .windowsIdKey: 1, .territory: 1, .ianaIdIndex: 0 }, // Afghanistan Standard Time / Afghanistan |
104 | { .windowsIdKey: 2, .territory: 248, .ianaIdIndex: 11 }, // Alaskan Standard Time / United States |
105 | { .windowsIdKey: 3, .territory: 248, .ianaIdIndex: 106 }, // Aleutian Standard Time / United States |
106 | { .windowsIdKey: 4, .territory: 193, .ianaIdIndex: 119 }, // Altai Standard Time / Russia |
107 | { .windowsIdKey: 5, .territory: 19, .ianaIdIndex: 132 }, // Arab Standard Time / Bahrain |
108 | { .windowsIdKey: 5, .territory: 127, .ianaIdIndex: 145 }, // Arab Standard Time / Kuwait |
109 | { .windowsIdKey: 5, .territory: 190, .ianaIdIndex: 157 }, // Arab Standard Time / Qatar |
110 | { .windowsIdKey: 5, .territory: 205, .ianaIdIndex: 168 }, // Arab Standard Time / Saudi Arabia |
111 | { .windowsIdKey: 5, .territory: 259, .ianaIdIndex: 180 }, // Arab Standard Time / Yemen |
112 | { .windowsIdKey: 6, .territory: 0, .ianaIdIndex: 190 }, // Arabian Standard Time / AnyTerritory |
113 | { .windowsIdKey: 6, .territory: 176, .ianaIdIndex: 200 }, // Arabian Standard Time / Oman |
114 | { .windowsIdKey: 6, .territory: 245, .ianaIdIndex: 212 }, // Arabian Standard Time / United Arab Emirates |
115 | { .windowsIdKey: 7, .territory: 113, .ianaIdIndex: 223 }, // Arabic Standard Time / Iraq |
116 | { .windowsIdKey: 8, .territory: 11, .ianaIdIndex: 236 }, // Argentina Standard Time / Argentina |
117 | { .windowsIdKey: 9, .territory: 193, .ianaIdIndex: 509 }, // Astrakhan Standard Time / Russia |
118 | { .windowsIdKey: 10, .territory: 26, .ianaIdIndex: 543 }, // Atlantic Standard Time / Bermuda |
119 | { .windowsIdKey: 10, .territory: 41, .ianaIdIndex: 560 }, // Atlantic Standard Time / Canada |
120 | { .windowsIdKey: 10, .territory: 95, .ianaIdIndex: 628 }, // Atlantic Standard Time / Greenland |
121 | { .windowsIdKey: 11, .territory: 15, .ianaIdIndex: 642 }, // AUS Central Standard Time / Australia |
122 | { .windowsIdKey: 12, .territory: 15, .ianaIdIndex: 659 }, // Aus Central W. Standard Time / Australia |
123 | { .windowsIdKey: 13, .territory: 15, .ianaIdIndex: 675 }, // AUS Eastern Standard Time / Australia |
124 | { .windowsIdKey: 14, .territory: 17, .ianaIdIndex: 712 }, // Azerbaijan Standard Time / Azerbaijan |
125 | { .windowsIdKey: 15, .territory: 95, .ianaIdIndex: 722 }, // Azores Standard Time / Greenland |
126 | { .windowsIdKey: 15, .territory: 188, .ianaIdIndex: 743 }, // Azores Standard Time / Portugal |
127 | { .windowsIdKey: 16, .territory: 32, .ianaIdIndex: 759 }, // Bahia Standard Time / Brazil |
128 | { .windowsIdKey: 17, .territory: 20, .ianaIdIndex: 773 }, // Bangladesh Standard Time / Bangladesh |
129 | { .windowsIdKey: 17, .territory: 27, .ianaIdIndex: 784 }, // Bangladesh Standard Time / Bhutan |
130 | { .windowsIdKey: 18, .territory: 22, .ianaIdIndex: 797 }, // Belarus Standard Time / Belarus |
131 | { .windowsIdKey: 19, .territory: 182, .ianaIdIndex: 810 }, // Bougainville Standard Time / Papua New Guinea |
132 | { .windowsIdKey: 20, .territory: 41, .ianaIdIndex: 831 }, // Canada Central Standard Time / Canada |
133 | { .windowsIdKey: 21, .territory: 0, .ianaIdIndex: 868 }, // Cape Verde Standard Time / AnyTerritory |
134 | { .windowsIdKey: 21, .territory: 43, .ianaIdIndex: 878 }, // Cape Verde Standard Time / Cape Verde |
135 | { .windowsIdKey: 22, .territory: 12, .ianaIdIndex: 898 }, // Caucasus Standard Time / Armenia |
136 | { .windowsIdKey: 23, .territory: 15, .ianaIdIndex: 911 }, // Cen. Australia Standard Time / Australia |
137 | { .windowsIdKey: 24, .territory: 0, .ianaIdIndex: 952 }, // Central America Standard Time / AnyTerritory |
138 | { .windowsIdKey: 24, .territory: 24, .ianaIdIndex: 962 }, // Central America Standard Time / Belize |
139 | { .windowsIdKey: 24, .territory: 59, .ianaIdIndex: 977 }, // Central America Standard Time / Costa Rica |
140 | { .windowsIdKey: 24, .territory: 70, .ianaIdIndex: 996 }, // Central America Standard Time / Ecuador |
141 | { .windowsIdKey: 24, .territory: 72, .ianaIdIndex: 1014 }, // Central America Standard Time / El Salvador |
142 | { .windowsIdKey: 24, .territory: 99, .ianaIdIndex: 1034 }, // Central America Standard Time / Guatemala |
143 | { .windowsIdKey: 24, .territory: 106, .ianaIdIndex: 1052 }, // Central America Standard Time / Honduras |
144 | { .windowsIdKey: 24, .territory: 168, .ianaIdIndex: 1072 }, // Central America Standard Time / Nicaragua |
145 | { .windowsIdKey: 25, .territory: 0, .ianaIdIndex: 1088 }, // Central Asia Standard Time / AnyTerritory |
146 | { .windowsIdKey: 25, .territory: 9, .ianaIdIndex: 1098 }, // Central Asia Standard Time / Antarctica |
147 | { .windowsIdKey: 25, .territory: 33, .ianaIdIndex: 1116 }, // Central Asia Standard Time / British Indian Ocean Territory |
148 | { .windowsIdKey: 25, .territory: 50, .ianaIdIndex: 1130 }, // Central Asia Standard Time / China |
149 | { .windowsIdKey: 25, .territory: 123, .ianaIdIndex: 1142 }, // Central Asia Standard Time / Kazakhstan |
150 | { .windowsIdKey: 25, .territory: 128, .ianaIdIndex: 1168 }, // Central Asia Standard Time / Kyrgyzstan |
151 | { .windowsIdKey: 26, .territory: 32, .ianaIdIndex: 1181 }, // Central Brazilian Standard Time / Brazil |
152 | { .windowsIdKey: 27, .territory: 3, .ianaIdIndex: 1217 }, // Central Europe Standard Time / Albania |
153 | { .windowsIdKey: 27, .territory: 64, .ianaIdIndex: 1231 }, // Central Europe Standard Time / Czechia |
154 | { .windowsIdKey: 27, .territory: 108, .ianaIdIndex: 1245 }, // Central Europe Standard Time / Hungary |
155 | { .windowsIdKey: 27, .territory: 157, .ianaIdIndex: 1261 }, // Central Europe Standard Time / Montenegro |
156 | { .windowsIdKey: 27, .territory: 207, .ianaIdIndex: 1278 }, // Central Europe Standard Time / Serbia |
157 | { .windowsIdKey: 27, .territory: 212, .ianaIdIndex: 1294 }, // Central Europe Standard Time / Slovakia |
158 | { .windowsIdKey: 27, .territory: 213, .ianaIdIndex: 1312 }, // Central Europe Standard Time / Slovenia |
159 | { .windowsIdKey: 28, .territory: 29, .ianaIdIndex: 1329 }, // Central European Standard Time / Bosnia And Herzegovina |
160 | { .windowsIdKey: 28, .territory: 60, .ianaIdIndex: 1345 }, // Central European Standard Time / Croatia |
161 | { .windowsIdKey: 28, .territory: 140, .ianaIdIndex: 1359 }, // Central European Standard Time / Macedonia |
162 | { .windowsIdKey: 28, .territory: 187, .ianaIdIndex: 1373 }, // Central European Standard Time / Poland |
163 | { .windowsIdKey: 29, .territory: 0, .ianaIdIndex: 1387 }, // Central Pacific Standard Time / AnyTerritory |
164 | { .windowsIdKey: 29, .territory: 9, .ianaIdIndex: 1398 }, // Central Pacific Standard Time / Antarctica |
165 | { .windowsIdKey: 29, .territory: 153, .ianaIdIndex: 1415 }, // Central Pacific Standard Time / Micronesia |
166 | { .windowsIdKey: 29, .territory: 166, .ianaIdIndex: 1445 }, // Central Pacific Standard Time / New Caledonia |
167 | { .windowsIdKey: 29, .territory: 214, .ianaIdIndex: 1460 }, // Central Pacific Standard Time / Solomon Islands |
168 | { .windowsIdKey: 29, .territory: 252, .ianaIdIndex: 1480 }, // Central Pacific Standard Time / Vanuatu |
169 | { .windowsIdKey: 30, .territory: 152, .ianaIdIndex: 1494 }, // Central Standard Time (Mexico) / Mexico |
170 | { .windowsIdKey: 31, .territory: 0, .ianaIdIndex: 1588 }, // Central Standard Time / AnyTerritory |
171 | { .windowsIdKey: 31, .territory: 41, .ianaIdIndex: 1596 }, // Central Standard Time / Canada |
172 | { .windowsIdKey: 31, .territory: 152, .ianaIdIndex: 1671 }, // Central Standard Time / Mexico |
173 | { .windowsIdKey: 31, .territory: 248, .ianaIdIndex: 1705 }, // Central Standard Time / United States |
174 | { .windowsIdKey: 32, .territory: 50, .ianaIdIndex: 1873 }, // China Standard Time / China |
175 | { .windowsIdKey: 32, .territory: 107, .ianaIdIndex: 1887 }, // China Standard Time / Hong Kong |
176 | { .windowsIdKey: 32, .territory: 139, .ianaIdIndex: 1902 }, // China Standard Time / Macao |
177 | { .windowsIdKey: 33, .territory: 167, .ianaIdIndex: 1913 }, // Chatham Islands Standard Time / New Zealand |
178 | { .windowsIdKey: 34, .territory: 61, .ianaIdIndex: 1929 }, // Cuba Standard Time / Cuba |
179 | { .windowsIdKey: 35, .territory: 0, .ianaIdIndex: 1944 }, // Dateline Standard Time / AnyTerritory |
180 | { .windowsIdKey: 36, .territory: 0, .ianaIdIndex: 1955 }, // E. Africa Standard Time / AnyTerritory |
181 | { .windowsIdKey: 36, .territory: 9, .ianaIdIndex: 1965 }, // E. Africa Standard Time / Antarctica |
182 | { .windowsIdKey: 36, .territory: 55, .ianaIdIndex: 1982 }, // E. Africa Standard Time / Comoros |
183 | { .windowsIdKey: 36, .territory: 67, .ianaIdIndex: 1996 }, // E. Africa Standard Time / Djibouti |
184 | { .windowsIdKey: 36, .territory: 74, .ianaIdIndex: 2012 }, // E. Africa Standard Time / Eritrea |
185 | { .windowsIdKey: 36, .territory: 77, .ianaIdIndex: 2026 }, // E. Africa Standard Time / Ethiopia |
186 | { .windowsIdKey: 36, .territory: 124, .ianaIdIndex: 2045 }, // E. Africa Standard Time / Kenya |
187 | { .windowsIdKey: 36, .territory: 141, .ianaIdIndex: 2060 }, // E. Africa Standard Time / Madagascar |
188 | { .windowsIdKey: 36, .territory: 151, .ianaIdIndex: 2080 }, // E. Africa Standard Time / Mayotte |
189 | { .windowsIdKey: 36, .territory: 215, .ianaIdIndex: 2095 }, // E. Africa Standard Time / Somalia |
190 | { .windowsIdKey: 36, .territory: 230, .ianaIdIndex: 2112 }, // E. Africa Standard Time / Tanzania |
191 | { .windowsIdKey: 36, .territory: 243, .ianaIdIndex: 2133 }, // E. Africa Standard Time / Uganda |
192 | { .windowsIdKey: 37, .territory: 15, .ianaIdIndex: 2148 }, // E. Australia Standard Time / Australia |
193 | { .windowsIdKey: 38, .territory: 154, .ianaIdIndex: 2186 }, // E. Europe Standard Time / Moldova |
194 | { .windowsIdKey: 39, .territory: 32, .ianaIdIndex: 2202 }, // E. South America Standard Time / Brazil |
195 | { .windowsIdKey: 40, .territory: 49, .ianaIdIndex: 2220 }, // Easter Island Standard Time / Chile |
196 | { .windowsIdKey: 41, .territory: 0, .ianaIdIndex: 2235 }, // Eastern Standard Time / AnyTerritory |
197 | { .windowsIdKey: 41, .territory: 18, .ianaIdIndex: 2243 }, // Eastern Standard Time / Bahamas |
198 | { .windowsIdKey: 41, .territory: 41, .ianaIdIndex: 2258 }, // Eastern Standard Time / Canada |
199 | { .windowsIdKey: 41, .territory: 248, .ianaIdIndex: 2363 }, // Eastern Standard Time / United States |
200 | { .windowsIdKey: 42, .territory: 152, .ianaIdIndex: 2520 }, // Eastern Standard Time (Mexico) / Mexico |
201 | { .windowsIdKey: 43, .territory: 71, .ianaIdIndex: 2535 }, // Egypt Standard Time / Egypt |
202 | { .windowsIdKey: 44, .territory: 193, .ianaIdIndex: 2548 }, // Ekaterinburg Standard Time / Russia |
203 | { .windowsIdKey: 45, .territory: 82, .ianaIdIndex: 2567 }, // Fiji Standard Time / Fiji |
204 | { .windowsIdKey: 46, .territory: 2, .ianaIdIndex: 2580 }, // FLE Standard Time / Aland Islands |
205 | { .windowsIdKey: 46, .territory: 36, .ianaIdIndex: 2597 }, // FLE Standard Time / Bulgaria |
206 | { .windowsIdKey: 46, .territory: 75, .ianaIdIndex: 2610 }, // FLE Standard Time / Estonia |
207 | { .windowsIdKey: 46, .territory: 83, .ianaIdIndex: 2625 }, // FLE Standard Time / Finland |
208 | { .windowsIdKey: 46, .territory: 131, .ianaIdIndex: 2641 }, // FLE Standard Time / Latvia |
209 | { .windowsIdKey: 46, .territory: 137, .ianaIdIndex: 2653 }, // FLE Standard Time / Lithuania |
210 | { .windowsIdKey: 46, .territory: 244, .ianaIdIndex: 2668 }, // FLE Standard Time / Ukraine |
211 | { .windowsIdKey: 47, .territory: 90, .ianaIdIndex: 2714 }, // Georgian Standard Time / Georgia |
212 | { .windowsIdKey: 48, .territory: 81, .ianaIdIndex: 2727 }, // GMT Standard Time / Faroe Islands |
213 | { .windowsIdKey: 48, .territory: 100, .ianaIdIndex: 2743 }, // GMT Standard Time / Guernsey |
214 | { .windowsIdKey: 48, .territory: 114, .ianaIdIndex: 2759 }, // GMT Standard Time / Ireland |
215 | { .windowsIdKey: 48, .territory: 115, .ianaIdIndex: 2773 }, // GMT Standard Time / Isle Of Man |
216 | { .windowsIdKey: 48, .territory: 121, .ianaIdIndex: 2792 }, // GMT Standard Time / Jersey |
217 | { .windowsIdKey: 48, .territory: 188, .ianaIdIndex: 2806 }, // GMT Standard Time / Portugal |
218 | { .windowsIdKey: 48, .territory: 220, .ianaIdIndex: 2837 }, // GMT Standard Time / Spain |
219 | { .windowsIdKey: 48, .territory: 246, .ianaIdIndex: 2853 }, // GMT Standard Time / United Kingdom |
220 | { .windowsIdKey: 49, .territory: 95, .ianaIdIndex: 2867 }, // Greenland Standard Time / Greenland |
221 | { .windowsIdKey: 50, .territory: 37, .ianaIdIndex: 2883 }, // Greenwich Standard Time / Burkina Faso |
222 | { .windowsIdKey: 50, .territory: 89, .ianaIdIndex: 2902 }, // Greenwich Standard Time / Gambia |
223 | { .windowsIdKey: 50, .territory: 92, .ianaIdIndex: 2916 }, // Greenwich Standard Time / Ghana |
224 | { .windowsIdKey: 50, .territory: 95, .ianaIdIndex: 2929 }, // Greenwich Standard Time / Greenland |
225 | { .windowsIdKey: 50, .territory: 101, .ianaIdIndex: 2950 }, // Greenwich Standard Time / Guinea Bissau |
226 | { .windowsIdKey: 50, .territory: 102, .ianaIdIndex: 2964 }, // Greenwich Standard Time / Guinea |
227 | { .windowsIdKey: 50, .territory: 109, .ianaIdIndex: 2979 }, // Greenwich Standard Time / Iceland |
228 | { .windowsIdKey: 50, .territory: 118, .ianaIdIndex: 2998 }, // Greenwich Standard Time / Ivory Coast |
229 | { .windowsIdKey: 50, .territory: 134, .ianaIdIndex: 3013 }, // Greenwich Standard Time / Liberia |
230 | { .windowsIdKey: 50, .territory: 145, .ianaIdIndex: 3029 }, // Greenwich Standard Time / Mali |
231 | { .windowsIdKey: 50, .territory: 149, .ianaIdIndex: 3043 }, // Greenwich Standard Time / Mauritania |
232 | { .windowsIdKey: 50, .territory: 196, .ianaIdIndex: 3061 }, // Greenwich Standard Time / Saint Helena |
233 | { .windowsIdKey: 50, .territory: 206, .ianaIdIndex: 3080 }, // Greenwich Standard Time / Senegal |
234 | { .windowsIdKey: 50, .territory: 209, .ianaIdIndex: 3093 }, // Greenwich Standard Time / Sierra Leone |
235 | { .windowsIdKey: 50, .territory: 233, .ianaIdIndex: 3109 }, // Greenwich Standard Time / Togo |
236 | { .windowsIdKey: 51, .territory: 63, .ianaIdIndex: 3121 }, // GTB Standard Time / Cyprus |
237 | { .windowsIdKey: 51, .territory: 94, .ianaIdIndex: 3149 }, // GTB Standard Time / Greece |
238 | { .windowsIdKey: 51, .territory: 192, .ianaIdIndex: 3163 }, // GTB Standard Time / Romania |
239 | { .windowsIdKey: 52, .territory: 104, .ianaIdIndex: 3180 }, // Haiti Standard Time / Haiti |
240 | { .windowsIdKey: 53, .territory: 0, .ianaIdIndex: 3203 }, // Hawaiian Standard Time / AnyTerritory |
241 | { .windowsIdKey: 53, .territory: 58, .ianaIdIndex: 3214 }, // Hawaiian Standard Time / Cook Islands |
242 | { .windowsIdKey: 53, .territory: 86, .ianaIdIndex: 3232 }, // Hawaiian Standard Time / French Polynesia |
243 | { .windowsIdKey: 53, .territory: 247, .ianaIdIndex: 3247 }, // Hawaiian Standard Time / United States Outlying Islands |
244 | { .windowsIdKey: 53, .territory: 248, .ianaIdIndex: 3264 }, // Hawaiian Standard Time / United States |
245 | { .windowsIdKey: 54, .territory: 110, .ianaIdIndex: 3281 }, // India Standard Time / India |
246 | { .windowsIdKey: 55, .territory: 112, .ianaIdIndex: 3295 }, // Iran Standard Time / Iran |
247 | { .windowsIdKey: 56, .territory: 116, .ianaIdIndex: 3307 }, // Israel Standard Time / Israel |
248 | { .windowsIdKey: 57, .territory: 122, .ianaIdIndex: 3322 }, // Jordan Standard Time / Jordan |
249 | { .windowsIdKey: 58, .territory: 193, .ianaIdIndex: 3333 }, // Kaliningrad Standard Time / Russia |
250 | { .windowsIdKey: 59, .territory: 218, .ianaIdIndex: 3352 }, // Korea Standard Time / South Korea |
251 | { .windowsIdKey: 60, .territory: 135, .ianaIdIndex: 3363 }, // Libya Standard Time / Libya |
252 | { .windowsIdKey: 61, .territory: 0, .ianaIdIndex: 3378 }, // Line Islands Standard Time / AnyTerritory |
253 | { .windowsIdKey: 61, .territory: 125, .ianaIdIndex: 3389 }, // Line Islands Standard Time / Kiribati |
254 | { .windowsIdKey: 62, .territory: 15, .ianaIdIndex: 3408 }, // Lord Howe Standard Time / Australia |
255 | { .windowsIdKey: 63, .territory: 193, .ianaIdIndex: 3428 }, // Magadan Standard Time / Russia |
256 | { .windowsIdKey: 64, .territory: 49, .ianaIdIndex: 3441 }, // Magallanes Standard Time / Chile |
257 | { .windowsIdKey: 65, .territory: 86, .ianaIdIndex: 3462 }, // Marquesas Standard Time / French Polynesia |
258 | { .windowsIdKey: 66, .territory: 150, .ianaIdIndex: 3480 }, // Mauritius Standard Time / Mauritius |
259 | { .windowsIdKey: 66, .territory: 191, .ianaIdIndex: 3497 }, // Mauritius Standard Time / Reunion |
260 | { .windowsIdKey: 66, .territory: 208, .ianaIdIndex: 3512 }, // Mauritius Standard Time / Seychelles |
261 | { .windowsIdKey: 67, .territory: 132, .ianaIdIndex: 3524 }, // Middle East Standard Time / Lebanon |
262 | { .windowsIdKey: 68, .territory: 250, .ianaIdIndex: 3536 }, // Montevideo Standard Time / Uruguay |
263 | { .windowsIdKey: 69, .territory: 159, .ianaIdIndex: 3555 }, // Morocco Standard Time / Morocco |
264 | { .windowsIdKey: 69, .territory: 257, .ianaIdIndex: 3573 }, // Morocco Standard Time / Western Sahara |
265 | { .windowsIdKey: 70, .territory: 152, .ianaIdIndex: 3589 }, // Mountain Standard Time (Mexico) / Mexico |
266 | { .windowsIdKey: 71, .territory: 0, .ianaIdIndex: 3606 }, // Mountain Standard Time / AnyTerritory |
267 | { .windowsIdKey: 71, .territory: 41, .ianaIdIndex: 3614 }, // Mountain Standard Time / Canada |
268 | { .windowsIdKey: 71, .territory: 152, .ianaIdIndex: 3688 }, // Mountain Standard Time / Mexico |
269 | { .windowsIdKey: 71, .territory: 248, .ianaIdIndex: 3710 }, // Mountain Standard Time / United States |
270 | { .windowsIdKey: 72, .territory: 53, .ianaIdIndex: 3739 }, // Myanmar Standard Time / Cocos Islands |
271 | { .windowsIdKey: 72, .territory: 161, .ianaIdIndex: 3752 }, // Myanmar Standard Time / Myanmar |
272 | { .windowsIdKey: 73, .territory: 193, .ianaIdIndex: 3765 }, // N. Central Asia Standard Time / Russia |
273 | { .windowsIdKey: 74, .territory: 162, .ianaIdIndex: 3782 }, // Namibia Standard Time / Namibia |
274 | { .windowsIdKey: 75, .territory: 164, .ianaIdIndex: 3798 }, // Nepal Standard Time / Nepal |
275 | { .windowsIdKey: 76, .territory: 9, .ianaIdIndex: 3812 }, // New Zealand Standard Time / Antarctica |
276 | { .windowsIdKey: 76, .territory: 167, .ianaIdIndex: 3831 }, // New Zealand Standard Time / New Zealand |
277 | { .windowsIdKey: 77, .territory: 41, .ianaIdIndex: 3848 }, // Newfoundland Standard Time / Canada |
278 | { .windowsIdKey: 78, .territory: 172, .ianaIdIndex: 3865 }, // Norfolk Standard Time / Norfolk Island |
279 | { .windowsIdKey: 79, .territory: 193, .ianaIdIndex: 3881 }, // North Asia East Standard Time / Russia |
280 | { .windowsIdKey: 80, .territory: 193, .ianaIdIndex: 3894 }, // North Asia Standard Time / Russia |
281 | { .windowsIdKey: 81, .territory: 174, .ianaIdIndex: 3929 }, // North Korea Standard Time / North Korea |
282 | { .windowsIdKey: 82, .territory: 193, .ianaIdIndex: 3944 }, // Omsk Standard Time / Russia |
283 | { .windowsIdKey: 83, .territory: 49, .ianaIdIndex: 3954 }, // Pacific SA Standard Time / Chile |
284 | { .windowsIdKey: 84, .territory: 0, .ianaIdIndex: 3971 }, // Pacific Standard Time / AnyTerritory |
285 | { .windowsIdKey: 84, .territory: 41, .ianaIdIndex: 3979 }, // Pacific Standard Time / Canada |
286 | { .windowsIdKey: 84, .territory: 248, .ianaIdIndex: 3997 }, // Pacific Standard Time / United States |
287 | { .windowsIdKey: 85, .territory: 152, .ianaIdIndex: 4017 }, // Pacific Standard Time (Mexico) / Mexico |
288 | { .windowsIdKey: 86, .territory: 178, .ianaIdIndex: 4054 }, // Pakistan Standard Time / Pakistan |
289 | { .windowsIdKey: 87, .territory: 183, .ianaIdIndex: 4067 }, // Paraguay Standard Time / Paraguay |
290 | { .windowsIdKey: 88, .territory: 123, .ianaIdIndex: 4084 }, // Qyzylorda Standard Time / Kazakhstan |
291 | { .windowsIdKey: 89, .territory: 23, .ianaIdIndex: 4099 }, // Romance Standard Time / Belgium |
292 | { .windowsIdKey: 89, .territory: 65, .ianaIdIndex: 4115 }, // Romance Standard Time / Denmark |
293 | { .windowsIdKey: 89, .territory: 84, .ianaIdIndex: 4133 }, // Romance Standard Time / France |
294 | { .windowsIdKey: 89, .territory: 220, .ianaIdIndex: 4146 }, // Romance Standard Time / Spain |
295 | { .windowsIdKey: 90, .territory: 193, .ianaIdIndex: 4173 }, // Russia Time Zone 3 / Russia |
296 | { .windowsIdKey: 91, .territory: 193, .ianaIdIndex: 4187 }, // Russia Time Zone 10 / Russia |
297 | { .windowsIdKey: 92, .territory: 193, .ianaIdIndex: 4206 }, // Russia Time Zone 11 / Russia |
298 | { .windowsIdKey: 93, .territory: 193, .ianaIdIndex: 4233 }, // Russian Standard Time / Russia |
299 | { .windowsIdKey: 93, .territory: 244, .ianaIdIndex: 4260 }, // Russian Standard Time / Ukraine |
300 | { .windowsIdKey: 94, .territory: 0, .ianaIdIndex: 4278 }, // SA Eastern Standard Time / AnyTerritory |
301 | { .windowsIdKey: 94, .territory: 9, .ianaIdIndex: 4288 }, // SA Eastern Standard Time / Antarctica |
302 | { .windowsIdKey: 94, .territory: 32, .ianaIdIndex: 4325 }, // SA Eastern Standard Time / Brazil |
303 | { .windowsIdKey: 94, .territory: 80, .ianaIdIndex: 4404 }, // SA Eastern Standard Time / Falkland Islands |
304 | { .windowsIdKey: 94, .territory: 85, .ianaIdIndex: 4421 }, // SA Eastern Standard Time / French Guiana |
305 | { .windowsIdKey: 94, .territory: 223, .ianaIdIndex: 4437 }, // SA Eastern Standard Time / Suriname |
306 | { .windowsIdKey: 95, .territory: 0, .ianaIdIndex: 4456 }, // SA Pacific Standard Time / AnyTerritory |
307 | { .windowsIdKey: 95, .territory: 32, .ianaIdIndex: 4466 }, // SA Pacific Standard Time / Brazil |
308 | { .windowsIdKey: 95, .territory: 41, .ianaIdIndex: 4502 }, // SA Pacific Standard Time / Canada |
309 | { .windowsIdKey: 95, .territory: 45, .ianaIdIndex: 4524 }, // SA Pacific Standard Time / Cayman Islands |
310 | { .windowsIdKey: 95, .territory: 54, .ianaIdIndex: 4539 }, // SA Pacific Standard Time / Colombia |
311 | { .windowsIdKey: 95, .territory: 70, .ianaIdIndex: 4554 }, // SA Pacific Standard Time / Ecuador |
312 | { .windowsIdKey: 95, .territory: 119, .ianaIdIndex: 4572 }, // SA Pacific Standard Time / Jamaica |
313 | { .windowsIdKey: 95, .territory: 181, .ianaIdIndex: 4588 }, // SA Pacific Standard Time / Panama |
314 | { .windowsIdKey: 95, .territory: 184, .ianaIdIndex: 4603 }, // SA Pacific Standard Time / Peru |
315 | { .windowsIdKey: 96, .territory: 0, .ianaIdIndex: 4616 }, // SA Western Standard Time / AnyTerritory |
316 | { .windowsIdKey: 96, .territory: 8, .ianaIdIndex: 4626 }, // SA Western Standard Time / Anguilla |
317 | { .windowsIdKey: 96, .territory: 10, .ianaIdIndex: 4643 }, // SA Western Standard Time / Antigua And Barbuda |
318 | { .windowsIdKey: 96, .territory: 13, .ianaIdIndex: 4659 }, // SA Western Standard Time / Aruba |
319 | { .windowsIdKey: 96, .territory: 21, .ianaIdIndex: 4673 }, // SA Western Standard Time / Barbados |
320 | { .windowsIdKey: 96, .territory: 28, .ianaIdIndex: 4690 }, // SA Western Standard Time / Bolivia |
321 | { .windowsIdKey: 96, .territory: 32, .ianaIdIndex: 4705 }, // SA Western Standard Time / Brazil |
322 | { .windowsIdKey: 96, .territory: 34, .ianaIdIndex: 4758 }, // SA Western Standard Time / British Virgin Islands |
323 | { .windowsIdKey: 96, .territory: 41, .ianaIdIndex: 4774 }, // SA Western Standard Time / Canada |
324 | { .windowsIdKey: 96, .territory: 44, .ianaIdIndex: 4795 }, // SA Western Standard Time / Caribbean Netherlands |
325 | { .windowsIdKey: 96, .territory: 62, .ianaIdIndex: 4814 }, // SA Western Standard Time / Curacao |
326 | { .windowsIdKey: 96, .territory: 68, .ianaIdIndex: 4830 }, // SA Western Standard Time / Dominica |
327 | { .windowsIdKey: 96, .territory: 69, .ianaIdIndex: 4847 }, // SA Western Standard Time / Dominican Republic |
328 | { .windowsIdKey: 96, .territory: 96, .ianaIdIndex: 4869 }, // SA Western Standard Time / Grenada |
329 | { .windowsIdKey: 96, .territory: 97, .ianaIdIndex: 4885 }, // SA Western Standard Time / Guadeloupe |
330 | { .windowsIdKey: 96, .territory: 103, .ianaIdIndex: 4904 }, // SA Western Standard Time / Guyana |
331 | { .windowsIdKey: 96, .territory: 148, .ianaIdIndex: 4919 }, // SA Western Standard Time / Martinique |
332 | { .windowsIdKey: 96, .territory: 158, .ianaIdIndex: 4938 }, // SA Western Standard Time / Montserrat |
333 | { .windowsIdKey: 96, .territory: 189, .ianaIdIndex: 4957 }, // SA Western Standard Time / Puerto Rico |
334 | { .windowsIdKey: 96, .territory: 195, .ianaIdIndex: 4977 }, // SA Western Standard Time / Saint Barthelemy |
335 | { .windowsIdKey: 96, .territory: 197, .ianaIdIndex: 4999 }, // SA Western Standard Time / Saint Kitts And Nevis |
336 | { .windowsIdKey: 96, .territory: 198, .ianaIdIndex: 5016 }, // SA Western Standard Time / Saint Lucia |
337 | { .windowsIdKey: 96, .territory: 199, .ianaIdIndex: 5033 }, // SA Western Standard Time / Saint Martin |
338 | { .windowsIdKey: 96, .territory: 201, .ianaIdIndex: 5049 }, // SA Western Standard Time / Saint Vincent And Grenadines |
339 | { .windowsIdKey: 96, .territory: 211, .ianaIdIndex: 5068 }, // SA Western Standard Time / Sint Maarten |
340 | { .windowsIdKey: 96, .territory: 236, .ianaIdIndex: 5090 }, // SA Western Standard Time / Trinidad And Tobago |
341 | { .windowsIdKey: 96, .territory: 249, .ianaIdIndex: 5112 }, // SA Western Standard Time / United States Virgin Islands |
342 | { .windowsIdKey: 97, .territory: 200, .ianaIdIndex: 5130 }, // Saint Pierre Standard Time / Saint Pierre And Miquelon |
343 | { .windowsIdKey: 98, .territory: 193, .ianaIdIndex: 5147 }, // Sakhalin Standard Time / Russia |
344 | { .windowsIdKey: 99, .territory: 202, .ianaIdIndex: 5161 }, // Samoa Standard Time / Samoa |
345 | { .windowsIdKey: 100, .territory: 204, .ianaIdIndex: 5174 }, // Sao Tome Standard Time / Sao Tome And Principe |
346 | { .windowsIdKey: 101, .territory: 193, .ianaIdIndex: 5190 }, // Saratov Standard Time / Russia |
347 | { .windowsIdKey: 102, .territory: 0, .ianaIdIndex: 5205 }, // SE Asia Standard Time / AnyTerritory |
348 | { .windowsIdKey: 102, .territory: 9, .ianaIdIndex: 5215 }, // SE Asia Standard Time / Antarctica |
349 | { .windowsIdKey: 102, .territory: 39, .ianaIdIndex: 5232 }, // SE Asia Standard Time / Cambodia |
350 | { .windowsIdKey: 102, .territory: 51, .ianaIdIndex: 5248 }, // SE Asia Standard Time / Christmas Island |
351 | { .windowsIdKey: 102, .territory: 111, .ianaIdIndex: 5265 }, // SE Asia Standard Time / Indonesia |
352 | { .windowsIdKey: 102, .territory: 129, .ianaIdIndex: 5293 }, // SE Asia Standard Time / Laos |
353 | { .windowsIdKey: 102, .territory: 231, .ianaIdIndex: 5308 }, // SE Asia Standard Time / Thailand |
354 | { .windowsIdKey: 102, .territory: 255, .ianaIdIndex: 5321 }, // SE Asia Standard Time / Vietnam |
355 | { .windowsIdKey: 103, .territory: 0, .ianaIdIndex: 5333 }, // Singapore Standard Time / AnyTerritory |
356 | { .windowsIdKey: 103, .territory: 35, .ianaIdIndex: 5343 }, // Singapore Standard Time / Brunei |
357 | { .windowsIdKey: 103, .territory: 111, .ianaIdIndex: 5355 }, // Singapore Standard Time / Indonesia |
358 | { .windowsIdKey: 103, .territory: 143, .ianaIdIndex: 5369 }, // Singapore Standard Time / Malaysia |
359 | { .windowsIdKey: 103, .territory: 185, .ianaIdIndex: 5400 }, // Singapore Standard Time / Philippines |
360 | { .windowsIdKey: 103, .territory: 210, .ianaIdIndex: 5412 }, // Singapore Standard Time / Singapore |
361 | { .windowsIdKey: 104, .territory: 0, .ianaIdIndex: 5427 }, // South Africa Standard Time / AnyTerritory |
362 | { .windowsIdKey: 104, .territory: 30, .ianaIdIndex: 5437 }, // South Africa Standard Time / Botswana |
363 | { .windowsIdKey: 104, .territory: 38, .ianaIdIndex: 5453 }, // South Africa Standard Time / Burundi |
364 | { .windowsIdKey: 104, .territory: 57, .ianaIdIndex: 5470 }, // South Africa Standard Time / Congo Kinshasa |
365 | { .windowsIdKey: 104, .territory: 76, .ianaIdIndex: 5488 }, // South Africa Standard Time / Eswatini |
366 | { .windowsIdKey: 104, .territory: 133, .ianaIdIndex: 5503 }, // South Africa Standard Time / Lesotho |
367 | { .windowsIdKey: 104, .territory: 142, .ianaIdIndex: 5517 }, // South Africa Standard Time / Malawi |
368 | { .windowsIdKey: 104, .territory: 160, .ianaIdIndex: 5533 }, // South Africa Standard Time / Mozambique |
369 | { .windowsIdKey: 104, .territory: 194, .ianaIdIndex: 5547 }, // South Africa Standard Time / Rwanda |
370 | { .windowsIdKey: 104, .territory: 216, .ianaIdIndex: 5561 }, // South Africa Standard Time / South Africa |
371 | { .windowsIdKey: 104, .territory: 260, .ianaIdIndex: 5581 }, // South Africa Standard Time / Zambia |
372 | { .windowsIdKey: 104, .territory: 261, .ianaIdIndex: 5595 }, // South Africa Standard Time / Zimbabwe |
373 | { .windowsIdKey: 105, .territory: 219, .ianaIdIndex: 5609 }, // South Sudan Standard Time / South Sudan |
374 | { .windowsIdKey: 106, .territory: 221, .ianaIdIndex: 5621 }, // Sri Lanka Standard Time / Sri Lanka |
375 | { .windowsIdKey: 107, .territory: 222, .ianaIdIndex: 5634 }, // Sudan Standard Time / Sudan |
376 | { .windowsIdKey: 108, .territory: 227, .ianaIdIndex: 5650 }, // Syria Standard Time / Syria |
377 | { .windowsIdKey: 109, .territory: 228, .ianaIdIndex: 5664 }, // Taipei Standard Time / Taiwan |
378 | { .windowsIdKey: 110, .territory: 15, .ianaIdIndex: 5676 }, // Tasmania Standard Time / Australia |
379 | { .windowsIdKey: 111, .territory: 32, .ianaIdIndex: 5731 }, // Tocantins Standard Time / Brazil |
380 | { .windowsIdKey: 112, .territory: 0, .ianaIdIndex: 5749 }, // Tokyo Standard Time / AnyTerritory |
381 | { .windowsIdKey: 112, .territory: 111, .ianaIdIndex: 5759 }, // Tokyo Standard Time / Indonesia |
382 | { .windowsIdKey: 112, .territory: 120, .ianaIdIndex: 5773 }, // Tokyo Standard Time / Japan |
383 | { .windowsIdKey: 112, .territory: 179, .ianaIdIndex: 5784 }, // Tokyo Standard Time / Palau |
384 | { .windowsIdKey: 112, .territory: 232, .ianaIdIndex: 5798 }, // Tokyo Standard Time / Timor-Leste |
385 | { .windowsIdKey: 113, .territory: 193, .ianaIdIndex: 5808 }, // Tomsk Standard Time / Russia |
386 | { .windowsIdKey: 114, .territory: 235, .ianaIdIndex: 5819 }, // Tonga Standard Time / Tonga |
387 | { .windowsIdKey: 115, .territory: 193, .ianaIdIndex: 5837 }, // Transbaikal Standard Time / Russia |
388 | { .windowsIdKey: 116, .territory: 239, .ianaIdIndex: 5848 }, // Turkey Standard Time / Turkey |
389 | { .windowsIdKey: 117, .territory: 241, .ianaIdIndex: 5864 }, // Turks And Caicos Standard Time / Turks And Caicos Islands |
390 | { .windowsIdKey: 118, .territory: 156, .ianaIdIndex: 5883 }, // Ulaanbaatar Standard Time / Mongolia |
391 | { .windowsIdKey: 119, .territory: 248, .ianaIdIndex: 5916 }, // US Eastern Standard Time / United States |
392 | { .windowsIdKey: 120, .territory: 0, .ianaIdIndex: 5983 }, // US Mountain Standard Time / AnyTerritory |
393 | { .windowsIdKey: 120, .territory: 41, .ianaIdIndex: 5993 }, // US Mountain Standard Time / Canada |
394 | { .windowsIdKey: 120, .territory: 152, .ianaIdIndex: 6050 }, // US Mountain Standard Time / Mexico |
395 | { .windowsIdKey: 120, .territory: 248, .ianaIdIndex: 6069 }, // US Mountain Standard Time / United States |
396 | { .windowsIdKey: 121, .territory: 0, .ianaIdIndex: 6085 }, // UTC-11 / AnyTerritory |
397 | { .windowsIdKey: 121, .territory: 5, .ianaIdIndex: 6096 }, // UTC-11 / American Samoa |
398 | { .windowsIdKey: 121, .territory: 171, .ianaIdIndex: 6114 }, // UTC-11 / Niue |
399 | { .windowsIdKey: 121, .territory: 247, .ianaIdIndex: 6127 }, // UTC-11 / United States Outlying Islands |
400 | { .windowsIdKey: 122, .territory: 0, .ianaIdIndex: 6142 }, // UTC-09 / AnyTerritory |
401 | { .windowsIdKey: 122, .territory: 86, .ianaIdIndex: 6152 }, // UTC-09 / French Polynesia |
402 | { .windowsIdKey: 123, .territory: 0, .ianaIdIndex: 6168 }, // UTC-08 / AnyTerritory |
403 | { .windowsIdKey: 123, .territory: 186, .ianaIdIndex: 6178 }, // UTC-08 / Pitcairn |
404 | { .windowsIdKey: 124, .territory: 0, .ianaIdIndex: 6195 }, // UTC-02 / AnyTerritory |
405 | { .windowsIdKey: 124, .territory: 32, .ianaIdIndex: 6205 }, // UTC-02 / Brazil |
406 | { .windowsIdKey: 124, .territory: 217, .ianaIdIndex: 6221 }, // UTC-02 / South Georgia And South Sandwich Islands |
407 | { .windowsIdKey: 125, .territory: 0, .ianaIdIndex: 6244 }, // UTC / AnyTerritory |
408 | { .windowsIdKey: 126, .territory: 0, .ianaIdIndex: 6260 }, // UTC+12 / AnyTerritory |
409 | { .windowsIdKey: 126, .territory: 125, .ianaIdIndex: 6271 }, // UTC+12 / Kiribati |
410 | { .windowsIdKey: 126, .territory: 147, .ianaIdIndex: 6286 }, // UTC+12 / Marshall Islands |
411 | { .windowsIdKey: 126, .territory: 163, .ianaIdIndex: 6319 }, // UTC+12 / Nauru |
412 | { .windowsIdKey: 126, .territory: 242, .ianaIdIndex: 6333 }, // UTC+12 / Tuvalu |
413 | { .windowsIdKey: 126, .territory: 247, .ianaIdIndex: 6350 }, // UTC+12 / United States Outlying Islands |
414 | { .windowsIdKey: 126, .territory: 256, .ianaIdIndex: 6363 }, // UTC+12 / Wallis And Futuna |
415 | { .windowsIdKey: 127, .territory: 0, .ianaIdIndex: 6378 }, // UTC+13 / AnyTerritory |
416 | { .windowsIdKey: 127, .territory: 125, .ianaIdIndex: 6389 }, // UTC+13 / Kiribati |
417 | { .windowsIdKey: 127, .territory: 234, .ianaIdIndex: 6407 }, // UTC+13 / Tokelau |
418 | { .windowsIdKey: 128, .territory: 254, .ianaIdIndex: 6423 }, // Venezuela Standard Time / Venezuela |
419 | { .windowsIdKey: 129, .territory: 193, .ianaIdIndex: 6439 }, // Vladivostok Standard Time / Russia |
420 | { .windowsIdKey: 130, .territory: 193, .ianaIdIndex: 6470 }, // Volgograd Standard Time / Russia |
421 | { .windowsIdKey: 131, .territory: 15, .ianaIdIndex: 6487 }, // W. Australia Standard Time / Australia |
422 | { .windowsIdKey: 132, .territory: 0, .ianaIdIndex: 6503 }, // W. Central Africa Standard Time / AnyTerritory |
423 | { .windowsIdKey: 132, .territory: 4, .ianaIdIndex: 6513 }, // W. Central Africa Standard Time / Algeria |
424 | { .windowsIdKey: 132, .territory: 7, .ianaIdIndex: 6528 }, // W. Central Africa Standard Time / Angola |
425 | { .windowsIdKey: 132, .territory: 25, .ianaIdIndex: 6542 }, // W. Central Africa Standard Time / Benin |
426 | { .windowsIdKey: 132, .territory: 40, .ianaIdIndex: 6560 }, // W. Central Africa Standard Time / Cameroon |
427 | { .windowsIdKey: 132, .territory: 46, .ianaIdIndex: 6574 }, // W. Central Africa Standard Time / Central African Republic |
428 | { .windowsIdKey: 132, .territory: 48, .ianaIdIndex: 6588 }, // W. Central Africa Standard Time / Chad |
429 | { .windowsIdKey: 132, .territory: 56, .ianaIdIndex: 6604 }, // W. Central Africa Standard Time / Congo Brazzaville |
430 | { .windowsIdKey: 132, .territory: 57, .ianaIdIndex: 6623 }, // W. Central Africa Standard Time / Congo Kinshasa |
431 | { .windowsIdKey: 132, .territory: 73, .ianaIdIndex: 6639 }, // W. Central Africa Standard Time / Equatorial Guinea |
432 | { .windowsIdKey: 132, .territory: 88, .ianaIdIndex: 6653 }, // W. Central Africa Standard Time / Gabon |
433 | { .windowsIdKey: 132, .territory: 169, .ianaIdIndex: 6671 }, // W. Central Africa Standard Time / Nigeria |
434 | { .windowsIdKey: 132, .territory: 170, .ianaIdIndex: 6684 }, // W. Central Africa Standard Time / Niger |
435 | { .windowsIdKey: 132, .territory: 238, .ianaIdIndex: 6698 }, // W. Central Africa Standard Time / Tunisia |
436 | { .windowsIdKey: 133, .territory: 6, .ianaIdIndex: 6711 }, // W. Europe Standard Time / Andorra |
437 | { .windowsIdKey: 133, .territory: 16, .ianaIdIndex: 6726 }, // W. Europe Standard Time / Austria |
438 | { .windowsIdKey: 133, .territory: 91, .ianaIdIndex: 6740 }, // W. Europe Standard Time / Germany |
439 | { .windowsIdKey: 133, .territory: 93, .ianaIdIndex: 6770 }, // W. Europe Standard Time / Gibraltar |
440 | { .windowsIdKey: 133, .territory: 117, .ianaIdIndex: 6787 }, // W. Europe Standard Time / Italy |
441 | { .windowsIdKey: 133, .territory: 136, .ianaIdIndex: 6799 }, // W. Europe Standard Time / Liechtenstein |
442 | { .windowsIdKey: 133, .territory: 138, .ianaIdIndex: 6812 }, // W. Europe Standard Time / Luxembourg |
443 | { .windowsIdKey: 133, .territory: 146, .ianaIdIndex: 6830 }, // W. Europe Standard Time / Malta |
444 | { .windowsIdKey: 133, .territory: 155, .ianaIdIndex: 6843 }, // W. Europe Standard Time / Monaco |
445 | { .windowsIdKey: 133, .territory: 165, .ianaIdIndex: 6857 }, // W. Europe Standard Time / Netherlands |
446 | { .windowsIdKey: 133, .territory: 175, .ianaIdIndex: 6874 }, // W. Europe Standard Time / Norway |
447 | { .windowsIdKey: 133, .territory: 203, .ianaIdIndex: 6886 }, // W. Europe Standard Time / San Marino |
448 | { .windowsIdKey: 133, .territory: 224, .ianaIdIndex: 6904 }, // W. Europe Standard Time / Svalbard And Jan Mayen |
449 | { .windowsIdKey: 133, .territory: 225, .ianaIdIndex: 6924 }, // W. Europe Standard Time / Sweden |
450 | { .windowsIdKey: 133, .territory: 226, .ianaIdIndex: 6941 }, // W. Europe Standard Time / Switzerland |
451 | { .windowsIdKey: 133, .territory: 253, .ianaIdIndex: 6955 }, // W. Europe Standard Time / Vatican City |
452 | { .windowsIdKey: 134, .territory: 156, .ianaIdIndex: 6970 }, // W. Mongolia Standard Time / Mongolia |
453 | { .windowsIdKey: 135, .territory: 0, .ianaIdIndex: 6980 }, // West Asia Standard Time / AnyTerritory |
454 | { .windowsIdKey: 135, .territory: 9, .ianaIdIndex: 6990 }, // West Asia Standard Time / Antarctica |
455 | { .windowsIdKey: 135, .territory: 87, .ianaIdIndex: 7008 }, // West Asia Standard Time / French Southern Territories |
456 | { .windowsIdKey: 135, .territory: 123, .ianaIdIndex: 7025 }, // West Asia Standard Time / Kazakhstan |
457 | { .windowsIdKey: 135, .territory: 144, .ianaIdIndex: 7070 }, // West Asia Standard Time / Maldives |
458 | { .windowsIdKey: 135, .territory: 229, .ianaIdIndex: 7086 }, // West Asia Standard Time / Tajikistan |
459 | { .windowsIdKey: 135, .territory: 240, .ianaIdIndex: 7100 }, // West Asia Standard Time / Turkmenistan |
460 | { .windowsIdKey: 135, .territory: 251, .ianaIdIndex: 7114 }, // West Asia Standard Time / Uzbekistan |
461 | { .windowsIdKey: 136, .territory: 180, .ianaIdIndex: 7143 }, // West Bank Standard Time / Palestinian Territories |
462 | { .windowsIdKey: 137, .territory: 0, .ianaIdIndex: 7165 }, // West Pacific Standard Time / AnyTerritory |
463 | { .windowsIdKey: 137, .territory: 9, .ianaIdIndex: 7176 }, // West Pacific Standard Time / Antarctica |
464 | { .windowsIdKey: 137, .territory: 98, .ianaIdIndex: 7202 }, // West Pacific Standard Time / Guam |
465 | { .windowsIdKey: 137, .territory: 153, .ianaIdIndex: 7215 }, // West Pacific Standard Time / Micronesia |
466 | { .windowsIdKey: 137, .territory: 173, .ianaIdIndex: 7228 }, // West Pacific Standard Time / Northern Mariana Islands |
467 | { .windowsIdKey: 137, .territory: 182, .ianaIdIndex: 7243 }, // West Pacific Standard Time / Papua New Guinea |
468 | { .windowsIdKey: 138, .territory: 193, .ianaIdIndex: 7264 }, // Yakutsk Standard Time / Russia |
469 | { .windowsIdKey: 139, .territory: 41, .ianaIdIndex: 7291 }, // Yukon Standard Time / Canada |
470 | }; |
471 | |
472 | // Windows ID Key, Windows ID Index, IANA ID Index, UTC Offset |
473 | static constexpr QWindowsData windowsDataTable[] = { |
474 | { .windowsIdKey: 1, .windowsIdIndex: 0, .ianaIdIndex: 0, .offsetFromUtc: 16200 }, // Afghanistan Standard Time |
475 | { .windowsIdKey: 2, .windowsIdIndex: 26, .ianaIdIndex: 7325,.offsetFromUtc: -32400 }, // Alaskan Standard Time |
476 | { .windowsIdKey: 3, .windowsIdIndex: 48, .ianaIdIndex: 106,.offsetFromUtc: -36000 }, // Aleutian Standard Time |
477 | { .windowsIdKey: 4, .windowsIdIndex: 71, .ianaIdIndex: 119, .offsetFromUtc: 25200 }, // Altai Standard Time |
478 | { .windowsIdKey: 5, .windowsIdIndex: 91, .ianaIdIndex: 168, .offsetFromUtc: 10800 }, // Arab Standard Time |
479 | { .windowsIdKey: 6, .windowsIdIndex: 110, .ianaIdIndex: 212, .offsetFromUtc: 14400 }, // Arabian Standard Time |
480 | { .windowsIdKey: 7, .windowsIdIndex: 132, .ianaIdIndex: 223, .offsetFromUtc: 10800 }, // Arabic Standard Time |
481 | { .windowsIdKey: 8, .windowsIdIndex: 153, .ianaIdIndex: 7343,.offsetFromUtc: -10800 }, // Argentina Standard Time |
482 | { .windowsIdKey: 9, .windowsIdIndex: 177, .ianaIdIndex: 7364, .offsetFromUtc: 14400 }, // Astrakhan Standard Time |
483 | { .windowsIdKey: 10, .windowsIdIndex: 201, .ianaIdIndex: 7381,.offsetFromUtc: -14400 }, // Atlantic Standard Time |
484 | { .windowsIdKey: 11, .windowsIdIndex: 224, .ianaIdIndex: 642, .offsetFromUtc: 34200 }, // AUS Central Standard Time |
485 | { .windowsIdKey: 12, .windowsIdIndex: 250, .ianaIdIndex: 659, .offsetFromUtc: 31500 }, // Aus Central W. Standard Time |
486 | { .windowsIdKey: 13, .windowsIdIndex: 279, .ianaIdIndex: 7397, .offsetFromUtc: 36000 }, // AUS Eastern Standard Time |
487 | { .windowsIdKey: 14, .windowsIdIndex: 305, .ianaIdIndex: 712, .offsetFromUtc: 14400 }, // Azerbaijan Standard Time |
488 | { .windowsIdKey: 15, .windowsIdIndex: 330, .ianaIdIndex: 743, .offsetFromUtc: -3600 }, // Azores Standard Time |
489 | { .windowsIdKey: 16, .windowsIdIndex: 351, .ianaIdIndex: 759,.offsetFromUtc: -10800 }, // Bahia Standard Time |
490 | { .windowsIdKey: 17, .windowsIdIndex: 371, .ianaIdIndex: 773, .offsetFromUtc: 21600 }, // Bangladesh Standard Time |
491 | { .windowsIdKey: 18, .windowsIdIndex: 396, .ianaIdIndex: 797, .offsetFromUtc: 10800 }, // Belarus Standard Time |
492 | { .windowsIdKey: 19, .windowsIdIndex: 418, .ianaIdIndex: 810, .offsetFromUtc: 39600 }, // Bougainville Standard Time |
493 | { .windowsIdKey: 20, .windowsIdIndex: 445, .ianaIdIndex: 7414,.offsetFromUtc: -21600 }, // Canada Central Standard Time |
494 | { .windowsIdKey: 21, .windowsIdIndex: 474, .ianaIdIndex: 878, .offsetFromUtc: -3600 }, // Cape Verde Standard Time |
495 | { .windowsIdKey: 22, .windowsIdIndex: 499, .ianaIdIndex: 898, .offsetFromUtc: 14400 }, // Caucasus Standard Time |
496 | { .windowsIdKey: 23, .windowsIdIndex: 522, .ianaIdIndex: 7429, .offsetFromUtc: 34200 }, // Cen. Australia Standard Time |
497 | { .windowsIdKey: 24, .windowsIdIndex: 551, .ianaIdIndex: 1034,.offsetFromUtc: -21600 }, // Central America Standard Time |
498 | { .windowsIdKey: 25, .windowsIdIndex: 581, .ianaIdIndex: 7448, .offsetFromUtc: 21600 }, // Central Asia Standard Time |
499 | { .windowsIdKey: 26, .windowsIdIndex: 608, .ianaIdIndex: 7460,.offsetFromUtc: -14400 }, // Central Brazilian Standard Time |
500 | { .windowsIdKey: 27, .windowsIdIndex: 640, .ianaIdIndex: 1245, .offsetFromUtc: 3600 }, // Central Europe Standard Time |
501 | { .windowsIdKey: 28, .windowsIdIndex: 669, .ianaIdIndex: 1373, .offsetFromUtc: 3600 }, // Central European Standard Time |
502 | { .windowsIdKey: 29, .windowsIdIndex: 700, .ianaIdIndex: 1460, .offsetFromUtc: 39600 }, // Central Pacific Standard Time |
503 | { .windowsIdKey: 30, .windowsIdIndex: 730, .ianaIdIndex: 7475,.offsetFromUtc: -21600 }, // Central Standard Time (Mexico) |
504 | { .windowsIdKey: 31, .windowsIdIndex: 761, .ianaIdIndex: 7495,.offsetFromUtc: -21600 }, // Central Standard Time |
505 | { .windowsIdKey: 32, .windowsIdIndex: 783, .ianaIdIndex: 1873, .offsetFromUtc: 28800 }, // China Standard Time |
506 | { .windowsIdKey: 33, .windowsIdIndex: 803, .ianaIdIndex: 1913, .offsetFromUtc: 45900 }, // Chatham Islands Standard Time |
507 | { .windowsIdKey: 34, .windowsIdIndex: 833, .ianaIdIndex: 1929,.offsetFromUtc: -18000 }, // Cuba Standard Time |
508 | { .windowsIdKey: 35, .windowsIdIndex: 852, .ianaIdIndex: 1944,.offsetFromUtc: -43200 }, // Dateline Standard Time |
509 | { .windowsIdKey: 36, .windowsIdIndex: 875, .ianaIdIndex: 2045, .offsetFromUtc: 10800 }, // E. Africa Standard Time |
510 | { .windowsIdKey: 37, .windowsIdIndex: 899, .ianaIdIndex: 7511, .offsetFromUtc: 36000 }, // E. Australia Standard Time |
511 | { .windowsIdKey: 38, .windowsIdIndex: 926, .ianaIdIndex: 2186, .offsetFromUtc: 7200 }, // E. Europe Standard Time |
512 | { .windowsIdKey: 39, .windowsIdIndex: 950, .ianaIdIndex: 2202,.offsetFromUtc: -10800 }, // E. South America Standard Time |
513 | { .windowsIdKey: 40, .windowsIdIndex: 981, .ianaIdIndex: 2220,.offsetFromUtc: -21600 }, // Easter Island Standard Time |
514 | { .windowsIdKey: 41, .windowsIdIndex: 1009, .ianaIdIndex: 7530,.offsetFromUtc: -18000 }, // Eastern Standard Time |
515 | { .windowsIdKey: 42, .windowsIdIndex: 1031, .ianaIdIndex: 2520,.offsetFromUtc: -18000 }, // Eastern Standard Time (Mexico) |
516 | { .windowsIdKey: 43, .windowsIdIndex: 1062, .ianaIdIndex: 2535, .offsetFromUtc: 7200 }, // Egypt Standard Time |
517 | { .windowsIdKey: 44, .windowsIdIndex: 1082, .ianaIdIndex: 2548, .offsetFromUtc: 18000 }, // Ekaterinburg Standard Time |
518 | { .windowsIdKey: 45, .windowsIdIndex: 1109, .ianaIdIndex: 2567, .offsetFromUtc: 43200 }, // Fiji Standard Time |
519 | { .windowsIdKey: 46, .windowsIdIndex: 1128, .ianaIdIndex: 7547, .offsetFromUtc: 7200 }, // FLE Standard Time |
520 | { .windowsIdKey: 47, .windowsIdIndex: 1146, .ianaIdIndex: 2714, .offsetFromUtc: 14400 }, // Georgian Standard Time |
521 | { .windowsIdKey: 48, .windowsIdIndex: 1169, .ianaIdIndex: 2853, .offsetFromUtc: 0 }, // GMT Standard Time |
522 | { .windowsIdKey: 49, .windowsIdIndex: 1187, .ianaIdIndex: 2867,.offsetFromUtc: -10800 }, // Greenland Standard Time |
523 | { .windowsIdKey: 50, .windowsIdIndex: 1211, .ianaIdIndex: 2979, .offsetFromUtc: 0 }, // Greenwich Standard Time |
524 | { .windowsIdKey: 51, .windowsIdIndex: 1235, .ianaIdIndex: 3163, .offsetFromUtc: 7200 }, // GTB Standard Time |
525 | { .windowsIdKey: 52, .windowsIdIndex: 1253, .ianaIdIndex: 3180,.offsetFromUtc: -18000 }, // Haiti Standard Time |
526 | { .windowsIdKey: 53, .windowsIdIndex: 1273, .ianaIdIndex: 3264,.offsetFromUtc: -36000 }, // Hawaiian Standard Time |
527 | { .windowsIdKey: 54, .windowsIdIndex: 1296, .ianaIdIndex: 3281, .offsetFromUtc: 19800 }, // India Standard Time |
528 | { .windowsIdKey: 55, .windowsIdIndex: 1316, .ianaIdIndex: 3295, .offsetFromUtc: 12600 }, // Iran Standard Time |
529 | { .windowsIdKey: 56, .windowsIdIndex: 1335, .ianaIdIndex: 3307, .offsetFromUtc: 7200 }, // Israel Standard Time |
530 | { .windowsIdKey: 57, .windowsIdIndex: 1356, .ianaIdIndex: 3322, .offsetFromUtc: 7200 }, // Jordan Standard Time |
531 | { .windowsIdKey: 58, .windowsIdIndex: 1377, .ianaIdIndex: 3333, .offsetFromUtc: 7200 }, // Kaliningrad Standard Time |
532 | { .windowsIdKey: 59, .windowsIdIndex: 1403, .ianaIdIndex: 3352, .offsetFromUtc: 32400 }, // Korea Standard Time |
533 | { .windowsIdKey: 60, .windowsIdIndex: 1423, .ianaIdIndex: 3363, .offsetFromUtc: 7200 }, // Libya Standard Time |
534 | { .windowsIdKey: 61, .windowsIdIndex: 1443, .ianaIdIndex: 3389, .offsetFromUtc: 50400 }, // Line Islands Standard Time |
535 | { .windowsIdKey: 62, .windowsIdIndex: 1470, .ianaIdIndex: 3408, .offsetFromUtc: 37800 }, // Lord Howe Standard Time |
536 | { .windowsIdKey: 63, .windowsIdIndex: 1494, .ianaIdIndex: 3428, .offsetFromUtc: 36000 }, // Magadan Standard Time |
537 | { .windowsIdKey: 64, .windowsIdIndex: 1516, .ianaIdIndex: 3441,.offsetFromUtc: -10800 }, // Magallanes Standard Time |
538 | { .windowsIdKey: 65, .windowsIdIndex: 1541, .ianaIdIndex: 3462,.offsetFromUtc: -34200 }, // Marquesas Standard Time |
539 | { .windowsIdKey: 66, .windowsIdIndex: 1565, .ianaIdIndex: 3480, .offsetFromUtc: 14400 }, // Mauritius Standard Time |
540 | { .windowsIdKey: 67, .windowsIdIndex: 1589, .ianaIdIndex: 3524, .offsetFromUtc: 7200 }, // Middle East Standard Time |
541 | { .windowsIdKey: 68, .windowsIdIndex: 1615, .ianaIdIndex: 3536,.offsetFromUtc: -10800 }, // Montevideo Standard Time |
542 | { .windowsIdKey: 69, .windowsIdIndex: 1640, .ianaIdIndex: 3555, .offsetFromUtc: 0 }, // Morocco Standard Time |
543 | { .windowsIdKey: 70, .windowsIdIndex: 1662, .ianaIdIndex: 3589,.offsetFromUtc: -25200 }, // Mountain Standard Time (Mexico) |
544 | { .windowsIdKey: 71, .windowsIdIndex: 1694, .ianaIdIndex: 7559,.offsetFromUtc: -25200 }, // Mountain Standard Time |
545 | { .windowsIdKey: 72, .windowsIdIndex: 1717, .ianaIdIndex: 3752, .offsetFromUtc: 23400 }, // Myanmar Standard Time |
546 | { .windowsIdKey: 73, .windowsIdIndex: 1739, .ianaIdIndex: 3765, .offsetFromUtc: 21600 }, // N. Central Asia Standard Time |
547 | { .windowsIdKey: 74, .windowsIdIndex: 1769, .ianaIdIndex: 3782, .offsetFromUtc: 3600 }, // Namibia Standard Time |
548 | { .windowsIdKey: 75, .windowsIdIndex: 1791, .ianaIdIndex: 3798, .offsetFromUtc: 20700 }, // Nepal Standard Time |
549 | { .windowsIdKey: 76, .windowsIdIndex: 1811, .ianaIdIndex: 3831, .offsetFromUtc: 43200 }, // New Zealand Standard Time |
550 | { .windowsIdKey: 77, .windowsIdIndex: 1837, .ianaIdIndex: 3848,.offsetFromUtc: -12600 }, // Newfoundland Standard Time |
551 | { .windowsIdKey: 78, .windowsIdIndex: 1864, .ianaIdIndex: 3865, .offsetFromUtc: 39600 }, // Norfolk Standard Time |
552 | { .windowsIdKey: 79, .windowsIdIndex: 1886, .ianaIdIndex: 3881, .offsetFromUtc: 28800 }, // North Asia East Standard Time |
553 | { .windowsIdKey: 80, .windowsIdIndex: 1916, .ianaIdIndex: 7574, .offsetFromUtc: 25200 }, // North Asia Standard Time |
554 | { .windowsIdKey: 81, .windowsIdIndex: 1941, .ianaIdIndex: 3929, .offsetFromUtc: 30600 }, // North Korea Standard Time |
555 | { .windowsIdKey: 82, .windowsIdIndex: 1967, .ianaIdIndex: 3944, .offsetFromUtc: 21600 }, // Omsk Standard Time |
556 | { .windowsIdKey: 83, .windowsIdIndex: 1986, .ianaIdIndex: 3954,.offsetFromUtc: -10800 }, // Pacific SA Standard Time |
557 | { .windowsIdKey: 84, .windowsIdIndex: 2011, .ianaIdIndex: 3997,.offsetFromUtc: -28800 }, // Pacific Standard Time |
558 | { .windowsIdKey: 85, .windowsIdIndex: 2033, .ianaIdIndex: 7591,.offsetFromUtc: -28800 }, // Pacific Standard Time (Mexico) |
559 | { .windowsIdKey: 86, .windowsIdIndex: 2064, .ianaIdIndex: 4054, .offsetFromUtc: 18000 }, // Pakistan Standard Time |
560 | { .windowsIdKey: 87, .windowsIdIndex: 2087, .ianaIdIndex: 4067,.offsetFromUtc: -14400 }, // Paraguay Standard Time |
561 | { .windowsIdKey: 88, .windowsIdIndex: 2110, .ianaIdIndex: 4084, .offsetFromUtc: 18000 }, // Qyzylorda Standard Time |
562 | { .windowsIdKey: 89, .windowsIdIndex: 2134, .ianaIdIndex: 4133, .offsetFromUtc: 3600 }, // Romance Standard Time |
563 | { .windowsIdKey: 90, .windowsIdIndex: 2156, .ianaIdIndex: 4173, .offsetFromUtc: 14400 }, // Russia Time Zone 3 |
564 | { .windowsIdKey: 91, .windowsIdIndex: 2175, .ianaIdIndex: 4187, .offsetFromUtc: 39600 }, // Russia Time Zone 10 |
565 | { .windowsIdKey: 92, .windowsIdIndex: 2195, .ianaIdIndex: 7607, .offsetFromUtc: 43200 }, // Russia Time Zone 11 |
566 | { .windowsIdKey: 93, .windowsIdIndex: 2215, .ianaIdIndex: 7622, .offsetFromUtc: 10800 }, // Russian Standard Time |
567 | { .windowsIdKey: 94, .windowsIdIndex: 2237, .ianaIdIndex: 4421,.offsetFromUtc: -10800 }, // SA Eastern Standard Time |
568 | { .windowsIdKey: 95, .windowsIdIndex: 2262, .ianaIdIndex: 4539,.offsetFromUtc: -18000 }, // SA Pacific Standard Time |
569 | { .windowsIdKey: 96, .windowsIdIndex: 2287, .ianaIdIndex: 4690,.offsetFromUtc: -14400 }, // SA Western Standard Time |
570 | { .windowsIdKey: 97, .windowsIdIndex: 2312, .ianaIdIndex: 5130,.offsetFromUtc: -10800 }, // Saint Pierre Standard Time |
571 | { .windowsIdKey: 98, .windowsIdIndex: 2339, .ianaIdIndex: 5147, .offsetFromUtc: 39600 }, // Sakhalin Standard Time |
572 | { .windowsIdKey: 99, .windowsIdIndex: 2362, .ianaIdIndex: 5161, .offsetFromUtc: 46800 }, // Samoa Standard Time |
573 | { .windowsIdKey: 100, .windowsIdIndex: 2382, .ianaIdIndex: 5174, .offsetFromUtc: 0 }, // Sao Tome Standard Time |
574 | { .windowsIdKey: 101, .windowsIdIndex: 2405, .ianaIdIndex: 5190, .offsetFromUtc: 14400 }, // Saratov Standard Time |
575 | { .windowsIdKey: 102, .windowsIdIndex: 2427, .ianaIdIndex: 5308, .offsetFromUtc: 25200 }, // SE Asia Standard Time |
576 | { .windowsIdKey: 103, .windowsIdIndex: 2449, .ianaIdIndex: 5412, .offsetFromUtc: 28800 }, // Singapore Standard Time |
577 | { .windowsIdKey: 104, .windowsIdIndex: 2473, .ianaIdIndex: 5561, .offsetFromUtc: 7200 }, // South Africa Standard Time |
578 | { .windowsIdKey: 105, .windowsIdIndex: 2500, .ianaIdIndex: 5609, .offsetFromUtc: 7200 }, // South Sudan Standard Time |
579 | { .windowsIdKey: 106, .windowsIdIndex: 2526, .ianaIdIndex: 5621, .offsetFromUtc: 19800 }, // Sri Lanka Standard Time |
580 | { .windowsIdKey: 107, .windowsIdIndex: 2550, .ianaIdIndex: 5634, .offsetFromUtc: 7200 }, // Sudan Standard Time |
581 | { .windowsIdKey: 108, .windowsIdIndex: 2570, .ianaIdIndex: 5650, .offsetFromUtc: 7200 }, // Syria Standard Time |
582 | { .windowsIdKey: 109, .windowsIdIndex: 2590, .ianaIdIndex: 5664, .offsetFromUtc: 28800 }, // Taipei Standard Time |
583 | { .windowsIdKey: 110, .windowsIdIndex: 2611, .ianaIdIndex: 7636, .offsetFromUtc: 36000 }, // Tasmania Standard Time |
584 | { .windowsIdKey: 111, .windowsIdIndex: 2634, .ianaIdIndex: 5731,.offsetFromUtc: -10800 }, // Tocantins Standard Time |
585 | { .windowsIdKey: 112, .windowsIdIndex: 2658, .ianaIdIndex: 5773, .offsetFromUtc: 32400 }, // Tokyo Standard Time |
586 | { .windowsIdKey: 113, .windowsIdIndex: 2678, .ianaIdIndex: 5808, .offsetFromUtc: 25200 }, // Tomsk Standard Time |
587 | { .windowsIdKey: 114, .windowsIdIndex: 2698, .ianaIdIndex: 5819, .offsetFromUtc: 46800 }, // Tonga Standard Time |
588 | { .windowsIdKey: 115, .windowsIdIndex: 2718, .ianaIdIndex: 5837, .offsetFromUtc: 32400 }, // Transbaikal Standard Time |
589 | { .windowsIdKey: 116, .windowsIdIndex: 2744, .ianaIdIndex: 5848, .offsetFromUtc: 7200 }, // Turkey Standard Time |
590 | { .windowsIdKey: 117, .windowsIdIndex: 2765, .ianaIdIndex: 5864,.offsetFromUtc: -14400 }, // Turks And Caicos Standard Time |
591 | { .windowsIdKey: 118, .windowsIdIndex: 2796, .ianaIdIndex: 7653, .offsetFromUtc: 28800 }, // Ulaanbaatar Standard Time |
592 | { .windowsIdKey: 119, .windowsIdIndex: 2822, .ianaIdIndex: 7670,.offsetFromUtc: -18000 }, // US Eastern Standard Time |
593 | { .windowsIdKey: 120, .windowsIdIndex: 2847, .ianaIdIndex: 6069,.offsetFromUtc: -25200 }, // US Mountain Standard Time |
594 | { .windowsIdKey: 121, .windowsIdIndex: 2873, .ianaIdIndex: 6085,.offsetFromUtc: -39600 }, // UTC-11 |
595 | { .windowsIdKey: 122, .windowsIdIndex: 2880, .ianaIdIndex: 6142,.offsetFromUtc: -32400 }, // UTC-09 |
596 | { .windowsIdKey: 123, .windowsIdIndex: 2887, .ianaIdIndex: 6168,.offsetFromUtc: -28800 }, // UTC-08 |
597 | { .windowsIdKey: 124, .windowsIdIndex: 2894, .ianaIdIndex: 6195, .offsetFromUtc: -7200 }, // UTC-02 |
598 | { .windowsIdKey: 125, .windowsIdIndex: 2901, .ianaIdIndex: 7691, .offsetFromUtc: 0 }, // UTC |
599 | { .windowsIdKey: 126, .windowsIdIndex: 2905, .ianaIdIndex: 6260, .offsetFromUtc: 43200 }, // UTC+12 |
600 | { .windowsIdKey: 127, .windowsIdIndex: 2912, .ianaIdIndex: 6378, .offsetFromUtc: 46800 }, // UTC+13 |
601 | { .windowsIdKey: 128, .windowsIdIndex: 2919, .ianaIdIndex: 6423,.offsetFromUtc: -16200 }, // Venezuela Standard Time |
602 | { .windowsIdKey: 129, .windowsIdIndex: 2943, .ianaIdIndex: 7699, .offsetFromUtc: 36000 }, // Vladivostok Standard Time |
603 | { .windowsIdKey: 130, .windowsIdIndex: 2969, .ianaIdIndex: 6470, .offsetFromUtc: 14400 }, // Volgograd Standard Time |
604 | { .windowsIdKey: 131, .windowsIdIndex: 2993, .ianaIdIndex: 6487, .offsetFromUtc: 28800 }, // W. Australia Standard Time |
605 | { .windowsIdKey: 132, .windowsIdIndex: 3020, .ianaIdIndex: 6671, .offsetFromUtc: 3600 }, // W. Central Africa Standard Time |
606 | { .windowsIdKey: 133, .windowsIdIndex: 3052, .ianaIdIndex: 7716, .offsetFromUtc: 3600 }, // W. Europe Standard Time |
607 | { .windowsIdKey: 134, .windowsIdIndex: 3076, .ianaIdIndex: 6970, .offsetFromUtc: 25200 }, // W. Mongolia Standard Time |
608 | { .windowsIdKey: 135, .windowsIdIndex: 3102, .ianaIdIndex: 7730, .offsetFromUtc: 18000 }, // West Asia Standard Time |
609 | { .windowsIdKey: 136, .windowsIdIndex: 3126, .ianaIdIndex: 7744, .offsetFromUtc: 7200 }, // West Bank Standard Time |
610 | { .windowsIdKey: 137, .windowsIdIndex: 3150, .ianaIdIndex: 7243, .offsetFromUtc: 36000 }, // West Pacific Standard Time |
611 | { .windowsIdKey: 138, .windowsIdIndex: 3177, .ianaIdIndex: 7756, .offsetFromUtc: 32400 }, // Yakutsk Standard Time |
612 | { .windowsIdKey: 139, .windowsIdIndex: 3199, .ianaIdIndex: 7769,.offsetFromUtc: -25200 }, // Yukon Standard Time |
613 | }; |
614 | |
615 | // IANA ID Index, UTC Offset |
616 | static constexpr QUtcData utcDataTable[] = { |
617 | { .ianaIdIndex: 7788, .offsetFromUtc: 0 }, // UTC |
618 | { .ianaIdIndex: 7792,.offsetFromUtc: -50400 }, // UTC-14:00 |
619 | { .ianaIdIndex: 7802,.offsetFromUtc: -46800 }, // UTC-13:00 |
620 | { .ianaIdIndex: 7812,.offsetFromUtc: -43200 }, // UTC-12:00 |
621 | { .ianaIdIndex: 7822,.offsetFromUtc: -39600 }, // UTC-11:00 |
622 | { .ianaIdIndex: 7832,.offsetFromUtc: -36000 }, // UTC-10:00 |
623 | { .ianaIdIndex: 7842,.offsetFromUtc: -32400 }, // UTC-09:00 |
624 | { .ianaIdIndex: 7852,.offsetFromUtc: -28800 }, // UTC-08:00 |
625 | { .ianaIdIndex: 7862,.offsetFromUtc: -25200 }, // UTC-07:00 |
626 | { .ianaIdIndex: 7872,.offsetFromUtc: -21600 }, // UTC-06:00 |
627 | { .ianaIdIndex: 7882,.offsetFromUtc: -18000 }, // UTC-05:00 |
628 | { .ianaIdIndex: 7892,.offsetFromUtc: -16200 }, // UTC-04:30 |
629 | { .ianaIdIndex: 7902,.offsetFromUtc: -14400 }, // UTC-04:00 |
630 | { .ianaIdIndex: 7912,.offsetFromUtc: -12600 }, // UTC-03:30 |
631 | { .ianaIdIndex: 7922,.offsetFromUtc: -10800 }, // UTC-03:00 |
632 | { .ianaIdIndex: 7932, .offsetFromUtc: -7200 }, // UTC-02:00 |
633 | { .ianaIdIndex: 7942, .offsetFromUtc: -3600 }, // UTC-01:00 |
634 | { .ianaIdIndex: 7952, .offsetFromUtc: 0 }, // UTC-00:00 |
635 | { .ianaIdIndex: 7962, .offsetFromUtc: 0 }, // UTC+00:00 |
636 | { .ianaIdIndex: 7972, .offsetFromUtc: 3600 }, // UTC+01:00 |
637 | { .ianaIdIndex: 7982, .offsetFromUtc: 7200 }, // UTC+02:00 |
638 | { .ianaIdIndex: 7992, .offsetFromUtc: 10800 }, // UTC+03:00 |
639 | { .ianaIdIndex: 8002, .offsetFromUtc: 12600 }, // UTC+03:30 |
640 | { .ianaIdIndex: 8012, .offsetFromUtc: 14400 }, // UTC+04:00 |
641 | { .ianaIdIndex: 8022, .offsetFromUtc: 16200 }, // UTC+04:30 |
642 | { .ianaIdIndex: 8032, .offsetFromUtc: 18000 }, // UTC+05:00 |
643 | { .ianaIdIndex: 8042, .offsetFromUtc: 19800 }, // UTC+05:30 |
644 | { .ianaIdIndex: 8052, .offsetFromUtc: 20700 }, // UTC+05:45 |
645 | { .ianaIdIndex: 8062, .offsetFromUtc: 21600 }, // UTC+06:00 |
646 | { .ianaIdIndex: 8072, .offsetFromUtc: 23400 }, // UTC+06:30 |
647 | { .ianaIdIndex: 8082, .offsetFromUtc: 25200 }, // UTC+07:00 |
648 | { .ianaIdIndex: 8092, .offsetFromUtc: 28800 }, // UTC+08:00 |
649 | { .ianaIdIndex: 8102, .offsetFromUtc: 30600 }, // UTC+08:30 |
650 | { .ianaIdIndex: 8112, .offsetFromUtc: 32400 }, // UTC+09:00 |
651 | { .ianaIdIndex: 8122, .offsetFromUtc: 34200 }, // UTC+09:30 |
652 | { .ianaIdIndex: 8132, .offsetFromUtc: 36000 }, // UTC+10:00 |
653 | { .ianaIdIndex: 8142, .offsetFromUtc: 39600 }, // UTC+11:00 |
654 | { .ianaIdIndex: 8152, .offsetFromUtc: 43200 }, // UTC+12:00 |
655 | { .ianaIdIndex: 8162, .offsetFromUtc: 46800 }, // UTC+13:00 |
656 | { .ianaIdIndex: 8172, .offsetFromUtc: 50400 }, // UTC+14:00 |
657 | }; |
658 | |
659 | static constexpr char windowsIdData[] = { |
660 | 0x41, 0x66, 0x67, 0x68, 0x61, 0x6e, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
661 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x6c, 0x61, 0x73, 0x6b, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
662 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x6c, 0x65, 0x75, 0x74, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, |
663 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x6c, 0x74, 0x61, 0x69, 0x20, 0x53, 0x74, 0x61, |
664 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x20, 0x53, 0x74, 0x61, 0x6e, |
665 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, |
666 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x69, 0x63, 0x20, 0x53, |
667 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, |
668 | 0x6e, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x73, 0x74, |
669 | 0x72, 0x61, 0x6b, 0x68, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
670 | 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
671 | 0x69, 0x6d, 0x65, 0x0, 0x41, 0x55, 0x53, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, |
672 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x75, 0x73, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, |
673 | 0x6c, 0x20, 0x57, 0x2e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, |
674 | 0x55, 0x53, 0x20, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
675 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x7a, 0x65, 0x72, 0x62, 0x61, 0x69, 0x6a, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, |
676 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x7a, 0x6f, 0x72, 0x65, 0x73, 0x20, 0x53, 0x74, 0x61, |
677 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, 0x61, 0x68, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, |
678 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, 0x61, 0x6e, 0x67, 0x6c, 0x61, 0x64, 0x65, 0x73, |
679 | 0x68, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, 0x65, 0x6c, 0x61, |
680 | 0x72, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, 0x6f, |
681 | 0x75, 0x67, 0x61, 0x69, 0x6e, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
682 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, |
683 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x61, 0x70, 0x65, 0x20, 0x56, |
684 | 0x65, 0x72, 0x64, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, |
685 | 0x61, 0x75, 0x63, 0x61, 0x73, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
686 | 0x65, 0x0, 0x43, 0x65, 0x6e, 0x2e, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, |
687 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, |
688 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
689 | 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
690 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x42, 0x72, 0x61, 0x7a, |
691 | 0x69, 0x6c, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
692 | 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
693 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x45, 0x75, 0x72, |
694 | 0x6f, 0x70, 0x65, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
695 | 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, |
696 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, |
697 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x29, |
698 | 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
699 | 0x6d, 0x65, 0x0, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
700 | 0x6d, 0x65, 0x0, 0x43, 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x20, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x73, 0x20, 0x53, |
701 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x75, 0x62, 0x61, 0x20, 0x53, 0x74, |
702 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x44, 0x61, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x65, |
703 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x41, 0x66, |
704 | 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, |
705 | 0x2e, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
706 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, |
707 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x41, |
708 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
709 | 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x20, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
710 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, |
711 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, |
712 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, |
713 | 0x29, 0x0, 0x45, 0x67, 0x79, 0x70, 0x74, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
714 | 0x65, 0x0, 0x45, 0x6b, 0x61, 0x74, 0x65, 0x72, 0x69, 0x6e, 0x62, 0x75, 0x72, 0x67, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
715 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x46, 0x69, 0x6a, 0x69, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
716 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x46, 0x4c, 0x45, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
717 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x65, 0x6f, 0x72, 0x67, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
718 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x4d, 0x54, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
719 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x72, 0x65, 0x65, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, |
720 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x72, 0x65, 0x65, 0x6e, 0x77, 0x69, 0x63, 0x68, |
721 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x54, 0x42, 0x20, 0x53, |
722 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x48, 0x61, 0x69, 0x74, 0x69, 0x20, 0x53, |
723 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x48, 0x61, 0x77, 0x61, 0x69, 0x69, 0x61, |
724 | 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x49, 0x6e, 0x64, 0x69, |
725 | 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x49, 0x72, 0x61, 0x6e, |
726 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x49, 0x73, 0x72, 0x61, 0x65, |
727 | 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4a, 0x6f, 0x72, 0x64, |
728 | 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4b, 0x61, 0x6c, |
729 | 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x72, 0x61, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
730 | 0x6d, 0x65, 0x0, 0x4b, 0x6f, 0x72, 0x65, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
731 | 0x6d, 0x65, 0x0, 0x4c, 0x69, 0x62, 0x79, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
732 | 0x6d, 0x65, 0x0, 0x4c, 0x69, 0x6e, 0x65, 0x20, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, |
733 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4c, 0x6f, 0x72, 0x64, 0x20, 0x48, 0x6f, 0x77, 0x65, 0x20, |
734 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x67, 0x61, 0x64, 0x61, |
735 | 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x67, 0x61, |
736 | 0x6c, 0x6c, 0x61, 0x6e, 0x65, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
737 | 0x0, 0x4d, 0x61, 0x72, 0x71, 0x75, 0x65, 0x73, 0x61, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
738 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x75, 0x72, 0x69, 0x74, 0x69, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
739 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x20, 0x45, 0x61, 0x73, 0x74, |
740 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x6f, 0x6e, 0x74, 0x65, |
741 | 0x76, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
742 | 0x4d, 0x6f, 0x72, 0x6f, 0x63, 0x63, 0x6f, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
743 | 0x65, 0x0, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
744 | 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x29, 0x0, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, |
745 | 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x79, 0x61, |
746 | 0x6e, 0x6d, 0x61, 0x72, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, |
747 | 0x2e, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
748 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x61, 0x6d, 0x69, 0x62, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, |
749 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x65, 0x70, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, |
750 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x65, 0x77, 0x20, 0x5a, 0x65, 0x61, 0x6c, 0x61, |
751 | 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x65, 0x77, |
752 | 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
753 | 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x66, 0x6f, 0x6c, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
754 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x45, 0x61, 0x73, |
755 | 0x74, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x74, |
756 | 0x68, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
757 | 0x0, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x20, 0x4b, 0x6f, 0x72, 0x65, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
758 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4f, 0x6d, 0x73, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
759 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x41, 0x20, 0x53, 0x74, 0x61, |
760 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, |
761 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
762 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, |
763 | 0x63, 0x6f, 0x29, 0x0, 0x50, 0x61, 0x6b, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
764 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x72, 0x61, 0x67, 0x75, 0x61, 0x79, 0x20, 0x53, 0x74, 0x61, 0x6e, |
765 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x51, 0x79, 0x7a, 0x79, 0x6c, 0x6f, 0x72, 0x64, 0x61, 0x20, |
766 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x52, 0x6f, 0x6d, 0x61, 0x6e, 0x63, |
767 | 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x52, 0x75, 0x73, 0x73, |
768 | 0x69, 0x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x5a, 0x6f, 0x6e, 0x65, 0x20, 0x33, 0x0, 0x52, 0x75, 0x73, 0x73, 0x69, |
769 | 0x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x5a, 0x6f, 0x6e, 0x65, 0x20, 0x31, 0x30, 0x0, 0x52, 0x75, 0x73, 0x73, 0x69, |
770 | 0x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x5a, 0x6f, 0x6e, 0x65, 0x20, 0x31, 0x31, 0x0, 0x52, 0x75, 0x73, 0x73, 0x69, |
771 | 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x41, 0x20, |
772 | 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
773 | 0x65, 0x0, 0x53, 0x41, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
774 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x41, 0x20, 0x57, 0x65, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, |
775 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, 0x69, 0x6e, 0x74, 0x20, 0x50, 0x69, |
776 | 0x65, 0x72, 0x72, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, |
777 | 0x61, 0x6b, 0x68, 0x61, 0x6c, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
778 | 0x65, 0x0, 0x53, 0x61, 0x6d, 0x6f, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
779 | 0x65, 0x0, 0x53, 0x61, 0x6f, 0x20, 0x54, 0x6f, 0x6d, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
780 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, 0x72, 0x61, 0x74, 0x6f, 0x76, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
781 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x45, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
782 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x69, 0x6e, 0x67, 0x61, 0x70, 0x6f, 0x72, 0x65, 0x20, 0x53, |
783 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x41, |
784 | 0x66, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
785 | 0x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x53, 0x75, 0x64, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
786 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x72, 0x69, 0x20, 0x4c, 0x61, 0x6e, 0x6b, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, |
787 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x75, 0x64, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, |
788 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x79, 0x72, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, |
789 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x61, 0x69, 0x70, 0x65, 0x69, 0x20, 0x53, 0x74, 0x61, |
790 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x61, 0x73, 0x6d, 0x61, 0x6e, 0x69, 0x61, 0x20, |
791 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, 0x63, 0x61, 0x6e, 0x74, |
792 | 0x69, 0x6e, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, |
793 | 0x6b, 0x79, 0x6f, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, |
794 | 0x6d, 0x73, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, |
795 | 0x6e, 0x67, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x72, |
796 | 0x61, 0x6e, 0x73, 0x62, 0x61, 0x69, 0x6b, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
797 | 0x69, 0x6d, 0x65, 0x0, 0x54, 0x75, 0x72, 0x6b, 0x65, 0x79, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
798 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x75, 0x72, 0x6b, 0x73, 0x20, 0x41, 0x6e, 0x64, 0x20, 0x43, 0x61, 0x69, 0x63, 0x6f, |
799 | 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x6c, 0x61, 0x61, |
800 | 0x6e, 0x62, 0x61, 0x61, 0x74, 0x61, 0x72, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
801 | 0x65, 0x0, 0x55, 0x53, 0x20, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
802 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x53, 0x20, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x53, |
803 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x31, 0x0, |
804 | 0x55, 0x54, 0x43, 0x2d, 0x30, 0x39, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x38, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x32, |
805 | 0x0, 0x55, 0x54, 0x43, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x32, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x33, 0x0, 0x56, |
806 | 0x65, 0x6e, 0x65, 0x7a, 0x75, 0x65, 0x6c, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
807 | 0x6d, 0x65, 0x0, 0x56, 0x6c, 0x61, 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
808 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x56, 0x6f, 0x6c, 0x67, 0x6f, 0x67, 0x72, 0x61, 0x64, 0x20, 0x53, |
809 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x41, 0x75, 0x73, 0x74, |
810 | 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
811 | 0x57, 0x2e, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, |
812 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, |
813 | 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x4d, |
814 | 0x6f, 0x6e, 0x67, 0x6f, 0x6c, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
815 | 0x65, 0x0, 0x57, 0x65, 0x73, 0x74, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
816 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x65, 0x73, 0x74, 0x20, 0x42, 0x61, 0x6e, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, |
817 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x65, 0x73, 0x74, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, |
818 | 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x59, 0x61, 0x6b, |
819 | 0x75, 0x74, 0x73, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x59, |
820 | 0x75, 0x6b, 0x6f, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0 |
821 | }; |
822 | |
823 | static constexpr char ianaIdData[] = { |
824 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x62, 0x75, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, |
825 | 0x6e, 0x63, 0x68, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x6e, |
826 | 0x65, 0x61, 0x75, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x74, 0x6c, 0x61, 0x6b, 0x61, 0x74, |
827 | 0x6c, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x6d, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, |
828 | 0x69, 0x63, 0x61, 0x2f, 0x53, 0x69, 0x74, 0x6b, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x59, 0x61, |
829 | 0x6b, 0x75, 0x74, 0x61, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x64, 0x61, 0x6b, 0x0, 0x41, |
830 | 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x72, 0x6e, 0x61, 0x75, 0x6c, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x68, |
831 | 0x72, 0x61, 0x69, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x77, 0x61, 0x69, 0x74, 0x0, 0x41, 0x73, 0x69, |
832 | 0x61, 0x2f, 0x51, 0x61, 0x74, 0x61, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x52, 0x69, 0x79, 0x61, 0x64, 0x68, 0x0, |
833 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x64, 0x65, 0x6e, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x34, 0x0, |
834 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x75, 0x73, 0x63, 0x61, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x75, 0x62, |
835 | 0x61, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x67, 0x68, 0x64, 0x61, 0x64, 0x0, 0x41, 0x6d, 0x65, 0x72, |
836 | 0x69, 0x63, 0x61, 0x2f, 0x42, 0x75, 0x65, 0x6e, 0x6f, 0x73, 0x5f, 0x41, 0x69, 0x72, 0x65, 0x73, 0x20, 0x41, 0x6d, 0x65, |
837 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4c, 0x61, 0x5f, 0x52, 0x69, |
838 | 0x6f, 0x6a, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, |
839 | 0x61, 0x2f, 0x52, 0x69, 0x6f, 0x5f, 0x47, 0x61, 0x6c, 0x6c, 0x65, 0x67, 0x6f, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, |
840 | 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6c, 0x74, 0x61, 0x20, 0x41, |
841 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6e, |
842 | 0x5f, 0x4a, 0x75, 0x61, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, |
843 | 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x5f, 0x4c, 0x75, 0x69, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
844 | 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x54, 0x75, 0x63, 0x75, 0x6d, 0x61, 0x6e, 0x20, 0x41, |
845 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x55, 0x73, 0x68, |
846 | 0x75, 0x61, 0x69, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x74, 0x61, 0x6d, 0x61, 0x72, |
847 | 0x63, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x72, 0x64, 0x6f, 0x62, 0x61, 0x20, 0x41, |
848 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x6a, 0x75, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
849 | 0x2f, 0x4d, 0x65, 0x6e, 0x64, 0x6f, 0x7a, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x73, 0x74, 0x72, |
850 | 0x61, 0x6b, 0x68, 0x61, 0x6e, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x55, 0x6c, 0x79, 0x61, 0x6e, 0x6f, 0x76, |
851 | 0x73, 0x6b, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x42, 0x65, 0x72, 0x6d, 0x75, 0x64, 0x61, 0x0, |
852 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x6c, 0x69, 0x66, 0x61, 0x78, 0x20, 0x41, 0x6d, 0x65, 0x72, |
853 | 0x69, 0x63, 0x61, 0x2f, 0x47, 0x6c, 0x61, 0x63, 0x65, 0x5f, 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
854 | 0x61, 0x2f, 0x47, 0x6f, 0x6f, 0x73, 0x65, 0x5f, 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
855 | 0x4d, 0x6f, 0x6e, 0x63, 0x74, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x68, 0x75, 0x6c, |
856 | 0x65, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x44, 0x61, 0x72, 0x77, 0x69, 0x6e, 0x0, 0x41, |
857 | 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x45, 0x75, 0x63, 0x6c, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, |
858 | 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x53, 0x79, 0x64, 0x6e, 0x65, 0x79, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, |
859 | 0x61, 0x2f, 0x4d, 0x65, 0x6c, 0x62, 0x6f, 0x75, 0x72, 0x6e, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x6b, |
860 | 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x73, 0x62, 0x79, 0x73, 0x75, |
861 | 0x6e, 0x64, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x41, 0x7a, 0x6f, 0x72, 0x65, 0x73, 0x0, 0x41, |
862 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x68, 0x69, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x68, |
863 | 0x61, 0x6b, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x68, 0x69, 0x6d, 0x70, 0x68, 0x75, 0x0, 0x45, 0x75, 0x72, |
864 | 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x69, 0x6e, 0x73, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x42, 0x6f, |
865 | 0x75, 0x67, 0x61, 0x69, 0x6e, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, |
866 | 0x65, 0x67, 0x69, 0x6e, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x77, 0x69, 0x66, 0x74, 0x5f, |
867 | 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x0, 0x41, 0x74, |
868 | 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x43, 0x61, 0x70, 0x65, 0x5f, 0x56, 0x65, 0x72, 0x64, 0x65, 0x0, 0x41, 0x73, |
869 | 0x69, 0x61, 0x2f, 0x59, 0x65, 0x72, 0x65, 0x76, 0x61, 0x6e, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, |
870 | 0x2f, 0x41, 0x64, 0x65, 0x6c, 0x61, 0x69, 0x64, 0x65, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, |
871 | 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x48, 0x69, 0x6c, 0x6c, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, |
872 | 0x36, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x65, 0x6c, 0x69, 0x7a, 0x65, 0x0, 0x41, 0x6d, 0x65, |
873 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x73, 0x74, 0x61, 0x5f, 0x52, 0x69, 0x63, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, |
874 | 0x66, 0x69, 0x63, 0x2f, 0x47, 0x61, 0x6c, 0x61, 0x70, 0x61, 0x67, 0x6f, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
875 | 0x61, 0x2f, 0x45, 0x6c, 0x5f, 0x53, 0x61, 0x6c, 0x76, 0x61, 0x64, 0x6f, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
876 | 0x61, 0x2f, 0x47, 0x75, 0x61, 0x74, 0x65, 0x6d, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
877 | 0x54, 0x65, 0x67, 0x75, 0x63, 0x69, 0x67, 0x61, 0x6c, 0x70, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
878 | 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x75, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x36, 0x0, 0x41, 0x6e, |
879 | 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, 0x49, 0x6e, 0x64, 0x69, |
880 | 0x61, 0x6e, 0x2f, 0x43, 0x68, 0x61, 0x67, 0x6f, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x72, 0x75, 0x6d, 0x71, |
881 | 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6c, 0x6d, 0x61, 0x74, 0x79, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x51, |
882 | 0x6f, 0x73, 0x74, 0x61, 0x6e, 0x61, 0x79, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x69, 0x73, 0x68, 0x6b, 0x65, 0x6b, |
883 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x75, 0x69, 0x61, 0x62, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, |
884 | 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6d, 0x70, 0x6f, 0x5f, 0x47, 0x72, 0x61, 0x6e, 0x64, 0x65, 0x0, 0x45, 0x75, 0x72, |
885 | 0x6f, 0x70, 0x65, 0x2f, 0x54, 0x69, 0x72, 0x61, 0x6e, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x50, 0x72, |
886 | 0x61, 0x67, 0x75, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, |
887 | 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x50, 0x6f, 0x64, 0x67, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x0, 0x45, 0x75, |
888 | 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x65, 0x6c, 0x67, 0x72, 0x61, 0x64, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
889 | 0x2f, 0x42, 0x72, 0x61, 0x74, 0x69, 0x73, 0x6c, 0x61, 0x76, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, |
890 | 0x6a, 0x75, 0x62, 0x6c, 0x6a, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x72, 0x61, |
891 | 0x6a, 0x65, 0x76, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x5a, 0x61, 0x67, 0x72, 0x65, 0x62, 0x0, 0x45, |
892 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x6b, 0x6f, 0x70, 0x6a, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
893 | 0x57, 0x61, 0x72, 0x73, 0x61, 0x77, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x31, 0x0, 0x41, 0x6e, |
894 | 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x73, 0x65, 0x79, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, |
895 | 0x69, 0x63, 0x2f, 0x50, 0x6f, 0x6e, 0x61, 0x70, 0x65, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4b, 0x6f, |
896 | 0x73, 0x72, 0x61, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x6f, 0x75, 0x6d, 0x65, 0x61, 0x0, |
897 | 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x75, 0x61, 0x64, 0x61, 0x6c, 0x63, 0x61, 0x6e, 0x61, 0x6c, 0x0, |
898 | 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x66, 0x61, 0x74, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
899 | 0x61, 0x2f, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x5f, 0x43, 0x69, 0x74, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
900 | 0x61, 0x2f, 0x42, 0x61, 0x68, 0x69, 0x61, 0x5f, 0x42, 0x61, 0x6e, 0x64, 0x65, 0x72, 0x61, 0x73, 0x20, 0x41, 0x6d, 0x65, |
901 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x72, 0x69, 0x64, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
902 | 0x4d, 0x6f, 0x6e, 0x74, 0x65, 0x72, 0x72, 0x65, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x68, |
903 | 0x69, 0x68, 0x75, 0x61, 0x68, 0x75, 0x61, 0x0, 0x43, 0x53, 0x54, 0x36, 0x43, 0x44, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, |
904 | 0x69, 0x63, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x6e, 0x69, 0x70, 0x65, 0x67, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
905 | 0x2f, 0x52, 0x61, 0x69, 0x6e, 0x79, 0x5f, 0x52, 0x69, 0x76, 0x65, 0x72, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
906 | 0x2f, 0x52, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x5f, 0x49, 0x6e, 0x6c, 0x65, 0x74, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
907 | 0x61, 0x2f, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, |
908 | 0x61, 0x74, 0x61, 0x6d, 0x6f, 0x72, 0x6f, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4f, 0x6a, 0x69, |
909 | 0x6e, 0x61, 0x67, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, |
910 | 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x4b, 0x6e, 0x6f, |
911 | 0x78, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x54, 0x65, |
912 | 0x6c, 0x6c, 0x5f, 0x43, 0x69, 0x74, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x6e, 0x6f, |
913 | 0x6d, 0x69, 0x6e, 0x65, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, |
914 | 0x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x42, 0x65, 0x75, 0x6c, 0x61, 0x68, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
915 | 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x43, 0x65, 0x6e, 0x74, 0x65, |
916 | 0x72, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, |
917 | 0x74, 0x61, 0x2f, 0x4e, 0x65, 0x77, 0x5f, 0x53, 0x61, 0x6c, 0x65, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x68, |
918 | 0x61, 0x6e, 0x67, 0x68, 0x61, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x6e, 0x67, 0x5f, 0x4b, 0x6f, 0x6e, |
919 | 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x63, 0x61, 0x75, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
920 | 0x2f, 0x43, 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x76, |
921 | 0x61, 0x6e, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x32, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, |
922 | 0x4d, 0x54, 0x2d, 0x33, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x79, 0x6f, 0x77, |
923 | 0x61, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x6f, 0x6d, 0x6f, 0x72, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, |
924 | 0x63, 0x61, 0x2f, 0x44, 0x6a, 0x69, 0x62, 0x6f, 0x75, 0x74, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, |
925 | 0x73, 0x6d, 0x65, 0x72, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x64, 0x64, 0x69, 0x73, 0x5f, 0x41, |
926 | 0x62, 0x61, 0x62, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x61, 0x69, 0x72, 0x6f, 0x62, 0x69, 0x0, |
927 | 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x41, 0x6e, 0x74, 0x61, 0x6e, 0x61, 0x6e, 0x61, 0x72, 0x69, 0x76, 0x6f, 0x0, |
928 | 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x79, 0x6f, 0x74, 0x74, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, |
929 | 0x61, 0x2f, 0x4d, 0x6f, 0x67, 0x61, 0x64, 0x69, 0x73, 0x68, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, |
930 | 0x61, 0x72, 0x5f, 0x65, 0x73, 0x5f, 0x53, 0x61, 0x6c, 0x61, 0x61, 0x6d, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
931 | 0x4b, 0x61, 0x6d, 0x70, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x42, 0x72, |
932 | 0x69, 0x73, 0x62, 0x61, 0x6e, 0x65, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x69, 0x6e, |
933 | 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x43, 0x68, 0x69, 0x73, 0x69, 0x6e, 0x61, |
934 | 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6f, 0x5f, 0x50, 0x61, 0x75, 0x6c, 0x6f, 0x0, |
935 | 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x0, 0x45, 0x53, 0x54, 0x35, 0x45, |
936 | 0x44, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x61, 0x73, 0x73, 0x61, 0x75, 0x0, 0x41, 0x6d, |
937 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x6f, 0x72, 0x6f, 0x6e, 0x74, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
938 | 0x61, 0x2f, 0x49, 0x71, 0x61, 0x6c, 0x75, 0x69, 0x74, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, |
939 | 0x6e, 0x74, 0x72, 0x65, 0x61, 0x6c, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x69, 0x70, 0x69, 0x67, |
940 | 0x6f, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6e, 0x67, 0x6e, 0x69, 0x72, 0x74, 0x75, |
941 | 0x6e, 0x67, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x68, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x5f, 0x42, |
942 | 0x61, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x65, 0x77, 0x5f, 0x59, 0x6f, 0x72, 0x6b, 0x20, |
943 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x65, 0x74, 0x72, 0x6f, 0x69, 0x74, 0x20, 0x41, 0x6d, 0x65, 0x72, |
944 | 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x50, 0x65, 0x74, 0x65, 0x72, 0x73, 0x62, 0x75, |
945 | 0x72, 0x67, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x56, |
946 | 0x69, 0x6e, 0x63, 0x65, 0x6e, 0x6e, 0x65, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, |
947 | 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x61, 0x6d, 0x61, 0x63, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
948 | 0x2f, 0x4b, 0x65, 0x6e, 0x74, 0x75, 0x63, 0x6b, 0x79, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x69, 0x63, 0x65, 0x6c, 0x6c, 0x6f, |
949 | 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x75, 0x69, 0x73, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, |
950 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6e, 0x63, 0x75, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, |
951 | 0x61, 0x2f, 0x43, 0x61, 0x69, 0x72, 0x6f, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x65, 0x6b, 0x61, 0x74, 0x65, 0x72, |
952 | 0x69, 0x6e, 0x62, 0x75, 0x72, 0x67, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x46, 0x69, 0x6a, 0x69, 0x0, |
953 | 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x72, 0x69, 0x65, 0x68, 0x61, 0x6d, 0x6e, 0x0, 0x45, 0x75, 0x72, |
954 | 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x6f, 0x66, 0x69, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x54, 0x61, 0x6c, |
955 | 0x6c, 0x69, 0x6e, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x48, 0x65, 0x6c, 0x73, 0x69, 0x6e, 0x6b, 0x69, |
956 | 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x52, 0x69, 0x67, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
957 | 0x56, 0x69, 0x6c, 0x6e, 0x69, 0x75, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x69, 0x65, 0x76, 0x20, |
958 | 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x55, 0x7a, 0x68, 0x67, 0x6f, 0x72, 0x6f, 0x64, 0x20, 0x45, 0x75, 0x72, 0x6f, |
959 | 0x70, 0x65, 0x2f, 0x5a, 0x61, 0x70, 0x6f, 0x72, 0x6f, 0x7a, 0x68, 0x79, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, |
960 | 0x62, 0x69, 0x6c, 0x69, 0x73, 0x69, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x46, 0x61, 0x65, 0x72, |
961 | 0x6f, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x47, 0x75, 0x65, 0x72, 0x6e, 0x73, 0x65, 0x79, 0x0, 0x45, |
962 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x44, 0x75, 0x62, 0x6c, 0x69, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
963 | 0x49, 0x73, 0x6c, 0x65, 0x5f, 0x6f, 0x66, 0x5f, 0x4d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4a, |
964 | 0x65, 0x72, 0x73, 0x65, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x69, 0x73, 0x62, 0x6f, 0x6e, 0x20, |
965 | 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x64, 0x65, 0x69, 0x72, 0x61, 0x0, 0x41, 0x74, 0x6c, |
966 | 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x43, 0x61, 0x6e, 0x61, 0x72, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
967 | 0x4c, 0x6f, 0x6e, 0x64, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x6f, 0x64, 0x74, 0x68, |
968 | 0x61, 0x62, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4f, 0x75, 0x61, 0x67, 0x61, 0x64, 0x6f, 0x75, 0x67, 0x6f, |
969 | 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x6e, 0x6a, 0x75, 0x6c, 0x0, 0x41, 0x66, 0x72, 0x69, |
970 | 0x63, 0x61, 0x2f, 0x41, 0x63, 0x63, 0x72, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x6e, |
971 | 0x6d, 0x61, 0x72, 0x6b, 0x73, 0x68, 0x61, 0x76, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x69, 0x73, |
972 | 0x73, 0x61, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x6e, 0x61, 0x6b, 0x72, 0x79, 0x0, 0x41, |
973 | 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x52, 0x65, 0x79, 0x6b, 0x6a, 0x61, 0x76, 0x69, 0x6b, 0x0, 0x41, 0x66, |
974 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x62, 0x69, 0x64, 0x6a, 0x61, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
975 | 0x4d, 0x6f, 0x6e, 0x72, 0x6f, 0x76, 0x69, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x6d, 0x61, |
976 | 0x6b, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x75, 0x61, 0x6b, 0x63, 0x68, 0x6f, 0x74, 0x74, |
977 | 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x53, 0x74, 0x5f, 0x48, 0x65, 0x6c, 0x65, 0x6e, 0x61, 0x0, |
978 | 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x6b, 0x61, 0x72, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
979 | 0x46, 0x72, 0x65, 0x65, 0x74, 0x6f, 0x77, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x6d, 0x65, |
980 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x69, 0x63, 0x6f, 0x73, 0x69, 0x61, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x46, |
981 | 0x61, 0x6d, 0x61, 0x67, 0x75, 0x73, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x74, 0x68, 0x65, |
982 | 0x6e, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x75, 0x63, 0x68, 0x61, 0x72, 0x65, 0x73, 0x74, 0x0, |
983 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x2d, 0x61, 0x75, 0x2d, 0x50, 0x72, 0x69, 0x6e, |
984 | 0x63, 0x65, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x30, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, |
985 | 0x63, 0x2f, 0x52, 0x61, 0x72, 0x6f, 0x74, 0x6f, 0x6e, 0x67, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
986 | 0x54, 0x61, 0x68, 0x69, 0x74, 0x69, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4a, 0x6f, 0x68, 0x6e, 0x73, |
987 | 0x74, 0x6f, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x48, 0x6f, 0x6e, 0x6f, 0x6c, 0x75, 0x6c, 0x75, |
988 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x74, 0x74, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
989 | 0x54, 0x65, 0x68, 0x72, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x65, 0x72, 0x75, 0x73, 0x61, 0x6c, 0x65, |
990 | 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6d, 0x6d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
991 | 0x4b, 0x61, 0x6c, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x72, 0x61, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x65, 0x6f, |
992 | 0x75, 0x6c, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x72, 0x69, 0x70, 0x6f, 0x6c, 0x69, 0x0, 0x45, 0x74, |
993 | 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x34, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4b, 0x69, 0x72, |
994 | 0x69, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x6f, |
995 | 0x72, 0x64, 0x5f, 0x48, 0x6f, 0x77, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x67, 0x61, 0x64, 0x61, 0x6e, |
996 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x75, 0x6e, 0x74, 0x61, 0x5f, 0x41, 0x72, 0x65, 0x6e, 0x61, |
997 | 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x72, 0x71, 0x75, 0x65, 0x73, 0x61, 0x73, 0x0, |
998 | 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x75, 0x72, 0x69, 0x74, 0x69, 0x75, 0x73, 0x0, 0x49, 0x6e, 0x64, |
999 | 0x69, 0x61, 0x6e, 0x2f, 0x52, 0x65, 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, |
1000 | 0x61, 0x68, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x65, 0x69, 0x72, 0x75, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, |
1001 | 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x65, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, |
1002 | 0x61, 0x2f, 0x43, 0x61, 0x73, 0x61, 0x62, 0x6c, 0x61, 0x6e, 0x63, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
1003 | 0x45, 0x6c, 0x5f, 0x41, 0x61, 0x69, 0x75, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x7a, |
1004 | 0x61, 0x74, 0x6c, 0x61, 0x6e, 0x0, 0x4d, 0x53, 0x54, 0x37, 0x4d, 0x44, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
1005 | 0x61, 0x2f, 0x45, 0x64, 0x6d, 0x6f, 0x6e, 0x74, 0x6f, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, |
1006 | 0x61, 0x6d, 0x62, 0x72, 0x69, 0x64, 0x67, 0x65, 0x5f, 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
1007 | 0x2f, 0x49, 0x6e, 0x75, 0x76, 0x69, 0x6b, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x59, 0x65, 0x6c, 0x6c, |
1008 | 0x6f, 0x77, 0x6b, 0x6e, 0x69, 0x66, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x69, 0x75, 0x64, |
1009 | 0x61, 0x64, 0x5f, 0x4a, 0x75, 0x61, 0x72, 0x65, 0x7a, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x65, |
1010 | 0x6e, 0x76, 0x65, 0x72, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x69, 0x73, 0x65, 0x0, 0x49, |
1011 | 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x6f, 0x63, 0x6f, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x52, 0x61, 0x6e, |
1012 | 0x67, 0x6f, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x76, 0x6f, 0x73, 0x69, 0x62, 0x69, 0x72, 0x73, |
1013 | 0x6b, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x64, 0x68, 0x6f, 0x65, 0x6b, 0x0, 0x41, 0x73, |
1014 | 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x74, 0x6d, 0x61, 0x6e, 0x64, 0x75, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, |
1015 | 0x63, 0x61, 0x2f, 0x4d, 0x63, 0x4d, 0x75, 0x72, 0x64, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x41, |
1016 | 0x75, 0x63, 0x6b, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x4a, |
1017 | 0x6f, 0x68, 0x6e, 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x6f, 0x72, 0x66, 0x6f, 0x6c, 0x6b, |
1018 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x49, 0x72, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, |
1019 | 0x72, 0x61, 0x73, 0x6e, 0x6f, 0x79, 0x61, 0x72, 0x73, 0x6b, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x76, 0x6f, |
1020 | 0x6b, 0x75, 0x7a, 0x6e, 0x65, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x50, 0x79, 0x6f, 0x6e, 0x67, 0x79, |
1021 | 0x61, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4f, 0x6d, 0x73, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
1022 | 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x69, 0x61, 0x67, 0x6f, 0x0, 0x50, 0x53, 0x54, 0x38, 0x50, 0x44, 0x54, 0x0, 0x41, |
1023 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x61, 0x6e, 0x63, 0x6f, 0x75, 0x76, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, |
1024 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x73, 0x5f, 0x41, 0x6e, 0x67, 0x65, 0x6c, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, |
1025 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x69, 0x6a, 0x75, 0x61, 0x6e, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
1026 | 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x61, 0x5f, 0x49, 0x73, 0x61, 0x62, 0x65, 0x6c, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, |
1027 | 0x61, 0x72, 0x61, 0x63, 0x68, 0x69, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x73, 0x75, 0x6e, 0x63, |
1028 | 0x69, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x51, 0x79, 0x7a, 0x79, 0x6c, 0x6f, 0x72, 0x64, 0x61, 0x0, 0x45, |
1029 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x72, 0x75, 0x73, 0x73, 0x65, 0x6c, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, |
1030 | 0x65, 0x2f, 0x43, 0x6f, 0x70, 0x65, 0x6e, 0x68, 0x61, 0x67, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
1031 | 0x50, 0x61, 0x72, 0x69, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x64, 0x72, 0x69, 0x64, 0x20, |
1032 | 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x65, 0x75, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
1033 | 0x53, 0x61, 0x6d, 0x61, 0x72, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x72, 0x65, 0x64, 0x6e, 0x65, 0x6b, 0x6f, |
1034 | 0x6c, 0x79, 0x6d, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x6d, 0x63, 0x68, 0x61, 0x74, 0x6b, 0x61, |
1035 | 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6e, 0x61, 0x64, 0x79, 0x72, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
1036 | 0x4d, 0x6f, 0x73, 0x63, 0x6f, 0x77, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x69, 0x72, 0x6f, 0x76, 0x0, |
1037 | 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x69, 0x6d, 0x66, 0x65, 0x72, 0x6f, 0x70, 0x6f, 0x6c, 0x0, 0x45, 0x74, |
1038 | 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x33, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x52, |
1039 | 0x6f, 0x74, 0x68, 0x65, 0x72, 0x61, 0x20, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, |
1040 | 0x6c, 0x6d, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x46, 0x6f, 0x72, 0x74, 0x61, 0x6c, 0x65, |
1041 | 0x7a, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x65, 0x6c, 0x65, 0x6d, 0x20, 0x41, 0x6d, 0x65, |
1042 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
1043 | 0x52, 0x65, 0x63, 0x69, 0x66, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x61, |
1044 | 0x72, 0x65, 0x6d, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x53, 0x74, 0x61, 0x6e, 0x6c, 0x65, 0x79, |
1045 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x79, 0x65, 0x6e, 0x6e, 0x65, 0x0, 0x41, 0x6d, 0x65, |
1046 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x61, 0x72, 0x69, 0x62, 0x6f, 0x0, 0x45, 0x74, 0x63, 0x2f, |
1047 | 0x47, 0x4d, 0x54, 0x2b, 0x35, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x69, 0x6f, 0x5f, 0x42, 0x72, |
1048 | 0x61, 0x6e, 0x63, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x69, 0x72, 0x75, 0x6e, 0x65, 0x70, |
1049 | 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x72, 0x61, 0x6c, 0x5f, 0x48, 0x61, 0x72, 0x62, |
1050 | 0x6f, 0x75, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x79, 0x6d, 0x61, 0x6e, 0x0, 0x41, |
1051 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x67, 0x6f, 0x74, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
1052 | 0x61, 0x2f, 0x47, 0x75, 0x61, 0x79, 0x61, 0x71, 0x75, 0x69, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
1053 | 0x4a, 0x61, 0x6d, 0x61, 0x69, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6e, 0x61, |
1054 | 0x6d, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x69, 0x6d, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, |
1055 | 0x47, 0x4d, 0x54, 0x2b, 0x34, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x67, 0x75, 0x69, 0x6c, |
1056 | 0x6c, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x74, 0x69, 0x67, 0x75, 0x61, 0x0, 0x41, |
1057 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x75, 0x62, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
1058 | 0x2f, 0x42, 0x61, 0x72, 0x62, 0x61, 0x64, 0x6f, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x61, |
1059 | 0x5f, 0x50, 0x61, 0x7a, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x61, 0x75, 0x73, 0x20, |
1060 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x61, 0x5f, 0x56, 0x69, 0x73, 0x74, 0x61, 0x20, 0x41, 0x6d, |
1061 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x6f, 0x5f, 0x56, 0x65, 0x6c, 0x68, 0x6f, 0x0, 0x41, 0x6d, |
1062 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x6f, 0x72, 0x74, 0x6f, 0x6c, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
1063 | 0x61, 0x2f, 0x42, 0x6c, 0x61, 0x6e, 0x63, 0x2d, 0x53, 0x61, 0x62, 0x6c, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
1064 | 0x63, 0x61, 0x2f, 0x4b, 0x72, 0x61, 0x6c, 0x65, 0x6e, 0x64, 0x69, 0x6a, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
1065 | 0x61, 0x2f, 0x43, 0x75, 0x72, 0x61, 0x63, 0x61, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x6f, |
1066 | 0x6d, 0x69, 0x6e, 0x69, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x6f, |
1067 | 0x5f, 0x44, 0x6f, 0x6d, 0x69, 0x6e, 0x67, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x72, 0x65, |
1068 | 0x6e, 0x61, 0x64, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x75, 0x61, 0x64, 0x65, 0x6c, 0x6f, |
1069 | 0x75, 0x70, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x75, 0x79, 0x61, 0x6e, 0x61, 0x0, 0x41, |
1070 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x72, 0x74, 0x69, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x0, 0x41, 0x6d, |
1071 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x73, 0x65, 0x72, 0x72, 0x61, 0x74, 0x0, 0x41, 0x6d, 0x65, |
1072 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x75, 0x65, 0x72, 0x74, 0x6f, 0x5f, 0x52, 0x69, 0x63, 0x6f, 0x0, 0x41, 0x6d, 0x65, |
1073 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x42, 0x61, 0x72, 0x74, 0x68, 0x65, 0x6c, 0x65, 0x6d, 0x79, 0x0, 0x41, |
1074 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x4b, 0x69, 0x74, 0x74, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, |
1075 | 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x4c, 0x75, 0x63, 0x69, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
1076 | 0x2f, 0x4d, 0x61, 0x72, 0x69, 0x67, 0x6f, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, |
1077 | 0x56, 0x69, 0x6e, 0x63, 0x65, 0x6e, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x77, 0x65, |
1078 | 0x72, 0x5f, 0x50, 0x72, 0x69, 0x6e, 0x63, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, |
1079 | 0x72, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x53, 0x70, 0x61, 0x69, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
1080 | 0x53, 0x74, 0x5f, 0x54, 0x68, 0x6f, 0x6d, 0x61, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x69, |
1081 | 0x71, 0x75, 0x65, 0x6c, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x61, 0x6b, 0x68, 0x61, 0x6c, 0x69, 0x6e, |
1082 | 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x41, 0x70, 0x69, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, |
1083 | 0x2f, 0x53, 0x61, 0x6f, 0x5f, 0x54, 0x6f, 0x6d, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x72, |
1084 | 0x61, 0x74, 0x6f, 0x76, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x37, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, |
1085 | 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x76, 0x69, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x50, 0x68, 0x6e, |
1086 | 0x6f, 0x6d, 0x5f, 0x50, 0x65, 0x6e, 0x68, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x68, 0x72, 0x69, 0x73, |
1087 | 0x74, 0x6d, 0x61, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x61, 0x6b, 0x61, 0x72, 0x74, 0x61, 0x20, 0x41, 0x73, |
1088 | 0x69, 0x61, 0x2f, 0x50, 0x6f, 0x6e, 0x74, 0x69, 0x61, 0x6e, 0x61, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x56, 0x69, |
1089 | 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6e, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x6e, 0x67, 0x6b, 0x6f, 0x6b, |
1090 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x61, 0x69, 0x67, 0x6f, 0x6e, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, |
1091 | 0x2d, 0x38, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x72, 0x75, 0x6e, 0x65, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
1092 | 0x4d, 0x61, 0x6b, 0x61, 0x73, 0x73, 0x61, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x61, 0x6c, 0x61, 0x5f, |
1093 | 0x4c, 0x75, 0x6d, 0x70, 0x75, 0x72, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x0, |
1094 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x69, 0x6c, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x69, 0x6e, |
1095 | 0x67, 0x61, 0x70, 0x6f, 0x72, 0x65, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x32, 0x0, 0x41, 0x66, 0x72, |
1096 | 0x69, 0x63, 0x61, 0x2f, 0x47, 0x61, 0x62, 0x6f, 0x72, 0x6f, 0x6e, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
1097 | 0x42, 0x75, 0x6a, 0x75, 0x6d, 0x62, 0x75, 0x72, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x75, 0x62, |
1098 | 0x75, 0x6d, 0x62, 0x61, 0x73, 0x68, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x62, 0x61, 0x62, 0x61, |
1099 | 0x6e, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x73, 0x65, 0x72, 0x75, 0x0, 0x41, 0x66, 0x72, |
1100 | 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6c, 0x61, 0x6e, 0x74, 0x79, 0x72, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
1101 | 0x4d, 0x61, 0x70, 0x75, 0x74, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x69, 0x67, 0x61, 0x6c, 0x69, |
1102 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x6f, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x73, 0x62, 0x75, 0x72, 0x67, |
1103 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x75, 0x73, 0x61, 0x6b, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, |
1104 | 0x61, 0x2f, 0x48, 0x61, 0x72, 0x61, 0x72, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x62, 0x61, |
1105 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x6f, 0x6c, 0x6f, 0x6d, 0x62, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, |
1106 | 0x2f, 0x4b, 0x68, 0x61, 0x72, 0x74, 0x6f, 0x75, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x61, 0x6d, 0x61, 0x73, |
1107 | 0x63, 0x75, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x61, 0x69, 0x70, 0x65, 0x69, 0x0, 0x41, 0x75, 0x73, 0x74, |
1108 | 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x62, 0x61, 0x72, 0x74, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, |
1109 | 0x69, 0x61, 0x2f, 0x43, 0x75, 0x72, 0x72, 0x69, 0x65, 0x20, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, |
1110 | 0x2f, 0x4d, 0x61, 0x63, 0x71, 0x75, 0x61, 0x72, 0x69, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, |
1111 | 0x72, 0x61, 0x67, 0x75, 0x61, 0x69, 0x6e, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x39, 0x0, 0x41, |
1112 | 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x61, 0x79, 0x61, 0x70, 0x75, 0x72, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x6f, |
1113 | 0x6b, 0x79, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x61, 0x6c, 0x61, 0x75, 0x0, 0x41, 0x73, |
1114 | 0x69, 0x61, 0x2f, 0x44, 0x69, 0x6c, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x6f, 0x6d, 0x73, 0x6b, 0x0, 0x50, |
1115 | 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54, 0x6f, 0x6e, 0x67, 0x61, 0x74, 0x61, 0x70, 0x75, 0x0, 0x41, 0x73, 0x69, |
1116 | 0x61, 0x2f, 0x43, 0x68, 0x69, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x49, 0x73, 0x74, 0x61, 0x6e, |
1117 | 0x62, 0x75, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x54, 0x75, |
1118 | 0x72, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x6c, 0x61, 0x61, 0x6e, 0x62, 0x61, 0x61, 0x74, 0x61, 0x72, 0x20, |
1119 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x68, 0x6f, 0x69, 0x62, 0x61, 0x6c, 0x73, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, |
1120 | 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x70, 0x6f, 0x6c, 0x69, 0x73, 0x20, 0x41, 0x6d, 0x65, |
1121 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x4d, 0x61, 0x72, 0x65, 0x6e, 0x67, 0x6f, |
1122 | 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x56, 0x65, 0x76, |
1123 | 0x61, 0x79, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x37, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
1124 | 0x2f, 0x43, 0x72, 0x65, 0x73, 0x74, 0x6f, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x77, |
1125 | 0x73, 0x6f, 0x6e, 0x5f, 0x43, 0x72, 0x65, 0x65, 0x6b, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x46, 0x6f, |
1126 | 0x72, 0x74, 0x5f, 0x4e, 0x65, 0x6c, 0x73, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x65, |
1127 | 0x72, 0x6d, 0x6f, 0x73, 0x69, 0x6c, 0x6c, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x68, 0x6f, |
1128 | 0x65, 0x6e, 0x69, 0x78, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x31, 0x0, 0x50, 0x61, 0x63, 0x69, |
1129 | 0x66, 0x69, 0x63, 0x2f, 0x50, 0x61, 0x67, 0x6f, 0x5f, 0x50, 0x61, 0x67, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, |
1130 | 0x63, 0x2f, 0x4e, 0x69, 0x75, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x69, 0x64, 0x77, 0x61, |
1131 | 0x79, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x39, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
1132 | 0x47, 0x61, 0x6d, 0x62, 0x69, 0x65, 0x72, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x38, 0x0, 0x50, 0x61, |
1133 | 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x69, 0x74, 0x63, 0x61, 0x69, 0x72, 0x6e, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, |
1134 | 0x4d, 0x54, 0x2b, 0x32, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x6f, 0x6e, 0x68, 0x61, |
1135 | 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x5f, 0x47, 0x65, 0x6f, 0x72, |
1136 | 0x67, 0x69, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x55, 0x54, 0x43, 0x20, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x0, |
1137 | 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x32, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54, |
1138 | 0x61, 0x72, 0x61, 0x77, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x6a, 0x75, 0x72, 0x6f, |
1139 | 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4b, 0x77, 0x61, 0x6a, 0x61, 0x6c, 0x65, 0x69, 0x6e, 0x0, 0x50, |
1140 | 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x61, 0x75, 0x72, 0x75, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
1141 | 0x2f, 0x46, 0x75, 0x6e, 0x61, 0x66, 0x75, 0x74, 0x69, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x57, 0x61, |
1142 | 0x6b, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x57, 0x61, 0x6c, 0x6c, 0x69, 0x73, 0x0, 0x45, 0x74, |
1143 | 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x33, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x6e, 0x64, |
1144 | 0x65, 0x72, 0x62, 0x75, 0x72, 0x79, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x46, 0x61, 0x6b, 0x61, 0x6f, |
1145 | 0x66, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x72, 0x61, 0x63, 0x61, 0x73, 0x0, 0x41, |
1146 | 0x73, 0x69, 0x61, 0x2f, 0x56, 0x6c, 0x61, 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x20, 0x41, 0x73, 0x69, 0x61, |
1147 | 0x2f, 0x55, 0x73, 0x74, 0x2d, 0x4e, 0x65, 0x72, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x6f, 0x6c, |
1148 | 0x67, 0x6f, 0x67, 0x72, 0x61, 0x64, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x50, 0x65, 0x72, |
1149 | 0x74, 0x68, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
1150 | 0x41, 0x6c, 0x67, 0x69, 0x65, 0x72, 0x73, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x75, 0x61, 0x6e, 0x64, |
1151 | 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x6f, 0x2d, 0x4e, 0x6f, 0x76, 0x6f, 0x0, |
1152 | 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x6f, 0x75, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, |
1153 | 0x2f, 0x42, 0x61, 0x6e, 0x67, 0x75, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x64, 0x6a, 0x61, 0x6d, |
1154 | 0x65, 0x6e, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x72, 0x61, 0x7a, 0x7a, 0x61, 0x76, 0x69, 0x6c, |
1155 | 0x6c, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x69, 0x6e, 0x73, 0x68, 0x61, 0x73, 0x61, 0x0, 0x41, |
1156 | 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x6c, 0x61, 0x62, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
1157 | 0x4c, 0x69, 0x62, 0x72, 0x65, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x61, |
1158 | 0x67, 0x6f, 0x73, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x69, 0x61, 0x6d, 0x65, 0x79, 0x0, 0x41, 0x66, |
1159 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x75, 0x6e, 0x69, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x6e, |
1160 | 0x64, 0x6f, 0x72, 0x72, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x69, 0x65, 0x6e, 0x6e, 0x61, 0x0, |
1161 | 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
1162 | 0x2f, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x47, 0x69, 0x62, |
1163 | 0x72, 0x61, 0x6c, 0x74, 0x61, 0x72, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x52, 0x6f, 0x6d, 0x65, 0x0, 0x45, |
1164 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x61, 0x64, 0x75, 0x7a, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, |
1165 | 0x75, 0x78, 0x65, 0x6d, 0x62, 0x6f, 0x75, 0x72, 0x67, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x6c, |
1166 | 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x6f, 0x6e, 0x61, 0x63, 0x6f, 0x0, 0x45, 0x75, 0x72, |
1167 | 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x6d, 0x73, 0x74, 0x65, 0x72, 0x64, 0x61, 0x6d, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
1168 | 0x2f, 0x4f, 0x73, 0x6c, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x6e, 0x5f, 0x4d, 0x61, 0x72, |
1169 | 0x69, 0x6e, 0x6f, 0x0, 0x41, 0x72, 0x63, 0x74, 0x69, 0x63, 0x2f, 0x4c, 0x6f, 0x6e, 0x67, 0x79, 0x65, 0x61, 0x72, 0x62, |
1170 | 0x79, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x74, 0x6f, 0x63, 0x6b, 0x68, 0x6f, 0x6c, 0x6d, |
1171 | 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x5a, 0x75, 0x72, 0x69, 0x63, 0x68, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, |
1172 | 0x65, 0x2f, 0x56, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x76, 0x64, 0x0, |
1173 | 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x35, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, |
1174 | 0x2f, 0x4d, 0x61, 0x77, 0x73, 0x6f, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4b, 0x65, 0x72, 0x67, 0x75, |
1175 | 0x65, 0x6c, 0x65, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4f, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, |
1176 | 0x41, 0x71, 0x74, 0x61, 0x75, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x71, 0x74, 0x6f, 0x62, 0x65, 0x20, 0x41, 0x73, |
1177 | 0x69, 0x61, 0x2f, 0x41, 0x74, 0x79, 0x72, 0x61, 0x75, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x6c, |
1178 | 0x64, 0x69, 0x76, 0x65, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x75, 0x73, 0x68, 0x61, 0x6e, 0x62, 0x65, 0x0, |
1179 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x73, 0x68, 0x67, 0x61, 0x62, 0x61, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, |
1180 | 0x61, 0x73, 0x68, 0x6b, 0x65, 0x6e, 0x74, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x61, 0x6d, 0x61, 0x72, 0x6b, 0x61, |
1181 | 0x6e, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x65, 0x62, 0x72, 0x6f, 0x6e, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, |
1182 | 0x47, 0x61, 0x7a, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x30, 0x0, 0x41, 0x6e, 0x74, 0x61, |
1183 | 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x75, 0x6d, 0x6f, 0x6e, 0x74, 0x44, 0x55, 0x72, 0x76, 0x69, 0x6c, 0x6c, |
1184 | 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x75, 0x61, 0x6d, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, |
1185 | 0x69, 0x63, 0x2f, 0x54, 0x72, 0x75, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x53, 0x61, 0x69, 0x70, |
1186 | 0x61, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x5f, 0x4d, 0x6f, 0x72, 0x65, |
1187 | 0x73, 0x62, 0x79, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x20, 0x41, 0x73, 0x69, |
1188 | 0x61, 0x2f, 0x4b, 0x68, 0x61, 0x6e, 0x64, 0x79, 0x67, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, |
1189 | 0x68, 0x69, 0x74, 0x65, 0x68, 0x6f, 0x72, 0x73, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, |
1190 | 0x77, 0x73, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x63, 0x68, 0x6f, 0x72, 0x61, |
1191 | 0x67, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x75, 0x65, 0x6e, 0x6f, 0x73, 0x5f, 0x41, 0x69, |
1192 | 0x72, 0x65, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x73, 0x74, 0x72, 0x61, 0x6b, 0x68, 0x61, 0x6e, |
1193 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x6c, 0x69, 0x66, 0x61, 0x78, 0x0, 0x41, 0x75, 0x73, |
1194 | 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x53, 0x79, 0x64, 0x6e, 0x65, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
1195 | 0x61, 0x2f, 0x52, 0x65, 0x67, 0x69, 0x6e, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x41, |
1196 | 0x64, 0x65, 0x6c, 0x61, 0x69, 0x64, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6c, 0x6d, 0x61, 0x74, 0x79, 0x0, |
1197 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x75, 0x69, 0x61, 0x62, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
1198 | 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x5f, 0x43, 0x69, 0x74, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
1199 | 0x63, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, |
1200 | 0x2f, 0x42, 0x72, 0x69, 0x73, 0x62, 0x61, 0x6e, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x65, |
1201 | 0x77, 0x5f, 0x59, 0x6f, 0x72, 0x6b, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x69, 0x65, 0x76, 0x0, 0x41, |
1202 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x65, 0x6e, 0x76, 0x65, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, |
1203 | 0x72, 0x61, 0x73, 0x6e, 0x6f, 0x79, 0x61, 0x72, 0x73, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, |
1204 | 0x69, 0x6a, 0x75, 0x61, 0x6e, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x6d, 0x63, 0x68, 0x61, 0x74, 0x6b, |
1205 | 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x6f, 0x73, 0x63, 0x6f, 0x77, 0x0, 0x41, 0x75, 0x73, 0x74, |
1206 | 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x62, 0x61, 0x72, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x6c, |
1207 | 0x61, 0x61, 0x6e, 0x62, 0x61, 0x61, 0x74, 0x61, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, |
1208 | 0x64, 0x69, 0x61, 0x6e, 0x61, 0x70, 0x6f, 0x6c, 0x69, 0x73, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x55, 0x54, 0x43, 0x0, 0x41, |
1209 | 0x73, 0x69, 0x61, 0x2f, 0x56, 0x6c, 0x61, 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, 0x45, 0x75, 0x72, 0x6f, |
1210 | 0x70, 0x65, 0x2f, 0x42, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x61, 0x73, 0x68, 0x6b, |
1211 | 0x65, 0x6e, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x65, 0x62, 0x72, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, |
1212 | 0x2f, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x68, 0x69, |
1213 | 0x74, 0x65, 0x68, 0x6f, 0x72, 0x73, 0x65, 0x0, 0x55, 0x54, 0x43, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x34, 0x3a, 0x30, |
1214 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x32, 0x3a, 0x30, |
1215 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x30, 0x3a, 0x30, |
1216 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x39, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x38, 0x3a, 0x30, |
1217 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x37, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x36, 0x3a, 0x30, |
1218 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x35, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x34, 0x3a, 0x33, |
1219 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x34, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x33, 0x3a, 0x33, |
1220 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x32, 0x3a, 0x30, |
1221 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x30, 0x3a, 0x30, |
1222 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x31, 0x3a, 0x30, |
1223 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x32, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x33, 0x3a, 0x30, |
1224 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x33, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x34, 0x3a, 0x30, |
1225 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x34, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x35, 0x3a, 0x30, |
1226 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x35, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x35, 0x3a, 0x34, |
1227 | 0x35, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x36, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x36, 0x3a, 0x33, |
1228 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x37, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x38, 0x3a, 0x30, |
1229 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x38, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x39, 0x3a, 0x30, |
1230 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x39, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x30, 0x3a, 0x30, |
1231 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x32, 0x3a, 0x30, |
1232 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x34, 0x3a, 0x30, |
1233 | 0x30, 0x0 |
1234 | }; |
1235 | // GENERATED PART ENDS HERE |
1236 | |
1237 | inline QByteArrayView QWindowsData::windowsId() const { return windowsIdData + windowsIdIndex; } |
1238 | // Each of the following returns a space-joined sequence of IANA IDs: |
1239 | inline QByteArrayView QWindowsData::ianaId() const { return ianaIdData + ianaIdIndex; } |
1240 | inline QByteArrayView QUtcData::id() const { return ianaIdData + ianaIdIndex; } |
1241 | inline QLatin1StringView QZoneData::id() const |
1242 | { return QLatin1StringView(ianaIdData + ianaIdIndex); } |
1243 | |
1244 | QT_END_NAMESPACE |
1245 | |
1246 | #endif // QTIMEZONEPRIVATE_DATA_P_H |
1247 | |