@bizdoc/core 1.7.0-next.3 → 1.7.0-next.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -3
- package/assets/fonts/MaterialIcons-Regular.svg +2373 -2373
- package/assets/fonts/README.md +9 -9
- package/assets/fonts/codepoints +932 -932
- package/assets/fonts/material-icons.css +36 -36
- package/assets/themes/brown.min.css +83 -81
- package/assets/themes/dark.min.css +77 -75
- package/assets/themes/default.min.css +90 -88
- package/assets/themes/green.min.css +83 -81
- package/assets/themes/indigo.min.css +83 -81
- package/bundles/bizdoc-core.umd.js +1086 -1600
- package/bundles/bizdoc-core.umd.js.map +1 -1
- package/esm2015/lib/app.component.js +7 -13
- package/esm2015/lib/bizdoc.module.js +2 -37
- package/esm2015/lib/browse/filter/filter.component.js +2 -2
- package/esm2015/lib/core/configuration.js +1 -1
- package/esm2015/lib/core/controls/combination-picker-body.js +2 -2
- package/esm2015/lib/core/models.js +1 -1
- package/esm2015/lib/core/session.service.js +5 -9
- package/esm2015/lib/core/slots/slots.component.js +6 -4
- package/esm2015/lib/cube/accum/accum.component.js +4 -7
- package/esm2015/lib/cube/chart/chart.component.js +6 -3
- package/esm2015/lib/cube/cube-info.service.js +100 -0
- package/esm2015/lib/cube/cube-view.component.js +11 -30
- package/esm2015/lib/cube/declarations.js +1 -1
- package/esm2015/lib/cube/explore/explore-items.component.js +5 -7
- package/esm2015/lib/cube/explore/explore.pane.component.js +2 -5
- package/esm2015/lib/cube/filter/filter-tags.component.exp.js +8 -8
- package/esm2015/lib/cube/filter/filter.component.js +14 -11
- package/esm2015/lib/cube/grid/grid.component.js +4 -3
- package/esm2015/lib/cube/grid/spreadsheet.component.js +4 -4
- package/esm2015/lib/cube/matrix/matrix.base.js +130 -0
- package/esm2015/lib/cube/matrix/matrix.component.js +68 -0
- package/esm2015/lib/cube/matrix/matrix.mobile.component.js +62 -0
- package/esm2015/lib/cube/matrix/matrix.pane.component.js +70 -0
- package/esm2015/lib/cube/matrix/table.component.js +254 -0
- package/esm2015/lib/cube/pivot/pivot.component.js +4 -4
- package/esm2015/lib/cube/view-base.js +76 -0
- package/esm2015/lib/cube/view.mobile.component.js +31 -54
- package/esm2015/lib/cube/view.pane.component.js +26 -58
- package/esm2015/lib/dashboard/cube/accum-cube.widget.js +2 -2
- package/esm2015/lib/dashboard/cube/cube-analysis.base.js +2 -2
- package/esm2015/lib/dashboard/cube/cube-chart.widget.js +2 -2
- package/esm2015/lib/dashboard/cube/filter/filter.component.js +3 -3
- package/esm2015/lib/desktop.module.js +6 -6
- package/esm2015/lib/home/sign/sign.component.js +2 -2
- package/esm2015/lib/impersonate/impersonate.component.js +69 -0
- package/esm2015/lib/mobile.module.js +9 -9
- package/esm2015/lib/reports/cube/grid-documents.component.js +10 -9
- package/esm2015/lib/reports/cube/usage-args.component.js +2 -2
- package/esm2015/lib/routes.desktop.js +3 -3
- package/esm2015/lib/routes.mobile.js +5 -5
- package/esm2015/lib/scheduler/schedule.component.js +21 -17
- package/esm2015/lib/shared.module.js +26 -26
- package/esm2015/lib/system.module.js +8 -10
- package/esm2015/lib/views/cube/cube-base.js +10 -5
- package/esm2015/lib/views/cube/matrix.component.js +95 -0
- package/esm2015/lib/views/cube/view.component.js +19 -21
- package/esm2015/lib/views/document-view-ref.js +3 -2
- package/esm2015/lib/views/timeline/timeline.component.exp.js +317 -0
- package/esm2015/lib/views/view-item.component.js +11 -7
- package/esm2015/lib/views/views.component.js +10 -11
- package/esm2015/public-api.js +4 -8
- package/fesm2015/bizdoc-core.js +902 -1382
- package/fesm2015/bizdoc-core.js.map +1 -1
- package/lib/app.component.d.ts +1 -4
- package/lib/core/configuration.d.ts +1 -17
- package/lib/core/controls/combination-picker-body.d.ts +1 -1
- package/lib/core/models.d.ts +1 -0
- package/lib/core/session.service.d.ts +0 -5
- package/lib/core/slots/slots.component.d.ts +1 -1
- package/lib/cube/accum/accum.component.d.ts +3 -7
- package/lib/cube/chart/chart.component.d.ts +1 -1
- package/lib/cube/{info/cube-info.service.d.ts → cube-info.service.d.ts} +6 -6
- package/lib/cube/cube-view.component.d.ts +4 -9
- package/lib/cube/declarations.d.ts +3 -5
- package/lib/cube/explore/explore-items.component.d.ts +1 -4
- package/lib/cube/explore/explore.pane.component.d.ts +0 -1
- package/lib/cube/filter/filter-tags.component.exp.d.ts +2 -2
- package/lib/cube/filter/filter.component.d.ts +4 -3
- package/lib/cube/grid/grid.component.d.ts +2 -1
- package/lib/cube/grid/spreadsheet.component.d.ts +1 -1
- package/lib/cube/{info/cube-info.base.d.ts → matrix/matrix.base.d.ts} +5 -5
- package/lib/cube/{info/cube-info.component.d.ts → matrix/matrix.component.d.ts} +8 -8
- package/lib/cube/{info/cube-info.mobile.component.d.ts → matrix/matrix.mobile.component.d.ts} +4 -4
- package/lib/cube/{info/cube-info.pane.component.d.ts → matrix/matrix.pane.component.d.ts} +5 -5
- package/lib/cube/{info → matrix}/table.component.d.ts +4 -5
- package/lib/cube/pivot/pivot.component.d.ts +2 -4
- package/lib/cube/view-base.d.ts +39 -0
- package/lib/cube/view.mobile.component.d.ts +8 -25
- package/lib/cube/view.pane.component.d.ts +8 -26
- package/lib/dashboard/cube/accum-cube.widget.d.ts +1 -1
- package/lib/dashboard/cube/cube-analysis.base.d.ts +1 -1
- package/lib/dashboard/cube/cube-chart.widget.d.ts +1 -1
- package/lib/dashboard/cube/filter/filter.component.d.ts +1 -1
- package/lib/desktop.module.d.ts +2 -2
- package/lib/{login/impersonate → impersonate}/impersonate.component.d.ts +3 -3
- package/lib/mobile.module.d.ts +2 -2
- package/lib/scheduler/schedule.component.d.ts +4 -1
- package/lib/shared.module.d.ts +48 -50
- package/lib/system.module.d.ts +25 -26
- package/lib/views/cube/cube-base.d.ts +16 -10
- package/lib/views/cube/{table.component.d.ts → matrix.component.d.ts} +2 -15
- package/lib/views/cube/view.component.d.ts +2 -9
- package/lib/views/document-view-ref.d.ts +3 -1
- package/lib/views/timeline/timeline.component.exp.d.ts +64 -0
- package/lib/views/view-item.component.d.ts +4 -2
- package/lib/views/views.component.d.ts +3 -5
- package/package.json +15 -17
- package/public-api.d.ts +4 -8
- package/esm2015/lib/admin/users/users.component.js +0 -155
- package/esm2015/lib/admin/users/users.service.js +0 -29
- package/esm2015/lib/cube/info/cube-info.base.js +0 -128
- package/esm2015/lib/cube/info/cube-info.component.js +0 -69
- package/esm2015/lib/cube/info/cube-info.mobile.component.js +0 -62
- package/esm2015/lib/cube/info/cube-info.pane.component.js +0 -70
- package/esm2015/lib/cube/info/cube-info.service.js +0 -100
- package/esm2015/lib/cube/info/table.component.js +0 -258
- package/esm2015/lib/login/forgot/forgot.component.js +0 -50
- package/esm2015/lib/login/form.authentication.js +0 -71
- package/esm2015/lib/login/form.interceptor.js +0 -26
- package/esm2015/lib/login/impersonate/impersonate.component.js +0 -69
- package/esm2015/lib/login/login.component.js +0 -130
- package/esm2015/lib/login/okta.authentication.js +0 -41
- package/esm2015/lib/login/okta.component.js +0 -84
- package/esm2015/lib/login/okta.interceptor.js +0 -30
- package/esm2015/lib/login/prompt/prompt.component.js +0 -194
- package/esm2015/lib/login/signin-info.service.js +0 -49
- package/esm2015/lib/views/cube/table.component.js +0 -107
- package/lib/admin/users/users.component.d.ts +0 -41
- package/lib/admin/users/users.service.d.ts +0 -30
- package/lib/login/forgot/forgot.component.d.ts +0 -20
- package/lib/login/form.authentication.d.ts +0 -29
- package/lib/login/form.interceptor.d.ts +0 -11
- package/lib/login/login.component.d.ts +0 -18
- package/lib/login/okta.authentication.d.ts +0 -13
- package/lib/login/okta.component.d.ts +0 -18
- package/lib/login/okta.interceptor.d.ts +0 -11
- package/lib/login/prompt/prompt.component.d.ts +0 -45
- package/lib/login/signin-info.service.d.ts +0 -18
- package/src/assets/.gitkeep +0 -0
- package/src/assets/animations/13194-message.json +0 -1
- package/src/assets/animations/1408-network-lost.json +0 -1
- package/src/assets/animations/19560-loading.json +0 -1
- package/src/assets/animations/21928-folder.json +0 -1
- package/src/assets/animations/21941-airplane-animation-movement.json +0 -1
- package/src/assets/animations/2252-broken-stick-error.json +0 -1
- package/src/assets/animations/24910-new-message-notification.json +0 -1
- package/src/assets/animations/25974-paper-plane.json +0 -1
- package/src/assets/animations/36395-lonely-404.json +0 -1
- package/src/assets/animations/36499-page-not-found.json +0 -1
- package/src/assets/animations/37211-google-icons-forms.json +0 -1
- package/src/assets/animations/41896-application.json +0 -1
- package/src/assets/animations/4958-404-not-found.json +0 -1
- package/src/assets/animations/51956-success-icon.json +0 -1
- package/src/assets/animations/53402-bell.json +0 -1
- package/src/assets/animations/5371-volaris-tickets.json +0 -1
- package/src/assets/animations/58266-quad-cube-shifter-1.json +0 -1
- package/src/assets/animations/58509-shifting-cubes-2.json +0 -1
- package/src/assets/animations/8318-loader.json +0 -1
- package/src/assets/animations/lf20_isphoahq.json +0 -1
- package/src/assets/animations/lf30_editor_6kz6oezn.json +0 -1
- package/src/assets/animations/lf30_editor_b6axvtp7.json +0 -1
- package/src/assets/animations/lf30_editor_cq62rpyv.json +0 -1
- package/src/assets/animations/lf30_editor_fbytfhvg.json +0 -1
- package/src/assets/animations/lf30_editor_h1xoyem7.json +0 -1
- package/src/assets/animations/lf30_editor_qr7zgmcs.json +0 -1
- package/src/assets/animations/lf30_editor_rxee1cqy.json +0 -1
- package/src/assets/animations/lf30_editor_yxy6fuei.json +0 -1
- package/src/assets/bizdoc-schema.json +0 -1238
- package/src/assets/favicon.ico +0 -0
- package/src/assets/fonts/LICENSE.txt +0 -202
- package/src/assets/fonts/MaterialIcons-Outlined.woff2 +0 -0
- package/src/assets/fonts/MaterialIcons-Regular.eot +0 -0
- package/src/assets/fonts/MaterialIcons-Regular.ijmap +0 -1
- package/src/assets/fonts/MaterialIcons-Regular.svg +0 -2373
- package/src/assets/fonts/MaterialIcons-Regular.ttf +0 -0
- package/src/assets/fonts/MaterialIcons-Regular.woff +0 -0
- package/src/assets/fonts/MaterialIcons-Regular.woff2 +0 -0
- package/src/assets/fonts/MaterialIcons.css +0 -55
- package/src/assets/fonts/README.md +0 -9
- package/src/assets/fonts/Roboto-Black.ttf +0 -0
- package/src/assets/fonts/Roboto-BlackItalic.ttf +0 -0
- package/src/assets/fonts/Roboto-Bold.ttf +0 -0
- package/src/assets/fonts/Roboto-BoldItalic.ttf +0 -0
- package/src/assets/fonts/Roboto-Italic.ttf +0 -0
- package/src/assets/fonts/Roboto-Light.ttf +0 -0
- package/src/assets/fonts/Roboto-LightItalic.ttf +0 -0
- package/src/assets/fonts/Roboto-Medium.ttf +0 -0
- package/src/assets/fonts/Roboto-MediumItalic.ttf +0 -0
- package/src/assets/fonts/Roboto-Regular.ttf +0 -0
- package/src/assets/fonts/Roboto-Thin.ttf +0 -0
- package/src/assets/fonts/Roboto-ThinItalic.ttf +0 -0
- package/src/assets/fonts/codepoints +0 -932
- package/src/assets/fonts/material-icons.css +0 -36
- package/src/assets/i18n/cldr-data/main/he/ca-buddhist.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-chinese.json +0 -1255
- package/src/assets/i18n/cldr-data/main/he/ca-coptic.json +0 -541
- package/src/assets/i18n/cldr-data/main/he/ca-dangi.json +0 -1255
- package/src/assets/i18n/cldr-data/main/he/ca-ethiopic-amete-alem.json +0 -538
- package/src/assets/i18n/cldr-data/main/he/ca-ethiopic.json +0 -541
- package/src/assets/i18n/cldr-data/main/he/ca-generic.json +0 -535
- package/src/assets/i18n/cldr-data/main/he/ca-gregorian.json +0 -552
- package/src/assets/i18n/cldr-data/main/he/ca-hebrew.json +0 -557
- package/src/assets/i18n/cldr-data/main/he/ca-indian.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic-civil.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic-rgsa.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic-tbla.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic-umalqura.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-japanese.json +0 -1240
- package/src/assets/i18n/cldr-data/main/he/ca-persian.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-roc.json +0 -535
- package/src/assets/i18n/cldr-data/main/he/characters.json +0 -53
- package/src/assets/i18n/cldr-data/main/he/currencies.json +0 -1982
- package/src/assets/i18n/cldr-data/main/he/dateFields.json +0 -860
- package/src/assets/i18n/cldr-data/main/he/delimiters.json +0 -19
- package/src/assets/i18n/cldr-data/main/he/languages.json +0 -555
- package/src/assets/i18n/cldr-data/main/he/layout.json +0 -19
- package/src/assets/i18n/cldr-data/main/he/listPatterns.json +0 -69
- package/src/assets/i18n/cldr-data/main/he/localeDisplayNames.json +0 -231
- package/src/assets/i18n/cldr-data/main/he/measurementSystemNames.json +0 -20
- package/src/assets/i18n/cldr-data/main/he/numbers.json +0 -233
- package/src/assets/i18n/cldr-data/main/he/posix.json +0 -19
- package/src/assets/i18n/cldr-data/main/he/scripts.json +0 -191
- package/src/assets/i18n/cldr-data/main/he/territories.json +0 -324
- package/src/assets/i18n/cldr-data/main/he/timeZoneNames.json +0 -2301
- package/src/assets/i18n/cldr-data/main/he/units.json +0 -3408
- package/src/assets/i18n/cldr-data/main/he/variants.json +0 -119
- package/src/assets/i18n/cldr-data/supplemental/aliases.json +0 -4391
- package/src/assets/i18n/cldr-data/supplemental/calendarData.json +0 -865
- package/src/assets/i18n/cldr-data/supplemental/calendarPreferenceData.json +0 -50
- package/src/assets/i18n/cldr-data/supplemental/characterFallbacks.json +0 -888
- package/src/assets/i18n/cldr-data/supplemental/codeMappings.json +0 -1932
- package/src/assets/i18n/cldr-data/supplemental/currencyData.json +0 -3589
- package/src/assets/i18n/cldr-data/supplemental/dayPeriods.json +0 -2008
- package/src/assets/i18n/cldr-data/supplemental/gender.json +0 -67
- package/src/assets/i18n/cldr-data/supplemental/languageData.json +0 -6450
- package/src/assets/i18n/cldr-data/supplemental/languageGroups.json +0 -115
- package/src/assets/i18n/cldr-data/supplemental/languageMatching.json +0 -1864
- package/src/assets/i18n/cldr-data/supplemental/likelySubtags.json +0 -1844
- package/src/assets/i18n/cldr-data/supplemental/measurementData.json +0 -44
- package/src/assets/i18n/cldr-data/supplemental/metaZones.json +0 -7049
- package/src/assets/i18n/cldr-data/supplemental/numberingSystems.json +0 -343
- package/src/assets/i18n/cldr-data/supplemental/ordinals.json +0 -371
- package/src/assets/i18n/cldr-data/supplemental/parentLocales.json +0 -180
- package/src/assets/i18n/cldr-data/supplemental/plurals.json +0 -884
- package/src/assets/i18n/cldr-data/supplemental/primaryZones.json +0 -22
- package/src/assets/i18n/cldr-data/supplemental/references.json +0 -1181
- package/src/assets/i18n/cldr-data/supplemental/territoryContainment.json +0 -753
- package/src/assets/i18n/cldr-data/supplemental/territoryInfo.json +0 -6604
- package/src/assets/i18n/cldr-data/supplemental/timeData.json +0 -1031
- package/src/assets/i18n/cldr-data/supplemental/unitPreferenceData.json +0 -290
- package/src/assets/i18n/cldr-data/supplemental/weekData.json +0 -316
- package/src/assets/i18n/cldr-data/supplemental/windowsZones.json +0 -3520
- package/src/assets/icons/icon-128x128.png +0 -0
- package/src/assets/icons/icon-144x144.png +0 -0
- package/src/assets/icons/icon-152x152.png +0 -0
- package/src/assets/icons/icon-192x192.png +0 -0
- package/src/assets/icons/icon-256x256.png +0 -0
- package/src/assets/icons/icon-32x32.png +0 -0
- package/src/assets/icons/icon-512x512.png +0 -0
- package/src/assets/js/app-sw.js +0 -16
- package/src/assets/js/firebase-messaging-sw.js +0 -1
- package/src/assets/js/logo.js +0 -31
- package/src/assets/logo.json +0 -1
- package/src/assets/logo.svg +0 -38
- package/src/assets/manifest.json +0 -43
- package/src/assets/sounds/alert_error-03.ogg +0 -0
- package/src/assets/sounds/navigation_hover-tap.ogg +0 -0
- package/src/assets/sounds/notification_simple-01.ogg +0 -0
- package/src/assets/themes/brown.min.css +0 -81
- package/src/assets/themes/dark.min.css +0 -76
- package/src/assets/themes/default.min.css +0 -88
- package/src/assets/themes/green.min.css +0 -81
- package/src/assets/themes/indigo.min.css +0 -81
- package/src/assets/themes/okta-sign-in.min.css +0 -17
@@ -1,4391 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"supplemental": {
|
3
|
-
"version": {
|
4
|
-
"_number": "$Revision: 14929 $",
|
5
|
-
"_unicodeVersion": "12.1.0",
|
6
|
-
"_cldrVersion": "35.1"
|
7
|
-
},
|
8
|
-
"metadata": {
|
9
|
-
"alias": {
|
10
|
-
"languageAlias": {
|
11
|
-
"aa-SAAHO": {
|
12
|
-
"_reason": "deprecated",
|
13
|
-
"_replacement": "ssy"
|
14
|
-
},
|
15
|
-
"aam": {
|
16
|
-
"_reason": "deprecated",
|
17
|
-
"_replacement": "aas"
|
18
|
-
},
|
19
|
-
"aar": {
|
20
|
-
"_reason": "overlong",
|
21
|
-
"_replacement": "aa"
|
22
|
-
},
|
23
|
-
"abk": {
|
24
|
-
"_reason": "overlong",
|
25
|
-
"_replacement": "ab"
|
26
|
-
},
|
27
|
-
"adp": {
|
28
|
-
"_reason": "deprecated",
|
29
|
-
"_replacement": "dz"
|
30
|
-
},
|
31
|
-
"afr": {
|
32
|
-
"_reason": "overlong",
|
33
|
-
"_replacement": "af"
|
34
|
-
},
|
35
|
-
"aju": {
|
36
|
-
"_reason": "macrolanguage",
|
37
|
-
"_replacement": "jrb"
|
38
|
-
},
|
39
|
-
"aka": {
|
40
|
-
"_reason": "overlong",
|
41
|
-
"_replacement": "ak"
|
42
|
-
},
|
43
|
-
"alb": {
|
44
|
-
"_reason": "bibliographic",
|
45
|
-
"_replacement": "sq"
|
46
|
-
},
|
47
|
-
"als": {
|
48
|
-
"_reason": "macrolanguage",
|
49
|
-
"_replacement": "sq"
|
50
|
-
},
|
51
|
-
"amh": {
|
52
|
-
"_reason": "overlong",
|
53
|
-
"_replacement": "am"
|
54
|
-
},
|
55
|
-
"ara": {
|
56
|
-
"_reason": "overlong",
|
57
|
-
"_replacement": "ar"
|
58
|
-
},
|
59
|
-
"arb": {
|
60
|
-
"_reason": "macrolanguage",
|
61
|
-
"_replacement": "ar"
|
62
|
-
},
|
63
|
-
"arg": {
|
64
|
-
"_reason": "overlong",
|
65
|
-
"_replacement": "an"
|
66
|
-
},
|
67
|
-
"arm": {
|
68
|
-
"_reason": "bibliographic",
|
69
|
-
"_replacement": "hy"
|
70
|
-
},
|
71
|
-
"art-lojban": {
|
72
|
-
"_reason": "deprecated",
|
73
|
-
"_replacement": "jbo"
|
74
|
-
},
|
75
|
-
"asm": {
|
76
|
-
"_reason": "overlong",
|
77
|
-
"_replacement": "as"
|
78
|
-
},
|
79
|
-
"aue": {
|
80
|
-
"_reason": "deprecated",
|
81
|
-
"_replacement": "ktz"
|
82
|
-
},
|
83
|
-
"ava": {
|
84
|
-
"_reason": "overlong",
|
85
|
-
"_replacement": "av"
|
86
|
-
},
|
87
|
-
"ave": {
|
88
|
-
"_reason": "overlong",
|
89
|
-
"_replacement": "ae"
|
90
|
-
},
|
91
|
-
"aym": {
|
92
|
-
"_reason": "overlong",
|
93
|
-
"_replacement": "ay"
|
94
|
-
},
|
95
|
-
"ayr": {
|
96
|
-
"_reason": "macrolanguage",
|
97
|
-
"_replacement": "ay"
|
98
|
-
},
|
99
|
-
"ayx": {
|
100
|
-
"_reason": "deprecated",
|
101
|
-
"_replacement": "nun"
|
102
|
-
},
|
103
|
-
"az-AZ": {
|
104
|
-
"_reason": "legacy",
|
105
|
-
"_replacement": "az-Latn-AZ"
|
106
|
-
},
|
107
|
-
"aze": {
|
108
|
-
"_reason": "overlong",
|
109
|
-
"_replacement": "az"
|
110
|
-
},
|
111
|
-
"azj": {
|
112
|
-
"_reason": "macrolanguage",
|
113
|
-
"_replacement": "az"
|
114
|
-
},
|
115
|
-
"bak": {
|
116
|
-
"_reason": "overlong",
|
117
|
-
"_replacement": "ba"
|
118
|
-
},
|
119
|
-
"bam": {
|
120
|
-
"_reason": "overlong",
|
121
|
-
"_replacement": "bm"
|
122
|
-
},
|
123
|
-
"baq": {
|
124
|
-
"_reason": "bibliographic",
|
125
|
-
"_replacement": "eu"
|
126
|
-
},
|
127
|
-
"bcc": {
|
128
|
-
"_reason": "macrolanguage",
|
129
|
-
"_replacement": "bal"
|
130
|
-
},
|
131
|
-
"bcl": {
|
132
|
-
"_reason": "macrolanguage",
|
133
|
-
"_replacement": "bik"
|
134
|
-
},
|
135
|
-
"bel": {
|
136
|
-
"_reason": "overlong",
|
137
|
-
"_replacement": "be"
|
138
|
-
},
|
139
|
-
"ben": {
|
140
|
-
"_reason": "overlong",
|
141
|
-
"_replacement": "bn"
|
142
|
-
},
|
143
|
-
"bgm": {
|
144
|
-
"_reason": "deprecated",
|
145
|
-
"_replacement": "bcg"
|
146
|
-
},
|
147
|
-
"bh": {
|
148
|
-
"_reason": "macrolanguage",
|
149
|
-
"_replacement": "bho"
|
150
|
-
},
|
151
|
-
"bih": {
|
152
|
-
"_reason": "overlong",
|
153
|
-
"_replacement": "bho"
|
154
|
-
},
|
155
|
-
"bis": {
|
156
|
-
"_reason": "overlong",
|
157
|
-
"_replacement": "bi"
|
158
|
-
},
|
159
|
-
"bjd": {
|
160
|
-
"_reason": "deprecated",
|
161
|
-
"_replacement": "drl"
|
162
|
-
},
|
163
|
-
"bod": {
|
164
|
-
"_reason": "overlong",
|
165
|
-
"_replacement": "bo"
|
166
|
-
},
|
167
|
-
"bos": {
|
168
|
-
"_reason": "overlong",
|
169
|
-
"_replacement": "bs"
|
170
|
-
},
|
171
|
-
"bre": {
|
172
|
-
"_reason": "overlong",
|
173
|
-
"_replacement": "br"
|
174
|
-
},
|
175
|
-
"bs-BA": {
|
176
|
-
"_reason": "legacy",
|
177
|
-
"_replacement": "bs-Latn-BA"
|
178
|
-
},
|
179
|
-
"bul": {
|
180
|
-
"_reason": "overlong",
|
181
|
-
"_replacement": "bg"
|
182
|
-
},
|
183
|
-
"bur": {
|
184
|
-
"_reason": "bibliographic",
|
185
|
-
"_replacement": "my"
|
186
|
-
},
|
187
|
-
"bxk": {
|
188
|
-
"_reason": "macrolanguage",
|
189
|
-
"_replacement": "luy"
|
190
|
-
},
|
191
|
-
"bxr": {
|
192
|
-
"_reason": "macrolanguage",
|
193
|
-
"_replacement": "bua"
|
194
|
-
},
|
195
|
-
"cat": {
|
196
|
-
"_reason": "overlong",
|
197
|
-
"_replacement": "ca"
|
198
|
-
},
|
199
|
-
"ccq": {
|
200
|
-
"_reason": "deprecated",
|
201
|
-
"_replacement": "rki"
|
202
|
-
},
|
203
|
-
"cel-gaulish": {
|
204
|
-
"_reason": "legacy",
|
205
|
-
"_replacement": "xtg-x-cel-gaulish"
|
206
|
-
},
|
207
|
-
"ces": {
|
208
|
-
"_reason": "overlong",
|
209
|
-
"_replacement": "cs"
|
210
|
-
},
|
211
|
-
"cha": {
|
212
|
-
"_reason": "overlong",
|
213
|
-
"_replacement": "ch"
|
214
|
-
},
|
215
|
-
"che": {
|
216
|
-
"_reason": "overlong",
|
217
|
-
"_replacement": "ce"
|
218
|
-
},
|
219
|
-
"chi": {
|
220
|
-
"_reason": "bibliographic",
|
221
|
-
"_replacement": "zh"
|
222
|
-
},
|
223
|
-
"chu": {
|
224
|
-
"_reason": "overlong",
|
225
|
-
"_replacement": "cu"
|
226
|
-
},
|
227
|
-
"chv": {
|
228
|
-
"_reason": "overlong",
|
229
|
-
"_replacement": "cv"
|
230
|
-
},
|
231
|
-
"cjr": {
|
232
|
-
"_reason": "deprecated",
|
233
|
-
"_replacement": "mom"
|
234
|
-
},
|
235
|
-
"cka": {
|
236
|
-
"_reason": "deprecated",
|
237
|
-
"_replacement": "cmr"
|
238
|
-
},
|
239
|
-
"cld": {
|
240
|
-
"_reason": "macrolanguage",
|
241
|
-
"_replacement": "syr"
|
242
|
-
},
|
243
|
-
"cmk": {
|
244
|
-
"_reason": "deprecated",
|
245
|
-
"_replacement": "xch"
|
246
|
-
},
|
247
|
-
"cmn": {
|
248
|
-
"_reason": "macrolanguage",
|
249
|
-
"_replacement": "zh"
|
250
|
-
},
|
251
|
-
"cnr": {
|
252
|
-
"_reason": "legacy",
|
253
|
-
"_replacement": "sr-ME"
|
254
|
-
},
|
255
|
-
"cor": {
|
256
|
-
"_reason": "overlong",
|
257
|
-
"_replacement": "kw"
|
258
|
-
},
|
259
|
-
"cos": {
|
260
|
-
"_reason": "overlong",
|
261
|
-
"_replacement": "co"
|
262
|
-
},
|
263
|
-
"coy": {
|
264
|
-
"_reason": "deprecated",
|
265
|
-
"_replacement": "pij"
|
266
|
-
},
|
267
|
-
"cqu": {
|
268
|
-
"_reason": "deprecated",
|
269
|
-
"_replacement": "quh"
|
270
|
-
},
|
271
|
-
"cre": {
|
272
|
-
"_reason": "overlong",
|
273
|
-
"_replacement": "cr"
|
274
|
-
},
|
275
|
-
"cwd": {
|
276
|
-
"_reason": "macrolanguage",
|
277
|
-
"_replacement": "cr"
|
278
|
-
},
|
279
|
-
"cym": {
|
280
|
-
"_reason": "overlong",
|
281
|
-
"_replacement": "cy"
|
282
|
-
},
|
283
|
-
"cze": {
|
284
|
-
"_reason": "bibliographic",
|
285
|
-
"_replacement": "cs"
|
286
|
-
},
|
287
|
-
"dan": {
|
288
|
-
"_reason": "overlong",
|
289
|
-
"_replacement": "da"
|
290
|
-
},
|
291
|
-
"deu": {
|
292
|
-
"_reason": "overlong",
|
293
|
-
"_replacement": "de"
|
294
|
-
},
|
295
|
-
"dgo": {
|
296
|
-
"_reason": "macrolanguage",
|
297
|
-
"_replacement": "doi"
|
298
|
-
},
|
299
|
-
"dhd": {
|
300
|
-
"_reason": "macrolanguage",
|
301
|
-
"_replacement": "mwr"
|
302
|
-
},
|
303
|
-
"dik": {
|
304
|
-
"_reason": "macrolanguage",
|
305
|
-
"_replacement": "din"
|
306
|
-
},
|
307
|
-
"diq": {
|
308
|
-
"_reason": "macrolanguage",
|
309
|
-
"_replacement": "zza"
|
310
|
-
},
|
311
|
-
"div": {
|
312
|
-
"_reason": "overlong",
|
313
|
-
"_replacement": "dv"
|
314
|
-
},
|
315
|
-
"drh": {
|
316
|
-
"_reason": "deprecated",
|
317
|
-
"_replacement": "mn"
|
318
|
-
},
|
319
|
-
"drw": {
|
320
|
-
"_reason": "deprecated",
|
321
|
-
"_replacement": "fa-af"
|
322
|
-
},
|
323
|
-
"dut": {
|
324
|
-
"_reason": "bibliographic",
|
325
|
-
"_replacement": "nl"
|
326
|
-
},
|
327
|
-
"dzo": {
|
328
|
-
"_reason": "overlong",
|
329
|
-
"_replacement": "dz"
|
330
|
-
},
|
331
|
-
"ekk": {
|
332
|
-
"_reason": "macrolanguage",
|
333
|
-
"_replacement": "et"
|
334
|
-
},
|
335
|
-
"ell": {
|
336
|
-
"_reason": "overlong",
|
337
|
-
"_replacement": "el"
|
338
|
-
},
|
339
|
-
"emk": {
|
340
|
-
"_reason": "macrolanguage",
|
341
|
-
"_replacement": "man"
|
342
|
-
},
|
343
|
-
"eng": {
|
344
|
-
"_reason": "overlong",
|
345
|
-
"_replacement": "en"
|
346
|
-
},
|
347
|
-
"epo": {
|
348
|
-
"_reason": "overlong",
|
349
|
-
"_replacement": "eo"
|
350
|
-
},
|
351
|
-
"esk": {
|
352
|
-
"_reason": "macrolanguage",
|
353
|
-
"_replacement": "ik"
|
354
|
-
},
|
355
|
-
"est": {
|
356
|
-
"_reason": "overlong",
|
357
|
-
"_replacement": "et"
|
358
|
-
},
|
359
|
-
"eus": {
|
360
|
-
"_reason": "overlong",
|
361
|
-
"_replacement": "eu"
|
362
|
-
},
|
363
|
-
"ewe": {
|
364
|
-
"_reason": "overlong",
|
365
|
-
"_replacement": "ee"
|
366
|
-
},
|
367
|
-
"fao": {
|
368
|
-
"_reason": "overlong",
|
369
|
-
"_replacement": "fo"
|
370
|
-
},
|
371
|
-
"fas": {
|
372
|
-
"_reason": "overlong",
|
373
|
-
"_replacement": "fa"
|
374
|
-
},
|
375
|
-
"fat": {
|
376
|
-
"_reason": "macrolanguage",
|
377
|
-
"_replacement": "ak"
|
378
|
-
},
|
379
|
-
"fij": {
|
380
|
-
"_reason": "overlong",
|
381
|
-
"_replacement": "fj"
|
382
|
-
},
|
383
|
-
"fin": {
|
384
|
-
"_reason": "overlong",
|
385
|
-
"_replacement": "fi"
|
386
|
-
},
|
387
|
-
"fra": {
|
388
|
-
"_reason": "overlong",
|
389
|
-
"_replacement": "fr"
|
390
|
-
},
|
391
|
-
"fre": {
|
392
|
-
"_reason": "bibliographic",
|
393
|
-
"_replacement": "fr"
|
394
|
-
},
|
395
|
-
"fry": {
|
396
|
-
"_reason": "overlong",
|
397
|
-
"_replacement": "fy"
|
398
|
-
},
|
399
|
-
"fuc": {
|
400
|
-
"_reason": "macrolanguage",
|
401
|
-
"_replacement": "ff"
|
402
|
-
},
|
403
|
-
"ful": {
|
404
|
-
"_reason": "overlong",
|
405
|
-
"_replacement": "ff"
|
406
|
-
},
|
407
|
-
"gav": {
|
408
|
-
"_reason": "deprecated",
|
409
|
-
"_replacement": "dev"
|
410
|
-
},
|
411
|
-
"gaz": {
|
412
|
-
"_reason": "macrolanguage",
|
413
|
-
"_replacement": "om"
|
414
|
-
},
|
415
|
-
"gbo": {
|
416
|
-
"_reason": "macrolanguage",
|
417
|
-
"_replacement": "grb"
|
418
|
-
},
|
419
|
-
"geo": {
|
420
|
-
"_reason": "bibliographic",
|
421
|
-
"_replacement": "ka"
|
422
|
-
},
|
423
|
-
"ger": {
|
424
|
-
"_reason": "bibliographic",
|
425
|
-
"_replacement": "de"
|
426
|
-
},
|
427
|
-
"gfx": {
|
428
|
-
"_reason": "deprecated",
|
429
|
-
"_replacement": "vaj"
|
430
|
-
},
|
431
|
-
"ggn": {
|
432
|
-
"_reason": "deprecated",
|
433
|
-
"_replacement": "gvr"
|
434
|
-
},
|
435
|
-
"gla": {
|
436
|
-
"_reason": "overlong",
|
437
|
-
"_replacement": "gd"
|
438
|
-
},
|
439
|
-
"gle": {
|
440
|
-
"_reason": "overlong",
|
441
|
-
"_replacement": "ga"
|
442
|
-
},
|
443
|
-
"glg": {
|
444
|
-
"_reason": "overlong",
|
445
|
-
"_replacement": "gl"
|
446
|
-
},
|
447
|
-
"glv": {
|
448
|
-
"_reason": "overlong",
|
449
|
-
"_replacement": "gv"
|
450
|
-
},
|
451
|
-
"gno": {
|
452
|
-
"_reason": "macrolanguage",
|
453
|
-
"_replacement": "gon"
|
454
|
-
},
|
455
|
-
"gre": {
|
456
|
-
"_reason": "bibliographic",
|
457
|
-
"_replacement": "el"
|
458
|
-
},
|
459
|
-
"grn": {
|
460
|
-
"_reason": "overlong",
|
461
|
-
"_replacement": "gn"
|
462
|
-
},
|
463
|
-
"gti": {
|
464
|
-
"_reason": "deprecated",
|
465
|
-
"_replacement": "nyc"
|
466
|
-
},
|
467
|
-
"gug": {
|
468
|
-
"_reason": "macrolanguage",
|
469
|
-
"_replacement": "gn"
|
470
|
-
},
|
471
|
-
"guj": {
|
472
|
-
"_reason": "overlong",
|
473
|
-
"_replacement": "gu"
|
474
|
-
},
|
475
|
-
"guv": {
|
476
|
-
"_reason": "deprecated",
|
477
|
-
"_replacement": "duz"
|
478
|
-
},
|
479
|
-
"gya": {
|
480
|
-
"_reason": "macrolanguage",
|
481
|
-
"_replacement": "gba"
|
482
|
-
},
|
483
|
-
"ha-Latn-GH": {
|
484
|
-
"_reason": "legacy",
|
485
|
-
"_replacement": "ha-GH"
|
486
|
-
},
|
487
|
-
"ha-Latn-NE": {
|
488
|
-
"_reason": "legacy",
|
489
|
-
"_replacement": "ha-NE"
|
490
|
-
},
|
491
|
-
"ha-Latn-NG": {
|
492
|
-
"_reason": "legacy",
|
493
|
-
"_replacement": "ha-NG"
|
494
|
-
},
|
495
|
-
"hat": {
|
496
|
-
"_reason": "overlong",
|
497
|
-
"_replacement": "ht"
|
498
|
-
},
|
499
|
-
"hau": {
|
500
|
-
"_reason": "overlong",
|
501
|
-
"_replacement": "ha"
|
502
|
-
},
|
503
|
-
"hbs": {
|
504
|
-
"_reason": "overlong",
|
505
|
-
"_replacement": "sr-Latn"
|
506
|
-
},
|
507
|
-
"hdn": {
|
508
|
-
"_reason": "macrolanguage",
|
509
|
-
"_replacement": "hai"
|
510
|
-
},
|
511
|
-
"hea": {
|
512
|
-
"_reason": "macrolanguage",
|
513
|
-
"_replacement": "hmn"
|
514
|
-
},
|
515
|
-
"heb": {
|
516
|
-
"_reason": "overlong",
|
517
|
-
"_replacement": "he"
|
518
|
-
},
|
519
|
-
"her": {
|
520
|
-
"_reason": "overlong",
|
521
|
-
"_replacement": "hz"
|
522
|
-
},
|
523
|
-
"him": {
|
524
|
-
"_reason": "macrolanguage",
|
525
|
-
"_replacement": "srx"
|
526
|
-
},
|
527
|
-
"hin": {
|
528
|
-
"_reason": "overlong",
|
529
|
-
"_replacement": "hi"
|
530
|
-
},
|
531
|
-
"hmo": {
|
532
|
-
"_reason": "overlong",
|
533
|
-
"_replacement": "ho"
|
534
|
-
},
|
535
|
-
"hrr": {
|
536
|
-
"_reason": "deprecated",
|
537
|
-
"_replacement": "jal"
|
538
|
-
},
|
539
|
-
"hrv": {
|
540
|
-
"_reason": "overlong",
|
541
|
-
"_replacement": "hr"
|
542
|
-
},
|
543
|
-
"hun": {
|
544
|
-
"_reason": "overlong",
|
545
|
-
"_replacement": "hu"
|
546
|
-
},
|
547
|
-
"hye": {
|
548
|
-
"_reason": "overlong",
|
549
|
-
"_replacement": "hy"
|
550
|
-
},
|
551
|
-
"i-ami": {
|
552
|
-
"_reason": "deprecated",
|
553
|
-
"_replacement": "ami"
|
554
|
-
},
|
555
|
-
"i-bnn": {
|
556
|
-
"_reason": "deprecated",
|
557
|
-
"_replacement": "bnn"
|
558
|
-
},
|
559
|
-
"i-hak": {
|
560
|
-
"_reason": "deprecated",
|
561
|
-
"_replacement": "hak"
|
562
|
-
},
|
563
|
-
"i-klingon": {
|
564
|
-
"_reason": "deprecated",
|
565
|
-
"_replacement": "tlh"
|
566
|
-
},
|
567
|
-
"i-lux": {
|
568
|
-
"_reason": "deprecated",
|
569
|
-
"_replacement": "lb"
|
570
|
-
},
|
571
|
-
"i-navajo": {
|
572
|
-
"_reason": "deprecated",
|
573
|
-
"_replacement": "nv"
|
574
|
-
},
|
575
|
-
"i-pwn": {
|
576
|
-
"_reason": "deprecated",
|
577
|
-
"_replacement": "pwn"
|
578
|
-
},
|
579
|
-
"i-tao": {
|
580
|
-
"_reason": "deprecated",
|
581
|
-
"_replacement": "tao"
|
582
|
-
},
|
583
|
-
"i-tay": {
|
584
|
-
"_reason": "deprecated",
|
585
|
-
"_replacement": "tay"
|
586
|
-
},
|
587
|
-
"i-tsu": {
|
588
|
-
"_reason": "deprecated",
|
589
|
-
"_replacement": "tsu"
|
590
|
-
},
|
591
|
-
"i-default": {
|
592
|
-
"_reason": "legacy",
|
593
|
-
"_replacement": "en-x-i-default"
|
594
|
-
},
|
595
|
-
"i-enochian": {
|
596
|
-
"_reason": "legacy",
|
597
|
-
"_replacement": "und-x-i-enochian"
|
598
|
-
},
|
599
|
-
"i-mingo": {
|
600
|
-
"_reason": "legacy",
|
601
|
-
"_replacement": "see-x-i-mingo"
|
602
|
-
},
|
603
|
-
"ibi": {
|
604
|
-
"_reason": "deprecated",
|
605
|
-
"_replacement": "opa"
|
606
|
-
},
|
607
|
-
"ibo": {
|
608
|
-
"_reason": "overlong",
|
609
|
-
"_replacement": "ig"
|
610
|
-
},
|
611
|
-
"ice": {
|
612
|
-
"_reason": "bibliographic",
|
613
|
-
"_replacement": "is"
|
614
|
-
},
|
615
|
-
"ido": {
|
616
|
-
"_reason": "overlong",
|
617
|
-
"_replacement": "io"
|
618
|
-
},
|
619
|
-
"iii": {
|
620
|
-
"_reason": "overlong",
|
621
|
-
"_replacement": "ii"
|
622
|
-
},
|
623
|
-
"ike": {
|
624
|
-
"_reason": "macrolanguage",
|
625
|
-
"_replacement": "iu"
|
626
|
-
},
|
627
|
-
"iku": {
|
628
|
-
"_reason": "overlong",
|
629
|
-
"_replacement": "iu"
|
630
|
-
},
|
631
|
-
"ile": {
|
632
|
-
"_reason": "overlong",
|
633
|
-
"_replacement": "ie"
|
634
|
-
},
|
635
|
-
"ilw": {
|
636
|
-
"_reason": "deprecated",
|
637
|
-
"_replacement": "gal"
|
638
|
-
},
|
639
|
-
"in": {
|
640
|
-
"_reason": "deprecated",
|
641
|
-
"_replacement": "id"
|
642
|
-
},
|
643
|
-
"ina": {
|
644
|
-
"_reason": "overlong",
|
645
|
-
"_replacement": "ia"
|
646
|
-
},
|
647
|
-
"ind": {
|
648
|
-
"_reason": "overlong",
|
649
|
-
"_replacement": "id"
|
650
|
-
},
|
651
|
-
"ipk": {
|
652
|
-
"_reason": "overlong",
|
653
|
-
"_replacement": "ik"
|
654
|
-
},
|
655
|
-
"isl": {
|
656
|
-
"_reason": "overlong",
|
657
|
-
"_replacement": "is"
|
658
|
-
},
|
659
|
-
"ita": {
|
660
|
-
"_reason": "overlong",
|
661
|
-
"_replacement": "it"
|
662
|
-
},
|
663
|
-
"iw": {
|
664
|
-
"_reason": "deprecated",
|
665
|
-
"_replacement": "he"
|
666
|
-
},
|
667
|
-
"jav": {
|
668
|
-
"_reason": "overlong",
|
669
|
-
"_replacement": "jv"
|
670
|
-
},
|
671
|
-
"jeg": {
|
672
|
-
"_reason": "deprecated",
|
673
|
-
"_replacement": "oyb"
|
674
|
-
},
|
675
|
-
"ji": {
|
676
|
-
"_reason": "deprecated",
|
677
|
-
"_replacement": "yi"
|
678
|
-
},
|
679
|
-
"jpn": {
|
680
|
-
"_reason": "overlong",
|
681
|
-
"_replacement": "ja"
|
682
|
-
},
|
683
|
-
"jw": {
|
684
|
-
"_reason": "deprecated",
|
685
|
-
"_replacement": "jv"
|
686
|
-
},
|
687
|
-
"kal": {
|
688
|
-
"_reason": "overlong",
|
689
|
-
"_replacement": "kl"
|
690
|
-
},
|
691
|
-
"kan": {
|
692
|
-
"_reason": "overlong",
|
693
|
-
"_replacement": "kn"
|
694
|
-
},
|
695
|
-
"kas": {
|
696
|
-
"_reason": "overlong",
|
697
|
-
"_replacement": "ks"
|
698
|
-
},
|
699
|
-
"kat": {
|
700
|
-
"_reason": "overlong",
|
701
|
-
"_replacement": "ka"
|
702
|
-
},
|
703
|
-
"kau": {
|
704
|
-
"_reason": "overlong",
|
705
|
-
"_replacement": "kr"
|
706
|
-
},
|
707
|
-
"kaz": {
|
708
|
-
"_reason": "overlong",
|
709
|
-
"_replacement": "kk"
|
710
|
-
},
|
711
|
-
"kgc": {
|
712
|
-
"_reason": "deprecated",
|
713
|
-
"_replacement": "tdf"
|
714
|
-
},
|
715
|
-
"kgh": {
|
716
|
-
"_reason": "deprecated",
|
717
|
-
"_replacement": "kml"
|
718
|
-
},
|
719
|
-
"khk": {
|
720
|
-
"_reason": "macrolanguage",
|
721
|
-
"_replacement": "mn"
|
722
|
-
},
|
723
|
-
"khm": {
|
724
|
-
"_reason": "overlong",
|
725
|
-
"_replacement": "km"
|
726
|
-
},
|
727
|
-
"kik": {
|
728
|
-
"_reason": "overlong",
|
729
|
-
"_replacement": "ki"
|
730
|
-
},
|
731
|
-
"kin": {
|
732
|
-
"_reason": "overlong",
|
733
|
-
"_replacement": "rw"
|
734
|
-
},
|
735
|
-
"kir": {
|
736
|
-
"_reason": "overlong",
|
737
|
-
"_replacement": "ky"
|
738
|
-
},
|
739
|
-
"kk-Cyrl-KZ": {
|
740
|
-
"_reason": "legacy",
|
741
|
-
"_replacement": "kk-KZ"
|
742
|
-
},
|
743
|
-
"kmr": {
|
744
|
-
"_reason": "macrolanguage",
|
745
|
-
"_replacement": "ku"
|
746
|
-
},
|
747
|
-
"knc": {
|
748
|
-
"_reason": "macrolanguage",
|
749
|
-
"_replacement": "kr"
|
750
|
-
},
|
751
|
-
"kng": {
|
752
|
-
"_reason": "macrolanguage",
|
753
|
-
"_replacement": "kg"
|
754
|
-
},
|
755
|
-
"knn": {
|
756
|
-
"_reason": "macrolanguage",
|
757
|
-
"_replacement": "kok"
|
758
|
-
},
|
759
|
-
"koj": {
|
760
|
-
"_reason": "deprecated",
|
761
|
-
"_replacement": "kwv"
|
762
|
-
},
|
763
|
-
"kom": {
|
764
|
-
"_reason": "overlong",
|
765
|
-
"_replacement": "kv"
|
766
|
-
},
|
767
|
-
"kon": {
|
768
|
-
"_reason": "overlong",
|
769
|
-
"_replacement": "kg"
|
770
|
-
},
|
771
|
-
"kor": {
|
772
|
-
"_reason": "overlong",
|
773
|
-
"_replacement": "ko"
|
774
|
-
},
|
775
|
-
"kpv": {
|
776
|
-
"_reason": "macrolanguage",
|
777
|
-
"_replacement": "kv"
|
778
|
-
},
|
779
|
-
"krm": {
|
780
|
-
"_reason": "deprecated",
|
781
|
-
"_replacement": "bmf"
|
782
|
-
},
|
783
|
-
"ks-Arab-IN": {
|
784
|
-
"_reason": "legacy",
|
785
|
-
"_replacement": "ks-IN"
|
786
|
-
},
|
787
|
-
"ktr": {
|
788
|
-
"_reason": "deprecated",
|
789
|
-
"_replacement": "dtp"
|
790
|
-
},
|
791
|
-
"kua": {
|
792
|
-
"_reason": "overlong",
|
793
|
-
"_replacement": "kj"
|
794
|
-
},
|
795
|
-
"kur": {
|
796
|
-
"_reason": "overlong",
|
797
|
-
"_replacement": "ku"
|
798
|
-
},
|
799
|
-
"kvs": {
|
800
|
-
"_reason": "deprecated",
|
801
|
-
"_replacement": "gdj"
|
802
|
-
},
|
803
|
-
"kwq": {
|
804
|
-
"_reason": "deprecated",
|
805
|
-
"_replacement": "yam"
|
806
|
-
},
|
807
|
-
"kxe": {
|
808
|
-
"_reason": "deprecated",
|
809
|
-
"_replacement": "tvd"
|
810
|
-
},
|
811
|
-
"ky-Cyrl-KG": {
|
812
|
-
"_reason": "legacy",
|
813
|
-
"_replacement": "ky-KG"
|
814
|
-
},
|
815
|
-
"kzj": {
|
816
|
-
"_reason": "deprecated",
|
817
|
-
"_replacement": "dtp"
|
818
|
-
},
|
819
|
-
"kzt": {
|
820
|
-
"_reason": "deprecated",
|
821
|
-
"_replacement": "dtp"
|
822
|
-
},
|
823
|
-
"lao": {
|
824
|
-
"_reason": "overlong",
|
825
|
-
"_replacement": "lo"
|
826
|
-
},
|
827
|
-
"lat": {
|
828
|
-
"_reason": "overlong",
|
829
|
-
"_replacement": "la"
|
830
|
-
},
|
831
|
-
"lav": {
|
832
|
-
"_reason": "overlong",
|
833
|
-
"_replacement": "lv"
|
834
|
-
},
|
835
|
-
"lbk": {
|
836
|
-
"_reason": "macrolanguage",
|
837
|
-
"_replacement": "bnc"
|
838
|
-
},
|
839
|
-
"lii": {
|
840
|
-
"_reason": "deprecated",
|
841
|
-
"_replacement": "raq"
|
842
|
-
},
|
843
|
-
"lim": {
|
844
|
-
"_reason": "overlong",
|
845
|
-
"_replacement": "li"
|
846
|
-
},
|
847
|
-
"lin": {
|
848
|
-
"_reason": "overlong",
|
849
|
-
"_replacement": "ln"
|
850
|
-
},
|
851
|
-
"lit": {
|
852
|
-
"_reason": "overlong",
|
853
|
-
"_replacement": "lt"
|
854
|
-
},
|
855
|
-
"lmm": {
|
856
|
-
"_reason": "deprecated",
|
857
|
-
"_replacement": "rmx"
|
858
|
-
},
|
859
|
-
"ltz": {
|
860
|
-
"_reason": "overlong",
|
861
|
-
"_replacement": "lb"
|
862
|
-
},
|
863
|
-
"lub": {
|
864
|
-
"_reason": "overlong",
|
865
|
-
"_replacement": "lu"
|
866
|
-
},
|
867
|
-
"lug": {
|
868
|
-
"_reason": "overlong",
|
869
|
-
"_replacement": "lg"
|
870
|
-
},
|
871
|
-
"lvs": {
|
872
|
-
"_reason": "macrolanguage",
|
873
|
-
"_replacement": "lv"
|
874
|
-
},
|
875
|
-
"mac": {
|
876
|
-
"_reason": "bibliographic",
|
877
|
-
"_replacement": "mk"
|
878
|
-
},
|
879
|
-
"mah": {
|
880
|
-
"_reason": "overlong",
|
881
|
-
"_replacement": "mh"
|
882
|
-
},
|
883
|
-
"mal": {
|
884
|
-
"_reason": "overlong",
|
885
|
-
"_replacement": "ml"
|
886
|
-
},
|
887
|
-
"mao": {
|
888
|
-
"_reason": "bibliographic",
|
889
|
-
"_replacement": "mi"
|
890
|
-
},
|
891
|
-
"mar": {
|
892
|
-
"_reason": "overlong",
|
893
|
-
"_replacement": "mr"
|
894
|
-
},
|
895
|
-
"may": {
|
896
|
-
"_reason": "bibliographic",
|
897
|
-
"_replacement": "ms"
|
898
|
-
},
|
899
|
-
"meg": {
|
900
|
-
"_reason": "deprecated",
|
901
|
-
"_replacement": "cir"
|
902
|
-
},
|
903
|
-
"mhr": {
|
904
|
-
"_reason": "macrolanguage",
|
905
|
-
"_replacement": "chm"
|
906
|
-
},
|
907
|
-
"mkd": {
|
908
|
-
"_reason": "overlong",
|
909
|
-
"_replacement": "mk"
|
910
|
-
},
|
911
|
-
"mlg": {
|
912
|
-
"_reason": "overlong",
|
913
|
-
"_replacement": "mg"
|
914
|
-
},
|
915
|
-
"mlt": {
|
916
|
-
"_reason": "overlong",
|
917
|
-
"_replacement": "mt"
|
918
|
-
},
|
919
|
-
"mn-Cyrl-MN": {
|
920
|
-
"_reason": "legacy",
|
921
|
-
"_replacement": "mn-MN"
|
922
|
-
},
|
923
|
-
"mnk": {
|
924
|
-
"_reason": "macrolanguage",
|
925
|
-
"_replacement": "man"
|
926
|
-
},
|
927
|
-
"mo": {
|
928
|
-
"_reason": "deprecated",
|
929
|
-
"_replacement": "ro"
|
930
|
-
},
|
931
|
-
"mol": {
|
932
|
-
"_reason": "overlong",
|
933
|
-
"_replacement": "ro"
|
934
|
-
},
|
935
|
-
"mon": {
|
936
|
-
"_reason": "overlong",
|
937
|
-
"_replacement": "mn"
|
938
|
-
},
|
939
|
-
"mri": {
|
940
|
-
"_reason": "overlong",
|
941
|
-
"_replacement": "mi"
|
942
|
-
},
|
943
|
-
"ms-Latn-BN": {
|
944
|
-
"_reason": "legacy",
|
945
|
-
"_replacement": "ms-BN"
|
946
|
-
},
|
947
|
-
"ms-Latn-MY": {
|
948
|
-
"_reason": "legacy",
|
949
|
-
"_replacement": "ms-MY"
|
950
|
-
},
|
951
|
-
"ms-Latn-SG": {
|
952
|
-
"_reason": "legacy",
|
953
|
-
"_replacement": "ms-SG"
|
954
|
-
},
|
955
|
-
"msa": {
|
956
|
-
"_reason": "overlong",
|
957
|
-
"_replacement": "ms"
|
958
|
-
},
|
959
|
-
"mst": {
|
960
|
-
"_reason": "deprecated",
|
961
|
-
"_replacement": "mry"
|
962
|
-
},
|
963
|
-
"mup": {
|
964
|
-
"_reason": "macrolanguage",
|
965
|
-
"_replacement": "raj"
|
966
|
-
},
|
967
|
-
"mwj": {
|
968
|
-
"_reason": "deprecated",
|
969
|
-
"_replacement": "vaj"
|
970
|
-
},
|
971
|
-
"mya": {
|
972
|
-
"_reason": "overlong",
|
973
|
-
"_replacement": "my"
|
974
|
-
},
|
975
|
-
"myt": {
|
976
|
-
"_reason": "deprecated",
|
977
|
-
"_replacement": "mry"
|
978
|
-
},
|
979
|
-
"nad": {
|
980
|
-
"_reason": "deprecated",
|
981
|
-
"_replacement": "xny"
|
982
|
-
},
|
983
|
-
"nau": {
|
984
|
-
"_reason": "overlong",
|
985
|
-
"_replacement": "na"
|
986
|
-
},
|
987
|
-
"nav": {
|
988
|
-
"_reason": "overlong",
|
989
|
-
"_replacement": "nv"
|
990
|
-
},
|
991
|
-
"nbl": {
|
992
|
-
"_reason": "overlong",
|
993
|
-
"_replacement": "nr"
|
994
|
-
},
|
995
|
-
"ncp": {
|
996
|
-
"_reason": "deprecated",
|
997
|
-
"_replacement": "kdz"
|
998
|
-
},
|
999
|
-
"nde": {
|
1000
|
-
"_reason": "overlong",
|
1001
|
-
"_replacement": "nd"
|
1002
|
-
},
|
1003
|
-
"ndo": {
|
1004
|
-
"_reason": "overlong",
|
1005
|
-
"_replacement": "ng"
|
1006
|
-
},
|
1007
|
-
"nep": {
|
1008
|
-
"_reason": "overlong",
|
1009
|
-
"_replacement": "ne"
|
1010
|
-
},
|
1011
|
-
"nld": {
|
1012
|
-
"_reason": "overlong",
|
1013
|
-
"_replacement": "nl"
|
1014
|
-
},
|
1015
|
-
"nno": {
|
1016
|
-
"_reason": "overlong",
|
1017
|
-
"_replacement": "nn"
|
1018
|
-
},
|
1019
|
-
"nnx": {
|
1020
|
-
"_reason": "deprecated",
|
1021
|
-
"_replacement": "ngv"
|
1022
|
-
},
|
1023
|
-
"no": {
|
1024
|
-
"_reason": "legacy",
|
1025
|
-
"_replacement": "nb"
|
1026
|
-
},
|
1027
|
-
"no-bok": {
|
1028
|
-
"_reason": "deprecated",
|
1029
|
-
"_replacement": "nb"
|
1030
|
-
},
|
1031
|
-
"no-BOKMAL": {
|
1032
|
-
"_reason": "deprecated",
|
1033
|
-
"_replacement": "nb"
|
1034
|
-
},
|
1035
|
-
"no-nyn": {
|
1036
|
-
"_reason": "deprecated",
|
1037
|
-
"_replacement": "nn"
|
1038
|
-
},
|
1039
|
-
"no-NYNORSK": {
|
1040
|
-
"_reason": "deprecated",
|
1041
|
-
"_replacement": "nn"
|
1042
|
-
},
|
1043
|
-
"nob": {
|
1044
|
-
"_reason": "overlong",
|
1045
|
-
"_replacement": "nb"
|
1046
|
-
},
|
1047
|
-
"nor": {
|
1048
|
-
"_reason": "overlong",
|
1049
|
-
"_replacement": "nb"
|
1050
|
-
},
|
1051
|
-
"npi": {
|
1052
|
-
"_reason": "macrolanguage",
|
1053
|
-
"_replacement": "ne"
|
1054
|
-
},
|
1055
|
-
"nts": {
|
1056
|
-
"_reason": "deprecated",
|
1057
|
-
"_replacement": "pij"
|
1058
|
-
},
|
1059
|
-
"nya": {
|
1060
|
-
"_reason": "overlong",
|
1061
|
-
"_replacement": "ny"
|
1062
|
-
},
|
1063
|
-
"oci": {
|
1064
|
-
"_reason": "overlong",
|
1065
|
-
"_replacement": "oc"
|
1066
|
-
},
|
1067
|
-
"ojg": {
|
1068
|
-
"_reason": "macrolanguage",
|
1069
|
-
"_replacement": "oj"
|
1070
|
-
},
|
1071
|
-
"oji": {
|
1072
|
-
"_reason": "overlong",
|
1073
|
-
"_replacement": "oj"
|
1074
|
-
},
|
1075
|
-
"ori": {
|
1076
|
-
"_reason": "overlong",
|
1077
|
-
"_replacement": "or"
|
1078
|
-
},
|
1079
|
-
"orm": {
|
1080
|
-
"_reason": "overlong",
|
1081
|
-
"_replacement": "om"
|
1082
|
-
},
|
1083
|
-
"ory": {
|
1084
|
-
"_reason": "macrolanguage",
|
1085
|
-
"_replacement": "or"
|
1086
|
-
},
|
1087
|
-
"oss": {
|
1088
|
-
"_reason": "overlong",
|
1089
|
-
"_replacement": "os"
|
1090
|
-
},
|
1091
|
-
"oun": {
|
1092
|
-
"_reason": "deprecated",
|
1093
|
-
"_replacement": "vaj"
|
1094
|
-
},
|
1095
|
-
"pa-IN": {
|
1096
|
-
"_reason": "legacy",
|
1097
|
-
"_replacement": "pa-Guru-IN"
|
1098
|
-
},
|
1099
|
-
"pa-PK": {
|
1100
|
-
"_reason": "legacy",
|
1101
|
-
"_replacement": "pa-Arab-PK"
|
1102
|
-
},
|
1103
|
-
"pan": {
|
1104
|
-
"_reason": "overlong",
|
1105
|
-
"_replacement": "pa"
|
1106
|
-
},
|
1107
|
-
"pbu": {
|
1108
|
-
"_reason": "macrolanguage",
|
1109
|
-
"_replacement": "ps"
|
1110
|
-
},
|
1111
|
-
"pcr": {
|
1112
|
-
"_reason": "deprecated",
|
1113
|
-
"_replacement": "adx"
|
1114
|
-
},
|
1115
|
-
"per": {
|
1116
|
-
"_reason": "bibliographic",
|
1117
|
-
"_replacement": "fa"
|
1118
|
-
},
|
1119
|
-
"pes": {
|
1120
|
-
"_reason": "macrolanguage",
|
1121
|
-
"_replacement": "fa"
|
1122
|
-
},
|
1123
|
-
"pli": {
|
1124
|
-
"_reason": "overlong",
|
1125
|
-
"_replacement": "pi"
|
1126
|
-
},
|
1127
|
-
"plt": {
|
1128
|
-
"_reason": "macrolanguage",
|
1129
|
-
"_replacement": "mg"
|
1130
|
-
},
|
1131
|
-
"pmc": {
|
1132
|
-
"_reason": "deprecated",
|
1133
|
-
"_replacement": "huw"
|
1134
|
-
},
|
1135
|
-
"pmu": {
|
1136
|
-
"_reason": "deprecated",
|
1137
|
-
"_replacement": "phr"
|
1138
|
-
},
|
1139
|
-
"pnb": {
|
1140
|
-
"_reason": "macrolanguage",
|
1141
|
-
"_replacement": "lah"
|
1142
|
-
},
|
1143
|
-
"pol": {
|
1144
|
-
"_reason": "overlong",
|
1145
|
-
"_replacement": "pl"
|
1146
|
-
},
|
1147
|
-
"por": {
|
1148
|
-
"_reason": "overlong",
|
1149
|
-
"_replacement": "pt"
|
1150
|
-
},
|
1151
|
-
"ppa": {
|
1152
|
-
"_reason": "deprecated",
|
1153
|
-
"_replacement": "bfy"
|
1154
|
-
},
|
1155
|
-
"ppr": {
|
1156
|
-
"_reason": "deprecated",
|
1157
|
-
"_replacement": "lcq"
|
1158
|
-
},
|
1159
|
-
"prs": {
|
1160
|
-
"_reason": "overlong",
|
1161
|
-
"_replacement": "fa-AF"
|
1162
|
-
},
|
1163
|
-
"pry": {
|
1164
|
-
"_reason": "deprecated",
|
1165
|
-
"_replacement": "prt"
|
1166
|
-
},
|
1167
|
-
"pus": {
|
1168
|
-
"_reason": "overlong",
|
1169
|
-
"_replacement": "ps"
|
1170
|
-
},
|
1171
|
-
"puz": {
|
1172
|
-
"_reason": "deprecated",
|
1173
|
-
"_replacement": "pub"
|
1174
|
-
},
|
1175
|
-
"que": {
|
1176
|
-
"_reason": "overlong",
|
1177
|
-
"_replacement": "qu"
|
1178
|
-
},
|
1179
|
-
"quz": {
|
1180
|
-
"_reason": "macrolanguage",
|
1181
|
-
"_replacement": "qu"
|
1182
|
-
},
|
1183
|
-
"rmy": {
|
1184
|
-
"_reason": "macrolanguage",
|
1185
|
-
"_replacement": "rom"
|
1186
|
-
},
|
1187
|
-
"roh": {
|
1188
|
-
"_reason": "overlong",
|
1189
|
-
"_replacement": "rm"
|
1190
|
-
},
|
1191
|
-
"ron": {
|
1192
|
-
"_reason": "overlong",
|
1193
|
-
"_replacement": "ro"
|
1194
|
-
},
|
1195
|
-
"rum": {
|
1196
|
-
"_reason": "bibliographic",
|
1197
|
-
"_replacement": "ro"
|
1198
|
-
},
|
1199
|
-
"run": {
|
1200
|
-
"_reason": "overlong",
|
1201
|
-
"_replacement": "rn"
|
1202
|
-
},
|
1203
|
-
"rus": {
|
1204
|
-
"_reason": "overlong",
|
1205
|
-
"_replacement": "ru"
|
1206
|
-
},
|
1207
|
-
"sag": {
|
1208
|
-
"_reason": "overlong",
|
1209
|
-
"_replacement": "sg"
|
1210
|
-
},
|
1211
|
-
"san": {
|
1212
|
-
"_reason": "overlong",
|
1213
|
-
"_replacement": "sa"
|
1214
|
-
},
|
1215
|
-
"sca": {
|
1216
|
-
"_reason": "deprecated",
|
1217
|
-
"_replacement": "hle"
|
1218
|
-
},
|
1219
|
-
"scc": {
|
1220
|
-
"_reason": "deprecated",
|
1221
|
-
"_replacement": "sr"
|
1222
|
-
},
|
1223
|
-
"scr": {
|
1224
|
-
"_reason": "deprecated",
|
1225
|
-
"_replacement": "hr"
|
1226
|
-
},
|
1227
|
-
"sgn-BE-FR": {
|
1228
|
-
"_reason": "deprecated",
|
1229
|
-
"_replacement": "sfb"
|
1230
|
-
},
|
1231
|
-
"sgn-BE-NL": {
|
1232
|
-
"_reason": "deprecated",
|
1233
|
-
"_replacement": "vgt"
|
1234
|
-
},
|
1235
|
-
"sgn-CH-DE": {
|
1236
|
-
"_reason": "deprecated",
|
1237
|
-
"_replacement": "sgg"
|
1238
|
-
},
|
1239
|
-
"sh": {
|
1240
|
-
"_reason": "legacy",
|
1241
|
-
"_replacement": "sr-Latn"
|
1242
|
-
},
|
1243
|
-
"shi-MA": {
|
1244
|
-
"_reason": "legacy",
|
1245
|
-
"_replacement": "shi-Tfng-MA"
|
1246
|
-
},
|
1247
|
-
"sin": {
|
1248
|
-
"_reason": "overlong",
|
1249
|
-
"_replacement": "si"
|
1250
|
-
},
|
1251
|
-
"skk": {
|
1252
|
-
"_reason": "deprecated",
|
1253
|
-
"_replacement": "oyb"
|
1254
|
-
},
|
1255
|
-
"slk": {
|
1256
|
-
"_reason": "overlong",
|
1257
|
-
"_replacement": "sk"
|
1258
|
-
},
|
1259
|
-
"slo": {
|
1260
|
-
"_reason": "bibliographic",
|
1261
|
-
"_replacement": "sk"
|
1262
|
-
},
|
1263
|
-
"slv": {
|
1264
|
-
"_reason": "overlong",
|
1265
|
-
"_replacement": "sl"
|
1266
|
-
},
|
1267
|
-
"sme": {
|
1268
|
-
"_reason": "overlong",
|
1269
|
-
"_replacement": "se"
|
1270
|
-
},
|
1271
|
-
"smo": {
|
1272
|
-
"_reason": "overlong",
|
1273
|
-
"_replacement": "sm"
|
1274
|
-
},
|
1275
|
-
"sna": {
|
1276
|
-
"_reason": "overlong",
|
1277
|
-
"_replacement": "sn"
|
1278
|
-
},
|
1279
|
-
"snd": {
|
1280
|
-
"_reason": "overlong",
|
1281
|
-
"_replacement": "sd"
|
1282
|
-
},
|
1283
|
-
"som": {
|
1284
|
-
"_reason": "overlong",
|
1285
|
-
"_replacement": "so"
|
1286
|
-
},
|
1287
|
-
"sot": {
|
1288
|
-
"_reason": "overlong",
|
1289
|
-
"_replacement": "st"
|
1290
|
-
},
|
1291
|
-
"spa": {
|
1292
|
-
"_reason": "overlong",
|
1293
|
-
"_replacement": "es"
|
1294
|
-
},
|
1295
|
-
"spy": {
|
1296
|
-
"_reason": "macrolanguage",
|
1297
|
-
"_replacement": "kln"
|
1298
|
-
},
|
1299
|
-
"sqi": {
|
1300
|
-
"_reason": "overlong",
|
1301
|
-
"_replacement": "sq"
|
1302
|
-
},
|
1303
|
-
"sr-BA": {
|
1304
|
-
"_reason": "legacy",
|
1305
|
-
"_replacement": "sr-Cyrl-BA"
|
1306
|
-
},
|
1307
|
-
"sr-ME": {
|
1308
|
-
"_reason": "legacy",
|
1309
|
-
"_replacement": "sr-Latn-ME"
|
1310
|
-
},
|
1311
|
-
"sr-RS": {
|
1312
|
-
"_reason": "legacy",
|
1313
|
-
"_replacement": "sr-Cyrl-RS"
|
1314
|
-
},
|
1315
|
-
"sr-XK": {
|
1316
|
-
"_reason": "legacy",
|
1317
|
-
"_replacement": "sr-Cyrl-XK"
|
1318
|
-
},
|
1319
|
-
"src": {
|
1320
|
-
"_reason": "macrolanguage",
|
1321
|
-
"_replacement": "sc"
|
1322
|
-
},
|
1323
|
-
"srd": {
|
1324
|
-
"_reason": "overlong",
|
1325
|
-
"_replacement": "sc"
|
1326
|
-
},
|
1327
|
-
"srp": {
|
1328
|
-
"_reason": "overlong",
|
1329
|
-
"_replacement": "sr"
|
1330
|
-
},
|
1331
|
-
"ssw": {
|
1332
|
-
"_reason": "overlong",
|
1333
|
-
"_replacement": "ss"
|
1334
|
-
},
|
1335
|
-
"sun": {
|
1336
|
-
"_reason": "overlong",
|
1337
|
-
"_replacement": "su"
|
1338
|
-
},
|
1339
|
-
"swa": {
|
1340
|
-
"_reason": "overlong",
|
1341
|
-
"_replacement": "sw"
|
1342
|
-
},
|
1343
|
-
"swc": {
|
1344
|
-
"_reason": "overlong",
|
1345
|
-
"_replacement": "sw-CD"
|
1346
|
-
},
|
1347
|
-
"swe": {
|
1348
|
-
"_reason": "overlong",
|
1349
|
-
"_replacement": "sv"
|
1350
|
-
},
|
1351
|
-
"swh": {
|
1352
|
-
"_reason": "macrolanguage",
|
1353
|
-
"_replacement": "sw"
|
1354
|
-
},
|
1355
|
-
"tah": {
|
1356
|
-
"_reason": "overlong",
|
1357
|
-
"_replacement": "ty"
|
1358
|
-
},
|
1359
|
-
"tam": {
|
1360
|
-
"_reason": "overlong",
|
1361
|
-
"_replacement": "ta"
|
1362
|
-
},
|
1363
|
-
"tat": {
|
1364
|
-
"_reason": "overlong",
|
1365
|
-
"_replacement": "tt"
|
1366
|
-
},
|
1367
|
-
"tdu": {
|
1368
|
-
"_reason": "deprecated",
|
1369
|
-
"_replacement": "dtp"
|
1370
|
-
},
|
1371
|
-
"tel": {
|
1372
|
-
"_reason": "overlong",
|
1373
|
-
"_replacement": "te"
|
1374
|
-
},
|
1375
|
-
"tgk": {
|
1376
|
-
"_reason": "overlong",
|
1377
|
-
"_replacement": "tg"
|
1378
|
-
},
|
1379
|
-
"tgl": {
|
1380
|
-
"_reason": "overlong",
|
1381
|
-
"_replacement": "fil"
|
1382
|
-
},
|
1383
|
-
"tha": {
|
1384
|
-
"_reason": "overlong",
|
1385
|
-
"_replacement": "th"
|
1386
|
-
},
|
1387
|
-
"thc": {
|
1388
|
-
"_reason": "deprecated",
|
1389
|
-
"_replacement": "tpo"
|
1390
|
-
},
|
1391
|
-
"thx": {
|
1392
|
-
"_reason": "deprecated",
|
1393
|
-
"_replacement": "oyb"
|
1394
|
-
},
|
1395
|
-
"tib": {
|
1396
|
-
"_reason": "bibliographic",
|
1397
|
-
"_replacement": "bo"
|
1398
|
-
},
|
1399
|
-
"tie": {
|
1400
|
-
"_reason": "deprecated",
|
1401
|
-
"_replacement": "ras"
|
1402
|
-
},
|
1403
|
-
"tir": {
|
1404
|
-
"_reason": "overlong",
|
1405
|
-
"_replacement": "ti"
|
1406
|
-
},
|
1407
|
-
"tkk": {
|
1408
|
-
"_reason": "deprecated",
|
1409
|
-
"_replacement": "twm"
|
1410
|
-
},
|
1411
|
-
"tl": {
|
1412
|
-
"_reason": "legacy",
|
1413
|
-
"_replacement": "fil"
|
1414
|
-
},
|
1415
|
-
"tlw": {
|
1416
|
-
"_reason": "deprecated",
|
1417
|
-
"_replacement": "weo"
|
1418
|
-
},
|
1419
|
-
"tmp": {
|
1420
|
-
"_reason": "deprecated",
|
1421
|
-
"_replacement": "tyj"
|
1422
|
-
},
|
1423
|
-
"tne": {
|
1424
|
-
"_reason": "deprecated",
|
1425
|
-
"_replacement": "kak"
|
1426
|
-
},
|
1427
|
-
"tnf": {
|
1428
|
-
"_reason": "deprecated",
|
1429
|
-
"_replacement": "fa-af"
|
1430
|
-
},
|
1431
|
-
"ton": {
|
1432
|
-
"_reason": "overlong",
|
1433
|
-
"_replacement": "to"
|
1434
|
-
},
|
1435
|
-
"tsf": {
|
1436
|
-
"_reason": "deprecated",
|
1437
|
-
"_replacement": "taj"
|
1438
|
-
},
|
1439
|
-
"tsn": {
|
1440
|
-
"_reason": "overlong",
|
1441
|
-
"_replacement": "tn"
|
1442
|
-
},
|
1443
|
-
"tso": {
|
1444
|
-
"_reason": "overlong",
|
1445
|
-
"_replacement": "ts"
|
1446
|
-
},
|
1447
|
-
"ttq": {
|
1448
|
-
"_reason": "macrolanguage",
|
1449
|
-
"_replacement": "tmh"
|
1450
|
-
},
|
1451
|
-
"tuk": {
|
1452
|
-
"_reason": "overlong",
|
1453
|
-
"_replacement": "tk"
|
1454
|
-
},
|
1455
|
-
"tur": {
|
1456
|
-
"_reason": "overlong",
|
1457
|
-
"_replacement": "tr"
|
1458
|
-
},
|
1459
|
-
"tw": {
|
1460
|
-
"_reason": "macrolanguage",
|
1461
|
-
"_replacement": "ak"
|
1462
|
-
},
|
1463
|
-
"twi": {
|
1464
|
-
"_reason": "overlong",
|
1465
|
-
"_replacement": "ak"
|
1466
|
-
},
|
1467
|
-
"tzm-Latn-MA": {
|
1468
|
-
"_reason": "legacy",
|
1469
|
-
"_replacement": "tzm-MA"
|
1470
|
-
},
|
1471
|
-
"ug-Arab-CN": {
|
1472
|
-
"_reason": "legacy",
|
1473
|
-
"_replacement": "ug-CN"
|
1474
|
-
},
|
1475
|
-
"uig": {
|
1476
|
-
"_reason": "overlong",
|
1477
|
-
"_replacement": "ug"
|
1478
|
-
},
|
1479
|
-
"ukr": {
|
1480
|
-
"_reason": "overlong",
|
1481
|
-
"_replacement": "uk"
|
1482
|
-
},
|
1483
|
-
"umu": {
|
1484
|
-
"_reason": "macrolanguage",
|
1485
|
-
"_replacement": "del"
|
1486
|
-
},
|
1487
|
-
"uok": {
|
1488
|
-
"_reason": "deprecated",
|
1489
|
-
"_replacement": "ema"
|
1490
|
-
},
|
1491
|
-
"urd": {
|
1492
|
-
"_reason": "overlong",
|
1493
|
-
"_replacement": "ur"
|
1494
|
-
},
|
1495
|
-
"uz-AF": {
|
1496
|
-
"_reason": "legacy",
|
1497
|
-
"_replacement": "uz-Arab-AF"
|
1498
|
-
},
|
1499
|
-
"uz-UZ": {
|
1500
|
-
"_reason": "legacy",
|
1501
|
-
"_replacement": "uz-Latn-UZ"
|
1502
|
-
},
|
1503
|
-
"uzb": {
|
1504
|
-
"_reason": "overlong",
|
1505
|
-
"_replacement": "uz"
|
1506
|
-
},
|
1507
|
-
"uzn": {
|
1508
|
-
"_reason": "macrolanguage",
|
1509
|
-
"_replacement": "uz"
|
1510
|
-
},
|
1511
|
-
"vai-LR": {
|
1512
|
-
"_reason": "legacy",
|
1513
|
-
"_replacement": "vai-Vaii-LR"
|
1514
|
-
},
|
1515
|
-
"ven": {
|
1516
|
-
"_reason": "overlong",
|
1517
|
-
"_replacement": "ve"
|
1518
|
-
},
|
1519
|
-
"vie": {
|
1520
|
-
"_reason": "overlong",
|
1521
|
-
"_replacement": "vi"
|
1522
|
-
},
|
1523
|
-
"vol": {
|
1524
|
-
"_reason": "overlong",
|
1525
|
-
"_replacement": "vo"
|
1526
|
-
},
|
1527
|
-
"wel": {
|
1528
|
-
"_reason": "bibliographic",
|
1529
|
-
"_replacement": "cy"
|
1530
|
-
},
|
1531
|
-
"wln": {
|
1532
|
-
"_reason": "overlong",
|
1533
|
-
"_replacement": "wa"
|
1534
|
-
},
|
1535
|
-
"wol": {
|
1536
|
-
"_reason": "overlong",
|
1537
|
-
"_replacement": "wo"
|
1538
|
-
},
|
1539
|
-
"xba": {
|
1540
|
-
"_reason": "deprecated",
|
1541
|
-
"_replacement": "cax"
|
1542
|
-
},
|
1543
|
-
"xho": {
|
1544
|
-
"_reason": "overlong",
|
1545
|
-
"_replacement": "xh"
|
1546
|
-
},
|
1547
|
-
"xia": {
|
1548
|
-
"_reason": "deprecated",
|
1549
|
-
"_replacement": "acn"
|
1550
|
-
},
|
1551
|
-
"xkh": {
|
1552
|
-
"_reason": "deprecated",
|
1553
|
-
"_replacement": "waw"
|
1554
|
-
},
|
1555
|
-
"xpe": {
|
1556
|
-
"_reason": "macrolanguage",
|
1557
|
-
"_replacement": "kpe"
|
1558
|
-
},
|
1559
|
-
"xsj": {
|
1560
|
-
"_reason": "deprecated",
|
1561
|
-
"_replacement": "suj"
|
1562
|
-
},
|
1563
|
-
"xsl": {
|
1564
|
-
"_reason": "macrolanguage",
|
1565
|
-
"_replacement": "den"
|
1566
|
-
},
|
1567
|
-
"ybd": {
|
1568
|
-
"_reason": "deprecated",
|
1569
|
-
"_replacement": "rki"
|
1570
|
-
},
|
1571
|
-
"ydd": {
|
1572
|
-
"_reason": "macrolanguage",
|
1573
|
-
"_replacement": "yi"
|
1574
|
-
},
|
1575
|
-
"yid": {
|
1576
|
-
"_reason": "overlong",
|
1577
|
-
"_replacement": "yi"
|
1578
|
-
},
|
1579
|
-
"yma": {
|
1580
|
-
"_reason": "deprecated",
|
1581
|
-
"_replacement": "lrr"
|
1582
|
-
},
|
1583
|
-
"ymt": {
|
1584
|
-
"_reason": "deprecated",
|
1585
|
-
"_replacement": "mtm"
|
1586
|
-
},
|
1587
|
-
"yor": {
|
1588
|
-
"_reason": "overlong",
|
1589
|
-
"_replacement": "yo"
|
1590
|
-
},
|
1591
|
-
"yos": {
|
1592
|
-
"_reason": "deprecated",
|
1593
|
-
"_replacement": "zom"
|
1594
|
-
},
|
1595
|
-
"yue-CN": {
|
1596
|
-
"_reason": "legacy",
|
1597
|
-
"_replacement": "yue-Hans-CN"
|
1598
|
-
},
|
1599
|
-
"yue-HK": {
|
1600
|
-
"_reason": "legacy",
|
1601
|
-
"_replacement": "yue-Hant-HK"
|
1602
|
-
},
|
1603
|
-
"yuu": {
|
1604
|
-
"_reason": "deprecated",
|
1605
|
-
"_replacement": "yug"
|
1606
|
-
},
|
1607
|
-
"zai": {
|
1608
|
-
"_reason": "macrolanguage",
|
1609
|
-
"_replacement": "zap"
|
1610
|
-
},
|
1611
|
-
"zh-CN": {
|
1612
|
-
"_reason": "legacy",
|
1613
|
-
"_replacement": "zh-Hans-CN"
|
1614
|
-
},
|
1615
|
-
"zh-guoyu": {
|
1616
|
-
"_reason": "deprecated",
|
1617
|
-
"_replacement": "zh"
|
1618
|
-
},
|
1619
|
-
"zh-hakka": {
|
1620
|
-
"_reason": "deprecated",
|
1621
|
-
"_replacement": "hak"
|
1622
|
-
},
|
1623
|
-
"zh-HK": {
|
1624
|
-
"_reason": "legacy",
|
1625
|
-
"_replacement": "zh-Hant-HK"
|
1626
|
-
},
|
1627
|
-
"zh-min-nan": {
|
1628
|
-
"_reason": "deprecated",
|
1629
|
-
"_replacement": "nan"
|
1630
|
-
},
|
1631
|
-
"zh-MO": {
|
1632
|
-
"_reason": "legacy",
|
1633
|
-
"_replacement": "zh-Hant-MO"
|
1634
|
-
},
|
1635
|
-
"zh-SG": {
|
1636
|
-
"_reason": "legacy",
|
1637
|
-
"_replacement": "zh-Hans-SG"
|
1638
|
-
},
|
1639
|
-
"zh-TW": {
|
1640
|
-
"_reason": "legacy",
|
1641
|
-
"_replacement": "zh-Hant-TW"
|
1642
|
-
},
|
1643
|
-
"zh-xiang": {
|
1644
|
-
"_reason": "deprecated",
|
1645
|
-
"_replacement": "hsn"
|
1646
|
-
},
|
1647
|
-
"zh-min": {
|
1648
|
-
"_reason": "legacy",
|
1649
|
-
"_replacement": "nan-x-zh-min"
|
1650
|
-
},
|
1651
|
-
"zha": {
|
1652
|
-
"_reason": "overlong",
|
1653
|
-
"_replacement": "za"
|
1654
|
-
},
|
1655
|
-
"zho": {
|
1656
|
-
"_reason": "overlong",
|
1657
|
-
"_replacement": "zh"
|
1658
|
-
},
|
1659
|
-
"zsm": {
|
1660
|
-
"_reason": "macrolanguage",
|
1661
|
-
"_replacement": "ms"
|
1662
|
-
},
|
1663
|
-
"zul": {
|
1664
|
-
"_reason": "overlong",
|
1665
|
-
"_replacement": "zu"
|
1666
|
-
},
|
1667
|
-
"zyb": {
|
1668
|
-
"_reason": "macrolanguage",
|
1669
|
-
"_replacement": "za"
|
1670
|
-
}
|
1671
|
-
},
|
1672
|
-
"scriptAlias": {
|
1673
|
-
"Qaai": {
|
1674
|
-
"_reason": "deprecated",
|
1675
|
-
"_replacement": "Zinh"
|
1676
|
-
}
|
1677
|
-
},
|
1678
|
-
"territoryAlias": {
|
1679
|
-
"004": {
|
1680
|
-
"_reason": "overlong",
|
1681
|
-
"_replacement": "AF"
|
1682
|
-
},
|
1683
|
-
"008": {
|
1684
|
-
"_reason": "overlong",
|
1685
|
-
"_replacement": "AL"
|
1686
|
-
},
|
1687
|
-
"010": {
|
1688
|
-
"_reason": "overlong",
|
1689
|
-
"_replacement": "AQ"
|
1690
|
-
},
|
1691
|
-
"012": {
|
1692
|
-
"_reason": "overlong",
|
1693
|
-
"_replacement": "DZ"
|
1694
|
-
},
|
1695
|
-
"016": {
|
1696
|
-
"_reason": "overlong",
|
1697
|
-
"_replacement": "AS"
|
1698
|
-
},
|
1699
|
-
"020": {
|
1700
|
-
"_reason": "overlong",
|
1701
|
-
"_replacement": "AD"
|
1702
|
-
},
|
1703
|
-
"024": {
|
1704
|
-
"_reason": "overlong",
|
1705
|
-
"_replacement": "AO"
|
1706
|
-
},
|
1707
|
-
"028": {
|
1708
|
-
"_reason": "overlong",
|
1709
|
-
"_replacement": "AG"
|
1710
|
-
},
|
1711
|
-
"031": {
|
1712
|
-
"_reason": "overlong",
|
1713
|
-
"_replacement": "AZ"
|
1714
|
-
},
|
1715
|
-
"032": {
|
1716
|
-
"_reason": "overlong",
|
1717
|
-
"_replacement": "AR"
|
1718
|
-
},
|
1719
|
-
"036": {
|
1720
|
-
"_reason": "overlong",
|
1721
|
-
"_replacement": "AU"
|
1722
|
-
},
|
1723
|
-
"040": {
|
1724
|
-
"_reason": "overlong",
|
1725
|
-
"_replacement": "AT"
|
1726
|
-
},
|
1727
|
-
"044": {
|
1728
|
-
"_reason": "overlong",
|
1729
|
-
"_replacement": "BS"
|
1730
|
-
},
|
1731
|
-
"048": {
|
1732
|
-
"_reason": "overlong",
|
1733
|
-
"_replacement": "BH"
|
1734
|
-
},
|
1735
|
-
"050": {
|
1736
|
-
"_reason": "overlong",
|
1737
|
-
"_replacement": "BD"
|
1738
|
-
},
|
1739
|
-
"051": {
|
1740
|
-
"_reason": "overlong",
|
1741
|
-
"_replacement": "AM"
|
1742
|
-
},
|
1743
|
-
"052": {
|
1744
|
-
"_reason": "overlong",
|
1745
|
-
"_replacement": "BB"
|
1746
|
-
},
|
1747
|
-
"056": {
|
1748
|
-
"_reason": "overlong",
|
1749
|
-
"_replacement": "BE"
|
1750
|
-
},
|
1751
|
-
"060": {
|
1752
|
-
"_reason": "overlong",
|
1753
|
-
"_replacement": "BM"
|
1754
|
-
},
|
1755
|
-
"062": {
|
1756
|
-
"_reason": "deprecated",
|
1757
|
-
"_replacement": "034 143"
|
1758
|
-
},
|
1759
|
-
"064": {
|
1760
|
-
"_reason": "overlong",
|
1761
|
-
"_replacement": "BT"
|
1762
|
-
},
|
1763
|
-
"068": {
|
1764
|
-
"_reason": "overlong",
|
1765
|
-
"_replacement": "BO"
|
1766
|
-
},
|
1767
|
-
"070": {
|
1768
|
-
"_reason": "overlong",
|
1769
|
-
"_replacement": "BA"
|
1770
|
-
},
|
1771
|
-
"072": {
|
1772
|
-
"_reason": "overlong",
|
1773
|
-
"_replacement": "BW"
|
1774
|
-
},
|
1775
|
-
"074": {
|
1776
|
-
"_reason": "overlong",
|
1777
|
-
"_replacement": "BV"
|
1778
|
-
},
|
1779
|
-
"076": {
|
1780
|
-
"_reason": "overlong",
|
1781
|
-
"_replacement": "BR"
|
1782
|
-
},
|
1783
|
-
"084": {
|
1784
|
-
"_reason": "overlong",
|
1785
|
-
"_replacement": "BZ"
|
1786
|
-
},
|
1787
|
-
"086": {
|
1788
|
-
"_reason": "overlong",
|
1789
|
-
"_replacement": "IO"
|
1790
|
-
},
|
1791
|
-
"090": {
|
1792
|
-
"_reason": "overlong",
|
1793
|
-
"_replacement": "SB"
|
1794
|
-
},
|
1795
|
-
"092": {
|
1796
|
-
"_reason": "overlong",
|
1797
|
-
"_replacement": "VG"
|
1798
|
-
},
|
1799
|
-
"096": {
|
1800
|
-
"_reason": "overlong",
|
1801
|
-
"_replacement": "BN"
|
1802
|
-
},
|
1803
|
-
"100": {
|
1804
|
-
"_reason": "overlong",
|
1805
|
-
"_replacement": "BG"
|
1806
|
-
},
|
1807
|
-
"104": {
|
1808
|
-
"_reason": "overlong",
|
1809
|
-
"_replacement": "MM"
|
1810
|
-
},
|
1811
|
-
"108": {
|
1812
|
-
"_reason": "overlong",
|
1813
|
-
"_replacement": "BI"
|
1814
|
-
},
|
1815
|
-
"112": {
|
1816
|
-
"_reason": "overlong",
|
1817
|
-
"_replacement": "BY"
|
1818
|
-
},
|
1819
|
-
"116": {
|
1820
|
-
"_reason": "overlong",
|
1821
|
-
"_replacement": "KH"
|
1822
|
-
},
|
1823
|
-
"120": {
|
1824
|
-
"_reason": "overlong",
|
1825
|
-
"_replacement": "CM"
|
1826
|
-
},
|
1827
|
-
"124": {
|
1828
|
-
"_reason": "overlong",
|
1829
|
-
"_replacement": "CA"
|
1830
|
-
},
|
1831
|
-
"132": {
|
1832
|
-
"_reason": "overlong",
|
1833
|
-
"_replacement": "CV"
|
1834
|
-
},
|
1835
|
-
"136": {
|
1836
|
-
"_reason": "overlong",
|
1837
|
-
"_replacement": "KY"
|
1838
|
-
},
|
1839
|
-
"140": {
|
1840
|
-
"_reason": "overlong",
|
1841
|
-
"_replacement": "CF"
|
1842
|
-
},
|
1843
|
-
"144": {
|
1844
|
-
"_reason": "overlong",
|
1845
|
-
"_replacement": "LK"
|
1846
|
-
},
|
1847
|
-
"148": {
|
1848
|
-
"_reason": "overlong",
|
1849
|
-
"_replacement": "TD"
|
1850
|
-
},
|
1851
|
-
"152": {
|
1852
|
-
"_reason": "overlong",
|
1853
|
-
"_replacement": "CL"
|
1854
|
-
},
|
1855
|
-
"156": {
|
1856
|
-
"_reason": "overlong",
|
1857
|
-
"_replacement": "CN"
|
1858
|
-
},
|
1859
|
-
"158": {
|
1860
|
-
"_reason": "overlong",
|
1861
|
-
"_replacement": "TW"
|
1862
|
-
},
|
1863
|
-
"162": {
|
1864
|
-
"_reason": "overlong",
|
1865
|
-
"_replacement": "CX"
|
1866
|
-
},
|
1867
|
-
"166": {
|
1868
|
-
"_reason": "overlong",
|
1869
|
-
"_replacement": "CC"
|
1870
|
-
},
|
1871
|
-
"170": {
|
1872
|
-
"_reason": "overlong",
|
1873
|
-
"_replacement": "CO"
|
1874
|
-
},
|
1875
|
-
"172": {
|
1876
|
-
"_reason": "deprecated",
|
1877
|
-
"_replacement": "RU AM AZ BY GE KG KZ MD TJ TM UA UZ"
|
1878
|
-
},
|
1879
|
-
"174": {
|
1880
|
-
"_reason": "overlong",
|
1881
|
-
"_replacement": "KM"
|
1882
|
-
},
|
1883
|
-
"175": {
|
1884
|
-
"_reason": "overlong",
|
1885
|
-
"_replacement": "YT"
|
1886
|
-
},
|
1887
|
-
"178": {
|
1888
|
-
"_reason": "overlong",
|
1889
|
-
"_replacement": "CG"
|
1890
|
-
},
|
1891
|
-
"180": {
|
1892
|
-
"_reason": "overlong",
|
1893
|
-
"_replacement": "CD"
|
1894
|
-
},
|
1895
|
-
"184": {
|
1896
|
-
"_reason": "overlong",
|
1897
|
-
"_replacement": "CK"
|
1898
|
-
},
|
1899
|
-
"188": {
|
1900
|
-
"_reason": "overlong",
|
1901
|
-
"_replacement": "CR"
|
1902
|
-
},
|
1903
|
-
"191": {
|
1904
|
-
"_reason": "overlong",
|
1905
|
-
"_replacement": "HR"
|
1906
|
-
},
|
1907
|
-
"192": {
|
1908
|
-
"_reason": "overlong",
|
1909
|
-
"_replacement": "CU"
|
1910
|
-
},
|
1911
|
-
"196": {
|
1912
|
-
"_reason": "overlong",
|
1913
|
-
"_replacement": "CY"
|
1914
|
-
},
|
1915
|
-
"200": {
|
1916
|
-
"_reason": "deprecated",
|
1917
|
-
"_replacement": "CZ SK"
|
1918
|
-
},
|
1919
|
-
"203": {
|
1920
|
-
"_reason": "overlong",
|
1921
|
-
"_replacement": "CZ"
|
1922
|
-
},
|
1923
|
-
"204": {
|
1924
|
-
"_reason": "overlong",
|
1925
|
-
"_replacement": "BJ"
|
1926
|
-
},
|
1927
|
-
"208": {
|
1928
|
-
"_reason": "overlong",
|
1929
|
-
"_replacement": "DK"
|
1930
|
-
},
|
1931
|
-
"212": {
|
1932
|
-
"_reason": "overlong",
|
1933
|
-
"_replacement": "DM"
|
1934
|
-
},
|
1935
|
-
"214": {
|
1936
|
-
"_reason": "overlong",
|
1937
|
-
"_replacement": "DO"
|
1938
|
-
},
|
1939
|
-
"218": {
|
1940
|
-
"_reason": "overlong",
|
1941
|
-
"_replacement": "EC"
|
1942
|
-
},
|
1943
|
-
"222": {
|
1944
|
-
"_reason": "overlong",
|
1945
|
-
"_replacement": "SV"
|
1946
|
-
},
|
1947
|
-
"226": {
|
1948
|
-
"_reason": "overlong",
|
1949
|
-
"_replacement": "GQ"
|
1950
|
-
},
|
1951
|
-
"230": {
|
1952
|
-
"_reason": "deprecated",
|
1953
|
-
"_replacement": "ET"
|
1954
|
-
},
|
1955
|
-
"231": {
|
1956
|
-
"_reason": "overlong",
|
1957
|
-
"_replacement": "ET"
|
1958
|
-
},
|
1959
|
-
"232": {
|
1960
|
-
"_reason": "overlong",
|
1961
|
-
"_replacement": "ER"
|
1962
|
-
},
|
1963
|
-
"233": {
|
1964
|
-
"_reason": "overlong",
|
1965
|
-
"_replacement": "EE"
|
1966
|
-
},
|
1967
|
-
"234": {
|
1968
|
-
"_reason": "overlong",
|
1969
|
-
"_replacement": "FO"
|
1970
|
-
},
|
1971
|
-
"238": {
|
1972
|
-
"_reason": "overlong",
|
1973
|
-
"_replacement": "FK"
|
1974
|
-
},
|
1975
|
-
"239": {
|
1976
|
-
"_reason": "overlong",
|
1977
|
-
"_replacement": "GS"
|
1978
|
-
},
|
1979
|
-
"242": {
|
1980
|
-
"_reason": "overlong",
|
1981
|
-
"_replacement": "FJ"
|
1982
|
-
},
|
1983
|
-
"246": {
|
1984
|
-
"_reason": "overlong",
|
1985
|
-
"_replacement": "FI"
|
1986
|
-
},
|
1987
|
-
"248": {
|
1988
|
-
"_reason": "overlong",
|
1989
|
-
"_replacement": "AX"
|
1990
|
-
},
|
1991
|
-
"249": {
|
1992
|
-
"_reason": "overlong",
|
1993
|
-
"_replacement": "FR"
|
1994
|
-
},
|
1995
|
-
"250": {
|
1996
|
-
"_reason": "overlong",
|
1997
|
-
"_replacement": "FR"
|
1998
|
-
},
|
1999
|
-
"254": {
|
2000
|
-
"_reason": "overlong",
|
2001
|
-
"_replacement": "GF"
|
2002
|
-
},
|
2003
|
-
"258": {
|
2004
|
-
"_reason": "overlong",
|
2005
|
-
"_replacement": "PF"
|
2006
|
-
},
|
2007
|
-
"260": {
|
2008
|
-
"_reason": "overlong",
|
2009
|
-
"_replacement": "TF"
|
2010
|
-
},
|
2011
|
-
"262": {
|
2012
|
-
"_reason": "overlong",
|
2013
|
-
"_replacement": "DJ"
|
2014
|
-
},
|
2015
|
-
"266": {
|
2016
|
-
"_reason": "overlong",
|
2017
|
-
"_replacement": "GA"
|
2018
|
-
},
|
2019
|
-
"268": {
|
2020
|
-
"_reason": "overlong",
|
2021
|
-
"_replacement": "GE"
|
2022
|
-
},
|
2023
|
-
"270": {
|
2024
|
-
"_reason": "overlong",
|
2025
|
-
"_replacement": "GM"
|
2026
|
-
},
|
2027
|
-
"275": {
|
2028
|
-
"_reason": "overlong",
|
2029
|
-
"_replacement": "PS"
|
2030
|
-
},
|
2031
|
-
"276": {
|
2032
|
-
"_reason": "overlong",
|
2033
|
-
"_replacement": "DE"
|
2034
|
-
},
|
2035
|
-
"278": {
|
2036
|
-
"_reason": "overlong",
|
2037
|
-
"_replacement": "DE"
|
2038
|
-
},
|
2039
|
-
"280": {
|
2040
|
-
"_reason": "deprecated",
|
2041
|
-
"_replacement": "DE"
|
2042
|
-
},
|
2043
|
-
"288": {
|
2044
|
-
"_reason": "overlong",
|
2045
|
-
"_replacement": "GH"
|
2046
|
-
},
|
2047
|
-
"292": {
|
2048
|
-
"_reason": "overlong",
|
2049
|
-
"_replacement": "GI"
|
2050
|
-
},
|
2051
|
-
"296": {
|
2052
|
-
"_reason": "overlong",
|
2053
|
-
"_replacement": "KI"
|
2054
|
-
},
|
2055
|
-
"300": {
|
2056
|
-
"_reason": "overlong",
|
2057
|
-
"_replacement": "GR"
|
2058
|
-
},
|
2059
|
-
"304": {
|
2060
|
-
"_reason": "overlong",
|
2061
|
-
"_replacement": "GL"
|
2062
|
-
},
|
2063
|
-
"308": {
|
2064
|
-
"_reason": "overlong",
|
2065
|
-
"_replacement": "GD"
|
2066
|
-
},
|
2067
|
-
"312": {
|
2068
|
-
"_reason": "overlong",
|
2069
|
-
"_replacement": "GP"
|
2070
|
-
},
|
2071
|
-
"316": {
|
2072
|
-
"_reason": "overlong",
|
2073
|
-
"_replacement": "GU"
|
2074
|
-
},
|
2075
|
-
"320": {
|
2076
|
-
"_reason": "overlong",
|
2077
|
-
"_replacement": "GT"
|
2078
|
-
},
|
2079
|
-
"324": {
|
2080
|
-
"_reason": "overlong",
|
2081
|
-
"_replacement": "GN"
|
2082
|
-
},
|
2083
|
-
"328": {
|
2084
|
-
"_reason": "overlong",
|
2085
|
-
"_replacement": "GY"
|
2086
|
-
},
|
2087
|
-
"332": {
|
2088
|
-
"_reason": "overlong",
|
2089
|
-
"_replacement": "HT"
|
2090
|
-
},
|
2091
|
-
"334": {
|
2092
|
-
"_reason": "overlong",
|
2093
|
-
"_replacement": "HM"
|
2094
|
-
},
|
2095
|
-
"336": {
|
2096
|
-
"_reason": "overlong",
|
2097
|
-
"_replacement": "VA"
|
2098
|
-
},
|
2099
|
-
"340": {
|
2100
|
-
"_reason": "overlong",
|
2101
|
-
"_replacement": "HN"
|
2102
|
-
},
|
2103
|
-
"344": {
|
2104
|
-
"_reason": "overlong",
|
2105
|
-
"_replacement": "HK"
|
2106
|
-
},
|
2107
|
-
"348": {
|
2108
|
-
"_reason": "overlong",
|
2109
|
-
"_replacement": "HU"
|
2110
|
-
},
|
2111
|
-
"352": {
|
2112
|
-
"_reason": "overlong",
|
2113
|
-
"_replacement": "IS"
|
2114
|
-
},
|
2115
|
-
"356": {
|
2116
|
-
"_reason": "overlong",
|
2117
|
-
"_replacement": "IN"
|
2118
|
-
},
|
2119
|
-
"360": {
|
2120
|
-
"_reason": "overlong",
|
2121
|
-
"_replacement": "ID"
|
2122
|
-
},
|
2123
|
-
"364": {
|
2124
|
-
"_reason": "overlong",
|
2125
|
-
"_replacement": "IR"
|
2126
|
-
},
|
2127
|
-
"368": {
|
2128
|
-
"_reason": "overlong",
|
2129
|
-
"_replacement": "IQ"
|
2130
|
-
},
|
2131
|
-
"372": {
|
2132
|
-
"_reason": "overlong",
|
2133
|
-
"_replacement": "IE"
|
2134
|
-
},
|
2135
|
-
"376": {
|
2136
|
-
"_reason": "overlong",
|
2137
|
-
"_replacement": "IL"
|
2138
|
-
},
|
2139
|
-
"380": {
|
2140
|
-
"_reason": "overlong",
|
2141
|
-
"_replacement": "IT"
|
2142
|
-
},
|
2143
|
-
"384": {
|
2144
|
-
"_reason": "overlong",
|
2145
|
-
"_replacement": "CI"
|
2146
|
-
},
|
2147
|
-
"388": {
|
2148
|
-
"_reason": "overlong",
|
2149
|
-
"_replacement": "JM"
|
2150
|
-
},
|
2151
|
-
"392": {
|
2152
|
-
"_reason": "overlong",
|
2153
|
-
"_replacement": "JP"
|
2154
|
-
},
|
2155
|
-
"398": {
|
2156
|
-
"_reason": "overlong",
|
2157
|
-
"_replacement": "KZ"
|
2158
|
-
},
|
2159
|
-
"400": {
|
2160
|
-
"_reason": "overlong",
|
2161
|
-
"_replacement": "JO"
|
2162
|
-
},
|
2163
|
-
"404": {
|
2164
|
-
"_reason": "overlong",
|
2165
|
-
"_replacement": "KE"
|
2166
|
-
},
|
2167
|
-
"408": {
|
2168
|
-
"_reason": "overlong",
|
2169
|
-
"_replacement": "KP"
|
2170
|
-
},
|
2171
|
-
"410": {
|
2172
|
-
"_reason": "overlong",
|
2173
|
-
"_replacement": "KR"
|
2174
|
-
},
|
2175
|
-
"414": {
|
2176
|
-
"_reason": "overlong",
|
2177
|
-
"_replacement": "KW"
|
2178
|
-
},
|
2179
|
-
"417": {
|
2180
|
-
"_reason": "overlong",
|
2181
|
-
"_replacement": "KG"
|
2182
|
-
},
|
2183
|
-
"418": {
|
2184
|
-
"_reason": "overlong",
|
2185
|
-
"_replacement": "LA"
|
2186
|
-
},
|
2187
|
-
"422": {
|
2188
|
-
"_reason": "overlong",
|
2189
|
-
"_replacement": "LB"
|
2190
|
-
},
|
2191
|
-
"426": {
|
2192
|
-
"_reason": "overlong",
|
2193
|
-
"_replacement": "LS"
|
2194
|
-
},
|
2195
|
-
"428": {
|
2196
|
-
"_reason": "overlong",
|
2197
|
-
"_replacement": "LV"
|
2198
|
-
},
|
2199
|
-
"430": {
|
2200
|
-
"_reason": "overlong",
|
2201
|
-
"_replacement": "LR"
|
2202
|
-
},
|
2203
|
-
"434": {
|
2204
|
-
"_reason": "overlong",
|
2205
|
-
"_replacement": "LY"
|
2206
|
-
},
|
2207
|
-
"438": {
|
2208
|
-
"_reason": "overlong",
|
2209
|
-
"_replacement": "LI"
|
2210
|
-
},
|
2211
|
-
"440": {
|
2212
|
-
"_reason": "overlong",
|
2213
|
-
"_replacement": "LT"
|
2214
|
-
},
|
2215
|
-
"442": {
|
2216
|
-
"_reason": "overlong",
|
2217
|
-
"_replacement": "LU"
|
2218
|
-
},
|
2219
|
-
"446": {
|
2220
|
-
"_reason": "overlong",
|
2221
|
-
"_replacement": "MO"
|
2222
|
-
},
|
2223
|
-
"450": {
|
2224
|
-
"_reason": "overlong",
|
2225
|
-
"_replacement": "MG"
|
2226
|
-
},
|
2227
|
-
"454": {
|
2228
|
-
"_reason": "overlong",
|
2229
|
-
"_replacement": "MW"
|
2230
|
-
},
|
2231
|
-
"458": {
|
2232
|
-
"_reason": "overlong",
|
2233
|
-
"_replacement": "MY"
|
2234
|
-
},
|
2235
|
-
"462": {
|
2236
|
-
"_reason": "overlong",
|
2237
|
-
"_replacement": "MV"
|
2238
|
-
},
|
2239
|
-
"466": {
|
2240
|
-
"_reason": "overlong",
|
2241
|
-
"_replacement": "ML"
|
2242
|
-
},
|
2243
|
-
"470": {
|
2244
|
-
"_reason": "overlong",
|
2245
|
-
"_replacement": "MT"
|
2246
|
-
},
|
2247
|
-
"474": {
|
2248
|
-
"_reason": "overlong",
|
2249
|
-
"_replacement": "MQ"
|
2250
|
-
},
|
2251
|
-
"478": {
|
2252
|
-
"_reason": "overlong",
|
2253
|
-
"_replacement": "MR"
|
2254
|
-
},
|
2255
|
-
"480": {
|
2256
|
-
"_reason": "overlong",
|
2257
|
-
"_replacement": "MU"
|
2258
|
-
},
|
2259
|
-
"484": {
|
2260
|
-
"_reason": "overlong",
|
2261
|
-
"_replacement": "MX"
|
2262
|
-
},
|
2263
|
-
"492": {
|
2264
|
-
"_reason": "overlong",
|
2265
|
-
"_replacement": "MC"
|
2266
|
-
},
|
2267
|
-
"496": {
|
2268
|
-
"_reason": "overlong",
|
2269
|
-
"_replacement": "MN"
|
2270
|
-
},
|
2271
|
-
"498": {
|
2272
|
-
"_reason": "overlong",
|
2273
|
-
"_replacement": "MD"
|
2274
|
-
},
|
2275
|
-
"499": {
|
2276
|
-
"_reason": "overlong",
|
2277
|
-
"_replacement": "ME"
|
2278
|
-
},
|
2279
|
-
"500": {
|
2280
|
-
"_reason": "overlong",
|
2281
|
-
"_replacement": "MS"
|
2282
|
-
},
|
2283
|
-
"504": {
|
2284
|
-
"_reason": "overlong",
|
2285
|
-
"_replacement": "MA"
|
2286
|
-
},
|
2287
|
-
"508": {
|
2288
|
-
"_reason": "overlong",
|
2289
|
-
"_replacement": "MZ"
|
2290
|
-
},
|
2291
|
-
"512": {
|
2292
|
-
"_reason": "overlong",
|
2293
|
-
"_replacement": "OM"
|
2294
|
-
},
|
2295
|
-
"516": {
|
2296
|
-
"_reason": "overlong",
|
2297
|
-
"_replacement": "NA"
|
2298
|
-
},
|
2299
|
-
"520": {
|
2300
|
-
"_reason": "overlong",
|
2301
|
-
"_replacement": "NR"
|
2302
|
-
},
|
2303
|
-
"524": {
|
2304
|
-
"_reason": "overlong",
|
2305
|
-
"_replacement": "NP"
|
2306
|
-
},
|
2307
|
-
"528": {
|
2308
|
-
"_reason": "overlong",
|
2309
|
-
"_replacement": "NL"
|
2310
|
-
},
|
2311
|
-
"530": {
|
2312
|
-
"_reason": "overlong",
|
2313
|
-
"_replacement": "CW SX BQ"
|
2314
|
-
},
|
2315
|
-
"531": {
|
2316
|
-
"_reason": "overlong",
|
2317
|
-
"_replacement": "CW"
|
2318
|
-
},
|
2319
|
-
"532": {
|
2320
|
-
"_reason": "deprecated",
|
2321
|
-
"_replacement": "CW SX BQ"
|
2322
|
-
},
|
2323
|
-
"533": {
|
2324
|
-
"_reason": "overlong",
|
2325
|
-
"_replacement": "AW"
|
2326
|
-
},
|
2327
|
-
"534": {
|
2328
|
-
"_reason": "overlong",
|
2329
|
-
"_replacement": "SX"
|
2330
|
-
},
|
2331
|
-
"535": {
|
2332
|
-
"_reason": "overlong",
|
2333
|
-
"_replacement": "BQ"
|
2334
|
-
},
|
2335
|
-
"536": {
|
2336
|
-
"_reason": "overlong",
|
2337
|
-
"_replacement": "SA IQ"
|
2338
|
-
},
|
2339
|
-
"540": {
|
2340
|
-
"_reason": "overlong",
|
2341
|
-
"_replacement": "NC"
|
2342
|
-
},
|
2343
|
-
"548": {
|
2344
|
-
"_reason": "overlong",
|
2345
|
-
"_replacement": "VU"
|
2346
|
-
},
|
2347
|
-
"554": {
|
2348
|
-
"_reason": "overlong",
|
2349
|
-
"_replacement": "NZ"
|
2350
|
-
},
|
2351
|
-
"558": {
|
2352
|
-
"_reason": "overlong",
|
2353
|
-
"_replacement": "NI"
|
2354
|
-
},
|
2355
|
-
"562": {
|
2356
|
-
"_reason": "overlong",
|
2357
|
-
"_replacement": "NE"
|
2358
|
-
},
|
2359
|
-
"566": {
|
2360
|
-
"_reason": "overlong",
|
2361
|
-
"_replacement": "NG"
|
2362
|
-
},
|
2363
|
-
"570": {
|
2364
|
-
"_reason": "overlong",
|
2365
|
-
"_replacement": "NU"
|
2366
|
-
},
|
2367
|
-
"574": {
|
2368
|
-
"_reason": "overlong",
|
2369
|
-
"_replacement": "NF"
|
2370
|
-
},
|
2371
|
-
"578": {
|
2372
|
-
"_reason": "overlong",
|
2373
|
-
"_replacement": "NO"
|
2374
|
-
},
|
2375
|
-
"580": {
|
2376
|
-
"_reason": "overlong",
|
2377
|
-
"_replacement": "MP"
|
2378
|
-
},
|
2379
|
-
"581": {
|
2380
|
-
"_reason": "overlong",
|
2381
|
-
"_replacement": "UM"
|
2382
|
-
},
|
2383
|
-
"582": {
|
2384
|
-
"_reason": "deprecated",
|
2385
|
-
"_replacement": "FM MH MP PW"
|
2386
|
-
},
|
2387
|
-
"583": {
|
2388
|
-
"_reason": "overlong",
|
2389
|
-
"_replacement": "FM"
|
2390
|
-
},
|
2391
|
-
"584": {
|
2392
|
-
"_reason": "overlong",
|
2393
|
-
"_replacement": "MH"
|
2394
|
-
},
|
2395
|
-
"585": {
|
2396
|
-
"_reason": "overlong",
|
2397
|
-
"_replacement": "PW"
|
2398
|
-
},
|
2399
|
-
"586": {
|
2400
|
-
"_reason": "overlong",
|
2401
|
-
"_replacement": "PK"
|
2402
|
-
},
|
2403
|
-
"591": {
|
2404
|
-
"_reason": "overlong",
|
2405
|
-
"_replacement": "PA"
|
2406
|
-
},
|
2407
|
-
"598": {
|
2408
|
-
"_reason": "overlong",
|
2409
|
-
"_replacement": "PG"
|
2410
|
-
},
|
2411
|
-
"600": {
|
2412
|
-
"_reason": "overlong",
|
2413
|
-
"_replacement": "PY"
|
2414
|
-
},
|
2415
|
-
"604": {
|
2416
|
-
"_reason": "overlong",
|
2417
|
-
"_replacement": "PE"
|
2418
|
-
},
|
2419
|
-
"608": {
|
2420
|
-
"_reason": "overlong",
|
2421
|
-
"_replacement": "PH"
|
2422
|
-
},
|
2423
|
-
"612": {
|
2424
|
-
"_reason": "overlong",
|
2425
|
-
"_replacement": "PN"
|
2426
|
-
},
|
2427
|
-
"616": {
|
2428
|
-
"_reason": "overlong",
|
2429
|
-
"_replacement": "PL"
|
2430
|
-
},
|
2431
|
-
"620": {
|
2432
|
-
"_reason": "overlong",
|
2433
|
-
"_replacement": "PT"
|
2434
|
-
},
|
2435
|
-
"624": {
|
2436
|
-
"_reason": "overlong",
|
2437
|
-
"_replacement": "GW"
|
2438
|
-
},
|
2439
|
-
"626": {
|
2440
|
-
"_reason": "overlong",
|
2441
|
-
"_replacement": "TL"
|
2442
|
-
},
|
2443
|
-
"630": {
|
2444
|
-
"_reason": "overlong",
|
2445
|
-
"_replacement": "PR"
|
2446
|
-
},
|
2447
|
-
"634": {
|
2448
|
-
"_reason": "overlong",
|
2449
|
-
"_replacement": "QA"
|
2450
|
-
},
|
2451
|
-
"638": {
|
2452
|
-
"_reason": "overlong",
|
2453
|
-
"_replacement": "RE"
|
2454
|
-
},
|
2455
|
-
"642": {
|
2456
|
-
"_reason": "overlong",
|
2457
|
-
"_replacement": "RO"
|
2458
|
-
},
|
2459
|
-
"643": {
|
2460
|
-
"_reason": "overlong",
|
2461
|
-
"_replacement": "RU"
|
2462
|
-
},
|
2463
|
-
"646": {
|
2464
|
-
"_reason": "overlong",
|
2465
|
-
"_replacement": "RW"
|
2466
|
-
},
|
2467
|
-
"652": {
|
2468
|
-
"_reason": "overlong",
|
2469
|
-
"_replacement": "BL"
|
2470
|
-
},
|
2471
|
-
"654": {
|
2472
|
-
"_reason": "overlong",
|
2473
|
-
"_replacement": "SH"
|
2474
|
-
},
|
2475
|
-
"659": {
|
2476
|
-
"_reason": "overlong",
|
2477
|
-
"_replacement": "KN"
|
2478
|
-
},
|
2479
|
-
"660": {
|
2480
|
-
"_reason": "overlong",
|
2481
|
-
"_replacement": "AI"
|
2482
|
-
},
|
2483
|
-
"662": {
|
2484
|
-
"_reason": "overlong",
|
2485
|
-
"_replacement": "LC"
|
2486
|
-
},
|
2487
|
-
"663": {
|
2488
|
-
"_reason": "overlong",
|
2489
|
-
"_replacement": "MF"
|
2490
|
-
},
|
2491
|
-
"666": {
|
2492
|
-
"_reason": "overlong",
|
2493
|
-
"_replacement": "PM"
|
2494
|
-
},
|
2495
|
-
"670": {
|
2496
|
-
"_reason": "overlong",
|
2497
|
-
"_replacement": "VC"
|
2498
|
-
},
|
2499
|
-
"674": {
|
2500
|
-
"_reason": "overlong",
|
2501
|
-
"_replacement": "SM"
|
2502
|
-
},
|
2503
|
-
"678": {
|
2504
|
-
"_reason": "overlong",
|
2505
|
-
"_replacement": "ST"
|
2506
|
-
},
|
2507
|
-
"682": {
|
2508
|
-
"_reason": "overlong",
|
2509
|
-
"_replacement": "SA"
|
2510
|
-
},
|
2511
|
-
"686": {
|
2512
|
-
"_reason": "overlong",
|
2513
|
-
"_replacement": "SN"
|
2514
|
-
},
|
2515
|
-
"688": {
|
2516
|
-
"_reason": "overlong",
|
2517
|
-
"_replacement": "RS"
|
2518
|
-
},
|
2519
|
-
"690": {
|
2520
|
-
"_reason": "overlong",
|
2521
|
-
"_replacement": "SC"
|
2522
|
-
},
|
2523
|
-
"694": {
|
2524
|
-
"_reason": "overlong",
|
2525
|
-
"_replacement": "SL"
|
2526
|
-
},
|
2527
|
-
"702": {
|
2528
|
-
"_reason": "overlong",
|
2529
|
-
"_replacement": "SG"
|
2530
|
-
},
|
2531
|
-
"703": {
|
2532
|
-
"_reason": "overlong",
|
2533
|
-
"_replacement": "SK"
|
2534
|
-
},
|
2535
|
-
"704": {
|
2536
|
-
"_reason": "overlong",
|
2537
|
-
"_replacement": "VN"
|
2538
|
-
},
|
2539
|
-
"705": {
|
2540
|
-
"_reason": "overlong",
|
2541
|
-
"_replacement": "SI"
|
2542
|
-
},
|
2543
|
-
"706": {
|
2544
|
-
"_reason": "overlong",
|
2545
|
-
"_replacement": "SO"
|
2546
|
-
},
|
2547
|
-
"710": {
|
2548
|
-
"_reason": "overlong",
|
2549
|
-
"_replacement": "ZA"
|
2550
|
-
},
|
2551
|
-
"716": {
|
2552
|
-
"_reason": "overlong",
|
2553
|
-
"_replacement": "ZW"
|
2554
|
-
},
|
2555
|
-
"720": {
|
2556
|
-
"_reason": "overlong",
|
2557
|
-
"_replacement": "YE"
|
2558
|
-
},
|
2559
|
-
"724": {
|
2560
|
-
"_reason": "overlong",
|
2561
|
-
"_replacement": "ES"
|
2562
|
-
},
|
2563
|
-
"728": {
|
2564
|
-
"_reason": "overlong",
|
2565
|
-
"_replacement": "SS"
|
2566
|
-
},
|
2567
|
-
"729": {
|
2568
|
-
"_reason": "overlong",
|
2569
|
-
"_replacement": "SD"
|
2570
|
-
},
|
2571
|
-
"732": {
|
2572
|
-
"_reason": "overlong",
|
2573
|
-
"_replacement": "EH"
|
2574
|
-
},
|
2575
|
-
"736": {
|
2576
|
-
"_reason": "deprecated",
|
2577
|
-
"_replacement": "SD"
|
2578
|
-
},
|
2579
|
-
"740": {
|
2580
|
-
"_reason": "overlong",
|
2581
|
-
"_replacement": "SR"
|
2582
|
-
},
|
2583
|
-
"744": {
|
2584
|
-
"_reason": "overlong",
|
2585
|
-
"_replacement": "SJ"
|
2586
|
-
},
|
2587
|
-
"748": {
|
2588
|
-
"_reason": "overlong",
|
2589
|
-
"_replacement": "SZ"
|
2590
|
-
},
|
2591
|
-
"752": {
|
2592
|
-
"_reason": "overlong",
|
2593
|
-
"_replacement": "SE"
|
2594
|
-
},
|
2595
|
-
"756": {
|
2596
|
-
"_reason": "overlong",
|
2597
|
-
"_replacement": "CH"
|
2598
|
-
},
|
2599
|
-
"760": {
|
2600
|
-
"_reason": "overlong",
|
2601
|
-
"_replacement": "SY"
|
2602
|
-
},
|
2603
|
-
"762": {
|
2604
|
-
"_reason": "overlong",
|
2605
|
-
"_replacement": "TJ"
|
2606
|
-
},
|
2607
|
-
"764": {
|
2608
|
-
"_reason": "overlong",
|
2609
|
-
"_replacement": "TH"
|
2610
|
-
},
|
2611
|
-
"768": {
|
2612
|
-
"_reason": "overlong",
|
2613
|
-
"_replacement": "TG"
|
2614
|
-
},
|
2615
|
-
"772": {
|
2616
|
-
"_reason": "overlong",
|
2617
|
-
"_replacement": "TK"
|
2618
|
-
},
|
2619
|
-
"776": {
|
2620
|
-
"_reason": "overlong",
|
2621
|
-
"_replacement": "TO"
|
2622
|
-
},
|
2623
|
-
"780": {
|
2624
|
-
"_reason": "overlong",
|
2625
|
-
"_replacement": "TT"
|
2626
|
-
},
|
2627
|
-
"784": {
|
2628
|
-
"_reason": "overlong",
|
2629
|
-
"_replacement": "AE"
|
2630
|
-
},
|
2631
|
-
"788": {
|
2632
|
-
"_reason": "overlong",
|
2633
|
-
"_replacement": "TN"
|
2634
|
-
},
|
2635
|
-
"792": {
|
2636
|
-
"_reason": "overlong",
|
2637
|
-
"_replacement": "TR"
|
2638
|
-
},
|
2639
|
-
"795": {
|
2640
|
-
"_reason": "overlong",
|
2641
|
-
"_replacement": "TM"
|
2642
|
-
},
|
2643
|
-
"796": {
|
2644
|
-
"_reason": "overlong",
|
2645
|
-
"_replacement": "TC"
|
2646
|
-
},
|
2647
|
-
"798": {
|
2648
|
-
"_reason": "overlong",
|
2649
|
-
"_replacement": "TV"
|
2650
|
-
},
|
2651
|
-
"800": {
|
2652
|
-
"_reason": "overlong",
|
2653
|
-
"_replacement": "UG"
|
2654
|
-
},
|
2655
|
-
"804": {
|
2656
|
-
"_reason": "overlong",
|
2657
|
-
"_replacement": "UA"
|
2658
|
-
},
|
2659
|
-
"807": {
|
2660
|
-
"_reason": "overlong",
|
2661
|
-
"_replacement": "MK"
|
2662
|
-
},
|
2663
|
-
"810": {
|
2664
|
-
"_reason": "overlong",
|
2665
|
-
"_replacement": "RU AM AZ BY EE GE KZ KG LV LT MD TJ TM UA UZ"
|
2666
|
-
},
|
2667
|
-
"818": {
|
2668
|
-
"_reason": "overlong",
|
2669
|
-
"_replacement": "EG"
|
2670
|
-
},
|
2671
|
-
"826": {
|
2672
|
-
"_reason": "overlong",
|
2673
|
-
"_replacement": "GB"
|
2674
|
-
},
|
2675
|
-
"830": {
|
2676
|
-
"_reason": "deprecated",
|
2677
|
-
"_replacement": "JE GG"
|
2678
|
-
},
|
2679
|
-
"831": {
|
2680
|
-
"_reason": "overlong",
|
2681
|
-
"_replacement": "GG"
|
2682
|
-
},
|
2683
|
-
"832": {
|
2684
|
-
"_reason": "overlong",
|
2685
|
-
"_replacement": "JE"
|
2686
|
-
},
|
2687
|
-
"833": {
|
2688
|
-
"_reason": "overlong",
|
2689
|
-
"_replacement": "IM"
|
2690
|
-
},
|
2691
|
-
"834": {
|
2692
|
-
"_reason": "overlong",
|
2693
|
-
"_replacement": "TZ"
|
2694
|
-
},
|
2695
|
-
"840": {
|
2696
|
-
"_reason": "overlong",
|
2697
|
-
"_replacement": "US"
|
2698
|
-
},
|
2699
|
-
"850": {
|
2700
|
-
"_reason": "overlong",
|
2701
|
-
"_replacement": "VI"
|
2702
|
-
},
|
2703
|
-
"854": {
|
2704
|
-
"_reason": "overlong",
|
2705
|
-
"_replacement": "BF"
|
2706
|
-
},
|
2707
|
-
"858": {
|
2708
|
-
"_reason": "overlong",
|
2709
|
-
"_replacement": "UY"
|
2710
|
-
},
|
2711
|
-
"860": {
|
2712
|
-
"_reason": "overlong",
|
2713
|
-
"_replacement": "UZ"
|
2714
|
-
},
|
2715
|
-
"862": {
|
2716
|
-
"_reason": "overlong",
|
2717
|
-
"_replacement": "VE"
|
2718
|
-
},
|
2719
|
-
"876": {
|
2720
|
-
"_reason": "overlong",
|
2721
|
-
"_replacement": "WF"
|
2722
|
-
},
|
2723
|
-
"882": {
|
2724
|
-
"_reason": "overlong",
|
2725
|
-
"_replacement": "WS"
|
2726
|
-
},
|
2727
|
-
"886": {
|
2728
|
-
"_reason": "deprecated",
|
2729
|
-
"_replacement": "YE"
|
2730
|
-
},
|
2731
|
-
"887": {
|
2732
|
-
"_reason": "overlong",
|
2733
|
-
"_replacement": "YE"
|
2734
|
-
},
|
2735
|
-
"890": {
|
2736
|
-
"_reason": "deprecated",
|
2737
|
-
"_replacement": "RS ME SI HR MK BA"
|
2738
|
-
},
|
2739
|
-
"891": {
|
2740
|
-
"_reason": "overlong",
|
2741
|
-
"_replacement": "RS ME"
|
2742
|
-
},
|
2743
|
-
"894": {
|
2744
|
-
"_reason": "overlong",
|
2745
|
-
"_replacement": "ZM"
|
2746
|
-
},
|
2747
|
-
"958": {
|
2748
|
-
"_reason": "overlong",
|
2749
|
-
"_replacement": "AA"
|
2750
|
-
},
|
2751
|
-
"959": {
|
2752
|
-
"_reason": "overlong",
|
2753
|
-
"_replacement": "QM"
|
2754
|
-
},
|
2755
|
-
"960": {
|
2756
|
-
"_reason": "overlong",
|
2757
|
-
"_replacement": "QN"
|
2758
|
-
},
|
2759
|
-
"962": {
|
2760
|
-
"_reason": "overlong",
|
2761
|
-
"_replacement": "QP"
|
2762
|
-
},
|
2763
|
-
"963": {
|
2764
|
-
"_reason": "overlong",
|
2765
|
-
"_replacement": "QQ"
|
2766
|
-
},
|
2767
|
-
"964": {
|
2768
|
-
"_reason": "overlong",
|
2769
|
-
"_replacement": "QR"
|
2770
|
-
},
|
2771
|
-
"965": {
|
2772
|
-
"_reason": "overlong",
|
2773
|
-
"_replacement": "QS"
|
2774
|
-
},
|
2775
|
-
"966": {
|
2776
|
-
"_reason": "overlong",
|
2777
|
-
"_replacement": "QT"
|
2778
|
-
},
|
2779
|
-
"967": {
|
2780
|
-
"_reason": "overlong",
|
2781
|
-
"_replacement": "EU"
|
2782
|
-
},
|
2783
|
-
"968": {
|
2784
|
-
"_reason": "overlong",
|
2785
|
-
"_replacement": "QV"
|
2786
|
-
},
|
2787
|
-
"969": {
|
2788
|
-
"_reason": "overlong",
|
2789
|
-
"_replacement": "QW"
|
2790
|
-
},
|
2791
|
-
"970": {
|
2792
|
-
"_reason": "overlong",
|
2793
|
-
"_replacement": "QX"
|
2794
|
-
},
|
2795
|
-
"971": {
|
2796
|
-
"_reason": "overlong",
|
2797
|
-
"_replacement": "QY"
|
2798
|
-
},
|
2799
|
-
"972": {
|
2800
|
-
"_reason": "overlong",
|
2801
|
-
"_replacement": "QZ"
|
2802
|
-
},
|
2803
|
-
"973": {
|
2804
|
-
"_reason": "overlong",
|
2805
|
-
"_replacement": "XA"
|
2806
|
-
},
|
2807
|
-
"974": {
|
2808
|
-
"_reason": "overlong",
|
2809
|
-
"_replacement": "XB"
|
2810
|
-
},
|
2811
|
-
"975": {
|
2812
|
-
"_reason": "overlong",
|
2813
|
-
"_replacement": "XC"
|
2814
|
-
},
|
2815
|
-
"976": {
|
2816
|
-
"_reason": "overlong",
|
2817
|
-
"_replacement": "XD"
|
2818
|
-
},
|
2819
|
-
"977": {
|
2820
|
-
"_reason": "overlong",
|
2821
|
-
"_replacement": "XE"
|
2822
|
-
},
|
2823
|
-
"978": {
|
2824
|
-
"_reason": "overlong",
|
2825
|
-
"_replacement": "XF"
|
2826
|
-
},
|
2827
|
-
"979": {
|
2828
|
-
"_reason": "overlong",
|
2829
|
-
"_replacement": "XG"
|
2830
|
-
},
|
2831
|
-
"980": {
|
2832
|
-
"_reason": "overlong",
|
2833
|
-
"_replacement": "XH"
|
2834
|
-
},
|
2835
|
-
"981": {
|
2836
|
-
"_reason": "overlong",
|
2837
|
-
"_replacement": "XI"
|
2838
|
-
},
|
2839
|
-
"982": {
|
2840
|
-
"_reason": "overlong",
|
2841
|
-
"_replacement": "XJ"
|
2842
|
-
},
|
2843
|
-
"983": {
|
2844
|
-
"_reason": "overlong",
|
2845
|
-
"_replacement": "XK"
|
2846
|
-
},
|
2847
|
-
"984": {
|
2848
|
-
"_reason": "overlong",
|
2849
|
-
"_replacement": "XL"
|
2850
|
-
},
|
2851
|
-
"985": {
|
2852
|
-
"_reason": "overlong",
|
2853
|
-
"_replacement": "XM"
|
2854
|
-
},
|
2855
|
-
"986": {
|
2856
|
-
"_reason": "overlong",
|
2857
|
-
"_replacement": "XN"
|
2858
|
-
},
|
2859
|
-
"987": {
|
2860
|
-
"_reason": "overlong",
|
2861
|
-
"_replacement": "XO"
|
2862
|
-
},
|
2863
|
-
"988": {
|
2864
|
-
"_reason": "overlong",
|
2865
|
-
"_replacement": "XP"
|
2866
|
-
},
|
2867
|
-
"989": {
|
2868
|
-
"_reason": "overlong",
|
2869
|
-
"_replacement": "XQ"
|
2870
|
-
},
|
2871
|
-
"990": {
|
2872
|
-
"_reason": "overlong",
|
2873
|
-
"_replacement": "XR"
|
2874
|
-
},
|
2875
|
-
"991": {
|
2876
|
-
"_reason": "overlong",
|
2877
|
-
"_replacement": "XS"
|
2878
|
-
},
|
2879
|
-
"992": {
|
2880
|
-
"_reason": "overlong",
|
2881
|
-
"_replacement": "XT"
|
2882
|
-
},
|
2883
|
-
"993": {
|
2884
|
-
"_reason": "overlong",
|
2885
|
-
"_replacement": "XU"
|
2886
|
-
},
|
2887
|
-
"994": {
|
2888
|
-
"_reason": "overlong",
|
2889
|
-
"_replacement": "XV"
|
2890
|
-
},
|
2891
|
-
"995": {
|
2892
|
-
"_reason": "overlong",
|
2893
|
-
"_replacement": "XW"
|
2894
|
-
},
|
2895
|
-
"996": {
|
2896
|
-
"_reason": "overlong",
|
2897
|
-
"_replacement": "XX"
|
2898
|
-
},
|
2899
|
-
"997": {
|
2900
|
-
"_reason": "overlong",
|
2901
|
-
"_replacement": "XY"
|
2902
|
-
},
|
2903
|
-
"998": {
|
2904
|
-
"_reason": "overlong",
|
2905
|
-
"_replacement": "XZ"
|
2906
|
-
},
|
2907
|
-
"999": {
|
2908
|
-
"_reason": "overlong",
|
2909
|
-
"_replacement": "ZZ"
|
2910
|
-
},
|
2911
|
-
"AAA": {
|
2912
|
-
"_reason": "overlong",
|
2913
|
-
"_replacement": "AA"
|
2914
|
-
},
|
2915
|
-
"ABW": {
|
2916
|
-
"_reason": "overlong",
|
2917
|
-
"_replacement": "AW"
|
2918
|
-
},
|
2919
|
-
"AFG": {
|
2920
|
-
"_reason": "overlong",
|
2921
|
-
"_replacement": "AF"
|
2922
|
-
},
|
2923
|
-
"AGO": {
|
2924
|
-
"_reason": "overlong",
|
2925
|
-
"_replacement": "AO"
|
2926
|
-
},
|
2927
|
-
"AIA": {
|
2928
|
-
"_reason": "overlong",
|
2929
|
-
"_replacement": "AI"
|
2930
|
-
},
|
2931
|
-
"ALA": {
|
2932
|
-
"_reason": "overlong",
|
2933
|
-
"_replacement": "AX"
|
2934
|
-
},
|
2935
|
-
"ALB": {
|
2936
|
-
"_reason": "overlong",
|
2937
|
-
"_replacement": "AL"
|
2938
|
-
},
|
2939
|
-
"AN": {
|
2940
|
-
"_reason": "deprecated",
|
2941
|
-
"_replacement": "CW SX BQ"
|
2942
|
-
},
|
2943
|
-
"AND": {
|
2944
|
-
"_reason": "overlong",
|
2945
|
-
"_replacement": "AD"
|
2946
|
-
},
|
2947
|
-
"ANT": {
|
2948
|
-
"_reason": "overlong",
|
2949
|
-
"_replacement": "CW SX BQ"
|
2950
|
-
},
|
2951
|
-
"ARE": {
|
2952
|
-
"_reason": "overlong",
|
2953
|
-
"_replacement": "AE"
|
2954
|
-
},
|
2955
|
-
"ARG": {
|
2956
|
-
"_reason": "overlong",
|
2957
|
-
"_replacement": "AR"
|
2958
|
-
},
|
2959
|
-
"ARM": {
|
2960
|
-
"_reason": "overlong",
|
2961
|
-
"_replacement": "AM"
|
2962
|
-
},
|
2963
|
-
"ASC": {
|
2964
|
-
"_reason": "overlong",
|
2965
|
-
"_replacement": "AC"
|
2966
|
-
},
|
2967
|
-
"ASM": {
|
2968
|
-
"_reason": "overlong",
|
2969
|
-
"_replacement": "AS"
|
2970
|
-
},
|
2971
|
-
"ATA": {
|
2972
|
-
"_reason": "overlong",
|
2973
|
-
"_replacement": "AQ"
|
2974
|
-
},
|
2975
|
-
"ATF": {
|
2976
|
-
"_reason": "overlong",
|
2977
|
-
"_replacement": "TF"
|
2978
|
-
},
|
2979
|
-
"ATG": {
|
2980
|
-
"_reason": "overlong",
|
2981
|
-
"_replacement": "AG"
|
2982
|
-
},
|
2983
|
-
"AUS": {
|
2984
|
-
"_reason": "overlong",
|
2985
|
-
"_replacement": "AU"
|
2986
|
-
},
|
2987
|
-
"AUT": {
|
2988
|
-
"_reason": "overlong",
|
2989
|
-
"_replacement": "AT"
|
2990
|
-
},
|
2991
|
-
"AZE": {
|
2992
|
-
"_reason": "overlong",
|
2993
|
-
"_replacement": "AZ"
|
2994
|
-
},
|
2995
|
-
"BDI": {
|
2996
|
-
"_reason": "overlong",
|
2997
|
-
"_replacement": "BI"
|
2998
|
-
},
|
2999
|
-
"BEL": {
|
3000
|
-
"_reason": "overlong",
|
3001
|
-
"_replacement": "BE"
|
3002
|
-
},
|
3003
|
-
"BEN": {
|
3004
|
-
"_reason": "overlong",
|
3005
|
-
"_replacement": "BJ"
|
3006
|
-
},
|
3007
|
-
"BES": {
|
3008
|
-
"_reason": "overlong",
|
3009
|
-
"_replacement": "BQ"
|
3010
|
-
},
|
3011
|
-
"BFA": {
|
3012
|
-
"_reason": "overlong",
|
3013
|
-
"_replacement": "BF"
|
3014
|
-
},
|
3015
|
-
"BGD": {
|
3016
|
-
"_reason": "overlong",
|
3017
|
-
"_replacement": "BD"
|
3018
|
-
},
|
3019
|
-
"BGR": {
|
3020
|
-
"_reason": "overlong",
|
3021
|
-
"_replacement": "BG"
|
3022
|
-
},
|
3023
|
-
"BHR": {
|
3024
|
-
"_reason": "overlong",
|
3025
|
-
"_replacement": "BH"
|
3026
|
-
},
|
3027
|
-
"BHS": {
|
3028
|
-
"_reason": "overlong",
|
3029
|
-
"_replacement": "BS"
|
3030
|
-
},
|
3031
|
-
"BIH": {
|
3032
|
-
"_reason": "overlong",
|
3033
|
-
"_replacement": "BA"
|
3034
|
-
},
|
3035
|
-
"BLM": {
|
3036
|
-
"_reason": "overlong",
|
3037
|
-
"_replacement": "BL"
|
3038
|
-
},
|
3039
|
-
"BLR": {
|
3040
|
-
"_reason": "overlong",
|
3041
|
-
"_replacement": "BY"
|
3042
|
-
},
|
3043
|
-
"BLZ": {
|
3044
|
-
"_reason": "overlong",
|
3045
|
-
"_replacement": "BZ"
|
3046
|
-
},
|
3047
|
-
"BMU": {
|
3048
|
-
"_reason": "overlong",
|
3049
|
-
"_replacement": "BM"
|
3050
|
-
},
|
3051
|
-
"BOL": {
|
3052
|
-
"_reason": "overlong",
|
3053
|
-
"_replacement": "BO"
|
3054
|
-
},
|
3055
|
-
"BRA": {
|
3056
|
-
"_reason": "overlong",
|
3057
|
-
"_replacement": "BR"
|
3058
|
-
},
|
3059
|
-
"BRB": {
|
3060
|
-
"_reason": "overlong",
|
3061
|
-
"_replacement": "BB"
|
3062
|
-
},
|
3063
|
-
"BRN": {
|
3064
|
-
"_reason": "overlong",
|
3065
|
-
"_replacement": "BN"
|
3066
|
-
},
|
3067
|
-
"BTN": {
|
3068
|
-
"_reason": "overlong",
|
3069
|
-
"_replacement": "BT"
|
3070
|
-
},
|
3071
|
-
"BU": {
|
3072
|
-
"_reason": "deprecated",
|
3073
|
-
"_replacement": "MM"
|
3074
|
-
},
|
3075
|
-
"BUR": {
|
3076
|
-
"_reason": "overlong",
|
3077
|
-
"_replacement": "MM"
|
3078
|
-
},
|
3079
|
-
"BVT": {
|
3080
|
-
"_reason": "overlong",
|
3081
|
-
"_replacement": "BV"
|
3082
|
-
},
|
3083
|
-
"BWA": {
|
3084
|
-
"_reason": "overlong",
|
3085
|
-
"_replacement": "BW"
|
3086
|
-
},
|
3087
|
-
"CAF": {
|
3088
|
-
"_reason": "overlong",
|
3089
|
-
"_replacement": "CF"
|
3090
|
-
},
|
3091
|
-
"CAN": {
|
3092
|
-
"_reason": "overlong",
|
3093
|
-
"_replacement": "CA"
|
3094
|
-
},
|
3095
|
-
"CCK": {
|
3096
|
-
"_reason": "overlong",
|
3097
|
-
"_replacement": "CC"
|
3098
|
-
},
|
3099
|
-
"CHE": {
|
3100
|
-
"_reason": "overlong",
|
3101
|
-
"_replacement": "CH"
|
3102
|
-
},
|
3103
|
-
"CHL": {
|
3104
|
-
"_reason": "overlong",
|
3105
|
-
"_replacement": "CL"
|
3106
|
-
},
|
3107
|
-
"CHN": {
|
3108
|
-
"_reason": "overlong",
|
3109
|
-
"_replacement": "CN"
|
3110
|
-
},
|
3111
|
-
"CIV": {
|
3112
|
-
"_reason": "overlong",
|
3113
|
-
"_replacement": "CI"
|
3114
|
-
},
|
3115
|
-
"CMR": {
|
3116
|
-
"_reason": "overlong",
|
3117
|
-
"_replacement": "CM"
|
3118
|
-
},
|
3119
|
-
"COD": {
|
3120
|
-
"_reason": "overlong",
|
3121
|
-
"_replacement": "CD"
|
3122
|
-
},
|
3123
|
-
"COG": {
|
3124
|
-
"_reason": "overlong",
|
3125
|
-
"_replacement": "CG"
|
3126
|
-
},
|
3127
|
-
"COK": {
|
3128
|
-
"_reason": "overlong",
|
3129
|
-
"_replacement": "CK"
|
3130
|
-
},
|
3131
|
-
"COL": {
|
3132
|
-
"_reason": "overlong",
|
3133
|
-
"_replacement": "CO"
|
3134
|
-
},
|
3135
|
-
"COM": {
|
3136
|
-
"_reason": "overlong",
|
3137
|
-
"_replacement": "KM"
|
3138
|
-
},
|
3139
|
-
"CPT": {
|
3140
|
-
"_reason": "overlong",
|
3141
|
-
"_replacement": "CP"
|
3142
|
-
},
|
3143
|
-
"CPV": {
|
3144
|
-
"_reason": "overlong",
|
3145
|
-
"_replacement": "CV"
|
3146
|
-
},
|
3147
|
-
"CRI": {
|
3148
|
-
"_reason": "overlong",
|
3149
|
-
"_replacement": "CR"
|
3150
|
-
},
|
3151
|
-
"CS": {
|
3152
|
-
"_reason": "deprecated",
|
3153
|
-
"_replacement": "RS ME"
|
3154
|
-
},
|
3155
|
-
"CT": {
|
3156
|
-
"_reason": "deprecated",
|
3157
|
-
"_replacement": "KI"
|
3158
|
-
},
|
3159
|
-
"CUB": {
|
3160
|
-
"_reason": "overlong",
|
3161
|
-
"_replacement": "CU"
|
3162
|
-
},
|
3163
|
-
"CUW": {
|
3164
|
-
"_reason": "overlong",
|
3165
|
-
"_replacement": "CW"
|
3166
|
-
},
|
3167
|
-
"CXR": {
|
3168
|
-
"_reason": "overlong",
|
3169
|
-
"_replacement": "CX"
|
3170
|
-
},
|
3171
|
-
"CYM": {
|
3172
|
-
"_reason": "overlong",
|
3173
|
-
"_replacement": "KY"
|
3174
|
-
},
|
3175
|
-
"CYP": {
|
3176
|
-
"_reason": "overlong",
|
3177
|
-
"_replacement": "CY"
|
3178
|
-
},
|
3179
|
-
"CZE": {
|
3180
|
-
"_reason": "overlong",
|
3181
|
-
"_replacement": "CZ"
|
3182
|
-
},
|
3183
|
-
"DD": {
|
3184
|
-
"_reason": "deprecated",
|
3185
|
-
"_replacement": "DE"
|
3186
|
-
},
|
3187
|
-
"DDR": {
|
3188
|
-
"_reason": "overlong",
|
3189
|
-
"_replacement": "DE"
|
3190
|
-
},
|
3191
|
-
"DEU": {
|
3192
|
-
"_reason": "overlong",
|
3193
|
-
"_replacement": "DE"
|
3194
|
-
},
|
3195
|
-
"DGA": {
|
3196
|
-
"_reason": "overlong",
|
3197
|
-
"_replacement": "DG"
|
3198
|
-
},
|
3199
|
-
"DJI": {
|
3200
|
-
"_reason": "overlong",
|
3201
|
-
"_replacement": "DJ"
|
3202
|
-
},
|
3203
|
-
"DMA": {
|
3204
|
-
"_reason": "overlong",
|
3205
|
-
"_replacement": "DM"
|
3206
|
-
},
|
3207
|
-
"DNK": {
|
3208
|
-
"_reason": "overlong",
|
3209
|
-
"_replacement": "DK"
|
3210
|
-
},
|
3211
|
-
"DOM": {
|
3212
|
-
"_reason": "overlong",
|
3213
|
-
"_replacement": "DO"
|
3214
|
-
},
|
3215
|
-
"DY": {
|
3216
|
-
"_reason": "deprecated",
|
3217
|
-
"_replacement": "BJ"
|
3218
|
-
},
|
3219
|
-
"DZA": {
|
3220
|
-
"_reason": "overlong",
|
3221
|
-
"_replacement": "DZ"
|
3222
|
-
},
|
3223
|
-
"ECU": {
|
3224
|
-
"_reason": "overlong",
|
3225
|
-
"_replacement": "EC"
|
3226
|
-
},
|
3227
|
-
"EGY": {
|
3228
|
-
"_reason": "overlong",
|
3229
|
-
"_replacement": "EG"
|
3230
|
-
},
|
3231
|
-
"ERI": {
|
3232
|
-
"_reason": "overlong",
|
3233
|
-
"_replacement": "ER"
|
3234
|
-
},
|
3235
|
-
"ESH": {
|
3236
|
-
"_reason": "overlong",
|
3237
|
-
"_replacement": "EH"
|
3238
|
-
},
|
3239
|
-
"ESP": {
|
3240
|
-
"_reason": "overlong",
|
3241
|
-
"_replacement": "ES"
|
3242
|
-
},
|
3243
|
-
"EST": {
|
3244
|
-
"_reason": "overlong",
|
3245
|
-
"_replacement": "EE"
|
3246
|
-
},
|
3247
|
-
"ETH": {
|
3248
|
-
"_reason": "overlong",
|
3249
|
-
"_replacement": "ET"
|
3250
|
-
},
|
3251
|
-
"FIN": {
|
3252
|
-
"_reason": "overlong",
|
3253
|
-
"_replacement": "FI"
|
3254
|
-
},
|
3255
|
-
"FJI": {
|
3256
|
-
"_reason": "overlong",
|
3257
|
-
"_replacement": "FJ"
|
3258
|
-
},
|
3259
|
-
"FLK": {
|
3260
|
-
"_reason": "overlong",
|
3261
|
-
"_replacement": "FK"
|
3262
|
-
},
|
3263
|
-
"FQ": {
|
3264
|
-
"_reason": "deprecated",
|
3265
|
-
"_replacement": "AQ TF"
|
3266
|
-
},
|
3267
|
-
"FRA": {
|
3268
|
-
"_reason": "overlong",
|
3269
|
-
"_replacement": "FR"
|
3270
|
-
},
|
3271
|
-
"FRO": {
|
3272
|
-
"_reason": "overlong",
|
3273
|
-
"_replacement": "FO"
|
3274
|
-
},
|
3275
|
-
"FSM": {
|
3276
|
-
"_reason": "overlong",
|
3277
|
-
"_replacement": "FM"
|
3278
|
-
},
|
3279
|
-
"FX": {
|
3280
|
-
"_reason": "deprecated",
|
3281
|
-
"_replacement": "FR"
|
3282
|
-
},
|
3283
|
-
"FXX": {
|
3284
|
-
"_reason": "overlong",
|
3285
|
-
"_replacement": "FR"
|
3286
|
-
},
|
3287
|
-
"GAB": {
|
3288
|
-
"_reason": "overlong",
|
3289
|
-
"_replacement": "GA"
|
3290
|
-
},
|
3291
|
-
"GBR": {
|
3292
|
-
"_reason": "overlong",
|
3293
|
-
"_replacement": "GB"
|
3294
|
-
},
|
3295
|
-
"GEO": {
|
3296
|
-
"_reason": "overlong",
|
3297
|
-
"_replacement": "GE"
|
3298
|
-
},
|
3299
|
-
"GGY": {
|
3300
|
-
"_reason": "overlong",
|
3301
|
-
"_replacement": "GG"
|
3302
|
-
},
|
3303
|
-
"GHA": {
|
3304
|
-
"_reason": "overlong",
|
3305
|
-
"_replacement": "GH"
|
3306
|
-
},
|
3307
|
-
"GIB": {
|
3308
|
-
"_reason": "overlong",
|
3309
|
-
"_replacement": "GI"
|
3310
|
-
},
|
3311
|
-
"GIN": {
|
3312
|
-
"_reason": "overlong",
|
3313
|
-
"_replacement": "GN"
|
3314
|
-
},
|
3315
|
-
"GLP": {
|
3316
|
-
"_reason": "overlong",
|
3317
|
-
"_replacement": "GP"
|
3318
|
-
},
|
3319
|
-
"GMB": {
|
3320
|
-
"_reason": "overlong",
|
3321
|
-
"_replacement": "GM"
|
3322
|
-
},
|
3323
|
-
"GNB": {
|
3324
|
-
"_reason": "overlong",
|
3325
|
-
"_replacement": "GW"
|
3326
|
-
},
|
3327
|
-
"GNQ": {
|
3328
|
-
"_reason": "overlong",
|
3329
|
-
"_replacement": "GQ"
|
3330
|
-
},
|
3331
|
-
"GRC": {
|
3332
|
-
"_reason": "overlong",
|
3333
|
-
"_replacement": "GR"
|
3334
|
-
},
|
3335
|
-
"GRD": {
|
3336
|
-
"_reason": "overlong",
|
3337
|
-
"_replacement": "GD"
|
3338
|
-
},
|
3339
|
-
"GRL": {
|
3340
|
-
"_reason": "overlong",
|
3341
|
-
"_replacement": "GL"
|
3342
|
-
},
|
3343
|
-
"GTM": {
|
3344
|
-
"_reason": "overlong",
|
3345
|
-
"_replacement": "GT"
|
3346
|
-
},
|
3347
|
-
"GUF": {
|
3348
|
-
"_reason": "overlong",
|
3349
|
-
"_replacement": "GF"
|
3350
|
-
},
|
3351
|
-
"GUM": {
|
3352
|
-
"_reason": "overlong",
|
3353
|
-
"_replacement": "GU"
|
3354
|
-
},
|
3355
|
-
"GUY": {
|
3356
|
-
"_reason": "overlong",
|
3357
|
-
"_replacement": "GY"
|
3358
|
-
},
|
3359
|
-
"HKG": {
|
3360
|
-
"_reason": "overlong",
|
3361
|
-
"_replacement": "HK"
|
3362
|
-
},
|
3363
|
-
"HMD": {
|
3364
|
-
"_reason": "overlong",
|
3365
|
-
"_replacement": "HM"
|
3366
|
-
},
|
3367
|
-
"HND": {
|
3368
|
-
"_reason": "overlong",
|
3369
|
-
"_replacement": "HN"
|
3370
|
-
},
|
3371
|
-
"HRV": {
|
3372
|
-
"_reason": "overlong",
|
3373
|
-
"_replacement": "HR"
|
3374
|
-
},
|
3375
|
-
"HTI": {
|
3376
|
-
"_reason": "overlong",
|
3377
|
-
"_replacement": "HT"
|
3378
|
-
},
|
3379
|
-
"HUN": {
|
3380
|
-
"_reason": "overlong",
|
3381
|
-
"_replacement": "HU"
|
3382
|
-
},
|
3383
|
-
"HV": {
|
3384
|
-
"_reason": "deprecated",
|
3385
|
-
"_replacement": "BF"
|
3386
|
-
},
|
3387
|
-
"IDN": {
|
3388
|
-
"_reason": "overlong",
|
3389
|
-
"_replacement": "ID"
|
3390
|
-
},
|
3391
|
-
"IMN": {
|
3392
|
-
"_reason": "overlong",
|
3393
|
-
"_replacement": "IM"
|
3394
|
-
},
|
3395
|
-
"IND": {
|
3396
|
-
"_reason": "overlong",
|
3397
|
-
"_replacement": "IN"
|
3398
|
-
},
|
3399
|
-
"IOT": {
|
3400
|
-
"_reason": "overlong",
|
3401
|
-
"_replacement": "IO"
|
3402
|
-
},
|
3403
|
-
"IRL": {
|
3404
|
-
"_reason": "overlong",
|
3405
|
-
"_replacement": "IE"
|
3406
|
-
},
|
3407
|
-
"IRN": {
|
3408
|
-
"_reason": "overlong",
|
3409
|
-
"_replacement": "IR"
|
3410
|
-
},
|
3411
|
-
"IRQ": {
|
3412
|
-
"_reason": "overlong",
|
3413
|
-
"_replacement": "IQ"
|
3414
|
-
},
|
3415
|
-
"ISL": {
|
3416
|
-
"_reason": "overlong",
|
3417
|
-
"_replacement": "IS"
|
3418
|
-
},
|
3419
|
-
"ISR": {
|
3420
|
-
"_reason": "overlong",
|
3421
|
-
"_replacement": "IL"
|
3422
|
-
},
|
3423
|
-
"ITA": {
|
3424
|
-
"_reason": "overlong",
|
3425
|
-
"_replacement": "IT"
|
3426
|
-
},
|
3427
|
-
"JAM": {
|
3428
|
-
"_reason": "overlong",
|
3429
|
-
"_replacement": "JM"
|
3430
|
-
},
|
3431
|
-
"JEY": {
|
3432
|
-
"_reason": "overlong",
|
3433
|
-
"_replacement": "JE"
|
3434
|
-
},
|
3435
|
-
"JOR": {
|
3436
|
-
"_reason": "overlong",
|
3437
|
-
"_replacement": "JO"
|
3438
|
-
},
|
3439
|
-
"JPN": {
|
3440
|
-
"_reason": "overlong",
|
3441
|
-
"_replacement": "JP"
|
3442
|
-
},
|
3443
|
-
"JT": {
|
3444
|
-
"_reason": "deprecated",
|
3445
|
-
"_replacement": "UM"
|
3446
|
-
},
|
3447
|
-
"KAZ": {
|
3448
|
-
"_reason": "overlong",
|
3449
|
-
"_replacement": "KZ"
|
3450
|
-
},
|
3451
|
-
"KEN": {
|
3452
|
-
"_reason": "overlong",
|
3453
|
-
"_replacement": "KE"
|
3454
|
-
},
|
3455
|
-
"KGZ": {
|
3456
|
-
"_reason": "overlong",
|
3457
|
-
"_replacement": "KG"
|
3458
|
-
},
|
3459
|
-
"KHM": {
|
3460
|
-
"_reason": "overlong",
|
3461
|
-
"_replacement": "KH"
|
3462
|
-
},
|
3463
|
-
"KIR": {
|
3464
|
-
"_reason": "overlong",
|
3465
|
-
"_replacement": "KI"
|
3466
|
-
},
|
3467
|
-
"KNA": {
|
3468
|
-
"_reason": "overlong",
|
3469
|
-
"_replacement": "KN"
|
3470
|
-
},
|
3471
|
-
"KOR": {
|
3472
|
-
"_reason": "overlong",
|
3473
|
-
"_replacement": "KR"
|
3474
|
-
},
|
3475
|
-
"KWT": {
|
3476
|
-
"_reason": "overlong",
|
3477
|
-
"_replacement": "KW"
|
3478
|
-
},
|
3479
|
-
"LAO": {
|
3480
|
-
"_reason": "overlong",
|
3481
|
-
"_replacement": "LA"
|
3482
|
-
},
|
3483
|
-
"LBN": {
|
3484
|
-
"_reason": "overlong",
|
3485
|
-
"_replacement": "LB"
|
3486
|
-
},
|
3487
|
-
"LBR": {
|
3488
|
-
"_reason": "overlong",
|
3489
|
-
"_replacement": "LR"
|
3490
|
-
},
|
3491
|
-
"LBY": {
|
3492
|
-
"_reason": "overlong",
|
3493
|
-
"_replacement": "LY"
|
3494
|
-
},
|
3495
|
-
"LCA": {
|
3496
|
-
"_reason": "overlong",
|
3497
|
-
"_replacement": "LC"
|
3498
|
-
},
|
3499
|
-
"LIE": {
|
3500
|
-
"_reason": "overlong",
|
3501
|
-
"_replacement": "LI"
|
3502
|
-
},
|
3503
|
-
"LKA": {
|
3504
|
-
"_reason": "overlong",
|
3505
|
-
"_replacement": "LK"
|
3506
|
-
},
|
3507
|
-
"LSO": {
|
3508
|
-
"_reason": "overlong",
|
3509
|
-
"_replacement": "LS"
|
3510
|
-
},
|
3511
|
-
"LTU": {
|
3512
|
-
"_reason": "overlong",
|
3513
|
-
"_replacement": "LT"
|
3514
|
-
},
|
3515
|
-
"LUX": {
|
3516
|
-
"_reason": "overlong",
|
3517
|
-
"_replacement": "LU"
|
3518
|
-
},
|
3519
|
-
"LVA": {
|
3520
|
-
"_reason": "overlong",
|
3521
|
-
"_replacement": "LV"
|
3522
|
-
},
|
3523
|
-
"MAC": {
|
3524
|
-
"_reason": "overlong",
|
3525
|
-
"_replacement": "MO"
|
3526
|
-
},
|
3527
|
-
"MAF": {
|
3528
|
-
"_reason": "overlong",
|
3529
|
-
"_replacement": "MF"
|
3530
|
-
},
|
3531
|
-
"MAR": {
|
3532
|
-
"_reason": "overlong",
|
3533
|
-
"_replacement": "MA"
|
3534
|
-
},
|
3535
|
-
"MCO": {
|
3536
|
-
"_reason": "overlong",
|
3537
|
-
"_replacement": "MC"
|
3538
|
-
},
|
3539
|
-
"MDA": {
|
3540
|
-
"_reason": "overlong",
|
3541
|
-
"_replacement": "MD"
|
3542
|
-
},
|
3543
|
-
"MDG": {
|
3544
|
-
"_reason": "overlong",
|
3545
|
-
"_replacement": "MG"
|
3546
|
-
},
|
3547
|
-
"MDV": {
|
3548
|
-
"_reason": "overlong",
|
3549
|
-
"_replacement": "MV"
|
3550
|
-
},
|
3551
|
-
"MEX": {
|
3552
|
-
"_reason": "overlong",
|
3553
|
-
"_replacement": "MX"
|
3554
|
-
},
|
3555
|
-
"MHL": {
|
3556
|
-
"_reason": "overlong",
|
3557
|
-
"_replacement": "MH"
|
3558
|
-
},
|
3559
|
-
"MI": {
|
3560
|
-
"_reason": "deprecated",
|
3561
|
-
"_replacement": "UM"
|
3562
|
-
},
|
3563
|
-
"MKD": {
|
3564
|
-
"_reason": "overlong",
|
3565
|
-
"_replacement": "MK"
|
3566
|
-
},
|
3567
|
-
"MLI": {
|
3568
|
-
"_reason": "overlong",
|
3569
|
-
"_replacement": "ML"
|
3570
|
-
},
|
3571
|
-
"MLT": {
|
3572
|
-
"_reason": "overlong",
|
3573
|
-
"_replacement": "MT"
|
3574
|
-
},
|
3575
|
-
"MMR": {
|
3576
|
-
"_reason": "overlong",
|
3577
|
-
"_replacement": "MM"
|
3578
|
-
},
|
3579
|
-
"MNE": {
|
3580
|
-
"_reason": "overlong",
|
3581
|
-
"_replacement": "ME"
|
3582
|
-
},
|
3583
|
-
"MNG": {
|
3584
|
-
"_reason": "overlong",
|
3585
|
-
"_replacement": "MN"
|
3586
|
-
},
|
3587
|
-
"MNP": {
|
3588
|
-
"_reason": "overlong",
|
3589
|
-
"_replacement": "MP"
|
3590
|
-
},
|
3591
|
-
"MOZ": {
|
3592
|
-
"_reason": "overlong",
|
3593
|
-
"_replacement": "MZ"
|
3594
|
-
},
|
3595
|
-
"MRT": {
|
3596
|
-
"_reason": "overlong",
|
3597
|
-
"_replacement": "MR"
|
3598
|
-
},
|
3599
|
-
"MSR": {
|
3600
|
-
"_reason": "overlong",
|
3601
|
-
"_replacement": "MS"
|
3602
|
-
},
|
3603
|
-
"MTQ": {
|
3604
|
-
"_reason": "overlong",
|
3605
|
-
"_replacement": "MQ"
|
3606
|
-
},
|
3607
|
-
"MUS": {
|
3608
|
-
"_reason": "overlong",
|
3609
|
-
"_replacement": "MU"
|
3610
|
-
},
|
3611
|
-
"MWI": {
|
3612
|
-
"_reason": "overlong",
|
3613
|
-
"_replacement": "MW"
|
3614
|
-
},
|
3615
|
-
"MYS": {
|
3616
|
-
"_reason": "overlong",
|
3617
|
-
"_replacement": "MY"
|
3618
|
-
},
|
3619
|
-
"MYT": {
|
3620
|
-
"_reason": "overlong",
|
3621
|
-
"_replacement": "YT"
|
3622
|
-
},
|
3623
|
-
"NAM": {
|
3624
|
-
"_reason": "overlong",
|
3625
|
-
"_replacement": "NA"
|
3626
|
-
},
|
3627
|
-
"NCL": {
|
3628
|
-
"_reason": "overlong",
|
3629
|
-
"_replacement": "NC"
|
3630
|
-
},
|
3631
|
-
"NER": {
|
3632
|
-
"_reason": "overlong",
|
3633
|
-
"_replacement": "NE"
|
3634
|
-
},
|
3635
|
-
"NFK": {
|
3636
|
-
"_reason": "overlong",
|
3637
|
-
"_replacement": "NF"
|
3638
|
-
},
|
3639
|
-
"NGA": {
|
3640
|
-
"_reason": "overlong",
|
3641
|
-
"_replacement": "NG"
|
3642
|
-
},
|
3643
|
-
"NH": {
|
3644
|
-
"_reason": "deprecated",
|
3645
|
-
"_replacement": "VU"
|
3646
|
-
},
|
3647
|
-
"NIC": {
|
3648
|
-
"_reason": "overlong",
|
3649
|
-
"_replacement": "NI"
|
3650
|
-
},
|
3651
|
-
"NIU": {
|
3652
|
-
"_reason": "overlong",
|
3653
|
-
"_replacement": "NU"
|
3654
|
-
},
|
3655
|
-
"NLD": {
|
3656
|
-
"_reason": "overlong",
|
3657
|
-
"_replacement": "NL"
|
3658
|
-
},
|
3659
|
-
"NOR": {
|
3660
|
-
"_reason": "overlong",
|
3661
|
-
"_replacement": "NO"
|
3662
|
-
},
|
3663
|
-
"NPL": {
|
3664
|
-
"_reason": "overlong",
|
3665
|
-
"_replacement": "NP"
|
3666
|
-
},
|
3667
|
-
"NQ": {
|
3668
|
-
"_reason": "deprecated",
|
3669
|
-
"_replacement": "AQ"
|
3670
|
-
},
|
3671
|
-
"NRU": {
|
3672
|
-
"_reason": "overlong",
|
3673
|
-
"_replacement": "NR"
|
3674
|
-
},
|
3675
|
-
"NT": {
|
3676
|
-
"_reason": "deprecated",
|
3677
|
-
"_replacement": "SA IQ"
|
3678
|
-
},
|
3679
|
-
"NTZ": {
|
3680
|
-
"_reason": "overlong",
|
3681
|
-
"_replacement": "SA IQ"
|
3682
|
-
},
|
3683
|
-
"NZL": {
|
3684
|
-
"_reason": "overlong",
|
3685
|
-
"_replacement": "NZ"
|
3686
|
-
},
|
3687
|
-
"OMN": {
|
3688
|
-
"_reason": "overlong",
|
3689
|
-
"_replacement": "OM"
|
3690
|
-
},
|
3691
|
-
"PAK": {
|
3692
|
-
"_reason": "overlong",
|
3693
|
-
"_replacement": "PK"
|
3694
|
-
},
|
3695
|
-
"PAN": {
|
3696
|
-
"_reason": "overlong",
|
3697
|
-
"_replacement": "PA"
|
3698
|
-
},
|
3699
|
-
"PC": {
|
3700
|
-
"_reason": "deprecated",
|
3701
|
-
"_replacement": "FM MH MP PW"
|
3702
|
-
},
|
3703
|
-
"PCN": {
|
3704
|
-
"_reason": "overlong",
|
3705
|
-
"_replacement": "PN"
|
3706
|
-
},
|
3707
|
-
"PER": {
|
3708
|
-
"_reason": "overlong",
|
3709
|
-
"_replacement": "PE"
|
3710
|
-
},
|
3711
|
-
"PHL": {
|
3712
|
-
"_reason": "overlong",
|
3713
|
-
"_replacement": "PH"
|
3714
|
-
},
|
3715
|
-
"PLW": {
|
3716
|
-
"_reason": "overlong",
|
3717
|
-
"_replacement": "PW"
|
3718
|
-
},
|
3719
|
-
"PNG": {
|
3720
|
-
"_reason": "overlong",
|
3721
|
-
"_replacement": "PG"
|
3722
|
-
},
|
3723
|
-
"POL": {
|
3724
|
-
"_reason": "overlong",
|
3725
|
-
"_replacement": "PL"
|
3726
|
-
},
|
3727
|
-
"PRI": {
|
3728
|
-
"_reason": "overlong",
|
3729
|
-
"_replacement": "PR"
|
3730
|
-
},
|
3731
|
-
"PRK": {
|
3732
|
-
"_reason": "overlong",
|
3733
|
-
"_replacement": "KP"
|
3734
|
-
},
|
3735
|
-
"PRT": {
|
3736
|
-
"_reason": "overlong",
|
3737
|
-
"_replacement": "PT"
|
3738
|
-
},
|
3739
|
-
"PRY": {
|
3740
|
-
"_reason": "overlong",
|
3741
|
-
"_replacement": "PY"
|
3742
|
-
},
|
3743
|
-
"PSE": {
|
3744
|
-
"_reason": "overlong",
|
3745
|
-
"_replacement": "PS"
|
3746
|
-
},
|
3747
|
-
"PU": {
|
3748
|
-
"_reason": "deprecated",
|
3749
|
-
"_replacement": "UM"
|
3750
|
-
},
|
3751
|
-
"PYF": {
|
3752
|
-
"_reason": "overlong",
|
3753
|
-
"_replacement": "PF"
|
3754
|
-
},
|
3755
|
-
"PZ": {
|
3756
|
-
"_reason": "deprecated",
|
3757
|
-
"_replacement": "PA"
|
3758
|
-
},
|
3759
|
-
"QAT": {
|
3760
|
-
"_reason": "overlong",
|
3761
|
-
"_replacement": "QA"
|
3762
|
-
},
|
3763
|
-
"QMM": {
|
3764
|
-
"_reason": "overlong",
|
3765
|
-
"_replacement": "QM"
|
3766
|
-
},
|
3767
|
-
"QNN": {
|
3768
|
-
"_reason": "overlong",
|
3769
|
-
"_replacement": "QN"
|
3770
|
-
},
|
3771
|
-
"QPP": {
|
3772
|
-
"_reason": "overlong",
|
3773
|
-
"_replacement": "QP"
|
3774
|
-
},
|
3775
|
-
"QQQ": {
|
3776
|
-
"_reason": "overlong",
|
3777
|
-
"_replacement": "QQ"
|
3778
|
-
},
|
3779
|
-
"QRR": {
|
3780
|
-
"_reason": "overlong",
|
3781
|
-
"_replacement": "QR"
|
3782
|
-
},
|
3783
|
-
"QSS": {
|
3784
|
-
"_reason": "overlong",
|
3785
|
-
"_replacement": "QS"
|
3786
|
-
},
|
3787
|
-
"QTT": {
|
3788
|
-
"_reason": "overlong",
|
3789
|
-
"_replacement": "QT"
|
3790
|
-
},
|
3791
|
-
"QU": {
|
3792
|
-
"_reason": "deprecated",
|
3793
|
-
"_replacement": "EU"
|
3794
|
-
},
|
3795
|
-
"QUU": {
|
3796
|
-
"_reason": "overlong",
|
3797
|
-
"_replacement": "EU"
|
3798
|
-
},
|
3799
|
-
"QVV": {
|
3800
|
-
"_reason": "overlong",
|
3801
|
-
"_replacement": "QV"
|
3802
|
-
},
|
3803
|
-
"QWW": {
|
3804
|
-
"_reason": "overlong",
|
3805
|
-
"_replacement": "QW"
|
3806
|
-
},
|
3807
|
-
"QXX": {
|
3808
|
-
"_reason": "overlong",
|
3809
|
-
"_replacement": "QX"
|
3810
|
-
},
|
3811
|
-
"QYY": {
|
3812
|
-
"_reason": "overlong",
|
3813
|
-
"_replacement": "QY"
|
3814
|
-
},
|
3815
|
-
"QZZ": {
|
3816
|
-
"_reason": "overlong",
|
3817
|
-
"_replacement": "QZ"
|
3818
|
-
},
|
3819
|
-
"REU": {
|
3820
|
-
"_reason": "overlong",
|
3821
|
-
"_replacement": "RE"
|
3822
|
-
},
|
3823
|
-
"RH": {
|
3824
|
-
"_reason": "deprecated",
|
3825
|
-
"_replacement": "ZW"
|
3826
|
-
},
|
3827
|
-
"ROU": {
|
3828
|
-
"_reason": "overlong",
|
3829
|
-
"_replacement": "RO"
|
3830
|
-
},
|
3831
|
-
"RUS": {
|
3832
|
-
"_reason": "overlong",
|
3833
|
-
"_replacement": "RU"
|
3834
|
-
},
|
3835
|
-
"RWA": {
|
3836
|
-
"_reason": "overlong",
|
3837
|
-
"_replacement": "RW"
|
3838
|
-
},
|
3839
|
-
"SAU": {
|
3840
|
-
"_reason": "overlong",
|
3841
|
-
"_replacement": "SA"
|
3842
|
-
},
|
3843
|
-
"SCG": {
|
3844
|
-
"_reason": "overlong",
|
3845
|
-
"_replacement": "RS ME"
|
3846
|
-
},
|
3847
|
-
"SDN": {
|
3848
|
-
"_reason": "overlong",
|
3849
|
-
"_replacement": "SD"
|
3850
|
-
},
|
3851
|
-
"SEN": {
|
3852
|
-
"_reason": "overlong",
|
3853
|
-
"_replacement": "SN"
|
3854
|
-
},
|
3855
|
-
"SGP": {
|
3856
|
-
"_reason": "overlong",
|
3857
|
-
"_replacement": "SG"
|
3858
|
-
},
|
3859
|
-
"SGS": {
|
3860
|
-
"_reason": "overlong",
|
3861
|
-
"_replacement": "GS"
|
3862
|
-
},
|
3863
|
-
"SHN": {
|
3864
|
-
"_reason": "overlong",
|
3865
|
-
"_replacement": "SH"
|
3866
|
-
},
|
3867
|
-
"SJM": {
|
3868
|
-
"_reason": "overlong",
|
3869
|
-
"_replacement": "SJ"
|
3870
|
-
},
|
3871
|
-
"SLB": {
|
3872
|
-
"_reason": "overlong",
|
3873
|
-
"_replacement": "SB"
|
3874
|
-
},
|
3875
|
-
"SLE": {
|
3876
|
-
"_reason": "overlong",
|
3877
|
-
"_replacement": "SL"
|
3878
|
-
},
|
3879
|
-
"SLV": {
|
3880
|
-
"_reason": "overlong",
|
3881
|
-
"_replacement": "SV"
|
3882
|
-
},
|
3883
|
-
"SMR": {
|
3884
|
-
"_reason": "overlong",
|
3885
|
-
"_replacement": "SM"
|
3886
|
-
},
|
3887
|
-
"SOM": {
|
3888
|
-
"_reason": "overlong",
|
3889
|
-
"_replacement": "SO"
|
3890
|
-
},
|
3891
|
-
"SPM": {
|
3892
|
-
"_reason": "overlong",
|
3893
|
-
"_replacement": "PM"
|
3894
|
-
},
|
3895
|
-
"SRB": {
|
3896
|
-
"_reason": "overlong",
|
3897
|
-
"_replacement": "RS"
|
3898
|
-
},
|
3899
|
-
"SSD": {
|
3900
|
-
"_reason": "overlong",
|
3901
|
-
"_replacement": "SS"
|
3902
|
-
},
|
3903
|
-
"STP": {
|
3904
|
-
"_reason": "overlong",
|
3905
|
-
"_replacement": "ST"
|
3906
|
-
},
|
3907
|
-
"SU": {
|
3908
|
-
"_reason": "deprecated",
|
3909
|
-
"_replacement": "RU AM AZ BY EE GE KZ KG LV LT MD TJ TM UA UZ"
|
3910
|
-
},
|
3911
|
-
"SUN": {
|
3912
|
-
"_reason": "overlong",
|
3913
|
-
"_replacement": "RU AM AZ BY EE GE KZ KG LV LT MD TJ TM UA UZ"
|
3914
|
-
},
|
3915
|
-
"SUR": {
|
3916
|
-
"_reason": "overlong",
|
3917
|
-
"_replacement": "SR"
|
3918
|
-
},
|
3919
|
-
"SVK": {
|
3920
|
-
"_reason": "overlong",
|
3921
|
-
"_replacement": "SK"
|
3922
|
-
},
|
3923
|
-
"SVN": {
|
3924
|
-
"_reason": "overlong",
|
3925
|
-
"_replacement": "SI"
|
3926
|
-
},
|
3927
|
-
"SWE": {
|
3928
|
-
"_reason": "overlong",
|
3929
|
-
"_replacement": "SE"
|
3930
|
-
},
|
3931
|
-
"SWZ": {
|
3932
|
-
"_reason": "overlong",
|
3933
|
-
"_replacement": "SZ"
|
3934
|
-
},
|
3935
|
-
"SXM": {
|
3936
|
-
"_reason": "overlong",
|
3937
|
-
"_replacement": "SX"
|
3938
|
-
},
|
3939
|
-
"SYC": {
|
3940
|
-
"_reason": "overlong",
|
3941
|
-
"_replacement": "SC"
|
3942
|
-
},
|
3943
|
-
"SYR": {
|
3944
|
-
"_reason": "overlong",
|
3945
|
-
"_replacement": "SY"
|
3946
|
-
},
|
3947
|
-
"TAA": {
|
3948
|
-
"_reason": "overlong",
|
3949
|
-
"_replacement": "TA"
|
3950
|
-
},
|
3951
|
-
"TCA": {
|
3952
|
-
"_reason": "overlong",
|
3953
|
-
"_replacement": "TC"
|
3954
|
-
},
|
3955
|
-
"TCD": {
|
3956
|
-
"_reason": "overlong",
|
3957
|
-
"_replacement": "TD"
|
3958
|
-
},
|
3959
|
-
"TGO": {
|
3960
|
-
"_reason": "overlong",
|
3961
|
-
"_replacement": "TG"
|
3962
|
-
},
|
3963
|
-
"THA": {
|
3964
|
-
"_reason": "overlong",
|
3965
|
-
"_replacement": "TH"
|
3966
|
-
},
|
3967
|
-
"TJK": {
|
3968
|
-
"_reason": "overlong",
|
3969
|
-
"_replacement": "TJ"
|
3970
|
-
},
|
3971
|
-
"TKL": {
|
3972
|
-
"_reason": "overlong",
|
3973
|
-
"_replacement": "TK"
|
3974
|
-
},
|
3975
|
-
"TKM": {
|
3976
|
-
"_reason": "overlong",
|
3977
|
-
"_replacement": "TM"
|
3978
|
-
},
|
3979
|
-
"TLS": {
|
3980
|
-
"_reason": "overlong",
|
3981
|
-
"_replacement": "TL"
|
3982
|
-
},
|
3983
|
-
"TMP": {
|
3984
|
-
"_reason": "overlong",
|
3985
|
-
"_replacement": "TL"
|
3986
|
-
},
|
3987
|
-
"TON": {
|
3988
|
-
"_reason": "overlong",
|
3989
|
-
"_replacement": "TO"
|
3990
|
-
},
|
3991
|
-
"TP": {
|
3992
|
-
"_reason": "deprecated",
|
3993
|
-
"_replacement": "TL"
|
3994
|
-
},
|
3995
|
-
"TTO": {
|
3996
|
-
"_reason": "overlong",
|
3997
|
-
"_replacement": "TT"
|
3998
|
-
},
|
3999
|
-
"TUN": {
|
4000
|
-
"_reason": "overlong",
|
4001
|
-
"_replacement": "TN"
|
4002
|
-
},
|
4003
|
-
"TUR": {
|
4004
|
-
"_reason": "overlong",
|
4005
|
-
"_replacement": "TR"
|
4006
|
-
},
|
4007
|
-
"TUV": {
|
4008
|
-
"_reason": "overlong",
|
4009
|
-
"_replacement": "TV"
|
4010
|
-
},
|
4011
|
-
"TWN": {
|
4012
|
-
"_reason": "overlong",
|
4013
|
-
"_replacement": "TW"
|
4014
|
-
},
|
4015
|
-
"TZA": {
|
4016
|
-
"_reason": "overlong",
|
4017
|
-
"_replacement": "TZ"
|
4018
|
-
},
|
4019
|
-
"UGA": {
|
4020
|
-
"_reason": "overlong",
|
4021
|
-
"_replacement": "UG"
|
4022
|
-
},
|
4023
|
-
"UK": {
|
4024
|
-
"_reason": "deprecated",
|
4025
|
-
"_replacement": "GB"
|
4026
|
-
},
|
4027
|
-
"UKR": {
|
4028
|
-
"_reason": "overlong",
|
4029
|
-
"_replacement": "UA"
|
4030
|
-
},
|
4031
|
-
"UMI": {
|
4032
|
-
"_reason": "overlong",
|
4033
|
-
"_replacement": "UM"
|
4034
|
-
},
|
4035
|
-
"URY": {
|
4036
|
-
"_reason": "overlong",
|
4037
|
-
"_replacement": "UY"
|
4038
|
-
},
|
4039
|
-
"USA": {
|
4040
|
-
"_reason": "overlong",
|
4041
|
-
"_replacement": "US"
|
4042
|
-
},
|
4043
|
-
"UZB": {
|
4044
|
-
"_reason": "overlong",
|
4045
|
-
"_replacement": "UZ"
|
4046
|
-
},
|
4047
|
-
"VAT": {
|
4048
|
-
"_reason": "overlong",
|
4049
|
-
"_replacement": "VA"
|
4050
|
-
},
|
4051
|
-
"VCT": {
|
4052
|
-
"_reason": "overlong",
|
4053
|
-
"_replacement": "VC"
|
4054
|
-
},
|
4055
|
-
"VD": {
|
4056
|
-
"_reason": "deprecated",
|
4057
|
-
"_replacement": "VN"
|
4058
|
-
},
|
4059
|
-
"VEN": {
|
4060
|
-
"_reason": "overlong",
|
4061
|
-
"_replacement": "VE"
|
4062
|
-
},
|
4063
|
-
"VGB": {
|
4064
|
-
"_reason": "overlong",
|
4065
|
-
"_replacement": "VG"
|
4066
|
-
},
|
4067
|
-
"VIR": {
|
4068
|
-
"_reason": "overlong",
|
4069
|
-
"_replacement": "VI"
|
4070
|
-
},
|
4071
|
-
"VNM": {
|
4072
|
-
"_reason": "overlong",
|
4073
|
-
"_replacement": "VN"
|
4074
|
-
},
|
4075
|
-
"VUT": {
|
4076
|
-
"_reason": "overlong",
|
4077
|
-
"_replacement": "VU"
|
4078
|
-
},
|
4079
|
-
"WK": {
|
4080
|
-
"_reason": "deprecated",
|
4081
|
-
"_replacement": "UM"
|
4082
|
-
},
|
4083
|
-
"WLF": {
|
4084
|
-
"_reason": "overlong",
|
4085
|
-
"_replacement": "WF"
|
4086
|
-
},
|
4087
|
-
"WSM": {
|
4088
|
-
"_reason": "overlong",
|
4089
|
-
"_replacement": "WS"
|
4090
|
-
},
|
4091
|
-
"XAA": {
|
4092
|
-
"_reason": "overlong",
|
4093
|
-
"_replacement": "XA"
|
4094
|
-
},
|
4095
|
-
"XBB": {
|
4096
|
-
"_reason": "overlong",
|
4097
|
-
"_replacement": "XB"
|
4098
|
-
},
|
4099
|
-
"XCC": {
|
4100
|
-
"_reason": "overlong",
|
4101
|
-
"_replacement": "XC"
|
4102
|
-
},
|
4103
|
-
"XDD": {
|
4104
|
-
"_reason": "overlong",
|
4105
|
-
"_replacement": "XD"
|
4106
|
-
},
|
4107
|
-
"XEE": {
|
4108
|
-
"_reason": "overlong",
|
4109
|
-
"_replacement": "XE"
|
4110
|
-
},
|
4111
|
-
"XFF": {
|
4112
|
-
"_reason": "overlong",
|
4113
|
-
"_replacement": "XF"
|
4114
|
-
},
|
4115
|
-
"XGG": {
|
4116
|
-
"_reason": "overlong",
|
4117
|
-
"_replacement": "XG"
|
4118
|
-
},
|
4119
|
-
"XHH": {
|
4120
|
-
"_reason": "overlong",
|
4121
|
-
"_replacement": "XH"
|
4122
|
-
},
|
4123
|
-
"XII": {
|
4124
|
-
"_reason": "overlong",
|
4125
|
-
"_replacement": "XI"
|
4126
|
-
},
|
4127
|
-
"XJJ": {
|
4128
|
-
"_reason": "overlong",
|
4129
|
-
"_replacement": "XJ"
|
4130
|
-
},
|
4131
|
-
"XKK": {
|
4132
|
-
"_reason": "overlong",
|
4133
|
-
"_replacement": "XK"
|
4134
|
-
},
|
4135
|
-
"XLL": {
|
4136
|
-
"_reason": "overlong",
|
4137
|
-
"_replacement": "XL"
|
4138
|
-
},
|
4139
|
-
"XMM": {
|
4140
|
-
"_reason": "overlong",
|
4141
|
-
"_replacement": "XM"
|
4142
|
-
},
|
4143
|
-
"XNN": {
|
4144
|
-
"_reason": "overlong",
|
4145
|
-
"_replacement": "XN"
|
4146
|
-
},
|
4147
|
-
"XOO": {
|
4148
|
-
"_reason": "overlong",
|
4149
|
-
"_replacement": "XO"
|
4150
|
-
},
|
4151
|
-
"XPP": {
|
4152
|
-
"_reason": "overlong",
|
4153
|
-
"_replacement": "XP"
|
4154
|
-
},
|
4155
|
-
"XQQ": {
|
4156
|
-
"_reason": "overlong",
|
4157
|
-
"_replacement": "XQ"
|
4158
|
-
},
|
4159
|
-
"XRR": {
|
4160
|
-
"_reason": "overlong",
|
4161
|
-
"_replacement": "XR"
|
4162
|
-
},
|
4163
|
-
"XSS": {
|
4164
|
-
"_reason": "overlong",
|
4165
|
-
"_replacement": "XS"
|
4166
|
-
},
|
4167
|
-
"XTT": {
|
4168
|
-
"_reason": "overlong",
|
4169
|
-
"_replacement": "XT"
|
4170
|
-
},
|
4171
|
-
"XUU": {
|
4172
|
-
"_reason": "overlong",
|
4173
|
-
"_replacement": "XU"
|
4174
|
-
},
|
4175
|
-
"XVV": {
|
4176
|
-
"_reason": "overlong",
|
4177
|
-
"_replacement": "XV"
|
4178
|
-
},
|
4179
|
-
"XWW": {
|
4180
|
-
"_reason": "overlong",
|
4181
|
-
"_replacement": "XW"
|
4182
|
-
},
|
4183
|
-
"XXX": {
|
4184
|
-
"_reason": "overlong",
|
4185
|
-
"_replacement": "XX"
|
4186
|
-
},
|
4187
|
-
"XYY": {
|
4188
|
-
"_reason": "overlong",
|
4189
|
-
"_replacement": "XY"
|
4190
|
-
},
|
4191
|
-
"XZZ": {
|
4192
|
-
"_reason": "overlong",
|
4193
|
-
"_replacement": "XZ"
|
4194
|
-
},
|
4195
|
-
"YD": {
|
4196
|
-
"_reason": "deprecated",
|
4197
|
-
"_replacement": "YE"
|
4198
|
-
},
|
4199
|
-
"YEM": {
|
4200
|
-
"_reason": "overlong",
|
4201
|
-
"_replacement": "YE"
|
4202
|
-
},
|
4203
|
-
"YMD": {
|
4204
|
-
"_reason": "overlong",
|
4205
|
-
"_replacement": "YE"
|
4206
|
-
},
|
4207
|
-
"YU": {
|
4208
|
-
"_reason": "deprecated",
|
4209
|
-
"_replacement": "RS ME"
|
4210
|
-
},
|
4211
|
-
"YUG": {
|
4212
|
-
"_reason": "overlong",
|
4213
|
-
"_replacement": "RS ME"
|
4214
|
-
},
|
4215
|
-
"ZAF": {
|
4216
|
-
"_reason": "overlong",
|
4217
|
-
"_replacement": "ZA"
|
4218
|
-
},
|
4219
|
-
"ZAR": {
|
4220
|
-
"_reason": "overlong",
|
4221
|
-
"_replacement": "CD"
|
4222
|
-
},
|
4223
|
-
"ZMB": {
|
4224
|
-
"_reason": "overlong",
|
4225
|
-
"_replacement": "ZM"
|
4226
|
-
},
|
4227
|
-
"ZR": {
|
4228
|
-
"_reason": "deprecated",
|
4229
|
-
"_replacement": "CD"
|
4230
|
-
},
|
4231
|
-
"ZWE": {
|
4232
|
-
"_reason": "overlong",
|
4233
|
-
"_replacement": "ZW"
|
4234
|
-
},
|
4235
|
-
"ZZZ": {
|
4236
|
-
"_reason": "overlong",
|
4237
|
-
"_replacement": "ZZ"
|
4238
|
-
}
|
4239
|
-
},
|
4240
|
-
"variantAlias": {
|
4241
|
-
"AALAND": {
|
4242
|
-
"_reason": "deprecated",
|
4243
|
-
"_replacement": "AX"
|
4244
|
-
},
|
4245
|
-
"arevela": {
|
4246
|
-
"_reason": "deprecated",
|
4247
|
-
"_replacement": "hy"
|
4248
|
-
},
|
4249
|
-
"arevmda": {
|
4250
|
-
"_reason": "deprecated",
|
4251
|
-
"_replacement": "hyw"
|
4252
|
-
},
|
4253
|
-
"heploc": {
|
4254
|
-
"_reason": "deprecated",
|
4255
|
-
"_replacement": "alalc97"
|
4256
|
-
},
|
4257
|
-
"HEPLOC": {
|
4258
|
-
"_reason": "deprecated",
|
4259
|
-
"_replacement": "ALALC97"
|
4260
|
-
},
|
4261
|
-
"POLYTONI": {
|
4262
|
-
"_reason": "deprecated",
|
4263
|
-
"_replacement": "POLYTON"
|
4264
|
-
}
|
4265
|
-
},
|
4266
|
-
"zoneAlias": {
|
4267
|
-
"Africa": {
|
4268
|
-
"Timbuktu": {
|
4269
|
-
"_reason": "deprecated",
|
4270
|
-
"_replacement": "Africa/Bamako"
|
4271
|
-
}
|
4272
|
-
},
|
4273
|
-
"America": {
|
4274
|
-
"Montreal": {
|
4275
|
-
"_reason": "deprecated",
|
4276
|
-
"_replacement": "America/Toronto"
|
4277
|
-
},
|
4278
|
-
"Shiprock": {
|
4279
|
-
"_reason": "deprecated",
|
4280
|
-
"_replacement": "America/Denver"
|
4281
|
-
}
|
4282
|
-
},
|
4283
|
-
"Antarctica": {
|
4284
|
-
"South_Pole": {
|
4285
|
-
"_reason": "deprecated",
|
4286
|
-
"_replacement": "Pacific/Auckland"
|
4287
|
-
}
|
4288
|
-
},
|
4289
|
-
"Asia": {
|
4290
|
-
"Chongqing": {
|
4291
|
-
"_reason": "deprecated",
|
4292
|
-
"_replacement": "Asia/Shanghai"
|
4293
|
-
},
|
4294
|
-
"Harbin": {
|
4295
|
-
"_reason": "deprecated",
|
4296
|
-
"_replacement": "Asia/Shanghai"
|
4297
|
-
},
|
4298
|
-
"Kashgar": {
|
4299
|
-
"_reason": "deprecated",
|
4300
|
-
"_replacement": "Asia/Urumqi"
|
4301
|
-
}
|
4302
|
-
},
|
4303
|
-
"Atlantic": {
|
4304
|
-
"Jan_Mayen": {
|
4305
|
-
"_reason": "deprecated",
|
4306
|
-
"_replacement": "Europe/Oslo"
|
4307
|
-
}
|
4308
|
-
},
|
4309
|
-
"EST": {
|
4310
|
-
"_reason": "deprecated",
|
4311
|
-
"_replacement": "America/Indianapolis"
|
4312
|
-
},
|
4313
|
-
"Europe": {
|
4314
|
-
"Belfast": {
|
4315
|
-
"_reason": "deprecated",
|
4316
|
-
"_replacement": "Europe/London"
|
4317
|
-
}
|
4318
|
-
},
|
4319
|
-
"HST": {
|
4320
|
-
"_reason": "deprecated",
|
4321
|
-
"_replacement": "Pacific/Honolulu"
|
4322
|
-
},
|
4323
|
-
"MST": {
|
4324
|
-
"_reason": "deprecated",
|
4325
|
-
"_replacement": "America/Phoenix"
|
4326
|
-
},
|
4327
|
-
"Pacific": {
|
4328
|
-
"Yap": {
|
4329
|
-
"_reason": "deprecated",
|
4330
|
-
"_replacement": "Pacific/Truk"
|
4331
|
-
}
|
4332
|
-
},
|
4333
|
-
"SystemV": {
|
4334
|
-
"AST4": {
|
4335
|
-
"_reason": "deprecated",
|
4336
|
-
"_replacement": "America/Puerto_Rico"
|
4337
|
-
},
|
4338
|
-
"AST4ADT": {
|
4339
|
-
"_reason": "deprecated",
|
4340
|
-
"_replacement": "America/Halifax"
|
4341
|
-
},
|
4342
|
-
"CST6": {
|
4343
|
-
"_reason": "deprecated",
|
4344
|
-
"_replacement": "America/Regina"
|
4345
|
-
},
|
4346
|
-
"CST6CDT": {
|
4347
|
-
"_reason": "deprecated",
|
4348
|
-
"_replacement": "America/Chicago"
|
4349
|
-
},
|
4350
|
-
"EST5": {
|
4351
|
-
"_reason": "deprecated",
|
4352
|
-
"_replacement": "America/Indianapolis"
|
4353
|
-
},
|
4354
|
-
"EST5EDT": {
|
4355
|
-
"_reason": "deprecated",
|
4356
|
-
"_replacement": "America/New_York"
|
4357
|
-
},
|
4358
|
-
"HST10": {
|
4359
|
-
"_reason": "deprecated",
|
4360
|
-
"_replacement": "Pacific/Honolulu"
|
4361
|
-
},
|
4362
|
-
"MST7": {
|
4363
|
-
"_reason": "deprecated",
|
4364
|
-
"_replacement": "America/Phoenix"
|
4365
|
-
},
|
4366
|
-
"MST7MDT": {
|
4367
|
-
"_reason": "deprecated",
|
4368
|
-
"_replacement": "America/Denver"
|
4369
|
-
},
|
4370
|
-
"PST8": {
|
4371
|
-
"_reason": "deprecated",
|
4372
|
-
"_replacement": "Pacific/Pitcairn"
|
4373
|
-
},
|
4374
|
-
"PST8PDT": {
|
4375
|
-
"_reason": "deprecated",
|
4376
|
-
"_replacement": "America/Los_Angeles"
|
4377
|
-
},
|
4378
|
-
"YST9": {
|
4379
|
-
"_reason": "deprecated",
|
4380
|
-
"_replacement": "Pacific/Gambier"
|
4381
|
-
},
|
4382
|
-
"YST9YDT": {
|
4383
|
-
"_reason": "deprecated",
|
4384
|
-
"_replacement": "America/Anchorage"
|
4385
|
-
}
|
4386
|
-
}
|
4387
|
-
}
|
4388
|
-
}
|
4389
|
-
}
|
4390
|
-
}
|
4391
|
-
}
|