@studyportals/static-domain-data 7.0.0-3 → 7.0.0-5

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.
Files changed (40) hide show
  1. package/cjs/src/areas/area-get-async.js +97 -0
  2. package/cjs/src/areas/area-id-country-id-mapping.js +69 -0
  3. package/cjs/src/areas/chunks/areas-202.js +14 -0
  4. package/cjs/src/areas/chunks/areas-30.js +10 -0
  5. package/cjs/src/areas/chunks/areas-82.js +57 -0
  6. package/cjs/src/areas/i-area-record.js +2 -0
  7. package/cjs/src/countries/country-get-async.js +60 -5
  8. package/cjs/src/currencies/currency-get-countries-async.js +34 -0
  9. package/cjs/src/currencies/currency-get-from-country-async.js +22 -0
  10. package/cjs/src/disciplines/discipline-get-parent-discipline-async.js +17 -0
  11. package/cjs/src/disciplines/discipline-get-sub-or-parent-discipline-async.js +22 -0
  12. package/esm/src/areas/area-get-async.d.ts +8 -0
  13. package/esm/src/areas/area-get-async.js +66 -0
  14. package/esm/src/areas/area-id-country-id-mapping.d.ts +2 -0
  15. package/esm/src/areas/area-id-country-id-mapping.js +66 -0
  16. package/esm/src/areas/chunks/areas-202.d.ts +3 -0
  17. package/esm/src/areas/chunks/areas-202.js +11 -0
  18. package/esm/src/areas/chunks/areas-30.d.ts +3 -0
  19. package/esm/src/areas/chunks/areas-30.js +7 -0
  20. package/esm/src/areas/chunks/areas-82.d.ts +3 -0
  21. package/esm/src/areas/chunks/areas-82.js +54 -0
  22. package/esm/src/areas/i-area-record.d.ts +1 -0
  23. package/esm/src/areas/i-area-record.js +1 -0
  24. package/esm/src/countries/country-get-async.d.ts +5 -2
  25. package/esm/src/countries/country-get-async.js +58 -5
  26. package/esm/src/currencies/currency-get-countries-async.d.ts +2 -0
  27. package/esm/src/currencies/currency-get-countries-async.js +31 -0
  28. package/esm/src/currencies/currency-get-from-country-async.d.ts +3 -0
  29. package/esm/src/currencies/currency-get-from-country-async.js +19 -0
  30. package/esm/src/disciplines/discipline-get-parent-discipline-async.d.ts +2 -0
  31. package/esm/src/disciplines/discipline-get-parent-discipline-async.js +14 -0
  32. package/esm/src/disciplines/discipline-get-sub-or-parent-discipline-async.d.ts +4 -0
  33. package/esm/src/disciplines/discipline-get-sub-or-parent-discipline-async.js +19 -0
  34. package/package.json +1 -1
  35. package/cjs/src/countries/country-id-chunk-mapping.js +0 -235
  36. package/cjs/src/countries/country-iso-chunk-mapping.js +0 -235
  37. package/esm/src/countries/country-id-chunk-mapping.d.ts +0 -2
  38. package/esm/src/countries/country-id-chunk-mapping.js +0 -232
  39. package/esm/src/countries/country-iso-chunk-mapping.d.ts +0 -2
  40. package/esm/src/countries/country-iso-chunk-mapping.js +0 -232
@@ -0,0 +1,54 @@
1
+ const areaRecords = [
2
+ ["3578", "Arkansas", "82"],
3
+ ["3579", "Washington, D.C.", "82"],
4
+ ["3580", "Delaware", "82"],
5
+ ["3581", "Florida", "82"],
6
+ ["3582", "Georgia", "82"],
7
+ ["3583", "Kansas", "82"],
8
+ ["3584", "Louisiana", "82"],
9
+ ["3585", "Maryland", "82"],
10
+ ["3586", "Missouri", "82"],
11
+ ["3587", "Mississippi", "82"],
12
+ ["3588", "North Carolina", "82"],
13
+ ["3589", "Oklahoma", "82"],
14
+ ["3590", "South Carolina", "82"],
15
+ ["3591", "Tennessee", "82"],
16
+ ["3592", "Texas", "82"],
17
+ ["3593", "West Virginia", "82"],
18
+ ["3594", "Alabama", "82"],
19
+ ["3595", "Connecticut", "82"],
20
+ ["3596", "Iowa", "82"],
21
+ ["3597", "Illinois", "82"],
22
+ ["3598", "Indiana", "82"],
23
+ ["3599", "Maine", "82"],
24
+ ["3600", "Michigan", "82"],
25
+ ["3601", "Minnesota", "82"],
26
+ ["3602", "Nebraska", "82"],
27
+ ["3603", "New Hampshire", "82"],
28
+ ["3604", "New Jersey", "82"],
29
+ ["3605", "New York", "82"],
30
+ ["3606", "Ohio", "82"],
31
+ ["3607", "Rhode Island", "82"],
32
+ ["3608", "Vermont", "82"],
33
+ ["3609", "Wisconsin", "82"],
34
+ ["3610", "California", "82"],
35
+ ["3611", "Colorado", "82"],
36
+ ["3612", "New Mexico", "82"],
37
+ ["3613", "Nevada", "82"],
38
+ ["3614", "Utah", "82"],
39
+ ["3615", "Arizona", "82"],
40
+ ["3616", "Idaho", "82"],
41
+ ["3617", "Montana", "82"],
42
+ ["3618", "North Dakota", "82"],
43
+ ["3619", "Oregon", "82"],
44
+ ["3620", "South Dakota", "82"],
45
+ ["3621", "Washington", "82"],
46
+ ["3622", "Wyoming", "82"],
47
+ ["3623", "Hawaii", "82"],
48
+ ["3624", "Alaska", "82"],
49
+ ["3625", "Kentucky", "82"],
50
+ ["3626", "Massachusetts", "82"],
51
+ ["3627", "Pennsylvania", "82"],
52
+ ["3628", "Virginia", "82"],
53
+ ];
54
+ export { areaRecords, };
@@ -0,0 +1 @@
1
+ export type IAreaRecord = readonly [id: string, name: string, countryId: string];
@@ -0,0 +1 @@
1
+ export {};
@@ -1,4 +1,7 @@
1
- import { ICountry } from "./i-country";
1
+ import type { ICountry } from "./i-country";
2
+ import type { ICountryExtended } from "./i-country-extended";
2
3
  declare const countryGetByIdAsync: (id: string) => Promise<ICountry | null>;
3
4
  declare const countryGetByIsoCodeAsync: (isoCode: string) => Promise<ICountry | null>;
4
- export { countryGetByIdAsync, countryGetByIsoCodeAsync, };
5
+ declare const countryGetExtendedByIdAsync: (id: string) => Promise<ICountryExtended | null>;
6
+ declare const countryGetExtendedByIsoCodeAsync: (isoCode: string) => Promise<ICountryExtended | null>;
7
+ export { countryGetByIdAsync, countryGetByIsoCodeAsync, countryGetExtendedByIdAsync, countryGetExtendedByIsoCodeAsync, };
@@ -7,11 +7,12 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
7
7
  step((generator = generator.apply(thisArg, _arguments || [])).next());
8
8
  });
9
9
  };
10
- import { countryIdChunkMapping } from "./country-id-chunk-mapping.js";
11
- import { countryIsoChunkMapping } from "./country-iso-chunk-mapping.js";
10
+ import { countryGetIsoCode } from "./country-get-iso-code.js";
12
11
  const countriesByChunkCache = new Map();
13
12
  const countryByIdCache = new Map();
14
13
  const countryByIsoCodeCache = new Map();
14
+ const countryExtendedByIdCache = new Map();
15
+ const countryExtendedByIsoCodeCache = new Map();
15
16
  const countryChunkLoaders = {
16
17
  "a-f": () => import("./chunks/country-records-a-f.js"),
17
18
  "g-l": () => import("./chunks/country-records-g-l.js"),
@@ -31,6 +32,22 @@ const getRecordsFromChunkModule = (chunk, chunkModule) => {
31
32
  return (_d = chunkModule.countryRecordsSZ) !== null && _d !== void 0 ? _d : [];
32
33
  }
33
34
  };
35
+ const countryGetChunkByIsoCode = (isoCode) => {
36
+ const firstLetter = isoCode[0];
37
+ if (!firstLetter) {
38
+ return null;
39
+ }
40
+ if (firstLetter >= "A" && firstLetter <= "F") {
41
+ return "a-f";
42
+ }
43
+ if (firstLetter >= "G" && firstLetter <= "L") {
44
+ return "g-l";
45
+ }
46
+ if (firstLetter >= "M" && firstLetter <= "R") {
47
+ return "m-r";
48
+ }
49
+ return "s-z";
50
+ };
34
51
  const loadCountryChunk = (chunk) => __awaiter(void 0, void 0, void 0, function* () {
35
52
  if (countriesByChunkCache.has(chunk)) {
36
53
  return countriesByChunkCache.get(chunk);
@@ -41,6 +58,9 @@ const loadCountryChunk = (chunk) => __awaiter(void 0, void 0, void 0, function*
41
58
  const country = { id, name };
42
59
  countryByIdCache.set(id, country);
43
60
  countryByIsoCodeCache.set(isoCode, country);
61
+ const countryExtended = Object.assign(Object.assign({}, country), { iso: isoCode });
62
+ countryExtendedByIdCache.set(id, countryExtended);
63
+ countryExtendedByIsoCodeCache.set(isoCode, countryExtended);
44
64
  return country;
45
65
  });
46
66
  countriesByChunkCache.set(chunk, countries);
@@ -52,7 +72,8 @@ const countryGetByIdAsync = (id) => __awaiter(void 0, void 0, void 0, function*
52
72
  if (countryByIdCache.has(normalizedId)) {
53
73
  return countryByIdCache.get(normalizedId);
54
74
  }
55
- const chunk = countryIdChunkMapping[normalizedId];
75
+ const isoCode = countryGetIsoCode(normalizedId);
76
+ const chunk = isoCode ? countryGetChunkByIsoCode(isoCode) : null;
56
77
  if (!chunk) {
57
78
  return null;
58
79
  }
@@ -65,11 +86,43 @@ const countryGetByIsoCodeAsync = (isoCode) => __awaiter(void 0, void 0, void 0,
65
86
  if (countryByIsoCodeCache.has(normalizedIsoCode)) {
66
87
  return countryByIsoCodeCache.get(normalizedIsoCode);
67
88
  }
68
- const chunk = countryIsoChunkMapping[normalizedIsoCode];
89
+ const chunk = countryGetChunkByIsoCode(normalizedIsoCode);
69
90
  if (!chunk) {
70
91
  return null;
71
92
  }
72
93
  yield loadCountryChunk(chunk);
73
94
  return (_a = countryByIsoCodeCache.get(normalizedIsoCode)) !== null && _a !== void 0 ? _a : null;
74
95
  });
75
- export { countryGetByIdAsync, countryGetByIsoCodeAsync, };
96
+ const countryGetExtendedByIdAsync = (id) => __awaiter(void 0, void 0, void 0, function* () {
97
+ const normalizedId = id.trim();
98
+ if (countryExtendedByIdCache.has(normalizedId)) {
99
+ return countryExtendedByIdCache.get(normalizedId);
100
+ }
101
+ const country = yield countryGetByIdAsync(normalizedId);
102
+ if (!country) {
103
+ return null;
104
+ }
105
+ const isoCode = countryGetIsoCode(normalizedId);
106
+ if (!isoCode) {
107
+ return null;
108
+ }
109
+ const countryExtended = Object.assign(Object.assign({}, country), { iso: isoCode });
110
+ countryExtendedByIdCache.set(normalizedId, countryExtended);
111
+ countryExtendedByIsoCodeCache.set(isoCode, countryExtended);
112
+ return countryExtended;
113
+ });
114
+ const countryGetExtendedByIsoCodeAsync = (isoCode) => __awaiter(void 0, void 0, void 0, function* () {
115
+ const normalizedIsoCode = isoCode.toUpperCase().trim();
116
+ if (countryExtendedByIsoCodeCache.has(normalizedIsoCode)) {
117
+ return countryExtendedByIsoCodeCache.get(normalizedIsoCode);
118
+ }
119
+ const country = yield countryGetByIsoCodeAsync(normalizedIsoCode);
120
+ if (!country) {
121
+ return null;
122
+ }
123
+ const countryExtended = Object.assign(Object.assign({}, country), { iso: normalizedIsoCode });
124
+ countryExtendedByIsoCodeCache.set(normalizedIsoCode, countryExtended);
125
+ countryExtendedByIdCache.set(country.id, countryExtended);
126
+ return countryExtended;
127
+ });
128
+ export { countryGetByIdAsync, countryGetByIsoCodeAsync, countryGetExtendedByIdAsync, countryGetExtendedByIsoCodeAsync, };
@@ -0,0 +1,2 @@
1
+ declare const currencyGetCountriesAsync: (iso: string) => Promise<readonly string[]>;
2
+ export { currencyGetCountriesAsync, };
@@ -0,0 +1,31 @@
1
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
+ return new (P || (P = Promise))(function (resolve, reject) {
4
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
8
+ });
9
+ };
10
+ import { countryGetByIsoCodeAsync } from "../countries/country-get-async.js";
11
+ import { currencyIsoCountryIsoMapping } from "./currency-iso-country-iso-mapping.js";
12
+ const countryIsoCodesByCurrencyIso = new Map();
13
+ for (const { countryIso, currencyIso } of currencyIsoCountryIsoMapping) {
14
+ if (countryIsoCodesByCurrencyIso.has(currencyIso)) {
15
+ countryIsoCodesByCurrencyIso.get(currencyIso).push(countryIso);
16
+ }
17
+ else {
18
+ countryIsoCodesByCurrencyIso.set(currencyIso, [countryIso]);
19
+ }
20
+ }
21
+ const currencyGetCountriesAsync = (iso) => __awaiter(void 0, void 0, void 0, function* () {
22
+ var _a;
23
+ const normalizedIso = iso.toUpperCase().trim();
24
+ const countryIsoCodes = (_a = countryIsoCodesByCurrencyIso.get(normalizedIso)) !== null && _a !== void 0 ? _a : [];
25
+ if (!countryIsoCodes.length) {
26
+ return [];
27
+ }
28
+ const countries = yield Promise.all(countryIsoCodes.map((countryIsoCode) => countryGetByIsoCodeAsync(countryIsoCode)));
29
+ return countries.flatMap((country) => (country ? [country.id] : []));
30
+ });
31
+ export { currencyGetCountriesAsync, };
@@ -0,0 +1,3 @@
1
+ import type { ICurrency } from "./i-currency";
2
+ declare const currencyGetFromCountryAsync: (countryIso: string) => Promise<ICurrency | undefined>;
3
+ export { currencyGetFromCountryAsync, };
@@ -0,0 +1,19 @@
1
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
+ return new (P || (P = Promise))(function (resolve, reject) {
4
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
8
+ });
9
+ };
10
+ import { currencyIsoCountryIsoMapping } from "./currency-iso-country-iso-mapping.js";
11
+ import { currencyGetByIsoAsync } from "./currency-get-async.js";
12
+ const currencyIsoByCountryIso = new Map(currencyIsoCountryIsoMapping.map(({ countryIso, currencyIso }) => [countryIso, currencyIso]));
13
+ const currencyGetFromCountryAsync = (countryIso) => __awaiter(void 0, void 0, void 0, function* () {
14
+ var _a, _b;
15
+ const normalizedCountryIso = countryIso.toUpperCase().trim();
16
+ const currencyIso = (_a = currencyIsoByCountryIso.get(normalizedCountryIso)) !== null && _a !== void 0 ? _a : "EUR";
17
+ return (_b = (yield currencyGetByIsoAsync(currencyIso))) !== null && _b !== void 0 ? _b : undefined;
18
+ });
19
+ export { currencyGetFromCountryAsync, };
@@ -0,0 +1,2 @@
1
+ declare const subdisciplineGetParentIdAsync: (subDisciplineId: string) => Promise<string | null>;
2
+ export { subdisciplineGetParentIdAsync, };
@@ -0,0 +1,14 @@
1
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
+ return new (P || (P = Promise))(function (resolve, reject) {
4
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
8
+ });
9
+ };
10
+ import { subdisciplineIdDisciplineIdMapping } from "./subdiscipline-id-discipline-id-mapping.js";
11
+ const subdisciplineGetParentIdAsync = (subDisciplineId) => __awaiter(void 0, void 0, void 0, function* () {
12
+ return subdisciplineIdDisciplineIdMapping[subDisciplineId] || null;
13
+ });
14
+ export { subdisciplineGetParentIdAsync, };
@@ -0,0 +1,4 @@
1
+ import type { IDiscipline } from "./i-discipline";
2
+ import type { ISubDiscipline } from "./i-sub-discipline";
3
+ declare const disciplineGetSubOrParentDisciplineAsync: (id: string) => Promise<ISubDiscipline | IDiscipline | undefined>;
4
+ export { disciplineGetSubOrParentDisciplineAsync, };
@@ -0,0 +1,19 @@
1
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
+ return new (P || (P = Promise))(function (resolve, reject) {
4
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
8
+ });
9
+ };
10
+ import { disciplineGetSubdisciplineByIdAsync } from "./discipline-get-subdiscipline-by-id-async.js";
11
+ import { disciplinesAll } from "./disciplines.js";
12
+ const disciplineGetSubOrParentDisciplineAsync = (id) => __awaiter(void 0, void 0, void 0, function* () {
13
+ const subDiscipline = yield disciplineGetSubdisciplineByIdAsync(id);
14
+ if (subDiscipline) {
15
+ return subDiscipline;
16
+ }
17
+ return disciplinesAll.find((discipline) => discipline.id === id);
18
+ });
19
+ export { disciplineGetSubOrParentDisciplineAsync, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@studyportals/static-domain-data",
3
- "version": "7.0.0-3",
3
+ "version": "7.0.0-5",
4
4
  "sideEffects": false,
5
5
  "exports": {
6
6
  "./*": {
@@ -1,235 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.countryIdChunkMapping = void 0;
4
- const countryIdChunkMapping = {
5
- "1": "m-r",
6
- "2": "a-f",
7
- "3": "a-f",
8
- "4": "a-f",
9
- "5": "a-f",
10
- "6": "a-f",
11
- "7": "a-f",
12
- "8": "a-f",
13
- "9": "a-f",
14
- "10": "a-f",
15
- "11": "g-l",
16
- "12": "g-l",
17
- "13": "g-l",
18
- "14": "g-l",
19
- "15": "g-l",
20
- "16": "g-l",
21
- "17": "g-l",
22
- "18": "m-r",
23
- "19": "m-r",
24
- "20": "m-r",
25
- "21": "m-r",
26
- "22": "m-r",
27
- "23": "s-z",
28
- "24": "s-z",
29
- "25": "g-l",
30
- "26": "s-z",
31
- "27": "s-z",
32
- "28": "s-z",
33
- "29": "s-z",
34
- "30": "s-z",
35
- "31": "s-z",
36
- "33": "m-r",
37
- "34": "g-l",
38
- "35": "m-r",
39
- "36": "m-r",
40
- "37": "m-r",
41
- "38": "a-f",
42
- "39": "m-r",
43
- "40": "a-f",
44
- "41": "s-z",
45
- "42": "a-f",
46
- "43": "g-l",
47
- "44": "a-f",
48
- "45": "a-f",
49
- "46": "a-f",
50
- "47": "g-l",
51
- "48": "s-z",
52
- "49": "a-f",
53
- "50": "a-f",
54
- "51": "a-f",
55
- "52": "a-f",
56
- "53": "a-f",
57
- "54": "a-f",
58
- "55": "a-f",
59
- "56": "a-f",
60
- "57": "a-f",
61
- "58": "a-f",
62
- "59": "a-f",
63
- "60": "a-f",
64
- "61": "a-f",
65
- "62": "a-f",
66
- "63": "g-l",
67
- "64": "g-l",
68
- "65": "g-l",
69
- "66": "g-l",
70
- "67": "g-l",
71
- "68": "g-l",
72
- "69": "g-l",
73
- "70": "m-r",
74
- "71": "m-r",
75
- "72": "m-r",
76
- "74": "m-r",
77
- "75": "m-r",
78
- "76": "m-r",
79
- "77": "s-z",
80
- "78": "s-z",
81
- "79": "s-z",
82
- "80": "s-z",
83
- "81": "s-z",
84
- "82": "s-z",
85
- "83": "s-z",
86
- "84": "a-f",
87
- "85": "a-f",
88
- "86": "a-f",
89
- "87": "a-f",
90
- "88": "a-f",
91
- "89": "a-f",
92
- "90": "a-f",
93
- "91": "g-l",
94
- "92": "m-r",
95
- "93": "m-r",
96
- "94": "s-z",
97
- "95": "s-z",
98
- "96": "s-z",
99
- "97": "a-f",
100
- "98": "a-f",
101
- "99": "a-f",
102
- "100": "a-f",
103
- "101": "a-f",
104
- "102": "a-f",
105
- "103": "a-f",
106
- "104": "a-f",
107
- "105": "a-f",
108
- "106": "g-l",
109
- "107": "g-l",
110
- "108": "g-l",
111
- "109": "g-l",
112
- "110": "g-l",
113
- "111": "g-l",
114
- "112": "g-l",
115
- "113": "g-l",
116
- "114": "g-l",
117
- "115": "g-l",
118
- "116": "m-r",
119
- "117": "s-z",
120
- "118": "g-l",
121
- "119": "g-l",
122
- "120": "g-l",
123
- "121": "g-l",
124
- "122": "m-r",
125
- "123": "m-r",
126
- "124": "m-r",
127
- "125": "m-r",
128
- "126": "m-r",
129
- "127": "m-r",
130
- "128": "m-r",
131
- "129": "m-r",
132
- "130": "m-r",
133
- "131": "m-r",
134
- "132": "s-z",
135
- "133": "s-z",
136
- "134": "s-z",
137
- "135": "s-z",
138
- "136": "s-z",
139
- "137": "s-z",
140
- "138": "s-z",
141
- "139": "s-z",
142
- "140": "s-z",
143
- "141": "s-z",
144
- "142": "s-z",
145
- "143": "s-z",
146
- "144": "m-r",
147
- "145": "a-f",
148
- "146": "a-f",
149
- "147": "a-f",
150
- "148": "a-f",
151
- "149": "a-f",
152
- "150": "a-f",
153
- "151": "a-f",
154
- "152": "a-f",
155
- "153": "a-f",
156
- "154": "a-f",
157
- "155": "a-f",
158
- "156": "a-f",
159
- "157": "a-f",
160
- "158": "a-f",
161
- "159": "a-f",
162
- "160": "s-z",
163
- "161": "a-f",
164
- "162": "a-f",
165
- "163": "a-f",
166
- "164": "a-f",
167
- "165": "g-l",
168
- "166": "g-l",
169
- "167": "g-l",
170
- "168": "g-l",
171
- "169": "g-l",
172
- "170": "g-l",
173
- "171": "g-l",
174
- "172": "g-l",
175
- "173": "g-l",
176
- "174": "m-r",
177
- "175": "m-r",
178
- "176": "m-r",
179
- "177": "m-r",
180
- "178": "m-r",
181
- "179": "m-r",
182
- "180": "m-r",
183
- "181": "m-r",
184
- "182": "m-r",
185
- "183": "m-r",
186
- "184": "m-r",
187
- "185": "m-r",
188
- "186": "s-z",
189
- "187": "s-z",
190
- "188": "s-z",
191
- "189": "s-z",
192
- "190": "s-z",
193
- "191": "s-z",
194
- "192": "s-z",
195
- "193": "a-f",
196
- "194": "s-z",
197
- "195": "s-z",
198
- "196": "s-z",
199
- "197": "s-z",
200
- "198": "s-z",
201
- "199": "s-z",
202
- "200": "s-z",
203
- "201": "a-f",
204
- "202": "a-f",
205
- "203": "a-f",
206
- "204": "a-f",
207
- "205": "a-f",
208
- "206": "g-l",
209
- "207": "g-l",
210
- "208": "m-r",
211
- "209": "m-r",
212
- "210": "m-r",
213
- "211": "m-r",
214
- "212": "m-r",
215
- "213": "m-r",
216
- "214": "m-r",
217
- "215": "m-r",
218
- "216": "m-r",
219
- "217": "s-z",
220
- "218": "s-z",
221
- "219": "s-z",
222
- "220": "s-z",
223
- "221": "s-z",
224
- "222": "s-z",
225
- "223": "s-z",
226
- "224": "a-f",
227
- "225": "a-f",
228
- "226": "s-z",
229
- "227": "a-f",
230
- "229": "m-r",
231
- "230": "g-l",
232
- "232": "s-z",
233
- "233": "a-f",
234
- };
235
- exports.countryIdChunkMapping = countryIdChunkMapping;