| 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 a normal header file. |
| 14 | // It defines data tables for internal use by QTimeZone's L10n code. |
| 15 | // It may change incompatibly between versions, or even be removed. |
| 16 | // |
| 17 | // We mean it. |
| 18 | // |
| 19 | |
| 20 | QT_REQUIRE_CONFIG(timezone); |
| 21 | QT_BEGIN_NAMESPACE |
| 22 | |
| 23 | namespace QtTimeZoneCldr { |
| 24 | /* |
| 25 | Recognized UTC-offset zones and CLDR-derived data on timezone IDs. |
| 26 | |
| 27 | The UTC-offset zone table is provided for generic UTC±HH:mm format time |
| 28 | zones. The UTC backend can support arbitrary offsets in seconds, but only |
| 29 | advertises a limited repertoire of offsets as "available" in the normal |
| 30 | sense. |
| 31 | |
| 32 | Windows Zone ID support is included in the default base class, QTZP, so can |
| 33 | be used on all platforms, since an app running on Linux may need to |
| 34 | communicate with a Windows Outlook server. These tables can also be used to |
| 35 | look up Region Codes and UTC Offsets on platforms whose backends don't |
| 36 | directly support them. For example, Darwin does not support |
| 37 | availableTimeZones() filtering by region or offset. This table is |
| 38 | auto-generated from the CLDR supplemental/windowsZones.xml data file, with |
| 39 | IDs converted from CLDR-stable to IANA-current using bcp47/timezone.xml |
| 40 | data. |
| 41 | |
| 42 | Please do not edit this data directly. See the generated section for details |
| 43 | of its last update and how to update it. |
| 44 | */ |
| 45 | |
| 46 | struct AliasData |
| 47 | { |
| 48 | // Table is sorted on aliasId(), then on ianaId(). |
| 49 | // These are both indices into the IANA table. |
| 50 | quint16 aliasIdIndex; |
| 51 | quint16 ianaIdIndex; |
| 52 | // Values for the actual IDs: |
| 53 | constexpr QByteArrayView aliasId() const; |
| 54 | constexpr QByteArrayView ianaId() const; |
| 55 | }; |
| 56 | |
| 57 | struct ZoneData |
| 58 | { |
| 59 | // Keys (table is sorted in Windows ID, then on territory enum value): |
| 60 | quint16 windowsIdKey; // Windows ID sequence number |
| 61 | quint16 territory; // QLocale::Territory, AnyTerritory means No Territory |
| 62 | // Values for this Windows zone and territory: |
| 63 | quint16 ianaIdIndex; // Index in ianaListData of space-joined IANA IDs |
| 64 | constexpr QLatin1StringView id() const; // Space-joined list of IANA IDs |
| 65 | constexpr auto ids() const { return id().tokenize(needle: u' '); } // Iterate IANA IDs |
| 66 | }; |
| 67 | |
| 68 | struct WindowsData |
| 69 | { |
| 70 | // Table is sorted on key and this puts the windowsId()s in ascending order. |
| 71 | quint16 windowsIdKey; // Windows ID sequence number |
| 72 | quint16 windowsIdIndex; // Index of Windows ID in windowsIdData |
| 73 | // Values for this Windows zone: |
| 74 | quint16 ianaIdIndex; // Index in ianaIdData of single IANA ID |
| 75 | qint32 offsetFromUtc; // Standard Time Offset from UTC, used for quick look-ups |
| 76 | constexpr QByteArrayView windowsId() const; |
| 77 | constexpr QByteArrayView ianaId() const; // Single IANA ID |
| 78 | }; |
| 79 | |
| 80 | struct UtcData |
| 81 | { |
| 82 | quint16 ianaIdIndex; // Index in ianaListData of space-joined IANA IDs |
| 83 | qint32 offsetFromUtc; // Offset form UTC in seconds |
| 84 | constexpr QByteArrayView id() const; // Space-joined list of IANA IDs |
| 85 | }; |
| 86 | |
| 87 | #if QT_CONFIG(timezone_locale) && !QT_CONFIG(icu) |
| 88 | /* Data comes from CldrAccess::readMetaZoneMap(alias) */ |
| 89 | |
| 90 | struct TerritoryZone |
| 91 | { |
| 92 | // Table is sorted by territory (should have no duplicates) |
| 93 | quint16 territory; // QLocale::Territory value |
| 94 | quint16 ianaIdIndex; // Index in alias table |
| 95 | constexpr QByteArrayView ianaId() const; |
| 96 | }; |
| 97 | |
| 98 | struct MetaZoneData |
| 99 | { |
| 100 | // Table is sorted by metazone key and name (monotonic in each other), then territory: |
| 101 | quint16 metaZoneKey; // Index from 1 to number of metazones |
| 102 | quint16 metaIdIndex; // Index in metazone ID data |
| 103 | quint16 territory; // QLocale::Territory value |
| 104 | quint16 ianaIdIndex; // Index in alias table |
| 105 | constexpr QByteArrayView ianaId() const; |
| 106 | constexpr QByteArrayView metaZoneId() const; |
| 107 | }; |
| 108 | |
| 109 | struct ZoneMetaHistory |
| 110 | { |
| 111 | // Table is sorted on ianaId then, among those with same ianaId, |
| 112 | // earlier end <= begin < end <= later begin. |
| 113 | quint16 ianaIdIndex; // Index in alias table |
| 114 | quint16 metaZoneKey; // See MetaZoneData |
| 115 | // quint32 epoch minutes, with 0xffffffff +inf and 0xfffffffe reserved. |
| 116 | quint32 begin; // zone is in metazone from this datetime |
| 117 | quint32 end; // zone is no longer in metazone from this datetime |
| 118 | constexpr QByteArrayView ianaId() const; |
| 119 | }; |
| 120 | #endif // timezone_locale but not ICU |
| 121 | |
| 122 | // GENERATED PART STARTS HERE |
| 123 | |
| 124 | /* |
| 125 | This part of the file was generated on 2025-06-17 from the |
| 126 | Common Locale Data Repository v47 |
| 127 | |
| 128 | http://www.unicode.org/cldr/ |
| 129 | |
| 130 | Do not edit this section: instead regenerate it using |
| 131 | cldr2qlocalexml.py and qlocalexml2cpp.py on updated (or |
| 132 | edited) CLDR data; see qtbase/util/locale_database/. |
| 133 | */ |
| 134 | |
| 135 | // IANA ID indices of alias and IANA ID |
| 136 | static inline constexpr AliasData aliasMappingTable[] = { |
| 137 | { .aliasIdIndex: 0, .ianaIdIndex: 14 }, // Africa/Asmera -> Africa/Asmara |
| 138 | { .aliasIdIndex: 28, .ianaIdIndex: 44 }, // Africa/Timbuktu -> Africa/Bamako |
| 139 | { .aliasIdIndex: 58, .ianaIdIndex: 91 }, // America/Argentina/ComodRivadavia -> America/Argentina/Catamarca |
| 140 | { .aliasIdIndex: 119, .ianaIdIndex: 132 }, // America/Atka -> America/Adak |
| 141 | { .aliasIdIndex: 145, .ianaIdIndex: 166 }, // America/Buenos_Aires -> America/Argentina/Buenos_Aires |
| 142 | { .aliasIdIndex: 197, .ianaIdIndex: 91 }, // America/Catamarca -> America/Argentina/Catamarca |
| 143 | { .aliasIdIndex: 215, .ianaIdIndex: 237 }, // America/Coral_Harbour -> America/Atikokan |
| 144 | { .aliasIdIndex: 254, .ianaIdIndex: 270 }, // America/Cordoba -> America/Argentina/Cordoba |
| 145 | { .aliasIdIndex: 296, .ianaIdIndex: 313 }, // America/Ensenada -> America/Tijuana |
| 146 | { .aliasIdIndex: 329, .ianaIdIndex: 348 }, // America/Fort_Wayne -> America/Indiana/Indianapolis |
| 147 | { .aliasIdIndex: 377, .ianaIdIndex: 393 }, // America/Godthab -> America/Nuuk |
| 148 | { .aliasIdIndex: 406, .ianaIdIndex: 348 }, // America/Indianapolis -> America/Indiana/Indianapolis |
| 149 | { .aliasIdIndex: 427, .ianaIdIndex: 441 }, // America/Jujuy -> America/Argentina/Jujuy |
| 150 | { .aliasIdIndex: 465, .ianaIdIndex: 481 }, // America/Knox_IN -> America/Indiana/Knox |
| 151 | { .aliasIdIndex: 502, .ianaIdIndex: 521 }, // America/Louisville -> America/Kentucky/Louisville |
| 152 | { .aliasIdIndex: 549, .ianaIdIndex: 565 }, // America/Mendoza -> America/Argentina/Mendoza |
| 153 | { .aliasIdIndex: 591, .ianaIdIndex: 608 }, // America/Montreal -> America/Toronto |
| 154 | { .aliasIdIndex: 624, .ianaIdIndex: 608 }, // America/Nipigon -> America/Toronto |
| 155 | { .aliasIdIndex: 640, .ianaIdIndex: 660 }, // America/Pangnirtung -> America/Iqaluit |
| 156 | { .aliasIdIndex: 676, .ianaIdIndex: 695 }, // America/Porto_Acre -> America/Rio_Branco |
| 157 | { .aliasIdIndex: 714, .ianaIdIndex: 734 }, // America/Rainy_River -> America/Winnipeg |
| 158 | { .aliasIdIndex: 751, .ianaIdIndex: 270 }, // America/Rosario -> America/Argentina/Cordoba |
| 159 | { .aliasIdIndex: 767, .ianaIdIndex: 313 }, // America/Santa_Isabel -> America/Tijuana |
| 160 | { .aliasIdIndex: 788, .ianaIdIndex: 805 }, // America/Shiprock -> America/Denver |
| 161 | { .aliasIdIndex: 820, .ianaIdIndex: 608 }, // America/Thunder_Bay -> America/Toronto |
| 162 | { .aliasIdIndex: 840, .ianaIdIndex: 855 }, // America/Virgin -> America/St_Thomas |
| 163 | { .aliasIdIndex: 873, .ianaIdIndex: 893 }, // America/Yellowknife -> America/Edmonton |
| 164 | { .aliasIdIndex: 910, .ianaIdIndex: 932 }, // Antarctica/South_Pole -> Pacific/Auckland |
| 165 | { .aliasIdIndex: 949, .ianaIdIndex: 964 }, // Asia/Ashkhabad -> Asia/Ashgabat |
| 166 | { .aliasIdIndex: 978, .ianaIdIndex: 992 }, // Asia/Calcutta -> Asia/Kolkata |
| 167 | { .aliasIdIndex: 1005, .ianaIdIndex: 1021 }, // Asia/Choibalsan -> Asia/Ulaanbaatar |
| 168 | { .aliasIdIndex: 1038, .ianaIdIndex: 1053 }, // Asia/Chongqing -> Asia/Shanghai |
| 169 | { .aliasIdIndex: 1067, .ianaIdIndex: 1053 }, // Asia/Chungking -> Asia/Shanghai |
| 170 | { .aliasIdIndex: 1082, .ianaIdIndex: 1093 }, // Asia/Dacca -> Asia/Dhaka |
| 171 | { .aliasIdIndex: 1104, .ianaIdIndex: 1053 }, // Asia/Harbin -> Asia/Shanghai |
| 172 | { .aliasIdIndex: 1116, .ianaIdIndex: 1130 }, // Asia/Istanbul -> Europe/Istanbul |
| 173 | { .aliasIdIndex: 1146, .ianaIdIndex: 1159 }, // Asia/Kashgar -> Asia/Urumqi |
| 174 | { .aliasIdIndex: 1171, .ianaIdIndex: 1185 }, // Asia/Katmandu -> Asia/Kathmandu |
| 175 | { .aliasIdIndex: 1200, .ianaIdIndex: 1211 }, // Asia/Macao -> Asia/Macau |
| 176 | { .aliasIdIndex: 1222, .ianaIdIndex: 1235 }, // Asia/Rangoon -> Asia/Yangon |
| 177 | { .aliasIdIndex: 1247, .ianaIdIndex: 1259 }, // Asia/Saigon -> Asia/Ho_Chi_Minh |
| 178 | { .aliasIdIndex: 1276, .ianaIdIndex: 1290 }, // Asia/Tel_Aviv -> Asia/Jerusalem |
| 179 | { .aliasIdIndex: 1305, .ianaIdIndex: 1317 }, // Asia/Thimbu -> Asia/Thimphu |
| 180 | { .aliasIdIndex: 1330, .ianaIdIndex: 1349 }, // Asia/Ujung_Pandang -> Asia/Makassar |
| 181 | { .aliasIdIndex: 1363, .ianaIdIndex: 1021 }, // Asia/Ulan_Bator -> Asia/Ulaanbaatar |
| 182 | { .aliasIdIndex: 1379, .ianaIdIndex: 1395 }, // Atlantic/Faeroe -> Atlantic/Faroe |
| 183 | { .aliasIdIndex: 1410, .ianaIdIndex: 1429 }, // Atlantic/Jan_Mayen -> Arctic/Longyearbyen |
| 184 | { .aliasIdIndex: 1449, .ianaIdIndex: 1463 }, // Australia/ACT -> Australia/Sydney |
| 185 | { .aliasIdIndex: 1480, .ianaIdIndex: 1463 }, // Australia/Canberra -> Australia/Sydney |
| 186 | { .aliasIdIndex: 1499, .ianaIdIndex: 1516 }, // Australia/Currie -> Australia/Hobart |
| 187 | { .aliasIdIndex: 1533, .ianaIdIndex: 1547 }, // Australia/LHI -> Australia/Lord_Howe |
| 188 | { .aliasIdIndex: 1567, .ianaIdIndex: 1583 }, // Australia/North -> Australia/Darwin |
| 189 | { .aliasIdIndex: 1600, .ianaIdIndex: 1463 }, // Australia/NSW -> Australia/Sydney |
| 190 | { .aliasIdIndex: 1614, .ianaIdIndex: 1635 }, // Australia/Queensland -> Australia/Brisbane |
| 191 | { .aliasIdIndex: 1654, .ianaIdIndex: 1670 }, // Australia/South -> Australia/Adelaide |
| 192 | { .aliasIdIndex: 1689, .ianaIdIndex: 1516 }, // Australia/Tasmania -> Australia/Hobart |
| 193 | { .aliasIdIndex: 1708, .ianaIdIndex: 1727 }, // Australia/Victoria -> Australia/Melbourne |
| 194 | { .aliasIdIndex: 1747, .ianaIdIndex: 1762 }, // Australia/West -> Australia/Perth |
| 195 | { .aliasIdIndex: 1778, .ianaIdIndex: 1799 }, // Australia/Yancowinna -> Australia/Broken_Hill |
| 196 | { .aliasIdIndex: 1821, .ianaIdIndex: 695 }, // Brazil/Acre -> America/Rio_Branco |
| 197 | { .aliasIdIndex: 1833, .ianaIdIndex: 1850 }, // Brazil/DeNoronha -> America/Noronha |
| 198 | { .aliasIdIndex: 1866, .ianaIdIndex: 1878 }, // Brazil/East -> America/Sao_Paulo |
| 199 | { .aliasIdIndex: 1896, .ianaIdIndex: 1908 }, // Brazil/West -> America/Manaus |
| 200 | { .aliasIdIndex: 1923, .ianaIdIndex: 1939 }, // Canada/Atlantic -> America/Halifax |
| 201 | { .aliasIdIndex: 1955, .ianaIdIndex: 734 }, // Canada/Central -> America/Winnipeg |
| 202 | { .aliasIdIndex: 1970, .ianaIdIndex: 1995 }, // Canada/East-Saskatchewan -> America/Regina |
| 203 | { .aliasIdIndex: 2010, .ianaIdIndex: 608 }, // Canada/Eastern -> America/Toronto |
| 204 | { .aliasIdIndex: 2025, .ianaIdIndex: 893 }, // Canada/Mountain -> America/Edmonton |
| 205 | { .aliasIdIndex: 2041, .ianaIdIndex: 2061 }, // Canada/Newfoundland -> America/St_Johns |
| 206 | { .aliasIdIndex: 2078, .ianaIdIndex: 2093 }, // Canada/Pacific -> America/Vancouver |
| 207 | { .aliasIdIndex: 2111, .ianaIdIndex: 1995 }, // Canada/Saskatchewan -> America/Regina |
| 208 | { .aliasIdIndex: 2131, .ianaIdIndex: 2144 }, // Canada/Yukon -> America/Whitehorse |
| 209 | { .aliasIdIndex: 2163, .ianaIdIndex: 2167 }, // CET -> Europe/Brussels |
| 210 | { .aliasIdIndex: 2183, .ianaIdIndex: 2201 }, // Chile/Continental -> America/Santiago |
| 211 | { .aliasIdIndex: 2218, .ianaIdIndex: 2237 }, // Chile/EasterIsland -> Pacific/Easter |
| 212 | { .aliasIdIndex: 2252, .ianaIdIndex: 2260 }, // CST6CDT -> America/Chicago |
| 213 | { .aliasIdIndex: 2276, .ianaIdIndex: 2281 }, // Cuba -> America/Havana |
| 214 | { .aliasIdIndex: 2296, .ianaIdIndex: 2300 }, // EET -> Europe/Athens |
| 215 | { .aliasIdIndex: 2314, .ianaIdIndex: 2320 }, // Egypt -> Africa/Cairo |
| 216 | { .aliasIdIndex: 2333, .ianaIdIndex: 2338 }, // Eire -> Europe/Dublin |
| 217 | { .aliasIdIndex: 2352, .ianaIdIndex: 2356 }, // EST -> America/Panama |
| 218 | { .aliasIdIndex: 2371, .ianaIdIndex: 2379 }, // EST5EDT -> America/New_York |
| 219 | { .aliasIdIndex: 2396, .ianaIdIndex: 2406 }, // Etc/GMT+0 -> Etc/GMT |
| 220 | { .aliasIdIndex: 2414, .ianaIdIndex: 2406 }, // Etc/GMT-0 -> Etc/GMT |
| 221 | { .aliasIdIndex: 2424, .ianaIdIndex: 2406 }, // Etc/GMT0 -> Etc/GMT |
| 222 | { .aliasIdIndex: 2433, .ianaIdIndex: 2406 }, // Etc/Greenwich -> Etc/GMT |
| 223 | { .aliasIdIndex: 2447, .ianaIdIndex: 2455 }, // Etc/UCT -> Etc/UTC |
| 224 | { .aliasIdIndex: 2463, .ianaIdIndex: 2455 }, // Etc/Universal -> Etc/UTC |
| 225 | { .aliasIdIndex: 2477, .ianaIdIndex: 2455 }, // Etc/Zulu -> Etc/UTC |
| 226 | { .aliasIdIndex: 2486, .ianaIdIndex: 2501 }, // Europe/Belfast -> Europe/London |
| 227 | { .aliasIdIndex: 2515, .ianaIdIndex: 2527 }, // Europe/Kiev -> Europe/Kyiv |
| 228 | { .aliasIdIndex: 2539, .ianaIdIndex: 2554 }, // Europe/Nicosia -> Asia/Nicosia |
| 229 | { .aliasIdIndex: 2567, .ianaIdIndex: 2583 }, // Europe/Tiraspol -> Europe/Chisinau |
| 230 | { .aliasIdIndex: 2599, .ianaIdIndex: 2527 }, // Europe/Uzhgorod -> Europe/Kyiv |
| 231 | { .aliasIdIndex: 2615, .ianaIdIndex: 2527 }, // Europe/Zaporozhye -> Europe/Kyiv |
| 232 | { .aliasIdIndex: 2633, .ianaIdIndex: 2641 }, // Factory -> Etc/Unknown |
| 233 | { .aliasIdIndex: 2653, .ianaIdIndex: 2501 }, // GB -> Europe/London |
| 234 | { .aliasIdIndex: 2656, .ianaIdIndex: 2501 }, // GB-Eire -> Europe/London |
| 235 | { .aliasIdIndex: 2664, .ianaIdIndex: 2406 }, // GMT -> Etc/GMT |
| 236 | { .aliasIdIndex: 2668, .ianaIdIndex: 2406 }, // GMT+0 -> Etc/GMT |
| 237 | { .aliasIdIndex: 2674, .ianaIdIndex: 2406 }, // GMT-0 -> Etc/GMT |
| 238 | { .aliasIdIndex: 2680, .ianaIdIndex: 2406 }, // GMT0 -> Etc/GMT |
| 239 | { .aliasIdIndex: 2685, .ianaIdIndex: 2406 }, // Greenwich -> Etc/GMT |
| 240 | { .aliasIdIndex: 2695, .ianaIdIndex: 2704 }, // Hongkong -> Asia/Hong_Kong |
| 241 | { .aliasIdIndex: 2719, .ianaIdIndex: 2723 }, // HST -> Pacific/Honolulu |
| 242 | { .aliasIdIndex: 2740, .ianaIdIndex: 2748 }, // Iceland -> Atlantic/Reykjavik |
| 243 | { .aliasIdIndex: 2767, .ianaIdIndex: 2772 }, // Iran -> Asia/Tehran |
| 244 | { .aliasIdIndex: 2784, .ianaIdIndex: 1290 }, // Israel -> Asia/Jerusalem |
| 245 | { .aliasIdIndex: 2791, .ianaIdIndex: 2799 }, // Jamaica -> America/Jamaica |
| 246 | { .aliasIdIndex: 2815, .ianaIdIndex: 2821 }, // Japan -> Asia/Tokyo |
| 247 | { .aliasIdIndex: 2832, .ianaIdIndex: 2842 }, // Kwajalein -> Pacific/Kwajalein |
| 248 | { .aliasIdIndex: 2860, .ianaIdIndex: 2866 }, // Libya -> Africa/Tripoli |
| 249 | { .aliasIdIndex: 2881, .ianaIdIndex: 2167 }, // MET -> Europe/Brussels |
| 250 | { .aliasIdIndex: 2885, .ianaIdIndex: 313 }, // Mexico/BajaNorte -> America/Tijuana |
| 251 | { .aliasIdIndex: 2902, .ianaIdIndex: 2917 }, // Mexico/BajaSur -> America/Mazatlan |
| 252 | { .aliasIdIndex: 2934, .ianaIdIndex: 2949 }, // Mexico/General -> America/Mexico_City |
| 253 | { .aliasIdIndex: 2969, .ianaIdIndex: 2973 }, // MST -> America/Phoenix |
| 254 | { .aliasIdIndex: 2989, .ianaIdIndex: 805 }, // MST7MDT -> America/Denver |
| 255 | { .aliasIdIndex: 2997, .ianaIdIndex: 805 }, // Navajo -> America/Denver |
| 256 | { .aliasIdIndex: 3004, .ianaIdIndex: 932 }, // NZ -> Pacific/Auckland |
| 257 | { .aliasIdIndex: 3007, .ianaIdIndex: 3015 }, // NZ-CHAT -> Pacific/Chatham |
| 258 | { .aliasIdIndex: 3031, .ianaIdIndex: 3049 }, // Pacific/Enderbury -> Pacific/Kanton |
| 259 | { .aliasIdIndex: 3064, .ianaIdIndex: 2723 }, // Pacific/Johnston -> Pacific/Honolulu |
| 260 | { .aliasIdIndex: 3081, .ianaIdIndex: 3096 }, // Pacific/Ponape -> Pacific/Pohnpei |
| 261 | { .aliasIdIndex: 3112, .ianaIdIndex: 3126 }, // Pacific/Samoa -> Pacific/Pago_Pago |
| 262 | { .aliasIdIndex: 3144, .ianaIdIndex: 3157 }, // Pacific/Truk -> Pacific/Chuuk |
| 263 | { .aliasIdIndex: 3171, .ianaIdIndex: 3157 }, // Pacific/Yap -> Pacific/Chuuk |
| 264 | { .aliasIdIndex: 3183, .ianaIdIndex: 3190 }, // Poland -> Europe/Warsaw |
| 265 | { .aliasIdIndex: 3204, .ianaIdIndex: 3213 }, // Portugal -> Europe/Lisbon |
| 266 | { .aliasIdIndex: 3227, .ianaIdIndex: 1053 }, // PRC -> Asia/Shanghai |
| 267 | { .aliasIdIndex: 3231, .ianaIdIndex: 3239 }, // PST8PDT -> America/Los_Angeles |
| 268 | { .aliasIdIndex: 3259, .ianaIdIndex: 3263 }, // ROC -> Asia/Taipei |
| 269 | { .aliasIdIndex: 3275, .ianaIdIndex: 3279 }, // ROK -> Asia/Seoul |
| 270 | { .aliasIdIndex: 3290, .ianaIdIndex: 3300 }, // Singapore -> Asia/Singapore |
| 271 | { .aliasIdIndex: 3315, .ianaIdIndex: 1130 }, // Turkey -> Europe/Istanbul |
| 272 | { .aliasIdIndex: 3322, .ianaIdIndex: 2455 }, // UCT -> Etc/UTC |
| 273 | { .aliasIdIndex: 3326, .ianaIdIndex: 2455 }, // Universal -> Etc/UTC |
| 274 | { .aliasIdIndex: 3336, .ianaIdIndex: 3346 }, // US/Alaska -> America/Anchorage |
| 275 | { .aliasIdIndex: 3364, .ianaIdIndex: 132 }, // US/Aleutian -> America/Adak |
| 276 | { .aliasIdIndex: 3376, .ianaIdIndex: 2973 }, // US/Arizona -> America/Phoenix |
| 277 | { .aliasIdIndex: 3387, .ianaIdIndex: 2260 }, // US/Central -> America/Chicago |
| 278 | { .aliasIdIndex: 3398, .ianaIdIndex: 348 }, // US/East-Indiana -> America/Indiana/Indianapolis |
| 279 | { .aliasIdIndex: 3414, .ianaIdIndex: 2379 }, // US/Eastern -> America/New_York |
| 280 | { .aliasIdIndex: 3425, .ianaIdIndex: 2723 }, // US/Hawaii -> Pacific/Honolulu |
| 281 | { .aliasIdIndex: 3435, .ianaIdIndex: 481 }, // US/Indiana-Starke -> America/Indiana/Knox |
| 282 | { .aliasIdIndex: 3453, .ianaIdIndex: 3465 }, // US/Michigan -> America/Detroit |
| 283 | { .aliasIdIndex: 3481, .ianaIdIndex: 805 }, // US/Mountain -> America/Denver |
| 284 | { .aliasIdIndex: 3493, .ianaIdIndex: 3239 }, // US/Pacific -> America/Los_Angeles |
| 285 | { .aliasIdIndex: 3504, .ianaIdIndex: 3239 }, // US/Pacific-New -> America/Los_Angeles |
| 286 | { .aliasIdIndex: 3519, .ianaIdIndex: 3126 }, // US/Samoa -> Pacific/Pago_Pago |
| 287 | { .aliasIdIndex: 3528, .ianaIdIndex: 2455 }, // UTC -> Etc/UTC |
| 288 | { .aliasIdIndex: 3532, .ianaIdIndex: 3537 }, // W-SU -> Europe/Moscow |
| 289 | { .aliasIdIndex: 3551, .ianaIdIndex: 3213 }, // WET -> Europe/Lisbon |
| 290 | { .aliasIdIndex: 3555, .ianaIdIndex: 2455 }, // Zulu -> Etc/UTC |
| 291 | }; |
| 292 | |
| 293 | // Windows ID Key, Territory Enum, IANA List Index |
| 294 | static inline constexpr ZoneData zoneDataTable[] = { |
| 295 | { .windowsIdKey: 1, .territory: 1, .ianaIdIndex: 0 }, // Afghanistan Standard Time / Afghanistan |
| 296 | { .windowsIdKey: 2, .territory: 248, .ianaIdIndex: 11 }, // Alaskan Standard Time / United States |
| 297 | { .windowsIdKey: 3, .territory: 248, .ianaIdIndex: 106 }, // Aleutian Standard Time / United States |
| 298 | { .windowsIdKey: 4, .territory: 193, .ianaIdIndex: 119 }, // Altai Standard Time / Russia |
| 299 | { .windowsIdKey: 5, .territory: 19, .ianaIdIndex: 132 }, // Arab Standard Time / Bahrain |
| 300 | { .windowsIdKey: 5, .territory: 127, .ianaIdIndex: 145 }, // Arab Standard Time / Kuwait |
| 301 | { .windowsIdKey: 5, .territory: 190, .ianaIdIndex: 157 }, // Arab Standard Time / Qatar |
| 302 | { .windowsIdKey: 5, .territory: 205, .ianaIdIndex: 168 }, // Arab Standard Time / Saudi Arabia |
| 303 | { .windowsIdKey: 5, .territory: 259, .ianaIdIndex: 180 }, // Arab Standard Time / Yemen |
| 304 | { .windowsIdKey: 6, .territory: 0, .ianaIdIndex: 190 }, // Arabian Standard Time / AnyTerritory |
| 305 | { .windowsIdKey: 6, .territory: 176, .ianaIdIndex: 200 }, // Arabian Standard Time / Oman |
| 306 | { .windowsIdKey: 6, .territory: 245, .ianaIdIndex: 212 }, // Arabian Standard Time / United Arab Emirates |
| 307 | { .windowsIdKey: 7, .territory: 113, .ianaIdIndex: 223 }, // Arabic Standard Time / Iraq |
| 308 | { .windowsIdKey: 8, .territory: 11, .ianaIdIndex: 236 }, // Argentina Standard Time / Argentina |
| 309 | { .windowsIdKey: 9, .territory: 193, .ianaIdIndex: 559 }, // Astrakhan Standard Time / Russia |
| 310 | { .windowsIdKey: 10, .territory: 26, .ianaIdIndex: 593 }, // Atlantic Standard Time / Bermuda |
| 311 | { .windowsIdKey: 10, .territory: 41, .ianaIdIndex: 610 }, // Atlantic Standard Time / Canada |
| 312 | { .windowsIdKey: 10, .territory: 95, .ianaIdIndex: 678 }, // Atlantic Standard Time / Greenland |
| 313 | { .windowsIdKey: 11, .territory: 15, .ianaIdIndex: 692 }, // AUS Central Standard Time / Australia |
| 314 | { .windowsIdKey: 12, .territory: 15, .ianaIdIndex: 709 }, // Aus Central W. Standard Time / Australia |
| 315 | { .windowsIdKey: 13, .territory: 15, .ianaIdIndex: 725 }, // AUS Eastern Standard Time / Australia |
| 316 | { .windowsIdKey: 14, .territory: 17, .ianaIdIndex: 762 }, // Azerbaijan Standard Time / Azerbaijan |
| 317 | { .windowsIdKey: 15, .territory: 95, .ianaIdIndex: 772 }, // Azores Standard Time / Greenland |
| 318 | { .windowsIdKey: 15, .territory: 188, .ianaIdIndex: 793 }, // Azores Standard Time / Portugal |
| 319 | { .windowsIdKey: 16, .territory: 32, .ianaIdIndex: 809 }, // Bahia Standard Time / Brazil |
| 320 | { .windowsIdKey: 17, .territory: 20, .ianaIdIndex: 823 }, // Bangladesh Standard Time / Bangladesh |
| 321 | { .windowsIdKey: 17, .territory: 27, .ianaIdIndex: 834 }, // Bangladesh Standard Time / Bhutan |
| 322 | { .windowsIdKey: 18, .territory: 22, .ianaIdIndex: 847 }, // Belarus Standard Time / Belarus |
| 323 | { .windowsIdKey: 19, .territory: 182, .ianaIdIndex: 860 }, // Bougainville Standard Time / Papua New Guinea |
| 324 | { .windowsIdKey: 20, .territory: 41, .ianaIdIndex: 881 }, // Canada Central Standard Time / Canada |
| 325 | { .windowsIdKey: 21, .territory: 0, .ianaIdIndex: 918 }, // Cape Verde Standard Time / AnyTerritory |
| 326 | { .windowsIdKey: 21, .territory: 43, .ianaIdIndex: 928 }, // Cape Verde Standard Time / Cape Verde |
| 327 | { .windowsIdKey: 22, .territory: 12, .ianaIdIndex: 948 }, // Caucasus Standard Time / Armenia |
| 328 | { .windowsIdKey: 23, .territory: 15, .ianaIdIndex: 961 }, // Cen. Australia Standard Time / Australia |
| 329 | { .windowsIdKey: 24, .territory: 0, .ianaIdIndex: 1002 }, // Central America Standard Time / AnyTerritory |
| 330 | { .windowsIdKey: 24, .territory: 24, .ianaIdIndex: 1012 }, // Central America Standard Time / Belize |
| 331 | { .windowsIdKey: 24, .territory: 59, .ianaIdIndex: 1027 }, // Central America Standard Time / Costa Rica |
| 332 | { .windowsIdKey: 24, .territory: 70, .ianaIdIndex: 1046 }, // Central America Standard Time / Ecuador |
| 333 | { .windowsIdKey: 24, .territory: 72, .ianaIdIndex: 1064 }, // Central America Standard Time / El Salvador |
| 334 | { .windowsIdKey: 24, .territory: 99, .ianaIdIndex: 1084 }, // Central America Standard Time / Guatemala |
| 335 | { .windowsIdKey: 24, .territory: 106, .ianaIdIndex: 1102 }, // Central America Standard Time / Honduras |
| 336 | { .windowsIdKey: 24, .territory: 168, .ianaIdIndex: 1122 }, // Central America Standard Time / Nicaragua |
| 337 | { .windowsIdKey: 25, .territory: 0, .ianaIdIndex: 1138 }, // Central Asia Standard Time / AnyTerritory |
| 338 | { .windowsIdKey: 25, .territory: 9, .ianaIdIndex: 1148 }, // Central Asia Standard Time / Antarctica |
| 339 | { .windowsIdKey: 25, .territory: 33, .ianaIdIndex: 1166 }, // Central Asia Standard Time / British Indian Ocean Territory |
| 340 | { .windowsIdKey: 25, .territory: 50, .ianaIdIndex: 1180 }, // Central Asia Standard Time / China |
| 341 | { .windowsIdKey: 25, .territory: 128, .ianaIdIndex: 1192 }, // Central Asia Standard Time / Kyrgyzstan |
| 342 | { .windowsIdKey: 26, .territory: 32, .ianaIdIndex: 1205 }, // Central Brazilian Standard Time / Brazil |
| 343 | { .windowsIdKey: 27, .territory: 3, .ianaIdIndex: 1241 }, // Central Europe Standard Time / Albania |
| 344 | { .windowsIdKey: 27, .territory: 64, .ianaIdIndex: 1255 }, // Central Europe Standard Time / Czechia |
| 345 | { .windowsIdKey: 27, .territory: 108, .ianaIdIndex: 1269 }, // Central Europe Standard Time / Hungary |
| 346 | { .windowsIdKey: 27, .territory: 157, .ianaIdIndex: 1285 }, // Central Europe Standard Time / Montenegro |
| 347 | { .windowsIdKey: 27, .territory: 207, .ianaIdIndex: 1302 }, // Central Europe Standard Time / Serbia |
| 348 | { .windowsIdKey: 27, .territory: 212, .ianaIdIndex: 1318 }, // Central Europe Standard Time / Slovakia |
| 349 | { .windowsIdKey: 27, .territory: 213, .ianaIdIndex: 1336 }, // Central Europe Standard Time / Slovenia |
| 350 | { .windowsIdKey: 28, .territory: 29, .ianaIdIndex: 1353 }, // Central European Standard Time / Bosnia and Herzegovina |
| 351 | { .windowsIdKey: 28, .territory: 60, .ianaIdIndex: 1369 }, // Central European Standard Time / Croatia |
| 352 | { .windowsIdKey: 28, .territory: 140, .ianaIdIndex: 1383 }, // Central European Standard Time / Macedonia |
| 353 | { .windowsIdKey: 28, .territory: 187, .ianaIdIndex: 1397 }, // Central European Standard Time / Poland |
| 354 | { .windowsIdKey: 29, .territory: 0, .ianaIdIndex: 1411 }, // Central Pacific Standard Time / AnyTerritory |
| 355 | { .windowsIdKey: 29, .territory: 9, .ianaIdIndex: 1422 }, // Central Pacific Standard Time / Antarctica |
| 356 | { .windowsIdKey: 29, .territory: 153, .ianaIdIndex: 1439 }, // Central Pacific Standard Time / Micronesia |
| 357 | { .windowsIdKey: 29, .territory: 166, .ianaIdIndex: 1470 }, // Central Pacific Standard Time / New Caledonia |
| 358 | { .windowsIdKey: 29, .territory: 214, .ianaIdIndex: 1485 }, // Central Pacific Standard Time / Solomon Islands |
| 359 | { .windowsIdKey: 29, .territory: 252, .ianaIdIndex: 1505 }, // Central Pacific Standard Time / Vanuatu |
| 360 | { .windowsIdKey: 30, .territory: 41, .ianaIdIndex: 1519 }, // Central Standard Time / Canada |
| 361 | { .windowsIdKey: 30, .territory: 152, .ianaIdIndex: 1574 }, // Central Standard Time / Mexico |
| 362 | { .windowsIdKey: 30, .territory: 248, .ianaIdIndex: 1608 }, // Central Standard Time / United States |
| 363 | { .windowsIdKey: 31, .territory: 152, .ianaIdIndex: 1776 }, // Central Standard Time (Mexico) / Mexico |
| 364 | { .windowsIdKey: 32, .territory: 167, .ianaIdIndex: 1870 }, // Chatham Islands Standard Time / New Zealand |
| 365 | { .windowsIdKey: 33, .territory: 50, .ianaIdIndex: 1886 }, // China Standard Time / China |
| 366 | { .windowsIdKey: 33, .territory: 107, .ianaIdIndex: 1900 }, // China Standard Time / Hong Kong |
| 367 | { .windowsIdKey: 33, .territory: 139, .ianaIdIndex: 1915 }, // China Standard Time / Macao |
| 368 | { .windowsIdKey: 34, .territory: 61, .ianaIdIndex: 1926 }, // Cuba Standard Time / Cuba |
| 369 | { .windowsIdKey: 35, .territory: 0, .ianaIdIndex: 1941 }, // Dateline Standard Time / AnyTerritory |
| 370 | { .windowsIdKey: 36, .territory: 0, .ianaIdIndex: 1952 }, // E. Africa Standard Time / AnyTerritory |
| 371 | { .windowsIdKey: 36, .territory: 9, .ianaIdIndex: 1962 }, // E. Africa Standard Time / Antarctica |
| 372 | { .windowsIdKey: 36, .territory: 55, .ianaIdIndex: 1979 }, // E. Africa Standard Time / Comoros |
| 373 | { .windowsIdKey: 36, .territory: 67, .ianaIdIndex: 1993 }, // E. Africa Standard Time / Djibouti |
| 374 | { .windowsIdKey: 36, .territory: 74, .ianaIdIndex: 2009 }, // E. Africa Standard Time / Eritrea |
| 375 | { .windowsIdKey: 36, .territory: 77, .ianaIdIndex: 2023 }, // E. Africa Standard Time / Ethiopia |
| 376 | { .windowsIdKey: 36, .territory: 124, .ianaIdIndex: 2042 }, // E. Africa Standard Time / Kenya |
| 377 | { .windowsIdKey: 36, .territory: 141, .ianaIdIndex: 2057 }, // E. Africa Standard Time / Madagascar |
| 378 | { .windowsIdKey: 36, .territory: 151, .ianaIdIndex: 2077 }, // E. Africa Standard Time / Mayotte |
| 379 | { .windowsIdKey: 36, .territory: 215, .ianaIdIndex: 2092 }, // E. Africa Standard Time / Somalia |
| 380 | { .windowsIdKey: 36, .territory: 230, .ianaIdIndex: 2109 }, // E. Africa Standard Time / Tanzania |
| 381 | { .windowsIdKey: 36, .territory: 243, .ianaIdIndex: 2130 }, // E. Africa Standard Time / Uganda |
| 382 | { .windowsIdKey: 37, .territory: 15, .ianaIdIndex: 2145 }, // E. Australia Standard Time / Australia |
| 383 | { .windowsIdKey: 38, .territory: 154, .ianaIdIndex: 2183 }, // E. Europe Standard Time / Moldova |
| 384 | { .windowsIdKey: 39, .territory: 32, .ianaIdIndex: 2199 }, // E. South America Standard Time / Brazil |
| 385 | { .windowsIdKey: 40, .territory: 49, .ianaIdIndex: 2217 }, // Easter Island Standard Time / Chile |
| 386 | { .windowsIdKey: 41, .territory: 18, .ianaIdIndex: 2232 }, // Eastern Standard Time / Bahamas |
| 387 | { .windowsIdKey: 41, .territory: 41, .ianaIdIndex: 2247 }, // Eastern Standard Time / Canada |
| 388 | { .windowsIdKey: 41, .territory: 248, .ianaIdIndex: 2279 }, // Eastern Standard Time / United States |
| 389 | { .windowsIdKey: 42, .territory: 152, .ianaIdIndex: 2445 }, // Eastern Standard Time (Mexico) / Mexico |
| 390 | { .windowsIdKey: 43, .territory: 71, .ianaIdIndex: 2460 }, // Egypt Standard Time / Egypt |
| 391 | { .windowsIdKey: 44, .territory: 193, .ianaIdIndex: 2473 }, // Ekaterinburg Standard Time / Russia |
| 392 | { .windowsIdKey: 45, .territory: 82, .ianaIdIndex: 2492 }, // Fiji Standard Time / Fiji |
| 393 | { .windowsIdKey: 46, .territory: 2, .ianaIdIndex: 2505 }, // FLE Standard Time / Aland Islands |
| 394 | { .windowsIdKey: 46, .territory: 36, .ianaIdIndex: 2522 }, // FLE Standard Time / Bulgaria |
| 395 | { .windowsIdKey: 46, .territory: 75, .ianaIdIndex: 2535 }, // FLE Standard Time / Estonia |
| 396 | { .windowsIdKey: 46, .territory: 83, .ianaIdIndex: 2550 }, // FLE Standard Time / Finland |
| 397 | { .windowsIdKey: 46, .territory: 131, .ianaIdIndex: 2566 }, // FLE Standard Time / Latvia |
| 398 | { .windowsIdKey: 46, .territory: 137, .ianaIdIndex: 2578 }, // FLE Standard Time / Lithuania |
| 399 | { .windowsIdKey: 46, .territory: 244, .ianaIdIndex: 2593 }, // FLE Standard Time / Ukraine |
| 400 | { .windowsIdKey: 47, .territory: 90, .ianaIdIndex: 2605 }, // Georgian Standard Time / Georgia |
| 401 | { .windowsIdKey: 48, .territory: 81, .ianaIdIndex: 2618 }, // GMT Standard Time / Faroe Islands |
| 402 | { .windowsIdKey: 48, .territory: 100, .ianaIdIndex: 2633 }, // GMT Standard Time / Guernsey |
| 403 | { .windowsIdKey: 48, .territory: 114, .ianaIdIndex: 2649 }, // GMT Standard Time / Ireland |
| 404 | { .windowsIdKey: 48, .territory: 115, .ianaIdIndex: 2663 }, // GMT Standard Time / Isle of Man |
| 405 | { .windowsIdKey: 48, .territory: 121, .ianaIdIndex: 2682 }, // GMT Standard Time / Jersey |
| 406 | { .windowsIdKey: 48, .territory: 188, .ianaIdIndex: 2696 }, // GMT Standard Time / Portugal |
| 407 | { .windowsIdKey: 48, .territory: 220, .ianaIdIndex: 2727 }, // GMT Standard Time / Spain |
| 408 | { .windowsIdKey: 48, .territory: 246, .ianaIdIndex: 2743 }, // GMT Standard Time / United Kingdom |
| 409 | { .windowsIdKey: 49, .territory: 95, .ianaIdIndex: 2757 }, // Greenland Standard Time / Greenland |
| 410 | { .windowsIdKey: 50, .territory: 37, .ianaIdIndex: 2770 }, // Greenwich Standard Time / Burkina Faso |
| 411 | { .windowsIdKey: 50, .territory: 89, .ianaIdIndex: 2789 }, // Greenwich Standard Time / Gambia |
| 412 | { .windowsIdKey: 50, .territory: 92, .ianaIdIndex: 2803 }, // Greenwich Standard Time / Ghana |
| 413 | { .windowsIdKey: 50, .territory: 95, .ianaIdIndex: 2816 }, // Greenwich Standard Time / Greenland |
| 414 | { .windowsIdKey: 50, .territory: 101, .ianaIdIndex: 2837 }, // Greenwich Standard Time / Guinea-Bissau |
| 415 | { .windowsIdKey: 50, .territory: 102, .ianaIdIndex: 2851 }, // Greenwich Standard Time / Guinea |
| 416 | { .windowsIdKey: 50, .territory: 109, .ianaIdIndex: 2866 }, // Greenwich Standard Time / Iceland |
| 417 | { .windowsIdKey: 50, .territory: 118, .ianaIdIndex: 2885 }, // Greenwich Standard Time / Ivory Coast |
| 418 | { .windowsIdKey: 50, .territory: 134, .ianaIdIndex: 2900 }, // Greenwich Standard Time / Liberia |
| 419 | { .windowsIdKey: 50, .territory: 145, .ianaIdIndex: 2916 }, // Greenwich Standard Time / Mali |
| 420 | { .windowsIdKey: 50, .territory: 149, .ianaIdIndex: 2930 }, // Greenwich Standard Time / Mauritania |
| 421 | { .windowsIdKey: 50, .territory: 196, .ianaIdIndex: 2948 }, // Greenwich Standard Time / Saint Helena |
| 422 | { .windowsIdKey: 50, .territory: 206, .ianaIdIndex: 2967 }, // Greenwich Standard Time / Senegal |
| 423 | { .windowsIdKey: 50, .territory: 209, .ianaIdIndex: 2980 }, // Greenwich Standard Time / Sierra Leone |
| 424 | { .windowsIdKey: 50, .territory: 233, .ianaIdIndex: 2996 }, // Greenwich Standard Time / Togo |
| 425 | { .windowsIdKey: 51, .territory: 63, .ianaIdIndex: 3008 }, // GTB Standard Time / Cyprus |
| 426 | { .windowsIdKey: 51, .territory: 94, .ianaIdIndex: 3036 }, // GTB Standard Time / Greece |
| 427 | { .windowsIdKey: 51, .territory: 192, .ianaIdIndex: 3050 }, // GTB Standard Time / Romania |
| 428 | { .windowsIdKey: 52, .territory: 104, .ianaIdIndex: 3067 }, // Haiti Standard Time / Haiti |
| 429 | { .windowsIdKey: 53, .territory: 0, .ianaIdIndex: 3090 }, // Hawaiian Standard Time / AnyTerritory |
| 430 | { .windowsIdKey: 53, .territory: 58, .ianaIdIndex: 3101 }, // Hawaiian Standard Time / Cook Islands |
| 431 | { .windowsIdKey: 53, .territory: 86, .ianaIdIndex: 3119 }, // Hawaiian Standard Time / French Polynesia |
| 432 | { .windowsIdKey: 53, .territory: 248, .ianaIdIndex: 3134 }, // Hawaiian Standard Time / United States |
| 433 | { .windowsIdKey: 54, .territory: 110, .ianaIdIndex: 3151 }, // India Standard Time / India |
| 434 | { .windowsIdKey: 55, .territory: 112, .ianaIdIndex: 3164 }, // Iran Standard Time / Iran |
| 435 | { .windowsIdKey: 56, .territory: 116, .ianaIdIndex: 3176 }, // Israel Standard Time / Israel |
| 436 | { .windowsIdKey: 57, .territory: 122, .ianaIdIndex: 3191 }, // Jordan Standard Time / Jordan |
| 437 | { .windowsIdKey: 58, .territory: 193, .ianaIdIndex: 3202 }, // Kaliningrad Standard Time / Russia |
| 438 | { .windowsIdKey: 59, .territory: 218, .ianaIdIndex: 3221 }, // Korea Standard Time / South Korea |
| 439 | { .windowsIdKey: 60, .territory: 135, .ianaIdIndex: 3232 }, // Libya Standard Time / Libya |
| 440 | { .windowsIdKey: 61, .territory: 0, .ianaIdIndex: 3247 }, // Line Islands Standard Time / AnyTerritory |
| 441 | { .windowsIdKey: 61, .territory: 125, .ianaIdIndex: 3258 }, // Line Islands Standard Time / Kiribati |
| 442 | { .windowsIdKey: 62, .territory: 15, .ianaIdIndex: 3277 }, // Lord Howe Standard Time / Australia |
| 443 | { .windowsIdKey: 63, .territory: 193, .ianaIdIndex: 3297 }, // Magadan Standard Time / Russia |
| 444 | { .windowsIdKey: 64, .territory: 49, .ianaIdIndex: 3310 }, // Magallanes Standard Time / Chile |
| 445 | { .windowsIdKey: 65, .territory: 86, .ianaIdIndex: 3331 }, // Marquesas Standard Time / French Polynesia |
| 446 | { .windowsIdKey: 66, .territory: 150, .ianaIdIndex: 3349 }, // Mauritius Standard Time / Mauritius |
| 447 | { .windowsIdKey: 66, .territory: 191, .ianaIdIndex: 3366 }, // Mauritius Standard Time / Reunion |
| 448 | { .windowsIdKey: 66, .territory: 208, .ianaIdIndex: 3381 }, // Mauritius Standard Time / Seychelles |
| 449 | { .windowsIdKey: 67, .territory: 132, .ianaIdIndex: 3393 }, // Middle East Standard Time / Lebanon |
| 450 | { .windowsIdKey: 68, .territory: 250, .ianaIdIndex: 3405 }, // Montevideo Standard Time / Uruguay |
| 451 | { .windowsIdKey: 69, .territory: 159, .ianaIdIndex: 3424 }, // Morocco Standard Time / Morocco |
| 452 | { .windowsIdKey: 69, .territory: 257, .ianaIdIndex: 3442 }, // Morocco Standard Time / Western Sahara |
| 453 | { .windowsIdKey: 70, .territory: 41, .ianaIdIndex: 3458 }, // Mountain Standard Time / Canada |
| 454 | { .windowsIdKey: 70, .territory: 152, .ianaIdIndex: 3512 }, // Mountain Standard Time / Mexico |
| 455 | { .windowsIdKey: 70, .territory: 248, .ianaIdIndex: 3534 }, // Mountain Standard Time / United States |
| 456 | { .windowsIdKey: 71, .territory: 152, .ianaIdIndex: 3563 }, // Mountain Standard Time (Mexico) / Mexico |
| 457 | { .windowsIdKey: 72, .territory: 53, .ianaIdIndex: 3580 }, // Myanmar Standard Time / Cocos Islands |
| 458 | { .windowsIdKey: 72, .territory: 161, .ianaIdIndex: 3593 }, // Myanmar Standard Time / Myanmar |
| 459 | { .windowsIdKey: 73, .territory: 193, .ianaIdIndex: 3605 }, // N. Central Asia Standard Time / Russia |
| 460 | { .windowsIdKey: 74, .territory: 162, .ianaIdIndex: 3622 }, // Namibia Standard Time / Namibia |
| 461 | { .windowsIdKey: 75, .territory: 164, .ianaIdIndex: 3638 }, // Nepal Standard Time / Nepal |
| 462 | { .windowsIdKey: 76, .territory: 9, .ianaIdIndex: 3653 }, // New Zealand Standard Time / Antarctica |
| 463 | { .windowsIdKey: 76, .territory: 167, .ianaIdIndex: 3672 }, // New Zealand Standard Time / New Zealand |
| 464 | { .windowsIdKey: 77, .territory: 41, .ianaIdIndex: 3689 }, // Newfoundland Standard Time / Canada |
| 465 | { .windowsIdKey: 78, .territory: 172, .ianaIdIndex: 3706 }, // Norfolk Standard Time / Norfolk Island |
| 466 | { .windowsIdKey: 79, .territory: 193, .ianaIdIndex: 3722 }, // North Asia East Standard Time / Russia |
| 467 | { .windowsIdKey: 80, .territory: 193, .ianaIdIndex: 3735 }, // North Asia Standard Time / Russia |
| 468 | { .windowsIdKey: 81, .territory: 174, .ianaIdIndex: 3770 }, // North Korea Standard Time / North Korea |
| 469 | { .windowsIdKey: 82, .territory: 193, .ianaIdIndex: 3785 }, // Omsk Standard Time / Russia |
| 470 | { .windowsIdKey: 83, .territory: 49, .ianaIdIndex: 3795 }, // Pacific SA Standard Time / Chile |
| 471 | { .windowsIdKey: 84, .territory: 41, .ianaIdIndex: 3812 }, // Pacific Standard Time / Canada |
| 472 | { .windowsIdKey: 84, .territory: 248, .ianaIdIndex: 3830 }, // Pacific Standard Time / United States |
| 473 | { .windowsIdKey: 85, .territory: 152, .ianaIdIndex: 3850 }, // Pacific Standard Time (Mexico) / Mexico |
| 474 | { .windowsIdKey: 86, .territory: 178, .ianaIdIndex: 3866 }, // Pakistan Standard Time / Pakistan |
| 475 | { .windowsIdKey: 87, .territory: 183, .ianaIdIndex: 3879 }, // Paraguay Standard Time / Paraguay |
| 476 | { .windowsIdKey: 88, .territory: 123, .ianaIdIndex: 3896 }, // Qyzylorda Standard Time / Kazakhstan |
| 477 | { .windowsIdKey: 89, .territory: 23, .ianaIdIndex: 3911 }, // Romance Standard Time / Belgium |
| 478 | { .windowsIdKey: 89, .territory: 65, .ianaIdIndex: 3927 }, // Romance Standard Time / Denmark |
| 479 | { .windowsIdKey: 89, .territory: 84, .ianaIdIndex: 3945 }, // Romance Standard Time / France |
| 480 | { .windowsIdKey: 89, .territory: 220, .ianaIdIndex: 3958 }, // Romance Standard Time / Spain |
| 481 | { .windowsIdKey: 90, .territory: 193, .ianaIdIndex: 3985 }, // Russia Time Zone 10 / Russia |
| 482 | { .windowsIdKey: 91, .territory: 193, .ianaIdIndex: 4004 }, // Russia Time Zone 11 / Russia |
| 483 | { .windowsIdKey: 92, .territory: 193, .ianaIdIndex: 4031 }, // Russia Time Zone 3 / Russia |
| 484 | { .windowsIdKey: 93, .territory: 193, .ianaIdIndex: 4045 }, // Russian Standard Time / Russia |
| 485 | { .windowsIdKey: 93, .territory: 244, .ianaIdIndex: 4072 }, // Russian Standard Time / Ukraine |
| 486 | { .windowsIdKey: 94, .territory: 0, .ianaIdIndex: 4090 }, // SA Eastern Standard Time / AnyTerritory |
| 487 | { .windowsIdKey: 94, .territory: 9, .ianaIdIndex: 4100 }, // SA Eastern Standard Time / Antarctica |
| 488 | { .windowsIdKey: 94, .territory: 32, .ianaIdIndex: 4137 }, // SA Eastern Standard Time / Brazil |
| 489 | { .windowsIdKey: 94, .territory: 80, .ianaIdIndex: 4216 }, // SA Eastern Standard Time / Falkland Islands |
| 490 | { .windowsIdKey: 94, .territory: 85, .ianaIdIndex: 4233 }, // SA Eastern Standard Time / French Guiana |
| 491 | { .windowsIdKey: 94, .territory: 223, .ianaIdIndex: 4249 }, // SA Eastern Standard Time / Suriname |
| 492 | { .windowsIdKey: 95, .territory: 0, .ianaIdIndex: 4268 }, // SA Pacific Standard Time / AnyTerritory |
| 493 | { .windowsIdKey: 95, .territory: 32, .ianaIdIndex: 4278 }, // SA Pacific Standard Time / Brazil |
| 494 | { .windowsIdKey: 95, .territory: 41, .ianaIdIndex: 4314 }, // SA Pacific Standard Time / Canada |
| 495 | { .windowsIdKey: 95, .territory: 45, .ianaIdIndex: 4331 }, // SA Pacific Standard Time / Cayman Islands |
| 496 | { .windowsIdKey: 95, .territory: 54, .ianaIdIndex: 4346 }, // SA Pacific Standard Time / Colombia |
| 497 | { .windowsIdKey: 95, .territory: 70, .ianaIdIndex: 4361 }, // SA Pacific Standard Time / Ecuador |
| 498 | { .windowsIdKey: 95, .territory: 119, .ianaIdIndex: 4379 }, // SA Pacific Standard Time / Jamaica |
| 499 | { .windowsIdKey: 95, .territory: 181, .ianaIdIndex: 4395 }, // SA Pacific Standard Time / Panama |
| 500 | { .windowsIdKey: 95, .territory: 184, .ianaIdIndex: 4410 }, // SA Pacific Standard Time / Peru |
| 501 | { .windowsIdKey: 96, .territory: 0, .ianaIdIndex: 4423 }, // SA Western Standard Time / AnyTerritory |
| 502 | { .windowsIdKey: 96, .territory: 8, .ianaIdIndex: 4433 }, // SA Western Standard Time / Anguilla |
| 503 | { .windowsIdKey: 96, .territory: 10, .ianaIdIndex: 4450 }, // SA Western Standard Time / Antigua and Barbuda |
| 504 | { .windowsIdKey: 96, .territory: 13, .ianaIdIndex: 4466 }, // SA Western Standard Time / Aruba |
| 505 | { .windowsIdKey: 96, .territory: 21, .ianaIdIndex: 4480 }, // SA Western Standard Time / Barbados |
| 506 | { .windowsIdKey: 96, .territory: 28, .ianaIdIndex: 4497 }, // SA Western Standard Time / Bolivia |
| 507 | { .windowsIdKey: 96, .territory: 32, .ianaIdIndex: 4512 }, // SA Western Standard Time / Brazil |
| 508 | { .windowsIdKey: 96, .territory: 34, .ianaIdIndex: 4565 }, // SA Western Standard Time / British Virgin Islands |
| 509 | { .windowsIdKey: 96, .territory: 41, .ianaIdIndex: 4581 }, // SA Western Standard Time / Canada |
| 510 | { .windowsIdKey: 96, .territory: 44, .ianaIdIndex: 4602 }, // SA Western Standard Time / Caribbean Netherlands |
| 511 | { .windowsIdKey: 96, .territory: 62, .ianaIdIndex: 4621 }, // SA Western Standard Time / Curacao |
| 512 | { .windowsIdKey: 96, .territory: 68, .ianaIdIndex: 4637 }, // SA Western Standard Time / Dominica |
| 513 | { .windowsIdKey: 96, .territory: 69, .ianaIdIndex: 4654 }, // SA Western Standard Time / Dominican Republic |
| 514 | { .windowsIdKey: 96, .territory: 96, .ianaIdIndex: 4676 }, // SA Western Standard Time / Grenada |
| 515 | { .windowsIdKey: 96, .territory: 97, .ianaIdIndex: 4692 }, // SA Western Standard Time / Guadeloupe |
| 516 | { .windowsIdKey: 96, .territory: 103, .ianaIdIndex: 4711 }, // SA Western Standard Time / Guyana |
| 517 | { .windowsIdKey: 96, .territory: 148, .ianaIdIndex: 4726 }, // SA Western Standard Time / Martinique |
| 518 | { .windowsIdKey: 96, .territory: 158, .ianaIdIndex: 4745 }, // SA Western Standard Time / Montserrat |
| 519 | { .windowsIdKey: 96, .territory: 189, .ianaIdIndex: 4764 }, // SA Western Standard Time / Puerto Rico |
| 520 | { .windowsIdKey: 96, .territory: 195, .ianaIdIndex: 4784 }, // SA Western Standard Time / Saint Barthelemy |
| 521 | { .windowsIdKey: 96, .territory: 197, .ianaIdIndex: 4806 }, // SA Western Standard Time / Saint Kitts and Nevis |
| 522 | { .windowsIdKey: 96, .territory: 198, .ianaIdIndex: 4823 }, // SA Western Standard Time / Saint Lucia |
| 523 | { .windowsIdKey: 96, .territory: 199, .ianaIdIndex: 4840 }, // SA Western Standard Time / Saint Martin |
| 524 | { .windowsIdKey: 96, .territory: 201, .ianaIdIndex: 4856 }, // SA Western Standard Time / Saint Vincent and Grenadines |
| 525 | { .windowsIdKey: 96, .territory: 211, .ianaIdIndex: 4875 }, // SA Western Standard Time / Sint Maarten |
| 526 | { .windowsIdKey: 96, .territory: 236, .ianaIdIndex: 4897 }, // SA Western Standard Time / Trinidad and Tobago |
| 527 | { .windowsIdKey: 96, .territory: 249, .ianaIdIndex: 4919 }, // SA Western Standard Time / United States Virgin Islands |
| 528 | { .windowsIdKey: 97, .territory: 200, .ianaIdIndex: 4937 }, // Saint Pierre Standard Time / Saint Pierre and Miquelon |
| 529 | { .windowsIdKey: 98, .territory: 193, .ianaIdIndex: 4954 }, // Sakhalin Standard Time / Russia |
| 530 | { .windowsIdKey: 99, .territory: 202, .ianaIdIndex: 4968 }, // Samoa Standard Time / Samoa |
| 531 | { .windowsIdKey: 100, .territory: 204, .ianaIdIndex: 4981 }, // Sao Tome Standard Time / Sao Tome and Principe |
| 532 | { .windowsIdKey: 101, .territory: 193, .ianaIdIndex: 4997 }, // Saratov Standard Time / Russia |
| 533 | { .windowsIdKey: 102, .territory: 0, .ianaIdIndex: 5012 }, // SE Asia Standard Time / AnyTerritory |
| 534 | { .windowsIdKey: 102, .territory: 9, .ianaIdIndex: 5022 }, // SE Asia Standard Time / Antarctica |
| 535 | { .windowsIdKey: 102, .territory: 39, .ianaIdIndex: 5039 }, // SE Asia Standard Time / Cambodia |
| 536 | { .windowsIdKey: 102, .territory: 51, .ianaIdIndex: 5055 }, // SE Asia Standard Time / Christmas Island |
| 537 | { .windowsIdKey: 102, .territory: 111, .ianaIdIndex: 5072 }, // SE Asia Standard Time / Indonesia |
| 538 | { .windowsIdKey: 102, .territory: 129, .ianaIdIndex: 5100 }, // SE Asia Standard Time / Laos |
| 539 | { .windowsIdKey: 102, .territory: 231, .ianaIdIndex: 5115 }, // SE Asia Standard Time / Thailand |
| 540 | { .windowsIdKey: 102, .territory: 255, .ianaIdIndex: 5128 }, // SE Asia Standard Time / Vietnam |
| 541 | { .windowsIdKey: 103, .territory: 0, .ianaIdIndex: 5145 }, // Singapore Standard Time / AnyTerritory |
| 542 | { .windowsIdKey: 103, .territory: 35, .ianaIdIndex: 5155 }, // Singapore Standard Time / Brunei |
| 543 | { .windowsIdKey: 103, .territory: 111, .ianaIdIndex: 5167 }, // Singapore Standard Time / Indonesia |
| 544 | { .windowsIdKey: 103, .territory: 143, .ianaIdIndex: 5181 }, // Singapore Standard Time / Malaysia |
| 545 | { .windowsIdKey: 103, .territory: 185, .ianaIdIndex: 5212 }, // Singapore Standard Time / Philippines |
| 546 | { .windowsIdKey: 103, .territory: 210, .ianaIdIndex: 5224 }, // Singapore Standard Time / Singapore |
| 547 | { .windowsIdKey: 104, .territory: 0, .ianaIdIndex: 5239 }, // South Africa Standard Time / AnyTerritory |
| 548 | { .windowsIdKey: 104, .territory: 30, .ianaIdIndex: 5249 }, // South Africa Standard Time / Botswana |
| 549 | { .windowsIdKey: 104, .territory: 38, .ianaIdIndex: 5265 }, // South Africa Standard Time / Burundi |
| 550 | { .windowsIdKey: 104, .territory: 57, .ianaIdIndex: 5282 }, // South Africa Standard Time / Congo - Kinshasa |
| 551 | { .windowsIdKey: 104, .territory: 76, .ianaIdIndex: 5300 }, // South Africa Standard Time / Eswatini |
| 552 | { .windowsIdKey: 104, .territory: 133, .ianaIdIndex: 5315 }, // South Africa Standard Time / Lesotho |
| 553 | { .windowsIdKey: 104, .territory: 142, .ianaIdIndex: 5329 }, // South Africa Standard Time / Malawi |
| 554 | { .windowsIdKey: 104, .territory: 160, .ianaIdIndex: 5345 }, // South Africa Standard Time / Mozambique |
| 555 | { .windowsIdKey: 104, .territory: 194, .ianaIdIndex: 5359 }, // South Africa Standard Time / Rwanda |
| 556 | { .windowsIdKey: 104, .territory: 216, .ianaIdIndex: 5373 }, // South Africa Standard Time / South Africa |
| 557 | { .windowsIdKey: 104, .territory: 260, .ianaIdIndex: 5393 }, // South Africa Standard Time / Zambia |
| 558 | { .windowsIdKey: 104, .territory: 261, .ianaIdIndex: 5407 }, // South Africa Standard Time / Zimbabwe |
| 559 | { .windowsIdKey: 105, .territory: 219, .ianaIdIndex: 5421 }, // South Sudan Standard Time / South Sudan |
| 560 | { .windowsIdKey: 106, .territory: 221, .ianaIdIndex: 5433 }, // Sri Lanka Standard Time / Sri Lanka |
| 561 | { .windowsIdKey: 107, .territory: 222, .ianaIdIndex: 5446 }, // Sudan Standard Time / Sudan |
| 562 | { .windowsIdKey: 108, .territory: 227, .ianaIdIndex: 5462 }, // Syria Standard Time / Syria |
| 563 | { .windowsIdKey: 109, .territory: 228, .ianaIdIndex: 5476 }, // Taipei Standard Time / Taiwan |
| 564 | { .windowsIdKey: 110, .territory: 15, .ianaIdIndex: 5488 }, // Tasmania Standard Time / Australia |
| 565 | { .windowsIdKey: 111, .territory: 32, .ianaIdIndex: 5526 }, // Tocantins Standard Time / Brazil |
| 566 | { .windowsIdKey: 112, .territory: 0, .ianaIdIndex: 5544 }, // Tokyo Standard Time / AnyTerritory |
| 567 | { .windowsIdKey: 112, .territory: 111, .ianaIdIndex: 5554 }, // Tokyo Standard Time / Indonesia |
| 568 | { .windowsIdKey: 112, .territory: 120, .ianaIdIndex: 5568 }, // Tokyo Standard Time / Japan |
| 569 | { .windowsIdKey: 112, .territory: 179, .ianaIdIndex: 5579 }, // Tokyo Standard Time / Palau |
| 570 | { .windowsIdKey: 112, .territory: 232, .ianaIdIndex: 5593 }, // Tokyo Standard Time / Timor-Leste |
| 571 | { .windowsIdKey: 113, .territory: 193, .ianaIdIndex: 5603 }, // Tomsk Standard Time / Russia |
| 572 | { .windowsIdKey: 114, .territory: 235, .ianaIdIndex: 5614 }, // Tonga Standard Time / Tonga |
| 573 | { .windowsIdKey: 115, .territory: 193, .ianaIdIndex: 5632 }, // Transbaikal Standard Time / Russia |
| 574 | { .windowsIdKey: 116, .territory: 239, .ianaIdIndex: 5643 }, // Turkey Standard Time / Turkey |
| 575 | { .windowsIdKey: 117, .territory: 241, .ianaIdIndex: 5659 }, // Turks And Caicos Standard Time / Turks and Caicos Islands |
| 576 | { .windowsIdKey: 118, .territory: 156, .ianaIdIndex: 5678 }, // Ulaanbaatar Standard Time / Mongolia |
| 577 | { .windowsIdKey: 119, .territory: 248, .ianaIdIndex: 5695 }, // US Eastern Standard Time / United States |
| 578 | { .windowsIdKey: 120, .territory: 0, .ianaIdIndex: 5770 }, // US Mountain Standard Time / AnyTerritory |
| 579 | { .windowsIdKey: 120, .territory: 41, .ianaIdIndex: 5780 }, // US Mountain Standard Time / Canada |
| 580 | { .windowsIdKey: 120, .territory: 152, .ianaIdIndex: 5837 }, // US Mountain Standard Time / Mexico |
| 581 | { .windowsIdKey: 120, .territory: 248, .ianaIdIndex: 5856 }, // US Mountain Standard Time / United States |
| 582 | { .windowsIdKey: 121, .territory: 0, .ianaIdIndex: 5872 }, // UTC / AnyTerritory |
| 583 | { .windowsIdKey: 122, .territory: 0, .ianaIdIndex: 5888 }, // UTC+12 / AnyTerritory |
| 584 | { .windowsIdKey: 122, .territory: 125, .ianaIdIndex: 5899 }, // UTC+12 / Kiribati |
| 585 | { .windowsIdKey: 122, .territory: 147, .ianaIdIndex: 5914 }, // UTC+12 / Marshall Islands |
| 586 | { .windowsIdKey: 122, .territory: 163, .ianaIdIndex: 5947 }, // UTC+12 / Nauru |
| 587 | { .windowsIdKey: 122, .territory: 242, .ianaIdIndex: 5961 }, // UTC+12 / Tuvalu |
| 588 | { .windowsIdKey: 122, .territory: 247, .ianaIdIndex: 5978 }, // UTC+12 / United States Outlying Islands |
| 589 | { .windowsIdKey: 122, .territory: 256, .ianaIdIndex: 5991 }, // UTC+12 / Wallis and Futuna |
| 590 | { .windowsIdKey: 123, .territory: 0, .ianaIdIndex: 6006 }, // UTC+13 / AnyTerritory |
| 591 | { .windowsIdKey: 123, .territory: 125, .ianaIdIndex: 6017 }, // UTC+13 / Kiribati |
| 592 | { .windowsIdKey: 123, .territory: 234, .ianaIdIndex: 6032 }, // UTC+13 / Tokelau |
| 593 | { .windowsIdKey: 124, .territory: 0, .ianaIdIndex: 6048 }, // UTC-02 / AnyTerritory |
| 594 | { .windowsIdKey: 124, .territory: 32, .ianaIdIndex: 6058 }, // UTC-02 / Brazil |
| 595 | { .windowsIdKey: 124, .territory: 217, .ianaIdIndex: 6074 }, // UTC-02 / South Georgia and South Sandwich Islands |
| 596 | { .windowsIdKey: 125, .territory: 0, .ianaIdIndex: 6097 }, // UTC-08 / AnyTerritory |
| 597 | { .windowsIdKey: 125, .territory: 186, .ianaIdIndex: 6107 }, // UTC-08 / Pitcairn |
| 598 | { .windowsIdKey: 126, .territory: 0, .ianaIdIndex: 6124 }, // UTC-09 / AnyTerritory |
| 599 | { .windowsIdKey: 126, .territory: 86, .ianaIdIndex: 6134 }, // UTC-09 / French Polynesia |
| 600 | { .windowsIdKey: 127, .territory: 0, .ianaIdIndex: 6150 }, // UTC-11 / AnyTerritory |
| 601 | { .windowsIdKey: 127, .territory: 5, .ianaIdIndex: 6161 }, // UTC-11 / American Samoa |
| 602 | { .windowsIdKey: 127, .territory: 171, .ianaIdIndex: 6179 }, // UTC-11 / Niue |
| 603 | { .windowsIdKey: 127, .territory: 247, .ianaIdIndex: 6192 }, // UTC-11 / United States Outlying Islands |
| 604 | { .windowsIdKey: 128, .territory: 254, .ianaIdIndex: 6207 }, // Venezuela Standard Time / Venezuela |
| 605 | { .windowsIdKey: 129, .territory: 193, .ianaIdIndex: 6223 }, // Vladivostok Standard Time / Russia |
| 606 | { .windowsIdKey: 130, .territory: 193, .ianaIdIndex: 6254 }, // Volgograd Standard Time / Russia |
| 607 | { .windowsIdKey: 131, .territory: 15, .ianaIdIndex: 6271 }, // W. Australia Standard Time / Australia |
| 608 | { .windowsIdKey: 132, .territory: 0, .ianaIdIndex: 6287 }, // W. Central Africa Standard Time / AnyTerritory |
| 609 | { .windowsIdKey: 132, .territory: 4, .ianaIdIndex: 6297 }, // W. Central Africa Standard Time / Algeria |
| 610 | { .windowsIdKey: 132, .territory: 7, .ianaIdIndex: 6312 }, // W. Central Africa Standard Time / Angola |
| 611 | { .windowsIdKey: 132, .territory: 25, .ianaIdIndex: 6326 }, // W. Central Africa Standard Time / Benin |
| 612 | { .windowsIdKey: 132, .territory: 40, .ianaIdIndex: 6344 }, // W. Central Africa Standard Time / Cameroon |
| 613 | { .windowsIdKey: 132, .territory: 46, .ianaIdIndex: 6358 }, // W. Central Africa Standard Time / Central African Republic |
| 614 | { .windowsIdKey: 132, .territory: 48, .ianaIdIndex: 6372 }, // W. Central Africa Standard Time / Chad |
| 615 | { .windowsIdKey: 132, .territory: 56, .ianaIdIndex: 6388 }, // W. Central Africa Standard Time / Congo - Brazzaville |
| 616 | { .windowsIdKey: 132, .territory: 57, .ianaIdIndex: 6407 }, // W. Central Africa Standard Time / Congo - Kinshasa |
| 617 | { .windowsIdKey: 132, .territory: 73, .ianaIdIndex: 6423 }, // W. Central Africa Standard Time / Equatorial Guinea |
| 618 | { .windowsIdKey: 132, .territory: 88, .ianaIdIndex: 6437 }, // W. Central Africa Standard Time / Gabon |
| 619 | { .windowsIdKey: 132, .territory: 169, .ianaIdIndex: 6455 }, // W. Central Africa Standard Time / Nigeria |
| 620 | { .windowsIdKey: 132, .territory: 170, .ianaIdIndex: 6468 }, // W. Central Africa Standard Time / Niger |
| 621 | { .windowsIdKey: 132, .territory: 238, .ianaIdIndex: 6482 }, // W. Central Africa Standard Time / Tunisia |
| 622 | { .windowsIdKey: 133, .territory: 6, .ianaIdIndex: 6495 }, // W. Europe Standard Time / Andorra |
| 623 | { .windowsIdKey: 133, .territory: 16, .ianaIdIndex: 6510 }, // W. Europe Standard Time / Austria |
| 624 | { .windowsIdKey: 133, .territory: 91, .ianaIdIndex: 6524 }, // W. Europe Standard Time / Germany |
| 625 | { .windowsIdKey: 133, .territory: 93, .ianaIdIndex: 6554 }, // W. Europe Standard Time / Gibraltar |
| 626 | { .windowsIdKey: 133, .territory: 117, .ianaIdIndex: 6571 }, // W. Europe Standard Time / Italy |
| 627 | { .windowsIdKey: 133, .territory: 136, .ianaIdIndex: 6583 }, // W. Europe Standard Time / Liechtenstein |
| 628 | { .windowsIdKey: 133, .territory: 138, .ianaIdIndex: 6596 }, // W. Europe Standard Time / Luxembourg |
| 629 | { .windowsIdKey: 133, .territory: 146, .ianaIdIndex: 6614 }, // W. Europe Standard Time / Malta |
| 630 | { .windowsIdKey: 133, .territory: 155, .ianaIdIndex: 6627 }, // W. Europe Standard Time / Monaco |
| 631 | { .windowsIdKey: 133, .territory: 165, .ianaIdIndex: 6641 }, // W. Europe Standard Time / Netherlands |
| 632 | { .windowsIdKey: 133, .territory: 175, .ianaIdIndex: 6658 }, // W. Europe Standard Time / Norway |
| 633 | { .windowsIdKey: 133, .territory: 203, .ianaIdIndex: 6670 }, // W. Europe Standard Time / San Marino |
| 634 | { .windowsIdKey: 133, .territory: 224, .ianaIdIndex: 6688 }, // W. Europe Standard Time / Svalbard and Jan Mayen |
| 635 | { .windowsIdKey: 133, .territory: 225, .ianaIdIndex: 6708 }, // W. Europe Standard Time / Sweden |
| 636 | { .windowsIdKey: 133, .territory: 226, .ianaIdIndex: 6725 }, // W. Europe Standard Time / Switzerland |
| 637 | { .windowsIdKey: 133, .territory: 253, .ianaIdIndex: 6739 }, // W. Europe Standard Time / Vatican City |
| 638 | { .windowsIdKey: 134, .territory: 156, .ianaIdIndex: 6754 }, // W. Mongolia Standard Time / Mongolia |
| 639 | { .windowsIdKey: 135, .territory: 0, .ianaIdIndex: 6764 }, // West Asia Standard Time / AnyTerritory |
| 640 | { .windowsIdKey: 135, .territory: 9, .ianaIdIndex: 6774 }, // West Asia Standard Time / Antarctica |
| 641 | { .windowsIdKey: 135, .territory: 87, .ianaIdIndex: 6792 }, // West Asia Standard Time / French Southern Territories |
| 642 | { .windowsIdKey: 135, .territory: 123, .ianaIdIndex: 6809 }, // West Asia Standard Time / Kazakhstan |
| 643 | { .windowsIdKey: 135, .territory: 144, .ianaIdIndex: 6880 }, // West Asia Standard Time / Maldives |
| 644 | { .windowsIdKey: 135, .territory: 229, .ianaIdIndex: 6896 }, // West Asia Standard Time / Tajikistan |
| 645 | { .windowsIdKey: 135, .territory: 240, .ianaIdIndex: 6910 }, // West Asia Standard Time / Turkmenistan |
| 646 | { .windowsIdKey: 135, .territory: 251, .ianaIdIndex: 6924 }, // West Asia Standard Time / Uzbekistan |
| 647 | { .windowsIdKey: 136, .territory: 180, .ianaIdIndex: 6953 }, // West Bank Standard Time / Palestinian Territories |
| 648 | { .windowsIdKey: 137, .territory: 0, .ianaIdIndex: 6975 }, // West Pacific Standard Time / AnyTerritory |
| 649 | { .windowsIdKey: 137, .territory: 9, .ianaIdIndex: 6986 }, // West Pacific Standard Time / Antarctica |
| 650 | { .windowsIdKey: 137, .territory: 98, .ianaIdIndex: 7012 }, // West Pacific Standard Time / Guam |
| 651 | { .windowsIdKey: 137, .territory: 153, .ianaIdIndex: 7025 }, // West Pacific Standard Time / Micronesia |
| 652 | { .windowsIdKey: 137, .territory: 173, .ianaIdIndex: 7039 }, // West Pacific Standard Time / Northern Mariana Islands |
| 653 | { .windowsIdKey: 137, .territory: 182, .ianaIdIndex: 7054 }, // West Pacific Standard Time / Papua New Guinea |
| 654 | { .windowsIdKey: 138, .territory: 193, .ianaIdIndex: 7075 }, // Yakutsk Standard Time / Russia |
| 655 | { .windowsIdKey: 139, .territory: 41, .ianaIdIndex: 7102 }, // Yukon Standard Time / Canada |
| 656 | }; |
| 657 | |
| 658 | // Windows ID Key, Windows ID Index, IANA ID Index, UTC Offset |
| 659 | static inline constexpr WindowsData windowsDataTable[] = { |
| 660 | { .windowsIdKey: 1, .windowsIdIndex: 0, .ianaIdIndex: 3560, .offsetFromUtc: 16200 }, // Afghanistan Standard Time |
| 661 | { .windowsIdKey: 2, .windowsIdIndex: 26, .ianaIdIndex: 3346,.offsetFromUtc: -32400 }, // Alaskan Standard Time |
| 662 | { .windowsIdKey: 3, .windowsIdIndex: 48, .ianaIdIndex: 132,.offsetFromUtc: -36000 }, // Aleutian Standard Time |
| 663 | { .windowsIdKey: 4, .windowsIdIndex: 71, .ianaIdIndex: 3571, .offsetFromUtc: 25200 }, // Altai Standard Time |
| 664 | { .windowsIdKey: 5, .windowsIdIndex: 91, .ianaIdIndex: 3584, .offsetFromUtc: 10800 }, // Arab Standard Time |
| 665 | { .windowsIdKey: 6, .windowsIdIndex: 110, .ianaIdIndex: 3596, .offsetFromUtc: 14400 }, // Arabian Standard Time |
| 666 | { .windowsIdKey: 7, .windowsIdIndex: 132, .ianaIdIndex: 3607, .offsetFromUtc: 10800 }, // Arabic Standard Time |
| 667 | { .windowsIdKey: 8, .windowsIdIndex: 153, .ianaIdIndex: 166,.offsetFromUtc: -10800 }, // Argentina Standard Time |
| 668 | { .windowsIdKey: 9, .windowsIdIndex: 177, .ianaIdIndex: 3620, .offsetFromUtc: 14400 }, // Astrakhan Standard Time |
| 669 | { .windowsIdKey: 10, .windowsIdIndex: 201, .ianaIdIndex: 1939,.offsetFromUtc: -14400 }, // Atlantic Standard Time |
| 670 | { .windowsIdKey: 11, .windowsIdIndex: 224, .ianaIdIndex: 1583, .offsetFromUtc: 34200 }, // AUS Central Standard Time |
| 671 | { .windowsIdKey: 12, .windowsIdIndex: 250, .ianaIdIndex: 3637, .offsetFromUtc: 31500 }, // Aus Central W. Standard Time |
| 672 | { .windowsIdKey: 13, .windowsIdIndex: 279, .ianaIdIndex: 1463, .offsetFromUtc: 36000 }, // AUS Eastern Standard Time |
| 673 | { .windowsIdKey: 14, .windowsIdIndex: 305, .ianaIdIndex: 3653, .offsetFromUtc: 14400 }, // Azerbaijan Standard Time |
| 674 | { .windowsIdKey: 15, .windowsIdIndex: 330, .ianaIdIndex: 3663, .offsetFromUtc: -3600 }, // Azores Standard Time |
| 675 | { .windowsIdKey: 16, .windowsIdIndex: 351, .ianaIdIndex: 3679,.offsetFromUtc: -10800 }, // Bahia Standard Time |
| 676 | { .windowsIdKey: 17, .windowsIdIndex: 371, .ianaIdIndex: 1093, .offsetFromUtc: 21600 }, // Bangladesh Standard Time |
| 677 | { .windowsIdKey: 18, .windowsIdIndex: 396, .ianaIdIndex: 3693, .offsetFromUtc: 10800 }, // Belarus Standard Time |
| 678 | { .windowsIdKey: 19, .windowsIdIndex: 418, .ianaIdIndex: 3706, .offsetFromUtc: 39600 }, // Bougainville Standard Time |
| 679 | { .windowsIdKey: 20, .windowsIdIndex: 445, .ianaIdIndex: 1995,.offsetFromUtc: -21600 }, // Canada Central Standard Time |
| 680 | { .windowsIdKey: 21, .windowsIdIndex: 474, .ianaIdIndex: 3727, .offsetFromUtc: -3600 }, // Cape Verde Standard Time |
| 681 | { .windowsIdKey: 22, .windowsIdIndex: 499, .ianaIdIndex: 3747, .offsetFromUtc: 14400 }, // Caucasus Standard Time |
| 682 | { .windowsIdKey: 23, .windowsIdIndex: 522, .ianaIdIndex: 1670, .offsetFromUtc: 34200 }, // Cen. Australia Standard Time |
| 683 | { .windowsIdKey: 24, .windowsIdIndex: 551, .ianaIdIndex: 3760,.offsetFromUtc: -21600 }, // Central America Standard Time |
| 684 | { .windowsIdKey: 25, .windowsIdIndex: 581, .ianaIdIndex: 3778, .offsetFromUtc: 21600 }, // Central Asia Standard Time |
| 685 | { .windowsIdKey: 26, .windowsIdIndex: 608, .ianaIdIndex: 3791,.offsetFromUtc: -14400 }, // Central Brazilian Standard Time |
| 686 | { .windowsIdKey: 27, .windowsIdIndex: 640, .ianaIdIndex: 3806, .offsetFromUtc: 3600 }, // Central Europe Standard Time |
| 687 | { .windowsIdKey: 28, .windowsIdIndex: 669, .ianaIdIndex: 3190, .offsetFromUtc: 3600 }, // Central European Standard Time |
| 688 | { .windowsIdKey: 29, .windowsIdIndex: 700, .ianaIdIndex: 3822, .offsetFromUtc: 39600 }, // Central Pacific Standard Time |
| 689 | { .windowsIdKey: 30, .windowsIdIndex: 730, .ianaIdIndex: 2260,.offsetFromUtc: -21600 }, // Central Standard Time |
| 690 | { .windowsIdKey: 31, .windowsIdIndex: 752, .ianaIdIndex: 2949,.offsetFromUtc: -21600 }, // Central Standard Time (Mexico) |
| 691 | { .windowsIdKey: 32, .windowsIdIndex: 783, .ianaIdIndex: 3015, .offsetFromUtc: 45900 }, // Chatham Islands Standard Time |
| 692 | { .windowsIdKey: 33, .windowsIdIndex: 813, .ianaIdIndex: 1053, .offsetFromUtc: 28800 }, // China Standard Time |
| 693 | { .windowsIdKey: 34, .windowsIdIndex: 833, .ianaIdIndex: 2281,.offsetFromUtc: -18000 }, // Cuba Standard Time |
| 694 | { .windowsIdKey: 35, .windowsIdIndex: 852, .ianaIdIndex: 3842,.offsetFromUtc: -43200 }, // Dateline Standard Time |
| 695 | { .windowsIdKey: 36, .windowsIdIndex: 875, .ianaIdIndex: 3853, .offsetFromUtc: 10800 }, // E. Africa Standard Time |
| 696 | { .windowsIdKey: 37, .windowsIdIndex: 899, .ianaIdIndex: 1635, .offsetFromUtc: 36000 }, // E. Australia Standard Time |
| 697 | { .windowsIdKey: 38, .windowsIdIndex: 926, .ianaIdIndex: 2583, .offsetFromUtc: 7200 }, // E. Europe Standard Time |
| 698 | { .windowsIdKey: 39, .windowsIdIndex: 950, .ianaIdIndex: 1878,.offsetFromUtc: -10800 }, // E. South America Standard Time |
| 699 | { .windowsIdKey: 40, .windowsIdIndex: 981, .ianaIdIndex: 2237,.offsetFromUtc: -21600 }, // Easter Island Standard Time |
| 700 | { .windowsIdKey: 41, .windowsIdIndex: 1009, .ianaIdIndex: 2379,.offsetFromUtc: -18000 }, // Eastern Standard Time |
| 701 | { .windowsIdKey: 42, .windowsIdIndex: 1031, .ianaIdIndex: 3868,.offsetFromUtc: -18000 }, // Eastern Standard Time (Mexico) |
| 702 | { .windowsIdKey: 43, .windowsIdIndex: 1062, .ianaIdIndex: 2320, .offsetFromUtc: 7200 }, // Egypt Standard Time |
| 703 | { .windowsIdKey: 44, .windowsIdIndex: 1082, .ianaIdIndex: 3883, .offsetFromUtc: 18000 }, // Ekaterinburg Standard Time |
| 704 | { .windowsIdKey: 45, .windowsIdIndex: 1109, .ianaIdIndex: 3902, .offsetFromUtc: 43200 }, // Fiji Standard Time |
| 705 | { .windowsIdKey: 46, .windowsIdIndex: 1128, .ianaIdIndex: 2527, .offsetFromUtc: 7200 }, // FLE Standard Time |
| 706 | { .windowsIdKey: 47, .windowsIdIndex: 1146, .ianaIdIndex: 3915, .offsetFromUtc: 14400 }, // Georgian Standard Time |
| 707 | { .windowsIdKey: 48, .windowsIdIndex: 1169, .ianaIdIndex: 2501, .offsetFromUtc: 0 }, // GMT Standard Time |
| 708 | { .windowsIdKey: 49, .windowsIdIndex: 1187, .ianaIdIndex: 393,.offsetFromUtc: -10800 }, // Greenland Standard Time |
| 709 | { .windowsIdKey: 50, .windowsIdIndex: 1211, .ianaIdIndex: 2748, .offsetFromUtc: 0 }, // Greenwich Standard Time |
| 710 | { .windowsIdKey: 51, .windowsIdIndex: 1235, .ianaIdIndex: 3928, .offsetFromUtc: 7200 }, // GTB Standard Time |
| 711 | { .windowsIdKey: 52, .windowsIdIndex: 1253, .ianaIdIndex: 3945,.offsetFromUtc: -18000 }, // Haiti Standard Time |
| 712 | { .windowsIdKey: 53, .windowsIdIndex: 1273, .ianaIdIndex: 2723,.offsetFromUtc: -36000 }, // Hawaiian Standard Time |
| 713 | { .windowsIdKey: 54, .windowsIdIndex: 1296, .ianaIdIndex: 992, .offsetFromUtc: 19800 }, // India Standard Time |
| 714 | { .windowsIdKey: 55, .windowsIdIndex: 1316, .ianaIdIndex: 2772, .offsetFromUtc: 12600 }, // Iran Standard Time |
| 715 | { .windowsIdKey: 56, .windowsIdIndex: 1335, .ianaIdIndex: 1290, .offsetFromUtc: 7200 }, // Israel Standard Time |
| 716 | { .windowsIdKey: 57, .windowsIdIndex: 1356, .ianaIdIndex: 3968, .offsetFromUtc: 7200 }, // Jordan Standard Time |
| 717 | { .windowsIdKey: 58, .windowsIdIndex: 1377, .ianaIdIndex: 3979, .offsetFromUtc: 7200 }, // Kaliningrad Standard Time |
| 718 | { .windowsIdKey: 59, .windowsIdIndex: 1403, .ianaIdIndex: 3279, .offsetFromUtc: 32400 }, // Korea Standard Time |
| 719 | { .windowsIdKey: 60, .windowsIdIndex: 1423, .ianaIdIndex: 2866, .offsetFromUtc: 7200 }, // Libya Standard Time |
| 720 | { .windowsIdKey: 61, .windowsIdIndex: 1443, .ianaIdIndex: 3998, .offsetFromUtc: 50400 }, // Line Islands Standard Time |
| 721 | { .windowsIdKey: 62, .windowsIdIndex: 1470, .ianaIdIndex: 1547, .offsetFromUtc: 37800 }, // Lord Howe Standard Time |
| 722 | { .windowsIdKey: 63, .windowsIdIndex: 1494, .ianaIdIndex: 4017, .offsetFromUtc: 36000 }, // Magadan Standard Time |
| 723 | { .windowsIdKey: 64, .windowsIdIndex: 1516, .ianaIdIndex: 4030,.offsetFromUtc: -10800 }, // Magallanes Standard Time |
| 724 | { .windowsIdKey: 65, .windowsIdIndex: 1541, .ianaIdIndex: 4051,.offsetFromUtc: -34200 }, // Marquesas Standard Time |
| 725 | { .windowsIdKey: 66, .windowsIdIndex: 1565, .ianaIdIndex: 4069, .offsetFromUtc: 14400 }, // Mauritius Standard Time |
| 726 | { .windowsIdKey: 67, .windowsIdIndex: 1589, .ianaIdIndex: 4086, .offsetFromUtc: 7200 }, // Middle East Standard Time |
| 727 | { .windowsIdKey: 68, .windowsIdIndex: 1615, .ianaIdIndex: 4098,.offsetFromUtc: -10800 }, // Montevideo Standard Time |
| 728 | { .windowsIdKey: 69, .windowsIdIndex: 1640, .ianaIdIndex: 4117, .offsetFromUtc: 0 }, // Morocco Standard Time |
| 729 | { .windowsIdKey: 70, .windowsIdIndex: 1662, .ianaIdIndex: 805,.offsetFromUtc: -25200 }, // Mountain Standard Time |
| 730 | { .windowsIdKey: 71, .windowsIdIndex: 1685, .ianaIdIndex: 2917,.offsetFromUtc: -25200 }, // Mountain Standard Time (Mexico) |
| 731 | { .windowsIdKey: 72, .windowsIdIndex: 1717, .ianaIdIndex: 1235, .offsetFromUtc: 23400 }, // Myanmar Standard Time |
| 732 | { .windowsIdKey: 73, .windowsIdIndex: 1739, .ianaIdIndex: 4135, .offsetFromUtc: 21600 }, // N. Central Asia Standard Time |
| 733 | { .windowsIdKey: 74, .windowsIdIndex: 1769, .ianaIdIndex: 4152, .offsetFromUtc: 3600 }, // Namibia Standard Time |
| 734 | { .windowsIdKey: 75, .windowsIdIndex: 1791, .ianaIdIndex: 1185, .offsetFromUtc: 20700 }, // Nepal Standard Time |
| 735 | { .windowsIdKey: 76, .windowsIdIndex: 1811, .ianaIdIndex: 932, .offsetFromUtc: 43200 }, // New Zealand Standard Time |
| 736 | { .windowsIdKey: 77, .windowsIdIndex: 1837, .ianaIdIndex: 2061,.offsetFromUtc: -12600 }, // Newfoundland Standard Time |
| 737 | { .windowsIdKey: 78, .windowsIdIndex: 1864, .ianaIdIndex: 4168, .offsetFromUtc: 39600 }, // Norfolk Standard Time |
| 738 | { .windowsIdKey: 79, .windowsIdIndex: 1886, .ianaIdIndex: 4184, .offsetFromUtc: 28800 }, // North Asia East Standard Time |
| 739 | { .windowsIdKey: 80, .windowsIdIndex: 1916, .ianaIdIndex: 4197, .offsetFromUtc: 25200 }, // North Asia Standard Time |
| 740 | { .windowsIdKey: 81, .windowsIdIndex: 1941, .ianaIdIndex: 4214, .offsetFromUtc: 30600 }, // North Korea Standard Time |
| 741 | { .windowsIdKey: 82, .windowsIdIndex: 1967, .ianaIdIndex: 4229, .offsetFromUtc: 21600 }, // Omsk Standard Time |
| 742 | { .windowsIdKey: 83, .windowsIdIndex: 1986, .ianaIdIndex: 2201,.offsetFromUtc: -10800 }, // Pacific SA Standard Time |
| 743 | { .windowsIdKey: 84, .windowsIdIndex: 2011, .ianaIdIndex: 3239,.offsetFromUtc: -28800 }, // Pacific Standard Time |
| 744 | { .windowsIdKey: 85, .windowsIdIndex: 2033, .ianaIdIndex: 313,.offsetFromUtc: -28800 }, // Pacific Standard Time (Mexico) |
| 745 | { .windowsIdKey: 86, .windowsIdIndex: 2064, .ianaIdIndex: 4239, .offsetFromUtc: 18000 }, // Pakistan Standard Time |
| 746 | { .windowsIdKey: 87, .windowsIdIndex: 2087, .ianaIdIndex: 4252,.offsetFromUtc: -14400 }, // Paraguay Standard Time |
| 747 | { .windowsIdKey: 88, .windowsIdIndex: 2110, .ianaIdIndex: 4269, .offsetFromUtc: 18000 }, // Qyzylorda Standard Time |
| 748 | { .windowsIdKey: 89, .windowsIdIndex: 2134, .ianaIdIndex: 4284, .offsetFromUtc: 3600 }, // Romance Standard Time |
| 749 | { .windowsIdKey: 90, .windowsIdIndex: 2156, .ianaIdIndex: 4297, .offsetFromUtc: 39600 }, // Russia Time Zone 10 |
| 750 | { .windowsIdKey: 91, .windowsIdIndex: 2176, .ianaIdIndex: 4316, .offsetFromUtc: 43200 }, // Russia Time Zone 11 |
| 751 | { .windowsIdKey: 92, .windowsIdIndex: 2196, .ianaIdIndex: 4331, .offsetFromUtc: 14400 }, // Russia Time Zone 3 |
| 752 | { .windowsIdKey: 93, .windowsIdIndex: 2215, .ianaIdIndex: 3537, .offsetFromUtc: 10800 }, // Russian Standard Time |
| 753 | { .windowsIdKey: 94, .windowsIdIndex: 2237, .ianaIdIndex: 4345,.offsetFromUtc: -10800 }, // SA Eastern Standard Time |
| 754 | { .windowsIdKey: 95, .windowsIdIndex: 2262, .ianaIdIndex: 4361,.offsetFromUtc: -18000 }, // SA Pacific Standard Time |
| 755 | { .windowsIdKey: 96, .windowsIdIndex: 2287, .ianaIdIndex: 4376,.offsetFromUtc: -14400 }, // SA Western Standard Time |
| 756 | { .windowsIdKey: 97, .windowsIdIndex: 2312, .ianaIdIndex: 4391,.offsetFromUtc: -10800 }, // Saint Pierre Standard Time |
| 757 | { .windowsIdKey: 98, .windowsIdIndex: 2339, .ianaIdIndex: 4408, .offsetFromUtc: 39600 }, // Sakhalin Standard Time |
| 758 | { .windowsIdKey: 99, .windowsIdIndex: 2362, .ianaIdIndex: 4422, .offsetFromUtc: 46800 }, // Samoa Standard Time |
| 759 | { .windowsIdKey: 100, .windowsIdIndex: 2382, .ianaIdIndex: 4435, .offsetFromUtc: 0 }, // Sao Tome Standard Time |
| 760 | { .windowsIdKey: 101, .windowsIdIndex: 2405, .ianaIdIndex: 4451, .offsetFromUtc: 14400 }, // Saratov Standard Time |
| 761 | { .windowsIdKey: 102, .windowsIdIndex: 2427, .ianaIdIndex: 4466, .offsetFromUtc: 25200 }, // SE Asia Standard Time |
| 762 | { .windowsIdKey: 103, .windowsIdIndex: 2449, .ianaIdIndex: 3300, .offsetFromUtc: 28800 }, // Singapore Standard Time |
| 763 | { .windowsIdKey: 104, .windowsIdIndex: 2473, .ianaIdIndex: 4479, .offsetFromUtc: 7200 }, // South Africa Standard Time |
| 764 | { .windowsIdKey: 105, .windowsIdIndex: 2500, .ianaIdIndex: 4499, .offsetFromUtc: 7200 }, // South Sudan Standard Time |
| 765 | { .windowsIdKey: 106, .windowsIdIndex: 2526, .ianaIdIndex: 4511, .offsetFromUtc: 19800 }, // Sri Lanka Standard Time |
| 766 | { .windowsIdKey: 107, .windowsIdIndex: 2550, .ianaIdIndex: 4524, .offsetFromUtc: 7200 }, // Sudan Standard Time |
| 767 | { .windowsIdKey: 108, .windowsIdIndex: 2570, .ianaIdIndex: 4540, .offsetFromUtc: 7200 }, // Syria Standard Time |
| 768 | { .windowsIdKey: 109, .windowsIdIndex: 2590, .ianaIdIndex: 3263, .offsetFromUtc: 28800 }, // Taipei Standard Time |
| 769 | { .windowsIdKey: 110, .windowsIdIndex: 2611, .ianaIdIndex: 1516, .offsetFromUtc: 36000 }, // Tasmania Standard Time |
| 770 | { .windowsIdKey: 111, .windowsIdIndex: 2634, .ianaIdIndex: 4554,.offsetFromUtc: -10800 }, // Tocantins Standard Time |
| 771 | { .windowsIdKey: 112, .windowsIdIndex: 2658, .ianaIdIndex: 2821, .offsetFromUtc: 32400 }, // Tokyo Standard Time |
| 772 | { .windowsIdKey: 113, .windowsIdIndex: 2678, .ianaIdIndex: 4572, .offsetFromUtc: 25200 }, // Tomsk Standard Time |
| 773 | { .windowsIdKey: 114, .windowsIdIndex: 2698, .ianaIdIndex: 4583, .offsetFromUtc: 46800 }, // Tonga Standard Time |
| 774 | { .windowsIdKey: 115, .windowsIdIndex: 2718, .ianaIdIndex: 4601, .offsetFromUtc: 32400 }, // Transbaikal Standard Time |
| 775 | { .windowsIdKey: 116, .windowsIdIndex: 2744, .ianaIdIndex: 1130, .offsetFromUtc: 7200 }, // Turkey Standard Time |
| 776 | { .windowsIdKey: 117, .windowsIdIndex: 2765, .ianaIdIndex: 4612,.offsetFromUtc: -14400 }, // Turks And Caicos Standard Time |
| 777 | { .windowsIdKey: 118, .windowsIdIndex: 2796, .ianaIdIndex: 1021, .offsetFromUtc: 28800 }, // Ulaanbaatar Standard Time |
| 778 | { .windowsIdKey: 119, .windowsIdIndex: 2822, .ianaIdIndex: 348,.offsetFromUtc: -18000 }, // US Eastern Standard Time |
| 779 | { .windowsIdKey: 120, .windowsIdIndex: 2847, .ianaIdIndex: 2973,.offsetFromUtc: -25200 }, // US Mountain Standard Time |
| 780 | { .windowsIdKey: 121, .windowsIdIndex: 2873, .ianaIdIndex: 2455, .offsetFromUtc: 0 }, // UTC |
| 781 | { .windowsIdKey: 122, .windowsIdIndex: 2877, .ianaIdIndex: 4631, .offsetFromUtc: 43200 }, // UTC+12 |
| 782 | { .windowsIdKey: 123, .windowsIdIndex: 2884, .ianaIdIndex: 4642, .offsetFromUtc: 46800 }, // UTC+13 |
| 783 | { .windowsIdKey: 124, .windowsIdIndex: 2891, .ianaIdIndex: 4653, .offsetFromUtc: -7200 }, // UTC-02 |
| 784 | { .windowsIdKey: 125, .windowsIdIndex: 2898, .ianaIdIndex: 4663,.offsetFromUtc: -28800 }, // UTC-08 |
| 785 | { .windowsIdKey: 126, .windowsIdIndex: 2905, .ianaIdIndex: 4673,.offsetFromUtc: -32400 }, // UTC-09 |
| 786 | { .windowsIdKey: 127, .windowsIdIndex: 2912, .ianaIdIndex: 4683,.offsetFromUtc: -39600 }, // UTC-11 |
| 787 | { .windowsIdKey: 128, .windowsIdIndex: 2919, .ianaIdIndex: 4694,.offsetFromUtc: -16200 }, // Venezuela Standard Time |
| 788 | { .windowsIdKey: 129, .windowsIdIndex: 2943, .ianaIdIndex: 4710, .offsetFromUtc: 36000 }, // Vladivostok Standard Time |
| 789 | { .windowsIdKey: 130, .windowsIdIndex: 2969, .ianaIdIndex: 4727, .offsetFromUtc: 14400 }, // Volgograd Standard Time |
| 790 | { .windowsIdKey: 131, .windowsIdIndex: 2993, .ianaIdIndex: 1762, .offsetFromUtc: 28800 }, // W. Australia Standard Time |
| 791 | { .windowsIdKey: 132, .windowsIdIndex: 3020, .ianaIdIndex: 4744, .offsetFromUtc: 3600 }, // W. Central Africa Standard Time |
| 792 | { .windowsIdKey: 133, .windowsIdIndex: 3052, .ianaIdIndex: 4757, .offsetFromUtc: 3600 }, // W. Europe Standard Time |
| 793 | { .windowsIdKey: 134, .windowsIdIndex: 3076, .ianaIdIndex: 4771, .offsetFromUtc: 25200 }, // W. Mongolia Standard Time |
| 794 | { .windowsIdKey: 135, .windowsIdIndex: 3102, .ianaIdIndex: 4781, .offsetFromUtc: 18000 }, // West Asia Standard Time |
| 795 | { .windowsIdKey: 136, .windowsIdIndex: 3126, .ianaIdIndex: 4795, .offsetFromUtc: 7200 }, // West Bank Standard Time |
| 796 | { .windowsIdKey: 137, .windowsIdIndex: 3150, .ianaIdIndex: 4807, .offsetFromUtc: 36000 }, // West Pacific Standard Time |
| 797 | { .windowsIdKey: 138, .windowsIdIndex: 3177, .ianaIdIndex: 4828, .offsetFromUtc: 32400 }, // Yakutsk Standard Time |
| 798 | { .windowsIdKey: 139, .windowsIdIndex: 3199, .ianaIdIndex: 2144,.offsetFromUtc: -25200 }, // Yukon Standard Time |
| 799 | }; |
| 800 | |
| 801 | // IANA List Index, UTC Offset |
| 802 | static inline constexpr UtcData utcDataTable[] = { |
| 803 | { .ianaIdIndex: 7136,.offsetFromUtc: -50400 }, // UTC-14:00 |
| 804 | { .ianaIdIndex: 7146,.offsetFromUtc: -46800 }, // UTC-13:00 |
| 805 | { .ianaIdIndex: 7156,.offsetFromUtc: -43200 }, // UTC-12:00 |
| 806 | { .ianaIdIndex: 7166,.offsetFromUtc: -39600 }, // UTC-11:00 |
| 807 | { .ianaIdIndex: 7176,.offsetFromUtc: -36000 }, // UTC-10:00 |
| 808 | { .ianaIdIndex: 7186,.offsetFromUtc: -34200 }, // UTC-09:30 |
| 809 | { .ianaIdIndex: 7196,.offsetFromUtc: -32400 }, // UTC-09:00 |
| 810 | { .ianaIdIndex: 7206,.offsetFromUtc: -28800 }, // UTC-08:00 |
| 811 | { .ianaIdIndex: 7216,.offsetFromUtc: -25200 }, // UTC-07:00 |
| 812 | { .ianaIdIndex: 7226,.offsetFromUtc: -21600 }, // UTC-06:00 |
| 813 | { .ianaIdIndex: 7236,.offsetFromUtc: -18000 }, // UTC-05:00 |
| 814 | { .ianaIdIndex: 7246,.offsetFromUtc: -16200 }, // UTC-04:30 |
| 815 | { .ianaIdIndex: 7256,.offsetFromUtc: -14400 }, // UTC-04:00 |
| 816 | { .ianaIdIndex: 7266,.offsetFromUtc: -12600 }, // UTC-03:30 |
| 817 | { .ianaIdIndex: 7276,.offsetFromUtc: -10800 }, // UTC-03:00 |
| 818 | { .ianaIdIndex: 7286, .offsetFromUtc: -7200 }, // UTC-02:00 |
| 819 | { .ianaIdIndex: 7296, .offsetFromUtc: -3600 }, // UTC-01:00 |
| 820 | { .ianaIdIndex: 7306, .offsetFromUtc: 0 }, // UTC |
| 821 | { .ianaIdIndex: 7330, .offsetFromUtc: 3600 }, // UTC+01:00 |
| 822 | { .ianaIdIndex: 7340, .offsetFromUtc: 7200 }, // UTC+02:00 |
| 823 | { .ianaIdIndex: 7350, .offsetFromUtc: 10800 }, // UTC+03:00 |
| 824 | { .ianaIdIndex: 7360, .offsetFromUtc: 12600 }, // UTC+03:30 |
| 825 | { .ianaIdIndex: 7370, .offsetFromUtc: 14400 }, // UTC+04:00 |
| 826 | { .ianaIdIndex: 7380, .offsetFromUtc: 16200 }, // UTC+04:30 |
| 827 | { .ianaIdIndex: 7390, .offsetFromUtc: 18000 }, // UTC+05:00 |
| 828 | { .ianaIdIndex: 7400, .offsetFromUtc: 19800 }, // UTC+05:30 |
| 829 | { .ianaIdIndex: 7410, .offsetFromUtc: 20700 }, // UTC+05:45 |
| 830 | { .ianaIdIndex: 7420, .offsetFromUtc: 21600 }, // UTC+06:00 |
| 831 | { .ianaIdIndex: 7430, .offsetFromUtc: 23400 }, // UTC+06:30 |
| 832 | { .ianaIdIndex: 7440, .offsetFromUtc: 25200 }, // UTC+07:00 |
| 833 | { .ianaIdIndex: 7450, .offsetFromUtc: 28800 }, // UTC+08:00 |
| 834 | { .ianaIdIndex: 7460, .offsetFromUtc: 30600 }, // UTC+08:30 |
| 835 | { .ianaIdIndex: 7470, .offsetFromUtc: 31500 }, // UTC+08:45 |
| 836 | { .ianaIdIndex: 7480, .offsetFromUtc: 32400 }, // UTC+09:00 |
| 837 | { .ianaIdIndex: 7490, .offsetFromUtc: 34200 }, // UTC+09:30 |
| 838 | { .ianaIdIndex: 7500, .offsetFromUtc: 36000 }, // UTC+10:00 |
| 839 | { .ianaIdIndex: 7510, .offsetFromUtc: 37800 }, // UTC+10:30 |
| 840 | { .ianaIdIndex: 7520, .offsetFromUtc: 39600 }, // UTC+11:00 |
| 841 | { .ianaIdIndex: 7530, .offsetFromUtc: 43200 }, // UTC+12:00 |
| 842 | { .ianaIdIndex: 7540, .offsetFromUtc: 45900 }, // UTC+12:45 |
| 843 | { .ianaIdIndex: 7550, .offsetFromUtc: 46800 }, // UTC+13:00 |
| 844 | { .ianaIdIndex: 7560, .offsetFromUtc: 50400 }, // UTC+14:00 |
| 845 | }; |
| 846 | |
| 847 | #if QT_CONFIG(timezone_locale) && !QT_CONFIG(icu) |
| 848 | |
| 849 | // QLocale::Territory value, IANA ID Index |
| 850 | static inline constexpr TerritoryZone territoryZoneMap[] = { |
| 851 | { 49, 2201 }, // Chile -> America/Santiago |
| 852 | { 50, 1053 }, // China -> Asia/Shanghai |
| 853 | { 70, 4841 }, // Ecuador -> America/Guayaquil |
| 854 | { 91, 4757 }, // Germany -> Europe/Berlin |
| 855 | { 143, 4859 }, // Malaysia -> Asia/Kuala_Lumpur |
| 856 | { 147, 4877 }, // Marshall Islands -> Pacific/Majuro |
| 857 | { 167, 932 }, // New Zealand -> Pacific/Auckland |
| 858 | { 188, 3213 }, // Portugal -> Europe/Lisbon |
| 859 | { 220, 4892 }, // Spain -> Europe/Madrid |
| 860 | { 244, 2527 }, // Ukraine -> Europe/Kyiv |
| 861 | { 251, 4781 }, // Uzbekistan -> Asia/Tashkent |
| 862 | }; |
| 863 | |
| 864 | // MetaZone Key, MetaZone Name Index, QLocale::Territory value, IANA ID Index |
| 865 | static inline constexpr MetaZoneData metaZoneTable[] = { |
| 866 | { 1, 0, 258, 695 }, // Acre/world -> America/Rio_Branco |
| 867 | { 2, 5, 258, 3560 }, // Afghanistan/world -> Asia/Kabul |
| 868 | { 3, 17, 30, 4906 }, // Africa_Central/Botswana -> Africa/Gaborone |
| 869 | { 3, 17, 38, 4922 }, // Africa_Central/Burundi -> Africa/Bujumbura |
| 870 | { 3, 17, 57, 4939 }, // Africa_Central/Congo - Kinshasa -> Africa/Lubumbashi |
| 871 | { 3, 17, 142, 4957 }, // Africa_Central/Malawi -> Africa/Blantyre |
| 872 | { 3, 17, 194, 4973 }, // Africa_Central/Rwanda -> Africa/Kigali |
| 873 | { 3, 17, 258, 4987 }, // Africa_Central/world -> Africa/Maputo |
| 874 | { 3, 17, 260, 5001 }, // Africa_Central/Zambia -> Africa/Lusaka |
| 875 | { 3, 17, 261, 5015 }, // Africa_Central/Zimbabwe -> Africa/Harare |
| 876 | { 4, 32, 55, 5029 }, // Africa_Eastern/Comoros -> Indian/Comoro |
| 877 | { 4, 32, 67, 5043 }, // Africa_Eastern/Djibouti -> Africa/Djibouti |
| 878 | { 4, 32, 74, 14 }, // Africa_Eastern/Eritrea -> Africa/Asmara |
| 879 | { 4, 32, 77, 5059 }, // Africa_Eastern/Ethiopia -> Africa/Addis_Ababa |
| 880 | { 4, 32, 141, 5078 }, // Africa_Eastern/Madagascar -> Indian/Antananarivo |
| 881 | { 4, 32, 151, 5098 }, // Africa_Eastern/Mayotte -> Indian/Mayotte |
| 882 | { 4, 32, 215, 5113 }, // Africa_Eastern/Somalia -> Africa/Mogadishu |
| 883 | { 4, 32, 230, 5130 }, // Africa_Eastern/Tanzania -> Africa/Dar_es_Salaam |
| 884 | { 4, 32, 243, 5151 }, // Africa_Eastern/Uganda -> Africa/Kampala |
| 885 | { 4, 32, 258, 3853 }, // Africa_Eastern/world -> Africa/Nairobi |
| 886 | { 5, 47, 258, 5166 }, // Africa_FarWestern/world -> Africa/El_Aaiun |
| 887 | { 6, 65, 76, 5182 }, // Africa_Southern/Eswatini -> Africa/Mbabane |
| 888 | { 6, 65, 133, 5197 }, // Africa_Southern/Lesotho -> Africa/Maseru |
| 889 | { 6, 65, 258, 4479 }, // Africa_Southern/world -> Africa/Johannesburg |
| 890 | { 7, 81, 7, 5211 }, // Africa_Western/Angola -> Africa/Luanda |
| 891 | { 7, 81, 25, 5225 }, // Africa_Western/Benin -> Africa/Porto-Novo |
| 892 | { 7, 81, 40, 5243 }, // Africa_Western/Cameroon -> Africa/Douala |
| 893 | { 7, 81, 46, 5257 }, // Africa_Western/Central African Republic -> Africa/Bangui |
| 894 | { 7, 81, 48, 5271 }, // Africa_Western/Chad -> Africa/Ndjamena |
| 895 | { 7, 81, 56, 5287 }, // Africa_Western/Congo - Brazzaville -> Africa/Brazzaville |
| 896 | { 7, 81, 57, 5306 }, // Africa_Western/Congo - Kinshasa -> Africa/Kinshasa |
| 897 | { 7, 81, 73, 5322 }, // Africa_Western/Equatorial Guinea -> Africa/Malabo |
| 898 | { 7, 81, 88, 5336 }, // Africa_Western/Gabon -> Africa/Libreville |
| 899 | { 7, 81, 170, 5354 }, // Africa_Western/Niger -> Africa/Niamey |
| 900 | { 7, 81, 258, 4744 }, // Africa_Western/world -> Africa/Lagos |
| 901 | { 8, 96, 258, 5368 }, // Aktyubinsk/world -> Asia/Aqtobe |
| 902 | { 9, 107, 258, 5380 }, // Alaska/world -> America/Juneau |
| 903 | { 10, 114, 258, 3346 }, // Alaska_Hawaii/world -> America/Anchorage |
| 904 | { 11, 128, 258, 5395 }, // Almaty/world -> Asia/Almaty |
| 905 | { 12, 135, 258, 1908 }, // Amazon/world -> America/Manaus |
| 906 | { 13, 142, 24, 5407 }, // America_Central/Belize -> America/Belize |
| 907 | { 13, 142, 41, 734 }, // America_Central/Canada -> America/Winnipeg |
| 908 | { 13, 142, 59, 5422 }, // America_Central/Costa Rica -> America/Costa_Rica |
| 909 | { 13, 142, 72, 5441 }, // America_Central/El Salvador -> America/El_Salvador |
| 910 | { 13, 142, 99, 3760 }, // America_Central/Guatemala -> America/Guatemala |
| 911 | { 13, 142, 106, 5461 }, // America_Central/Honduras -> America/Tegucigalpa |
| 912 | { 13, 142, 152, 2949 }, // America_Central/Mexico -> America/Mexico_City |
| 913 | { 13, 142, 258, 2260 }, // America_Central/world -> America/Chicago |
| 914 | { 14, 158, 18, 5481 }, // America_Eastern/Bahamas -> America/Nassau |
| 915 | { 14, 158, 41, 608 }, // America_Eastern/Canada -> America/Toronto |
| 916 | { 14, 158, 45, 5496 }, // America_Eastern/Cayman Islands -> America/Cayman |
| 917 | { 14, 158, 104, 3945 }, // America_Eastern/Haiti -> America/Port-au-Prince |
| 918 | { 14, 158, 119, 2799 }, // America_Eastern/Jamaica -> America/Jamaica |
| 919 | { 14, 158, 181, 2356 }, // America_Eastern/Panama -> America/Panama |
| 920 | { 14, 158, 258, 2379 }, // America_Eastern/world -> America/New_York |
| 921 | { 15, 174, 41, 893 }, // America_Mountain/Canada -> America/Edmonton |
| 922 | { 15, 174, 258, 805 }, // America_Mountain/world -> America/Denver |
| 923 | { 16, 191, 41, 2093 }, // America_Pacific/Canada -> America/Vancouver |
| 924 | { 16, 191, 152, 313 }, // America_Pacific/Mexico -> America/Tijuana |
| 925 | { 16, 191, 258, 3239 }, // America_Pacific/world -> America/Los_Angeles |
| 926 | { 17, 207, 258, 5511 }, // Anadyr/world -> Asia/Anadyr |
| 927 | { 18, 214, 258, 4422 }, // Apia/world -> Pacific/Apia |
| 928 | { 19, 219, 258, 5523 }, // Aqtau/world -> Asia/Aqtau |
| 929 | { 20, 225, 258, 5368 }, // Aqtobe/world -> Asia/Aqtobe |
| 930 | { 21, 232, 19, 5534 }, // Arabian/Bahrain -> Asia/Bahrain |
| 931 | { 21, 232, 113, 3607 }, // Arabian/Iraq -> Asia/Baghdad |
| 932 | { 21, 232, 127, 5547 }, // Arabian/Kuwait -> Asia/Kuwait |
| 933 | { 21, 232, 190, 5559 }, // Arabian/Qatar -> Asia/Qatar |
| 934 | { 21, 232, 258, 3584 }, // Arabian/world -> Asia/Riyadh |
| 935 | { 21, 232, 259, 5570 }, // Arabian/Yemen -> Asia/Aden |
| 936 | { 22, 240, 258, 166 }, // Argentina/world -> America/Argentina/Buenos_Aires |
| 937 | { 23, 250, 258, 5580 }, // Argentina_Western/world -> America/Argentina/San_Luis |
| 938 | { 24, 268, 258, 3747 }, // Armenia/world -> Asia/Yerevan |
| 939 | { 25, 276, 258, 964 }, // Ashkhabad/world -> Asia/Ashgabat |
| 940 | { 26, 286, 8, 5607 }, // Atlantic/Anguilla -> America/Anguilla |
| 941 | { 26, 286, 10, 5624 }, // Atlantic/Antigua and Barbuda -> America/Antigua |
| 942 | { 26, 286, 13, 5640 }, // Atlantic/Aruba -> America/Aruba |
| 943 | { 26, 286, 21, 5654 }, // Atlantic/Barbados -> America/Barbados |
| 944 | { 26, 286, 26, 5671 }, // Atlantic/Bermuda -> Atlantic/Bermuda |
| 945 | { 26, 286, 34, 5688 }, // Atlantic/British Virgin Islands -> America/Tortola |
| 946 | { 26, 286, 44, 5704 }, // Atlantic/Caribbean Netherlands -> America/Kralendijk |
| 947 | { 26, 286, 62, 5723 }, // Atlantic/Curacao -> America/Curacao |
| 948 | { 26, 286, 68, 5739 }, // Atlantic/Dominica -> America/Dominica |
| 949 | { 26, 286, 95, 5756 }, // Atlantic/Greenland -> America/Thule |
| 950 | { 26, 286, 96, 5770 }, // Atlantic/Grenada -> America/Grenada |
| 951 | { 26, 286, 97, 5786 }, // Atlantic/Guadeloupe -> America/Guadeloupe |
| 952 | { 26, 286, 148, 5805 }, // Atlantic/Martinique -> America/Martinique |
| 953 | { 26, 286, 158, 5824 }, // Atlantic/Montserrat -> America/Montserrat |
| 954 | { 26, 286, 189, 5843 }, // Atlantic/Puerto Rico -> America/Puerto_Rico |
| 955 | { 26, 286, 197, 5863 }, // Atlantic/Saint Kitts and Nevis -> America/St_Kitts |
| 956 | { 26, 286, 198, 5880 }, // Atlantic/Saint Lucia -> America/St_Lucia |
| 957 | { 26, 286, 199, 5897 }, // Atlantic/Saint Martin -> America/Marigot |
| 958 | { 26, 286, 201, 5913 }, // Atlantic/Saint Vincent and Grenadines -> America/St_Vincent |
| 959 | { 26, 286, 211, 5932 }, // Atlantic/Sint Maarten -> America/Lower_Princes |
| 960 | { 26, 286, 236, 5954 }, // Atlantic/Trinidad and Tobago -> America/Port_of_Spain |
| 961 | { 26, 286, 249, 855 }, // Atlantic/United States Virgin Islands -> America/St_Thomas |
| 962 | { 26, 286, 258, 1939 }, // Atlantic/world -> America/Halifax |
| 963 | { 27, 295, 258, 1670 }, // Australia_Central/world -> Australia/Adelaide |
| 964 | { 28, 313, 258, 3637 }, // Australia_CentralWestern/world -> Australia/Eucla |
| 965 | { 29, 338, 258, 1463 }, // Australia_Eastern/world -> Australia/Sydney |
| 966 | { 30, 356, 258, 1762 }, // Australia_Western/world -> Australia/Perth |
| 967 | { 31, 374, 258, 3653 }, // Azerbaijan/world -> Asia/Baku |
| 968 | { 32, 385, 258, 3663 }, // Azores/world -> Atlantic/Azores |
| 969 | { 33, 392, 258, 3653 }, // Baku/world -> Asia/Baku |
| 970 | { 34, 397, 258, 1093 }, // Bangladesh/world -> Asia/Dhaka |
| 971 | { 35, 408, 258, 132 }, // Bering/world -> America/Adak |
| 972 | { 36, 415, 258, 1317 }, // Bhutan/world -> Asia/Thimphu |
| 973 | { 37, 422, 258, 4376 }, // Bolivia/world -> America/La_Paz |
| 974 | { 38, 430, 258, 5976 }, // Borneo/world -> Asia/Kuching |
| 975 | { 39, 437, 258, 1878 }, // Brasilia/world -> America/Sao_Paulo |
| 976 | { 40, 446, 258, 2501 }, // British/world -> Europe/London |
| 977 | { 41, 454, 258, 5989 }, // Brunei/world -> Asia/Brunei |
| 978 | { 42, 461, 258, 3727 }, // Cape_Verde/world -> Atlantic/Cape_Verde |
| 979 | { 43, 472, 258, 6001 }, // Casey/world -> Antarctica/Casey |
| 980 | { 44, 478, 98, 6018 }, // Chamorro/Guam -> Pacific/Guam |
| 981 | { 44, 478, 258, 6031 }, // Chamorro/world -> Pacific/Saipan |
| 982 | { 45, 487, 258, 3015 }, // Chatham/world -> Pacific/Chatham |
| 983 | { 46, 495, 258, 2201 }, // Chile/world -> America/Santiago |
| 984 | { 47, 501, 258, 1053 }, // China/world -> Asia/Shanghai |
| 985 | { 48, 507, 258, 6046 }, // Christmas/world -> Indian/Christmas |
| 986 | { 49, 517, 258, 6063 }, // Cocos/world -> Indian/Cocos |
| 987 | { 50, 523, 258, 4361 }, // Colombia/world -> America/Bogota |
| 988 | { 51, 532, 258, 6076 }, // Cook/world -> Pacific/Rarotonga |
| 989 | { 52, 537, 258, 2281 }, // Cuba/world -> America/Havana |
| 990 | { 53, 542, 258, 1093 }, // Dacca/world -> Asia/Dhaka |
| 991 | { 54, 548, 258, 6094 }, // Davis/world -> Antarctica/Davis |
| 992 | { 55, 554, 258, 6111 }, // Dominican/world -> America/Santo_Domingo |
| 993 | { 56, 564, 258, 6133 }, // DumontDUrville/world -> Antarctica/DumontDUrville |
| 994 | { 57, 579, 258, 6159 }, // Dushanbe/world -> Asia/Dushanbe |
| 995 | { 58, 588, 258, 6173 }, // Dutch_Guiana/world -> America/Paramaribo |
| 996 | { 59, 601, 258, 6192 }, // East_Timor/world -> Asia/Dili |
| 997 | { 60, 612, 258, 2237 }, // Easter/world -> Pacific/Easter |
| 998 | { 61, 619, 258, 4841 }, // Ecuador/world -> America/Guayaquil |
| 999 | { 62, 627, 3, 6202 }, // Europe_Central/Albania -> Europe/Tirane |
| 1000 | { 62, 627, 6, 6216 }, // Europe_Central/Andorra -> Europe/Andorra |
| 1001 | { 62, 627, 16, 6231 }, // Europe_Central/Austria -> Europe/Vienna |
| 1002 | { 62, 627, 23, 2167 }, // Europe_Central/Belgium -> Europe/Brussels |
| 1003 | { 62, 627, 29, 6245 }, // Europe_Central/Bosnia and Herzegovina -> Europe/Sarajevo |
| 1004 | { 62, 627, 60, 6261 }, // Europe_Central/Croatia -> Europe/Zagreb |
| 1005 | { 62, 627, 64, 6275 }, // Europe_Central/Czechia -> Europe/Prague |
| 1006 | { 62, 627, 65, 6289 }, // Europe_Central/Denmark -> Europe/Copenhagen |
| 1007 | { 62, 627, 91, 4757 }, // Europe_Central/Germany -> Europe/Berlin |
| 1008 | { 62, 627, 93, 6307 }, // Europe_Central/Gibraltar -> Europe/Gibraltar |
| 1009 | { 62, 627, 108, 3806 }, // Europe_Central/Hungary -> Europe/Budapest |
| 1010 | { 62, 627, 117, 6324 }, // Europe_Central/Italy -> Europe/Rome |
| 1011 | { 62, 627, 126, 6336 }, // Europe_Central/Kosovo -> Europe/Belgrade |
| 1012 | { 62, 627, 136, 6352 }, // Europe_Central/Liechtenstein -> Europe/Vaduz |
| 1013 | { 62, 627, 138, 6365 }, // Europe_Central/Luxembourg -> Europe/Luxembourg |
| 1014 | { 62, 627, 140, 6383 }, // Europe_Central/Macedonia -> Europe/Skopje |
| 1015 | { 62, 627, 146, 6397 }, // Europe_Central/Malta -> Europe/Malta |
| 1016 | { 62, 627, 155, 6410 }, // Europe_Central/Monaco -> Europe/Monaco |
| 1017 | { 62, 627, 157, 6424 }, // Europe_Central/Montenegro -> Europe/Podgorica |
| 1018 | { 62, 627, 165, 6441 }, // Europe_Central/Netherlands -> Europe/Amsterdam |
| 1019 | { 62, 627, 175, 6458 }, // Europe_Central/Norway -> Europe/Oslo |
| 1020 | { 62, 627, 187, 3190 }, // Europe_Central/Poland -> Europe/Warsaw |
| 1021 | { 62, 627, 203, 6470 }, // Europe_Central/San Marino -> Europe/San_Marino |
| 1022 | { 62, 627, 207, 6336 }, // Europe_Central/Serbia -> Europe/Belgrade |
| 1023 | { 62, 627, 212, 6488 }, // Europe_Central/Slovakia -> Europe/Bratislava |
| 1024 | { 62, 627, 213, 6506 }, // Europe_Central/Slovenia -> Europe/Ljubljana |
| 1025 | { 62, 627, 220, 4892 }, // Europe_Central/Spain -> Europe/Madrid |
| 1026 | { 62, 627, 224, 1429 }, // Europe_Central/Svalbard and Jan Mayen -> Arctic/Longyearbyen |
| 1027 | { 62, 627, 225, 6523 }, // Europe_Central/Sweden -> Europe/Stockholm |
| 1028 | { 62, 627, 226, 6540 }, // Europe_Central/Switzerland -> Europe/Zurich |
| 1029 | { 62, 627, 238, 6554 }, // Europe_Central/Tunisia -> Africa/Tunis |
| 1030 | { 62, 627, 253, 6567 }, // Europe_Central/Vatican City -> Europe/Vatican |
| 1031 | { 62, 627, 258, 4284 }, // Europe_Central/world -> Europe/Paris |
| 1032 | { 63, 642, 2, 6582 }, // Europe_Eastern/Aland Islands -> Europe/Mariehamn |
| 1033 | { 63, 642, 36, 6599 }, // Europe_Eastern/Bulgaria -> Europe/Sofia |
| 1034 | { 63, 642, 63, 2554 }, // Europe_Eastern/Cyprus -> Asia/Nicosia |
| 1035 | { 63, 642, 71, 2320 }, // Europe_Eastern/Egypt -> Africa/Cairo |
| 1036 | { 63, 642, 83, 6612 }, // Europe_Eastern/Finland -> Europe/Helsinki |
| 1037 | { 63, 642, 94, 2300 }, // Europe_Eastern/Greece -> Europe/Athens |
| 1038 | { 63, 642, 132, 4086 }, // Europe_Eastern/Lebanon -> Asia/Beirut |
| 1039 | { 63, 642, 258, 3928 }, // Europe_Eastern/world -> Europe/Bucharest |
| 1040 | { 64, 657, 193, 3979 }, // Europe_Further_Eastern/Russia -> Europe/Kaliningrad |
| 1041 | { 64, 657, 258, 3693 }, // Europe_Further_Eastern/world -> Europe/Minsk |
| 1042 | { 65, 680, 81, 1395 }, // Europe_Western/Faroe Islands -> Atlantic/Faroe |
| 1043 | { 65, 680, 258, 6628 }, // Europe_Western/world -> Atlantic/Canary |
| 1044 | { 66, 695, 258, 6644 }, // Falkland/world -> Atlantic/Stanley |
| 1045 | { 67, 704, 258, 3902 }, // Fiji/world -> Pacific/Fiji |
| 1046 | { 68, 709, 258, 4345 }, // French_Guiana/world -> America/Cayenne |
| 1047 | { 69, 723, 258, 6661 }, // French_Southern/world -> Indian/Kerguelen |
| 1048 | { 70, 739, 258, 3778 }, // Frunze/world -> Asia/Bishkek |
| 1049 | { 71, 746, 258, 6678 }, // Galapagos/world -> Pacific/Galapagos |
| 1050 | { 72, 756, 258, 6696 }, // Gambier/world -> Pacific/Gambier |
| 1051 | { 73, 764, 258, 3915 }, // Georgia/world -> Asia/Tbilisi |
| 1052 | { 74, 772, 258, 6712 }, // Gilbert_Islands/world -> Pacific/Tarawa |
| 1053 | { 75, 788, 37, 6727 }, // GMT/Burkina Faso -> Africa/Ouagadougou |
| 1054 | { 75, 788, 89, 6746 }, // GMT/Gambia -> Africa/Banjul |
| 1055 | { 75, 788, 92, 6760 }, // GMT/Ghana -> Africa/Accra |
| 1056 | { 75, 788, 102, 6773 }, // GMT/Guinea -> Africa/Conakry |
| 1057 | { 75, 788, 114, 2338 }, // GMT/Ireland -> Europe/Dublin |
| 1058 | { 75, 788, 118, 6788 }, // GMT/Ivory Coast -> Africa/Abidjan |
| 1059 | { 75, 788, 145, 44 }, // GMT/Mali -> Africa/Bamako |
| 1060 | { 75, 788, 149, 6803 }, // GMT/Mauritania -> Africa/Nouakchott |
| 1061 | { 75, 788, 196, 6821 }, // GMT/Saint Helena -> Atlantic/St_Helena |
| 1062 | { 75, 788, 206, 6840 }, // GMT/Senegal -> Africa/Dakar |
| 1063 | { 75, 788, 209, 6853 }, // GMT/Sierra Leone -> Africa/Freetown |
| 1064 | { 75, 788, 233, 6869 }, // GMT/Togo -> Africa/Lome |
| 1065 | { 75, 788, 246, 2501 }, // GMT/United Kingdom -> Europe/London |
| 1066 | { 75, 788, 258, 2748 }, // GMT/world -> Atlantic/Reykjavik |
| 1067 | { 76, 792, 258, 6881 }, // Goose_Bay/world -> America/Goose_Bay |
| 1068 | { 77, 802, 258, 393 }, // Greenland/world -> America/Nuuk |
| 1069 | { 78, 812, 258, 6899 }, // Greenland_Central/world -> America/Scoresbysund |
| 1070 | { 79, 830, 258, 6899 }, // Greenland_Eastern/world -> America/Scoresbysund |
| 1071 | { 80, 848, 258, 393 }, // Greenland_Western/world -> America/Nuuk |
| 1072 | { 81, 866, 258, 6018 }, // Guam/world -> Pacific/Guam |
| 1073 | { 82, 871, 176, 6920 }, // Gulf/Oman -> Asia/Muscat |
| 1074 | { 82, 871, 258, 3596 }, // Gulf/world -> Asia/Dubai |
| 1075 | { 83, 876, 258, 6932 }, // Guyana/world -> America/Guyana |
| 1076 | { 84, 883, 258, 2723 }, // Hawaii_Aleutian/world -> Pacific/Honolulu |
| 1077 | { 85, 899, 258, 2704 }, // Hong_Kong/world -> Asia/Hong_Kong |
| 1078 | { 86, 909, 258, 4771 }, // Hovd/world -> Asia/Hovd |
| 1079 | { 87, 914, 221, 4511 }, // India/Sri Lanka -> Asia/Colombo |
| 1080 | { 87, 914, 258, 992 }, // India/world -> Asia/Kolkata |
| 1081 | { 88, 920, 258, 6947 }, // Indian_Ocean/world -> Indian/Chagos |
| 1082 | { 89, 933, 39, 6961 }, // Indochina/Cambodia -> Asia/Phnom_Penh |
| 1083 | { 89, 933, 129, 6977 }, // Indochina/Laos -> Asia/Vientiane |
| 1084 | { 89, 933, 258, 4466 }, // Indochina/world -> Asia/Bangkok |
| 1085 | { 90, 943, 258, 1349 }, // Indonesia_Central/world -> Asia/Makassar |
| 1086 | { 91, 961, 258, 6992 }, // Indonesia_Eastern/world -> Asia/Jayapura |
| 1087 | { 92, 979, 258, 7006 }, // Indonesia_Western/world -> Asia/Jakarta |
| 1088 | { 93, 997, 258, 2772 }, // Iran/world -> Asia/Tehran |
| 1089 | { 94, 1002, 258, 2338 }, // Irish/world -> Europe/Dublin |
| 1090 | { 95, 1008, 258, 4184 }, // Irkutsk/world -> Asia/Irkutsk |
| 1091 | { 96, 1016, 258, 1290 }, // Israel/world -> Asia/Jerusalem |
| 1092 | { 97, 1023, 258, 2821 }, // Japan/world -> Asia/Tokyo |
| 1093 | { 98, 1029, 258, 4316 }, // Kamchatka/world -> Asia/Kamchatka |
| 1094 | { 99, 1039, 258, 4239 }, // Karachi/world -> Asia/Karachi |
| 1095 | { 100, 1047, 258, 5395 }, // Kazakhstan/world -> Asia/Almaty |
| 1096 | { 101, 1058, 258, 5395 }, // Kazakhstan_Eastern/world -> Asia/Almaty |
| 1097 | { 102, 1077, 258, 5368 }, // Kazakhstan_Western/world -> Asia/Aqtobe |
| 1098 | { 103, 1096, 258, 4269 }, // Kizilorda/world -> Asia/Qyzylorda |
| 1099 | { 104, 1106, 258, 3279 }, // Korea/world -> Asia/Seoul |
| 1100 | { 105, 1112, 258, 7019 }, // Kosrae/world -> Pacific/Kosrae |
| 1101 | { 106, 1119, 258, 4197 }, // Krasnoyarsk/world -> Asia/Krasnoyarsk |
| 1102 | { 107, 1131, 258, 4331 }, // Kuybyshev/world -> Europe/Samara |
| 1103 | { 108, 1141, 258, 2842 }, // Kwajalein/world -> Pacific/Kwajalein |
| 1104 | { 109, 1151, 258, 3778 }, // Kyrgystan/world -> Asia/Bishkek |
| 1105 | { 110, 1161, 258, 4511 }, // Lanka/world -> Asia/Colombo |
| 1106 | { 111, 1167, 258, 7034 }, // Liberia/world -> Africa/Monrovia |
| 1107 | { 112, 1175, 258, 3998 }, // Line_Islands/world -> Pacific/Kiritimati |
| 1108 | { 113, 1188, 258, 1547 }, // Lord_Howe/world -> Australia/Lord_Howe |
| 1109 | { 114, 1198, 258, 1211 }, // Macau/world -> Asia/Macau |
| 1110 | { 115, 1204, 258, 4017 }, // Magadan/world -> Asia/Magadan |
| 1111 | { 116, 1212, 258, 4859 }, // Malaya/world -> Asia/Kuala_Lumpur |
| 1112 | { 117, 1219, 258, 5976 }, // Malaysia/world -> Asia/Kuching |
| 1113 | { 118, 1228, 258, 7050 }, // Maldives/world -> Indian/Maldives |
| 1114 | { 119, 1237, 258, 4051 }, // Marquesas/world -> Pacific/Marquesas |
| 1115 | { 120, 1247, 258, 4877 }, // Marshall_Islands/world -> Pacific/Majuro |
| 1116 | { 121, 1264, 258, 4069 }, // Mauritius/world -> Indian/Mauritius |
| 1117 | { 122, 1274, 258, 7066 }, // Mawson/world -> Antarctica/Mawson |
| 1118 | { 123, 1281, 258, 2917 }, // Mexico_Pacific/world -> America/Mazatlan |
| 1119 | { 124, 1296, 258, 1021 }, // Mongolia/world -> Asia/Ulaanbaatar |
| 1120 | { 125, 1305, 258, 3537 }, // Moscow/world -> Europe/Moscow |
| 1121 | { 126, 1312, 258, 1235 }, // Myanmar/world -> Asia/Yangon |
| 1122 | { 127, 1320, 258, 7084 }, // Nauru/world -> Pacific/Nauru |
| 1123 | { 128, 1326, 258, 1185 }, // Nepal/world -> Asia/Kathmandu |
| 1124 | { 129, 1332, 258, 7098 }, // New_Caledonia/world -> Pacific/Noumea |
| 1125 | { 130, 1346, 9, 7113 }, // New_Zealand/Antarctica -> Antarctica/McMurdo |
| 1126 | { 130, 1346, 258, 932 }, // New_Zealand/world -> Pacific/Auckland |
| 1127 | { 131, 1358, 258, 2061 }, // Newfoundland/world -> America/St_Johns |
| 1128 | { 132, 1371, 258, 7132 }, // Niue/world -> Pacific/Niue |
| 1129 | { 133, 1376, 258, 4168 }, // Norfolk/world -> Pacific/Norfolk |
| 1130 | { 134, 1384, 258, 1850 }, // Noronha/world -> America/Noronha |
| 1131 | { 135, 1392, 258, 6031 }, // North_Mariana/world -> Pacific/Saipan |
| 1132 | { 136, 1406, 258, 4135 }, // Novosibirsk/world -> Asia/Novosibirsk |
| 1133 | { 137, 1418, 258, 4229 }, // Omsk/world -> Asia/Omsk |
| 1134 | { 138, 1423, 258, 7145 }, // Oral/world -> Asia/Oral |
| 1135 | { 139, 1428, 258, 4239 }, // Pakistan/world -> Asia/Karachi |
| 1136 | { 140, 1437, 258, 7155 }, // Palau/world -> Pacific/Palau |
| 1137 | { 141, 1443, 258, 4807 }, // Papua_New_Guinea/world -> Pacific/Port_Moresby |
| 1138 | { 142, 1460, 258, 4252 }, // Paraguay/world -> America/Asuncion |
| 1139 | { 143, 1469, 258, 7169 }, // Peru/world -> America/Lima |
| 1140 | { 144, 1474, 258, 7182 }, // Philippines/world -> Asia/Manila |
| 1141 | { 145, 1486, 258, 3049 }, // Phoenix_Islands/world -> Pacific/Kanton |
| 1142 | { 146, 1502, 258, 4391 }, // Pierre_Miquelon/world -> America/Miquelon |
| 1143 | { 147, 1518, 258, 7194 }, // Pitcairn/world -> Pacific/Pitcairn |
| 1144 | { 148, 1527, 258, 3096 }, // Ponape/world -> Pacific/Pohnpei |
| 1145 | { 149, 1534, 258, 4214 }, // Pyongyang/world -> Asia/Pyongyang |
| 1146 | { 150, 1544, 258, 4269 }, // Qyzylorda/world -> Asia/Qyzylorda |
| 1147 | { 151, 1554, 258, 7211 }, // Reunion/world -> Indian/Reunion |
| 1148 | { 152, 1562, 258, 7226 }, // Rothera/world -> Antarctica/Rothera |
| 1149 | { 153, 1570, 258, 4408 }, // Sakhalin/world -> Asia/Sakhalin |
| 1150 | { 154, 1579, 258, 4331 }, // Samara/world -> Europe/Samara |
| 1151 | { 155, 1586, 258, 7245 }, // Samarkand/world -> Asia/Samarkand |
| 1152 | { 156, 1596, 258, 3126 }, // Samoa/world -> Pacific/Pago_Pago |
| 1153 | { 157, 1602, 258, 7260 }, // Seychelles/world -> Indian/Mahe |
| 1154 | { 158, 1613, 258, 5523 }, // Shevchenko/world -> Asia/Aqtau |
| 1155 | { 159, 1624, 258, 3300 }, // Singapore/world -> Asia/Singapore |
| 1156 | { 160, 1634, 258, 3822 }, // Solomon/world -> Pacific/Guadalcanal |
| 1157 | { 161, 1642, 258, 7272 }, // South_Georgia/world -> Atlantic/South_Georgia |
| 1158 | { 162, 1656, 258, 6173 }, // Suriname/world -> America/Paramaribo |
| 1159 | { 163, 1665, 258, 3883 }, // Sverdlovsk/world -> Asia/Yekaterinburg |
| 1160 | { 164, 1676, 258, 7295 }, // Syowa/world -> Antarctica/Syowa |
| 1161 | { 165, 1682, 258, 7312 }, // Tahiti/world -> Pacific/Tahiti |
| 1162 | { 166, 1689, 258, 3263 }, // Taipei/world -> Asia/Taipei |
| 1163 | { 167, 1696, 258, 6159 }, // Tajikistan/world -> Asia/Dushanbe |
| 1164 | { 168, 1707, 258, 4781 }, // Tashkent/world -> Asia/Tashkent |
| 1165 | { 169, 1716, 258, 3915 }, // Tbilisi/world -> Asia/Tbilisi |
| 1166 | { 170, 1724, 258, 7327 }, // Tokelau/world -> Pacific/Fakaofo |
| 1167 | { 171, 1732, 258, 4583 }, // Tonga/world -> Pacific/Tongatapu |
| 1168 | { 172, 1738, 258, 3157 }, // Truk/world -> Pacific/Chuuk |
| 1169 | { 173, 1743, 258, 1130 }, // Turkey/world -> Europe/Istanbul |
| 1170 | { 174, 1750, 258, 964 }, // Turkmenistan/world -> Asia/Ashgabat |
| 1171 | { 175, 1763, 258, 7343 }, // Tuvalu/world -> Pacific/Funafuti |
| 1172 | { 176, 1770, 258, 7145 }, // Uralsk/world -> Asia/Oral |
| 1173 | { 177, 1777, 258, 4098 }, // Uruguay/world -> America/Montevideo |
| 1174 | { 178, 1785, 258, 1159 }, // Urumqi/world -> Asia/Urumqi |
| 1175 | { 179, 1792, 258, 4781 }, // Uzbekistan/world -> Asia/Tashkent |
| 1176 | { 180, 1803, 258, 7360 }, // Vanuatu/world -> Pacific/Efate |
| 1177 | { 181, 1811, 258, 4694 }, // Venezuela/world -> America/Caracas |
| 1178 | { 182, 1821, 258, 4710 }, // Vladivostok/world -> Asia/Vladivostok |
| 1179 | { 183, 1833, 258, 4727 }, // Volgograd/world -> Europe/Volgograd |
| 1180 | { 184, 1843, 258, 7374 }, // Vostok/world -> Antarctica/Vostok |
| 1181 | { 185, 1850, 258, 7392 }, // Wake/world -> Pacific/Wake |
| 1182 | { 186, 1855, 258, 7405 }, // Wallis/world -> Pacific/Wallis |
| 1183 | { 187, 1862, 258, 4828 }, // Yakutsk/world -> Asia/Yakutsk |
| 1184 | { 188, 1870, 258, 3883 }, // Yekaterinburg/world -> Asia/Yekaterinburg |
| 1185 | { 189, 1884, 258, 3747 }, // Yerevan/world -> Asia/Yerevan |
| 1186 | { 190, 1892, 258, 2144 }, // Yukon/world -> America/Whitehorse |
| 1187 | }; |
| 1188 | |
| 1189 | // IANA ID Index, MetaZone Key, interval start, end |
| 1190 | static inline constexpr ZoneMetaHistory zoneHistoryTable[] = { |
| 1191 | { 6788, 75, 0,4294967295 }, |
| 1192 | { 6760, 75, 0,4294967295 }, |
| 1193 | { 5059, 4, 0,4294967295 }, |
| 1194 | { 7420, 65, 0, 4103940 }, |
| 1195 | { 7420, 62, 4103940, 5162340 }, |
| 1196 | { 7420, 65, 5162340, 5958720 }, |
| 1197 | { 7420, 62, 5958720,4294967295 }, |
| 1198 | { 14, 4, 0,4294967295 }, |
| 1199 | { 44, 75, 0,4294967295 }, |
| 1200 | { 5257, 7, 0,4294967295 }, |
| 1201 | { 6746, 75, 0,4294967295 }, |
| 1202 | { 7435, 5, 0, 2629500 }, |
| 1203 | { 7435, 75, 2629500,4294967295 }, |
| 1204 | { 4957, 3, 0,4294967295 }, |
| 1205 | { 5287, 7, 0,4294967295 }, |
| 1206 | { 4922, 3, 0,4294967295 }, |
| 1207 | { 2320, 63, 0,4294967295 }, |
| 1208 | { 4117, 65, 0, 7470720 }, |
| 1209 | { 4117, 62, 7470720, 8415300 }, |
| 1210 | { 4117, 65, 8415300, 25678200 }, |
| 1211 | { 7449, 65, 0, 7470720 }, |
| 1212 | { 7449, 62, 7470720,4294967295 }, |
| 1213 | { 6773, 75, 0,4294967295 }, |
| 1214 | { 6840, 75, 0,4294967295 }, |
| 1215 | { 5130, 4, 0,4294967295 }, |
| 1216 | { 5043, 4, 0,4294967295 }, |
| 1217 | { 5243, 7, 0,4294967295 }, |
| 1218 | { 5166, 5, 0, 3304860 }, |
| 1219 | { 5166, 65, 3304860, 25678200 }, |
| 1220 | { 6853, 75, 0,4294967295 }, |
| 1221 | { 4906, 3, 0,4294967295 }, |
| 1222 | { 5015, 3, 0,4294967295 }, |
| 1223 | { 4479, 6, 0,4294967295 }, |
| 1224 | { 4499, 3, 0, 15798840 }, |
| 1225 | { 4499, 4, 15798840, 26868780 }, |
| 1226 | { 4499, 3, 26868780,4294967295 }, |
| 1227 | { 5151, 4, 0,4294967295 }, |
| 1228 | { 4524, 3, 0, 15798840 }, |
| 1229 | { 4524, 4, 15798840, 25158060 }, |
| 1230 | { 4524, 3, 25158060,4294967295 }, |
| 1231 | { 4973, 3, 0,4294967295 }, |
| 1232 | { 5306, 7, 0,4294967295 }, |
| 1233 | { 4744, 7, 0,4294967295 }, |
| 1234 | { 5336, 7, 0,4294967295 }, |
| 1235 | { 6869, 75, 0,4294967295 }, |
| 1236 | { 5211, 7, 0,4294967295 }, |
| 1237 | { 4939, 3, 0,4294967295 }, |
| 1238 | { 5001, 3, 0,4294967295 }, |
| 1239 | { 5322, 7, 0,4294967295 }, |
| 1240 | { 4987, 3, 0,4294967295 }, |
| 1241 | { 5197, 6, 0,4294967295 }, |
| 1242 | { 5182, 6, 0,4294967295 }, |
| 1243 | { 5113, 4, 0,4294967295 }, |
| 1244 | { 7034, 111, 0, 1225485 }, |
| 1245 | { 7034, 75, 1225485,4294967295 }, |
| 1246 | { 3853, 4, 0,4294967295 }, |
| 1247 | { 5271, 7, 0,4294967295 }, |
| 1248 | { 5354, 7, 0,4294967295 }, |
| 1249 | { 6803, 75, 0,4294967295 }, |
| 1250 | { 6727, 75, 0,4294967295 }, |
| 1251 | { 5225, 7, 0,4294967295 }, |
| 1252 | { 4435, 75, 0, 25246140 }, |
| 1253 | { 4435, 7, 25246140, 25771740 }, |
| 1254 | { 4435, 75, 25771740,4294967295 }, |
| 1255 | { 2866, 63, 0, 6311400 }, |
| 1256 | { 2866, 62, 6311400, 10696260 }, |
| 1257 | { 2866, 63, 10696260, 14067240 }, |
| 1258 | { 2866, 62, 14067240, 14598600 }, |
| 1259 | { 2866, 63, 14598600, 22541760 }, |
| 1260 | { 2866, 62, 22541760, 23044320 }, |
| 1261 | { 2866, 63, 23044320,4294967295 }, |
| 1262 | { 6554, 62, 0,4294967295 }, |
| 1263 | { 4152, 6, 0, 10632840 }, |
| 1264 | { 4152, 3, 10632840, 12736680 }, |
| 1265 | { 4152, 7, 12736680, 25146600 }, |
| 1266 | { 4152, 3, 25146600,4294967295 }, |
| 1267 | { 132, 35, 0, 7272720 }, |
| 1268 | { 132, 84, 7317240,4294967295 }, |
| 1269 | { 3346, 10, 0, 7272660 }, |
| 1270 | { 3346, 9, 7317180,4294967295 }, |
| 1271 | { 5607, 26, 0,4294967295 }, |
| 1272 | { 5624, 26, 0,4294967295 }, |
| 1273 | { 4554, 39, 0,4294967295 }, |
| 1274 | { 166, 22, 0,4294967295 }, |
| 1275 | { 91, 22, 0, 11132760 }, |
| 1276 | { 91, 22, 11465520, 18100980 }, |
| 1277 | { 91, 23, 18100980, 18128400 }, |
| 1278 | { 91, 22, 18128400,4294967295 }, |
| 1279 | { 270, 22, 0, 11132760 }, |
| 1280 | { 270, 22, 11465520,4294967295 }, |
| 1281 | { 441, 22, 0, 10608600 }, |
| 1282 | { 441, 22, 11445360,4294967295 }, |
| 1283 | { 7462, 22, 0, 11129880 }, |
| 1284 | { 7462, 23, 11129880, 11226480 }, |
| 1285 | { 7462, 22, 11226480, 18100980 }, |
| 1286 | { 7462, 23, 18100980, 18128400 }, |
| 1287 | { 7462, 22, 18128400,4294967295 }, |
| 1288 | { 565, 22, 0, 10608600 }, |
| 1289 | { 565, 22, 11989680, 18088020 }, |
| 1290 | { 565, 22, 18269520,4294967295 }, |
| 1291 | { 7489, 22, 0, 18100980 }, |
| 1292 | { 7489, 23, 18100980, 18128400 }, |
| 1293 | { 7489, 22, 18128400,4294967295 }, |
| 1294 | { 7520, 22, 0, 11132760 }, |
| 1295 | { 7520, 22, 11465520,4294967295 }, |
| 1296 | { 7544, 22, 0, 11129880 }, |
| 1297 | { 7544, 23, 11129880, 11226480 }, |
| 1298 | { 7544, 22, 11226480, 18099540 }, |
| 1299 | { 7544, 23, 18099540, 18178800 }, |
| 1300 | { 7544, 22, 18178800,4294967295 }, |
| 1301 | { 5580, 22, 0, 10623000 }, |
| 1302 | { 5580, 23, 10623000, 11262480 }, |
| 1303 | { 5580, 22, 11262480, 15648660 }, |
| 1304 | { 5580, 23, 15648660, 15867540 }, |
| 1305 | { 5580, 22, 15867540, 18099540 }, |
| 1306 | { 5580, 23, 18099540, 18178800 }, |
| 1307 | { 5580, 22, 18178800, 20014680 }, |
| 1308 | { 5580, 23, 20014680, 20920560 }, |
| 1309 | { 5580, 22, 20920560,4294967295 }, |
| 1310 | { 7571, 22, 0, 11132760 }, |
| 1311 | { 7571, 22, 11465520, 18100980 }, |
| 1312 | { 7571, 23, 18100980, 18118320 }, |
| 1313 | { 7571, 22, 18118320,4294967295 }, |
| 1314 | { 7597, 22, 0, 18098100 }, |
| 1315 | { 7597, 22, 18128400,4294967295 }, |
| 1316 | { 5640, 26, 0,4294967295 }, |
| 1317 | { 4252, 142, 0,4294967295 }, |
| 1318 | { 237, 14, 0,4294967295 }, |
| 1319 | { 3679, 39, 0,4294967295 }, |
| 1320 | { 7623, 15, 0, 21172860 }, |
| 1321 | { 7623, 13, 21172860,4294967295 }, |
| 1322 | { 5654, 26, 0,4294967295 }, |
| 1323 | { 7646, 39, 0,4294967295 }, |
| 1324 | { 5407, 13, 0,4294967295 }, |
| 1325 | { 7660, 26, 0,4294967295 }, |
| 1326 | { 7681, 12, 0,4294967295 }, |
| 1327 | { 4361, 50, 0,4294967295 }, |
| 1328 | { 7699, 15, 0,4294967295 }, |
| 1329 | { 7713, 15, 0, 15689280 }, |
| 1330 | { 7713, 13, 15689280, 16213380 }, |
| 1331 | { 7713, 14, 16213380, 16223340 }, |
| 1332 | { 7713, 13, 16223340, 16435260 }, |
| 1333 | { 7713, 15, 16435260,4294967295 }, |
| 1334 | { 7735, 12, 0,4294967295 }, |
| 1335 | { 3868, 13, 0, 6303360 }, |
| 1336 | { 3868, 14, 6303360, 6841740 }, |
| 1337 | { 3868, 13, 6841740, 14630820 }, |
| 1338 | { 3868, 14, 14630820, 15033960 }, |
| 1339 | { 3868, 13, 15033960, 23712960 }, |
| 1340 | { 3868, 14, 23712960,4294967295 }, |
| 1341 | { 4694, 181, 0,4294967295 }, |
| 1342 | { 4345, 68, 0,4294967295 }, |
| 1343 | { 5496, 14, 0,4294967295 }, |
| 1344 | { 2260, 13, 0,4294967295 }, |
| 1345 | { 7756, 13, 0, 14862780 }, |
| 1346 | { 7756, 123, 14862780, 27785280 }, |
| 1347 | { 7756, 13, 27785280,4294967295 }, |
| 1348 | { 7774, 13, 0, 14862780 }, |
| 1349 | { 7774, 123, 14862780, 27785280 }, |
| 1350 | { 7774, 13, 27785280, 27829800 }, |
| 1351 | { 7774, 15, 27829800,4294967295 }, |
| 1352 | { 5422, 13, 0,4294967295 }, |
| 1353 | { 7796, 15, 0,4294967295 }, |
| 1354 | { 3791, 12, 0,4294967295 }, |
| 1355 | { 5723, 26, 0,4294967295 }, |
| 1356 | { 7812, 80, 0, 13674420 }, |
| 1357 | { 7812, 75, 13674420,4294967295 }, |
| 1358 | { 7833, 16, 2010780, 26736900 }, |
| 1359 | { 7833, 190, 26736900,4294967295 }, |
| 1360 | { 7848, 16, 0, 1400220 }, |
| 1361 | { 7848, 15, 1400220,4294967295 }, |
| 1362 | { 805, 15, 0,4294967295 }, |
| 1363 | { 3465, 14, 0,4294967295 }, |
| 1364 | { 5739, 26, 0,4294967295 }, |
| 1365 | { 893, 15, 0,4294967295 }, |
| 1366 | { 7869, 1, 0, 20238060 }, |
| 1367 | { 7869, 12, 20238060, 23067600 }, |
| 1368 | { 7869, 1, 23067600,4294967295 }, |
| 1369 | { 5441, 13, 0,4294967295 }, |
| 1370 | { 7886, 16, 0, 23763480 }, |
| 1371 | { 7886, 15, 23763480,4294967295 }, |
| 1372 | { 7906, 39, 0,4294967295 }, |
| 1373 | { 7924, 26, 0,4294967295 }, |
| 1374 | { 6881, 26, 0, 9600721 }, |
| 1375 | { 6881, 76, 9600721, 9903001 }, |
| 1376 | { 6881, 26, 9903001,4294967295 }, |
| 1377 | { 4612, 14, 0, 23763300 }, |
| 1378 | { 4612, 26, 23763300, 25345860 }, |
| 1379 | { 4612, 14, 25345860,4294967295 }, |
| 1380 | { 5770, 26, 0,4294967295 }, |
| 1381 | { 5786, 26, 0,4294967295 }, |
| 1382 | { 3760, 13, 0,4294967295 }, |
| 1383 | { 4841, 61, 0,4294967295 }, |
| 1384 | { 6932, 83, 0,4294967295 }, |
| 1385 | { 1939, 26, 0,4294967295 }, |
| 1386 | { 2281, 52, 0,4294967295 }, |
| 1387 | { 7942, 123, 0,4294967295 }, |
| 1388 | { 348, 14, 0,4294967295 }, |
| 1389 | { 481, 13, 0, 11475780 }, |
| 1390 | { 481, 14, 11475780, 19066020 }, |
| 1391 | { 481, 13, 19066020,4294967295 }, |
| 1392 | { 7961, 14, 0, 2111460 }, |
| 1393 | { 7961, 13, 2111460, 2534820 }, |
| 1394 | { 7961, 14, 2534820,4294967295 }, |
| 1395 | { 7985, 13, 0, 4117380 }, |
| 1396 | { 7985, 14, 4117380, 19066020 }, |
| 1397 | { 7985, 13, 19066020, 19902660 }, |
| 1398 | { 7985, 14, 19902660,4294967295 }, |
| 1399 | { 8012, 14, 0, 19066020 }, |
| 1400 | { 8012, 13, 19066020,4294967295 }, |
| 1401 | { 8038, 14, 0,4294967295 }, |
| 1402 | { 8060, 14, 0, 19066020 }, |
| 1403 | { 8060, 13, 19066020, 19902660 }, |
| 1404 | { 8060, 14, 19902660,4294967295 }, |
| 1405 | { 8086, 14, 0, 19066020 }, |
| 1406 | { 8086, 13, 19066020, 19560000 }, |
| 1407 | { 8086, 14, 19560000,4294967295 }, |
| 1408 | { 8110, 16, 0, 4903800 }, |
| 1409 | { 8110, 15, 4903800,4294967295 }, |
| 1410 | { 660, 14, 0, 15689160 }, |
| 1411 | { 660, 13, 15689160, 16213380 }, |
| 1412 | { 660, 14, 16213380,4294967295 }, |
| 1413 | { 2799, 14, 0,4294967295 }, |
| 1414 | { 5380, 16, 0, 5427960 }, |
| 1415 | { 5380, 16, 5690040, 7272540 }, |
| 1416 | { 5380, 9, 7317180,4294967295 }, |
| 1417 | { 521, 14, 0, 2111460 }, |
| 1418 | { 521, 13, 2111460, 2534820 }, |
| 1419 | { 521, 14, 2534820,4294967295 }, |
| 1420 | { 8125, 13, 0, 16213380 }, |
| 1421 | { 8125, 14, 16213380,4294967295 }, |
| 1422 | { 5704, 26, 0,4294967295 }, |
| 1423 | { 4376, 37, 0,4294967295 }, |
| 1424 | { 7169, 143, 0,4294967295 }, |
| 1425 | { 3239, 16, 0,4294967295 }, |
| 1426 | { 5932, 26, 0,4294967295 }, |
| 1427 | { 8153, 39, 0,4294967295 }, |
| 1428 | { 8168, 13, 0, 1751400 }, |
| 1429 | { 8168, 14, 1751400, 2695980 }, |
| 1430 | { 8168, 13, 2695980, 11571000 }, |
| 1431 | { 8168, 14, 11571000, 11955180 }, |
| 1432 | { 8168, 13, 11955180, 12097800 }, |
| 1433 | { 8168, 14, 12097800, 14201580 }, |
| 1434 | { 8168, 13, 14201580,4294967295 }, |
| 1435 | { 1908, 12, 0,4294967295 }, |
| 1436 | { 5897, 26, 0,4294967295 }, |
| 1437 | { 5805, 26, 0,4294967295 }, |
| 1438 | { 8184, 13, 0,4294967295 }, |
| 1439 | { 2917, 123, 0,4294967295 }, |
| 1440 | { 8202, 14, 0, 1748580 }, |
| 1441 | { 8202, 13, 1748580,4294967295 }, |
| 1442 | { 8220, 13, 0, 6303360 }, |
| 1443 | { 8220, 14, 6303360, 6751140 }, |
| 1444 | { 8220, 13, 6751140,4294967295 }, |
| 1445 | { 8235, 16, 0, 24106200 }, |
| 1446 | { 8235, 9, 24106200, 25688760 }, |
| 1447 | { 8235, 16, 25688760, 25799640 }, |
| 1448 | { 8235, 9, 25799640,4294967295 }, |
| 1449 | { 2949, 13, 0,4294967295 }, |
| 1450 | { 4391, 26, 0, 5433360 }, |
| 1451 | { 4391, 146, 5433360,4294967295 }, |
| 1452 | { 8254, 26, 0,4294967295 }, |
| 1453 | { 8270, 13, 0,4294967295 }, |
| 1454 | { 4098, 177, 0,4294967295 }, |
| 1455 | { 5824, 26, 0,4294967295 }, |
| 1456 | { 5481, 14, 0,4294967295 }, |
| 1457 | { 2379, 14, 0,4294967295 }, |
| 1458 | { 8288, 35, 0, 7272720 }, |
| 1459 | { 8288, 9, 7317180,4294967295 }, |
| 1460 | { 1850, 134, 0,4294967295 }, |
| 1461 | { 8301, 15, 0, 21485280 }, |
| 1462 | { 8301, 13, 21485280,4294967295 }, |
| 1463 | { 8329, 15, 0, 12000000 }, |
| 1464 | { 8329, 13, 12000000,4294967295 }, |
| 1465 | { 8357, 15, 0, 17785920 }, |
| 1466 | { 8357, 13, 17785920,4294967295 }, |
| 1467 | { 393, 80, 0, 28523580 }, |
| 1468 | { 393, 77, 28523580,4294967295 }, |
| 1469 | { 8388, 13, 0, 14862780 }, |
| 1470 | { 8388, 15, 14862780, 27785280 }, |
| 1471 | { 8388, 13, 27785280,4294967295 }, |
| 1472 | { 2356, 14, 0,4294967295 }, |
| 1473 | { 6173, 58, 0, 3094770 }, |
| 1474 | { 6173, 162, 3094770,4294967295 }, |
| 1475 | { 2973, 15, 0,4294967295 }, |
| 1476 | { 3945, 14, 0,4294967295 }, |
| 1477 | { 5954, 26, 0,4294967295 }, |
| 1478 | { 8404, 12, 0,4294967295 }, |
| 1479 | { 5843, 26, 0,4294967295 }, |
| 1480 | { 4030, 46, 0, 24680100 }, |
| 1481 | { 8424, 13, 0, 16213380 }, |
| 1482 | { 8424, 14, 16213380, 16435200 }, |
| 1483 | { 8424, 13, 16435200,4294967295 }, |
| 1484 | { 8445, 39, 0,4294967295 }, |
| 1485 | { 1995, 13, 0,4294967295 }, |
| 1486 | { 8460, 13, 0, 16213380 }, |
| 1487 | { 8460, 14, 16213380, 16435200 }, |
| 1488 | { 8460, 13, 16435200, 19368420 }, |
| 1489 | { 8460, 14, 19368420, 19560000 }, |
| 1490 | { 8460, 13, 19560000,4294967295 }, |
| 1491 | { 695, 1, 0, 20238060 }, |
| 1492 | { 695, 12, 20238060, 23067600 }, |
| 1493 | { 695, 1, 23067600,4294967295 }, |
| 1494 | { 8477, 12, 0, 20238000 }, |
| 1495 | { 8477, 39, 20238000,4294967295 }, |
| 1496 | { 2201, 46, 0,4294967295 }, |
| 1497 | { 6111, 55, 0, 2534700 }, |
| 1498 | { 6111, 26, 2534700, 16213320 }, |
| 1499 | { 6111, 14, 16213320, 16263720 }, |
| 1500 | { 6111, 26, 16263720,4294967295 }, |
| 1501 | { 1878, 39, 0,4294967295 }, |
| 1502 | { 6899, 78, 0, 5911320 }, |
| 1503 | { 6899, 79, 5911320, 28530780 }, |
| 1504 | { 6899, 77, 28530780,4294967295 }, |
| 1505 | { 8494, 16, 0, 7272540 }, |
| 1506 | { 8494, 9, 7317180,4294967295 }, |
| 1507 | { 8508, 26, 0,4294967295 }, |
| 1508 | { 2061, 131, 0,4294967295 }, |
| 1509 | { 5863, 26, 0,4294967295 }, |
| 1510 | { 5880, 26, 0,4294967295 }, |
| 1511 | { 855, 26, 0,4294967295 }, |
| 1512 | { 5913, 26, 0,4294967295 }, |
| 1513 | { 8530, 15, 0, 1224540 }, |
| 1514 | { 8530, 13, 1224540,4294967295 }, |
| 1515 | { 5461, 13, 0,4294967295 }, |
| 1516 | { 5756, 26, 0,4294967295 }, |
| 1517 | { 313, 16, 0,4294967295 }, |
| 1518 | { 608, 14, 0,4294967295 }, |
| 1519 | { 5688, 26, 0,4294967295 }, |
| 1520 | { 2093, 16, 0,4294967295 }, |
| 1521 | { 2144, 16, 0, 26736900 }, |
| 1522 | { 2144, 190, 26736900,4294967295 }, |
| 1523 | { 734, 13, 0,4294967295 }, |
| 1524 | { 8552, 9, 7317180,4294967295 }, |
| 1525 | { 6001, 30, 0, 20930040 }, |
| 1526 | { 6001, 43, 20930040, 21128580 }, |
| 1527 | { 6001, 30, 21128580, 21995640 }, |
| 1528 | { 6001, 43, 21995640, 22164060 }, |
| 1529 | { 6001, 30, 22164060, 24617760 }, |
| 1530 | { 6001, 43, 24617760, 25345020 }, |
| 1531 | { 6001, 30, 25345020, 25647600 }, |
| 1532 | { 6001, 43, 25647600, 25879200 }, |
| 1533 | { 6001, 30, 25879200, 26168820 }, |
| 1534 | { 6001, 43, 26168820, 26393280 }, |
| 1535 | { 6001, 30, 26393280, 26695681 }, |
| 1536 | { 6001, 43, 26695681, 26927340 }, |
| 1537 | { 6001, 30, 26927340, 27219841 }, |
| 1538 | { 6001, 43, 27219841, 27451500 }, |
| 1539 | { 6001, 30, 27451500, 27744001 }, |
| 1540 | { 6001, 43, 27744001, 27971520 }, |
| 1541 | { 6001, 30, 27971520,4294967295 }, |
| 1542 | { 6094, 54, 0,4294967295 }, |
| 1543 | { 6133, 56, 0,4294967295 }, |
| 1544 | { 8568, 29, 0,4294967295 }, |
| 1545 | { 7066, 122, 0,4294967295 }, |
| 1546 | { 7113, 130, 0,4294967295 }, |
| 1547 | { 8589, 22, 0, 6484500 }, |
| 1548 | { 8589, 46, 6484500, 24680100 }, |
| 1549 | { 7226, 152, 0,4294967295 }, |
| 1550 | { 7295, 164, 0,4294967295 }, |
| 1551 | { 8607, 75, 0,4294967295 }, |
| 1552 | { 7374, 184, 0,4294967295 }, |
| 1553 | { 1429, 62, 0,4294967295 }, |
| 1554 | { 5570, 21, 0,4294967295 }, |
| 1555 | { 5395, 11, 0, 18319440 }, |
| 1556 | { 5395, 101, 18319440, 28487160 }, |
| 1557 | { 5395, 100, 28487160,4294967295 }, |
| 1558 | { 3968, 63, 0, 27781800 }, |
| 1559 | { 5511, 17, 0, 21161640 }, |
| 1560 | { 5511, 115, 21161640, 23570760 }, |
| 1561 | { 5511, 17, 23570760,4294967295 }, |
| 1562 | { 5523, 158, 0, 11547060 }, |
| 1563 | { 5523, 19, 11547060, 18319560 }, |
| 1564 | { 5523, 102, 18319560, 28487160 }, |
| 1565 | { 5523, 100, 28487160,4294967295 }, |
| 1566 | { 5368, 8, 0, 11547060 }, |
| 1567 | { 5368, 20, 11547060, 18319500 }, |
| 1568 | { 5368, 102, 18319500, 28487160 }, |
| 1569 | { 5368, 100, 28487160,4294967295 }, |
| 1570 | { 964, 25, 0, 11475120 }, |
| 1571 | { 964, 174, 11475120,4294967295 }, |
| 1572 | { 8624, 102, 18319560, 28487160 }, |
| 1573 | { 8624, 100, 28487160,4294967295 }, |
| 1574 | { 3607, 21, 0,4294967295 }, |
| 1575 | { 5534, 82, 0, 1269840 }, |
| 1576 | { 5534, 21, 1269840,4294967295 }, |
| 1577 | { 3653, 33, 0, 11391600 }, |
| 1578 | { 3653, 31, 11391600,4294967295 }, |
| 1579 | { 4466, 89, 0,4294967295 }, |
| 1580 | { 4086, 63, 0,4294967295 }, |
| 1581 | { 3778, 70, 0, 11393040 }, |
| 1582 | { 3778, 109, 11393040,4294967295 }, |
| 1583 | { 5989, 41, 0,4294967295 }, |
| 1584 | { 4601, 187, 0, 23570880 }, |
| 1585 | { 4601, 95, 23570880, 24316920 }, |
| 1586 | { 4601, 187, 24316920,4294967295 }, |
| 1587 | { 4511, 87, 0, 13882710 }, |
| 1588 | { 4511, 110, 13882710, 19083990 }, |
| 1589 | { 4511, 87, 19083990,4294967295 }, |
| 1590 | { 4540, 63, 0, 27781740 }, |
| 1591 | { 1093, 53, 0, 646200 }, |
| 1592 | { 1093, 34, 646200,4294967295 }, |
| 1593 | { 6192, 59, 0, 3331620 }, |
| 1594 | { 6192, 90, 3331620, 16152000 }, |
| 1595 | { 6192, 59, 16152000,4294967295 }, |
| 1596 | { 3596, 82, 0,4294967295 }, |
| 1597 | { 6159, 57, 0, 11406060 }, |
| 1598 | { 6159, 167, 11406060,4294967295 }, |
| 1599 | { 8636, 63, 0, 24554700 }, |
| 1600 | { 8651, 96, 0, 13674120 }, |
| 1601 | { 8651, 63, 13674120,4294967295 }, |
| 1602 | { 4795, 96, 0, 13674120 }, |
| 1603 | { 4795, 63, 13674120,4294967295 }, |
| 1604 | { 1259, 89, 2863680,4294967295 }, |
| 1605 | { 2704, 85, 0,4294967295 }, |
| 1606 | { 4771, 86, 0,4294967295 }, |
| 1607 | { 4184, 95, 0,4294967295 }, |
| 1608 | { 7006, 92, 0,4294967295 }, |
| 1609 | { 6992, 91, 0,4294967295 }, |
| 1610 | { 1290, 96, 0,4294967295 }, |
| 1611 | { 3560, 2, 0,4294967295 }, |
| 1612 | { 4316, 98, 0,4294967295 }, |
| 1613 | { 4239, 99, 0, 646260 }, |
| 1614 | { 4239, 139, 646260,4294967295 }, |
| 1615 | { 1185, 128, 0,4294967295 }, |
| 1616 | { 8661, 187, 0, 17881380 }, |
| 1617 | { 8661, 182, 17881380, 21930540 }, |
| 1618 | { 8661, 187, 21930540,4294967295 }, |
| 1619 | { 992, 87, 0,4294967295 }, |
| 1620 | { 4197, 106, 0,4294967295 }, |
| 1621 | { 4859, 116, 0, 6311040 }, |
| 1622 | { 4859, 117, 6311040,4294967295 }, |
| 1623 | { 5976, 38, 0, 6311040 }, |
| 1624 | { 5976, 117, 6311040,4294967295 }, |
| 1625 | { 5547, 21, 0,4294967295 }, |
| 1626 | { 1211, 114, 0, 15760320 }, |
| 1627 | { 1211, 47, 15760320,4294967295 }, |
| 1628 | { 4017, 115, 0,4294967295 }, |
| 1629 | { 1349, 90, 0,4294967295 }, |
| 1630 | { 7182, 144, 0,4294967295 }, |
| 1631 | { 6920, 82, 0,4294967295 }, |
| 1632 | { 2554, 63, 0,4294967295 }, |
| 1633 | { 8675, 106, 0, 21161940 }, |
| 1634 | { 8675, 136, 21161940, 23571060 }, |
| 1635 | { 8675, 106, 23571060,4294967295 }, |
| 1636 | { 4135, 136, 0,4294967295 }, |
| 1637 | { 4229, 137, 0,4294967295 }, |
| 1638 | { 7145, 176, 0, 11547120 }, |
| 1639 | { 7145, 138, 11547120, 18319560 }, |
| 1640 | { 7145, 102, 18319560, 28487160 }, |
| 1641 | { 7145, 100, 28487160,4294967295 }, |
| 1642 | { 6961, 89, 0,4294967295 }, |
| 1643 | { 8693, 90, 0, 9466080 }, |
| 1644 | { 8693, 92, 9466080,4294967295 }, |
| 1645 | { 4214, 104, 0, 23992740 }, |
| 1646 | { 4214, 149, 23992740, 25424100 }, |
| 1647 | { 4214, 104, 25424100,4294967295 }, |
| 1648 | { 5559, 82, 0, 1269840 }, |
| 1649 | { 5559, 21, 1269840,4294967295 }, |
| 1650 | { 8708, 101, 18319500, 28487160 }, |
| 1651 | { 8708, 100, 28487160,4294967295 }, |
| 1652 | { 4269, 103, 0, 11547060 }, |
| 1653 | { 4269, 150, 11547060, 18319500 }, |
| 1654 | { 4269, 101, 18319500, 25755480 }, |
| 1655 | { 4269, 102, 25755480, 28487160 }, |
| 1656 | { 4269, 100, 28487160,4294967295 }, |
| 1657 | { 3584, 21, 0,4294967295 }, |
| 1658 | { 4408, 153, 0,4294967295 }, |
| 1659 | { 7245, 155, 0, 6178680 }, |
| 1660 | { 7245, 168, 6178680, 6440760 }, |
| 1661 | { 7245, 155, 6440760, 11394360 }, |
| 1662 | { 7245, 179, 11394360,4294967295 }, |
| 1663 | { 3279, 104, 0,4294967295 }, |
| 1664 | { 1053, 47, 0,4294967295 }, |
| 1665 | { 3300, 159, 0,4294967295 }, |
| 1666 | { 4297, 115, 0, 23570760 }, |
| 1667 | { 3263, 166, 0,4294967295 }, |
| 1668 | { 4781, 168, 0, 11394360 }, |
| 1669 | { 4781, 179, 11394360,4294967295 }, |
| 1670 | { 3915, 169, 0, 11185680 }, |
| 1671 | { 3915, 73, 11185680,4294967295 }, |
| 1672 | { 2772, 93, 0,4294967295 }, |
| 1673 | { 1317, 87, 0, 9333750 }, |
| 1674 | { 1317, 36, 9333750,4294967295 }, |
| 1675 | { 2821, 97, 0,4294967295 }, |
| 1676 | { 1021, 124, 0,4294967295 }, |
| 1677 | { 1159, 178, 0,4294967295 }, |
| 1678 | { 8722, 187, 0, 5914980 }, |
| 1679 | { 8722, 115, 5914980, 21930480 }, |
| 1680 | { 8722, 182, 21930480,4294967295 }, |
| 1681 | { 6977, 89, 0,4294967295 }, |
| 1682 | { 4710, 182, 0,4294967295 }, |
| 1683 | { 4828, 187, 0,4294967295 }, |
| 1684 | { 1235, 126, 0,4294967295 }, |
| 1685 | { 3883, 163, 0, 11596200 }, |
| 1686 | { 3883, 188, 11596200,4294967295 }, |
| 1687 | { 3747, 189, 0, 11426160 }, |
| 1688 | { 3747, 24, 11426160,4294967295 }, |
| 1689 | { 3663, 32, 0, 12090360 }, |
| 1690 | { 3663, 65, 12090360, 12337980 }, |
| 1691 | { 3663, 32, 12337980,4294967295 }, |
| 1692 | { 5671, 26, 0,4294967295 }, |
| 1693 | { 6628, 65, 0,4294967295 }, |
| 1694 | { 3727, 42, 0,4294967295 }, |
| 1695 | { 1395, 65, 0,4294967295 }, |
| 1696 | { 8736, 65, 0,4294967295 }, |
| 1697 | { 2748, 75, 0,4294967295 }, |
| 1698 | { 7272, 161, 0,4294967295 }, |
| 1699 | { 6821, 75, 0,4294967295 }, |
| 1700 | { 6644, 66, 0,4294967295 }, |
| 1701 | { 1670, 27, 0,4294967295 }, |
| 1702 | { 1635, 29, 0,4294967295 }, |
| 1703 | { 1799, 27, 0,4294967295 }, |
| 1704 | { 1583, 27, 0,4294967295 }, |
| 1705 | { 3637, 28, 0,4294967295 }, |
| 1706 | { 1516, 29, 0,4294967295 }, |
| 1707 | { 8753, 29, 0,4294967295 }, |
| 1708 | { 1547, 29, 0, 5870280 }, |
| 1709 | { 1547, 113, 5870280,4294967295 }, |
| 1710 | { 1727, 29, 0,4294967295 }, |
| 1711 | { 1762, 30, 0,4294967295 }, |
| 1712 | { 1463, 29, 0,4294967295 }, |
| 1713 | { 2406, 75, 0,4294967295 }, |
| 1714 | { 6441, 62, 0,4294967295 }, |
| 1715 | { 6216, 62, 0,4294967295 }, |
| 1716 | { 3620, 125, 11697000, 24317220 }, |
| 1717 | { 2300, 63, 0,4294967295 }, |
| 1718 | { 6336, 62, 0,4294967295 }, |
| 1719 | { 4757, 62, 0,4294967295 }, |
| 1720 | { 6488, 62, 0,4294967295 }, |
| 1721 | { 2167, 62, 0,4294967295 }, |
| 1722 | { 3928, 63, 0,4294967295 }, |
| 1723 | { 3806, 62, 0,4294967295 }, |
| 1724 | { 8772, 62, 0,4294967295 }, |
| 1725 | { 2583, 125, 0, 10699020 }, |
| 1726 | { 2583, 63, 10699020,4294967295 }, |
| 1727 | { 6289, 62, 0,4294967295 }, |
| 1728 | { 2338, 94, 0, 962040 }, |
| 1729 | { 2338, 75, 962040,4294967295 }, |
| 1730 | { 6307, 62, 0,4294967295 }, |
| 1731 | { 8788, 40, 0, 962040 }, |
| 1732 | { 8788, 75, 962040,4294967295 }, |
| 1733 | { 6612, 63, 0,4294967295 }, |
| 1734 | { 8804, 40, 0, 962040 }, |
| 1735 | { 8804, 75, 962040,4294967295 }, |
| 1736 | { 1130, 63, 0, 4465260 }, |
| 1737 | { 1130, 173, 4465260, 8046540 }, |
| 1738 | { 1130, 63, 8046540, 24553260 }, |
| 1739 | { 1130, 173, 24553260,4294967295 }, |
| 1740 | { 8823, 40, 0, 962040 }, |
| 1741 | { 8823, 75, 962040,4294967295 }, |
| 1742 | { 3979, 125, 0, 10114500 }, |
| 1743 | { 3979, 63, 10114500, 21686400 }, |
| 1744 | { 3979, 64, 21686400, 23571300 }, |
| 1745 | { 3979, 63, 23571300,4294967295 }, |
| 1746 | { 2527, 125, 0, 10779720 }, |
| 1747 | { 2527, 63, 10779720,4294967295 }, |
| 1748 | { 3213, 62, 0, 3542400 }, |
| 1749 | { 3213, 65, 3542400, 11959260 }, |
| 1750 | { 3213, 62, 11959260, 13803900 }, |
| 1751 | { 3213, 65, 13803900,4294967295 }, |
| 1752 | { 6506, 62, 0,4294967295 }, |
| 1753 | { 2501, 40, 0, 962040 }, |
| 1754 | { 2501, 75, 962040,4294967295 }, |
| 1755 | { 6365, 62, 0,4294967295 }, |
| 1756 | { 4892, 62, 0,4294967295 }, |
| 1757 | { 6397, 62, 0,4294967295 }, |
| 1758 | { 6582, 63, 0,4294967295 }, |
| 1759 | { 3693, 125, 0, 11172900 }, |
| 1760 | { 3693, 63, 11172900, 21686400 }, |
| 1761 | { 3693, 64, 21686400, 23572680 }, |
| 1762 | { 3693, 125, 23572680,4294967295 }, |
| 1763 | { 6410, 62, 0,4294967295 }, |
| 1764 | { 3537, 125, 0, 11172900 }, |
| 1765 | { 3537, 63, 11172900, 11596320 }, |
| 1766 | { 3537, 125, 11596320,4294967295 }, |
| 1767 | { 6458, 62, 0,4294967295 }, |
| 1768 | { 4284, 62, 0,4294967295 }, |
| 1769 | { 6424, 62, 0,4294967295 }, |
| 1770 | { 6275, 62, 0,4294967295 }, |
| 1771 | { 8837, 125, 0, 10114500 }, |
| 1772 | { 8837, 63, 10114500,4294967295 }, |
| 1773 | { 6324, 62, 0,4294967295 }, |
| 1774 | { 4331, 107, 0, 10114440 }, |
| 1775 | { 4331, 125, 10114440, 11172900 }, |
| 1776 | { 4331, 63, 11172900, 11435040 }, |
| 1777 | { 4331, 154, 11435040,4294967295 }, |
| 1778 | { 6470, 62, 0,4294967295 }, |
| 1779 | { 6245, 62, 0,4294967295 }, |
| 1780 | { 4451, 125, 11697000, 24680100 }, |
| 1781 | { 8849, 125, 0, 10779780 }, |
| 1782 | { 8849, 63, 10779780, 12795660 }, |
| 1783 | { 8849, 125, 12795660, 14328060 }, |
| 1784 | { 8849, 63, 14328060, 23268960 }, |
| 1785 | { 8849, 125, 23268960,4294967295 }, |
| 1786 | { 6383, 62, 0,4294967295 }, |
| 1787 | { 6599, 63, 0,4294967295 }, |
| 1788 | { 6523, 62, 0,4294967295 }, |
| 1789 | { 8867, 125, 0, 10114500 }, |
| 1790 | { 8867, 63, 10114500,4294967295 }, |
| 1791 | { 6202, 62, 0,4294967295 }, |
| 1792 | { 8882, 125, 11596320, 24317220 }, |
| 1793 | { 6352, 62, 0,4294967295 }, |
| 1794 | { 6567, 62, 0,4294967295 }, |
| 1795 | { 6231, 62, 0,4294967295 }, |
| 1796 | { 8899, 125, 0, 10114500 }, |
| 1797 | { 8899, 63, 10114500, 14852220 }, |
| 1798 | { 8899, 62, 14852220, 15688860 }, |
| 1799 | { 8899, 63, 15688860,4294967295 }, |
| 1800 | { 4727, 183, 0,4294967295 }, |
| 1801 | { 3190, 62, 0,4294967295 }, |
| 1802 | { 6261, 62, 0,4294967295 }, |
| 1803 | { 6540, 62, 0,4294967295 }, |
| 1804 | { 5078, 4, 0,4294967295 }, |
| 1805 | { 6947, 88, 0,4294967295 }, |
| 1806 | { 6046, 48, 0,4294967295 }, |
| 1807 | { 6063, 49, 0,4294967295 }, |
| 1808 | { 5029, 4, 0,4294967295 }, |
| 1809 | { 6661, 69, 0,4294967295 }, |
| 1810 | { 7260, 157, 0,4294967295 }, |
| 1811 | { 7050, 118, 0,4294967295 }, |
| 1812 | { 4069, 121, 0,4294967295 }, |
| 1813 | { 5098, 4, 0,4294967295 }, |
| 1814 | { 7211, 151, 0,4294967295 }, |
| 1815 | { 4422, 18, 0,4294967295 }, |
| 1816 | { 932, 130, 0,4294967295 }, |
| 1817 | { 3706, 141, 0, 23661600 }, |
| 1818 | { 3015, 45, 0,4294967295 }, |
| 1819 | { 3157, 172, 0,4294967295 }, |
| 1820 | { 2237, 60, 0,4294967295 }, |
| 1821 | { 7360, 180, 0,4294967295 }, |
| 1822 | { 7327, 170, 0,4294967295 }, |
| 1823 | { 3902, 67, 0,4294967295 }, |
| 1824 | { 7343, 175, 0,4294967295 }, |
| 1825 | { 6678, 61, 0, 8415660 }, |
| 1826 | { 6678, 71, 8415660,4294967295 }, |
| 1827 | { 6696, 72, 0,4294967295 }, |
| 1828 | { 3822, 160, 0,4294967295 }, |
| 1829 | { 6018, 81, 0, 16291560 }, |
| 1830 | { 6018, 44, 16291560,4294967295 }, |
| 1831 | { 2723, 10, 0, 7272660 }, |
| 1832 | { 2723, 84, 7272660,4294967295 }, |
| 1833 | { 3049, 145, 0,4294967295 }, |
| 1834 | { 3998, 112, 0,4294967295 }, |
| 1835 | { 7019, 105, 0,4294967295 }, |
| 1836 | { 2842, 108, 0, 12432240 }, |
| 1837 | { 2842, 120, 12432240,4294967295 }, |
| 1838 | { 4877, 120, 0,4294967295 }, |
| 1839 | { 4051, 119, 0,4294967295 }, |
| 1840 | { 8914, 35, 0, 7272720 }, |
| 1841 | { 8914, 156, 7272720,4294967295 }, |
| 1842 | { 7084, 127, 0,4294967295 }, |
| 1843 | { 7132, 132, 0,4294967295 }, |
| 1844 | { 4168, 133, 0,4294967295 }, |
| 1845 | { 7098, 129, 0,4294967295 }, |
| 1846 | { 3126, 35, 0, 7272720 }, |
| 1847 | { 3126, 156, 7272720,4294967295 }, |
| 1848 | { 7155, 140, 0,4294967295 }, |
| 1849 | { 7194, 147, 0,4294967295 }, |
| 1850 | { 3096, 148, 0,4294967295 }, |
| 1851 | { 4807, 141, 0,4294967295 }, |
| 1852 | { 6076, 51, 0,4294967295 }, |
| 1853 | { 6031, 135, 0, 16291560 }, |
| 1854 | { 6031, 44, 16291560,4294967295 }, |
| 1855 | { 7312, 165, 0,4294967295 }, |
| 1856 | { 6712, 74, 0,4294967295 }, |
| 1857 | { 4583, 171, 0,4294967295 }, |
| 1858 | { 7392, 185, 0,4294967295 }, |
| 1859 | { 7405, 186, 0,4294967295 }, |
| 1860 | }; |
| 1861 | |
| 1862 | #endif // timezone_locale but not ICU |
| 1863 | |
| 1864 | static inline constexpr char windowsIdData[] = { |
| 1865 | 0x41, 0x66, 0x67, 0x68, 0x61, 0x6e, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 1866 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x6c, 0x61, 0x73, 0x6b, 0x61, |
| 1867 | 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 1868 | 0x41, 0x6c, 0x65, 0x75, 0x74, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 1869 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x6c, 0x74, 0x61, 0x69, 0x20, 0x53, 0x74, 0x61, |
| 1870 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x20, |
| 1871 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, |
| 1872 | 0x61, 0x62, 0x69, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
| 1873 | 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 1874 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, |
| 1875 | 0x6e, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 1876 | 0x0, 0x41, 0x73, 0x74, 0x72, 0x61, 0x6b, 0x68, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 1877 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, |
| 1878 | 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 1879 | 0x41, 0x55, 0x53, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 1880 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x75, 0x73, 0x20, 0x43, 0x65, |
| 1881 | 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x57, 0x2e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 1882 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x55, 0x53, 0x20, 0x45, 0x61, 0x73, 0x74, 0x65, |
| 1883 | 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 1884 | 0x0, 0x41, 0x7a, 0x65, 0x72, 0x62, 0x61, 0x69, 0x6a, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 1885 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x41, 0x7a, 0x6f, 0x72, 0x65, 0x73, |
| 1886 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, |
| 1887 | 0x61, 0x68, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 1888 | 0x6d, 0x65, 0x0, 0x42, 0x61, 0x6e, 0x67, 0x6c, 0x61, 0x64, 0x65, 0x73, 0x68, 0x20, 0x53, 0x74, |
| 1889 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x42, 0x65, 0x6c, 0x61, |
| 1890 | 0x72, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
| 1891 | 0x65, 0x0, 0x42, 0x6f, 0x75, 0x67, 0x61, 0x69, 0x6e, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x20, 0x53, |
| 1892 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x61, 0x6e, |
| 1893 | 0x61, 0x64, 0x61, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 1894 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x61, 0x70, 0x65, 0x20, 0x56, |
| 1895 | 0x65, 0x72, 0x64, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 1896 | 0x6d, 0x65, 0x0, 0x43, 0x61, 0x75, 0x63, 0x61, 0x73, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 1897 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x2e, 0x20, 0x41, |
| 1898 | 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 1899 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, |
| 1900 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 1901 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69, |
| 1902 | 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 1903 | 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x42, 0x72, 0x61, 0x7a, 0x69, 0x6c, 0x69, 0x61, |
| 1904 | 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 1905 | 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x20, 0x53, |
| 1906 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, |
| 1907 | 0x74, 0x72, 0x61, 0x6c, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x61, 0x6e, 0x20, 0x53, 0x74, |
| 1908 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, |
| 1909 | 0x72, 0x61, 0x6c, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 1910 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, |
| 1911 | 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 1912 | 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 1913 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x29, 0x0, 0x43, |
| 1914 | 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x20, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x73, 0x20, 0x53, |
| 1915 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x43, 0x68, 0x69, |
| 1916 | 0x6e, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 1917 | 0x0, 0x43, 0x75, 0x62, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
| 1918 | 0x69, 0x6d, 0x65, 0x0, 0x44, 0x61, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x53, 0x74, 0x61, |
| 1919 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x41, 0x66, |
| 1920 | 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 1921 | 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20, |
| 1922 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, |
| 1923 | 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 1924 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x2e, 0x20, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x41, |
| 1925 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 1926 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x20, 0x49, 0x73, 0x6c, 0x61, |
| 1927 | 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 1928 | 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 1929 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, |
| 1930 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, |
| 1931 | 0x78, 0x69, 0x63, 0x6f, 0x29, 0x0, 0x45, 0x67, 0x79, 0x70, 0x74, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 1932 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x45, 0x6b, 0x61, 0x74, 0x65, 0x72, |
| 1933 | 0x69, 0x6e, 0x62, 0x75, 0x72, 0x67, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 1934 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x46, 0x69, 0x6a, 0x69, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
| 1935 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x46, 0x4c, 0x45, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 1936 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x65, 0x6f, 0x72, 0x67, 0x69, |
| 1937 | 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 1938 | 0x0, 0x47, 0x4d, 0x54, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 1939 | 0x6d, 0x65, 0x0, 0x47, 0x72, 0x65, 0x65, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, |
| 1940 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x47, 0x72, 0x65, 0x65, 0x6e, |
| 1941 | 0x77, 0x69, 0x63, 0x68, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 1942 | 0x6d, 0x65, 0x0, 0x47, 0x54, 0x42, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 1943 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x48, 0x61, 0x69, 0x74, 0x69, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 1944 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x48, 0x61, 0x77, 0x61, 0x69, 0x69, 0x61, |
| 1945 | 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, |
| 1946 | 0x49, 0x6e, 0x64, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
| 1947 | 0x69, 0x6d, 0x65, 0x0, 0x49, 0x72, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 1948 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x49, 0x73, 0x72, 0x61, 0x65, 0x6c, 0x20, 0x53, 0x74, |
| 1949 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4a, 0x6f, 0x72, 0x64, |
| 1950 | 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 1951 | 0x0, 0x4b, 0x61, 0x6c, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x72, 0x61, 0x64, 0x20, 0x53, 0x74, 0x61, |
| 1952 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4b, 0x6f, 0x72, 0x65, 0x61, |
| 1953 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4c, |
| 1954 | 0x69, 0x62, 0x79, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 1955 | 0x6d, 0x65, 0x0, 0x4c, 0x69, 0x6e, 0x65, 0x20, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x73, 0x20, |
| 1956 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4c, 0x6f, |
| 1957 | 0x72, 0x64, 0x20, 0x48, 0x6f, 0x77, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 1958 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x67, 0x61, 0x64, 0x61, 0x6e, 0x20, 0x53, 0x74, |
| 1959 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x67, 0x61, |
| 1960 | 0x6c, 0x6c, 0x61, 0x6e, 0x65, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 1961 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x72, 0x71, 0x75, 0x65, 0x73, 0x61, 0x73, 0x20, 0x53, |
| 1962 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x61, 0x75, |
| 1963 | 0x72, 0x69, 0x74, 0x69, 0x75, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 1964 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x20, 0x45, 0x61, 0x73, 0x74, |
| 1965 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, |
| 1966 | 0x6f, 0x6e, 0x74, 0x65, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
| 1967 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x6f, 0x72, 0x6f, 0x63, 0x63, 0x6f, 0x20, |
| 1968 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x6f, |
| 1969 | 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 1970 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x53, 0x74, |
| 1971 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, |
| 1972 | 0x69, 0x63, 0x6f, 0x29, 0x0, 0x4d, 0x79, 0x61, 0x6e, 0x6d, 0x61, 0x72, 0x20, 0x53, 0x74, 0x61, |
| 1973 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x2e, 0x20, 0x43, 0x65, |
| 1974 | 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 1975 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x61, 0x6d, 0x69, 0x62, 0x69, 0x61, |
| 1976 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, |
| 1977 | 0x65, 0x70, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 1978 | 0x6d, 0x65, 0x0, 0x4e, 0x65, 0x77, 0x20, 0x5a, 0x65, 0x61, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, |
| 1979 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x65, 0x77, |
| 1980 | 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x6c, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
| 1981 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x66, 0x6f, 0x6c, 0x6b, 0x20, |
| 1982 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, |
| 1983 | 0x72, 0x74, 0x68, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x45, 0x61, 0x73, 0x74, 0x20, 0x53, 0x74, |
| 1984 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x74, |
| 1985 | 0x68, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 1986 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x20, 0x4b, 0x6f, 0x72, 0x65, 0x61, |
| 1987 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x4f, |
| 1988 | 0x6d, 0x73, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
| 1989 | 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x41, 0x20, 0x53, 0x74, 0x61, |
| 1990 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, |
| 1991 | 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 1992 | 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 1993 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x28, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x29, 0x0, |
| 1994 | 0x50, 0x61, 0x6b, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, |
| 1995 | 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x50, 0x61, 0x72, 0x61, 0x67, 0x75, 0x61, 0x79, 0x20, |
| 1996 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x51, 0x79, |
| 1997 | 0x7a, 0x79, 0x6c, 0x6f, 0x72, 0x64, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 1998 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x52, 0x6f, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x20, 0x53, 0x74, |
| 1999 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x52, 0x75, 0x73, 0x73, |
| 2000 | 0x69, 0x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x5a, 0x6f, 0x6e, 0x65, 0x20, 0x31, 0x30, 0x0, |
| 2001 | 0x52, 0x75, 0x73, 0x73, 0x69, 0x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, 0x5a, 0x6f, 0x6e, 0x65, |
| 2002 | 0x20, 0x31, 0x31, 0x0, 0x52, 0x75, 0x73, 0x73, 0x69, 0x61, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x20, |
| 2003 | 0x5a, 0x6f, 0x6e, 0x65, 0x20, 0x33, 0x0, 0x52, 0x75, 0x73, 0x73, 0x69, 0x61, 0x6e, 0x20, 0x53, |
| 2004 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x41, 0x20, |
| 2005 | 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 2006 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x41, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
| 2007 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, |
| 2008 | 0x41, 0x20, 0x57, 0x65, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
| 2009 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, 0x69, 0x6e, 0x74, 0x20, 0x50, 0x69, |
| 2010 | 0x65, 0x72, 0x72, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 2011 | 0x6d, 0x65, 0x0, 0x53, 0x61, 0x6b, 0x68, 0x61, 0x6c, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 2012 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, 0x6d, 0x6f, 0x61, 0x20, |
| 2013 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, |
| 2014 | 0x6f, 0x20, 0x54, 0x6f, 0x6d, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, |
| 2015 | 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x61, 0x72, 0x61, 0x74, 0x6f, 0x76, 0x20, 0x53, 0x74, 0x61, |
| 2016 | 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x45, 0x20, 0x41, 0x73, |
| 2017 | 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 2018 | 0x0, 0x53, 0x69, 0x6e, 0x67, 0x61, 0x70, 0x6f, 0x72, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 2019 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x41, |
| 2020 | 0x66, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
| 2021 | 0x69, 0x6d, 0x65, 0x0, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x20, 0x53, 0x75, 0x64, 0x61, 0x6e, 0x20, |
| 2022 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x72, |
| 2023 | 0x69, 0x20, 0x4c, 0x61, 0x6e, 0x6b, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 2024 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x75, 0x64, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 2025 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x53, 0x79, 0x72, 0x69, 0x61, 0x20, |
| 2026 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x61, |
| 2027 | 0x69, 0x70, 0x65, 0x69, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 2028 | 0x6d, 0x65, 0x0, 0x54, 0x61, 0x73, 0x6d, 0x61, 0x6e, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 2029 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, 0x63, 0x61, 0x6e, 0x74, |
| 2030 | 0x69, 0x6e, 0x73, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, |
| 2031 | 0x65, 0x0, 0x54, 0x6f, 0x6b, 0x79, 0x6f, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 2032 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, 0x6d, 0x73, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, |
| 2033 | 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x6f, 0x6e, 0x67, 0x61, 0x20, |
| 2034 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x72, |
| 2035 | 0x61, 0x6e, 0x73, 0x62, 0x61, 0x69, 0x6b, 0x61, 0x6c, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, |
| 2036 | 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x75, 0x72, 0x6b, 0x65, 0x79, 0x20, 0x53, |
| 2037 | 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x54, 0x75, 0x72, |
| 2038 | 0x6b, 0x73, 0x20, 0x41, 0x6e, 0x64, 0x20, 0x43, 0x61, 0x69, 0x63, 0x6f, 0x73, 0x20, 0x53, 0x74, |
| 2039 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x6c, 0x61, 0x61, |
| 2040 | 0x6e, 0x62, 0x61, 0x61, 0x74, 0x61, 0x72, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 2041 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x53, 0x20, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, |
| 2042 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, |
| 2043 | 0x53, 0x20, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 2044 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x55, 0x54, 0x43, 0x0, 0x55, 0x54, 0x43, |
| 2045 | 0x2b, 0x31, 0x32, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x33, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, |
| 2046 | 0x32, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x38, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x39, 0x0, |
| 2047 | 0x55, 0x54, 0x43, 0x2d, 0x31, 0x31, 0x0, 0x56, 0x65, 0x6e, 0x65, 0x7a, 0x75, 0x65, 0x6c, 0x61, |
| 2048 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x56, |
| 2049 | 0x6c, 0x61, 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 2050 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x56, 0x6f, 0x6c, 0x67, 0x6f, 0x67, 0x72, |
| 2051 | 0x61, 0x64, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, |
| 2052 | 0x0, 0x57, 0x2e, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x20, 0x53, 0x74, |
| 2053 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x43, |
| 2054 | 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x20, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x20, 0x53, 0x74, |
| 2055 | 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x45, |
| 2056 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, |
| 2057 | 0x69, 0x6d, 0x65, 0x0, 0x57, 0x2e, 0x20, 0x4d, 0x6f, 0x6e, 0x67, 0x6f, 0x6c, 0x69, 0x61, 0x20, |
| 2058 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x65, |
| 2059 | 0x73, 0x74, 0x20, 0x41, 0x73, 0x69, 0x61, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, |
| 2060 | 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x65, 0x73, 0x74, 0x20, 0x42, 0x61, 0x6e, 0x6b, 0x20, |
| 2061 | 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x57, 0x65, |
| 2062 | 0x73, 0x74, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, |
| 2063 | 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x73, 0x6b, |
| 2064 | 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x0, 0x59, |
| 2065 | 0x75, 0x6b, 0x6f, 0x6e, 0x20, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x20, 0x54, 0x69, |
| 2066 | 0x6d, 0x65, 0x0 |
| 2067 | }; |
| 2068 | |
| 2069 | static inline constexpr char ianaListData[] = { |
| 2070 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x62, 0x75, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2071 | 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x63, 0x68, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x20, 0x41, 0x6d, 0x65, |
| 2072 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x6e, 0x65, 0x61, 0x75, 0x20, 0x41, 0x6d, 0x65, 0x72, |
| 2073 | 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x74, 0x6c, 0x61, 0x6b, 0x61, 0x74, 0x6c, 0x61, 0x20, 0x41, |
| 2074 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x6d, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, |
| 2075 | 0x69, 0x63, 0x61, 0x2f, 0x53, 0x69, 0x74, 0x6b, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 2076 | 0x61, 0x2f, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x61, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 2077 | 0x61, 0x2f, 0x41, 0x64, 0x61, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x72, 0x6e, |
| 2078 | 0x61, 0x75, 0x6c, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x68, 0x72, 0x61, 0x69, 0x6e, |
| 2079 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x77, 0x61, 0x69, 0x74, 0x0, 0x41, 0x73, 0x69, |
| 2080 | 0x61, 0x2f, 0x51, 0x61, 0x74, 0x61, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x52, 0x69, 0x79, |
| 2081 | 0x61, 0x64, 0x68, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x64, 0x65, 0x6e, 0x0, 0x45, 0x74, |
| 2082 | 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x34, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x75, 0x73, |
| 2083 | 0x63, 0x61, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x75, 0x62, 0x61, 0x69, 0x0, 0x41, |
| 2084 | 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x67, 0x68, 0x64, 0x61, 0x64, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 2085 | 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x42, 0x75, |
| 2086 | 0x65, 0x6e, 0x6f, 0x73, 0x5f, 0x41, 0x69, 0x72, 0x65, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2087 | 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4c, 0x61, 0x5f, |
| 2088 | 0x52, 0x69, 0x6f, 0x6a, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, |
| 2089 | 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x52, 0x69, 0x6f, 0x5f, 0x47, 0x61, 0x6c, 0x6c, |
| 2090 | 0x65, 0x67, 0x6f, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, |
| 2091 | 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6c, 0x74, 0x61, 0x20, 0x41, 0x6d, 0x65, |
| 2092 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, |
| 2093 | 0x61, 0x6e, 0x5f, 0x4a, 0x75, 0x61, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2094 | 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x5f, 0x4c, 0x75, |
| 2095 | 0x69, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, |
| 2096 | 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x54, 0x75, 0x63, 0x75, 0x6d, 0x61, 0x6e, 0x20, 0x41, 0x6d, 0x65, |
| 2097 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x55, |
| 2098 | 0x73, 0x68, 0x75, 0x61, 0x69, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, |
| 2099 | 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x43, 0x61, 0x74, 0x61, 0x6d, 0x61, 0x72, |
| 2100 | 0x63, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, |
| 2101 | 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x43, 0x6f, 0x72, 0x64, 0x6f, 0x62, 0x61, 0x20, 0x41, 0x6d, 0x65, |
| 2102 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4a, |
| 2103 | 0x75, 0x6a, 0x75, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, |
| 2104 | 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4d, 0x65, 0x6e, 0x64, 0x6f, 0x7a, 0x61, 0x0, 0x45, |
| 2105 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x73, 0x74, 0x72, 0x61, 0x6b, 0x68, 0x61, 0x6e, 0x20, |
| 2106 | 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x55, 0x6c, 0x79, 0x61, 0x6e, 0x6f, 0x76, 0x73, 0x6b, |
| 2107 | 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x42, 0x65, 0x72, 0x6d, 0x75, 0x64, |
| 2108 | 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x6c, 0x69, 0x66, 0x61, |
| 2109 | 0x78, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x6c, 0x61, 0x63, 0x65, 0x5f, |
| 2110 | 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x6f, 0x6f, 0x73, |
| 2111 | 0x65, 0x5f, 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, |
| 2112 | 0x6e, 0x63, 0x74, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x68, |
| 2113 | 0x75, 0x6c, 0x65, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x44, 0x61, |
| 2114 | 0x72, 0x77, 0x69, 0x6e, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x45, |
| 2115 | 0x75, 0x63, 0x6c, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x53, |
| 2116 | 0x79, 0x64, 0x6e, 0x65, 0x79, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, |
| 2117 | 0x4d, 0x65, 0x6c, 0x62, 0x6f, 0x75, 0x72, 0x6e, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, |
| 2118 | 0x61, 0x6b, 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x63, 0x6f, 0x72, |
| 2119 | 0x65, 0x73, 0x62, 0x79, 0x73, 0x75, 0x6e, 0x64, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, |
| 2120 | 0x63, 0x2f, 0x41, 0x7a, 0x6f, 0x72, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2121 | 0x2f, 0x42, 0x61, 0x68, 0x69, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x68, 0x61, 0x6b, |
| 2122 | 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x68, 0x69, 0x6d, 0x70, 0x68, 0x75, 0x0, 0x45, |
| 2123 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x69, 0x6e, 0x73, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, |
| 2124 | 0x66, 0x69, 0x63, 0x2f, 0x42, 0x6f, 0x75, 0x67, 0x61, 0x69, 0x6e, 0x76, 0x69, 0x6c, 0x6c, 0x65, |
| 2125 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x65, 0x67, 0x69, 0x6e, 0x61, 0x20, |
| 2126 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x43, 0x75, |
| 2127 | 0x72, 0x72, 0x65, 0x6e, 0x74, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x0, |
| 2128 | 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x43, 0x61, 0x70, 0x65, 0x5f, 0x56, 0x65, |
| 2129 | 0x72, 0x64, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x65, 0x72, 0x65, 0x76, 0x61, 0x6e, |
| 2130 | 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x41, 0x64, 0x65, 0x6c, 0x61, |
| 2131 | 0x69, 0x64, 0x65, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x42, 0x72, |
| 2132 | 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x48, 0x69, 0x6c, 0x6c, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, |
| 2133 | 0x54, 0x2b, 0x36, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x65, 0x6c, 0x69, |
| 2134 | 0x7a, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x73, 0x74, 0x61, |
| 2135 | 0x5f, 0x52, 0x69, 0x63, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x61, |
| 2136 | 0x6c, 0x61, 0x70, 0x61, 0x67, 0x6f, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2137 | 0x45, 0x6c, 0x5f, 0x53, 0x61, 0x6c, 0x76, 0x61, 0x64, 0x6f, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 2138 | 0x69, 0x63, 0x61, 0x2f, 0x47, 0x75, 0x61, 0x74, 0x65, 0x6d, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x6d, |
| 2139 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x65, 0x67, 0x75, 0x63, 0x69, 0x67, 0x61, 0x6c, 0x70, |
| 2140 | 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x75, |
| 2141 | 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x36, 0x0, 0x41, 0x6e, 0x74, 0x61, |
| 2142 | 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, 0x49, 0x6e, |
| 2143 | 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x68, 0x61, 0x67, 0x6f, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 2144 | 0x2f, 0x55, 0x72, 0x75, 0x6d, 0x71, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x69, 0x73, |
| 2145 | 0x68, 0x6b, 0x65, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x75, 0x69, |
| 2146 | 0x61, 0x62, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6d, 0x70, |
| 2147 | 0x6f, 0x5f, 0x47, 0x72, 0x61, 0x6e, 0x64, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 2148 | 0x54, 0x69, 0x72, 0x61, 0x6e, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x50, 0x72, |
| 2149 | 0x61, 0x67, 0x75, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x75, 0x64, 0x61, |
| 2150 | 0x70, 0x65, 0x73, 0x74, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x50, 0x6f, 0x64, 0x67, |
| 2151 | 0x6f, 0x72, 0x69, 0x63, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x65, 0x6c, |
| 2152 | 0x67, 0x72, 0x61, 0x64, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x72, 0x61, |
| 2153 | 0x74, 0x69, 0x73, 0x6c, 0x61, 0x76, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, |
| 2154 | 0x6a, 0x75, 0x62, 0x6c, 0x6a, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 2155 | 0x53, 0x61, 0x72, 0x61, 0x6a, 0x65, 0x76, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 2156 | 0x5a, 0x61, 0x67, 0x72, 0x65, 0x62, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x6b, |
| 2157 | 0x6f, 0x70, 0x6a, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x57, 0x61, 0x72, 0x73, |
| 2158 | 0x61, 0x77, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x31, 0x0, 0x41, 0x6e, |
| 2159 | 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x73, 0x65, 0x79, 0x0, 0x50, |
| 2160 | 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x6f, 0x68, 0x6e, 0x70, 0x65, 0x69, 0x20, 0x50, |
| 2161 | 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4b, 0x6f, 0x73, 0x72, 0x61, 0x65, 0x0, 0x50, 0x61, |
| 2162 | 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x6f, 0x75, 0x6d, 0x65, 0x61, 0x0, 0x50, 0x61, 0x63, |
| 2163 | 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x75, 0x61, 0x64, 0x61, 0x6c, 0x63, 0x61, 0x6e, 0x61, 0x6c, |
| 2164 | 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x66, 0x61, 0x74, 0x65, 0x0, 0x41, |
| 2165 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x6e, 0x69, 0x70, 0x65, 0x67, 0x20, |
| 2166 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x5f, 0x49, |
| 2167 | 0x6e, 0x6c, 0x65, 0x74, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x65, 0x73, |
| 2168 | 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, |
| 2169 | 0x74, 0x61, 0x6d, 0x6f, 0x72, 0x6f, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2170 | 0x4f, 0x6a, 0x69, 0x6e, 0x61, 0x67, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2171 | 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2172 | 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x4b, 0x6e, 0x6f, 0x78, 0x20, 0x41, 0x6d, 0x65, |
| 2173 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x54, 0x65, 0x6c, |
| 2174 | 0x6c, 0x5f, 0x43, 0x69, 0x74, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, |
| 2175 | 0x65, 0x6e, 0x6f, 0x6d, 0x69, 0x6e, 0x65, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2176 | 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x42, 0x65, |
| 2177 | 0x75, 0x6c, 0x61, 0x68, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, |
| 2178 | 0x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, |
| 2179 | 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x44, |
| 2180 | 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x4e, 0x65, 0x77, 0x5f, 0x53, 0x61, 0x6c, 0x65, 0x6d, 0x0, |
| 2181 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x5f, 0x43, |
| 2182 | 0x69, 0x74, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x68, 0x69, |
| 2183 | 0x61, 0x5f, 0x42, 0x61, 0x6e, 0x64, 0x65, 0x72, 0x61, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2184 | 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x72, 0x69, 0x64, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 2185 | 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x65, 0x72, 0x72, 0x65, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, |
| 2186 | 0x69, 0x63, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x68, 0x75, 0x61, 0x68, 0x75, 0x61, 0x0, 0x50, 0x61, |
| 2187 | 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x43, 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x0, 0x41, 0x73, |
| 2188 | 0x69, 0x61, 0x2f, 0x53, 0x68, 0x61, 0x6e, 0x67, 0x68, 0x61, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 2189 | 0x2f, 0x48, 0x6f, 0x6e, 0x67, 0x5f, 0x4b, 0x6f, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 2190 | 0x4d, 0x61, 0x63, 0x61, 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, |
| 2191 | 0x76, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x32, 0x0, |
| 2192 | 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x33, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, |
| 2193 | 0x74, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x79, 0x6f, 0x77, 0x61, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, |
| 2194 | 0x6e, 0x2f, 0x43, 0x6f, 0x6d, 0x6f, 0x72, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2195 | 0x44, 0x6a, 0x69, 0x62, 0x6f, 0x75, 0x74, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2196 | 0x41, 0x73, 0x6d, 0x61, 0x72, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x64, |
| 2197 | 0x64, 0x69, 0x73, 0x5f, 0x41, 0x62, 0x61, 0x62, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, |
| 2198 | 0x2f, 0x4e, 0x61, 0x69, 0x72, 0x6f, 0x62, 0x69, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, |
| 2199 | 0x41, 0x6e, 0x74, 0x61, 0x6e, 0x61, 0x6e, 0x61, 0x72, 0x69, 0x76, 0x6f, 0x0, 0x49, 0x6e, 0x64, |
| 2200 | 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x79, 0x6f, 0x74, 0x74, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, |
| 2201 | 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x67, 0x61, 0x64, 0x69, 0x73, 0x68, 0x75, 0x0, 0x41, 0x66, 0x72, |
| 2202 | 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x72, 0x5f, 0x65, 0x73, 0x5f, 0x53, 0x61, 0x6c, 0x61, 0x61, |
| 2203 | 0x6d, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x61, 0x6d, 0x70, 0x61, 0x6c, 0x61, |
| 2204 | 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x42, 0x72, 0x69, 0x73, 0x62, |
| 2205 | 0x61, 0x6e, 0x65, 0x20, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x69, |
| 2206 | 0x6e, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x43, 0x68, |
| 2207 | 0x69, 0x73, 0x69, 0x6e, 0x61, 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, |
| 2208 | 0x61, 0x6f, 0x5f, 0x50, 0x61, 0x75, 0x6c, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
| 2209 | 0x2f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2210 | 0x4e, 0x61, 0x73, 0x73, 0x61, 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, |
| 2211 | 0x6f, 0x72, 0x6f, 0x6e, 0x74, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, |
| 2212 | 0x71, 0x61, 0x6c, 0x75, 0x69, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, |
| 2213 | 0x65, 0x77, 0x5f, 0x59, 0x6f, 0x72, 0x6b, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2214 | 0x44, 0x65, 0x74, 0x72, 0x6f, 0x69, 0x74, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2215 | 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x50, 0x65, 0x74, 0x65, 0x72, 0x73, 0x62, 0x75, |
| 2216 | 0x72, 0x67, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, |
| 2217 | 0x6e, 0x61, 0x2f, 0x56, 0x69, 0x6e, 0x63, 0x65, 0x6e, 0x6e, 0x65, 0x73, 0x20, 0x41, 0x6d, 0x65, |
| 2218 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x57, 0x69, 0x6e, |
| 2219 | 0x61, 0x6d, 0x61, 0x63, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x65, 0x6e, |
| 2220 | 0x74, 0x75, 0x63, 0x6b, 0x79, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x69, 0x63, 0x65, 0x6c, 0x6c, 0x6f, |
| 2221 | 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x65, 0x6e, 0x74, 0x75, 0x63, 0x6b, |
| 2222 | 0x79, 0x2f, 0x4c, 0x6f, 0x75, 0x69, 0x73, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x6d, 0x65, |
| 2223 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6e, 0x63, 0x75, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, |
| 2224 | 0x63, 0x61, 0x2f, 0x43, 0x61, 0x69, 0x72, 0x6f, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x65, |
| 2225 | 0x6b, 0x61, 0x74, 0x65, 0x72, 0x69, 0x6e, 0x62, 0x75, 0x72, 0x67, 0x0, 0x50, 0x61, 0x63, 0x69, |
| 2226 | 0x66, 0x69, 0x63, 0x2f, 0x46, 0x69, 0x6a, 0x69, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 2227 | 0x4d, 0x61, 0x72, 0x69, 0x65, 0x68, 0x61, 0x6d, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 2228 | 0x2f, 0x53, 0x6f, 0x66, 0x69, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x54, 0x61, |
| 2229 | 0x6c, 0x6c, 0x69, 0x6e, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x48, 0x65, 0x6c, |
| 2230 | 0x73, 0x69, 0x6e, 0x6b, 0x69, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x52, 0x69, 0x67, |
| 2231 | 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x69, 0x6c, 0x6e, 0x69, 0x75, 0x73, |
| 2232 | 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x79, 0x69, 0x76, 0x0, 0x41, 0x73, 0x69, |
| 2233 | 0x61, 0x2f, 0x54, 0x62, 0x69, 0x6c, 0x69, 0x73, 0x69, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, |
| 2234 | 0x69, 0x63, 0x2f, 0x46, 0x61, 0x72, 0x6f, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 2235 | 0x47, 0x75, 0x65, 0x72, 0x6e, 0x73, 0x65, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 2236 | 0x44, 0x75, 0x62, 0x6c, 0x69, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x49, 0x73, |
| 2237 | 0x6c, 0x65, 0x5f, 0x6f, 0x66, 0x5f, 0x4d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 2238 | 0x2f, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, |
| 2239 | 0x69, 0x73, 0x62, 0x6f, 0x6e, 0x20, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x4d, |
| 2240 | 0x61, 0x64, 0x65, 0x69, 0x72, 0x61, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, |
| 2241 | 0x43, 0x61, 0x6e, 0x61, 0x72, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x6f, |
| 2242 | 0x6e, 0x64, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x75, 0x75, |
| 2243 | 0x6b, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4f, 0x75, 0x61, 0x67, 0x61, 0x64, 0x6f, |
| 2244 | 0x75, 0x67, 0x6f, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x6e, 0x6a, |
| 2245 | 0x75, 0x6c, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x63, 0x63, 0x72, 0x61, 0x0, |
| 2246 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x6e, 0x6d, 0x61, 0x72, 0x6b, 0x73, |
| 2247 | 0x68, 0x61, 0x76, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x69, 0x73, 0x73, |
| 2248 | 0x61, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x6e, 0x61, 0x6b, 0x72, |
| 2249 | 0x79, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x52, 0x65, 0x79, 0x6b, 0x6a, |
| 2250 | 0x61, 0x76, 0x69, 0x6b, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x62, 0x69, 0x64, |
| 2251 | 0x6a, 0x61, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x72, 0x6f, |
| 2252 | 0x76, 0x69, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x6d, 0x61, 0x6b, |
| 2253 | 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x75, 0x61, 0x6b, 0x63, 0x68, |
| 2254 | 0x6f, 0x74, 0x74, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x53, 0x74, 0x5f, |
| 2255 | 0x48, 0x65, 0x6c, 0x65, 0x6e, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, |
| 2256 | 0x6b, 0x61, 0x72, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x46, 0x72, 0x65, 0x65, 0x74, |
| 2257 | 0x6f, 0x77, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x6d, 0x65, 0x0, |
| 2258 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x69, 0x63, 0x6f, 0x73, 0x69, 0x61, 0x20, 0x41, 0x73, 0x69, |
| 2259 | 0x61, 0x2f, 0x46, 0x61, 0x6d, 0x61, 0x67, 0x75, 0x73, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, |
| 2260 | 0x70, 0x65, 0x2f, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 2261 | 0x2f, 0x42, 0x75, 0x63, 0x68, 0x61, 0x72, 0x65, 0x73, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2262 | 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x2d, 0x61, 0x75, 0x2d, 0x50, 0x72, 0x69, 0x6e, 0x63, |
| 2263 | 0x65, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x30, 0x0, 0x50, 0x61, 0x63, |
| 2264 | 0x69, 0x66, 0x69, 0x63, 0x2f, 0x52, 0x61, 0x72, 0x6f, 0x74, 0x6f, 0x6e, 0x67, 0x61, 0x0, 0x50, |
| 2265 | 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54, 0x61, 0x68, 0x69, 0x74, 0x69, 0x0, 0x50, 0x61, |
| 2266 | 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x48, 0x6f, 0x6e, 0x6f, 0x6c, 0x75, 0x6c, 0x75, 0x0, 0x41, |
| 2267 | 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x6f, 0x6c, 0x6b, 0x61, 0x74, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 2268 | 0x2f, 0x54, 0x65, 0x68, 0x72, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x65, 0x72, |
| 2269 | 0x75, 0x73, 0x61, 0x6c, 0x65, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6d, 0x6d, 0x61, |
| 2270 | 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x61, 0x6c, 0x69, 0x6e, 0x69, 0x6e, |
| 2271 | 0x67, 0x72, 0x61, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x65, 0x6f, 0x75, 0x6c, 0x0, |
| 2272 | 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x72, 0x69, 0x70, 0x6f, 0x6c, 0x69, 0x0, 0x45, |
| 2273 | 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x34, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, |
| 2274 | 0x63, 0x2f, 0x4b, 0x69, 0x72, 0x69, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x0, 0x41, 0x75, 0x73, |
| 2275 | 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x6f, 0x72, 0x64, 0x5f, 0x48, 0x6f, 0x77, 0x65, |
| 2276 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x67, 0x61, 0x64, 0x61, 0x6e, 0x0, 0x41, 0x6d, |
| 2277 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x75, 0x6e, 0x74, 0x61, 0x5f, 0x41, 0x72, 0x65, 0x6e, |
| 2278 | 0x61, 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x72, 0x71, 0x75, |
| 2279 | 0x65, 0x73, 0x61, 0x73, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x75, 0x72, |
| 2280 | 0x69, 0x74, 0x69, 0x75, 0x73, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x52, 0x65, 0x75, |
| 2281 | 0x6e, 0x69, 0x6f, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x68, 0x65, |
| 2282 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x65, 0x69, 0x72, 0x75, 0x74, 0x0, 0x41, 0x6d, 0x65, |
| 2283 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x65, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x0, |
| 2284 | 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x73, 0x61, 0x62, 0x6c, 0x61, 0x6e, 0x63, |
| 2285 | 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x6c, 0x5f, 0x41, 0x61, 0x69, 0x75, |
| 2286 | 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x64, 0x6d, 0x6f, 0x6e, 0x74, |
| 2287 | 0x6f, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6d, 0x62, 0x72, |
| 2288 | 0x69, 0x64, 0x67, 0x65, 0x5f, 0x42, 0x61, 0x79, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2289 | 0x2f, 0x49, 0x6e, 0x75, 0x76, 0x69, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2290 | 0x43, 0x69, 0x75, 0x64, 0x61, 0x64, 0x5f, 0x4a, 0x75, 0x61, 0x72, 0x65, 0x7a, 0x0, 0x41, 0x6d, |
| 2291 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x65, 0x6e, 0x76, 0x65, 0x72, 0x20, 0x41, 0x6d, 0x65, |
| 2292 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x69, 0x73, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2293 | 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x7a, 0x61, 0x74, 0x6c, 0x61, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x69, |
| 2294 | 0x61, 0x6e, 0x2f, 0x43, 0x6f, 0x63, 0x6f, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x61, |
| 2295 | 0x6e, 0x67, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x76, 0x6f, 0x73, 0x69, |
| 2296 | 0x62, 0x69, 0x72, 0x73, 0x6b, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x69, 0x6e, |
| 2297 | 0x64, 0x68, 0x6f, 0x65, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x74, 0x68, 0x6d, |
| 2298 | 0x61, 0x6e, 0x64, 0x75, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, |
| 2299 | 0x4d, 0x63, 0x4d, 0x75, 0x72, 0x64, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 2300 | 0x41, 0x75, 0x63, 0x6b, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2301 | 0x2f, 0x53, 0x74, 0x5f, 0x4a, 0x6f, 0x68, 0x6e, 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, |
| 2302 | 0x63, 0x2f, 0x4e, 0x6f, 0x72, 0x66, 0x6f, 0x6c, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x49, |
| 2303 | 0x72, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x72, 0x61, 0x73, |
| 2304 | 0x6e, 0x6f, 0x79, 0x61, 0x72, 0x73, 0x6b, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x76, |
| 2305 | 0x6f, 0x6b, 0x75, 0x7a, 0x6e, 0x65, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x50, |
| 2306 | 0x79, 0x6f, 0x6e, 0x67, 0x79, 0x61, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4f, 0x6d, |
| 2307 | 0x73, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x69, |
| 2308 | 0x61, 0x67, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x61, 0x6e, 0x63, |
| 2309 | 0x6f, 0x75, 0x76, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, |
| 2310 | 0x73, 0x5f, 0x41, 0x6e, 0x67, 0x65, 0x6c, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 2311 | 0x61, 0x2f, 0x54, 0x69, 0x6a, 0x75, 0x61, 0x6e, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, |
| 2312 | 0x61, 0x72, 0x61, 0x63, 0x68, 0x69, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, |
| 2313 | 0x73, 0x75, 0x6e, 0x63, 0x69, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x51, 0x79, 0x7a, |
| 2314 | 0x79, 0x6c, 0x6f, 0x72, 0x64, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x72, |
| 2315 | 0x75, 0x73, 0x73, 0x65, 0x6c, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x43, 0x6f, |
| 2316 | 0x70, 0x65, 0x6e, 0x68, 0x61, 0x67, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 2317 | 0x50, 0x61, 0x72, 0x69, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x64, |
| 2318 | 0x72, 0x69, 0x64, 0x20, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x65, 0x75, 0x74, 0x61, |
| 2319 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x72, 0x65, 0x64, 0x6e, 0x65, 0x6b, 0x6f, 0x6c, 0x79, |
| 2320 | 0x6d, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x6d, 0x63, 0x68, 0x61, 0x74, |
| 2321 | 0x6b, 0x61, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6e, 0x61, 0x64, 0x79, 0x72, 0x0, 0x45, |
| 2322 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x6d, 0x61, 0x72, 0x61, 0x0, 0x45, 0x75, 0x72, |
| 2323 | 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x6f, 0x73, 0x63, 0x6f, 0x77, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, |
| 2324 | 0x65, 0x2f, 0x4b, 0x69, 0x72, 0x6f, 0x76, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, |
| 2325 | 0x69, 0x6d, 0x66, 0x65, 0x72, 0x6f, 0x70, 0x6f, 0x6c, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, |
| 2326 | 0x54, 0x2b, 0x33, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x52, |
| 2327 | 0x6f, 0x74, 0x68, 0x65, 0x72, 0x61, 0x20, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, |
| 2328 | 0x61, 0x2f, 0x50, 0x61, 0x6c, 0x6d, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2329 | 0x2f, 0x46, 0x6f, 0x72, 0x74, 0x61, 0x6c, 0x65, 0x7a, 0x61, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2330 | 0x63, 0x61, 0x2f, 0x42, 0x65, 0x6c, 0x65, 0x6d, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2331 | 0x2f, 0x4d, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2332 | 0x52, 0x65, 0x63, 0x69, 0x66, 0x65, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, |
| 2333 | 0x61, 0x6e, 0x74, 0x61, 0x72, 0x65, 0x6d, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, |
| 2334 | 0x2f, 0x53, 0x74, 0x61, 0x6e, 0x6c, 0x65, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2335 | 0x2f, 0x43, 0x61, 0x79, 0x65, 0x6e, 0x6e, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2336 | 0x2f, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x61, 0x72, 0x69, 0x62, 0x6f, 0x0, 0x45, 0x74, 0x63, 0x2f, |
| 2337 | 0x47, 0x4d, 0x54, 0x2b, 0x35, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x69, |
| 2338 | 0x6f, 0x5f, 0x42, 0x72, 0x61, 0x6e, 0x63, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2339 | 0x2f, 0x45, 0x69, 0x72, 0x75, 0x6e, 0x65, 0x70, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 2340 | 0x61, 0x2f, 0x41, 0x74, 0x69, 0x6b, 0x6f, 0x6b, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2341 | 0x63, 0x61, 0x2f, 0x43, 0x61, 0x79, 0x6d, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 2342 | 0x61, 0x2f, 0x42, 0x6f, 0x67, 0x6f, 0x74, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2343 | 0x2f, 0x47, 0x75, 0x61, 0x79, 0x61, 0x71, 0x75, 0x69, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2344 | 0x63, 0x61, 0x2f, 0x4a, 0x61, 0x6d, 0x61, 0x69, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2345 | 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6e, 0x61, 0x6d, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 2346 | 0x61, 0x2f, 0x4c, 0x69, 0x6d, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x34, |
| 2347 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x67, 0x75, 0x69, 0x6c, 0x6c, |
| 2348 | 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x74, 0x69, 0x67, 0x75, |
| 2349 | 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x75, 0x62, 0x61, 0x0, |
| 2350 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x72, 0x62, 0x61, 0x64, 0x6f, 0x73, |
| 2351 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x61, 0x5f, 0x50, 0x61, 0x7a, 0x0, |
| 2352 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x61, 0x75, 0x73, 0x20, 0x41, |
| 2353 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x61, 0x5f, 0x56, 0x69, 0x73, 0x74, 0x61, |
| 2354 | 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x6f, 0x5f, 0x56, |
| 2355 | 0x65, 0x6c, 0x68, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x6f, 0x72, |
| 2356 | 0x74, 0x6f, 0x6c, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6c, 0x61, |
| 2357 | 0x6e, 0x63, 0x2d, 0x53, 0x61, 0x62, 0x6c, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 2358 | 0x61, 0x2f, 0x4b, 0x72, 0x61, 0x6c, 0x65, 0x6e, 0x64, 0x69, 0x6a, 0x6b, 0x0, 0x41, 0x6d, 0x65, |
| 2359 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x75, 0x72, 0x61, 0x63, 0x61, 0x6f, 0x0, 0x41, 0x6d, 0x65, |
| 2360 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x6f, 0x6d, 0x69, 0x6e, 0x69, 0x63, 0x61, 0x0, 0x41, 0x6d, |
| 2361 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x6f, 0x5f, 0x44, 0x6f, 0x6d, 0x69, |
| 2362 | 0x6e, 0x67, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x72, 0x65, 0x6e, |
| 2363 | 0x61, 0x64, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x75, 0x61, 0x64, |
| 2364 | 0x65, 0x6c, 0x6f, 0x75, 0x70, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, |
| 2365 | 0x75, 0x79, 0x61, 0x6e, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, |
| 2366 | 0x72, 0x74, 0x69, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2367 | 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x73, 0x65, 0x72, 0x72, 0x61, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 2368 | 0x69, 0x63, 0x61, 0x2f, 0x50, 0x75, 0x65, 0x72, 0x74, 0x6f, 0x5f, 0x52, 0x69, 0x63, 0x6f, 0x0, |
| 2369 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x42, 0x61, 0x72, 0x74, 0x68, |
| 2370 | 0x65, 0x6c, 0x65, 0x6d, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, |
| 2371 | 0x5f, 0x4b, 0x69, 0x74, 0x74, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, |
| 2372 | 0x74, 0x5f, 0x4c, 0x75, 0x63, 0x69, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2373 | 0x4d, 0x61, 0x72, 0x69, 0x67, 0x6f, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2374 | 0x53, 0x74, 0x5f, 0x56, 0x69, 0x6e, 0x63, 0x65, 0x6e, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2375 | 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x50, 0x72, 0x69, 0x6e, 0x63, 0x65, 0x73, |
| 2376 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x5f, 0x6f, 0x66, |
| 2377 | 0x5f, 0x53, 0x70, 0x61, 0x69, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, |
| 2378 | 0x74, 0x5f, 0x54, 0x68, 0x6f, 0x6d, 0x61, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2379 | 0x2f, 0x4d, 0x69, 0x71, 0x75, 0x65, 0x6c, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, |
| 2380 | 0x61, 0x6b, 0x68, 0x61, 0x6c, 0x69, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 2381 | 0x41, 0x70, 0x69, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6f, 0x5f, |
| 2382 | 0x54, 0x6f, 0x6d, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x72, 0x61, |
| 2383 | 0x74, 0x6f, 0x76, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x37, 0x0, 0x41, 0x6e, |
| 2384 | 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x76, 0x69, 0x73, 0x0, 0x41, |
| 2385 | 0x73, 0x69, 0x61, 0x2f, 0x50, 0x68, 0x6e, 0x6f, 0x6d, 0x5f, 0x50, 0x65, 0x6e, 0x68, 0x0, 0x49, |
| 2386 | 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x68, 0x72, 0x69, 0x73, 0x74, 0x6d, 0x61, 0x73, 0x0, |
| 2387 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x61, 0x6b, 0x61, 0x72, 0x74, 0x61, 0x20, 0x41, 0x73, 0x69, |
| 2388 | 0x61, 0x2f, 0x50, 0x6f, 0x6e, 0x74, 0x69, 0x61, 0x6e, 0x61, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 2389 | 0x2f, 0x56, 0x69, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6e, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 2390 | 0x42, 0x61, 0x6e, 0x67, 0x6b, 0x6f, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x5f, |
| 2391 | 0x43, 0x68, 0x69, 0x5f, 0x4d, 0x69, 0x6e, 0x68, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, |
| 2392 | 0x2d, 0x38, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x72, 0x75, 0x6e, 0x65, 0x69, 0x0, 0x41, |
| 2393 | 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x6b, 0x61, 0x73, 0x73, 0x61, 0x72, 0x0, 0x41, 0x73, 0x69, |
| 2394 | 0x61, 0x2f, 0x4b, 0x75, 0x61, 0x6c, 0x61, 0x5f, 0x4c, 0x75, 0x6d, 0x70, 0x75, 0x72, 0x20, 0x41, |
| 2395 | 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 2396 | 0x2f, 0x4d, 0x61, 0x6e, 0x69, 0x6c, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x69, 0x6e, |
| 2397 | 0x67, 0x61, 0x70, 0x6f, 0x72, 0x65, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x32, |
| 2398 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x61, 0x62, 0x6f, 0x72, 0x6f, 0x6e, 0x65, |
| 2399 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x75, 0x6a, 0x75, 0x6d, 0x62, 0x75, 0x72, |
| 2400 | 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x75, 0x62, 0x75, 0x6d, 0x62, 0x61, |
| 2401 | 0x73, 0x68, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x62, 0x61, 0x62, 0x61, |
| 2402 | 0x6e, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x73, 0x65, 0x72, 0x75, |
| 2403 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6c, 0x61, 0x6e, 0x74, 0x79, 0x72, 0x65, |
| 2404 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x70, 0x75, 0x74, 0x6f, 0x0, 0x41, |
| 2405 | 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x69, 0x67, 0x61, 0x6c, 0x69, 0x0, 0x41, 0x66, 0x72, |
| 2406 | 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x6f, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x73, 0x62, 0x75, 0x72, 0x67, |
| 2407 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x75, 0x73, 0x61, 0x6b, 0x61, 0x0, 0x41, |
| 2408 | 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x72, 0x61, 0x72, 0x65, 0x0, 0x41, 0x66, 0x72, |
| 2409 | 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x62, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x6f, |
| 2410 | 0x6c, 0x6f, 0x6d, 0x62, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x68, 0x61, |
| 2411 | 0x72, 0x74, 0x6f, 0x75, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x61, 0x6d, 0x61, 0x73, |
| 2412 | 0x63, 0x75, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x61, 0x69, 0x70, 0x65, 0x69, 0x0, |
| 2413 | 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x62, 0x61, 0x72, 0x74, |
| 2414 | 0x20, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x63, 0x71, |
| 2415 | 0x75, 0x61, 0x72, 0x69, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, |
| 2416 | 0x61, 0x67, 0x75, 0x61, 0x69, 0x6e, 0x61, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, |
| 2417 | 0x39, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x61, 0x79, 0x61, 0x70, 0x75, 0x72, 0x61, 0x0, |
| 2418 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x6f, 0x6b, 0x79, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, |
| 2419 | 0x69, 0x63, 0x2f, 0x50, 0x61, 0x6c, 0x61, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x69, |
| 2420 | 0x6c, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x6f, 0x6d, 0x73, 0x6b, 0x0, 0x50, 0x61, |
| 2421 | 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54, 0x6f, 0x6e, 0x67, 0x61, 0x74, 0x61, 0x70, 0x75, 0x0, |
| 2422 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, |
| 2423 | 0x65, 0x2f, 0x49, 0x73, 0x74, 0x61, 0x6e, 0x62, 0x75, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2424 | 0x63, 0x61, 0x2f, 0x47, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x54, 0x75, 0x72, 0x6b, 0x0, 0x41, 0x73, |
| 2425 | 0x69, 0x61, 0x2f, 0x55, 0x6c, 0x61, 0x61, 0x6e, 0x62, 0x61, 0x61, 0x74, 0x61, 0x72, 0x0, 0x41, |
| 2426 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x49, |
| 2427 | 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x70, 0x6f, 0x6c, 0x69, 0x73, 0x20, 0x41, 0x6d, 0x65, 0x72, |
| 2428 | 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x4d, 0x61, 0x72, 0x65, |
| 2429 | 0x6e, 0x67, 0x6f, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, |
| 2430 | 0x61, 0x6e, 0x61, 0x2f, 0x56, 0x65, 0x76, 0x61, 0x79, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, |
| 2431 | 0x54, 0x2b, 0x37, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x72, 0x65, 0x73, |
| 2432 | 0x74, 0x6f, 0x6e, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x77, 0x73, |
| 2433 | 0x6f, 0x6e, 0x5f, 0x43, 0x72, 0x65, 0x65, 0x6b, 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2434 | 0x2f, 0x46, 0x6f, 0x72, 0x74, 0x5f, 0x4e, 0x65, 0x6c, 0x73, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, |
| 2435 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x65, 0x72, 0x6d, 0x6f, 0x73, 0x69, 0x6c, 0x6c, 0x6f, 0x0, |
| 2436 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x68, 0x6f, 0x65, 0x6e, 0x69, 0x78, 0x0, |
| 2437 | 0x45, 0x74, 0x63, 0x2f, 0x55, 0x54, 0x43, 0x20, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x0, |
| 2438 | 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x32, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, |
| 2439 | 0x69, 0x63, 0x2f, 0x54, 0x61, 0x72, 0x61, 0x77, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, |
| 2440 | 0x63, 0x2f, 0x4d, 0x61, 0x6a, 0x75, 0x72, 0x6f, 0x20, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
| 2441 | 0x2f, 0x4b, 0x77, 0x61, 0x6a, 0x61, 0x6c, 0x65, 0x69, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, |
| 2442 | 0x69, 0x63, 0x2f, 0x4e, 0x61, 0x75, 0x72, 0x75, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
| 2443 | 0x2f, 0x46, 0x75, 0x6e, 0x61, 0x66, 0x75, 0x74, 0x69, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, |
| 2444 | 0x63, 0x2f, 0x57, 0x61, 0x6b, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x57, |
| 2445 | 0x61, 0x6c, 0x6c, 0x69, 0x73, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x33, |
| 2446 | 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4b, 0x61, 0x6e, 0x74, 0x6f, 0x6e, 0x0, |
| 2447 | 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x46, 0x61, 0x6b, 0x61, 0x6f, 0x66, 0x6f, 0x0, |
| 2448 | 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x32, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 2449 | 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x6f, 0x6e, 0x68, 0x61, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, |
| 2450 | 0x69, 0x63, 0x2f, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x5f, 0x47, 0x65, 0x6f, 0x72, 0x67, 0x69, 0x61, |
| 2451 | 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x38, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, |
| 2452 | 0x69, 0x63, 0x2f, 0x50, 0x69, 0x74, 0x63, 0x61, 0x69, 0x72, 0x6e, 0x0, 0x45, 0x74, 0x63, 0x2f, |
| 2453 | 0x47, 0x4d, 0x54, 0x2b, 0x39, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x61, |
| 2454 | 0x6d, 0x62, 0x69, 0x65, 0x72, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x31, |
| 2455 | 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x61, 0x67, 0x6f, 0x5f, 0x50, 0x61, |
| 2456 | 0x67, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x69, 0x75, 0x65, 0x0, |
| 2457 | 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x69, 0x64, 0x77, 0x61, 0x79, 0x0, 0x41, |
| 2458 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x72, 0x61, 0x63, 0x61, 0x73, 0x0, 0x41, |
| 2459 | 0x73, 0x69, 0x61, 0x2f, 0x56, 0x6c, 0x61, 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x20, |
| 2460 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x73, 0x74, 0x2d, 0x4e, 0x65, 0x72, 0x61, 0x0, 0x45, 0x75, |
| 2461 | 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x6f, 0x6c, 0x67, 0x6f, 0x67, 0x72, 0x61, 0x64, 0x0, 0x41, |
| 2462 | 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x50, 0x65, 0x72, 0x74, 0x68, 0x0, 0x45, |
| 2463 | 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2464 | 0x41, 0x6c, 0x67, 0x69, 0x65, 0x72, 0x73, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, |
| 2465 | 0x75, 0x61, 0x6e, 0x64, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, |
| 2466 | 0x74, 0x6f, 0x2d, 0x4e, 0x6f, 0x76, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, |
| 2467 | 0x6f, 0x75, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x6e, |
| 2468 | 0x67, 0x75, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x64, 0x6a, 0x61, 0x6d, |
| 2469 | 0x65, 0x6e, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x72, 0x61, 0x7a, 0x7a, |
| 2470 | 0x61, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x69, |
| 2471 | 0x6e, 0x73, 0x68, 0x61, 0x73, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, |
| 2472 | 0x6c, 0x61, 0x62, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x69, 0x62, 0x72, |
| 2473 | 0x65, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x61, |
| 2474 | 0x67, 0x6f, 0x73, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x69, 0x61, 0x6d, 0x65, |
| 2475 | 0x79, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x75, 0x6e, 0x69, 0x73, 0x0, 0x45, |
| 2476 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x6e, 0x64, 0x6f, 0x72, 0x72, 0x61, 0x0, 0x45, 0x75, |
| 2477 | 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x69, 0x65, 0x6e, 0x6e, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, |
| 2478 | 0x70, 0x65, 0x2f, 0x42, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x20, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 2479 | 0x2f, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 2480 | 0x2f, 0x47, 0x69, 0x62, 0x72, 0x61, 0x6c, 0x74, 0x61, 0x72, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, |
| 2481 | 0x65, 0x2f, 0x52, 0x6f, 0x6d, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x61, |
| 2482 | 0x64, 0x75, 0x7a, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x75, 0x78, 0x65, 0x6d, |
| 2483 | 0x62, 0x6f, 0x75, 0x72, 0x67, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x6c, |
| 2484 | 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x6f, 0x6e, 0x61, 0x63, 0x6f, |
| 2485 | 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x6d, 0x73, 0x74, 0x65, 0x72, 0x64, 0x61, |
| 2486 | 0x6d, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4f, 0x73, 0x6c, 0x6f, 0x0, 0x45, 0x75, |
| 2487 | 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x6e, 0x5f, 0x4d, 0x61, 0x72, 0x69, 0x6e, 0x6f, 0x0, |
| 2488 | 0x41, 0x72, 0x63, 0x74, 0x69, 0x63, 0x2f, 0x4c, 0x6f, 0x6e, 0x67, 0x79, 0x65, 0x61, 0x72, 0x62, |
| 2489 | 0x79, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x74, 0x6f, 0x63, 0x6b, |
| 2490 | 0x68, 0x6f, 0x6c, 0x6d, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x5a, 0x75, 0x72, 0x69, |
| 2491 | 0x63, 0x68, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x61, 0x74, 0x69, 0x63, 0x61, |
| 2492 | 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x76, 0x64, 0x0, 0x45, 0x74, 0x63, 0x2f, |
| 2493 | 0x47, 0x4d, 0x54, 0x2d, 0x35, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, |
| 2494 | 0x2f, 0x4d, 0x61, 0x77, 0x73, 0x6f, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4b, |
| 2495 | 0x65, 0x72, 0x67, 0x75, 0x65, 0x6c, 0x65, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4f, 0x72, |
| 2496 | 0x61, 0x6c, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6c, 0x6d, 0x61, 0x74, 0x79, 0x20, 0x41, |
| 2497 | 0x73, 0x69, 0x61, 0x2f, 0x41, 0x71, 0x74, 0x61, 0x75, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, |
| 2498 | 0x71, 0x74, 0x6f, 0x62, 0x65, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x74, 0x79, 0x72, 0x61, |
| 2499 | 0x75, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x51, 0x6f, 0x73, 0x74, 0x61, 0x6e, 0x61, 0x79, 0x0, |
| 2500 | 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x6c, 0x64, 0x69, 0x76, 0x65, 0x73, 0x0, |
| 2501 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x75, 0x73, 0x68, 0x61, 0x6e, 0x62, 0x65, 0x0, 0x41, 0x73, |
| 2502 | 0x69, 0x61, 0x2f, 0x41, 0x73, 0x68, 0x67, 0x61, 0x62, 0x61, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 2503 | 0x2f, 0x54, 0x61, 0x73, 0x68, 0x6b, 0x65, 0x6e, 0x74, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, |
| 2504 | 0x61, 0x6d, 0x61, 0x72, 0x6b, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x65, |
| 2505 | 0x62, 0x72, 0x6f, 0x6e, 0x20, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x47, 0x61, 0x7a, 0x61, 0x0, 0x45, |
| 2506 | 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x30, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, |
| 2507 | 0x74, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x75, 0x6d, 0x6f, 0x6e, 0x74, 0x44, 0x55, 0x72, 0x76, 0x69, |
| 2508 | 0x6c, 0x6c, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x75, 0x61, 0x6d, |
| 2509 | 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x43, 0x68, 0x75, 0x75, 0x6b, 0x0, 0x50, |
| 2510 | 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x53, 0x61, 0x69, 0x70, 0x61, 0x6e, 0x0, 0x50, 0x61, |
| 2511 | 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x5f, 0x4d, 0x6f, 0x72, 0x65, 0x73, |
| 2512 | 0x62, 0x79, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x20, |
| 2513 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x68, 0x61, 0x6e, 0x64, 0x79, 0x67, 0x61, 0x0, 0x41, 0x6d, |
| 2514 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x68, 0x69, 0x74, 0x65, 0x68, 0x6f, 0x72, 0x73, 0x65, |
| 2515 | 0x20, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x77, 0x73, 0x6f, 0x6e, 0x0, |
| 2516 | 0x55, 0x54, 0x43, 0x2d, 0x31, 0x34, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x33, |
| 2517 | 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x32, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 2518 | 0x43, 0x2d, 0x31, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x31, 0x30, 0x3a, 0x30, |
| 2519 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x39, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, |
| 2520 | 0x30, 0x39, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x38, 0x3a, 0x30, 0x30, 0x0, |
| 2521 | 0x55, 0x54, 0x43, 0x2d, 0x30, 0x37, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x36, |
| 2522 | 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x35, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, |
| 2523 | 0x43, 0x2d, 0x30, 0x34, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x34, 0x3a, 0x30, |
| 2524 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x33, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, |
| 2525 | 0x30, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x32, 0x3a, 0x30, 0x30, 0x0, |
| 2526 | 0x55, 0x54, 0x43, 0x2d, 0x30, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x20, 0x55, 0x54, |
| 2527 | 0x43, 0x2b, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x20, 0x55, 0x54, 0x43, 0x2d, 0x30, 0x30, 0x3a, 0x30, |
| 2528 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, |
| 2529 | 0x30, 0x32, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x33, 0x3a, 0x30, 0x30, 0x0, |
| 2530 | 0x55, 0x54, 0x43, 0x2b, 0x30, 0x33, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x34, |
| 2531 | 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x34, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, |
| 2532 | 0x43, 0x2b, 0x30, 0x35, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x35, 0x3a, 0x33, |
| 2533 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x35, 0x3a, 0x34, 0x35, 0x0, 0x55, 0x54, 0x43, 0x2b, |
| 2534 | 0x30, 0x36, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x36, 0x3a, 0x33, 0x30, 0x0, |
| 2535 | 0x55, 0x54, 0x43, 0x2b, 0x30, 0x37, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x38, |
| 2536 | 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x38, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, |
| 2537 | 0x43, 0x2b, 0x30, 0x38, 0x3a, 0x34, 0x35, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x39, 0x3a, 0x30, |
| 2538 | 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x30, 0x39, 0x3a, 0x33, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, |
| 2539 | 0x31, 0x30, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x30, 0x3a, 0x33, 0x30, 0x0, |
| 2540 | 0x55, 0x54, 0x43, 0x2b, 0x31, 0x31, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x32, |
| 2541 | 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x32, 0x3a, 0x34, 0x35, 0x0, 0x55, 0x54, |
| 2542 | 0x43, 0x2b, 0x31, 0x33, 0x3a, 0x30, 0x30, 0x0, 0x55, 0x54, 0x43, 0x2b, 0x31, 0x34, 0x3a, 0x30, |
| 2543 | 0x30, 0x0 |
| 2544 | }; |
| 2545 | |
| 2546 | static inline constexpr char ianaIdData[] = { |
| 2547 | 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x73, 0x6d, 0x65, 0x72, 0x61, 0x0, 0x41, 0x66, |
| 2548 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x73, 0x6d, 0x61, 0x72, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, |
| 2549 | 0x63, 0x61, 0x2f, 0x54, 0x69, 0x6d, 0x62, 0x75, 0x6b, 0x74, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, |
| 2550 | 0x63, 0x61, 0x2f, 0x42, 0x61, 0x6d, 0x61, 0x6b, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 2551 | 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x43, 0x6f, 0x6d, 0x6f, |
| 2552 | 0x64, 0x52, 0x69, 0x76, 0x61, 0x64, 0x61, 0x76, 0x69, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2553 | 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x43, 0x61, 0x74, |
| 2554 | 0x61, 0x6d, 0x61, 0x72, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, |
| 2555 | 0x74, 0x6b, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x64, 0x61, 0x6b, |
| 2556 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x75, 0x65, 0x6e, 0x6f, 0x73, 0x5f, |
| 2557 | 0x41, 0x69, 0x72, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, |
| 2558 | 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x42, 0x75, 0x65, 0x6e, 0x6f, 0x73, 0x5f, 0x41, |
| 2559 | 0x69, 0x72, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x74, |
| 2560 | 0x61, 0x6d, 0x61, 0x72, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, |
| 2561 | 0x6f, 0x72, 0x61, 0x6c, 0x5f, 0x48, 0x61, 0x72, 0x62, 0x6f, 0x75, 0x72, 0x0, 0x41, 0x6d, 0x65, |
| 2562 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x74, 0x69, 0x6b, 0x6f, 0x6b, 0x61, 0x6e, 0x0, 0x41, 0x6d, |
| 2563 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x72, 0x64, 0x6f, 0x62, 0x61, 0x0, 0x41, 0x6d, |
| 2564 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, |
| 2565 | 0x43, 0x6f, 0x72, 0x64, 0x6f, 0x62, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2566 | 0x45, 0x6e, 0x73, 0x65, 0x6e, 0x61, 0x64, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2567 | 0x2f, 0x54, 0x69, 0x6a, 0x75, 0x61, 0x6e, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2568 | 0x2f, 0x46, 0x6f, 0x72, 0x74, 0x5f, 0x57, 0x61, 0x79, 0x6e, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 2569 | 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, |
| 2570 | 0x61, 0x6e, 0x61, 0x70, 0x6f, 0x6c, 0x69, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2571 | 0x2f, 0x47, 0x6f, 0x64, 0x74, 0x68, 0x61, 0x62, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2572 | 0x2f, 0x4e, 0x75, 0x75, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, |
| 2573 | 0x64, 0x69, 0x61, 0x6e, 0x61, 0x70, 0x6f, 0x6c, 0x69, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2574 | 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x6a, 0x75, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2575 | 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4a, 0x75, 0x6a, 0x75, 0x79, |
| 2576 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x6e, 0x6f, 0x78, 0x5f, 0x49, 0x4e, |
| 2577 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, |
| 2578 | 0x2f, 0x4b, 0x6e, 0x6f, 0x78, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, |
| 2579 | 0x75, 0x69, 0x73, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2580 | 0x2f, 0x4b, 0x65, 0x6e, 0x74, 0x75, 0x63, 0x6b, 0x79, 0x2f, 0x4c, 0x6f, 0x75, 0x69, 0x73, 0x76, |
| 2581 | 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x6e, |
| 2582 | 0x64, 0x6f, 0x7a, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, |
| 2583 | 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4d, 0x65, 0x6e, 0x64, 0x6f, 0x7a, 0x61, 0x0, 0x41, |
| 2584 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x72, 0x65, 0x61, 0x6c, 0x0, |
| 2585 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x6f, 0x72, 0x6f, 0x6e, 0x74, 0x6f, 0x0, |
| 2586 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x69, 0x70, 0x69, 0x67, 0x6f, 0x6e, 0x0, |
| 2587 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6e, 0x67, 0x6e, 0x69, 0x72, 0x74, |
| 2588 | 0x75, 0x6e, 0x67, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x71, 0x61, 0x6c, |
| 2589 | 0x75, 0x69, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, |
| 2590 | 0x6f, 0x5f, 0x41, 0x63, 0x72, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, |
| 2591 | 0x69, 0x6f, 0x5f, 0x42, 0x72, 0x61, 0x6e, 0x63, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 2592 | 0x61, 0x2f, 0x52, 0x61, 0x69, 0x6e, 0x79, 0x5f, 0x52, 0x69, 0x76, 0x65, 0x72, 0x0, 0x41, 0x6d, |
| 2593 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x6e, 0x69, 0x70, 0x65, 0x67, 0x0, 0x41, |
| 2594 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x6f, 0x73, 0x61, 0x72, 0x69, 0x6f, 0x0, 0x41, |
| 2595 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x61, 0x5f, 0x49, 0x73, 0x61, |
| 2596 | 0x62, 0x65, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x68, 0x69, 0x70, |
| 2597 | 0x72, 0x6f, 0x63, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x65, 0x6e, |
| 2598 | 0x76, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x68, 0x75, 0x6e, |
| 2599 | 0x64, 0x65, 0x72, 0x5f, 0x42, 0x61, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2600 | 0x56, 0x69, 0x72, 0x67, 0x69, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, |
| 2601 | 0x74, 0x5f, 0x54, 0x68, 0x6f, 0x6d, 0x61, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2602 | 0x2f, 0x59, 0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x6b, 0x6e, 0x69, 0x66, 0x65, 0x0, 0x41, 0x6d, 0x65, |
| 2603 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x64, 0x6d, 0x6f, 0x6e, 0x74, 0x6f, 0x6e, 0x0, 0x41, 0x6e, |
| 2604 | 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x5f, 0x50, |
| 2605 | 0x6f, 0x6c, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x41, 0x75, 0x63, 0x6b, |
| 2606 | 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x73, 0x68, 0x6b, 0x68, 0x61, |
| 2607 | 0x62, 0x61, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x73, 0x68, 0x67, 0x61, 0x62, 0x61, |
| 2608 | 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x74, 0x74, 0x61, 0x0, |
| 2609 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x6f, 0x6c, 0x6b, 0x61, 0x74, 0x61, 0x0, 0x41, 0x73, 0x69, |
| 2610 | 0x61, 0x2f, 0x43, 0x68, 0x6f, 0x69, 0x62, 0x61, 0x6c, 0x73, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, |
| 2611 | 0x61, 0x2f, 0x55, 0x6c, 0x61, 0x61, 0x6e, 0x62, 0x61, 0x61, 0x74, 0x61, 0x72, 0x0, 0x41, 0x73, |
| 2612 | 0x69, 0x61, 0x2f, 0x43, 0x68, 0x6f, 0x6e, 0x67, 0x71, 0x69, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, |
| 2613 | 0x61, 0x2f, 0x53, 0x68, 0x61, 0x6e, 0x67, 0x68, 0x61, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 2614 | 0x43, 0x68, 0x75, 0x6e, 0x67, 0x6b, 0x69, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, |
| 2615 | 0x61, 0x63, 0x63, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x68, 0x61, 0x6b, 0x61, 0x0, |
| 2616 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x61, 0x72, 0x62, 0x69, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 2617 | 0x2f, 0x49, 0x73, 0x74, 0x61, 0x6e, 0x62, 0x75, 0x6c, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 2618 | 0x2f, 0x49, 0x73, 0x74, 0x61, 0x6e, 0x62, 0x75, 0x6c, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, |
| 2619 | 0x61, 0x73, 0x68, 0x67, 0x61, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x72, 0x75, 0x6d, |
| 2620 | 0x71, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x74, 0x6d, 0x61, 0x6e, 0x64, 0x75, |
| 2621 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x74, 0x68, 0x6d, 0x61, 0x6e, 0x64, 0x75, 0x0, |
| 2622 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x63, 0x61, 0x6f, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 2623 | 0x4d, 0x61, 0x63, 0x61, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x52, 0x61, 0x6e, 0x67, 0x6f, |
| 2624 | 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x61, 0x6e, 0x67, 0x6f, 0x6e, 0x0, 0x41, |
| 2625 | 0x73, 0x69, 0x61, 0x2f, 0x53, 0x61, 0x69, 0x67, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 2626 | 0x48, 0x6f, 0x5f, 0x43, 0x68, 0x69, 0x5f, 0x4d, 0x69, 0x6e, 0x68, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 2627 | 0x2f, 0x54, 0x65, 0x6c, 0x5f, 0x41, 0x76, 0x69, 0x76, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, |
| 2628 | 0x65, 0x72, 0x75, 0x73, 0x61, 0x6c, 0x65, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x68, |
| 2629 | 0x69, 0x6d, 0x62, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x68, 0x69, 0x6d, 0x70, 0x68, |
| 2630 | 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x6a, 0x75, 0x6e, 0x67, 0x5f, 0x50, 0x61, 0x6e, |
| 2631 | 0x64, 0x61, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x6b, 0x61, 0x73, 0x73, |
| 2632 | 0x61, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x6c, 0x61, 0x6e, 0x5f, 0x42, 0x61, 0x74, |
| 2633 | 0x6f, 0x72, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x46, 0x61, 0x65, 0x72, |
| 2634 | 0x6f, 0x65, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x46, 0x61, 0x72, 0x6f, |
| 2635 | 0x65, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x4a, 0x61, 0x6e, 0x5f, 0x4d, |
| 2636 | 0x61, 0x79, 0x65, 0x6e, 0x0, 0x41, 0x72, 0x63, 0x74, 0x69, 0x63, 0x2f, 0x4c, 0x6f, 0x6e, 0x67, |
| 2637 | 0x79, 0x65, 0x61, 0x72, 0x62, 0x79, 0x65, 0x6e, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, |
| 2638 | 0x69, 0x61, 0x2f, 0x41, 0x43, 0x54, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, |
| 2639 | 0x2f, 0x53, 0x79, 0x64, 0x6e, 0x65, 0x79, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, |
| 2640 | 0x61, 0x2f, 0x43, 0x61, 0x6e, 0x62, 0x65, 0x72, 0x72, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, |
| 2641 | 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x43, 0x75, 0x72, 0x72, 0x69, 0x65, 0x0, 0x41, 0x75, 0x73, 0x74, |
| 2642 | 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x62, 0x61, 0x72, 0x74, 0x0, 0x41, 0x75, 0x73, |
| 2643 | 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x48, 0x49, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, |
| 2644 | 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x6f, 0x72, 0x64, 0x5f, 0x48, 0x6f, 0x77, 0x65, 0x0, 0x41, |
| 2645 | 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x0, 0x41, |
| 2646 | 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x44, 0x61, 0x72, 0x77, 0x69, 0x6e, 0x0, |
| 2647 | 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4e, 0x53, 0x57, 0x0, 0x41, 0x75, |
| 2648 | 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x51, 0x75, 0x65, 0x65, 0x6e, 0x73, 0x6c, 0x61, |
| 2649 | 0x6e, 0x64, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x42, 0x72, 0x69, |
| 2650 | 0x73, 0x62, 0x61, 0x6e, 0x65, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, |
| 2651 | 0x53, 0x6f, 0x75, 0x74, 0x68, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, |
| 2652 | 0x41, 0x64, 0x65, 0x6c, 0x61, 0x69, 0x64, 0x65, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, |
| 2653 | 0x69, 0x61, 0x2f, 0x54, 0x61, 0x73, 0x6d, 0x61, 0x6e, 0x69, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, |
| 2654 | 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x56, 0x69, 0x63, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x0, 0x41, |
| 2655 | 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4d, 0x65, 0x6c, 0x62, 0x6f, 0x75, 0x72, |
| 2656 | 0x6e, 0x65, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x57, 0x65, 0x73, |
| 2657 | 0x74, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x50, 0x65, 0x72, 0x74, |
| 2658 | 0x68, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x59, 0x61, 0x6e, 0x63, |
| 2659 | 0x6f, 0x77, 0x69, 0x6e, 0x6e, 0x61, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, |
| 2660 | 0x2f, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x48, 0x69, 0x6c, 0x6c, 0x0, 0x42, 0x72, 0x61, |
| 2661 | 0x7a, 0x69, 0x6c, 0x2f, 0x41, 0x63, 0x72, 0x65, 0x0, 0x42, 0x72, 0x61, 0x7a, 0x69, 0x6c, 0x2f, |
| 2662 | 0x44, 0x65, 0x4e, 0x6f, 0x72, 0x6f, 0x6e, 0x68, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 2663 | 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x6f, 0x6e, 0x68, 0x61, 0x0, 0x42, 0x72, 0x61, 0x7a, 0x69, 0x6c, |
| 2664 | 0x2f, 0x45, 0x61, 0x73, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, |
| 2665 | 0x6f, 0x5f, 0x50, 0x61, 0x75, 0x6c, 0x6f, 0x0, 0x42, 0x72, 0x61, 0x7a, 0x69, 0x6c, 0x2f, 0x57, |
| 2666 | 0x65, 0x73, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x61, |
| 2667 | 0x75, 0x73, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, |
| 2668 | 0x69, 0x63, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, 0x6c, 0x69, 0x66, |
| 2669 | 0x61, 0x78, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, |
| 2670 | 0x6c, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x45, 0x61, 0x73, 0x74, 0x2d, 0x53, 0x61, |
| 2671 | 0x73, 0x6b, 0x61, 0x74, 0x63, 0x68, 0x65, 0x77, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2672 | 0x63, 0x61, 0x2f, 0x52, 0x65, 0x67, 0x69, 0x6e, 0x61, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, |
| 2673 | 0x2f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, |
| 2674 | 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, |
| 2675 | 0x4e, 0x65, 0x77, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x6d, 0x65, |
| 2676 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x4a, 0x6f, 0x68, 0x6e, 0x73, 0x0, 0x43, 0x61, |
| 2677 | 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x0, 0x41, 0x6d, 0x65, |
| 2678 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x61, 0x6e, 0x63, 0x6f, 0x75, 0x76, 0x65, 0x72, 0x0, 0x43, |
| 2679 | 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x53, 0x61, 0x73, 0x6b, 0x61, 0x74, 0x63, 0x68, 0x65, 0x77, |
| 2680 | 0x61, 0x6e, 0x0, 0x43, 0x61, 0x6e, 0x61, 0x64, 0x61, 0x2f, 0x59, 0x75, 0x6b, 0x6f, 0x6e, 0x0, |
| 2681 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, 0x68, 0x69, 0x74, 0x65, 0x68, 0x6f, 0x72, |
| 2682 | 0x73, 0x65, 0x0, 0x43, 0x45, 0x54, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x72, |
| 2683 | 0x75, 0x73, 0x73, 0x65, 0x6c, 0x73, 0x0, 0x43, 0x68, 0x69, 0x6c, 0x65, 0x2f, 0x43, 0x6f, 0x6e, |
| 2684 | 0x74, 0x69, 0x6e, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2685 | 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x69, 0x61, 0x67, 0x6f, 0x0, 0x43, 0x68, 0x69, 0x6c, 0x65, 0x2f, |
| 2686 | 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x50, 0x61, 0x63, |
| 2687 | 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x0, 0x43, 0x53, 0x54, 0x36, |
| 2688 | 0x43, 0x44, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x63, |
| 2689 | 0x61, 0x67, 0x6f, 0x0, 0x43, 0x75, 0x62, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2690 | 0x2f, 0x48, 0x61, 0x76, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x45, 0x54, 0x0, 0x45, 0x75, 0x72, 0x6f, |
| 2691 | 0x70, 0x65, 0x2f, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x0, 0x45, 0x67, 0x79, 0x70, 0x74, 0x0, |
| 2692 | 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x69, 0x72, 0x6f, 0x0, 0x45, 0x69, 0x72, |
| 2693 | 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x44, 0x75, 0x62, 0x6c, 0x69, 0x6e, 0x0, |
| 2694 | 0x45, 0x53, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6e, 0x61, |
| 2695 | 0x6d, 0x61, 0x0, 0x45, 0x53, 0x54, 0x35, 0x45, 0x44, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2696 | 0x63, 0x61, 0x2f, 0x4e, 0x65, 0x77, 0x5f, 0x59, 0x6f, 0x72, 0x6b, 0x0, 0x45, 0x74, 0x63, 0x2f, |
| 2697 | 0x47, 0x4d, 0x54, 0x2b, 0x30, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x0, 0x45, 0x74, |
| 2698 | 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x30, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x30, |
| 2699 | 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x72, 0x65, 0x65, 0x6e, 0x77, 0x69, 0x63, 0x68, 0x0, 0x45, |
| 2700 | 0x74, 0x63, 0x2f, 0x55, 0x43, 0x54, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x55, 0x54, 0x43, 0x0, 0x45, |
| 2701 | 0x74, 0x63, 0x2f, 0x55, 0x6e, 0x69, 0x76, 0x65, 0x72, 0x73, 0x61, 0x6c, 0x0, 0x45, 0x74, 0x63, |
| 2702 | 0x2f, 0x5a, 0x75, 0x6c, 0x75, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x65, 0x6c, |
| 2703 | 0x66, 0x61, 0x73, 0x74, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x6f, 0x6e, 0x64, |
| 2704 | 0x6f, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x69, 0x65, 0x76, 0x0, 0x45, |
| 2705 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x79, 0x69, 0x76, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, |
| 2706 | 0x65, 0x2f, 0x4e, 0x69, 0x63, 0x6f, 0x73, 0x69, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, |
| 2707 | 0x69, 0x63, 0x6f, 0x73, 0x69, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x54, 0x69, |
| 2708 | 0x72, 0x61, 0x73, 0x70, 0x6f, 0x6c, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x43, 0x68, |
| 2709 | 0x69, 0x73, 0x69, 0x6e, 0x61, 0x75, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x55, 0x7a, |
| 2710 | 0x68, 0x67, 0x6f, 0x72, 0x6f, 0x64, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x5a, 0x61, |
| 2711 | 0x70, 0x6f, 0x72, 0x6f, 0x7a, 0x68, 0x79, 0x65, 0x0, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x79, |
| 2712 | 0x0, 0x45, 0x74, 0x63, 0x2f, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x0, 0x47, 0x42, 0x0, |
| 2713 | 0x47, 0x42, 0x2d, 0x45, 0x69, 0x72, 0x65, 0x0, 0x47, 0x4d, 0x54, 0x0, 0x47, 0x4d, 0x54, 0x2b, |
| 2714 | 0x30, 0x0, 0x47, 0x4d, 0x54, 0x2d, 0x30, 0x0, 0x47, 0x4d, 0x54, 0x30, 0x0, 0x47, 0x72, 0x65, |
| 2715 | 0x65, 0x6e, 0x77, 0x69, 0x63, 0x68, 0x0, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x0, |
| 2716 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x6e, 0x67, 0x5f, 0x4b, 0x6f, 0x6e, 0x67, 0x0, 0x48, |
| 2717 | 0x53, 0x54, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x48, 0x6f, 0x6e, 0x6f, 0x6c, |
| 2718 | 0x75, 0x6c, 0x75, 0x0, 0x49, 0x63, 0x65, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x41, 0x74, 0x6c, 0x61, |
| 2719 | 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x52, 0x65, 0x79, 0x6b, 0x6a, 0x61, 0x76, 0x69, 0x6b, 0x0, 0x49, |
| 2720 | 0x72, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x65, 0x68, 0x72, 0x61, 0x6e, 0x0, |
| 2721 | 0x49, 0x73, 0x72, 0x61, 0x65, 0x6c, 0x0, 0x4a, 0x61, 0x6d, 0x61, 0x69, 0x63, 0x61, 0x0, 0x41, |
| 2722 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x61, 0x6d, 0x61, 0x69, 0x63, 0x61, 0x0, 0x4a, |
| 2723 | 0x61, 0x70, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x54, 0x6f, 0x6b, 0x79, 0x6f, 0x0, |
| 2724 | 0x4b, 0x77, 0x61, 0x6a, 0x61, 0x6c, 0x65, 0x69, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, |
| 2725 | 0x63, 0x2f, 0x4b, 0x77, 0x61, 0x6a, 0x61, 0x6c, 0x65, 0x69, 0x6e, 0x0, 0x4c, 0x69, 0x62, 0x79, |
| 2726 | 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x72, 0x69, 0x70, 0x6f, 0x6c, 0x69, |
| 2727 | 0x0, 0x4d, 0x45, 0x54, 0x0, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x2f, 0x42, 0x61, 0x6a, 0x61, |
| 2728 | 0x4e, 0x6f, 0x72, 0x74, 0x65, 0x0, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x2f, 0x42, 0x61, 0x6a, |
| 2729 | 0x61, 0x53, 0x75, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x7a, |
| 2730 | 0x61, 0x74, 0x6c, 0x61, 0x6e, 0x0, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x2f, 0x47, 0x65, 0x6e, |
| 2731 | 0x65, 0x72, 0x61, 0x6c, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x78, |
| 2732 | 0x69, 0x63, 0x6f, 0x5f, 0x43, 0x69, 0x74, 0x79, 0x0, 0x4d, 0x53, 0x54, 0x0, 0x41, 0x6d, 0x65, |
| 2733 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x68, 0x6f, 0x65, 0x6e, 0x69, 0x78, 0x0, 0x4d, 0x53, 0x54, |
| 2734 | 0x37, 0x4d, 0x44, 0x54, 0x0, 0x4e, 0x61, 0x76, 0x61, 0x6a, 0x6f, 0x0, 0x4e, 0x5a, 0x0, 0x4e, |
| 2735 | 0x5a, 0x2d, 0x43, 0x48, 0x41, 0x54, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x43, |
| 2736 | 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, |
| 2737 | 0x6e, 0x64, 0x65, 0x72, 0x62, 0x75, 0x72, 0x79, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
| 2738 | 0x2f, 0x4b, 0x61, 0x6e, 0x74, 0x6f, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 2739 | 0x4a, 0x6f, 0x68, 0x6e, 0x73, 0x74, 0x6f, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, |
| 2740 | 0x2f, 0x50, 0x6f, 0x6e, 0x61, 0x70, 0x65, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 2741 | 0x50, 0x6f, 0x68, 0x6e, 0x70, 0x65, 0x69, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 2742 | 0x53, 0x61, 0x6d, 0x6f, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x61, |
| 2743 | 0x67, 0x6f, 0x5f, 0x50, 0x61, 0x67, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 2744 | 0x54, 0x72, 0x75, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x43, 0x68, 0x75, |
| 2745 | 0x75, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x59, 0x61, 0x70, 0x0, 0x50, |
| 2746 | 0x6f, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x57, 0x61, 0x72, |
| 2747 | 0x73, 0x61, 0x77, 0x0, 0x50, 0x6f, 0x72, 0x74, 0x75, 0x67, 0x61, 0x6c, 0x0, 0x45, 0x75, 0x72, |
| 2748 | 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x69, 0x73, 0x62, 0x6f, 0x6e, 0x0, 0x50, 0x52, 0x43, 0x0, 0x50, |
| 2749 | 0x53, 0x54, 0x38, 0x50, 0x44, 0x54, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, |
| 2750 | 0x6f, 0x73, 0x5f, 0x41, 0x6e, 0x67, 0x65, 0x6c, 0x65, 0x73, 0x0, 0x52, 0x4f, 0x43, 0x0, 0x41, |
| 2751 | 0x73, 0x69, 0x61, 0x2f, 0x54, 0x61, 0x69, 0x70, 0x65, 0x69, 0x0, 0x52, 0x4f, 0x4b, 0x0, 0x41, |
| 2752 | 0x73, 0x69, 0x61, 0x2f, 0x53, 0x65, 0x6f, 0x75, 0x6c, 0x0, 0x53, 0x69, 0x6e, 0x67, 0x61, 0x70, |
| 2753 | 0x6f, 0x72, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x69, 0x6e, 0x67, 0x61, 0x70, 0x6f, |
| 2754 | 0x72, 0x65, 0x0, 0x54, 0x75, 0x72, 0x6b, 0x65, 0x79, 0x0, 0x55, 0x43, 0x54, 0x0, 0x55, 0x6e, |
| 2755 | 0x69, 0x76, 0x65, 0x72, 0x73, 0x61, 0x6c, 0x0, 0x55, 0x53, 0x2f, 0x41, 0x6c, 0x61, 0x73, 0x6b, |
| 2756 | 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x6e, 0x63, 0x68, 0x6f, 0x72, |
| 2757 | 0x61, 0x67, 0x65, 0x0, 0x55, 0x53, 0x2f, 0x41, 0x6c, 0x65, 0x75, 0x74, 0x69, 0x61, 0x6e, 0x0, |
| 2758 | 0x55, 0x53, 0x2f, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x0, 0x55, 0x53, 0x2f, 0x43, 0x65, |
| 2759 | 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x0, 0x55, 0x53, 0x2f, 0x45, 0x61, 0x73, 0x74, 0x2d, 0x49, 0x6e, |
| 2760 | 0x64, 0x69, 0x61, 0x6e, 0x61, 0x0, 0x55, 0x53, 0x2f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, |
| 2761 | 0x0, 0x55, 0x53, 0x2f, 0x48, 0x61, 0x77, 0x61, 0x69, 0x69, 0x0, 0x55, 0x53, 0x2f, 0x49, 0x6e, |
| 2762 | 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2d, 0x53, 0x74, 0x61, 0x72, 0x6b, 0x65, 0x0, 0x55, 0x53, 0x2f, |
| 2763 | 0x4d, 0x69, 0x63, 0x68, 0x69, 0x67, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2764 | 0x2f, 0x44, 0x65, 0x74, 0x72, 0x6f, 0x69, 0x74, 0x0, 0x55, 0x53, 0x2f, 0x4d, 0x6f, 0x75, 0x6e, |
| 2765 | 0x74, 0x61, 0x69, 0x6e, 0x0, 0x55, 0x53, 0x2f, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x0, |
| 2766 | 0x55, 0x53, 0x2f, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2d, 0x4e, 0x65, 0x77, 0x0, 0x55, |
| 2767 | 0x53, 0x2f, 0x53, 0x61, 0x6d, 0x6f, 0x61, 0x0, 0x55, 0x54, 0x43, 0x0, 0x57, 0x2d, 0x53, 0x55, |
| 2768 | 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x6f, 0x73, 0x63, 0x6f, 0x77, 0x0, 0x57, |
| 2769 | 0x45, 0x54, 0x0, 0x5a, 0x75, 0x6c, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x62, |
| 2770 | 0x75, 0x6c, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x72, 0x6e, 0x61, 0x75, 0x6c, 0x0, |
| 2771 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x52, 0x69, 0x79, 0x61, 0x64, 0x68, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 2772 | 0x2f, 0x44, 0x75, 0x62, 0x61, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x67, 0x68, |
| 2773 | 0x64, 0x61, 0x64, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, 0x73, 0x74, 0x72, 0x61, |
| 2774 | 0x6b, 0x68, 0x61, 0x6e, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x45, |
| 2775 | 0x75, 0x63, 0x6c, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x6b, 0x75, 0x0, 0x41, |
| 2776 | 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x41, 0x7a, 0x6f, 0x72, 0x65, 0x73, 0x0, 0x41, |
| 2777 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, 0x68, 0x69, 0x61, 0x0, 0x45, 0x75, 0x72, |
| 2778 | 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x69, 0x6e, 0x73, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, |
| 2779 | 0x63, 0x2f, 0x42, 0x6f, 0x75, 0x67, 0x61, 0x69, 0x6e, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, |
| 2780 | 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x43, 0x61, 0x70, 0x65, 0x5f, 0x56, 0x65, 0x72, |
| 2781 | 0x64, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x59, 0x65, 0x72, 0x65, 0x76, 0x61, 0x6e, 0x0, |
| 2782 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x75, 0x61, 0x74, 0x65, 0x6d, 0x61, 0x6c, |
| 2783 | 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x69, 0x73, 0x68, 0x6b, 0x65, 0x6b, 0x0, 0x41, |
| 2784 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x75, 0x69, 0x61, 0x62, 0x61, 0x0, 0x45, 0x75, |
| 2785 | 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, 0x0, 0x50, 0x61, |
| 2786 | 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x75, 0x61, 0x64, 0x61, 0x6c, 0x63, 0x61, 0x6e, 0x61, |
| 2787 | 0x6c, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x31, 0x32, 0x0, 0x41, 0x66, 0x72, |
| 2788 | 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x61, 0x69, 0x72, 0x6f, 0x62, 0x69, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 2789 | 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6e, 0x63, 0x75, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 2790 | 0x59, 0x65, 0x6b, 0x61, 0x74, 0x65, 0x72, 0x69, 0x6e, 0x62, 0x75, 0x72, 0x67, 0x0, 0x50, 0x61, |
| 2791 | 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x46, 0x69, 0x6a, 0x69, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 2792 | 0x54, 0x62, 0x69, 0x6c, 0x69, 0x73, 0x69, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, |
| 2793 | 0x75, 0x63, 0x68, 0x61, 0x72, 0x65, 0x73, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2794 | 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x2d, 0x61, 0x75, 0x2d, 0x50, 0x72, 0x69, 0x6e, 0x63, 0x65, 0x0, |
| 2795 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6d, 0x6d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, |
| 2796 | 0x65, 0x2f, 0x4b, 0x61, 0x6c, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x72, 0x61, 0x64, 0x0, 0x50, 0x61, |
| 2797 | 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4b, 0x69, 0x72, 0x69, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x69, |
| 2798 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x67, 0x61, 0x64, 0x61, 0x6e, 0x0, 0x41, 0x6d, |
| 2799 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x75, 0x6e, 0x74, 0x61, 0x5f, 0x41, 0x72, 0x65, 0x6e, |
| 2800 | 0x61, 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x72, 0x71, 0x75, |
| 2801 | 0x65, 0x73, 0x61, 0x73, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x75, 0x72, |
| 2802 | 0x69, 0x74, 0x69, 0x75, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x65, 0x69, 0x72, 0x75, |
| 2803 | 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x65, 0x76, |
| 2804 | 0x69, 0x64, 0x65, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x73, 0x61, |
| 2805 | 0x62, 0x6c, 0x61, 0x6e, 0x63, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x76, 0x6f, |
| 2806 | 0x73, 0x69, 0x62, 0x69, 0x72, 0x73, 0x6b, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x57, |
| 2807 | 0x69, 0x6e, 0x64, 0x68, 0x6f, 0x65, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 2808 | 0x4e, 0x6f, 0x72, 0x66, 0x6f, 0x6c, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x49, 0x72, 0x6b, |
| 2809 | 0x75, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x72, 0x61, 0x73, 0x6e, 0x6f, |
| 2810 | 0x79, 0x61, 0x72, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x50, 0x79, 0x6f, 0x6e, 0x67, |
| 2811 | 0x79, 0x61, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4f, 0x6d, 0x73, 0x6b, 0x0, 0x41, |
| 2812 | 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x61, 0x72, 0x61, 0x63, 0x68, 0x69, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 2813 | 0x69, 0x63, 0x61, 0x2f, 0x41, 0x73, 0x75, 0x6e, 0x63, 0x69, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, |
| 2814 | 0x61, 0x2f, 0x51, 0x79, 0x7a, 0x79, 0x6c, 0x6f, 0x72, 0x64, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, |
| 2815 | 0x70, 0x65, 0x2f, 0x50, 0x61, 0x72, 0x69, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x72, |
| 2816 | 0x65, 0x64, 0x6e, 0x65, 0x6b, 0x6f, 0x6c, 0x79, 0x6d, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 2817 | 0x2f, 0x4b, 0x61, 0x6d, 0x63, 0x68, 0x61, 0x74, 0x6b, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, |
| 2818 | 0x65, 0x2f, 0x53, 0x61, 0x6d, 0x61, 0x72, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2819 | 0x2f, 0x43, 0x61, 0x79, 0x65, 0x6e, 0x6e, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2820 | 0x2f, 0x42, 0x6f, 0x67, 0x6f, 0x74, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2821 | 0x4c, 0x61, 0x5f, 0x50, 0x61, 0x7a, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, |
| 2822 | 0x69, 0x71, 0x75, 0x65, 0x6c, 0x6f, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x53, 0x61, 0x6b, |
| 2823 | 0x68, 0x61, 0x6c, 0x69, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x41, 0x70, |
| 2824 | 0x69, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6f, 0x5f, 0x54, 0x6f, |
| 2825 | 0x6d, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x72, 0x61, 0x74, 0x6f, |
| 2826 | 0x76, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x61, 0x6e, 0x67, 0x6b, 0x6f, 0x6b, 0x0, 0x41, |
| 2827 | 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x6f, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x73, 0x62, 0x75, |
| 2828 | 0x72, 0x67, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x62, 0x61, 0x0, 0x41, |
| 2829 | 0x73, 0x69, 0x61, 0x2f, 0x43, 0x6f, 0x6c, 0x6f, 0x6d, 0x62, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, |
| 2830 | 0x63, 0x61, 0x2f, 0x4b, 0x68, 0x61, 0x72, 0x74, 0x6f, 0x75, 0x6d, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 2831 | 0x2f, 0x44, 0x61, 0x6d, 0x61, 0x73, 0x63, 0x75, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 2832 | 0x61, 0x2f, 0x41, 0x72, 0x61, 0x67, 0x75, 0x61, 0x69, 0x6e, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 2833 | 0x2f, 0x54, 0x6f, 0x6d, 0x73, 0x6b, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54, |
| 2834 | 0x6f, 0x6e, 0x67, 0x61, 0x74, 0x61, 0x70, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x43, 0x68, |
| 2835 | 0x69, 0x74, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x72, 0x61, 0x6e, |
| 2836 | 0x64, 0x5f, 0x54, 0x75, 0x72, 0x6b, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, |
| 2837 | 0x32, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2d, 0x31, 0x33, 0x0, 0x45, 0x74, 0x63, |
| 2838 | 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x32, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x38, |
| 2839 | 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0x2b, 0x39, 0x0, 0x45, 0x74, 0x63, 0x2f, 0x47, |
| 2840 | 0x4d, 0x54, 0x2b, 0x31, 0x31, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, |
| 2841 | 0x72, 0x61, 0x63, 0x61, 0x73, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x56, 0x6c, 0x61, 0x64, 0x69, |
| 2842 | 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x6f, |
| 2843 | 0x6c, 0x67, 0x6f, 0x67, 0x72, 0x61, 0x64, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, |
| 2844 | 0x61, 0x67, 0x6f, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x65, 0x72, 0x6c, |
| 2845 | 0x69, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x48, 0x6f, 0x76, 0x64, 0x0, 0x41, 0x73, 0x69, |
| 2846 | 0x61, 0x2f, 0x54, 0x61, 0x73, 0x68, 0x6b, 0x65, 0x6e, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 2847 | 0x48, 0x65, 0x62, 0x72, 0x6f, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, |
| 2848 | 0x6f, 0x72, 0x74, 0x5f, 0x4d, 0x6f, 0x72, 0x65, 0x73, 0x62, 0x79, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 2849 | 0x2f, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2850 | 0x2f, 0x47, 0x75, 0x61, 0x79, 0x61, 0x71, 0x75, 0x69, 0x6c, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 2851 | 0x4b, 0x75, 0x61, 0x6c, 0x61, 0x5f, 0x4c, 0x75, 0x6d, 0x70, 0x75, 0x72, 0x0, 0x50, 0x61, 0x63, |
| 2852 | 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x6a, 0x75, 0x72, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, |
| 2853 | 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x64, 0x72, 0x69, 0x64, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, |
| 2854 | 0x2f, 0x47, 0x61, 0x62, 0x6f, 0x72, 0x6f, 0x6e, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, |
| 2855 | 0x2f, 0x42, 0x75, 0x6a, 0x75, 0x6d, 0x62, 0x75, 0x72, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, |
| 2856 | 0x61, 0x2f, 0x4c, 0x75, 0x62, 0x75, 0x6d, 0x62, 0x61, 0x73, 0x68, 0x69, 0x0, 0x41, 0x66, 0x72, |
| 2857 | 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6c, 0x61, 0x6e, 0x74, 0x79, 0x72, 0x65, 0x0, 0x41, 0x66, 0x72, |
| 2858 | 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x69, 0x67, 0x61, 0x6c, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, |
| 2859 | 0x61, 0x2f, 0x4d, 0x61, 0x70, 0x75, 0x74, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2860 | 0x4c, 0x75, 0x73, 0x61, 0x6b, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x61, |
| 2861 | 0x72, 0x61, 0x72, 0x65, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x6f, 0x6d, 0x6f, |
| 2862 | 0x72, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x6a, 0x69, 0x62, 0x6f, 0x75, |
| 2863 | 0x74, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x64, 0x64, 0x69, 0x73, 0x5f, |
| 2864 | 0x41, 0x62, 0x61, 0x62, 0x61, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x41, 0x6e, 0x74, |
| 2865 | 0x61, 0x6e, 0x61, 0x6e, 0x61, 0x72, 0x69, 0x76, 0x6f, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, |
| 2866 | 0x2f, 0x4d, 0x61, 0x79, 0x6f, 0x74, 0x74, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2867 | 0x4d, 0x6f, 0x67, 0x61, 0x64, 0x69, 0x73, 0x68, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, |
| 2868 | 0x2f, 0x44, 0x61, 0x72, 0x5f, 0x65, 0x73, 0x5f, 0x53, 0x61, 0x6c, 0x61, 0x61, 0x6d, 0x0, 0x41, |
| 2869 | 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x61, 0x6d, 0x70, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x66, |
| 2870 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x6c, 0x5f, 0x41, 0x61, 0x69, 0x75, 0x6e, 0x0, 0x41, 0x66, |
| 2871 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x62, 0x61, 0x62, 0x61, 0x6e, 0x65, 0x0, 0x41, 0x66, 0x72, |
| 2872 | 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x73, 0x65, 0x72, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, |
| 2873 | 0x61, 0x2f, 0x4c, 0x75, 0x61, 0x6e, 0x64, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2874 | 0x50, 0x6f, 0x72, 0x74, 0x6f, 0x2d, 0x4e, 0x6f, 0x76, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, |
| 2875 | 0x61, 0x2f, 0x44, 0x6f, 0x75, 0x61, 0x6c, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2876 | 0x42, 0x61, 0x6e, 0x67, 0x75, 0x69, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x64, |
| 2877 | 0x6a, 0x61, 0x6d, 0x65, 0x6e, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x72, |
| 2878 | 0x61, 0x7a, 0x7a, 0x61, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, |
| 2879 | 0x2f, 0x4b, 0x69, 0x6e, 0x73, 0x68, 0x61, 0x73, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, |
| 2880 | 0x2f, 0x4d, 0x61, 0x6c, 0x61, 0x62, 0x6f, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, |
| 2881 | 0x69, 0x62, 0x72, 0x65, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, |
| 2882 | 0x2f, 0x4e, 0x69, 0x61, 0x6d, 0x65, 0x79, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x71, 0x74, |
| 2883 | 0x6f, 0x62, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4a, 0x75, 0x6e, 0x65, |
| 2884 | 0x61, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6c, 0x6d, 0x61, 0x74, 0x79, 0x0, 0x41, |
| 2885 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x65, 0x6c, 0x69, 0x7a, 0x65, 0x0, 0x41, 0x6d, |
| 2886 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x73, 0x74, 0x61, 0x5f, 0x52, 0x69, 0x63, 0x61, |
| 2887 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x6c, 0x5f, 0x53, 0x61, 0x6c, 0x76, |
| 2888 | 0x61, 0x64, 0x6f, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x65, 0x67, |
| 2889 | 0x75, 0x63, 0x69, 0x67, 0x61, 0x6c, 0x70, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2890 | 0x2f, 0x4e, 0x61, 0x73, 0x73, 0x61, 0x75, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2891 | 0x43, 0x61, 0x79, 0x6d, 0x61, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x6e, 0x61, 0x64, |
| 2892 | 0x79, 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x71, 0x74, 0x61, 0x75, 0x0, 0x41, 0x73, |
| 2893 | 0x69, 0x61, 0x2f, 0x42, 0x61, 0x68, 0x72, 0x61, 0x69, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 2894 | 0x4b, 0x75, 0x77, 0x61, 0x69, 0x74, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x51, 0x61, 0x74, 0x61, |
| 2895 | 0x72, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x64, 0x65, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 2896 | 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, |
| 2897 | 0x6e, 0x5f, 0x4c, 0x75, 0x69, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, |
| 2898 | 0x6e, 0x67, 0x75, 0x69, 0x6c, 0x6c, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2899 | 0x41, 0x6e, 0x74, 0x69, 0x67, 0x75, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2900 | 0x41, 0x72, 0x75, 0x62, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x61, |
| 2901 | 0x72, 0x62, 0x61, 0x64, 0x6f, 0x73, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, |
| 2902 | 0x42, 0x65, 0x72, 0x6d, 0x75, 0x64, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2903 | 0x54, 0x6f, 0x72, 0x74, 0x6f, 0x6c, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2904 | 0x4b, 0x72, 0x61, 0x6c, 0x65, 0x6e, 0x64, 0x69, 0x6a, 0x6b, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2905 | 0x63, 0x61, 0x2f, 0x43, 0x75, 0x72, 0x61, 0x63, 0x61, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 2906 | 0x63, 0x61, 0x2f, 0x44, 0x6f, 0x6d, 0x69, 0x6e, 0x69, 0x63, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 2907 | 0x69, 0x63, 0x61, 0x2f, 0x54, 0x68, 0x75, 0x6c, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 2908 | 0x61, 0x2f, 0x47, 0x72, 0x65, 0x6e, 0x61, 0x64, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 2909 | 0x61, 0x2f, 0x47, 0x75, 0x61, 0x64, 0x65, 0x6c, 0x6f, 0x75, 0x70, 0x65, 0x0, 0x41, 0x6d, 0x65, |
| 2910 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x72, 0x74, 0x69, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x0, |
| 2911 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x73, 0x65, 0x72, 0x72, |
| 2912 | 0x61, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x75, 0x65, 0x72, 0x74, |
| 2913 | 0x6f, 0x5f, 0x52, 0x69, 0x63, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, |
| 2914 | 0x74, 0x5f, 0x4b, 0x69, 0x74, 0x74, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 2915 | 0x53, 0x74, 0x5f, 0x4c, 0x75, 0x63, 0x69, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2916 | 0x2f, 0x4d, 0x61, 0x72, 0x69, 0x67, 0x6f, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 2917 | 0x2f, 0x53, 0x74, 0x5f, 0x56, 0x69, 0x6e, 0x63, 0x65, 0x6e, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 2918 | 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x50, 0x72, 0x69, 0x6e, 0x63, 0x65, |
| 2919 | 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, 0x5f, 0x6f, |
| 2920 | 0x66, 0x5f, 0x53, 0x70, 0x61, 0x69, 0x6e, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x75, 0x63, |
| 2921 | 0x68, 0x69, 0x6e, 0x67, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x42, 0x72, 0x75, 0x6e, 0x65, 0x69, |
| 2922 | 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x73, 0x65, |
| 2923 | 0x79, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x75, 0x61, 0x6d, 0x0, 0x50, |
| 2924 | 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x53, 0x61, 0x69, 0x70, 0x61, 0x6e, 0x0, 0x49, 0x6e, |
| 2925 | 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x68, 0x72, 0x69, 0x73, 0x74, 0x6d, 0x61, 0x73, 0x0, 0x49, |
| 2926 | 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x6f, 0x63, 0x6f, 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, |
| 2927 | 0x66, 0x69, 0x63, 0x2f, 0x52, 0x61, 0x72, 0x6f, 0x74, 0x6f, 0x6e, 0x67, 0x61, 0x0, 0x41, 0x6e, |
| 2928 | 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x76, 0x69, 0x73, 0x0, 0x41, |
| 2929 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x6f, 0x5f, 0x44, 0x6f, 0x6d, |
| 2930 | 0x69, 0x6e, 0x67, 0x6f, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, |
| 2931 | 0x44, 0x75, 0x6d, 0x6f, 0x6e, 0x74, 0x44, 0x55, 0x72, 0x76, 0x69, 0x6c, 0x6c, 0x65, 0x0, 0x41, |
| 2932 | 0x73, 0x69, 0x61, 0x2f, 0x44, 0x75, 0x73, 0x68, 0x61, 0x6e, 0x62, 0x65, 0x0, 0x41, 0x6d, 0x65, |
| 2933 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x61, 0x72, 0x69, 0x62, 0x6f, 0x0, |
| 2934 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x44, 0x69, 0x6c, 0x69, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 2935 | 0x2f, 0x54, 0x69, 0x72, 0x61, 0x6e, 0x65, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x41, |
| 2936 | 0x6e, 0x64, 0x6f, 0x72, 0x72, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x69, |
| 2937 | 0x65, 0x6e, 0x6e, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x72, 0x61, |
| 2938 | 0x6a, 0x65, 0x76, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x5a, 0x61, 0x67, 0x72, |
| 2939 | 0x65, 0x62, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x50, 0x72, 0x61, 0x67, 0x75, 0x65, |
| 2940 | 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x43, 0x6f, 0x70, 0x65, 0x6e, 0x68, 0x61, 0x67, |
| 2941 | 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x47, 0x69, 0x62, 0x72, 0x61, 0x6c, |
| 2942 | 0x74, 0x61, 0x72, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x52, 0x6f, 0x6d, 0x65, 0x0, |
| 2943 | 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x65, 0x6c, 0x67, 0x72, 0x61, 0x64, 0x65, 0x0, |
| 2944 | 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x61, 0x64, 0x75, 0x7a, 0x0, 0x45, 0x75, 0x72, |
| 2945 | 0x6f, 0x70, 0x65, 0x2f, 0x4c, 0x75, 0x78, 0x65, 0x6d, 0x62, 0x6f, 0x75, 0x72, 0x67, 0x0, 0x45, |
| 2946 | 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x6b, 0x6f, 0x70, 0x6a, 0x65, 0x0, 0x45, 0x75, 0x72, |
| 2947 | 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x6c, 0x74, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 2948 | 0x2f, 0x4d, 0x6f, 0x6e, 0x61, 0x63, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x50, |
| 2949 | 0x6f, 0x64, 0x67, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, |
| 2950 | 0x41, 0x6d, 0x73, 0x74, 0x65, 0x72, 0x64, 0x61, 0x6d, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 2951 | 0x2f, 0x4f, 0x73, 0x6c, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x61, 0x6e, |
| 2952 | 0x5f, 0x4d, 0x61, 0x72, 0x69, 0x6e, 0x6f, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, |
| 2953 | 0x72, 0x61, 0x74, 0x69, 0x73, 0x6c, 0x61, 0x76, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, |
| 2954 | 0x2f, 0x4c, 0x6a, 0x75, 0x62, 0x6c, 0x6a, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, |
| 2955 | 0x65, 0x2f, 0x53, 0x74, 0x6f, 0x63, 0x6b, 0x68, 0x6f, 0x6c, 0x6d, 0x0, 0x45, 0x75, 0x72, 0x6f, |
| 2956 | 0x70, 0x65, 0x2f, 0x5a, 0x75, 0x72, 0x69, 0x63, 0x68, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, |
| 2957 | 0x2f, 0x54, 0x75, 0x6e, 0x69, 0x73, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x61, |
| 2958 | 0x74, 0x69, 0x63, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4d, 0x61, 0x72, |
| 2959 | 0x69, 0x65, 0x68, 0x61, 0x6d, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x6f, |
| 2960 | 0x66, 0x69, 0x61, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x48, 0x65, 0x6c, 0x73, 0x69, |
| 2961 | 0x6e, 0x6b, 0x69, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x43, 0x61, 0x6e, |
| 2962 | 0x61, 0x72, 0x79, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x53, 0x74, 0x61, |
| 2963 | 0x6e, 0x6c, 0x65, 0x79, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x4b, 0x65, 0x72, 0x67, |
| 2964 | 0x75, 0x65, 0x6c, 0x65, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x47, 0x61, |
| 2965 | 0x6c, 0x61, 0x70, 0x61, 0x67, 0x6f, 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 2966 | 0x47, 0x61, 0x6d, 0x62, 0x69, 0x65, 0x72, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, |
| 2967 | 0x54, 0x61, 0x72, 0x61, 0x77, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4f, 0x75, |
| 2968 | 0x61, 0x67, 0x61, 0x64, 0x6f, 0x75, 0x67, 0x6f, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, |
| 2969 | 0x2f, 0x42, 0x61, 0x6e, 0x6a, 0x75, 0x6c, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, |
| 2970 | 0x63, 0x63, 0x72, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x6f, 0x6e, 0x61, |
| 2971 | 0x6b, 0x72, 0x79, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x62, 0x69, 0x64, 0x6a, |
| 2972 | 0x61, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x75, 0x61, 0x6b, 0x63, |
| 2973 | 0x68, 0x6f, 0x74, 0x74, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x53, 0x74, |
| 2974 | 0x5f, 0x48, 0x65, 0x6c, 0x65, 0x6e, 0x61, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, |
| 2975 | 0x61, 0x6b, 0x61, 0x72, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x46, 0x72, 0x65, 0x65, |
| 2976 | 0x74, 0x6f, 0x77, 0x6e, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x6f, 0x6d, 0x65, |
| 2977 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x6f, 0x6f, 0x73, 0x65, 0x5f, 0x42, |
| 2978 | 0x61, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x63, 0x6f, 0x72, 0x65, |
| 2979 | 0x73, 0x62, 0x79, 0x73, 0x75, 0x6e, 0x64, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4d, 0x75, 0x73, |
| 2980 | 0x63, 0x61, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x75, 0x79, 0x61, |
| 2981 | 0x6e, 0x61, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x2f, 0x43, 0x68, 0x61, 0x67, 0x6f, 0x73, |
| 2982 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x50, 0x68, 0x6e, 0x6f, 0x6d, 0x5f, 0x50, 0x65, 0x6e, 0x68, |
| 2983 | 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x56, 0x69, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6e, 0x65, 0x0, |
| 2984 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4a, 0x61, 0x79, 0x61, 0x70, 0x75, 0x72, 0x61, 0x0, 0x41, 0x73, |
| 2985 | 0x69, 0x61, 0x2f, 0x4a, 0x61, 0x6b, 0x61, 0x72, 0x74, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, |
| 2986 | 0x69, 0x63, 0x2f, 0x4b, 0x6f, 0x73, 0x72, 0x61, 0x65, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, |
| 2987 | 0x2f, 0x4d, 0x6f, 0x6e, 0x72, 0x6f, 0x76, 0x69, 0x61, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, |
| 2988 | 0x2f, 0x4d, 0x61, 0x6c, 0x64, 0x69, 0x76, 0x65, 0x73, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, |
| 2989 | 0x74, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x77, 0x73, 0x6f, 0x6e, 0x0, 0x50, 0x61, 0x63, 0x69, |
| 2990 | 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x61, 0x75, 0x72, 0x75, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, |
| 2991 | 0x63, 0x2f, 0x4e, 0x6f, 0x75, 0x6d, 0x65, 0x61, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, |
| 2992 | 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x63, 0x4d, 0x75, 0x72, 0x64, 0x6f, 0x0, 0x50, 0x61, 0x63, 0x69, |
| 2993 | 0x66, 0x69, 0x63, 0x2f, 0x4e, 0x69, 0x75, 0x65, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4f, 0x72, |
| 2994 | 0x61, 0x6c, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x50, 0x61, 0x6c, 0x61, 0x75, |
| 2995 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4c, 0x69, 0x6d, 0x61, 0x0, 0x41, 0x73, |
| 2996 | 0x69, 0x61, 0x2f, 0x4d, 0x61, 0x6e, 0x69, 0x6c, 0x61, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, |
| 2997 | 0x63, 0x2f, 0x50, 0x69, 0x74, 0x63, 0x61, 0x69, 0x72, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, |
| 2998 | 0x6e, 0x2f, 0x52, 0x65, 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, |
| 2999 | 0x74, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x61, 0x0, 0x41, 0x73, 0x69, |
| 3000 | 0x61, 0x2f, 0x53, 0x61, 0x6d, 0x61, 0x72, 0x6b, 0x61, 0x6e, 0x64, 0x0, 0x49, 0x6e, 0x64, 0x69, |
| 3001 | 0x61, 0x6e, 0x2f, 0x4d, 0x61, 0x68, 0x65, 0x0, 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, |
| 3002 | 0x2f, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x5f, 0x47, 0x65, 0x6f, 0x72, 0x67, 0x69, 0x61, 0x0, 0x41, |
| 3003 | 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x79, 0x6f, 0x77, 0x61, 0x0, |
| 3004 | 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x54, 0x61, 0x68, 0x69, 0x74, 0x69, 0x0, 0x50, |
| 3005 | 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x46, 0x61, 0x6b, 0x61, 0x6f, 0x66, 0x6f, 0x0, 0x50, |
| 3006 | 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x46, 0x75, 0x6e, 0x61, 0x66, 0x75, 0x74, 0x69, 0x0, |
| 3007 | 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x45, 0x66, 0x61, 0x74, 0x65, 0x0, 0x41, 0x6e, |
| 3008 | 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x56, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, |
| 3009 | 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x57, 0x61, 0x6b, 0x65, 0x0, 0x50, 0x61, 0x63, |
| 3010 | 0x69, 0x66, 0x69, 0x63, 0x2f, 0x57, 0x61, 0x6c, 0x6c, 0x69, 0x73, 0x0, 0x41, 0x66, 0x72, 0x69, |
| 3011 | 0x63, 0x61, 0x2f, 0x41, 0x6c, 0x67, 0x69, 0x65, 0x72, 0x73, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, |
| 3012 | 0x61, 0x2f, 0x42, 0x69, 0x73, 0x73, 0x61, 0x75, 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 3013 | 0x43, 0x65, 0x75, 0x74, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, |
| 3014 | 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x4c, 0x61, 0x5f, 0x52, 0x69, 0x6f, 0x6a, 0x61, |
| 3015 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, |
| 3016 | 0x6e, 0x61, 0x2f, 0x52, 0x69, 0x6f, 0x5f, 0x47, 0x61, 0x6c, 0x6c, 0x65, 0x67, 0x6f, 0x73, 0x0, |
| 3017 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, |
| 3018 | 0x61, 0x2f, 0x53, 0x61, 0x6c, 0x74, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 3019 | 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x5f, 0x4a, 0x75, |
| 3020 | 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, |
| 3021 | 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x54, 0x75, 0x63, 0x75, 0x6d, 0x61, 0x6e, 0x0, 0x41, 0x6d, 0x65, |
| 3022 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x2f, 0x55, |
| 3023 | 0x73, 0x68, 0x75, 0x61, 0x69, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, |
| 3024 | 0x61, 0x68, 0x69, 0x61, 0x5f, 0x42, 0x61, 0x6e, 0x64, 0x65, 0x72, 0x61, 0x73, 0x0, 0x41, 0x6d, |
| 3025 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x65, 0x6c, 0x65, 0x6d, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 3026 | 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6c, 0x61, 0x6e, 0x63, 0x2d, 0x53, 0x61, 0x62, 0x6c, 0x6f, 0x6e, |
| 3027 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x61, 0x5f, 0x56, 0x69, 0x73, |
| 3028 | 0x74, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x42, 0x6f, 0x69, 0x73, 0x65, |
| 3029 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x61, 0x6d, 0x62, 0x72, 0x69, 0x64, |
| 3030 | 0x67, 0x65, 0x5f, 0x42, 0x61, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, |
| 3031 | 0x61, 0x6d, 0x70, 0x6f, 0x5f, 0x47, 0x72, 0x61, 0x6e, 0x64, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 3032 | 0x69, 0x63, 0x61, 0x2f, 0x43, 0x68, 0x69, 0x68, 0x75, 0x61, 0x68, 0x75, 0x61, 0x0, 0x41, 0x6d, |
| 3033 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x69, 0x75, 0x64, 0x61, 0x64, 0x5f, 0x4a, 0x75, 0x61, |
| 3034 | 0x72, 0x65, 0x7a, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x43, 0x72, 0x65, 0x73, |
| 3035 | 0x74, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x44, 0x61, 0x6e, 0x6d, |
| 3036 | 0x61, 0x72, 0x6b, 0x73, 0x68, 0x61, 0x76, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 3037 | 0x2f, 0x44, 0x61, 0x77, 0x73, 0x6f, 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 3038 | 0x44, 0x61, 0x77, 0x73, 0x6f, 0x6e, 0x5f, 0x43, 0x72, 0x65, 0x65, 0x6b, 0x0, 0x41, 0x6d, 0x65, |
| 3039 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x45, 0x69, 0x72, 0x75, 0x6e, 0x65, 0x70, 0x65, 0x0, 0x41, 0x6d, |
| 3040 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x46, 0x6f, 0x72, 0x74, 0x5f, 0x4e, 0x65, 0x6c, 0x73, 0x6f, |
| 3041 | 0x6e, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x46, 0x6f, 0x72, 0x74, 0x61, 0x6c, |
| 3042 | 0x65, 0x7a, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x47, 0x6c, 0x61, 0x63, |
| 3043 | 0x65, 0x5f, 0x42, 0x61, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x48, 0x65, |
| 3044 | 0x72, 0x6d, 0x6f, 0x73, 0x69, 0x6c, 0x6c, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 3045 | 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x4d, 0x61, 0x72, 0x65, 0x6e, 0x67, 0x6f, |
| 3046 | 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, |
| 3047 | 0x2f, 0x50, 0x65, 0x74, 0x65, 0x72, 0x73, 0x62, 0x75, 0x72, 0x67, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 3048 | 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x54, 0x65, 0x6c, 0x6c, |
| 3049 | 0x5f, 0x43, 0x69, 0x74, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, |
| 3050 | 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x56, 0x65, 0x76, 0x61, 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 3051 | 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x56, 0x69, 0x6e, 0x63, |
| 3052 | 0x65, 0x6e, 0x6e, 0x65, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, |
| 3053 | 0x64, 0x69, 0x61, 0x6e, 0x61, 0x2f, 0x57, 0x69, 0x6e, 0x61, 0x6d, 0x61, 0x63, 0x0, 0x41, 0x6d, |
| 3054 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x49, 0x6e, 0x75, 0x76, 0x69, 0x6b, 0x0, 0x41, 0x6d, 0x65, |
| 3055 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4b, 0x65, 0x6e, 0x74, 0x75, 0x63, 0x6b, 0x79, 0x2f, 0x4d, 0x6f, |
| 3056 | 0x6e, 0x74, 0x69, 0x63, 0x65, 0x6c, 0x6c, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 3057 | 0x2f, 0x4d, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 3058 | 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x75, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 3059 | 0x4d, 0x61, 0x74, 0x61, 0x6d, 0x6f, 0x72, 0x6f, 0x73, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, |
| 3060 | 0x61, 0x2f, 0x4d, 0x65, 0x6e, 0x6f, 0x6d, 0x69, 0x6e, 0x65, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 3061 | 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x72, 0x69, 0x64, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, |
| 3062 | 0x63, 0x61, 0x2f, 0x4d, 0x65, 0x74, 0x6c, 0x61, 0x6b, 0x61, 0x74, 0x6c, 0x61, 0x0, 0x41, 0x6d, |
| 3063 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x63, 0x74, 0x6f, 0x6e, 0x0, 0x41, 0x6d, |
| 3064 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4d, 0x6f, 0x6e, 0x74, 0x65, 0x72, 0x72, 0x65, 0x79, 0x0, |
| 3065 | 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x6d, 0x65, 0x0, 0x41, 0x6d, 0x65, |
| 3066 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74, |
| 3067 | 0x61, 0x2f, 0x42, 0x65, 0x75, 0x6c, 0x61, 0x68, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, |
| 3068 | 0x2f, 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x43, 0x65, |
| 3069 | 0x6e, 0x74, 0x65, 0x72, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4e, 0x6f, 0x72, |
| 3070 | 0x74, 0x68, 0x5f, 0x44, 0x61, 0x6b, 0x6f, 0x74, 0x61, 0x2f, 0x4e, 0x65, 0x77, 0x5f, 0x53, 0x61, |
| 3071 | 0x6c, 0x65, 0x6d, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x4f, 0x6a, 0x69, 0x6e, |
| 3072 | 0x61, 0x67, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x6f, 0x72, 0x74, |
| 3073 | 0x6f, 0x5f, 0x56, 0x65, 0x6c, 0x68, 0x6f, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 3074 | 0x52, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x5f, 0x49, 0x6e, 0x6c, 0x65, 0x74, 0x0, 0x41, 0x6d, 0x65, |
| 3075 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x52, 0x65, 0x63, 0x69, 0x66, 0x65, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 3076 | 0x69, 0x63, 0x61, 0x2f, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x0, 0x41, 0x6d, 0x65, |
| 3077 | 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x61, 0x6e, 0x74, 0x61, 0x72, 0x65, 0x6d, 0x0, 0x41, 0x6d, |
| 3078 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x69, 0x74, 0x6b, 0x61, 0x0, 0x41, 0x6d, 0x65, 0x72, |
| 3079 | 0x69, 0x63, 0x61, 0x2f, 0x53, 0x74, 0x5f, 0x42, 0x61, 0x72, 0x74, 0x68, 0x65, 0x6c, 0x65, 0x6d, |
| 3080 | 0x79, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, 0x53, 0x77, 0x69, 0x66, 0x74, 0x5f, |
| 3081 | 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x0, 0x41, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x2f, |
| 3082 | 0x59, 0x61, 0x6b, 0x75, 0x74, 0x61, 0x74, 0x0, 0x41, 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, |
| 3083 | 0x63, 0x61, 0x2f, 0x4d, 0x61, 0x63, 0x71, 0x75, 0x61, 0x72, 0x69, 0x65, 0x0, 0x41, 0x6e, 0x74, |
| 3084 | 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x50, 0x61, 0x6c, 0x6d, 0x65, 0x72, 0x0, 0x41, |
| 3085 | 0x6e, 0x74, 0x61, 0x72, 0x63, 0x74, 0x69, 0x63, 0x61, 0x2f, 0x54, 0x72, 0x6f, 0x6c, 0x6c, 0x0, |
| 3086 | 0x41, 0x73, 0x69, 0x61, 0x2f, 0x41, 0x74, 0x79, 0x72, 0x61, 0x75, 0x0, 0x41, 0x73, 0x69, 0x61, |
| 3087 | 0x2f, 0x46, 0x61, 0x6d, 0x61, 0x67, 0x75, 0x73, 0x74, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, |
| 3088 | 0x47, 0x61, 0x7a, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4b, 0x68, 0x61, 0x6e, 0x64, 0x79, |
| 3089 | 0x67, 0x61, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x4e, 0x6f, 0x76, 0x6f, 0x6b, 0x75, 0x7a, 0x6e, |
| 3090 | 0x65, 0x74, 0x73, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x50, 0x6f, 0x6e, 0x74, 0x69, 0x61, |
| 3091 | 0x6e, 0x61, 0x6b, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x51, 0x6f, 0x73, 0x74, 0x61, 0x6e, 0x61, |
| 3092 | 0x79, 0x0, 0x41, 0x73, 0x69, 0x61, 0x2f, 0x55, 0x73, 0x74, 0x2d, 0x4e, 0x65, 0x72, 0x61, 0x0, |
| 3093 | 0x41, 0x74, 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x2f, 0x4d, 0x61, 0x64, 0x65, 0x69, 0x72, 0x61, |
| 3094 | 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x2f, 0x4c, 0x69, 0x6e, 0x64, 0x65, |
| 3095 | 0x6d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x42, 0x75, 0x73, 0x69, 0x6e, |
| 3096 | 0x67, 0x65, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x47, 0x75, 0x65, 0x72, 0x6e, |
| 3097 | 0x73, 0x65, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x49, 0x73, 0x6c, 0x65, 0x5f, |
| 3098 | 0x6f, 0x66, 0x5f, 0x4d, 0x61, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4a, 0x65, |
| 3099 | 0x72, 0x73, 0x65, 0x79, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x52, 0x69, 0x67, 0x61, |
| 3100 | 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x53, 0x69, 0x6d, 0x66, 0x65, 0x72, 0x6f, 0x70, |
| 3101 | 0x6f, 0x6c, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x54, 0x61, 0x6c, 0x6c, 0x69, 0x6e, |
| 3102 | 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x55, 0x6c, 0x79, 0x61, 0x6e, 0x6f, 0x76, |
| 3103 | 0x73, 0x6b, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x56, 0x69, 0x6c, 0x6e, 0x69, 0x75, |
| 3104 | 0x73, 0x0, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2f, 0x4d, 0x69, 0x64, 0x77, 0x61, 0x79, |
| 3105 | 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x2f, 0x4b, 0x69, 0x72, 0x6f, 0x76, 0x0 |
| 3106 | }; |
| 3107 | |
| 3108 | #if QT_CONFIG(timezone_locale) && !QT_CONFIG(icu) |
| 3109 | |
| 3110 | static inline constexpr char metaIdData[] = { |
| 3111 | 0x41, 0x63, 0x72, 0x65, 0x0, 0x41, 0x66, 0x67, 0x68, 0x61, 0x6e, 0x69, 0x73, 0x74, 0x61, 0x6e, |
| 3112 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x0, |
| 3113 | 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x41, |
| 3114 | 0x66, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x46, 0x61, 0x72, 0x57, 0x65, 0x73, 0x74, 0x65, 0x72, 0x6e, |
| 3115 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x65, 0x72, 0x6e, |
| 3116 | 0x0, 0x41, 0x66, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x57, 0x65, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, |
| 3117 | 0x41, 0x6b, 0x74, 0x79, 0x75, 0x62, 0x69, 0x6e, 0x73, 0x6b, 0x0, 0x41, 0x6c, 0x61, 0x73, 0x6b, |
| 3118 | 0x61, 0x0, 0x41, 0x6c, 0x61, 0x73, 0x6b, 0x61, 0x5f, 0x48, 0x61, 0x77, 0x61, 0x69, 0x69, 0x0, |
| 3119 | 0x41, 0x6c, 0x6d, 0x61, 0x74, 0x79, 0x0, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x0, 0x41, 0x6d, |
| 3120 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x0, 0x41, 0x6d, |
| 3121 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x41, 0x6d, |
| 3122 | 0x65, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x0, 0x41, |
| 3123 | 0x6d, 0x65, 0x72, 0x69, 0x63, 0x61, 0x5f, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x0, 0x41, |
| 3124 | 0x6e, 0x61, 0x64, 0x79, 0x72, 0x0, 0x41, 0x70, 0x69, 0x61, 0x0, 0x41, 0x71, 0x74, 0x61, 0x75, |
| 3125 | 0x0, 0x41, 0x71, 0x74, 0x6f, 0x62, 0x65, 0x0, 0x41, 0x72, 0x61, 0x62, 0x69, 0x61, 0x6e, 0x0, |
| 3126 | 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, 0x69, 0x6e, 0x61, 0x0, 0x41, 0x72, 0x67, 0x65, 0x6e, 0x74, |
| 3127 | 0x69, 0x6e, 0x61, 0x5f, 0x57, 0x65, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x41, 0x72, 0x6d, 0x65, |
| 3128 | 0x6e, 0x69, 0x61, 0x0, 0x41, 0x73, 0x68, 0x6b, 0x68, 0x61, 0x62, 0x61, 0x64, 0x0, 0x41, 0x74, |
| 3129 | 0x6c, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, |
| 3130 | 0x5f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, |
| 3131 | 0x69, 0x61, 0x5f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x57, 0x65, 0x73, 0x74, 0x65, 0x72, |
| 3132 | 0x6e, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x5f, 0x45, 0x61, 0x73, 0x74, |
| 3133 | 0x65, 0x72, 0x6e, 0x0, 0x41, 0x75, 0x73, 0x74, 0x72, 0x61, 0x6c, 0x69, 0x61, 0x5f, 0x57, 0x65, |
| 3134 | 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x41, 0x7a, 0x65, 0x72, 0x62, 0x61, 0x69, 0x6a, 0x61, 0x6e, |
| 3135 | 0x0, 0x41, 0x7a, 0x6f, 0x72, 0x65, 0x73, 0x0, 0x42, 0x61, 0x6b, 0x75, 0x0, 0x42, 0x61, 0x6e, |
| 3136 | 0x67, 0x6c, 0x61, 0x64, 0x65, 0x73, 0x68, 0x0, 0x42, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x0, 0x42, |
| 3137 | 0x68, 0x75, 0x74, 0x61, 0x6e, 0x0, 0x42, 0x6f, 0x6c, 0x69, 0x76, 0x69, 0x61, 0x0, 0x42, 0x6f, |
| 3138 | 0x72, 0x6e, 0x65, 0x6f, 0x0, 0x42, 0x72, 0x61, 0x73, 0x69, 0x6c, 0x69, 0x61, 0x0, 0x42, 0x72, |
| 3139 | 0x69, 0x74, 0x69, 0x73, 0x68, 0x0, 0x42, 0x72, 0x75, 0x6e, 0x65, 0x69, 0x0, 0x43, 0x61, 0x70, |
| 3140 | 0x65, 0x5f, 0x56, 0x65, 0x72, 0x64, 0x65, 0x0, 0x43, 0x61, 0x73, 0x65, 0x79, 0x0, 0x43, 0x68, |
| 3141 | 0x61, 0x6d, 0x6f, 0x72, 0x72, 0x6f, 0x0, 0x43, 0x68, 0x61, 0x74, 0x68, 0x61, 0x6d, 0x0, 0x43, |
| 3142 | 0x68, 0x69, 0x6c, 0x65, 0x0, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x0, 0x43, 0x68, 0x72, 0x69, 0x73, |
| 3143 | 0x74, 0x6d, 0x61, 0x73, 0x0, 0x43, 0x6f, 0x63, 0x6f, 0x73, 0x0, 0x43, 0x6f, 0x6c, 0x6f, 0x6d, |
| 3144 | 0x62, 0x69, 0x61, 0x0, 0x43, 0x6f, 0x6f, 0x6b, 0x0, 0x43, 0x75, 0x62, 0x61, 0x0, 0x44, 0x61, |
| 3145 | 0x63, 0x63, 0x61, 0x0, 0x44, 0x61, 0x76, 0x69, 0x73, 0x0, 0x44, 0x6f, 0x6d, 0x69, 0x6e, 0x69, |
| 3146 | 0x63, 0x61, 0x6e, 0x0, 0x44, 0x75, 0x6d, 0x6f, 0x6e, 0x74, 0x44, 0x55, 0x72, 0x76, 0x69, 0x6c, |
| 3147 | 0x6c, 0x65, 0x0, 0x44, 0x75, 0x73, 0x68, 0x61, 0x6e, 0x62, 0x65, 0x0, 0x44, 0x75, 0x74, 0x63, |
| 3148 | 0x68, 0x5f, 0x47, 0x75, 0x69, 0x61, 0x6e, 0x61, 0x0, 0x45, 0x61, 0x73, 0x74, 0x5f, 0x54, 0x69, |
| 3149 | 0x6d, 0x6f, 0x72, 0x0, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x0, 0x45, 0x63, 0x75, 0x61, 0x64, |
| 3150 | 0x6f, 0x72, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x5f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, |
| 3151 | 0x6c, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x5f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, |
| 3152 | 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x5f, 0x46, 0x75, 0x72, 0x74, 0x68, 0x65, 0x72, 0x5f, |
| 3153 | 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x45, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x5f, 0x57, |
| 3154 | 0x65, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x46, 0x61, 0x6c, 0x6b, 0x6c, 0x61, 0x6e, 0x64, 0x0, |
| 3155 | 0x46, 0x69, 0x6a, 0x69, 0x0, 0x46, 0x72, 0x65, 0x6e, 0x63, 0x68, 0x5f, 0x47, 0x75, 0x69, 0x61, |
| 3156 | 0x6e, 0x61, 0x0, 0x46, 0x72, 0x65, 0x6e, 0x63, 0x68, 0x5f, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x65, |
| 3157 | 0x72, 0x6e, 0x0, 0x46, 0x72, 0x75, 0x6e, 0x7a, 0x65, 0x0, 0x47, 0x61, 0x6c, 0x61, 0x70, 0x61, |
| 3158 | 0x67, 0x6f, 0x73, 0x0, 0x47, 0x61, 0x6d, 0x62, 0x69, 0x65, 0x72, 0x0, 0x47, 0x65, 0x6f, 0x72, |
| 3159 | 0x67, 0x69, 0x61, 0x0, 0x47, 0x69, 0x6c, 0x62, 0x65, 0x72, 0x74, 0x5f, 0x49, 0x73, 0x6c, 0x61, |
| 3160 | 0x6e, 0x64, 0x73, 0x0, 0x47, 0x4d, 0x54, 0x0, 0x47, 0x6f, 0x6f, 0x73, 0x65, 0x5f, 0x42, 0x61, |
| 3161 | 0x79, 0x0, 0x47, 0x72, 0x65, 0x65, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x47, 0x72, 0x65, 0x65, |
| 3162 | 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x5f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, 0x0, 0x47, 0x72, |
| 3163 | 0x65, 0x65, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x5f, 0x45, 0x61, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, |
| 3164 | 0x47, 0x72, 0x65, 0x65, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x5f, 0x57, 0x65, 0x73, 0x74, 0x65, 0x72, |
| 3165 | 0x6e, 0x0, 0x47, 0x75, 0x61, 0x6d, 0x0, 0x47, 0x75, 0x6c, 0x66, 0x0, 0x47, 0x75, 0x79, 0x61, |
| 3166 | 0x6e, 0x61, 0x0, 0x48, 0x61, 0x77, 0x61, 0x69, 0x69, 0x5f, 0x41, 0x6c, 0x65, 0x75, 0x74, 0x69, |
| 3167 | 0x61, 0x6e, 0x0, 0x48, 0x6f, 0x6e, 0x67, 0x5f, 0x4b, 0x6f, 0x6e, 0x67, 0x0, 0x48, 0x6f, 0x76, |
| 3168 | 0x64, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x0, 0x49, 0x6e, 0x64, 0x69, 0x61, 0x6e, 0x5f, 0x4f, |
| 3169 | 0x63, 0x65, 0x61, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x6f, 0x63, 0x68, 0x69, 0x6e, 0x61, 0x0, 0x49, |
| 3170 | 0x6e, 0x64, 0x6f, 0x6e, 0x65, 0x73, 0x69, 0x61, 0x5f, 0x43, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6c, |
| 3171 | 0x0, 0x49, 0x6e, 0x64, 0x6f, 0x6e, 0x65, 0x73, 0x69, 0x61, 0x5f, 0x45, 0x61, 0x73, 0x74, 0x65, |
| 3172 | 0x72, 0x6e, 0x0, 0x49, 0x6e, 0x64, 0x6f, 0x6e, 0x65, 0x73, 0x69, 0x61, 0x5f, 0x57, 0x65, 0x73, |
| 3173 | 0x74, 0x65, 0x72, 0x6e, 0x0, 0x49, 0x72, 0x61, 0x6e, 0x0, 0x49, 0x72, 0x69, 0x73, 0x68, 0x0, |
| 3174 | 0x49, 0x72, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x0, 0x49, 0x73, 0x72, 0x61, 0x65, 0x6c, 0x0, 0x4a, |
| 3175 | 0x61, 0x70, 0x61, 0x6e, 0x0, 0x4b, 0x61, 0x6d, 0x63, 0x68, 0x61, 0x74, 0x6b, 0x61, 0x0, 0x4b, |
| 3176 | 0x61, 0x72, 0x61, 0x63, 0x68, 0x69, 0x0, 0x4b, 0x61, 0x7a, 0x61, 0x6b, 0x68, 0x73, 0x74, 0x61, |
| 3177 | 0x6e, 0x0, 0x4b, 0x61, 0x7a, 0x61, 0x6b, 0x68, 0x73, 0x74, 0x61, 0x6e, 0x5f, 0x45, 0x61, 0x73, |
| 3178 | 0x74, 0x65, 0x72, 0x6e, 0x0, 0x4b, 0x61, 0x7a, 0x61, 0x6b, 0x68, 0x73, 0x74, 0x61, 0x6e, 0x5f, |
| 3179 | 0x57, 0x65, 0x73, 0x74, 0x65, 0x72, 0x6e, 0x0, 0x4b, 0x69, 0x7a, 0x69, 0x6c, 0x6f, 0x72, 0x64, |
| 3180 | 0x61, 0x0, 0x4b, 0x6f, 0x72, 0x65, 0x61, 0x0, 0x4b, 0x6f, 0x73, 0x72, 0x61, 0x65, 0x0, 0x4b, |
| 3181 | 0x72, 0x61, 0x73, 0x6e, 0x6f, 0x79, 0x61, 0x72, 0x73, 0x6b, 0x0, 0x4b, 0x75, 0x79, 0x62, 0x79, |
| 3182 | 0x73, 0x68, 0x65, 0x76, 0x0, 0x4b, 0x77, 0x61, 0x6a, 0x61, 0x6c, 0x65, 0x69, 0x6e, 0x0, 0x4b, |
| 3183 | 0x79, 0x72, 0x67, 0x79, 0x73, 0x74, 0x61, 0x6e, 0x0, 0x4c, 0x61, 0x6e, 0x6b, 0x61, 0x0, 0x4c, |
| 3184 | 0x69, 0x62, 0x65, 0x72, 0x69, 0x61, 0x0, 0x4c, 0x69, 0x6e, 0x65, 0x5f, 0x49, 0x73, 0x6c, 0x61, |
| 3185 | 0x6e, 0x64, 0x73, 0x0, 0x4c, 0x6f, 0x72, 0x64, 0x5f, 0x48, 0x6f, 0x77, 0x65, 0x0, 0x4d, 0x61, |
| 3186 | 0x63, 0x61, 0x75, 0x0, 0x4d, 0x61, 0x67, 0x61, 0x64, 0x61, 0x6e, 0x0, 0x4d, 0x61, 0x6c, 0x61, |
| 3187 | 0x79, 0x61, 0x0, 0x4d, 0x61, 0x6c, 0x61, 0x79, 0x73, 0x69, 0x61, 0x0, 0x4d, 0x61, 0x6c, 0x64, |
| 3188 | 0x69, 0x76, 0x65, 0x73, 0x0, 0x4d, 0x61, 0x72, 0x71, 0x75, 0x65, 0x73, 0x61, 0x73, 0x0, 0x4d, |
| 3189 | 0x61, 0x72, 0x73, 0x68, 0x61, 0x6c, 0x6c, 0x5f, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x73, 0x0, |
| 3190 | 0x4d, 0x61, 0x75, 0x72, 0x69, 0x74, 0x69, 0x75, 0x73, 0x0, 0x4d, 0x61, 0x77, 0x73, 0x6f, 0x6e, |
| 3191 | 0x0, 0x4d, 0x65, 0x78, 0x69, 0x63, 0x6f, 0x5f, 0x50, 0x61, 0x63, 0x69, 0x66, 0x69, 0x63, 0x0, |
| 3192 | 0x4d, 0x6f, 0x6e, 0x67, 0x6f, 0x6c, 0x69, 0x61, 0x0, 0x4d, 0x6f, 0x73, 0x63, 0x6f, 0x77, 0x0, |
| 3193 | 0x4d, 0x79, 0x61, 0x6e, 0x6d, 0x61, 0x72, 0x0, 0x4e, 0x61, 0x75, 0x72, 0x75, 0x0, 0x4e, 0x65, |
| 3194 | 0x70, 0x61, 0x6c, 0x0, 0x4e, 0x65, 0x77, 0x5f, 0x43, 0x61, 0x6c, 0x65, 0x64, 0x6f, 0x6e, 0x69, |
| 3195 | 0x61, 0x0, 0x4e, 0x65, 0x77, 0x5f, 0x5a, 0x65, 0x61, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x4e, 0x65, |
| 3196 | 0x77, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x6c, 0x61, 0x6e, 0x64, 0x0, 0x4e, 0x69, 0x75, 0x65, 0x0, |
| 3197 | 0x4e, 0x6f, 0x72, 0x66, 0x6f, 0x6c, 0x6b, 0x0, 0x4e, 0x6f, 0x72, 0x6f, 0x6e, 0x68, 0x61, 0x0, |
| 3198 | 0x4e, 0x6f, 0x72, 0x74, 0x68, 0x5f, 0x4d, 0x61, 0x72, 0x69, 0x61, 0x6e, 0x61, 0x0, 0x4e, 0x6f, |
| 3199 | 0x76, 0x6f, 0x73, 0x69, 0x62, 0x69, 0x72, 0x73, 0x6b, 0x0, 0x4f, 0x6d, 0x73, 0x6b, 0x0, 0x4f, |
| 3200 | 0x72, 0x61, 0x6c, 0x0, 0x50, 0x61, 0x6b, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x0, 0x50, 0x61, 0x6c, |
| 3201 | 0x61, 0x75, 0x0, 0x50, 0x61, 0x70, 0x75, 0x61, 0x5f, 0x4e, 0x65, 0x77, 0x5f, 0x47, 0x75, 0x69, |
| 3202 | 0x6e, 0x65, 0x61, 0x0, 0x50, 0x61, 0x72, 0x61, 0x67, 0x75, 0x61, 0x79, 0x0, 0x50, 0x65, 0x72, |
| 3203 | 0x75, 0x0, 0x50, 0x68, 0x69, 0x6c, 0x69, 0x70, 0x70, 0x69, 0x6e, 0x65, 0x73, 0x0, 0x50, 0x68, |
| 3204 | 0x6f, 0x65, 0x6e, 0x69, 0x78, 0x5f, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x73, 0x0, 0x50, 0x69, |
| 3205 | 0x65, 0x72, 0x72, 0x65, 0x5f, 0x4d, 0x69, 0x71, 0x75, 0x65, 0x6c, 0x6f, 0x6e, 0x0, 0x50, 0x69, |
| 3206 | 0x74, 0x63, 0x61, 0x69, 0x72, 0x6e, 0x0, 0x50, 0x6f, 0x6e, 0x61, 0x70, 0x65, 0x0, 0x50, 0x79, |
| 3207 | 0x6f, 0x6e, 0x67, 0x79, 0x61, 0x6e, 0x67, 0x0, 0x51, 0x79, 0x7a, 0x79, 0x6c, 0x6f, 0x72, 0x64, |
| 3208 | 0x61, 0x0, 0x52, 0x65, 0x75, 0x6e, 0x69, 0x6f, 0x6e, 0x0, 0x52, 0x6f, 0x74, 0x68, 0x65, 0x72, |
| 3209 | 0x61, 0x0, 0x53, 0x61, 0x6b, 0x68, 0x61, 0x6c, 0x69, 0x6e, 0x0, 0x53, 0x61, 0x6d, 0x61, 0x72, |
| 3210 | 0x61, 0x0, 0x53, 0x61, 0x6d, 0x61, 0x72, 0x6b, 0x61, 0x6e, 0x64, 0x0, 0x53, 0x61, 0x6d, 0x6f, |
| 3211 | 0x61, 0x0, 0x53, 0x65, 0x79, 0x63, 0x68, 0x65, 0x6c, 0x6c, 0x65, 0x73, 0x0, 0x53, 0x68, 0x65, |
| 3212 | 0x76, 0x63, 0x68, 0x65, 0x6e, 0x6b, 0x6f, 0x0, 0x53, 0x69, 0x6e, 0x67, 0x61, 0x70, 0x6f, 0x72, |
| 3213 | 0x65, 0x0, 0x53, 0x6f, 0x6c, 0x6f, 0x6d, 0x6f, 0x6e, 0x0, 0x53, 0x6f, 0x75, 0x74, 0x68, 0x5f, |
| 3214 | 0x47, 0x65, 0x6f, 0x72, 0x67, 0x69, 0x61, 0x0, 0x53, 0x75, 0x72, 0x69, 0x6e, 0x61, 0x6d, 0x65, |
| 3215 | 0x0, 0x53, 0x76, 0x65, 0x72, 0x64, 0x6c, 0x6f, 0x76, 0x73, 0x6b, 0x0, 0x53, 0x79, 0x6f, 0x77, |
| 3216 | 0x61, 0x0, 0x54, 0x61, 0x68, 0x69, 0x74, 0x69, 0x0, 0x54, 0x61, 0x69, 0x70, 0x65, 0x69, 0x0, |
| 3217 | 0x54, 0x61, 0x6a, 0x69, 0x6b, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x0, 0x54, 0x61, 0x73, 0x68, 0x6b, |
| 3218 | 0x65, 0x6e, 0x74, 0x0, 0x54, 0x62, 0x69, 0x6c, 0x69, 0x73, 0x69, 0x0, 0x54, 0x6f, 0x6b, 0x65, |
| 3219 | 0x6c, 0x61, 0x75, 0x0, 0x54, 0x6f, 0x6e, 0x67, 0x61, 0x0, 0x54, 0x72, 0x75, 0x6b, 0x0, 0x54, |
| 3220 | 0x75, 0x72, 0x6b, 0x65, 0x79, 0x0, 0x54, 0x75, 0x72, 0x6b, 0x6d, 0x65, 0x6e, 0x69, 0x73, 0x74, |
| 3221 | 0x61, 0x6e, 0x0, 0x54, 0x75, 0x76, 0x61, 0x6c, 0x75, 0x0, 0x55, 0x72, 0x61, 0x6c, 0x73, 0x6b, |
| 3222 | 0x0, 0x55, 0x72, 0x75, 0x67, 0x75, 0x61, 0x79, 0x0, 0x55, 0x72, 0x75, 0x6d, 0x71, 0x69, 0x0, |
| 3223 | 0x55, 0x7a, 0x62, 0x65, 0x6b, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x0, 0x56, 0x61, 0x6e, 0x75, 0x61, |
| 3224 | 0x74, 0x75, 0x0, 0x56, 0x65, 0x6e, 0x65, 0x7a, 0x75, 0x65, 0x6c, 0x61, 0x0, 0x56, 0x6c, 0x61, |
| 3225 | 0x64, 0x69, 0x76, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, 0x56, 0x6f, 0x6c, 0x67, 0x6f, 0x67, 0x72, |
| 3226 | 0x61, 0x64, 0x0, 0x56, 0x6f, 0x73, 0x74, 0x6f, 0x6b, 0x0, 0x57, 0x61, 0x6b, 0x65, 0x0, 0x57, |
| 3227 | 0x61, 0x6c, 0x6c, 0x69, 0x73, 0x0, 0x59, 0x61, 0x6b, 0x75, 0x74, 0x73, 0x6b, 0x0, 0x59, 0x65, |
| 3228 | 0x6b, 0x61, 0x74, 0x65, 0x72, 0x69, 0x6e, 0x62, 0x75, 0x72, 0x67, 0x0, 0x59, 0x65, 0x72, 0x65, |
| 3229 | 0x76, 0x61, 0x6e, 0x0, 0x59, 0x75, 0x6b, 0x6f, 0x6e, 0x0 |
| 3230 | }; |
| 3231 | |
| 3232 | #endif // timezone_locale but not ICU |
| 3233 | |
| 3234 | // GENERATED PART ENDS HERE |
| 3235 | |
| 3236 | constexpr QByteArrayView AliasData::aliasId() const { return ianaIdData + aliasIdIndex; } |
| 3237 | constexpr QByteArrayView AliasData::ianaId() const { return ianaIdData + ianaIdIndex; } |
| 3238 | #if QT_CONFIG(timezone_locale) && !QT_CONFIG(icu) |
| 3239 | constexpr QByteArrayView TerritoryZone::ianaId() const { return ianaIdData + ianaIdIndex; } |
| 3240 | constexpr QByteArrayView MetaZoneData::ianaId() const { return ianaIdData + ianaIdIndex; } |
| 3241 | constexpr QByteArrayView MetaZoneData::metaZoneId() const { return metaIdData + metaIdIndex; } |
| 3242 | constexpr QByteArrayView ZoneMetaHistory::ianaId() const { return ianaIdData + ianaIdIndex; } |
| 3243 | #endif // timezone_locale but not ICU |
| 3244 | constexpr QByteArrayView WindowsData::windowsId() const { return windowsIdData + windowsIdIndex; } |
| 3245 | constexpr QByteArrayView WindowsData::ianaId() const { return ianaIdData + ianaIdIndex; } |
| 3246 | // Each of the following returns a space-joined sequence of IANA IDs: |
| 3247 | constexpr QByteArrayView UtcData::id() const { return ianaListData + ianaIdIndex; } |
| 3248 | constexpr QLatin1StringView ZoneData::id() const |
| 3249 | { return QLatin1StringView(ianaListData + ianaIdIndex); } |
| 3250 | |
| 3251 | } // namespace QtTimeZoneCldr |
| 3252 | |
| 3253 | QT_END_NAMESPACE |
| 3254 | |
| 3255 | #endif // QTIMEZONEPRIVATE_DATA_P_H |
| 3256 | |