1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191 | 16x
16x
16x
| export const IMEI_TACS = [
"01124500", // Apple iPhone
"01161200", // Apple iPhone 3G
"01194800", // Apple iPhone 3GS
"01233600", // Apple iPhone 4
"01300600", // Apple iPhone 4S
"01332700", // Apple iPhone 5
"35875505", // Apple iPhone 5S
"35881505", // Apple iPhone 5C
"35925406", // Apple iPhone 6
"35325807", // Apple iPhone 6S
"35391805", // Google Nexus 4
"35824005", // Google Nexus 5
"35896704", // HTC Desire S
"35803106", // HTC One M8s
"35838706", // LG G Stylo
"35929005", // Motorola Moto G
"35089080", // Nokia 3410
"35154900", // Nokia 6310i
"35920605", // Nokia Lumia 625
"35699601", // Nokia N95
"35316004", // ZTE Blade
"35909205", // Samsung Galaxy Note 3
"35328504", // Samsung Galaxy S
"35332705", // Samsung Galaxy S2
"35316605", // Samsung Galaxy S3
"35744105", // Samsung Galaxy S4
"32930400", // Samsung Galaxy S7
"35171005", // Sony Ericsson Xperia S
"35511405" // Sony Ericsson Xperia U
];
export const ISBN_GROUPS = {
"cs": "80",
"da": "87",
"de": "3",
"de-at": "3",
"de-ch": "3",
"en": "1",
"en-ca": "#",
"es": "84",
"es-mx": "607",
"fa": "600",
"fi": "951",
"fr": "2",
"hu": "615",
"is": "9935",
"it": "88",
"ja": "4",
"ko": "89",
"nl": "90",
"nl-be": "90",
"no": "82",
"pl": "83",
"pt": "972",
"pt-br": "85",
"ru": "5",
"sv": "91",
"tr": "605",
"uk": '966',
"zh": "7",
"default": '#'
};
export const LOCALE_CODES = [
"af",
"ar-ae",
"ar-bh",
"ar-dz",
"ar-eg",
"ar-iq",
"ar-jo",
"ar-kw",
"ar-lb",
"ar-ly",
"ar-ma",
"ar-om",
"ar-qa",
"ar-sa",
"ar-sy",
"ar-tn",
"ar-ye",
"be",
"bg",
"ca",
"cs",
"da",
"de",
"de-at",
"de-ch",
"de-li",
"de-lu",
"el",
"en",
"en",
"en-au",
"en-bz",
"en-ca",
"en-gb",
"en-ie",
"en-jm",
"en-nz",
"en-tt",
"en-us",
"en-za",
"es",
"es-ar",
"es-bo",
"es-cl",
"es-co",
"es-cr",
"es-do",
"es-ec",
"es-gt",
"es-hn",
"es-mx",
"es-ni",
"es-pa",
"es-pe",
"es-pr",
"es-py",
"es-sv",
"es-uy",
"es-ve",
"et",
"eu",
"fa",
"fi",
"fo",
"fr",
"fr-be",
"fr-ca",
"fr-ch",
"fr-lu",
"ga",
"gd",
"he",
"hi",
"hr",
"hu",
"id",
"is",
"it",
"it-ch",
"ja",
"ji",
"ko",
"ko",
"lt",
"lv",
"mk",
"ms",
"mt",
"nl",
"nl-be",
"no",
"no",
"pl",
"pt",
"pt-br",
"rm",
"ro",
"ro-mo",
"ru",
"ru-mo",
"sb",
"sk",
"sl",
"sq",
"sr",
"sr",
"sv",
"sv-fi",
"sx",
"sz",
"th",
"tn",
"tr",
"ts",
"uk",
"ur",
"ve",
"vi",
"xh",
"zh-cn",
"zh-hk",
"zh-sg",
"zh-tw",
"zu"
];
|