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.
- checksums.yaml +4 -4
- data/Gemfile +9 -4
- data/History.txt +11 -0
- data/README.md +40 -3
- data/Rakefile +26 -21
- data/lib/twitter_cldr/collation/collator.rb +3 -3
- data/lib/twitter_cldr/collation/sort_key_builder.rb +10 -10
- data/lib/twitter_cldr/data_readers/calendar_data_reader.rb +8 -8
- data/lib/twitter_cldr/data_readers/date_time_data_reader.rb +2 -2
- data/lib/twitter_cldr/data_readers/number_data_reader.rb +10 -10
- data/lib/twitter_cldr/data_readers/timespan_data_reader.rb +27 -27
- data/lib/twitter_cldr/formatters/list_formatter.rb +1 -1
- data/lib/twitter_cldr/formatters/numbers/currency_formatter.rb +3 -3
- data/lib/twitter_cldr/formatters/numbers/helpers/integer.rb +7 -5
- data/lib/twitter_cldr/formatters/numbers/rbnf/formatters.rb +1 -1
- data/lib/twitter_cldr/formatters/numbers/rbnf/rule.rb +1 -1
- data/lib/twitter_cldr/formatters/numbers/rbnf/rule_set.rb +3 -2
- data/lib/twitter_cldr/formatters/numbers/rbnf.rb +2 -2
- data/lib/twitter_cldr/formatters/plurals/rules.rb +1 -1
- data/lib/twitter_cldr/localized/localized_date.rb +2 -2
- data/lib/twitter_cldr/localized/localized_datetime.rb +8 -8
- data/lib/twitter_cldr/localized/localized_number.rb +7 -7
- data/lib/twitter_cldr/localized/localized_string.rb +33 -1
- data/lib/twitter_cldr/localized/localized_symbol.rb +9 -1
- data/lib/twitter_cldr/localized/localized_time.rb +2 -2
- data/lib/twitter_cldr/localized/localized_timespan.rb +10 -10
- data/lib/twitter_cldr/parsers/number_parser.rb +1 -1
- data/lib/twitter_cldr/parsers/parser.rb +5 -1
- data/lib/twitter_cldr/parsers/unicode_regex/character_class.rb +41 -2
- data/lib/twitter_cldr/parsers/unicode_regex/character_range.rb +8 -0
- data/lib/twitter_cldr/parsers/unicode_regex/character_set.rb +66 -23
- data/lib/twitter_cldr/parsers/unicode_regex/literal.rb +4 -0
- data/lib/twitter_cldr/parsers/unicode_regex/unicode_string.rb +6 -3
- data/lib/twitter_cldr/parsers/unicode_regex_parser.rb +65 -32
- data/lib/twitter_cldr/parsers.rb +1 -2
- data/lib/twitter_cldr/resources/custom_locales_resources_importer.rb +4 -4
- data/lib/twitter_cldr/resources/download.rb +13 -6
- data/lib/twitter_cldr/resources/language_codes_importer.rb +7 -7
- data/lib/twitter_cldr/resources/loader.rb +4 -1
- data/lib/twitter_cldr/resources/locales_resources_importer.rb +30 -12
- data/lib/twitter_cldr/resources/postal_codes_importer.rb +32 -22
- data/lib/twitter_cldr/resources/properties/age_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/arabic_shaping_property_importer.rb +42 -0
- data/lib/twitter_cldr/resources/properties/bidi_brackets_property_importer.rb +41 -0
- data/lib/twitter_cldr/resources/properties/blocks_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/derived_core_properties_importer.rb +36 -0
- data/lib/twitter_cldr/resources/properties/east_asian_width_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/grapheme_break_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/hangul_syllable_type_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/indic_positional_category_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/indic_syllabic_category_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/jamo_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/line_break_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/prop_list_importer.rb +36 -0
- data/lib/twitter_cldr/resources/properties/properties_importer.rb +59 -0
- data/lib/twitter_cldr/resources/properties/property_importer.rb +83 -0
- data/lib/twitter_cldr/resources/properties/script_extensions_property_importer.rb +40 -0
- data/lib/twitter_cldr/resources/properties/script_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/sentence_break_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties/unicode_data_properties_importer.rb +60 -0
- data/lib/twitter_cldr/resources/properties/word_break_property_importer.rb +27 -0
- data/lib/twitter_cldr/resources/properties.rb +36 -0
- data/lib/twitter_cldr/resources/readme_renderer.rb +2 -2
- data/lib/twitter_cldr/resources/segment_tests_importer.rb +66 -0
- data/lib/twitter_cldr/resources/tailoring_importer.rb +7 -7
- data/lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb +1 -1
- data/lib/twitter_cldr/resources/unicode_data_importer.rb +19 -60
- data/lib/twitter_cldr/resources/unicode_property_aliases_importer.rb +97 -0
- data/lib/twitter_cldr/resources.rb +21 -22
- data/lib/twitter_cldr/segmentation/break_iterator.rb +54 -0
- data/lib/twitter_cldr/segmentation/cursor.rb +34 -0
- data/lib/twitter_cldr/segmentation/parser.rb +71 -0
- data/lib/twitter_cldr/segmentation/rule.rb +79 -0
- data/lib/twitter_cldr/segmentation/rule_set.rb +116 -0
- data/lib/twitter_cldr/segmentation/rule_set_builder.rb +142 -0
- data/lib/twitter_cldr/segmentation.rb +17 -0
- data/lib/twitter_cldr/shared/bidi.rb +4 -4
- data/lib/twitter_cldr/shared/calendar.rb +11 -11
- data/lib/twitter_cldr/shared/caser.rb +84 -0
- data/lib/twitter_cldr/shared/code_point.rb +101 -139
- data/lib/twitter_cldr/shared/currencies.rb +5 -5
- data/lib/twitter_cldr/shared/language_codes.rb +2 -2
- data/lib/twitter_cldr/shared/languages.rb +1 -1
- data/lib/twitter_cldr/shared/likely_subtags.rb +104 -0
- data/lib/twitter_cldr/shared/locale.rb +252 -0
- data/lib/twitter_cldr/shared/postal_codes.rb +21 -9
- data/lib/twitter_cldr/shared/properties/arabic_shaping.rb +40 -0
- data/lib/twitter_cldr/shared/properties/bidi_brackets.rb +28 -0
- data/lib/twitter_cldr/shared/properties.rb +13 -0
- data/lib/twitter_cldr/shared/properties_database.rb +180 -0
- data/lib/twitter_cldr/shared/property_name_aliases.rb +48 -0
- data/lib/twitter_cldr/shared/property_normalizer.rb +108 -0
- data/lib/twitter_cldr/shared/property_set.rb +113 -0
- data/lib/twitter_cldr/shared/property_value_aliases.rb +99 -0
- data/lib/twitter_cldr/shared/unicode_regex.rb +29 -3
- data/lib/twitter_cldr/shared.rb +9 -1
- data/lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb +1 -1
- data/lib/twitter_cldr/tokenizers/token.rb +1 -1
- data/lib/twitter_cldr/tokenizers/tokenizer.rb +15 -13
- data/lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb +4 -4
- data/lib/twitter_cldr/utils/file_system_trie.rb +145 -0
- data/lib/twitter_cldr/utils/range_set.rb +131 -31
- data/lib/twitter_cldr/utils/regexp_sampler.rb +0 -1
- data/lib/twitter_cldr/utils/script_detector.rb +75 -0
- data/lib/twitter_cldr/utils/yaml.rb +3 -3
- data/lib/twitter_cldr/utils.rb +8 -5
- data/lib/twitter_cldr/version.rb +1 -1
- data/lib/twitter_cldr/versions.rb +30 -0
- data/lib/twitter_cldr.rb +8 -10
- data/resources/locales/af/calendars.yml +8 -8
- data/resources/locales/af/lists.yml +8 -4
- data/resources/locales/af/numbers.yml +54 -30
- data/resources/locales/ar/lists.yml +8 -4
- data/resources/locales/ar/numbers.yml +48 -24
- data/resources/locales/be/calendars.yml +4 -4
- data/resources/locales/be/lists.yml +2 -1
- data/resources/locales/be/numbers.yml +24 -12
- data/resources/locales/bg/calendars.yml +8 -8
- data/resources/locales/bg/lists.yml +8 -4
- data/resources/locales/bg/numbers.yml +48 -24
- data/resources/locales/bn/lists.yml +8 -4
- data/resources/locales/bn/numbers.yml +48 -24
- data/resources/locales/ca/calendars.yml +8 -8
- data/resources/locales/ca/lists.yml +8 -4
- data/resources/locales/ca/numbers.yml +48 -24
- data/resources/locales/cs/calendars.yml +32 -32
- data/resources/locales/cs/lists.yml +8 -4
- data/resources/locales/cs/numbers.yml +48 -24
- data/resources/locales/cy/calendars.yml +8 -8
- data/resources/locales/cy/lists.yml +6 -3
- data/resources/locales/cy/numbers.yml +48 -24
- data/resources/locales/da/calendars.yml +10 -10
- data/resources/locales/da/lists.yml +8 -4
- data/resources/locales/da/numbers.yml +48 -24
- data/resources/locales/de/calendars.yml +8 -8
- data/resources/locales/de/lists.yml +8 -4
- data/resources/locales/de/numbers.yml +48 -24
- data/resources/locales/de-CH/calendars.yml +8 -8
- data/resources/locales/de-CH/lists.yml +8 -4
- data/resources/locales/de-CH/numbers.yml +48 -24
- data/resources/locales/el/calendars.yml +8 -8
- data/resources/locales/el/lists.yml +8 -4
- data/resources/locales/el/numbers.yml +48 -24
- data/resources/locales/en/calendars.yml +4 -4
- data/resources/locales/en/lists.yml +8 -4
- data/resources/locales/en/numbers.yml +48 -24
- data/resources/locales/en-150/calendars.yml +4 -4
- data/resources/locales/en-150/lists.yml +8 -4
- data/resources/locales/en-150/numbers.yml +48 -24
- data/resources/locales/en-AU/calendars.yml +4 -4
- data/resources/locales/en-AU/lists.yml +8 -4
- data/resources/locales/en-AU/numbers.yml +48 -24
- data/resources/locales/en-CA/calendars.yml +4 -4
- data/resources/locales/en-CA/lists.yml +8 -4
- data/resources/locales/en-CA/numbers.yml +48 -24
- data/resources/locales/en-GB/calendars.yml +4 -4
- data/resources/locales/en-GB/lists.yml +8 -4
- data/resources/locales/en-GB/numbers.yml +48 -24
- data/resources/locales/en-IE/calendars.yml +4 -4
- data/resources/locales/en-IE/lists.yml +8 -4
- data/resources/locales/en-IE/numbers.yml +48 -24
- data/resources/locales/en-SG/calendars.yml +4 -4
- data/resources/locales/en-SG/lists.yml +8 -4
- data/resources/locales/en-SG/numbers.yml +48 -24
- data/resources/locales/en-ZA/calendars.yml +4 -4
- data/resources/locales/en-ZA/lists.yml +8 -4
- data/resources/locales/en-ZA/numbers.yml +48 -24
- data/resources/locales/es/lists.yml +8 -4
- data/resources/locales/es/numbers.yml +48 -24
- data/resources/locales/es-419/calendars.yml +8 -8
- data/resources/locales/es-419/lists.yml +8 -4
- data/resources/locales/es-419/numbers.yml +50 -26
- data/resources/locales/es-CO/lists.yml +8 -4
- data/resources/locales/es-CO/numbers.yml +48 -24
- data/resources/locales/es-MX/lists.yml +8 -4
- data/resources/locales/es-MX/numbers.yml +48 -24
- data/resources/locales/es-US/lists.yml +8 -4
- data/resources/locales/es-US/numbers.yml +48 -24
- data/resources/locales/eu/calendars.yml +8 -8
- data/resources/locales/eu/lists.yml +8 -4
- data/resources/locales/eu/numbers.yml +48 -24
- data/resources/locales/fa/lists.yml +8 -4
- data/resources/locales/fa/numbers.yml +48 -24
- data/resources/locales/fi/calendars.yml +8 -8
- data/resources/locales/fi/lists.yml +8 -4
- data/resources/locales/fi/numbers.yml +48 -24
- data/resources/locales/fil/calendars.yml +8 -8
- data/resources/locales/fil/lists.yml +8 -4
- data/resources/locales/fil/numbers.yml +48 -24
- data/resources/locales/fr/calendars.yml +8 -8
- data/resources/locales/fr/lists.yml +8 -4
- data/resources/locales/fr/numbers.yml +48 -24
- data/resources/locales/fr-BE/calendars.yml +8 -8
- data/resources/locales/fr-BE/lists.yml +8 -4
- data/resources/locales/fr-BE/numbers.yml +48 -24
- data/resources/locales/fr-CA/calendars.yml +8 -8
- data/resources/locales/fr-CA/lists.yml +8 -4
- data/resources/locales/fr-CA/numbers.yml +48 -24
- data/resources/locales/fr-CH/calendars.yml +8 -8
- data/resources/locales/fr-CH/lists.yml +8 -4
- data/resources/locales/fr-CH/numbers.yml +48 -24
- data/resources/locales/ga/calendars.yml +8 -8
- data/resources/locales/ga/lists.yml +8 -4
- data/resources/locales/ga/numbers.yml +48 -24
- data/resources/locales/gl/calendars.yml +8 -8
- data/resources/locales/gl/lists.yml +8 -4
- data/resources/locales/gl/numbers.yml +48 -24
- data/resources/locales/he/calendars.yml +28 -28
- data/resources/locales/he/lists.yml +8 -4
- data/resources/locales/he/numbers.yml +48 -24
- data/resources/locales/hi/calendars.yml +8 -8
- data/resources/locales/hi/lists.yml +8 -4
- data/resources/locales/hi/numbers.yml +48 -24
- data/resources/locales/hr/lists.yml +8 -4
- data/resources/locales/hr/numbers.yml +48 -24
- data/resources/locales/hu/lists.yml +8 -4
- data/resources/locales/hu/numbers.yml +48 -24
- data/resources/locales/id/calendars.yml +8 -8
- data/resources/locales/id/lists.yml +8 -4
- data/resources/locales/id/numbers.yml +49 -25
- data/resources/locales/is/calendars.yml +8 -8
- data/resources/locales/is/lists.yml +8 -4
- data/resources/locales/is/numbers.yml +48 -24
- data/resources/locales/it/calendars.yml +8 -8
- data/resources/locales/it/lists.yml +8 -4
- data/resources/locales/it/numbers.yml +54 -30
- data/resources/locales/it-CH/calendars.yml +8 -8
- data/resources/locales/it-CH/lists.yml +8 -4
- data/resources/locales/it-CH/numbers.yml +54 -30
- data/resources/locales/ja/calendars.yml +32 -32
- data/resources/locales/ja/lists.yml +8 -4
- data/resources/locales/ja/numbers.yml +48 -24
- data/resources/locales/ko/calendars.yml +8 -8
- data/resources/locales/ko/lists.yml +8 -4
- data/resources/locales/ko/numbers.yml +48 -24
- data/resources/locales/lv/lists.yml +8 -4
- data/resources/locales/lv/numbers.yml +48 -24
- data/resources/locales/ms/calendars.yml +8 -8
- data/resources/locales/ms/lists.yml +8 -4
- data/resources/locales/ms/numbers.yml +48 -24
- data/resources/locales/nb/calendars.yml +9 -9
- data/resources/locales/nb/lists.yml +8 -4
- data/resources/locales/nb/numbers.yml +48 -24
- data/resources/locales/nl/calendars.yml +8 -8
- data/resources/locales/nl/lists.yml +8 -4
- data/resources/locales/nl/numbers.yml +48 -24
- data/resources/locales/pl/calendars.yml +8 -8
- data/resources/locales/pl/lists.yml +8 -4
- data/resources/locales/pl/numbers.yml +48 -24
- data/resources/locales/pt/calendars.yml +8 -8
- data/resources/locales/pt/lists.yml +8 -4
- data/resources/locales/pt/numbers.yml +48 -24
- data/resources/locales/ro/calendars.yml +8 -8
- data/resources/locales/ro/lists.yml +8 -4
- data/resources/locales/ro/numbers.yml +48 -24
- data/resources/locales/ru/calendars.yml +8 -8
- data/resources/locales/ru/lists.yml +8 -4
- data/resources/locales/ru/numbers.yml +48 -24
- data/resources/locales/sk/calendars.yml +8 -8
- data/resources/locales/sk/lists.yml +8 -4
- data/resources/locales/sk/numbers.yml +48 -24
- data/resources/locales/sq/calendars.yml +8 -8
- data/resources/locales/sq/lists.yml +8 -4
- data/resources/locales/sq/numbers.yml +48 -24
- data/resources/locales/sr/lists.yml +8 -4
- data/resources/locales/sr/numbers.yml +48 -24
- data/resources/locales/sv/calendars.yml +10 -10
- data/resources/locales/sv/lists.yml +8 -4
- data/resources/locales/sv/numbers.yml +48 -24
- data/resources/locales/ta/calendars.yml +8 -8
- data/resources/locales/ta/lists.yml +8 -4
- data/resources/locales/ta/numbers.yml +48 -24
- data/resources/locales/th/calendars.yml +8 -8
- data/resources/locales/th/lists.yml +8 -4
- data/resources/locales/th/numbers.yml +48 -24
- data/resources/locales/tr/lists.yml +8 -4
- data/resources/locales/tr/numbers.yml +50 -26
- data/resources/locales/uk/calendars.yml +8 -8
- data/resources/locales/uk/lists.yml +8 -4
- data/resources/locales/uk/numbers.yml +48 -24
- data/resources/locales/ur/calendars.yml +8 -8
- data/resources/locales/ur/lists.yml +8 -4
- data/resources/locales/ur/numbers.yml +48 -24
- data/resources/locales/vi/calendars.yml +32 -32
- data/resources/locales/vi/lists.yml +8 -4
- data/resources/locales/vi/numbers.yml +48 -24
- data/resources/locales/zh/calendars.yml +32 -32
- data/resources/locales/zh/lists.yml +8 -4
- data/resources/locales/zh/numbers.yml +48 -24
- data/resources/locales/zh-Hant/calendars.yml +32 -32
- data/resources/locales/zh-Hant/lists.yml +8 -4
- data/resources/locales/zh-Hant/numbers.yml +48 -24
- data/resources/shared/aliases.yml +1351 -0
- data/resources/shared/likely_subtags.yml +1149 -0
- data/resources/shared/postal_codes.yml +486 -289
- data/resources/shared/segments/segments_root.yml +57 -57
- data/resources/shared/segments/tests/sentence_break_test.yml +527 -0
- data/resources/shared/segments/tests/word_break_test.yml +1379 -0
- data/resources/shared/territories_containment.yml +25 -17
- data/resources/shared/variables.yml +1194 -0
- data/resources/unicode_data/blocks/ahom.yml +913 -0
- data/resources/unicode_data/blocks/anatolian_hieroglyphs.yml +9329 -0
- data/resources/unicode_data/blocks/arabic.yml +16 -0
- data/resources/unicode_data/blocks/arabic_presentation_forms_a.yml +2 -2
- data/resources/unicode_data/blocks/bassa_vah.yml +577 -0
- data/resources/unicode_data/blocks/buginese.yml +2 -2
- data/resources/unicode_data/blocks/caucasian_albanian.yml +849 -0
- data/resources/unicode_data/blocks/cherokee_supplement.yml +1281 -0
- data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_e.yml +33 -0
- data/resources/unicode_data/blocks/combining_diacritical_marks_extended.yml +241 -0
- data/resources/unicode_data/blocks/coptic_epact_numbers.yml +449 -0
- data/resources/unicode_data/blocks/cuneiform_numbers_and_punctuation.yml +2 -2
- data/resources/unicode_data/blocks/duployan.yml +2289 -0
- data/resources/unicode_data/blocks/early_dynastic_cuneiform.yml +3137 -0
- data/resources/unicode_data/blocks/elbasan.yml +641 -0
- data/resources/unicode_data/blocks/general_punctuation.yml +64 -0
- data/resources/unicode_data/blocks/geometric_shapes_extended.yml +1361 -0
- data/resources/unicode_data/blocks/grantha.yml +1361 -0
- data/resources/unicode_data/blocks/gujarati.yml +0 -16
- data/resources/unicode_data/blocks/hatran.yml +417 -0
- data/resources/unicode_data/blocks/kannada.yml +0 -16
- data/resources/unicode_data/blocks/khojki.yml +977 -0
- data/resources/unicode_data/blocks/khudawadi.yml +1105 -0
- data/resources/unicode_data/blocks/latin_extended_e.yml +865 -0
- data/resources/unicode_data/blocks/linear_a.yml +5457 -0
- data/resources/unicode_data/blocks/mahajani.yml +625 -0
- data/resources/unicode_data/blocks/manichaean.yml +817 -0
- data/resources/unicode_data/blocks/mende_kikakui.yml +3409 -0
- data/resources/unicode_data/blocks/miscellaneous_technical.yml +4 -4
- data/resources/unicode_data/blocks/modi.yml +1265 -0
- data/resources/unicode_data/blocks/mongolian.yml +2 -2
- data/resources/unicode_data/blocks/mro.yml +689 -0
- data/resources/unicode_data/blocks/multani.yml +609 -0
- data/resources/unicode_data/blocks/myanmar_extended_b.yml +497 -0
- data/resources/unicode_data/blocks/nabataean.yml +641 -0
- data/resources/unicode_data/blocks/old_hungarian.yml +1729 -0
- data/resources/unicode_data/blocks/old_north_arabian.yml +513 -0
- data/resources/unicode_data/blocks/old_permic.yml +689 -0
- data/resources/unicode_data/blocks/ornamental_dingbats.yml +769 -0
- data/resources/unicode_data/blocks/pahawh_hmong.yml +2033 -0
- data/resources/unicode_data/blocks/palmyrene.yml +513 -0
- data/resources/unicode_data/blocks/pau_cin_hau.yml +913 -0
- data/resources/unicode_data/blocks/psalter_pahlavi.yml +465 -0
- data/resources/unicode_data/blocks/shorthand_format_controls.yml +65 -0
- data/resources/unicode_data/blocks/siddham.yml +1473 -0
- data/resources/unicode_data/blocks/sinhala_archaic_numbers.yml +321 -0
- data/resources/unicode_data/blocks/supplemental_arrows_c.yml +2369 -0
- data/resources/unicode_data/blocks/supplemental_symbols_and_pictographs.yml +241 -0
- data/resources/unicode_data/blocks/sutton_signwriting.yml +10753 -0
- data/resources/unicode_data/blocks/tirhuta.yml +1313 -0
- data/resources/unicode_data/blocks/warang_citi.yml +1345 -0
- data/resources/unicode_data/properties/ASCII_Hex_Digit/value.dump +5 -0
- data/resources/unicode_data/properties/Age/1.1/value.dump +0 -0
- data/resources/unicode_data/properties/Age/2.0/value.dump +0 -0
- data/resources/unicode_data/properties/Age/2.1/value.dump +4 -0
- data/resources/unicode_data/properties/Age/3.0/value.dump +0 -0
- data/resources/unicode_data/properties/Age/3.1/value.dump +0 -0
- data/resources/unicode_data/properties/Age/3.2/value.dump +0 -0
- data/resources/unicode_data/properties/Age/4.0/value.dump +0 -0
- data/resources/unicode_data/properties/Age/4.1/value.dump +0 -0
- data/resources/unicode_data/properties/Age/5.0/value.dump +0 -0
- data/resources/unicode_data/properties/Age/5.1/value.dump +0 -0
- data/resources/unicode_data/properties/Age/5.2/value.dump +0 -0
- data/resources/unicode_data/properties/Age/6.0/value.dump +0 -0
- data/resources/unicode_data/properties/Age/6.1/value.dump +0 -0
- data/resources/unicode_data/properties/Age/6.2/value.dump +3 -0
- data/resources/unicode_data/properties/Age/6.3/value.dump +4 -0
- data/resources/unicode_data/properties/Alphabetic/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/AL/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/AN/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/B/value.dump +8 -0
- data/resources/unicode_data/properties/Bidi_Class/BN/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/CS/value.dump +15 -0
- data/resources/unicode_data/properties/Bidi_Class/EN/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/ES/value.dump +11 -0
- data/resources/unicode_data/properties/Bidi_Class/ET/value.dump +27 -0
- data/resources/unicode_data/properties/Bidi_Class/FSI/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/L/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/LRE/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/LRI/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/LRO/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/NSM/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/ON/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/PDF/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/PDI/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/R/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Class/RLE/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/RLI/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/RLO/value.dump +3 -0
- data/resources/unicode_data/properties/Bidi_Class/S/value.dump +5 -0
- data/resources/unicode_data/properties/Bidi_Class/WS/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Control/value.dump +4 -0
- data/resources/unicode_data/properties/Bidi_Mirrored/N/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Mirrored/Y/value.dump +115 -0
- data/resources/unicode_data/properties/Block/Aegean Numbers/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Alchemical Symbols/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Alphabetic Presentation Forms/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Ancient Greek Musical Notation/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Ancient Greek Numbers/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Ancient Symbols/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Arabic/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Arabic Extended-A/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Arabic Mathematical Alphabetic Symbols/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Arabic Presentation Forms-A/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Arabic Presentation Forms-B/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Arabic Supplement/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Armenian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Arrows/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Avestan/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Balinese/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Bamum/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Bamum Supplement/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Basic Latin/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Batak/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Bengali/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Block Elements/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Bopomofo/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Bopomofo Extended/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Box Drawing/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Brahmi/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Braille Patterns/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Buginese/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Buhid/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Byzantine Musical Symbols/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Compatibility/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Compatibility Forms/value.dump +3 -0
- data/resources/unicode_data/properties/Block/CJK Compatibility Ideographs/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Compatibility Ideographs Supplement/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Radicals Supplement/value.dump +3 -0
- data/resources/unicode_data/properties/Block/CJK Strokes/value.dump +3 -0
- Punctuation/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Unified Ideographs/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension A/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension B/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension C/value.dump +0 -0
- data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension D/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Carian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Chakma/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Cham/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Cherokee/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Combining Diacritical Marks/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Combining Diacritical Marks Supplement/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Combining Diacritical Marks for Symbols/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Combining Half Marks/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Common Indic Number Forms/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Control Pictures/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Coptic/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Counting Rod Numerals/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Cuneiform/value.dump +0 -0
- Punctuation/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Currency Symbols/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Cypriot Syllabary/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Cyrillic/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Cyrillic Extended-A/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Cyrillic Extended-B/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Cyrillic Supplement/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Deseret/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Devanagari/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Devanagari Extended/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Dingbats/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Domino Tiles/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Egyptian Hieroglyphs/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Emoticons/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Enclosed Alphanumeric Supplement/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Enclosed Alphanumerics/value.dump +3 -0
- Months/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Enclosed Ideographic Supplement/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Ethiopic/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Ethiopic Extended/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Ethiopic Extended-A/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Ethiopic Supplement/value.dump +3 -0
- data/resources/unicode_data/properties/Block/General Punctuation/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Geometric Shapes/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Georgian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Georgian Supplement/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Glagolitic/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Gothic/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Greek Extended/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Greek and Coptic/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Gujarati/value.dump +4 -0
- data/resources/unicode_data/properties/Block/Gurmukhi/value.dump +0 -0
- Fullwidth Forms/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Hangul Compatibility Jamo/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Hangul Jamo/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Hangul Jamo Extended-A/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Hangul Jamo Extended-B/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Hangul Syllables/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Hanunoo/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Hebrew/value.dump +3 -0
- data/resources/unicode_data/properties/Block/High Private Use Surrogates/value.dump +3 -0
- data/resources/unicode_data/properties/Block/High Surrogates/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Hiragana/value.dump +3 -0
- data/resources/unicode_data/properties/Block/IPA Extensions/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Ideographic Description Characters/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Imperial Aramaic/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Inscriptional Pahlavi/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Inscriptional Parthian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Javanese/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Kaithi/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Kana Supplement/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Kanbun/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Kangxi Radicals/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Kannada/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Katakana/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Katakana Phonetic Extensions/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Kayah Li/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Kharoshthi/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Khmer/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Khmer Symbols/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Lao/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Latin Extended Additional/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Latin Extended-A/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Latin Extended-B/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Latin Extended-C/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Latin Extended-D/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Latin-1 Supplement/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Lepcha/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Letterlike Symbols/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Limbu/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Linear B Ideograms/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Linear B Syllabary/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Lisu/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Low Surrogates/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Lycian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Lydian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Mahjong Tiles/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Malayalam/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Mandaic/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Mathematical Alphanumeric Symbols/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Mathematical Operators/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Meetei Mayek/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Meetei Mayek Extensions/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Meroitic Cursive/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Meroitic Hieroglyphs/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Miao/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Miscellaneous Mathematical Symbols-A/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Miscellaneous Mathematical Symbols-B/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Miscellaneous Symbols/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Miscellaneous Symbols And Pictographs/value.dump +0 -0
- Arrows/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Miscellaneous Technical/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Modifier Tone Letters/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Mongolian/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Musical Symbols/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Myanmar/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Myanmar Extended-A/value.dump +3 -0
- data/resources/unicode_data/properties/Block/NKo/value.dump +3 -0
- data/resources/unicode_data/properties/Block/New Tai Lue/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Number Forms/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Ogham/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Ol Chiki/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Old Italic/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Old Persian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Old South Arabian/value.dump +5 -0
- data/resources/unicode_data/properties/Block/Old Turkic/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Optical Character Recognition/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Oriya/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Osmanya/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Phags-pa/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Phaistos Disc/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Phoenician/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Phonetic Extensions/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Phonetic Extensions Supplement/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Playing Cards/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Private Use Area/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Rejang/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Rumi Numeral Symbols/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Runic/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Samaritan/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Saurashtra/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Sharada/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Shavian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Sinhala/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Small Form Variants/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Sora Sompeng/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Spacing Modifier Letters/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Specials/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Sundanese/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Sundanese Supplement/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Superscripts and Subscripts/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Supplemental Arrows-A/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Supplemental Arrows-B/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Supplemental Mathematical Operators/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Supplemental Punctuation/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Supplementary Private Use Area-A/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Supplementary Private Use Area-B/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Syloti Nagri/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Syriac/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Tagalog/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Tagbanwa/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Tags/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Tai Le/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Tai Tham/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Tai Viet/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Tai Xuan Jing Symbols/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Takri/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Tamil/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Telugu/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Thaana/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Thai/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Tibetan/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Tifinagh/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Transport And Map Symbols/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Ugaritic/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Unified Canadian Aboriginal Syllabics/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Unified Canadian Aboriginal Syllabics Extended/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Vai/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Variation Selectors/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Variation Selectors Supplement/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Vedic Extensions/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Vertical Forms/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Yi Radicals/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Yi Syllables/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Yijing Hexagram Symbols/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/0/value.dump +0 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/1/value.dump +13 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/10/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/103/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/107/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/11/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/118/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/12/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/122/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/129/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/13/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/130/value.dump +5 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/132/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/14/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/15/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/16/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/17/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/18/value.dump +4 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/19/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/20/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/202/value.dump +5 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/21/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/214/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/216/value.dump +6 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/218/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/22/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/220/value.dump +70 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/222/value.dump +6 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/224/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/226/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/228/value.dump +5 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/23/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/230/value.dump +0 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/232/value.dump +6 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/233/value.dump +6 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/234/value.dump +5 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/24/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/240/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/25/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/26/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/27/value.dump +4 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/28/value.dump +4 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/29/value.dump +4 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/30/value.dump +4 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/31/value.dump +4 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/32/value.dump +4 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/33/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/34/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/35/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/36/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/7/value.dump +19 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/8/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/84/value.dump +3 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/9/value.dump +41 -0
- data/resources/unicode_data/properties/Canonical_Combining_Class/91/value.dump +3 -0
- data/resources/unicode_data/properties/Case_Ignorable/value.dump +0 -0
- data/resources/unicode_data/properties/Cased/value.dump +0 -0
- data/resources/unicode_data/properties/Changes_When_Casefolded/value.dump +0 -0
- data/resources/unicode_data/properties/Changes_When_Casemapped/value.dump +0 -0
- data/resources/unicode_data/properties/Changes_When_Lowercased/value.dump +0 -0
- data/resources/unicode_data/properties/Changes_When_Titlecased/value.dump +589 -0
- data/resources/unicode_data/properties/Changes_When_Uppercased/value.dump +588 -0
- data/resources/unicode_data/properties/Dash/value.dump +0 -0
- data/resources/unicode_data/properties/Default_Ignorable_Code_Point/value.dump +0 -0
- data/resources/unicode_data/properties/Deprecated/value.dump +0 -0
- data/resources/unicode_data/properties/Diacritic/value.dump +135 -0
- data/resources/unicode_data/properties/East_Asian_Width/A/value.dump +0 -0
- data/resources/unicode_data/properties/East_Asian_Width/F/value.dump +0 -0
- data/resources/unicode_data/properties/East_Asian_Width/H/value.dump +9 -0
- data/resources/unicode_data/properties/East_Asian_Width/N/value.dump +0 -0
- data/resources/unicode_data/properties/East_Asian_Width/Na/value.dump +9 -0
- data/resources/unicode_data/properties/East_Asian_Width/W/value.dump +0 -0
- data/resources/unicode_data/properties/Extender/value.dump +26 -0
- data/resources/unicode_data/properties/General_Category/C/c/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/C/f/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/C/o/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/C/s/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/L/l/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/L/m/value.dump +54 -0
- data/resources/unicode_data/properties/General_Category/L/o/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/L/t/value.dump +12 -0
- data/resources/unicode_data/properties/General_Category/L/u/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/M/c/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/M/e/value.dump +6 -0
- data/resources/unicode_data/properties/General_Category/M/n/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/N/d/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/N/l/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/N/o/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/P/c/value.dump +8 -0
- data/resources/unicode_data/properties/General_Category/P/d/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/P/e/value.dump +72 -0
- data/resources/unicode_data/properties/General_Category/P/f/value.dump +14 -0
- data/resources/unicode_data/properties/General_Category/P/i/value.dump +13 -0
- data/resources/unicode_data/properties/General_Category/P/o/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/P/s/value.dump +76 -0
- data/resources/unicode_data/properties/General_Category/S/c/value.dump +21 -0
- data/resources/unicode_data/properties/General_Category/S/k/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/S/m/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/S/o/value.dump +0 -0
- data/resources/unicode_data/properties/General_Category/Z/l/value.dump +3 -0
- data/resources/unicode_data/properties/General_Category/Z/p/value.dump +3 -0
- data/resources/unicode_data/properties/General_Category/Z/s/value.dump +0 -0
- data/resources/unicode_data/properties/Grapheme_Base/value.dump +0 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/CR/value.dump +3 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/Control/value.dump +0 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/Extend/value.dump +0 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/L/value.dump +0 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/LF/value.dump +3 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/LV/value.dump +0 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/LVT/value.dump +401 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/Regional_Indicator/value.dump +3 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/SpacingMark/value.dump +0 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/T/value.dump +4 -0
- data/resources/unicode_data/properties/Grapheme_Cluster_Break/V/value.dump +4 -0
- data/resources/unicode_data/properties/Grapheme_Extend/value.dump +0 -0
- data/resources/unicode_data/properties/Grapheme_Link/value.dump +41 -0
- data/resources/unicode_data/properties/Hangul_Syllable_Type/L/value.dump +0 -0
- data/resources/unicode_data/properties/Hangul_Syllable_Type/LV/value.dump +0 -0
- data/resources/unicode_data/properties/Hangul_Syllable_Type/LVT/value.dump +401 -0
- data/resources/unicode_data/properties/Hangul_Syllable_Type/T/value.dump +4 -0
- data/resources/unicode_data/properties/Hangul_Syllable_Type/V/value.dump +4 -0
- data/resources/unicode_data/properties/Hex_Digit/value.dump +8 -0
- data/resources/unicode_data/properties/Hyphen/value.dump +12 -0
- data/resources/unicode_data/properties/IDS_Binary_Operator/value.dump +4 -0
- data/resources/unicode_data/properties/IDS_Trinary_Operator/value.dump +3 -0
- data/resources/unicode_data/properties/ID_Continue/value.dump +0 -0
- data/resources/unicode_data/properties/ID_Start/value.dump +0 -0
- data/resources/unicode_data/properties/Ideographic/value.dump +0 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Bottom/value.dump +78 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Bottom_And_Right/value.dump +4 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Invisible/value.dump +10 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Left/value.dump +36 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Left_And_Right/value.dump +10 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Overstruck/value.dump +8 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Right/value.dump +86 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Top/value.dump +91 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Bottom/value.dump +8 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Bottom_And_Right/value.dump +3 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Left/value.dump +6 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Left_And_Right/value.dump +4 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Top_And_Right/value.dump +12 -0
- data/resources/unicode_data/properties/Indic_Positional_Category/Visual_Order_Left/value.dump +8 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Avagraha/value.dump +15 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Bindu/value.dump +0 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant/value.dump +0 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Dead/value.dump +4 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Final/value.dump +13 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Head_Letter/value.dump +3 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Medial/value.dump +12 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Placeholder/value.dump +0 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Repha/value.dump +8 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Subjoined/value.dump +11 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Modifying_Letter/value.dump +3 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Nukta/value.dump +18 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Register_Shifter/value.dump +3 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Tone_Letter/value.dump +5 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Tone_Mark/value.dump +17 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Virama/value.dump +41 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Visarga/value.dump +32 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Vowel/value.dump +6 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Vowel_Dependent/value.dump +112 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Vowel_Independent/value.dump +0 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/A/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/AE/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/B/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/BB/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/BS/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/C/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/D/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/DD/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/E/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/EO/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/EU/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/G/value.dump +0 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/GG/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/GS/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/H/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/I/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/J/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/JJ/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/K/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/L/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/LB/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/LG/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/LH/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/LM/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/LP/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/LS/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/LT/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/M/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/N/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/NG/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/NH/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/NJ/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/O/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/OE/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/P/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/R/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/S/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/SS/value.dump +6 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/T/value.dump +4 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/U/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/WA/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/WAE/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/WE/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/WEO/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/WI/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/YA/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/YAE/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/YE/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/YEO/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/YI/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/YO/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/YU/value.dump +3 -0
- data/resources/unicode_data/properties/Jamo_Short_Name/value.dump +3 -0
- data/resources/unicode_data/properties/Join_Control/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/AI/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/AL/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/B2/value.dump +4 -0
- data/resources/unicode_data/properties/Line_Break/BA/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/BB/value.dump +15 -0
- data/resources/unicode_data/properties/Line_Break/BK/value.dump +4 -0
- data/resources/unicode_data/properties/Line_Break/CB/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/CJ/value.dump +27 -0
- data/resources/unicode_data/properties/Line_Break/CL/value.dump +81 -0
- data/resources/unicode_data/properties/Line_Break/CM/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/CP/value.dump +4 -0
- data/resources/unicode_data/properties/Line_Break/CR/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/EX/value.dump +24 -0
- data/resources/unicode_data/properties/Line_Break/GL/value.dump +13 -0
- data/resources/unicode_data/properties/Line_Break/H2/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/H3/value.dump +401 -0
- data/resources/unicode_data/properties/Line_Break/HL/value.dump +12 -0
- data/resources/unicode_data/properties/Line_Break/HY/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/ID/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/IN/value.dump +4 -0
- data/resources/unicode_data/properties/Line_Break/IS/value.dump +12 -0
- data/resources/unicode_data/properties/Line_Break/JL/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/JT/value.dump +4 -0
- data/resources/unicode_data/properties/Line_Break/JV/value.dump +4 -0
- data/resources/unicode_data/properties/Line_Break/LF/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/NL/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/NS/value.dump +17 -0
- data/resources/unicode_data/properties/Line_Break/NU/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/OP/value.dump +83 -0
- data/resources/unicode_data/properties/Line_Break/PO/value.dump +20 -0
- data/resources/unicode_data/properties/Line_Break/PR/value.dump +24 -0
- data/resources/unicode_data/properties/Line_Break/QU/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/RI/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/SA/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/SG/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/SP/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/SY/value.dump +3 -0
- data/resources/unicode_data/properties/Line_Break/WJ/value.dump +4 -0
- data/resources/unicode_data/properties/Line_Break/XX/value.dump +0 -0
- data/resources/unicode_data/properties/Line_Break/ZW/value.dump +3 -0
- data/resources/unicode_data/properties/Logical_Order_Exception/value.dump +8 -0
- data/resources/unicode_data/properties/Lowercase/value.dump +0 -0
- data/resources/unicode_data/properties/Math/value.dump +0 -0
- data/resources/unicode_data/properties/Noncharacter_Code_Point/value.dump +22 -0
- data/resources/unicode_data/properties/Numeric_Type/0/value.dump +0 -0
- data/resources/unicode_data/properties/Numeric_Type/1/value.dump +69 -0
- data/resources/unicode_data/properties/Numeric_Type/2/value.dump +68 -0
- data/resources/unicode_data/properties/Numeric_Type/3/value.dump +68 -0
- data/resources/unicode_data/properties/Numeric_Type/4/value.dump +68 -0
- data/resources/unicode_data/properties/Numeric_Type/5/value.dump +65 -0
- data/resources/unicode_data/properties/Numeric_Type/6/value.dump +65 -0
- data/resources/unicode_data/properties/Numeric_Type/7/value.dump +65 -0
- data/resources/unicode_data/properties/Numeric_Type/8/value.dump +65 -0
- data/resources/unicode_data/properties/Numeric_Type/9/value.dump +67 -0
- data/resources/unicode_data/properties/Numeric_Type/value.dump +0 -0
- data/resources/unicode_data/properties/Other_Alphabetic/value.dump +0 -0
- data/resources/unicode_data/properties/Other_Default_Ignorable_Code_Point/value.dump +0 -0
- data/resources/unicode_data/properties/Other_Grapheme_Extend/value.dump +19 -0
- data/resources/unicode_data/properties/Other_ID_Continue/value.dump +6 -0
- data/resources/unicode_data/properties/Other_ID_Start/value.dump +5 -0
- data/resources/unicode_data/properties/Other_Lowercase/value.dump +20 -0
- data/resources/unicode_data/properties/Other_Math/value.dump +0 -0
- data/resources/unicode_data/properties/Other_Uppercase/value.dump +4 -0
- data/resources/unicode_data/properties/Pattern_Syntax/value.dump +0 -0
- data/resources/unicode_data/properties/Pattern_White_Space/value.dump +8 -0
- data/resources/unicode_data/properties/Quotation_Mark/value.dump +14 -0
- data/resources/unicode_data/properties/Radical/value.dump +0 -0
- data/resources/unicode_data/properties/STerm/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Arabic/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Armenian/value.dump +8 -0
- data/resources/unicode_data/properties/Script/Avestan/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Balinese/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Bamum/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Batak/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Bengali/value.dump +16 -0
- data/resources/unicode_data/properties/Script/Bopomofo/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Brahmi/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Braille/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Buginese/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Buhid/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Canadian_Aboriginal/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Carian/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Chakma/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Cham/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Cherokee/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Common/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Coptic/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Cuneiform/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Cypriot/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Cyrillic/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Deseret/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Devanagari/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Egyptian_Hieroglyphs/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Ethiopic/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Georgian/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Glagolitic/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Gothic/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Greek/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Gujarati/value.dump +40 -0
- data/resources/unicode_data/properties/Script/Gurmukhi/value.dump +50 -0
- data/resources/unicode_data/properties/Script/Han/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Hangul/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Hanunoo/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Hebrew/value.dump +11 -0
- data/resources/unicode_data/properties/Script/Hiragana/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Imperial_Aramaic/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Inherited/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Inscriptional_Pahlavi/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Inscriptional_Parthian/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Javanese/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Kaithi/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Kannada/value.dump +16 -0
- data/resources/unicode_data/properties/Script/Katakana/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Kayah_Li/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Kharoshthi/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Khmer/value.dump +6 -0
- data/resources/unicode_data/properties/Script/Lao/value.dump +20 -0
- data/resources/unicode_data/properties/Script/Latin/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Lepcha/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Limbu/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Linear_B/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Lisu/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Lycian/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Lydian/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Malayalam/value.dump +13 -0
- data/resources/unicode_data/properties/Script/Mandaic/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Meetei_Mayek/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Meroitic_Cursive/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Meroitic_Hieroglyphs/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Miao/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Mongolian/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Myanmar/value.dump +0 -0
- data/resources/unicode_data/properties/Script/New_Tai_Lue/value.dump +6 -0
- data/resources/unicode_data/properties/Script/Nko/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Ogham/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Ol_Chiki/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Old_Italic/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Old_Persian/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Old_South_Arabian/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Old_Turkic/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Oriya/value.dump +16 -0
- data/resources/unicode_data/properties/Script/Osmanya/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Phags_Pa/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Phoenician/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Rejang/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Runic/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Samaritan/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Saurashtra/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Sharada/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Shavian/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Sinhala/value.dump +13 -0
- data/resources/unicode_data/properties/Script/Sora_Sompeng/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Sundanese/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Syloti_Nagri/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Syriac/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Tagalog/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Tagbanwa/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Tai_Le/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Tai_Tham/value.dump +8 -0
- data/resources/unicode_data/properties/Script/Tai_Viet/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Takri/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Tamil/value.dump +18 -0
- data/resources/unicode_data/properties/Script/Telugu/value.dump +16 -0
- data/resources/unicode_data/properties/Script/Thaana/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Thai/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Tibetan/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Tifinagh/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Ugaritic/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Vai/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Yi/value.dump +0 -0
- data/resources/unicode_data/properties/Script_Extensions/Arab/value.dump +11 -0
- data/resources/unicode_data/properties/Script_Extensions/Armn/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Beng/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Bopo/value.dump +19 -0
- data/resources/unicode_data/properties/Script_Extensions/Bugi/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Buhd/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Cakm/value.dump +4 -0
- data/resources/unicode_data/properties/Script_Extensions/Cprt/value.dump +0 -0
- data/resources/unicode_data/properties/Script_Extensions/Cyrl/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Deva/value.dump +4 -0
- data/resources/unicode_data/properties/Script_Extensions/Geor/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Grek/value.dump +5 -0
- data/resources/unicode_data/properties/Script_Extensions/Gujr/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Guru/value.dump +4 -0
- data/resources/unicode_data/properties/Script_Extensions/Hang/value.dump +18 -0
- data/resources/unicode_data/properties/Script_Extensions/Hani/value.dump +21 -0
- data/resources/unicode_data/properties/Script_Extensions/Hano/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Hira/value.dump +24 -0
- data/resources/unicode_data/properties/Script_Extensions/Java/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Kana/value.dump +24 -0
- data/resources/unicode_data/properties/Script_Extensions/Kthi/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Latn/value.dump +5 -0
- data/resources/unicode_data/properties/Script_Extensions/Linb/value.dump +0 -0
- data/resources/unicode_data/properties/Script_Extensions/Mand/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Mong/value.dump +4 -0
- data/resources/unicode_data/properties/Script_Extensions/Mymr/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Orya/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Phag/value.dump +4 -0
- data/resources/unicode_data/properties/Script_Extensions/Sylo/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Syrc/value.dump +8 -0
- data/resources/unicode_data/properties/Script_Extensions/Tagb/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Takr/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Tale/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Tglg/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Thaa/value.dump +8 -0
- data/resources/unicode_data/properties/Script_Extensions/Yiii/value.dump +8 -0
- data/resources/unicode_data/properties/Sentence_Break/ATerm/value.dump +6 -0
- data/resources/unicode_data/properties/Sentence_Break/CR/value.dump +3 -0
- data/resources/unicode_data/properties/Sentence_Break/Close/value.dump +0 -0
- data/resources/unicode_data/properties/Sentence_Break/Extend/value.dump +0 -0
- data/resources/unicode_data/properties/Sentence_Break/Format/value.dump +0 -0
- data/resources/unicode_data/properties/Sentence_Break/LF/value.dump +3 -0
- data/resources/unicode_data/properties/Sentence_Break/Lower/value.dump +0 -0
- data/resources/unicode_data/properties/Sentence_Break/Numeric/value.dump +0 -0
- data/resources/unicode_data/properties/Sentence_Break/OLetter/value.dump +0 -0
- data/resources/unicode_data/properties/Sentence_Break/SContinue/value.dump +21 -0
- data/resources/unicode_data/properties/Sentence_Break/STerm/value.dump +0 -0
- data/resources/unicode_data/properties/Sentence_Break/Sep/value.dump +4 -0
- data/resources/unicode_data/properties/Sentence_Break/Sp/value.dump +0 -0
- data/resources/unicode_data/properties/Sentence_Break/Upper/value.dump +0 -0
- data/resources/unicode_data/properties/Soft_Dotted/value.dump +33 -0
- data/resources/unicode_data/properties/Terminal_Punctuation/value.dump +0 -0
- data/resources/unicode_data/properties/Unified_Ideograph/value.dump +0 -0
- data/resources/unicode_data/properties/Uppercase/value.dump +0 -0
- data/resources/unicode_data/properties/Variation_Selector/value.dump +0 -0
- data/resources/unicode_data/properties/White_Space/value.dump +0 -0
- data/resources/unicode_data/properties/Word_Break/ALetter/value.dump +0 -0
- data/resources/unicode_data/properties/Word_Break/CR/value.dump +3 -0
- data/resources/unicode_data/properties/Word_Break/Double_Quote/value.dump +3 -0
- data/resources/unicode_data/properties/Word_Break/Extend/value.dump +0 -0
- data/resources/unicode_data/properties/Word_Break/ExtendNumLet/value.dump +8 -0
- data/resources/unicode_data/properties/Word_Break/Format/value.dump +0 -0
- data/resources/unicode_data/properties/Word_Break/Hebrew_Letter/value.dump +12 -0
- data/resources/unicode_data/properties/Word_Break/Katakana/value.dump +0 -0
- data/resources/unicode_data/properties/Word_Break/LF/value.dump +3 -0
- data/resources/unicode_data/properties/Word_Break/MidLetter/value.dump +10 -0
- data/resources/unicode_data/properties/Word_Break/MidNum/value.dump +16 -0
- data/resources/unicode_data/properties/Word_Break/MidNumLet/value.dump +9 -0
- data/resources/unicode_data/properties/Word_Break/Newline/value.dump +5 -0
- data/resources/unicode_data/properties/Word_Break/Numeric/value.dump +0 -0
- data/resources/unicode_data/properties/Word_Break/Regional_Indicator/value.dump +3 -0
- data/resources/unicode_data/properties/Word_Break/Single_Quote/value.dump +3 -0
- data/resources/unicode_data/properties/XID_Continue/value.dump +0 -0
- data/resources/unicode_data/properties/XID_Start/value.dump +0 -0
- data/resources/unicode_data/property_aliases.yml +350 -0
- data/resources/unicode_data/property_value_aliases.yml +1829 -0
- data/spec/bidi/bidi_spec.rb +2 -2
- data/spec/collation/collation_spec.rb +1 -1
- data/spec/collation/collator_spec.rb +6 -6
- data/spec/collation/sort_key_builder_spec.rb +11 -11
- data/spec/collation/tailoring_spec.rb +1 -1
- data/spec/collation/trie_dumps_spec.rb +1 -1
- data/spec/data_readers/date_time_data_reader_spec.rb +1 -1
- data/spec/data_readers/number_data_reader_spec.rb +19 -6
- data/spec/formatters/calendars/datetime_formatter_spec.rb +1 -1
- data/spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb +1 -1
- data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +5 -5
- data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +4 -4
- data/spec/formatters/numbers/currency_formatter_spec.rb +10 -10
- data/spec/formatters/numbers/decimal_formatter_spec.rb +2 -2
- data/spec/formatters/numbers/helpers/fraction_spec.rb +4 -4
- data/spec/formatters/numbers/helpers/integer_spec.rb +21 -16
- data/spec/formatters/numbers/number_formatter_spec.rb +9 -9
- data/spec/formatters/numbers/percent_formatter_spec.rb +2 -2
- data/spec/formatters/numbers/rbnf/rbnf_spec.rb +5 -5
- data/spec/formatters/plurals/plural_formatter_spec.rb +25 -25
- data/spec/formatters/plurals/rules_spec.rb +4 -4
- data/spec/localized/localized_date_spec.rb +25 -25
- data/spec/localized/localized_datetime_spec.rb +7 -7
- data/spec/localized/localized_hash_spec.rb +1 -1
- data/spec/localized/localized_number_spec.rb +23 -23
- data/spec/localized/localized_object_spec.rb +2 -2
- data/spec/localized/localized_string_spec.rb +43 -16
- data/spec/localized/localized_symbol_spec.rb +31 -4
- data/spec/localized/localized_time_spec.rb +3 -3
- data/spec/localized/localized_timespan_spec.rb +42 -42
- data/spec/normalization_spec.rb +4 -4
- data/spec/parsers/number_parser_spec.rb +10 -10
- data/spec/parsers/parser_spec.rb +19 -3
- data/spec/parsers/symbol_table_spec.rb +1 -1
- data/spec/parsers/unicode_regex/character_class_spec.rb +12 -0
- data/spec/parsers/unicode_regex/character_range_spec.rb +24 -5
- data/spec/parsers/unicode_regex/character_set_spec.rb +9 -1
- data/spec/parsers/unicode_regex_parser_spec.rb +1 -1
- data/spec/resources/loader_spec.rb +6 -6
- data/spec/{shared → segmentation}/break_iterator_spec.rb +45 -16
- data/spec/segmentation/parser_spec.rb +107 -0
- data/spec/segmentation/rule_set_spec.rb +102 -0
- data/spec/shared/calendar_spec.rb +30 -30
- data/spec/shared/caser_spec.rb +79 -0
- data/spec/shared/code_point_spec.rb +52 -151
- data/spec/shared/currencies_spec.rb +8 -8
- data/spec/shared/language_codes_spec.rb +13 -13
- data/spec/shared/likely_subtags_spec.rb +58 -0
- data/spec/shared/locale_spec.rb +211 -0
- data/spec/shared/numbers_spec.rb +4 -4
- data/spec/shared/postal_codes_spec.rb +24 -4
- data/spec/shared/properties_database_spec.rb +157 -0
- data/spec/shared/property_name_aliases_spec.rb +56 -0
- data/spec/shared/property_normalizer_spec.rb +64 -0
- data/spec/shared/property_set_spec.rb +218 -0
- data/spec/shared/property_value_aliases_spec.rb +58 -0
- data/spec/shared/territories_spec.rb +1 -1
- data/spec/shared/unicode_regex_spec.rb +35 -2
- data/spec/spec_helper.rb +3 -3
- data/spec/tokenizers/calendars/date_tokenizer_spec.rb +23 -23
- data/spec/tokenizers/calendars/datetime_tokenizer_spec.rb +18 -18
- data/spec/tokenizers/calendars/time_tokenizer_spec.rb +19 -19
- data/spec/tokenizers/composite_token_spec.rb +4 -4
- data/spec/tokenizers/numbers/number_tokenizer_spec.rb +16 -16
- data/spec/tokenizers/token_spec.rb +2 -2
- data/spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb +94 -94
- data/spec/utils/file_system_trie_spec.rb +98 -0
- data/spec/utils/range_set_spec.rb +53 -1
- data/spec/utils/script_detector_spec.rb +58 -0
- data/spec/utils/yaml/yaml_spec.rb +22 -22
- data/spec/utils_spec.rb +21 -21
- metadata +832 -28
- data/lib/twitter_cldr/parsers/segmentation_parser.rb +0 -137
- data/lib/twitter_cldr/resources/canonical_compositions_updater.rb +0 -51
- data/lib/twitter_cldr/resources/composition_exclusions_importer.rb +0 -62
- data/lib/twitter_cldr/resources/normalization_quick_check_importer.rb +0 -73
- data/lib/twitter_cldr/resources/unicode_properties_importer.rb +0 -79
- data/lib/twitter_cldr/shared/break_iterator.rb +0 -213
- data/lib/twitter_cldr/tokenizers/segmentation/segmentation_tokenizer.rb +0 -39
- data/resources/shared/segments/tailorings/en.yml +0 -8
- data/resources/unicode_data/canonical_compositions.yml +0 -4925
- data/resources/unicode_data/composition_exclusions.yml +0 -297
- data/resources/unicode_data/hangul_blocks.yml +0 -21
- data/resources/unicode_data/indices/bidi_class.yml +0 -4572
- data/resources/unicode_data/indices/bidi_mirrored.yml +0 -3087
- data/resources/unicode_data/indices/category.yml +0 -10918
- data/resources/unicode_data/indices/keys.yml +0 -101
- data/resources/unicode_data/nfc_quick_check.yml +0 -293
- data/resources/unicode_data/nfd_quick_check.yml +0 -909
- data/resources/unicode_data/nfkc_quick_check.yml +0 -989
- data/resources/unicode_data/nfkd_quick_check.yml +0 -1537
- data/resources/unicode_data/properties/line_break.yml +0 -9269
- data/resources/unicode_data/properties/sentence_break.yml +0 -8067
- data/resources/unicode_data/properties/word_break.yml +0 -3001
- data/spec/parsers/segmentation_parser_spec.rb +0 -100
- data/spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb +0 -40
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: twitter_cldr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cameron Dutro
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -142,7 +142,6 @@ files:
|
|
142
142
|
- lib/twitter_cldr/parsers.rb
|
143
143
|
- lib/twitter_cldr/parsers/number_parser.rb
|
144
144
|
- lib/twitter_cldr/parsers/parser.rb
|
145
|
-
- lib/twitter_cldr/parsers/segmentation_parser.rb
|
146
145
|
- lib/twitter_cldr/parsers/symbol_table.rb
|
147
146
|
- lib/twitter_cldr/parsers/unicode_regex/character_class.rb
|
148
147
|
- lib/twitter_cldr/parsers/unicode_regex/character_range.rb
|
@@ -153,43 +152,79 @@ files:
|
|
153
152
|
- lib/twitter_cldr/parsers/unicode_regex_parser.rb
|
154
153
|
- lib/twitter_cldr/resources.rb
|
155
154
|
- lib/twitter_cldr/resources/bidi_test_importer.rb
|
156
|
-
- lib/twitter_cldr/resources/canonical_compositions_updater.rb
|
157
155
|
- lib/twitter_cldr/resources/casefolder.rb.erb
|
158
156
|
- lib/twitter_cldr/resources/casefolder_class_generator.rb
|
159
157
|
- lib/twitter_cldr/resources/collation_tries_dumper.rb
|
160
|
-
- lib/twitter_cldr/resources/composition_exclusions_importer.rb
|
161
158
|
- lib/twitter_cldr/resources/custom_locales_resources_importer.rb
|
162
159
|
- lib/twitter_cldr/resources/download.rb
|
163
160
|
- lib/twitter_cldr/resources/icu_based_importer.rb
|
164
161
|
- lib/twitter_cldr/resources/language_codes_importer.rb
|
165
162
|
- lib/twitter_cldr/resources/loader.rb
|
166
163
|
- lib/twitter_cldr/resources/locales_resources_importer.rb
|
167
|
-
- lib/twitter_cldr/resources/normalization_quick_check_importer.rb
|
168
164
|
- lib/twitter_cldr/resources/phone_codes_importer.rb
|
169
165
|
- lib/twitter_cldr/resources/postal_codes_importer.rb
|
166
|
+
- lib/twitter_cldr/resources/properties.rb
|
167
|
+
- lib/twitter_cldr/resources/properties/age_property_importer.rb
|
168
|
+
- lib/twitter_cldr/resources/properties/arabic_shaping_property_importer.rb
|
169
|
+
- lib/twitter_cldr/resources/properties/bidi_brackets_property_importer.rb
|
170
|
+
- lib/twitter_cldr/resources/properties/blocks_property_importer.rb
|
171
|
+
- lib/twitter_cldr/resources/properties/derived_core_properties_importer.rb
|
172
|
+
- lib/twitter_cldr/resources/properties/east_asian_width_property_importer.rb
|
173
|
+
- lib/twitter_cldr/resources/properties/grapheme_break_property_importer.rb
|
174
|
+
- lib/twitter_cldr/resources/properties/hangul_syllable_type_property_importer.rb
|
175
|
+
- lib/twitter_cldr/resources/properties/indic_positional_category_property_importer.rb
|
176
|
+
- lib/twitter_cldr/resources/properties/indic_syllabic_category_property_importer.rb
|
177
|
+
- lib/twitter_cldr/resources/properties/jamo_property_importer.rb
|
178
|
+
- lib/twitter_cldr/resources/properties/line_break_property_importer.rb
|
179
|
+
- lib/twitter_cldr/resources/properties/prop_list_importer.rb
|
180
|
+
- lib/twitter_cldr/resources/properties/properties_importer.rb
|
181
|
+
- lib/twitter_cldr/resources/properties/property_importer.rb
|
182
|
+
- lib/twitter_cldr/resources/properties/script_extensions_property_importer.rb
|
183
|
+
- lib/twitter_cldr/resources/properties/script_property_importer.rb
|
184
|
+
- lib/twitter_cldr/resources/properties/sentence_break_property_importer.rb
|
185
|
+
- lib/twitter_cldr/resources/properties/unicode_data_properties_importer.rb
|
186
|
+
- lib/twitter_cldr/resources/properties/word_break_property_importer.rb
|
170
187
|
- lib/twitter_cldr/resources/rbnf_test_importer.rb
|
171
188
|
- lib/twitter_cldr/resources/readme_renderer.rb
|
172
189
|
- lib/twitter_cldr/resources/regexp_ast_generator.rb
|
190
|
+
- lib/twitter_cldr/resources/segment_tests_importer.rb
|
173
191
|
- lib/twitter_cldr/resources/tailoring_importer.rb
|
174
192
|
- lib/twitter_cldr/resources/uli.rb
|
175
193
|
- lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb
|
176
194
|
- lib/twitter_cldr/resources/unicode_data_importer.rb
|
177
195
|
- lib/twitter_cldr/resources/unicode_importer.rb
|
178
|
-
- lib/twitter_cldr/resources/
|
196
|
+
- lib/twitter_cldr/resources/unicode_property_aliases_importer.rb
|
197
|
+
- lib/twitter_cldr/segmentation.rb
|
198
|
+
- lib/twitter_cldr/segmentation/break_iterator.rb
|
199
|
+
- lib/twitter_cldr/segmentation/cursor.rb
|
200
|
+
- lib/twitter_cldr/segmentation/parser.rb
|
201
|
+
- lib/twitter_cldr/segmentation/rule.rb
|
202
|
+
- lib/twitter_cldr/segmentation/rule_set.rb
|
203
|
+
- lib/twitter_cldr/segmentation/rule_set_builder.rb
|
179
204
|
- lib/twitter_cldr/shared.rb
|
180
205
|
- lib/twitter_cldr/shared/bidi.rb
|
181
|
-
- lib/twitter_cldr/shared/break_iterator.rb
|
182
206
|
- lib/twitter_cldr/shared/calendar.rb
|
183
207
|
- lib/twitter_cldr/shared/casefolder.rb
|
208
|
+
- lib/twitter_cldr/shared/caser.rb
|
184
209
|
- lib/twitter_cldr/shared/code_point.rb
|
185
210
|
- lib/twitter_cldr/shared/currencies.rb
|
186
211
|
- lib/twitter_cldr/shared/language_codes.rb
|
187
212
|
- lib/twitter_cldr/shared/languages.rb
|
213
|
+
- lib/twitter_cldr/shared/likely_subtags.rb
|
214
|
+
- lib/twitter_cldr/shared/locale.rb
|
188
215
|
- lib/twitter_cldr/shared/numbering_system.rb
|
189
216
|
- lib/twitter_cldr/shared/numbers.rb
|
190
217
|
- lib/twitter_cldr/shared/phone_codes.rb
|
191
218
|
- lib/twitter_cldr/shared/postal_code_generator.rb
|
192
219
|
- lib/twitter_cldr/shared/postal_codes.rb
|
220
|
+
- lib/twitter_cldr/shared/properties.rb
|
221
|
+
- lib/twitter_cldr/shared/properties/arabic_shaping.rb
|
222
|
+
- lib/twitter_cldr/shared/properties/bidi_brackets.rb
|
223
|
+
- lib/twitter_cldr/shared/properties_database.rb
|
224
|
+
- lib/twitter_cldr/shared/property_name_aliases.rb
|
225
|
+
- lib/twitter_cldr/shared/property_normalizer.rb
|
226
|
+
- lib/twitter_cldr/shared/property_set.rb
|
227
|
+
- lib/twitter_cldr/shared/property_value_aliases.rb
|
193
228
|
- lib/twitter_cldr/shared/territories.rb
|
194
229
|
- lib/twitter_cldr/shared/territories_containment.rb
|
195
230
|
- lib/twitter_cldr/shared/territory.rb
|
@@ -204,17 +239,19 @@ files:
|
|
204
239
|
- lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb
|
205
240
|
- lib/twitter_cldr/tokenizers/numbers/rbnf_tokenizer.rb
|
206
241
|
- lib/twitter_cldr/tokenizers/pattern_tokenizer.rb
|
207
|
-
- lib/twitter_cldr/tokenizers/segmentation/segmentation_tokenizer.rb
|
208
242
|
- lib/twitter_cldr/tokenizers/token.rb
|
209
243
|
- lib/twitter_cldr/tokenizers/tokenizer.rb
|
210
244
|
- lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb
|
211
245
|
- lib/twitter_cldr/utils.rb
|
212
246
|
- lib/twitter_cldr/utils/code_points.rb
|
247
|
+
- lib/twitter_cldr/utils/file_system_trie.rb
|
213
248
|
- lib/twitter_cldr/utils/range_set.rb
|
214
249
|
- lib/twitter_cldr/utils/regexp_ast.rb
|
215
250
|
- lib/twitter_cldr/utils/regexp_sampler.rb
|
251
|
+
- lib/twitter_cldr/utils/script_detector.rb
|
216
252
|
- lib/twitter_cldr/utils/yaml.rb
|
217
253
|
- lib/twitter_cldr/version.rb
|
254
|
+
- lib/twitter_cldr/versions.rb
|
218
255
|
- resources/collation/FractionalUCA_SHORT.txt
|
219
256
|
- resources/collation/tailoring/af.yml
|
220
257
|
- resources/collation/tailoring/ar.yml
|
@@ -1150,16 +1187,20 @@ files:
|
|
1150
1187
|
- resources/locales/zh/rbnf.yml
|
1151
1188
|
- resources/locales/zh/territories.yml
|
1152
1189
|
- resources/locales/zh/units.yml
|
1190
|
+
- resources/shared/aliases.yml
|
1153
1191
|
- resources/shared/currency_digits_and_rounding.yml
|
1154
1192
|
- resources/shared/iso_currency_symbols.yml
|
1155
1193
|
- resources/shared/language_codes_table.dump
|
1194
|
+
- resources/shared/likely_subtags.yml
|
1156
1195
|
- resources/shared/numbering_systems.yml
|
1157
1196
|
- resources/shared/phone_codes.yml
|
1158
1197
|
- resources/shared/postal_codes.yml
|
1159
1198
|
- resources/shared/rbnf_root.yml
|
1160
1199
|
- resources/shared/segments/segments_root.yml
|
1161
|
-
- resources/shared/segments/
|
1200
|
+
- resources/shared/segments/tests/sentence_break_test.yml
|
1201
|
+
- resources/shared/segments/tests/word_break_test.yml
|
1162
1202
|
- resources/shared/territories_containment.yml
|
1203
|
+
- resources/shared/variables.yml
|
1163
1204
|
- resources/uli/segments/de.yml
|
1164
1205
|
- resources/uli/segments/en.yml
|
1165
1206
|
- resources/uli/segments/es.yml
|
@@ -1169,8 +1210,10 @@ files:
|
|
1169
1210
|
- resources/uli/segments/ru.yml
|
1170
1211
|
- resources/unicode_data/blocks.yml
|
1171
1212
|
- resources/unicode_data/blocks/aegean_numbers.yml
|
1213
|
+
- resources/unicode_data/blocks/ahom.yml
|
1172
1214
|
- resources/unicode_data/blocks/alchemical_symbols.yml
|
1173
1215
|
- resources/unicode_data/blocks/alphabetic_presentation_forms.yml
|
1216
|
+
- resources/unicode_data/blocks/anatolian_hieroglyphs.yml
|
1174
1217
|
- resources/unicode_data/blocks/ancient_greek_musical_notation.yml
|
1175
1218
|
- resources/unicode_data/blocks/ancient_greek_numbers.yml
|
1176
1219
|
- resources/unicode_data/blocks/ancient_symbols.yml
|
@@ -1187,6 +1230,7 @@ files:
|
|
1187
1230
|
- resources/unicode_data/blocks/bamum.yml
|
1188
1231
|
- resources/unicode_data/blocks/bamum_supplement.yml
|
1189
1232
|
- resources/unicode_data/blocks/basic_latin.yml
|
1233
|
+
- resources/unicode_data/blocks/bassa_vah.yml
|
1190
1234
|
- resources/unicode_data/blocks/batak.yml
|
1191
1235
|
- resources/unicode_data/blocks/bengali.yml
|
1192
1236
|
- resources/unicode_data/blocks/block_elements.yml
|
@@ -1199,9 +1243,11 @@ files:
|
|
1199
1243
|
- resources/unicode_data/blocks/buhid.yml
|
1200
1244
|
- resources/unicode_data/blocks/byzantine_musical_symbols.yml
|
1201
1245
|
- resources/unicode_data/blocks/carian.yml
|
1246
|
+
- resources/unicode_data/blocks/caucasian_albanian.yml
|
1202
1247
|
- resources/unicode_data/blocks/chakma.yml
|
1203
1248
|
- resources/unicode_data/blocks/cham.yml
|
1204
1249
|
- resources/unicode_data/blocks/cherokee.yml
|
1250
|
+
- resources/unicode_data/blocks/cherokee_supplement.yml
|
1205
1251
|
- resources/unicode_data/blocks/cjk_compatibility.yml
|
1206
1252
|
- resources/unicode_data/blocks/cjk_compatibility_forms.yml
|
1207
1253
|
- resources/unicode_data/blocks/cjk_compatibility_ideographs.yml
|
@@ -1214,13 +1260,16 @@ files:
|
|
1214
1260
|
- resources/unicode_data/blocks/cjk_unified_ideographs_extension_b.yml
|
1215
1261
|
- resources/unicode_data/blocks/cjk_unified_ideographs_extension_c.yml
|
1216
1262
|
- resources/unicode_data/blocks/cjk_unified_ideographs_extension_d.yml
|
1263
|
+
- resources/unicode_data/blocks/cjk_unified_ideographs_extension_e.yml
|
1217
1264
|
- resources/unicode_data/blocks/combining_diacritical_marks.yml
|
1265
|
+
- resources/unicode_data/blocks/combining_diacritical_marks_extended.yml
|
1218
1266
|
- resources/unicode_data/blocks/combining_diacritical_marks_for_symbols.yml
|
1219
1267
|
- resources/unicode_data/blocks/combining_diacritical_marks_supplement.yml
|
1220
1268
|
- resources/unicode_data/blocks/combining_half_marks.yml
|
1221
1269
|
- resources/unicode_data/blocks/common_indic_number_forms.yml
|
1222
1270
|
- resources/unicode_data/blocks/control_pictures.yml
|
1223
1271
|
- resources/unicode_data/blocks/coptic.yml
|
1272
|
+
- resources/unicode_data/blocks/coptic_epact_numbers.yml
|
1224
1273
|
- resources/unicode_data/blocks/counting_rod_numerals.yml
|
1225
1274
|
- resources/unicode_data/blocks/cuneiform.yml
|
1226
1275
|
- resources/unicode_data/blocks/cuneiform_numbers_and_punctuation.yml
|
@@ -1235,7 +1284,10 @@ files:
|
|
1235
1284
|
- resources/unicode_data/blocks/devanagari_extended.yml
|
1236
1285
|
- resources/unicode_data/blocks/dingbats.yml
|
1237
1286
|
- resources/unicode_data/blocks/domino_tiles.yml
|
1287
|
+
- resources/unicode_data/blocks/duployan.yml
|
1288
|
+
- resources/unicode_data/blocks/early_dynastic_cuneiform.yml
|
1238
1289
|
- resources/unicode_data/blocks/egyptian_hieroglyphs.yml
|
1290
|
+
- resources/unicode_data/blocks/elbasan.yml
|
1239
1291
|
- resources/unicode_data/blocks/emoticons.yml
|
1240
1292
|
- resources/unicode_data/blocks/enclosed_alphanumeric_supplement.yml
|
1241
1293
|
- resources/unicode_data/blocks/enclosed_alphanumerics.yml
|
@@ -1247,10 +1299,12 @@ files:
|
|
1247
1299
|
- resources/unicode_data/blocks/ethiopic_supplement.yml
|
1248
1300
|
- resources/unicode_data/blocks/general_punctuation.yml
|
1249
1301
|
- resources/unicode_data/blocks/geometric_shapes.yml
|
1302
|
+
- resources/unicode_data/blocks/geometric_shapes_extended.yml
|
1250
1303
|
- resources/unicode_data/blocks/georgian.yml
|
1251
1304
|
- resources/unicode_data/blocks/georgian_supplement.yml
|
1252
1305
|
- resources/unicode_data/blocks/glagolitic.yml
|
1253
1306
|
- resources/unicode_data/blocks/gothic.yml
|
1307
|
+
- resources/unicode_data/blocks/grantha.yml
|
1254
1308
|
- resources/unicode_data/blocks/greek_and_coptic.yml
|
1255
1309
|
- resources/unicode_data/blocks/greek_extended.yml
|
1256
1310
|
- resources/unicode_data/blocks/gujarati.yml
|
@@ -1262,6 +1316,7 @@ files:
|
|
1262
1316
|
- resources/unicode_data/blocks/hangul_jamo_extended_b.yml
|
1263
1317
|
- resources/unicode_data/blocks/hangul_syllables.yml
|
1264
1318
|
- resources/unicode_data/blocks/hanunoo.yml
|
1319
|
+
- resources/unicode_data/blocks/hatran.yml
|
1265
1320
|
- resources/unicode_data/blocks/hebrew.yml
|
1266
1321
|
- resources/unicode_data/blocks/high_private_use_surrogates.yml
|
1267
1322
|
- resources/unicode_data/blocks/high_surrogates.yml
|
@@ -1283,6 +1338,8 @@ files:
|
|
1283
1338
|
- resources/unicode_data/blocks/kharoshthi.yml
|
1284
1339
|
- resources/unicode_data/blocks/khmer.yml
|
1285
1340
|
- resources/unicode_data/blocks/khmer_symbols.yml
|
1341
|
+
- resources/unicode_data/blocks/khojki.yml
|
1342
|
+
- resources/unicode_data/blocks/khudawadi.yml
|
1286
1343
|
- resources/unicode_data/blocks/lao.yml
|
1287
1344
|
- resources/unicode_data/blocks/latin_1_supplement.yml
|
1288
1345
|
- resources/unicode_data/blocks/latin_extended_a.yml
|
@@ -1290,22 +1347,27 @@ files:
|
|
1290
1347
|
- resources/unicode_data/blocks/latin_extended_b.yml
|
1291
1348
|
- resources/unicode_data/blocks/latin_extended_c.yml
|
1292
1349
|
- resources/unicode_data/blocks/latin_extended_d.yml
|
1350
|
+
- resources/unicode_data/blocks/latin_extended_e.yml
|
1293
1351
|
- resources/unicode_data/blocks/lepcha.yml
|
1294
1352
|
- resources/unicode_data/blocks/letterlike_symbols.yml
|
1295
1353
|
- resources/unicode_data/blocks/limbu.yml
|
1354
|
+
- resources/unicode_data/blocks/linear_a.yml
|
1296
1355
|
- resources/unicode_data/blocks/linear_b_ideograms.yml
|
1297
1356
|
- resources/unicode_data/blocks/linear_b_syllabary.yml
|
1298
1357
|
- resources/unicode_data/blocks/lisu.yml
|
1299
1358
|
- resources/unicode_data/blocks/low_surrogates.yml
|
1300
1359
|
- resources/unicode_data/blocks/lycian.yml
|
1301
1360
|
- resources/unicode_data/blocks/lydian.yml
|
1361
|
+
- resources/unicode_data/blocks/mahajani.yml
|
1302
1362
|
- resources/unicode_data/blocks/mahjong_tiles.yml
|
1303
1363
|
- resources/unicode_data/blocks/malayalam.yml
|
1304
1364
|
- resources/unicode_data/blocks/mandaic.yml
|
1365
|
+
- resources/unicode_data/blocks/manichaean.yml
|
1305
1366
|
- resources/unicode_data/blocks/mathematical_alphanumeric_symbols.yml
|
1306
1367
|
- resources/unicode_data/blocks/mathematical_operators.yml
|
1307
1368
|
- resources/unicode_data/blocks/meetei_mayek.yml
|
1308
1369
|
- resources/unicode_data/blocks/meetei_mayek_extensions.yml
|
1370
|
+
- resources/unicode_data/blocks/mende_kikakui.yml
|
1309
1371
|
- resources/unicode_data/blocks/meroitic_cursive.yml
|
1310
1372
|
- resources/unicode_data/blocks/meroitic_hieroglyphs.yml
|
1311
1373
|
- resources/unicode_data/blocks/miao.yml
|
@@ -1315,23 +1377,35 @@ files:
|
|
1315
1377
|
- resources/unicode_data/blocks/miscellaneous_symbols_and_arrows.yml
|
1316
1378
|
- resources/unicode_data/blocks/miscellaneous_symbols_and_pictographs.yml
|
1317
1379
|
- resources/unicode_data/blocks/miscellaneous_technical.yml
|
1380
|
+
- resources/unicode_data/blocks/modi.yml
|
1318
1381
|
- resources/unicode_data/blocks/modifier_tone_letters.yml
|
1319
1382
|
- resources/unicode_data/blocks/mongolian.yml
|
1383
|
+
- resources/unicode_data/blocks/mro.yml
|
1384
|
+
- resources/unicode_data/blocks/multani.yml
|
1320
1385
|
- resources/unicode_data/blocks/musical_symbols.yml
|
1321
1386
|
- resources/unicode_data/blocks/myanmar.yml
|
1322
1387
|
- resources/unicode_data/blocks/myanmar_extended_a.yml
|
1388
|
+
- resources/unicode_data/blocks/myanmar_extended_b.yml
|
1389
|
+
- resources/unicode_data/blocks/nabataean.yml
|
1323
1390
|
- resources/unicode_data/blocks/new_tai_lue.yml
|
1324
1391
|
- resources/unicode_data/blocks/nko.yml
|
1325
1392
|
- resources/unicode_data/blocks/number_forms.yml
|
1326
1393
|
- resources/unicode_data/blocks/ogham.yml
|
1327
1394
|
- resources/unicode_data/blocks/ol_chiki.yml
|
1395
|
+
- resources/unicode_data/blocks/old_hungarian.yml
|
1328
1396
|
- resources/unicode_data/blocks/old_italic.yml
|
1397
|
+
- resources/unicode_data/blocks/old_north_arabian.yml
|
1398
|
+
- resources/unicode_data/blocks/old_permic.yml
|
1329
1399
|
- resources/unicode_data/blocks/old_persian.yml
|
1330
1400
|
- resources/unicode_data/blocks/old_south_arabian.yml
|
1331
1401
|
- resources/unicode_data/blocks/old_turkic.yml
|
1332
1402
|
- resources/unicode_data/blocks/optical_character_recognition.yml
|
1333
1403
|
- resources/unicode_data/blocks/oriya.yml
|
1404
|
+
- resources/unicode_data/blocks/ornamental_dingbats.yml
|
1334
1405
|
- resources/unicode_data/blocks/osmanya.yml
|
1406
|
+
- resources/unicode_data/blocks/pahawh_hmong.yml
|
1407
|
+
- resources/unicode_data/blocks/palmyrene.yml
|
1408
|
+
- resources/unicode_data/blocks/pau_cin_hau.yml
|
1335
1409
|
- resources/unicode_data/blocks/phags_pa.yml
|
1336
1410
|
- resources/unicode_data/blocks/phaistos_disc.yml
|
1337
1411
|
- resources/unicode_data/blocks/phoenician.yml
|
@@ -1339,6 +1413,7 @@ files:
|
|
1339
1413
|
- resources/unicode_data/blocks/phonetic_extensions_supplement.yml
|
1340
1414
|
- resources/unicode_data/blocks/playing_cards.yml
|
1341
1415
|
- resources/unicode_data/blocks/private_use_area.yml
|
1416
|
+
- resources/unicode_data/blocks/psalter_pahlavi.yml
|
1342
1417
|
- resources/unicode_data/blocks/rejang.yml
|
1343
1418
|
- resources/unicode_data/blocks/rumi_numeral_symbols.yml
|
1344
1419
|
- resources/unicode_data/blocks/runic.yml
|
@@ -1346,7 +1421,10 @@ files:
|
|
1346
1421
|
- resources/unicode_data/blocks/saurashtra.yml
|
1347
1422
|
- resources/unicode_data/blocks/sharada.yml
|
1348
1423
|
- resources/unicode_data/blocks/shavian.yml
|
1424
|
+
- resources/unicode_data/blocks/shorthand_format_controls.yml
|
1425
|
+
- resources/unicode_data/blocks/siddham.yml
|
1349
1426
|
- resources/unicode_data/blocks/sinhala.yml
|
1427
|
+
- resources/unicode_data/blocks/sinhala_archaic_numbers.yml
|
1350
1428
|
- resources/unicode_data/blocks/small_form_variants.yml
|
1351
1429
|
- resources/unicode_data/blocks/sora_sompeng.yml
|
1352
1430
|
- resources/unicode_data/blocks/spacing_modifier_letters.yml
|
@@ -1356,10 +1434,13 @@ files:
|
|
1356
1434
|
- resources/unicode_data/blocks/superscripts_and_subscripts.yml
|
1357
1435
|
- resources/unicode_data/blocks/supplemental_arrows_a.yml
|
1358
1436
|
- resources/unicode_data/blocks/supplemental_arrows_b.yml
|
1437
|
+
- resources/unicode_data/blocks/supplemental_arrows_c.yml
|
1359
1438
|
- resources/unicode_data/blocks/supplemental_mathematical_operators.yml
|
1360
1439
|
- resources/unicode_data/blocks/supplemental_punctuation.yml
|
1440
|
+
- resources/unicode_data/blocks/supplemental_symbols_and_pictographs.yml
|
1361
1441
|
- resources/unicode_data/blocks/supplementary_private_use_area_a.yml
|
1362
1442
|
- resources/unicode_data/blocks/supplementary_private_use_area_b.yml
|
1443
|
+
- resources/unicode_data/blocks/sutton_signwriting.yml
|
1363
1444
|
- resources/unicode_data/blocks/syloti_nagri.yml
|
1364
1445
|
- resources/unicode_data/blocks/syriac.yml
|
1365
1446
|
- resources/unicode_data/blocks/tagalog.yml
|
@@ -1376,6 +1457,7 @@ files:
|
|
1376
1457
|
- resources/unicode_data/blocks/thai.yml
|
1377
1458
|
- resources/unicode_data/blocks/tibetan.yml
|
1378
1459
|
- resources/unicode_data/blocks/tifinagh.yml
|
1460
|
+
- resources/unicode_data/blocks/tirhuta.yml
|
1379
1461
|
- resources/unicode_data/blocks/transport_and_map_symbols.yml
|
1380
1462
|
- resources/unicode_data/blocks/ugaritic.yml
|
1381
1463
|
- resources/unicode_data/blocks/unified_canadian_aboriginal_syllabics.yml
|
@@ -1385,24 +1467,736 @@ files:
|
|
1385
1467
|
- resources/unicode_data/blocks/variation_selectors_supplement.yml
|
1386
1468
|
- resources/unicode_data/blocks/vedic_extensions.yml
|
1387
1469
|
- resources/unicode_data/blocks/vertical_forms.yml
|
1470
|
+
- resources/unicode_data/blocks/warang_citi.yml
|
1388
1471
|
- resources/unicode_data/blocks/yi_radicals.yml
|
1389
1472
|
- resources/unicode_data/blocks/yi_syllables.yml
|
1390
1473
|
- resources/unicode_data/blocks/yijing_hexagram_symbols.yml
|
1391
|
-
- resources/unicode_data/canonical_compositions.yml
|
1392
1474
|
- resources/unicode_data/casefolding.yml
|
1393
|
-
- resources/unicode_data/
|
1394
|
-
- resources/unicode_data/
|
1395
|
-
- resources/unicode_data/
|
1396
|
-
- resources/unicode_data/
|
1397
|
-
- resources/unicode_data/
|
1398
|
-
- resources/unicode_data/
|
1399
|
-
- resources/unicode_data/
|
1400
|
-
- resources/unicode_data/
|
1401
|
-
- resources/unicode_data/
|
1402
|
-
- resources/unicode_data/
|
1403
|
-
- resources/unicode_data/properties/
|
1404
|
-
- resources/unicode_data/properties/
|
1405
|
-
- resources/unicode_data/properties/
|
1475
|
+
- resources/unicode_data/properties/ASCII_Hex_Digit/value.dump
|
1476
|
+
- resources/unicode_data/properties/Age/1.1/value.dump
|
1477
|
+
- resources/unicode_data/properties/Age/2.0/value.dump
|
1478
|
+
- resources/unicode_data/properties/Age/2.1/value.dump
|
1479
|
+
- resources/unicode_data/properties/Age/3.0/value.dump
|
1480
|
+
- resources/unicode_data/properties/Age/3.1/value.dump
|
1481
|
+
- resources/unicode_data/properties/Age/3.2/value.dump
|
1482
|
+
- resources/unicode_data/properties/Age/4.0/value.dump
|
1483
|
+
- resources/unicode_data/properties/Age/4.1/value.dump
|
1484
|
+
- resources/unicode_data/properties/Age/5.0/value.dump
|
1485
|
+
- resources/unicode_data/properties/Age/5.1/value.dump
|
1486
|
+
- resources/unicode_data/properties/Age/5.2/value.dump
|
1487
|
+
- resources/unicode_data/properties/Age/6.0/value.dump
|
1488
|
+
- resources/unicode_data/properties/Age/6.1/value.dump
|
1489
|
+
- resources/unicode_data/properties/Age/6.2/value.dump
|
1490
|
+
- resources/unicode_data/properties/Age/6.3/value.dump
|
1491
|
+
- resources/unicode_data/properties/Alphabetic/value.dump
|
1492
|
+
- resources/unicode_data/properties/Bidi_Class/AL/value.dump
|
1493
|
+
- resources/unicode_data/properties/Bidi_Class/AN/value.dump
|
1494
|
+
- resources/unicode_data/properties/Bidi_Class/B/value.dump
|
1495
|
+
- resources/unicode_data/properties/Bidi_Class/BN/value.dump
|
1496
|
+
- resources/unicode_data/properties/Bidi_Class/CS/value.dump
|
1497
|
+
- resources/unicode_data/properties/Bidi_Class/EN/value.dump
|
1498
|
+
- resources/unicode_data/properties/Bidi_Class/ES/value.dump
|
1499
|
+
- resources/unicode_data/properties/Bidi_Class/ET/value.dump
|
1500
|
+
- resources/unicode_data/properties/Bidi_Class/FSI/value.dump
|
1501
|
+
- resources/unicode_data/properties/Bidi_Class/L/value.dump
|
1502
|
+
- resources/unicode_data/properties/Bidi_Class/LRE/value.dump
|
1503
|
+
- resources/unicode_data/properties/Bidi_Class/LRI/value.dump
|
1504
|
+
- resources/unicode_data/properties/Bidi_Class/LRO/value.dump
|
1505
|
+
- resources/unicode_data/properties/Bidi_Class/NSM/value.dump
|
1506
|
+
- resources/unicode_data/properties/Bidi_Class/ON/value.dump
|
1507
|
+
- resources/unicode_data/properties/Bidi_Class/PDF/value.dump
|
1508
|
+
- resources/unicode_data/properties/Bidi_Class/PDI/value.dump
|
1509
|
+
- resources/unicode_data/properties/Bidi_Class/R/value.dump
|
1510
|
+
- resources/unicode_data/properties/Bidi_Class/RLE/value.dump
|
1511
|
+
- resources/unicode_data/properties/Bidi_Class/RLI/value.dump
|
1512
|
+
- resources/unicode_data/properties/Bidi_Class/RLO/value.dump
|
1513
|
+
- resources/unicode_data/properties/Bidi_Class/S/value.dump
|
1514
|
+
- resources/unicode_data/properties/Bidi_Class/WS/value.dump
|
1515
|
+
- resources/unicode_data/properties/Bidi_Control/value.dump
|
1516
|
+
- resources/unicode_data/properties/Bidi_Mirrored/N/value.dump
|
1517
|
+
- resources/unicode_data/properties/Bidi_Mirrored/Y/value.dump
|
1518
|
+
- resources/unicode_data/properties/Block/Aegean Numbers/value.dump
|
1519
|
+
- resources/unicode_data/properties/Block/Alchemical Symbols/value.dump
|
1520
|
+
- resources/unicode_data/properties/Block/Alphabetic Presentation Forms/value.dump
|
1521
|
+
- resources/unicode_data/properties/Block/Ancient Greek Musical Notation/value.dump
|
1522
|
+
- resources/unicode_data/properties/Block/Ancient Greek Numbers/value.dump
|
1523
|
+
- resources/unicode_data/properties/Block/Ancient Symbols/value.dump
|
1524
|
+
- resources/unicode_data/properties/Block/Arabic Extended-A/value.dump
|
1525
|
+
- resources/unicode_data/properties/Block/Arabic Mathematical Alphabetic Symbols/value.dump
|
1526
|
+
- resources/unicode_data/properties/Block/Arabic Presentation Forms-A/value.dump
|
1527
|
+
- resources/unicode_data/properties/Block/Arabic Presentation Forms-B/value.dump
|
1528
|
+
- resources/unicode_data/properties/Block/Arabic Supplement/value.dump
|
1529
|
+
- resources/unicode_data/properties/Block/Arabic/value.dump
|
1530
|
+
- resources/unicode_data/properties/Block/Armenian/value.dump
|
1531
|
+
- resources/unicode_data/properties/Block/Arrows/value.dump
|
1532
|
+
- resources/unicode_data/properties/Block/Avestan/value.dump
|
1533
|
+
- resources/unicode_data/properties/Block/Balinese/value.dump
|
1534
|
+
- resources/unicode_data/properties/Block/Bamum Supplement/value.dump
|
1535
|
+
- resources/unicode_data/properties/Block/Bamum/value.dump
|
1536
|
+
- resources/unicode_data/properties/Block/Basic Latin/value.dump
|
1537
|
+
- resources/unicode_data/properties/Block/Batak/value.dump
|
1538
|
+
- resources/unicode_data/properties/Block/Bengali/value.dump
|
1539
|
+
- resources/unicode_data/properties/Block/Block Elements/value.dump
|
1540
|
+
- resources/unicode_data/properties/Block/Bopomofo Extended/value.dump
|
1541
|
+
- resources/unicode_data/properties/Block/Bopomofo/value.dump
|
1542
|
+
- resources/unicode_data/properties/Block/Box Drawing/value.dump
|
1543
|
+
- resources/unicode_data/properties/Block/Brahmi/value.dump
|
1544
|
+
- resources/unicode_data/properties/Block/Braille Patterns/value.dump
|
1545
|
+
- resources/unicode_data/properties/Block/Buginese/value.dump
|
1546
|
+
- resources/unicode_data/properties/Block/Buhid/value.dump
|
1547
|
+
- resources/unicode_data/properties/Block/Byzantine Musical Symbols/value.dump
|
1548
|
+
- resources/unicode_data/properties/Block/CJK Compatibility Forms/value.dump
|
1549
|
+
- resources/unicode_data/properties/Block/CJK Compatibility Ideographs Supplement/value.dump
|
1550
|
+
- resources/unicode_data/properties/Block/CJK Compatibility Ideographs/value.dump
|
1551
|
+
- resources/unicode_data/properties/Block/CJK Compatibility/value.dump
|
1552
|
+
- resources/unicode_data/properties/Block/CJK Radicals Supplement/value.dump
|
1553
|
+
- resources/unicode_data/properties/Block/CJK Strokes/value.dump
|
1554
|
+
- resources/unicode_data/properties/Block/CJK Symbols and Punctuation/value.dump
|
1555
|
+
- resources/unicode_data/properties/Block/CJK Unified Ideographs Extension A/value.dump
|
1556
|
+
- resources/unicode_data/properties/Block/CJK Unified Ideographs Extension B/value.dump
|
1557
|
+
- resources/unicode_data/properties/Block/CJK Unified Ideographs Extension C/value.dump
|
1558
|
+
- resources/unicode_data/properties/Block/CJK Unified Ideographs Extension D/value.dump
|
1559
|
+
- resources/unicode_data/properties/Block/CJK Unified Ideographs/value.dump
|
1560
|
+
- resources/unicode_data/properties/Block/Carian/value.dump
|
1561
|
+
- resources/unicode_data/properties/Block/Chakma/value.dump
|
1562
|
+
- resources/unicode_data/properties/Block/Cham/value.dump
|
1563
|
+
- resources/unicode_data/properties/Block/Cherokee/value.dump
|
1564
|
+
- resources/unicode_data/properties/Block/Combining Diacritical Marks Supplement/value.dump
|
1565
|
+
- resources/unicode_data/properties/Block/Combining Diacritical Marks for Symbols/value.dump
|
1566
|
+
- resources/unicode_data/properties/Block/Combining Diacritical Marks/value.dump
|
1567
|
+
- resources/unicode_data/properties/Block/Combining Half Marks/value.dump
|
1568
|
+
- resources/unicode_data/properties/Block/Common Indic Number Forms/value.dump
|
1569
|
+
- resources/unicode_data/properties/Block/Control Pictures/value.dump
|
1570
|
+
- resources/unicode_data/properties/Block/Coptic/value.dump
|
1571
|
+
- resources/unicode_data/properties/Block/Counting Rod Numerals/value.dump
|
1572
|
+
- resources/unicode_data/properties/Block/Cuneiform Numbers and Punctuation/value.dump
|
1573
|
+
- resources/unicode_data/properties/Block/Cuneiform/value.dump
|
1574
|
+
- resources/unicode_data/properties/Block/Currency Symbols/value.dump
|
1575
|
+
- resources/unicode_data/properties/Block/Cypriot Syllabary/value.dump
|
1576
|
+
- resources/unicode_data/properties/Block/Cyrillic Extended-A/value.dump
|
1577
|
+
- resources/unicode_data/properties/Block/Cyrillic Extended-B/value.dump
|
1578
|
+
- resources/unicode_data/properties/Block/Cyrillic Supplement/value.dump
|
1579
|
+
- resources/unicode_data/properties/Block/Cyrillic/value.dump
|
1580
|
+
- resources/unicode_data/properties/Block/Deseret/value.dump
|
1581
|
+
- resources/unicode_data/properties/Block/Devanagari Extended/value.dump
|
1582
|
+
- resources/unicode_data/properties/Block/Devanagari/value.dump
|
1583
|
+
- resources/unicode_data/properties/Block/Dingbats/value.dump
|
1584
|
+
- resources/unicode_data/properties/Block/Domino Tiles/value.dump
|
1585
|
+
- resources/unicode_data/properties/Block/Egyptian Hieroglyphs/value.dump
|
1586
|
+
- resources/unicode_data/properties/Block/Emoticons/value.dump
|
1587
|
+
- resources/unicode_data/properties/Block/Enclosed Alphanumeric Supplement/value.dump
|
1588
|
+
- resources/unicode_data/properties/Block/Enclosed Alphanumerics/value.dump
|
1589
|
+
- resources/unicode_data/properties/Block/Enclosed CJK Letters and Months/value.dump
|
1590
|
+
- resources/unicode_data/properties/Block/Enclosed Ideographic Supplement/value.dump
|
1591
|
+
- resources/unicode_data/properties/Block/Ethiopic Extended-A/value.dump
|
1592
|
+
- resources/unicode_data/properties/Block/Ethiopic Extended/value.dump
|
1593
|
+
- resources/unicode_data/properties/Block/Ethiopic Supplement/value.dump
|
1594
|
+
- resources/unicode_data/properties/Block/Ethiopic/value.dump
|
1595
|
+
- resources/unicode_data/properties/Block/General Punctuation/value.dump
|
1596
|
+
- resources/unicode_data/properties/Block/Geometric Shapes/value.dump
|
1597
|
+
- resources/unicode_data/properties/Block/Georgian Supplement/value.dump
|
1598
|
+
- resources/unicode_data/properties/Block/Georgian/value.dump
|
1599
|
+
- resources/unicode_data/properties/Block/Glagolitic/value.dump
|
1600
|
+
- resources/unicode_data/properties/Block/Gothic/value.dump
|
1601
|
+
- resources/unicode_data/properties/Block/Greek Extended/value.dump
|
1602
|
+
- resources/unicode_data/properties/Block/Greek and Coptic/value.dump
|
1603
|
+
- resources/unicode_data/properties/Block/Gujarati/value.dump
|
1604
|
+
- resources/unicode_data/properties/Block/Gurmukhi/value.dump
|
1605
|
+
- resources/unicode_data/properties/Block/Halfwidth and Fullwidth Forms/value.dump
|
1606
|
+
- resources/unicode_data/properties/Block/Hangul Compatibility Jamo/value.dump
|
1607
|
+
- resources/unicode_data/properties/Block/Hangul Jamo Extended-A/value.dump
|
1608
|
+
- resources/unicode_data/properties/Block/Hangul Jamo Extended-B/value.dump
|
1609
|
+
- resources/unicode_data/properties/Block/Hangul Jamo/value.dump
|
1610
|
+
- resources/unicode_data/properties/Block/Hangul Syllables/value.dump
|
1611
|
+
- resources/unicode_data/properties/Block/Hanunoo/value.dump
|
1612
|
+
- resources/unicode_data/properties/Block/Hebrew/value.dump
|
1613
|
+
- resources/unicode_data/properties/Block/High Private Use Surrogates/value.dump
|
1614
|
+
- resources/unicode_data/properties/Block/High Surrogates/value.dump
|
1615
|
+
- resources/unicode_data/properties/Block/Hiragana/value.dump
|
1616
|
+
- resources/unicode_data/properties/Block/IPA Extensions/value.dump
|
1617
|
+
- resources/unicode_data/properties/Block/Ideographic Description Characters/value.dump
|
1618
|
+
- resources/unicode_data/properties/Block/Imperial Aramaic/value.dump
|
1619
|
+
- resources/unicode_data/properties/Block/Inscriptional Pahlavi/value.dump
|
1620
|
+
- resources/unicode_data/properties/Block/Inscriptional Parthian/value.dump
|
1621
|
+
- resources/unicode_data/properties/Block/Javanese/value.dump
|
1622
|
+
- resources/unicode_data/properties/Block/Kaithi/value.dump
|
1623
|
+
- resources/unicode_data/properties/Block/Kana Supplement/value.dump
|
1624
|
+
- resources/unicode_data/properties/Block/Kanbun/value.dump
|
1625
|
+
- resources/unicode_data/properties/Block/Kangxi Radicals/value.dump
|
1626
|
+
- resources/unicode_data/properties/Block/Kannada/value.dump
|
1627
|
+
- resources/unicode_data/properties/Block/Katakana Phonetic Extensions/value.dump
|
1628
|
+
- resources/unicode_data/properties/Block/Katakana/value.dump
|
1629
|
+
- resources/unicode_data/properties/Block/Kayah Li/value.dump
|
1630
|
+
- resources/unicode_data/properties/Block/Kharoshthi/value.dump
|
1631
|
+
- resources/unicode_data/properties/Block/Khmer Symbols/value.dump
|
1632
|
+
- resources/unicode_data/properties/Block/Khmer/value.dump
|
1633
|
+
- resources/unicode_data/properties/Block/Lao/value.dump
|
1634
|
+
- resources/unicode_data/properties/Block/Latin Extended Additional/value.dump
|
1635
|
+
- resources/unicode_data/properties/Block/Latin Extended-A/value.dump
|
1636
|
+
- resources/unicode_data/properties/Block/Latin Extended-B/value.dump
|
1637
|
+
- resources/unicode_data/properties/Block/Latin Extended-C/value.dump
|
1638
|
+
- resources/unicode_data/properties/Block/Latin Extended-D/value.dump
|
1639
|
+
- resources/unicode_data/properties/Block/Latin-1 Supplement/value.dump
|
1640
|
+
- resources/unicode_data/properties/Block/Lepcha/value.dump
|
1641
|
+
- resources/unicode_data/properties/Block/Letterlike Symbols/value.dump
|
1642
|
+
- resources/unicode_data/properties/Block/Limbu/value.dump
|
1643
|
+
- resources/unicode_data/properties/Block/Linear B Ideograms/value.dump
|
1644
|
+
- resources/unicode_data/properties/Block/Linear B Syllabary/value.dump
|
1645
|
+
- resources/unicode_data/properties/Block/Lisu/value.dump
|
1646
|
+
- resources/unicode_data/properties/Block/Low Surrogates/value.dump
|
1647
|
+
- resources/unicode_data/properties/Block/Lycian/value.dump
|
1648
|
+
- resources/unicode_data/properties/Block/Lydian/value.dump
|
1649
|
+
- resources/unicode_data/properties/Block/Mahjong Tiles/value.dump
|
1650
|
+
- resources/unicode_data/properties/Block/Malayalam/value.dump
|
1651
|
+
- resources/unicode_data/properties/Block/Mandaic/value.dump
|
1652
|
+
- resources/unicode_data/properties/Block/Mathematical Alphanumeric Symbols/value.dump
|
1653
|
+
- resources/unicode_data/properties/Block/Mathematical Operators/value.dump
|
1654
|
+
- resources/unicode_data/properties/Block/Meetei Mayek Extensions/value.dump
|
1655
|
+
- resources/unicode_data/properties/Block/Meetei Mayek/value.dump
|
1656
|
+
- resources/unicode_data/properties/Block/Meroitic Cursive/value.dump
|
1657
|
+
- resources/unicode_data/properties/Block/Meroitic Hieroglyphs/value.dump
|
1658
|
+
- resources/unicode_data/properties/Block/Miao/value.dump
|
1659
|
+
- resources/unicode_data/properties/Block/Miscellaneous Mathematical Symbols-A/value.dump
|
1660
|
+
- resources/unicode_data/properties/Block/Miscellaneous Mathematical Symbols-B/value.dump
|
1661
|
+
- resources/unicode_data/properties/Block/Miscellaneous Symbols And Pictographs/value.dump
|
1662
|
+
- resources/unicode_data/properties/Block/Miscellaneous Symbols and Arrows/value.dump
|
1663
|
+
- resources/unicode_data/properties/Block/Miscellaneous Symbols/value.dump
|
1664
|
+
- resources/unicode_data/properties/Block/Miscellaneous Technical/value.dump
|
1665
|
+
- resources/unicode_data/properties/Block/Modifier Tone Letters/value.dump
|
1666
|
+
- resources/unicode_data/properties/Block/Mongolian/value.dump
|
1667
|
+
- resources/unicode_data/properties/Block/Musical Symbols/value.dump
|
1668
|
+
- resources/unicode_data/properties/Block/Myanmar Extended-A/value.dump
|
1669
|
+
- resources/unicode_data/properties/Block/Myanmar/value.dump
|
1670
|
+
- resources/unicode_data/properties/Block/NKo/value.dump
|
1671
|
+
- resources/unicode_data/properties/Block/New Tai Lue/value.dump
|
1672
|
+
- resources/unicode_data/properties/Block/Number Forms/value.dump
|
1673
|
+
- resources/unicode_data/properties/Block/Ogham/value.dump
|
1674
|
+
- resources/unicode_data/properties/Block/Ol Chiki/value.dump
|
1675
|
+
- resources/unicode_data/properties/Block/Old Italic/value.dump
|
1676
|
+
- resources/unicode_data/properties/Block/Old Persian/value.dump
|
1677
|
+
- resources/unicode_data/properties/Block/Old South Arabian/value.dump
|
1678
|
+
- resources/unicode_data/properties/Block/Old Turkic/value.dump
|
1679
|
+
- resources/unicode_data/properties/Block/Optical Character Recognition/value.dump
|
1680
|
+
- resources/unicode_data/properties/Block/Oriya/value.dump
|
1681
|
+
- resources/unicode_data/properties/Block/Osmanya/value.dump
|
1682
|
+
- resources/unicode_data/properties/Block/Phags-pa/value.dump
|
1683
|
+
- resources/unicode_data/properties/Block/Phaistos Disc/value.dump
|
1684
|
+
- resources/unicode_data/properties/Block/Phoenician/value.dump
|
1685
|
+
- resources/unicode_data/properties/Block/Phonetic Extensions Supplement/value.dump
|
1686
|
+
- resources/unicode_data/properties/Block/Phonetic Extensions/value.dump
|
1687
|
+
- resources/unicode_data/properties/Block/Playing Cards/value.dump
|
1688
|
+
- resources/unicode_data/properties/Block/Private Use Area/value.dump
|
1689
|
+
- resources/unicode_data/properties/Block/Rejang/value.dump
|
1690
|
+
- resources/unicode_data/properties/Block/Rumi Numeral Symbols/value.dump
|
1691
|
+
- resources/unicode_data/properties/Block/Runic/value.dump
|
1692
|
+
- resources/unicode_data/properties/Block/Samaritan/value.dump
|
1693
|
+
- resources/unicode_data/properties/Block/Saurashtra/value.dump
|
1694
|
+
- resources/unicode_data/properties/Block/Sharada/value.dump
|
1695
|
+
- resources/unicode_data/properties/Block/Shavian/value.dump
|
1696
|
+
- resources/unicode_data/properties/Block/Sinhala/value.dump
|
1697
|
+
- resources/unicode_data/properties/Block/Small Form Variants/value.dump
|
1698
|
+
- resources/unicode_data/properties/Block/Sora Sompeng/value.dump
|
1699
|
+
- resources/unicode_data/properties/Block/Spacing Modifier Letters/value.dump
|
1700
|
+
- resources/unicode_data/properties/Block/Specials/value.dump
|
1701
|
+
- resources/unicode_data/properties/Block/Sundanese Supplement/value.dump
|
1702
|
+
- resources/unicode_data/properties/Block/Sundanese/value.dump
|
1703
|
+
- resources/unicode_data/properties/Block/Superscripts and Subscripts/value.dump
|
1704
|
+
- resources/unicode_data/properties/Block/Supplemental Arrows-A/value.dump
|
1705
|
+
- resources/unicode_data/properties/Block/Supplemental Arrows-B/value.dump
|
1706
|
+
- resources/unicode_data/properties/Block/Supplemental Mathematical Operators/value.dump
|
1707
|
+
- resources/unicode_data/properties/Block/Supplemental Punctuation/value.dump
|
1708
|
+
- resources/unicode_data/properties/Block/Supplementary Private Use Area-A/value.dump
|
1709
|
+
- resources/unicode_data/properties/Block/Supplementary Private Use Area-B/value.dump
|
1710
|
+
- resources/unicode_data/properties/Block/Syloti Nagri/value.dump
|
1711
|
+
- resources/unicode_data/properties/Block/Syriac/value.dump
|
1712
|
+
- resources/unicode_data/properties/Block/Tagalog/value.dump
|
1713
|
+
- resources/unicode_data/properties/Block/Tagbanwa/value.dump
|
1714
|
+
- resources/unicode_data/properties/Block/Tags/value.dump
|
1715
|
+
- resources/unicode_data/properties/Block/Tai Le/value.dump
|
1716
|
+
- resources/unicode_data/properties/Block/Tai Tham/value.dump
|
1717
|
+
- resources/unicode_data/properties/Block/Tai Viet/value.dump
|
1718
|
+
- resources/unicode_data/properties/Block/Tai Xuan Jing Symbols/value.dump
|
1719
|
+
- resources/unicode_data/properties/Block/Takri/value.dump
|
1720
|
+
- resources/unicode_data/properties/Block/Tamil/value.dump
|
1721
|
+
- resources/unicode_data/properties/Block/Telugu/value.dump
|
1722
|
+
- resources/unicode_data/properties/Block/Thaana/value.dump
|
1723
|
+
- resources/unicode_data/properties/Block/Thai/value.dump
|
1724
|
+
- resources/unicode_data/properties/Block/Tibetan/value.dump
|
1725
|
+
- resources/unicode_data/properties/Block/Tifinagh/value.dump
|
1726
|
+
- resources/unicode_data/properties/Block/Transport And Map Symbols/value.dump
|
1727
|
+
- resources/unicode_data/properties/Block/Ugaritic/value.dump
|
1728
|
+
- resources/unicode_data/properties/Block/Unified Canadian Aboriginal Syllabics Extended/value.dump
|
1729
|
+
- resources/unicode_data/properties/Block/Unified Canadian Aboriginal Syllabics/value.dump
|
1730
|
+
- resources/unicode_data/properties/Block/Vai/value.dump
|
1731
|
+
- resources/unicode_data/properties/Block/Variation Selectors Supplement/value.dump
|
1732
|
+
- resources/unicode_data/properties/Block/Variation Selectors/value.dump
|
1733
|
+
- resources/unicode_data/properties/Block/Vedic Extensions/value.dump
|
1734
|
+
- resources/unicode_data/properties/Block/Vertical Forms/value.dump
|
1735
|
+
- resources/unicode_data/properties/Block/Yi Radicals/value.dump
|
1736
|
+
- resources/unicode_data/properties/Block/Yi Syllables/value.dump
|
1737
|
+
- resources/unicode_data/properties/Block/Yijing Hexagram Symbols/value.dump
|
1738
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/0/value.dump
|
1739
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/1/value.dump
|
1740
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/10/value.dump
|
1741
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/103/value.dump
|
1742
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/107/value.dump
|
1743
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/11/value.dump
|
1744
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/118/value.dump
|
1745
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/12/value.dump
|
1746
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/122/value.dump
|
1747
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/129/value.dump
|
1748
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/13/value.dump
|
1749
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/130/value.dump
|
1750
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/132/value.dump
|
1751
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/14/value.dump
|
1752
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/15/value.dump
|
1753
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/16/value.dump
|
1754
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/17/value.dump
|
1755
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/18/value.dump
|
1756
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/19/value.dump
|
1757
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/20/value.dump
|
1758
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/202/value.dump
|
1759
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/21/value.dump
|
1760
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/214/value.dump
|
1761
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/216/value.dump
|
1762
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/218/value.dump
|
1763
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/22/value.dump
|
1764
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/220/value.dump
|
1765
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/222/value.dump
|
1766
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/224/value.dump
|
1767
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/226/value.dump
|
1768
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/228/value.dump
|
1769
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/23/value.dump
|
1770
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/230/value.dump
|
1771
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/232/value.dump
|
1772
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/233/value.dump
|
1773
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/234/value.dump
|
1774
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/24/value.dump
|
1775
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/240/value.dump
|
1776
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/25/value.dump
|
1777
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/26/value.dump
|
1778
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/27/value.dump
|
1779
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/28/value.dump
|
1780
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/29/value.dump
|
1781
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/30/value.dump
|
1782
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/31/value.dump
|
1783
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/32/value.dump
|
1784
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/33/value.dump
|
1785
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/34/value.dump
|
1786
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/35/value.dump
|
1787
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/36/value.dump
|
1788
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/7/value.dump
|
1789
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/8/value.dump
|
1790
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/84/value.dump
|
1791
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/9/value.dump
|
1792
|
+
- resources/unicode_data/properties/Canonical_Combining_Class/91/value.dump
|
1793
|
+
- resources/unicode_data/properties/Case_Ignorable/value.dump
|
1794
|
+
- resources/unicode_data/properties/Cased/value.dump
|
1795
|
+
- resources/unicode_data/properties/Changes_When_Casefolded/value.dump
|
1796
|
+
- resources/unicode_data/properties/Changes_When_Casemapped/value.dump
|
1797
|
+
- resources/unicode_data/properties/Changes_When_Lowercased/value.dump
|
1798
|
+
- resources/unicode_data/properties/Changes_When_Titlecased/value.dump
|
1799
|
+
- resources/unicode_data/properties/Changes_When_Uppercased/value.dump
|
1800
|
+
- resources/unicode_data/properties/Dash/value.dump
|
1801
|
+
- resources/unicode_data/properties/Default_Ignorable_Code_Point/value.dump
|
1802
|
+
- resources/unicode_data/properties/Deprecated/value.dump
|
1803
|
+
- resources/unicode_data/properties/Diacritic/value.dump
|
1804
|
+
- resources/unicode_data/properties/East_Asian_Width/A/value.dump
|
1805
|
+
- resources/unicode_data/properties/East_Asian_Width/F/value.dump
|
1806
|
+
- resources/unicode_data/properties/East_Asian_Width/H/value.dump
|
1807
|
+
- resources/unicode_data/properties/East_Asian_Width/N/value.dump
|
1808
|
+
- resources/unicode_data/properties/East_Asian_Width/Na/value.dump
|
1809
|
+
- resources/unicode_data/properties/East_Asian_Width/W/value.dump
|
1810
|
+
- resources/unicode_data/properties/Extender/value.dump
|
1811
|
+
- resources/unicode_data/properties/General_Category/C/c/value.dump
|
1812
|
+
- resources/unicode_data/properties/General_Category/C/f/value.dump
|
1813
|
+
- resources/unicode_data/properties/General_Category/C/o/value.dump
|
1814
|
+
- resources/unicode_data/properties/General_Category/C/s/value.dump
|
1815
|
+
- resources/unicode_data/properties/General_Category/L/l/value.dump
|
1816
|
+
- resources/unicode_data/properties/General_Category/L/m/value.dump
|
1817
|
+
- resources/unicode_data/properties/General_Category/L/o/value.dump
|
1818
|
+
- resources/unicode_data/properties/General_Category/L/t/value.dump
|
1819
|
+
- resources/unicode_data/properties/General_Category/L/u/value.dump
|
1820
|
+
- resources/unicode_data/properties/General_Category/M/c/value.dump
|
1821
|
+
- resources/unicode_data/properties/General_Category/M/e/value.dump
|
1822
|
+
- resources/unicode_data/properties/General_Category/M/n/value.dump
|
1823
|
+
- resources/unicode_data/properties/General_Category/N/d/value.dump
|
1824
|
+
- resources/unicode_data/properties/General_Category/N/l/value.dump
|
1825
|
+
- resources/unicode_data/properties/General_Category/N/o/value.dump
|
1826
|
+
- resources/unicode_data/properties/General_Category/P/c/value.dump
|
1827
|
+
- resources/unicode_data/properties/General_Category/P/d/value.dump
|
1828
|
+
- resources/unicode_data/properties/General_Category/P/e/value.dump
|
1829
|
+
- resources/unicode_data/properties/General_Category/P/f/value.dump
|
1830
|
+
- resources/unicode_data/properties/General_Category/P/i/value.dump
|
1831
|
+
- resources/unicode_data/properties/General_Category/P/o/value.dump
|
1832
|
+
- resources/unicode_data/properties/General_Category/P/s/value.dump
|
1833
|
+
- resources/unicode_data/properties/General_Category/S/c/value.dump
|
1834
|
+
- resources/unicode_data/properties/General_Category/S/k/value.dump
|
1835
|
+
- resources/unicode_data/properties/General_Category/S/m/value.dump
|
1836
|
+
- resources/unicode_data/properties/General_Category/S/o/value.dump
|
1837
|
+
- resources/unicode_data/properties/General_Category/Z/l/value.dump
|
1838
|
+
- resources/unicode_data/properties/General_Category/Z/p/value.dump
|
1839
|
+
- resources/unicode_data/properties/General_Category/Z/s/value.dump
|
1840
|
+
- resources/unicode_data/properties/Grapheme_Base/value.dump
|
1841
|
+
- resources/unicode_data/properties/Grapheme_Cluster_Break/CR/value.dump
|
1842
|
+
- resources/unicode_data/properties/Grapheme_Cluster_Break/Control/value.dump
|
1843
|
+
- resources/unicode_data/properties/Grapheme_Cluster_Break/Extend/value.dump
|
1844
|
+
- resources/unicode_data/properties/Grapheme_Cluster_Break/L/value.dump
|
1845
|
+
- resources/unicode_data/properties/Grapheme_Cluster_Break/LF/value.dump
|
1846
|
+
- resources/unicode_data/properties/Grapheme_Cluster_Break/LV/value.dump
|
1847
|
+
- resources/unicode_data/properties/Grapheme_Cluster_Break/LVT/value.dump
|
1848
|
+
- resources/unicode_data/properties/Grapheme_Cluster_Break/Regional_Indicator/value.dump
|
1849
|
+
- resources/unicode_data/properties/Grapheme_Cluster_Break/SpacingMark/value.dump
|
1850
|
+
- resources/unicode_data/properties/Grapheme_Cluster_Break/T/value.dump
|
1851
|
+
- resources/unicode_data/properties/Grapheme_Cluster_Break/V/value.dump
|
1852
|
+
- resources/unicode_data/properties/Grapheme_Extend/value.dump
|
1853
|
+
- resources/unicode_data/properties/Grapheme_Link/value.dump
|
1854
|
+
- resources/unicode_data/properties/Hangul_Syllable_Type/L/value.dump
|
1855
|
+
- resources/unicode_data/properties/Hangul_Syllable_Type/LV/value.dump
|
1856
|
+
- resources/unicode_data/properties/Hangul_Syllable_Type/LVT/value.dump
|
1857
|
+
- resources/unicode_data/properties/Hangul_Syllable_Type/T/value.dump
|
1858
|
+
- resources/unicode_data/properties/Hangul_Syllable_Type/V/value.dump
|
1859
|
+
- resources/unicode_data/properties/Hex_Digit/value.dump
|
1860
|
+
- resources/unicode_data/properties/Hyphen/value.dump
|
1861
|
+
- resources/unicode_data/properties/IDS_Binary_Operator/value.dump
|
1862
|
+
- resources/unicode_data/properties/IDS_Trinary_Operator/value.dump
|
1863
|
+
- resources/unicode_data/properties/ID_Continue/value.dump
|
1864
|
+
- resources/unicode_data/properties/ID_Start/value.dump
|
1865
|
+
- resources/unicode_data/properties/Ideographic/value.dump
|
1866
|
+
- resources/unicode_data/properties/Indic_Positional_Category/Bottom/value.dump
|
1867
|
+
- resources/unicode_data/properties/Indic_Positional_Category/Bottom_And_Right/value.dump
|
1868
|
+
- resources/unicode_data/properties/Indic_Positional_Category/Invisible/value.dump
|
1869
|
+
- resources/unicode_data/properties/Indic_Positional_Category/Left/value.dump
|
1870
|
+
- resources/unicode_data/properties/Indic_Positional_Category/Left_And_Right/value.dump
|
1871
|
+
- resources/unicode_data/properties/Indic_Positional_Category/Overstruck/value.dump
|
1872
|
+
- resources/unicode_data/properties/Indic_Positional_Category/Right/value.dump
|
1873
|
+
- resources/unicode_data/properties/Indic_Positional_Category/Top/value.dump
|
1874
|
+
- resources/unicode_data/properties/Indic_Positional_Category/Top_And_Bottom/value.dump
|
1875
|
+
- resources/unicode_data/properties/Indic_Positional_Category/Top_And_Bottom_And_Right/value.dump
|
1876
|
+
- resources/unicode_data/properties/Indic_Positional_Category/Top_And_Left/value.dump
|
1877
|
+
- resources/unicode_data/properties/Indic_Positional_Category/Top_And_Left_And_Right/value.dump
|
1878
|
+
- resources/unicode_data/properties/Indic_Positional_Category/Top_And_Right/value.dump
|
1879
|
+
- resources/unicode_data/properties/Indic_Positional_Category/Visual_Order_Left/value.dump
|
1880
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Avagraha/value.dump
|
1881
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Bindu/value.dump
|
1882
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Consonant/value.dump
|
1883
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Dead/value.dump
|
1884
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Final/value.dump
|
1885
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Head_Letter/value.dump
|
1886
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Medial/value.dump
|
1887
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Placeholder/value.dump
|
1888
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Repha/value.dump
|
1889
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Subjoined/value.dump
|
1890
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Modifying_Letter/value.dump
|
1891
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Nukta/value.dump
|
1892
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Register_Shifter/value.dump
|
1893
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Tone_Letter/value.dump
|
1894
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Tone_Mark/value.dump
|
1895
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Virama/value.dump
|
1896
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Visarga/value.dump
|
1897
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Vowel/value.dump
|
1898
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Vowel_Dependent/value.dump
|
1899
|
+
- resources/unicode_data/properties/Indic_Syllabic_Category/Vowel_Independent/value.dump
|
1900
|
+
- resources/unicode_data/properties/Jamo_Short_Name/A/value.dump
|
1901
|
+
- resources/unicode_data/properties/Jamo_Short_Name/AE/value.dump
|
1902
|
+
- resources/unicode_data/properties/Jamo_Short_Name/B/value.dump
|
1903
|
+
- resources/unicode_data/properties/Jamo_Short_Name/BB/value.dump
|
1904
|
+
- resources/unicode_data/properties/Jamo_Short_Name/BS/value.dump
|
1905
|
+
- resources/unicode_data/properties/Jamo_Short_Name/C/value.dump
|
1906
|
+
- resources/unicode_data/properties/Jamo_Short_Name/D/value.dump
|
1907
|
+
- resources/unicode_data/properties/Jamo_Short_Name/DD/value.dump
|
1908
|
+
- resources/unicode_data/properties/Jamo_Short_Name/E/value.dump
|
1909
|
+
- resources/unicode_data/properties/Jamo_Short_Name/EO/value.dump
|
1910
|
+
- resources/unicode_data/properties/Jamo_Short_Name/EU/value.dump
|
1911
|
+
- resources/unicode_data/properties/Jamo_Short_Name/G/value.dump
|
1912
|
+
- resources/unicode_data/properties/Jamo_Short_Name/GG/value.dump
|
1913
|
+
- resources/unicode_data/properties/Jamo_Short_Name/GS/value.dump
|
1914
|
+
- resources/unicode_data/properties/Jamo_Short_Name/H/value.dump
|
1915
|
+
- resources/unicode_data/properties/Jamo_Short_Name/I/value.dump
|
1916
|
+
- resources/unicode_data/properties/Jamo_Short_Name/J/value.dump
|
1917
|
+
- resources/unicode_data/properties/Jamo_Short_Name/JJ/value.dump
|
1918
|
+
- resources/unicode_data/properties/Jamo_Short_Name/K/value.dump
|
1919
|
+
- resources/unicode_data/properties/Jamo_Short_Name/L/value.dump
|
1920
|
+
- resources/unicode_data/properties/Jamo_Short_Name/LB/value.dump
|
1921
|
+
- resources/unicode_data/properties/Jamo_Short_Name/LG/value.dump
|
1922
|
+
- resources/unicode_data/properties/Jamo_Short_Name/LH/value.dump
|
1923
|
+
- resources/unicode_data/properties/Jamo_Short_Name/LM/value.dump
|
1924
|
+
- resources/unicode_data/properties/Jamo_Short_Name/LP/value.dump
|
1925
|
+
- resources/unicode_data/properties/Jamo_Short_Name/LS/value.dump
|
1926
|
+
- resources/unicode_data/properties/Jamo_Short_Name/LT/value.dump
|
1927
|
+
- resources/unicode_data/properties/Jamo_Short_Name/M/value.dump
|
1928
|
+
- resources/unicode_data/properties/Jamo_Short_Name/N/value.dump
|
1929
|
+
- resources/unicode_data/properties/Jamo_Short_Name/NG/value.dump
|
1930
|
+
- resources/unicode_data/properties/Jamo_Short_Name/NH/value.dump
|
1931
|
+
- resources/unicode_data/properties/Jamo_Short_Name/NJ/value.dump
|
1932
|
+
- resources/unicode_data/properties/Jamo_Short_Name/O/value.dump
|
1933
|
+
- resources/unicode_data/properties/Jamo_Short_Name/OE/value.dump
|
1934
|
+
- resources/unicode_data/properties/Jamo_Short_Name/P/value.dump
|
1935
|
+
- resources/unicode_data/properties/Jamo_Short_Name/R/value.dump
|
1936
|
+
- resources/unicode_data/properties/Jamo_Short_Name/S/value.dump
|
1937
|
+
- resources/unicode_data/properties/Jamo_Short_Name/SS/value.dump
|
1938
|
+
- resources/unicode_data/properties/Jamo_Short_Name/T/value.dump
|
1939
|
+
- resources/unicode_data/properties/Jamo_Short_Name/U/value.dump
|
1940
|
+
- resources/unicode_data/properties/Jamo_Short_Name/WA/value.dump
|
1941
|
+
- resources/unicode_data/properties/Jamo_Short_Name/WAE/value.dump
|
1942
|
+
- resources/unicode_data/properties/Jamo_Short_Name/WE/value.dump
|
1943
|
+
- resources/unicode_data/properties/Jamo_Short_Name/WEO/value.dump
|
1944
|
+
- resources/unicode_data/properties/Jamo_Short_Name/WI/value.dump
|
1945
|
+
- resources/unicode_data/properties/Jamo_Short_Name/YA/value.dump
|
1946
|
+
- resources/unicode_data/properties/Jamo_Short_Name/YAE/value.dump
|
1947
|
+
- resources/unicode_data/properties/Jamo_Short_Name/YE/value.dump
|
1948
|
+
- resources/unicode_data/properties/Jamo_Short_Name/YEO/value.dump
|
1949
|
+
- resources/unicode_data/properties/Jamo_Short_Name/YI/value.dump
|
1950
|
+
- resources/unicode_data/properties/Jamo_Short_Name/YO/value.dump
|
1951
|
+
- resources/unicode_data/properties/Jamo_Short_Name/YU/value.dump
|
1952
|
+
- resources/unicode_data/properties/Jamo_Short_Name/value.dump
|
1953
|
+
- resources/unicode_data/properties/Join_Control/value.dump
|
1954
|
+
- resources/unicode_data/properties/Line_Break/AI/value.dump
|
1955
|
+
- resources/unicode_data/properties/Line_Break/AL/value.dump
|
1956
|
+
- resources/unicode_data/properties/Line_Break/B2/value.dump
|
1957
|
+
- resources/unicode_data/properties/Line_Break/BA/value.dump
|
1958
|
+
- resources/unicode_data/properties/Line_Break/BB/value.dump
|
1959
|
+
- resources/unicode_data/properties/Line_Break/BK/value.dump
|
1960
|
+
- resources/unicode_data/properties/Line_Break/CB/value.dump
|
1961
|
+
- resources/unicode_data/properties/Line_Break/CJ/value.dump
|
1962
|
+
- resources/unicode_data/properties/Line_Break/CL/value.dump
|
1963
|
+
- resources/unicode_data/properties/Line_Break/CM/value.dump
|
1964
|
+
- resources/unicode_data/properties/Line_Break/CP/value.dump
|
1965
|
+
- resources/unicode_data/properties/Line_Break/CR/value.dump
|
1966
|
+
- resources/unicode_data/properties/Line_Break/EX/value.dump
|
1967
|
+
- resources/unicode_data/properties/Line_Break/GL/value.dump
|
1968
|
+
- resources/unicode_data/properties/Line_Break/H2/value.dump
|
1969
|
+
- resources/unicode_data/properties/Line_Break/H3/value.dump
|
1970
|
+
- resources/unicode_data/properties/Line_Break/HL/value.dump
|
1971
|
+
- resources/unicode_data/properties/Line_Break/HY/value.dump
|
1972
|
+
- resources/unicode_data/properties/Line_Break/ID/value.dump
|
1973
|
+
- resources/unicode_data/properties/Line_Break/IN/value.dump
|
1974
|
+
- resources/unicode_data/properties/Line_Break/IS/value.dump
|
1975
|
+
- resources/unicode_data/properties/Line_Break/JL/value.dump
|
1976
|
+
- resources/unicode_data/properties/Line_Break/JT/value.dump
|
1977
|
+
- resources/unicode_data/properties/Line_Break/JV/value.dump
|
1978
|
+
- resources/unicode_data/properties/Line_Break/LF/value.dump
|
1979
|
+
- resources/unicode_data/properties/Line_Break/NL/value.dump
|
1980
|
+
- resources/unicode_data/properties/Line_Break/NS/value.dump
|
1981
|
+
- resources/unicode_data/properties/Line_Break/NU/value.dump
|
1982
|
+
- resources/unicode_data/properties/Line_Break/OP/value.dump
|
1983
|
+
- resources/unicode_data/properties/Line_Break/PO/value.dump
|
1984
|
+
- resources/unicode_data/properties/Line_Break/PR/value.dump
|
1985
|
+
- resources/unicode_data/properties/Line_Break/QU/value.dump
|
1986
|
+
- resources/unicode_data/properties/Line_Break/RI/value.dump
|
1987
|
+
- resources/unicode_data/properties/Line_Break/SA/value.dump
|
1988
|
+
- resources/unicode_data/properties/Line_Break/SG/value.dump
|
1989
|
+
- resources/unicode_data/properties/Line_Break/SP/value.dump
|
1990
|
+
- resources/unicode_data/properties/Line_Break/SY/value.dump
|
1991
|
+
- resources/unicode_data/properties/Line_Break/WJ/value.dump
|
1992
|
+
- resources/unicode_data/properties/Line_Break/XX/value.dump
|
1993
|
+
- resources/unicode_data/properties/Line_Break/ZW/value.dump
|
1994
|
+
- resources/unicode_data/properties/Logical_Order_Exception/value.dump
|
1995
|
+
- resources/unicode_data/properties/Lowercase/value.dump
|
1996
|
+
- resources/unicode_data/properties/Math/value.dump
|
1997
|
+
- resources/unicode_data/properties/Noncharacter_Code_Point/value.dump
|
1998
|
+
- resources/unicode_data/properties/Numeric_Type/0/value.dump
|
1999
|
+
- resources/unicode_data/properties/Numeric_Type/1/value.dump
|
2000
|
+
- resources/unicode_data/properties/Numeric_Type/2/value.dump
|
2001
|
+
- resources/unicode_data/properties/Numeric_Type/3/value.dump
|
2002
|
+
- resources/unicode_data/properties/Numeric_Type/4/value.dump
|
2003
|
+
- resources/unicode_data/properties/Numeric_Type/5/value.dump
|
2004
|
+
- resources/unicode_data/properties/Numeric_Type/6/value.dump
|
2005
|
+
- resources/unicode_data/properties/Numeric_Type/7/value.dump
|
2006
|
+
- resources/unicode_data/properties/Numeric_Type/8/value.dump
|
2007
|
+
- resources/unicode_data/properties/Numeric_Type/9/value.dump
|
2008
|
+
- resources/unicode_data/properties/Numeric_Type/value.dump
|
2009
|
+
- resources/unicode_data/properties/Other_Alphabetic/value.dump
|
2010
|
+
- resources/unicode_data/properties/Other_Default_Ignorable_Code_Point/value.dump
|
2011
|
+
- resources/unicode_data/properties/Other_Grapheme_Extend/value.dump
|
2012
|
+
- resources/unicode_data/properties/Other_ID_Continue/value.dump
|
2013
|
+
- resources/unicode_data/properties/Other_ID_Start/value.dump
|
2014
|
+
- resources/unicode_data/properties/Other_Lowercase/value.dump
|
2015
|
+
- resources/unicode_data/properties/Other_Math/value.dump
|
2016
|
+
- resources/unicode_data/properties/Other_Uppercase/value.dump
|
2017
|
+
- resources/unicode_data/properties/Pattern_Syntax/value.dump
|
2018
|
+
- resources/unicode_data/properties/Pattern_White_Space/value.dump
|
2019
|
+
- resources/unicode_data/properties/Quotation_Mark/value.dump
|
2020
|
+
- resources/unicode_data/properties/Radical/value.dump
|
2021
|
+
- resources/unicode_data/properties/STerm/value.dump
|
2022
|
+
- resources/unicode_data/properties/Script/Arabic/value.dump
|
2023
|
+
- resources/unicode_data/properties/Script/Armenian/value.dump
|
2024
|
+
- resources/unicode_data/properties/Script/Avestan/value.dump
|
2025
|
+
- resources/unicode_data/properties/Script/Balinese/value.dump
|
2026
|
+
- resources/unicode_data/properties/Script/Bamum/value.dump
|
2027
|
+
- resources/unicode_data/properties/Script/Batak/value.dump
|
2028
|
+
- resources/unicode_data/properties/Script/Bengali/value.dump
|
2029
|
+
- resources/unicode_data/properties/Script/Bopomofo/value.dump
|
2030
|
+
- resources/unicode_data/properties/Script/Brahmi/value.dump
|
2031
|
+
- resources/unicode_data/properties/Script/Braille/value.dump
|
2032
|
+
- resources/unicode_data/properties/Script/Buginese/value.dump
|
2033
|
+
- resources/unicode_data/properties/Script/Buhid/value.dump
|
2034
|
+
- resources/unicode_data/properties/Script/Canadian_Aboriginal/value.dump
|
2035
|
+
- resources/unicode_data/properties/Script/Carian/value.dump
|
2036
|
+
- resources/unicode_data/properties/Script/Chakma/value.dump
|
2037
|
+
- resources/unicode_data/properties/Script/Cham/value.dump
|
2038
|
+
- resources/unicode_data/properties/Script/Cherokee/value.dump
|
2039
|
+
- resources/unicode_data/properties/Script/Common/value.dump
|
2040
|
+
- resources/unicode_data/properties/Script/Coptic/value.dump
|
2041
|
+
- resources/unicode_data/properties/Script/Cuneiform/value.dump
|
2042
|
+
- resources/unicode_data/properties/Script/Cypriot/value.dump
|
2043
|
+
- resources/unicode_data/properties/Script/Cyrillic/value.dump
|
2044
|
+
- resources/unicode_data/properties/Script/Deseret/value.dump
|
2045
|
+
- resources/unicode_data/properties/Script/Devanagari/value.dump
|
2046
|
+
- resources/unicode_data/properties/Script/Egyptian_Hieroglyphs/value.dump
|
2047
|
+
- resources/unicode_data/properties/Script/Ethiopic/value.dump
|
2048
|
+
- resources/unicode_data/properties/Script/Georgian/value.dump
|
2049
|
+
- resources/unicode_data/properties/Script/Glagolitic/value.dump
|
2050
|
+
- resources/unicode_data/properties/Script/Gothic/value.dump
|
2051
|
+
- resources/unicode_data/properties/Script/Greek/value.dump
|
2052
|
+
- resources/unicode_data/properties/Script/Gujarati/value.dump
|
2053
|
+
- resources/unicode_data/properties/Script/Gurmukhi/value.dump
|
2054
|
+
- resources/unicode_data/properties/Script/Han/value.dump
|
2055
|
+
- resources/unicode_data/properties/Script/Hangul/value.dump
|
2056
|
+
- resources/unicode_data/properties/Script/Hanunoo/value.dump
|
2057
|
+
- resources/unicode_data/properties/Script/Hebrew/value.dump
|
2058
|
+
- resources/unicode_data/properties/Script/Hiragana/value.dump
|
2059
|
+
- resources/unicode_data/properties/Script/Imperial_Aramaic/value.dump
|
2060
|
+
- resources/unicode_data/properties/Script/Inherited/value.dump
|
2061
|
+
- resources/unicode_data/properties/Script/Inscriptional_Pahlavi/value.dump
|
2062
|
+
- resources/unicode_data/properties/Script/Inscriptional_Parthian/value.dump
|
2063
|
+
- resources/unicode_data/properties/Script/Javanese/value.dump
|
2064
|
+
- resources/unicode_data/properties/Script/Kaithi/value.dump
|
2065
|
+
- resources/unicode_data/properties/Script/Kannada/value.dump
|
2066
|
+
- resources/unicode_data/properties/Script/Katakana/value.dump
|
2067
|
+
- resources/unicode_data/properties/Script/Kayah_Li/value.dump
|
2068
|
+
- resources/unicode_data/properties/Script/Kharoshthi/value.dump
|
2069
|
+
- resources/unicode_data/properties/Script/Khmer/value.dump
|
2070
|
+
- resources/unicode_data/properties/Script/Lao/value.dump
|
2071
|
+
- resources/unicode_data/properties/Script/Latin/value.dump
|
2072
|
+
- resources/unicode_data/properties/Script/Lepcha/value.dump
|
2073
|
+
- resources/unicode_data/properties/Script/Limbu/value.dump
|
2074
|
+
- resources/unicode_data/properties/Script/Linear_B/value.dump
|
2075
|
+
- resources/unicode_data/properties/Script/Lisu/value.dump
|
2076
|
+
- resources/unicode_data/properties/Script/Lycian/value.dump
|
2077
|
+
- resources/unicode_data/properties/Script/Lydian/value.dump
|
2078
|
+
- resources/unicode_data/properties/Script/Malayalam/value.dump
|
2079
|
+
- resources/unicode_data/properties/Script/Mandaic/value.dump
|
2080
|
+
- resources/unicode_data/properties/Script/Meetei_Mayek/value.dump
|
2081
|
+
- resources/unicode_data/properties/Script/Meroitic_Cursive/value.dump
|
2082
|
+
- resources/unicode_data/properties/Script/Meroitic_Hieroglyphs/value.dump
|
2083
|
+
- resources/unicode_data/properties/Script/Miao/value.dump
|
2084
|
+
- resources/unicode_data/properties/Script/Mongolian/value.dump
|
2085
|
+
- resources/unicode_data/properties/Script/Myanmar/value.dump
|
2086
|
+
- resources/unicode_data/properties/Script/New_Tai_Lue/value.dump
|
2087
|
+
- resources/unicode_data/properties/Script/Nko/value.dump
|
2088
|
+
- resources/unicode_data/properties/Script/Ogham/value.dump
|
2089
|
+
- resources/unicode_data/properties/Script/Ol_Chiki/value.dump
|
2090
|
+
- resources/unicode_data/properties/Script/Old_Italic/value.dump
|
2091
|
+
- resources/unicode_data/properties/Script/Old_Persian/value.dump
|
2092
|
+
- resources/unicode_data/properties/Script/Old_South_Arabian/value.dump
|
2093
|
+
- resources/unicode_data/properties/Script/Old_Turkic/value.dump
|
2094
|
+
- resources/unicode_data/properties/Script/Oriya/value.dump
|
2095
|
+
- resources/unicode_data/properties/Script/Osmanya/value.dump
|
2096
|
+
- resources/unicode_data/properties/Script/Phags_Pa/value.dump
|
2097
|
+
- resources/unicode_data/properties/Script/Phoenician/value.dump
|
2098
|
+
- resources/unicode_data/properties/Script/Rejang/value.dump
|
2099
|
+
- resources/unicode_data/properties/Script/Runic/value.dump
|
2100
|
+
- resources/unicode_data/properties/Script/Samaritan/value.dump
|
2101
|
+
- resources/unicode_data/properties/Script/Saurashtra/value.dump
|
2102
|
+
- resources/unicode_data/properties/Script/Sharada/value.dump
|
2103
|
+
- resources/unicode_data/properties/Script/Shavian/value.dump
|
2104
|
+
- resources/unicode_data/properties/Script/Sinhala/value.dump
|
2105
|
+
- resources/unicode_data/properties/Script/Sora_Sompeng/value.dump
|
2106
|
+
- resources/unicode_data/properties/Script/Sundanese/value.dump
|
2107
|
+
- resources/unicode_data/properties/Script/Syloti_Nagri/value.dump
|
2108
|
+
- resources/unicode_data/properties/Script/Syriac/value.dump
|
2109
|
+
- resources/unicode_data/properties/Script/Tagalog/value.dump
|
2110
|
+
- resources/unicode_data/properties/Script/Tagbanwa/value.dump
|
2111
|
+
- resources/unicode_data/properties/Script/Tai_Le/value.dump
|
2112
|
+
- resources/unicode_data/properties/Script/Tai_Tham/value.dump
|
2113
|
+
- resources/unicode_data/properties/Script/Tai_Viet/value.dump
|
2114
|
+
- resources/unicode_data/properties/Script/Takri/value.dump
|
2115
|
+
- resources/unicode_data/properties/Script/Tamil/value.dump
|
2116
|
+
- resources/unicode_data/properties/Script/Telugu/value.dump
|
2117
|
+
- resources/unicode_data/properties/Script/Thaana/value.dump
|
2118
|
+
- resources/unicode_data/properties/Script/Thai/value.dump
|
2119
|
+
- resources/unicode_data/properties/Script/Tibetan/value.dump
|
2120
|
+
- resources/unicode_data/properties/Script/Tifinagh/value.dump
|
2121
|
+
- resources/unicode_data/properties/Script/Ugaritic/value.dump
|
2122
|
+
- resources/unicode_data/properties/Script/Vai/value.dump
|
2123
|
+
- resources/unicode_data/properties/Script/Yi/value.dump
|
2124
|
+
- resources/unicode_data/properties/Script_Extensions/Arab/value.dump
|
2125
|
+
- resources/unicode_data/properties/Script_Extensions/Armn/value.dump
|
2126
|
+
- resources/unicode_data/properties/Script_Extensions/Beng/value.dump
|
2127
|
+
- resources/unicode_data/properties/Script_Extensions/Bopo/value.dump
|
2128
|
+
- resources/unicode_data/properties/Script_Extensions/Bugi/value.dump
|
2129
|
+
- resources/unicode_data/properties/Script_Extensions/Buhd/value.dump
|
2130
|
+
- resources/unicode_data/properties/Script_Extensions/Cakm/value.dump
|
2131
|
+
- resources/unicode_data/properties/Script_Extensions/Cprt/value.dump
|
2132
|
+
- resources/unicode_data/properties/Script_Extensions/Cyrl/value.dump
|
2133
|
+
- resources/unicode_data/properties/Script_Extensions/Deva/value.dump
|
2134
|
+
- resources/unicode_data/properties/Script_Extensions/Geor/value.dump
|
2135
|
+
- resources/unicode_data/properties/Script_Extensions/Grek/value.dump
|
2136
|
+
- resources/unicode_data/properties/Script_Extensions/Gujr/value.dump
|
2137
|
+
- resources/unicode_data/properties/Script_Extensions/Guru/value.dump
|
2138
|
+
- resources/unicode_data/properties/Script_Extensions/Hang/value.dump
|
2139
|
+
- resources/unicode_data/properties/Script_Extensions/Hani/value.dump
|
2140
|
+
- resources/unicode_data/properties/Script_Extensions/Hano/value.dump
|
2141
|
+
- resources/unicode_data/properties/Script_Extensions/Hira/value.dump
|
2142
|
+
- resources/unicode_data/properties/Script_Extensions/Java/value.dump
|
2143
|
+
- resources/unicode_data/properties/Script_Extensions/Kana/value.dump
|
2144
|
+
- resources/unicode_data/properties/Script_Extensions/Kthi/value.dump
|
2145
|
+
- resources/unicode_data/properties/Script_Extensions/Latn/value.dump
|
2146
|
+
- resources/unicode_data/properties/Script_Extensions/Linb/value.dump
|
2147
|
+
- resources/unicode_data/properties/Script_Extensions/Mand/value.dump
|
2148
|
+
- resources/unicode_data/properties/Script_Extensions/Mong/value.dump
|
2149
|
+
- resources/unicode_data/properties/Script_Extensions/Mymr/value.dump
|
2150
|
+
- resources/unicode_data/properties/Script_Extensions/Orya/value.dump
|
2151
|
+
- resources/unicode_data/properties/Script_Extensions/Phag/value.dump
|
2152
|
+
- resources/unicode_data/properties/Script_Extensions/Sylo/value.dump
|
2153
|
+
- resources/unicode_data/properties/Script_Extensions/Syrc/value.dump
|
2154
|
+
- resources/unicode_data/properties/Script_Extensions/Tagb/value.dump
|
2155
|
+
- resources/unicode_data/properties/Script_Extensions/Takr/value.dump
|
2156
|
+
- resources/unicode_data/properties/Script_Extensions/Tale/value.dump
|
2157
|
+
- resources/unicode_data/properties/Script_Extensions/Tglg/value.dump
|
2158
|
+
- resources/unicode_data/properties/Script_Extensions/Thaa/value.dump
|
2159
|
+
- resources/unicode_data/properties/Script_Extensions/Yiii/value.dump
|
2160
|
+
- resources/unicode_data/properties/Sentence_Break/ATerm/value.dump
|
2161
|
+
- resources/unicode_data/properties/Sentence_Break/CR/value.dump
|
2162
|
+
- resources/unicode_data/properties/Sentence_Break/Close/value.dump
|
2163
|
+
- resources/unicode_data/properties/Sentence_Break/Extend/value.dump
|
2164
|
+
- resources/unicode_data/properties/Sentence_Break/Format/value.dump
|
2165
|
+
- resources/unicode_data/properties/Sentence_Break/LF/value.dump
|
2166
|
+
- resources/unicode_data/properties/Sentence_Break/Lower/value.dump
|
2167
|
+
- resources/unicode_data/properties/Sentence_Break/Numeric/value.dump
|
2168
|
+
- resources/unicode_data/properties/Sentence_Break/OLetter/value.dump
|
2169
|
+
- resources/unicode_data/properties/Sentence_Break/SContinue/value.dump
|
2170
|
+
- resources/unicode_data/properties/Sentence_Break/STerm/value.dump
|
2171
|
+
- resources/unicode_data/properties/Sentence_Break/Sep/value.dump
|
2172
|
+
- resources/unicode_data/properties/Sentence_Break/Sp/value.dump
|
2173
|
+
- resources/unicode_data/properties/Sentence_Break/Upper/value.dump
|
2174
|
+
- resources/unicode_data/properties/Soft_Dotted/value.dump
|
2175
|
+
- resources/unicode_data/properties/Terminal_Punctuation/value.dump
|
2176
|
+
- resources/unicode_data/properties/Unified_Ideograph/value.dump
|
2177
|
+
- resources/unicode_data/properties/Uppercase/value.dump
|
2178
|
+
- resources/unicode_data/properties/Variation_Selector/value.dump
|
2179
|
+
- resources/unicode_data/properties/White_Space/value.dump
|
2180
|
+
- resources/unicode_data/properties/Word_Break/ALetter/value.dump
|
2181
|
+
- resources/unicode_data/properties/Word_Break/CR/value.dump
|
2182
|
+
- resources/unicode_data/properties/Word_Break/Double_Quote/value.dump
|
2183
|
+
- resources/unicode_data/properties/Word_Break/Extend/value.dump
|
2184
|
+
- resources/unicode_data/properties/Word_Break/ExtendNumLet/value.dump
|
2185
|
+
- resources/unicode_data/properties/Word_Break/Format/value.dump
|
2186
|
+
- resources/unicode_data/properties/Word_Break/Hebrew_Letter/value.dump
|
2187
|
+
- resources/unicode_data/properties/Word_Break/Katakana/value.dump
|
2188
|
+
- resources/unicode_data/properties/Word_Break/LF/value.dump
|
2189
|
+
- resources/unicode_data/properties/Word_Break/MidLetter/value.dump
|
2190
|
+
- resources/unicode_data/properties/Word_Break/MidNum/value.dump
|
2191
|
+
- resources/unicode_data/properties/Word_Break/MidNumLet/value.dump
|
2192
|
+
- resources/unicode_data/properties/Word_Break/Newline/value.dump
|
2193
|
+
- resources/unicode_data/properties/Word_Break/Numeric/value.dump
|
2194
|
+
- resources/unicode_data/properties/Word_Break/Regional_Indicator/value.dump
|
2195
|
+
- resources/unicode_data/properties/Word_Break/Single_Quote/value.dump
|
2196
|
+
- resources/unicode_data/properties/XID_Continue/value.dump
|
2197
|
+
- resources/unicode_data/properties/XID_Start/value.dump
|
2198
|
+
- resources/unicode_data/property_aliases.yml
|
2199
|
+
- resources/unicode_data/property_value_aliases.yml
|
1406
2200
|
- spec/bidi/bidi_spec.rb
|
1407
2201
|
- spec/bidi/classpath_bidi_test.txt
|
1408
2202
|
- spec/collation/CollationTest_CLDR_NON_IGNORABLE_Short.txt
|
@@ -1551,7 +2345,6 @@ files:
|
|
1551
2345
|
- spec/normalization_spec.rb
|
1552
2346
|
- spec/parsers/number_parser_spec.rb
|
1553
2347
|
- spec/parsers/parser_spec.rb
|
1554
|
-
- spec/parsers/segmentation_parser_spec.rb
|
1555
2348
|
- spec/parsers/symbol_table_spec.rb
|
1556
2349
|
- spec/parsers/unicode_regex/character_class_spec.rb
|
1557
2350
|
- spec/parsers/unicode_regex/character_range_spec.rb
|
@@ -1561,20 +2354,30 @@ files:
|
|
1561
2354
|
- spec/parsers/unicode_regex_parser_spec.rb
|
1562
2355
|
- spec/readme_spec.rb
|
1563
2356
|
- spec/resources/loader_spec.rb
|
1564
|
-
- spec/
|
2357
|
+
- spec/segmentation/break_iterator_spec.rb
|
2358
|
+
- spec/segmentation/parser_spec.rb
|
2359
|
+
- spec/segmentation/rule_set_spec.rb
|
1565
2360
|
- spec/shared/calendar_spec.rb
|
1566
2361
|
- spec/shared/casefolder_spec.rb
|
1567
2362
|
- spec/shared/casefolding.txt
|
1568
2363
|
- spec/shared/casefolding_expected.txt
|
2364
|
+
- spec/shared/caser_spec.rb
|
1569
2365
|
- spec/shared/code_point_spec.rb
|
1570
2366
|
- spec/shared/currencies_spec.rb
|
1571
2367
|
- spec/shared/language_codes_spec.rb
|
1572
2368
|
- spec/shared/languages_spec.rb
|
2369
|
+
- spec/shared/likely_subtags_spec.rb
|
2370
|
+
- spec/shared/locale_spec.rb
|
1573
2371
|
- spec/shared/numbering_system_spec.rb
|
1574
2372
|
- spec/shared/numbers_spec.rb
|
1575
2373
|
- spec/shared/phone_codes_spec.rb
|
1576
2374
|
- spec/shared/postal_code_generator_spec.rb
|
1577
2375
|
- spec/shared/postal_codes_spec.rb
|
2376
|
+
- spec/shared/properties_database_spec.rb
|
2377
|
+
- spec/shared/property_name_aliases_spec.rb
|
2378
|
+
- spec/shared/property_normalizer_spec.rb
|
2379
|
+
- spec/shared/property_set_spec.rb
|
2380
|
+
- spec/shared/property_value_aliases_spec.rb
|
1578
2381
|
- spec/shared/territories_containment_spec.rb
|
1579
2382
|
- spec/shared/territories_spec.rb
|
1580
2383
|
- spec/shared/territory_spec.rb
|
@@ -1586,14 +2389,15 @@ files:
|
|
1586
2389
|
- spec/tokenizers/calendars/timespan_tokenizer_spec.rb
|
1587
2390
|
- spec/tokenizers/composite_token_spec.rb
|
1588
2391
|
- spec/tokenizers/numbers/number_tokenizer_spec.rb
|
1589
|
-
- spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb
|
1590
2392
|
- spec/tokenizers/token_spec.rb
|
1591
2393
|
- spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb
|
1592
2394
|
- spec/twitter_cldr_spec.rb
|
1593
2395
|
- spec/utils/code_points_spec.rb
|
2396
|
+
- spec/utils/file_system_trie_spec.rb
|
1594
2397
|
- spec/utils/range_set_spec.rb
|
1595
2398
|
- spec/utils/regexp_ast_spec.rb
|
1596
2399
|
- spec/utils/regexp_sampler_spec.rb
|
2400
|
+
- spec/utils/script_detector_spec.rb
|
1597
2401
|
- spec/utils/yaml/t.gif
|
1598
2402
|
- spec/utils/yaml/t.yaml
|
1599
2403
|
- spec/utils/yaml/yaml_spec.rb
|
@@ -1618,7 +2422,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1618
2422
|
version: '0'
|
1619
2423
|
requirements: []
|
1620
2424
|
rubyforge_project:
|
1621
|
-
rubygems_version: 2.
|
2425
|
+
rubygems_version: 2.2.3
|
1622
2426
|
signing_key:
|
1623
2427
|
specification_version: 4
|
1624
2428
|
summary: Ruby implementation of the ICU (International Components for Unicode) that
|