| 1 | // Copyright (C) 2021 The Qt Company Ltd. |
| 2 | // Copyright (C) 2013 John Layt <jlayt@kde.org> |
| 3 | // Copyright © 2004-2023 Unicode, Inc. |
| 4 | // SPDX-License-Identifier: Unicode-3.0 |
| 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_REQUIRE_CONFIG(timezone); |
| 25 | QT_BEGIN_NAMESPACE |
| 26 | |
| 27 | namespace QtTimeZoneCldr { |
| 28 | /* |
| 29 | Recognized UTC-offset zones and CLDR-derived data on timezone IDs. |
| 30 | |
| 31 | The UTC-offset zone table is provided for generic UTC±HH:mm format time |
| 32 | zones. The UTC backend can support arbitrary offsets in seconds, but only |
| 33 | advertises a limited repertoire of offsets as "available" in the normal |
| 34 | sense. |
| 35 | |
| 36 | Windows Zone ID support is included in the default base class, QTZP, so can |
| 37 | be used on all platforms, since an app running on Linux may need to |
| 38 | communicate with a Windows Outlook server. These tables can also be used to |
| 39 | look up Region Codes and UTC Offsets on platforms whose backends don't |
| 40 | directly support them. For example, Darwin does not support |
| 41 | availableTimeZones() filtering by region or offset. This table is |
| 42 | auto-generated from the CLDR supplemental/windowsZones.xml data file, with |
| 43 | IDs converted from CLDR-stable to IANA-current using bcp47/timezone.xml |
| 44 | data. |
| 45 | |
| 46 | Please do not edit this data directly. See the generated section for details |
| 47 | of its last update and how to update it. |
| 48 | */ |
| 49 | |
| 50 | struct AliasData |
| 51 | { |
| 52 | // Table is sorted on aliasId(), then on ianaId(). |
| 53 | // Indices in alias table, not IANA (group) table |
| 54 | quint16 aliasIdIndex; |
| 55 | quint16 ianaIdIndex; |
| 56 | // Values for the actual IDs: |
| 57 | constexpr QByteArrayView aliasId() const; |
| 58 | constexpr QByteArrayView ianaId() const; |
| 59 | }; |
| 60 | |
| 61 | // FIXME: rename ianaIdData[] to ianaListData[], aliasIdData[] to ianaIdData[] |
| 62 | struct ZoneData |
| 63 | { |
| 64 | // Keys (table is sorted in Windows ID, then on territory enum value): |
| 65 | quint16 windowsIdKey; // Windows ID sequence number |
| 66 | quint16 territory; // QLocale::Territory, AnyTerritory means No Territory |
| 67 | // Values for this Windows zone and territory: |
| 68 | quint16 ianaIdIndex; // Index in ianaIdData of space-joined IANA IDs |
| 69 | constexpr QLatin1StringView id() const; // Space-joined list of IANA IDs |
| 70 | constexpr auto ids() const { return id().tokenize(needle: u' '); } // Iterate IANA IDs |
| 71 | }; |
| 72 | |
| 73 | struct WindowsData |
| 74 | { |
| 75 | // Table is sorted on key and this puts the windowsId()s in ascending order. |
| 76 | quint16 windowsIdKey; // Windows ID sequence number |
| 77 | quint16 windowsIdIndex; // Index of Windows ID in windowsIdData |
| 78 | // Values for this Windows zone: |
| 79 | quint16 ianaIdIndex; // Index in ianaIdData of space-joined IANA IDs |
| 80 | qint32 offsetFromUtc; // Standard Time Offset from UTC, used for quick look-ups |
| 81 | // FIXME: ianaIdIndex is actually always a single IANA ID, so re-route to alias table |
| 82 | constexpr QByteArrayView windowsId() const; |
| 83 | constexpr QByteArrayView ianaId() const; // Space-joined list of IANA IDs |
| 84 | }; |
| 85 | |
| 86 | struct UtcData |
| 87 | { |
| 88 | quint16 ianaIdIndex; // Index in ianaIdData of space-joined IANA IDs |
| 89 | qint32 offsetFromUtc; // Offset form UTC in seconds |
| 90 | constexpr QByteArrayView id() const; // Space-joined list of IANA IDs |
| 91 | }; |
| 92 | |
| 93 | // GENERATED PART STARTS HERE |
| 94 | |
| 95 | /* |
| 96 | This part of the file was generated on 2025-01-13 from the |
| 97 | Common Locale Data Repository v46 |
| 98 | |
| 99 | http://www.unicode.org/cldr/ |
| 100 | |
| 101 | Do not edit this section: instead regenerate it using |
| 102 | cldr2qlocalexml.py and qlocalexml2cpp.py on updated (or |
| 103 | edited) CLDR data; see qtbase/util/locale_database/. |
| 104 | */ |
| 105 | |
| 106 | // Alias ID Index, Alias ID Index |
| 107 | static inline constexpr AliasData aliasMappingTable[] = { |
| 108 | { .aliasIdIndex: 0, .ianaIdIndex: 14 }, // Africa/Asmera -> Africa/Asmara |
| 109 | { .aliasIdIndex: 28, .ianaIdIndex: 44 }, // Africa/Timbuktu -> Africa/Bamako |
| 110 | { .aliasIdIndex: 58, .ianaIdIndex: 91 }, // America/Argentina/ComodRivadavia -> America/Argentina/Catamarca |
| 111 | { .aliasIdIndex: 119, .ianaIdIndex: 132 }, // America/Atka -> America/Adak |
| 112 | { .aliasIdIndex: 145, .ianaIdIndex: 166 }, // America/Buenos_Aires -> America/Argentina/Buenos_Aires |
| 113 | { .aliasIdIndex: 197, .ianaIdIndex: 91 }, // America/Catamarca -> America/Argentina/Catamarca |
| 114 | { .aliasIdIndex: 215, .ianaIdIndex: 237 }, // America/Coral_Harbour -> America/Atikokan |
| 115 | { .aliasIdIndex: 254, .ianaIdIndex: 270 }, // America/Cordoba -> America/Argentina/Cordoba |
| 116 | { .aliasIdIndex: 296, .ianaIdIndex: 313 }, // America/Ensenada -> America/Tijuana |
| 117 | { .aliasIdIndex: 329, .ianaIdIndex: 348 }, // America/Fort_Wayne -> America/Indiana/Indianapolis |
| 118 | { .aliasIdIndex: 377, .ianaIdIndex: 393 }, // America/Godthab -> America/Nuuk |
| 119 | { .aliasIdIndex: 406, .ianaIdIndex: 348 }, // America/Indianapolis -> America/Indiana/Indianapolis |
| 120 | { .aliasIdIndex: 427, .ianaIdIndex: 441 }, // America/Jujuy -> America/Argentina/Jujuy |
| 121 | { .aliasIdIndex: 465, .ianaIdIndex: 481 }, // America/Knox_IN -> America/Indiana/Knox |
| 122 | { .aliasIdIndex: 502, .ianaIdIndex: 521 }, // America/Louisville -> America/Kentucky/Louisville |
| 123 | { .aliasIdIndex: 549, .ianaIdIndex: 565 }, // America/Mendoza -> America/Argentina/Mendoza |
| 124 | { .aliasIdIndex: 591, .ianaIdIndex: 608 }, // America/Montreal -> America/Toronto |
| 125 | { .aliasIdIndex: 624, .ianaIdIndex: 608 }, // America/Nipigon -> America/Toronto |
| 126 | { .aliasIdIndex: 640, .ianaIdIndex: 660 }, // America/Pangnirtung -> America/Iqaluit |
| 127 | { .aliasIdIndex: 676, .ianaIdIndex: 695 }, // America/Porto_Acre -> America/Rio_Branco |
| 128 | { .aliasIdIndex: 714, .ianaIdIndex: 734 }, // America/Rainy_River -> America/Winnipeg |
| 129 | { .aliasIdIndex: 751, .ianaIdIndex: 270 }, // America/Rosario -> America/Argentina/Cordoba |
| 130 | { .aliasIdIndex: 767, .ianaIdIndex: 313 }, // America/Santa_Isabel -> America/Tijuana |
| 131 | { .aliasIdIndex: 788, .ianaIdIndex: 805 }, // America/Shiprock -> America/Denver |
| 132 | { .aliasIdIndex: 820, .ianaIdIndex: 608 }, // America/Thunder_Bay -> America/Toronto |
| 133 | { .aliasIdIndex: 840, .ianaIdIndex: 855 }, // America/Virgin -> America/St_Thomas |
| 134 | { .aliasIdIndex: 873, .ianaIdIndex: 893 }, // America/Yellowknife -> America/Edmonton |
| 135 | { .aliasIdIndex: 910, .ianaIdIndex: 932 }, // Antarctica/South_Pole -> Pacific/Auckland |
| 136 | { .aliasIdIndex: 949, .ianaIdIndex: 964 }, // Asia/Ashkhabad -> Asia/Ashgabat |
| 137 | { .aliasIdIndex: 978, .ianaIdIndex: 992 }, // Asia/Calcutta -> Asia/Kolkata |
| 138 | { .aliasIdIndex: 1005, .ianaIdIndex: 1021 }, // Asia/Choibalsan -> Asia/Ulaanbaatar |
| 139 | { .aliasIdIndex: 1038, .ianaIdIndex: 1053 }, // Asia/Chongqing -> Asia/Shanghai |
| 140 | { .aliasIdIndex: 1067, .ianaIdIndex: 1053 }, // Asia/Chungking -> Asia/Shanghai |
| 141 | { .aliasIdIndex: 1082, .ianaIdIndex: 1093 }, // Asia/Dacca -> Asia/Dhaka |
| 142 | { .aliasIdIndex: 1104, .ianaIdIndex: 1053 }, // Asia/Harbin -> Asia/Shanghai |
| 143 | { .aliasIdIndex: 1116, .ianaIdIndex: 1130 }, // Asia/Istanbul -> Europe/Istanbul |
| 144 | { .aliasIdIndex: 1146, .ianaIdIndex: 1159 }, // Asia/Kashgar -> Asia/Urumqi |
| 145 | { .aliasIdIndex: 1171, .ianaIdIndex: 1185 }, // Asia/Katmandu -> Asia/Kathmandu |
| 146 | { .aliasIdIndex: 1200, .ianaIdIndex: 1211 }, // Asia/Macao -> Asia/Macau |
| 147 | { .aliasIdIndex: 1222, .ianaIdIndex: 1235 }, // Asia/Rangoon -> Asia/Yangon |
| 148 | { .aliasIdIndex: 1247, .ianaIdIndex: 1259 }, // Asia/Saigon -> Asia/Ho_Chi_Minh |
| 149 | { .aliasIdIndex: 1276, .ianaIdIndex: 1290 }, // Asia/Tel_Aviv -> Asia/Jerusalem |
| 150 | { .aliasIdIndex: 1305, .ianaIdIndex: 1317 }, // Asia/Thimbu -> Asia/Thimphu |
| 151 | { .aliasIdIndex: 1330, .ianaIdIndex: 1349 }, // Asia/Ujung_Pandang -> Asia/Makassar |
| 152 | { .aliasIdIndex: 1363, .ianaIdIndex: 1021 }, // Asia/Ulan_Bator -> Asia/Ulaanbaatar |
| 153 | { .aliasIdIndex: 1379, .ianaIdIndex: 1395 }, // Atlantic/Faeroe -> Atlantic/Faroe |
| 154 | { .aliasIdIndex: 1410, .ianaIdIndex: 1429 }, // Atlantic/Jan_Mayen -> Arctic/Longyearbyen |
| 155 | { .aliasIdIndex: 1449, .ianaIdIndex: 1463 }, // Australia/ACT -> Australia/Sydney |
| 156 | { .aliasIdIndex: 1480, .ianaIdIndex: 1463 }, // Australia/Canberra -> Australia/Sydney |
| 157 | { .aliasIdIndex: 1499, .ianaIdIndex: 1516 }, // Australia/Currie -> Australia/Hobart |
| 158 | { .aliasIdIndex: 1533, .ianaIdIndex: 1547 }, // Australia/LHI -> Australia/Lord_Howe |
| 159 | { .aliasIdIndex: 1567, .ianaIdIndex: 1583 }, // Australia/North -> Australia/Darwin |
| 160 | { .aliasIdIndex: 1600, .ianaIdIndex: 1463 }, // Australia/NSW -> Australia/Sydney |
| 161 | { .aliasIdIndex: 1614, .ianaIdIndex: 1635 }, // Australia/Queensland -> Australia/Brisbane |
| 162 | { .aliasIdIndex: 1654, .ianaIdIndex: 1670 }, // Australia/South -> Australia/Adelaide |
| 163 | { .aliasIdIndex: 1689, .ianaIdIndex: 1516 }, // Australia/Tasmania -> Australia/Hobart |
| 164 | { .aliasIdIndex: 1708, .ianaIdIndex: 1727 }, // Australia/Victoria -> Australia/Melbourne |
| 165 | { .aliasIdIndex: 1747, .ianaIdIndex: 1762 }, // Australia/West -> Australia/Perth |
| 166 | { .aliasIdIndex: 1778, .ianaIdIndex: 1799 }, // Australia/Yancowinna -> Australia/Broken_Hill |
| 167 | { .aliasIdIndex: 1821, .ianaIdIndex: 695 }, // Brazil/Acre -> America/Rio_Branco |
| 168 | { .aliasIdIndex: 1833, .ianaIdIndex: 1850 }, // Brazil/DeNoronha -> America/Noronha |
| 169 | { .aliasIdIndex: 1866, .ianaIdIndex: 1878 }, // Brazil/East -> America/Sao_Paulo |
| 170 | { .aliasIdIndex: 1896, .ianaIdIndex: 1908 }, // Brazil/West -> America/Manaus |
| 171 | { .aliasIdIndex: 1923, .ianaIdIndex: 1939 }, // Canada/Atlantic -> America/Halifax |
| 172 | { .aliasIdIndex: 1955, .ianaIdIndex: 734 }, // Canada/Central -> America/Winnipeg |
| 173 | { .aliasIdIndex: 1970, .ianaIdIndex: 1995 }, // Canada/East-Saskatchewan -> America/Regina |
| 174 | { .aliasIdIndex: 2010, .ianaIdIndex: 608 }, // Canada/Eastern -> America/Toronto |
| 175 | { .aliasIdIndex: 2025, .ianaIdIndex: 893 }, // Canada/Mountain -> America/Edmonton |
| 176 | { .aliasIdIndex: 2041, .ianaIdIndex: 2061 }, // Canada/Newfoundland -> America/St_Johns |
| 177 | { .aliasIdIndex: 2078, .ianaIdIndex: 2093 }, // Canada/Pacific -> America/Vancouver |
| 178 | { .aliasIdIndex: 2111, .ianaIdIndex: 1995 }, // Canada/Saskatchewan -> America/Regina |
| 179 | { .aliasIdIndex: 2131, .ianaIdIndex: 2144 }, // Canada/Yukon -> America/Whitehorse |
| 180 | { .aliasIdIndex: 2163, .ianaIdIndex: 2167 }, // CET -> Europe/Brussels |
| 181 | { .aliasIdIndex: 2183, .ianaIdIndex: 2201 }, // Chile/Continental -> America/Santiago |
| 182 | { .aliasIdIndex: 2218, .ianaIdIndex: 2237 }, // Chile/EasterIsland -> Pacific/Easter |
| 183 | { .aliasIdIndex: 2252, .ianaIdIndex: 2260 }, // CST6CDT -> America/Chicago |
| 184 | { .aliasIdIndex: 2276, .ianaIdIndex: 2281 }, // Cuba -> America/Havana |
| 185 | { .aliasIdIndex: 2296, .ianaIdIndex: 2300 }, // EET -> Europe/Athens |
| 186 | { .aliasIdIndex: 2314, .ianaIdIndex: 2320 }, // Egypt -> Africa/Cairo |
| 187 | { .aliasIdIndex: 2333, .ianaIdIndex: 2338 }, // Eire -> Europe/Dublin |
| 188 | { .aliasIdIndex: 2352, .ianaIdIndex: 2356 }, // EST -> America/Panama |
| 189 | { .aliasIdIndex: 2371, .ianaIdIndex: 2379 }, // EST5EDT -> America/New_York |
| 190 | { .aliasIdIndex: 2396, .ianaIdIndex: 2406 }, // Etc/GMT+0 -> Etc/GMT |
| 191 | { .aliasIdIndex: 2414, .ianaIdIndex: 2406 }, // Etc/GMT-0 -> Etc/GMT |
| 192 | { .aliasIdIndex: 2424, .ianaIdIndex: 2406 }, // Etc/GMT0 -> Etc/GMT |
| 193 | { .aliasIdIndex: 2433, .ianaIdIndex: 2406 }, // Etc/Greenwich -> Etc/GMT |
| 194 | { .aliasIdIndex: 2447, .ianaIdIndex: 2455 }, // Etc/UCT -> Etc/UTC |
| 195 | { .aliasIdIndex: 2463, .ianaIdIndex: 2455 }, // Etc/Universal -> Etc/UTC |
| 196 | { .aliasIdIndex: 2477, .ianaIdIndex: 2455 }, // Etc/Zulu -> Etc/UTC |
| 197 | { .aliasIdIndex: 2486, .ianaIdIndex: 2501 }, // Europe/Belfast -> Europe/London |
| 198 | { .aliasIdIndex: 2515, .ianaIdIndex: 2527 }, // Europe/Kiev -> Europe/Kyiv |
| 199 | { .aliasIdIndex: 2539, .ianaIdIndex: 2554 }, // Europe/Nicosia -> Asia/Nicosia |
| 200 | { .aliasIdIndex: 2567, .ianaIdIndex: 2583 }, // Europe/Tiraspol -> Europe/Chisinau |
| 201 | { .aliasIdIndex: 2599, .ianaIdIndex: 2527 }, // Europe/Uzhgorod -> Europe/Kyiv |
| 202 | { .aliasIdIndex: 2615, .ianaIdIndex: 2527 }, // Europe/Zaporozhye -> Europe/Kyiv |
| 203 | { .aliasIdIndex: 2633, .ianaIdIndex: 2641 }, // Factory -> Etc/Unknown |
| 204 | { .aliasIdIndex: 2653, .ianaIdIndex: 2501 }, // GB -> Europe/London |
| 205 | { .aliasIdIndex: 2656, .ianaIdIndex: 2501 }, // GB-Eire -> Europe/London |
| 206 | { .aliasIdIndex: 2664, .ianaIdIndex: 2406 }, // GMT -> Etc/GMT |
| 207 | { .aliasIdIndex: 2668, .ianaIdIndex: 2406 }, // GMT+0 -> Etc/GMT |
| 208 | { .aliasIdIndex: 2674, .ianaIdIndex: 2406 }, // GMT-0 -> Etc/GMT |
| 209 | { .aliasIdIndex: 2680, .ianaIdIndex: 2406 }, // GMT0 -> Etc/GMT |
| 210 | { .aliasIdIndex: 2685, .ianaIdIndex: 2406 }, // Greenwich -> Etc/GMT |
| 211 | { .aliasIdIndex: 2695, .ianaIdIndex: 2704 }, // Hongkong -> Asia/Hong_Kong |
| 212 | { .aliasIdIndex: 2719, .ianaIdIndex: 2723 }, // HST -> Pacific/Honolulu |
| 213 | { .aliasIdIndex: 2740, .ianaIdIndex: 2748 }, // Iceland -> Atlantic/Reykjavik |
| 214 | { .aliasIdIndex: 2767, .ianaIdIndex: 2772 }, // Iran -> Asia/Tehran |
| 215 | { .aliasIdIndex: 2784, .ianaIdIndex: 1290 }, // Israel -> Asia/Jerusalem |
| 216 | { .aliasIdIndex: 2791, .ianaIdIndex: 2799 }, // Jamaica -> America/Jamaica |
| 217 | { .aliasIdIndex: 2815, .ianaIdIndex: 2821 }, // Japan -> Asia/Tokyo |
| 218 | { .aliasIdIndex: 2832, .ianaIdIndex: 2842 }, // Kwajalein -> Pacific/Kwajalein |
| 219 | { .aliasIdIndex: 2860, .ianaIdIndex: 2866 }, // Libya -> Africa/Tripoli |
| 220 | { .aliasIdIndex: 2881, .ianaIdIndex: 2167 }, // MET -> Europe/Brussels |
| 221 | { .aliasIdIndex: 2885, .ianaIdIndex: 313 }, // Mexico/BajaNorte -> America/Tijuana |
| 222 | { .aliasIdIndex: 2902, .ianaIdIndex: 2917 }, // Mexico/BajaSur -> America/Mazatlan |
| 223 | { .aliasIdIndex: 2934, .ianaIdIndex: 2949 }, // Mexico/General -> America/Mexico_City |
| 224 | { .aliasIdIndex: 2969, .ianaIdIndex: 2973 }, // MST -> America/Phoenix |
| 225 | { .aliasIdIndex: 2989, .ianaIdIndex: 805 }, // MST7MDT -> America/Denver |
| 226 | { .aliasIdIndex: 2997, .ianaIdIndex: 805 }, // Navajo -> America/Denver |
| 227 | { .aliasIdIndex: 3004, .ianaIdIndex: 932 }, // NZ -> Pacific/Auckland |
| 228 | { .aliasIdIndex: 3007, .ianaIdIndex: 3015 }, // NZ-CHAT -> Pacific/Chatham |
| 229 | { .aliasIdIndex: 3031, .ianaIdIndex: 3049 }, // Pacific/Enderbury -> Pacific/Kanton |
| 230 | { .aliasIdIndex: 3064, .ianaIdIndex: 2723 }, // Pacific/Johnston -> Pacific/Honolulu |
| 231 | { .aliasIdIndex: 3081, .ianaIdIndex: 3096 }, // Pacific/Ponape -> Pacific/Pohnpei |
| 232 | { .aliasIdIndex: 3112, .ianaIdIndex: 3126 }, // Pacific/Samoa -> Pacific/Pago_Pago |
| 233 | { .aliasIdIndex: 3144, .ianaIdIndex: 3157 }, // Pacific/Truk -> Pacific/Chuuk |
| 234 | { .aliasIdIndex: 3171, .ianaIdIndex: 3157 }, // Pacific/Yap -> Pacific/Chuuk |
| 235 | { .aliasIdIndex: 3183, .ianaIdIndex: 3190 }, // Poland -> Europe/Warsaw |
| 236 | { .aliasIdIndex: 3204, .ianaIdIndex: 3213 }, // Portugal -> Europe/Lisbon |
| 237 | { .aliasIdIndex: 3227, .ianaIdIndex: 1053 }, // PRC -> Asia/Shanghai |
| 238 | { .aliasIdIndex: 3231, .ianaIdIndex: 3239 }, // PST8PDT -> America/Los_Angeles |
| 239 | { .aliasIdIndex: 3259, .ianaIdIndex: 3263 }, // ROC -> Asia/Taipei |
| 240 | { .aliasIdIndex: 3275, .ianaIdIndex: 3279 }, // ROK -> Asia/Seoul |
| 241 | { .aliasIdIndex: 3290, .ianaIdIndex: 3300 }, // Singapore -> Asia/Singapore |
| 242 | { .aliasIdIndex: 3315, .ianaIdIndex: 1130 }, // Turkey -> Europe/Istanbul |
| 243 | { .aliasIdIndex: 3322, .ianaIdIndex: 2455 }, // UCT -> Etc/UTC |
| 244 | { .aliasIdIndex: 3326, .ianaIdIndex: 2455 }, // Universal -> Etc/UTC |
| 245 | { .aliasIdIndex: 3336, .ianaIdIndex: 3346 }, // US/Alaska -> America/Anchorage |
| 246 | { .aliasIdIndex: 3364, .ianaIdIndex: 132 }, // US/Aleutian -> America/Adak |
| 247 | { .aliasIdIndex: 3376, .ianaIdIndex: 2973 }, // US/Arizona -> America/Phoenix |
| 248 | { .aliasIdIndex: 3387, .ianaIdIndex: 2260 }, // US/Central -> America/Chicago |
| 249 | { .aliasIdIndex: 3398, .ianaIdIndex: 348 }, // US/East-Indiana -> America/Indiana/Indianapolis |
| 250 | { .aliasIdIndex: 3414, .ianaIdIndex: 2379 }, // US/Eastern -> America/New_York |
| 251 | { .aliasIdIndex: 3425, .ianaIdIndex: 2723 }, // US/Hawaii -> Pacific/Honolulu |
| 252 | { .aliasIdIndex: 3435, .ianaIdIndex: 481 }, // US/Indiana-Starke -> America/Indiana/Knox |
| 253 | { .aliasIdIndex: 3453, .ianaIdIndex: 3465 }, // US/Michigan -> America/Detroit |
| 254 | { .aliasIdIndex: 3481, .ianaIdIndex: 805 }, // US/Mountain -> America/Denver |
| 255 | { .aliasIdIndex: 3493, .ianaIdIndex: 3239 }, // US/Pacific -> America/Los_Angeles |
| 256 | { .aliasIdIndex: 3504, .ianaIdIndex: 3239 }, // US/Pacific-New -> America/Los_Angeles |
| 257 | { .aliasIdIndex: 3519, .ianaIdIndex: 3126 }, // US/Samoa -> Pacific/Pago_Pago |
| 258 | { .aliasIdIndex: 3528, .ianaIdIndex: 2455 }, // UTC -> Etc/UTC |
| 259 | { .aliasIdIndex: 3532, .ianaIdIndex: 3537 }, // W-SU -> Europe/Moscow |
| 260 | { .aliasIdIndex: 3551, .ianaIdIndex: 3213 }, // WET -> Europe/Lisbon |
| 261 | { .aliasIdIndex: 3555, .ianaIdIndex: 2455 }, // Zulu -> Etc/UTC |
| 262 | }; |
| 263 | |
| 264 | // Windows ID Key, Territory Enum, IANA ID Index |
| 265 | static inline constexpr ZoneData zoneDataTable[] = { |
| 266 | { .windowsIdKey: 1, .territory: 1, .ianaIdIndex: 0 }, // Afghanistan Standard Time / Afghanistan |
| 267 | { .windowsIdKey: 2, .territory: 248, .ianaIdIndex: 11 }, // Alaskan Standard Time / United States |
| 268 | { .windowsIdKey: 3, .territory: 248, .ianaIdIndex: 106 }, // Aleutian Standard Time / United States |
| 269 | { .windowsIdKey: 4, .territory: 193, .ianaIdIndex: 119 }, // Altai Standard Time / Russia |
| 270 | { .windowsIdKey: 5, .territory: 19, .ianaIdIndex: 132 }, // Arab Standard Time / Bahrain |
| 271 | { .windowsIdKey: 5, .territory: 127, .ianaIdIndex: 145 }, // Arab Standard Time / Kuwait |
| 272 | { .windowsIdKey: 5, .territory: 190, .ianaIdIndex: 157 }, // Arab Standard Time / Qatar |
| 273 | { .windowsIdKey: 5, .territory: 205, .ianaIdIndex: 168 }, // Arab Standard Time / Saudi Arabia |
| 274 | { .windowsIdKey: 5, .territory: 259, .ianaIdIndex: 180 }, // Arab Standard Time / Yemen |
| 275 | { .windowsIdKey: 6, .territory: 0, .ianaIdIndex: 190 }, // Arabian Standard Time / AnyTerritory |
| 276 | { .windowsIdKey: 6, .territory: 176, .ianaIdIndex: 200 }, // Arabian Standard Time / Oman |
| 277 | { .windowsIdKey: 6, .territory: 245, .ianaIdIndex: 212 }, // Arabian Standard Time / United Arab Emirates |
| 278 | { .windowsIdKey: 7, .territory: 113, .ianaIdIndex: 223 }, // Arabic Standard Time / Iraq |
| 279 | { .windowsIdKey: 8, .territory: 11, .ianaIdIndex: 236 }, // Argentina Standard Time / Argentina |
| 280 | { .windowsIdKey: 9, .territory: 193, .ianaIdIndex: 559 }, // Astrakhan Standard Time / Russia |
| 281 | { .windowsIdKey: 10, .territory: 26, .ianaIdIndex: 593 }, // Atlantic Standard Time / Bermuda |
| 282 | { .windowsIdKey: 10, .territory: 41, .ianaIdIndex: 610 }, // Atlantic Standard Time / Canada |
| 283 | { .windowsIdKey: 10, .territory: 95, .ianaIdIndex: 678 }, // Atlantic Standard Time / Greenland |
| 284 | { .windowsIdKey: 11, .territory: 15, .ianaIdIndex: 692 }, // AUS Central Standard Time / Australia |
| 285 | { .windowsIdKey: 12, .territory: 15, .ianaIdIndex: 709 }, // Aus Central W. Standard Time / Australia |
| 286 | { .windowsIdKey: 13, .territory: 15, .ianaIdIndex: 725 }, // AUS Eastern Standard Time / Australia |
| 287 | { .windowsIdKey: 14, .territory: 17, .ianaIdIndex: 762 }, // Azerbaijan Standard Time / Azerbaijan |
| 288 | { .windowsIdKey: 15, .territory: 95, .ianaIdIndex: 772 }, // Azores Standard Time / Greenland |
| 289 | { .windowsIdKey: 15, .territory: 188, .ianaIdIndex: 793 }, // Azores Standard Time / Portugal |
| 290 | { .windowsIdKey: 16, .territory: 32, .ianaIdIndex: 809 }, // Bahia Standard Time / Brazil |
| 291 | { .windowsIdKey: 17, .territory: 20, .ianaIdIndex: 823 }, // Bangladesh Standard Time / Bangladesh |
| 292 | { .windowsIdKey: 17, .territory: 27, .ianaIdIndex: 834 }, // Bangladesh Standard Time / Bhutan |
| 293 | { .windowsIdKey: 18, .territory: 22, .ianaIdIndex: 847 }, // Belarus Standard Time / Belarus |
| 294 | { .windowsIdKey: 19, .territory: 182, .ianaIdIndex: 860 }, // Bougainville Standard Time / Papua New Guinea |
| 295 | { .windowsIdKey: 20, .territory: 41, .ianaIdIndex: 881 }, // Canada Central Standard Time / Canada |
| 296 | { .windowsIdKey: 21, .territory: 0, .ianaIdIndex: 918 }, // Cape Verde Standard Time / AnyTerritory |
| 297 | { .windowsIdKey: 21, .territory: 43, .ianaIdIndex: 928 }, // Cape Verde Standard Time / Cape Verde |
| 298 | { .windowsIdKey: 22, .territory: 12, .ianaIdIndex: 948 }, // Caucasus Standard Time / Armenia |
| 299 | { .windowsIdKey: 23, .territory: 15, .ianaIdIndex: 961 }, // Cen. Australia Standard Time / Australia |
| 300 | { .windowsIdKey: 24, .territory: 0, .ianaIdIndex: 1002 }, // Central America Standard Time / AnyTerritory |
| 301 | { .windowsIdKey: 24, .territory: 24, .ianaIdIndex: 1012 }, // Central America Standard Time / Belize |
| 302 | { .windowsIdKey: 24, .territory: 59, .ianaIdIndex: 1027 }, // Central America Standard Time / Costa Rica |
| 303 | { .windowsIdKey: 24, .territory: 70, .ianaIdIndex: 1046 }, // Central America Standard Time / Ecuador |
| 304 | { .windowsIdKey: 24, .territory: 72, .ianaIdIndex: 1064 }, // Central America Standard Time / El Salvador |
| 305 | { .windowsIdKey: 24, .territory: 99, .ianaIdIndex: 1084 }, // Central America Standard Time / Guatemala |
| 306 | { .windowsIdKey: 24, .territory: 106, .ianaIdIndex: 1102 }, // Central America Standard Time / Honduras |
| 307 | { .windowsIdKey: 24, .territory: 168, .ianaIdIndex: 1122 }, // Central America Standard Time / Nicaragua |
| 308 | { .windowsIdKey: 25, .territory: 0, .ianaIdIndex: 1138 }, // Central Asia Standard Time / AnyTerritory |
| 309 | { .windowsIdKey: 25, .territory: 9, .ianaIdIndex: 1148 }, // Central Asia Standard Time / Antarctica |
| 310 | { .windowsIdKey: 25, .territory: 33, .ianaIdIndex: 1166 }, // Central Asia Standard Time / British Indian Ocean Territory |
| 311 | { .windowsIdKey: 25, .territory: 50, .ianaIdIndex: 1180 }, // Central Asia Standard Time / China |
| 312 | { .windowsIdKey: 25, .territory: 128, .ianaIdIndex: 1192 }, // Central Asia Standard Time / Kyrgyzstan |
| 313 | { .windowsIdKey: 26, .territory: 32, .ianaIdIndex: 1205 }, // Central Brazilian Standard Time / Brazil |
| 314 | { .windowsIdKey: 27, .territory: 3, .ianaIdIndex: 1241 }, // Central Europe Standard Time / Albania |
| 315 | { .windowsIdKey: 27, .territory: 64, .ianaIdIndex: 1255 }, // Central Europe Standard Time / Czechia |
| 316 | { .windowsIdKey: 27, .territory: 108, .ianaIdIndex: 1269 }, // Central Europe Standard Time / Hungary |
| 317 | { .windowsIdKey: 27, .territory: 157, .ianaIdIndex: 1285 }, // Central Europe Standard Time / Montenegro |
| 318 | { .windowsIdKey: 27, .territory: 207, .ianaIdIndex: 1302 }, // Central Europe Standard Time / Serbia |
| 319 | { .windowsIdKey: 27, .territory: 212, .ianaIdIndex: 1318 }, // Central Europe Standard Time / Slovakia |
| 320 | { .windowsIdKey: 27, .territory: 213, .ianaIdIndex: 1336 }, // Central Europe Standard Time / Slovenia |
| 321 | { .windowsIdKey: 28, .territory: 29, .ianaIdIndex: 1353 }, // Central European Standard Time / Bosnia and Herzegovina |
| 322 | { .windowsIdKey: 28, .territory: 60, .ianaIdIndex: 1369 }, // Central European Standard Time / Croatia |
| 323 | { .windowsIdKey: 28, .territory: 140, .ianaIdIndex: 1383 }, // Central European Standard Time / Macedonia |
| 324 | { .windowsIdKey: 28, .territory: 187, .ianaIdIndex: 1397 }, // Central European Standard Time / Poland |
| 325 | { .windowsIdKey: 29, .territory: 0, .ianaIdIndex: 1411 }, // Central Pacific Standard Time / AnyTerritory |
| 326 | { .windowsIdKey: 29, .territory: 9, .ianaIdIndex: 1422 }, // Central Pacific Standard Time / Antarctica |
| 327 | { .windowsIdKey: 29, .territory: 153, .ianaIdIndex: 1439 }, // Central Pacific Standard Time / Micronesia |
| 328 | { .windowsIdKey: 29, .territory: 166, .ianaIdIndex: 1470 }, // Central Pacific Standard Time / New Caledonia |
| 329 | { .windowsIdKey: 29, .territory: 214, .ianaIdIndex: 1485 }, // Central Pacific Standard Time / Solomon Islands |
| 330 | { .windowsIdKey: 29, .territory: 252, .ianaIdIndex: 1505 }, // Central Pacific Standard Time / Vanuatu |
| 331 | { .windowsIdKey: 30, .territory: 41, .ianaIdIndex: 1519 }, // Central Standard Time / Canada |
| 332 | { .windowsIdKey: 30, .territory: 152, .ianaIdIndex: 1574 }, // Central Standard Time / Mexico |
| 333 | { .windowsIdKey: 30, .territory: 248, .ianaIdIndex: 1608 }, // Central Standard Time / United States |
| 334 | { .windowsIdKey: 31, .territory: 152, .ianaIdIndex: 1776 }, // Central Standard Time (Mexico) / Mexico |
| 335 | { .windowsIdKey: 32, .territory: 167, .ianaIdIndex: 1870 }, // Chatham Islands Standard Time / New Zealand |
| 336 | { .windowsIdKey: 33, .territory: 50, .ianaIdIndex: 1886 }, // China Standard Time / China |
| 337 | { .windowsIdKey: 33, .territory: 107, .ianaIdIndex: 1900 }, // China Standard Time / Hong Kong |
| 338 | { .windowsIdKey: 33, .territory: 139, .ianaIdIndex: 1915 }, // China Standard Time / Macao |
| 339 | { .windowsIdKey: 34, .territory: 61, .ianaIdIndex: 1926 }, // Cuba Standard Time / Cuba |
| 340 | { .windowsIdKey: 35, .territory: 0, .ianaIdIndex: 1941 }, // Dateline Standard Time / AnyTerritory |
| 341 | { .windowsIdKey: 36, .territory: 0, .ianaIdIndex: 1952 }, // E. Africa Standard Time / AnyTerritory |
| 342 | { .windowsIdKey: 36, .territory: 9, .ianaIdIndex: 1962 }, // E. Africa Standard Time / Antarctica |
| 343 | { .windowsIdKey: 36, .territory: 55, .ianaIdIndex: 1979 }, // E. Africa Standard Time / Comoros |
| 344 | { .windowsIdKey: 36, .territory: 67, .ianaIdIndex: 1993 }, // E. Africa Standard Time / Djibouti |
| 345 | { .windowsIdKey: 36, .territory: 74, .ianaIdIndex: 2009 }, // E. Africa Standard Time / Eritrea |
| 346 | { .windowsIdKey: 36, .territory: 77, .ianaIdIndex: 2023 }, // E. Africa Standard Time / Ethiopia |
| 347 | { .windowsIdKey: 36, .territory: 124, .ianaIdIndex: 2042 }, // E. Africa Standard Time / Kenya |
| 348 | { .windowsIdKey: 36, .territory: 141, .ianaIdIndex: 2057 }, // E. Africa Standard Time / Madagascar |
| 349 | { .windowsIdKey: 36, .territory: 151, .ianaIdIndex: 2077 }, // E. Africa Standard Time / Mayotte |
| 350 | { .windowsIdKey: 36, .territory: 215, .ianaIdIndex: 2092 }, // E. Africa Standard Time / Somalia |
| 351 | { .windowsIdKey: 36, .territory: 230, .ianaIdIndex: 2109 }, // E. Africa Standard Time / Tanzania |
| 352 | { .windowsIdKey: 36, .territory: 243, .ianaIdIndex: 2130 }, // E. Africa Standard Time / Uganda |
| 353 | { .windowsIdKey: 37, .territory: 15, .ianaIdIndex: 2145 }, // E. Australia Standard Time / Australia |
| 354 | { .windowsIdKey: 38, .territory: 154, .ianaIdIndex: 2183 }, // E. Europe Standard Time / Moldova |
| 355 | { .windowsIdKey: 39, .territory: 32, .ianaIdIndex: 2199 }, // E. South America Standard Time / Brazil |
| 356 | { .windowsIdKey: 40, .territory: 49, .ianaIdIndex: 2217 }, // Easter Island Standard Time / Chile |
| 357 | { .windowsIdKey: 41, .territory: 18, .ianaIdIndex: 2232 }, // Eastern Standard Time / Bahamas |
| 358 | { .windowsIdKey: 41, .territory: 41, .ianaIdIndex: 2247 }, // Eastern Standard Time / Canada |
| 359 | { .windowsIdKey: 41, .territory: 248, .ianaIdIndex: 2279 }, // Eastern Standard Time / United States |
| 360 | { .windowsIdKey: 42, .territory: 152, .ianaIdIndex: 2445 }, // Eastern Standard Time (Mexico) / Mexico |
| 361 | { .windowsIdKey: 43, .territory: 71, .ianaIdIndex: 2460 }, // Egypt Standard Time / Egypt |
| 362 | { .windowsIdKey: 44, .territory: 193, .ianaIdIndex: 2473 }, // Ekaterinburg Standard Time / Russia |
| 363 | { .windowsIdKey: 45, .territory: 82, .ianaIdIndex: 2492 }, // Fiji Standard Time / Fiji |
| 364 | { .windowsIdKey: 46, .territory: 2, .ianaIdIndex: 2505 }, // FLE Standard Time / Aland Islands |
| 365 | { .windowsIdKey: 46, .territory: 36, .ianaIdIndex: 2522 }, // FLE Standard Time / Bulgaria |
| 366 | { .windowsIdKey: 46, .territory: 75, .ianaIdIndex: 2535 }, // FLE Standard Time / Estonia |
| 367 | { .windowsIdKey: 46, .territory: 83, .ianaIdIndex: 2550 }, // FLE Standard Time / Finland |
| 368 | { .windowsIdKey: 46, .territory: 131, .ianaIdIndex: 2566 }, // FLE Standard Time / Latvia |
| 369 | { .windowsIdKey: 46, .territory: 137, .ianaIdIndex: 2578 }, // FLE Standard Time / Lithuania |
| 370 | { .windowsIdKey: 46, .territory: 244, .ianaIdIndex: 2593 }, // FLE Standard Time / Ukraine |
| 371 | { .windowsIdKey: 47, .territory: 90, .ianaIdIndex: 2605 }, // Georgian Standard Time / Georgia |
| 372 | { .windowsIdKey: 48, .territory: 81, .ianaIdIndex: 2618 }, // GMT Standard Time / Faroe Islands |
| 373 | { .windowsIdKey: 48, .territory: 100, .ianaIdIndex: 2633 }, // GMT Standard Time / Guernsey |
| 374 | { .windowsIdKey: 48, .territory: 114, .ianaIdIndex: 2649 }, // GMT Standard Time / Ireland |
| 375 | { .windowsIdKey: 48, .territory: 115, .ianaIdIndex: 2663 }, // GMT Standard Time / Isle of Man |
| 376 | { .windowsIdKey: 48, .territory: 121, .ianaIdIndex: 2682 }, // GMT Standard Time / Jersey |
| 377 | { .windowsIdKey: 48, .territory: 188, .ianaIdIndex: 2696 }, // GMT Standard Time / Portugal |
| 378 | { .windowsIdKey: 48, .territory: 220, .ianaIdIndex: 2727 }, // GMT Standard Time / Spain |
| 379 | { .windowsIdKey: 48, .territory: 246, .ianaIdIndex: 2743 }, // GMT Standard Time / United Kingdom |
| 380 | { .windowsIdKey: 49, .territory: 95, .ianaIdIndex: 2757 }, // Greenland Standard Time / Greenland |
| 381 | { .windowsIdKey: 50, .territory: 37, .ianaIdIndex: 2770 }, // Greenwich Standard Time / Burkina Faso |
| 382 | { .windowsIdKey: 50, .territory: 89, .ianaIdIndex: 2789 }, // Greenwich Standard Time / Gambia |
| 383 | { .windowsIdKey: 50, .territory: 92, .ianaIdIndex: 2803 }, // Greenwich Standard Time / Ghana |
| 384 | { .windowsIdKey: 50, .territory: 95, .ianaIdIndex: 2816 }, // Greenwich Standard Time / Greenland |
| 385 | { .windowsIdKey: 50, .territory: 101, .ianaIdIndex: 2837 }, // Greenwich Standard Time / Guinea-Bissau |
| 386 | { .windowsIdKey: 50, .territory: 102, .ianaIdIndex: 2851 }, // Greenwich Standard Time / Guinea |
| 387 | { .windowsIdKey: 50, .territory: 109, .ianaIdIndex: 2866 }, // Greenwich Standard Time / Iceland |
| 388 | { .windowsIdKey: 50, .territory: 118, .ianaIdIndex: 2885 }, // Greenwich Standard Time / Ivory Coast |
| 389 | { .windowsIdKey: 50, .territory: 134, .ianaIdIndex: 2900 }, // Greenwich Standard Time / Liberia |
| 390 | { .windowsIdKey: 50, .territory: 145, .ianaIdIndex: 2916 }, // Greenwich Standard Time / Mali |
| 391 | { .windowsIdKey: 50, .territory: 149, .ianaIdIndex: 2930 }, // Greenwich Standard Time / Mauritania |
| 392 | { .windowsIdKey: 50, .territory: 196, .ianaIdIndex: 2948 }, // Greenwich Standard Time / Saint Helena |
| 393 | { .windowsIdKey: 50, .territory: 206, .ianaIdIndex: 2967 }, // Greenwich Standard Time / Senegal |
| 394 | { .windowsIdKey: 50, .territory: 209, .ianaIdIndex: 2980 }, // Greenwich Standard Time / Sierra Leone |
| 395 | { .windowsIdKey: 50, .territory: 233, .ianaIdIndex: 2996 }, // Greenwich Standard Time / Togo |
| 396 | { .windowsIdKey: 51, .territory: 63, .ianaIdIndex: 3008 }, // GTB Standard Time / Cyprus |
| 397 | { .windowsIdKey: 51, .territory: 94, .ianaIdIndex: 3036 }, // GTB Standard Time / Greece |
| 398 | { .windowsIdKey: 51, .territory: 192, .ianaIdIndex: 3050 }, // GTB Standard Time / Romania |
| 399 | { .windowsIdKey: 52, .territory: 104, .ianaIdIndex: 3067 }, // Haiti Standard Time / Haiti |
| 400 | { .windowsIdKey: 53, .territory: 0, .ianaIdIndex: 3090 }, // Hawaiian Standard Time / AnyTerritory |
| 401 | { .windowsIdKey: 53, .territory: 58, .ianaIdIndex: 3101 }, // Hawaiian Standard Time / Cook Islands |
| 402 | { .windowsIdKey: 53, .territory: 86, .ianaIdIndex: 3119 }, // Hawaiian Standard Time / French Polynesia |
| 403 | { .windowsIdKey: 53, .territory: 248, .ianaIdIndex: 3134 }, // Hawaiian Standard Time / United States |
| 404 | { .windowsIdKey: 54, .territory: 110, .ianaIdIndex: 3151 }, // India Standard Time / India |
| 405 | { .windowsIdKey: 55, .territory: 112, .ianaIdIndex: 3164 }, // Iran Standard Time / Iran |
| 406 | { .windowsIdKey: 56, .territory: 116, .ianaIdIndex: 3176 }, // Israel Standard Time / Israel |
| 407 | { .windowsIdKey: 57, .territory: 122, .ianaIdIndex: 3191 }, // Jordan Standard Time / Jordan |
| 408 | { .windowsIdKey: 58, .territory: 193, .ianaIdIndex: 3202 }, // Kaliningrad Standard Time / Russia |
| 409 | { .windowsIdKey: 59, .territory: 218, .ianaIdIndex: 3221 }, // Korea Standard Time / South Korea |
| 410 | { .windowsIdKey: 60, .territory: 135, .ianaIdIndex: 3232 }, // Libya Standard Time / Libya |
| 411 | { .windowsIdKey: 61, .territory: 0, .ianaIdIndex: 3247 }, // Line Islands Standard Time / AnyTerritory |
| 412 | { .windowsIdKey: 61, .territory: 125, .ianaIdIndex: 3258 }, // Line Islands Standard Time / Kiribati |
| 413 | { .windowsIdKey: 62, .territory: 15, .ianaIdIndex: 3277 }, // Lord Howe Standard Time / Australia |
| 414 | { .windowsIdKey: 63, .territory: 193, .ianaIdIndex: 3297 }, // Magadan Standard Time / Russia |
| 415 | { .windowsIdKey: 64, .territory: 49, .ianaIdIndex: 3310 }, // Magallanes Standard Time / Chile |
| 416 | { .windowsIdKey: 65, .territory: 86, .ianaIdIndex: 3331 }, // Marquesas Standard Time / French Polynesia |
| 417 | { .windowsIdKey: 66, .territory: 150, .ianaIdIndex: 3349 }, // Mauritius Standard Time / Mauritius |
| 418 | { .windowsIdKey: 66, .territory: 191, .ianaIdIndex: 3366 }, // Mauritius Standard Time / Reunion |
| 419 | { .windowsIdKey: 66, .territory: 208, .ianaIdIndex: 3381 }, // Mauritius Standard Time / Seychelles |
| 420 | { .windowsIdKey: 67, .territory: 132, .ianaIdIndex: 3393 }, // Middle East Standard Time / Lebanon |
| 421 | { .windowsIdKey: 68, .territory: 250, .ianaIdIndex: 3405 }, // Montevideo Standard Time / Uruguay |
| 422 | { .windowsIdKey: 69, .territory: 159, .ianaIdIndex: 3424 }, // Morocco Standard Time / Morocco |
| 423 | { .windowsIdKey: 69, .territory: 257, .ianaIdIndex: 3442 }, // Morocco Standard Time / Western Sahara |
| 424 | { .windowsIdKey: 70, .territory: 41, .ianaIdIndex: 3458 }, // Mountain Standard Time / Canada |
| 425 | { .windowsIdKey: 70, .territory: 152, .ianaIdIndex: 3512 }, // Mountain Standard Time / Mexico |
| 426 | { .windowsIdKey: 70, .territory: 248, .ianaIdIndex: 3534 }, // Mountain Standard Time / United States |
| 427 | { .windowsIdKey: 71, .territory: 152, .ianaIdIndex: 3563 }, // Mountain Standard Time (Mexico) / Mexico |
| 428 | { .windowsIdKey: 72, .territory: 53, .ianaIdIndex: 3580 }, // Myanmar Standard Time / Cocos Islands |
| 429 | { .windowsIdKey: 72, .territory: 161, .ianaIdIndex: 3593 }, // Myanmar Standard Time / Myanmar |
| 430 | { .windowsIdKey: 73, .territory: 193, .ianaIdIndex: 3605 }, // N. Central Asia Standard Time / Russia |
| 431 | { .windowsIdKey: 74, .territory: 162, .ianaIdIndex: 3622 }, // Namibia Standard Time / Namibia |
| 432 | { .windowsIdKey: 75, .territory: 164, .ianaIdIndex: 3638 }, // Nepal Standard Time / Nepal |
| 433 | { .windowsIdKey: 76, .territory: 9, .ianaIdIndex: 3653 }, // New Zealand Standard Time / Antarctica |
| 434 | { .windowsIdKey: 76, .territory: 167, .ianaIdIndex: 3672 }, // New Zealand Standard Time / New Zealand |
| 435 | { .windowsIdKey: 77, .territory: 41, .ianaIdIndex: 3689 }, // Newfoundland Standard Time / Canada |
| 436 | { .windowsIdKey: 78, .territory: 172, .ianaIdIndex: 3706 }, // Norfolk Standard Time / Norfolk Island |
| 437 | { .windowsIdKey: 79, .territory: 193, .ianaIdIndex: 3722 }, // North Asia East Standard Time / Russia |
| 438 | { .windowsIdKey: 80, .territory: 193, .ianaIdIndex: 3735 }, // North Asia Standard Time / Russia |
| 439 | { .windowsIdKey: 81, .territory: 174, .ianaIdIndex: 3770 }, // North Korea Standard Time / North Korea |
| 440 | { .windowsIdKey: 82, .territory: 193, .ianaIdIndex: 3785 }, // Omsk Standard Time / Russia |
| 441 | { .windowsIdKey: 83, .territory: 49, .ianaIdIndex: 3795 }, // Pacific SA Standard Time / Chile |
| 442 | { .windowsIdKey: 84, .territory: 41, .ianaIdIndex: 3812 }, // Pacific Standard Time / Canada |
| 443 | { .windowsIdKey: 84, .territory: 248, .ianaIdIndex: 3830 }, // Pacific Standard Time / United States |
| 444 | { .windowsIdKey: 85, .territory: 152, .ianaIdIndex: 3850 }, // Pacific Standard Time (Mexico) / Mexico |
| 445 | { .windowsIdKey: 86, .territory: 178, .ianaIdIndex: 3866 }, // Pakistan Standard Time / Pakistan |
| 446 | { .windowsIdKey: 87, .territory: 183, .ianaIdIndex: 3879 }, // Paraguay Standard Time / Paraguay |
| 447 | { .windowsIdKey: 88, .territory: 123, .ianaIdIndex: 3896 }, // Qyzylorda Standard Time / Kazakhstan |
| 448 | { .windowsIdKey: 89, .territory: 23, .ianaIdIndex: 3911 }, // Romance Standard Time / Belgium |
| 449 | { .windowsIdKey: 89, .territory: 65, .ianaIdIndex: 3927 }, // Romance Standard Time / Denmark |
| 450 | { .windowsIdKey: 89, .territory: 84, .ianaIdIndex: 3945 }, // Romance Standard Time / France |
| 451 | { .windowsIdKey: 89, .territory: 220, .ianaIdIndex: 3958 }, // Romance Standard Time / Spain |
| 452 | { .windowsIdKey: 90, .territory: 193, .ianaIdIndex: 3985 }, // Russia Time Zone 10 / Russia |
| 453 | { .windowsIdKey: 91, .territory: 193, .ianaIdIndex: 4004 }, // Russia Time Zone 11 / Russia |
| 454 | { .windowsIdKey: 92, .territory: 193, .ianaIdIndex: 4031 }, // Russia Time Zone 3 / Russia |
| 455 | { .windowsIdKey: 93, .territory: 193, .ianaIdIndex: 4045 }, // Russian Standard Time / Russia |
| 456 | { .windowsIdKey: 93, .territory: 244, .ianaIdIndex: 4072 }, // Russian Standard Time / Ukraine |
| 457 | { .windowsIdKey: 94, .territory: 0, .ianaIdIndex: 4090 }, // SA Eastern Standard Time / AnyTerritory |
| 458 | { .windowsIdKey: 94, .territory: 9, .ianaIdIndex: 4100 }, // SA Eastern Standard Time / Antarctica |
| 459 | { .windowsIdKey: 94, .territory: 32, .ianaIdIndex: 4137 }, // SA Eastern Standard Time / Brazil |
| 460 | { .windowsIdKey: 94, .territory: 80, .ianaIdIndex: 4216 }, // SA Eastern Standard Time / Falkland Islands |
| 461 | { .windowsIdKey: 94, .territory: 85, .ianaIdIndex: 4233 }, // SA Eastern Standard Time / French Guiana |
| 462 | { .windowsIdKey: 94, .territory: 223, .ianaIdIndex: 4249 }, // SA Eastern Standard Time / Suriname |
| 463 | { .windowsIdKey: 95, .territory: 0, .ianaIdIndex: 4268 }, // SA Pacific Standard Time / AnyTerritory |
| 464 | { .windowsIdKey: 95, .territory: 32, .ianaIdIndex: 4278 }, // SA Pacific Standard Time / Brazil |
| 465 | { .windowsIdKey: 95, .territory: 41, .ianaIdIndex: 4314 }, // SA Pacific Standard Time / Canada |
| 466 | { .windowsIdKey: 95, .territory: 45, .ianaIdIndex: 4331 }, // SA Pacific Standard Time / Cayman Islands |
| 467 | { .windowsIdKey: 95, .territory: 54, .ianaIdIndex: 4346 }, // SA Pacific Standard Time / Colombia |
| 468 | { .windowsIdKey: 95, .territory: 70, .ianaIdIndex: 4361 }, // SA Pacific Standard Time / Ecuador |
| 469 | { .windowsIdKey: 95, .territory: 119, .ianaIdIndex: 4379 }, // SA Pacific Standard Time / Jamaica |
| 470 | { .windowsIdKey: 95, .territory: 181, .ianaIdIndex: 4395 }, // SA Pacific Standard Time / Panama |
| 471 | { .windowsIdKey: 95, .territory: 184, .ianaIdIndex: 4410 }, // SA Pacific Standard Time / Peru |
| 472 | { .windowsIdKey: 96, .territory: 0, .ianaIdIndex: 4423 }, // SA Western Standard Time / AnyTerritory |
| 473 | { .windowsIdKey: 96, .territory: 8, .ianaIdIndex: 4433 }, // SA Western Standard Time / Anguilla |
| 474 | { .windowsIdKey: 96, .territory: 10, .ianaIdIndex: 4450 }, // SA Western Standard Time / Antigua and Barbuda |
| 475 | { .windowsIdKey: 96, .territory: 13, .ianaIdIndex: 4466 }, // SA Western Standard Time / Aruba |
| 476 | { .windowsIdKey: 96, .territory: 21, .ianaIdIndex: 4480 }, // SA Western Standard Time / Barbados |
| 477 | { .windowsIdKey: 96, .territory: 28, .ianaIdIndex: 4497 }, // SA Western Standard Time / Bolivia |
| 478 | { .windowsIdKey: 96, .territory: 32, .ianaIdIndex: 4512 }, // SA Western Standard Time / Brazil |
| 479 | { .windowsIdKey: 96, .territory: 34, .ianaIdIndex: 4565 }, // SA Western Standard Time / British Virgin Islands |
| 480 | { .windowsIdKey: 96, .territory: 41, .ianaIdIndex: 4581 }, // SA Western Standard Time / Canada |
| 481 | { .windowsIdKey: 96, .territory: 44, .ianaIdIndex: 4602 }, // SA Western Standard Time / Caribbean Netherlands |
| 482 | { .windowsIdKey: 96, .territory: 62, .ianaIdIndex: 4621 }, // SA Western Standard Time / Curacao |
| 483 | { .windowsIdKey: 96, .territory: 68, .ianaIdIndex: 4637 }, // SA Western Standard Time / Dominica |
| 484 | { .windowsIdKey: 96, .territory: 69, .ianaIdIndex: 4654 }, // SA Western Standard Time / Dominican Republic |
| 485 | { .windowsIdKey: 96, .territory: 96, .ianaIdIndex: 4676 }, // SA Western Standard Time / Grenada |
| 486 | { .windowsIdKey: 96, .territory: 97, .ianaIdIndex: 4692 }, // SA Western Standard Time / Guadeloupe |
| 487 | { .windowsIdKey: 96, .territory: 103, .ianaIdIndex: 4711 }, // SA Western Standard Time / Guyana |
| 488 | { .windowsIdKey: 96, .territory: 148, .ianaIdIndex: 4726 }, // SA Western Standard Time / Martinique |
| 489 | { .windowsIdKey: 96, .territory: 158, .ianaIdIndex: 4745 }, // SA Western Standard Time / Montserrat |
| 490 | { .windowsIdKey: 96, .territory: 189, .ianaIdIndex: 4764 }, // SA Western Standard Time / Puerto Rico |
| 491 | { .windowsIdKey: 96, .territory: 195, .ianaIdIndex: 4784 }, // SA Western Standard Time / Saint Barthelemy |
| 492 | { .windowsIdKey: 96, .territory: 197, .ianaIdIndex: 4806 }, // SA Western Standard Time / Saint Kitts and Nevis |
| 493 | { .windowsIdKey: 96, .territory: 198, .ianaIdIndex: 4823 }, // SA Western Standard Time / Saint Lucia |
| 494 | { .windowsIdKey: 96, .territory: 199, .ianaIdIndex: 4840 }, // SA Western Standard Time / Saint Martin |
| 495 | { .windowsIdKey: 96, .territory: 201, .ianaIdIndex: 4856 }, // SA Western Standard Time / Saint Vincent and Grenadines |
| 496 | { .windowsIdKey: 96, .territory: 211, .ianaIdIndex: 4875 }, // SA Western Standard Time / Sint Maarten |
| 497 | { .windowsIdKey: 96, .territory: 236, .ianaIdIndex: 4897 }, // SA Western Standard Time / Trinidad and Tobago |
| 498 | { .windowsIdKey: 96, .territory: 249, .ianaIdIndex: 4919 }, // SA Western Standard Time / United States Virgin Islands |
| 499 | { .windowsIdKey: 97, .territory: 200, .ianaIdIndex: 4937 }, // Saint Pierre Standard Time / Saint Pierre and Miquelon |
| 500 | { .windowsIdKey: 98, .territory: 193, .ianaIdIndex: 4954 }, // Sakhalin Standard Time / Russia |
| 501 | { .windowsIdKey: 99, .territory: 202, .ianaIdIndex: 4968 }, // Samoa Standard Time / Samoa |
| 502 | { .windowsIdKey: 100, .territory: 204, .ianaIdIndex: 4981 }, // Sao Tome Standard Time / Sao Tome and Principe |
| 503 | { .windowsIdKey: 101, .territory: 193, .ianaIdIndex: 4997 }, // Saratov Standard Time / Russia |
| 504 | { .windowsIdKey: 102, .territory: 0, .ianaIdIndex: 5012 }, // SE Asia Standard Time / AnyTerritory |
| 505 | { .windowsIdKey: 102, .territory: 9, .ianaIdIndex: 5022 }, // SE Asia Standard Time / Antarctica |
| 506 | { .windowsIdKey: 102, .territory: 39, .ianaIdIndex: 5039 }, // SE Asia Standard Time / Cambodia |
| 507 | { .windowsIdKey: 102, .territory: 51, .ianaIdIndex: 5055 }, // SE Asia Standard Time / Christmas Island |
| 508 | { .windowsIdKey: 102, .territory: 111, .ianaIdIndex: 5072 }, // SE Asia Standard Time / Indonesia |
| 509 | { .windowsIdKey: 102, .territory: 129, .ianaIdIndex: 5100 }, // SE Asia Standard Time / Laos |
| 510 | { .windowsIdKey: 102, .territory: 231, .ianaIdIndex: 5115 }, // SE Asia Standard Time / Thailand |
| 511 | { .windowsIdKey: 102, .territory: 255, .ianaIdIndex: 5128 }, // SE Asia Standard Time / Vietnam |
| 512 | { .windowsIdKey: 103, .territory: 0, .ianaIdIndex: 5145 }, // Singapore Standard Time / AnyTerritory |
| 513 | { .windowsIdKey: 103, .territory: 35, .ianaIdIndex: 5155 }, // Singapore Standard Time / Brunei |
| 514 | { .windowsIdKey: 103, .territory: 111, .ianaIdIndex: 5167 }, // Singapore Standard Time / Indonesia |
| 515 | { .windowsIdKey: 103, .territory: 143, .ianaIdIndex: 5181 }, // Singapore Standard Time / Malaysia |
| 516 | { .windowsIdKey: 103, .territory: 185, .ianaIdIndex: 5212 }, // Singapore Standard Time / Philippines |
| 517 | { .windowsIdKey: 103, .territory: 210, .ianaIdIndex: 5224 }, // Singapore Standard Time / Singapore |
| 518 | { .windowsIdKey: 104, .territory: 0, .ianaIdIndex: 5239 }, // South Africa Standard Time / AnyTerritory |
| 519 | { .windowsIdKey: 104, .territory: 30, .ianaIdIndex: 5249 }, // South Africa Standard Time / Botswana |
| 520 | { .windowsIdKey: 104, .territory: 38, .ianaIdIndex: 5265 }, // South Africa Standard Time / Burundi |
| 521 | { .windowsIdKey: 104, .territory: 57, .ianaIdIndex: 5282 }, // South Africa Standard Time / Congo - Kinshasa |
| 522 | { .windowsIdKey: 104, .territory: 76, .ianaIdIndex: 5300 }, // South Africa Standard Time / Eswatini |
| 523 | { .windowsIdKey: 104, .territory: 133, .ianaIdIndex: 5315 }, // South Africa Standard Time / Lesotho |
| 524 | { .windowsIdKey: 104, .territory: 142, .ianaIdIndex: 5329 }, // South Africa Standard Time / Malawi |
| 525 | { .windowsIdKey: 104, .territory: 160, .ianaIdIndex: 5345 }, // South Africa Standard Time / Mozambique |
| 526 | { .windowsIdKey: 104, .territory: 194, .ianaIdIndex: 5359 }, // South Africa Standard Time / Rwanda |
| 527 | { .windowsIdKey: 104, .territory: 216, .ianaIdIndex: 5373 }, // South Africa Standard Time / South Africa |
| 528 | { .windowsIdKey: 104, .territory: 260, .ianaIdIndex: 5393 }, // South Africa Standard Time / Zambia |
| 529 | { .windowsIdKey: 104, .territory: 261, .ianaIdIndex: 5407 }, // South Africa Standard Time / Zimbabwe |
| 530 | { .windowsIdKey: 105, .territory: 219, .ianaIdIndex: 5421 }, // South Sudan Standard Time / South Sudan |
| 531 | { .windowsIdKey: 106, .territory: 221, .ianaIdIndex: 5433 }, // Sri Lanka Standard Time / Sri Lanka |
| 532 | { .windowsIdKey: 107, .territory: 222, .ianaIdIndex: 5446 }, // Sudan Standard Time / Sudan |
| 533 | { .windowsIdKey: 108, .territory: 227, .ianaIdIndex: 5462 }, // Syria Standard Time / Syria |
| 534 | { .windowsIdKey: 109, .territory: 228, .ianaIdIndex: 5476 }, // Taipei Standard Time / Taiwan |
| 535 | { .windowsIdKey: 110, .territory: 15, .ianaIdIndex: 5488 }, // Tasmania Standard Time / Australia |
| 536 | { .windowsIdKey: 111, .territory: 32, .ianaIdIndex: 5526 }, // Tocantins Standard Time / Brazil |
| 537 | { .windowsIdKey: 112, .territory: 0, .ianaIdIndex: 5544 }, // Tokyo Standard Time / AnyTerritory |
| 538 | { .windowsIdKey: 112, .territory: 111, .ianaIdIndex: 5554 }, // Tokyo Standard Time / Indonesia |
| 539 | { .windowsIdKey: 112, .territory: 120, .ianaIdIndex: 5568 }, // Tokyo Standard Time / Japan |
| 540 | { .windowsIdKey: 112, .territory: 179, .ianaIdIndex: 5579 }, // Tokyo Standard Time / Palau |
| 541 | { .windowsIdKey: 112, .territory: 232, .ianaIdIndex: 5593 }, // Tokyo Standard Time / Timor-Leste |
| 542 | { .windowsIdKey: 113, .territory: 193, .ianaIdIndex: 5603 }, // Tomsk Standard Time / Russia |
| 543 | { .windowsIdKey: 114, .territory: 235, .ianaIdIndex: 5614 }, // Tonga Standard Time / Tonga |
| 544 | { .windowsIdKey: 115, .territory: 193, .ianaIdIndex: 5632 }, // Transbaikal Standard Time / Russia |
| 545 | { .windowsIdKey: 116, .territory: 239, .ianaIdIndex: 5643 }, // Turkey Standard Time / Turkey |
| 546 | { .windowsIdKey: 117, .territory: 241, .ianaIdIndex: 5659 }, // Turks And Caicos Standard Time / Turks and Caicos Islands |
| 547 | { .windowsIdKey: 118, .territory: 156, .ianaIdIndex: 5678 }, // Ulaanbaatar Standard Time / Mongolia |
| 548 | { .windowsIdKey: 119, .territory: 248, .ianaIdIndex: 5695 }, // US Eastern Standard Time / United States |
| 549 | { .windowsIdKey: 120, .territory: 0, .ianaIdIndex: 5770 }, // US Mountain Standard Time / AnyTerritory |
| 550 | { .windowsIdKey: 120, .territory: 41, .ianaIdIndex: 5780 }, // US Mountain Standard Time / Canada |
| 551 | { .windowsIdKey: 120, .territory: 152, .ianaIdIndex: 5837 }, // US Mountain Standard Time / Mexico |
| 552 | { .windowsIdKey: 120, .territory: 248, .ianaIdIndex: 5856 }, // US Mountain Standard Time / United States |
| 553 | { .windowsIdKey: 121, .territory: 0, .ianaIdIndex: 5872 }, // UTC / AnyTerritory |
| 554 | { .windowsIdKey: 122, .territory: 0, .ianaIdIndex: 5888 }, // UTC+12 / AnyTerritory |
| 555 | { .windowsIdKey: 122, .territory: 125, .ianaIdIndex: 5899 }, // UTC+12 / Kiribati |
| 556 | { .windowsIdKey: 122, .territory: 147, .ianaIdIndex: 5914 }, // UTC+12 / Marshall Islands |
| 557 | { .windowsIdKey: 122, .territory: 163, .ianaIdIndex: 5947 }, // UTC+12 / Nauru |
| 558 | { .windowsIdKey: 122, .territory: 242, .ianaIdIndex: 5961 }, // UTC+12 / Tuvalu |
| 559 | { .windowsIdKey: 122, .territory: 247, .ianaIdIndex: 5978 }, // UTC+12 / United States Outlying Islands |
| 560 | { .windowsIdKey: 122, .territory: 256, .ianaIdIndex: 5991 }, // UTC+12 / Wallis and Futuna |
| 561 | { .windowsIdKey: 123, .territory: 0, .ianaIdIndex: 6006 }, // UTC+13 / AnyTerritory |
| 562 | { .windowsIdKey: 123, .territory: 125, .ianaIdIndex: 6017 }, // UTC+13 / Kiribati |
| 563 | { .windowsIdKey: 123, .territory: 234, .ianaIdIndex: 6032 }, // UTC+13 / Tokelau |
| 564 | { .windowsIdKey: 124, .territory: 0, .ianaIdIndex: 6048 }, // UTC-02 / AnyTerritory |
| 565 | { .windowsIdKey: 124, .territory: 32, .ianaIdIndex: 6058 }, // UTC-02 / Brazil |
| 566 | { .windowsIdKey: 124, .territory: 217, .ianaIdIndex: 6074 }, // UTC-02 / South Georgia and South Sandwich Islands |
| 567 | { .windowsIdKey: 125, .territory: 0, .ianaIdIndex: 6097 }, // UTC-08 / AnyTerritory |
| 568 | { .windowsIdKey: 125, .territory: 186, .ianaIdIndex: 6107 }, // UTC-08 / Pitcairn |
| 569 | { .windowsIdKey: 126, .territory: 0, .ianaIdIndex: 6124 }, // UTC-09 / AnyTerritory |
| 570 | { .windowsIdKey: 126, .territory: 86, .ianaIdIndex: 6134 }, // UTC-09 / French Polynesia |
| 571 | { .windowsIdKey: 127, .territory: 0, .ianaIdIndex: 6150 }, // UTC-11 / AnyTerritory |
| 572 | { .windowsIdKey: 127, .territory: 5, .ianaIdIndex: 6161 }, // UTC-11 / American Samoa |
| 573 | { .windowsIdKey: 127, .territory: 171, .ianaIdIndex: 6179 }, // UTC-11 / Niue |
| 574 | { .windowsIdKey: 127, .territory: 247, .ianaIdIndex: 6192 }, // UTC-11 / United States Outlying Islands |
| 575 | { .windowsIdKey: 128, .territory: 254, .ianaIdIndex: 6207 }, // Venezuela Standard Time / Venezuela |
| 576 | { .windowsIdKey: 129, .territory: 193, .ianaIdIndex: 6223 }, // Vladivostok Standard Time / Russia |
| 577 | { .windowsIdKey: 130, .territory: 193, .ianaIdIndex: 6254 }, // Volgograd Standard Time / Russia |
| 578 | { .windowsIdKey: 131, .territory: 15, .ianaIdIndex: 6271 }, // W. Australia Standard Time / Australia |
| 579 | { .windowsIdKey: 132, .territory: 0, .ianaIdIndex: 6287 }, // W. Central Africa Standard Time / AnyTerritory |
| 580 | { .windowsIdKey: 132, .territory: 4, .ianaIdIndex: 6297 }, // W. Central Africa Standard Time / Algeria |
| 581 | { .windowsIdKey: 132, .territory: 7, .ianaIdIndex: 6312 }, // W. Central Africa Standard Time / Angola |
| 582 | { .windowsIdKey: 132, .territory: 25, .ianaIdIndex: 6326 }, // W. Central Africa Standard Time / Benin |
| 583 | { .windowsIdKey: 132, .territory: 40, .ianaIdIndex: 6344 }, // W. Central Africa Standard Time / Cameroon |
| 584 | { .windowsIdKey: 132, .territory: 46, .ianaIdIndex: 6358 }, // W. Central Africa Standard Time / Central African Republic |
| 585 | { .windowsIdKey: 132, .territory: 48, .ianaIdIndex: 6372 }, // W. Central Africa Standard Time / Chad |
| 586 | { .windowsIdKey: 132, .territory: 56, .ianaIdIndex: 6388 }, // W. Central Africa Standard Time / Congo - Brazzaville |
| 587 | { .windowsIdKey: 132, .territory: 57, .ianaIdIndex: 6407 }, // W. Central Africa Standard Time / Congo - Kinshasa |
| 588 | { .windowsIdKey: 132, .territory: 73, .ianaIdIndex: 6423 }, // W. Central Africa Standard Time / Equatorial Guinea |
| 589 | { .windowsIdKey: 132, .territory: 88, .ianaIdIndex: 6437 }, // W. Central Africa Standard Time / Gabon |
| 590 | { .windowsIdKey: 132, .territory: 169, .ianaIdIndex: 6455 }, // W. Central Africa Standard Time / Nigeria |
| 591 | { .windowsIdKey: 132, .territory: 170, .ianaIdIndex: 6468 }, // W. Central Africa Standard Time / Niger |
| 592 | { .windowsIdKey: 132, .territory: 238, .ianaIdIndex: 6482 }, // W. Central Africa Standard Time / Tunisia |
| 593 | { .windowsIdKey: 133, .territory: 6, .ianaIdIndex: 6495 }, // W. Europe Standard Time / Andorra |
| 594 | { .windowsIdKey: 133, .territory: 16, .ianaIdIndex: 6510 }, // W. Europe Standard Time / Austria |
| 595 | { .windowsIdKey: 133, .territory: 91, .ianaIdIndex: 6524 }, // W. Europe Standard Time / Germany |
| 596 | { .windowsIdKey: 133, .territory: 93, .ianaIdIndex: 6554 }, // W. Europe Standard Time / Gibraltar |
| 597 | { .windowsIdKey: 133, .territory: 117, .ianaIdIndex: 6571 }, // W. Europe Standard Time / Italy |
| 598 | { .windowsIdKey: 133, .territory: 136, .ianaIdIndex: 6583 }, // W. Europe Standard Time / Liechtenstein |
| 599 | { .windowsIdKey: 133, .territory: 138, .ianaIdIndex: 6596 }, // W. Europe Standard Time / Luxembourg |
| 600 | { .windowsIdKey: 133, .territory: 146, .ianaIdIndex: 6614 }, // W. Europe Standard Time / Malta |
| 601 | { .windowsIdKey: 133, .territory: 155, .ianaIdIndex: 6627 }, // W. Europe Standard Time / Monaco |
| 602 | { .windowsIdKey: 133, .territory: 165, .ianaIdIndex: 6641 }, // W. Europe Standard Time / Netherlands |
| 603 | { .windowsIdKey: 133, .territory: 175, .ianaIdIndex: 6658 }, // W. Europe Standard Time / Norway |
| 604 | { .windowsIdKey: 133, .territory: 203, .ianaIdIndex: 6670 }, // W. Europe Standard Time / San Marino |
| 605 | { .windowsIdKey: 133, .territory: 224, .ianaIdIndex: 6688 }, // W. Europe Standard Time / Svalbard and Jan Mayen |
| 606 | { .windowsIdKey: 133, .territory: 225, .ianaIdIndex: 6708 }, // W. Europe Standard Time / Sweden |
| 607 | { .windowsIdKey: 133, .territory: 226, .ianaIdIndex: 6725 }, // W. Europe Standard Time / Switzerland |
| 608 | { .windowsIdKey: 133, .territory: 253, .ianaIdIndex: 6739 }, // W. Europe Standard Time / Vatican City |
| 609 | { .windowsIdKey: 134, .territory: 156, .ianaIdIndex: 6754 }, // W. Mongolia Standard Time / Mongolia |
| 610 | { .windowsIdKey: 135, .territory: 0, .ianaIdIndex: 6764 }, // West Asia Standard Time / AnyTerritory |
| 611 | { .windowsIdKey: 135, .territory: 9, .ianaIdIndex: 6774 }, // West Asia Standard Time / Antarctica |
| 612 | { .windowsIdKey: 135, .territory: 87, .ianaIdIndex: 6792 }, // West Asia Standard Time / French Southern Territories |
| 613 | { .windowsIdKey: 135, .territory: 123, .ianaIdIndex: 6809 }, // West Asia Standard Time / Kazakhstan |
| 614 | { .windowsIdKey: 135, .territory: 144, .ianaIdIndex: 6880 }, // West Asia Standard Time / Maldives |
| 615 | { .windowsIdKey: 135, .territory: 229, .ianaIdIndex: 6896 }, // West Asia Standard Time / Tajikistan |
| 616 | { .windowsIdKey: 135, .territory: 240, .ianaIdIndex: 6910 }, // West Asia Standard Time / Turkmenistan |
| 617 | { .windowsIdKey: 135, .territory: 251, .ianaIdIndex: 6924 }, // West Asia Standard Time / Uzbekistan |
| 618 | { .windowsIdKey: 136, .territory: 180, .ianaIdIndex: 6953 }, // West Bank Standard Time / Palestinian Territories |
| 619 | { .windowsIdKey: 137, .territory: 0, .ianaIdIndex: 6975 }, // West Pacific Standard Time / AnyTerritory |
| 620 | { .windowsIdKey: 137, .territory: 9, .ianaIdIndex: 6986 }, // West Pacific Standard Time / Antarctica |
| 621 | { .windowsIdKey: 137, .territory: 98, .ianaIdIndex: 7012 }, // West Pacific Standard Time / Guam |
| 622 | { .windowsIdKey: 137, .territory: 153, .ianaIdIndex: 7025 }, // West Pacific Standard Time / Micronesia |
| 623 | { .windowsIdKey: 137, .territory: 173, .ianaIdIndex: 7039 }, // West Pacific Standard Time / Northern Mariana Islands |
| 624 | { .windowsIdKey: 137, .territory: 182, .ianaIdIndex: 7054 }, // West Pacific Standard Time / Papua New Guinea |
| 625 | { .windowsIdKey: 138, .territory: 193, .ianaIdIndex: 7075 }, // Yakutsk Standard Time / Russia |
| 626 | { .windowsIdKey: 139, .territory: 41, .ianaIdIndex: 7102 }, // Yukon Standard Time / Canada |
| 627 | }; |
| 628 | |
| 629 | // Windows ID Key, Windows ID Index, IANA ID Index, UTC Offset |
| 630 | static inline constexpr WindowsData windowsDataTable[] = { |
| 631 | { .windowsIdKey: 1, .windowsIdIndex: 0, .ianaIdIndex: 0, .offsetFromUtc: 16200 }, // Afghanistan Standard Time |
| 632 | { .windowsIdKey: 2, .windowsIdIndex: 26, .ianaIdIndex: 7136,.offsetFromUtc: -32400 }, // Alaskan Standard Time |
| 633 | { .windowsIdKey: 3, .windowsIdIndex: 48, .ianaIdIndex: 106,.offsetFromUtc: -36000 }, // Aleutian Standard Time |
| 634 | { .windowsIdKey: 4, .windowsIdIndex: 71, .ianaIdIndex: 119, .offsetFromUtc: 25200 }, // Altai Standard Time |
| 635 | { .windowsIdKey: 5, .windowsIdIndex: 91, .ianaIdIndex: 168, .offsetFromUtc: 10800 }, // Arab Standard Time |
| 636 | { .windowsIdKey: 6, .windowsIdIndex: 110, .ianaIdIndex: 212, .offsetFromUtc: 14400 }, // Arabian Standard Time |
| 637 | { .windowsIdKey: 7, .windowsIdIndex: 132, .ianaIdIndex: 223, .offsetFromUtc: 10800 }, // Arabic Standard Time |
| 638 | { .windowsIdKey: 8, .windowsIdIndex: 153, .ianaIdIndex: 7154,.offsetFromUtc: -10800 }, // Argentina Standard Time |
| 639 | { .windowsIdKey: 9, .windowsIdIndex: 177, .ianaIdIndex: 7185, .offsetFromUtc: 14400 }, // Astrakhan Standard Time |
| 640 | { .windowsIdKey: 10, .windowsIdIndex: 201, .ianaIdIndex: 7202,.offsetFromUtc: -14400 }, // Atlantic Standard Time |
| 641 | { .windowsIdKey: 11, .windowsIdIndex: 224, .ianaIdIndex: 692, .offsetFromUtc: 34200 }, // AUS Central Standard Time |
| 642 | { .windowsIdKey: 12, .windowsIdIndex: 250, .ianaIdIndex: 709, .offsetFromUtc: 31500 }, // Aus Central W. Standard Time |
| 643 | { .windowsIdKey: 13, .windowsIdIndex: 279, .ianaIdIndex: 7218, .offsetFromUtc: 36000 }, // AUS Eastern Standard Time |
| 644 | { .windowsIdKey: 14, .windowsIdIndex: 305, .ianaIdIndex: 762, .offsetFromUtc: 14400 }, // Azerbaijan Standard Time |
| 645 | { .windowsIdKey: 15, .windowsIdIndex: 330, .ianaIdIndex: 793, .offsetFromUtc: -3600 }, // Azores Standard Time |
| 646 | { .windowsIdKey: 16, .windowsIdIndex: 351, .ianaIdIndex: 809,.offsetFromUtc: -10800 }, // Bahia Standard Time |
| 647 | { .windowsIdKey: 17, .windowsIdIndex: 371, .ianaIdIndex: 823, .offsetFromUtc: 21600 }, // Bangladesh Standard Time |
| 648 | { .windowsIdKey: 18, .windowsIdIndex: 396, .ianaIdIndex: 847, .offsetFromUtc: 10800 }, // Belarus Standard Time |
| 649 | { .windowsIdKey: 19, .windowsIdIndex: 418, .ianaIdIndex: 860, .offsetFromUtc: 39600 }, // Bougainville Standard Time |
| 650 | { .windowsIdKey: 20, .windowsIdIndex: 445, .ianaIdIndex: 7235,.offsetFromUtc: -21600 }, // Canada Central Standard Time |
| 651 | { .windowsIdKey: 21, .windowsIdIndex: 474, .ianaIdIndex: 928, .offsetFromUtc: -3600 }, // Cape Verde Standard Time |
| 652 | { .windowsIdKey: 22, .windowsIdIndex: 499, .ianaIdIndex: 948, .offsetFromUtc: 14400 }, // Caucasus Standard Time |
| 653 | { .windowsIdKey: 23, .windowsIdIndex: 522, .ianaIdIndex: 7250, .offsetFromUtc: 34200 }, // Cen. Australia Standard Time |
| 654 | { .windowsIdKey: 24, .windowsIdIndex: 551, .ianaIdIndex: 1084,.offsetFromUtc: -21600 }, // Central America Standard Time |
| 655 | { .windowsIdKey: 25, .windowsIdIndex: 581, .ianaIdIndex: 1192, .offsetFromUtc: 21600 }, // Central Asia Standard Time |
| 656 | { .windowsIdKey: 26, .windowsIdIndex: 608, .ianaIdIndex: 7269,.offsetFromUtc: -14400 }, // Central Brazilian Standard Time |
| 657 | { .windowsIdKey: 27, .windowsIdIndex: 640, .ianaIdIndex: 1269, .offsetFromUtc: 3600 }, // Central Europe Standard Time |
| 658 | { .windowsIdKey: 28, .windowsIdIndex: 669, .ianaIdIndex: 1397, .offsetFromUtc: 3600 }, // Central European Standard Time |
| 659 | { .windowsIdKey: 29, .windowsIdIndex: 700, .ianaIdIndex: 1485, .offsetFromUtc: 39600 }, // Central Pacific Standard Time |
| 660 | { .windowsIdKey: 30, .windowsIdIndex: 730, .ianaIdIndex: 7284,.offsetFromUtc: -21600 }, // Central Standard Time |
| 661 | { .windowsIdKey: 31, .windowsIdIndex: 752, .ianaIdIndex: 7300,.offsetFromUtc: -21600 }, // Central Standard Time (Mexico) |
| 662 | { .windowsIdKey: 32, .windowsIdIndex: 783, .ianaIdIndex: 1870, .offsetFromUtc: 45900 }, // Chatham Islands Standard Time |
| 663 | { .windowsIdKey: 33, .windowsIdIndex: 813, .ianaIdIndex: 1886, .offsetFromUtc: 28800 }, // China Standard Time |
| 664 | { .windowsIdKey: 34, .windowsIdIndex: 833, .ianaIdIndex: 1926,.offsetFromUtc: -18000 }, // Cuba Standard Time |
| 665 | { .windowsIdKey: 35, .windowsIdIndex: 852, .ianaIdIndex: 1941,.offsetFromUtc: -43200 }, // Dateline Standard Time |
| 666 | { .windowsIdKey: 36, .windowsIdIndex: 875, .ianaIdIndex: 2042, .offsetFromUtc: 10800 }, // E. Africa Standard Time |
| 667 | { .windowsIdKey: 37, .windowsIdIndex: 899, .ianaIdIndex: 7320, .offsetFromUtc: 36000 }, // E. Australia Standard Time |
| 668 | { .windowsIdKey: 38, .windowsIdIndex: 926, .ianaIdIndex: 2183, .offsetFromUtc: 7200 }, // E. Europe Standard Time |
| 669 | { .windowsIdKey: 39, .windowsIdIndex: 950, .ianaIdIndex: 2199,.offsetFromUtc: -10800 }, // E. South America Standard Time |
| 670 | { .windowsIdKey: 40, .windowsIdIndex: 981, .ianaIdIndex: 2217,.offsetFromUtc: -21600 }, // Easter Island Standard Time |
| 671 | { .windowsIdKey: 41, .windowsIdIndex: 1009, .ianaIdIndex: 7339,.offsetFromUtc: -18000 }, // Eastern Standard Time |
| 672 | { .windowsIdKey: 42, .windowsIdIndex: 1031, .ianaIdIndex: 2445,.offsetFromUtc: -18000 }, // Eastern Standard Time (Mexico) |
| 673 | { .windowsIdKey: 43, .windowsIdIndex: 1062, .ianaIdIndex: 2460, .offsetFromUtc: 7200 }, // Egypt Standard Time |
| 674 | { .windowsIdKey: 44, .windowsIdIndex: 1082, .ianaIdIndex: 2473, .offsetFromUtc: 18000 }, // Ekaterinburg Standard Time |
| 675 | { .windowsIdKey: 45, .windowsIdIndex: 1109, .ianaIdIndex: 2492, .offsetFromUtc: 43200 }, // Fiji Standard Time |
| 676 | { .windowsIdKey: 46, .windowsIdIndex: 1128, .ianaIdIndex: 2593, .offsetFromUtc: 7200 }, // FLE Standard Time |
| 677 | { .windowsIdKey: 47, .windowsIdIndex: 1146, .ianaIdIndex: 2605, .offsetFromUtc: 14400 }, // Georgian Standard Time |
| 678 | { .windowsIdKey: 48, .windowsIdIndex: 1169, .ianaIdIndex: 2743, .offsetFromUtc: 0 }, // GMT Standard Time |
| 679 | { .windowsIdKey: 49, .windowsIdIndex: 1187, .ianaIdIndex: 2757,.offsetFromUtc: -10800 }, // Greenland Standard Time |
| 680 | { .windowsIdKey: 50, .windowsIdIndex: 1211, .ianaIdIndex: 2866, .offsetFromUtc: 0 }, // Greenwich Standard Time |
| 681 | { .windowsIdKey: 51, .windowsIdIndex: 1235, .ianaIdIndex: 3050, .offsetFromUtc: 7200 }, // GTB Standard Time |
| 682 | { .windowsIdKey: 52, .windowsIdIndex: 1253, .ianaIdIndex: 3067,.offsetFromUtc: -18000 }, // Haiti Standard Time |
| 683 | { .windowsIdKey: 53, .windowsIdIndex: 1273, .ianaIdIndex: 3134,.offsetFromUtc: -36000 }, // Hawaiian Standard Time |
| 684 | { .windowsIdKey: 54, .windowsIdIndex: 1296, .ianaIdIndex: 3151, .offsetFromUtc: 19800 }, // India Standard Time |
| 685 | { .windowsIdKey: 55, .windowsIdIndex: 1316, .ianaIdIndex: 3164, .offsetFromUtc: 12600 }, // Iran Standard Time |
| 686 | { .windowsIdKey: 56, .windowsIdIndex: 1335, .ianaIdIndex: 3176, .offsetFromUtc: 7200 }, // Israel Standard Time |
| 687 | { .windowsIdKey: 57, .windowsIdIndex: 1356, .ianaIdIndex: 3191, .offsetFromUtc: 7200 }, // Jordan Standard Time |
| 688 | { .windowsIdKey: 58, .windowsIdIndex: 1377, .ianaIdIndex: 3202, .offsetFromUtc: 7200 }, // Kaliningrad Standard Time |
| 689 | { .windowsIdKey: 59, .windowsIdIndex: 1403, .ianaIdIndex: 3221, .offsetFromUtc: 32400 }, // Korea Standard Time |
| 690 | { .windowsIdKey: 60, .windowsIdIndex: 1423, .ianaIdIndex: 3232, .offsetFromUtc: 7200 }, // Libya Standard Time |
| 691 | { .windowsIdKey: 61, .windowsIdIndex: 1443, .ianaIdIndex: 3258, .offsetFromUtc: 50400 }, // Line Islands Standard Time |
| 692 | { .windowsIdKey: 62, .windowsIdIndex: 1470, .ianaIdIndex: 3277, .offsetFromUtc: 37800 }, // Lord Howe Standard Time |
| 693 | { .windowsIdKey: 63, .windowsIdIndex: 1494, .ianaIdIndex: 3297, .offsetFromUtc: 36000 }, // Magadan Standard Time |
| 694 | { .windowsIdKey: 64, .windowsIdIndex: 1516, .ianaIdIndex: 3310,.offsetFromUtc: -10800 }, // Magallanes Standard Time |
| 695 | { .windowsIdKey: 65, .windowsIdIndex: 1541, .ianaIdIndex: 3331,.offsetFromUtc: -34200 }, // Marquesas Standard Time |
| 696 | { .windowsIdKey: 66, .windowsIdIndex: 1565, .ianaIdIndex: 3349, .offsetFromUtc: 14400 }, // Mauritius Standard Time |
| 697 | { .windowsIdKey: 67, .windowsIdIndex: 1589, .ianaIdIndex: 3393, .offsetFromUtc: 7200 }, // Middle East Standard Time |
| 698 | { .windowsIdKey: 68, .windowsIdIndex: 1615, .ianaIdIndex: 3405,.offsetFromUtc: -10800 }, // Montevideo Standard Time |
| 699 | { .windowsIdKey: 69, .windowsIdIndex: 1640, .ianaIdIndex: 3424, .offsetFromUtc: 0 }, // Morocco Standard Time |
| 700 | { .windowsIdKey: 70, .windowsIdIndex: 1662, .ianaIdIndex: 7356,.offsetFromUtc: -25200 }, // Mountain Standard Time |
| 701 | { .windowsIdKey: 71, .windowsIdIndex: 1685, .ianaIdIndex: 3563,.offsetFromUtc: -25200 }, // Mountain Standard Time (Mexico) |
| 702 | { .windowsIdKey: 72, .windowsIdIndex: 1717, .ianaIdIndex: 3593, .offsetFromUtc: 23400 }, // Myanmar Standard Time |
| 703 | { .windowsIdKey: 73, .windowsIdIndex: 1739, .ianaIdIndex: 3605, .offsetFromUtc: 21600 }, // N. Central Asia Standard Time |
| 704 | { .windowsIdKey: 74, .windowsIdIndex: 1769, .ianaIdIndex: 3622, .offsetFromUtc: 3600 }, // Namibia Standard Time |
| 705 | { .windowsIdKey: 75, .windowsIdIndex: 1791, .ianaIdIndex: 3638, .offsetFromUtc: 20700 }, // Nepal Standard Time |
| 706 | { .windowsIdKey: 76, .windowsIdIndex: 1811, .ianaIdIndex: 3672, .offsetFromUtc: 43200 }, // New Zealand Standard Time |
| 707 | { .windowsIdKey: 77, .windowsIdIndex: 1837, .ianaIdIndex: 3689,.offsetFromUtc: -12600 }, // Newfoundland Standard Time |
| 708 | { .windowsIdKey: 78, .windowsIdIndex: 1864, .ianaIdIndex: 3706, .offsetFromUtc: 39600 }, // Norfolk Standard Time |
| 709 | { .windowsIdKey: 79, .windowsIdIndex: 1886, .ianaIdIndex: 3722, .offsetFromUtc: 28800 }, // North Asia East Standard Time |
| 710 | { .windowsIdKey: 80, .windowsIdIndex: 1916, .ianaIdIndex: 7371, .offsetFromUtc: 25200 }, // North Asia Standard Time |
| 711 | { .windowsIdKey: 81, .windowsIdIndex: 1941, .ianaIdIndex: 3770, .offsetFromUtc: 30600 }, // North Korea Standard Time |
| 712 | { .windowsIdKey: 82, .windowsIdIndex: 1967, .ianaIdIndex: 3785, .offsetFromUtc: 21600 }, // Omsk Standard Time |
| 713 | { .windowsIdKey: 83, .windowsIdIndex: 1986, .ianaIdIndex: 3795,.offsetFromUtc: -10800 }, // Pacific SA Standard Time |
| 714 | { .windowsIdKey: 84, .windowsIdIndex: 2011, .ianaIdIndex: 3830,.offsetFromUtc: -28800 }, // Pacific Standard Time |
| 715 | { .windowsIdKey: 85, .windowsIdIndex: 2033, .ianaIdIndex: 3850,.offsetFromUtc: -28800 }, // Pacific Standard Time (Mexico) |
| 716 | { .windowsIdKey: 86, .windowsIdIndex: 2064, .ianaIdIndex: 3866, .offsetFromUtc: 18000 }, // Pakistan Standard Time |
| 717 | { .windowsIdKey: 87, .windowsIdIndex: 2087, .ianaIdIndex: 3879,.offsetFromUtc: -14400 }, // Paraguay Standard Time |
| 718 | { .windowsIdKey: 88, .windowsIdIndex: 2110, .ianaIdIndex: 3896, .offsetFromUtc: 18000 }, // Qyzylorda Standard Time |
| 719 | { .windowsIdKey: 89, .windowsIdIndex: 2134, .ianaIdIndex: 3945, .offsetFromUtc: 3600 }, // Romance Standard Time |
| 720 | { .windowsIdKey: 90, .windowsIdIndex: 2156, .ianaIdIndex: 3985, .offsetFromUtc: 39600 }, // Russia Time Zone 10 |
| 721 | { .windowsIdKey: 91, .windowsIdIndex: 2176, .ianaIdIndex: 7388, .offsetFromUtc: 43200 }, // Russia Time Zone 11 |
| 722 | { .windowsIdKey: 92, .windowsIdIndex: 2196, .ianaIdIndex: 4031, .offsetFromUtc: 14400 }, // Russia Time Zone 3 |
| 723 | { .windowsIdKey: 93, .windowsIdIndex: 2215, .ianaIdIndex: 7403, .offsetFromUtc: 10800 }, // Russian Standard Time |
| 724 | { .windowsIdKey: 94, .windowsIdIndex: 2237, .ianaIdIndex: 4233,.offsetFromUtc: -10800 }, // SA Eastern Standard Time |
| 725 | { .windowsIdKey: 95, .windowsIdIndex: 2262, .ianaIdIndex: 4346,.offsetFromUtc: -18000 }, // SA Pacific Standard Time |
| 726 | { .windowsIdKey: 96, .windowsIdIndex: 2287, .ianaIdIndex: 4497,.offsetFromUtc: -14400 }, // SA Western Standard Time |
| 727 | { .windowsIdKey: 97, .windowsIdIndex: 2312, .ianaIdIndex: 4937,.offsetFromUtc: -10800 }, // Saint Pierre Standard Time |
| 728 | { .windowsIdKey: 98, .windowsIdIndex: 2339, .ianaIdIndex: 4954, .offsetFromUtc: 39600 }, // Sakhalin Standard Time |
| 729 | { .windowsIdKey: 99, .windowsIdIndex: 2362, .ianaIdIndex: 4968, .offsetFromUtc: 46800 }, // Samoa Standard Time |
| 730 | { .windowsIdKey: 100, .windowsIdIndex: 2382, .ianaIdIndex: 4981, .offsetFromUtc: 0 }, // Sao Tome Standard Time |
| 731 | { .windowsIdKey: 101, .windowsIdIndex: 2405, .ianaIdIndex: 4997, .offsetFromUtc: 14400 }, // Saratov Standard Time |
| 732 | { .windowsIdKey: 102, .windowsIdIndex: 2427, .ianaIdIndex: 5115, .offsetFromUtc: 25200 }, // SE Asia Standard Time |
| 733 | { .windowsIdKey: 103, .windowsIdIndex: 2449, .ianaIdIndex: 5224, .offsetFromUtc: 28800 }, // Singapore Standard Time |
| 734 | { .windowsIdKey: 104, .windowsIdIndex: 2473, .ianaIdIndex: 5373, .offsetFromUtc: 7200 }, // South Africa Standard Time |
| 735 | { .windowsIdKey: 105, .windowsIdIndex: 2500, .ianaIdIndex: 5421, .offsetFromUtc: 7200 }, // South Sudan Standard Time |
| 736 | { .windowsIdKey: 106, .windowsIdIndex: 2526, .ianaIdIndex: 5433, .offsetFromUtc: 19800 }, // Sri Lanka Standard Time |
| 737 | { .windowsIdKey: 107, .windowsIdIndex: 2550, .ianaIdIndex: 5446, .offsetFromUtc: 7200 }, // Sudan Standard Time |
| 738 | { .windowsIdKey: 108, .windowsIdIndex: 2570, .ianaIdIndex: 5462, .offsetFromUtc: 7200 }, // Syria Standard Time |
| 739 | { .windowsIdKey: 109, .windowsIdIndex: 2590, .ianaIdIndex: 5476, .offsetFromUtc: 28800 }, // Taipei Standard Time |
| 740 | { .windowsIdKey: 110, .windowsIdIndex: 2611, .ianaIdIndex: 7417, .offsetFromUtc: 36000 }, // Tasmania Standard Time |
| 741 | { .windowsIdKey: 111, .windowsIdIndex: 2634, .ianaIdIndex: 5526,.offsetFromUtc: -10800 }, // Tocantins Standard Time |
| 742 | { .windowsIdKey: 112, .windowsIdIndex: 2658, .ianaIdIndex: 5568, .offsetFromUtc: 32400 }, // Tokyo Standard Time |
| 743 | { .windowsIdKey: 113, .windowsIdIndex: 2678, .ianaIdIndex: 5603, .offsetFromUtc: 25200 }, // Tomsk Standard Time |
| 744 | { .windowsIdKey: 114, .windowsIdIndex: 2698, .ianaIdIndex: 5614, .offsetFromUtc: 46800 }, // Tonga Standard Time |
| 745 | { .windowsIdKey: 115, .windowsIdIndex: 2718, .ianaIdIndex: 5632, .offsetFromUtc: 32400 }, // Transbaikal Standard Time |
| 746 | { .windowsIdKey: 116, .windowsIdIndex: 2744, .ianaIdIndex: 5643, .offsetFromUtc: 7200 }, // Turkey Standard Time |
| 747 | { .windowsIdKey: 117, .windowsIdIndex: 2765, .ianaIdIndex: 5659,.offsetFromUtc: -14400 }, // Turks And Caicos Standard Time |
| 748 | { .windowsIdKey: 118, .windowsIdIndex: 2796, .ianaIdIndex: 5678, .offsetFromUtc: 28800 }, // Ulaanbaatar Standard Time |
| 749 | { .windowsIdKey: 119, .windowsIdIndex: 2822, .ianaIdIndex: 7434,.offsetFromUtc: -18000 }, // US Eastern Standard Time |
| 750 | { .windowsIdKey: 120, .windowsIdIndex: 2847, .ianaIdIndex: 5856,.offsetFromUtc: -25200 }, // US Mountain Standard Time |
| 751 | { .windowsIdKey: 121, .windowsIdIndex: 2873, .ianaIdIndex: 7463, .offsetFromUtc: 0 }, // UTC |
| 752 | { .windowsIdKey: 122, .windowsIdIndex: 2877, .ianaIdIndex: 5888, .offsetFromUtc: 43200 }, // UTC+12 |
| 753 | { .windowsIdKey: 123, .windowsIdIndex: 2884, .ianaIdIndex: 6006, .offsetFromUtc: 46800 }, // UTC+13 |
| 754 | { .windowsIdKey: 124, .windowsIdIndex: 2891, .ianaIdIndex: 6048, .offsetFromUtc: -7200 }, // UTC-02 |
| 755 | { .windowsIdKey: 125, .windowsIdIndex: 2898, .ianaIdIndex: 6097,.offsetFromUtc: -28800 }, // UTC-08 |
| 756 | { .windowsIdKey: 126, .windowsIdIndex: 2905, .ianaIdIndex: 6124,.offsetFromUtc: -32400 }, // UTC-09 |
| 757 | { .windowsIdKey: 127, .windowsIdIndex: 2912, .ianaIdIndex: 6150,.offsetFromUtc: -39600 }, // UTC-11 |
| 758 | { .windowsIdKey: 128, .windowsIdIndex: 2919, .ianaIdIndex: 6207,.offsetFromUtc: -16200 }, // Venezuela Standard Time |
| 759 | { .windowsIdKey: 129, .windowsIdIndex: 2943, .ianaIdIndex: 7471, .offsetFromUtc: 36000 }, // Vladivostok Standard Time |
| 760 | { .windowsIdKey: 130, .windowsIdIndex: 2969, .ianaIdIndex: 6254, .offsetFromUtc: 14400 }, // Volgograd Standard Time |
| 761 | { .windowsIdKey: 131, .windowsIdIndex: 2993, .ianaIdIndex: 6271, .offsetFromUtc: 28800 }, // W. Australia Standard Time |
| 762 | { .windowsIdKey: 132, .windowsIdIndex: 3020, .ianaIdIndex: 6455, .offsetFromUtc: 3600 }, // W. Central Africa Standard Time |
| 763 | { .windowsIdKey: 133, .windowsIdIndex: 3052, .ianaIdIndex: 7488, .offsetFromUtc: 3600 }, // W. Europe Standard Time |
| 764 | { .windowsIdKey: 134, .windowsIdIndex: 3076, .ianaIdIndex: 6754, .offsetFromUtc: 25200 }, // W. Mongolia Standard Time |
| 765 | { .windowsIdKey: 135, .windowsIdIndex: 3102, .ianaIdIndex: 7502, .offsetFromUtc: 18000 }, // West Asia Standard Time |
| 766 | { .windowsIdKey: 136, .windowsIdIndex: 3126, .ianaIdIndex: 7516, .offsetFromUtc: 7200 }, // West Bank Standard Time |
| 767 | { .windowsIdKey: 137, .windowsIdIndex: 3150, .ianaIdIndex: 7054, .offsetFromUtc: 36000 }, // West Pacific Standard Time |
| 768 | { .windowsIdKey: 138, .windowsIdIndex: 3177, .ianaIdIndex: 7528, .offsetFromUtc: 32400 }, // Yakutsk Standard Time |
| 769 | { .windowsIdKey: 139, .windowsIdIndex: 3199, .ianaIdIndex: 7541,.offsetFromUtc: -25200 }, // Yukon Standard Time |
| 770 | }; |
| 771 | |
| 772 | // IANA ID Index, UTC Offset |
| 773 | static inline constexpr UtcData utcDataTable[] = { |
| 774 | { .ianaIdIndex: 7560,.offsetFromUtc: -50400 }, // UTC-14:00 |
| 775 | { .ianaIdIndex: 7570,.offsetFromUtc: -46800 }, // UTC-13:00 |
| 776 | { .ianaIdIndex: 7580,.offsetFromUtc: -43200 }, // UTC-12:00 |
| 777 | { .ianaIdIndex: 7590,.offsetFromUtc: -39600 }, // UTC-11:00 |
| 778 | { .ianaIdIndex: 7600,.offsetFromUtc: -36000 }, // UTC-10:00 |
| 779 | { .ianaIdIndex: 7610,.offsetFromUtc: -34200 }, // UTC-09:30 |
| 780 | { .ianaIdIndex: 7620,.offsetFromUtc: -32400 }, // UTC-09:00 |
| 781 | { .ianaIdIndex: 7630,.offsetFromUtc: -28800 }, // UTC-08:00 |
| 782 | { .ianaIdIndex: 7640,.offsetFromUtc: -25200 }, // UTC-07:00 |
| 783 | { .ianaIdIndex: 7650,.offsetFromUtc: -21600 }, // UTC-06:00 |
| 784 | { .ianaIdIndex: 7660,.offsetFromUtc: -18000 }, // UTC-05:00 |
| 785 | { .ianaIdIndex: 7670,.offsetFromUtc: -16200 }, // UTC-04:30 |
| 786 | { .ianaIdIndex: 7680,.offsetFromUtc: -14400 }, // UTC-04:00 |
| 787 | { .ianaIdIndex: 7690,.offsetFromUtc: -12600 }, // UTC-03:30 |
| 788 | { .ianaIdIndex: 7700,.offsetFromUtc: -10800 }, // UTC-03:00 |
| 789 | { .ianaIdIndex: 7710, .offsetFromUtc: -7200 }, // UTC-02:00 |
| 790 | { .ianaIdIndex: 7720, .offsetFromUtc: -3600 }, // UTC-01:00 |
| 791 | { .ianaIdIndex: 7730, .offsetFromUtc: 0 }, // UTC |
| 792 | { .ianaIdIndex: 7754, .offsetFromUtc: 3600 }, // UTC+01:00 |
| 793 | { .ianaIdIndex: 7764, .offsetFromUtc: 7200 }, // UTC+02:00 |
| 794 | { .ianaIdIndex: 7774, .offsetFromUtc: 10800 }, // UTC+03:00 |
| 795 | { .ianaIdIndex: 7784, .offsetFromUtc: 12600 }, // UTC+03:30 |
| 796 | { .ianaIdIndex: 7794, .offsetFromUtc: 14400 }, // UTC+04:00 |
| 797 | { .ianaIdIndex: 7804, .offsetFromUtc: 16200 }, // UTC+04:30 |
| 798 | { .ianaIdIndex: 7814, .offsetFromUtc: 18000 }, // UTC+05:00 |
| 799 | { .ianaIdIndex: 7824, .offsetFromUtc: 19800 }, // UTC+05:30 |
| 800 | { .ianaIdIndex: 7834, .offsetFromUtc: 20700 }, // UTC+05:45 |
| 801 | { .ianaIdIndex: 7844, .offsetFromUtc: 21600 }, // UTC+06:00 |
| 802 | { .ianaIdIndex: 7854, .offsetFromUtc: 23400 }, // UTC+06:30 |
| 803 | { .ianaIdIndex: 7864, .offsetFromUtc: 25200 }, // UTC+07:00 |
| 804 | { .ianaIdIndex: 7874, .offsetFromUtc: 28800 }, // UTC+08:00 |
| 805 | { .ianaIdIndex: 7884, .offsetFromUtc: 30600 }, // UTC+08:30 |
| 806 | { .ianaIdIndex: 7894, .offsetFromUtc: 31500 }, // UTC+08:45 |
| 807 | { .ianaIdIndex: 7904, .offsetFromUtc: 32400 }, // UTC+09:00 |
| 808 | { .ianaIdIndex: 7914, .offsetFromUtc: 34200 }, // UTC+09:30 |
| 809 | { .ianaIdIndex: 7924, .offsetFromUtc: 36000 }, // UTC+10:00 |
| 810 | { .ianaIdIndex: 7934, .offsetFromUtc: 37800 }, // UTC+10:30 |
| 811 | { .ianaIdIndex: 7944, .offsetFromUtc: 39600 }, // UTC+11:00 |
| 812 | { .ianaIdIndex: 7954, .offsetFromUtc: 43200 }, // UTC+12:00 |
| 813 | { .ianaIdIndex: 7964, .offsetFromUtc: 45900 }, // UTC+12:45 |
| 814 | { .ianaIdIndex: 7974, .offsetFromUtc: 46800 }, // UTC+13:00 |
| 815 | { .ianaIdIndex: 7984, .offsetFromUtc: 50400 }, // UTC+14:00 |
| 816 | }; |
| 817 | |
| 818 | static inline constexpr char windowsIdData[] = { |
| 819 | 0x41, 0x66, 0x67, 0x68, 0x61, 0x6e, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 820 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x6c, 0x61, 0x73, 0x6b, 0x61, |
| 821 | 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 822 | 0x41, 0x6c, 0x65, 0x75, 0x74, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 823 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x6c, 0x74, 0x61, 0x69, 0x20, 0x53, 0x74, 0x61, |
| 824 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x20, |
| 825 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, |
| 826 | 0x61, 0x62, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
| 827 | 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 828 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, |
| 829 | 0x6e, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 830 | 0x0, 0x41, 0x73, 0x74, 0x72, 0x61, 0x6b, 0x68, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 831 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, |
| 832 | 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 833 | 0x41, 0x55, 0x53, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 834 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x75, 0x73, 0x20, 0x43, 0x65, |
| 835 | 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x57, 0x2e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 836 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x55, 0x53, 0x20, 0x45, 0x61, 0x73, 0x74, 0x65, |
| 837 | 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 838 | 0x0, 0x41, 0x7a, 0x65, 0x72, 0x62, 0x61, 0x69, 0x6a, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 839 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x7a, 0x6f, 0x72, 0x65, 0x73, |
| 840 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, |
| 841 | 0x61, 0x68, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 842 | 0x6d, 0x65, 0x0, 0x42, 0x61, 0x6e, 0x67, 0x6c, 0x61, 0x64, 0x65, 0x73, 0x68, 0x20, 0x53, 0x74, |
| 843 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, 0x65, 0x6c, 0x61, |
| 844 | 0x72, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
| 845 | 0x65, 0x0, 0x42, 0x6f, 0x75, 0x67, 0x61, 0x69, 0x6e, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x20, 0x53, |
| 846 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x61, 0x6e, |
| 847 | 0x61, 0x64, 0x61, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 848 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x61, 0x70, 0x65, 0x20, 0x56, |
| 849 | 0x65, 0x72, 0x64, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 850 | 0x6d, 0x65, 0x0, 0x43, 0x61, 0x75, 0x63, 0x61, 0x73, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 851 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x2e, 0x20, 0x41, |
| 852 | 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 853 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, |
| 854 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 855 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69, |
| 856 | 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 857 | 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x42, 0x72, 0x61, 0x7a, 0x69, 0x6c, 0x69, 0x61, |
| 858 | 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 859 | 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x20, 0x53, |
| 860 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, |
| 861 | 0x74, 0x72, 0x61, 0x6c, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x61, 0x6e, 0x20, 0x53, 0x74, |
| 862 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, |
| 863 | 0x72, 0x61, 0x6c, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 864 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, |
| 865 | 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 866 | 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 867 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x29, 0x0, 0x43, |
| 868 | 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x20, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x73, 0x20, 0x53, |
| 869 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x68, 0x69, |
| 870 | 0x6e, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 871 | 0x0, 0x43, 0x75, 0x62, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
| 872 | 0x69, 0x6d, 0x65, 0x0, 0x44, 0x61, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x53, 0x74, 0x61, |
| 873 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x41, 0x66, |
| 874 | 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 875 | 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20, |
| 876 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, |
| 877 | 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 878 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x41, |
| 879 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 880 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x20, 0x49, 0x73, 0x6c, 0x61, |
| 881 | 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 882 | 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 883 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, |
| 884 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, |
| 885 | 0x78, 0x69, 0x63, 0x6f, 0x29, 0x0, 0x45, 0x67, 0x79, 0x70, 0x74, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 886 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x6b, 0x61, 0x74, 0x65, 0x72, |
| 887 | 0x69, 0x6e, 0x62, 0x75, 0x72, 0x67, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 888 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x46, 0x69, 0x6a, 0x69, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
| 889 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x46, 0x4c, 0x45, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 890 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x65, 0x6f, 0x72, 0x67, 0x69, |
| 891 | 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 892 | 0x0, 0x47, 0x4d, 0x54, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 893 | 0x6d, 0x65, 0x0, 0x47, 0x72, 0x65, 0x65, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, |
| 894 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x72, 0x65, 0x65, 0x6e, |
| 895 | 0x77, 0x69, 0x63, 0x68, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 896 | 0x6d, 0x65, 0x0, 0x47, 0x54, 0x42, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 897 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x48, 0x61, 0x69, 0x74, 0x69, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 898 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x48, 0x61, 0x77, 0x61, 0x69, 0x69, 0x61, |
| 899 | 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 900 | 0x49, 0x6e, 0x64, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
| 901 | 0x69, 0x6d, 0x65, 0x0, 0x49, 0x72, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 902 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x49, 0x73, 0x72, 0x61, 0x65, 0x6c, 0x20, 0x53, 0x74, |
| 903 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4a, 0x6f, 0x72, 0x64, |
| 904 | 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 905 | 0x0, 0x4b, 0x61, 0x6c, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x72, 0x61, 0x64, 0x20, 0x53, 0x74, 0x61, |
| 906 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4b, 0x6f, 0x72, 0x65, 0x61, |
| 907 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4c, |
| 908 | 0x69, 0x62, 0x79, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 909 | 0x6d, 0x65, 0x0, 0x4c, 0x69, 0x6e, 0x65, 0x20, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x73, 0x20, |
| 910 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4c, 0x6f, |
| 911 | 0x72, 0x64, 0x20, 0x48, 0x6f, 0x77, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 912 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x67, 0x61, 0x64, 0x61, 0x6e, 0x20, 0x53, 0x74, |
| 913 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x67, 0x61, |
| 914 | 0x6c, 0x6c, 0x61, 0x6e, 0x65, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 915 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x72, 0x71, 0x75, 0x65, 0x73, 0x61, 0x73, 0x20, 0x53, |
| 916 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x75, |
| 917 | 0x72, 0x69, 0x74, 0x69, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 918 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x20, 0x45, 0x61, 0x73, 0x74, |
| 919 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, |
| 920 | 0x6f, 0x6e, 0x74, 0x65, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
| 921 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x6f, 0x72, 0x6f, 0x63, 0x63, 0x6f, 0x20, |
| 922 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x6f, |
| 923 | 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 924 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x53, 0x74, |
| 925 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, |
| 926 | 0x69, 0x63, 0x6f, 0x29, 0x0, 0x4d, 0x79, 0x61, 0x6e, 0x6d, 0x61, 0x72, 0x20, 0x53, 0x74, 0x61, |
| 927 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x2e, 0x20, 0x43, 0x65, |
| 928 | 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 929 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x61, 0x6d, 0x69, 0x62, 0x69, 0x61, |
| 930 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, |
| 931 | 0x65, 0x70, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 932 | 0x6d, 0x65, 0x0, 0x4e, 0x65, 0x77, 0x20, 0x5a, 0x65, 0x61, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, |
| 933 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x65, 0x77, |
| 934 | 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
| 935 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x66, 0x6f, 0x6c, 0x6b, 0x20, |
| 936 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, |
| 937 | 0x72, 0x74, 0x68, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x45, 0x61, 0x73, 0x74, 0x20, 0x53, 0x74, |
| 938 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x74, |
| 939 | 0x68, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 940 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x20, 0x4b, 0x6f, 0x72, 0x65, 0x61, |
| 941 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4f, |
| 942 | 0x6d, 0x73, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
| 943 | 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x41, 0x20, 0x53, 0x74, 0x61, |
| 944 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, |
| 945 | 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 946 | 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 947 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x29, 0x0, |
| 948 | 0x50, 0x61, 0x6b, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 949 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x72, 0x61, 0x67, 0x75, 0x61, 0x79, 0x20, |
| 950 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x51, 0x79, |
| 951 | 0x7a, 0x79, 0x6c, 0x6f, 0x72, 0x64, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 952 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x52, 0x6f, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x20, 0x53, 0x74, |
| 953 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x52, 0x75, 0x73, 0x73, |
| 954 | 0x69, 0x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x5a, 0x6f, 0x6e, 0x65, 0x20, 0x31, 0x30, 0x0, |
| 955 | 0x52, 0x75, 0x73, 0x73, 0x69, 0x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x5a, 0x6f, 0x6e, 0x65, |
| 956 | 0x20, 0x31, 0x31, 0x0, 0x52, 0x75, 0x73, 0x73, 0x69, 0x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, |
| 957 | 0x5a, 0x6f, 0x6e, 0x65, 0x20, 0x33, 0x0, 0x52, 0x75, 0x73, 0x73, 0x69, 0x61, 0x6e, 0x20, 0x53, |
| 958 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x41, 0x20, |
| 959 | 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 960 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x41, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
| 961 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, |
| 962 | 0x41, 0x20, 0x57, 0x65, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
| 963 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, 0x69, 0x6e, 0x74, 0x20, 0x50, 0x69, |
| 964 | 0x65, 0x72, 0x72, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 965 | 0x6d, 0x65, 0x0, 0x53, 0x61, 0x6b, 0x68, 0x61, 0x6c, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 966 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, 0x6d, 0x6f, 0x61, 0x20, |
| 967 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, |
| 968 | 0x6f, 0x20, 0x54, 0x6f, 0x6d, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 969 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, 0x72, 0x61, 0x74, 0x6f, 0x76, 0x20, 0x53, 0x74, 0x61, |
| 970 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x45, 0x20, 0x41, 0x73, |
| 971 | 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 972 | 0x0, 0x53, 0x69, 0x6e, 0x67, 0x61, 0x70, 0x6f, 0x72, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 973 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x41, |
| 974 | 0x66, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
| 975 | 0x69, 0x6d, 0x65, 0x0, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x53, 0x75, 0x64, 0x61, 0x6e, 0x20, |
| 976 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x72, |
| 977 | 0x69, 0x20, 0x4c, 0x61, 0x6e, 0x6b, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 978 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x75, 0x64, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 979 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x79, 0x72, 0x69, 0x61, 0x20, |
| 980 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x61, |
| 981 | 0x69, 0x70, 0x65, 0x69, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 982 | 0x6d, 0x65, 0x0, 0x54, 0x61, 0x73, 0x6d, 0x61, 0x6e, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 983 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, 0x63, 0x61, 0x6e, 0x74, |
| 984 | 0x69, 0x6e, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
| 985 | 0x65, 0x0, 0x54, 0x6f, 0x6b, 0x79, 0x6f, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 986 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, 0x6d, 0x73, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 987 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, 0x6e, 0x67, 0x61, 0x20, |
| 988 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x72, |
| 989 | 0x61, 0x6e, 0x73, 0x62, 0x61, 0x69, 0x6b, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
| 990 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x75, 0x72, 0x6b, 0x65, 0x79, 0x20, 0x53, |
| 991 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x75, 0x72, |
| 992 | 0x6b, 0x73, 0x20, 0x41, 0x6e, 0x64, 0x20, 0x43, 0x61, 0x69, 0x63, 0x6f, 0x73, 0x20, 0x53, 0x74, |
| 993 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x6c, 0x61, 0x61, |
| 994 | 0x6e, 0x62, 0x61, 0x61, 0x74, 0x61, 0x72, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 995 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x53, 0x20, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, |
| 996 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, |
| 997 | 0x53, 0x20, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 998 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x54, 0x43, 0x0, 0x55, 0x54, 0x43, |
| 999 | 0x2b, 0x31, 0x32, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x33, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, |
| 1000 | 0x32, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x38, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x39, 0x0, |
| 1001 | 0x55, 0x54, 0x43, 0x2d, 0x31, 0x31, 0x0, 0x56, 0x65, 0x6e, 0x65, 0x7a, 0x75, 0x65, 0x6c, 0x61, |
| 1002 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x56, |
| 1003 | 0x6c, 0x61, 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 1004 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x56, 0x6f, 0x6c, 0x67, 0x6f, 0x67, 0x72, |
| 1005 | 0x61, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 1006 | 0x0, 0x57, 0x2e, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20, 0x53, 0x74, |
| 1007 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x43, |
| 1008 | 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, |
| 1009 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x45, |
| 1010 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
| 1011 | 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x4d, 0x6f, 0x6e, 0x67, 0x6f, 0x6c, 0x69, 0x61, 0x20, |
| 1012 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x65, |
| 1013 | 0x73, 0x74, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 1014 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x65, 0x73, 0x74, 0x20, 0x42, 0x61, 0x6e, 0x6b, 0x20, |
| 1015 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x65, |
| 1016 | 0x73, 0x74, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 1017 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x73, 0x6b, |
| 1018 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x59, |
| 1019 | 0x75, 0x6b, 0x6f, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 1020 | 0x6d, 0x65, 0x0 |
| 1021 | }; |
| 1022 | |
| 1023 | static inline constexpr char ianaIdData[] = { |
| 1024 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x62, 0x75, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1025 | 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x63, 0x68, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x20, 0x41, 0x6d, 0x65, |
| 1026 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x6e, 0x65, 0x61, 0x75, 0x20, 0x41, 0x6d, 0x65, 0x72, |
| 1027 | 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x74, 0x6c, 0x61, 0x6b, 0x61, 0x74, 0x6c, 0x61, 0x20, 0x41, |
| 1028 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x6d, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, |
| 1029 | 0x69, 0x63, 0x61, 0x2f, 0x53, 0x69, 0x74, 0x6b, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 1030 | 0x61, 0x2f, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x61, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 1031 | 0x61, 0x2f, 0x41, 0x64, 0x61, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x72, 0x6e, |
| 1032 | 0x61, 0x75, 0x6c, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x68, 0x72, 0x61, 0x69, 0x6e, |
| 1033 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x77, 0x61, 0x69, 0x74, 0x0, 0x41, 0x73, 0x69, |
| 1034 | 0x61, 0x2f, 0x51, 0x61, 0x74, 0x61, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x52, 0x69, 0x79, |
| 1035 | 0x61, 0x64, 0x68, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x64, 0x65, 0x6e, 0x0, 0x45, 0x74, |
| 1036 | 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x34, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x75, 0x73, |
| 1037 | 0x63, 0x61, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x75, 0x62, 0x61, 0x69, 0x0, 0x41, |
| 1038 | 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x67, 0x68, 0x64, 0x61, 0x64, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 1039 | 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x42, 0x75, |
| 1040 | 0x65, 0x6e, 0x6f, 0x73, 0x5f, 0x41, 0x69, 0x72, 0x65, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1041 | 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4c, 0x61, 0x5f, |
| 1042 | 0x52, 0x69, 0x6f, 0x6a, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, |
| 1043 | 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x52, 0x69, 0x6f, 0x5f, 0x47, 0x61, 0x6c, 0x6c, |
| 1044 | 0x65, 0x67, 0x6f, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, |
| 1045 | 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6c, 0x74, 0x61, 0x20, 0x41, 0x6d, 0x65, |
| 1046 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, |
| 1047 | 0x61, 0x6e, 0x5f, 0x4a, 0x75, 0x61, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1048 | 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x5f, 0x4c, 0x75, |
| 1049 | 0x69, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, |
| 1050 | 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x54, 0x75, 0x63, 0x75, 0x6d, 0x61, 0x6e, 0x20, 0x41, 0x6d, 0x65, |
| 1051 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x55, |
| 1052 | 0x73, 0x68, 0x75, 0x61, 0x69, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, |
| 1053 | 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x43, 0x61, 0x74, 0x61, 0x6d, 0x61, 0x72, |
| 1054 | 0x63, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, |
| 1055 | 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x43, 0x6f, 0x72, 0x64, 0x6f, 0x62, 0x61, 0x20, 0x41, 0x6d, 0x65, |
| 1056 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4a, |
| 1057 | 0x75, 0x6a, 0x75, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, |
| 1058 | 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4d, 0x65, 0x6e, 0x64, 0x6f, 0x7a, 0x61, 0x0, 0x45, |
| 1059 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x73, 0x74, 0x72, 0x61, 0x6b, 0x68, 0x61, 0x6e, 0x20, |
| 1060 | 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x55, 0x6c, 0x79, 0x61, 0x6e, 0x6f, 0x76, 0x73, 0x6b, |
| 1061 | 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x42, 0x65, 0x72, 0x6d, 0x75, 0x64, |
| 1062 | 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x6c, 0x69, 0x66, 0x61, |
| 1063 | 0x78, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x6c, 0x61, 0x63, 0x65, 0x5f, |
| 1064 | 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x6f, 0x6f, 0x73, |
| 1065 | 0x65, 0x5f, 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, |
| 1066 | 0x6e, 0x63, 0x74, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x68, |
| 1067 | 0x75, 0x6c, 0x65, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x44, 0x61, |
| 1068 | 0x72, 0x77, 0x69, 0x6e, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x45, |
| 1069 | 0x75, 0x63, 0x6c, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x53, |
| 1070 | 0x79, 0x64, 0x6e, 0x65, 0x79, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, |
| 1071 | 0x4d, 0x65, 0x6c, 0x62, 0x6f, 0x75, 0x72, 0x6e, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, |
| 1072 | 0x61, 0x6b, 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x63, 0x6f, 0x72, |
| 1073 | 0x65, 0x73, 0x62, 0x79, 0x73, 0x75, 0x6e, 0x64, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, |
| 1074 | 0x63, 0x2f, 0x41, 0x7a, 0x6f, 0x72, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1075 | 0x2f, 0x42, 0x61, 0x68, 0x69, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x68, 0x61, 0x6b, |
| 1076 | 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x68, 0x69, 0x6d, 0x70, 0x68, 0x75, 0x0, 0x45, |
| 1077 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x69, 0x6e, 0x73, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, |
| 1078 | 0x66, 0x69, 0x63, 0x2f, 0x42, 0x6f, 0x75, 0x67, 0x61, 0x69, 0x6e, 0x76, 0x69, 0x6c, 0x6c, 0x65, |
| 1079 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x65, 0x67, 0x69, 0x6e, 0x61, 0x20, |
| 1080 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x43, 0x75, |
| 1081 | 0x72, 0x72, 0x65, 0x6e, 0x74, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x0, |
| 1082 | 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x43, 0x61, 0x70, 0x65, 0x5f, 0x56, 0x65, |
| 1083 | 0x72, 0x64, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x65, 0x72, 0x65, 0x76, 0x61, 0x6e, |
| 1084 | 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x41, 0x64, 0x65, 0x6c, 0x61, |
| 1085 | 0x69, 0x64, 0x65, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x42, 0x72, |
| 1086 | 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x48, 0x69, 0x6c, 0x6c, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, |
| 1087 | 0x54, 0x2b, 0x36, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x65, 0x6c, 0x69, |
| 1088 | 0x7a, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x73, 0x74, 0x61, |
| 1089 | 0x5f, 0x52, 0x69, 0x63, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x61, |
| 1090 | 0x6c, 0x61, 0x70, 0x61, 0x67, 0x6f, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1091 | 0x45, 0x6c, 0x5f, 0x53, 0x61, 0x6c, 0x76, 0x61, 0x64, 0x6f, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 1092 | 0x69, 0x63, 0x61, 0x2f, 0x47, 0x75, 0x61, 0x74, 0x65, 0x6d, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x6d, |
| 1093 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x65, 0x67, 0x75, 0x63, 0x69, 0x67, 0x61, 0x6c, 0x70, |
| 1094 | 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x75, |
| 1095 | 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x36, 0x0, 0x41, 0x6e, 0x74, 0x61, |
| 1096 | 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, 0x49, 0x6e, |
| 1097 | 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x68, 0x61, 0x67, 0x6f, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 1098 | 0x2f, 0x55, 0x72, 0x75, 0x6d, 0x71, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x69, 0x73, |
| 1099 | 0x68, 0x6b, 0x65, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x75, 0x69, |
| 1100 | 0x61, 0x62, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6d, 0x70, |
| 1101 | 0x6f, 0x5f, 0x47, 0x72, 0x61, 0x6e, 0x64, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 1102 | 0x54, 0x69, 0x72, 0x61, 0x6e, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x50, 0x72, |
| 1103 | 0x61, 0x67, 0x75, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x75, 0x64, 0x61, |
| 1104 | 0x70, 0x65, 0x73, 0x74, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x50, 0x6f, 0x64, 0x67, |
| 1105 | 0x6f, 0x72, 0x69, 0x63, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x65, 0x6c, |
| 1106 | 0x67, 0x72, 0x61, 0x64, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x72, 0x61, |
| 1107 | 0x74, 0x69, 0x73, 0x6c, 0x61, 0x76, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, |
| 1108 | 0x6a, 0x75, 0x62, 0x6c, 0x6a, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 1109 | 0x53, 0x61, 0x72, 0x61, 0x6a, 0x65, 0x76, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 1110 | 0x5a, 0x61, 0x67, 0x72, 0x65, 0x62, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x6b, |
| 1111 | 0x6f, 0x70, 0x6a, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x57, 0x61, 0x72, 0x73, |
| 1112 | 0x61, 0x77, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x31, 0x0, 0x41, 0x6e, |
| 1113 | 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x73, 0x65, 0x79, 0x0, 0x50, |
| 1114 | 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x6f, 0x68, 0x6e, 0x70, 0x65, 0x69, 0x20, 0x50, |
| 1115 | 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4b, 0x6f, 0x73, 0x72, 0x61, 0x65, 0x0, 0x50, 0x61, |
| 1116 | 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x6f, 0x75, 0x6d, 0x65, 0x61, 0x0, 0x50, 0x61, 0x63, |
| 1117 | 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x75, 0x61, 0x64, 0x61, 0x6c, 0x63, 0x61, 0x6e, 0x61, 0x6c, |
| 1118 | 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x66, 0x61, 0x74, 0x65, 0x0, 0x41, |
| 1119 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x6e, 0x69, 0x70, 0x65, 0x67, 0x20, |
| 1120 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x5f, 0x49, |
| 1121 | 0x6e, 0x6c, 0x65, 0x74, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x65, 0x73, |
| 1122 | 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, |
| 1123 | 0x74, 0x61, 0x6d, 0x6f, 0x72, 0x6f, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1124 | 0x4f, 0x6a, 0x69, 0x6e, 0x61, 0x67, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1125 | 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1126 | 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x4b, 0x6e, 0x6f, 0x78, 0x20, 0x41, 0x6d, 0x65, |
| 1127 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x54, 0x65, 0x6c, |
| 1128 | 0x6c, 0x5f, 0x43, 0x69, 0x74, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, |
| 1129 | 0x65, 0x6e, 0x6f, 0x6d, 0x69, 0x6e, 0x65, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1130 | 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x42, 0x65, |
| 1131 | 0x75, 0x6c, 0x61, 0x68, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, |
| 1132 | 0x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, |
| 1133 | 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x44, |
| 1134 | 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x4e, 0x65, 0x77, 0x5f, 0x53, 0x61, 0x6c, 0x65, 0x6d, 0x0, |
| 1135 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x5f, 0x43, |
| 1136 | 0x69, 0x74, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x68, 0x69, |
| 1137 | 0x61, 0x5f, 0x42, 0x61, 0x6e, 0x64, 0x65, 0x72, 0x61, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1138 | 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x72, 0x69, 0x64, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 1139 | 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x65, 0x72, 0x72, 0x65, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, |
| 1140 | 0x69, 0x63, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x68, 0x75, 0x61, 0x68, 0x75, 0x61, 0x0, 0x50, 0x61, |
| 1141 | 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x43, 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x0, 0x41, 0x73, |
| 1142 | 0x69, 0x61, 0x2f, 0x53, 0x68, 0x61, 0x6e, 0x67, 0x68, 0x61, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 1143 | 0x2f, 0x48, 0x6f, 0x6e, 0x67, 0x5f, 0x4b, 0x6f, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 1144 | 0x4d, 0x61, 0x63, 0x61, 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, |
| 1145 | 0x76, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x32, 0x0, |
| 1146 | 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x33, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, |
| 1147 | 0x74, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x79, 0x6f, 0x77, 0x61, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, |
| 1148 | 0x6e, 0x2f, 0x43, 0x6f, 0x6d, 0x6f, 0x72, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1149 | 0x44, 0x6a, 0x69, 0x62, 0x6f, 0x75, 0x74, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1150 | 0x41, 0x73, 0x6d, 0x61, 0x72, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x64, |
| 1151 | 0x64, 0x69, 0x73, 0x5f, 0x41, 0x62, 0x61, 0x62, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, |
| 1152 | 0x2f, 0x4e, 0x61, 0x69, 0x72, 0x6f, 0x62, 0x69, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, |
| 1153 | 0x41, 0x6e, 0x74, 0x61, 0x6e, 0x61, 0x6e, 0x61, 0x72, 0x69, 0x76, 0x6f, 0x0, 0x49, 0x6e, 0x64, |
| 1154 | 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x79, 0x6f, 0x74, 0x74, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, |
| 1155 | 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x67, 0x61, 0x64, 0x69, 0x73, 0x68, 0x75, 0x0, 0x41, 0x66, 0x72, |
| 1156 | 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x72, 0x5f, 0x65, 0x73, 0x5f, 0x53, 0x61, 0x6c, 0x61, 0x61, |
| 1157 | 0x6d, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x61, 0x6d, 0x70, 0x61, 0x6c, 0x61, |
| 1158 | 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x42, 0x72, 0x69, 0x73, 0x62, |
| 1159 | 0x61, 0x6e, 0x65, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x69, |
| 1160 | 0x6e, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x43, 0x68, |
| 1161 | 0x69, 0x73, 0x69, 0x6e, 0x61, 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, |
| 1162 | 0x61, 0x6f, 0x5f, 0x50, 0x61, 0x75, 0x6c, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
| 1163 | 0x2f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1164 | 0x4e, 0x61, 0x73, 0x73, 0x61, 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, |
| 1165 | 0x6f, 0x72, 0x6f, 0x6e, 0x74, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, |
| 1166 | 0x71, 0x61, 0x6c, 0x75, 0x69, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, |
| 1167 | 0x65, 0x77, 0x5f, 0x59, 0x6f, 0x72, 0x6b, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1168 | 0x44, 0x65, 0x74, 0x72, 0x6f, 0x69, 0x74, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1169 | 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x50, 0x65, 0x74, 0x65, 0x72, 0x73, 0x62, 0x75, |
| 1170 | 0x72, 0x67, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, |
| 1171 | 0x6e, 0x61, 0x2f, 0x56, 0x69, 0x6e, 0x63, 0x65, 0x6e, 0x6e, 0x65, 0x73, 0x20, 0x41, 0x6d, 0x65, |
| 1172 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x57, 0x69, 0x6e, |
| 1173 | 0x61, 0x6d, 0x61, 0x63, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x65, 0x6e, |
| 1174 | 0x74, 0x75, 0x63, 0x6b, 0x79, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x69, 0x63, 0x65, 0x6c, 0x6c, 0x6f, |
| 1175 | 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x65, 0x6e, 0x74, 0x75, 0x63, 0x6b, |
| 1176 | 0x79, 0x2f, 0x4c, 0x6f, 0x75, 0x69, 0x73, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x6d, 0x65, |
| 1177 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6e, 0x63, 0x75, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, |
| 1178 | 0x63, 0x61, 0x2f, 0x43, 0x61, 0x69, 0x72, 0x6f, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x65, |
| 1179 | 0x6b, 0x61, 0x74, 0x65, 0x72, 0x69, 0x6e, 0x62, 0x75, 0x72, 0x67, 0x0, 0x50, 0x61, 0x63, 0x69, |
| 1180 | 0x66, 0x69, 0x63, 0x2f, 0x46, 0x69, 0x6a, 0x69, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 1181 | 0x4d, 0x61, 0x72, 0x69, 0x65, 0x68, 0x61, 0x6d, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 1182 | 0x2f, 0x53, 0x6f, 0x66, 0x69, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x54, 0x61, |
| 1183 | 0x6c, 0x6c, 0x69, 0x6e, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x48, 0x65, 0x6c, |
| 1184 | 0x73, 0x69, 0x6e, 0x6b, 0x69, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x52, 0x69, 0x67, |
| 1185 | 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x69, 0x6c, 0x6e, 0x69, 0x75, 0x73, |
| 1186 | 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x79, 0x69, 0x76, 0x0, 0x41, 0x73, 0x69, |
| 1187 | 0x61, 0x2f, 0x54, 0x62, 0x69, 0x6c, 0x69, 0x73, 0x69, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, |
| 1188 | 0x69, 0x63, 0x2f, 0x46, 0x61, 0x72, 0x6f, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 1189 | 0x47, 0x75, 0x65, 0x72, 0x6e, 0x73, 0x65, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 1190 | 0x44, 0x75, 0x62, 0x6c, 0x69, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x49, 0x73, |
| 1191 | 0x6c, 0x65, 0x5f, 0x6f, 0x66, 0x5f, 0x4d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 1192 | 0x2f, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, |
| 1193 | 0x69, 0x73, 0x62, 0x6f, 0x6e, 0x20, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x4d, |
| 1194 | 0x61, 0x64, 0x65, 0x69, 0x72, 0x61, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, |
| 1195 | 0x43, 0x61, 0x6e, 0x61, 0x72, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x6f, |
| 1196 | 0x6e, 0x64, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x75, 0x75, |
| 1197 | 0x6b, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4f, 0x75, 0x61, 0x67, 0x61, 0x64, 0x6f, |
| 1198 | 0x75, 0x67, 0x6f, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x6e, 0x6a, |
| 1199 | 0x75, 0x6c, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x63, 0x63, 0x72, 0x61, 0x0, |
| 1200 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x6e, 0x6d, 0x61, 0x72, 0x6b, 0x73, |
| 1201 | 0x68, 0x61, 0x76, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x69, 0x73, 0x73, |
| 1202 | 0x61, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x6e, 0x61, 0x6b, 0x72, |
| 1203 | 0x79, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x52, 0x65, 0x79, 0x6b, 0x6a, |
| 1204 | 0x61, 0x76, 0x69, 0x6b, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x62, 0x69, 0x64, |
| 1205 | 0x6a, 0x61, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x72, 0x6f, |
| 1206 | 0x76, 0x69, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x6d, 0x61, 0x6b, |
| 1207 | 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x75, 0x61, 0x6b, 0x63, 0x68, |
| 1208 | 0x6f, 0x74, 0x74, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x53, 0x74, 0x5f, |
| 1209 | 0x48, 0x65, 0x6c, 0x65, 0x6e, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, |
| 1210 | 0x6b, 0x61, 0x72, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x46, 0x72, 0x65, 0x65, 0x74, |
| 1211 | 0x6f, 0x77, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x6d, 0x65, 0x0, |
| 1212 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x69, 0x63, 0x6f, 0x73, 0x69, 0x61, 0x20, 0x41, 0x73, 0x69, |
| 1213 | 0x61, 0x2f, 0x46, 0x61, 0x6d, 0x61, 0x67, 0x75, 0x73, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, |
| 1214 | 0x70, 0x65, 0x2f, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 1215 | 0x2f, 0x42, 0x75, 0x63, 0x68, 0x61, 0x72, 0x65, 0x73, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1216 | 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x2d, 0x61, 0x75, 0x2d, 0x50, 0x72, 0x69, 0x6e, 0x63, |
| 1217 | 0x65, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x30, 0x0, 0x50, 0x61, 0x63, |
| 1218 | 0x69, 0x66, 0x69, 0x63, 0x2f, 0x52, 0x61, 0x72, 0x6f, 0x74, 0x6f, 0x6e, 0x67, 0x61, 0x0, 0x50, |
| 1219 | 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54, 0x61, 0x68, 0x69, 0x74, 0x69, 0x0, 0x50, 0x61, |
| 1220 | 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x48, 0x6f, 0x6e, 0x6f, 0x6c, 0x75, 0x6c, 0x75, 0x0, 0x41, |
| 1221 | 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x6f, 0x6c, 0x6b, 0x61, 0x74, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 1222 | 0x2f, 0x54, 0x65, 0x68, 0x72, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x65, 0x72, |
| 1223 | 0x75, 0x73, 0x61, 0x6c, 0x65, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6d, 0x6d, 0x61, |
| 1224 | 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x61, 0x6c, 0x69, 0x6e, 0x69, 0x6e, |
| 1225 | 0x67, 0x72, 0x61, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x65, 0x6f, 0x75, 0x6c, 0x0, |
| 1226 | 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x72, 0x69, 0x70, 0x6f, 0x6c, 0x69, 0x0, 0x45, |
| 1227 | 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x34, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, |
| 1228 | 0x63, 0x2f, 0x4b, 0x69, 0x72, 0x69, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x0, 0x41, 0x75, 0x73, |
| 1229 | 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x6f, 0x72, 0x64, 0x5f, 0x48, 0x6f, 0x77, 0x65, |
| 1230 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x67, 0x61, 0x64, 0x61, 0x6e, 0x0, 0x41, 0x6d, |
| 1231 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x75, 0x6e, 0x74, 0x61, 0x5f, 0x41, 0x72, 0x65, 0x6e, |
| 1232 | 0x61, 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x72, 0x71, 0x75, |
| 1233 | 0x65, 0x73, 0x61, 0x73, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x75, 0x72, |
| 1234 | 0x69, 0x74, 0x69, 0x75, 0x73, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x52, 0x65, 0x75, |
| 1235 | 0x6e, 0x69, 0x6f, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x68, 0x65, |
| 1236 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x65, 0x69, 0x72, 0x75, 0x74, 0x0, 0x41, 0x6d, 0x65, |
| 1237 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x65, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x0, |
| 1238 | 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x73, 0x61, 0x62, 0x6c, 0x61, 0x6e, 0x63, |
| 1239 | 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x6c, 0x5f, 0x41, 0x61, 0x69, 0x75, |
| 1240 | 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x64, 0x6d, 0x6f, 0x6e, 0x74, |
| 1241 | 0x6f, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6d, 0x62, 0x72, |
| 1242 | 0x69, 0x64, 0x67, 0x65, 0x5f, 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1243 | 0x2f, 0x49, 0x6e, 0x75, 0x76, 0x69, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1244 | 0x43, 0x69, 0x75, 0x64, 0x61, 0x64, 0x5f, 0x4a, 0x75, 0x61, 0x72, 0x65, 0x7a, 0x0, 0x41, 0x6d, |
| 1245 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x65, 0x6e, 0x76, 0x65, 0x72, 0x20, 0x41, 0x6d, 0x65, |
| 1246 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x69, 0x73, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1247 | 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x7a, 0x61, 0x74, 0x6c, 0x61, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x69, |
| 1248 | 0x61, 0x6e, 0x2f, 0x43, 0x6f, 0x63, 0x6f, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x61, |
| 1249 | 0x6e, 0x67, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x76, 0x6f, 0x73, 0x69, |
| 1250 | 0x62, 0x69, 0x72, 0x73, 0x6b, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x69, 0x6e, |
| 1251 | 0x64, 0x68, 0x6f, 0x65, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x74, 0x68, 0x6d, |
| 1252 | 0x61, 0x6e, 0x64, 0x75, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, |
| 1253 | 0x4d, 0x63, 0x4d, 0x75, 0x72, 0x64, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 1254 | 0x41, 0x75, 0x63, 0x6b, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1255 | 0x2f, 0x53, 0x74, 0x5f, 0x4a, 0x6f, 0x68, 0x6e, 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, |
| 1256 | 0x63, 0x2f, 0x4e, 0x6f, 0x72, 0x66, 0x6f, 0x6c, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x49, |
| 1257 | 0x72, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x72, 0x61, 0x73, |
| 1258 | 0x6e, 0x6f, 0x79, 0x61, 0x72, 0x73, 0x6b, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x76, |
| 1259 | 0x6f, 0x6b, 0x75, 0x7a, 0x6e, 0x65, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x50, |
| 1260 | 0x79, 0x6f, 0x6e, 0x67, 0x79, 0x61, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4f, 0x6d, |
| 1261 | 0x73, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x69, |
| 1262 | 0x61, 0x67, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x61, 0x6e, 0x63, |
| 1263 | 0x6f, 0x75, 0x76, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, |
| 1264 | 0x73, 0x5f, 0x41, 0x6e, 0x67, 0x65, 0x6c, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 1265 | 0x61, 0x2f, 0x54, 0x69, 0x6a, 0x75, 0x61, 0x6e, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, |
| 1266 | 0x61, 0x72, 0x61, 0x63, 0x68, 0x69, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, |
| 1267 | 0x73, 0x75, 0x6e, 0x63, 0x69, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x51, 0x79, 0x7a, |
| 1268 | 0x79, 0x6c, 0x6f, 0x72, 0x64, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x72, |
| 1269 | 0x75, 0x73, 0x73, 0x65, 0x6c, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x43, 0x6f, |
| 1270 | 0x70, 0x65, 0x6e, 0x68, 0x61, 0x67, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 1271 | 0x50, 0x61, 0x72, 0x69, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x64, |
| 1272 | 0x72, 0x69, 0x64, 0x20, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x65, 0x75, 0x74, 0x61, |
| 1273 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x72, 0x65, 0x64, 0x6e, 0x65, 0x6b, 0x6f, 0x6c, 0x79, |
| 1274 | 0x6d, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x6d, 0x63, 0x68, 0x61, 0x74, |
| 1275 | 0x6b, 0x61, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6e, 0x61, 0x64, 0x79, 0x72, 0x0, 0x45, |
| 1276 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x6d, 0x61, 0x72, 0x61, 0x0, 0x45, 0x75, 0x72, |
| 1277 | 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x6f, 0x73, 0x63, 0x6f, 0x77, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, |
| 1278 | 0x65, 0x2f, 0x4b, 0x69, 0x72, 0x6f, 0x76, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, |
| 1279 | 0x69, 0x6d, 0x66, 0x65, 0x72, 0x6f, 0x70, 0x6f, 0x6c, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, |
| 1280 | 0x54, 0x2b, 0x33, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x52, |
| 1281 | 0x6f, 0x74, 0x68, 0x65, 0x72, 0x61, 0x20, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, |
| 1282 | 0x61, 0x2f, 0x50, 0x61, 0x6c, 0x6d, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1283 | 0x2f, 0x46, 0x6f, 0x72, 0x74, 0x61, 0x6c, 0x65, 0x7a, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1284 | 0x63, 0x61, 0x2f, 0x42, 0x65, 0x6c, 0x65, 0x6d, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1285 | 0x2f, 0x4d, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1286 | 0x52, 0x65, 0x63, 0x69, 0x66, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, |
| 1287 | 0x61, 0x6e, 0x74, 0x61, 0x72, 0x65, 0x6d, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, |
| 1288 | 0x2f, 0x53, 0x74, 0x61, 0x6e, 0x6c, 0x65, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1289 | 0x2f, 0x43, 0x61, 0x79, 0x65, 0x6e, 0x6e, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1290 | 0x2f, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x61, 0x72, 0x69, 0x62, 0x6f, 0x0, 0x45, 0x74, 0x63, 0x2f, |
| 1291 | 0x47, 0x4d, 0x54, 0x2b, 0x35, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x69, |
| 1292 | 0x6f, 0x5f, 0x42, 0x72, 0x61, 0x6e, 0x63, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1293 | 0x2f, 0x45, 0x69, 0x72, 0x75, 0x6e, 0x65, 0x70, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 1294 | 0x61, 0x2f, 0x41, 0x74, 0x69, 0x6b, 0x6f, 0x6b, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1295 | 0x63, 0x61, 0x2f, 0x43, 0x61, 0x79, 0x6d, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 1296 | 0x61, 0x2f, 0x42, 0x6f, 0x67, 0x6f, 0x74, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1297 | 0x2f, 0x47, 0x75, 0x61, 0x79, 0x61, 0x71, 0x75, 0x69, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1298 | 0x63, 0x61, 0x2f, 0x4a, 0x61, 0x6d, 0x61, 0x69, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1299 | 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6e, 0x61, 0x6d, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 1300 | 0x61, 0x2f, 0x4c, 0x69, 0x6d, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x34, |
| 1301 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x67, 0x75, 0x69, 0x6c, 0x6c, |
| 1302 | 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x74, 0x69, 0x67, 0x75, |
| 1303 | 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x75, 0x62, 0x61, 0x0, |
| 1304 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x72, 0x62, 0x61, 0x64, 0x6f, 0x73, |
| 1305 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x61, 0x5f, 0x50, 0x61, 0x7a, 0x0, |
| 1306 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x61, 0x75, 0x73, 0x20, 0x41, |
| 1307 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x61, 0x5f, 0x56, 0x69, 0x73, 0x74, 0x61, |
| 1308 | 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x6f, 0x5f, 0x56, |
| 1309 | 0x65, 0x6c, 0x68, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x6f, 0x72, |
| 1310 | 0x74, 0x6f, 0x6c, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6c, 0x61, |
| 1311 | 0x6e, 0x63, 0x2d, 0x53, 0x61, 0x62, 0x6c, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 1312 | 0x61, 0x2f, 0x4b, 0x72, 0x61, 0x6c, 0x65, 0x6e, 0x64, 0x69, 0x6a, 0x6b, 0x0, 0x41, 0x6d, 0x65, |
| 1313 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x75, 0x72, 0x61, 0x63, 0x61, 0x6f, 0x0, 0x41, 0x6d, 0x65, |
| 1314 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x6f, 0x6d, 0x69, 0x6e, 0x69, 0x63, 0x61, 0x0, 0x41, 0x6d, |
| 1315 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x6f, 0x5f, 0x44, 0x6f, 0x6d, 0x69, |
| 1316 | 0x6e, 0x67, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x72, 0x65, 0x6e, |
| 1317 | 0x61, 0x64, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x75, 0x61, 0x64, |
| 1318 | 0x65, 0x6c, 0x6f, 0x75, 0x70, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, |
| 1319 | 0x75, 0x79, 0x61, 0x6e, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, |
| 1320 | 0x72, 0x74, 0x69, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1321 | 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x73, 0x65, 0x72, 0x72, 0x61, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 1322 | 0x69, 0x63, 0x61, 0x2f, 0x50, 0x75, 0x65, 0x72, 0x74, 0x6f, 0x5f, 0x52, 0x69, 0x63, 0x6f, 0x0, |
| 1323 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x42, 0x61, 0x72, 0x74, 0x68, |
| 1324 | 0x65, 0x6c, 0x65, 0x6d, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, |
| 1325 | 0x5f, 0x4b, 0x69, 0x74, 0x74, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, |
| 1326 | 0x74, 0x5f, 0x4c, 0x75, 0x63, 0x69, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1327 | 0x4d, 0x61, 0x72, 0x69, 0x67, 0x6f, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1328 | 0x53, 0x74, 0x5f, 0x56, 0x69, 0x6e, 0x63, 0x65, 0x6e, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1329 | 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x50, 0x72, 0x69, 0x6e, 0x63, 0x65, 0x73, |
| 1330 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x5f, 0x6f, 0x66, |
| 1331 | 0x5f, 0x53, 0x70, 0x61, 0x69, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, |
| 1332 | 0x74, 0x5f, 0x54, 0x68, 0x6f, 0x6d, 0x61, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1333 | 0x2f, 0x4d, 0x69, 0x71, 0x75, 0x65, 0x6c, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, |
| 1334 | 0x61, 0x6b, 0x68, 0x61, 0x6c, 0x69, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 1335 | 0x41, 0x70, 0x69, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6f, 0x5f, |
| 1336 | 0x54, 0x6f, 0x6d, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x72, 0x61, |
| 1337 | 0x74, 0x6f, 0x76, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x37, 0x0, 0x41, 0x6e, |
| 1338 | 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x76, 0x69, 0x73, 0x0, 0x41, |
| 1339 | 0x73, 0x69, 0x61, 0x2f, 0x50, 0x68, 0x6e, 0x6f, 0x6d, 0x5f, 0x50, 0x65, 0x6e, 0x68, 0x0, 0x49, |
| 1340 | 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x68, 0x72, 0x69, 0x73, 0x74, 0x6d, 0x61, 0x73, 0x0, |
| 1341 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x61, 0x6b, 0x61, 0x72, 0x74, 0x61, 0x20, 0x41, 0x73, 0x69, |
| 1342 | 0x61, 0x2f, 0x50, 0x6f, 0x6e, 0x74, 0x69, 0x61, 0x6e, 0x61, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 1343 | 0x2f, 0x56, 0x69, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6e, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 1344 | 0x42, 0x61, 0x6e, 0x67, 0x6b, 0x6f, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x5f, |
| 1345 | 0x43, 0x68, 0x69, 0x5f, 0x4d, 0x69, 0x6e, 0x68, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, |
| 1346 | 0x2d, 0x38, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x72, 0x75, 0x6e, 0x65, 0x69, 0x0, 0x41, |
| 1347 | 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x6b, 0x61, 0x73, 0x73, 0x61, 0x72, 0x0, 0x41, 0x73, 0x69, |
| 1348 | 0x61, 0x2f, 0x4b, 0x75, 0x61, 0x6c, 0x61, 0x5f, 0x4c, 0x75, 0x6d, 0x70, 0x75, 0x72, 0x20, 0x41, |
| 1349 | 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 1350 | 0x2f, 0x4d, 0x61, 0x6e, 0x69, 0x6c, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x69, 0x6e, |
| 1351 | 0x67, 0x61, 0x70, 0x6f, 0x72, 0x65, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x32, |
| 1352 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x61, 0x62, 0x6f, 0x72, 0x6f, 0x6e, 0x65, |
| 1353 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x75, 0x6a, 0x75, 0x6d, 0x62, 0x75, 0x72, |
| 1354 | 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x75, 0x62, 0x75, 0x6d, 0x62, 0x61, |
| 1355 | 0x73, 0x68, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x62, 0x61, 0x62, 0x61, |
| 1356 | 0x6e, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x73, 0x65, 0x72, 0x75, |
| 1357 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6c, 0x61, 0x6e, 0x74, 0x79, 0x72, 0x65, |
| 1358 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x70, 0x75, 0x74, 0x6f, 0x0, 0x41, |
| 1359 | 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x69, 0x67, 0x61, 0x6c, 0x69, 0x0, 0x41, 0x66, 0x72, |
| 1360 | 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x6f, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x73, 0x62, 0x75, 0x72, 0x67, |
| 1361 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x75, 0x73, 0x61, 0x6b, 0x61, 0x0, 0x41, |
| 1362 | 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x72, 0x61, 0x72, 0x65, 0x0, 0x41, 0x66, 0x72, |
| 1363 | 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x62, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x6f, |
| 1364 | 0x6c, 0x6f, 0x6d, 0x62, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x68, 0x61, |
| 1365 | 0x72, 0x74, 0x6f, 0x75, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x61, 0x6d, 0x61, 0x73, |
| 1366 | 0x63, 0x75, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x61, 0x69, 0x70, 0x65, 0x69, 0x0, |
| 1367 | 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x62, 0x61, 0x72, 0x74, |
| 1368 | 0x20, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x63, 0x71, |
| 1369 | 0x75, 0x61, 0x72, 0x69, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, |
| 1370 | 0x61, 0x67, 0x75, 0x61, 0x69, 0x6e, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, |
| 1371 | 0x39, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x61, 0x79, 0x61, 0x70, 0x75, 0x72, 0x61, 0x0, |
| 1372 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x6f, 0x6b, 0x79, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, |
| 1373 | 0x69, 0x63, 0x2f, 0x50, 0x61, 0x6c, 0x61, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x69, |
| 1374 | 0x6c, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x6f, 0x6d, 0x73, 0x6b, 0x0, 0x50, 0x61, |
| 1375 | 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54, 0x6f, 0x6e, 0x67, 0x61, 0x74, 0x61, 0x70, 0x75, 0x0, |
| 1376 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, |
| 1377 | 0x65, 0x2f, 0x49, 0x73, 0x74, 0x61, 0x6e, 0x62, 0x75, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1378 | 0x63, 0x61, 0x2f, 0x47, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x54, 0x75, 0x72, 0x6b, 0x0, 0x41, 0x73, |
| 1379 | 0x69, 0x61, 0x2f, 0x55, 0x6c, 0x61, 0x61, 0x6e, 0x62, 0x61, 0x61, 0x74, 0x61, 0x72, 0x0, 0x41, |
| 1380 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x49, |
| 1381 | 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x70, 0x6f, 0x6c, 0x69, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, |
| 1382 | 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x4d, 0x61, 0x72, 0x65, |
| 1383 | 0x6e, 0x67, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, |
| 1384 | 0x61, 0x6e, 0x61, 0x2f, 0x56, 0x65, 0x76, 0x61, 0x79, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, |
| 1385 | 0x54, 0x2b, 0x37, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x72, 0x65, 0x73, |
| 1386 | 0x74, 0x6f, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x77, 0x73, |
| 1387 | 0x6f, 0x6e, 0x5f, 0x43, 0x72, 0x65, 0x65, 0x6b, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1388 | 0x2f, 0x46, 0x6f, 0x72, 0x74, 0x5f, 0x4e, 0x65, 0x6c, 0x73, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, |
| 1389 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x65, 0x72, 0x6d, 0x6f, 0x73, 0x69, 0x6c, 0x6c, 0x6f, 0x0, |
| 1390 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x68, 0x6f, 0x65, 0x6e, 0x69, 0x78, 0x0, |
| 1391 | 0x45, 0x74, 0x63, 0x2f, 0x55, 0x54, 0x43, 0x20, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x0, |
| 1392 | 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x32, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, |
| 1393 | 0x69, 0x63, 0x2f, 0x54, 0x61, 0x72, 0x61, 0x77, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, |
| 1394 | 0x63, 0x2f, 0x4d, 0x61, 0x6a, 0x75, 0x72, 0x6f, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
| 1395 | 0x2f, 0x4b, 0x77, 0x61, 0x6a, 0x61, 0x6c, 0x65, 0x69, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, |
| 1396 | 0x69, 0x63, 0x2f, 0x4e, 0x61, 0x75, 0x72, 0x75, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
| 1397 | 0x2f, 0x46, 0x75, 0x6e, 0x61, 0x66, 0x75, 0x74, 0x69, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, |
| 1398 | 0x63, 0x2f, 0x57, 0x61, 0x6b, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x57, |
| 1399 | 0x61, 0x6c, 0x6c, 0x69, 0x73, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x33, |
| 1400 | 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4b, 0x61, 0x6e, 0x74, 0x6f, 0x6e, 0x0, |
| 1401 | 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x46, 0x61, 0x6b, 0x61, 0x6f, 0x66, 0x6f, 0x0, |
| 1402 | 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x32, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 1403 | 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x6f, 0x6e, 0x68, 0x61, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, |
| 1404 | 0x69, 0x63, 0x2f, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x5f, 0x47, 0x65, 0x6f, 0x72, 0x67, 0x69, 0x61, |
| 1405 | 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x38, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, |
| 1406 | 0x69, 0x63, 0x2f, 0x50, 0x69, 0x74, 0x63, 0x61, 0x69, 0x72, 0x6e, 0x0, 0x45, 0x74, 0x63, 0x2f, |
| 1407 | 0x47, 0x4d, 0x54, 0x2b, 0x39, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x61, |
| 1408 | 0x6d, 0x62, 0x69, 0x65, 0x72, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x31, |
| 1409 | 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x61, 0x67, 0x6f, 0x5f, 0x50, 0x61, |
| 1410 | 0x67, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x69, 0x75, 0x65, 0x0, |
| 1411 | 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x69, 0x64, 0x77, 0x61, 0x79, 0x0, 0x41, |
| 1412 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x72, 0x61, 0x63, 0x61, 0x73, 0x0, 0x41, |
| 1413 | 0x73, 0x69, 0x61, 0x2f, 0x56, 0x6c, 0x61, 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x20, |
| 1414 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x73, 0x74, 0x2d, 0x4e, 0x65, 0x72, 0x61, 0x0, 0x45, 0x75, |
| 1415 | 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x6f, 0x6c, 0x67, 0x6f, 0x67, 0x72, 0x61, 0x64, 0x0, 0x41, |
| 1416 | 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x50, 0x65, 0x72, 0x74, 0x68, 0x0, 0x45, |
| 1417 | 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1418 | 0x41, 0x6c, 0x67, 0x69, 0x65, 0x72, 0x73, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, |
| 1419 | 0x75, 0x61, 0x6e, 0x64, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, |
| 1420 | 0x74, 0x6f, 0x2d, 0x4e, 0x6f, 0x76, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, |
| 1421 | 0x6f, 0x75, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x6e, |
| 1422 | 0x67, 0x75, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x64, 0x6a, 0x61, 0x6d, |
| 1423 | 0x65, 0x6e, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x72, 0x61, 0x7a, 0x7a, |
| 1424 | 0x61, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x69, |
| 1425 | 0x6e, 0x73, 0x68, 0x61, 0x73, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, |
| 1426 | 0x6c, 0x61, 0x62, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x69, 0x62, 0x72, |
| 1427 | 0x65, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x61, |
| 1428 | 0x67, 0x6f, 0x73, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x69, 0x61, 0x6d, 0x65, |
| 1429 | 0x79, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x75, 0x6e, 0x69, 0x73, 0x0, 0x45, |
| 1430 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x6e, 0x64, 0x6f, 0x72, 0x72, 0x61, 0x0, 0x45, 0x75, |
| 1431 | 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x69, 0x65, 0x6e, 0x6e, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, |
| 1432 | 0x70, 0x65, 0x2f, 0x42, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 1433 | 0x2f, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 1434 | 0x2f, 0x47, 0x69, 0x62, 0x72, 0x61, 0x6c, 0x74, 0x61, 0x72, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, |
| 1435 | 0x65, 0x2f, 0x52, 0x6f, 0x6d, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x61, |
| 1436 | 0x64, 0x75, 0x7a, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x75, 0x78, 0x65, 0x6d, |
| 1437 | 0x62, 0x6f, 0x75, 0x72, 0x67, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x6c, |
| 1438 | 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x6f, 0x6e, 0x61, 0x63, 0x6f, |
| 1439 | 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x6d, 0x73, 0x74, 0x65, 0x72, 0x64, 0x61, |
| 1440 | 0x6d, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4f, 0x73, 0x6c, 0x6f, 0x0, 0x45, 0x75, |
| 1441 | 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x6e, 0x5f, 0x4d, 0x61, 0x72, 0x69, 0x6e, 0x6f, 0x0, |
| 1442 | 0x41, 0x72, 0x63, 0x74, 0x69, 0x63, 0x2f, 0x4c, 0x6f, 0x6e, 0x67, 0x79, 0x65, 0x61, 0x72, 0x62, |
| 1443 | 0x79, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x74, 0x6f, 0x63, 0x6b, |
| 1444 | 0x68, 0x6f, 0x6c, 0x6d, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x5a, 0x75, 0x72, 0x69, |
| 1445 | 0x63, 0x68, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x61, 0x74, 0x69, 0x63, 0x61, |
| 1446 | 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x76, 0x64, 0x0, 0x45, 0x74, 0x63, 0x2f, |
| 1447 | 0x47, 0x4d, 0x54, 0x2d, 0x35, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, |
| 1448 | 0x2f, 0x4d, 0x61, 0x77, 0x73, 0x6f, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4b, |
| 1449 | 0x65, 0x72, 0x67, 0x75, 0x65, 0x6c, 0x65, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4f, 0x72, |
| 1450 | 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6c, 0x6d, 0x61, 0x74, 0x79, 0x20, 0x41, |
| 1451 | 0x73, 0x69, 0x61, 0x2f, 0x41, 0x71, 0x74, 0x61, 0x75, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, |
| 1452 | 0x71, 0x74, 0x6f, 0x62, 0x65, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x74, 0x79, 0x72, 0x61, |
| 1453 | 0x75, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x51, 0x6f, 0x73, 0x74, 0x61, 0x6e, 0x61, 0x79, 0x0, |
| 1454 | 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x6c, 0x64, 0x69, 0x76, 0x65, 0x73, 0x0, |
| 1455 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x75, 0x73, 0x68, 0x61, 0x6e, 0x62, 0x65, 0x0, 0x41, 0x73, |
| 1456 | 0x69, 0x61, 0x2f, 0x41, 0x73, 0x68, 0x67, 0x61, 0x62, 0x61, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 1457 | 0x2f, 0x54, 0x61, 0x73, 0x68, 0x6b, 0x65, 0x6e, 0x74, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, |
| 1458 | 0x61, 0x6d, 0x61, 0x72, 0x6b, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x65, |
| 1459 | 0x62, 0x72, 0x6f, 0x6e, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x47, 0x61, 0x7a, 0x61, 0x0, 0x45, |
| 1460 | 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x30, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, |
| 1461 | 0x74, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x75, 0x6d, 0x6f, 0x6e, 0x74, 0x44, 0x55, 0x72, 0x76, 0x69, |
| 1462 | 0x6c, 0x6c, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x75, 0x61, 0x6d, |
| 1463 | 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x43, 0x68, 0x75, 0x75, 0x6b, 0x0, 0x50, |
| 1464 | 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x53, 0x61, 0x69, 0x70, 0x61, 0x6e, 0x0, 0x50, 0x61, |
| 1465 | 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x5f, 0x4d, 0x6f, 0x72, 0x65, 0x73, |
| 1466 | 0x62, 0x79, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x20, |
| 1467 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x68, 0x61, 0x6e, 0x64, 0x79, 0x67, 0x61, 0x0, 0x41, 0x6d, |
| 1468 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x68, 0x69, 0x74, 0x65, 0x68, 0x6f, 0x72, 0x73, 0x65, |
| 1469 | 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x77, 0x73, 0x6f, 0x6e, 0x0, |
| 1470 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x63, 0x68, 0x6f, 0x72, 0x61, 0x67, |
| 1471 | 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, |
| 1472 | 0x69, 0x6e, 0x61, 0x2f, 0x42, 0x75, 0x65, 0x6e, 0x6f, 0x73, 0x5f, 0x41, 0x69, 0x72, 0x65, 0x73, |
| 1473 | 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x73, 0x74, 0x72, 0x61, 0x6b, 0x68, 0x61, |
| 1474 | 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x6c, 0x69, 0x66, 0x61, |
| 1475 | 0x78, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x53, 0x79, 0x64, 0x6e, |
| 1476 | 0x65, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x65, 0x67, 0x69, 0x6e, |
| 1477 | 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x41, 0x64, 0x65, 0x6c, |
| 1478 | 0x61, 0x69, 0x64, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x75, 0x69, |
| 1479 | 0x61, 0x62, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x63, |
| 1480 | 0x61, 0x67, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x78, 0x69, |
| 1481 | 0x63, 0x6f, 0x5f, 0x43, 0x69, 0x74, 0x79, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, |
| 1482 | 0x61, 0x2f, 0x42, 0x72, 0x69, 0x73, 0x62, 0x61, 0x6e, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1483 | 0x63, 0x61, 0x2f, 0x4e, 0x65, 0x77, 0x5f, 0x59, 0x6f, 0x72, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 1484 | 0x69, 0x63, 0x61, 0x2f, 0x44, 0x65, 0x6e, 0x76, 0x65, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 1485 | 0x4b, 0x72, 0x61, 0x73, 0x6e, 0x6f, 0x79, 0x61, 0x72, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 1486 | 0x2f, 0x4b, 0x61, 0x6d, 0x63, 0x68, 0x61, 0x74, 0x6b, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, |
| 1487 | 0x65, 0x2f, 0x4d, 0x6f, 0x73, 0x63, 0x6f, 0x77, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, |
| 1488 | 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x62, 0x61, 0x72, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 1489 | 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, |
| 1490 | 0x61, 0x70, 0x6f, 0x6c, 0x69, 0x73, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x55, 0x54, 0x43, 0x0, 0x41, |
| 1491 | 0x73, 0x69, 0x61, 0x2f, 0x56, 0x6c, 0x61, 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, |
| 1492 | 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x0, 0x41, 0x73, |
| 1493 | 0x69, 0x61, 0x2f, 0x54, 0x61, 0x73, 0x68, 0x6b, 0x65, 0x6e, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 1494 | 0x2f, 0x48, 0x65, 0x62, 0x72, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x61, 0x6b, |
| 1495 | 0x75, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x68, 0x69, |
| 1496 | 0x74, 0x65, 0x68, 0x6f, 0x72, 0x73, 0x65, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x34, 0x3a, 0x30, |
| 1497 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, |
| 1498 | 0x31, 0x32, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x31, 0x3a, 0x30, 0x30, 0x0, |
| 1499 | 0x55, 0x54, 0x43, 0x2d, 0x31, 0x30, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x39, |
| 1500 | 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x39, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1501 | 0x43, 0x2d, 0x30, 0x38, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x37, 0x3a, 0x30, |
| 1502 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x36, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, |
| 1503 | 0x30, 0x35, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x34, 0x3a, 0x33, 0x30, 0x0, |
| 1504 | 0x55, 0x54, 0x43, 0x2d, 0x30, 0x34, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x33, |
| 1505 | 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1506 | 0x43, 0x2d, 0x30, 0x32, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x31, 0x3a, 0x30, |
| 1507 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x20, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x20, |
| 1508 | 0x55, 0x54, 0x43, 0x2d, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x31, |
| 1509 | 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x32, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1510 | 0x43, 0x2b, 0x30, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x33, 0x3a, 0x33, |
| 1511 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x34, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, |
| 1512 | 0x30, 0x34, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x35, 0x3a, 0x30, 0x30, 0x0, |
| 1513 | 0x55, 0x54, 0x43, 0x2b, 0x30, 0x35, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x35, |
| 1514 | 0x3a, 0x34, 0x35, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x36, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1515 | 0x43, 0x2b, 0x30, 0x36, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x37, 0x3a, 0x30, |
| 1516 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x38, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, |
| 1517 | 0x30, 0x38, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x38, 0x3a, 0x34, 0x35, 0x0, |
| 1518 | 0x55, 0x54, 0x43, 0x2b, 0x30, 0x39, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x39, |
| 1519 | 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x30, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 1520 | 0x43, 0x2b, 0x31, 0x30, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x31, 0x3a, 0x30, |
| 1521 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x32, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, |
| 1522 | 0x31, 0x32, 0x3a, 0x34, 0x35, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x33, 0x3a, 0x30, 0x30, 0x0, |
| 1523 | 0x55, 0x54, 0x43, 0x2b, 0x31, 0x34, 0x3a, 0x30, 0x30, 0x0 |
| 1524 | }; |
| 1525 | |
| 1526 | static inline constexpr char aliasIdData[] = { |
| 1527 | 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x73, 0x6d, 0x65, 0x72, 0x61, 0x0, 0x41, 0x66, |
| 1528 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x73, 0x6d, 0x61, 0x72, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, |
| 1529 | 0x63, 0x61, 0x2f, 0x54, 0x69, 0x6d, 0x62, 0x75, 0x6b, 0x74, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, |
| 1530 | 0x63, 0x61, 0x2f, 0x42, 0x61, 0x6d, 0x61, 0x6b, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 1531 | 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x43, 0x6f, 0x6d, 0x6f, |
| 1532 | 0x64, 0x52, 0x69, 0x76, 0x61, 0x64, 0x61, 0x76, 0x69, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1533 | 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x43, 0x61, 0x74, |
| 1534 | 0x61, 0x6d, 0x61, 0x72, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, |
| 1535 | 0x74, 0x6b, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x64, 0x61, 0x6b, |
| 1536 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x75, 0x65, 0x6e, 0x6f, 0x73, 0x5f, |
| 1537 | 0x41, 0x69, 0x72, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, |
| 1538 | 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x42, 0x75, 0x65, 0x6e, 0x6f, 0x73, 0x5f, 0x41, |
| 1539 | 0x69, 0x72, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x74, |
| 1540 | 0x61, 0x6d, 0x61, 0x72, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, |
| 1541 | 0x6f, 0x72, 0x61, 0x6c, 0x5f, 0x48, 0x61, 0x72, 0x62, 0x6f, 0x75, 0x72, 0x0, 0x41, 0x6d, 0x65, |
| 1542 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x74, 0x69, 0x6b, 0x6f, 0x6b, 0x61, 0x6e, 0x0, 0x41, 0x6d, |
| 1543 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x72, 0x64, 0x6f, 0x62, 0x61, 0x0, 0x41, 0x6d, |
| 1544 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, |
| 1545 | 0x43, 0x6f, 0x72, 0x64, 0x6f, 0x62, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1546 | 0x45, 0x6e, 0x73, 0x65, 0x6e, 0x61, 0x64, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1547 | 0x2f, 0x54, 0x69, 0x6a, 0x75, 0x61, 0x6e, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1548 | 0x2f, 0x46, 0x6f, 0x72, 0x74, 0x5f, 0x57, 0x61, 0x79, 0x6e, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 1549 | 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, |
| 1550 | 0x61, 0x6e, 0x61, 0x70, 0x6f, 0x6c, 0x69, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1551 | 0x2f, 0x47, 0x6f, 0x64, 0x74, 0x68, 0x61, 0x62, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1552 | 0x2f, 0x4e, 0x75, 0x75, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, |
| 1553 | 0x64, 0x69, 0x61, 0x6e, 0x61, 0x70, 0x6f, 0x6c, 0x69, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1554 | 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x6a, 0x75, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1555 | 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4a, 0x75, 0x6a, 0x75, 0x79, |
| 1556 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x6e, 0x6f, 0x78, 0x5f, 0x49, 0x4e, |
| 1557 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, |
| 1558 | 0x2f, 0x4b, 0x6e, 0x6f, 0x78, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, |
| 1559 | 0x75, 0x69, 0x73, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1560 | 0x2f, 0x4b, 0x65, 0x6e, 0x74, 0x75, 0x63, 0x6b, 0x79, 0x2f, 0x4c, 0x6f, 0x75, 0x69, 0x73, 0x76, |
| 1561 | 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x6e, |
| 1562 | 0x64, 0x6f, 0x7a, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, |
| 1563 | 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4d, 0x65, 0x6e, 0x64, 0x6f, 0x7a, 0x61, 0x0, 0x41, |
| 1564 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x72, 0x65, 0x61, 0x6c, 0x0, |
| 1565 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x6f, 0x72, 0x6f, 0x6e, 0x74, 0x6f, 0x0, |
| 1566 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x69, 0x70, 0x69, 0x67, 0x6f, 0x6e, 0x0, |
| 1567 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6e, 0x67, 0x6e, 0x69, 0x72, 0x74, |
| 1568 | 0x75, 0x6e, 0x67, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x71, 0x61, 0x6c, |
| 1569 | 0x75, 0x69, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, |
| 1570 | 0x6f, 0x5f, 0x41, 0x63, 0x72, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, |
| 1571 | 0x69, 0x6f, 0x5f, 0x42, 0x72, 0x61, 0x6e, 0x63, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 1572 | 0x61, 0x2f, 0x52, 0x61, 0x69, 0x6e, 0x79, 0x5f, 0x52, 0x69, 0x76, 0x65, 0x72, 0x0, 0x41, 0x6d, |
| 1573 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x6e, 0x69, 0x70, 0x65, 0x67, 0x0, 0x41, |
| 1574 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x6f, 0x73, 0x61, 0x72, 0x69, 0x6f, 0x0, 0x41, |
| 1575 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x61, 0x5f, 0x49, 0x73, 0x61, |
| 1576 | 0x62, 0x65, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x68, 0x69, 0x70, |
| 1577 | 0x72, 0x6f, 0x63, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x65, 0x6e, |
| 1578 | 0x76, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x68, 0x75, 0x6e, |
| 1579 | 0x64, 0x65, 0x72, 0x5f, 0x42, 0x61, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 1580 | 0x56, 0x69, 0x72, 0x67, 0x69, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, |
| 1581 | 0x74, 0x5f, 0x54, 0x68, 0x6f, 0x6d, 0x61, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1582 | 0x2f, 0x59, 0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x6b, 0x6e, 0x69, 0x66, 0x65, 0x0, 0x41, 0x6d, 0x65, |
| 1583 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x64, 0x6d, 0x6f, 0x6e, 0x74, 0x6f, 0x6e, 0x0, 0x41, 0x6e, |
| 1584 | 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x5f, 0x50, |
| 1585 | 0x6f, 0x6c, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x41, 0x75, 0x63, 0x6b, |
| 1586 | 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x73, 0x68, 0x6b, 0x68, 0x61, |
| 1587 | 0x62, 0x61, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x73, 0x68, 0x67, 0x61, 0x62, 0x61, |
| 1588 | 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x74, 0x74, 0x61, 0x0, |
| 1589 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x6f, 0x6c, 0x6b, 0x61, 0x74, 0x61, 0x0, 0x41, 0x73, 0x69, |
| 1590 | 0x61, 0x2f, 0x43, 0x68, 0x6f, 0x69, 0x62, 0x61, 0x6c, 0x73, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, |
| 1591 | 0x61, 0x2f, 0x55, 0x6c, 0x61, 0x61, 0x6e, 0x62, 0x61, 0x61, 0x74, 0x61, 0x72, 0x0, 0x41, 0x73, |
| 1592 | 0x69, 0x61, 0x2f, 0x43, 0x68, 0x6f, 0x6e, 0x67, 0x71, 0x69, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, |
| 1593 | 0x61, 0x2f, 0x53, 0x68, 0x61, 0x6e, 0x67, 0x68, 0x61, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 1594 | 0x43, 0x68, 0x75, 0x6e, 0x67, 0x6b, 0x69, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, |
| 1595 | 0x61, 0x63, 0x63, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x68, 0x61, 0x6b, 0x61, 0x0, |
| 1596 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x61, 0x72, 0x62, 0x69, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 1597 | 0x2f, 0x49, 0x73, 0x74, 0x61, 0x6e, 0x62, 0x75, 0x6c, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 1598 | 0x2f, 0x49, 0x73, 0x74, 0x61, 0x6e, 0x62, 0x75, 0x6c, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, |
| 1599 | 0x61, 0x73, 0x68, 0x67, 0x61, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x72, 0x75, 0x6d, |
| 1600 | 0x71, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x74, 0x6d, 0x61, 0x6e, 0x64, 0x75, |
| 1601 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x74, 0x68, 0x6d, 0x61, 0x6e, 0x64, 0x75, 0x0, |
| 1602 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x63, 0x61, 0x6f, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 1603 | 0x4d, 0x61, 0x63, 0x61, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x52, 0x61, 0x6e, 0x67, 0x6f, |
| 1604 | 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x61, 0x6e, 0x67, 0x6f, 0x6e, 0x0, 0x41, |
| 1605 | 0x73, 0x69, 0x61, 0x2f, 0x53, 0x61, 0x69, 0x67, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 1606 | 0x48, 0x6f, 0x5f, 0x43, 0x68, 0x69, 0x5f, 0x4d, 0x69, 0x6e, 0x68, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 1607 | 0x2f, 0x54, 0x65, 0x6c, 0x5f, 0x41, 0x76, 0x69, 0x76, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, |
| 1608 | 0x65, 0x72, 0x75, 0x73, 0x61, 0x6c, 0x65, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x68, |
| 1609 | 0x69, 0x6d, 0x62, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x68, 0x69, 0x6d, 0x70, 0x68, |
| 1610 | 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x6a, 0x75, 0x6e, 0x67, 0x5f, 0x50, 0x61, 0x6e, |
| 1611 | 0x64, 0x61, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x6b, 0x61, 0x73, 0x73, |
| 1612 | 0x61, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x6c, 0x61, 0x6e, 0x5f, 0x42, 0x61, 0x74, |
| 1613 | 0x6f, 0x72, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x46, 0x61, 0x65, 0x72, |
| 1614 | 0x6f, 0x65, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x46, 0x61, 0x72, 0x6f, |
| 1615 | 0x65, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x4a, 0x61, 0x6e, 0x5f, 0x4d, |
| 1616 | 0x61, 0x79, 0x65, 0x6e, 0x0, 0x41, 0x72, 0x63, 0x74, 0x69, 0x63, 0x2f, 0x4c, 0x6f, 0x6e, 0x67, |
| 1617 | 0x79, 0x65, 0x61, 0x72, 0x62, 0x79, 0x65, 0x6e, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, |
| 1618 | 0x69, 0x61, 0x2f, 0x41, 0x43, 0x54, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, |
| 1619 | 0x2f, 0x53, 0x79, 0x64, 0x6e, 0x65, 0x79, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, |
| 1620 | 0x61, 0x2f, 0x43, 0x61, 0x6e, 0x62, 0x65, 0x72, 0x72, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, |
| 1621 | 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x43, 0x75, 0x72, 0x72, 0x69, 0x65, 0x0, 0x41, 0x75, 0x73, 0x74, |
| 1622 | 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x62, 0x61, 0x72, 0x74, 0x0, 0x41, 0x75, 0x73, |
| 1623 | 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x48, 0x49, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, |
| 1624 | 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x6f, 0x72, 0x64, 0x5f, 0x48, 0x6f, 0x77, 0x65, 0x0, 0x41, |
| 1625 | 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x0, 0x41, |
| 1626 | 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x44, 0x61, 0x72, 0x77, 0x69, 0x6e, 0x0, |
| 1627 | 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4e, 0x53, 0x57, 0x0, 0x41, 0x75, |
| 1628 | 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x51, 0x75, 0x65, 0x65, 0x6e, 0x73, 0x6c, 0x61, |
| 1629 | 0x6e, 0x64, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x42, 0x72, 0x69, |
| 1630 | 0x73, 0x62, 0x61, 0x6e, 0x65, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, |
| 1631 | 0x53, 0x6f, 0x75, 0x74, 0x68, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, |
| 1632 | 0x41, 0x64, 0x65, 0x6c, 0x61, 0x69, 0x64, 0x65, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, |
| 1633 | 0x69, 0x61, 0x2f, 0x54, 0x61, 0x73, 0x6d, 0x61, 0x6e, 0x69, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, |
| 1634 | 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x56, 0x69, 0x63, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x0, 0x41, |
| 1635 | 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4d, 0x65, 0x6c, 0x62, 0x6f, 0x75, 0x72, |
| 1636 | 0x6e, 0x65, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x57, 0x65, 0x73, |
| 1637 | 0x74, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x50, 0x65, 0x72, 0x74, |
| 1638 | 0x68, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x59, 0x61, 0x6e, 0x63, |
| 1639 | 0x6f, 0x77, 0x69, 0x6e, 0x6e, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, |
| 1640 | 0x2f, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x48, 0x69, 0x6c, 0x6c, 0x0, 0x42, 0x72, 0x61, |
| 1641 | 0x7a, 0x69, 0x6c, 0x2f, 0x41, 0x63, 0x72, 0x65, 0x0, 0x42, 0x72, 0x61, 0x7a, 0x69, 0x6c, 0x2f, |
| 1642 | 0x44, 0x65, 0x4e, 0x6f, 0x72, 0x6f, 0x6e, 0x68, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 1643 | 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x6f, 0x6e, 0x68, 0x61, 0x0, 0x42, 0x72, 0x61, 0x7a, 0x69, 0x6c, |
| 1644 | 0x2f, 0x45, 0x61, 0x73, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, |
| 1645 | 0x6f, 0x5f, 0x50, 0x61, 0x75, 0x6c, 0x6f, 0x0, 0x42, 0x72, 0x61, 0x7a, 0x69, 0x6c, 0x2f, 0x57, |
| 1646 | 0x65, 0x73, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x61, |
| 1647 | 0x75, 0x73, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, |
| 1648 | 0x69, 0x63, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x6c, 0x69, 0x66, |
| 1649 | 0x61, 0x78, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, |
| 1650 | 0x6c, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x45, 0x61, 0x73, 0x74, 0x2d, 0x53, 0x61, |
| 1651 | 0x73, 0x6b, 0x61, 0x74, 0x63, 0x68, 0x65, 0x77, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1652 | 0x63, 0x61, 0x2f, 0x52, 0x65, 0x67, 0x69, 0x6e, 0x61, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, |
| 1653 | 0x2f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, |
| 1654 | 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, |
| 1655 | 0x4e, 0x65, 0x77, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x6d, 0x65, |
| 1656 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x4a, 0x6f, 0x68, 0x6e, 0x73, 0x0, 0x43, 0x61, |
| 1657 | 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x0, 0x41, 0x6d, 0x65, |
| 1658 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x61, 0x6e, 0x63, 0x6f, 0x75, 0x76, 0x65, 0x72, 0x0, 0x43, |
| 1659 | 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x53, 0x61, 0x73, 0x6b, 0x61, 0x74, 0x63, 0x68, 0x65, 0x77, |
| 1660 | 0x61, 0x6e, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x59, 0x75, 0x6b, 0x6f, 0x6e, 0x0, |
| 1661 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x68, 0x69, 0x74, 0x65, 0x68, 0x6f, 0x72, |
| 1662 | 0x73, 0x65, 0x0, 0x43, 0x45, 0x54, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x72, |
| 1663 | 0x75, 0x73, 0x73, 0x65, 0x6c, 0x73, 0x0, 0x43, 0x68, 0x69, 0x6c, 0x65, 0x2f, 0x43, 0x6f, 0x6e, |
| 1664 | 0x74, 0x69, 0x6e, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1665 | 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x69, 0x61, 0x67, 0x6f, 0x0, 0x43, 0x68, 0x69, 0x6c, 0x65, 0x2f, |
| 1666 | 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x50, 0x61, 0x63, |
| 1667 | 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x0, 0x43, 0x53, 0x54, 0x36, |
| 1668 | 0x43, 0x44, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x63, |
| 1669 | 0x61, 0x67, 0x6f, 0x0, 0x43, 0x75, 0x62, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1670 | 0x2f, 0x48, 0x61, 0x76, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x45, 0x54, 0x0, 0x45, 0x75, 0x72, 0x6f, |
| 1671 | 0x70, 0x65, 0x2f, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x0, 0x45, 0x67, 0x79, 0x70, 0x74, 0x0, |
| 1672 | 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x69, 0x72, 0x6f, 0x0, 0x45, 0x69, 0x72, |
| 1673 | 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x44, 0x75, 0x62, 0x6c, 0x69, 0x6e, 0x0, |
| 1674 | 0x45, 0x53, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6e, 0x61, |
| 1675 | 0x6d, 0x61, 0x0, 0x45, 0x53, 0x54, 0x35, 0x45, 0x44, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 1676 | 0x63, 0x61, 0x2f, 0x4e, 0x65, 0x77, 0x5f, 0x59, 0x6f, 0x72, 0x6b, 0x0, 0x45, 0x74, 0x63, 0x2f, |
| 1677 | 0x47, 0x4d, 0x54, 0x2b, 0x30, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x0, 0x45, 0x74, |
| 1678 | 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x30, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x30, |
| 1679 | 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x72, 0x65, 0x65, 0x6e, 0x77, 0x69, 0x63, 0x68, 0x0, 0x45, |
| 1680 | 0x74, 0x63, 0x2f, 0x55, 0x43, 0x54, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x55, 0x54, 0x43, 0x0, 0x45, |
| 1681 | 0x74, 0x63, 0x2f, 0x55, 0x6e, 0x69, 0x76, 0x65, 0x72, 0x73, 0x61, 0x6c, 0x0, 0x45, 0x74, 0x63, |
| 1682 | 0x2f, 0x5a, 0x75, 0x6c, 0x75, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x65, 0x6c, |
| 1683 | 0x66, 0x61, 0x73, 0x74, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x6f, 0x6e, 0x64, |
| 1684 | 0x6f, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x69, 0x65, 0x76, 0x0, 0x45, |
| 1685 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x79, 0x69, 0x76, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, |
| 1686 | 0x65, 0x2f, 0x4e, 0x69, 0x63, 0x6f, 0x73, 0x69, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, |
| 1687 | 0x69, 0x63, 0x6f, 0x73, 0x69, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x54, 0x69, |
| 1688 | 0x72, 0x61, 0x73, 0x70, 0x6f, 0x6c, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x43, 0x68, |
| 1689 | 0x69, 0x73, 0x69, 0x6e, 0x61, 0x75, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x55, 0x7a, |
| 1690 | 0x68, 0x67, 0x6f, 0x72, 0x6f, 0x64, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x5a, 0x61, |
| 1691 | 0x70, 0x6f, 0x72, 0x6f, 0x7a, 0x68, 0x79, 0x65, 0x0, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x79, |
| 1692 | 0x0, 0x45, 0x74, 0x63, 0x2f, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x0, 0x47, 0x42, 0x0, |
| 1693 | 0x47, 0x42, 0x2d, 0x45, 0x69, 0x72, 0x65, 0x0, 0x47, 0x4d, 0x54, 0x0, 0x47, 0x4d, 0x54, 0x2b, |
| 1694 | 0x30, 0x0, 0x47, 0x4d, 0x54, 0x2d, 0x30, 0x0, 0x47, 0x4d, 0x54, 0x30, 0x0, 0x47, 0x72, 0x65, |
| 1695 | 0x65, 0x6e, 0x77, 0x69, 0x63, 0x68, 0x0, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x0, |
| 1696 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x6e, 0x67, 0x5f, 0x4b, 0x6f, 0x6e, 0x67, 0x0, 0x48, |
| 1697 | 0x53, 0x54, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x48, 0x6f, 0x6e, 0x6f, 0x6c, |
| 1698 | 0x75, 0x6c, 0x75, 0x0, 0x49, 0x63, 0x65, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x74, 0x6c, 0x61, |
| 1699 | 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x52, 0x65, 0x79, 0x6b, 0x6a, 0x61, 0x76, 0x69, 0x6b, 0x0, 0x49, |
| 1700 | 0x72, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x65, 0x68, 0x72, 0x61, 0x6e, 0x0, |
| 1701 | 0x49, 0x73, 0x72, 0x61, 0x65, 0x6c, 0x0, 0x4a, 0x61, 0x6d, 0x61, 0x69, 0x63, 0x61, 0x0, 0x41, |
| 1702 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x61, 0x6d, 0x61, 0x69, 0x63, 0x61, 0x0, 0x4a, |
| 1703 | 0x61, 0x70, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x6f, 0x6b, 0x79, 0x6f, 0x0, |
| 1704 | 0x4b, 0x77, 0x61, 0x6a, 0x61, 0x6c, 0x65, 0x69, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, |
| 1705 | 0x63, 0x2f, 0x4b, 0x77, 0x61, 0x6a, 0x61, 0x6c, 0x65, 0x69, 0x6e, 0x0, 0x4c, 0x69, 0x62, 0x79, |
| 1706 | 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x72, 0x69, 0x70, 0x6f, 0x6c, 0x69, |
| 1707 | 0x0, 0x4d, 0x45, 0x54, 0x0, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x2f, 0x42, 0x61, 0x6a, 0x61, |
| 1708 | 0x4e, 0x6f, 0x72, 0x74, 0x65, 0x0, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x2f, 0x42, 0x61, 0x6a, |
| 1709 | 0x61, 0x53, 0x75, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x7a, |
| 1710 | 0x61, 0x74, 0x6c, 0x61, 0x6e, 0x0, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x2f, 0x47, 0x65, 0x6e, |
| 1711 | 0x65, 0x72, 0x61, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x78, |
| 1712 | 0x69, 0x63, 0x6f, 0x5f, 0x43, 0x69, 0x74, 0x79, 0x0, 0x4d, 0x53, 0x54, 0x0, 0x41, 0x6d, 0x65, |
| 1713 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x68, 0x6f, 0x65, 0x6e, 0x69, 0x78, 0x0, 0x4d, 0x53, 0x54, |
| 1714 | 0x37, 0x4d, 0x44, 0x54, 0x0, 0x4e, 0x61, 0x76, 0x61, 0x6a, 0x6f, 0x0, 0x4e, 0x5a, 0x0, 0x4e, |
| 1715 | 0x5a, 0x2d, 0x43, 0x48, 0x41, 0x54, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x43, |
| 1716 | 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, |
| 1717 | 0x6e, 0x64, 0x65, 0x72, 0x62, 0x75, 0x72, 0x79, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
| 1718 | 0x2f, 0x4b, 0x61, 0x6e, 0x74, 0x6f, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 1719 | 0x4a, 0x6f, 0x68, 0x6e, 0x73, 0x74, 0x6f, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
| 1720 | 0x2f, 0x50, 0x6f, 0x6e, 0x61, 0x70, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 1721 | 0x50, 0x6f, 0x68, 0x6e, 0x70, 0x65, 0x69, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 1722 | 0x53, 0x61, 0x6d, 0x6f, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x61, |
| 1723 | 0x67, 0x6f, 0x5f, 0x50, 0x61, 0x67, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 1724 | 0x54, 0x72, 0x75, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x43, 0x68, 0x75, |
| 1725 | 0x75, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x59, 0x61, 0x70, 0x0, 0x50, |
| 1726 | 0x6f, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x57, 0x61, 0x72, |
| 1727 | 0x73, 0x61, 0x77, 0x0, 0x50, 0x6f, 0x72, 0x74, 0x75, 0x67, 0x61, 0x6c, 0x0, 0x45, 0x75, 0x72, |
| 1728 | 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x69, 0x73, 0x62, 0x6f, 0x6e, 0x0, 0x50, 0x52, 0x43, 0x0, 0x50, |
| 1729 | 0x53, 0x54, 0x38, 0x50, 0x44, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, |
| 1730 | 0x6f, 0x73, 0x5f, 0x41, 0x6e, 0x67, 0x65, 0x6c, 0x65, 0x73, 0x0, 0x52, 0x4f, 0x43, 0x0, 0x41, |
| 1731 | 0x73, 0x69, 0x61, 0x2f, 0x54, 0x61, 0x69, 0x70, 0x65, 0x69, 0x0, 0x52, 0x4f, 0x4b, 0x0, 0x41, |
| 1732 | 0x73, 0x69, 0x61, 0x2f, 0x53, 0x65, 0x6f, 0x75, 0x6c, 0x0, 0x53, 0x69, 0x6e, 0x67, 0x61, 0x70, |
| 1733 | 0x6f, 0x72, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x69, 0x6e, 0x67, 0x61, 0x70, 0x6f, |
| 1734 | 0x72, 0x65, 0x0, 0x54, 0x75, 0x72, 0x6b, 0x65, 0x79, 0x0, 0x55, 0x43, 0x54, 0x0, 0x55, 0x6e, |
| 1735 | 0x69, 0x76, 0x65, 0x72, 0x73, 0x61, 0x6c, 0x0, 0x55, 0x53, 0x2f, 0x41, 0x6c, 0x61, 0x73, 0x6b, |
| 1736 | 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x63, 0x68, 0x6f, 0x72, |
| 1737 | 0x61, 0x67, 0x65, 0x0, 0x55, 0x53, 0x2f, 0x41, 0x6c, 0x65, 0x75, 0x74, 0x69, 0x61, 0x6e, 0x0, |
| 1738 | 0x55, 0x53, 0x2f, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x0, 0x55, 0x53, 0x2f, 0x43, 0x65, |
| 1739 | 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x0, 0x55, 0x53, 0x2f, 0x45, 0x61, 0x73, 0x74, 0x2d, 0x49, 0x6e, |
| 1740 | 0x64, 0x69, 0x61, 0x6e, 0x61, 0x0, 0x55, 0x53, 0x2f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, |
| 1741 | 0x0, 0x55, 0x53, 0x2f, 0x48, 0x61, 0x77, 0x61, 0x69, 0x69, 0x0, 0x55, 0x53, 0x2f, 0x49, 0x6e, |
| 1742 | 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2d, 0x53, 0x74, 0x61, 0x72, 0x6b, 0x65, 0x0, 0x55, 0x53, 0x2f, |
| 1743 | 0x4d, 0x69, 0x63, 0x68, 0x69, 0x67, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 1744 | 0x2f, 0x44, 0x65, 0x74, 0x72, 0x6f, 0x69, 0x74, 0x0, 0x55, 0x53, 0x2f, 0x4d, 0x6f, 0x75, 0x6e, |
| 1745 | 0x74, 0x61, 0x69, 0x6e, 0x0, 0x55, 0x53, 0x2f, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x0, |
| 1746 | 0x55, 0x53, 0x2f, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2d, 0x4e, 0x65, 0x77, 0x0, 0x55, |
| 1747 | 0x53, 0x2f, 0x53, 0x61, 0x6d, 0x6f, 0x61, 0x0, 0x55, 0x54, 0x43, 0x0, 0x57, 0x2d, 0x53, 0x55, |
| 1748 | 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x6f, 0x73, 0x63, 0x6f, 0x77, 0x0, 0x57, |
| 1749 | 0x45, 0x54, 0x0, 0x5a, 0x75, 0x6c, 0x75, 0x0 |
| 1750 | }; |
| 1751 | // GENERATED PART ENDS HERE |
| 1752 | |
| 1753 | constexpr QByteArrayView AliasData::aliasId() const { return aliasIdData + aliasIdIndex; } |
| 1754 | constexpr QByteArrayView AliasData::ianaId() const { return aliasIdData + ianaIdIndex; } |
| 1755 | constexpr QByteArrayView WindowsData::windowsId() const { return windowsIdData + windowsIdIndex; } |
| 1756 | // Each of the following returns a space-joined sequence of IANA IDs: |
| 1757 | constexpr QByteArrayView WindowsData::ianaId() const { return ianaIdData + ianaIdIndex; } |
| 1758 | constexpr QByteArrayView UtcData::id() const { return ianaIdData + ianaIdIndex; } |
| 1759 | constexpr QLatin1StringView ZoneData::id() const |
| 1760 | { return QLatin1StringView(ianaIdData + ianaIdIndex); } |
| 1761 | |
| 1762 | } // namespace QtTimeZoneCldr |
| 1763 | |
| 1764 | QT_END_NAMESPACE |
| 1765 | |
| 1766 | #endif // QTIMEZONEPRIVATE_DATA_P_H |
| 1767 | |