twitter_cldr 3.2.1 → 3.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1172) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +9 -4
  3. data/History.txt +11 -0
  4. data/README.md +40 -3
  5. data/Rakefile +26 -21
  6. data/lib/twitter_cldr/collation/collator.rb +3 -3
  7. data/lib/twitter_cldr/collation/sort_key_builder.rb +10 -10
  8. data/lib/twitter_cldr/data_readers/calendar_data_reader.rb +8 -8
  9. data/lib/twitter_cldr/data_readers/date_time_data_reader.rb +2 -2
  10. data/lib/twitter_cldr/data_readers/number_data_reader.rb +10 -10
  11. data/lib/twitter_cldr/data_readers/timespan_data_reader.rb +27 -27
  12. data/lib/twitter_cldr/formatters/list_formatter.rb +1 -1
  13. data/lib/twitter_cldr/formatters/numbers/currency_formatter.rb +3 -3
  14. data/lib/twitter_cldr/formatters/numbers/helpers/integer.rb +7 -5
  15. data/lib/twitter_cldr/formatters/numbers/rbnf/formatters.rb +1 -1
  16. data/lib/twitter_cldr/formatters/numbers/rbnf/rule.rb +1 -1
  17. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_set.rb +3 -2
  18. data/lib/twitter_cldr/formatters/numbers/rbnf.rb +2 -2
  19. data/lib/twitter_cldr/formatters/plurals/rules.rb +1 -1
  20. data/lib/twitter_cldr/localized/localized_date.rb +2 -2
  21. data/lib/twitter_cldr/localized/localized_datetime.rb +8 -8
  22. data/lib/twitter_cldr/localized/localized_number.rb +7 -7
  23. data/lib/twitter_cldr/localized/localized_string.rb +33 -1
  24. data/lib/twitter_cldr/localized/localized_symbol.rb +9 -1
  25. data/lib/twitter_cldr/localized/localized_time.rb +2 -2
  26. data/lib/twitter_cldr/localized/localized_timespan.rb +10 -10
  27. data/lib/twitter_cldr/parsers/number_parser.rb +1 -1
  28. data/lib/twitter_cldr/parsers/parser.rb +5 -1
  29. data/lib/twitter_cldr/parsers/unicode_regex/character_class.rb +41 -2
  30. data/lib/twitter_cldr/parsers/unicode_regex/character_range.rb +8 -0
  31. data/lib/twitter_cldr/parsers/unicode_regex/character_set.rb +66 -23
  32. data/lib/twitter_cldr/parsers/unicode_regex/literal.rb +4 -0
  33. data/lib/twitter_cldr/parsers/unicode_regex/unicode_string.rb +6 -3
  34. data/lib/twitter_cldr/parsers/unicode_regex_parser.rb +65 -32
  35. data/lib/twitter_cldr/parsers.rb +1 -2
  36. data/lib/twitter_cldr/resources/custom_locales_resources_importer.rb +4 -4
  37. data/lib/twitter_cldr/resources/download.rb +13 -6
  38. data/lib/twitter_cldr/resources/language_codes_importer.rb +7 -7
  39. data/lib/twitter_cldr/resources/loader.rb +4 -1
  40. data/lib/twitter_cldr/resources/locales_resources_importer.rb +30 -12
  41. data/lib/twitter_cldr/resources/postal_codes_importer.rb +32 -22
  42. data/lib/twitter_cldr/resources/properties/age_property_importer.rb +27 -0
  43. data/lib/twitter_cldr/resources/properties/arabic_shaping_property_importer.rb +42 -0
  44. data/lib/twitter_cldr/resources/properties/bidi_brackets_property_importer.rb +41 -0
  45. data/lib/twitter_cldr/resources/properties/blocks_property_importer.rb +27 -0
  46. data/lib/twitter_cldr/resources/properties/derived_core_properties_importer.rb +36 -0
  47. data/lib/twitter_cldr/resources/properties/east_asian_width_property_importer.rb +27 -0
  48. data/lib/twitter_cldr/resources/properties/grapheme_break_property_importer.rb +27 -0
  49. data/lib/twitter_cldr/resources/properties/hangul_syllable_type_property_importer.rb +27 -0
  50. data/lib/twitter_cldr/resources/properties/indic_positional_category_property_importer.rb +27 -0
  51. data/lib/twitter_cldr/resources/properties/indic_syllabic_category_property_importer.rb +27 -0
  52. data/lib/twitter_cldr/resources/properties/jamo_property_importer.rb +27 -0
  53. data/lib/twitter_cldr/resources/properties/line_break_property_importer.rb +27 -0
  54. data/lib/twitter_cldr/resources/properties/prop_list_importer.rb +36 -0
  55. data/lib/twitter_cldr/resources/properties/properties_importer.rb +59 -0
  56. data/lib/twitter_cldr/resources/properties/property_importer.rb +83 -0
  57. data/lib/twitter_cldr/resources/properties/script_extensions_property_importer.rb +40 -0
  58. data/lib/twitter_cldr/resources/properties/script_property_importer.rb +27 -0
  59. data/lib/twitter_cldr/resources/properties/sentence_break_property_importer.rb +27 -0
  60. data/lib/twitter_cldr/resources/properties/unicode_data_properties_importer.rb +60 -0
  61. data/lib/twitter_cldr/resources/properties/word_break_property_importer.rb +27 -0
  62. data/lib/twitter_cldr/resources/properties.rb +36 -0
  63. data/lib/twitter_cldr/resources/readme_renderer.rb +2 -2
  64. data/lib/twitter_cldr/resources/segment_tests_importer.rb +66 -0
  65. data/lib/twitter_cldr/resources/tailoring_importer.rb +7 -7
  66. data/lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb +1 -1
  67. data/lib/twitter_cldr/resources/unicode_data_importer.rb +19 -60
  68. data/lib/twitter_cldr/resources/unicode_property_aliases_importer.rb +97 -0
  69. data/lib/twitter_cldr/resources.rb +21 -22
  70. data/lib/twitter_cldr/segmentation/break_iterator.rb +54 -0
  71. data/lib/twitter_cldr/segmentation/cursor.rb +34 -0
  72. data/lib/twitter_cldr/segmentation/parser.rb +71 -0
  73. data/lib/twitter_cldr/segmentation/rule.rb +79 -0
  74. data/lib/twitter_cldr/segmentation/rule_set.rb +116 -0
  75. data/lib/twitter_cldr/segmentation/rule_set_builder.rb +142 -0
  76. data/lib/twitter_cldr/segmentation.rb +17 -0
  77. data/lib/twitter_cldr/shared/bidi.rb +4 -4
  78. data/lib/twitter_cldr/shared/calendar.rb +11 -11
  79. data/lib/twitter_cldr/shared/caser.rb +84 -0
  80. data/lib/twitter_cldr/shared/code_point.rb +101 -139
  81. data/lib/twitter_cldr/shared/currencies.rb +5 -5
  82. data/lib/twitter_cldr/shared/language_codes.rb +2 -2
  83. data/lib/twitter_cldr/shared/languages.rb +1 -1
  84. data/lib/twitter_cldr/shared/likely_subtags.rb +104 -0
  85. data/lib/twitter_cldr/shared/locale.rb +252 -0
  86. data/lib/twitter_cldr/shared/postal_codes.rb +21 -9
  87. data/lib/twitter_cldr/shared/properties/arabic_shaping.rb +40 -0
  88. data/lib/twitter_cldr/shared/properties/bidi_brackets.rb +28 -0
  89. data/lib/twitter_cldr/shared/properties.rb +13 -0
  90. data/lib/twitter_cldr/shared/properties_database.rb +180 -0
  91. data/lib/twitter_cldr/shared/property_name_aliases.rb +48 -0
  92. data/lib/twitter_cldr/shared/property_normalizer.rb +108 -0
  93. data/lib/twitter_cldr/shared/property_set.rb +113 -0
  94. data/lib/twitter_cldr/shared/property_value_aliases.rb +99 -0
  95. data/lib/twitter_cldr/shared/unicode_regex.rb +29 -3
  96. data/lib/twitter_cldr/shared.rb +9 -1
  97. data/lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb +1 -1
  98. data/lib/twitter_cldr/tokenizers/token.rb +1 -1
  99. data/lib/twitter_cldr/tokenizers/tokenizer.rb +15 -13
  100. data/lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb +4 -4
  101. data/lib/twitter_cldr/utils/file_system_trie.rb +145 -0
  102. data/lib/twitter_cldr/utils/range_set.rb +131 -31
  103. data/lib/twitter_cldr/utils/regexp_sampler.rb +0 -1
  104. data/lib/twitter_cldr/utils/script_detector.rb +75 -0
  105. data/lib/twitter_cldr/utils/yaml.rb +3 -3
  106. data/lib/twitter_cldr/utils.rb +8 -5
  107. data/lib/twitter_cldr/version.rb +1 -1
  108. data/lib/twitter_cldr/versions.rb +30 -0
  109. data/lib/twitter_cldr.rb +8 -10
  110. data/resources/locales/af/calendars.yml +8 -8
  111. data/resources/locales/af/lists.yml +8 -4
  112. data/resources/locales/af/numbers.yml +54 -30
  113. data/resources/locales/ar/lists.yml +8 -4
  114. data/resources/locales/ar/numbers.yml +48 -24
  115. data/resources/locales/be/calendars.yml +4 -4
  116. data/resources/locales/be/lists.yml +2 -1
  117. data/resources/locales/be/numbers.yml +24 -12
  118. data/resources/locales/bg/calendars.yml +8 -8
  119. data/resources/locales/bg/lists.yml +8 -4
  120. data/resources/locales/bg/numbers.yml +48 -24
  121. data/resources/locales/bn/lists.yml +8 -4
  122. data/resources/locales/bn/numbers.yml +48 -24
  123. data/resources/locales/ca/calendars.yml +8 -8
  124. data/resources/locales/ca/lists.yml +8 -4
  125. data/resources/locales/ca/numbers.yml +48 -24
  126. data/resources/locales/cs/calendars.yml +32 -32
  127. data/resources/locales/cs/lists.yml +8 -4
  128. data/resources/locales/cs/numbers.yml +48 -24
  129. data/resources/locales/cy/calendars.yml +8 -8
  130. data/resources/locales/cy/lists.yml +6 -3
  131. data/resources/locales/cy/numbers.yml +48 -24
  132. data/resources/locales/da/calendars.yml +10 -10
  133. data/resources/locales/da/lists.yml +8 -4
  134. data/resources/locales/da/numbers.yml +48 -24
  135. data/resources/locales/de/calendars.yml +8 -8
  136. data/resources/locales/de/lists.yml +8 -4
  137. data/resources/locales/de/numbers.yml +48 -24
  138. data/resources/locales/de-CH/calendars.yml +8 -8
  139. data/resources/locales/de-CH/lists.yml +8 -4
  140. data/resources/locales/de-CH/numbers.yml +48 -24
  141. data/resources/locales/el/calendars.yml +8 -8
  142. data/resources/locales/el/lists.yml +8 -4
  143. data/resources/locales/el/numbers.yml +48 -24
  144. data/resources/locales/en/calendars.yml +4 -4
  145. data/resources/locales/en/lists.yml +8 -4
  146. data/resources/locales/en/numbers.yml +48 -24
  147. data/resources/locales/en-150/calendars.yml +4 -4
  148. data/resources/locales/en-150/lists.yml +8 -4
  149. data/resources/locales/en-150/numbers.yml +48 -24
  150. data/resources/locales/en-AU/calendars.yml +4 -4
  151. data/resources/locales/en-AU/lists.yml +8 -4
  152. data/resources/locales/en-AU/numbers.yml +48 -24
  153. data/resources/locales/en-CA/calendars.yml +4 -4
  154. data/resources/locales/en-CA/lists.yml +8 -4
  155. data/resources/locales/en-CA/numbers.yml +48 -24
  156. data/resources/locales/en-GB/calendars.yml +4 -4
  157. data/resources/locales/en-GB/lists.yml +8 -4
  158. data/resources/locales/en-GB/numbers.yml +48 -24
  159. data/resources/locales/en-IE/calendars.yml +4 -4
  160. data/resources/locales/en-IE/lists.yml +8 -4
  161. data/resources/locales/en-IE/numbers.yml +48 -24
  162. data/resources/locales/en-SG/calendars.yml +4 -4
  163. data/resources/locales/en-SG/lists.yml +8 -4
  164. data/resources/locales/en-SG/numbers.yml +48 -24
  165. data/resources/locales/en-ZA/calendars.yml +4 -4
  166. data/resources/locales/en-ZA/lists.yml +8 -4
  167. data/resources/locales/en-ZA/numbers.yml +48 -24
  168. data/resources/locales/es/lists.yml +8 -4
  169. data/resources/locales/es/numbers.yml +48 -24
  170. data/resources/locales/es-419/calendars.yml +8 -8
  171. data/resources/locales/es-419/lists.yml +8 -4
  172. data/resources/locales/es-419/numbers.yml +50 -26
  173. data/resources/locales/es-CO/lists.yml +8 -4
  174. data/resources/locales/es-CO/numbers.yml +48 -24
  175. data/resources/locales/es-MX/lists.yml +8 -4
  176. data/resources/locales/es-MX/numbers.yml +48 -24
  177. data/resources/locales/es-US/lists.yml +8 -4
  178. data/resources/locales/es-US/numbers.yml +48 -24
  179. data/resources/locales/eu/calendars.yml +8 -8
  180. data/resources/locales/eu/lists.yml +8 -4
  181. data/resources/locales/eu/numbers.yml +48 -24
  182. data/resources/locales/fa/lists.yml +8 -4
  183. data/resources/locales/fa/numbers.yml +48 -24
  184. data/resources/locales/fi/calendars.yml +8 -8
  185. data/resources/locales/fi/lists.yml +8 -4
  186. data/resources/locales/fi/numbers.yml +48 -24
  187. data/resources/locales/fil/calendars.yml +8 -8
  188. data/resources/locales/fil/lists.yml +8 -4
  189. data/resources/locales/fil/numbers.yml +48 -24
  190. data/resources/locales/fr/calendars.yml +8 -8
  191. data/resources/locales/fr/lists.yml +8 -4
  192. data/resources/locales/fr/numbers.yml +48 -24
  193. data/resources/locales/fr-BE/calendars.yml +8 -8
  194. data/resources/locales/fr-BE/lists.yml +8 -4
  195. data/resources/locales/fr-BE/numbers.yml +48 -24
  196. data/resources/locales/fr-CA/calendars.yml +8 -8
  197. data/resources/locales/fr-CA/lists.yml +8 -4
  198. data/resources/locales/fr-CA/numbers.yml +48 -24
  199. data/resources/locales/fr-CH/calendars.yml +8 -8
  200. data/resources/locales/fr-CH/lists.yml +8 -4
  201. data/resources/locales/fr-CH/numbers.yml +48 -24
  202. data/resources/locales/ga/calendars.yml +8 -8
  203. data/resources/locales/ga/lists.yml +8 -4
  204. data/resources/locales/ga/numbers.yml +48 -24
  205. data/resources/locales/gl/calendars.yml +8 -8
  206. data/resources/locales/gl/lists.yml +8 -4
  207. data/resources/locales/gl/numbers.yml +48 -24
  208. data/resources/locales/he/calendars.yml +28 -28
  209. data/resources/locales/he/lists.yml +8 -4
  210. data/resources/locales/he/numbers.yml +48 -24
  211. data/resources/locales/hi/calendars.yml +8 -8
  212. data/resources/locales/hi/lists.yml +8 -4
  213. data/resources/locales/hi/numbers.yml +48 -24
  214. data/resources/locales/hr/lists.yml +8 -4
  215. data/resources/locales/hr/numbers.yml +48 -24
  216. data/resources/locales/hu/lists.yml +8 -4
  217. data/resources/locales/hu/numbers.yml +48 -24
  218. data/resources/locales/id/calendars.yml +8 -8
  219. data/resources/locales/id/lists.yml +8 -4
  220. data/resources/locales/id/numbers.yml +49 -25
  221. data/resources/locales/is/calendars.yml +8 -8
  222. data/resources/locales/is/lists.yml +8 -4
  223. data/resources/locales/is/numbers.yml +48 -24
  224. data/resources/locales/it/calendars.yml +8 -8
  225. data/resources/locales/it/lists.yml +8 -4
  226. data/resources/locales/it/numbers.yml +54 -30
  227. data/resources/locales/it-CH/calendars.yml +8 -8
  228. data/resources/locales/it-CH/lists.yml +8 -4
  229. data/resources/locales/it-CH/numbers.yml +54 -30
  230. data/resources/locales/ja/calendars.yml +32 -32
  231. data/resources/locales/ja/lists.yml +8 -4
  232. data/resources/locales/ja/numbers.yml +48 -24
  233. data/resources/locales/ko/calendars.yml +8 -8
  234. data/resources/locales/ko/lists.yml +8 -4
  235. data/resources/locales/ko/numbers.yml +48 -24
  236. data/resources/locales/lv/lists.yml +8 -4
  237. data/resources/locales/lv/numbers.yml +48 -24
  238. data/resources/locales/ms/calendars.yml +8 -8
  239. data/resources/locales/ms/lists.yml +8 -4
  240. data/resources/locales/ms/numbers.yml +48 -24
  241. data/resources/locales/nb/calendars.yml +9 -9
  242. data/resources/locales/nb/lists.yml +8 -4
  243. data/resources/locales/nb/numbers.yml +48 -24
  244. data/resources/locales/nl/calendars.yml +8 -8
  245. data/resources/locales/nl/lists.yml +8 -4
  246. data/resources/locales/nl/numbers.yml +48 -24
  247. data/resources/locales/pl/calendars.yml +8 -8
  248. data/resources/locales/pl/lists.yml +8 -4
  249. data/resources/locales/pl/numbers.yml +48 -24
  250. data/resources/locales/pt/calendars.yml +8 -8
  251. data/resources/locales/pt/lists.yml +8 -4
  252. data/resources/locales/pt/numbers.yml +48 -24
  253. data/resources/locales/ro/calendars.yml +8 -8
  254. data/resources/locales/ro/lists.yml +8 -4
  255. data/resources/locales/ro/numbers.yml +48 -24
  256. data/resources/locales/ru/calendars.yml +8 -8
  257. data/resources/locales/ru/lists.yml +8 -4
  258. data/resources/locales/ru/numbers.yml +48 -24
  259. data/resources/locales/sk/calendars.yml +8 -8
  260. data/resources/locales/sk/lists.yml +8 -4
  261. data/resources/locales/sk/numbers.yml +48 -24
  262. data/resources/locales/sq/calendars.yml +8 -8
  263. data/resources/locales/sq/lists.yml +8 -4
  264. data/resources/locales/sq/numbers.yml +48 -24
  265. data/resources/locales/sr/lists.yml +8 -4
  266. data/resources/locales/sr/numbers.yml +48 -24
  267. data/resources/locales/sv/calendars.yml +10 -10
  268. data/resources/locales/sv/lists.yml +8 -4
  269. data/resources/locales/sv/numbers.yml +48 -24
  270. data/resources/locales/ta/calendars.yml +8 -8
  271. data/resources/locales/ta/lists.yml +8 -4
  272. data/resources/locales/ta/numbers.yml +48 -24
  273. data/resources/locales/th/calendars.yml +8 -8
  274. data/resources/locales/th/lists.yml +8 -4
  275. data/resources/locales/th/numbers.yml +48 -24
  276. data/resources/locales/tr/lists.yml +8 -4
  277. data/resources/locales/tr/numbers.yml +50 -26
  278. data/resources/locales/uk/calendars.yml +8 -8
  279. data/resources/locales/uk/lists.yml +8 -4
  280. data/resources/locales/uk/numbers.yml +48 -24
  281. data/resources/locales/ur/calendars.yml +8 -8
  282. data/resources/locales/ur/lists.yml +8 -4
  283. data/resources/locales/ur/numbers.yml +48 -24
  284. data/resources/locales/vi/calendars.yml +32 -32
  285. data/resources/locales/vi/lists.yml +8 -4
  286. data/resources/locales/vi/numbers.yml +48 -24
  287. data/resources/locales/zh/calendars.yml +32 -32
  288. data/resources/locales/zh/lists.yml +8 -4
  289. data/resources/locales/zh/numbers.yml +48 -24
  290. data/resources/locales/zh-Hant/calendars.yml +32 -32
  291. data/resources/locales/zh-Hant/lists.yml +8 -4
  292. data/resources/locales/zh-Hant/numbers.yml +48 -24
  293. data/resources/shared/aliases.yml +1351 -0
  294. data/resources/shared/likely_subtags.yml +1149 -0
  295. data/resources/shared/postal_codes.yml +486 -289
  296. data/resources/shared/segments/segments_root.yml +57 -57
  297. data/resources/shared/segments/tests/sentence_break_test.yml +527 -0
  298. data/resources/shared/segments/tests/word_break_test.yml +1379 -0
  299. data/resources/shared/territories_containment.yml +25 -17
  300. data/resources/shared/variables.yml +1194 -0
  301. data/resources/unicode_data/blocks/ahom.yml +913 -0
  302. data/resources/unicode_data/blocks/anatolian_hieroglyphs.yml +9329 -0
  303. data/resources/unicode_data/blocks/arabic.yml +16 -0
  304. data/resources/unicode_data/blocks/arabic_presentation_forms_a.yml +2 -2
  305. data/resources/unicode_data/blocks/bassa_vah.yml +577 -0
  306. data/resources/unicode_data/blocks/buginese.yml +2 -2
  307. data/resources/unicode_data/blocks/caucasian_albanian.yml +849 -0
  308. data/resources/unicode_data/blocks/cherokee_supplement.yml +1281 -0
  309. data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_e.yml +33 -0
  310. data/resources/unicode_data/blocks/combining_diacritical_marks_extended.yml +241 -0
  311. data/resources/unicode_data/blocks/coptic_epact_numbers.yml +449 -0
  312. data/resources/unicode_data/blocks/cuneiform_numbers_and_punctuation.yml +2 -2
  313. data/resources/unicode_data/blocks/duployan.yml +2289 -0
  314. data/resources/unicode_data/blocks/early_dynastic_cuneiform.yml +3137 -0
  315. data/resources/unicode_data/blocks/elbasan.yml +641 -0
  316. data/resources/unicode_data/blocks/general_punctuation.yml +64 -0
  317. data/resources/unicode_data/blocks/geometric_shapes_extended.yml +1361 -0
  318. data/resources/unicode_data/blocks/grantha.yml +1361 -0
  319. data/resources/unicode_data/blocks/gujarati.yml +0 -16
  320. data/resources/unicode_data/blocks/hatran.yml +417 -0
  321. data/resources/unicode_data/blocks/kannada.yml +0 -16
  322. data/resources/unicode_data/blocks/khojki.yml +977 -0
  323. data/resources/unicode_data/blocks/khudawadi.yml +1105 -0
  324. data/resources/unicode_data/blocks/latin_extended_e.yml +865 -0
  325. data/resources/unicode_data/blocks/linear_a.yml +5457 -0
  326. data/resources/unicode_data/blocks/mahajani.yml +625 -0
  327. data/resources/unicode_data/blocks/manichaean.yml +817 -0
  328. data/resources/unicode_data/blocks/mende_kikakui.yml +3409 -0
  329. data/resources/unicode_data/blocks/miscellaneous_technical.yml +4 -4
  330. data/resources/unicode_data/blocks/modi.yml +1265 -0
  331. data/resources/unicode_data/blocks/mongolian.yml +2 -2
  332. data/resources/unicode_data/blocks/mro.yml +689 -0
  333. data/resources/unicode_data/blocks/multani.yml +609 -0
  334. data/resources/unicode_data/blocks/myanmar_extended_b.yml +497 -0
  335. data/resources/unicode_data/blocks/nabataean.yml +641 -0
  336. data/resources/unicode_data/blocks/old_hungarian.yml +1729 -0
  337. data/resources/unicode_data/blocks/old_north_arabian.yml +513 -0
  338. data/resources/unicode_data/blocks/old_permic.yml +689 -0
  339. data/resources/unicode_data/blocks/ornamental_dingbats.yml +769 -0
  340. data/resources/unicode_data/blocks/pahawh_hmong.yml +2033 -0
  341. data/resources/unicode_data/blocks/palmyrene.yml +513 -0
  342. data/resources/unicode_data/blocks/pau_cin_hau.yml +913 -0
  343. data/resources/unicode_data/blocks/psalter_pahlavi.yml +465 -0
  344. data/resources/unicode_data/blocks/shorthand_format_controls.yml +65 -0
  345. data/resources/unicode_data/blocks/siddham.yml +1473 -0
  346. data/resources/unicode_data/blocks/sinhala_archaic_numbers.yml +321 -0
  347. data/resources/unicode_data/blocks/supplemental_arrows_c.yml +2369 -0
  348. data/resources/unicode_data/blocks/supplemental_symbols_and_pictographs.yml +241 -0
  349. data/resources/unicode_data/blocks/sutton_signwriting.yml +10753 -0
  350. data/resources/unicode_data/blocks/tirhuta.yml +1313 -0
  351. data/resources/unicode_data/blocks/warang_citi.yml +1345 -0
  352. data/resources/unicode_data/properties/ASCII_Hex_Digit/value.dump +5 -0
  353. data/resources/unicode_data/properties/Age/1.1/value.dump +0 -0
  354. data/resources/unicode_data/properties/Age/2.0/value.dump +0 -0
  355. data/resources/unicode_data/properties/Age/2.1/value.dump +4 -0
  356. data/resources/unicode_data/properties/Age/3.0/value.dump +0 -0
  357. data/resources/unicode_data/properties/Age/3.1/value.dump +0 -0
  358. data/resources/unicode_data/properties/Age/3.2/value.dump +0 -0
  359. data/resources/unicode_data/properties/Age/4.0/value.dump +0 -0
  360. data/resources/unicode_data/properties/Age/4.1/value.dump +0 -0
  361. data/resources/unicode_data/properties/Age/5.0/value.dump +0 -0
  362. data/resources/unicode_data/properties/Age/5.1/value.dump +0 -0
  363. data/resources/unicode_data/properties/Age/5.2/value.dump +0 -0
  364. data/resources/unicode_data/properties/Age/6.0/value.dump +0 -0
  365. data/resources/unicode_data/properties/Age/6.1/value.dump +0 -0
  366. data/resources/unicode_data/properties/Age/6.2/value.dump +3 -0
  367. data/resources/unicode_data/properties/Age/6.3/value.dump +4 -0
  368. data/resources/unicode_data/properties/Alphabetic/value.dump +0 -0
  369. data/resources/unicode_data/properties/Bidi_Class/AL/value.dump +0 -0
  370. data/resources/unicode_data/properties/Bidi_Class/AN/value.dump +0 -0
  371. data/resources/unicode_data/properties/Bidi_Class/B/value.dump +8 -0
  372. data/resources/unicode_data/properties/Bidi_Class/BN/value.dump +0 -0
  373. data/resources/unicode_data/properties/Bidi_Class/CS/value.dump +15 -0
  374. data/resources/unicode_data/properties/Bidi_Class/EN/value.dump +0 -0
  375. data/resources/unicode_data/properties/Bidi_Class/ES/value.dump +11 -0
  376. data/resources/unicode_data/properties/Bidi_Class/ET/value.dump +27 -0
  377. data/resources/unicode_data/properties/Bidi_Class/FSI/value.dump +3 -0
  378. data/resources/unicode_data/properties/Bidi_Class/L/value.dump +0 -0
  379. data/resources/unicode_data/properties/Bidi_Class/LRE/value.dump +3 -0
  380. data/resources/unicode_data/properties/Bidi_Class/LRI/value.dump +3 -0
  381. data/resources/unicode_data/properties/Bidi_Class/LRO/value.dump +3 -0
  382. data/resources/unicode_data/properties/Bidi_Class/NSM/value.dump +0 -0
  383. data/resources/unicode_data/properties/Bidi_Class/ON/value.dump +0 -0
  384. data/resources/unicode_data/properties/Bidi_Class/PDF/value.dump +3 -0
  385. data/resources/unicode_data/properties/Bidi_Class/PDI/value.dump +3 -0
  386. data/resources/unicode_data/properties/Bidi_Class/R/value.dump +0 -0
  387. data/resources/unicode_data/properties/Bidi_Class/RLE/value.dump +3 -0
  388. data/resources/unicode_data/properties/Bidi_Class/RLI/value.dump +3 -0
  389. data/resources/unicode_data/properties/Bidi_Class/RLO/value.dump +3 -0
  390. data/resources/unicode_data/properties/Bidi_Class/S/value.dump +5 -0
  391. data/resources/unicode_data/properties/Bidi_Class/WS/value.dump +0 -0
  392. data/resources/unicode_data/properties/Bidi_Control/value.dump +4 -0
  393. data/resources/unicode_data/properties/Bidi_Mirrored/N/value.dump +0 -0
  394. data/resources/unicode_data/properties/Bidi_Mirrored/Y/value.dump +115 -0
  395. data/resources/unicode_data/properties/Block/Aegean Numbers/value.dump +0 -0
  396. data/resources/unicode_data/properties/Block/Alchemical Symbols/value.dump +0 -0
  397. data/resources/unicode_data/properties/Block/Alphabetic Presentation Forms/value.dump +0 -0
  398. data/resources/unicode_data/properties/Block/Ancient Greek Musical Notation/value.dump +0 -0
  399. data/resources/unicode_data/properties/Block/Ancient Greek Numbers/value.dump +3 -0
  400. data/resources/unicode_data/properties/Block/Ancient Symbols/value.dump +3 -0
  401. data/resources/unicode_data/properties/Block/Arabic/value.dump +0 -0
  402. data/resources/unicode_data/properties/Block/Arabic Extended-A/value.dump +3 -0
  403. data/resources/unicode_data/properties/Block/Arabic Mathematical Alphabetic Symbols/value.dump +0 -0
  404. data/resources/unicode_data/properties/Block/Arabic Presentation Forms-A/value.dump +3 -0
  405. data/resources/unicode_data/properties/Block/Arabic Presentation Forms-B/value.dump +3 -0
  406. data/resources/unicode_data/properties/Block/Arabic Supplement/value.dump +3 -0
  407. data/resources/unicode_data/properties/Block/Armenian/value.dump +3 -0
  408. data/resources/unicode_data/properties/Block/Arrows/value.dump +3 -0
  409. data/resources/unicode_data/properties/Block/Avestan/value.dump +0 -0
  410. data/resources/unicode_data/properties/Block/Balinese/value.dump +0 -0
  411. data/resources/unicode_data/properties/Block/Bamum/value.dump +3 -0
  412. data/resources/unicode_data/properties/Block/Bamum Supplement/value.dump +0 -0
  413. data/resources/unicode_data/properties/Block/Basic Latin/value.dump +0 -0
  414. data/resources/unicode_data/properties/Block/Batak/value.dump +3 -0
  415. data/resources/unicode_data/properties/Block/Bengali/value.dump +3 -0
  416. data/resources/unicode_data/properties/Block/Block Elements/value.dump +3 -0
  417. data/resources/unicode_data/properties/Block/Bopomofo/value.dump +0 -0
  418. data/resources/unicode_data/properties/Block/Bopomofo Extended/value.dump +3 -0
  419. data/resources/unicode_data/properties/Block/Box Drawing/value.dump +0 -0
  420. data/resources/unicode_data/properties/Block/Brahmi/value.dump +0 -0
  421. data/resources/unicode_data/properties/Block/Braille Patterns/value.dump +0 -0
  422. data/resources/unicode_data/properties/Block/Buginese/value.dump +0 -0
  423. data/resources/unicode_data/properties/Block/Buhid/value.dump +3 -0
  424. data/resources/unicode_data/properties/Block/Byzantine Musical Symbols/value.dump +0 -0
  425. data/resources/unicode_data/properties/Block/CJK Compatibility/value.dump +0 -0
  426. data/resources/unicode_data/properties/Block/CJK Compatibility Forms/value.dump +3 -0
  427. data/resources/unicode_data/properties/Block/CJK Compatibility Ideographs/value.dump +0 -0
  428. data/resources/unicode_data/properties/Block/CJK Compatibility Ideographs Supplement/value.dump +0 -0
  429. data/resources/unicode_data/properties/Block/CJK Radicals Supplement/value.dump +3 -0
  430. data/resources/unicode_data/properties/Block/CJK Strokes/value.dump +3 -0
  431. Punctuation/value.dump +0 -0
  432. data/resources/unicode_data/properties/Block/CJK Unified Ideographs/value.dump +0 -0
  433. data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension A/value.dump +0 -0
  434. data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension B/value.dump +0 -0
  435. data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension C/value.dump +0 -0
  436. data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension D/value.dump +3 -0
  437. data/resources/unicode_data/properties/Block/Carian/value.dump +3 -0
  438. data/resources/unicode_data/properties/Block/Chakma/value.dump +0 -0
  439. data/resources/unicode_data/properties/Block/Cham/value.dump +0 -0
  440. data/resources/unicode_data/properties/Block/Cherokee/value.dump +3 -0
  441. data/resources/unicode_data/properties/Block/Combining Diacritical Marks/value.dump +0 -0
  442. data/resources/unicode_data/properties/Block/Combining Diacritical Marks Supplement/value.dump +3 -0
  443. data/resources/unicode_data/properties/Block/Combining Diacritical Marks for Symbols/value.dump +3 -0
  444. data/resources/unicode_data/properties/Block/Combining Half Marks/value.dump +3 -0
  445. data/resources/unicode_data/properties/Block/Common Indic Number Forms/value.dump +3 -0
  446. data/resources/unicode_data/properties/Block/Control Pictures/value.dump +0 -0
  447. data/resources/unicode_data/properties/Block/Coptic/value.dump +3 -0
  448. data/resources/unicode_data/properties/Block/Counting Rod Numerals/value.dump +3 -0
  449. data/resources/unicode_data/properties/Block/Cuneiform/value.dump +0 -0
  450. Punctuation/value.dump +0 -0
  451. data/resources/unicode_data/properties/Block/Currency Symbols/value.dump +3 -0
  452. data/resources/unicode_data/properties/Block/Cypriot Syllabary/value.dump +0 -0
  453. data/resources/unicode_data/properties/Block/Cyrillic/value.dump +0 -0
  454. data/resources/unicode_data/properties/Block/Cyrillic Extended-A/value.dump +3 -0
  455. data/resources/unicode_data/properties/Block/Cyrillic Extended-B/value.dump +3 -0
  456. data/resources/unicode_data/properties/Block/Cyrillic Supplement/value.dump +0 -0
  457. data/resources/unicode_data/properties/Block/Deseret/value.dump +0 -0
  458. data/resources/unicode_data/properties/Block/Devanagari/value.dump +0 -0
  459. data/resources/unicode_data/properties/Block/Devanagari Extended/value.dump +3 -0
  460. data/resources/unicode_data/properties/Block/Dingbats/value.dump +0 -0
  461. data/resources/unicode_data/properties/Block/Domino Tiles/value.dump +3 -0
  462. data/resources/unicode_data/properties/Block/Egyptian Hieroglyphs/value.dump +0 -0
  463. data/resources/unicode_data/properties/Block/Emoticons/value.dump +0 -0
  464. data/resources/unicode_data/properties/Block/Enclosed Alphanumeric Supplement/value.dump +0 -0
  465. data/resources/unicode_data/properties/Block/Enclosed Alphanumerics/value.dump +3 -0
  466. Months/value.dump +0 -0
  467. data/resources/unicode_data/properties/Block/Enclosed Ideographic Supplement/value.dump +0 -0
  468. data/resources/unicode_data/properties/Block/Ethiopic/value.dump +0 -0
  469. data/resources/unicode_data/properties/Block/Ethiopic Extended/value.dump +3 -0
  470. data/resources/unicode_data/properties/Block/Ethiopic Extended-A/value.dump +0 -0
  471. data/resources/unicode_data/properties/Block/Ethiopic Supplement/value.dump +3 -0
  472. data/resources/unicode_data/properties/Block/General Punctuation/value.dump +0 -0
  473. data/resources/unicode_data/properties/Block/Geometric Shapes/value.dump +3 -0
  474. data/resources/unicode_data/properties/Block/Georgian/value.dump +3 -0
  475. data/resources/unicode_data/properties/Block/Georgian Supplement/value.dump +0 -0
  476. data/resources/unicode_data/properties/Block/Glagolitic/value.dump +0 -0
  477. data/resources/unicode_data/properties/Block/Gothic/value.dump +3 -0
  478. data/resources/unicode_data/properties/Block/Greek Extended/value.dump +0 -0
  479. data/resources/unicode_data/properties/Block/Greek and Coptic/value.dump +3 -0
  480. data/resources/unicode_data/properties/Block/Gujarati/value.dump +4 -0
  481. data/resources/unicode_data/properties/Block/Gurmukhi/value.dump +0 -0
  482. Fullwidth Forms/value.dump +0 -0
  483. data/resources/unicode_data/properties/Block/Hangul Compatibility Jamo/value.dump +3 -0
  484. data/resources/unicode_data/properties/Block/Hangul Jamo/value.dump +0 -0
  485. data/resources/unicode_data/properties/Block/Hangul Jamo Extended-A/value.dump +3 -0
  486. data/resources/unicode_data/properties/Block/Hangul Jamo Extended-B/value.dump +3 -0
  487. data/resources/unicode_data/properties/Block/Hangul Syllables/value.dump +0 -0
  488. data/resources/unicode_data/properties/Block/Hanunoo/value.dump +3 -0
  489. data/resources/unicode_data/properties/Block/Hebrew/value.dump +3 -0
  490. data/resources/unicode_data/properties/Block/High Private Use Surrogates/value.dump +3 -0
  491. data/resources/unicode_data/properties/Block/High Surrogates/value.dump +0 -0
  492. data/resources/unicode_data/properties/Block/Hiragana/value.dump +3 -0
  493. data/resources/unicode_data/properties/Block/IPA Extensions/value.dump +3 -0
  494. data/resources/unicode_data/properties/Block/Ideographic Description Characters/value.dump +3 -0
  495. data/resources/unicode_data/properties/Block/Imperial Aramaic/value.dump +3 -0
  496. data/resources/unicode_data/properties/Block/Inscriptional Pahlavi/value.dump +3 -0
  497. data/resources/unicode_data/properties/Block/Inscriptional Parthian/value.dump +3 -0
  498. data/resources/unicode_data/properties/Block/Javanese/value.dump +3 -0
  499. data/resources/unicode_data/properties/Block/Kaithi/value.dump +3 -0
  500. data/resources/unicode_data/properties/Block/Kana Supplement/value.dump +0 -0
  501. data/resources/unicode_data/properties/Block/Kanbun/value.dump +3 -0
  502. data/resources/unicode_data/properties/Block/Kangxi Radicals/value.dump +0 -0
  503. data/resources/unicode_data/properties/Block/Kannada/value.dump +3 -0
  504. data/resources/unicode_data/properties/Block/Katakana/value.dump +3 -0
  505. data/resources/unicode_data/properties/Block/Katakana Phonetic Extensions/value.dump +3 -0
  506. data/resources/unicode_data/properties/Block/Kayah Li/value.dump +0 -0
  507. data/resources/unicode_data/properties/Block/Kharoshthi/value.dump +0 -0
  508. data/resources/unicode_data/properties/Block/Khmer/value.dump +3 -0
  509. data/resources/unicode_data/properties/Block/Khmer Symbols/value.dump +3 -0
  510. data/resources/unicode_data/properties/Block/Lao/value.dump +3 -0
  511. data/resources/unicode_data/properties/Block/Latin Extended Additional/value.dump +0 -0
  512. data/resources/unicode_data/properties/Block/Latin Extended-A/value.dump +0 -0
  513. data/resources/unicode_data/properties/Block/Latin Extended-B/value.dump +3 -0
  514. data/resources/unicode_data/properties/Block/Latin Extended-C/value.dump +3 -0
  515. data/resources/unicode_data/properties/Block/Latin Extended-D/value.dump +3 -0
  516. data/resources/unicode_data/properties/Block/Latin-1 Supplement/value.dump +3 -0
  517. data/resources/unicode_data/properties/Block/Lepcha/value.dump +0 -0
  518. data/resources/unicode_data/properties/Block/Letterlike Symbols/value.dump +0 -0
  519. data/resources/unicode_data/properties/Block/Limbu/value.dump +0 -0
  520. data/resources/unicode_data/properties/Block/Linear B Ideograms/value.dump +0 -0
  521. data/resources/unicode_data/properties/Block/Linear B Syllabary/value.dump +0 -0
  522. data/resources/unicode_data/properties/Block/Lisu/value.dump +3 -0
  523. data/resources/unicode_data/properties/Block/Low Surrogates/value.dump +0 -0
  524. data/resources/unicode_data/properties/Block/Lycian/value.dump +3 -0
  525. data/resources/unicode_data/properties/Block/Lydian/value.dump +3 -0
  526. data/resources/unicode_data/properties/Block/Mahjong Tiles/value.dump +0 -0
  527. data/resources/unicode_data/properties/Block/Malayalam/value.dump +0 -0
  528. data/resources/unicode_data/properties/Block/Mandaic/value.dump +3 -0
  529. data/resources/unicode_data/properties/Block/Mathematical Alphanumeric Symbols/value.dump +0 -0
  530. data/resources/unicode_data/properties/Block/Mathematical Operators/value.dump +0 -0
  531. data/resources/unicode_data/properties/Block/Meetei Mayek/value.dump +3 -0
  532. data/resources/unicode_data/properties/Block/Meetei Mayek Extensions/value.dump +3 -0
  533. data/resources/unicode_data/properties/Block/Meroitic Cursive/value.dump +3 -0
  534. data/resources/unicode_data/properties/Block/Meroitic Hieroglyphs/value.dump +3 -0
  535. data/resources/unicode_data/properties/Block/Miao/value.dump +0 -0
  536. data/resources/unicode_data/properties/Block/Miscellaneous Mathematical Symbols-A/value.dump +3 -0
  537. data/resources/unicode_data/properties/Block/Miscellaneous Mathematical Symbols-B/value.dump +3 -0
  538. data/resources/unicode_data/properties/Block/Miscellaneous Symbols/value.dump +0 -0
  539. data/resources/unicode_data/properties/Block/Miscellaneous Symbols And Pictographs/value.dump +0 -0
  540. Arrows/value.dump +0 -0
  541. data/resources/unicode_data/properties/Block/Miscellaneous Technical/value.dump +0 -0
  542. data/resources/unicode_data/properties/Block/Modifier Tone Letters/value.dump +0 -0
  543. data/resources/unicode_data/properties/Block/Mongolian/value.dump +0 -0
  544. data/resources/unicode_data/properties/Block/Musical Symbols/value.dump +0 -0
  545. data/resources/unicode_data/properties/Block/Myanmar/value.dump +0 -0
  546. data/resources/unicode_data/properties/Block/Myanmar Extended-A/value.dump +3 -0
  547. data/resources/unicode_data/properties/Block/NKo/value.dump +3 -0
  548. data/resources/unicode_data/properties/Block/New Tai Lue/value.dump +3 -0
  549. data/resources/unicode_data/properties/Block/Number Forms/value.dump +3 -0
  550. data/resources/unicode_data/properties/Block/Ogham/value.dump +3 -0
  551. data/resources/unicode_data/properties/Block/Ol Chiki/value.dump +3 -0
  552. data/resources/unicode_data/properties/Block/Old Italic/value.dump +0 -0
  553. data/resources/unicode_data/properties/Block/Old Persian/value.dump +3 -0
  554. data/resources/unicode_data/properties/Block/Old South Arabian/value.dump +5 -0
  555. data/resources/unicode_data/properties/Block/Old Turkic/value.dump +0 -0
  556. data/resources/unicode_data/properties/Block/Optical Character Recognition/value.dump +3 -0
  557. data/resources/unicode_data/properties/Block/Oriya/value.dump +0 -0
  558. data/resources/unicode_data/properties/Block/Osmanya/value.dump +3 -0
  559. data/resources/unicode_data/properties/Block/Phags-pa/value.dump +3 -0
  560. data/resources/unicode_data/properties/Block/Phaistos Disc/value.dump +3 -0
  561. data/resources/unicode_data/properties/Block/Phoenician/value.dump +0 -0
  562. data/resources/unicode_data/properties/Block/Phonetic Extensions/value.dump +0 -0
  563. data/resources/unicode_data/properties/Block/Phonetic Extensions Supplement/value.dump +3 -0
  564. data/resources/unicode_data/properties/Block/Playing Cards/value.dump +3 -0
  565. data/resources/unicode_data/properties/Block/Private Use Area/value.dump +0 -0
  566. data/resources/unicode_data/properties/Block/Rejang/value.dump +3 -0
  567. data/resources/unicode_data/properties/Block/Rumi Numeral Symbols/value.dump +3 -0
  568. data/resources/unicode_data/properties/Block/Runic/value.dump +3 -0
  569. data/resources/unicode_data/properties/Block/Samaritan/value.dump +0 -0
  570. data/resources/unicode_data/properties/Block/Saurashtra/value.dump +3 -0
  571. data/resources/unicode_data/properties/Block/Sharada/value.dump +3 -0
  572. data/resources/unicode_data/properties/Block/Shavian/value.dump +3 -0
  573. data/resources/unicode_data/properties/Block/Sinhala/value.dump +3 -0
  574. data/resources/unicode_data/properties/Block/Small Form Variants/value.dump +3 -0
  575. data/resources/unicode_data/properties/Block/Sora Sompeng/value.dump +3 -0
  576. data/resources/unicode_data/properties/Block/Spacing Modifier Letters/value.dump +3 -0
  577. data/resources/unicode_data/properties/Block/Specials/value.dump +3 -0
  578. data/resources/unicode_data/properties/Block/Sundanese/value.dump +3 -0
  579. data/resources/unicode_data/properties/Block/Sundanese Supplement/value.dump +3 -0
  580. data/resources/unicode_data/properties/Block/Superscripts and Subscripts/value.dump +3 -0
  581. data/resources/unicode_data/properties/Block/Supplemental Arrows-A/value.dump +3 -0
  582. data/resources/unicode_data/properties/Block/Supplemental Arrows-B/value.dump +0 -0
  583. data/resources/unicode_data/properties/Block/Supplemental Mathematical Operators/value.dump +0 -0
  584. data/resources/unicode_data/properties/Block/Supplemental Punctuation/value.dump +0 -0
  585. data/resources/unicode_data/properties/Block/Supplementary Private Use Area-A/value.dump +0 -0
  586. data/resources/unicode_data/properties/Block/Supplementary Private Use Area-B/value.dump +0 -0
  587. data/resources/unicode_data/properties/Block/Syloti Nagri/value.dump +0 -0
  588. data/resources/unicode_data/properties/Block/Syriac/value.dump +0 -0
  589. data/resources/unicode_data/properties/Block/Tagalog/value.dump +0 -0
  590. data/resources/unicode_data/properties/Block/Tagbanwa/value.dump +3 -0
  591. data/resources/unicode_data/properties/Block/Tags/value.dump +0 -0
  592. data/resources/unicode_data/properties/Block/Tai Le/value.dump +3 -0
  593. data/resources/unicode_data/properties/Block/Tai Tham/value.dump +3 -0
  594. data/resources/unicode_data/properties/Block/Tai Viet/value.dump +3 -0
  595. data/resources/unicode_data/properties/Block/Tai Xuan Jing Symbols/value.dump +0 -0
  596. data/resources/unicode_data/properties/Block/Takri/value.dump +3 -0
  597. data/resources/unicode_data/properties/Block/Tamil/value.dump +3 -0
  598. data/resources/unicode_data/properties/Block/Telugu/value.dump +0 -0
  599. data/resources/unicode_data/properties/Block/Thaana/value.dump +3 -0
  600. data/resources/unicode_data/properties/Block/Thai/value.dump +0 -0
  601. data/resources/unicode_data/properties/Block/Tibetan/value.dump +0 -0
  602. data/resources/unicode_data/properties/Block/Tifinagh/value.dump +3 -0
  603. data/resources/unicode_data/properties/Block/Transport And Map Symbols/value.dump +3 -0
  604. data/resources/unicode_data/properties/Block/Ugaritic/value.dump +3 -0
  605. data/resources/unicode_data/properties/Block/Unified Canadian Aboriginal Syllabics/value.dump +0 -0
  606. data/resources/unicode_data/properties/Block/Unified Canadian Aboriginal Syllabics Extended/value.dump +3 -0
  607. data/resources/unicode_data/properties/Block/Vai/value.dump +0 -0
  608. data/resources/unicode_data/properties/Block/Variation Selectors/value.dump +0 -0
  609. data/resources/unicode_data/properties/Block/Variation Selectors Supplement/value.dump +0 -0
  610. data/resources/unicode_data/properties/Block/Vedic Extensions/value.dump +3 -0
  611. data/resources/unicode_data/properties/Block/Vertical Forms/value.dump +3 -0
  612. data/resources/unicode_data/properties/Block/Yi Radicals/value.dump +3 -0
  613. data/resources/unicode_data/properties/Block/Yi Syllables/value.dump +0 -0
  614. data/resources/unicode_data/properties/Block/Yijing Hexagram Symbols/value.dump +3 -0
  615. data/resources/unicode_data/properties/Canonical_Combining_Class/0/value.dump +0 -0
  616. data/resources/unicode_data/properties/Canonical_Combining_Class/1/value.dump +13 -0
  617. data/resources/unicode_data/properties/Canonical_Combining_Class/10/value.dump +3 -0
  618. data/resources/unicode_data/properties/Canonical_Combining_Class/103/value.dump +3 -0
  619. data/resources/unicode_data/properties/Canonical_Combining_Class/107/value.dump +3 -0
  620. data/resources/unicode_data/properties/Canonical_Combining_Class/11/value.dump +3 -0
  621. data/resources/unicode_data/properties/Canonical_Combining_Class/118/value.dump +3 -0
  622. data/resources/unicode_data/properties/Canonical_Combining_Class/12/value.dump +3 -0
  623. data/resources/unicode_data/properties/Canonical_Combining_Class/122/value.dump +3 -0
  624. data/resources/unicode_data/properties/Canonical_Combining_Class/129/value.dump +3 -0
  625. data/resources/unicode_data/properties/Canonical_Combining_Class/13/value.dump +3 -0
  626. data/resources/unicode_data/properties/Canonical_Combining_Class/130/value.dump +5 -0
  627. data/resources/unicode_data/properties/Canonical_Combining_Class/132/value.dump +3 -0
  628. data/resources/unicode_data/properties/Canonical_Combining_Class/14/value.dump +3 -0
  629. data/resources/unicode_data/properties/Canonical_Combining_Class/15/value.dump +3 -0
  630. data/resources/unicode_data/properties/Canonical_Combining_Class/16/value.dump +3 -0
  631. data/resources/unicode_data/properties/Canonical_Combining_Class/17/value.dump +3 -0
  632. data/resources/unicode_data/properties/Canonical_Combining_Class/18/value.dump +4 -0
  633. data/resources/unicode_data/properties/Canonical_Combining_Class/19/value.dump +3 -0
  634. data/resources/unicode_data/properties/Canonical_Combining_Class/20/value.dump +3 -0
  635. data/resources/unicode_data/properties/Canonical_Combining_Class/202/value.dump +5 -0
  636. data/resources/unicode_data/properties/Canonical_Combining_Class/21/value.dump +3 -0
  637. data/resources/unicode_data/properties/Canonical_Combining_Class/214/value.dump +3 -0
  638. data/resources/unicode_data/properties/Canonical_Combining_Class/216/value.dump +6 -0
  639. data/resources/unicode_data/properties/Canonical_Combining_Class/218/value.dump +3 -0
  640. data/resources/unicode_data/properties/Canonical_Combining_Class/22/value.dump +3 -0
  641. data/resources/unicode_data/properties/Canonical_Combining_Class/220/value.dump +70 -0
  642. data/resources/unicode_data/properties/Canonical_Combining_Class/222/value.dump +6 -0
  643. data/resources/unicode_data/properties/Canonical_Combining_Class/224/value.dump +3 -0
  644. data/resources/unicode_data/properties/Canonical_Combining_Class/226/value.dump +3 -0
  645. data/resources/unicode_data/properties/Canonical_Combining_Class/228/value.dump +5 -0
  646. data/resources/unicode_data/properties/Canonical_Combining_Class/23/value.dump +3 -0
  647. data/resources/unicode_data/properties/Canonical_Combining_Class/230/value.dump +0 -0
  648. data/resources/unicode_data/properties/Canonical_Combining_Class/232/value.dump +6 -0
  649. data/resources/unicode_data/properties/Canonical_Combining_Class/233/value.dump +6 -0
  650. data/resources/unicode_data/properties/Canonical_Combining_Class/234/value.dump +5 -0
  651. data/resources/unicode_data/properties/Canonical_Combining_Class/24/value.dump +3 -0
  652. data/resources/unicode_data/properties/Canonical_Combining_Class/240/value.dump +3 -0
  653. data/resources/unicode_data/properties/Canonical_Combining_Class/25/value.dump +3 -0
  654. data/resources/unicode_data/properties/Canonical_Combining_Class/26/value.dump +3 -0
  655. data/resources/unicode_data/properties/Canonical_Combining_Class/27/value.dump +4 -0
  656. data/resources/unicode_data/properties/Canonical_Combining_Class/28/value.dump +4 -0
  657. data/resources/unicode_data/properties/Canonical_Combining_Class/29/value.dump +4 -0
  658. data/resources/unicode_data/properties/Canonical_Combining_Class/30/value.dump +4 -0
  659. data/resources/unicode_data/properties/Canonical_Combining_Class/31/value.dump +4 -0
  660. data/resources/unicode_data/properties/Canonical_Combining_Class/32/value.dump +4 -0
  661. data/resources/unicode_data/properties/Canonical_Combining_Class/33/value.dump +3 -0
  662. data/resources/unicode_data/properties/Canonical_Combining_Class/34/value.dump +3 -0
  663. data/resources/unicode_data/properties/Canonical_Combining_Class/35/value.dump +3 -0
  664. data/resources/unicode_data/properties/Canonical_Combining_Class/36/value.dump +3 -0
  665. data/resources/unicode_data/properties/Canonical_Combining_Class/7/value.dump +19 -0
  666. data/resources/unicode_data/properties/Canonical_Combining_Class/8/value.dump +3 -0
  667. data/resources/unicode_data/properties/Canonical_Combining_Class/84/value.dump +3 -0
  668. data/resources/unicode_data/properties/Canonical_Combining_Class/9/value.dump +41 -0
  669. data/resources/unicode_data/properties/Canonical_Combining_Class/91/value.dump +3 -0
  670. data/resources/unicode_data/properties/Case_Ignorable/value.dump +0 -0
  671. data/resources/unicode_data/properties/Cased/value.dump +0 -0
  672. data/resources/unicode_data/properties/Changes_When_Casefolded/value.dump +0 -0
  673. data/resources/unicode_data/properties/Changes_When_Casemapped/value.dump +0 -0
  674. data/resources/unicode_data/properties/Changes_When_Lowercased/value.dump +0 -0
  675. data/resources/unicode_data/properties/Changes_When_Titlecased/value.dump +589 -0
  676. data/resources/unicode_data/properties/Changes_When_Uppercased/value.dump +588 -0
  677. data/resources/unicode_data/properties/Dash/value.dump +0 -0
  678. data/resources/unicode_data/properties/Default_Ignorable_Code_Point/value.dump +0 -0
  679. data/resources/unicode_data/properties/Deprecated/value.dump +0 -0
  680. data/resources/unicode_data/properties/Diacritic/value.dump +135 -0
  681. data/resources/unicode_data/properties/East_Asian_Width/A/value.dump +0 -0
  682. data/resources/unicode_data/properties/East_Asian_Width/F/value.dump +0 -0
  683. data/resources/unicode_data/properties/East_Asian_Width/H/value.dump +9 -0
  684. data/resources/unicode_data/properties/East_Asian_Width/N/value.dump +0 -0
  685. data/resources/unicode_data/properties/East_Asian_Width/Na/value.dump +9 -0
  686. data/resources/unicode_data/properties/East_Asian_Width/W/value.dump +0 -0
  687. data/resources/unicode_data/properties/Extender/value.dump +26 -0
  688. data/resources/unicode_data/properties/General_Category/C/c/value.dump +0 -0
  689. data/resources/unicode_data/properties/General_Category/C/f/value.dump +0 -0
  690. data/resources/unicode_data/properties/General_Category/C/o/value.dump +0 -0
  691. data/resources/unicode_data/properties/General_Category/C/s/value.dump +0 -0
  692. data/resources/unicode_data/properties/General_Category/L/l/value.dump +0 -0
  693. data/resources/unicode_data/properties/General_Category/L/m/value.dump +54 -0
  694. data/resources/unicode_data/properties/General_Category/L/o/value.dump +0 -0
  695. data/resources/unicode_data/properties/General_Category/L/t/value.dump +12 -0
  696. data/resources/unicode_data/properties/General_Category/L/u/value.dump +0 -0
  697. data/resources/unicode_data/properties/General_Category/M/c/value.dump +0 -0
  698. data/resources/unicode_data/properties/General_Category/M/e/value.dump +6 -0
  699. data/resources/unicode_data/properties/General_Category/M/n/value.dump +0 -0
  700. data/resources/unicode_data/properties/General_Category/N/d/value.dump +0 -0
  701. data/resources/unicode_data/properties/General_Category/N/l/value.dump +0 -0
  702. data/resources/unicode_data/properties/General_Category/N/o/value.dump +0 -0
  703. data/resources/unicode_data/properties/General_Category/P/c/value.dump +8 -0
  704. data/resources/unicode_data/properties/General_Category/P/d/value.dump +0 -0
  705. data/resources/unicode_data/properties/General_Category/P/e/value.dump +72 -0
  706. data/resources/unicode_data/properties/General_Category/P/f/value.dump +14 -0
  707. data/resources/unicode_data/properties/General_Category/P/i/value.dump +13 -0
  708. data/resources/unicode_data/properties/General_Category/P/o/value.dump +0 -0
  709. data/resources/unicode_data/properties/General_Category/P/s/value.dump +76 -0
  710. data/resources/unicode_data/properties/General_Category/S/c/value.dump +21 -0
  711. data/resources/unicode_data/properties/General_Category/S/k/value.dump +0 -0
  712. data/resources/unicode_data/properties/General_Category/S/m/value.dump +0 -0
  713. data/resources/unicode_data/properties/General_Category/S/o/value.dump +0 -0
  714. data/resources/unicode_data/properties/General_Category/Z/l/value.dump +3 -0
  715. data/resources/unicode_data/properties/General_Category/Z/p/value.dump +3 -0
  716. data/resources/unicode_data/properties/General_Category/Z/s/value.dump +0 -0
  717. data/resources/unicode_data/properties/Grapheme_Base/value.dump +0 -0
  718. data/resources/unicode_data/properties/Grapheme_Cluster_Break/CR/value.dump +3 -0
  719. data/resources/unicode_data/properties/Grapheme_Cluster_Break/Control/value.dump +0 -0
  720. data/resources/unicode_data/properties/Grapheme_Cluster_Break/Extend/value.dump +0 -0
  721. data/resources/unicode_data/properties/Grapheme_Cluster_Break/L/value.dump +0 -0
  722. data/resources/unicode_data/properties/Grapheme_Cluster_Break/LF/value.dump +3 -0
  723. data/resources/unicode_data/properties/Grapheme_Cluster_Break/LV/value.dump +0 -0
  724. data/resources/unicode_data/properties/Grapheme_Cluster_Break/LVT/value.dump +401 -0
  725. data/resources/unicode_data/properties/Grapheme_Cluster_Break/Regional_Indicator/value.dump +3 -0
  726. data/resources/unicode_data/properties/Grapheme_Cluster_Break/SpacingMark/value.dump +0 -0
  727. data/resources/unicode_data/properties/Grapheme_Cluster_Break/T/value.dump +4 -0
  728. data/resources/unicode_data/properties/Grapheme_Cluster_Break/V/value.dump +4 -0
  729. data/resources/unicode_data/properties/Grapheme_Extend/value.dump +0 -0
  730. data/resources/unicode_data/properties/Grapheme_Link/value.dump +41 -0
  731. data/resources/unicode_data/properties/Hangul_Syllable_Type/L/value.dump +0 -0
  732. data/resources/unicode_data/properties/Hangul_Syllable_Type/LV/value.dump +0 -0
  733. data/resources/unicode_data/properties/Hangul_Syllable_Type/LVT/value.dump +401 -0
  734. data/resources/unicode_data/properties/Hangul_Syllable_Type/T/value.dump +4 -0
  735. data/resources/unicode_data/properties/Hangul_Syllable_Type/V/value.dump +4 -0
  736. data/resources/unicode_data/properties/Hex_Digit/value.dump +8 -0
  737. data/resources/unicode_data/properties/Hyphen/value.dump +12 -0
  738. data/resources/unicode_data/properties/IDS_Binary_Operator/value.dump +4 -0
  739. data/resources/unicode_data/properties/IDS_Trinary_Operator/value.dump +3 -0
  740. data/resources/unicode_data/properties/ID_Continue/value.dump +0 -0
  741. data/resources/unicode_data/properties/ID_Start/value.dump +0 -0
  742. data/resources/unicode_data/properties/Ideographic/value.dump +0 -0
  743. data/resources/unicode_data/properties/Indic_Positional_Category/Bottom/value.dump +78 -0
  744. data/resources/unicode_data/properties/Indic_Positional_Category/Bottom_And_Right/value.dump +4 -0
  745. data/resources/unicode_data/properties/Indic_Positional_Category/Invisible/value.dump +10 -0
  746. data/resources/unicode_data/properties/Indic_Positional_Category/Left/value.dump +36 -0
  747. data/resources/unicode_data/properties/Indic_Positional_Category/Left_And_Right/value.dump +10 -0
  748. data/resources/unicode_data/properties/Indic_Positional_Category/Overstruck/value.dump +8 -0
  749. data/resources/unicode_data/properties/Indic_Positional_Category/Right/value.dump +86 -0
  750. data/resources/unicode_data/properties/Indic_Positional_Category/Top/value.dump +91 -0
  751. data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Bottom/value.dump +8 -0
  752. data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Bottom_And_Right/value.dump +3 -0
  753. data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Left/value.dump +6 -0
  754. data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Left_And_Right/value.dump +4 -0
  755. data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Right/value.dump +12 -0
  756. data/resources/unicode_data/properties/Indic_Positional_Category/Visual_Order_Left/value.dump +8 -0
  757. data/resources/unicode_data/properties/Indic_Syllabic_Category/Avagraha/value.dump +15 -0
  758. data/resources/unicode_data/properties/Indic_Syllabic_Category/Bindu/value.dump +0 -0
  759. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant/value.dump +0 -0
  760. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Dead/value.dump +4 -0
  761. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Final/value.dump +13 -0
  762. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Head_Letter/value.dump +3 -0
  763. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Medial/value.dump +12 -0
  764. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Placeholder/value.dump +0 -0
  765. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Repha/value.dump +8 -0
  766. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Subjoined/value.dump +11 -0
  767. data/resources/unicode_data/properties/Indic_Syllabic_Category/Modifying_Letter/value.dump +3 -0
  768. data/resources/unicode_data/properties/Indic_Syllabic_Category/Nukta/value.dump +18 -0
  769. data/resources/unicode_data/properties/Indic_Syllabic_Category/Register_Shifter/value.dump +3 -0
  770. data/resources/unicode_data/properties/Indic_Syllabic_Category/Tone_Letter/value.dump +5 -0
  771. data/resources/unicode_data/properties/Indic_Syllabic_Category/Tone_Mark/value.dump +17 -0
  772. data/resources/unicode_data/properties/Indic_Syllabic_Category/Virama/value.dump +41 -0
  773. data/resources/unicode_data/properties/Indic_Syllabic_Category/Visarga/value.dump +32 -0
  774. data/resources/unicode_data/properties/Indic_Syllabic_Category/Vowel/value.dump +6 -0
  775. data/resources/unicode_data/properties/Indic_Syllabic_Category/Vowel_Dependent/value.dump +112 -0
  776. data/resources/unicode_data/properties/Indic_Syllabic_Category/Vowel_Independent/value.dump +0 -0
  777. data/resources/unicode_data/properties/Jamo_Short_Name/A/value.dump +3 -0
  778. data/resources/unicode_data/properties/Jamo_Short_Name/AE/value.dump +3 -0
  779. data/resources/unicode_data/properties/Jamo_Short_Name/B/value.dump +4 -0
  780. data/resources/unicode_data/properties/Jamo_Short_Name/BB/value.dump +3 -0
  781. data/resources/unicode_data/properties/Jamo_Short_Name/BS/value.dump +3 -0
  782. data/resources/unicode_data/properties/Jamo_Short_Name/C/value.dump +4 -0
  783. data/resources/unicode_data/properties/Jamo_Short_Name/D/value.dump +4 -0
  784. data/resources/unicode_data/properties/Jamo_Short_Name/DD/value.dump +3 -0
  785. data/resources/unicode_data/properties/Jamo_Short_Name/E/value.dump +3 -0
  786. data/resources/unicode_data/properties/Jamo_Short_Name/EO/value.dump +3 -0
  787. data/resources/unicode_data/properties/Jamo_Short_Name/EU/value.dump +3 -0
  788. data/resources/unicode_data/properties/Jamo_Short_Name/G/value.dump +0 -0
  789. data/resources/unicode_data/properties/Jamo_Short_Name/GG/value.dump +4 -0
  790. data/resources/unicode_data/properties/Jamo_Short_Name/GS/value.dump +3 -0
  791. data/resources/unicode_data/properties/Jamo_Short_Name/H/value.dump +4 -0
  792. data/resources/unicode_data/properties/Jamo_Short_Name/I/value.dump +3 -0
  793. data/resources/unicode_data/properties/Jamo_Short_Name/J/value.dump +4 -0
  794. data/resources/unicode_data/properties/Jamo_Short_Name/JJ/value.dump +3 -0
  795. data/resources/unicode_data/properties/Jamo_Short_Name/K/value.dump +4 -0
  796. data/resources/unicode_data/properties/Jamo_Short_Name/L/value.dump +3 -0
  797. data/resources/unicode_data/properties/Jamo_Short_Name/LB/value.dump +3 -0
  798. data/resources/unicode_data/properties/Jamo_Short_Name/LG/value.dump +3 -0
  799. data/resources/unicode_data/properties/Jamo_Short_Name/LH/value.dump +3 -0
  800. data/resources/unicode_data/properties/Jamo_Short_Name/LM/value.dump +3 -0
  801. data/resources/unicode_data/properties/Jamo_Short_Name/LP/value.dump +3 -0
  802. data/resources/unicode_data/properties/Jamo_Short_Name/LS/value.dump +3 -0
  803. data/resources/unicode_data/properties/Jamo_Short_Name/LT/value.dump +3 -0
  804. data/resources/unicode_data/properties/Jamo_Short_Name/M/value.dump +4 -0
  805. data/resources/unicode_data/properties/Jamo_Short_Name/N/value.dump +4 -0
  806. data/resources/unicode_data/properties/Jamo_Short_Name/NG/value.dump +3 -0
  807. data/resources/unicode_data/properties/Jamo_Short_Name/NH/value.dump +3 -0
  808. data/resources/unicode_data/properties/Jamo_Short_Name/NJ/value.dump +3 -0
  809. data/resources/unicode_data/properties/Jamo_Short_Name/O/value.dump +3 -0
  810. data/resources/unicode_data/properties/Jamo_Short_Name/OE/value.dump +3 -0
  811. data/resources/unicode_data/properties/Jamo_Short_Name/P/value.dump +4 -0
  812. data/resources/unicode_data/properties/Jamo_Short_Name/R/value.dump +3 -0
  813. data/resources/unicode_data/properties/Jamo_Short_Name/S/value.dump +4 -0
  814. data/resources/unicode_data/properties/Jamo_Short_Name/SS/value.dump +6 -0
  815. data/resources/unicode_data/properties/Jamo_Short_Name/T/value.dump +4 -0
  816. data/resources/unicode_data/properties/Jamo_Short_Name/U/value.dump +3 -0
  817. data/resources/unicode_data/properties/Jamo_Short_Name/WA/value.dump +3 -0
  818. data/resources/unicode_data/properties/Jamo_Short_Name/WAE/value.dump +3 -0
  819. data/resources/unicode_data/properties/Jamo_Short_Name/WE/value.dump +3 -0
  820. data/resources/unicode_data/properties/Jamo_Short_Name/WEO/value.dump +3 -0
  821. data/resources/unicode_data/properties/Jamo_Short_Name/WI/value.dump +3 -0
  822. data/resources/unicode_data/properties/Jamo_Short_Name/YA/value.dump +3 -0
  823. data/resources/unicode_data/properties/Jamo_Short_Name/YAE/value.dump +3 -0
  824. data/resources/unicode_data/properties/Jamo_Short_Name/YE/value.dump +3 -0
  825. data/resources/unicode_data/properties/Jamo_Short_Name/YEO/value.dump +3 -0
  826. data/resources/unicode_data/properties/Jamo_Short_Name/YI/value.dump +3 -0
  827. data/resources/unicode_data/properties/Jamo_Short_Name/YO/value.dump +3 -0
  828. data/resources/unicode_data/properties/Jamo_Short_Name/YU/value.dump +3 -0
  829. data/resources/unicode_data/properties/Jamo_Short_Name/value.dump +3 -0
  830. data/resources/unicode_data/properties/Join_Control/value.dump +3 -0
  831. data/resources/unicode_data/properties/Line_Break/AI/value.dump +0 -0
  832. data/resources/unicode_data/properties/Line_Break/AL/value.dump +0 -0
  833. data/resources/unicode_data/properties/Line_Break/B2/value.dump +4 -0
  834. data/resources/unicode_data/properties/Line_Break/BA/value.dump +0 -0
  835. data/resources/unicode_data/properties/Line_Break/BB/value.dump +15 -0
  836. data/resources/unicode_data/properties/Line_Break/BK/value.dump +4 -0
  837. data/resources/unicode_data/properties/Line_Break/CB/value.dump +3 -0
  838. data/resources/unicode_data/properties/Line_Break/CJ/value.dump +27 -0
  839. data/resources/unicode_data/properties/Line_Break/CL/value.dump +81 -0
  840. data/resources/unicode_data/properties/Line_Break/CM/value.dump +0 -0
  841. data/resources/unicode_data/properties/Line_Break/CP/value.dump +4 -0
  842. data/resources/unicode_data/properties/Line_Break/CR/value.dump +3 -0
  843. data/resources/unicode_data/properties/Line_Break/EX/value.dump +24 -0
  844. data/resources/unicode_data/properties/Line_Break/GL/value.dump +13 -0
  845. data/resources/unicode_data/properties/Line_Break/H2/value.dump +0 -0
  846. data/resources/unicode_data/properties/Line_Break/H3/value.dump +401 -0
  847. data/resources/unicode_data/properties/Line_Break/HL/value.dump +12 -0
  848. data/resources/unicode_data/properties/Line_Break/HY/value.dump +3 -0
  849. data/resources/unicode_data/properties/Line_Break/ID/value.dump +0 -0
  850. data/resources/unicode_data/properties/Line_Break/IN/value.dump +4 -0
  851. data/resources/unicode_data/properties/Line_Break/IS/value.dump +12 -0
  852. data/resources/unicode_data/properties/Line_Break/JL/value.dump +0 -0
  853. data/resources/unicode_data/properties/Line_Break/JT/value.dump +4 -0
  854. data/resources/unicode_data/properties/Line_Break/JV/value.dump +4 -0
  855. data/resources/unicode_data/properties/Line_Break/LF/value.dump +3 -0
  856. data/resources/unicode_data/properties/Line_Break/NL/value.dump +3 -0
  857. data/resources/unicode_data/properties/Line_Break/NS/value.dump +17 -0
  858. data/resources/unicode_data/properties/Line_Break/NU/value.dump +0 -0
  859. data/resources/unicode_data/properties/Line_Break/OP/value.dump +83 -0
  860. data/resources/unicode_data/properties/Line_Break/PO/value.dump +20 -0
  861. data/resources/unicode_data/properties/Line_Break/PR/value.dump +24 -0
  862. data/resources/unicode_data/properties/Line_Break/QU/value.dump +0 -0
  863. data/resources/unicode_data/properties/Line_Break/RI/value.dump +3 -0
  864. data/resources/unicode_data/properties/Line_Break/SA/value.dump +0 -0
  865. data/resources/unicode_data/properties/Line_Break/SG/value.dump +0 -0
  866. data/resources/unicode_data/properties/Line_Break/SP/value.dump +3 -0
  867. data/resources/unicode_data/properties/Line_Break/SY/value.dump +3 -0
  868. data/resources/unicode_data/properties/Line_Break/WJ/value.dump +4 -0
  869. data/resources/unicode_data/properties/Line_Break/XX/value.dump +0 -0
  870. data/resources/unicode_data/properties/Line_Break/ZW/value.dump +3 -0
  871. data/resources/unicode_data/properties/Logical_Order_Exception/value.dump +8 -0
  872. data/resources/unicode_data/properties/Lowercase/value.dump +0 -0
  873. data/resources/unicode_data/properties/Math/value.dump +0 -0
  874. data/resources/unicode_data/properties/Noncharacter_Code_Point/value.dump +22 -0
  875. data/resources/unicode_data/properties/Numeric_Type/0/value.dump +0 -0
  876. data/resources/unicode_data/properties/Numeric_Type/1/value.dump +69 -0
  877. data/resources/unicode_data/properties/Numeric_Type/2/value.dump +68 -0
  878. data/resources/unicode_data/properties/Numeric_Type/3/value.dump +68 -0
  879. data/resources/unicode_data/properties/Numeric_Type/4/value.dump +68 -0
  880. data/resources/unicode_data/properties/Numeric_Type/5/value.dump +65 -0
  881. data/resources/unicode_data/properties/Numeric_Type/6/value.dump +65 -0
  882. data/resources/unicode_data/properties/Numeric_Type/7/value.dump +65 -0
  883. data/resources/unicode_data/properties/Numeric_Type/8/value.dump +65 -0
  884. data/resources/unicode_data/properties/Numeric_Type/9/value.dump +67 -0
  885. data/resources/unicode_data/properties/Numeric_Type/value.dump +0 -0
  886. data/resources/unicode_data/properties/Other_Alphabetic/value.dump +0 -0
  887. data/resources/unicode_data/properties/Other_Default_Ignorable_Code_Point/value.dump +0 -0
  888. data/resources/unicode_data/properties/Other_Grapheme_Extend/value.dump +19 -0
  889. data/resources/unicode_data/properties/Other_ID_Continue/value.dump +6 -0
  890. data/resources/unicode_data/properties/Other_ID_Start/value.dump +5 -0
  891. data/resources/unicode_data/properties/Other_Lowercase/value.dump +20 -0
  892. data/resources/unicode_data/properties/Other_Math/value.dump +0 -0
  893. data/resources/unicode_data/properties/Other_Uppercase/value.dump +4 -0
  894. data/resources/unicode_data/properties/Pattern_Syntax/value.dump +0 -0
  895. data/resources/unicode_data/properties/Pattern_White_Space/value.dump +8 -0
  896. data/resources/unicode_data/properties/Quotation_Mark/value.dump +14 -0
  897. data/resources/unicode_data/properties/Radical/value.dump +0 -0
  898. data/resources/unicode_data/properties/STerm/value.dump +0 -0
  899. data/resources/unicode_data/properties/Script/Arabic/value.dump +0 -0
  900. data/resources/unicode_data/properties/Script/Armenian/value.dump +8 -0
  901. data/resources/unicode_data/properties/Script/Avestan/value.dump +0 -0
  902. data/resources/unicode_data/properties/Script/Balinese/value.dump +0 -0
  903. data/resources/unicode_data/properties/Script/Bamum/value.dump +0 -0
  904. data/resources/unicode_data/properties/Script/Batak/value.dump +4 -0
  905. data/resources/unicode_data/properties/Script/Bengali/value.dump +16 -0
  906. data/resources/unicode_data/properties/Script/Bopomofo/value.dump +5 -0
  907. data/resources/unicode_data/properties/Script/Brahmi/value.dump +0 -0
  908. data/resources/unicode_data/properties/Script/Braille/value.dump +0 -0
  909. data/resources/unicode_data/properties/Script/Buginese/value.dump +0 -0
  910. data/resources/unicode_data/properties/Script/Buhid/value.dump +3 -0
  911. data/resources/unicode_data/properties/Script/Canadian_Aboriginal/value.dump +0 -0
  912. data/resources/unicode_data/properties/Script/Carian/value.dump +3 -0
  913. data/resources/unicode_data/properties/Script/Chakma/value.dump +0 -0
  914. data/resources/unicode_data/properties/Script/Cham/value.dump +0 -0
  915. data/resources/unicode_data/properties/Script/Cherokee/value.dump +3 -0
  916. data/resources/unicode_data/properties/Script/Common/value.dump +0 -0
  917. data/resources/unicode_data/properties/Script/Coptic/value.dump +5 -0
  918. data/resources/unicode_data/properties/Script/Cuneiform/value.dump +0 -0
  919. data/resources/unicode_data/properties/Script/Cypriot/value.dump +0 -0
  920. data/resources/unicode_data/properties/Script/Cyrillic/value.dump +0 -0
  921. data/resources/unicode_data/properties/Script/Deseret/value.dump +0 -0
  922. data/resources/unicode_data/properties/Script/Devanagari/value.dump +0 -0
  923. data/resources/unicode_data/properties/Script/Egyptian_Hieroglyphs/value.dump +0 -0
  924. data/resources/unicode_data/properties/Script/Ethiopic/value.dump +0 -0
  925. data/resources/unicode_data/properties/Script/Georgian/value.dump +0 -0
  926. data/resources/unicode_data/properties/Script/Glagolitic/value.dump +0 -0
  927. data/resources/unicode_data/properties/Script/Gothic/value.dump +3 -0
  928. data/resources/unicode_data/properties/Script/Greek/value.dump +0 -0
  929. data/resources/unicode_data/properties/Script/Gujarati/value.dump +40 -0
  930. data/resources/unicode_data/properties/Script/Gurmukhi/value.dump +50 -0
  931. data/resources/unicode_data/properties/Script/Han/value.dump +0 -0
  932. data/resources/unicode_data/properties/Script/Hangul/value.dump +0 -0
  933. data/resources/unicode_data/properties/Script/Hanunoo/value.dump +3 -0
  934. data/resources/unicode_data/properties/Script/Hebrew/value.dump +11 -0
  935. data/resources/unicode_data/properties/Script/Hiragana/value.dump +0 -0
  936. data/resources/unicode_data/properties/Script/Imperial_Aramaic/value.dump +4 -0
  937. data/resources/unicode_data/properties/Script/Inherited/value.dump +0 -0
  938. data/resources/unicode_data/properties/Script/Inscriptional_Pahlavi/value.dump +4 -0
  939. data/resources/unicode_data/properties/Script/Inscriptional_Parthian/value.dump +4 -0
  940. data/resources/unicode_data/properties/Script/Javanese/value.dump +5 -0
  941. data/resources/unicode_data/properties/Script/Kaithi/value.dump +3 -0
  942. data/resources/unicode_data/properties/Script/Kannada/value.dump +16 -0
  943. data/resources/unicode_data/properties/Script/Katakana/value.dump +0 -0
  944. data/resources/unicode_data/properties/Script/Kayah_Li/value.dump +0 -0
  945. data/resources/unicode_data/properties/Script/Kharoshthi/value.dump +0 -0
  946. data/resources/unicode_data/properties/Script/Khmer/value.dump +6 -0
  947. data/resources/unicode_data/properties/Script/Lao/value.dump +20 -0
  948. data/resources/unicode_data/properties/Script/Latin/value.dump +0 -0
  949. data/resources/unicode_data/properties/Script/Lepcha/value.dump +0 -0
  950. data/resources/unicode_data/properties/Script/Limbu/value.dump +0 -0
  951. data/resources/unicode_data/properties/Script/Linear_B/value.dump +0 -0
  952. data/resources/unicode_data/properties/Script/Lisu/value.dump +3 -0
  953. data/resources/unicode_data/properties/Script/Lycian/value.dump +3 -0
  954. data/resources/unicode_data/properties/Script/Lydian/value.dump +4 -0
  955. data/resources/unicode_data/properties/Script/Malayalam/value.dump +13 -0
  956. data/resources/unicode_data/properties/Script/Mandaic/value.dump +4 -0
  957. data/resources/unicode_data/properties/Script/Meetei_Mayek/value.dump +5 -0
  958. data/resources/unicode_data/properties/Script/Meroitic_Cursive/value.dump +4 -0
  959. data/resources/unicode_data/properties/Script/Meroitic_Hieroglyphs/value.dump +3 -0
  960. data/resources/unicode_data/properties/Script/Miao/value.dump +0 -0
  961. data/resources/unicode_data/properties/Script/Mongolian/value.dump +0 -0
  962. data/resources/unicode_data/properties/Script/Myanmar/value.dump +0 -0
  963. data/resources/unicode_data/properties/Script/New_Tai_Lue/value.dump +6 -0
  964. data/resources/unicode_data/properties/Script/Nko/value.dump +3 -0
  965. data/resources/unicode_data/properties/Script/Ogham/value.dump +3 -0
  966. data/resources/unicode_data/properties/Script/Ol_Chiki/value.dump +3 -0
  967. data/resources/unicode_data/properties/Script/Old_Italic/value.dump +0 -0
  968. data/resources/unicode_data/properties/Script/Old_Persian/value.dump +4 -0
  969. data/resources/unicode_data/properties/Script/Old_South_Arabian/value.dump +5 -0
  970. data/resources/unicode_data/properties/Script/Old_Turkic/value.dump +0 -0
  971. data/resources/unicode_data/properties/Script/Oriya/value.dump +16 -0
  972. data/resources/unicode_data/properties/Script/Osmanya/value.dump +4 -0
  973. data/resources/unicode_data/properties/Script/Phags_Pa/value.dump +3 -0
  974. data/resources/unicode_data/properties/Script/Phoenician/value.dump +0 -0
  975. data/resources/unicode_data/properties/Script/Rejang/value.dump +4 -0
  976. data/resources/unicode_data/properties/Script/Runic/value.dump +4 -0
  977. data/resources/unicode_data/properties/Script/Samaritan/value.dump +0 -0
  978. data/resources/unicode_data/properties/Script/Saurashtra/value.dump +4 -0
  979. data/resources/unicode_data/properties/Script/Sharada/value.dump +4 -0
  980. data/resources/unicode_data/properties/Script/Shavian/value.dump +3 -0
  981. data/resources/unicode_data/properties/Script/Sinhala/value.dump +13 -0
  982. data/resources/unicode_data/properties/Script/Sora_Sompeng/value.dump +4 -0
  983. data/resources/unicode_data/properties/Script/Sundanese/value.dump +4 -0
  984. data/resources/unicode_data/properties/Script/Syloti_Nagri/value.dump +0 -0
  985. data/resources/unicode_data/properties/Script/Syriac/value.dump +0 -0
  986. data/resources/unicode_data/properties/Script/Tagalog/value.dump +0 -0
  987. data/resources/unicode_data/properties/Script/Tagbanwa/value.dump +5 -0
  988. data/resources/unicode_data/properties/Script/Tai_Le/value.dump +4 -0
  989. data/resources/unicode_data/properties/Script/Tai_Tham/value.dump +8 -0
  990. data/resources/unicode_data/properties/Script/Tai_Viet/value.dump +4 -0
  991. data/resources/unicode_data/properties/Script/Takri/value.dump +4 -0
  992. data/resources/unicode_data/properties/Script/Tamil/value.dump +18 -0
  993. data/resources/unicode_data/properties/Script/Telugu/value.dump +16 -0
  994. data/resources/unicode_data/properties/Script/Thaana/value.dump +3 -0
  995. data/resources/unicode_data/properties/Script/Thai/value.dump +4 -0
  996. data/resources/unicode_data/properties/Script/Tibetan/value.dump +0 -0
  997. data/resources/unicode_data/properties/Script/Tifinagh/value.dump +5 -0
  998. data/resources/unicode_data/properties/Script/Ugaritic/value.dump +4 -0
  999. data/resources/unicode_data/properties/Script/Vai/value.dump +0 -0
  1000. data/resources/unicode_data/properties/Script/Yi/value.dump +0 -0
  1001. data/resources/unicode_data/properties/Script_Extensions/Arab/value.dump +11 -0
  1002. data/resources/unicode_data/properties/Script_Extensions/Armn/value.dump +3 -0
  1003. data/resources/unicode_data/properties/Script_Extensions/Beng/value.dump +3 -0
  1004. data/resources/unicode_data/properties/Script_Extensions/Bopo/value.dump +19 -0
  1005. data/resources/unicode_data/properties/Script_Extensions/Bugi/value.dump +3 -0
  1006. data/resources/unicode_data/properties/Script_Extensions/Buhd/value.dump +3 -0
  1007. data/resources/unicode_data/properties/Script_Extensions/Cakm/value.dump +4 -0
  1008. data/resources/unicode_data/properties/Script_Extensions/Cprt/value.dump +0 -0
  1009. data/resources/unicode_data/properties/Script_Extensions/Cyrl/value.dump +3 -0
  1010. data/resources/unicode_data/properties/Script_Extensions/Deva/value.dump +4 -0
  1011. data/resources/unicode_data/properties/Script_Extensions/Geor/value.dump +3 -0
  1012. data/resources/unicode_data/properties/Script_Extensions/Grek/value.dump +5 -0
  1013. data/resources/unicode_data/properties/Script_Extensions/Gujr/value.dump +3 -0
  1014. data/resources/unicode_data/properties/Script_Extensions/Guru/value.dump +4 -0
  1015. data/resources/unicode_data/properties/Script_Extensions/Hang/value.dump +18 -0
  1016. data/resources/unicode_data/properties/Script_Extensions/Hani/value.dump +21 -0
  1017. data/resources/unicode_data/properties/Script_Extensions/Hano/value.dump +3 -0
  1018. data/resources/unicode_data/properties/Script_Extensions/Hira/value.dump +24 -0
  1019. data/resources/unicode_data/properties/Script_Extensions/Java/value.dump +3 -0
  1020. data/resources/unicode_data/properties/Script_Extensions/Kana/value.dump +24 -0
  1021. data/resources/unicode_data/properties/Script_Extensions/Kthi/value.dump +3 -0
  1022. data/resources/unicode_data/properties/Script_Extensions/Latn/value.dump +5 -0
  1023. data/resources/unicode_data/properties/Script_Extensions/Linb/value.dump +0 -0
  1024. data/resources/unicode_data/properties/Script_Extensions/Mand/value.dump +3 -0
  1025. data/resources/unicode_data/properties/Script_Extensions/Mong/value.dump +4 -0
  1026. data/resources/unicode_data/properties/Script_Extensions/Mymr/value.dump +3 -0
  1027. data/resources/unicode_data/properties/Script_Extensions/Orya/value.dump +3 -0
  1028. data/resources/unicode_data/properties/Script_Extensions/Phag/value.dump +4 -0
  1029. data/resources/unicode_data/properties/Script_Extensions/Sylo/value.dump +3 -0
  1030. data/resources/unicode_data/properties/Script_Extensions/Syrc/value.dump +8 -0
  1031. data/resources/unicode_data/properties/Script_Extensions/Tagb/value.dump +3 -0
  1032. data/resources/unicode_data/properties/Script_Extensions/Takr/value.dump +3 -0
  1033. data/resources/unicode_data/properties/Script_Extensions/Tale/value.dump +3 -0
  1034. data/resources/unicode_data/properties/Script_Extensions/Tglg/value.dump +3 -0
  1035. data/resources/unicode_data/properties/Script_Extensions/Thaa/value.dump +8 -0
  1036. data/resources/unicode_data/properties/Script_Extensions/Yiii/value.dump +8 -0
  1037. data/resources/unicode_data/properties/Sentence_Break/ATerm/value.dump +6 -0
  1038. data/resources/unicode_data/properties/Sentence_Break/CR/value.dump +3 -0
  1039. data/resources/unicode_data/properties/Sentence_Break/Close/value.dump +0 -0
  1040. data/resources/unicode_data/properties/Sentence_Break/Extend/value.dump +0 -0
  1041. data/resources/unicode_data/properties/Sentence_Break/Format/value.dump +0 -0
  1042. data/resources/unicode_data/properties/Sentence_Break/LF/value.dump +3 -0
  1043. data/resources/unicode_data/properties/Sentence_Break/Lower/value.dump +0 -0
  1044. data/resources/unicode_data/properties/Sentence_Break/Numeric/value.dump +0 -0
  1045. data/resources/unicode_data/properties/Sentence_Break/OLetter/value.dump +0 -0
  1046. data/resources/unicode_data/properties/Sentence_Break/SContinue/value.dump +21 -0
  1047. data/resources/unicode_data/properties/Sentence_Break/STerm/value.dump +0 -0
  1048. data/resources/unicode_data/properties/Sentence_Break/Sep/value.dump +4 -0
  1049. data/resources/unicode_data/properties/Sentence_Break/Sp/value.dump +0 -0
  1050. data/resources/unicode_data/properties/Sentence_Break/Upper/value.dump +0 -0
  1051. data/resources/unicode_data/properties/Soft_Dotted/value.dump +33 -0
  1052. data/resources/unicode_data/properties/Terminal_Punctuation/value.dump +0 -0
  1053. data/resources/unicode_data/properties/Unified_Ideograph/value.dump +0 -0
  1054. data/resources/unicode_data/properties/Uppercase/value.dump +0 -0
  1055. data/resources/unicode_data/properties/Variation_Selector/value.dump +0 -0
  1056. data/resources/unicode_data/properties/White_Space/value.dump +0 -0
  1057. data/resources/unicode_data/properties/Word_Break/ALetter/value.dump +0 -0
  1058. data/resources/unicode_data/properties/Word_Break/CR/value.dump +3 -0
  1059. data/resources/unicode_data/properties/Word_Break/Double_Quote/value.dump +3 -0
  1060. data/resources/unicode_data/properties/Word_Break/Extend/value.dump +0 -0
  1061. data/resources/unicode_data/properties/Word_Break/ExtendNumLet/value.dump +8 -0
  1062. data/resources/unicode_data/properties/Word_Break/Format/value.dump +0 -0
  1063. data/resources/unicode_data/properties/Word_Break/Hebrew_Letter/value.dump +12 -0
  1064. data/resources/unicode_data/properties/Word_Break/Katakana/value.dump +0 -0
  1065. data/resources/unicode_data/properties/Word_Break/LF/value.dump +3 -0
  1066. data/resources/unicode_data/properties/Word_Break/MidLetter/value.dump +10 -0
  1067. data/resources/unicode_data/properties/Word_Break/MidNum/value.dump +16 -0
  1068. data/resources/unicode_data/properties/Word_Break/MidNumLet/value.dump +9 -0
  1069. data/resources/unicode_data/properties/Word_Break/Newline/value.dump +5 -0
  1070. data/resources/unicode_data/properties/Word_Break/Numeric/value.dump +0 -0
  1071. data/resources/unicode_data/properties/Word_Break/Regional_Indicator/value.dump +3 -0
  1072. data/resources/unicode_data/properties/Word_Break/Single_Quote/value.dump +3 -0
  1073. data/resources/unicode_data/properties/XID_Continue/value.dump +0 -0
  1074. data/resources/unicode_data/properties/XID_Start/value.dump +0 -0
  1075. data/resources/unicode_data/property_aliases.yml +350 -0
  1076. data/resources/unicode_data/property_value_aliases.yml +1829 -0
  1077. data/spec/bidi/bidi_spec.rb +2 -2
  1078. data/spec/collation/collation_spec.rb +1 -1
  1079. data/spec/collation/collator_spec.rb +6 -6
  1080. data/spec/collation/sort_key_builder_spec.rb +11 -11
  1081. data/spec/collation/tailoring_spec.rb +1 -1
  1082. data/spec/collation/trie_dumps_spec.rb +1 -1
  1083. data/spec/data_readers/date_time_data_reader_spec.rb +1 -1
  1084. data/spec/data_readers/number_data_reader_spec.rb +19 -6
  1085. data/spec/formatters/calendars/datetime_formatter_spec.rb +1 -1
  1086. data/spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb +1 -1
  1087. data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +5 -5
  1088. data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +4 -4
  1089. data/spec/formatters/numbers/currency_formatter_spec.rb +10 -10
  1090. data/spec/formatters/numbers/decimal_formatter_spec.rb +2 -2
  1091. data/spec/formatters/numbers/helpers/fraction_spec.rb +4 -4
  1092. data/spec/formatters/numbers/helpers/integer_spec.rb +21 -16
  1093. data/spec/formatters/numbers/number_formatter_spec.rb +9 -9
  1094. data/spec/formatters/numbers/percent_formatter_spec.rb +2 -2
  1095. data/spec/formatters/numbers/rbnf/rbnf_spec.rb +5 -5
  1096. data/spec/formatters/plurals/plural_formatter_spec.rb +25 -25
  1097. data/spec/formatters/plurals/rules_spec.rb +4 -4
  1098. data/spec/localized/localized_date_spec.rb +25 -25
  1099. data/spec/localized/localized_datetime_spec.rb +7 -7
  1100. data/spec/localized/localized_hash_spec.rb +1 -1
  1101. data/spec/localized/localized_number_spec.rb +23 -23
  1102. data/spec/localized/localized_object_spec.rb +2 -2
  1103. data/spec/localized/localized_string_spec.rb +43 -16
  1104. data/spec/localized/localized_symbol_spec.rb +31 -4
  1105. data/spec/localized/localized_time_spec.rb +3 -3
  1106. data/spec/localized/localized_timespan_spec.rb +42 -42
  1107. data/spec/normalization_spec.rb +4 -4
  1108. data/spec/parsers/number_parser_spec.rb +10 -10
  1109. data/spec/parsers/parser_spec.rb +19 -3
  1110. data/spec/parsers/symbol_table_spec.rb +1 -1
  1111. data/spec/parsers/unicode_regex/character_class_spec.rb +12 -0
  1112. data/spec/parsers/unicode_regex/character_range_spec.rb +24 -5
  1113. data/spec/parsers/unicode_regex/character_set_spec.rb +9 -1
  1114. data/spec/parsers/unicode_regex_parser_spec.rb +1 -1
  1115. data/spec/resources/loader_spec.rb +6 -6
  1116. data/spec/{shared → segmentation}/break_iterator_spec.rb +45 -16
  1117. data/spec/segmentation/parser_spec.rb +107 -0
  1118. data/spec/segmentation/rule_set_spec.rb +102 -0
  1119. data/spec/shared/calendar_spec.rb +30 -30
  1120. data/spec/shared/caser_spec.rb +79 -0
  1121. data/spec/shared/code_point_spec.rb +52 -151
  1122. data/spec/shared/currencies_spec.rb +8 -8
  1123. data/spec/shared/language_codes_spec.rb +13 -13
  1124. data/spec/shared/likely_subtags_spec.rb +58 -0
  1125. data/spec/shared/locale_spec.rb +211 -0
  1126. data/spec/shared/numbers_spec.rb +4 -4
  1127. data/spec/shared/postal_codes_spec.rb +24 -4
  1128. data/spec/shared/properties_database_spec.rb +157 -0
  1129. data/spec/shared/property_name_aliases_spec.rb +56 -0
  1130. data/spec/shared/property_normalizer_spec.rb +64 -0
  1131. data/spec/shared/property_set_spec.rb +218 -0
  1132. data/spec/shared/property_value_aliases_spec.rb +58 -0
  1133. data/spec/shared/territories_spec.rb +1 -1
  1134. data/spec/shared/unicode_regex_spec.rb +35 -2
  1135. data/spec/spec_helper.rb +3 -3
  1136. data/spec/tokenizers/calendars/date_tokenizer_spec.rb +23 -23
  1137. data/spec/tokenizers/calendars/datetime_tokenizer_spec.rb +18 -18
  1138. data/spec/tokenizers/calendars/time_tokenizer_spec.rb +19 -19
  1139. data/spec/tokenizers/composite_token_spec.rb +4 -4
  1140. data/spec/tokenizers/numbers/number_tokenizer_spec.rb +16 -16
  1141. data/spec/tokenizers/token_spec.rb +2 -2
  1142. data/spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb +94 -94
  1143. data/spec/utils/file_system_trie_spec.rb +98 -0
  1144. data/spec/utils/range_set_spec.rb +53 -1
  1145. data/spec/utils/script_detector_spec.rb +58 -0
  1146. data/spec/utils/yaml/yaml_spec.rb +22 -22
  1147. data/spec/utils_spec.rb +21 -21
  1148. metadata +832 -28
  1149. data/lib/twitter_cldr/parsers/segmentation_parser.rb +0 -137
  1150. data/lib/twitter_cldr/resources/canonical_compositions_updater.rb +0 -51
  1151. data/lib/twitter_cldr/resources/composition_exclusions_importer.rb +0 -62
  1152. data/lib/twitter_cldr/resources/normalization_quick_check_importer.rb +0 -73
  1153. data/lib/twitter_cldr/resources/unicode_properties_importer.rb +0 -79
  1154. data/lib/twitter_cldr/shared/break_iterator.rb +0 -213
  1155. data/lib/twitter_cldr/tokenizers/segmentation/segmentation_tokenizer.rb +0 -39
  1156. data/resources/shared/segments/tailorings/en.yml +0 -8
  1157. data/resources/unicode_data/canonical_compositions.yml +0 -4925
  1158. data/resources/unicode_data/composition_exclusions.yml +0 -297
  1159. data/resources/unicode_data/hangul_blocks.yml +0 -21
  1160. data/resources/unicode_data/indices/bidi_class.yml +0 -4572
  1161. data/resources/unicode_data/indices/bidi_mirrored.yml +0 -3087
  1162. data/resources/unicode_data/indices/category.yml +0 -10918
  1163. data/resources/unicode_data/indices/keys.yml +0 -101
  1164. data/resources/unicode_data/nfc_quick_check.yml +0 -293
  1165. data/resources/unicode_data/nfd_quick_check.yml +0 -909
  1166. data/resources/unicode_data/nfkc_quick_check.yml +0 -989
  1167. data/resources/unicode_data/nfkd_quick_check.yml +0 -1537
  1168. data/resources/unicode_data/properties/line_break.yml +0 -9269
  1169. data/resources/unicode_data/properties/sentence_break.yml +0 -8067
  1170. data/resources/unicode_data/properties/word_break.yml +0 -3001
  1171. data/spec/parsers/segmentation_parser_spec.rb +0 -100
  1172. data/spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb +0 -40
@@ -1,3001 +0,0 @@
1
- ---
2
- :Double_Quote:
3
- - !ruby/range
4
- begin: 34
5
- end: 34
6
- excl: false
7
- :Single_Quote:
8
- - !ruby/range
9
- begin: 39
10
- end: 39
11
- excl: false
12
- :Hebrew_Letter:
13
- - !ruby/range
14
- begin: 1488
15
- end: 1514
16
- excl: false
17
- - !ruby/range
18
- begin: 1520
19
- end: 1522
20
- excl: false
21
- - !ruby/range
22
- begin: 64285
23
- end: 64285
24
- excl: false
25
- - !ruby/range
26
- begin: 64287
27
- end: 64296
28
- excl: false
29
- - !ruby/range
30
- begin: 64298
31
- end: 64310
32
- excl: false
33
- - !ruby/range
34
- begin: 64312
35
- end: 64316
36
- excl: false
37
- - !ruby/range
38
- begin: 64318
39
- end: 64318
40
- excl: false
41
- - !ruby/range
42
- begin: 64320
43
- end: 64321
44
- excl: false
45
- - !ruby/range
46
- begin: 64323
47
- end: 64324
48
- excl: false
49
- - !ruby/range
50
- begin: 64326
51
- end: 64335
52
- excl: false
53
- :CR:
54
- - !ruby/range
55
- begin: 13
56
- end: 13
57
- excl: false
58
- :LF:
59
- - !ruby/range
60
- begin: 10
61
- end: 10
62
- excl: false
63
- :Newline:
64
- - !ruby/range
65
- begin: 11
66
- end: 12
67
- excl: false
68
- - !ruby/range
69
- begin: 133
70
- end: 133
71
- excl: false
72
- - !ruby/range
73
- begin: 8232
74
- end: 8233
75
- excl: false
76
- :Extend:
77
- - !ruby/range
78
- begin: 768
79
- end: 879
80
- excl: false
81
- - !ruby/range
82
- begin: 1155
83
- end: 1161
84
- excl: false
85
- - !ruby/range
86
- begin: 1425
87
- end: 1469
88
- excl: false
89
- - !ruby/range
90
- begin: 1471
91
- end: 1471
92
- excl: false
93
- - !ruby/range
94
- begin: 1473
95
- end: 1474
96
- excl: false
97
- - !ruby/range
98
- begin: 1476
99
- end: 1477
100
- excl: false
101
- - !ruby/range
102
- begin: 1479
103
- end: 1479
104
- excl: false
105
- - !ruby/range
106
- begin: 1552
107
- end: 1562
108
- excl: false
109
- - !ruby/range
110
- begin: 1611
111
- end: 1631
112
- excl: false
113
- - !ruby/range
114
- begin: 1648
115
- end: 1648
116
- excl: false
117
- - !ruby/range
118
- begin: 1750
119
- end: 1756
120
- excl: false
121
- - !ruby/range
122
- begin: 1759
123
- end: 1764
124
- excl: false
125
- - !ruby/range
126
- begin: 1767
127
- end: 1768
128
- excl: false
129
- - !ruby/range
130
- begin: 1770
131
- end: 1773
132
- excl: false
133
- - !ruby/range
134
- begin: 1809
135
- end: 1809
136
- excl: false
137
- - !ruby/range
138
- begin: 1840
139
- end: 1866
140
- excl: false
141
- - !ruby/range
142
- begin: 1958
143
- end: 1968
144
- excl: false
145
- - !ruby/range
146
- begin: 2027
147
- end: 2035
148
- excl: false
149
- - !ruby/range
150
- begin: 2070
151
- end: 2073
152
- excl: false
153
- - !ruby/range
154
- begin: 2075
155
- end: 2083
156
- excl: false
157
- - !ruby/range
158
- begin: 2085
159
- end: 2087
160
- excl: false
161
- - !ruby/range
162
- begin: 2089
163
- end: 2093
164
- excl: false
165
- - !ruby/range
166
- begin: 2137
167
- end: 2139
168
- excl: false
169
- - !ruby/range
170
- begin: 2276
171
- end: 2302
172
- excl: false
173
- - !ruby/range
174
- begin: 2304
175
- end: 2307
176
- excl: false
177
- - !ruby/range
178
- begin: 2362
179
- end: 2364
180
- excl: false
181
- - !ruby/range
182
- begin: 2366
183
- end: 2383
184
- excl: false
185
- - !ruby/range
186
- begin: 2385
187
- end: 2391
188
- excl: false
189
- - !ruby/range
190
- begin: 2402
191
- end: 2403
192
- excl: false
193
- - !ruby/range
194
- begin: 2433
195
- end: 2435
196
- excl: false
197
- - !ruby/range
198
- begin: 2492
199
- end: 2492
200
- excl: false
201
- - !ruby/range
202
- begin: 2494
203
- end: 2500
204
- excl: false
205
- - !ruby/range
206
- begin: 2503
207
- end: 2504
208
- excl: false
209
- - !ruby/range
210
- begin: 2507
211
- end: 2509
212
- excl: false
213
- - !ruby/range
214
- begin: 2519
215
- end: 2519
216
- excl: false
217
- - !ruby/range
218
- begin: 2530
219
- end: 2531
220
- excl: false
221
- - !ruby/range
222
- begin: 2561
223
- end: 2563
224
- excl: false
225
- - !ruby/range
226
- begin: 2620
227
- end: 2620
228
- excl: false
229
- - !ruby/range
230
- begin: 2622
231
- end: 2626
232
- excl: false
233
- - !ruby/range
234
- begin: 2631
235
- end: 2632
236
- excl: false
237
- - !ruby/range
238
- begin: 2635
239
- end: 2637
240
- excl: false
241
- - !ruby/range
242
- begin: 2641
243
- end: 2641
244
- excl: false
245
- - !ruby/range
246
- begin: 2672
247
- end: 2673
248
- excl: false
249
- - !ruby/range
250
- begin: 2677
251
- end: 2677
252
- excl: false
253
- - !ruby/range
254
- begin: 2689
255
- end: 2691
256
- excl: false
257
- - !ruby/range
258
- begin: 2748
259
- end: 2748
260
- excl: false
261
- - !ruby/range
262
- begin: 2750
263
- end: 2757
264
- excl: false
265
- - !ruby/range
266
- begin: 2759
267
- end: 2761
268
- excl: false
269
- - !ruby/range
270
- begin: 2763
271
- end: 2765
272
- excl: false
273
- - !ruby/range
274
- begin: 2786
275
- end: 2787
276
- excl: false
277
- - !ruby/range
278
- begin: 2817
279
- end: 2819
280
- excl: false
281
- - !ruby/range
282
- begin: 2876
283
- end: 2876
284
- excl: false
285
- - !ruby/range
286
- begin: 2878
287
- end: 2884
288
- excl: false
289
- - !ruby/range
290
- begin: 2887
291
- end: 2888
292
- excl: false
293
- - !ruby/range
294
- begin: 2891
295
- end: 2893
296
- excl: false
297
- - !ruby/range
298
- begin: 2902
299
- end: 2903
300
- excl: false
301
- - !ruby/range
302
- begin: 2914
303
- end: 2915
304
- excl: false
305
- - !ruby/range
306
- begin: 2946
307
- end: 2946
308
- excl: false
309
- - !ruby/range
310
- begin: 3006
311
- end: 3010
312
- excl: false
313
- - !ruby/range
314
- begin: 3014
315
- end: 3016
316
- excl: false
317
- - !ruby/range
318
- begin: 3018
319
- end: 3021
320
- excl: false
321
- - !ruby/range
322
- begin: 3031
323
- end: 3031
324
- excl: false
325
- - !ruby/range
326
- begin: 3073
327
- end: 3075
328
- excl: false
329
- - !ruby/range
330
- begin: 3134
331
- end: 3140
332
- excl: false
333
- - !ruby/range
334
- begin: 3142
335
- end: 3144
336
- excl: false
337
- - !ruby/range
338
- begin: 3146
339
- end: 3149
340
- excl: false
341
- - !ruby/range
342
- begin: 3157
343
- end: 3158
344
- excl: false
345
- - !ruby/range
346
- begin: 3170
347
- end: 3171
348
- excl: false
349
- - !ruby/range
350
- begin: 3202
351
- end: 3203
352
- excl: false
353
- - !ruby/range
354
- begin: 3260
355
- end: 3260
356
- excl: false
357
- - !ruby/range
358
- begin: 3262
359
- end: 3268
360
- excl: false
361
- - !ruby/range
362
- begin: 3270
363
- end: 3272
364
- excl: false
365
- - !ruby/range
366
- begin: 3274
367
- end: 3277
368
- excl: false
369
- - !ruby/range
370
- begin: 3285
371
- end: 3286
372
- excl: false
373
- - !ruby/range
374
- begin: 3298
375
- end: 3299
376
- excl: false
377
- - !ruby/range
378
- begin: 3330
379
- end: 3331
380
- excl: false
381
- - !ruby/range
382
- begin: 3390
383
- end: 3396
384
- excl: false
385
- - !ruby/range
386
- begin: 3398
387
- end: 3400
388
- excl: false
389
- - !ruby/range
390
- begin: 3402
391
- end: 3405
392
- excl: false
393
- - !ruby/range
394
- begin: 3415
395
- end: 3415
396
- excl: false
397
- - !ruby/range
398
- begin: 3426
399
- end: 3427
400
- excl: false
401
- - !ruby/range
402
- begin: 3458
403
- end: 3459
404
- excl: false
405
- - !ruby/range
406
- begin: 3530
407
- end: 3530
408
- excl: false
409
- - !ruby/range
410
- begin: 3535
411
- end: 3540
412
- excl: false
413
- - !ruby/range
414
- begin: 3542
415
- end: 3542
416
- excl: false
417
- - !ruby/range
418
- begin: 3544
419
- end: 3551
420
- excl: false
421
- - !ruby/range
422
- begin: 3570
423
- end: 3571
424
- excl: false
425
- - !ruby/range
426
- begin: 3633
427
- end: 3633
428
- excl: false
429
- - !ruby/range
430
- begin: 3636
431
- end: 3642
432
- excl: false
433
- - !ruby/range
434
- begin: 3655
435
- end: 3662
436
- excl: false
437
- - !ruby/range
438
- begin: 3761
439
- end: 3761
440
- excl: false
441
- - !ruby/range
442
- begin: 3764
443
- end: 3769
444
- excl: false
445
- - !ruby/range
446
- begin: 3771
447
- end: 3772
448
- excl: false
449
- - !ruby/range
450
- begin: 3784
451
- end: 3789
452
- excl: false
453
- - !ruby/range
454
- begin: 3864
455
- end: 3865
456
- excl: false
457
- - !ruby/range
458
- begin: 3893
459
- end: 3893
460
- excl: false
461
- - !ruby/range
462
- begin: 3895
463
- end: 3895
464
- excl: false
465
- - !ruby/range
466
- begin: 3897
467
- end: 3897
468
- excl: false
469
- - !ruby/range
470
- begin: 3902
471
- end: 3903
472
- excl: false
473
- - !ruby/range
474
- begin: 3953
475
- end: 3972
476
- excl: false
477
- - !ruby/range
478
- begin: 3974
479
- end: 3975
480
- excl: false
481
- - !ruby/range
482
- begin: 3981
483
- end: 3991
484
- excl: false
485
- - !ruby/range
486
- begin: 3993
487
- end: 4028
488
- excl: false
489
- - !ruby/range
490
- begin: 4038
491
- end: 4038
492
- excl: false
493
- - !ruby/range
494
- begin: 4139
495
- end: 4158
496
- excl: false
497
- - !ruby/range
498
- begin: 4182
499
- end: 4185
500
- excl: false
501
- - !ruby/range
502
- begin: 4190
503
- end: 4192
504
- excl: false
505
- - !ruby/range
506
- begin: 4194
507
- end: 4196
508
- excl: false
509
- - !ruby/range
510
- begin: 4199
511
- end: 4205
512
- excl: false
513
- - !ruby/range
514
- begin: 4209
515
- end: 4212
516
- excl: false
517
- - !ruby/range
518
- begin: 4226
519
- end: 4237
520
- excl: false
521
- - !ruby/range
522
- begin: 4239
523
- end: 4239
524
- excl: false
525
- - !ruby/range
526
- begin: 4250
527
- end: 4253
528
- excl: false
529
- - !ruby/range
530
- begin: 4957
531
- end: 4959
532
- excl: false
533
- - !ruby/range
534
- begin: 5906
535
- end: 5908
536
- excl: false
537
- - !ruby/range
538
- begin: 5938
539
- end: 5940
540
- excl: false
541
- - !ruby/range
542
- begin: 5970
543
- end: 5971
544
- excl: false
545
- - !ruby/range
546
- begin: 6002
547
- end: 6003
548
- excl: false
549
- - !ruby/range
550
- begin: 6068
551
- end: 6099
552
- excl: false
553
- - !ruby/range
554
- begin: 6109
555
- end: 6109
556
- excl: false
557
- - !ruby/range
558
- begin: 6155
559
- end: 6157
560
- excl: false
561
- - !ruby/range
562
- begin: 6313
563
- end: 6313
564
- excl: false
565
- - !ruby/range
566
- begin: 6432
567
- end: 6443
568
- excl: false
569
- - !ruby/range
570
- begin: 6448
571
- end: 6459
572
- excl: false
573
- - !ruby/range
574
- begin: 6576
575
- end: 6592
576
- excl: false
577
- - !ruby/range
578
- begin: 6600
579
- end: 6601
580
- excl: false
581
- - !ruby/range
582
- begin: 6679
583
- end: 6683
584
- excl: false
585
- - !ruby/range
586
- begin: 6741
587
- end: 6750
588
- excl: false
589
- - !ruby/range
590
- begin: 6752
591
- end: 6780
592
- excl: false
593
- - !ruby/range
594
- begin: 6783
595
- end: 6783
596
- excl: false
597
- - !ruby/range
598
- begin: 6912
599
- end: 6916
600
- excl: false
601
- - !ruby/range
602
- begin: 6964
603
- end: 6980
604
- excl: false
605
- - !ruby/range
606
- begin: 7019
607
- end: 7027
608
- excl: false
609
- - !ruby/range
610
- begin: 7040
611
- end: 7042
612
- excl: false
613
- - !ruby/range
614
- begin: 7073
615
- end: 7085
616
- excl: false
617
- - !ruby/range
618
- begin: 7142
619
- end: 7155
620
- excl: false
621
- - !ruby/range
622
- begin: 7204
623
- end: 7223
624
- excl: false
625
- - !ruby/range
626
- begin: 7376
627
- end: 7378
628
- excl: false
629
- - !ruby/range
630
- begin: 7380
631
- end: 7400
632
- excl: false
633
- - !ruby/range
634
- begin: 7405
635
- end: 7405
636
- excl: false
637
- - !ruby/range
638
- begin: 7410
639
- end: 7412
640
- excl: false
641
- - !ruby/range
642
- begin: 7616
643
- end: 7654
644
- excl: false
645
- - !ruby/range
646
- begin: 7676
647
- end: 7679
648
- excl: false
649
- - !ruby/range
650
- begin: 8204
651
- end: 8205
652
- excl: false
653
- - !ruby/range
654
- begin: 8400
655
- end: 8432
656
- excl: false
657
- - !ruby/range
658
- begin: 11503
659
- end: 11505
660
- excl: false
661
- - !ruby/range
662
- begin: 11647
663
- end: 11647
664
- excl: false
665
- - !ruby/range
666
- begin: 11744
667
- end: 11775
668
- excl: false
669
- - !ruby/range
670
- begin: 12330
671
- end: 12335
672
- excl: false
673
- - !ruby/range
674
- begin: 12441
675
- end: 12442
676
- excl: false
677
- - !ruby/range
678
- begin: 42607
679
- end: 42610
680
- excl: false
681
- - !ruby/range
682
- begin: 42612
683
- end: 42621
684
- excl: false
685
- - !ruby/range
686
- begin: 42655
687
- end: 42655
688
- excl: false
689
- - !ruby/range
690
- begin: 42736
691
- end: 42737
692
- excl: false
693
- - !ruby/range
694
- begin: 43010
695
- end: 43010
696
- excl: false
697
- - !ruby/range
698
- begin: 43014
699
- end: 43014
700
- excl: false
701
- - !ruby/range
702
- begin: 43019
703
- end: 43019
704
- excl: false
705
- - !ruby/range
706
- begin: 43043
707
- end: 43047
708
- excl: false
709
- - !ruby/range
710
- begin: 43136
711
- end: 43137
712
- excl: false
713
- - !ruby/range
714
- begin: 43188
715
- end: 43204
716
- excl: false
717
- - !ruby/range
718
- begin: 43232
719
- end: 43249
720
- excl: false
721
- - !ruby/range
722
- begin: 43302
723
- end: 43309
724
- excl: false
725
- - !ruby/range
726
- begin: 43335
727
- end: 43347
728
- excl: false
729
- - !ruby/range
730
- begin: 43392
731
- end: 43395
732
- excl: false
733
- - !ruby/range
734
- begin: 43443
735
- end: 43456
736
- excl: false
737
- - !ruby/range
738
- begin: 43561
739
- end: 43574
740
- excl: false
741
- - !ruby/range
742
- begin: 43587
743
- end: 43587
744
- excl: false
745
- - !ruby/range
746
- begin: 43596
747
- end: 43597
748
- excl: false
749
- - !ruby/range
750
- begin: 43643
751
- end: 43643
752
- excl: false
753
- - !ruby/range
754
- begin: 43696
755
- end: 43696
756
- excl: false
757
- - !ruby/range
758
- begin: 43698
759
- end: 43700
760
- excl: false
761
- - !ruby/range
762
- begin: 43703
763
- end: 43704
764
- excl: false
765
- - !ruby/range
766
- begin: 43710
767
- end: 43711
768
- excl: false
769
- - !ruby/range
770
- begin: 43713
771
- end: 43713
772
- excl: false
773
- - !ruby/range
774
- begin: 43755
775
- end: 43759
776
- excl: false
777
- - !ruby/range
778
- begin: 43765
779
- end: 43766
780
- excl: false
781
- - !ruby/range
782
- begin: 44003
783
- end: 44010
784
- excl: false
785
- - !ruby/range
786
- begin: 44012
787
- end: 44013
788
- excl: false
789
- - !ruby/range
790
- begin: 64286
791
- end: 64286
792
- excl: false
793
- - !ruby/range
794
- begin: 65024
795
- end: 65039
796
- excl: false
797
- - !ruby/range
798
- begin: 65056
799
- end: 65062
800
- excl: false
801
- - !ruby/range
802
- begin: 65438
803
- end: 65439
804
- excl: false
805
- - !ruby/range
806
- begin: 66045
807
- end: 66045
808
- excl: false
809
- - !ruby/range
810
- begin: 68097
811
- end: 68099
812
- excl: false
813
- - !ruby/range
814
- begin: 68101
815
- end: 68102
816
- excl: false
817
- - !ruby/range
818
- begin: 68108
819
- end: 68111
820
- excl: false
821
- - !ruby/range
822
- begin: 68152
823
- end: 68154
824
- excl: false
825
- - !ruby/range
826
- begin: 68159
827
- end: 68159
828
- excl: false
829
- - !ruby/range
830
- begin: 69632
831
- end: 69634
832
- excl: false
833
- - !ruby/range
834
- begin: 69688
835
- end: 69702
836
- excl: false
837
- - !ruby/range
838
- begin: 69760
839
- end: 69762
840
- excl: false
841
- - !ruby/range
842
- begin: 69808
843
- end: 69818
844
- excl: false
845
- - !ruby/range
846
- begin: 69888
847
- end: 69890
848
- excl: false
849
- - !ruby/range
850
- begin: 69927
851
- end: 69940
852
- excl: false
853
- - !ruby/range
854
- begin: 70016
855
- end: 70018
856
- excl: false
857
- - !ruby/range
858
- begin: 70067
859
- end: 70080
860
- excl: false
861
- - !ruby/range
862
- begin: 71339
863
- end: 71351
864
- excl: false
865
- - !ruby/range
866
- begin: 94033
867
- end: 94078
868
- excl: false
869
- - !ruby/range
870
- begin: 94095
871
- end: 94098
872
- excl: false
873
- - !ruby/range
874
- begin: 119141
875
- end: 119145
876
- excl: false
877
- - !ruby/range
878
- begin: 119149
879
- end: 119154
880
- excl: false
881
- - !ruby/range
882
- begin: 119163
883
- end: 119170
884
- excl: false
885
- - !ruby/range
886
- begin: 119173
887
- end: 119179
888
- excl: false
889
- - !ruby/range
890
- begin: 119210
891
- end: 119213
892
- excl: false
893
- - !ruby/range
894
- begin: 119362
895
- end: 119364
896
- excl: false
897
- - !ruby/range
898
- begin: 917760
899
- end: 917999
900
- excl: false
901
- :Regional_Indicator:
902
- - !ruby/range
903
- begin: 127462
904
- end: 127487
905
- excl: false
906
- :Format:
907
- - !ruby/range
908
- begin: 173
909
- end: 173
910
- excl: false
911
- - !ruby/range
912
- begin: 1536
913
- end: 1540
914
- excl: false
915
- - !ruby/range
916
- begin: 1564
917
- end: 1564
918
- excl: false
919
- - !ruby/range
920
- begin: 1757
921
- end: 1757
922
- excl: false
923
- - !ruby/range
924
- begin: 1807
925
- end: 1807
926
- excl: false
927
- - !ruby/range
928
- begin: 6158
929
- end: 6158
930
- excl: false
931
- - !ruby/range
932
- begin: 8206
933
- end: 8207
934
- excl: false
935
- - !ruby/range
936
- begin: 8234
937
- end: 8238
938
- excl: false
939
- - !ruby/range
940
- begin: 8288
941
- end: 8292
942
- excl: false
943
- - !ruby/range
944
- begin: 8294
945
- end: 8303
946
- excl: false
947
- - !ruby/range
948
- begin: 65279
949
- end: 65279
950
- excl: false
951
- - !ruby/range
952
- begin: 65529
953
- end: 65531
954
- excl: false
955
- - !ruby/range
956
- begin: 69821
957
- end: 69821
958
- excl: false
959
- - !ruby/range
960
- begin: 119155
961
- end: 119162
962
- excl: false
963
- - !ruby/range
964
- begin: 917505
965
- end: 917505
966
- excl: false
967
- - !ruby/range
968
- begin: 917536
969
- end: 917631
970
- excl: false
971
- :Katakana:
972
- - !ruby/range
973
- begin: 12337
974
- end: 12341
975
- excl: false
976
- - !ruby/range
977
- begin: 12443
978
- end: 12444
979
- excl: false
980
- - !ruby/range
981
- begin: 12448
982
- end: 12538
983
- excl: false
984
- - !ruby/range
985
- begin: 12540
986
- end: 12543
987
- excl: false
988
- - !ruby/range
989
- begin: 12784
990
- end: 12799
991
- excl: false
992
- - !ruby/range
993
- begin: 13008
994
- end: 13054
995
- excl: false
996
- - !ruby/range
997
- begin: 13056
998
- end: 13143
999
- excl: false
1000
- - !ruby/range
1001
- begin: 65382
1002
- end: 65437
1003
- excl: false
1004
- - !ruby/range
1005
- begin: 110592
1006
- end: 110592
1007
- excl: false
1008
- :ALetter:
1009
- - !ruby/range
1010
- begin: 65
1011
- end: 90
1012
- excl: false
1013
- - !ruby/range
1014
- begin: 97
1015
- end: 122
1016
- excl: false
1017
- - !ruby/range
1018
- begin: 170
1019
- end: 170
1020
- excl: false
1021
- - !ruby/range
1022
- begin: 181
1023
- end: 181
1024
- excl: false
1025
- - !ruby/range
1026
- begin: 186
1027
- end: 186
1028
- excl: false
1029
- - !ruby/range
1030
- begin: 192
1031
- end: 214
1032
- excl: false
1033
- - !ruby/range
1034
- begin: 216
1035
- end: 246
1036
- excl: false
1037
- - !ruby/range
1038
- begin: 248
1039
- end: 705
1040
- excl: false
1041
- - !ruby/range
1042
- begin: 710
1043
- end: 721
1044
- excl: false
1045
- - !ruby/range
1046
- begin: 736
1047
- end: 740
1048
- excl: false
1049
- - !ruby/range
1050
- begin: 748
1051
- end: 748
1052
- excl: false
1053
- - !ruby/range
1054
- begin: 750
1055
- end: 750
1056
- excl: false
1057
- - !ruby/range
1058
- begin: 880
1059
- end: 884
1060
- excl: false
1061
- - !ruby/range
1062
- begin: 886
1063
- end: 887
1064
- excl: false
1065
- - !ruby/range
1066
- begin: 890
1067
- end: 893
1068
- excl: false
1069
- - !ruby/range
1070
- begin: 902
1071
- end: 902
1072
- excl: false
1073
- - !ruby/range
1074
- begin: 904
1075
- end: 906
1076
- excl: false
1077
- - !ruby/range
1078
- begin: 908
1079
- end: 908
1080
- excl: false
1081
- - !ruby/range
1082
- begin: 910
1083
- end: 929
1084
- excl: false
1085
- - !ruby/range
1086
- begin: 931
1087
- end: 1013
1088
- excl: false
1089
- - !ruby/range
1090
- begin: 1015
1091
- end: 1153
1092
- excl: false
1093
- - !ruby/range
1094
- begin: 1162
1095
- end: 1319
1096
- excl: false
1097
- - !ruby/range
1098
- begin: 1329
1099
- end: 1366
1100
- excl: false
1101
- - !ruby/range
1102
- begin: 1369
1103
- end: 1369
1104
- excl: false
1105
- - !ruby/range
1106
- begin: 1377
1107
- end: 1415
1108
- excl: false
1109
- - !ruby/range
1110
- begin: 1523
1111
- end: 1523
1112
- excl: false
1113
- - !ruby/range
1114
- begin: 1568
1115
- end: 1610
1116
- excl: false
1117
- - !ruby/range
1118
- begin: 1646
1119
- end: 1647
1120
- excl: false
1121
- - !ruby/range
1122
- begin: 1649
1123
- end: 1747
1124
- excl: false
1125
- - !ruby/range
1126
- begin: 1749
1127
- end: 1749
1128
- excl: false
1129
- - !ruby/range
1130
- begin: 1765
1131
- end: 1766
1132
- excl: false
1133
- - !ruby/range
1134
- begin: 1774
1135
- end: 1775
1136
- excl: false
1137
- - !ruby/range
1138
- begin: 1786
1139
- end: 1788
1140
- excl: false
1141
- - !ruby/range
1142
- begin: 1791
1143
- end: 1791
1144
- excl: false
1145
- - !ruby/range
1146
- begin: 1808
1147
- end: 1808
1148
- excl: false
1149
- - !ruby/range
1150
- begin: 1810
1151
- end: 1839
1152
- excl: false
1153
- - !ruby/range
1154
- begin: 1869
1155
- end: 1957
1156
- excl: false
1157
- - !ruby/range
1158
- begin: 1969
1159
- end: 1969
1160
- excl: false
1161
- - !ruby/range
1162
- begin: 1994
1163
- end: 2026
1164
- excl: false
1165
- - !ruby/range
1166
- begin: 2036
1167
- end: 2037
1168
- excl: false
1169
- - !ruby/range
1170
- begin: 2042
1171
- end: 2042
1172
- excl: false
1173
- - !ruby/range
1174
- begin: 2048
1175
- end: 2069
1176
- excl: false
1177
- - !ruby/range
1178
- begin: 2074
1179
- end: 2074
1180
- excl: false
1181
- - !ruby/range
1182
- begin: 2084
1183
- end: 2084
1184
- excl: false
1185
- - !ruby/range
1186
- begin: 2088
1187
- end: 2088
1188
- excl: false
1189
- - !ruby/range
1190
- begin: 2112
1191
- end: 2136
1192
- excl: false
1193
- - !ruby/range
1194
- begin: 2208
1195
- end: 2208
1196
- excl: false
1197
- - !ruby/range
1198
- begin: 2210
1199
- end: 2220
1200
- excl: false
1201
- - !ruby/range
1202
- begin: 2308
1203
- end: 2361
1204
- excl: false
1205
- - !ruby/range
1206
- begin: 2365
1207
- end: 2365
1208
- excl: false
1209
- - !ruby/range
1210
- begin: 2384
1211
- end: 2384
1212
- excl: false
1213
- - !ruby/range
1214
- begin: 2392
1215
- end: 2401
1216
- excl: false
1217
- - !ruby/range
1218
- begin: 2417
1219
- end: 2423
1220
- excl: false
1221
- - !ruby/range
1222
- begin: 2425
1223
- end: 2431
1224
- excl: false
1225
- - !ruby/range
1226
- begin: 2437
1227
- end: 2444
1228
- excl: false
1229
- - !ruby/range
1230
- begin: 2447
1231
- end: 2448
1232
- excl: false
1233
- - !ruby/range
1234
- begin: 2451
1235
- end: 2472
1236
- excl: false
1237
- - !ruby/range
1238
- begin: 2474
1239
- end: 2480
1240
- excl: false
1241
- - !ruby/range
1242
- begin: 2482
1243
- end: 2482
1244
- excl: false
1245
- - !ruby/range
1246
- begin: 2486
1247
- end: 2489
1248
- excl: false
1249
- - !ruby/range
1250
- begin: 2493
1251
- end: 2493
1252
- excl: false
1253
- - !ruby/range
1254
- begin: 2510
1255
- end: 2510
1256
- excl: false
1257
- - !ruby/range
1258
- begin: 2524
1259
- end: 2525
1260
- excl: false
1261
- - !ruby/range
1262
- begin: 2527
1263
- end: 2529
1264
- excl: false
1265
- - !ruby/range
1266
- begin: 2544
1267
- end: 2545
1268
- excl: false
1269
- - !ruby/range
1270
- begin: 2565
1271
- end: 2570
1272
- excl: false
1273
- - !ruby/range
1274
- begin: 2575
1275
- end: 2576
1276
- excl: false
1277
- - !ruby/range
1278
- begin: 2579
1279
- end: 2600
1280
- excl: false
1281
- - !ruby/range
1282
- begin: 2602
1283
- end: 2608
1284
- excl: false
1285
- - !ruby/range
1286
- begin: 2610
1287
- end: 2611
1288
- excl: false
1289
- - !ruby/range
1290
- begin: 2613
1291
- end: 2614
1292
- excl: false
1293
- - !ruby/range
1294
- begin: 2616
1295
- end: 2617
1296
- excl: false
1297
- - !ruby/range
1298
- begin: 2649
1299
- end: 2652
1300
- excl: false
1301
- - !ruby/range
1302
- begin: 2654
1303
- end: 2654
1304
- excl: false
1305
- - !ruby/range
1306
- begin: 2674
1307
- end: 2676
1308
- excl: false
1309
- - !ruby/range
1310
- begin: 2693
1311
- end: 2701
1312
- excl: false
1313
- - !ruby/range
1314
- begin: 2703
1315
- end: 2705
1316
- excl: false
1317
- - !ruby/range
1318
- begin: 2707
1319
- end: 2728
1320
- excl: false
1321
- - !ruby/range
1322
- begin: 2730
1323
- end: 2736
1324
- excl: false
1325
- - !ruby/range
1326
- begin: 2738
1327
- end: 2739
1328
- excl: false
1329
- - !ruby/range
1330
- begin: 2741
1331
- end: 2745
1332
- excl: false
1333
- - !ruby/range
1334
- begin: 2749
1335
- end: 2749
1336
- excl: false
1337
- - !ruby/range
1338
- begin: 2768
1339
- end: 2768
1340
- excl: false
1341
- - !ruby/range
1342
- begin: 2784
1343
- end: 2785
1344
- excl: false
1345
- - !ruby/range
1346
- begin: 2821
1347
- end: 2828
1348
- excl: false
1349
- - !ruby/range
1350
- begin: 2831
1351
- end: 2832
1352
- excl: false
1353
- - !ruby/range
1354
- begin: 2835
1355
- end: 2856
1356
- excl: false
1357
- - !ruby/range
1358
- begin: 2858
1359
- end: 2864
1360
- excl: false
1361
- - !ruby/range
1362
- begin: 2866
1363
- end: 2867
1364
- excl: false
1365
- - !ruby/range
1366
- begin: 2869
1367
- end: 2873
1368
- excl: false
1369
- - !ruby/range
1370
- begin: 2877
1371
- end: 2877
1372
- excl: false
1373
- - !ruby/range
1374
- begin: 2908
1375
- end: 2909
1376
- excl: false
1377
- - !ruby/range
1378
- begin: 2911
1379
- end: 2913
1380
- excl: false
1381
- - !ruby/range
1382
- begin: 2929
1383
- end: 2929
1384
- excl: false
1385
- - !ruby/range
1386
- begin: 2947
1387
- end: 2947
1388
- excl: false
1389
- - !ruby/range
1390
- begin: 2949
1391
- end: 2954
1392
- excl: false
1393
- - !ruby/range
1394
- begin: 2958
1395
- end: 2960
1396
- excl: false
1397
- - !ruby/range
1398
- begin: 2962
1399
- end: 2965
1400
- excl: false
1401
- - !ruby/range
1402
- begin: 2969
1403
- end: 2970
1404
- excl: false
1405
- - !ruby/range
1406
- begin: 2972
1407
- end: 2972
1408
- excl: false
1409
- - !ruby/range
1410
- begin: 2974
1411
- end: 2975
1412
- excl: false
1413
- - !ruby/range
1414
- begin: 2979
1415
- end: 2980
1416
- excl: false
1417
- - !ruby/range
1418
- begin: 2984
1419
- end: 2986
1420
- excl: false
1421
- - !ruby/range
1422
- begin: 2990
1423
- end: 3001
1424
- excl: false
1425
- - !ruby/range
1426
- begin: 3024
1427
- end: 3024
1428
- excl: false
1429
- - !ruby/range
1430
- begin: 3077
1431
- end: 3084
1432
- excl: false
1433
- - !ruby/range
1434
- begin: 3086
1435
- end: 3088
1436
- excl: false
1437
- - !ruby/range
1438
- begin: 3090
1439
- end: 3112
1440
- excl: false
1441
- - !ruby/range
1442
- begin: 3114
1443
- end: 3123
1444
- excl: false
1445
- - !ruby/range
1446
- begin: 3125
1447
- end: 3129
1448
- excl: false
1449
- - !ruby/range
1450
- begin: 3133
1451
- end: 3133
1452
- excl: false
1453
- - !ruby/range
1454
- begin: 3160
1455
- end: 3161
1456
- excl: false
1457
- - !ruby/range
1458
- begin: 3168
1459
- end: 3169
1460
- excl: false
1461
- - !ruby/range
1462
- begin: 3205
1463
- end: 3212
1464
- excl: false
1465
- - !ruby/range
1466
- begin: 3214
1467
- end: 3216
1468
- excl: false
1469
- - !ruby/range
1470
- begin: 3218
1471
- end: 3240
1472
- excl: false
1473
- - !ruby/range
1474
- begin: 3242
1475
- end: 3251
1476
- excl: false
1477
- - !ruby/range
1478
- begin: 3253
1479
- end: 3257
1480
- excl: false
1481
- - !ruby/range
1482
- begin: 3261
1483
- end: 3261
1484
- excl: false
1485
- - !ruby/range
1486
- begin: 3294
1487
- end: 3294
1488
- excl: false
1489
- - !ruby/range
1490
- begin: 3296
1491
- end: 3297
1492
- excl: false
1493
- - !ruby/range
1494
- begin: 3313
1495
- end: 3314
1496
- excl: false
1497
- - !ruby/range
1498
- begin: 3333
1499
- end: 3340
1500
- excl: false
1501
- - !ruby/range
1502
- begin: 3342
1503
- end: 3344
1504
- excl: false
1505
- - !ruby/range
1506
- begin: 3346
1507
- end: 3386
1508
- excl: false
1509
- - !ruby/range
1510
- begin: 3389
1511
- end: 3389
1512
- excl: false
1513
- - !ruby/range
1514
- begin: 3406
1515
- end: 3406
1516
- excl: false
1517
- - !ruby/range
1518
- begin: 3424
1519
- end: 3425
1520
- excl: false
1521
- - !ruby/range
1522
- begin: 3450
1523
- end: 3455
1524
- excl: false
1525
- - !ruby/range
1526
- begin: 3461
1527
- end: 3478
1528
- excl: false
1529
- - !ruby/range
1530
- begin: 3482
1531
- end: 3505
1532
- excl: false
1533
- - !ruby/range
1534
- begin: 3507
1535
- end: 3515
1536
- excl: false
1537
- - !ruby/range
1538
- begin: 3517
1539
- end: 3517
1540
- excl: false
1541
- - !ruby/range
1542
- begin: 3520
1543
- end: 3526
1544
- excl: false
1545
- - !ruby/range
1546
- begin: 3840
1547
- end: 3840
1548
- excl: false
1549
- - !ruby/range
1550
- begin: 3904
1551
- end: 3911
1552
- excl: false
1553
- - !ruby/range
1554
- begin: 3913
1555
- end: 3948
1556
- excl: false
1557
- - !ruby/range
1558
- begin: 3976
1559
- end: 3980
1560
- excl: false
1561
- - !ruby/range
1562
- begin: 4256
1563
- end: 4293
1564
- excl: false
1565
- - !ruby/range
1566
- begin: 4295
1567
- end: 4295
1568
- excl: false
1569
- - !ruby/range
1570
- begin: 4301
1571
- end: 4301
1572
- excl: false
1573
- - !ruby/range
1574
- begin: 4304
1575
- end: 4346
1576
- excl: false
1577
- - !ruby/range
1578
- begin: 4348
1579
- end: 4680
1580
- excl: false
1581
- - !ruby/range
1582
- begin: 4682
1583
- end: 4685
1584
- excl: false
1585
- - !ruby/range
1586
- begin: 4688
1587
- end: 4694
1588
- excl: false
1589
- - !ruby/range
1590
- begin: 4696
1591
- end: 4696
1592
- excl: false
1593
- - !ruby/range
1594
- begin: 4698
1595
- end: 4701
1596
- excl: false
1597
- - !ruby/range
1598
- begin: 4704
1599
- end: 4744
1600
- excl: false
1601
- - !ruby/range
1602
- begin: 4746
1603
- end: 4749
1604
- excl: false
1605
- - !ruby/range
1606
- begin: 4752
1607
- end: 4784
1608
- excl: false
1609
- - !ruby/range
1610
- begin: 4786
1611
- end: 4789
1612
- excl: false
1613
- - !ruby/range
1614
- begin: 4792
1615
- end: 4798
1616
- excl: false
1617
- - !ruby/range
1618
- begin: 4800
1619
- end: 4800
1620
- excl: false
1621
- - !ruby/range
1622
- begin: 4802
1623
- end: 4805
1624
- excl: false
1625
- - !ruby/range
1626
- begin: 4808
1627
- end: 4822
1628
- excl: false
1629
- - !ruby/range
1630
- begin: 4824
1631
- end: 4880
1632
- excl: false
1633
- - !ruby/range
1634
- begin: 4882
1635
- end: 4885
1636
- excl: false
1637
- - !ruby/range
1638
- begin: 4888
1639
- end: 4954
1640
- excl: false
1641
- - !ruby/range
1642
- begin: 4992
1643
- end: 5007
1644
- excl: false
1645
- - !ruby/range
1646
- begin: 5024
1647
- end: 5108
1648
- excl: false
1649
- - !ruby/range
1650
- begin: 5121
1651
- end: 5740
1652
- excl: false
1653
- - !ruby/range
1654
- begin: 5743
1655
- end: 5759
1656
- excl: false
1657
- - !ruby/range
1658
- begin: 5761
1659
- end: 5786
1660
- excl: false
1661
- - !ruby/range
1662
- begin: 5792
1663
- end: 5866
1664
- excl: false
1665
- - !ruby/range
1666
- begin: 5870
1667
- end: 5872
1668
- excl: false
1669
- - !ruby/range
1670
- begin: 5888
1671
- end: 5900
1672
- excl: false
1673
- - !ruby/range
1674
- begin: 5902
1675
- end: 5905
1676
- excl: false
1677
- - !ruby/range
1678
- begin: 5920
1679
- end: 5937
1680
- excl: false
1681
- - !ruby/range
1682
- begin: 5952
1683
- end: 5969
1684
- excl: false
1685
- - !ruby/range
1686
- begin: 5984
1687
- end: 5996
1688
- excl: false
1689
- - !ruby/range
1690
- begin: 5998
1691
- end: 6000
1692
- excl: false
1693
- - !ruby/range
1694
- begin: 6176
1695
- end: 6263
1696
- excl: false
1697
- - !ruby/range
1698
- begin: 6272
1699
- end: 6312
1700
- excl: false
1701
- - !ruby/range
1702
- begin: 6314
1703
- end: 6314
1704
- excl: false
1705
- - !ruby/range
1706
- begin: 6320
1707
- end: 6389
1708
- excl: false
1709
- - !ruby/range
1710
- begin: 6400
1711
- end: 6428
1712
- excl: false
1713
- - !ruby/range
1714
- begin: 6656
1715
- end: 6678
1716
- excl: false
1717
- - !ruby/range
1718
- begin: 6917
1719
- end: 6963
1720
- excl: false
1721
- - !ruby/range
1722
- begin: 6981
1723
- end: 6987
1724
- excl: false
1725
- - !ruby/range
1726
- begin: 7043
1727
- end: 7072
1728
- excl: false
1729
- - !ruby/range
1730
- begin: 7086
1731
- end: 7087
1732
- excl: false
1733
- - !ruby/range
1734
- begin: 7098
1735
- end: 7141
1736
- excl: false
1737
- - !ruby/range
1738
- begin: 7168
1739
- end: 7203
1740
- excl: false
1741
- - !ruby/range
1742
- begin: 7245
1743
- end: 7247
1744
- excl: false
1745
- - !ruby/range
1746
- begin: 7258
1747
- end: 7293
1748
- excl: false
1749
- - !ruby/range
1750
- begin: 7401
1751
- end: 7404
1752
- excl: false
1753
- - !ruby/range
1754
- begin: 7406
1755
- end: 7409
1756
- excl: false
1757
- - !ruby/range
1758
- begin: 7413
1759
- end: 7414
1760
- excl: false
1761
- - !ruby/range
1762
- begin: 7424
1763
- end: 7615
1764
- excl: false
1765
- - !ruby/range
1766
- begin: 7680
1767
- end: 7957
1768
- excl: false
1769
- - !ruby/range
1770
- begin: 7960
1771
- end: 7965
1772
- excl: false
1773
- - !ruby/range
1774
- begin: 7968
1775
- end: 8005
1776
- excl: false
1777
- - !ruby/range
1778
- begin: 8008
1779
- end: 8013
1780
- excl: false
1781
- - !ruby/range
1782
- begin: 8016
1783
- end: 8023
1784
- excl: false
1785
- - !ruby/range
1786
- begin: 8025
1787
- end: 8025
1788
- excl: false
1789
- - !ruby/range
1790
- begin: 8027
1791
- end: 8027
1792
- excl: false
1793
- - !ruby/range
1794
- begin: 8029
1795
- end: 8029
1796
- excl: false
1797
- - !ruby/range
1798
- begin: 8031
1799
- end: 8061
1800
- excl: false
1801
- - !ruby/range
1802
- begin: 8064
1803
- end: 8116
1804
- excl: false
1805
- - !ruby/range
1806
- begin: 8118
1807
- end: 8124
1808
- excl: false
1809
- - !ruby/range
1810
- begin: 8126
1811
- end: 8126
1812
- excl: false
1813
- - !ruby/range
1814
- begin: 8130
1815
- end: 8132
1816
- excl: false
1817
- - !ruby/range
1818
- begin: 8134
1819
- end: 8140
1820
- excl: false
1821
- - !ruby/range
1822
- begin: 8144
1823
- end: 8147
1824
- excl: false
1825
- - !ruby/range
1826
- begin: 8150
1827
- end: 8155
1828
- excl: false
1829
- - !ruby/range
1830
- begin: 8160
1831
- end: 8172
1832
- excl: false
1833
- - !ruby/range
1834
- begin: 8178
1835
- end: 8180
1836
- excl: false
1837
- - !ruby/range
1838
- begin: 8182
1839
- end: 8188
1840
- excl: false
1841
- - !ruby/range
1842
- begin: 8305
1843
- end: 8305
1844
- excl: false
1845
- - !ruby/range
1846
- begin: 8319
1847
- end: 8319
1848
- excl: false
1849
- - !ruby/range
1850
- begin: 8336
1851
- end: 8348
1852
- excl: false
1853
- - !ruby/range
1854
- begin: 8450
1855
- end: 8450
1856
- excl: false
1857
- - !ruby/range
1858
- begin: 8455
1859
- end: 8455
1860
- excl: false
1861
- - !ruby/range
1862
- begin: 8458
1863
- end: 8467
1864
- excl: false
1865
- - !ruby/range
1866
- begin: 8469
1867
- end: 8469
1868
- excl: false
1869
- - !ruby/range
1870
- begin: 8473
1871
- end: 8477
1872
- excl: false
1873
- - !ruby/range
1874
- begin: 8484
1875
- end: 8484
1876
- excl: false
1877
- - !ruby/range
1878
- begin: 8486
1879
- end: 8486
1880
- excl: false
1881
- - !ruby/range
1882
- begin: 8488
1883
- end: 8488
1884
- excl: false
1885
- - !ruby/range
1886
- begin: 8490
1887
- end: 8493
1888
- excl: false
1889
- - !ruby/range
1890
- begin: 8495
1891
- end: 8505
1892
- excl: false
1893
- - !ruby/range
1894
- begin: 8508
1895
- end: 8511
1896
- excl: false
1897
- - !ruby/range
1898
- begin: 8517
1899
- end: 8521
1900
- excl: false
1901
- - !ruby/range
1902
- begin: 8526
1903
- end: 8526
1904
- excl: false
1905
- - !ruby/range
1906
- begin: 8544
1907
- end: 8584
1908
- excl: false
1909
- - !ruby/range
1910
- begin: 9398
1911
- end: 9449
1912
- excl: false
1913
- - !ruby/range
1914
- begin: 11264
1915
- end: 11310
1916
- excl: false
1917
- - !ruby/range
1918
- begin: 11312
1919
- end: 11358
1920
- excl: false
1921
- - !ruby/range
1922
- begin: 11360
1923
- end: 11492
1924
- excl: false
1925
- - !ruby/range
1926
- begin: 11499
1927
- end: 11502
1928
- excl: false
1929
- - !ruby/range
1930
- begin: 11506
1931
- end: 11507
1932
- excl: false
1933
- - !ruby/range
1934
- begin: 11520
1935
- end: 11557
1936
- excl: false
1937
- - !ruby/range
1938
- begin: 11559
1939
- end: 11559
1940
- excl: false
1941
- - !ruby/range
1942
- begin: 11565
1943
- end: 11565
1944
- excl: false
1945
- - !ruby/range
1946
- begin: 11568
1947
- end: 11623
1948
- excl: false
1949
- - !ruby/range
1950
- begin: 11631
1951
- end: 11631
1952
- excl: false
1953
- - !ruby/range
1954
- begin: 11648
1955
- end: 11670
1956
- excl: false
1957
- - !ruby/range
1958
- begin: 11680
1959
- end: 11686
1960
- excl: false
1961
- - !ruby/range
1962
- begin: 11688
1963
- end: 11694
1964
- excl: false
1965
- - !ruby/range
1966
- begin: 11696
1967
- end: 11702
1968
- excl: false
1969
- - !ruby/range
1970
- begin: 11704
1971
- end: 11710
1972
- excl: false
1973
- - !ruby/range
1974
- begin: 11712
1975
- end: 11718
1976
- excl: false
1977
- - !ruby/range
1978
- begin: 11720
1979
- end: 11726
1980
- excl: false
1981
- - !ruby/range
1982
- begin: 11728
1983
- end: 11734
1984
- excl: false
1985
- - !ruby/range
1986
- begin: 11736
1987
- end: 11742
1988
- excl: false
1989
- - !ruby/range
1990
- begin: 11823
1991
- end: 11823
1992
- excl: false
1993
- - !ruby/range
1994
- begin: 12293
1995
- end: 12293
1996
- excl: false
1997
- - !ruby/range
1998
- begin: 12347
1999
- end: 12348
2000
- excl: false
2001
- - !ruby/range
2002
- begin: 12549
2003
- end: 12589
2004
- excl: false
2005
- - !ruby/range
2006
- begin: 12593
2007
- end: 12686
2008
- excl: false
2009
- - !ruby/range
2010
- begin: 12704
2011
- end: 12730
2012
- excl: false
2013
- - !ruby/range
2014
- begin: 40960
2015
- end: 42124
2016
- excl: false
2017
- - !ruby/range
2018
- begin: 42192
2019
- end: 42237
2020
- excl: false
2021
- - !ruby/range
2022
- begin: 42240
2023
- end: 42508
2024
- excl: false
2025
- - !ruby/range
2026
- begin: 42512
2027
- end: 42527
2028
- excl: false
2029
- - !ruby/range
2030
- begin: 42538
2031
- end: 42539
2032
- excl: false
2033
- - !ruby/range
2034
- begin: 42560
2035
- end: 42606
2036
- excl: false
2037
- - !ruby/range
2038
- begin: 42623
2039
- end: 42647
2040
- excl: false
2041
- - !ruby/range
2042
- begin: 42656
2043
- end: 42735
2044
- excl: false
2045
- - !ruby/range
2046
- begin: 42775
2047
- end: 42783
2048
- excl: false
2049
- - !ruby/range
2050
- begin: 42786
2051
- end: 42888
2052
- excl: false
2053
- - !ruby/range
2054
- begin: 42891
2055
- end: 42894
2056
- excl: false
2057
- - !ruby/range
2058
- begin: 42896
2059
- end: 42899
2060
- excl: false
2061
- - !ruby/range
2062
- begin: 42912
2063
- end: 42922
2064
- excl: false
2065
- - !ruby/range
2066
- begin: 43000
2067
- end: 43009
2068
- excl: false
2069
- - !ruby/range
2070
- begin: 43011
2071
- end: 43013
2072
- excl: false
2073
- - !ruby/range
2074
- begin: 43015
2075
- end: 43018
2076
- excl: false
2077
- - !ruby/range
2078
- begin: 43020
2079
- end: 43042
2080
- excl: false
2081
- - !ruby/range
2082
- begin: 43072
2083
- end: 43123
2084
- excl: false
2085
- - !ruby/range
2086
- begin: 43138
2087
- end: 43187
2088
- excl: false
2089
- - !ruby/range
2090
- begin: 43250
2091
- end: 43255
2092
- excl: false
2093
- - !ruby/range
2094
- begin: 43259
2095
- end: 43259
2096
- excl: false
2097
- - !ruby/range
2098
- begin: 43274
2099
- end: 43301
2100
- excl: false
2101
- - !ruby/range
2102
- begin: 43312
2103
- end: 43334
2104
- excl: false
2105
- - !ruby/range
2106
- begin: 43360
2107
- end: 43388
2108
- excl: false
2109
- - !ruby/range
2110
- begin: 43396
2111
- end: 43442
2112
- excl: false
2113
- - !ruby/range
2114
- begin: 43471
2115
- end: 43471
2116
- excl: false
2117
- - !ruby/range
2118
- begin: 43520
2119
- end: 43560
2120
- excl: false
2121
- - !ruby/range
2122
- begin: 43584
2123
- end: 43586
2124
- excl: false
2125
- - !ruby/range
2126
- begin: 43588
2127
- end: 43595
2128
- excl: false
2129
- - !ruby/range
2130
- begin: 43744
2131
- end: 43754
2132
- excl: false
2133
- - !ruby/range
2134
- begin: 43762
2135
- end: 43764
2136
- excl: false
2137
- - !ruby/range
2138
- begin: 43777
2139
- end: 43782
2140
- excl: false
2141
- - !ruby/range
2142
- begin: 43785
2143
- end: 43790
2144
- excl: false
2145
- - !ruby/range
2146
- begin: 43793
2147
- end: 43798
2148
- excl: false
2149
- - !ruby/range
2150
- begin: 43808
2151
- end: 43814
2152
- excl: false
2153
- - !ruby/range
2154
- begin: 43816
2155
- end: 43822
2156
- excl: false
2157
- - !ruby/range
2158
- begin: 43968
2159
- end: 44002
2160
- excl: false
2161
- - !ruby/range
2162
- begin: 44032
2163
- end: 55203
2164
- excl: false
2165
- - !ruby/range
2166
- begin: 55216
2167
- end: 55238
2168
- excl: false
2169
- - !ruby/range
2170
- begin: 55243
2171
- end: 55291
2172
- excl: false
2173
- - !ruby/range
2174
- begin: 64256
2175
- end: 64262
2176
- excl: false
2177
- - !ruby/range
2178
- begin: 64275
2179
- end: 64279
2180
- excl: false
2181
- - !ruby/range
2182
- begin: 64336
2183
- end: 64433
2184
- excl: false
2185
- - !ruby/range
2186
- begin: 64467
2187
- end: 64829
2188
- excl: false
2189
- - !ruby/range
2190
- begin: 64848
2191
- end: 64911
2192
- excl: false
2193
- - !ruby/range
2194
- begin: 64914
2195
- end: 64967
2196
- excl: false
2197
- - !ruby/range
2198
- begin: 65008
2199
- end: 65019
2200
- excl: false
2201
- - !ruby/range
2202
- begin: 65136
2203
- end: 65140
2204
- excl: false
2205
- - !ruby/range
2206
- begin: 65142
2207
- end: 65276
2208
- excl: false
2209
- - !ruby/range
2210
- begin: 65313
2211
- end: 65338
2212
- excl: false
2213
- - !ruby/range
2214
- begin: 65345
2215
- end: 65370
2216
- excl: false
2217
- - !ruby/range
2218
- begin: 65440
2219
- end: 65470
2220
- excl: false
2221
- - !ruby/range
2222
- begin: 65474
2223
- end: 65479
2224
- excl: false
2225
- - !ruby/range
2226
- begin: 65482
2227
- end: 65487
2228
- excl: false
2229
- - !ruby/range
2230
- begin: 65490
2231
- end: 65495
2232
- excl: false
2233
- - !ruby/range
2234
- begin: 65498
2235
- end: 65500
2236
- excl: false
2237
- - !ruby/range
2238
- begin: 65536
2239
- end: 65547
2240
- excl: false
2241
- - !ruby/range
2242
- begin: 65549
2243
- end: 65574
2244
- excl: false
2245
- - !ruby/range
2246
- begin: 65576
2247
- end: 65594
2248
- excl: false
2249
- - !ruby/range
2250
- begin: 65596
2251
- end: 65597
2252
- excl: false
2253
- - !ruby/range
2254
- begin: 65599
2255
- end: 65613
2256
- excl: false
2257
- - !ruby/range
2258
- begin: 65616
2259
- end: 65629
2260
- excl: false
2261
- - !ruby/range
2262
- begin: 65664
2263
- end: 65786
2264
- excl: false
2265
- - !ruby/range
2266
- begin: 65856
2267
- end: 65908
2268
- excl: false
2269
- - !ruby/range
2270
- begin: 66176
2271
- end: 66204
2272
- excl: false
2273
- - !ruby/range
2274
- begin: 66208
2275
- end: 66256
2276
- excl: false
2277
- - !ruby/range
2278
- begin: 66304
2279
- end: 66334
2280
- excl: false
2281
- - !ruby/range
2282
- begin: 66352
2283
- end: 66378
2284
- excl: false
2285
- - !ruby/range
2286
- begin: 66432
2287
- end: 66461
2288
- excl: false
2289
- - !ruby/range
2290
- begin: 66464
2291
- end: 66499
2292
- excl: false
2293
- - !ruby/range
2294
- begin: 66504
2295
- end: 66511
2296
- excl: false
2297
- - !ruby/range
2298
- begin: 66513
2299
- end: 66517
2300
- excl: false
2301
- - !ruby/range
2302
- begin: 66560
2303
- end: 66717
2304
- excl: false
2305
- - !ruby/range
2306
- begin: 67584
2307
- end: 67589
2308
- excl: false
2309
- - !ruby/range
2310
- begin: 67592
2311
- end: 67592
2312
- excl: false
2313
- - !ruby/range
2314
- begin: 67594
2315
- end: 67637
2316
- excl: false
2317
- - !ruby/range
2318
- begin: 67639
2319
- end: 67640
2320
- excl: false
2321
- - !ruby/range
2322
- begin: 67644
2323
- end: 67644
2324
- excl: false
2325
- - !ruby/range
2326
- begin: 67647
2327
- end: 67669
2328
- excl: false
2329
- - !ruby/range
2330
- begin: 67840
2331
- end: 67861
2332
- excl: false
2333
- - !ruby/range
2334
- begin: 67872
2335
- end: 67897
2336
- excl: false
2337
- - !ruby/range
2338
- begin: 67968
2339
- end: 68023
2340
- excl: false
2341
- - !ruby/range
2342
- begin: 68030
2343
- end: 68031
2344
- excl: false
2345
- - !ruby/range
2346
- begin: 68096
2347
- end: 68096
2348
- excl: false
2349
- - !ruby/range
2350
- begin: 68112
2351
- end: 68115
2352
- excl: false
2353
- - !ruby/range
2354
- begin: 68117
2355
- end: 68119
2356
- excl: false
2357
- - !ruby/range
2358
- begin: 68121
2359
- end: 68147
2360
- excl: false
2361
- - !ruby/range
2362
- begin: 68192
2363
- end: 68220
2364
- excl: false
2365
- - !ruby/range
2366
- begin: 68352
2367
- end: 68405
2368
- excl: false
2369
- - !ruby/range
2370
- begin: 68416
2371
- end: 68437
2372
- excl: false
2373
- - !ruby/range
2374
- begin: 68448
2375
- end: 68466
2376
- excl: false
2377
- - !ruby/range
2378
- begin: 68608
2379
- end: 68680
2380
- excl: false
2381
- - !ruby/range
2382
- begin: 69635
2383
- end: 69687
2384
- excl: false
2385
- - !ruby/range
2386
- begin: 69763
2387
- end: 69807
2388
- excl: false
2389
- - !ruby/range
2390
- begin: 69840
2391
- end: 69864
2392
- excl: false
2393
- - !ruby/range
2394
- begin: 69891
2395
- end: 69926
2396
- excl: false
2397
- - !ruby/range
2398
- begin: 70019
2399
- end: 70066
2400
- excl: false
2401
- - !ruby/range
2402
- begin: 70081
2403
- end: 70084
2404
- excl: false
2405
- - !ruby/range
2406
- begin: 71296
2407
- end: 71338
2408
- excl: false
2409
- - !ruby/range
2410
- begin: 73728
2411
- end: 74606
2412
- excl: false
2413
- - !ruby/range
2414
- begin: 74752
2415
- end: 74850
2416
- excl: false
2417
- - !ruby/range
2418
- begin: 77824
2419
- end: 78894
2420
- excl: false
2421
- - !ruby/range
2422
- begin: 92160
2423
- end: 92728
2424
- excl: false
2425
- - !ruby/range
2426
- begin: 93952
2427
- end: 94020
2428
- excl: false
2429
- - !ruby/range
2430
- begin: 94032
2431
- end: 94032
2432
- excl: false
2433
- - !ruby/range
2434
- begin: 94099
2435
- end: 94111
2436
- excl: false
2437
- - !ruby/range
2438
- begin: 119808
2439
- end: 119892
2440
- excl: false
2441
- - !ruby/range
2442
- begin: 119894
2443
- end: 119964
2444
- excl: false
2445
- - !ruby/range
2446
- begin: 119966
2447
- end: 119967
2448
- excl: false
2449
- - !ruby/range
2450
- begin: 119970
2451
- end: 119970
2452
- excl: false
2453
- - !ruby/range
2454
- begin: 119973
2455
- end: 119974
2456
- excl: false
2457
- - !ruby/range
2458
- begin: 119977
2459
- end: 119980
2460
- excl: false
2461
- - !ruby/range
2462
- begin: 119982
2463
- end: 119993
2464
- excl: false
2465
- - !ruby/range
2466
- begin: 119995
2467
- end: 119995
2468
- excl: false
2469
- - !ruby/range
2470
- begin: 119997
2471
- end: 120003
2472
- excl: false
2473
- - !ruby/range
2474
- begin: 120005
2475
- end: 120069
2476
- excl: false
2477
- - !ruby/range
2478
- begin: 120071
2479
- end: 120074
2480
- excl: false
2481
- - !ruby/range
2482
- begin: 120077
2483
- end: 120084
2484
- excl: false
2485
- - !ruby/range
2486
- begin: 120086
2487
- end: 120092
2488
- excl: false
2489
- - !ruby/range
2490
- begin: 120094
2491
- end: 120121
2492
- excl: false
2493
- - !ruby/range
2494
- begin: 120123
2495
- end: 120126
2496
- excl: false
2497
- - !ruby/range
2498
- begin: 120128
2499
- end: 120132
2500
- excl: false
2501
- - !ruby/range
2502
- begin: 120134
2503
- end: 120134
2504
- excl: false
2505
- - !ruby/range
2506
- begin: 120138
2507
- end: 120144
2508
- excl: false
2509
- - !ruby/range
2510
- begin: 120146
2511
- end: 120485
2512
- excl: false
2513
- - !ruby/range
2514
- begin: 120488
2515
- end: 120512
2516
- excl: false
2517
- - !ruby/range
2518
- begin: 120514
2519
- end: 120538
2520
- excl: false
2521
- - !ruby/range
2522
- begin: 120540
2523
- end: 120570
2524
- excl: false
2525
- - !ruby/range
2526
- begin: 120572
2527
- end: 120596
2528
- excl: false
2529
- - !ruby/range
2530
- begin: 120598
2531
- end: 120628
2532
- excl: false
2533
- - !ruby/range
2534
- begin: 120630
2535
- end: 120654
2536
- excl: false
2537
- - !ruby/range
2538
- begin: 120656
2539
- end: 120686
2540
- excl: false
2541
- - !ruby/range
2542
- begin: 120688
2543
- end: 120712
2544
- excl: false
2545
- - !ruby/range
2546
- begin: 120714
2547
- end: 120744
2548
- excl: false
2549
- - !ruby/range
2550
- begin: 120746
2551
- end: 120770
2552
- excl: false
2553
- - !ruby/range
2554
- begin: 120772
2555
- end: 120779
2556
- excl: false
2557
- - !ruby/range
2558
- begin: 126464
2559
- end: 126467
2560
- excl: false
2561
- - !ruby/range
2562
- begin: 126469
2563
- end: 126495
2564
- excl: false
2565
- - !ruby/range
2566
- begin: 126497
2567
- end: 126498
2568
- excl: false
2569
- - !ruby/range
2570
- begin: 126500
2571
- end: 126500
2572
- excl: false
2573
- - !ruby/range
2574
- begin: 126503
2575
- end: 126503
2576
- excl: false
2577
- - !ruby/range
2578
- begin: 126505
2579
- end: 126514
2580
- excl: false
2581
- - !ruby/range
2582
- begin: 126516
2583
- end: 126519
2584
- excl: false
2585
- - !ruby/range
2586
- begin: 126521
2587
- end: 126521
2588
- excl: false
2589
- - !ruby/range
2590
- begin: 126523
2591
- end: 126523
2592
- excl: false
2593
- - !ruby/range
2594
- begin: 126530
2595
- end: 126530
2596
- excl: false
2597
- - !ruby/range
2598
- begin: 126535
2599
- end: 126535
2600
- excl: false
2601
- - !ruby/range
2602
- begin: 126537
2603
- end: 126537
2604
- excl: false
2605
- - !ruby/range
2606
- begin: 126539
2607
- end: 126539
2608
- excl: false
2609
- - !ruby/range
2610
- begin: 126541
2611
- end: 126543
2612
- excl: false
2613
- - !ruby/range
2614
- begin: 126545
2615
- end: 126546
2616
- excl: false
2617
- - !ruby/range
2618
- begin: 126548
2619
- end: 126548
2620
- excl: false
2621
- - !ruby/range
2622
- begin: 126551
2623
- end: 126551
2624
- excl: false
2625
- - !ruby/range
2626
- begin: 126553
2627
- end: 126553
2628
- excl: false
2629
- - !ruby/range
2630
- begin: 126555
2631
- end: 126555
2632
- excl: false
2633
- - !ruby/range
2634
- begin: 126557
2635
- end: 126557
2636
- excl: false
2637
- - !ruby/range
2638
- begin: 126559
2639
- end: 126559
2640
- excl: false
2641
- - !ruby/range
2642
- begin: 126561
2643
- end: 126562
2644
- excl: false
2645
- - !ruby/range
2646
- begin: 126564
2647
- end: 126564
2648
- excl: false
2649
- - !ruby/range
2650
- begin: 126567
2651
- end: 126570
2652
- excl: false
2653
- - !ruby/range
2654
- begin: 126572
2655
- end: 126578
2656
- excl: false
2657
- - !ruby/range
2658
- begin: 126580
2659
- end: 126583
2660
- excl: false
2661
- - !ruby/range
2662
- begin: 126585
2663
- end: 126588
2664
- excl: false
2665
- - !ruby/range
2666
- begin: 126590
2667
- end: 126590
2668
- excl: false
2669
- - !ruby/range
2670
- begin: 126592
2671
- end: 126601
2672
- excl: false
2673
- - !ruby/range
2674
- begin: 126603
2675
- end: 126619
2676
- excl: false
2677
- - !ruby/range
2678
- begin: 126625
2679
- end: 126627
2680
- excl: false
2681
- - !ruby/range
2682
- begin: 126629
2683
- end: 126633
2684
- excl: false
2685
- - !ruby/range
2686
- begin: 126635
2687
- end: 126651
2688
- excl: false
2689
- :MidLetter:
2690
- - !ruby/range
2691
- begin: 58
2692
- end: 58
2693
- excl: false
2694
- - !ruby/range
2695
- begin: 183
2696
- end: 183
2697
- excl: false
2698
- - !ruby/range
2699
- begin: 727
2700
- end: 727
2701
- excl: false
2702
- - !ruby/range
2703
- begin: 903
2704
- end: 903
2705
- excl: false
2706
- - !ruby/range
2707
- begin: 1524
2708
- end: 1524
2709
- excl: false
2710
- - !ruby/range
2711
- begin: 8231
2712
- end: 8231
2713
- excl: false
2714
- - !ruby/range
2715
- begin: 65043
2716
- end: 65043
2717
- excl: false
2718
- - !ruby/range
2719
- begin: 65109
2720
- end: 65109
2721
- excl: false
2722
- - !ruby/range
2723
- begin: 65306
2724
- end: 65306
2725
- excl: false
2726
- :MidNum:
2727
- - !ruby/range
2728
- begin: 44
2729
- end: 44
2730
- excl: false
2731
- - !ruby/range
2732
- begin: 59
2733
- end: 59
2734
- excl: false
2735
- - !ruby/range
2736
- begin: 894
2737
- end: 894
2738
- excl: false
2739
- - !ruby/range
2740
- begin: 1417
2741
- end: 1417
2742
- excl: false
2743
- - !ruby/range
2744
- begin: 1548
2745
- end: 1549
2746
- excl: false
2747
- - !ruby/range
2748
- begin: 1644
2749
- end: 1644
2750
- excl: false
2751
- - !ruby/range
2752
- begin: 2040
2753
- end: 2040
2754
- excl: false
2755
- - !ruby/range
2756
- begin: 8260
2757
- end: 8260
2758
- excl: false
2759
- - !ruby/range
2760
- begin: 65040
2761
- end: 65040
2762
- excl: false
2763
- - !ruby/range
2764
- begin: 65044
2765
- end: 65044
2766
- excl: false
2767
- - !ruby/range
2768
- begin: 65104
2769
- end: 65104
2770
- excl: false
2771
- - !ruby/range
2772
- begin: 65108
2773
- end: 65108
2774
- excl: false
2775
- - !ruby/range
2776
- begin: 65292
2777
- end: 65292
2778
- excl: false
2779
- - !ruby/range
2780
- begin: 65307
2781
- end: 65307
2782
- excl: false
2783
- :MidNumLet:
2784
- - !ruby/range
2785
- begin: 46
2786
- end: 46
2787
- excl: false
2788
- - !ruby/range
2789
- begin: 8216
2790
- end: 8217
2791
- excl: false
2792
- - !ruby/range
2793
- begin: 8228
2794
- end: 8228
2795
- excl: false
2796
- - !ruby/range
2797
- begin: 65106
2798
- end: 65106
2799
- excl: false
2800
- - !ruby/range
2801
- begin: 65287
2802
- end: 65287
2803
- excl: false
2804
- - !ruby/range
2805
- begin: 65294
2806
- end: 65294
2807
- excl: false
2808
- :Numeric:
2809
- - !ruby/range
2810
- begin: 48
2811
- end: 57
2812
- excl: false
2813
- - !ruby/range
2814
- begin: 1632
2815
- end: 1641
2816
- excl: false
2817
- - !ruby/range
2818
- begin: 1643
2819
- end: 1643
2820
- excl: false
2821
- - !ruby/range
2822
- begin: 1776
2823
- end: 1785
2824
- excl: false
2825
- - !ruby/range
2826
- begin: 1984
2827
- end: 1993
2828
- excl: false
2829
- - !ruby/range
2830
- begin: 2406
2831
- end: 2415
2832
- excl: false
2833
- - !ruby/range
2834
- begin: 2534
2835
- end: 2543
2836
- excl: false
2837
- - !ruby/range
2838
- begin: 2662
2839
- end: 2671
2840
- excl: false
2841
- - !ruby/range
2842
- begin: 2790
2843
- end: 2799
2844
- excl: false
2845
- - !ruby/range
2846
- begin: 2918
2847
- end: 2927
2848
- excl: false
2849
- - !ruby/range
2850
- begin: 3046
2851
- end: 3055
2852
- excl: false
2853
- - !ruby/range
2854
- begin: 3174
2855
- end: 3183
2856
- excl: false
2857
- - !ruby/range
2858
- begin: 3302
2859
- end: 3311
2860
- excl: false
2861
- - !ruby/range
2862
- begin: 3430
2863
- end: 3439
2864
- excl: false
2865
- - !ruby/range
2866
- begin: 3664
2867
- end: 3673
2868
- excl: false
2869
- - !ruby/range
2870
- begin: 3792
2871
- end: 3801
2872
- excl: false
2873
- - !ruby/range
2874
- begin: 3872
2875
- end: 3881
2876
- excl: false
2877
- - !ruby/range
2878
- begin: 4160
2879
- end: 4169
2880
- excl: false
2881
- - !ruby/range
2882
- begin: 4240
2883
- end: 4249
2884
- excl: false
2885
- - !ruby/range
2886
- begin: 6112
2887
- end: 6121
2888
- excl: false
2889
- - !ruby/range
2890
- begin: 6160
2891
- end: 6169
2892
- excl: false
2893
- - !ruby/range
2894
- begin: 6470
2895
- end: 6479
2896
- excl: false
2897
- - !ruby/range
2898
- begin: 6608
2899
- end: 6617
2900
- excl: false
2901
- - !ruby/range
2902
- begin: 6784
2903
- end: 6793
2904
- excl: false
2905
- - !ruby/range
2906
- begin: 6800
2907
- end: 6809
2908
- excl: false
2909
- - !ruby/range
2910
- begin: 6992
2911
- end: 7001
2912
- excl: false
2913
- - !ruby/range
2914
- begin: 7088
2915
- end: 7097
2916
- excl: false
2917
- - !ruby/range
2918
- begin: 7232
2919
- end: 7241
2920
- excl: false
2921
- - !ruby/range
2922
- begin: 7248
2923
- end: 7257
2924
- excl: false
2925
- - !ruby/range
2926
- begin: 42528
2927
- end: 42537
2928
- excl: false
2929
- - !ruby/range
2930
- begin: 43216
2931
- end: 43225
2932
- excl: false
2933
- - !ruby/range
2934
- begin: 43264
2935
- end: 43273
2936
- excl: false
2937
- - !ruby/range
2938
- begin: 43472
2939
- end: 43481
2940
- excl: false
2941
- - !ruby/range
2942
- begin: 43600
2943
- end: 43609
2944
- excl: false
2945
- - !ruby/range
2946
- begin: 44016
2947
- end: 44025
2948
- excl: false
2949
- - !ruby/range
2950
- begin: 66720
2951
- end: 66729
2952
- excl: false
2953
- - !ruby/range
2954
- begin: 69734
2955
- end: 69743
2956
- excl: false
2957
- - !ruby/range
2958
- begin: 69872
2959
- end: 69881
2960
- excl: false
2961
- - !ruby/range
2962
- begin: 69942
2963
- end: 69951
2964
- excl: false
2965
- - !ruby/range
2966
- begin: 70096
2967
- end: 70105
2968
- excl: false
2969
- - !ruby/range
2970
- begin: 71360
2971
- end: 71369
2972
- excl: false
2973
- - !ruby/range
2974
- begin: 120782
2975
- end: 120831
2976
- excl: false
2977
- :ExtendNumLet:
2978
- - !ruby/range
2979
- begin: 95
2980
- end: 95
2981
- excl: false
2982
- - !ruby/range
2983
- begin: 8255
2984
- end: 8256
2985
- excl: false
2986
- - !ruby/range
2987
- begin: 8276
2988
- end: 8276
2989
- excl: false
2990
- - !ruby/range
2991
- begin: 65075
2992
- end: 65076
2993
- excl: false
2994
- - !ruby/range
2995
- begin: 65101
2996
- end: 65103
2997
- excl: false
2998
- - !ruby/range
2999
- begin: 65343
3000
- end: 65343
3001
- excl: false