twitter_cldr 1.5.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (203) hide show
  1. data/Gemfile +32 -0
  2. data/History.txt +78 -0
  3. data/README.md +72 -62
  4. data/Rakefile +22 -0
  5. data/js/lib/compiler.rb +40 -0
  6. data/js/lib/mustache/bundle.coffee +14 -0
  7. data/js/lib/mustache/calendars/datetime.coffee +240 -0
  8. data/js/lib/mustache/calendars/timespan.coffee +52 -0
  9. data/js/lib/mustache/plurals/rules.coffee +14 -0
  10. data/js/lib/renderers/base.rb +18 -0
  11. data/js/lib/renderers/bundle.rb +18 -0
  12. data/js/lib/renderers/calendars/datetime_renderer.rb +34 -0
  13. data/js/lib/renderers/calendars/timespan_renderer.rb +39 -0
  14. data/js/lib/renderers/plurals/rules/plural_rules_compiler.rb +89 -0
  15. data/js/lib/renderers/plurals/rules/plural_rules_renderer.rb +26 -0
  16. data/js/lib/twitter_cldr_js.rb +85 -0
  17. data/js/spec/js/calendars/datetime_spec.js +418 -0
  18. data/js/spec/js/calendars/timespan_spec.js +91 -0
  19. data/js/spec/js/plurals/plural_rules_spec.js +28 -0
  20. data/js/spec/js/support/jasmine.yml +8 -0
  21. data/js/spec/rb/renderers/plurals/plural_rules_compiler_spec.rb +52 -0
  22. data/js/spec/rb/spec_helper.rb +13 -0
  23. data/lib/twitter_cldr.rb +2 -1
  24. data/lib/twitter_cldr/collation.rb +2 -1
  25. data/lib/twitter_cldr/collation/collator.rb +49 -31
  26. data/lib/twitter_cldr/collation/{sort_key.rb → sort_key_builder.rb} +31 -8
  27. data/lib/twitter_cldr/collation/trie.rb +116 -24
  28. data/lib/twitter_cldr/collation/trie_builder.rb +54 -28
  29. data/lib/twitter_cldr/collation/trie_with_fallback.rb +55 -0
  30. data/lib/twitter_cldr/core_ext/array.rb +14 -1
  31. data/lib/twitter_cldr/core_ext/calendars/datetime.rb +8 -2
  32. data/lib/twitter_cldr/core_ext/calendars/timespan.rb +5 -5
  33. data/lib/twitter_cldr/formatters/calendars/timespan_formatter.rb +10 -10
  34. data/lib/twitter_cldr/formatters/plurals/rules.rb +3 -5
  35. data/lib/twitter_cldr/resources.rb +11 -0
  36. data/lib/twitter_cldr/resources/import.rb +12 -0
  37. data/lib/twitter_cldr/resources/import/tailoring.rb +193 -0
  38. data/lib/twitter_cldr/{shared/resources.rb → resources/loader.rb} +17 -4
  39. data/lib/twitter_cldr/shared.rb +0 -1
  40. data/lib/twitter_cldr/tokenizers/base.rb +9 -9
  41. data/lib/twitter_cldr/tokenizers/calendars/datetime_tokenizer.rb +0 -4
  42. data/lib/twitter_cldr/tokenizers/calendars/timespan_tokenizer.rb +21 -7
  43. data/lib/twitter_cldr/utils.rb +11 -0
  44. data/lib/twitter_cldr/version.rb +1 -1
  45. data/resources/collation/tailoring/af.yml +3 -0
  46. data/resources/collation/tailoring/ar.yml +21 -0
  47. data/resources/collation/tailoring/ca.yml +9 -0
  48. data/resources/collation/tailoring/cs.yml +25 -0
  49. data/resources/collation/tailoring/da.yml +59 -0
  50. data/resources/collation/tailoring/de.yml +3 -0
  51. data/resources/collation/tailoring/el.yml +3 -0
  52. data/resources/collation/tailoring/en.yml +3 -0
  53. data/resources/collation/tailoring/es.yml +5 -0
  54. data/resources/collation/tailoring/eu.yml +3 -0
  55. data/resources/collation/tailoring/fa.yml +73 -0
  56. data/resources/collation/tailoring/fi.yml +61 -0
  57. data/resources/collation/tailoring/fil.yml +11 -0
  58. data/resources/collation/tailoring/fr.yml +3 -0
  59. data/resources/collation/tailoring/he.yml +3 -0
  60. data/resources/collation/tailoring/hi.yml +7 -0
  61. data/resources/collation/tailoring/hu.yml +125 -0
  62. data/resources/collation/tailoring/id.yml +3 -0
  63. data/resources/collation/tailoring/it.yml +3 -0
  64. data/resources/collation/tailoring/ja.yml +14647 -0
  65. data/resources/collation/tailoring/ko.yml +14953 -0
  66. data/resources/collation/tailoring/ms.yml +3 -0
  67. data/resources/collation/tailoring/nb.yml +59 -0
  68. data/resources/collation/tailoring/nl.yml +3 -0
  69. data/resources/collation/tailoring/pl.yml +37 -0
  70. data/resources/collation/tailoring/pt.yml +3 -0
  71. data/resources/collation/tailoring/ru.yml +3 -0
  72. data/resources/collation/tailoring/sv.yml +63 -0
  73. data/resources/collation/tailoring/th.yml +19 -0
  74. data/resources/collation/tailoring/tr.yml +27 -0
  75. data/resources/collation/tailoring/uk.yml +5 -0
  76. data/resources/collation/tailoring/ur.yml +163 -0
  77. data/resources/collation/tailoring/zh-Hant.yml +3 -0
  78. data/resources/collation/tailoring/zh.yml +149 -0
  79. data/resources/custom/locales/af/units.yml +19 -0
  80. data/resources/custom/locales/ar/units.yml +35 -0
  81. data/resources/custom/locales/ca/units.yml +19 -0
  82. data/resources/custom/locales/cs/units.yml +23 -0
  83. data/resources/custom/locales/da/units.yml +19 -0
  84. data/resources/custom/locales/de/units.yml +19 -0
  85. data/resources/custom/locales/el/units.yml +19 -0
  86. data/resources/custom/locales/en/units.yml +18 -0
  87. data/resources/custom/locales/es/units.yml +19 -0
  88. data/resources/custom/locales/eu/units.yml +19 -0
  89. data/resources/custom/locales/fa/units.yml +15 -0
  90. data/resources/custom/locales/fi/units.yml +19 -0
  91. data/resources/custom/locales/fil/units.yml +19 -0
  92. data/resources/custom/locales/fr/units.yml +19 -0
  93. data/resources/custom/locales/he/units.yml +19 -0
  94. data/resources/custom/locales/hi/units.yml +19 -0
  95. data/resources/custom/locales/hu/units.yml +15 -0
  96. data/resources/custom/locales/id/units.yml +15 -0
  97. data/resources/custom/locales/it/units.yml +19 -0
  98. data/resources/custom/locales/ja/units.yml +15 -0
  99. data/resources/custom/locales/ko/units.yml +15 -0
  100. data/resources/custom/locales/ms/units.yml +15 -0
  101. data/resources/custom/locales/nb/units.yml +19 -0
  102. data/resources/custom/locales/nl/units.yml +19 -0
  103. data/resources/custom/locales/pl/units.yml +23 -0
  104. data/resources/custom/locales/pt/units.yml +19 -0
  105. data/resources/custom/locales/ru/units.yml +27 -0
  106. data/resources/custom/locales/sv/units.yml +19 -0
  107. data/resources/custom/locales/th/units.yml +15 -0
  108. data/resources/custom/locales/tr/units.yml +15 -0
  109. data/resources/custom/locales/uk/units.yml +27 -0
  110. data/resources/custom/locales/ur/units.yml +19 -0
  111. data/resources/custom/locales/zh-Hant/units.yml +15 -0
  112. data/resources/custom/locales/zh/units.yml +15 -0
  113. data/resources/locales/af/units.yml +112 -65
  114. data/resources/locales/ar/units.yml +196 -126
  115. data/resources/locales/ca/units.yml +112 -70
  116. data/resources/locales/cs/units.yml +140 -91
  117. data/resources/locales/da/units.yml +98 -56
  118. data/resources/locales/de/units.yml +112 -70
  119. data/resources/locales/el/units.yml +119 -84
  120. data/resources/locales/en/units.yml +84 -42
  121. data/resources/locales/es/units.yml +112 -70
  122. data/resources/locales/eu/units.yml +105 -68
  123. data/resources/locales/fa/units.yml +98 -63
  124. data/resources/locales/fi/units.yml +112 -70
  125. data/resources/locales/fil/units.yml +98 -56
  126. data/resources/locales/fr/units.yml +112 -70
  127. data/resources/locales/he/units.yml +98 -56
  128. data/resources/locales/hi/units.yml +98 -56
  129. data/resources/locales/hu/units.yml +84 -49
  130. data/resources/locales/id/units.yml +84 -49
  131. data/resources/locales/it/units.yml +98 -56
  132. data/resources/locales/ja/units.yml +84 -49
  133. data/resources/locales/ko/units.yml +84 -49
  134. data/resources/locales/ms/units.yml +112 -63
  135. data/resources/locales/nb/units.yml +106 -64
  136. data/resources/locales/nl/units.yml +98 -56
  137. data/resources/locales/pl/units.yml +181 -112
  138. data/resources/locales/pt/units.yml +112 -70
  139. data/resources/locales/ru/units.yml +168 -112
  140. data/resources/locales/sv/units.yml +112 -70
  141. data/resources/locales/th/units.yml +84 -49
  142. data/resources/locales/tr/units.yml +84 -49
  143. data/resources/locales/uk/units.yml +168 -112
  144. data/resources/locales/ur/units.yml +112 -63
  145. data/resources/locales/zh-Hant/units.yml +84 -49
  146. data/resources/locales/zh/units.yml +84 -49
  147. data/spec/collation/collation_spec.rb +1 -1
  148. data/spec/collation/collator_spec.rb +120 -48
  149. data/spec/collation/sort_key_builder_spec.rb +80 -0
  150. data/spec/collation/tailoring_spec.rb +137 -0
  151. data/spec/collation/tailoring_tests/af.txt +321 -0
  152. data/spec/collation/tailoring_tests/ar.txt +188 -0
  153. data/spec/collation/tailoring_tests/ca.txt +446 -0
  154. data/spec/collation/tailoring_tests/cs.txt +273 -0
  155. data/spec/collation/tailoring_tests/da.txt +293 -0
  156. data/spec/collation/tailoring_tests/de.txt +414 -0
  157. data/spec/collation/tailoring_tests/el.txt +228 -0
  158. data/spec/collation/tailoring_tests/en.txt +399 -0
  159. data/spec/collation/tailoring_tests/es.txt +402 -0
  160. data/spec/collation/tailoring_tests/eu.txt +183 -0
  161. data/spec/collation/tailoring_tests/fa.txt +263 -0
  162. data/spec/collation/tailoring_tests/fi.txt +389 -0
  163. data/spec/collation/tailoring_tests/fil.txt +279 -0
  164. data/spec/collation/tailoring_tests/fr.txt +363 -0
  165. data/spec/collation/tailoring_tests/he.txt +167 -0
  166. data/spec/collation/tailoring_tests/hi.txt +230 -0
  167. data/spec/collation/tailoring_tests/hu.txt +773 -0
  168. data/spec/collation/tailoring_tests/id.txt +171 -0
  169. data/spec/collation/tailoring_tests/it.txt +231 -0
  170. data/spec/collation/tailoring_tests/ja.txt +4287 -0
  171. data/spec/collation/tailoring_tests/ko.txt +1761 -0
  172. data/spec/collation/tailoring_tests/ms.txt +531 -0
  173. data/spec/collation/tailoring_tests/nb.txt +375 -0
  174. data/spec/collation/tailoring_tests/nl.txt +273 -0
  175. data/spec/collation/tailoring_tests/pl.txt +225 -0
  176. data/spec/collation/tailoring_tests/pt.txt +405 -0
  177. data/spec/collation/tailoring_tests/ru.txt +213 -0
  178. data/spec/collation/tailoring_tests/sv.txt +353 -0
  179. data/spec/collation/tailoring_tests/th.txt +239 -0
  180. data/spec/collation/tailoring_tests/tr.txt +414 -0
  181. data/spec/collation/tailoring_tests/uk.txt +218 -0
  182. data/spec/collation/tailoring_tests/ur.txt +284 -0
  183. data/spec/collation/tailoring_tests/zh-Hant.txt +626 -0
  184. data/spec/collation/tailoring_tests/zh.txt +717 -0
  185. data/spec/collation/trie_builder_spec.rb +131 -51
  186. data/spec/collation/trie_spec.rb +301 -26
  187. data/spec/collation/trie_with_fallback_spec.rb +41 -0
  188. data/spec/core_ext/array_spec.rb +46 -3
  189. data/spec/core_ext/calendars/date_spec.rb +24 -24
  190. data/spec/core_ext/calendars/datetime_spec.rb +7 -0
  191. data/spec/core_ext/calendars/time_spec.rb +2 -2
  192. data/spec/formatters/calendars/timespan_formatter_spec.rb +47 -18
  193. data/spec/formatters/plurals/rules_spec.rb +3 -11
  194. data/spec/readme_spec.rb +15 -15
  195. data/spec/resources/loader_spec.rb +94 -0
  196. data/spec/spec_helper.rb +6 -0
  197. data/spec/tokenizers/calendars/timespan_tokenizer_spec.rb +1 -1
  198. data/spec/twitter_cldr_spec.rb +3 -3
  199. data/spec/utils_spec.rb +38 -0
  200. data/twitter_cldr.gemspec +25 -0
  201. metadata +156 -110
  202. data/spec/collation/sort_key_spec.rb +0 -56
  203. data/spec/shared/resources_spec.rb +0 -75
@@ -0,0 +1,446 @@
1
+ # Pending: failures identical to ICU.
2
+
3
+ x
4
+ X
5
+ x x
6
+ x.
7
+ X.
8
+ x.x
9
+ x0
10
+ X0
11
+ x0x
12
+ x12
13
+ X12
14
+ x12x
15
+ x2
16
+ X2
17
+ x2x
18
+ xa
19
+ xA
20
+ Xa
21
+ XA
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
+ xæx
59
+ xÆx
60
+ xax
61
+ xAx
62
+ xáx
63
+ xÁx
64
+ xàx
65
+ xÀx
66
+ xăx
67
+ xĂx
68
+ xâx
69
+ xÂx
70
+ xåx
71
+ xÅx
72
+ xäx
73
+ xÄx
74
+ xãx
75
+ xÃx
76
+ xāx
77
+ xĀx
78
+ xb
79
+ xB
80
+ Xb
81
+ XB
82
+ xbx
83
+ xBx
84
+ xc
85
+ xC
86
+ Xc
87
+ XC
88
+
89
+
90
+
91
+
92
+ xcx
93
+ xCx
94
+ xçx
95
+ // xÇx
96
+ xch
97
+ xcH
98
+ xCh
99
+ xCH
100
+ Xch
101
+ XcH
102
+ XCh
103
+ XCH
104
+ xchx
105
+ xcHx
106
+ xChx
107
+ xCHx
108
+ xd
109
+ xD
110
+ Xd
111
+ XD
112
+ xdx
113
+ xDx
114
+ xe
115
+ xE
116
+ Xe
117
+ XE
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
+ xex
143
+ xEx
144
+ xéx
145
+ xÉx
146
+ xèx
147
+ xÈx
148
+ xĕx
149
+ xĔx
150
+ xêx
151
+ xÊx
152
+ xëx
153
+ xËx
154
+ xēx
155
+ xĒx
156
+ xf
157
+ xF
158
+ Xf
159
+ XF
160
+ xfx
161
+ xFx
162
+ xg
163
+ xG
164
+ Xg
165
+ XG
166
+ xgx
167
+ xGx
168
+ xh
169
+ xH
170
+ Xh
171
+ XH
172
+ xhx
173
+ xHx
174
+ xi
175
+ xI
176
+ Xi
177
+ XI
178
+
179
+
180
+
181
+
182
+
183
+
184
+
185
+
186
+
187
+
188
+
189
+
190
+
191
+
192
+
193
+
194
+
195
+
196
+
197
+
198
+
199
+
200
+
201
+
202
+ xix
203
+ xIx
204
+ xíx
205
+ xÍx
206
+ xìx
207
+ xÌx
208
+ xĭx
209
+ xĬx
210
+ xîx
211
+ xÎx
212
+ xïx
213
+ xÏx
214
+ xīx
215
+ xĪx
216
+ xj
217
+ xJ
218
+ Xj
219
+ XJ
220
+ xjx
221
+ xJx
222
+ xk
223
+ xK
224
+ Xk
225
+ XK
226
+ xkx
227
+ xKx
228
+ xl
229
+ xL
230
+ Xl
231
+ XL
232
+
233
+ xĿ
234
+
235
+ XĿ
236
+ xlx
237
+ xLx
238
+ xŀx
239
+ // xĿx
240
+ xll
241
+ // xl·l
242
+ xlL
243
+ // xl·L
244
+ xLl
245
+ // xL·l
246
+ xLL
247
+ // xL·L
248
+ Xll
249
+ // Xl·l
250
+ XlL
251
+ // Xl·L
252
+ XLl
253
+ // XL·l
254
+ XLL
255
+ XL·L
256
+ xllx
257
+ // xl·lx
258
+ xlLx
259
+ // xl·Lx
260
+ xLlx
261
+ // xL·lx
262
+ xLLx
263
+ xL·Lx
264
+ xm
265
+ xM
266
+ Xm
267
+ XM
268
+ xmx
269
+ xMx
270
+ xn
271
+ xN
272
+ Xn
273
+ XN
274
+
275
+
276
+
277
+
278
+ xnx
279
+ xNx
280
+ xñx
281
+ xÑx
282
+ xo
283
+ xO
284
+
285
+ Xo
286
+ XO
287
+
288
+
289
+
290
+
291
+
292
+
293
+
294
+
295
+
296
+
297
+
298
+
299
+
300
+
301
+
302
+
303
+
304
+
305
+
306
+
307
+
308
+
309
+
310
+
311
+
312
+
313
+
314
+
315
+
316
+
317
+
318
+
319
+
320
+ xœx
321
+ xŒx
322
+ xox
323
+ xOx
324
+ xºx
325
+ xóx
326
+ xÓx
327
+ xòx
328
+ xÒx
329
+ xŏx
330
+ xŎx
331
+ xôx
332
+ xÔx
333
+ xöx
334
+ xÖx
335
+ xøx
336
+ xØx
337
+ xōx
338
+ xŌx
339
+ xp
340
+ xP
341
+ Xp
342
+ XP
343
+ xpx
344
+ xPx
345
+ xq
346
+ xQ
347
+ Xq
348
+ XQ
349
+ xqx
350
+ xQx
351
+ xr
352
+ xR
353
+ Xr
354
+ XR
355
+ xrx
356
+ xRx
357
+ xs
358
+ xS
359
+ Xs
360
+ XS
361
+ xsx
362
+ xSx
363
+ xt
364
+ xT
365
+ Xt
366
+ XT
367
+ xtx
368
+ xTx
369
+ xu
370
+ xU
371
+ Xu
372
+ XU
373
+
374
+
375
+
376
+
377
+
378
+
379
+
380
+
381
+
382
+
383
+
384
+
385
+
386
+
387
+
388
+
389
+
390
+
391
+
392
+
393
+
394
+
395
+
396
+
397
+ xux
398
+ xUx
399
+ xúx
400
+ xÚx
401
+ xùx
402
+ xÙx
403
+ xŭx
404
+ xŬx
405
+ xûx
406
+ xÛx
407
+ xüx
408
+ xÜx
409
+ xūx
410
+ xŪx
411
+ xv
412
+ xV
413
+ Xv
414
+ XV
415
+ xvx
416
+ xVx
417
+ xw
418
+ xW
419
+ Xw
420
+ XW
421
+ xwx
422
+ xWx
423
+ xx
424
+ xX
425
+ Xx
426
+ XX
427
+ xxx
428
+ xXx
429
+ xy
430
+ xY
431
+ Xy
432
+ XY
433
+ xÿ
434
+
435
+ Xÿ
436
+
437
+ xyx
438
+ xYx
439
+ xÿx
440
+ xŸx
441
+ xz
442
+ xZ
443
+ Xz
444
+ XZ
445
+ xzx
446
+ xZx
@@ -0,0 +1,273 @@
1
+ x
2
+ X
3
+ x x
4
+ x.
5
+ X.
6
+ x.x
7
+ x0
8
+ X0
9
+ x0x
10
+ x12
11
+ X12
12
+ x12x
13
+ x2
14
+ X2
15
+ x2x
16
+ xa
17
+ xA
18
+ Xa
19
+ XA
20
+
21
+
22
+
23
+
24
+ xax
25
+ xAx
26
+ xáx
27
+ xÁx
28
+ xb
29
+ xB
30
+ Xb
31
+ XB
32
+ xbx
33
+ xBx
34
+ xc
35
+ xC
36
+ Xc
37
+ XC
38
+ xcx
39
+ xCx
40
+
41
+
42
+
43
+
44
+ xčx
45
+ xČx
46
+ xd
47
+ xD
48
+ Xd
49
+ XD
50
+
51
+
52
+
53
+
54
+ xdx
55
+ xDx
56
+ xďx
57
+ xĎx
58
+ xe
59
+ xE
60
+ Xe
61
+ XE
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+ xex
71
+ xEx
72
+ xéx
73
+ xÉx
74
+ xěx
75
+ xĚx
76
+ xf
77
+ xF
78
+ Xf
79
+ XF
80
+ xfx
81
+ xFx
82
+ xg
83
+ xG
84
+ Xg
85
+ XG
86
+ xgx
87
+ xGx
88
+ xh
89
+ xH
90
+ Xh
91
+ XH
92
+ xhx
93
+ xHx
94
+ xch
95
+ xcH
96
+ xCh
97
+ xCH
98
+ Xch
99
+ XcH
100
+ XCh
101
+ XCH
102
+ xchx
103
+ xcHx
104
+ xChx
105
+ xCHx
106
+ xi
107
+ xI
108
+ Xi
109
+ XI
110
+
111
+
112
+
113
+
114
+ xix
115
+ xIx
116
+ xíx
117
+ xÍx
118
+ xj
119
+ xJ
120
+ Xj
121
+ XJ
122
+ xjx
123
+ xJx
124
+ xk
125
+ xK
126
+ Xk
127
+ XK
128
+ xkx
129
+ xKx
130
+ xl
131
+ xL
132
+ Xl
133
+ XL
134
+ xlx
135
+ xLx
136
+ xm
137
+ xM
138
+ Xm
139
+ XM
140
+ xmx
141
+ xMx
142
+ xn
143
+ xN
144
+ Xn
145
+ XN
146
+
147
+
148
+
149
+
150
+ xnx
151
+ xNx
152
+ xňx
153
+ xŇx
154
+ xo
155
+ xO
156
+ Xo
157
+ XO
158
+
159
+
160
+
161
+
162
+ xox
163
+ xOx
164
+ xóx
165
+ xÓx
166
+ xp
167
+ xP
168
+ Xp
169
+ XP
170
+ xpx
171
+ xPx
172
+ xq
173
+ xQ
174
+ Xq
175
+ XQ
176
+ xqx
177
+ xQx
178
+ xr
179
+ xR
180
+ Xr
181
+ XR
182
+ xrx
183
+ xRx
184
+
185
+
186
+
187
+
188
+ xřx
189
+ xŘx
190
+ xs
191
+ xS
192
+ Xs
193
+ XS
194
+ xsx
195
+ xSx
196
+
197
+
198
+
199
+
200
+ xšx
201
+ xŠx
202
+ xt
203
+ xT
204
+ Xt
205
+ XT
206
+
207
+
208
+
209
+
210
+ xtx
211
+ xTx
212
+ xťx
213
+ xŤx
214
+ xu
215
+ xU
216
+ Xu
217
+ XU
218
+
219
+
220
+
221
+
222
+
223
+
224
+
225
+
226
+ xux
227
+ xUx
228
+ xúx
229
+ xÚx
230
+ xůx
231
+ xŮx
232
+ xv
233
+ xV
234
+ Xv
235
+ XV
236
+ xvx
237
+ xVx
238
+ xw
239
+ xW
240
+ Xw
241
+ XW
242
+ xwx
243
+ xWx
244
+ xx
245
+ xX
246
+ Xx
247
+ XX
248
+ xxx
249
+ xXx
250
+ xy
251
+ xY
252
+ Xy
253
+ XY
254
+
255
+
256
+
257
+
258
+ xyx
259
+ xYx
260
+ xýx
261
+ xÝx
262
+ xz
263
+ xZ
264
+ Xz
265
+ XZ
266
+ xzx
267
+ xZx
268
+
269
+
270
+
271
+
272
+ xžx
273
+ xŽx