summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2022-04-17 15:00:08 +0200
committerKarl Williamson <khw@cpan.org>2022-04-19 05:41:19 -0600
commiteda35008b17e739922da4577bba648b73b8fbefc (patch)
tree78f8b57ed7d4761f1c41f09d6598de0824cedce3
parent44a605b000708fc84ba34c075bc6ba3bb6a3d36d (diff)
downloadperl-eda35008b17e739922da4577bba648b73b8fbefc.tar.gz
regen/mph.pl & mk_invlists.pl - add the "_squeeze" algorithm to produce smaller blobs
The squeeze algorithm produces smaller blobs, 10-20% depending on how it is used. With the "randomize_squeeze" option enabled it is slower but produces 20% smaller blobs than the "_simple" strategy we used to use. With the "randomize_squeeze" option disabled it is about as fast as "_simple" but produces about 10% smaller blobs. Regardless "_squeeze" uses more memory than _simple; quite a bit more currently, although that is unforced and could be changed if required. -blob length: 10548 +blob length: 8635 ... -data size: 69908 (%67.07) +data size: 67995 (%65.23) So it saves 1913 bytes running with this seed. I happened to get lucky with the seed, depending on the seed used the blob ended up about 8650 bytes. This algorithm is originally by Ilya Sashcheka, so I have added him to the AUTHORS file, but unfortunately I no longer have his email address as we lost touch. It contains many modifications by me.
-rw-r--r--AUTHORS1
-rw-r--r--charclass_invlists.h2
-rw-r--r--lib/unicore/uni_keywords.pl2
-rw-r--r--regen/mk_invlists.pl6
-rw-r--r--regen/mph.pl371
-rw-r--r--uni_keywords.h15148
6 files changed, 7936 insertions, 7594 deletions
diff --git a/AUTHORS b/AUTHORS
index e7edded2a7..a341e09368 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -574,6 +574,7 @@ Ilmari Karonen <iltzu@sci.fi>
Ilya Martynov <ilya@martynov.org>
Ilya N. Golubev <gin@mo.msk.ru>
Ilya Sandler <Ilya.Sandler@etak.com>
+Ilya Sashcheka
Ilya Zakharevich <ilya@math.berkeley.edu>
Inaba Hiroto <inaba@st.rim.or.jp>
Indy Singh <indy@nusphere.com>
diff --git a/charclass_invlists.h b/charclass_invlists.h
index 73447dc032..2aa27f3b79 100644
--- a/charclass_invlists.h
+++ b/charclass_invlists.h
@@ -430755,5 +430755,5 @@ static const U8 WB_table[23][23] = {
* c72bbdeda99714db1c8024d3311da4aef3c0db3b9b9f11455a7cfe10d5e9aba3 lib/unicore/version
* 0a6b5ab33bb1026531f816efe81aea1a8ffcd34a27cbea37dd6a70a63d73c844 regen/charset_translations.pl
* 5f8520d3a17ade6317fc0c423f5091470924b1ef425bca0c41ce8e4a9f8460fe regen/mk_PL_charclass.pl
- * 9c08a09afbb28779be92ff658e0d27e654be4570241048689e2ffc20437a3d91 regen/mk_invlists.pl
+ * 1c73795f9150bd556573e7ae982789377289e22b6a7f3db0a05c36852e8d749f regen/mk_invlists.pl
* ex: set ro: */
diff --git a/lib/unicore/uni_keywords.pl b/lib/unicore/uni_keywords.pl
index 4360373914..1a17d18c03 100644
--- a/lib/unicore/uni_keywords.pl
+++ b/lib/unicore/uni_keywords.pl
@@ -1323,5 +1323,5 @@
# c72bbdeda99714db1c8024d3311da4aef3c0db3b9b9f11455a7cfe10d5e9aba3 lib/unicore/version
# 0a6b5ab33bb1026531f816efe81aea1a8ffcd34a27cbea37dd6a70a63d73c844 regen/charset_translations.pl
# 5f8520d3a17ade6317fc0c423f5091470924b1ef425bca0c41ce8e4a9f8460fe regen/mk_PL_charclass.pl
-# 9c08a09afbb28779be92ff658e0d27e654be4570241048689e2ffc20437a3d91 regen/mk_invlists.pl
+# 1c73795f9150bd556573e7ae982789377289e22b6a7f3db0a05c36852e8d749f regen/mk_invlists.pl
# ex: set ro:
diff --git a/regen/mk_invlists.pl b/regen/mk_invlists.pl
index c2e7535ceb..12b9ce2344 100644
--- a/regen/mk_invlists.pl
+++ b/regen/mk_invlists.pl
@@ -3370,6 +3370,12 @@ print $keywords_fh "\n#if defined(PERL_CORE) || defined(PERL_EXT_RE_BUILD)\n\n";
my $mph= MinimalPerfectHash->new(
source_hash => \%keywords,
match_name => "match_uniprop",
+ simple_split => $ENV{SIMPLE_SPLIT} // 0,
+ randomize_squeeze => $ENV{RANDOMIZE_SQUEEZE} // 1,
+ max_same_in_squeeze => $ENV{MAX_SAME} // 5,
+ srand_seed => (lc($ENV{SRAND_SEED}//"") eq "auto")
+ ? undef
+ : $ENV{SRAND_SEED} // 1785235451, # I let perl pick a number
);
$mph->make_mph_with_split_keys();
print $keywords_fh $mph->make_algo();
diff --git a/regen/mph.pl b/regen/mph.pl
index 29e65b55d9..88b36e4967 100644
--- a/regen/mph.pl
+++ b/regen/mph.pl
@@ -4,6 +4,7 @@ use warnings;
use Data::Dumper;
use Carp;
use Text::Wrap;
+use List::Util qw(shuffle min);
use warnings 'FATAL' => 'all';
@@ -25,6 +26,7 @@ use constant {
U8_MAX => 0xFF,
U16_MAX => 0xFFFF,
U32_MAX => 0xFFFFFFFF,
+ INF => 1e9,
};
our $DEBUG= $ENV{DEBUG} || 0; # our so we can use local on it
@@ -58,6 +60,33 @@ sub new {
$self{table_name} ||= $base_name . "_table";
$self{match_name} ||= $base_name . "_match";
+ my $split_strategy;
+ $self{simple_split} //= 0;
+ if ($self{simple_split}) {
+ $self{split_strategy}= "simple";
+ $self{randomize_squeeze}= 0;
+ }
+ else {
+ $self{split_strategy}= "squeeze";
+ $self{randomize_squeeze} //= 1;
+ }
+ if ($self{randomize_squeeze}) {
+ $self{max_same_in_squeeze} //= 5;
+ if (defined $self{srand_seed_was}) {
+ $self{srand_seed}= delete $self{srand_seed_was};
+ }
+ elsif (!defined $self{srand_seed}) {
+ $self{srand_seed}= srand();
+ }
+ else {
+ srand($self{srand_seed});
+ }
+ print "SRAND_SEED= $self{srand_seed}\n" if $DEBUG;
+ }
+ else {
+ $self{max_same}= 3;
+ delete $self{srand_seed};
+ }
return bless \%self, $class;
}
@@ -520,8 +549,324 @@ sub _build_split_words_simple {
return ($blob, $res, $length_all_keys);
}
+# Find all the positions where $word can be found in $$buf_ref,
+# including overlapping positions. The data is cached into the
+# $offsets_hash. Used by the _squeeze algorithm.
+sub _get_offsets {
+ my ($offsets_hash, $buf_ref, $word)= @_;
+ return $offsets_hash->{$word}
+ if defined $offsets_hash->{$word};
+
+ my @offsets;
+ my $from= 0;
+
+ while (1) {
+ my $i= index($$buf_ref, $word, $from);
+ last if $i == -1;
+ push @offsets, $i;
+ $from= $i + 1;
+ }
-sub build_split_words {
+ $offsets_hash->{$word}= \@offsets;
+ return \@offsets;
+}
+
+# Increments the popularity data for the characters at
+# $ofs .. $ofs + $len - 1 by $diff. Used by the _squeeze algorithm
+sub _inc_popularity {
+ my ($popularity, $ofs, $len, $diff)= @_;
+ for my $idx ($ofs .. $ofs + $len - 1) {
+ $popularity->[$idx] += $diff;
+ }
+}
+
+# Returns a summary hash about the popularity of the characters
+# $ofs .. $ofs + $len - 1. Used by the _squeeze algorithm
+sub _get_popularity {
+ my ($popularity, $ofs, $len)= @_;
+ my $res= {
+ reused_digits => 0,
+ popularity => 0,
+ };
+ my $min_pop= undef;
+ for my $idx ($ofs .. $ofs + $len - 1) {
+ if ($popularity->[$idx] >= INF) {
+ $res->{reused_digits}++;
+ }
+ else {
+ my $pop= $popularity->[$idx];
+ if (!defined $min_pop || $pop < $min_pop) {
+ $min_pop= $pop;
+ }
+ }
+ }
+ $res->{popularity}= $min_pop // 0;
+ return $res;
+}
+
+# Merge the popularity data produced by _get_popularity() for the prefix
+# and suffix of a word together. Used by the _squeeze algorithm
+sub _merge_score {
+ my ($s1, $s2)= @_;
+ return +{
+ reused_digits => $s1->{reused_digits} + $s2->{reused_digits},
+ popularity => min($s1->{popularity}, $s2->{popularity}),
+ };
+}
+
+# Initialize the popularity and offsets data for a word.
+# Used by the _squeeze algorithm
+sub _init_popularity {
+ my ($offsets_hash, $popularity, $buf_ref, $word, $diff)= @_;
+ my $offsets= _get_offsets($offsets_hash, $buf_ref, $word);
+ my $len= length $word;
+ for my $ofs (@$offsets) {
+ for my $idx ($ofs .. $ofs + $len - 1) {
+ $popularity->[$idx] += $diff;
+ }
+ }
+}
+
+# Compare the popularity data for two possible candidates
+# for solving a given word. Used by the _squeeze algorithm
+sub _compare_score {
+ my ($s1, $s2)= @_;
+ if ($s1->{reused_digits} != $s2->{reused_digits}) {
+ return $s1->{reused_digits} <=> $s2->{reused_digits};
+ }
+ return $s1->{popularity} <=> $s2->{popularity};
+}
+
+# Find the most popular offset for a word in $$buf_ref.
+# Used by the _squeeze algorithm
+sub _most_popular_offset {
+ my ($offsets_hash, $popularity, $buf_ref, $word)= @_;
+ my $best_score= {
+ reused_digits => -1,
+ popularity => -1,
+ };
+ my $best_pos= -1;
+ my $offsets_ary= _get_offsets($offsets_hash, $buf_ref, $word);
+ my $wlen= length $word;
+ for my $i (@$offsets_ary) {
+ my $score= _get_popularity($popularity, $i, $wlen);
+ if (_compare_score($score, $best_score) > 0) {
+ $best_score= $score;
+ $best_pos= $i;
+ if ($best_score->{reused_digits} == $wlen) {
+ last;
+ }
+ }
+ }
+ return +{
+ position => $best_pos,
+ score => $best_score,
+ };
+}
+
+# The _squeeze algorithm. Attempt to squeeze out unused characters from
+# a buffer of split words. If there are multiple places where a given
+# prefix or suffix can be found and the overall split decisions can be
+# reorganized so some of them are never used it removes the ones that
+# are not used.
+sub _squeeze {
+ my ($words, $word_count, $splits, $buf_ref)= @_;
+ print "Squeezing...\n" if $DEBUG;
+ my %offsets_hash;
+ my %split_points;
+ my $n= length $$buf_ref;
+ my @popularity= 0 x $n;
+
+ for my $word (sort keys %$word_count) {
+ my $count= $word_count->{$word};
+ _init_popularity(\%offsets_hash, \@popularity, $buf_ref, $word,
+ $count / length($word));
+ }
+
+ WORD:
+ for my $word (@$words) {
+ my $best_pos1= -1;
+ my $best_pos2= -1;
+ my $best_score= {
+ reused_digits => -1,
+ popularity => -1,
+ };
+ my $best_split;
+
+ my $cand=
+ _most_popular_offset(\%offsets_hash, \@popularity, $buf_ref, $word);
+ if ($cand->{position} != -1) {
+ my $cand_score= $cand->{score};
+ if ($cand_score->{reused_digits} == length($word)) {
+ $split_points{$word}= 0;
+ next WORD;
+ }
+ elsif (_compare_score($cand_score, $best_score) > 0) {
+ $best_score= $cand_score;
+ $best_pos1= $cand->{position};
+ $best_pos2= -1;
+ $best_split= undef;
+ }
+ }
+
+ for my $split (@{ $splits->{$word} }) {
+ my $cand2=
+ _most_popular_offset(\%offsets_hash, \@popularity, $buf_ref,
+ $split->{w2});
+ next if $cand2->{position} == -1;
+
+ my $cand1=
+ _most_popular_offset(\%offsets_hash, \@popularity, $buf_ref,
+ $split->{w1});
+ next if $cand1->{position} == -1;
+
+ my $cand_score= _merge_score($cand1->{score}, $cand2->{score});
+
+ if ($cand_score->{reused_digits} == length($word)) {
+ $split_points{$word}= $split->{split_point};
+ next WORD;
+ }
+ if (_compare_score($cand_score, $best_score) > 0) {
+ $best_score= $cand_score;
+ $best_pos1= $cand1->{position};
+ $best_pos2= $cand2->{position};
+ $best_split= $split;
+ }
+ }
+
+ # apply high pop to used characters of the champion
+ if (defined $best_split) {
+ _inc_popularity(\@popularity, $best_pos1,
+ length($best_split->{w1}), INF);
+ _inc_popularity(\@popularity, $best_pos2,
+ length($best_split->{w2}), INF);
+ $split_points{$word}= $best_split->{split_point};
+ }
+ else {
+ _inc_popularity(\@popularity, $best_pos1, length($word), INF);
+ $split_points{$word}= 0;
+ }
+ }
+
+ my $res= "";
+ my @chars= split '', $$buf_ref;
+ for my $i (0 .. $n - 1) {
+ if ($popularity[$i] >= INF) {
+ $res .= $chars[$i];
+ }
+ }
+ printf "%d -> %d\n", $n, length($res) if $DEBUG;
+
+ # This algorithm chooses to "split" full strings at 0, so that the
+ # prefix is empty and the suffix contains the full key, but the
+ # minimal perfect hash logic wants it the other way around, as we do
+ # the prefix check first. so we correct it at the end here.
+ $split_points{$_} ||= length($_) for keys %split_points;
+
+ return ($res, \%split_points);
+}
+
+# compute an initial covering buffer for a set of words,
+# including split data.
+sub _initial_covering_buf {
+ my ($words, $splits)= @_;
+ my $res= "";
+ WORD:
+ for my $word (@$words) {
+ if (index($res, $word) != -1) {
+ next WORD;
+ }
+ else {
+ for my $split (@{ $splits->{$word} }) {
+ if ( index($res, $split->{w1}) != -1
+ && index($res, $split->{w2}) != -1)
+ {
+ next WORD;
+ }
+ }
+ }
+ $res .= $word;
+ }
+ return $res;
+}
+
+sub build_split_words_squeeze {
+ my ($self)= @_;
+
+ my $hash= $self->{source_hash};
+ my $length_all_keys= $self->{length_all_keys};
+ my $randomize= $self->{randomize_squeeze};
+ my $max_same= $self->{max_same_in_squeeze};
+
+ my @words= sort keys %$hash;
+ my %splits;
+ my $split_points;
+
+ for my $word (@words) {
+ my $word_splits= [];
+ my $wlen= length $word;
+ for my $i (1 .. $wlen - 1) {
+ ##!
+ push @$word_splits,
+ +{
+ w1 => substr($word, 0, $i),
+ w2 => substr($word, $i),
+ split_point => $i,
+ };
+ ##.
+ }
+ $splits{$word}= $word_splits;
+ }
+
+ my %word_count;
+ for my $word (@words) {
+ $word_count{$word}++;
+ for my $split (@{ $splits{$word} }) {
+ $word_count{ $split->{w1} }++;
+ $word_count{ $split->{w2} }++;
+ }
+ }
+
+ @words= sort { length($a) <=> length($b) || $a cmp $b } @words;
+ my $buf= _initial_covering_buf(\@words, \%splits);
+
+ printf "Pre squeeze buffer: %s\n", $buf if $DEBUG > 1;
+ printf "Pre squeeze length: %d\n", length $buf if $DEBUG;
+
+ my $same= 0;
+ my $counter= 0;
+ my $reverse_under= 2;
+ while ($same < $max_same) {
+ my ($new_buf, $new_split_points)=
+ _squeeze(\@words, \%word_count, \%splits, \$buf);
+ if (!$split_points or length($new_buf) < length($buf)) {
+ $buf= $new_buf;
+ $split_points= $new_split_points;
+ $same= 0;
+ }
+ else {
+ if ($same < $reverse_under or !$randomize) {
+ print "reversing words....\n" if $DEBUG;
+ @words= reverse @words;
+ }
+ else {
+ print "shuffling words....\n" if $DEBUG;
+ @words= shuffle @words;
+ $reverse_under= 1;
+ }
+ $same++;
+ }
+ }
+
+ printf "Final length: %d\n", length($buf) if $DEBUG;
+
+ $self->{blob}= $buf;
+ $self->{split_points}= $split_points;
+
+ return $buf, $split_points;
+}
+
+sub build_split_words_simple {
my ($self)= @_;
my $hash= $self->{source_hash};
@@ -551,6 +896,21 @@ sub build_split_words {
return $blob, $split_points;
}
+sub build_split_words {
+ my ($self)= @_;
+
+ # The _simple algorithm does not compress nearly as well as the
+ # _squeeze algorithm, although it uses less memory and will likely
+ # be faster, especially if randomization is enabled. The default
+ # is to use _squeeze as our hash is not that large (~8k keys).
+
+ if ($self->{simple_split}) {
+ return $self->build_split_words_simple();
+ }
+
+ return $self->build_split_words_squeeze();
+}
+
sub blob_as_code {
my ($self)= @_;
my $blob= $self->{blob};
@@ -634,12 +994,12 @@ sub make_algo {
my (
$second_level, $seed1, $length_all_keys, $blob,
$rows_array, $blob_name, $struct_name, $table_name,
- $match_name, $prefix,
- )
+ $match_name, $prefix, $split_strategy, $srand_seed,
+ )
= @{$self}{ qw(
second_level seed1 length_all_keys blob
rows_array blob_name struct_name table_name
- match_name prefix
+ match_name prefix split_strategy srand_seed
) };
my $n= 0 + @$second_level;
@@ -648,6 +1008,9 @@ sub make_algo {
my @code= "#define ${prefix}_VALt I16\n\n";
push @code, "/*\n";
push @code, sprintf "generator script: %s\n", $0;
+ push @code, sprintf "split strategy: %s\n", $split_strategy;
+ push @code, sprintf "srand: %d\n", $srand_seed
+ if defined $srand_seed;
push @code, sprintf "rows: %s\n", $n;
push @code, sprintf "seed: %s\n", $seed1;
push @code, sprintf "full length of keys: %d\n", $length_all_keys;
diff --git a/uni_keywords.h b/uni_keywords.h
index 6f17dccfe6..0e50990a9a 100644
--- a/uni_keywords.h
+++ b/uni_keywords.h
@@ -11,179 +11,151 @@
/*
generator script: regen/mk_invlists.pl
+split strategy: squeeze
+srand: 1785235451
rows: 7420
seed: 1348825710
full length of keys: 104237
-blob length: 10548
+blob length: 8635
ref length: 59360
-data size: 69908 (%67.07)
+data size: 67995 (%65.23)
*/
STATIC const unsigned char mph_blob[] =
- "unifiedcanadianaboriginalsyllabicsextendedacjkcompatibilityideogr"
- "aphssupplementarabicmathematicalalphabeticsymbolscombiningdiacrit"
- "icalmarksforsymbolscombiningdiacriticalmarkssupplementmiscellaneo"
- "ussymbolsandpictographs_perl_problematic_locale_foldeds_combining"
- "diacriticalmarksextendedmiscellaneousmathematicalsymbolsamiscella"
- "neousmathematicalsymbolsbsupplementalmathematicaloperatorssupplem"
- "entalsymbolsandpictographsegyptianhieroglyphformatcontrolsideogra"
- "phicdescriptioncharactersideographicsymbolsandpunctuationmathemat"
- "icalalphanumericsymbolscjkunifiedideographsextensionacjkunifiedid"
- "eographsextensionbcjkunifiedideographsextensionccjkunifiedideogra"
- "phsextensiondcjkunifiedideographsextensionecjkunifiedideographsex"
- "tensionfcjkunifiedideographsextensiongcuneiformnumbersandpunctuat"
- "ionenclosedalphanumericsupplementsymbolsandpictographsextendedaen"
- "closedideographicsupplementmiscellaneoussymbolsandarrowsphonetice"
- "xtensionssupplementsupplementaryprivateuseareaasupplementarypriva"
- "teuseareabvariationselectorssupplementalphabeticpresentationforms"
- "ancientgreekmusicalnotationcanonicalcombiningclass=cccenclosedcjk"
- "lettersandmonthsopticalcharacterrecognitionprependedconcatenation"
- "mark=changeswhennfkccasefolded=conditionaljapanesestarterdefaulti"
- "gnorablecodepoint=halfwidthandfullwidthformskatakanaphoneticexten"
- "sionsconsonantinitialpostfixedfullcompositionexclusion=superscrip"
- "tsandsubscriptssymbolsandpictographsextasymbolsforlegacycomputing"
- "arabicpresentationformsaarabicpresentationformsbcjksymbolsandpunc"
- "tuationcombiningmarksforsymbolsconsonantsucceedingrephahighprivat"
- "eusesurrogatesindicpositionalcategory=indicsyllabiccategory=insup"
- "symbolsandpictographsbidipairedbrackettype=cconsonantprecedingrep"
- "hageometricshapesextendedhangulcompatibilityjamolatinextendedaddi"
- "tionalshorthandformatcontrolssupplementalpunctuationznamennymusic"
- "alnotationchangeswhencasefolded=changeswhencasemapped=changeswhen"
- "lowercased=changeswhentitlecased=changeswhenuppercased=cjkcompati"
- "deographssupcommonindicnumberformsdiacriticalsforsymbolsearlydyna"
- "sticcuneiformlogicalorderexception=miscellaneoustechnicalnonchara"
- "ctercodepoint=spacingmodifierletterstransportandmapsymbolsyzantin"
- "emusicalsymbolscjkcompatibilityformscjkradicalssupplementcyrillic"
- "supplementaryextendedpictographic=graphemeclusterbreak=hanifirohi"
- "ngyakinnayainscriptionalparthianis_in_multi_char_foldmeeteimayeke"
- "xtensionspopdirectionalisolatesinhalaarchaicnumbersterminalpunctu"
- "ation=tyijinghexagramsymbolsanatolianhieroglyphsconnectorpunctuat"
- "ionconsonantplaceholderconsonantwithstackerglagoliticsupplementin"
- "scriptionalpahlavilefttorightembeddingnyiakengpuachuehmongpopdire"
- "ctionalformatrighttoleftembeddingtopandbottomandrightverticalorie"
- "ntation=ancientgreeknumbersbrahmijoiningnumberburushaskiyehbarree"
- "consonantheadlettercountingrodnumeralsegyptianhieroglyphsenclosed"
- "alphanumsuphanguljamoextendedahanguljamoextendedbhangulsyllablety"
- "pe=idstrinaryoperator=lefttorightoverridemeroitichieroglyphsmodif"
- "iertonelettersmongoliansupplementottomansiyaqnumbersrighttoleftov"
- "erridesundanesesupplementsupplementalarrowsasupplementalarrowsbsu"
- "pplementalarrowsctopandbottomandleftattachedaboverightcherokeesup"
- "plementcombininghalfmarksconsonantsubjoinedcopticepactnumbersdeco"
- "mpositiontype=devanagariextendedemojimodifierbase=emojipresentati"
- "on=ethiopicsupplementeuropeanterminatorfirststrongisolategeneralp"
- "unctuationgeorgiansupplementidsbinaryoperator=initialpunctuationl"
- "atinextadditionallefttorightisolateornamentaldingbatsparagraphsep"
- "aratorpatternwhitespace=regionalindicator=righttoleftisolaterumin"
- "umeralsymbolsscriptextensions=ssmallkanaextensiontaixuanjingsymbo"
- "lstopandleftandrighttransformedrotatedtransformeduprightvariation"
- "selector=alchemicalsymbolsattachedbelowleftcanadiansyllabicscauca"
- "sianalbanianconsonantprefixedcyrillicextendedacyrillicextendedbcy"
- "rillicextendedcethiopicextendedaethiopicextendedbeuropeanseparato"
- "ridentifierstatus=indicsiyaqnumberskhitansmallscriptletterlikesym"
- "bolsmanichaeandhamedhmanichaeanhundredmanichaeanthamedhsentencete"
- "rminal=smallformvariantssuttonsignwritingunifiedideograph=arabics"
- "upplementcantillationmarkcloseparenthesisclosepunctuationcypriots"
- "yllabaryfinalpunctuationgeneralcategory=georgianextendedhalfandfu"
- "llformshanifirohingyapahighpusurrogatesidentifiertype=ilatin1supp"
- "lementlinearbideogramslinearbsyllabarymanichaeandalethmanichaeanl"
- "amedhmanichaeansamekhmanichaeantwentymiscmathsymbolsamiscmathsymb"
- "olsbmyanmarextendedamyanmarextendedbotherpunctuationsegmentsepara"
- "torsentencebreak=stsupmathoperatorssyllablemodifiersyriacsuppleme"
- "nttangutcomponentstangutsupplementvowelindependent_perl_charname_"
- "arabicextendedaarabicextendedbcommonseparatorconsonantkillerconso"
- "nantmedialcontingentbreakcontrolpicturescurrencysymbolsdashpunctu"
- "ationdiacriticalsextdiacriticalssupeastasianwidth=emojicomponent="
- "graphemeextend=hangulsyllablesimperialaramaicjoininggroup=kalower"
- "caselettermanichaeanalephmanichaeangimelmanichaeansadhemanichaean"
- "zayinmeroiticcursivemiscpictographsmodifyingletternfcquickcheck=n"
- "nfkcquickcheck=nfkdquickcheck=oldnortharabianoldsoutharabianopenp"
- "unctuationregistershiftertamilsupplementtitlecaseletteruppercasel"
- "ettervedicextensionsvisualorderleftzanabazarsquare_perl_folds_toa"
- "mumsupplementancientsymbolsasciihexdigit=carriagereturncaseignora"
- "ble=cjkcompatformscomplexcontextconsonantfinalemojimodifier=europ"
- "eannumbergeminationmarkgreekandcoptichamzaonhehgoalhighsurrogates"
- "kanasupplementkangxiradicalslatinextendedblatinextendedclatinexte"
- "ndeddlatinextendedelatinextendedflatinextendedglisusupplementmand"
- "atorybreakmanichaeanayinmanichaeanbethmanichaeanfivemanichaeanhet"
- "hmanichaeankaphmanichaeanqophmanichaeanreshmanichaeantethmanichae"
- "anyodhmodifiersymbolnfdquickcheck=nojoininggroupnonspacingmarkoun"
- "daryneutralpatternsyntax=phoneticextsuppomofoextendedpostfixnumer"
- "icpsalterpahlaviquotationmark=raillepatternsspaceseparatorsuppunc"
- "tuationtehmarbutagoalvisiblestackervoweldependent1000000000000aeg"
- "eannumbersbidimirrored=consonantdeaddecimalnumberenclosingmarkgra"
- "phemebase=greekextendediotasubscriptipaextensionskanaextendedakan"
- "aextendedblineseparatorlowsurrogatesmalayalamlllamalayalamnnnaman"
- "ichaeanmemmanichaeannunmanichaeanonemanichaeantawmanichaeantenman"
- "ichaeanwawmayannumeralsmisctechnicalnotapplicablenumericvalue=pre"
- "fixnumericverticalformsalphabeticpfarabicletterarabicnumberbidicl"
- "ass=bobidicontrol=breaksymbolschesssymbolscyrillicextacyrillicext"
- "bcyrillicextcethiopicextaethiopicextbextendnumletfinalsemkathglue"
- "afterzwjgunjalagondihebrewletterideographic=infixnumericjoincontr"
- "ol=joiningtype=khmersymbolsletternumberlockelementsmahjongtilesma"
- "layalambhamalayalamllamalayalamngamalayalamnnamalayalamnyamalayal"
- "amssamalayalamttamanichaeanpemasaramgondimathalphanummendekikakui"
- "noncanonicalnotcharacternotreorderednumberjoinernumerictype=oldhu"
- "ngarianotherneutralphaistosdiscplayingcardsrightjoiningtrailingja"
- "moverticaltailxidcontinue=africannoonalphabetic=breakbeforecasedl"
- "ettercyprominoandeprecated=dominotilesdoubleabovedoublebelowdoubl"
- "equotedualjoiningexclamationinseparableinseperablejoincausingkana"
- "voicingkatakanaextleadingjamoleftjoininglinebreak=llvtsyllablemal"
- "ayalamjamalayalamramedefaidrinmiscsymbolsmyanmarextamyanmarextbna"
- "ndinagariotherletterothernumberothersymbolpahawhhmongrecommendedr"
- "ohingyayehsinglequotesoftdotted=sorasompengstraightwawsuperandsub"
- "sylotinagritopandrighttransparentuncommonusewordbreak=wxidstart=y"
- "eyehwithtailyisyllables-5.000e-01africanfehafricanqafarabicextaar"
- "abicextbbelowrightbreakaftercategory=cchorasmiancjkstrokescompatj"
- "amodalathrishdiacritic=divesakuruextender=fextpict=fahanreadingin"
- "sc=inviskharoshthiknottedhehlimiteduselowercase=lvsyllablemiscarr"
- "owsnonjoiningnonstarteroldpersianoldsogdianoverstruckphoenicianpr"
- "esentin=purekillerrestrictedreversedpesaurashtrasmallformssuparro"
- "wsasuparrowsbsuparrowscunassigneduppercase=warangcitiwordjoineryi"
- "radicals1.000e-011.111e-011.250e-011.250e-021.429e-011.500e+001.5"
- "00e-011.562e-021.563e-021.667e-011.875e-012.000e-012.500e+002.500"
- "e-012.500e-023.125e-023.125e-033.333e-013.500e+003.750e-013.750e-"
- "024.000e-014.167e-014.500e+004.688e-025.000e-025.500e+005.833e-01"
- "6.000e-016.250e-016.250e-026.250e-036.500e+006.667e-017.500e+007."
- "500e-018.000e-018.333e-018.333e-028.500e+008.750e-019.167e-01abov"
- "eleftambiguousany_foldsarabicpfaarabicpfbasiclatinbhaiksukibreakb"
- "othemoticonsinheritedkhudawadilatinextblatinextclatinextdlatinext"
- "flatinextgmidlettermidnumletnabataeannewtailuenonjoinerolditalico"
- "ldpermicoldturkicolduyghurpalmyrenepaucinhauquotemetasamaritansyr"
- "iacwawvoweljamowsegspace20000000armenianavagrahabalinesebassavahb"
- "lk=bopoblock=bobopomofobugineseduployanebasegazfarsiyehfractiongu"
- "jaratigurmukhihiraganaisolatedisxposixjamoextajamoextbjavanesekan"
- "aextakanaextbmahajaninclusionnextlineobsoleteradical=script=sspec"
- "ialsswashkaftagbanwatifinaghtonemarkucasextaugariticvithkuqixdraw"
- "ingaletterallowedavestanbengalibrailleccc=ccccjkextacjkextbcjkext"
- "ccjkextdcjkextecjkextfcjkextgcompex=deseretelbasanelymaicgranthag"
- "rbase=hanunoohyphen=inefeedishorizisposixisspaceisxperlkannadakay"
- "ahlilinearamakasarmandaicmarchenmultaninchar=nnewlinenfcqc=nnfkcq"
- "c=nfkdqc=noblocknobreaknotnfkcolchikioletterosmanyaoverlaypatsyn="
- "phagspasharadashaviansiddhamsoyombosterm=tsuppuaasuppuabtagalogta"
- "ithamtaivietthinyehtibetantirhutaunknownvisargawspace=zwspace2160"
- "00300000400000432000500000600000700000800000900000alpha=bidic=bid"
- "im=carianchakmacirclecwkcf=ecomp=emoji=epres=gothicgrext=hatranis"
- "perlisvertjoinc=kaithikanbunkhojkilamadhlepchalower=lycianlydiann"
- "arrownfdqc=notxidpatws=qmark=rejangtangsateluguthaanauideo=upper="
- "viramawanchoyezidiyudhhe1/1601/32011/12adlamahex=alaphatermbamumb"
- "atakbeginbindublankbuhidcntrlcwcf=cwcm=dash=dograemod=ext=ffalseg"
- "cb=gidsb=idst=inbloinpc=intaginzanisunikhaphlimbumath=maybent=nun"
- "uktanushuoghamoriyaosageprintrunicsb=scscx=stailetakrivssupxidc=x"
- "ids=zhain-1/21/101/201/401/641/8010.011.011/212.113.013/214.015/2"
- "17/23/163/203/643/805/127/12adlmage=aghbahomalefarmiarmnataratbla"
- "vstbatkbc=bbhksbpt=buhdcakmcanschrscpmncprtcwl=cwt=cwu=cyrldep=di"
- "a=diakdsrtdt=efontgonggonmgrekgujrguruhanohluwhmnghmnphst=inboint"
- "iisbojg=ljt=lkalikhmrkitskndakthilanalaoolatnlb=llinalinbloe=medf"
- "meemmercmiaomlymmroomteimymrnarbnbatnewankoonshunv=nogamolckorkho"
- "ryaosgeougrpcm=phlpphnxplrdprtiqaacqaaiqaphrjngrohgrunrsc=sseensh"
- "intagstaletalutamltavttfngtglgthaitibttnsatototruev100v110v120v12"
- "1v130v140vaiiwchowidexpeoxsuxyiiizainzanbzinhzyyyzzzz1/51/71/9103"
- "1071181221291321332/32/52022182202222242262282302322332342403.23/"
- "43/54/55.15.25/65/86.16.37.07/89.09/2behci=di=ea=ebgfsigafgc=hrdl"
- "relrilromimocrogopdfrehri=sd=smlsqrtahv20v21v30v31v32v40v41v50v51"
- "v52v60v61v62v63v70v80v90vo=vs=wb=yesyrc353839444546474849b2bkh2h3"
- "jljvkvl&vrxxzlzpzs";
-/* mph_blob length: 10548 */
+ "l&cwlextgocrpcmadlmaghbahexahomarmiavstbatkbhksbuhdcakmcanschamch"
+ "rscpmncprtcwucyrldsrtgonggrekgujrguruhluwhmngzlkitskndalaoolatnme"
+ "dfmteimymrnarbnewaoryaosgeougrphlpphnxqaacrjngrohgrunrsamrsgnwsha"
+ "wtagstamltavttfngtglgtibttotowchoxpeoxsuxyiiizanbzyyyzzzzcntrlcwc"
+ "fcwcmcwkcfcwtzpgcb=b2h2jlxxnushu3040nv=90oriyapatwsprintqmarktail"
+ "evssupfsipdfcarianccc=118491vre=yeschakmasmlsqrgothicgrexthyphen3"
+ ".26.3415161miaoarmndiakgonmhanokhmrlinamroonkooogamolckorkhphlipl"
+ "rdprtiqaaishrdsogotnsavaiibehgafhahrehbunkhojkilydiannfdqcnv=3//5"
+ "nv=7patsynrejangsb=stangsaebg3.04.0age=56.07.08.09.052avestanccc="
+ "22e=truedeseretdt=nonewideelbasanelymaicextpictgrbashanunoohst=lv"
+ "tadlambuhiddogralimbuoghamosagerunictakribatakisotheeemnoonseensh"
+ "inzainkannadakayahlilinearamandaicmarchennfkcqc-1/2/645/217/2olch"
+ "ikiosmanyahmnpkalilananbatsarbsyrczinhsharadashavianstermuaatagal"
+ "ogtaithamtaiviettibetantirhutauideounknownage=10.0age=v1armenianb"
+ "alinesebassavahbpt=opene=falsecompexsuperduployanextendergujarati"
+ "gurmukhihiraganahatrankaithilepchalycianteluguwanchoyezidijamoext"
+ "bgamalkhaphmahajaninfkdqcnv=1/31/12nv=2erlwordkthilinbmercnshuscx"
+ "=talupecialstagbanwatifinaghvithkuqipfabhaiksuki2435nuktacircleme"
+ "dialea=narrowmoticonsbengaligranthainheritedinkanamakasarmultanin"
+ "oblockphagspasiddhamsoyombouablamadhkhudawadinabataeannewtailue16"
+ "00032000olditalicoldpermicoldturkicolduyghurpalmyrenepaucinhausam"
+ "aritanthaanawb=mixidstartbasiclatinboxdrawingccc=ccc1viramachoras"
+ "mianstrokesdeprecateddivesakuruorizspacebugineseingeorgiajamoexta"
+ "javanesebinduugariticiskanathinyehkharoshthiiscarrowsnt=oldpersia"
+ "nphoeniciansaurashtraolettermallformssoftdotteduprightwarangcitia"
+ "letternewlineerlspaceextdoverlaycyprominoandominotilesfractioniso"
+ "latedpfbextfisarabicisspaceisvertfarsiyehswashkaflinefeednextline"
+ "medefaidrinnfcqc=maybenv=10000pahawhhmongscript=mlymsorasompenger"
+ "andsubsylotinagriebasegazyisyllablesbidicontrolbidimirroredblk=ka"
+ "naucasextahesssymbolsambiguousgraphemebasegunjalagondiompatjamool"
+ "dsogdianvisargayiradicalsisposixsyriacwawjoiningtype=breakbothbkh"
+ "3jvmasaramgondiathalphanummendekikakui1.0.111e-01.250e-01.429e-01"
+ ".500e+00.562e-02.563e-02.667e-01.875e-01.500e-013.125e-02.333e-01"
+ ".750e-01nv=4.167e-01.688e-02.000e-02nv=5.833e-01nv=6.250e-02nv=8."
+ "333e-02oldhungarianphaistosdiscplayingcardspresentin=14wsegspacex"
+ "idcontinueegeannumbersblockelementscaseignorablunassignedreekexte"
+ "ndedvoweljamoincyrillicinethiopictakanaextiscsymbolsinmyanmarnand"
+ "inagariavagrahatonemarkipaextensionsiscasedletterisgeorgiajoincon"
+ "trolismyanmarisxposixblankjg=africanfehdalathrishknottedhehrevers"
+ "edpenonjoiningbreakafternonstarterwordjoinerowsurrogatesayannumer"
+ "alsisctechnical-5.000e-01patternsyntaxpresentin=56.1verticalforms"
+ "ncientsymbolsbc=righttoleftblk=arabichanreadingemojicomponentgc=o"
+ "thereekandcoptichighsurrogateslphabeticpfkhmersymbolsnonjoinerisc"
+ "yrillicisethiopicmahjongtilesrohingyayehstraightwawyehwithtaildua"
+ "ljoiningjoincausingleftjoiningjt=transparentbreakbeforeexclamatio"
+ "ninseparableinseperablenfcquickchecknumerictype=epresentin=v1psal"
+ "terpahlaviquotationmarkdoublequotesinglequoteany_foldsquotemetaas"
+ "ciihexdigitarabicletterotherneutralblk=georgiadoubleabovekanavoic"
+ "ingontrolpictureseastasianwidth=letternumbergraphemeextendeadingj"
+ "amoimperialaramaicoverstruckpurekillerdecimalnumberenclosingmarkf"
+ "inalsemkathverticaltailrightjoininghebrewletterinfixnumericmeroit"
+ "iccursiveiscpictographsnfdquickchecknumericvalue=236numericvalue="
+ "4oldnortharabianoldsoutharabianextendnumletglueafterzwjzanabazars"
+ "quareblk=cyrillicblk=ethiopicblock=arabicnotreorderedcypriotsylla"
+ "barylineseparatorhalfandfullformshighpusurrogatestrailingjamocomp"
+ "atformsgxiradicalsinlatinextendedphoneticextsupislatinextendedlis"
+ "usupplementnonspacingmarklllajg=malayalamnnnamemtawprefixnumerici"
+ "nearbideogramsiscmathsymbolsanfkcquickchecknumericvalue=1/numeric"
+ "value=5/8numericvalue=70numericvalue=80numericvalue=9sentenceterm"
+ "inaltangutcomponentseuropeannumberanadiansyllabicscaucasianalbani"
+ "aniotasubscriptemojipresentationgmodifiersymbolspaceseparatornota"
+ "pplicableidsbinaryoperatorbraillepatternscurrencysymbolsindicsiya"
+ "qnumbersleftandrightnumberjoinervedicextensionsdashpunctuationdia"
+ "criticalsexthangulsyllableslowercaseletteropenpunctuationhamzaonh"
+ "ehgoalbethfivehethkaphqophreshyodhqaphtethkhitansmallscriptcarria"
+ "gereturncomplexcontextmandatorybreakpostfixnumericetterlikesymbol"
+ "slinebreak=zwspacenfkdquickchecknumericvalue=3/2regionalindicator"
+ "scriptextensions=mallformvariantsttonsignwritingboundaryneutralco"
+ "mmonseparatorblk=latinextendedblock=cyrillicextcopticepactnumbers"
+ "titlecaseletteruppercaseletteridstrinaryoperatorinitialpunctuatio"
+ "nlinearbsyllabaryiscmathsymbolsbbopomofoextendedclosepunctuationf"
+ "inalpunctuation1supplementyriacsupplementtangutsupplementalephgim"
+ "elsadhezayinlaphzhainadditionalcontingentbreaknumericvalue=6ornam"
+ "entaldingbatsparagraphseparatorpatternwhitespaceruminumeralsymbol"
+ "ssegmentseparatorbamumsupplementdiacriticalssuptamilsupplementblo"
+ "ck=kanaegyptianhieroglyphsemojimodifierbaselchemicalsymbolsgemina"
+ "tionmarkvoweldependenthanifirohingyapadalethlamedhsamekhjg=manich"
+ "aeantwentyyudhhe=closeparenthesisodifiertonelettersottomansiyaqnu"
+ "mbersatermarrowsawordbreak=mi_perl_charname_beanatolianhieroglyph"
+ "sblk=myanmarblock=latinextendedconnectorpunctuationextendedpictog"
+ "raphicombininghalfmarksneralpunctuationvisualorderleftmodifyingle"
+ "tterregistershifterinscriptionalpahlavitaixuanjingsymbolscherokee"
+ "supplementdevanagariextendedmallkanaextensiondhamedhhundrednyiake"
+ "ngpuachuehmongterminalpunctuationeuropeanterminatorfirststrongiso"
+ "lateattachedbelowleftchangeswhencasefoldedchangeswhencasemappedch"
+ "angeswhenlowercasedchangeswhentitlecasedchangeswhenuppercasedgrap"
+ "hemeclusterbreak=identifiertype=notncientgreeknumbersountingrodnu"
+ "meralsmeroitichieroglyphsantillationmarkinvisiblestackersyllablem"
+ "odifierinscriptionalparthianinsupplementalarrowsbnclosedalphanums"
+ "uphanguljamoextendedamongoliansupplementsundanesesupplementissupp"
+ "lementalarrowsclogicalorderexceptionnoncharactercodepointsinhalaa"
+ "rchaicnumbersvo=transformedrotatedyijinghexagramsymbolsoverridear"
+ "abicnumberbidipairedbrackettypeblock=ethiopicblock=georgianblock="
+ "myanmarmathoperatorsfontdiacriticalsforsymbolsarlydynasticcuneifo"
+ "rminsc=consonantprefixedglagoliticsupplementburushaskiyehbarreebr"
+ "eaksymbolsnumericvalue=100000000.500e-02.125e-03.750e-02.250e-03b"
+ "c=lefttorightembeddingpopdirectionalformatblhanguljamoextendedbha"
+ "ngulcompatibilityjamoobsoletecompatibilityformsradicalssupplement"
+ "subjoinedjoininggroup=africanqafsentencebreak=shorthandformatcont"
+ "rolsznamennymusicalnotationhighprivateusesurrogatesstatus=allowed"
+ "inclusioncompatideographssupommonindicnumberformsiscellaneoustech"
+ "nicalinpc=topandbottomandleftbrahmijoiningnumberheadletterpacingm"
+ "odifierletterstransportandmapsymbolshanifirohingyakinnayajoiningg"
+ "roup=malayalamfolds_to_multi_charmeeteimayekextensionschangeswhen"
+ "nfkccasefoldeddefaultignorablecodepointfullcompositionexclusionli"
+ "mitedusebyzantinemusicalsymbolsplaceholderwithstackermetricshapes"
+ "extendederscriptsandsubscriptsymbolsforlegacycomputingcanonicalco"
+ "mbiningclass=27halfwidthandfullwidthformsrecommendeduncommonusein"
+ "arabicpresentationformsbcombiningmarksforsymbolsprependedconcaten"
+ "ationmarkis_in_multi_char_foldeuropeanseparatorblk=supplementalca"
+ "nonicalcombiningclass=128nclosedcjklettersandmonthsgeneralcategor"
+ "y=othestatus=restrictedymbolsandpictographsextanojoininggrouptehm"
+ "arbutagoalopticalcharacterrecognitionbidiclass=lefttorightbidicla"
+ "ss=righttoleftatarprecedingrephakatakanaphoneticextensionssupplem"
+ "entaryprivateuseareaacanonicalcombiningclass=ccc1succeedingrephal"
+ "phabeticpresentationformsancientgreekmusicalnotationlb=conditiona"
+ "ljapanesestarteriscellaneoussymbolsandarrowsdecompositiontype=non"
+ "hangulsyllabletype=lvtinitialpostfixedryprivateuseareabvariations"
+ "electorssupplementjoininggroup=manichaeantpopdirectionalisolatenc"
+ "losedideographicsupplementathematicalalphanumericsymbolsideograph"
+ "icdescriptioncharactersincjkunifiedideographsextensnclosedalphanu"
+ "mericsupplementiscjkunifiedideographsextensuneiformnumbersandpunc"
+ "tuationymbolsandpictographsextendedaaboveleftiscellaneousmathemat"
+ "icalsymbolsablk=cjkunifiedideographsextensbelowrightgyptianhierog"
+ "lyphformatcontrolsideographicsymbolsandpunctuationmathematicalalp"
+ "habeticsymbolsdoublebelowombiningdiacriticalmarksextendedindicpos"
+ "itionalcategory=topandiscellaneousmathematicalsymbolsbblock=cjkun"
+ "ifiedideographsextensindicsyllabiccategory=consonantiscellaneouss"
+ "ymbolsandpictographsombiningdiacriticalmarksforsymbols_perl_probl"
+ "ematic_locale_foldeds_compatibilityideographssupplementbottomandr"
+ "ightvowelindependentverticalorientation=transformombiningdiacriti"
+ "calmarkssupplementblock=supplementalmathematicaloperatorsattached"
+ "aboverightisunifiedcanadianaboriginalsyllabicsextendeda";
+/* mph_blob length: 8635 */
struct mph_struct {
U16 seed2;
@@ -202,7426 +174,7426 @@ STATIC const U32 MPH_FNV32_PRIME = 0x01000193;
/* The comments give the input key for the row it is in */
STATIC const struct mph_struct mph_table[MPH_BUCKETS] = {
- { 0, 8457, 1692, 6, 15, UNI_GEOMETRICSHAPES } /* block=geometricshapes */,
- { 0, 9141, 4025, 4, 7, UNI_ARABICSUP } /* isarabicsup */,
- { 0, 10393, 5170, 3, 5, UNI_XPOSIXDIGIT } /* gc=digit */,
- { 1, 4790, 4865, 13, 15, UNI_JG__MANICHAEANZAYIN } /* joininggroup=manichaeanzayin */,
- { 0, 3343, 1059, 18, 2, -UNI_IDSB } /* idsbinaryoperator=no */,
- { 1, 114, 0, 25, 0, UNI_DIACRITICALS } /* combiningdiacriticalmarks */,
- { 3, 185, 5414, 2, 14, UNI_LATINEXTF } /* islatinextendedf */,
- { 0, 185, 7453, 2, 7, UNI_EXTPICT } /* isextpict */,
- { 0, 9000, 0, 7, 0, UNI_OLCK } /* olchiki */,
- { 8, 7481, 8, 3, 3, UNI_KANA } /* iskana */,
- { 0, 1067, 79, 24, 2, UNI_CCC__AR } /* canonicalcombiningclass=ar */,
- { 0, 7475, 10102, 3, 4, UNI_PRTI } /* sc=prti */,
- { 1, 9413, 9549, 6, 5, -UNI_UIDEO } /* uideo=false */,
- { 1, 9564, 9549, 5, 5, -UNI_IDST } /* idst=false */,
- { 0, 8449, 5134, 5, 4, UNI_INBAMUM } /* blk=bamum */,
- { 4, 7475, 9669, 3, 4, UNI_SC__TAKR } /* sc=takr */,
- { 0, 9554, 4391, 4, 5, UNI_GCB__XX } /* gcb=other */,
- { 1, 9341, 0, 6, 0, UNI_lower_values_index } /* lower= */,
- { 0, 2391, 7441, 21, 3, UNI_TERM } /* terminalpunctuation=true */,
- { 1, 1589, 10536, 9, 2, UNI_CASEDLETTER } /* category=l& */,
- { 1, 9950, 5522, 3, 4, UNI_JG__HETH } /* jg=heth */,
- { 0, 4119, 4071, 16, 16, UNI_PE } /* generalcategory=closepunctuation */,
- { 5, 8881, 1237, 3, 3, UNI_SORA } /* issora */,
- { 3, 9561, 785, 3, 5, UNI_SB__CL } /* sb=close */,
- { 0, 5091, 1429, 3, 3, UNI_UGAR } /* isugar */,
- { 1, 7473, 8301, 5, 9, UNI_INSC__NONJOINER } /* insc=nonjoiner */,
- { 0, 2363, 4987, 4, 13, UNI_SARB } /* isoldsoutharabian */,
- { 1, 1620, 3973, 3, 16, UNI_SMALLFORMS } /* insmallformvariants */,
- { 10, 7475, 6390, 3, 4, UNI_HEBR } /* sc=hebr */,
- { 1, 7473, 8425, 5, 8, UNI_INSC__AVAGRAHA } /* insc=avagraha */,
- { 0, 8441, 0, 8, 0, UNI_BASS } /* bassavah */,
- { 0, 8457, 5030, 6, 8, UNI_TAMILSUP } /* block=tamilsup */,
- { 6, 9841, 0, 2, 0, UNI_MC } /* mc */,
- { 0, 8748, 7751, 4, 2, UNI_CCC__11 } /* ccc=11 */,
- { 1, 5912, 26, 13, 1, UNI_GRBASE } /* graphemebase=y */,
- { 1, 9659, 9649, 4, 5, UNI_RUNR } /* scx=runic */,
- { 3, 8633, 8417, 7, 8, UNI_ARMN } /* script=armenian */,
- { 5, 5162, 0, 14, 0, UNI_ahex_values_index } /* asciihexdigit= */,
- { 1, 1830, 10498, 22, 3, UNI_CWCF } /* changeswhencasefolded=yes */,
- { 9, 8457, 3802, 6, 17, UNI_ETHIOPICEXTB } /* block=ethiopicextendedb */,
- { 1, 7, 0, 1, 0, UNI_C } /* c */,
- { 2, 10393, 5990, 3, 13, UNI_ZL } /* gc=lineseparator */,
- { 2, 9674, 0, 5, 0, UNI_VSSUP } /* vssup */,
- { 0, 8874, 506, 3, 2, UNI_PUA } /* ispua */,
- { 1, 8457, 6003, 6, 13, UNI_LOWSURROGATES } /* block=lowsurrogates */,
- { 0, 9938, 5694, 4, 6, UNI_INBOPOMOFO } /* inbopomofo */,
- { 0, 3181, 8505, 18, 8, UNI_DT__FRA } /* decompositiontype=fraction */,
- { 2, 1589, 5000, 9, 15, UNI_PS } /* category=openpunctuation */,
- { 1, 9782, 8004, 4, 3, UNI_AGE__6_DOT_2 } /* age=6.2 */,
- { 0, 10393, 5764, 3, 14, UNI_ZS } /* gc=spaceseparator */,
- { 1, 185, 1075, 2, 2, UNI_CASEDLETTER } /* islc */,
- { 1, 1334, 36, 21, 1, UNI_CE } /* compositionexclusion=t */,
- { 0, 8748, 9810, 4, 3, UNI_CCC__202 } /* ccc=atb */,
- { 11, 8457, 753, 6, 9, UNI_INCUNEIFORM } /* block=cuneiform */,
- { 7, 3523, 9982, 17, 4, UNI_LAO } /* scriptextensions=laoo */,
- { 2, 1067, 10321, 24, 3, UNI_CCC__DB } /* canonicalcombiningclass=233 */,
- { 0, 9934, 6973, 4, 11, UNI_GCB__L } /* hst=leadingjamo */,
- { 1, 1574, 7583, 24, 10, UNI_INPC__OVERSTRUCK } /* indicpositionalcategory=overstruck */,
- { 1, 6402, 1, 12, 1, -UNI_IDEO } /* ideographic=n */,
- { 4, 783, 0, 30, 0, UNI_ENCLOSEDALPHANUMSUP } /* enclosedalphanumericsupplement */,
- { 0, 9942, 9128, 4, 5, UNI_INTIRHUTA } /* intirhuta */,
- { 0, 1454, 0, 24, 0, UNI_ARABICPFB } /* arabicpresentationformsb */,
- { 1, 8457, 4151, 6, 16, UNI_HALFANDFULLFORMS } /* block=halfandfullforms */,
- { 0, 9559, 10186, 5, 4, UNI_IDSB } /* idsb=true */,
- { 1, 10426, 9549, 3, 5, -UNI_SD } /* sd=false */,
- { 0, 9529, 1, 5, 1, -UNI_DASH } /* dash=n */,
- { 1, 3904, 0, 10, 0, UNI_MANI } /* manichaean */,
- { 2, 7293, 9438, 3, 5, UNI_YEZI } /* isyezidi */,
- { 3, 9227, 26, 6, 1, UNI_BIDIM } /* bidim=y */,
- { 1, 8633, 7, 7, 18, UNI_CANS } /* script=canadianaboriginal */,
- { 3, 1589, 5641, 9, 11, UNI_MC } /* category=spacingmark */,
- { 6, 9659, 58, 4, 2, UNI_YI } /* scx=yi */,
- { 0, 9644, 0, 5, 0, UNI_XPOSIXPRINT } /* print */,
- { 0, 7443, 10498, 9, 3, UNI_EXT } /* extender=yes */,
- { 1, 9950, 9443, 3, 4, UNI_JG__YUDH } /* jg=yudh */,
- { 0, 185, 469, 2, 5, UNI__PERL_NCHAR } /* isnchar */,
- { 3, 10058, 9209, 3, 6, UNI_NV__900000 } /* nv=900000 */,
- { 0, 8449, 3163, 4, 18, UNI_COPTICEPACTNUMBERS } /* blk=copticepactnumbers */,
- { 0, 6428, 2751, 4, 9, UNI_COUNTINGROD } /* incountingrod */,
- { 12, 10423, 36, 3, 1, UNI_RI } /* ri=t */,
- { 0, 185, 4670, 2, 15, UNI_PD } /* isdashpunctuation */,
- { 2, 8457, 9084, 6, 7, UNI_SUPPUAB } /* block=suppuab */,
- { 1, 8633, 4231, 7, 7, UNI_SC__LINB } /* script=linearb */,
- { 1, 7475, 9982, 3, 3, UNI_LAO } /* sc=lao */,
- { 5, 7475, 9389, 3, 6, UNI_RJNG } /* sc=rejang */,
- { 1, 1620, 9087, 5, 4, UNI_SUPPUAB } /* insuppuab */,
- { 0, 9659, 9233, 4, 4, UNI_CARI } /* scx=cari */,
- { 0, 9782, 10453, 4, 3, UNI_AGE__4 } /* age=v40 */,
- { 2, 21, 5848, 3, 12, UNI_AEGEANNUMBERS } /* inaegeannumbers */,
- { 2, 5246, 36, 14, 1, UNI_EMOD } /* emojimodifier=t */,
- { 8, 7420, 4430, 3, 3, UNI_HEBR } /* ishebr */,
- { 2, 8449, 5075, 4, 8, UNI_VEDICEXT } /* blk=vedicext */,
- { 0, 185, 762, 2, 6, UNI_N } /* isnumber */,
- { 1, 4790, 6762, 13, 12, UNI_JG__VERTICALTAIL } /* joininggroup=verticaltail */,
- { 3, 7475, 2265, 3, 4, UNI_SC__HAN } /* sc=hani */,
- { 0, 219, 3463, 4, 5, UNI_POSIXSPACE } /* perlspace */,
- { 1, 185, 4135, 2, 11, UNI_GEORGIANEXT } /* isgeorgianext */,
- { 0, 3361, 0, 18, 0, UNI_PI } /* initialpunctuation */,
- { 0, 8449, 9311, 4, 6, UNI_INKAITHI } /* blk=kaithi */,
- { 3, 8457, 10018, 6, 4, UNI_INMIAO } /* block=miao */,
- { 2, 2280, 8293, 3, 8, UNI_INNEWTAILUE } /* innewtailue */,
- { 1, 8449, 1784, 4, 23, UNI_SUPPUNCTUATION } /* blk=supplementalpunctuation */,
- { 1, 185, 10218, 2, 4, UNI_WCHO } /* iswcho */,
- { 1, 10058, 9454, 3, 5, UNI_NV__1_SLASH_320 } /* nv=1/320 */,
- { 12, 9114, 5349, 3, 9, UNI_YIRADICALS } /* inyiradicals */,
- { 0, 9659, 8283, 4, 9, UNI_NBAT } /* scx=nabataean */,
- { 1, 8449, 9056, 4, 7, UNI_INSIDDHAM } /* blk=siddham */,
- { 1, 10079, 3457, 2, 2, UNI_SGNW } /* sgnw */,
- { 17, 185, 1734, 2, 4, UNI_JAMO } /* isjamo */,
- { 2, 185, 8811, 2, 7, UNI_DSRT } /* isdeseret */,
- { 0, 7475, 6693, 3, 4, UNI_HUNG } /* sc=hung */,
- { 3, 6438, 6, 12, 1, UNI_JT__D } /* joiningtype=d */,
- { 1, 6995, 9954, 10, 2, UNI_GCB__T } /* linebreak=jt */,
- { 2, 9599, 0, 4, 0, UNI_LIMB } /* limb */,
- { 1, 7051, 0, 4, 0, UNI__PERL_SURROGATE } /* iscs */,
- { 1, 8457, 8328, 6, 9, UNI_INOLDTURKIC } /* block=oldturkic */,
- { 0, 8457, 317, 6, 33, UNI_MISCMATHSYMBOLSB } /* block=miscellaneousmathematicalsymbolsb */,
- { 2, 1067, 10269, 27, 2, UNI_CCC__31 } /* canonicalcombiningclass=ccc31 */,
- { 0, 9950, 3938, 3, 17, UNI_JG__MANICHAEANTHAMEDH } /* jg=manichaeanthamedh */,
- { 3, 4745, 26, 15, 1, UNI_GREXT } /* graphemeextend=y */,
- { 2, 8633, 10026, 7, 4, UNI_MRO } /* script=mroo */,
- { 2, 5246, 1, 14, 1, -UNI_EMOD } /* emojimodifier=n */,
- { 3, 2028, 1, 22, 1, -UNI_LOE } /* logicalorderexception=n */,
- { 1, 6159, 7904, 13, 2, UNI_NV__13 } /* numericvalue=13 */,
- { 1, 9589, 7695, 4, 8, UNI_CN } /* isunassigned */,
- { 1, 7478, 6186, 3, 12, UNI_VERTICALFORMS } /* inverticalforms */,
- { 4, 7703, 9549, 10, 5, -UNI_XPOSIXUPPER } /* uppercase=false */,
- { 11, 9221, 1, 6, 1, -UNI_BIDIC } /* bidic=n */,
- { 1, 9790, 0, 4, 0, UNI_AHOM } /* ahom */,
- { 1, 9070, 26, 6, 1, UNI_STERM } /* sterm=y */,
- { 3, 185, 8229, 2, 9, UNI_LATINEXTC } /* islatinextc */,
- { 2, 10058, 7932, 3, 9, UNI_NV__2_SLASH_5 } /* nv=4.000e-01 */,
- { 0, 7475, 1715, 3, 6, UNI_SC__HANG } /* sc=hangul */,
- { 0, 9659, 8313, 4, 4, UNI_ITAL } /* scx=ital */,
- { 0, 5807, 449, 3, 10, UNI_IDEO } /* isideographic */,
- { 2, 4119, 5045, 16, 15, UNI_TITLE } /* generalcategory=titlecaseletter */,
- { 2, 9954, 7237, 3, 11, UNI_JT__T } /* jt=transparent */,
- { 1, 8173, 8474, 3, 7, UNI_INBUGINESE } /* inbuginese */,
- { 0, 6797, 1, 11, 1, -UNI_XPOSIXALPHA } /* alphabetic=n */,
- { 0, 79, 0, 10, 0, UNI_ARABICMATH } /* arabicmath */,
- { 1, 8633, 8433, 7, 4, UNI_BALI } /* script=bali */,
- { 0, 5919, 26, 6, 1, UNI_EBASE } /* ebase=y */,
- { 4, 9574, 5090, 5, 15, UNI_LOE } /* inpc=visualorderleft */,
- { 0, 7373, 3, 10, 1, UNI_CF } /* category=cf */,
- { 0, 6159, 7783, 13, 1, UNI_NV__9 } /* numericvalue=9 */,
- { 4, 7475, 9239, 3, 6, UNI_SC__CAKM } /* sc=chakma */,
- { 6, 185, 2787, 2, 19, UNI_ENCLOSEDALPHANUMSUP } /* isenclosedalphanumsup */,
- { 1, 1929, 0, 9, 0, UNI_XPOSIXUPPER } /* uppercase */,
- { 4, 8633, 8930, 7, 4, UNI_MARC } /* script=marc */,
- { 0, 8346, 0, 4, 0, UNI_PALM } /* palm */,
- { 2, 9365, 0, 7, 0, UNI_DT__CAN } /* nfdqc=n */,
- { 0, 2363, 7095, 3, 10, UNI_LO } /* isotherletter */,
- { 2, 1589, 1105, 9, 6, UNI_L } /* category=letter */,
- { 2, 9141, 81, 4, 8, UNI_ARABICMATH } /* isarabicmath */,
- { 1, 9822, 441, 3, 2, UNI_BC__ON } /* bc=on */,
- { 1, 9365, 10498, 6, 3, UNI_NFDQC__Y } /* nfdqc=yes */,
- { 0, 1094, 0, 11, 0, UNI_ENCLOSEDCJK } /* enclosedcjk */,
- { 2, 3523, 5030, 17, 5, UNI_TAML } /* scriptextensions=tamil */,
- { 6, 8457, 4985, 6, 15, UNI_SARB } /* block=oldsoutharabian */,
- { 2, 21, 7483, 2, 10, UNI_INKHAROSHTHI } /* inkharoshthi */,
- { 0, 9269, 1, 6, 1, -UNI_EPRES } /* epres=n */,
- { 1, 7259, 4391, 10, 5, UNI_WB__XX } /* wordbreak=other */,
- { 3, 8748, 10267, 4, 3, UNI_CCC__103 } /* ccc=103 */,
- { 2, 6246, 36, 12, 1, UNI_BIDIC } /* bidicontrol=t */,
- { 6, 2412, 0, 6, 0, UNI_YIJING } /* yijing */,
- { 0, 3802, 0, 17, 0, UNI_ETHIOPICEXTB } /* ethiopicextendedb */,
- { 1, 185, 4895, 2, 15, UNI_MISCPICTOGRAPHS } /* ismiscpictographs */,
- { 1, 8689, 0, 4, 0, UNI_UGAR } /* ugar */,
- { 5, 2363, 1122, 3, 26, UNI_OCR } /* isopticalcharacterrecognition */,
- { 1, 8457, 5344, 6, 14, UNI_KANGXI } /* block=kangxiradicals */,
- { 0, 7475, 10162, 3, 4, UNI_TFNG } /* sc=tfng */,
- { 2, 185, 1884, 2, 2, UNI_NL } /* isnl */,
- { 0, 3505, 0, 18, 0, UNI_RUMI } /* ruminumeralsymbols */,
- { 1, 185, 5899, 2, 13, UNI_ME } /* isenclosingmark */,
- { 0, 4006, 36, 17, 1, UNI_UIDEO } /* unifiedideograph=t */,
- { 2, 9659, 9353, 4, 4, UNI_LYDI } /* scx=lydi */,
- { 4, 6995, 7352, 10, 2, UNI_LB__BB } /* linebreak=bb */,
- { 2, 8457, 1940, 6, 19, UNI_CJKCOMPATIDEOGRAPHS } /* block=cjkcompatideographs */,
- { 1, 5170, 0, 5, 0, UNI_XPOSIXDIGIT } /* digit */,
- { 1, 2749, 0, 11, 0, UNI_COUNTINGROD } /* countingrod */,
- { 1, 8633, 1237, 8, 3, UNI_SORA } /* script=sora */,
- { 4, 6159, 8409, 13, 6, UNI_NV__200000 } /* numericvalue=200000 */,
- { 1, 1620, 2095, 3, 21, UNI_MODIFIERLETTERS } /* inspacingmodifierletters */,
- { 2, 4790, 7281, 13, 11, UNI_JG__YEHWITHTAIL } /* joininggroup=yehwithtail */,
- { 0, 10058, 9185, 3, 6, UNI_NV__500000 } /* nv=500000 */,
- { 0, 8449, 1454, 4, 24, UNI_ARABICPFB } /* blk=arabicpresentationformsb */,
- { 0, 10423, 3, 3, 1, -UNI_RI } /* ri=f */,
- { 6, 3523, 9597, 17, 4, UNI_PHLI } /* scriptextensions=phli */,
- { 1, 8958, 17, 7, 1, UNI_COMPEX } /* nfcqc=no */,
- { 0, 9263, 36, 6, 1, UNI_EMOJI } /* emoji=t */,
- { 0, 9966, 0, 4, 0, UNI_KITS } /* kits */,
- { 1, 3523, 6830, 17, 11, UNI_CPMN } /* scriptextensions=cyprominoan */,
- { 0, 7171, 9549, 11, 5, -UNI_SD } /* softdotted=false */,
- { 3, 3523, 8657, 17, 4, UNI_TAGB } /* scriptextensions=tagb */,
- { 1, 4790, 7193, 13, 11, UNI_JG__STRAIGHTWAW } /* joininggroup=straightwaw */,
- { 1, 9269, 36, 6, 1, UNI_EPRES } /* epres=t */,
- { 1, 9659, 9287, 4, 4, UNI_HATR } /* scx=hatr */,
- { 0, 8881, 1762, 3, 22, UNI_SHORTHANDFORMATCONTROLS } /* isshorthandformatcontrols */,
- { 1, 10058, 10516, 3, 2, UNI_NV__47 } /* nv=47 */,
- { 3, 9990, 18, 3, 2, UNI_RI } /* lb=ri */,
- { 3, 1874, 0, 22, 0, UNI_cwl_values_index } /* changeswhenlowercased= */,
- { 2, 8449, 2939, 4, 19, UNI_MONGOLIANSUP } /* blk=mongoliansupplement */,
- { 0, 6678, 529, 12, 7, UNI_NT__NU } /* numerictype=numeric */,
- { 3, 8633, 9818, 7, 4, UNI_BATK } /* script=batk */,
- { 0, 8449, 9401, 4, 6, UNI_INTELUGU } /* blk=telugu */,
- { 11, 8449, 512, 4, 31, UNI_MATHALPHANUM } /* blk=mathematicalalphanumericsymbols */,
- { 4, 4327, 0, 16, 0, UNI_MISCMATHSYMBOLSA } /* miscmathsymbolsa */,
- { 0, 8881, 108, 3, 5, UNI_S } /* issymbol */,
- { 4, 8449, 6474, 5, 12, UNI_BLOCKELEMENTS } /* blk=blockelements */,
- { 0, 9946, 5694, 4, 6, UNI_BOPO } /* isbopomofo */,
- { 0, 1067, 7751, 27, 2, UNI_CCC__11 } /* canonicalcombiningclass=ccc11 */,
- { 1, 9659, 8741, 4, 7, UNI_BRAI } /* scx=braille */,
- { 0, 9141, 5848, 3, 12, UNI_AEGEANNUMBERS } /* isaegeannumbers */,
- { 0, 9890, 46, 3, 6, UNI_DT__COM } /* dt=compat */,
- { 1, 9604, 10186, 5, 4, UNI_MATH } /* math=true */,
- { 0, 753, 0, 9, 0, UNI_XSUX } /* cuneiform */,
- { 3, 7475, 9126, 3, 7, UNI_SC__TIRH } /* sc=tirhuta */,
- { 0, 1598, 6666, 22, 12, UNI_INSC__NUMBERJOINER } /* indicsyllabiccategory=numberjoiner */,
- { 3, 9431, 0, 6, 0, UNI_WCHO } /* wancho */,
- { 1, 4790, 9443, 13, 6, UNI_JG__YUDHHE } /* joininggroup=yudhhe */,
- { 1, 8457, 8846, 6, 7, UNI_INHANUNOO } /* block=hanunoo */,
- { 1, 7481, 1280, 3, 7, UNI_KANA } /* iskatakana */,
- { 1, 8165, 0, 10, 0, UNI_ASCII } /* basiclatin */,
- { 5, 8633, 2589, 7, 4, UNI_SC__MONG } /* script=mong */,
- { 2, 6159, 9762, 13, 4, UNI_NV__3_SLASH_64 } /* numericvalue=3/64 */,
- { 1, 8874, 25, 3, 1, UNI_PS } /* isps */,
- { 2, 10130, 1237, 4, 3, UNI_SORA } /* sc=sora */,
- { 4, 10393, 1120, 3, 2, UNI_SO } /* gc=so */,
- { 0, 2868, 81, 4, 33, UNI_ARABICMATH } /* inarabicmathematicalalphabeticsymbols */,
- { 0, 9659, 8727, 4, 7, UNI_AVST } /* scx=avestan */,
- { 0, 16, 2138, 1, 13, UNI_BYZANTINEMUSIC } /* byzantinemusic */,
- { 1, 9950, 10372, 3, 3, UNI_JG__BEH } /* jg=beh */,
- { 1, 8457, 9982, 6, 3, UNI_INLAO } /* block=lao */,
- { 4, 9470, 9549, 4, 5, -UNI_XPOSIXXDIGIT } /* hex=false */,
- { 0, 3523, 9834, 17, 4, UNI_BUHD } /* scriptextensions=buhd */,
- { 1, 2939, 0, 19, 0, UNI_MONGOLIANSUP } /* mongoliansupplement */,
- { 0, 2644, 0, 4, 0, UNI_MAND } /* mand */,
- { 1, 6159, 10269, 13, 2, UNI_NV__31 } /* numericvalue=31 */,
- { 1, 9564, 26, 5, 1, UNI_IDST } /* idst=y */,
- { 2, 4199, 1345, 15, 9, UNI_IDENTIFIERTYPE__EXCLUSION } /* identifiertype=exclusion */,
- { 2, 185, 3164, 3, 17, UNI_COPTICEPACTNUMBERS } /* iscopticepactnumbers */,
- { 3, 2412, 0, 21, 0, UNI_YIJING } /* yijinghexagramsymbols */,
- { 0, 1874, 26, 22, 1, UNI_CWL } /* changeswhenlowercased=y */,
- { 4, 9114, 7293, 3, 10, UNI_YISYLLABLES } /* inyisyllables */,
- { 1, 9579, 9100, 4, 5, UNI_INTAITHAM } /* intaitham */,
- { 1, 8449, 5442, 4, 4, UNI_INLISU } /* blk=lisu */,
- { 2, 7171, 3, 11, 1, -UNI_SD } /* softdotted=f */,
- { 7, 185, 10038, 2, 4, UNI_NARB } /* isnarb */,
- { 1, 6159, 8031, 13, 9, UNI_NV__13_SLASH_2 } /* numericvalue=6.500e+00 */,
- { 5, 1067, 10266, 27, 2, UNI_CCC__91 } /* canonicalcombiningclass=ccc91 */,
- { 0, 9281, 9549, 6, 5, -UNI_GREXT } /* grext=false */,
- { 1, 6159, 10359, 13, 2, UNI_NV__37 } /* numericvalue=37 */,
- { 0, 3451, 3, 18, 1, -UNI__PERL_PATWS } /* patternwhitespace=f */,
- { 0, 8874, 9036, 3, 6, UNI_PHAG } /* isphagspa */,
- { 4, 8625, 1059, 8, 2, -UNI_RADICAL } /* radical=no */,
- { 1, 8449, 3541, 4, 12, UNI_SMALLKANAEXT } /* blk=smallkanaext */,
- { 1, 1962, 0, 6, 0, UNI_ZYYY } /* common */,
- { 0, 8457, 5442, 6, 14, UNI_LISUSUP } /* block=lisusupplement */,
- { 0, 9028, 1059, 7, 2, -UNI_PATSYN } /* patsyn=no */,
- { 4, 7475, 6690, 3, 12, UNI_HUNG } /* sc=oldhungarian */,
- { 0, 10058, 8049, 3, 9, UNI_NV__15_SLASH_2 } /* nv=7.500e+00 */,
- { 7, 4878, 2442, 10, 11, UNI_MERO } /* inmeroitichieroglyphs */,
- { 2, 7603, 10477, 10, 3, UNI_IN__6_DOT_3 } /* presentin=v63 */,
- { 0, 8449, 5951, 4, 13, UNI_IPAEXT } /* blk=ipaextensions */,
- { 1, 6995, 5000, 10, 15, UNI_LB__OP } /* linebreak=openpunctuation */,
- { 1, 3523, 416, 17, 4, UNI_EGYP } /* scriptextensions=egyp */,
- { 0, 5018, 2380, 3, 3, UNI_THAI } /* isthai */,
- { 0, 9659, 10414, 5, 3, UNI_SOGO } /* scx=sogo */,
- { 0, 9814, 0, 4, 0, UNI_AVST } /* avst */,
- { 0, 185, 8756, 3, 6, UNI_CJKEXTA } /* iscjkexta */,
- { 0, 5167, 36, 9, 1, UNI_XPOSIXXDIGIT } /* hexdigit=t */,
- { 0, 4730, 10498, 15, 3, UNI_ECOMP } /* emojicomponent=yes */,
- { 1, 501, 0, 5, 0, UNI_P } /* punct */,
- { 3, 8319, 0, 9, 0, UNI_PERM } /* oldpermic */,
- { 0, 8457, 8681, 6, 7, UNI_UCASEXT } /* block=ucasext */,
- { 1, 4790, 5302, 13, 14, UNI_JG__HAMZAONHEHGOAL } /* joininggroup=hamzaonhehgoal */,
- { 0, 8457, 4215, 6, 16, UNI_LATIN1 } /* block=latin1supplement */,
- { 0, 5018, 4504, 3, 8, UNI_TANGUTSUP } /* istangutsup */,
- { 0, 218, 9378, 7, 4, UNI__PERL_PATWS } /* _perl_patws */,
- { 3, 9659, 10102, 4, 4, UNI_PRTI } /* scx=prti */,
- { 12, 9990, 74, 3, 2, UNI_EMOD } /* lb=em */,
- { 2, 8457, 5951, 6, 6, UNI_IPAEXT } /* block=ipaext */,
- { 8, 9659, 8689, 4, 8, UNI_UGAR } /* scx=ugaritic */,
- { 4, 9684, 26, 5, 1, UNI_XIDS } /* xids=y */,
- { 5, 1250, 11, 3, 2, UNI_NT__DI } /* nt=di */,
- { 0, 1738, 0, 5, 0, UNI_LATN } /* latin */,
- { 1, 4790, 5568, 13, 14, UNI_JG__MANICHAEANTETH } /* joininggroup=manichaeanteth */,
- { 16, 10058, 9770, 3, 4, UNI_NV__5_SLASH_12 } /* nv=5/12 */,
- { 0, 8633, 7713, 7, 4, UNI_WARA } /* script=wara */,
- { 1, 4790, 10114, 13, 4, UNI_JG__QAPH } /* joininggroup=qaph */,
- { 0, 9263, 3, 6, 1, -UNI_EMOJI } /* emoji=f */,
- { 6, 4087, 0, 16, 0, UNI_CYPRIOTSYLLABARY } /* cypriotsyllabary */,
- { 3, 9679, 36, 5, 1, UNI_XIDC } /* xidc=t */,
- { 9, 9659, 3700, 4, 17, UNI_AGHB } /* scx=caucasianalbanian */,
- { 0, 8457, 6962, 6, 11, UNI_KATAKANAEXT } /* block=katakanaext */,
- { 0, 8457, 4895, 6, 15, UNI_MISCPICTOGRAPHS } /* block=miscpictographs */,
- { 8, 8457, 2138, 7, 22, UNI_BYZANTINEMUSIC } /* block=byzantinemusicalsymbols */,
- { 0, 185, 1121, 3, 3, UNI_COPT } /* iscopt */,
- { 0, 9950, 4167, 3, 16, UNI_JG__HANIFIROHINGYAPA } /* jg=hanifirohingyapa */,
- { 0, 8804, 0, 7, 0, UNI_compex_values_index } /* compex= */,
- { 4, 8449, 8909, 4, 7, UNI_INLINEARA } /* blk=lineara */,
- { 0, 9990, 43, 3, 2, UNI_LB__CJ } /* lb=cj */,
- { 2, 8457, 1094, 6, 11, UNI_ENCLOSEDCJK } /* block=enclosedcjk */,
- { 1, 8944, 0, 7, 0, -UNI__PERL_NCHAR } /* nchar=n */,
- { 8, 3466, 10186, 3, 4, UNI_CE } /* ce=true */,
- { 1, 1589, 7693, 9, 10, UNI_CN } /* category=unassigned */,
- { 1, 4119, 4655, 16, 14, UNI_SC } /* generalcategory=currencysymbol */,
- { 2, 7423, 36, 10, 1, UNI_DIA } /* diacritic=t */,
- { 0, 10426, 36, 3, 1, UNI_SD } /* sd=t */,
- { 0, 6426, 1, 12, 1, -UNI_JOINC } /* joincontrol=n */,
- { 2, 8633, 10178, 7, 4, UNI_TNSA } /* script=tnsa */,
- { 0, 8633, 9287, 7, 4, UNI_HATR } /* script=hatr */,
- { 0, 7576, 17, 3, 1, UNI_SOGO } /* sogo */,
- { 1, 3523, 3904, 17, 10, UNI_MANI } /* scriptextensions=manichaean */,
- { 3, 185, 9515, 3, 4, UNI_XPOSIXCNTRL } /* iscntrl */,
- { 2, 9659, 9629, 4, 5, UNI_OGAM } /* scx=ogham */,
- { 2, 8972, 0, 8, 0, UNI_NFKDQC__N } /* nfkdqc=n */,
- { 8, 9659, 1237, 5, 3, UNI_SORA } /* scx=sora */,
- { 0, 3523, 8529, 17, 4, UNI_HIRA } /* scriptextensions=hira */,
- { 0, 8748, 10266, 7, 2, UNI_CCC__91 } /* ccc=ccc91 */,
- { 1, 10058, 8409, 3, 2, UNI_NV__20 } /* nv=20 */,
- { 0, 4790, 3921, 13, 17, UNI_JG__MANICHAEANHUNDRED } /* joininggroup=manichaeanhundred */,
- { 0, 8449, 4375, 4, 16, UNI_MYANMAREXTB } /* blk=myanmarextendedb */,
- { 1, 8449, 2768, 4, 19, UNI_INEGYPTIANHIEROGLYPHS } /* blk=egyptianhieroglyphs */,
- { 1, 7603, 7828, 10, 1, UNI_IN__7 } /* presentin=7 */,
- { 0, 9782, 10474, 4, 3, UNI_AGE__6_DOT_2 } /* age=v62 */,
- { 2, 9659, 8481, 4, 4, UNI_DUPL } /* scx=dupl */,
- { 0, 9659, 9918, 4, 4, UNI_HANO } /* scx=hano */,
- { 6, 9383, 10186, 6, 4, UNI_QMARK } /* qmark=true */,
- { 3, 8449, 10046, 4, 4, UNI_INNEWA } /* blk=newa */,
- { 2, 8457, 8148, 6, 9, UNI_ARABICPFA } /* block=arabicpfa */,
- { 1, 8633, 9407, 7, 6, UNI_SC__THAA } /* script=thaana */,
- { 1, 6438, 18, 12, 1, UNI_JT__R } /* joiningtype=r */,
- { 1, 8457, 1502, 6, 24, UNI_DIACRITICALSFORSYMBOLS } /* block=combiningmarksforsymbols */,
- { 4, 1040, 0, 17, 0, UNI_ANCIENTGREEKMUSIC } /* ancientgreekmusic */,
- { 1, 6159, 9710, 13, 4, UNI_NV__1_SLASH_64 } /* numericvalue=1/64 */,
- { 0, 7475, 7713, 3, 4, UNI_WARA } /* sc=wara */,
- { 4, 8633, 9998, 7, 4, UNI_SC__LINB } /* script=linb */,
- { 1, 9215, 3, 6, 1, -UNI_XPOSIXALPHA } /* alpha=f */,
- { 2, 9990, 1022, 3, 2, UNI_LB__CP } /* lb=cp */,
- { 0, 6159, 9203, 13, 5, UNI_NV__80000 } /* numericvalue=80000 */,
- { 3, 8633, 8328, 7, 9, UNI_ORKH } /* script=oldturkic */,
- { 4, 3523, 4472, 18, 5, UNI_SYRC } /* scriptextensions=syriac */,
- { 0, 1564, 0, 9, 0, UNI__PERL_SURROGATE } /* surrogate */,
- { 7, 10158, 0, 4, 0, UNI_TAVT } /* tavt */,
- { 5, 10058, 7977, 3, 9, UNI_NV__11_SLASH_2 } /* nv=5.500e+00 */,
- { 4, 8633, 3109, 7, 8, UNI_CHER } /* script=cherokee */,
- { 6, 1598, 9499, 22, 5, UNI_INSC__BINDU } /* indicsyllabiccategory=bindu */,
- { 2, 185, 9335, 2, 6, UNI_LEPC } /* islepcha */,
- { 2, 7171, 36, 11, 1, UNI_SD } /* softdotted=t */,
- { 2, 3325, 0, 11, 0, UNI_GEORGIANSUP } /* georgiansup */,
- { 2, 3523, 1962, 17, 6, UNI_ZYYY } /* scriptextensions=common */,
- { 0, 9299, 986, 3, 17, UNI_INVS } /* isvariationselectors */,
- { 0, 7259, 7160, 10, 11, UNI_WB__SQ } /* wordbreak=singlequote */,
- { 1, 8748, 7751, 7, 2, UNI_CCC__11 } /* ccc=ccc11 */,
- { 1, 7603, 9735, 10, 3, UNI_IN__3 } /* presentin=3.0 */,
- { 0, 6159, 8022, 13, 9, UNI_NV__1_SLASH_160 } /* numericvalue=6.250e-03 */,
- { 1, 1250, 39, 3, 2, UNI_XPOSIXDIGIT } /* nt=de */,
- { 2, 8449, 8442, 5, 7, UNI_INBASSAVAH } /* blk=bassavah */,
- { 0, 9614, 531, 5, 5, UNI_NT__NU } /* nt=numeric */,
- { 2, 8633, 2768, 7, 19, UNI_EGYP } /* script=egyptianhieroglyphs */,
- { 0, 4878, 7073, 3, 10, UNI_MYANMAREXTB } /* inmyanmarextb */,
- { 9, 7603, 7783, 10, 1, UNI_IN__9 } /* presentin=9 */,
- { 0, 9659, 10178, 4, 4, UNI_TNSA } /* scx=tnsa */,
- { 5, 3451, 36, 18, 1, UNI__PERL_PATWS } /* patternwhitespace=t */,
- { 1, 7072, 0, 11, 0, UNI_MYANMAREXTB } /* myanmarextb */,
- { 8, 9659, 9970, 4, 4, UNI_KNDA } /* scx=knda */,
- { 8, 185, 7404, 3, 9, UNI_COMPATJAMO } /* iscompatjamo */,
- { 2, 7475, 9035, 3, 7, UNI_SC__PHAG } /* sc=phagspa */,
- { 0, 7603, 7842, 10, 3, UNI_IN__2 } /* presentin=2.0 */,
- { 1, 7481, 5331, 3, 6, UNI_KANASUP } /* iskanasup */,
- { 0, 6995, 6390, 10, 12, UNI_LB__HL } /* linebreak=hebrewletter */,
- { 2, 8457, 2050, 6, 22, UNI_MISCTECHNICAL } /* block=miscellaneoustechnical */,
- { 3, 8748, 10504, 4, 2, UNI_CCC__35 } /* ccc=35 */,
- { 3, 9215, 36, 6, 1, UNI_XPOSIXALPHA } /* alpha=t */,
- { 1, 58, 0, 2, 0, UNI_YI } /* yi */,
- { 1, 7475, 7127, 3, 11, UNI_HMNG } /* sc=pahawhhmong */,
- { 5, 9890, 46, 3, 3, UNI_DT__COM } /* dt=com */,
- { 0, 185, 5170, 2, 5, UNI_XPOSIXDIGIT } /* isdigit */,
- { 11, 3523, 3253, 17, 4, UNI_ETHI } /* scriptextensions=ethi */,
- { 1, 4790, 6055, 13, 13, UNI_JG__MANICHAEANNUN } /* joininggroup=manichaeannun */,
- { 0, 7610, 10474, 3, 3, UNI_IN__6_DOT_2 } /* in=v62 */,
- { 0, 8449, 633, 4, 30, UNI_CJKEXTD } /* blk=cjkunifiedideographsextensiond */,
- { 0, 9679, 1, 5, 1, -UNI_XIDC } /* xidc=n */,
- { 4, 3523, 2589, 17, 4, UNI_MONG } /* scriptextensions=mong */,
- { 1, 3523, 1283, 17, 4, UNI_KANA } /* scriptextensions=kana */,
- { 3, 4119, 7, 16, 1, UNI_C } /* generalcategory=c */,
- { 4, 8633, 10022, 7, 4, UNI_SC__MLYM } /* script=mlym */,
- { 1, 9504, 0, 5, 0, UNI_XPOSIXBLANK } /* blank */,
- { 0, 6198, 0, 12, 0, UNI_ALPHABETICPF } /* alphabeticpf */,
- { 4, 8449, 8569, 4, 8, UNI_INJAVANESE } /* blk=javanese */,
- { 1, 185, 4103, 2, 16, UNI_PF } /* isfinalpunctuation */,
- { 6, 1589, 3363, 11, 16, UNI_PI } /* category=initialpunctuation */,
- { 0, 4790, 7633, 13, 10, UNI_JG__REVERSEDPE } /* joininggroup=reversedpe */,
- { 1, 8457, 8292, 6, 9, UNI_INNEWTAILUE } /* block=newtailue */,
- { 0, 9782, 7932, 4, 3, UNI_AGE__4 } /* age=4.0 */,
- { 1, 9659, 6690, 4, 12, UNI_HUNG } /* scx=oldhungarian */,
- { 5, 3458, 10186, 11, 4, UNI_XPOSIXSPACE } /* whitespace=true */,
- { 1, 185, 1, 3, 1, UNI_CN } /* iscn */,
- { 0, 3523, 8481, 17, 8, UNI_DUPL } /* scriptextensions=duployan */,
- { 0, 8457, 383, 6, 33, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* block=supplementalsymbolsandpictographs */,
- { 4, 8449, 7683, 4, 10, UNI_SUPARROWSC } /* blk=suparrowsc */,
- { 2, 185, 10254, 2, 4, UNI_ZZZZ } /* iszzzz */,
- { 0, 3217, 26, 18, 1, UNI_EBASE } /* emojimodifierbase=y */,
- { 1, 6159, 9167, 13, 3, UNI_NV__300 } /* numericvalue=300 */,
- { 0, 10058, 7815, 3, 9, UNI_NV__1_SLASH_64 } /* nv=1.563e-02 */,
- { 6, 8310, 0, 9, 0, UNI_ITAL } /* olditalic */,
- { 0, 8449, 2328, 4, 14, UNI_MEETEIMAYEKEXT } /* blk=meeteimayekext */,
- { 0, 8457, 1430, 6, 24, UNI_ARABICPFA } /* block=arabicpresentationformsa */,
- { 10, 9782, 7304, 4, 3, UNI_AGE__5 } /* age=5.0 */,
- { 1, 185, 604, 3, 29, UNI_CJKEXTC } /* iscjkunifiedideographsextensionc */,
- { 0, 7475, 8930, 3, 7, UNI_MARC } /* sc=marchen */,
- { 0, 1598, 762, 22, 6, UNI_INSC__NUMBER } /* indicsyllabiccategory=number */,
- { 0, 8633, 10054, 7, 4, UNI_NSHU } /* script=nshu */,
- { 2, 3523, 4487, 17, 6, UNI_TANG } /* scriptextensions=tangut */,
- { 3, 4119, 48, 16, 1, UNI_M } /* generalcategory=m */,
- { 9, 3523, 9335, 17, 6, UNI_LEPC } /* scriptextensions=lepcha */,
- { 0, 3235, 36, 18, 1, UNI_EPRES } /* emojipresentation=t */,
- { 1, 7403, 0, 10, 0, UNI_COMPATJAMO } /* compatjamo */,
- { 0, 7475, 10094, 3, 4, UNI_PHNX } /* sc=phnx */,
- { 0, 10058, 10261, 3, 3, UNI_NV__1_SLASH_7 } /* nv=1/7 */,
- { 2, 8449, 5386, 4, 14, UNI_LATINEXTD } /* blk=latinextendedd */,
- { 2, 9589, 1243, 5, 4, UNI_ANY } /* isunicode */,
- { 16, 7475, 9854, 3, 4, UNI_SC__CPRT } /* sc=cprt */,
- { 1, 9950, 4860, 3, 3, UNI_JG__SAD } /* jg=sad */,
- { 1, 8748, 10269, 7, 2, UNI_CCC__31 } /* ccc=ccc31 */,
- { 4, 7443, 1059, 9, 2, -UNI_EXT } /* extender=no */,
- { 7, 7475, 4359, 3, 7, UNI_SC__MYMR } /* sc=myanmar */,
- { 0, 8633, 8355, 7, 4, UNI_PAUC } /* script=pauc */,
- { 0, 3463, 9549, 6, 5, -UNI_XPOSIXSPACE } /* space=false */,
- { 3, 9484, 0, 4, 0, UNI_BAMU } /* bamu */,
- { 1, 8804, 36, 7, 1, UNI_COMPEX } /* compex=t */,
- { 0, 6159, 9179, 13, 2, UNI_NV__43 } /* numericvalue=43 */,
- { 19, 7393, 0, 10, 0, UNI_CJKSTROKES } /* cjkstrokes */,
- { 0, 3523, 9126, 17, 4, UNI_TIRH } /* scriptextensions=tirh */,
- { 1, 8633, 3109, 7, 4, UNI_CHER } /* script=cher */,
- { 2, 10058, 9209, 3, 5, UNI_NV__90000 } /* nv=90000 */,
- { 0, 185, 3253, 2, 8, UNI_ETHI } /* isethiopic */,
- { 6, 10058, 7941, 3, 9, UNI_NV__5_SLASH_12 } /* nv=4.167e-01 */,
- { 4, 8449, 5750, 5, 6, UNI_BRAI } /* blk=braille */,
- { 0, 9028, 1, 7, 1, -UNI_PATSYN } /* patsyn=n */,
- { 4, 4331, 0, 10, 0, UNI_SM } /* mathsymbol */,
- { 1, 4423, 9479, 14, 5, UNI_SB__AT } /* sentencebreak=aterm */,
- { 0, 9470, 26, 4, 1, UNI_XPOSIXXDIGIT } /* hex=y */,
- { 5, 4199, 8601, 16, 8, UNI_IDENTIFIERTYPE__INCLUSION } /* identifiertype=inclusion */,
- { 2, 4119, 4103, 16, 16, UNI_PF } /* generalcategory=finalpunctuation */,
- { 0, 7475, 10234, 3, 4, UNI_SC__YI } /* sc=yiii */,
- { 1, 7475, 8433, 3, 4, UNI_BALI } /* sc=bali */,
- { 11, 3235, 3, 18, 1, -UNI_EPRES } /* emojipresentation=f */,
- { 1, 185, 10542, 2, 2, UNI_ZL } /* iszl */,
- { 0, 3523, 8481, 17, 4, UNI_DUPL } /* scriptextensions=dupl */,
- { 1, 9664, 0, 5, 0, UNI_TALE } /* taile */,
- { 0, 5807, 3344, 3, 3, UNI_IDSB } /* isidsb */,
- { 1, 7610, 7304, 3, 3, UNI_IN__5 } /* in=5.0 */,
- { 3, 8449, 5358, 4, 14, UNI_LATINEXTB } /* blk=latinextendedb */,
- { 2, 8449, 1279, 4, 26, UNI_KATAKANAEXT } /* blk=katakanaphoneticextensions */,
- { 0, 7423, 10186, 10, 4, UNI_DIA } /* diacritic=true */,
- { 1, 4790, 6065, 13, 3, UNI_JG__NUN } /* joininggroup=nun */,
- { 2, 8449, 9437, 4, 6, UNI_INYEZIDI } /* blk=yezidi */,
- { 0, 9257, 9549, 6, 5, -UNI_ECOMP } /* ecomp=false */,
- { 1, 3523, 9882, 17, 4, UNI_DIAK } /* scriptextensions=diak */,
- { 0, 1227, 9549, 26, 5, -UNI_DI } /* defaultignorablecodepoint=false */,
- { 0, 9822, 37, 3, 2, UNI_BC__EN } /* bc=en */,
- { 1, 7475, 416, 3, 4, UNI_EGYP } /* sc=egyp */,
- { 2, 185, 1692, 2, 23, UNI_GEOMETRICSHAPESEXT } /* isgeometricshapesextended */,
- { 0, 9878, 26, 4, 1, UNI_DIA } /* dia=y */,
- { 1, 8633, 9886, 7, 4, UNI_DSRT } /* script=dsrt */,
- { 0, 3466, 26, 3, 1, UNI_CE } /* ce=y */,
- { 0, 8457, 2101, 6, 4, UNI_INMODI } /* block=modi */,
- { 1, 9990, 6376, 3, 2, UNI_LB__WJ } /* lb=wj */,
- { 0, 1067, 10327, 24, 3, UNI_CCC__IS } /* canonicalcombiningclass=240 */,
- { 8, 8881, 3054, 3, 18, UNI_SUPARROWSC } /* issupplementalarrowsc */,
- { 5, 8547, 63, 6, 5, UNI_XPOSIXGRAPH } /* xposixgraph */,
- { 1, 8874, 5169, 7, 6, UNI_POSIXXDIGIT } /* isposixxdigit */,
- { 0, 10150, 0, 4, 0, UNI_TALU } /* talu */,
- { 4, 10130, 9043, 4, 6, UNI_SC__SHRD } /* sc=sharada */,
- { 0, 5018, 9396, 3, 5, UNI_TNSA } /* istangsa */,
- { 0, 1589, 9841, 9, 2, UNI_MC } /* category=mc */,
- { 0, 4119, 5638, 16, 14, UNI_MN } /* generalcategory=nonspacingmark */,
- { 0, 7603, 10206, 10, 4, UNI_IN__13 } /* presentin=v130 */,
- { 0, 9281, 1059, 6, 2, -UNI_GREXT } /* grext=no */,
- { 0, 7610, 9731, 3, 3, UNI_IN__2_DOT_1 } /* in=2.1 */,
- { 0, 10030, 0, 4, 0, UNI_MTEI } /* mtei */,
- { 5, 7475, 9664, 3, 5, UNI_SC__TALE } /* sc=taile */,
- { 2, 7610, 7904, 3, 2, UNI_IN__13 } /* in=13 */,
- { 0, 4878, 4360, 3, 6, UNI_INMYANMAR } /* inmyanmar */,
- { 0, 8457, 2920, 6, 19, UNI_MODIFIERTONELETTERS } /* block=modifiertoneletters */,
- { 0, 7603, 10366, 10, 3, UNI_IN__9 } /* presentin=9.0 */,
- { 1, 9141, 1041, 3, 16, UNI_ANCIENTGREEKMUSIC } /* isancientgreekmusic */,
- { 0, 10058, 7790, 3, 3, UNI_NV__500 } /* nv=500 */,
- { 1, 8902, 0, 7, 0, UNI_KALI } /* kayahli */,
- { 4, 1646, 17, 22, 1, UNI_BPT__O } /* bidipairedbrackettype=o */,
- { 0, 7603, 10438, 10, 3, UNI_IN__2 } /* presentin=v20 */,
- { 1, 10058, 7770, 3, 9, UNI_NV__1_SLASH_80 } /* nv=1.250e-02 */,
- { 1, 4955, 10498, 15, 3, UNI_DT__NONE } /* nfkdquickcheck=yes */,
- { 5, 9659, 8937, 4, 7, UNI_MULT } /* scx=multani */,
- { 15, 4003, 8515, 4, 6, UNI_INGUJARATI } /* ingujarati */,
- { 0, 9950, 10238, 3, 4, UNI_JG__ZAIN } /* jg=zain */,
- { 4, 8457, 3649, 6, 10, UNI_ALCHEMICAL } /* block=alchemical */,
- { 7, 9659, 2513, 4, 10, UNI_GLAG } /* scx=glagolitic */,
- { 0, 9659, 8593, 4, 8, UNI_MAHJ } /* scx=mahajani */,
- { 1, 10058, 8030, 3, 2, UNI_NV__36 } /* nv=36 */,
- { 1, 8449, 8434, 5, 7, UNI_INBALINESE } /* blk=balinese */,
- { 1, 6402, 10498, 12, 3, UNI_IDEO } /* ideographic=yes */,
- { 0, 3523, 8665, 17, 8, UNI_TFNG } /* scriptextensions=tifinagh */,
- { 5, 1589, 75, 9, 2, UNI_ME } /* category=me */,
- { 3, 9659, 2371, 5, 6, UNI_SINH } /* scx=sinhala */,
- { 1, 9782, 9722, 4, 4, UNI_AGE__11 } /* age=11.0 */,
- { 0, 8457, 4247, 6, 16, UNI_LINEARBSYLLABARY } /* block=linearbsyllabary */,
- { 0, 8748, 10207, 7, 3, UNI_CCC__130 } /* ccc=ccc130 */,
- { 0, 9659, 7216, 5, 10, UNI_SYLO } /* scx=sylotinagri */,
- { 2, 8944, 0, 6, 0, UNI_nchar_values_index } /* nchar= */,
- { 5, 2844, 945, 19, 1, UNI_GCB__V } /* hangulsyllabletype=v */,
- { 3, 6159, 7788, 13, 9, UNI_NV__3_SLASH_2 } /* numericvalue=1.500e+00 */,
- { 0, 3458, 1, 11, 1, -UNI_XPOSIXSPACE } /* whitespace=n */,
- { 6, 9822, 0, 4, 0, UNI_BC__B } /* bc=b */,
- { 0, 185, 3769, 3, 16, UNI_CYRILLICEXTC } /* iscyrillicextendedc */,
- { 0, 4878, 2940, 3, 11, UNI_MONGOLIANSUP } /* inmongoliansup */,
- { 1, 185, 5105, 2, 15, UNI_ZANB } /* iszanabazarsquare */,
- { 2, 7475, 8689, 3, 8, UNI_UGAR } /* sc=ugaritic */,
- { 5, 1598, 9619, 22, 5, UNI_INSC__NUKTA } /* indicsyllabiccategory=nukta */,
- { 3, 4955, 0, 15, 0, UNI_nfkdqc_values_index } /* nfkdquickcheck= */,
- { 0, 4878, 8938, 3, 6, UNI_INMULTANI } /* inmultani */,
- { 2, 4423, 529, 14, 2, UNI_SB__NU } /* sentencebreak=nu */,
- { 7, 8457, 2939, 6, 19, UNI_MONGOLIANSUP } /* block=mongoliansupplement */,
- { 4, 185, 2901, 2, 4, UNI_MERO } /* ismero */,
- { 3, 7481, 3219, 4, 2, UNI_KHOJ } /* iskhoj */,
- { 2, 9414, 3, 5, 1, -UNI_IDEO } /* ideo=f */,
- { 2, 7534, 1051, 4, 2, UNI_CAKM } /* iscakm */,
- { 1, 185, 5442, 2, 14, UNI_LISUSUP } /* islisusupplement */,
- { 7, 7610, 9722, 3, 4, UNI_IN__11 } /* in=11.0 */,
- { 1, 1598, 9140, 22, 7, UNI_INSC__VISARGA } /* indicsyllabiccategory=visarga */,
- { 3, 7603, 10202, 10, 4, UNI_IN__12_DOT_1 } /* presentin=v121 */,
- { 1, 9413, 26, 6, 1, UNI_UIDEO } /* uideo=y */,
- { 3, 8457, 8902, 6, 7, UNI_KALI } /* block=kayahli */,
- { 5, 10058, 5834, 3, 9, UNI_NV__100000000 } /* nv=100000000 */,
- { 0, 9554, 36, 4, 1, UNI_GCB__T } /* gcb=t */,
- { 8, 4790, 6510, 13, 12, UNI_JG__MALAYALAMLLA } /* joininggroup=malayalamlla */,
- { 1, 1620, 3056, 5, 16, UNI_SUPARROWSC } /* insupplementalarrowsc */,
- { 16, 8881, 814, 3, 29, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* issymbolsandpictographsextendeda */,
- { 0, 6159, 9173, 13, 5, UNI_NV__40000 } /* numericvalue=40000 */,
- { 0, 185, 1853, 3, 20, UNI_CWCM } /* ischangeswhencasemapped */,
- { 0, 9822, 24, 3, 1, UNI_BC__L } /* bc=l */,
- { 2, 8457, 8909, 6, 7, UNI_INLINEARA } /* block=lineara */,
- { 10, 8457, 7593, 6, 10, UNI_INPHOENICIAN } /* block=phoenician */,
- { 0, 7481, 531, 4, 3, UNI_KHMR } /* iskhmer */,
- { 8, 3523, 8355, 17, 4, UNI_PAUC } /* scriptextensions=pauc */,
- { 4, 8762, 0, 7, 0, UNI_CJKEXTB } /* cjkextb */,
- { 8, 8457, 8166, 7, 9, UNI_ASCII } /* block=basiclatin */,
- { 0, 10393, 46, 3, 2, UNI_CO } /* gc=co */,
- { 0, 9659, 8465, 4, 8, UNI_BOPO } /* scx=bopomofo */,
- { 2, 1598, 3145, 22, 18, UNI_INSC__CONSONANTSUBJOINED } /* indicsyllabiccategory=consonantsubjoined */,
- { 7, 7259, 3469, 10, 17, UNI_RI } /* wordbreak=regionalindicator */,
- { 3, 1918, 0, 22, 0, UNI_cwu_values_index } /* changeswhenuppercased= */,
- { 0, 8457, 6282, 6, 12, UNI_CYRILLICEXTA } /* block=cyrillicexta */,
- { 0, 8449, 1380, 4, 25, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* blk=symbolsandpictographsexta */,
- { 0, 10058, 9454, 3, 4, UNI_NV__1_SLASH_32 } /* nv=1/32 */,
- { 4, 9946, 9827, 3, 3, UNI_BHKS } /* isbhks */,
- { 4, 9830, 1, 4, 1, UNI_BPT__N } /* bpt=n */,
- { 2, 6234, 2553, 10, 11, UNI_BC__L } /* bidiclass=lefttoright */,
- { 1, 8457, 43, 6, 9, UNI_CJKCOMPAT } /* block=cjkcompat */,
- { 1, 7481, 8896, 3, 6, UNI_KNDA } /* iskannada */,
- { 0, 7475, 10118, 3, 4, UNI_RJNG } /* sc=rjng */,
- { 2, 3458, 36, 11, 1, UNI_XPOSIXSPACE } /* whitespace=t */,
- { 0, 10050, 0, 4, 0, UNI_NKO } /* nkoo */,
- { 2, 8633, 9649, 7, 5, UNI_RUNR } /* script=runic */,
- { 2, 1067, 10282, 24, 3, UNI_CCC__132 } /* canonicalcombiningclass=132 */,
- { 0, 8633, 8697, 7, 4, UNI_VITH } /* script=vith */,
- { 4, 6428, 5205, 3, 13, UNI_CJKCOMPATFORMS } /* incjkcompatforms */,
- { 1, 7610, 10441, 3, 3, UNI_IN__2_DOT_1 } /* in=v21 */,
- { 2, 8449, 5696, 8, 12, UNI_BOPOMOFOEXT } /* blk=bopomofoextended */,
- { 0, 8633, 1176, 7, 4, UNI_SC__HANG } /* script=hang */,
- { 3, 9063, 0, 4, 0, UNI_SOYO } /* soyo */,
- { 1, 7475, 9335, 3, 4, UNI_LEPC } /* sc=lepc */,
- { 4, 2371, 4762, 4, 13, UNI_INHANGUL } /* inhangulsyllables */,
- { 6, 2920, 0, 19, 0, UNI_MODIFIERTONELETTERS } /* modifiertoneletters */,
- { 0, 9954, 6738, 3, 12, UNI_JT__R } /* jt=rightjoining */,
- { 4, 8457, 2996, 6, 9, UNI_INSUNDANESE } /* block=sundanese */,
- { 4, 9659, 7433, 4, 10, UNI_DIAK } /* scx=divesakuru */,
- { 0, 6819, 0, 11, 0, UNI_CASEDLETTER } /* casedletter */,
- { 7, 1574, 5090, 24, 15, UNI_LOE } /* indicpositionalcategory=visualorderleft */,
- { 0, 9990, 429, 3, 2, UNI_LB__GL } /* lb=gl */,
- { 1, 9782, 7940, 4, 2, UNI_AGE__14 } /* age=14 */,
- { 0, 8449, 3683, 4, 17, UNI_UCAS } /* blk=canadiansyllabics */,
- { 5, 2371, 5317, 3, 13, UNI_HIGHSURROGATES } /* inhighsurrogates */,
- { 1, 8874, 63, 7, 5, UNI_POSIXGRAPH } /* isposixgraph */,
- { 0, 9534, 0, 4, 0, UNI_DOGR } /* dogr */,
- { 0, 3523, 4775, 17, 15, UNI_ARMI } /* scriptextensions=imperialaramaic */,
- { 3, 8457, 8585, 6, 8, UNI_KANAEXTB } /* block=kanaextb */,
- { 2, 7475, 5105, 3, 15, UNI_ZANB } /* sc=zanabazarsquare */,
- { 0, 185, 7039, 2, 11, UNI_MEDF } /* ismedefaidrin */,
- { 0, 8457, 6318, 6, 12, UNI_ETHIOPICEXTA } /* block=ethiopicexta */,
- { 3, 9559, 26, 5, 1, UNI_IDSB } /* idsb=y */,
- { 0, 1620, 7644, 3, 9, UNI_INSAURASHTRA } /* insaurashtra */,
- { 16, 8697, 0, 4, 0, UNI_VITH } /* vith */,
- { 0, 7420, 1716, 3, 5, UNI_HANG } /* ishangul */,
- { 0, 9574, 3072, 5, 19, UNI_INPC__TOPANDBOTTOMANDLEFT } /* inpc=topandbottomandleft */,
- { 0, 8633, 8529, 7, 8, UNI_SC__HIRA } /* script=hiragana */,
- { 2, 185, 8481, 2, 8, UNI_DUPL } /* isduployan */,
- { 1, 9890, 2363, 3, 3, UNI_DT__ISO } /* dt=iso */,
- { 6, 8449, 5204, 4, 14, UNI_CJKCOMPATFORMS } /* blk=cjkcompatforms */,
- { 1, 9014, 0, 4, 0, UNI_OSMA } /* osma */,
- { 1, 10246, 0, 4, 0, UNI_QAAI } /* zinh */,
- { 0, 1067, 10504, 24, 2, UNI_CCC__35 } /* canonicalcombiningclass=35 */,
- { 1, 1574, 1986, 4, 20, UNI_DIACRITICALSFORSYMBOLS } /* indiacriticalsforsymbols */,
- { 0, 8633, 7039, 7, 11, UNI_MEDF } /* script=medefaidrin */,
- { 1, 8449, 2202, 4, 8, UNI_INCYRILLIC } /* blk=cyrillic */,
- { 1, 3523, 9802, 17, 4, UNI_ARMN } /* scriptextensions=armn */,
- { 0, 8513, 0, 8, 0, UNI_GUJR } /* gujarati */,
- { 0, 3836, 0, 17, 0, UNI_identifierstatus_values_index } /* identifierstatus= */,
- { 2, 9659, 9239, 4, 6, UNI_CAKM } /* scx=chakma */,
- { 1, 9866, 1059, 4, 2, -UNI_CWU } /* cwu=no */,
- { 0, 10170, 0, 4, 0, UNI_THAI } /* thai */,
- { 3, 2371, 2808, 4, 17, UNI_JAMOEXTA } /* inhanguljamoextendeda */,
- { 2, 10058, 5834, 3, 6, UNI_NV__100000 } /* nv=100000 */,
- { 1, 6678, 0, 12, 0, UNI_nt_values_index } /* numerictype= */,
- { 1, 8457, 7733, 6, 10, UNI_YIRADICALS } /* block=yiradicals */,
- { 4, 8881, 7577, 3, 3, UNI_SOGD } /* issogd */,
- { 0, 10058, 10363, 3, 3, UNI_NV__7_SLASH_8 } /* nv=7/8 */,
- { 1, 1598, 4455, 22, 16, UNI_INSC__SYLLABLEMODIFIER } /* indicsyllabiccategory=syllablemodifier */,
- { 0, 8548, 7259, 5, 4, UNI_POSIXWORD } /* posixword */,
- { 2, 21, 8902, 2, 7, UNI_KALI } /* inkayahli */,
- { 0, 3523, 9064, 18, 3, UNI_SOYO } /* scriptextensions=soyo */,
- { 16, 9990, 5456, 3, 14, UNI_LB__BK } /* lb=mandatorybreak */,
- { 2, 9782, 10459, 4, 3, UNI_AGE__5 } /* age=v50 */,
- { 0, 7473, 5809, 10, 11, UNI_INSC__INVISIBLESTACKER } /* insc=invisiblestacker */,
- { 9, 8633, 8473, 7, 8, UNI_SC__BUGI } /* script=buginese */,
- { 4, 9659, 10242, 4, 4, UNI_ZANB } /* scx=zanb */,
- { 1, 8593, 0, 8, 0, UNI_MAHJ } /* mahajani */,
- { 2, 5190, 3, 14, 1, -UNI_CI } /* caseignorable=f */,
- { 0, 7603, 9, 10, 2, UNI_IN__NA } /* presentin=na */,
- { 0, 9028, 10186, 7, 4, UNI_PATSYN } /* patsyn=true */,
- { 0, 8457, 6450, 6, 5, UNI_INKHMER } /* block=khmer */,
- { 3, 4183, 0, 16, 0, UNI_HIGHPUSURROGATES } /* highpusurrogates */,
- { 12, 2363, 5001, 3, 14, UNI_PS } /* isopenpunctuation */,
- { 5, 9539, 10498, 5, 3, UNI_EMOD } /* emod=yes */,
- { 0, 8748, 8409, 4, 3, UNI_WB__EB } /* ccc=200 */,
- { 2, 9299, 986, 3, 27, UNI_VSSUP } /* isvariationselectorssupplement */,
- { 2, 1067, 7895, 24, 2, UNI_CCC__33 } /* canonicalcombiningclass=33 */,
- { 0, 21, 9317, 2, 6, UNI_KANBUN } /* inkanbun */,
- { 2, 8449, 114, 4, 25, UNI_DIACRITICALS } /* blk=combiningdiacriticalmarks */,
- { 10, 9401, 0, 6, 0, UNI_TELU } /* telugu */,
- { 0, 8173, 0, 11, 0, UNI_INBHAIKSUKI } /* inbhaiksuki */,
- { 1, 7475, 2939, 3, 9, UNI_SC__MONG } /* sc=mongolian */,
- { 2, 5190, 9549, 14, 5, -UNI_CI } /* caseignorable=false */,
- { 4, 9946, 1280, 3, 4, UNI_BATK } /* isbatak */,
- { 5, 8457, 7215, 6, 11, UNI_INSYLOTINAGRI } /* block=sylotinagri */,
- { 0, 1646, 0, 23, 0, UNI_BPT__C } /* bidipairedbrackettype=c */,
- { 1, 9659, 4775, 4, 15, UNI_ARMI } /* scx=imperialaramaic */,
- { 0, 6995, 126, 10, 2, UNI_LB__CR } /* linebreak=cr */,
- { 0, 7483, 0, 10, 0, UNI_KHAR } /* kharoshthi */,
- { 3, 9954, 7, 3, 1, UNI_JT__C } /* jt=c */,
- { 2, 8633, 7216, 8, 3, UNI_SC__SYLO } /* script=sylo */,
- { 1, 4119, 501, 16, 5, UNI_P } /* generalcategory=punct */,
- { 1, 10140, 0, 6, 0, UNI_TAGS } /* intags */,
- { 0, 185, 2513, 2, 20, UNI_GLAGOLITICSUP } /* isglagoliticsupplement */,
- { 2, 8457, 7683, 6, 10, UNI_SUPARROWSC } /* block=suparrowsc */,
- { 0, 1918, 26, 22, 1, UNI_CWU } /* changeswhenuppercased=y */,
- { 0, 1589, 2101, 9, 14, UNI_LM } /* category=modifierletter */,
- { 2, 8449, 6594, 4, 12, UNI_INMASARAMGONDI } /* blk=masaramgondi */,
- { 0, 9141, 81, 4, 33, UNI_ARABICMATH } /* isarabicmathematicalalphabeticsymbols */,
- { 0, 4119, 4391, 16, 16, UNI_PO } /* generalcategory=otherpunctuation */,
- { 0, 6726, 0, 12, 0, UNI_PLAYINGCARDS } /* playingcards */,
- { 7, 9950, 2265, 3, 21, UNI_JG__HANIFIROHINGYAKINNAYA } /* jg=hanifirohingyakinnaya */,
- { 0, 7475, 3325, 3, 4, UNI_SC__GEOR } /* sc=geor */,
- { 3, 3523, 4970, 17, 15, UNI_NARB } /* scriptextensions=oldnortharabian */,
- { 2, 8748, 10519, 4, 2, UNI_CCC__84 } /* ccc=84 */,
- { 0, 8457, 8705, 8, 8, UNI_BOXDRAWING } /* block=boxdrawing */,
- { 1, 901, 0, 11, 0, UNI_PHONETICEXT } /* phoneticext */,
- { 0, 10058, 7751, 3, 2, UNI_NV__11 } /* nv=11 */,
- { 0, 8449, 6852, 4, 6, UNI_DOMINO } /* blk=domino */,
- { 0, 185, 7083, 2, 4, UNI_NAND } /* isnand */,
- { 4, 1067, 7931, 27, 2, UNI_CCC__24 } /* canonicalcombiningclass=ccc24 */,
- { 2, 9554, 24, 4, 1, UNI_GCB__L } /* gcb=l */,
- { 0, 3523, 10226, 17, 4, UNI_XPEO } /* scriptextensions=xpeo */,
- { 0, 8633, 8665, 7, 8, UNI_TFNG } /* script=tifinagh */,
- { 1, 6234, 4407, 10, 16, UNI_BC__S } /* bidiclass=segmentseparator */,
- { 3, 7475, 9431, 3, 6, UNI_WCHO } /* sc=wancho */,
- { 2, 4790, 10372, 13, 3, UNI_JG__BEH } /* joininggroup=beh */,
- { 0, 3523, 2573, 17, 20, UNI_HMNP } /* scriptextensions=nyiakengpuachuehmong */,
- { 0, 7475, 8902, 3, 7, UNI_SC__KALI } /* sc=kayahli */,
- { 4, 4629, 3327, 4, 16, UNI_GEORGIANSUP } /* ingeorgiansupplement */,
- { 2, 603, 0, 30, 0, UNI_CJKEXTC } /* cjkunifiedideographsextensionc */,
- { 2, 6159, 10520, 13, 2, UNI_NV__49 } /* numericvalue=49 */,
- { 4, 10058, 8112, 3, 9, UNI_NV__11_SLASH_12 } /* nv=9.167e-01 */,
- { 0, 7473, 4610, 5, 15, UNI_INSC__CONSONANTMEDIAL } /* insc=consonantmedial */,
- { 1, 8457, 7533, 6, 10, UNI_MISCARROWS } /* block=miscarrows */,
- { 0, 8881, 7172, 3, 9, UNI_SD } /* issoftdotted */,
- { 0, 663, 0, 30, 0, UNI_CJKEXTE } /* cjkunifiedideographsextensione */,
- { 0, 7048, 188, 6, 30, UNI_MISCPICTOGRAPHS } /* inmiscellaneoussymbolsandpictographs */,
- { 3, 185, 783, 2, 16, UNI_ENCLOSEDALPHANUM } /* isenclosedalphanum */,
- { 0, 8449, 2673, 4, 19, UNI_ANCIENTGREEKNUMBERS } /* blk=ancientgreeknumbers */,
- { 6, 8457, 2787, 6, 19, UNI_ENCLOSEDALPHANUMSUP } /* block=enclosedalphanumsup */,
- { 0, 7610, 8004, 3, 3, UNI_IN__6_DOT_2 } /* in=6.2 */,
- { 1, 9659, 10078, 4, 4, UNI_OSGE } /* scx=osge */,
- { 5, 9994, 0, 4, 0, UNI_LINA } /* lina */,
- { 8, 8874, 1149, 3, 25, UNI_PCM } /* isprependedconcatenationmark */,
- { 0, 4790, 3938, 13, 17, UNI_JG__MANICHAEANTHAMEDH } /* joininggroup=manichaeanthamedh */,
- { 4, 8457, 4327, 6, 16, UNI_MISCMATHSYMBOLSA } /* block=miscmathsymbolsa */,
- { 0, 9990, 4928, 3, 2, UNI_LB__QU } /* lb=qu */,
- { 0, 4119, 1059, 16, 2, UNI_NO } /* generalcategory=no */,
- { 1, 21, 8895, 2, 7, UNI_INKANNADA } /* inkannada */,
- { 1, 7713, 0, 4, 0, UNI_WARA } /* wara */,
- { 2, 9659, 9846, 4, 4, UNI_CHRS } /* scx=chrs */,
- { 1, 9070, 7441, 7, 3, UNI_STERM } /* sterm=true */,
- { 0, 8449, 9464, 4, 5, UNI_INADLAM } /* blk=adlam */,
- { 0, 8449, 3034, 4, 19, UNI_SUPARROWSB } /* blk=supplementalarrowsb */,
- { 1, 8748, 10300, 4, 3, UNI_CCC__B } /* ccc=220 */,
- { 0, 8449, 1040, 4, 17, UNI_ANCIENTGREEKMUSIC } /* blk=ancientgreekmusic */,
- { 1, 8457, 4503, 6, 16, UNI_TANGUTSUP } /* block=tangutsupplement */,
- { 0, 185, 9389, 2, 6, UNI_RJNG } /* isrejang */,
- { 15, 3523, 9846, 17, 4, UNI_CHRS } /* scriptextensions=chrs */,
- { 0, 1741, 3254, 3, 7, UNI_INETHIOPIC } /* inethiopic */,
- { 2, 10393, 49, 3, 1, UNI_P } /* gc=p */,
- { 0, 5169, 0, 6, 0, UNI_XPOSIXXDIGIT } /* xdigit */,
- { 0, 9990, 6929, 3, 11, UNI_LB__IN } /* lb=inseperable */,
- { 1, 21, 3505, 2, 4, UNI_RUMI } /* inrumi */,
- { 0, 6428, 724, 3, 29, UNI_CJKEXTG } /* incjkunifiedideographsextensiong */,
- { 1, 4119, 1564, 16, 9, UNI__PERL_SURROGATE } /* generalcategory=surrogate */,
- { 0, 3523, 7713, 17, 4, UNI_WARA } /* scriptextensions=wara */,
- { 6, 9470, 10186, 4, 4, UNI_XPOSIXXDIGIT } /* hex=true */,
- { 0, 6428, 7405, 4, 8, UNI_COMPATJAMO } /* incompatjamo */,
- { 3, 6159, 7763, 13, 1, UNI_NV__2 } /* numericvalue=2 */,
- { 0, 1589, 38, 9, 2, UNI_XPOSIXDIGIT } /* category=nd */,
- { 0, 8449, 8481, 4, 8, UNI_INDUPLOYAN } /* blk=duployan */,
- { 0, 9946, 8474, 3, 7, UNI_BUGI } /* isbuginese */,
- { 1, 7610, 10453, 3, 3, UNI_IN__4 } /* in=v40 */,
- { 0, 3523, 8895, 17, 7, UNI_KNDA } /* scriptextensions=kannada */,
- { 1, 5301, 0, 4, 0, UNI_CHAM } /* cham */,
- { 0, 185, 3199, 2, 18, UNI_DEVANAGARIEXT } /* isdevanagariextended */,
- { 6, 9874, 10186, 4, 4, UNI_DEP } /* dep=true */,
- { 2, 8449, 2749, 4, 11, UNI_COUNTINGROD } /* blk=countingrod */,
- { 6, 9299, 10215, 3, 3, UNI_VAI } /* isvaii */,
- { 3, 9639, 0, 5, 0, UNI_OSGE } /* osage */,
- { 4, 4790, 10390, 13, 3, UNI_JG__GAF } /* joininggroup=gaf */,
- { 19, 9822, 2349, 3, 21, UNI_BC__PDI } /* bc=popdirectionalisolate */,
- { 1, 3523, 10054, 17, 4, UNI_NSHU } /* scriptextensions=nshu */,
- { 2, 185, 1807, 2, 13, UNI_ZNAMENNYMUSIC } /* isznamennymusic */,
- { 3, 7481, 5345, 3, 5, UNI_KANGXI } /* iskangxi */,
- { 0, 9950, 9112, 3, 7, UNI_JG__THINYEH } /* jg=thinyeh */,
- { 0, 9524, 26, 5, 1, UNI_CWCM } /* cwcm=y */,
- { 0, 118, 3855, 4, 15, UNI_INDICSIYAQNUMBERS } /* inindicsiyaqnumbers */,
- { 0, 1983, 0, 2, 0, UNI_SD } /* sd */,
- { 3, 6159, 10512, 13, 2, UNI_NV__45 } /* numericvalue=45 */,
- { 0, 8457, 1280, 7, 4, UNI_INBATAK } /* block=batak */,
- { 0, 185, 5886, 2, 13, UNI_XPOSIXDIGIT } /* isdecimalnumber */,
- { 4, 7475, 6390, 3, 6, UNI_HEBR } /* sc=hebrew */,
- { 3, 10002, 10186, 4, 4, UNI_LOE } /* loe=true */,
- { 5, 1330, 26, 25, 1, UNI_COMPEX } /* fullcompositionexclusion=y */,
- { 0, 6428, 3735, 3, 16, UNI_CYRILLICEXTA } /* incyrillicextendeda */,
- { 3, 5990, 0, 13, 0, UNI_ZL } /* lineseparator */,
- { 17, 5919, 0, 6, 0, UNI_ebase_values_index } /* ebase= */,
- { 0, 185, 7083, 2, 11, UNI_NAND } /* isnandinagari */,
- { 3, 4715, 3, 15, 1, UNI_EA__F } /* eastasianwidth=f */,
- { 0, 10393, 2453, 3, 20, UNI_PC } /* gc=connectorpunctuation */,
- { 1, 7475, 2644, 3, 4, UNI_SC__MAND } /* sc=mand */,
- { 0, 185, 5638, 2, 14, UNI_MN } /* isnonspacingmark */,
- { 0, 10058, 7869, 3, 9, UNI_NV__1_SLASH_40 } /* nv=2.500e-02 */,
- { 1, 185, 3785, 2, 17, UNI_ETHIOPICEXTA } /* isethiopicextendeda */,
- { 4, 8748, 9810, 4, 4, UNI_WB__EB } /* ccc=atbl */,
- { 4, 8457, 9126, 6, 7, UNI_INTIRHUTA } /* block=tirhuta */,
- { 1, 7603, 7752, 10, 3, UNI_IN__1_DOT_1 } /* presentin=1.1 */,
- { 0, 8633, 4985, 7, 15, UNI_SARB } /* script=oldsoutharabian */,
- { 6, 10393, 3361, 3, 18, UNI_PI } /* gc=initialpunctuation */,
- { 4, 10058, 9449, 3, 4, UNI_NV__1_SLASH_16 } /* nv=1/16 */,
- { 3, 8874, 10091, 3, 3, UNI_PHLP } /* isphlp */,
- { 0, 4119, 5899, 16, 13, UNI_ME } /* generalcategory=enclosingmark */,
- { 7, 8449, 8665, 4, 8, UNI_INTIFINAGH } /* blk=tifinagh */,
- { 0, 4423, 49, 15, 1, UNI_SB__SP } /* sentencebreak=sp */,
- { 0, 7475, 10246, 3, 4, UNI_SC__QAAI } /* sc=zinh */,
- { 4, 7423, 10498, 10, 3, UNI_DIA } /* diacritic=yes */,
- { 0, 8681, 0, 8, 0, UNI_UCASEXTA } /* ucasexta */,
- { 9, 2223, 36, 21, 1, UNI_EXTPICT } /* extendedpictographic=t */,
- { 0, 21, 5414, 2, 14, UNI_LATINEXTF } /* inlatinextendedf */,
- { 0, 6995, 374, 10, 2, UNI_LB__OP } /* linebreak=op */,
- { 0, 8633, 8657, 7, 8, UNI_SC__TAGB } /* script=tagbanwa */,
- { 6, 4135, 0, 16, 0, UNI_GEORGIANEXT } /* georgianextended */,
- { 1, 7475, 9437, 3, 4, UNI_SC__YEZI } /* sc=yezi */,
- { 1, 9579, 9107, 4, 5, UNI_INTAIVIET } /* intaiviet */,
- { 0, 6775, 10186, 11, 4, UNI_IDC } /* idcontinue=true */,
- { 4, 8457, 6852, 6, 11, UNI_DOMINO } /* block=dominotiles */,
- { 0, 7475, 3109, 3, 4, UNI_CHER } /* sc=cher */,
- { 0, 3523, 3904, 17, 4, UNI_MANI } /* scriptextensions=mani */,
- { 6, 10058, 9197, 3, 4, UNI_NV__7000 } /* nv=7000 */,
- { 0, 9574, 2639, 5, 14, UNI_INPC__BOTTOMANDRIGHT } /* inpc=bottomandright */,
- { 4, 6428, 8763, 3, 6, UNI_CJKEXTB } /* incjkextb */,
- { 20, 7270, 0, 10, 0, UNI_XIDS } /* xidstart=y */,
- { 0, 8633, 2433, 7, 20, UNI_HLUW } /* script=anatolianhieroglyphs */,
- { 4, 2202, 0, 8, 0, UNI_CYRL } /* cyrillic */,
- { 0, 9659, 1283, 4, 4, UNI_KANA } /* scx=kana */,
- { 0, 9659, 2644, 4, 4, UNI_MAND } /* scx=mand */,
- { 1, 843, 0, 22, 0, UNI_ENCLOSEDIDEOGRAPHICSUP } /* enclosedideographicsup */,
- { 1, 7475, 8529, 3, 4, UNI_SC__HIRA } /* sc=hira */,
- { 0, 9950, 4820, 3, 15, UNI_JG__MANICHAEANALEPH } /* jg=manichaeanaleph */,
- { 0, 8457, 6594, 6, 12, UNI_INMASARAMGONDI } /* block=masaramgondi */,
- { 0, 9950, 0, 3, 0, UNI_jg_values_index } /* jg= */,
- { 1, 8433, 0, 8, 0, UNI_BALI } /* balinese */,
- { 0, 1067, 7943, 24, 2, UNI_CCC__16 } /* canonicalcombiningclass=16 */,
- { 35, 1646, 786, 23, 4, UNI_BPT__C } /* bidipairedbrackettype=close */,
- { 2, 185, 5925, 2, 13, UNI_GREEKEXT } /* isgreekextended */,
- { 8, 8449, 6120, 4, 13, UNI_MAYANNUMERALS } /* blk=mayannumerals */,
- { 11, 9659, 2328, 4, 11, UNI_MTEI } /* scx=meeteimayek */,
- { 5, 10058, 9698, 3, 4, UNI_NV__1_SLASH_10 } /* nv=1/10 */,
- { 0, 185, 3505, 2, 4, UNI_RUMI } /* isrumi */,
- { 1, 8457, 8797, 6, 7, UNI_CJKEXTG } /* block=cjkextg */,
- { 22, 8633, 6693, 7, 4, UNI_HUNG } /* script=hung */,
- { 1, 9293, 48, 5, 1, UNI_PERM } /* isperm */,
- { 0, 10002, 1, 4, 1, -UNI_LOE } /* loe=n */,
- { 1, 185, 4215, 2, 6, UNI_LATIN1 } /* islatin1 */,
- { 6, 6159, 7905, 13, 9, UNI_NV__7_SLASH_2 } /* numericvalue=3.500e+00 */,
- { 13, 5018, 4304, 3, 3, UNI_TNSA } /* istnsa */,
- { 0, 783, 0, 16, 0, UNI_ENCLOSEDALPHANUM } /* enclosedalphanum */,
- { 2, 9519, 10498, 5, 3, UNI_CWCF } /* cwcf=yes */,
- { 7, 4805, 0, 15, 0, UNI_LOWERCASELETTER } /* lowercaseletter */,
- { 1, 5190, 10186, 14, 4, UNI_CI } /* caseignorable=true */,
- { 1, 7475, 9401, 3, 6, UNI_SC__TELU } /* sc=telugu */,
- { 2, 6428, 8777, 3, 6, UNI_CJKEXTD } /* incjkextd */,
- { 1, 6159, 9454, 13, 4, UNI_NV__1_SLASH_32 } /* numericvalue=1/32 */,
- { 0, 185, 6618, 2, 4, UNI_MEND } /* ismend */,
- { 16, 9141, 1456, 4, 22, UNI_ARABICPFB } /* isarabicpresentationformsb */,
- { 1, 1918, 10186, 22, 4, UNI_CWU } /* changeswhenuppercased=true */,
- { 0, 8965, 9609, 7, 5, UNI_NFCQC__M } /* nfkcqc=maybe */,
- { 0, 7293, 2413, 3, 5, UNI_YIJING } /* isyijing */,
- { 1, 9084, 0, 7, 0, UNI_SUPPUAB } /* suppuab */,
- { 0, 9659, 8346, 4, 4, UNI_PALM } /* scx=palm */,
- { 2, 7475, 6594, 3, 12, UNI_SC__GONM } /* sc=masaramgondi */,
- { 12, 7733, 0, 10, 0, UNI_YIRADICALS } /* yiradicals */,
- { 1, 6841, 1059, 11, 2, -UNI_DEP } /* deprecated=no */,
- { 2, 10393, 762, 3, 6, UNI_N } /* gc=number */,
- { 11, 8853, 10186, 7, 4, UNI_HYPHEN } /* hyphen=true */,
- { 0, 8449, 3785, 4, 11, UNI_ETHIOPICEXT } /* blk=ethiopicext */,
- { 0, 7475, 9922, 3, 4, UNI_HLUW } /* sc=hluw */,
- { 3, 8449, 5330, 4, 14, UNI_KANASUP } /* blk=kanasupplement */,
- { 16, 1589, 1624, 9, 2, UNI_PS } /* category=ps */,
- { 12, 2901, 0, 4, 0, UNI_MERO } /* mero */,
- { 0, 4790, 219, 13, 2, UNI_JG__PE } /* joininggroup=pe */,
- { 5, 6159, 5834, 13, 9, UNI_NV__100000000 } /* numericvalue=100000000 */,
- { 0, 8545, 501, 8, 5, UNI_XPOSIXPUNCT } /* isxposixpunct */,
- { 5, 10393, 4391, 3, 16, UNI_PO } /* gc=otherpunctuation */,
- { 1, 8449, 8895, 4, 7, UNI_INKANNADA } /* blk=kannada */,
- { 1, 5018, 9670, 3, 3, UNI_TAKR } /* istakr */,
- { 1, 8449, 1047, 4, 5, UNI_INGREEK } /* blk=greek */,
- { 1, 8457, 8417, 6, 8, UNI_INARMENIAN } /* block=armenian */,
- { 0, 8881, 8643, 4, 6, UNI_SPECIALS } /* isspecials */,
- { 4, 6159, 9454, 13, 5, UNI_NV__1_SLASH_320 } /* numericvalue=1/320 */,
- { 1, 2863, 9549, 19, 5, -UNI_IDST } /* idstrinaryoperator=false */,
- { 1, 8633, 4970, 7, 15, UNI_NARB } /* script=oldnortharabian */,
- { 1, 1589, 236, 9, 2, UNI_LO } /* category=lo */,
- { 0, 9141, 6199, 3, 11, UNI_ALPHABETICPF } /* isalphabeticpf */,
- { 1, 4790, 10138, 13, 4, UNI_JG__SHIN } /* joininggroup=shin */,
- { 0, 9934, 9, 4, 2, UNI_HST__NA } /* hst=na */,
- { 0, 7453, 1, 8, 1, -UNI_EXTPICT } /* extpict=n */,
- { 3, 8457, 6378, 6, 12, UNI_INGUNJALAGONDI } /* block=gunjalagondi */,
- { 0, 185, 1963, 3, 21, UNI_INDICNUMBERFORMS } /* iscommonindicnumberforms */,
- { 0, 8633, 10006, 7, 4, UNI_MEDF } /* script=medf */,
- { 9, 10058, 7788, 3, 9, UNI_NV__3_SLASH_2 } /* nv=1.500e+00 */,
- { 6, 8449, 4231, 4, 16, UNI_LINEARBIDEOGRAMS } /* blk=linearbideograms */,
- { 0, 7475, 9401, 3, 4, UNI_SC__TELU } /* sc=telu */,
- { 1, 8449, 3802, 4, 17, UNI_ETHIOPICEXTB } /* blk=ethiopicextendedb */,
- { 2, 21, 1734, 2, 4, UNI_JAMO } /* injamo */,
- { 2, 7475, 9910, 3, 4, UNI_SC__GUJR } /* sc=gujr */,
- { 0, 8965, 0, 8, 0, UNI_NFKCQC__N } /* nfkcqc=n */,
- { 0, 4878, 2330, 4, 9, UNI_INMEETEIMAYEK } /* inmeeteimayek */,
- { 3, 9659, 3870, 4, 17, UNI_KITS } /* scx=khitansmallscript */,
- { 0, 2202, 0, 11, 0, UNI_CYRILLICSUP } /* cyrillicsup */,
- { 8, 1589, 207, 9, 2, UNI_PI } /* category=pi */,
- { 2, 3523, 9323, 17, 4, UNI_KHOJ } /* scriptextensions=khoj */,
- { 18, 6234, 2882, 10, 19, UNI_BC__LRO } /* bidiclass=lefttorightoverride */,
- { 8, 8633, 2202, 7, 8, UNI_SC__CYRL } /* script=cyrillic */,
- { 7, 2244, 74, 21, 2, UNI_WB__EB } /* graphemeclusterbreak=em */,
- { 4, 9574, 7583, 5, 10, UNI_INPC__OVERSTRUCK } /* inpc=overstruck */,
- { 5, 9946, 5134, 3, 7, UNI_BAMUMSUP } /* isbamumsup */,
- { 1, 7475, 8355, 3, 4, UNI_PAUC } /* sc=pauc */,
- { 1, 8449, 1807, 4, 23, UNI_ZNAMENNYMUSIC } /* blk=znamennymusicalnotation */,
- { 1, 2244, 10540, 21, 2, UNI_GCB__XX } /* graphemeclusterbreak=xx */,
- { 8, 8457, 7563, 6, 10, UNI_INOLDPERSIAN } /* block=oldpersian */,
- { 0, 6995, 3469, 10, 17, UNI_RI } /* linebreak=regionalindicator */,
- { 0, 8633, 10150, 7, 4, UNI_TALU } /* script=talu */,
- { 6, 2223, 3, 21, 1, -UNI_EXTPICT } /* extendedpictographic=f */,
- { 1, 5018, 9092, 3, 6, UNI_TGLG } /* istagalog */,
- { 2, 7443, 10186, 9, 4, UNI_EXT } /* extender=true */,
- { 57, 9822, 460, 3, 2, UNI_BC__ES } /* bc=es */,
- { 5, 185, 6330, 2, 12, UNI_ETHIOPICEXTB } /* isethiopicextb */,
- { 0, 10014, 0, 4, 0, UNI_MERC } /* merc */,
- { 0, 7475, 10018, 3, 4, UNI_MIAO } /* sc=miao */,
- { 0, 6159, 9167, 13, 4, UNI_NV__3000 } /* numericvalue=3000 */,
- { 0, 8633, 2901, 7, 4, UNI_MERO } /* script=mero */,
- { 3, 9782, 7693, 4, 10, UNI_IN__NA } /* age=unassigned */,
- { 3, 4119, 942, 16, 10, UNI_CO } /* generalcategory=privateuse */,
- { 1, 7475, 9484, 3, 4, UNI_BAMU } /* sc=bamu */,
- { 0, 9263, 1059, 6, 2, -UNI_EMOJI } /* emoji=no */,
- { 7, 10058, 8004, 3, 9, UNI_NV__5_SLASH_8 } /* nv=6.250e-01 */,
- { 0, 185, 3425, 2, 8, UNI_DINGBATS } /* isdingbats */,
- { 0, 8633, 9050, 8, 6, UNI_SHAW } /* script=shavian */,
- { 0, 5018, 9120, 3, 6, UNI_TIBT } /* istibetan */,
- { 0, 1067, 10267, 27, 3, UNI_CCC__103 } /* canonicalcombiningclass=ccc103 */,
- { 10, 9874, 1059, 4, 2, -UNI_DEP } /* dep=no */,
- { 1, 7475, 3253, 3, 8, UNI_ETHI } /* sc=ethiopic */,
- { 4, 8457, 3559, 6, 11, UNI_TAIXUANJING } /* block=taixuanjing */,
- { 0, 9141, 15, 4, 2, UNI_ARAB } /* isarab */,
- { 1, 10058, 7764, 3, 2, UNI_NV__50 } /* nv=50 */,
- { 1, 9341, 26, 6, 1, UNI_XPOSIXLOWER } /* lower=y */,
- { 1, 4565, 0, 15, 0, UNI_ARABICEXTB } /* arabicextendedb */,
- { 1, 4119, 4331, 16, 10, UNI_SM } /* generalcategory=mathsymbol */,
- { 0, 10058, 9167, 3, 6, UNI_NV__300000 } /* nv=300000 */,
- { 8, 9659, 8832, 4, 4, UNI_GRAN } /* scx=gran */,
- { 2, 9659, 9098, 4, 7, UNI_LANA } /* scx=taitham */,
- { 0, 8449, 8818, 4, 7, UNI_INELBASAN } /* blk=elbasan */,
- { 2, 8449, 9629, 4, 5, UNI_INOGHAM } /* blk=ogham */,
- { 0, 9782, 0, 4, 0, UNI_age_values_index } /* age= */,
- { 2, 2391, 10498, 20, 3, UNI_TERM } /* terminalpunctuation=yes */,
- { 3, 1598, 4039, 22, 16, UNI_INSC__CANTILLATIONMARK } /* indicsyllabiccategory=cantillationmark */,
- { 7, 1598, 5806, 24, 14, UNI_INSC__INVISIBLESTACKER } /* indicsyllabiccategory=invisiblestacker */,
- { 7, 9283, 0, 4, 0, UNI_ext_values_index } /* ext= */,
- { 0, 6330, 0, 12, 0, UNI_ETHIOPICEXTB } /* ethiopicextb */,
- { 2, 8748, 10273, 7, 3, UNI_CCC__118 } /* ccc=ccc118 */,
- { 2, 8175, 0, 9, 0, UNI_BHKS } /* bhaiksuki */,
- { 0, 5000, 0, 15, 0, UNI_PS } /* openpunctuation */,
- { 1, 8449, 3904, 4, 10, UNI_INMANICHAEAN } /* blk=manichaean */,
- { 6, 4119, 632, 16, 2, UNI_XPOSIXCNTRL } /* generalcategory=cc */,
- { 0, 10058, 7995, 3, 9, UNI_NV__3_SLASH_5 } /* nv=6.000e-01 */,
- { 0, 3523, 8292, 17, 9, UNI_TALU } /* scriptextensions=newtailue */,
- { 0, 4790, 4850, 13, 15, UNI_JG__MANICHAEANSADHE } /* joininggroup=manichaeansadhe */,
- { 0, 8449, 480, 4, 32, UNI_IDEOGRAPHICSYMBOLS } /* blk=ideographicsymbolsandpunctuation */,
- { 0, 1067, 10519, 27, 2, UNI_CCC__84 } /* canonicalcombiningclass=ccc84 */,
- { 0, 4119, 1502, 16, 13, UNI_M } /* generalcategory=combiningmark */,
- { 1, 8449, 8310, 4, 9, UNI_INOLDITALIC } /* blk=olditalic */,
- { 8, 21, 9982, 2, 3, UNI_INLAO } /* inlao */,
- { 5, 7603, 7941, 10, 3, UNI_IN__4_DOT_1 } /* presentin=4.1 */,
- { 0, 9659, 10126, 4, 4, UNI_RUNR } /* scx=runr */,
- { 0, 2806, 0, 10, 0, UNI_JAMO } /* hanguljamo */,
- { 4, 8633, 9119, 7, 7, UNI_TIBT } /* script=tibetan */,
- { 1, 8457, 693, 6, 30, UNI_CJKEXTF } /* block=cjkunifiedideographsextensionf */,
- { 0, 10058, 9209, 3, 2, UNI_NV__90 } /* nv=90 */,
- { 1, 3523, 9790, 17, 4, UNI_AHOM } /* scriptextensions=ahom */,
- { 9, 8874, 502, 3, 4, UNI_P } /* ispunct */,
- { 1, 5190, 0, 13, 0, UNI_CI } /* caseignorable */,
- { 0, 185, 9882, 2, 4, UNI_DIAK } /* isdiak */,
- { 1, 7703, 1059, 10, 2, -UNI_XPOSIXUPPER } /* uppercase=no */,
- { 5469, 9524, 10186, 5, 4, UNI_CWCM } /* cwcm=true */,
- { 0, 1620, 353, 5, 30, UNI_SUPMATHOPERATORS } /* insupplementalmathematicaloperators */,
- { 0, 5860, 36, 13, 1, UNI_BIDIM } /* bidimirrored=t */,
- { 0, 9659, 9057, 5, 6, UNI_SIDD } /* scx=siddham */,
- { 1, 3325, 0, 4, 0, UNI_GEOR } /* geor */,
- { 0, 1589, 434, 9, 6, UNI_CF } /* category=format */,
- { 1, 7420, 6694, 3, 3, UNI_HUNG } /* ishung */,
- { 20, 9056, 0, 4, 0, UNI_SIDD } /* sidd */,
- { 2, 3235, 1059, 18, 2, -UNI_EPRES } /* emojipresentation=no */,
- { 15, 10381, 899, 3, 1, UNI_EA__W } /* ea=w */,
- { 0, 3523, 8697, 17, 8, UNI_VITH } /* scriptextensions=vithkuqi */,
- { 9, 9659, 9484, 4, 4, UNI_BAMU } /* scx=bamu */,
- { 0, 8457, 4439, 6, 16, UNI_SUPMATHOPERATORS } /* block=supmathoperators */,
- { 4, 8449, 1622, 4, 24, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* blk=supsymbolsandpictographs */,
- { 0, 185, 754, 3, 29, UNI_CUNEIFORMNUMBERS } /* iscuneiformnumbersandpunctuation */,
- { 0, 8449, 8148, 4, 9, UNI_ARABICPFA } /* blk=arabicpfa */,
- { 12, 9822, 2553, 3, 11, UNI_BC__L } /* bc=lefttoright */,
- { 1, 5246, 9549, 14, 5, -UNI_EMOD } /* emojimodifier=false */,
- { 2, 6159, 7763, 13, 2, UNI_NV__25 } /* numericvalue=25 */,
- { 2, 3523, 10150, 17, 4, UNI_TALU } /* scriptextensions=talu */,
- { 0, 1598, 4519, 22, 5, UNI_INSC__VOWEL } /* indicsyllabiccategory=vowel */,
- { 1, 1589, 3442, 9, 9, UNI_Z } /* category=separator */,
- { 1, 149, 0, 35, 0, UNI_DIACRITICALSSUP } /* combiningdiacriticalmarkssupplement */,
- { 2, 9299, 2503, 3, 3, UNI_VITH } /* isvith */,
- { 1, 8633, 8441, 7, 4, UNI_BASS } /* script=bass */,
- { 2, 8748, 18, 4, 1, UNI_CCC__R } /* ccc=r */,
- { 0, 2653, 443, 20, 2, UNI_VO__TR } /* verticalorientation=tr */,
- { 3, 3523, 6690, 17, 12, UNI_HUNG } /* scriptextensions=oldhungarian */,
- { 1, 8748, 5014, 4, 2, UNI_CCC__0 } /* ccc=nr */,
- { 1, 10058, 7896, 3, 9, UNI_NV__1_SLASH_3 } /* nv=3.333e-01 */,
- { 1, 1890, 0, 5, 0, UNI_CASED } /* cased */,
- { 1, 9934, 7006, 4, 11, UNI_LB__H3 } /* hst=lvtsyllable */,
- { 8, 8881, 3442, 7, 9, UNI_ZS } /* isspaceseparator */,
- { 1, 8457, 5428, 6, 14, UNI_LATINEXTG } /* block=latinextendedg */,
- { 1, 9862, 26, 4, 1, UNI_CWT } /* cwt=y */,
- { 2, 9659, 1279, 4, 8, UNI_KANA } /* scx=katakana */,
- { 1, 8457, 350, 6, 33, UNI_SUPMATHOPERATORS } /* block=supplementalmathematicaloperators */,
- { 8, 4878, 2330, 4, 12, UNI_MEETEIMAYEKEXT } /* inmeeteimayekext */,
- { 0, 9659, 9994, 4, 4, UNI_LINA } /* scx=lina */,
- { 1, 5736, 3, 14, 1, -UNI_QMARK } /* quotationmark=f */,
- { 1, 9659, 9133, 4, 7, UNI_ZZZZ } /* scx=unknown */,
- { 5, 5018, 8658, 3, 3, UNI_TAGB } /* istagb */,
- { 0, 9990, 10526, 3, 2, UNI_LB__H2 } /* lb=h2 */,
- { 3, 9561, 4391, 3, 5, UNI_SB__XX } /* sb=other */,
- { 1, 7534, 3702, 4, 15, UNI_AGHB } /* iscaucasianalbanian */,
- { 8, 3887, 0, 17, 0, UNI_LETTERLIKESYMBOLS } /* letterlikesymbols */,
- { 5, 7259, 109, 10, 2, UNI_WB__MB } /* wordbreak=mb */,
- { 0, 10058, 7763, 3, 1, UNI_NV__2 } /* nv=2 */,
- { 3, 3523, 9407, 17, 4, UNI_THAA } /* scriptextensions=thaa */,
- { 0, 1598, 5820, 22, 14, UNI_INSC__VOWELDEPENDENT } /* indicsyllabiccategory=voweldependent */,
- { 0, 9659, 9778, 4, 4, UNI_ADLM } /* scx=adlm */,
- { 0, 5482, 6122, 4, 11, UNI_MAYANNUMERALS } /* inmayannumerals */,
- { 0, 3523, 8310, 17, 9, UNI_ITAL } /* scriptextensions=olditalic */,
- { 4, 1047, 0, 5, 0, UNI_GREK } /* greek */,
- { 0, 7473, 0, 5, 0, UNI_insc_values_index } /* insc= */,
- { 1, 1918, 1059, 22, 2, -UNI_CWU } /* changeswhenuppercased=no */,
- { 4, 9946, 6474, 3, 12, UNI_BLOCKELEMENTS } /* isblockelements */,
- { 2, 6775, 0, 11, 0, UNI_idc_values_index } /* idcontinue= */,
- { 0, 8545, 7271, 3, 7, UNI_XIDS } /* isxidstart */,
- { 3, 6159, 9459, 13, 5, UNI_NV__11_SLASH_12 } /* numericvalue=11/12 */,
- { 5, 8457, 3379, 6, 9, UNI_LATINEXTA } /* block=latinexta */,
- { 1, 7048, 895, 6, 6, UNI_MISCARROWS } /* inmiscarrows */,
- { 0, 8633, 8521, 7, 8, UNI_SC__GURU } /* script=gurmukhi */,
- { 0, 8748, 7763, 7, 2, UNI_CCC__25 } /* ccc=ccc25 */,
- { 1, 10393, 5638, 3, 14, UNI_MN } /* gc=nonspacingmark */,
- { 0, 185, 9353, 2, 4, UNI_LYDI } /* islydi */,
- { 2, 8449, 4895, 4, 15, UNI_MISCPICTOGRAPHS } /* blk=miscpictographs */,
- { 10, 8457, 3734, 6, 17, UNI_CYRILLICEXTA } /* block=cyrillicextendeda */,
- { 0, 9782, 9735, 4, 3, UNI_AGE__3 } /* age=3.0 */,
- { 3, 7475, 9407, 3, 4, UNI_SC__THAA } /* sc=thaa */,
- { 16, 185, 2454, 3, 19, UNI_PC } /* isconnectorpunctuation */,
- { 0, 3523, 2202, 17, 8, UNI_CYRL } /* scriptextensions=cyrillic */,
- { 1, 3523, 79, 17, 4, UNI_ARAB } /* scriptextensions=arab */,
- { 0, 8457, 8727, 6, 7, UNI_INAVESTAN } /* block=avestan */,
- { 0, 2265, 0, 14, 0, UNI_ROHG } /* hanifirohingya */,
- { 0, 7453, 2004, 10, 3, -UNI_EXTPICT } /* extpict=false */,
- { 6, 6486, 0, 7, 0, UNI_MAHJONG } /* mahjong */,
- { 3, 10058, 5834, 3, 13, UNI_NV__1000000000000 } /* nv=1000000000000 */,
- { 4, 8881, 4472, 3, 8, UNI_SYRIACSUP } /* issyriacsup */,
- { 2, 10254, 0, 4, 0, UNI_ZZZZ } /* zzzz */,
- { 2, 7420, 8, 3, 2, UNI_HAN } /* ishan */,
- { 1, 10058, 7781, 3, 1, UNI_NV__4 } /* nv=4 */,
- { 4, 7420, 1177, 3, 3, UNI_HANG } /* ishang */,
- { 2, 9685, 9549, 4, 5, -UNI_IDS } /* ids=false */,
- { 3, 2844, 0, 19, 0, UNI_hst_values_index } /* hangulsyllabletype= */,
- { 5, 1250, 5886, 3, 7, UNI_XPOSIXDIGIT } /* nt=decimal */,
- { 0, 7610, 7932, 3, 3, UNI_IN__4 } /* in=4.0 */,
- { 2, 3523, 9098, 17, 7, UNI_LANA } /* scriptextensions=taitham */,
- { 4, 8881, 930, 3, 27, UNI_SUPPUAA } /* issupplementaryprivateuseareaa */,
- { 64182, 1067, 7828, 24, 1, UNI_CCC__7 } /* canonicalcombiningclass=7 */,
- { 3, 8881, 7577, 3, 6, UNI_SOGD } /* issogdian */,
- { 2, 1542, 3946, 4, 5, UNI_INGRANTHA } /* ingrantha */,
- { 6, 6234, 3487, 10, 18, UNI_BC__RLI } /* bidiclass=righttoleftisolate */,
- { 0, 8457, 8256, 6, 9, UNI_LATINEXTG } /* block=latinextg */,
- { 0, 1620, 960, 5, 25, UNI_SUPPUAB } /* insupplementaryprivateuseareab */,
- { 2, 8748, 8093, 4, 2, UNI_CCC__28 } /* ccc=28 */,
- { 1, 7603, 10459, 10, 3, UNI_IN__5 } /* presentin=v50 */,
- { 18, 10058, 7959, 3, 9, UNI_NV__3_SLASH_64 } /* nv=4.688e-02 */,
- { 0, 2653, 3613, 20, 18, UNI_VO__TU } /* verticalorientation=transformedupright */,
- { 4, 9659, 10054, 4, 4, UNI_NSHU } /* scx=nshu */,
- { 0, 4423, 785, 14, 2, UNI_SB__CL } /* sentencebreak=cl */,
- { 1, 6995, 10540, 10, 2, UNI_LB__XX } /* linebreak=xx */,
- { 19, 9659, 3904, 4, 10, UNI_MANI } /* scx=manichaean */,
- { 0, 10058, 9203, 3, 6, UNI_NV__800000 } /* nv=800000 */,
- { 0, 4524, 3201, 4, 16, UNI_DEVANAGARIEXT } /* indevanagariextended */,
- { 0, 6159, 5834, 13, 6, UNI_NV__100000 } /* numericvalue=100000 */,
- { 0, 8457, 480, 6, 18, UNI_IDEOGRAPHICSYMBOLS } /* block=ideographicsymbols */,
- { 3, 8449, 3415, 4, 18, UNI_ORNAMENTALDINGBATS } /* blk=ornamentaldingbats */,
- { 5, 9950, 7413, 3, 10, UNI_JG__DALATHRISH } /* jg=dalathrish */,
- { 8, 8449, 2202, 4, 11, UNI_CYRILLICSUP } /* blk=cyrillicsup */,
- { 0, 3523, 9335, 17, 4, UNI_LEPC } /* scriptextensions=lepc */,
- { 5, 7373, 4656, 10, 13, UNI_SC } /* category=currencysymbol */,
- { 46464, 10058, 9694, 3, 4, UNI_NV___MINUS_1_SLASH_2 } /* nv=-1/2 */,
- { 5, 10495, 139, 3, 2, UNI_WB__FO } /* wb=fo */,
- { 3, 2072, 1, 22, 1, -UNI__PERL_NCHAR } /* noncharactercodepoint=n */,
- { 0, 10058, 8409, 3, 3, UNI_NV__200 } /* nv=200 */,
- { 2, 7475, 10218, 3, 4, UNI_WCHO } /* sc=wcho */,
- { 0, 1067, 9619, 24, 5, UNI_CCC__7 } /* canonicalcombiningclass=nukta */,
- { 1, 4423, 1150, 15, 2, UNI_SB__SE } /* sentencebreak=sep */,
- { 0, 7475, 10006, 3, 4, UNI_MEDF } /* sc=medf */,
- { 1, 9574, 8356, 3, 8, UNI_INPAUCINHAU } /* inpaucinhau */,
- { 0, 7610, 7835, 3, 1, UNI_IN__8 } /* in=8 */,
- { 9, 8457, 4487, 6, 6, UNI_INTANGUT } /* block=tangut */,
- { 0, 7475, 10034, 3, 4, UNI_SC__MYMR } /* sc=mymr */,
- { 11, 185, 11, 2, 3, UNI_DIA } /* isdia */,
- { 1, 9659, 10110, 4, 4, UNI_QAAI } /* scx=qaai */,
- { 1, 9659, 9814, 4, 4, UNI_AVST } /* scx=avst */,
- { 0, 10002, 0, 3, 0, UNI_LOE } /* loe */,
- { 8, 3523, 9914, 17, 4, UNI_GURU } /* scriptextensions=guru */,
- { 18, 185, 4375, 2, 16, UNI_MYANMAREXTB } /* ismyanmarextendedb */,
- { 3, 8561, 0, 8, 0, UNI_JAMOEXTB } /* jamoextb */,
- { 1, 1067, 10207, 27, 3, UNI_CCC__130 } /* canonicalcombiningclass=ccc130 */,
- { 1, 7475, 8697, 3, 8, UNI_VITH } /* sc=vithkuqi */,
- { 8, 7453, 0, 8, 0, UNI_extpict_values_index } /* extpict= */,
- { 1, 5400, 0, 14, 0, UNI_LATINEXTE } /* latinextendede */,
- { 1, 21, 3651, 4, 8, UNI_ALCHEMICAL } /* inalchemical */,
- { 6, 9035, 0, 7, 0, UNI_PHAG } /* phagspa */,
- { 0, 9782, 7842, 4, 3, UNI_AGE__2 } /* age=2.0 */,
- { 0, 1620, 2998, 4, 7, UNI_INSUNDANESE } /* insundanese */,
- { 1, 8748, 6874, 4, 11, UNI_CCC__DB } /* ccc=doublebelow */,
- { 0, 8457, 3325, 6, 8, UNI_INGEORGIAN } /* block=georgian */,
- { 5, 1622, 0, 24, 0, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* supsymbolsandpictographs */,
- { 3, 6246, 1059, 12, 2, -UNI_BIDIC } /* bidicontrol=no */,
- { 3, 185, 5925, 2, 8, UNI_GREEKEXT } /* isgreekext */,
- { 0, 7473, 2692, 5, 19, UNI_INSC__BRAHMIJOININGNUMBER } /* insc=brahmijoiningnumber */,
- { 2, 1330, 0, 24, 0, UNI_COMPEX } /* fullcompositionexclusion */,
- { 8, 3109, 0, 11, 0, UNI_CHEROKEESUP } /* cherokeesup */,
- { 16, 10058, 9766, 3, 4, UNI_NV__3_SLASH_80 } /* nv=3/80 */,
- { 0, 9830, 785, 4, 5, UNI_BPT__C } /* bpt=close */,
- { 2, 6995, 5218, 10, 14, UNI_LB__SA } /* linebreak=complexcontext */,
- { 12, 1478, 0, 24, 0, UNI_CJKSYMBOLS } /* cjksymbolsandpunctuation */,
- { 4, 3199, 0, 13, 0, UNI_DEVANAGARIEXT } /* devanagariext */,
- { 1, 8457, 0, 6, 42, UNI_UCASEXT } /* block=unifiedcanadianaboriginalsyllabicsextended */,
- { 0, 7475, 8529, 3, 8, UNI_SC__HIRA } /* sc=hiragana */,
- { 1, 9554, 6367, 5, 11, UNI_WB__EB } /* gcb=glueafterzwj */,
- { 0, 8748, 7931, 4, 2, UNI_CCC__24 } /* ccc=24 */,
- { 3, 6159, 7841, 13, 2, UNI_NV__12 } /* numericvalue=12 */,
- { 0, 1067, 7783, 24, 1, UNI_CCC__9 } /* canonicalcombiningclass=9 */,
- { 2, 7610, 7763, 3, 1, UNI_IN__2 } /* in=2 */,
- { 4, 8741, 0, 7, 0, UNI_BRAI } /* braille */,
- { 0, 2863, 0, 3, 0, UNI_IDS } /* ids */,
- { 10, 6438, 6984, 12, 11, UNI_JT__L } /* joiningtype=leftjoining */,
- { 11, 8173, 5134, 3, 4, UNI_INBAMUM } /* inbamum */,
- { 1, 3523, 8916, 17, 7, UNI_MAKA } /* scriptextensions=makasar */,
- { 2, 7475, 9902, 3, 4, UNI_SC__GONM } /* sc=gonm */,
- { 3, 10058, 9185, 3, 5, UNI_NV__50000 } /* nv=50000 */,
- { 9, 1620, 3991, 4, 15, UNI_SUTTONSIGNWRITING } /* insuttonsignwriting */,
- { 1, 2863, 26, 19, 1, UNI_IDST } /* idstrinaryoperator=y */,
- { 0, 7475, 9534, 3, 5, UNI_SC__DOGR } /* sc=dogra */,
- { 0, 0, 0, 43, 0, UNI_UCASEXTA } /* unifiedcanadianaboriginalsyllabicsextendeda */,
- { 8, 9950, 790, 3, 3, UNI_JG__DAL } /* jg=dal */,
- { 0, 9141, 761, 4, 2, UNI_ARMN } /* isarmn */,
- { 2, 2363, 8321, 4, 7, UNI_PERM } /* isoldpermic */,
- { 0, 7475, 8916, 3, 7, UNI_MAKA } /* sc=makasar */,
- { 0, 9822, 1, 4, 1, UNI_BC__BN } /* bc=bn */,
- { 1, 1896, 1, 22, 1, -UNI_CWT } /* changeswhentitlecased=n */,
- { 5, 4790, 10408, 13, 3, UNI_JG__MIM } /* joininggroup=mim */,
- { 3, 9950, 9594, 3, 5, UNI_JG__KHAPH } /* jg=khaph */,
- { 7, 3458, 0, 10, 0, UNI_XPOSIXSPACE } /* whitespace */,
- { 1, 9071, 3, 5, 1, -UNI_TERM } /* term=f */,
- { 1, 7475, 9906, 3, 4, UNI_SC__GREK } /* sc=grek */,
- { 0, 8633, 8846, 7, 7, UNI_SC__HANO } /* script=hanunoo */,
- { 1, 1067, 10534, 24, 2, UNI_CCC__8 } /* canonicalcombiningclass=kv */,
- { 1, 8449, 2181, 4, 14, UNI_CJKRADICALSSUP } /* blk=cjkradicalssup */,
- { 0, 6234, 4580, 10, 15, UNI_BC__CS } /* bidiclass=commonseparator */,
- { 1, 185, 8593, 2, 8, UNI_MAHJ } /* ismahajani */,
- { 1, 8457, 2939, 6, 9, UNI_INMONGOLIAN } /* block=mongolian */,
- { 1, 7475, 10178, 3, 4, UNI_TNSA } /* sc=tnsa */,
- { 1, 6159, 9746, 13, 4, UNI_NV__15_SLASH_2 } /* numericvalue=15/2 */,
- { 0, 10378, 1059, 3, 2, -UNI_DI } /* di=no */,
- { 0, 7610, 7781, 3, 1, UNI_IN__4 } /* in=4 */,
- { 3, 8457, 3904, 6, 10, UNI_INMANICHAEAN } /* block=manichaean */,
- { 2, 2328, 0, 14, 0, UNI_MEETEIMAYEKEXT } /* meeteimayekext */,
- { 0, 21, 9431, 2, 6, UNI_INWANCHO } /* inwancho */,
- { 0, 6841, 0, 11, 0, UNI_dep_values_index } /* deprecated= */,
- { 20, 1067, 6863, 24, 11, UNI_CCC__DA } /* canonicalcombiningclass=doubleabove */,
- { 0, 8449, 2412, 4, 6, UNI_YIJING } /* blk=yijing */,
- { 0, 6995, 6375, 10, 3, UNI_LB__ZWJ } /* linebreak=zwj */,
- { 2, 3631, 1059, 18, 2, -UNI_VS } /* variationselector=no */,
- { 0, 8449, 1734, 4, 4, UNI_JAMO } /* blk=jamo */,
- { 2, 8881, 2098, 6, 18, UNI_MODIFIERLETTERS } /* isspacingmodifierletters */,
- { 0, 10378, 1, 3, 1, -UNI_DI } /* di=n */,
- { 0, 6995, 7723, 10, 10, UNI_LB__WJ } /* linebreak=wordjoiner */,
- { 0, 5912, 1, 13, 1, -UNI_GRBASE } /* graphemebase=n */,
- { 1, 9221, 0, 6, 0, UNI_bidic_values_index } /* bidic= */,
- { 0, 7420, 34, 3, 2, UNI_XPOSIXXDIGIT } /* ishex */,
- { 5, 9990, 5919, 3, 5, UNI_EBASE } /* lb=ebase */,
- { 3, 8457, 9063, 6, 7, UNI_INSOYOMBO } /* block=soyombo */,
- { 0, 9281, 10498, 6, 3, UNI_GREXT } /* grext=yes */,
- { 0, 4715, 8130, 15, 9, UNI_EA__A } /* eastasianwidth=ambiguous */,
- { 0, 7475, 3870, 3, 17, UNI_KITS } /* sc=khitansmallscript */,
- { 0, 3523, 8734, 17, 7, UNI_BENG } /* scriptextensions=bengali */,
- { 3, 10058, 7779, 3, 9, UNI_NV__1_SLASH_7 } /* nv=1.429e-01 */,
- { 1, 7475, 9898, 3, 4, UNI_SC__GONG } /* sc=gong */,
- { 1, 185, 1479, 3, 23, UNI_CJKSYMBOLS } /* iscjksymbolsandpunctuation */,
- { 9, 21, 5442, 2, 14, UNI_LISUSUP } /* inlisusupplement */,
- { 1, 8633, 8310, 7, 9, UNI_ITAL } /* script=olditalic */,
- { 3, 9890, 10222, 3, 4, UNI_EA__F } /* dt=wide */,
- { 2, 6428, 1504, 4, 22, UNI_DIACRITICALSFORSYMBOLS } /* incombiningmarksforsymbols */,
- { 0, 1734, 0, 4, 0, UNI_JAMO } /* jamo */,
- { 3, 4790, 4860, 13, 3, UNI_JG__SAD } /* joininggroup=sad */,
- { 4, 5482, 0, 12, 0, UNI_INMANICHAEAN } /* inmanichaean */,
- { 1, 10495, 10540, 3, 2, UNI_WB__XX } /* wb=xx */,
- { 1, 1620, 1406, 3, 24, UNI_SYMBOLSFORLEGACYCOMPUTING } /* insymbolsforlegacycomputing */,
- { 2, 9782, 10438, 4, 3, UNI_AGE__2 } /* age=v20 */,
- { 4, 2391, 9549, 20, 5, -UNI_TERM } /* terminalpunctuation=false */,
- { 0, 901, 0, 18, 0, UNI_PHONETICEXT } /* phoneticextensions */,
- { 0, 3181, 46, 18, 6, UNI_DT__COM } /* decompositiontype=compat */,
- { 1, 5807, 6776, 3, 9, UNI_IDC } /* isidcontinue */,
- { 20, 9858, 3, 4, 1, -UNI_CWL } /* cwl=f */,
- { 4, 1589, 222, 9, 2, UNI_CASEDLETTER } /* category=l_ */,
- { 0, 7475, 10154, 3, 4, UNI_SC__TAML } /* sc=taml */,
- { 1, 7603, 10360, 10, 3, UNI_IN__7 } /* presentin=7.0 */,
- { 0, 1589, 6462, 9, 12, UNI_NL } /* category=letternumber */,
- { 0, 9684, 1059, 5, 2, -UNI_XIDS } /* xids=no */,
- { 0, 6159, 9197, 13, 5, UNI_NV__70000 } /* numericvalue=70000 */,
- { 0, 2391, 0, 19, 0, UNI_TERM } /* terminalpunctuation */,
- { 5, 8449, 3253, 4, 18, UNI_ETHIOPICSUP } /* blk=ethiopicsupplement */,
- { 1, 9822, 6210, 3, 12, UNI_BC__AL } /* bc=arabicletter */,
- { 2, 9659, 9353, 4, 6, UNI_LYDI } /* scx=lydian */,
- { 0, 8457, 957, 6, 28, UNI_SUPPUAB } /* block=supplementaryprivateuseareab */,
- { 0, 49, 0, 1, 0, UNI_P } /* p */,
- { 3, 8449, 8762, 4, 7, UNI_CJKEXTB } /* blk=cjkextb */,
- { 0, 8804, 10186, 7, 4, UNI_COMPEX } /* compex=true */,
- { 0, 8449, 3127, 4, 18, UNI_HALFMARKS } /* blk=combininghalfmarks */,
- { 2, 1067, 7778, 24, 2, UNI_CCC__21 } /* canonicalcombiningclass=21 */,
- { 2, 9990, 5218, 3, 14, UNI_LB__SA } /* lb=complexcontext */,
- { 0, 9874, 26, 4, 1, UNI_DEP } /* dep=y */,
- { 3, 3469, 1, 18, 1, -UNI_RI } /* regionalindicator=n */,
- { 0, 8449, 1013, 4, 27, UNI_ALPHABETICPF } /* blk=alphabeticpresentationforms */,
- { 2, 10393, 3442, 3, 9, UNI_Z } /* gc=separator */,
- { 15, 9659, 9599, 4, 5, UNI_LIMB } /* scx=limbu */,
- { 4, 7475, 10030, 3, 4, UNI_MTEI } /* sc=mtei */,
- { 1, 9950, 6107, 3, 13, UNI_JG__MANICHAEANWAW } /* jg=manichaeanwaw */,
- { 0, 9685, 1059, 4, 2, -UNI_IDS } /* ids=no */,
- { 9, 3523, 2433, 17, 20, UNI_HLUW } /* scriptextensions=anatolianhieroglyphs */,
- { 0, 9574, 902, 3, 17, UNI_PHONETICEXT } /* inphoneticextensions */,
- { 1, 9659, 4472, 5, 5, UNI_SYRC } /* scx=syriac */,
- { 2, 8633, 4087, 7, 7, UNI_SC__CPRT } /* script=cypriot */,
- { 1, 3955, 10186, 17, 4, UNI_STERM } /* sentenceterminal=true */,
- { 0, 9866, 1, 4, 1, -UNI_CWU } /* cwu=n */,
- { 6, 4199, 6841, 15, 10, UNI_DEP } /* identifiertype=deprecated */,
- { 2, 185, 6852, 2, 6, UNI_DOMINO } /* isdomino */,
- { 1, 10393, 1564, 3, 9, UNI__PERL_SURROGATE } /* gc=surrogate */,
- { 0, 7603, 8004, 10, 3, UNI_IN__6_DOT_2 } /* presentin=6.2 */,
- { 5, 7420, 4152, 3, 15, UNI_HALFANDFULLFORMS } /* ishalfandfullforms */,
- { 1, 8449, 1502, 4, 24, UNI_DIACRITICALSFORSYMBOLS } /* blk=combiningmarksforsymbols */,
- { 0, 4790, 5792, 13, 10, UNI_JG__TEHMARBUTA } /* joininggroup=tehmarbuta */,
- { 2, 1589, 10544, 9, 2, UNI_ZP } /* category=zp */,
- { 2, 7643, 0, 4, 0, UNI_SAUR } /* saur */,
- { 4, 5018, 8666, 3, 7, UNI_TFNG } /* istifinagh */,
- { 3, 9659, 10050, 4, 3, UNI_NKO } /* scx=nko */,
- { 0, 21, 8577, 2, 8, UNI_KANAEXTA } /* inkanaexta */,
- { 0, 8449, 7733, 4, 10, UNI_YIRADICALS } /* blk=yiradicals */,
- { 4, 8457, 2181, 6, 14, UNI_CJKRADICALSSUP } /* block=cjkradicalssup */,
- { 2, 9227, 3, 6, 1, -UNI_BIDIM } /* bidim=f */,
- { 13, 9822, 2593, 3, 20, UNI_BC__PDF } /* bc=popdirectionalformat */,
- { 4, 8955, 785, 4, 28, UNI_ENCLOSEDALPHANUMSUP } /* inenclosedalphanumericsupplement */,
- { 3, 6402, 26, 12, 1, UNI_IDEO } /* ideographic=y */,
- { 0, 3442, 0, 9, 0, UNI_Z } /* separator */,
- { 9, 7475, 8292, 3, 9, UNI_TALU } /* sc=newtailue */,
- { 0, 6159, 9185, 13, 6, UNI_NV__500000 } /* numericvalue=500000 */,
- { 1, 7050, 0, 11, 0, UNI_MISCSYMBOLS } /* miscsymbols */,
- { 8, 2844, 7523, 19, 10, UNI_LB__H2 } /* hangulsyllabletype=lvsyllable */,
- { 0, 1334, 26, 21, 1, UNI_CE } /* compositionexclusion=y */,
- { 1, 8457, 5105, 6, 15, UNI_INZANABAZARSQUARE } /* block=zanabazarsquare */,
- { 1, 9822, 3289, 3, 18, UNI_BC__FSI } /* bc=firststrongisolate */,
- { 5, 6995, 6375, 10, 2, UNI_LB__ZW } /* linebreak=zw */,
- { 9, 7483, 0, 4, 0, UNI_KHAR } /* khar */,
- { 4, 9782, 7828, 4, 1, UNI_AGE__7 } /* age=7 */,
- { 0, 8449, 843, 4, 29, UNI_ENCLOSEDIDEOGRAPHICSUP } /* blk=enclosedideographicsupplement */,
- { 7, 9950, 5536, 3, 4, UNI_JG__KAPH } /* jg=kaph */,
- { 5, 3463, 3, 6, 1, -UNI_XPOSIXSPACE } /* space=f */,
- { 3, 2280, 1974, 3, 10, UNI_NUMBERFORMS } /* innumberforms */,
- { 0, 8825, 0, 4, 0, UNI_ELYM } /* elym */,
- { 0, 8449, 2370, 4, 21, UNI_SINHALAARCHAICNUMBERS } /* blk=sinhalaarchaicnumbers */,
- { 1, 1589, 296, 9, 2, UNI_SM } /* category=sm */,
- { 0, 5912, 0, 13, 0, UNI_grbase_values_index } /* graphemebase= */,
- { 0, 9554, 34, 4, 2, UNI_GCB__EX } /* gcb=ex */,
- { 8, 1067, 9810, 24, 4, UNI_WB__EB } /* canonicalcombiningclass=atbl */,
- { 1, 8449, 8681, 4, 7, UNI_UCASEXT } /* blk=ucasext */,
- { 0, 9950, 8649, 3, 8, UNI_JG__SWASHKAF } /* jg=swashkaf */,
- { 0, 7475, 8825, 3, 4, UNI_ELYM } /* sc=elym */,
- { 0, 7703, 1, 10, 1, -UNI_XPOSIXUPPER } /* uppercase=n */,
- { 5, 1067, 10324, 24, 3, UNI_CCC__DA } /* canonicalcombiningclass=234 */,
- { 0, 8457, 1761, 6, 23, UNI_SHORTHANDFORMATCONTROLS } /* block=shorthandformatcontrols */,
- { 1, 8748, 7940, 4, 2, UNI_CCC__14 } /* ccc=14 */,
- { 2, 8457, 2533, 6, 20, UNI_ININSCRIPTIONALPAHLAVI } /* block=inscriptionalpahlavi */,
- { 0, 7481, 5978, 3, 12, UNI_KANAEXTB } /* iskanaextendedb */,
- { 0, 185, 5428, 2, 14, UNI_LATINEXTG } /* islatinextendedg */,
- { 56, 8457, 901, 6, 18, UNI_PHONETICEXT } /* block=phoneticextensions */,
- { 1, 8633, 9902, 7, 4, UNI_SC__GONM } /* script=gonm */,
- { 7, 8449, 7593, 4, 10, UNI_INPHOENICIAN } /* blk=phoenician */,
- { 6, 8457, 8513, 6, 8, UNI_INGUJARATI } /* block=gujarati */,
- { 3, 9105, 0, 7, 0, UNI_TAVT } /* taiviet */,
- { 5, 21, 8909, 2, 7, UNI_INLINEARA } /* inlineara */,
- { 1, 185, 3199, 2, 4, UNI_DEVA } /* isdeva */,
- { 9, 3463, 1059, 6, 2, -UNI_XPOSIXSPACE } /* space=no */,
- { 2, 1852, 26, 22, 1, UNI_CWCM } /* changeswhencasemapped=y */,
- { 8, 9659, 9064, 5, 3, UNI_SOYO } /* scx=soyo */,
- { 0, 4745, 1, 15, 1, -UNI_GREXT } /* graphemeextend=n */,
- { 5, 8633, 4775, 7, 15, UNI_ARMI } /* script=imperialaramaic */,
- { 12, 8457, 6478, 5, 8, UNI_BLOCKELEMENTS } /* blockelements */,
- { 40, 7475, 9335, 3, 6, UNI_LEPC } /* sc=lepcha */,
- { 0, 9950, 6558, 3, 12, UNI_JG__MALAYALAMSSA } /* jg=malayalamssa */,
- { 1, 118, 5952, 3, 5, UNI_IPAEXT } /* inipaext */,
- { 17, 7610, 10459, 3, 3, UNI_IN__5 } /* in=v50 */,
- { 1, 185, 6318, 2, 12, UNI_ETHIOPICEXTA } /* isethiopicexta */,
- { 1, 8449, 8735, 5, 6, UNI_INBENGALI } /* blk=bengali */,
- { 0, 8748, 10315, 4, 3, UNI_CCC__A } /* ccc=230 */,
- { 3, 10393, 7693, 3, 10, UNI_CN } /* gc=unassigned */,
- { 0, 6282, 0, 12, 0, UNI_CYRILLICEXTA } /* cyrillicexta */,
- { 0, 9946, 5134, 3, 4, UNI_BAMU } /* isbamum */,
- { 3, 8633, 2573, 7, 20, UNI_HMNP } /* script=nyiakengpuachuehmong */,
- { 3, 2265, 0, 4, 0, UNI_HAN } /* hani */,
- { 0, 5018, 4488, 3, 15, UNI_TANGUTCOMPONENTS } /* istangutcomponents */,
- { 1, 1067, 3674, 24, 5, UNI_CCC__B } /* canonicalcombiningclass=below */,
- { 3, 9407, 0, 6, 0, UNI_THAA } /* thaana */,
- { 8, 8457, 8283, 6, 9, UNI_INNABATAEAN } /* block=nabataean */,
- { 11, 7475, 9014, 3, 7, UNI_OSMA } /* sc=osmanya */,
- { 0, 10130, 4472, 4, 5, UNI_SC__SYRC } /* sc=syriac */,
- { 1, 632, 0, 2, 0, UNI_XPOSIXCNTRL } /* cc */,
- { 0, 5807, 481, 3, 31, UNI_IDEOGRAPHICSYMBOLS } /* isideographicsymbolsandpunctuation */,
- { 0, 1589, 113, 9, 2, UNI_SC } /* category=sc */,
- { 12, 8748, 7841, 4, 2, UNI_CCC__12 } /* ccc=12 */,
- { 1, 8748, 7463, 4, 4, UNI_CCC__6 } /* ccc=hanr */,
- { 3, 8457, 9042, 6, 7, UNI_SC__SHRD } /* block=sharada */,
- { 2, 1598, 2473, 22, 20, UNI_INSC__CONSONANTPLACEHOLDER } /* indicsyllabiccategory=consonantplaceholder */,
- { 0, 8633, 9898, 7, 4, UNI_SC__GONG } /* script=gong */,
- { 0, 4745, 36, 15, 1, UNI_GREXT } /* graphemeextend=t */,
- { 3, 5167, 1059, 9, 2, -UNI_XPOSIXXDIGIT } /* hexdigit=no */,
- { 0, 10058, 7797, 3, 9, UNI_NV__3_SLASH_20 } /* nv=1.500e-01 */,
- { 2, 8881, 2997, 3, 18, UNI_SUNDANESESUP } /* issundanesesupplement */,
- { 0, 8449, 3853, 4, 17, UNI_INDICSIYAQNUMBERS } /* blk=indicsiyaqnumbers */,
- { 1, 1067, 24, 24, 1, UNI_CCC__L } /* canonicalcombiningclass=l */,
- { 0, 9782, 10354, 4, 3, UNI_AGE__6_DOT_1 } /* age=6.1 */,
- { 0, 1890, 10186, 6, 4, UNI_CASED } /* cased=true */,
- { 1, 1741, 3254, 3, 17, UNI_ETHIOPICSUP } /* inethiopicsupplement */,
- { 1, 8449, 2825, 4, 19, UNI_JAMOEXTB } /* blk=hanguljamoextendedb */,
- { 4, 1067, 10318, 24, 3, UNI_CCC__AR } /* canonicalcombiningclass=232 */,
- { 6, 7271, 1059, 8, 2, -UNI_IDS } /* idstart=no */,
- { 0, 8449, 3379, 4, 9, UNI_LATINEXTA } /* blk=latinexta */,
- { 1, 1175, 1, 26, 1, -UNI_CWKCF } /* changeswhennfkccasefolded=n */,
- { 1, 9659, 9407, 4, 6, UNI_THAA } /* scx=thaana */,
- { 9, 8633, 9126, 7, 4, UNI_SC__TIRH } /* script=tirh */,
- { 0, 6159, 8049, 13, 9, UNI_NV__15_SLASH_2 } /* numericvalue=7.500e+00 */,
- { 0, 9822, 8, 3, 2, UNI_BC__AN } /* bc=an */,
- { 7, 8457, 3253, 6, 11, UNI_ETHIOPICSUP } /* block=ethiopicsup */,
- { 1, 9990, 59, 3, 2, UNI_LB__ID } /* lb=id */,
- { 1, 4790, 4835, 13, 15, UNI_JG__MANICHAEANGIMEL } /* joininggroup=manichaeangimel */,
- { 0, 9287, 0, 4, 0, UNI_HATR } /* hatr */,
- { 0, 6428, 44, 3, 8, UNI_CJKCOMPAT } /* incjkcompat */,
- { 0, 448, 0, 11, 0, UNI_IDEO } /* ideographic */,
- { 2, 8457, 6016, 6, 9, UNI_INMALAYALAM } /* block=malayalam */,
- { 0, 5919, 3, 6, 1, -UNI_EBASE } /* ebase=f */,
- { 4, 2363, 9002, 4, 5, UNI_OLCK } /* isolchiki */,
- { 1, 8958, 0, 7, 0, UNI_COMPEX } /* nfcqc=n */,
- { 2, 6629, 8311, 3, 8, UNI_INOLDITALIC } /* inolditalic */,
- { 0, 8449, 8513, 4, 8, UNI_INGUJARATI } /* blk=gujarati */,
- { 4, 4524, 8813, 4, 5, UNI_DSRT } /* indeseret */,
- { 1, 8449, 663, 4, 30, UNI_CJKEXTE } /* blk=cjkunifiedideographsextensione */,
- { 4, 1896, 10498, 22, 3, UNI_CWT } /* changeswhentitlecased=yes */,
- { 4, 7475, 7383, 3, 10, UNI_CHRS } /* sc=chorasmian */,
- { 1, 10536, 0, 2, 0, UNI_CASEDLETTER } /* l& */,
- { 3, 9659, 2513, 4, 4, UNI_GLAG } /* scx=glag */,
- { 5, 8965, 10498, 7, 3, UNI_NFKCQC__Y } /* nfkcqc=yes */,
- { 1, 9554, 5805, 4, 2, UNI_LB__H2 } /* gcb=lv */,
- { 0, 8457, 9077, 6, 7, UNI_SUPPUAA } /* block=suppuaa */,
- { 0, 7703, 0, 10, 0, UNI_upper_values_index } /* uppercase= */,
- { 2, 185, 2768, 2, 19, UNI_EGYP } /* isegyptianhieroglyphs */,
- { 8, 10423, 10498, 3, 3, UNI_RI } /* ri=yes */,
- { 0, 8874, 132, 3, 3, UNI_PALM } /* ispalm */,
- { 1, 4790, 5494, 13, 4, UNI_JG__BETH } /* joininggroup=beth */,
- { 9, 9950, 5484, 3, 14, UNI_JG__MANICHAEANBETH } /* jg=manichaeanbeth */,
- { 1, 7475, 8283, 3, 9, UNI_NBAT } /* sc=nabataean */,
- { 3, 7475, 8593, 3, 8, UNI_SC__MAHJ } /* sc=mahajani */,
- { 0, 10495, 8265, 3, 9, UNI_WB__ML } /* wb=midletter */,
- { 5, 7475, 10098, 3, 4, UNI_MIAO } /* sc=plrd */,
- { 7, 7333, 0, 10, 0, UNI_ARABICEXTA } /* arabicexta */,
- { 6, 185, 1479, 3, 9, UNI_CJKSYMBOLS } /* iscjksymbols */,
- { 4, 7373, 0, 11, 0, UNI_XPOSIXCNTRL } /* category=cc */,
- { 0, 9850, 0, 4, 0, UNI_CPMN } /* cpmn */,
- { 0, 3523, 4487, 17, 4, UNI_TANG } /* scriptextensions=tang */,
- { 1, 8457, 783, 6, 30, UNI_ENCLOSEDALPHANUMSUP } /* block=enclosedalphanumericsupplement */,
- { 0, 3541, 0, 12, 0, UNI_SMALLKANAEXT } /* smallkanaext */,
- { 3, 8449, 4655, 4, 15, UNI_CURRENCYSYMBOLS } /* blk=currencysymbols */,
- { 3, 185, 6462, 2, 12, UNI_NL } /* isletternumber */,
- { 1, 8457, 5134, 7, 4, UNI_INBAMUM } /* block=bamum */,
- { 1, 8292, 0, 9, 0, UNI_TALU } /* newtailue */,
- { 1, 1598, 7613, 22, 10, UNI_INSC__PUREKILLER } /* indicsyllabiccategory=purekiller */,
- { 2, 2363, 7575, 4, 8, UNI_SOGO } /* isoldsogdian */,
- { 0, 8633, 8465, 7, 8, UNI_SC__BOPO } /* script=bopomofo */,
- { 0, 21, 3379, 2, 18, UNI_LATINEXTADDITIONAL } /* inlatinextadditional */,
- { 7, 3523, 10254, 17, 4, UNI_ZZZZ } /* scriptextensions=zzzz */,
- { 0, 1574, 62, 3, 4, UNI_INDOGRA } /* indogra */,
- { 0, 8633, 2997, 8, 8, UNI_SUND } /* script=sundanese */,
- { 24, 1, 0, 1, 0, UNI_N } /* n */,
- { 0, 8457, 3541, 6, 12, UNI_SMALLKANAEXT } /* block=smallkanaext */,
- { 1, 8748, 6951, 4, 11, UNI_CCC__8 } /* ccc=kanavoicing */,
- { 6, 3523, 3199, 17, 4, UNI_DEVA } /* scriptextensions=deva */,
- { 0, 9141, 9815, 3, 3, UNI_AVST } /* isavst */,
- { 1, 9524, 1059, 5, 2, -UNI_CWCM } /* cwcm=no */,
- { 1, 1589, 501, 9, 11, UNI_P } /* category=punctuation */,
- { 0, 8449, 6486, 4, 7, UNI_MAHJONG } /* blk=mahjong */,
- { 4, 2868, 29, 4, 4, UNI_INARABIC } /* inarabic */,
- { 1, 8633, 2939, 7, 9, UNI_SC__MONG } /* script=mongolian */,
- { 8, 1067, 10325, 27, 2, UNI_CCC__34 } /* canonicalcombiningclass=ccc34 */,
- { 0, 4640, 0, 15, 0, UNI_CONTROLPICTURES } /* controlpictures */,
- { 0, 8457, 6775, 6, 3, UNI_INIDC } /* block=idc */,
- { 5, 8173, 8735, 3, 6, UNI_INBENGALI } /* inbengali */,
- { 8, 185, 8238, 2, 9, UNI_LATINEXTD } /* islatinextd */,
- { 1, 2844, 6750, 19, 12, UNI_GCB__T } /* hangulsyllabletype=trailingjamo */,
- { 0, 1574, 3427, 4, 6, UNI_DINGBATS } /* indingbats */,
- { 2, 5951, 0, 13, 0, UNI_IPAEXT } /* ipaextensions */,
- { 4, 185, 4730, 2, 14, UNI_ECOMP } /* isemojicomponent */,
- { 9, 10058, 9163, 3, 2, UNI_NV__60 } /* nv=60 */,
- { 0, 8449, 1355, 4, 25, UNI_SUPERANDSUB } /* blk=superscriptsandsubscripts */,
- { 4, 9890, 9894, 3, 4, UNI_DT__FONT } /* dt=font */,
- { 0, 7420, 2611, 3, 3, UNI_HATR } /* ishatr */,
- { 2, 185, 8569, 2, 4, UNI_JAVA } /* isjava */,
- { 3, 8202, 0, 9, 0, UNI_QAAI } /* inherited */,
- { 1, 5344, 0, 14, 0, UNI_KANGXI } /* kangxiradicals */,
- { 1, 2244, 24, 21, 1, UNI_GCB__L } /* graphemeclusterbreak=l */,
- { 1, 9579, 5032, 4, 6, UNI_TAMILSUP } /* intamilsup */,
- { 1, 929, 0, 28, 0, UNI_SUPPUAA } /* supplementaryprivateuseareaa */,
- { 0, 8734, 0, 7, 0, UNI_BENG } /* bengali */,
- { 0, 3181, 9894, 18, 4, UNI_DT__FONT } /* decompositiontype=font */,
- { 8, 8457, 9105, 6, 7, UNI_INTAIVIET } /* block=taiviet */,
- { 1, 4006, 26, 17, 1, UNI_UIDEO } /* unifiedideograph=y */,
- { 3, 11, 0, 3, 0, UNI_DIA } /* dia */,
- { 6, 8457, 3415, 6, 18, UNI_ORNAMENTALDINGBATS } /* block=ornamentaldingbats */,
- { 2, 8633, 9802, 7, 4, UNI_ARMN } /* script=armn */,
- { 3, 7473, 1669, 5, 23, UNI_INSC__CONSONANTPRECEDINGREPHA } /* insc=consonantprecedingrepha */,
- { 9, 8633, 10030, 7, 4, UNI_MTEI } /* script=mtei */,
- { 0, 9269, 0, 6, 0, UNI_epres_values_index } /* epres= */,
- { 1, 9659, 9802, 4, 4, UNI_ARMN } /* scx=armn */,
- { 2, 1692, 0, 18, 0, UNI_GEOMETRICSHAPESEXT } /* geometricshapesext */,
- { 0, 1741, 8826, 3, 6, UNI_INELYMAIC } /* inelymaic */,
- { 1, 6234, 10387, 10, 3, UNI_BC__FSI } /* bidiclass=fsi */,
- { 4, 7475, 9826, 3, 4, UNI_BHKS } /* sc=bhks */,
- { 0, 6428, 754, 3, 15, UNI_CUNEIFORMNUMBERS } /* incuneiformnumbers */,
- { 3, 3523, 9064, 18, 6, UNI_SOYO } /* scriptextensions=soyombo */,
- { 3, 8874, 3, 3, 1, UNI_PF } /* ispf */,
- { 0, 3523, 1237, 18, 3, UNI_SORA } /* scriptextensions=sora */,
- { 10, 9561, 529, 3, 2, UNI_SB__NU } /* sb=nu */,
- { 0, 8449, 1094, 4, 11, UNI_ENCLOSEDCJK } /* blk=enclosedcjk */,
- { 15, 7534, 788, 4, 3, UNI_CASED } /* iscased */,
- { 5, 107, 0, 6, 0, UNI_S } /* symbol */,
- { 17, 10495, 6390, 3, 12, UNI_LB__HL } /* wb=hebrewletter */,
- { 8, 8633, 8569, 7, 4, UNI_SC__JAVA } /* script=java */,
- { 4, 1620, 1381, 3, 24, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* insymbolsandpictographsexta */,
- { 1, 2116, 0, 22, 0, UNI_TRANSPORTANDMAP } /* transportandmapsymbols */,
- { 3, 6159, 7764, 13, 2, UNI_NV__50 } /* numericvalue=50 */,
- { 2, 8355, 0, 9, 0, UNI_PAUC } /* paucinhau */,
- { 4, 8449, 8561, 4, 8, UNI_JAMOEXTB } /* blk=jamoextb */,
- { 1, 4790, 5, 13, 1, UNI_JG__E } /* joininggroup=e */,
- { 2, 2328, 0, 11, 0, UNI_MTEI } /* meeteimayek */,
- { 0, 1874, 3, 22, 1, -UNI_CWL } /* changeswhenlowercased=f */,
- { 5, 9564, 3, 5, 1, -UNI_IDST } /* idst=f */,
- { 2, 9890, 9359, 3, 6, UNI_DT__NAR } /* dt=narrow */,
- { 0, 4925, 9609, 14, 5, UNI_NFCQC__M } /* nfcquickcheck=maybe */,
- { 0, 6995, 2724, 10, 2, UNI_LB__BA } /* linebreak=ba */,
- { 13, 7603, 7904, 10, 2, UNI_IN__13 } /* presentin=13 */,
- { 0, 1067, 7940, 27, 2, UNI_CCC__14 } /* canonicalcombiningclass=ccc14 */,
- { 0, 4423, 73, 14, 2, UNI_SB__LE } /* sentencebreak=le */,
- { 11, 6995, 1201, 10, 26, UNI_LB__CJ } /* linebreak=conditionaljapanesestarter */,
- { 9, 8633, 9842, 7, 4, UNI_CANS } /* script=cans */,
- { 0, 1067, 41, 24, 2, UNI_CCC__DA } /* canonicalcombiningclass=da */,
- { 5, 8449, 3702, 4, 4, UNI_UCAS } /* blk=ucas */,
- { 0, 9659, 9850, 4, 4, UNI_CPMN } /* scx=cpmn */,
- { 0, 3523, 10122, 17, 4, UNI_ROHG } /* scriptextensions=rohg */,
- { 8, 7443, 0, 10, 0, -UNI_EXT } /* extender=f */,
- { 0, 9659, 10396, 5, 3, UNI_SHRD } /* scx=shrd */,
- { 0, 185, 2182, 3, 13, UNI_CJKRADICALSSUP } /* iscjkradicalssup */,
- { 3, 2868, 8150, 4, 7, UNI_ARABICPFA } /* inarabicpfa */,
- { 0, 3395, 0, 3, 0, UNI_ALL } /* all */,
- { 7, 9950, 6522, 3, 12, UNI_JG__MALAYALAMNGA } /* jg=malayalamnga */,
- { 7, 7603, 10194, 10, 3, UNI_IN__1_DOT_1 } /* presentin=v11 */,
- { 5, 6426, 26, 12, 1, UNI_JOINC } /* joincontrol=y */,
- { 8, 5167, 26, 9, 1, UNI_XPOSIXXDIGIT } /* hexdigit=y */,
- { 4, 3904, 0, 4, 0, UNI_MANI } /* mani */,
- { 8, 8473, 0, 8, 0, UNI_BUGI } /* buginese */,
- { 8, 9484, 69, 5, 10, UNI_BAMUMSUP } /* bamumsupplement */,
- { 0, 4878, 2102, 3, 3, UNI_INMODI } /* inmodi */,
- { 2, 9838, 0, 4, 0, UNI_CAKM } /* cakm */,
- { 0, 10495, 4391, 3, 5, UNI_WB__XX } /* wb=other */,
- { 1, 10058, 9173, 3, 2, UNI_NV__40 } /* nv=40 */,
- { 1, 9659, 9000, 4, 7, UNI_OLCK } /* scx=olchiki */,
- { 1, 8449, 872, 4, 29, UNI_MISCARROWS } /* blk=miscellaneoussymbolsandarrows */,
- { 7, 8449, 5680, 4, 14, UNI_PHONETICEXTSUP } /* blk=phoneticextsup */,
- { 0, 10393, 75, 3, 2, UNI_ME } /* gc=me */,
- { 5, 1807, 0, 23, 0, UNI_ZNAMENNYMUSIC } /* znamennymusicalnotation */,
- { 0, 6995, 448, 10, 11, UNI_LB__ID } /* linebreak=ideographic */,
- { 12, 1067, 7841, 27, 2, UNI_CCC__12 } /* canonicalcombiningclass=ccc12 */,
- { 0, 8633, 7216, 8, 10, UNI_SC__SYLO } /* script=sylotinagri */,
- { 0, 8457, 0, 6, 43, UNI_UCASEXTA } /* block=unifiedcanadianaboriginalsyllabicsextendeda */,
- { 21, 6159, 5834, 13, 11, UNI_NV__10000000000 } /* numericvalue=10000000000 */,
- { 8, 8457, 1734, 6, 4, UNI_JAMO } /* block=jamo */,
- { 0, 6995, 10524, 10, 2, UNI_LB__BK } /* linebreak=bk */,
- { 0, 10495, 5919, 3, 5, UNI_WB__EB } /* wb=ebase */,
- { 1, 9822, 25, 3, 1, UNI_BC__S } /* bc=s */,
- { 0, 8449, 6486, 4, 12, UNI_MAHJONG } /* blk=mahjongtiles */,
- { 3, 1620, 3542, 3, 17, UNI_SMALLKANAEXT } /* insmallkanaextension */,
- { 1, 8457, 5075, 6, 8, UNI_VEDICEXT } /* block=vedicext */,
- { 8, 59, 0, 4, 0, UNI_IDEO } /* ideo */,
- { 0, 185, 4088, 3, 6, UNI_CPRT } /* iscypriot */,
- { 1, 9659, 6378, 4, 12, UNI_GONG } /* scx=gunjalagondi */,
- { 14, 8449, 9323, 4, 6, UNI_INKHOJKI } /* blk=khojki */,
- { 2, 3109, 0, 4, 0, UNI_CHER } /* cher */,
- { 1, 5316, 0, 14, 0, UNI_HIGHSURROGATES } /* highsurrogates */,
- { 2, 9934, 8391, 4, 9, UNI_GCB__V } /* hst=voweljamo */,
- { 1, 185, 6594, 2, 12, UNI_GONM } /* ismasaramgondi */,
- { 3, 185, 8777, 3, 6, UNI_CJKEXTD } /* iscjkextd */,
- { 0, 8633, 9133, 7, 7, UNI_ZZZZ } /* script=unknown */,
- { 0, 2028, 26, 22, 1, UNI_LOE } /* logicalorderexception=y */,
- { 2, 8881, 1565, 3, 8, UNI__PERL_SURROGATE } /* issurrogate */,
- { 0, 9070, 3, 6, 1, -UNI_STERM } /* sterm=f */,
- { 0, 8457, 6450, 6, 12, UNI_KHMERSYMBOLS } /* block=khmersymbols */,
- { 10, 6159, 9167, 13, 2, UNI_NV__30 } /* numericvalue=30 */,
- { 2, 10058, 8031, 3, 9, UNI_NV__13_SLASH_2 } /* nv=6.500e+00 */,
- { 2, 4119, 5060, 16, 15, UNI_UPPERCASELETTER } /* generalcategory=uppercaseletter */,
- { 4, 9990, 23, 3, 2, UNI_LB__AL } /* lb=al */,
- { 1, 7423, 26, 10, 1, UNI_DIA } /* diacritic=y */,
- { 20, 9659, 0, 4, 0, UNI_scx_values_index } /* scx= */,
- { 0, 1852, 1059, 22, 2, -UNI_CWCM } /* changeswhencasemapped=no */,
- { 11, 7475, 9233, 3, 6, UNI_CARI } /* sc=carian */,
- { 22, 8457, 2328, 6, 11, UNI_INMEETEIMAYEK } /* block=meeteimayek */,
- { 7, 5018, 9408, 3, 5, UNI_THAA } /* isthaana */,
- { 3, 4119, 434, 16, 6, UNI_CF } /* generalcategory=format */,
- { 2, 1067, 8066, 27, 2, UNI_CCC__18 } /* canonicalcombiningclass=ccc18 */,
- { 5, 97, 0, 5, 0, UNI_XPOSIXALPHA } /* alpha */,
- { 41851, 9395, 0, 6, 0, UNI_TNSA } /* tangsa */,
- { 0, 1067, 8409, 24, 3, UNI_WB__EB } /* canonicalcombiningclass=200 */,
- { 3, 3523, 8513, 17, 8, UNI_GUJR } /* scriptextensions=gujarati */,
- { 0, 6995, 10528, 10, 2, UNI_LB__H3 } /* linebreak=h3 */,
- { 0, 6234, 6002, 10, 3, UNI_BC__RLO } /* bidiclass=rlo */,
- { 0, 8545, 6775, 3, 10, UNI_XIDC } /* isxidcontinue */,
- { 8, 185, 17, 3, 1, UNI_CO } /* isco */,
- { 4, 6234, 3892, 10, 3, UNI_BC__RLI } /* bidiclass=rli */,
- { 41, 9561, 139, 3, 2, UNI_SB__FO } /* sb=fo */,
- { 0, 8633, 9534, 7, 4, UNI_SC__DOGR } /* script=dogr */,
- { 0, 9529, 10186, 5, 4, UNI_DASH } /* dash=true */,
- { 0, 8449, 7215, 4, 11, UNI_INSYLOTINAGRI } /* blk=sylotinagri */,
- { 0, 185, 8763, 3, 6, UNI_CJKEXTB } /* iscjkextb */,
- { 0, 9946, 9510, 3, 4, UNI_BUHD } /* isbuhid */,
- { 17, 9659, 9599, 4, 4, UNI_LIMB } /* scx=limb */,
- { 4, 3523, 10042, 17, 4, UNI_NBAT } /* scriptextensions=nbat */,
- { 9, 8449, 2412, 4, 21, UNI_YIJING } /* blk=yijinghexagramsymbols */,
- { 0, 3523, 9437, 17, 4, UNI_YEZI } /* scriptextensions=yezi */,
- { 4, 8748, 2893, 4, 2, UNI_CCC__1 } /* ccc=ov */,
- { 0, 9283, 10186, 4, 4, UNI_EXT } /* ext=true */,
- { 7, 185, 6426, 2, 11, UNI_JOINC } /* isjoincontrol */,
- { 0, 7603, 10468, 10, 3, UNI_IN__6 } /* presentin=v60 */,
- { 3, 6159, 8030, 13, 2, UNI_NV__36 } /* numericvalue=36 */,
- { 0, 8633, 10218, 7, 4, UNI_WCHO } /* script=wcho */,
- { 0, 3523, 8473, 17, 8, UNI_BUGI } /* scriptextensions=buginese */,
- { 3, 8441, 0, 4, 0, UNI_BASS } /* bass */,
- { 0, 7475, 3253, 3, 4, UNI_ETHI } /* sc=ethi */,
- { 5, 185, 3217, 2, 13, UNI_EMOD } /* isemojimodifier */,
- { 1, 9407, 0, 4, 0, UNI_THAA } /* thaa */,
- { 2, 8449, 4700, 4, 15, UNI_DIACRITICALSSUP } /* blk=diacriticalssup */,
- { 3, 2244, 36, 21, 1, UNI_GCB__T } /* graphemeclusterbreak=t */,
- { 10, 8449, 5344, 4, 6, UNI_KANGXI } /* blk=kangxi */,
- { 0, 185, 6831, 3, 10, UNI_CPMN } /* iscyprominoan */,
- { 1, 21, 4231, 2, 16, UNI_LINEARBIDEOGRAMS } /* inlinearbideograms */,
- { 1, 10058, 9185, 3, 4, UNI_NV__5000 } /* nv=5000 */,
- { 16, 4006, 10186, 17, 4, UNI_UIDEO } /* unifiedideograph=true */,
- { 1, 3463, 219, 5, 4, UNI_XPOSIXSPACE } /* spaceperl */,
- { 37, 9257, 26, 6, 1, UNI_ECOMP } /* ecomp=y */,
- { 5, 9299, 8698, 3, 7, UNI_VITH } /* isvithkuqi */,
- { 5, 185, 8930, 2, 4, UNI_MARC } /* ismarc */,
- { 0, 7603, 7763, 10, 1, UNI_IN__2 } /* presentin=2 */,
- { 0, 10130, 7577, 4, 3, UNI_SC__SOGD } /* sc=sogd */,
- { 10, 185, 0, 4, 0, UNI_CE } /* isce */,
- { 0, 1598, 3717, 22, 17, UNI_INSC__CONSONANTPREFIXED } /* indicsyllabiccategory=consonantprefixed */,
- { 0, 7481, 0, 6, 0, UNI_KHAR } /* iskhar */,
- { 0, 2202, 0, 18, 0, UNI_CYRILLICSUP } /* cyrillicsupplement */,
- { 0, 10393, 107, 3, 6, UNI_S } /* gc=symbol */,
- { 0, 6841, 9549, 11, 5, -UNI_DEP } /* deprecated=false */,
- { 22, 9070, 1059, 6, 2, -UNI_STERM } /* sterm=no */,
- { 17, 9544, 0, 5, 0, -UNI_EXT } /* ext=f */,
- { 56593, 8457, 8355, 6, 9, UNI_INPAUCINHAU } /* block=paucinhau */,
- { 9, 9878, 9549, 4, 5, -UNI_DIA } /* dia=false */,
- { 0, 185, 85, 2, 4, UNI_MATH } /* ismath */,
- { 0, 8449, 2116, 4, 15, UNI_TRANSPORTANDMAP } /* blk=transportandmap */,
- { 6, 10393, 942, 3, 10, UNI_CO } /* gc=privateuse */,
- { 9, 10174, 0, 4, 0, UNI_TIBT } /* tibt */,
- { 9, 8449, 4215, 4, 9, UNI_LATIN1 } /* blk=latin1sup */,
- { 4, 9335, 0, 6, 0, UNI_LEPC } /* lepcha */,
- { 2, 9659, 9982, 4, 4, UNI_LAO } /* scx=laoo */,
- { 16, 8457, 7393, 6, 10, UNI_CJKSTROKES } /* block=cjkstrokes */,
- { 1, 8449, 7292, 4, 11, UNI_YISYLLABLES } /* blk=yisyllables */,
- { 4, 1896, 0, 21, 0, UNI_CWT } /* changeswhentitlecased */,
- { 0, 185, 8832, 2, 7, UNI_GRAN } /* isgrantha */,
- { 1, 185, 634, 3, 29, UNI_CJKEXTD } /* iscjkunifiedideographsextensiond */,
- { 8, 185, 10546, 2, 2, UNI_ZS } /* iszs */,
- { 5, 8457, 3505, 6, 4, UNI_RUMI } /* block=rumi */,
- { 1, 10393, 2101, 3, 14, UNI_LM } /* gc=modifierletter */,
- { 3, 7171, 10186, 11, 4, UNI_SD } /* softdotted=true */,
- { 0, 3463, 1, 6, 1, -UNI_XPOSIXSPACE } /* space=n */,
- { 2, 5736, 9549, 14, 5, -UNI_QMARK } /* quotationmark=false */,
- { 16, 480, 0, 18, 0, UNI_IDEOGRAPHICSYMBOLS } /* ideographicsymbols */,
- { 11, 5162, 1, 14, 1, -UNI_POSIXXDIGIT } /* asciihexdigit=n */,
- { 1, 21, 5977, 2, 13, UNI_KANAEXTB } /* inkanaextendedb */,
- { 0, 3523, 9850, 17, 4, UNI_CPMN } /* scriptextensions=cpmn */,
- { 0, 7603, 7781, 10, 1, UNI_IN__4 } /* presentin=4 */,
- { 5, 10058, 7778, 3, 2, UNI_NV__21 } /* nv=21 */,
- { 1, 185, 7, 3, 1, UNI_XPOSIXCNTRL } /* iscc */,
- { 0, 6159, 7842, 13, 9, UNI_NV__1_SLASH_5 } /* numericvalue=2.000e-01 */,
- { 0, 9782, 10471, 4, 3, UNI_AGE__6_DOT_1 } /* age=v61 */,
- { 0, 4790, 2711, 13, 19, UNI_JG__BURUSHASKIYEHBARREE } /* joininggroup=burushaskiyehbarree */,
- { 0, 9141, 9787, 3, 3, UNI_AGHB } /* isaghb */,
- { 8, 3466, 1, 3, 1, -UNI_CE } /* ce=n */,
- { 1, 4790, 5498, 13, 14, UNI_JG__MANICHAEANFIVE } /* joininggroup=manichaeanfive */,
- { 0, 7603, 10480, 10, 3, UNI_IN__7 } /* presentin=v70 */,
- { 0, 9974, 0, 4, 0, UNI_KTHI } /* kthi */,
- { 0, 7603, 10453, 10, 3, UNI_IN__4 } /* presentin=v40 */,
- { 11, 2418, 0, 3, 0, UNI_XPOSIXXDIGIT } /* hex */,
- { 6, 6428, 1964, 4, 20, UNI_INDICNUMBERFORMS } /* incommonindicnumberforms */,
- { 2, 8943, 3111, 4, 9, UNI_CHEROKEESUP } /* incherokeesup */,
- { 0, 5075, 0, 8, 0, UNI_VEDICEXT } /* vedicext */,
- { 1, 9470, 3, 4, 1, -UNI_XPOSIXXDIGIT } /* hex=f */,
- { 1, 5018, 8658, 3, 7, UNI_TAGB } /* istagbanwa */,
- { 0, 8457, 2370, 6, 21, UNI_SINHALAARCHAICNUMBERS } /* block=sinhalaarchaicnumbers */,
- { 0, 8449, 1692, 4, 18, UNI_GEOMETRICSHAPESEXT } /* blk=geometricshapesext */,
- { 7, 7293, 7293, 3, 10, UNI_YISYLLABLES } /* isyisyllables */,
- { 0, 5288, 0, 14, 0, UNI_INGREEK } /* greekandcoptic */,
- { 0, 8457, 2749, 6, 11, UNI_COUNTINGROD } /* block=countingrod */,
- { 31, 3217, 3, 18, 1, -UNI_EBASE } /* emojimodifierbase=f */,
- { 2, 9659, 753, 4, 9, UNI_XSUX } /* scx=cuneiform */,
- { 0, 9685, 10498, 4, 3, UNI_IDS } /* ids=yes */,
- { 0, 3523, 9826, 17, 4, UNI_BHKS } /* scriptextensions=bhks */,
- { 2, 6159, 8013, 13, 9, UNI_NV__1_SLASH_16 } /* numericvalue=6.250e-02 */,
- { 2, 3523, 5301, 17, 4, UNI_CHAM } /* scriptextensions=cham */,
- { 6, 8633, 8818, 7, 7, UNI_ELBA } /* script=elbasan */,
- { 1, 185, 9353, 2, 6, UNI_LYDI } /* islydian */,
- { 2, 8958, 10498, 6, 3, UNI_NFCQC__Y } /* nfcqc=yes */,
- { 8, 8748, 5834, 7, 2, UNI_CCC__10 } /* ccc=ccc10 */,
- { 0, 10058, 9739, 3, 3, UNI_NV__3_SLASH_2 } /* nv=3/2 */,
- { 0, 8449, 7182, 4, 11, UNI_INSORASOMPENG } /* blk=sorasompeng */,
- { 2, 8633, 3325, 7, 4, UNI_SC__GEOR } /* script=geor */,
- { 0, 9679, 26, 5, 1, UNI_XIDC } /* xidc=y */,
- { 8, 10066, 0, 4, 0, UNI_OLCK } /* olck */,
- { 8, 8748, 9180, 4, 2, UNI_CCC__32 } /* ccc=32 */,
- { 2, 9946, 6235, 3, 4, UNI_BIDIC } /* isbidic */,
- { 0, 7473, 5274, 5, 14, UNI_INSC__GEMINATIONMARK } /* insc=geminationmark */,
- { 0, 7475, 1962, 3, 6, UNI_SC__ZYYY } /* sc=common */,
- { 6, 9954, 6940, 3, 11, UNI_JT__C } /* jt=joincausing */,
- { 8, 1227, 1, 26, 1, -UNI_DI } /* defaultignorablecodepoint=n */,
- { 0, 9684, 1, 5, 1, -UNI_XIDS } /* xids=n */,
- { 2, 8804, 26, 7, 1, UNI_COMPEX } /* compex=y */,
- { 17, 4790, 2721, 13, 9, UNI_JG__YEHBARREE } /* joininggroup=yehbarree */,
- { 2, 5030, 0, 15, 0, UNI_TAMILSUP } /* tamilsupplement */,
- { 0, 7603, 9731, 10, 3, UNI_IN__2_DOT_1 } /* presentin=2.1 */,
- { 2, 8449, 6714, 4, 12, UNI_PHAISTOS } /* blk=phaistosdisc */,
- { 1, 8457, 3053, 6, 19, UNI_SUPARROWSC } /* block=supplementalarrowsc */,
- { 1, 185, 10242, 2, 4, UNI_ZANB } /* iszanb */,
- { 20, 8457, 10170, 6, 4, UNI_INTHAI } /* block=thai */,
- { 1, 7061, 0, 11, 0, UNI_MYANMAREXTA } /* myanmarexta */,
- { 5, 7171, 0, 10, 0, UNI_SD } /* softdotted */,
- { 1, 8881, 7216, 3, 3, UNI_SYLO } /* issylo */,
- { 2, 1334, 10498, 21, 3, UNI_CE } /* compositionexclusion=yes */,
- { 0, 8545, 5169, 8, 6, UNI_XPOSIXXDIGIT } /* isxposixxdigit */,
- { 33, 9890, 4619, 3, 6, UNI_DT__MED } /* dt=medial */,
- { 2, 10162, 0, 4, 0, UNI_TFNG } /* tfng */,
- { 14, 4119, 4805, 16, 15, UNI_LOWERCASELETTER } /* generalcategory=lowercaseletter */,
- { 0, 5680, 0, 14, 0, UNI_PHONETICEXTSUP } /* phoneticextsup */,
- { 0, 9269, 9549, 6, 5, -UNI_EPRES } /* epres=false */,
- { 0, 185, 6120, 2, 13, UNI_MAYANNUMERALS } /* ismayannumerals */,
- { 0, 3182, 0, 5, 0, UNI_ECOMP } /* ecomp */,
- { 0, 1067, 1656, 24, 2, UNI_CCC__BR } /* canonicalcombiningclass=br */,
- { 3, 9878, 3, 4, 1, -UNI_DIA } /* dia=f */,
- { 8, 7610, 10471, 3, 3, UNI_IN__6_DOT_1 } /* in=v61 */,
- { 1, 10058, 9766, 3, 3, UNI_NV__3_SLASH_8 } /* nv=3/8 */,
- { 0, 8449, 184, 4, 34, UNI_MISCPICTOGRAPHS } /* blk=miscellaneoussymbolsandpictographs */,
- { 4, 8944, 26, 6, 1, UNI__PERL_NCHAR } /* nchar=y */,
- { 2, 1874, 10186, 22, 4, UNI_CWL } /* changeswhenlowercased=true */,
- { 0, 4790, 5309, 13, 3, UNI_JG__HEH } /* joininggroup=heh */,
- { 2, 8449, 7673, 4, 10, UNI_SUPARROWSB } /* blk=suparrowsb */,
- { 2, 9659, 7644, 5, 3, UNI_SAUR } /* scx=saur */,
- { 6, 3015, 0, 19, 0, UNI_SUPARROWSA } /* supplementalarrowsa */,
- { 21, 9554, 71, 4, 2, UNI_GCB__PP } /* gcb=pp */,
- { 1, 9680, 1059, 4, 2, -UNI_IDC } /* idc=no */,
- { 1, 8449, 9035, 4, 7, UNI_INPHAGSPA } /* blk=phagspa */,
- { 2, 185, 3110, 3, 7, UNI_CHER } /* ischerokee */,
- { 0, 7610, 9735, 3, 3, UNI_IN__3 } /* in=3.0 */,
- { 1, 8457, 2116, 6, 22, UNI_TRANSPORTANDMAP } /* block=transportandmapsymbols */,
- { 6, 8457, 10411, 6, 3, UNI_OCR } /* block=ocr */,
- { 0, 8545, 6775, 3, 3, UNI_XIDC } /* isxidc */,
- { 1, 9954, 0, 3, 0, UNI_jt_values_index } /* jt= */,
- { 0, 1589, 762, 9, 6, UNI_N } /* category=number */,
- { 0, 8972, 0, 9, 0, UNI_NFKDQC__N } /* nfkdqc=no */,
- { 4, 9782, 10483, 4, 3, UNI_AGE__8 } /* age=v80 */,
- { 3, 10375, 1059, 3, 2, -UNI_CI } /* ci=no */,
- { 1, 9782, 10342, 4, 3, UNI_AGE__5_DOT_1 } /* age=5.1 */,
- { 12, 10495, 529, 3, 2, UNI_WB__NU } /* wb=nu */,
- { 10, 6629, 8338, 3, 8, UNI_INOLDUYGHUR } /* inolduyghur */,
- { 5, 8633, 7129, 8, 3, UNI_SHAW } /* script=shaw */,
- { 0, 10058, 8409, 3, 4, UNI_NV__2000 } /* nv=2000 */,
- { 21, 9147, 0, 6, 0, UNI_XPOSIXSPACE } /* wspace */,
- { 8, 3181, 2869, 18, 3, UNI_DT__NAR } /* decompositiontype=nar */,
- { 5, 8449, 5400, 4, 14, UNI_LATINEXTE } /* blk=latinextendede */,
- { 0, 8457, 1984, 6, 22, UNI_DIACRITICALSFORSYMBOLS } /* block=diacriticalsforsymbols */,
- { 5, 9659, 1574, 5, 3, UNI_SIND } /* scx=sind */,
- { 4, 7171, 26, 11, 1, UNI_SD } /* softdotted=y */,
- { 0, 3523, 2371, 18, 6, UNI_SINH } /* scriptextensions=sinhala */,
- { 2, 10058, 9706, 3, 3, UNI_NV__1_SLASH_4 } /* nv=1/4 */,
- { 0, 4745, 1059, 15, 2, -UNI_GREXT } /* graphemeextend=no */,
- { 0, 21, 8256, 2, 9, UNI_LATINEXTG } /* inlatinextg */,
- { 4, 185, 1973, 2, 11, UNI_NUMBERFORMS } /* isnumberforms */,
- { 0, 8748, 9167, 7, 2, UNI_CCC__30 } /* ccc=ccc30 */,
- { 0, 5807, 7272, 3, 6, UNI_IDS } /* isidstart */,
- { 0, 6159, 9163, 13, 3, UNI_NV__600 } /* numericvalue=600 */,
- { 1, 6995, 9154, 10, 7, UNI_LB__ZW } /* linebreak=zwspace */,
- { 9, 1918, 0, 21, 0, UNI_CWU } /* changeswhenuppercased */,
- { 0, 7475, 5301, 3, 4, UNI_CHAM } /* sc=cham */,
- { 2, 9659, 7383, 4, 10, UNI_CHRS } /* scx=chorasmian */,
- { 0, 8633, 7563, 7, 10, UNI_XPEO } /* script=oldpersian */,
- { 1, 185, 9252, 3, 4, UNI_CWKCF } /* iscwkcf */,
- { 1, 8449, 5075, 4, 15, UNI_VEDICEXT } /* blk=vedicextensions */,
- { 1, 8449, 2996, 4, 9, UNI_INSUNDANESE } /* blk=sundanese */,
- { 0, 3683, 0, 17, 0, UNI_UCAS } /* canadiansyllabics */,
- { 74, 3523, 10154, 17, 4, UNI_TAML } /* scriptextensions=taml */,
- { 16, 10495, 34, 3, 6, UNI_WB__EXTEND } /* wb=extend */,
- { 13, 21, 9311, 2, 6, UNI_INKAITHI } /* inkaithi */,
- { 7, 7473, 1305, 5, 25, UNI_INSC__CONSONANTINITIALPOSTFIXED } /* insc=consonantinitialpostfixed */,
- { 1, 8449, 2146, 4, 14, UNI_MUSIC } /* blk=musicalsymbols */,
- { 1, 1105, 0, 6, 0, UNI_L } /* letter */,
- { 2, 7475, 7, 3, 18, UNI_CANS } /* sc=canadianaboriginal */,
- { 1, 7475, 7433, 3, 10, UNI_DIAK } /* sc=divesakuru */,
- { 1, 185, 9898, 2, 4, UNI_GONG } /* isgong */,
- { 4, 9950, 6359, 3, 7, UNI_JG__SEMKATH } /* jg=semkath */,
- { 0, 185, 761, 2, 2, UNI_MN } /* ismn */,
- { 0, 7475, 8319, 3, 9, UNI_SC__PERM } /* sc=oldpermic */,
- { 8, 7610, 10483, 3, 3, UNI_IN__8 } /* in=v80 */,
- { 25, 3181, 10432, 18, 3, UNI_DT__SQR } /* decompositiontype=sqr */,
- { 1, 8633, 8593, 7, 8, UNI_SC__MAHJ } /* script=mahajani */,
- { 6, 7610, 10342, 3, 3, UNI_IN__5_DOT_1 } /* in=5.1 */,
- { 0, 7603, 10345, 10, 3, UNI_IN__5_DOT_2 } /* presentin=5.2 */,
- { 3, 4878, 0, 17, 0, UNI_INMEROITICCURSIVE } /* inmeroiticcursive */,
- { 4, 8449, 5372, 4, 14, UNI_LATINEXTC } /* blk=latinextendedc */,
- { 0, 8449, 0, 4, 0, UNI_blk_values_index } /* blk= */,
- { 9, 9890, 1314, 3, 4, UNI_DT__INIT } /* dt=init */,
- { 0, 8748, 1655, 4, 2, UNI_CCC__DB } /* ccc=db */,
- { 0, 8979, 0, 7, 0, UNI_NB } /* noblock */,
- { 6, 9782, 10444, 4, 3, UNI_AGE__3 } /* age=v30 */,
- { 0, 7610, 7842, 3, 3, UNI_IN__2 } /* in=2.0 */,
- { 10, 2280, 16, 3, 1, UNI_NB } /* innb */,
- { 0, 6159, 9209, 13, 5, UNI_NV__90000 } /* numericvalue=90000 */,
- { 0, 895, 0, 6, 0, UNI_ARROWS } /* arrows */,
- { 4, 1334, 0, 21, 0, UNI_ce_values_index } /* compositionexclusion= */,
- { 3, 7475, 7083, 3, 4, UNI_SC__NAND } /* sc=nand */,
- { 5, 8633, 9035, 7, 7, UNI_SC__PHAG } /* script=phagspa */,
- { 4, 5590, 0, 3, 0, UNI_ANY } /* any */,
- { 17, 8748, 3091, 4, 13, UNI_CCC__214 } /* ccc=attachedabove */,
- { 1, 9574, 2559, 5, 5, UNI_INPC__RIGHT } /* inpc=right */,
- { 14, 8881, 3035, 3, 18, UNI_SUPARROWSB } /* issupplementalarrowsb */,
- { 17, 4487, 0, 6, 0, UNI_TANG } /* tangut */,
- { 1, 9782, 10190, 4, 4, UNI_AGE__10 } /* age=v100 */,
- { 0, 185, 7713, 2, 4, UNI_WARA } /* iswara */,
- { 7, 7475, 9790, 3, 4, UNI_AHOM } /* sc=ahom */,
- { 0, 10492, 10186, 3, 4, UNI_VS } /* vs=true */,
- { 4, 3451, 10498, 18, 3, UNI__PERL_PATWS } /* patternwhitespace=yes */,
- { 1, 2901, 0, 19, 0, UNI_MERO } /* meroitichieroglyphs */,
- { 0, 4790, 6029, 13, 13, UNI_JG__MALAYALAMNNNA } /* joininggroup=malayalamnnna */,
- { 0, 21, 3505, 2, 18, UNI_RUMI } /* inruminumeralsymbols */,
- { 0, 4524, 3201, 4, 11, UNI_DEVANAGARIEXT } /* indevanagariext */,
- { 0, 10058, 9179, 3, 6, UNI_NV__432000 } /* nv=432000 */,
- { 4, 8881, 7644, 3, 3, UNI_SAUR } /* issaur */,
- { 14, 8943, 3111, 4, 16, UNI_CHEROKEESUP } /* incherokeesupplement */,
- { 0, 7475, 9986, 3, 4, UNI_SC__LATN } /* sc=latn */,
- { 0, 7610, 7940, 3, 2, UNI_IN__14 } /* in=14 */,
- { 8, 10393, 3433, 3, 18, UNI_ZP } /* gc=paragraphseparator */,
- { 0, 10058, 7303, 3, 10, UNI_NV___MINUS_1_SLASH_2 } /* nv=-5.000e-01 */,
- { 0, 9874, 1, 4, 1, -UNI_DEP } /* dep=n */,
- { 10, 10130, 7216, 4, 10, UNI_SC__SYLO } /* sc=sylotinagri */,
- { 8, 8965, 17, 8, 1, UNI_NFKCQC__N } /* nfkcqc=no */,
- { 8, 9830, 7, 4, 1, UNI_BPT__C } /* bpt=c */,
- { 0, 185, 9902, 2, 4, UNI_GONM } /* isgonm */,
- { 16, 3523, 2533, 17, 20, UNI_PHLI } /* scriptextensions=inscriptionalpahlavi */,
- { 0, 8457, 901, 6, 11, UNI_PHONETICEXT } /* block=phoneticext */,
- { 0, 1589, 1807, 9, 1, UNI_Z } /* category=z */,
- { 2, 7603, 10441, 10, 3, UNI_IN__2_DOT_1 } /* presentin=v21 */,
- { 1, 8881, 2371, 3, 20, UNI_SINHALAARCHAICNUMBERS } /* issinhalaarchaicnumbers */,
- { 0, 8449, 2265, 4, 14, UNI_INHANIFIROHINGYA } /* blk=hanifirohingya */,
- { 3, 9419, 1059, 6, 2, -UNI_XPOSIXUPPER } /* upper=no */,
- { 1, 10393, 1972, 3, 2, UNI_CN } /* gc=cn */,
- { 3, 3523, 3325, 17, 8, UNI_GEOR } /* scriptextensions=georgian */,
- { 3, 8449, 5030, 4, 5, UNI_INTAMIL } /* blk=tamil */,
- { 1, 4487, 0, 16, 0, UNI_TANGUTCOMPONENTS } /* tangutcomponents */,
- { 3, 8457, 5847, 6, 13, UNI_AEGEANNUMBERS } /* block=aegeannumbers */,
- { 0, 7610, 10190, 3, 4, UNI_IN__10 } /* in=v100 */,
- { 0, 10058, 10269, 3, 2, UNI_NV__31 } /* nv=31 */,
- { 9, 185, 3752, 3, 16, UNI_CYRILLICEXTB } /* iscyrillicextendedb */,
- { 33, 8633, 10102, 7, 4, UNI_PRTI } /* script=prti */,
- { 3, 5246, 10186, 14, 4, UNI_EMOD } /* emojimodifier=true */,
- { 8, 10022, 0, 4, 0, UNI_MLYM } /* mlym */,
- { 4, 8881, 7035, 3, 3, UNI_SAMR } /* issamr */,
- { 12, 1890, 9549, 6, 5, -UNI_CASED } /* cased=false */,
- { 6, 3523, 7433, 17, 10, UNI_DIAK } /* scriptextensions=divesakuru */,
- { 1, 1589, 5638, 9, 14, UNI_MN } /* category=nonspacingmark */,
- { 4, 1589, 7116, 9, 11, UNI_SO } /* category=othersymbol */,
- { 1, 8457, 3136, 6, 9, UNI_HALFMARKS } /* block=halfmarks */,
- { 0, 8916, 0, 4, 0, UNI_MAKA } /* maka */,
- { 1, 8633, 8825, 7, 4, UNI_ELYM } /* script=elym */,
- { 3, 5018, 9099, 3, 6, UNI_LANA } /* istaitham */,
- { 0, 8457, 8337, 6, 9, UNI_INOLDUYGHUR } /* block=olduyghur */,
- { 2, 185, 4359, 2, 7, UNI_MYMR } /* ismyanmar */,
- { 0, 3955, 9549, 17, 5, -UNI_STERM } /* sentenceterminal=false */,
- { 4, 3523, 8832, 17, 4, UNI_GRAN } /* scriptextensions=gran */,
- { 4, 5886, 0, 13, 0, UNI_XPOSIXDIGIT } /* decimalnumber */,
- { 12, 8633, 7593, 7, 10, UNI_PHNX } /* script=phoenician */,
- { 4, 4471, 0, 9, 0, UNI_SYRIACSUP } /* syriacsup */,
- { 4, 7127, 0, 11, 0, UNI_HMNG } /* pahawhhmong */,
- { 4, 1249, 9408, 3, 5, UNI_INTHAANA } /* inthaana */,
- { 2, 9659, 9669, 4, 5, UNI_TAKR } /* scx=takri */,
- { 0, 3523, 6450, 17, 5, UNI_KHMR } /* scriptextensions=khmer */,
- { 2, 7603, 10198, 10, 4, UNI_IN__12 } /* presentin=v120 */,
- { 0, 5190, 26, 14, 1, UNI_CI } /* caseignorable=y */,
- { 2, 8633, 2101, 7, 4, UNI_SC__MODI } /* script=modi */,
- { 5, 9990, 3463, 3, 5, UNI_LB__SP } /* lb=space */,
- { 1, 8633, 7035, 8, 3, UNI_SAMR } /* script=samr */,
- { 0, 1890, 0, 6, 0, UNI_cased_values_index } /* cased= */,
- { 26, 3343, 9549, 18, 5, -UNI_IDSB } /* idsbinaryoperator=false */,
- { 1, 185, 252, 3, 32, UNI_DIACRITICALSEXT } /* iscombiningdiacriticalmarksextended */,
- { 5, 3523, 9902, 17, 4, UNI_GONM } /* scriptextensions=gonm */,
- { 0, 6159, 9710, 13, 3, UNI_NV__1_SLASH_6 } /* numericvalue=1/6 */,
- { 1, 185, 2101, 2, 15, UNI_MODIFIERLETTERS } /* ismodifierletters */,
- { 4, 185, 8979, 2, 7, UNI_NB } /* isnoblock */,
- { 8, 9283, 10498, 4, 3, UNI_EXT } /* ext=yes */,
- { 0, 8769, 0, 7, 0, UNI_CJKEXTC } /* cjkextc */,
- { 4, 21, 5330, 2, 7, UNI_KANASUP } /* inkanasup */,
- { 0, 6774, 1059, 12, 2, -UNI_XIDC } /* xidcontinue=no */,
- { 0, 9389, 0, 6, 0, UNI_RJNG } /* rejang */,
- { 1, 8748, 7783, 4, 1, UNI_CCC__9 } /* ccc=9 */,
- { 0, 7475, 10046, 3, 4, UNI_NEWA } /* sc=newa */,
- { 1, 10002, 1059, 4, 2, -UNI_LOE } /* loe=no */,
- { 2, 9830, 17, 4, 1, UNI_BPT__O } /* bpt=o */,
- { 1, 5018, 1348, 4, 2, UNI_TELU } /* istelu */,
- { 1, 8457, 3785, 6, 11, UNI_ETHIOPICEXT } /* block=ethiopicext */,
- { 2, 8457, 2412, 6, 21, UNI_YIJING } /* block=yijinghexagramsymbols */,
- { 0, 1067, 227, 24, 2, UNI_CCC__BL } /* canonicalcombiningclass=bl */,
- { 2, 9561, 529, 3, 7, UNI_SB__NU } /* sb=numeric */,
- { 0, 9554, 440, 4, 7, UNI_GCB__CN } /* gcb=control */,
- { 0, 1589, 1, 9, 1, UNI_N } /* category=n */,
- { 8, 1067, 10285, 24, 3, UNI_WB__EB } /* canonicalcombiningclass=133 */,
- { 0, 5807, 2864, 3, 17, UNI_IDST } /* isidstrinaryoperator */,
- { 0, 10393, 10544, 3, 2, UNI_ZP } /* gc=zp */,
- { 0, 4119, 5000, 16, 15, UNI_PS } /* generalcategory=openpunctuation */,
- { 2, 7475, 9639, 3, 5, UNI_OSGE } /* sc=osage */,
- { 0, 9954, 18, 3, 1, UNI_JT__R } /* jt=r */,
- { 0, 8944, 17, 7, 1, -UNI__PERL_NCHAR } /* nchar=no */,
- { 18, 2244, 1972, 21, 2, UNI_GCB__CN } /* graphemeclusterbreak=cn */,
- { 2, 7610, 10438, 3, 3, UNI_IN__2 } /* in=v20 */,
- { 0, 9419, 10186, 6, 4, UNI_XPOSIXUPPER } /* upper=true */,
- { 1, 8457, 2806, 6, 10, UNI_JAMO } /* block=hanguljamo */,
- { 1, 1067, 9425, 24, 6, UNI_CCC__9 } /* canonicalcombiningclass=virama */,
- { 0, 9251, 10498, 6, 3, UNI_CWKCF } /* cwkcf=yes */,
- { 1, 1067, 10309, 24, 3, UNI_CCC__R } /* canonicalcombiningclass=226 */,
- { 0, 21, 9465, 3, 4, UNI_INADLAM } /* inadlam */,
- { 3, 1852, 9549, 22, 5, -UNI_CWCM } /* changeswhencasemapped=false */,
- { 0, 7475, 2535, 5, 18, UNI_PHLI } /* sc=inscriptionalpahlavi */,
- { 0, 10086, 3, 4, 1, -UNI_PCM } /* pcm=f */,
- { 11, 1574, 3078, 24, 13, UNI_INPC__BOTTOMANDLEFT } /* indicpositionalcategory=bottomandleft */,
- { 17, 8633, 7644, 8, 3, UNI_SAUR } /* script=saur */,
- { 15, 5736, 0, 13, 0, UNI_QMARK } /* quotationmark */,
- { 20, 1067, 2553, 24, 4, UNI_CCC__L } /* canonicalcombiningclass=left */,
- { 1, 185, 416, 2, 32, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* isegyptianhieroglyphformatcontrols */,
- { 6, 9659, 8481, 4, 8, UNI_DUPL } /* scx=duployan */,
- { 1, 1620, 386, 5, 30, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* insupplementalsymbolsandpictographs */,
- { 1, 8457, 2581, 6, 3, UNI_PUA } /* block=pua */,
- { 5, 185, 6283, 3, 11, UNI_CYRILLICEXTA } /* iscyrillicexta */,
- { 1, 10375, 10186, 3, 4, UNI_CI } /* ci=true */,
- { 0, 5860, 10186, 13, 4, UNI_BIDIM } /* bidimirrored=true */,
- { 3, 1918, 36, 22, 1, UNI_CWU } /* changeswhenuppercased=t */,
- { 0, 8633, 10062, 7, 4, UNI_OGAM } /* script=ogam */,
- { 0, 7475, 9629, 3, 5, UNI_OGAM } /* sc=ogham */,
- { 1, 8449, 9624, 4, 5, UNI_INNUSHU } /* blk=nushu */,
- { 3, 501, 0, 11, 0, UNI_P } /* punctuation */,
- { 4, 10423, 10186, 3, 4, UNI_RI } /* ri=true */,
- { 0, 9305, 3, 6, 1, -UNI_JOINC } /* joinc=f */,
- { 1, 4790, 6522, 13, 12, UNI_JG__MALAYALAMNGA } /* joininggroup=malayalamnga */,
- { 4, 1067, 10325, 24, 2, UNI_CCC__34 } /* canonicalcombiningclass=34 */,
- { 0, 9822, 2553, 3, 20, UNI_BC__LRE } /* bc=lefttorightembedding */,
- { 4, 7695, 0, 8, 0, UNI_ASSIGNED } /* assigned */,
- { 8, 9574, 7128, 3, 10, UNI_INPAHAWHHMONG } /* inpahawhhmong */,
- { 0, 9659, 10158, 4, 4, UNI_TAVT } /* scx=tavt */,
- { 22, 8955, 845, 4, 20, UNI_ENCLOSEDIDEOGRAPHICSUP } /* inenclosedideographicsup */,
- { 4, 9659, 10218, 4, 4, UNI_WCHO } /* scx=wcho */,
- { 0, 1646, 1, 22, 1, UNI_BPT__N } /* bidipairedbrackettype=n */,
- { 2, 10492, 9549, 3, 5, -UNI_VS } /* vs=false */,
- { 0, 8449, 8417, 4, 8, UNI_INARMENIAN } /* blk=armenian */,
- { 0, 8449, 9395, 4, 6, UNI_INTANGSA } /* blk=tangsa */,
- { 0, 6159, 8409, 13, 3, UNI_NV__200 } /* numericvalue=200 */,
- { 15, 6629, 3416, 3, 17, UNI_ORNAMENTALDINGBATS } /* inornamentaldingbats */,
- { 0, 9659, 6390, 4, 4, UNI_HEBR } /* scx=hebr */,
- { 2, 8457, 2996, 6, 19, UNI_SUNDANESESUP } /* block=sundanesesupplement */,
- { 3, 21, 5358, 2, 14, UNI_LATINEXTB } /* inlatinextendedb */,
- { 1, 8173, 5134, 3, 14, UNI_BAMUMSUP } /* inbamumsupplement */,
- { 1, 9659, 10014, 4, 4, UNI_MERC } /* scx=merc */,
- { 3, 7478, 986, 3, 27, UNI_VSSUP } /* invariationselectorssupplement */,
- { 4, 8748, 3099, 4, 5, UNI_CCC__A } /* ccc=above */,
- { 0, 8881, 7644, 3, 9, UNI_SAUR } /* issaurashtra */,
- { 1, 6797, 10498, 11, 3, UNI_XPOSIXALPHA } /* alphabetic=yes */,
- { 3, 1598, 1669, 22, 23, UNI_INSC__CONSONANTPRECEDINGREPHA } /* indicsyllabiccategory=consonantprecedingrepha */,
- { 0, 3163, 0, 6, 0, UNI_COPT } /* coptic */,
- { 1, 9782, 10462, 4, 3, UNI_AGE__5_DOT_1 } /* age=v51 */,
- { 0, 185, 4656, 3, 13, UNI_SC } /* iscurrencysymbol */,
- { 2, 6995, 203, 10, 2, UNI_LB__SA } /* linebreak=sa */,
- { 0, 10122, 0, 4, 0, UNI_ROHG } /* rohg */,
- { 3, 3217, 9549, 18, 5, -UNI_EBASE } /* emojimodifierbase=false */,
- { 3, 1067, 10312, 24, 3, UNI_CCC__AL } /* canonicalcombiningclass=228 */,
- { 2, 185, 2573, 2, 20, UNI_HMNP } /* isnyiakengpuachuehmong */,
- { 3, 10058, 9197, 3, 6, UNI_NV__700000 } /* nv=700000 */,
- { 10, 8633, 2265, 7, 14, UNI_SC__ROHG } /* script=hanifirohingya */,
- { 1, 3451, 0, 18, 0, UNI_patws_values_index } /* patternwhitespace= */,
- { 3, 10495, 8274, 3, 9, UNI_WB__MB } /* wb=midnumlet */,
- { 0, 9028, 0, 7, 0, UNI_patsyn_values_index } /* patsyn= */,
- { 0, 4629, 3310, 5, 15, UNI_INPUNCTUATION } /* ingeneralpunctuation */,
- { 2, 1067, 9180, 24, 2, UNI_CCC__32 } /* canonicalcombiningclass=32 */,
- { 1, 9946, 2693, 3, 3, UNI_BRAH } /* isbrah */,
- { 5, 9659, 10150, 4, 4, UNI_TALU } /* scx=talu */,
- { 0, 1067, 7778, 27, 2, UNI_CCC__21 } /* canonicalcombiningclass=ccc21 */,
- { 3, 8457, 8681, 6, 8, UNI_UCASEXTA } /* block=ucasexta */,
- { 5, 8633, 10122, 7, 4, UNI_SC__ROHG } /* script=rohg */,
- { 1, 1148, 0, 27, 0, UNI_pcm_values_index } /* prependedconcatenationmark= */,
- { 0, 7481, 9312, 3, 5, UNI_KTHI } /* iskaithi */,
- { 0, 8633, 10038, 7, 4, UNI_NARB } /* script=narb */,
- { 0, 8633, 9105, 7, 7, UNI_TAVT } /* script=taiviet */,
- { 3, 7420, 8530, 3, 7, UNI_HIRA } /* ishiragana */,
- { 3, 693, 0, 30, 0, UNI_CJKEXTF } /* cjkunifiedideographsextensionf */,
- { 1, 4715, 899, 15, 1, UNI_EA__W } /* eastasianwidth=w */,
- { 0, 5018, 6023, 3, 3, UNI_TAML } /* istaml */,
- { 2, 8449, 8697, 4, 8, UNI_INVITHKUQI } /* blk=vithkuqi */,
- { 1, 7270, 36, 9, 1, UNI_XIDS } /* xidstart=t */,
- { 8, 8633, 4472, 8, 5, UNI_SC__SYRC } /* script=syriac */,
- { 0, 10058, 9167, 3, 3, UNI_NV__300 } /* nv=300 */,
- { 10, 9954, 6, 3, 1, UNI_JT__D } /* jt=d */,
- { 1, 8548, 5170, 5, 5, UNI_POSIXDIGIT } /* posixdigit */,
- { 12, 185, 2050, 2, 22, UNI_MISCTECHNICAL } /* ismiscellaneoustechnical */,
- { 2, 6234, 6210, 10, 12, UNI_BC__AL } /* bidiclass=arabicletter */,
- { 1, 7610, 10354, 3, 3, UNI_IN__6_DOT_1 } /* in=6.1 */,
- { 9, 8457, 7673, 6, 10, UNI_SUPARROWSB } /* block=suparrowsb */,
- { 0, 8449, 8689, 4, 8, UNI_INUGARITIC } /* blk=ugaritic */,
- { 0, 6159, 0, 13, 0, UNI_nv_values_index } /* numericvalue= */,
- { 4, 3523, 10166, 17, 4, UNI_TGLG } /* scriptextensions=tglg */,
- { 4, 8457, 2768, 6, 19, UNI_INEGYPTIANHIEROGLYPHS } /* block=egyptianhieroglyphs */,
- { 9, 5807, 481, 3, 17, UNI_IDEOGRAPHICSYMBOLS } /* isideographicsymbols */,
- { 3, 7475, 7563, 3, 10, UNI_XPEO } /* sc=oldpersian */,
- { 6, 10042, 0, 4, 0, UNI_NBAT } /* nbat */,
- { 11, 1067, 6654, 24, 12, UNI_CCC__0 } /* canonicalcombiningclass=notreordered */,
- { 2, 8633, 9311, 7, 6, UNI_SC__KTHI } /* script=kaithi */,
- { 2, 2371, 8848, 4, 5, UNI_INHANUNOO } /* inhanunoo */,
- { 0, 9858, 0, 3, 0, UNI_CWL } /* cwl */,
- { 2, 10058, 5834, 3, 2, UNI_NV__10 } /* nv=10 */,
- { 0, 1067, 9773, 27, 2, UNI_CCC__27 } /* canonicalcombiningclass=ccc27 */,
- { 8, 7475, 9998, 3, 4, UNI_SC__LINB } /* sc=linb */,
- { 2, 6995, 6808, 10, 11, UNI_LB__BB } /* linebreak=breakbefore */,
- { 3, 8958, 9609, 6, 5, UNI_NFCQC__M } /* nfcqc=maybe */,
- { 0, 4790, 9689, 13, 5, UNI_JG__ZHAIN } /* joininggroup=zhain */,
- { 7, 9524, 3, 5, 1, -UNI_CWCM } /* cwcm=f */,
- { 1, 7603, 10447, 10, 3, UNI_IN__3_DOT_1 } /* presentin=v31 */,
- { 1, 9659, 2901, 4, 4, UNI_MERO } /* scx=mero */,
- { 0, 1620, 7216, 3, 10, UNI_INSYLOTINAGRI } /* insylotinagri */,
- { 0, 134, 0, 4, 0, UNI_M } /* mark */,
- { 0, 8633, 9814, 7, 4, UNI_AVST } /* script=avst */,
- { 13, 7293, 2413, 3, 20, UNI_YIJING } /* isyijinghexagramsymbols */,
- { 0, 6234, 2593, 10, 20, UNI_BC__PDF } /* bidiclass=popdirectionalformat */,
- { 6, 6841, 26, 11, 1, UNI_DEP } /* deprecated=y */,
- { 6, 4119, 1247, 16, 2, UNI_PO } /* generalcategory=po */,
- { 0, 9147, 10186, 7, 4, UNI_XPOSIXSPACE } /* wspace=true */,
- { 7, 8449, 6306, 4, 12, UNI_CYRILLICEXTC } /* blk=cyrillicextc */,
- { 1, 185, 7384, 3, 9, UNI_CHRS } /* ischorasmian */,
- { 1, 7475, 8481, 3, 8, UNI_SC__DUPL } /* sc=duployan */,
- { 8, 185, 843, 2, 29, UNI_ENCLOSEDIDEOGRAPHICSUP } /* isenclosedideographicsupplement */,
- { 10, 9950, 5309, 3, 7, UNI_JG__HEHGOAL } /* jg=hehgoal */,
- { 0, 4790, 7320, 13, 2, UNI_JG__FE } /* joininggroup=fe */,
- { 2, 185, 7259, 2, 4, UNI_XPOSIXWORD } /* isword */,
- { 0, 1620, 1358, 5, 22, UNI_SUPERANDSUB } /* insuperscriptsandsubscripts */,
- { 0, 4790, 6558, 13, 12, UNI_JG__MALAYALAMSSA } /* joininggroup=malayalamssa */,
- { 4, 1918, 3, 22, 1, -UNI_CWU } /* changeswhenuppercased=f */,
- { 1, 8457, 1013, 6, 27, UNI_ALPHABETICPF } /* block=alphabeticpresentationforms */,
- { 0, 1620, 4472, 3, 5, UNI_INSYRIAC } /* insyriac */,
- { 0, 185, 3904, 2, 4, UNI_MANI } /* ismani */,
- { 0, 8457, 3109, 6, 18, UNI_CHEROKEESUP } /* block=cherokeesupplement */,
- { 0, 3199, 0, 4, 0, UNI_DEVA } /* deva */,
- { 0, 7475, 10174, 3, 4, UNI_TIBT } /* sc=tibt */,
- { 2, 4119, 1884, 16, 2, UNI_NL } /* generalcategory=nl */,
- { 0, 8449, 985, 4, 18, UNI_INVS } /* blk=variationselectors */,
- { 8, 6159, 9173, 13, 2, UNI_NV__40 } /* numericvalue=40 */,
- { 4, 1279, 0, 26, 0, UNI_KATAKANAEXT } /* katakanaphoneticextensions */,
- { 0, 2996, 0, 9, 0, UNI_SUND } /* sundanese */,
- { 1, 8457, 2370, 6, 7, UNI_INSINHALA } /* block=sinhala */,
- { 4, 1120, 0, 2, 0, UNI_SO } /* so */,
- { 0, 8748, 3666, 4, 17, UNI_WB__EB } /* ccc=attachedbelowleft */,
- { 7, 8449, 3015, 4, 19, UNI_SUPARROWSA } /* blk=supplementalarrowsa */,
- { 2, 7475, 9958, 3, 4, UNI_SC__KALI } /* sc=kali */,
- { 8, 8465, 0, 8, 0, UNI_BOPO } /* bopomofo */,
- { 0, 1598, 1526, 22, 24, UNI_INSC__CONSONANTSUCCEEDINGREPHA } /* indicsyllabiccategory=consonantsucceedingrepha */,
- { 0, 8457, 6618, 6, 12, UNI_INMENDEKIKAKUI } /* block=mendekikakui */,
- { 2, 10078, 0, 4, 0, UNI_OSGE } /* osge */,
- { 0, 8457, 3325, 6, 11, UNI_GEORGIANSUP } /* block=georgiansup */,
- { 0, 4232, 2009, 5, 19, UNI_EARLYDYNASTICCUNEIFORM } /* inearlydynasticcuneiform */,
- { 8, 6159, 7819, 13, 1, UNI_NV__3 } /* numericvalue=3 */,
- { 1, 6428, 694, 3, 29, UNI_CJKEXTF } /* incjkunifiedideographsextensionf */,
- { 0, 1067, 8111, 24, 2, UNI_CCC__19 } /* canonicalcombiningclass=19 */,
- { 1, 2244, 8489, 21, 8, UNI_WB__EB } /* graphemeclusterbreak=ebasegaz */,
- { 2, 9659, 6830, 4, 11, UNI_CPMN } /* scx=cyprominoan */,
- { 5, 9659, 8689, 4, 4, UNI_UGAR } /* scx=ugar */,
- { 34, 9946, 9835, 3, 3, UNI_BUHD } /* isbuhd */,
- { 0, 8449, 9287, 4, 6, UNI_INHATRAN } /* blk=hatran */,
- { 1, 9469, 9549, 5, 5, -UNI_POSIXXDIGIT } /* ahex=false */,
- { 1, 10074, 0, 4, 0, UNI_ORYA } /* orya */,
- { 4, 8457, 9510, 7, 4, UNI_INBUHID } /* block=buhid */,
- { 2, 9659, 10050, 4, 4, UNI_NKO } /* scx=nkoo */,
- { 3, 5807, 248, 3, 2, UNI_IDS } /* isids */,
- { 0, 9561, 0, 3, 0, UNI_sb_values_index } /* sb= */,
- { 2, 3523, 9489, 17, 5, UNI_BATK } /* scriptextensions=batak */,
- { 1, 11, 0, 2, 0, UNI_DI } /* di */,
- { 1, 8633, 9966, 7, 4, UNI_KITS } /* script=kits */,
- { 21, 2513, 0, 4, 0, UNI_GLAG } /* glag */,
- { 2, 3523, 6693, 17, 4, UNI_HUNG } /* scriptextensions=hung */,
- { 0, 10002, 10498, 4, 3, UNI_LOE } /* loe=yes */,
- { 1, 9579, 9671, 4, 3, UNI_INTAKRI } /* intakri */,
- { 0, 10058, 9197, 3, 2, UNI_NV__70 } /* nv=70 */,
- { 12, 7475, 2589, 3, 4, UNI_SC__MONG } /* sc=mong */,
- { 8, 6159, 10514, 13, 2, UNI_NV__46 } /* numericvalue=46 */,
- { 2, 9341, 10186, 6, 4, UNI_XPOSIXLOWER } /* lower=true */,
- { 2, 8874, 9514, 7, 5, UNI_POSIXCNTRL } /* isposixcntrl */,
- { 0, 7048, 0, 13, 0, UNI_MISCSYMBOLS } /* inmiscsymbols */,
- { 0, 7610, 10360, 3, 3, UNI_IN__7 } /* in=7.0 */,
- { 0, 1589, 1059, 9, 2, UNI_NO } /* category=no */,
- { 2, 185, 10046, 2, 4, UNI_NEWA } /* isnewa */,
- { 50, 6159, 7959, 13, 9, UNI_NV__3_SLASH_64 } /* numericvalue=4.688e-02 */,
- { 4, 4715, 8, 15, 1, UNI_EA__A } /* eastasianwidth=a */,
- { 7, 8449, 4487, 4, 16, UNI_TANGUTCOMPONENTS } /* blk=tangutcomponents */,
- { 3, 9659, 8521, 4, 8, UNI_GURU } /* scx=gurmukhi */,
- { 9, 1330, 36, 25, 1, UNI_COMPEX } /* fullcompositionexclusion=t */,
- { 11, 3523, 10018, 17, 4, UNI_MIAO } /* scriptextensions=miao */,
- { 3, 8457, 8825, 6, 7, UNI_INELYMAIC } /* block=elymaic */,
- { 6, 4790, 7320, 13, 3, UNI_JG__FEH } /* joininggroup=feh */,
- { 4, 3523, 8569, 17, 8, UNI_JAVA } /* scriptextensions=javanese */,
- { 1, 8633, 9639, 7, 5, UNI_OSGE } /* script=osage */,
- { 1, 3523, 9484, 17, 5, UNI_BAMU } /* scriptextensions=bamum */,
- { 1, 8874, 5170, 7, 5, UNI_POSIXDIGIT } /* isposixdigit */,
- { 2, 185, 2184, 2, 7, UNI_RADICAL } /* isradical */,
- { 45, 9685, 0, 4, 0, UNI_ids_values_index } /* ids= */,
- { 1, 1067, 7904, 24, 2, UNI_CCC__13 } /* canonicalcombiningclass=13 */,
- { 1, 218, 1220, 33, 5, UNI__PERL_PROBLEMATIC_LOCALE_FOLDEDS_START } /* _perl_problematic_locale_foldeds_start */,
- { 3, 21, 5400, 2, 14, UNI_LATINEXTE } /* inlatinextendede */,
- { 13, 9539, 10186, 5, 4, UNI_EMOD } /* emod=true */,
- { 0, 3523, 4231, 17, 7, UNI_LINB } /* scriptextensions=linearb */,
- { 5, 9950, 5526, 3, 14, UNI_JG__MANICHAEANKAPH } /* jg=manichaeankaph */,
- { 0, 1890, 3, 6, 1, -UNI_CASED } /* cased=f */,
- { 4, 8457, 9049, 6, 7, UNI_SHAW } /* block=shavian */,
- { 18, 7420, 9931, 3, 3, UNI_HMNP } /* ishmnp */,
- { 2, 10544, 0, 2, 0, UNI_ZP } /* zp */,
- { 13, 6428, 2751, 4, 17, UNI_COUNTINGROD } /* incountingrodnumerals */,
- { 0, 8457, 0, 6, 0, UNI_blk_values_index } /* block= */,
- { 1, 4790, 6354, 13, 12, UNI_JG__FINALSEMKATH } /* joininggroup=finalsemkath */,
- { 0, 6678, 5886, 12, 7, UNI_XPOSIXDIGIT } /* numerictype=decimal */,
- { 1, 9419, 10498, 6, 3, UNI_XPOSIXUPPER } /* upper=yes */,
- { 5, 9233, 0, 6, 0, UNI_CARI } /* carian */,
- { 4, 6428, 8756, 3, 6, UNI_CJKEXTA } /* incjkexta */,
- { 1, 3523, 7383, 17, 10, UNI_CHRS } /* scriptextensions=chorasmian */,
- { 0, 8457, 3109, 6, 11, UNI_CHEROKEESUP } /* block=cherokeesup */,
- { 2, 8457, 184, 6, 20, UNI_MISCSYMBOLS } /* block=miscellaneoussymbols */,
- { 4, 10058, 9163, 3, 4, UNI_NV__6000 } /* nv=6000 */,
- { 2, 4790, 5309, 13, 7, UNI_JG__HEHGOAL } /* joininggroup=hehgoal */,
- { 0, 9950, 9689, 3, 5, UNI_JG__ZHAIN } /* jg=zhain */,
- { 9, 9822, 5638, 3, 14, UNI_BC__NSM } /* bc=nonspacingmark */,
- { 1, 7475, 8923, 3, 7, UNI_SC__MAND } /* sc=mandaic */,
- { 1, 6159, 9698, 13, 4, UNI_NV__1_SLASH_10 } /* numericvalue=1/10 */,
- { 0, 8867, 3463, 7, 5, UNI_XPOSIXBLANK } /* ishorizspace */,
- { 0, 1330, 1, 25, 1, -UNI_COMPEX } /* fullcompositionexclusion=n */,
- { 39, 6234, 10405, 10, 3, UNI_BC__LRO } /* bidiclass=lro */,
- { 0, 185, 48, 2, 1, UNI_M } /* ism */,
- { 2, 3523, 9275, 17, 4, UNI_GOTH } /* scriptextensions=goth */,
- { 1, 3343, 0, 17, 0, UNI_IDSB } /* idsbinaryoperator */,
- { 0, 9341, 1, 6, 1, -UNI_XPOSIXLOWER } /* lower=n */,
- { 3, 3217, 0, 18, 0, UNI_ebase_values_index } /* emojimodifierbase= */,
- { 0, 8874, 7502, 3, 3, UNI_PHLI } /* isphli */,
- { 1, 2223, 0, 21, 0, UNI_extpict_values_index } /* extendedpictographic= */,
- { 0, 4745, 10186, 15, 4, UNI_GREXT } /* graphemeextend=true */,
- { 14, 9659, 10170, 4, 4, UNI_THAI } /* scx=thai */,
- { 0, 7603, 10486, 10, 3, UNI_IN__9 } /* presentin=v90 */,
- { 4, 1067, 9746, 24, 2, UNI_CCC__15 } /* canonicalcombiningclass=15 */,
- { 0, 10393, 4670, 3, 15, UNI_PD } /* gc=dashpunctuation */,
- { 9, 8457, 114, 6, 25, UNI_DIACRITICALS } /* block=combiningdiacriticalmarks */,
- { 2, 8633, 1279, 7, 8, UNI_SC__KANA } /* script=katakana */,
- { 0, 3523, 7577, 18, 6, UNI_SOGD } /* scriptextensions=sogdian */,
- { 0, 7259, 6366, 10, 12, UNI_WB__EB } /* wordbreak=glueafterzwj */,
- { 2, 3523, 9986, 17, 4, UNI_LATN } /* scriptextensions=latn */,
- { 0, 3523, 2286, 17, 21, UNI_PRTI } /* scriptextensions=inscriptionalparthian */,
- { 0, 185, 123, 2, 9, UNI_DIA } /* isdiacritic */,
- { 1, 5736, 10498, 14, 3, UNI_QMARK } /* quotationmark=yes */,
- { 3, 3523, 10106, 17, 4, UNI_COPT } /* scriptextensions=qaac */,
- { 0, 6159, 8076, 13, 9, UNI_NV__5_SLASH_6 } /* numericvalue=8.333e-01 */,
- { 6, 9077, 0, 7, 0, UNI_SUPPUAA } /* suppuaa */,
- { 0, 8577, 0, 8, 0, UNI_KANAEXTA } /* kanaexta */,
- { 1, 8457, 3163, 6, 6, UNI_INCOPTIC } /* block=coptic */,
- { 3, 3836, 8720, 17, 7, UNI_IDENTIFIERSTATUS__ALLOWED } /* identifierstatus=allowed */,
- { 0, 5167, 0, 9, 0, UNI_hex_values_index } /* hexdigit= */,
- { 1, 6428, 3165, 4, 16, UNI_COPTICEPACTNUMBERS } /* incopticepactnumbers */,
- { 1, 9263, 0, 6, 0, UNI_emoji_values_index } /* emoji= */,
- { 3, 6234, 10402, 10, 3, UNI_BC__LRI } /* bidiclass=lri */,
- { 3, 185, 9534, 2, 4, UNI_DOGR } /* isdogr */,
- { 0, 8449, 2749, 4, 19, UNI_COUNTINGROD } /* blk=countingrodnumerals */,
- { 0, 9147, 26, 7, 1, UNI_XPOSIXSPACE } /* wspace=y */,
- { 0, 8633, 9323, 7, 6, UNI_SC__KHOJ } /* script=khojki */,
- { 2, 7475, 2768, 3, 19, UNI_EGYP } /* sc=egyptianhieroglyphs */,
- { 15, 2101, 0, 14, 0, UNI_LM } /* modifierletter */,
- { 4, 2868, 7345, 4, 8, UNI_ARABICEXTB } /* inarabicextb */,
- { 3, 9659, 10254, 4, 4, UNI_ZZZZ } /* scx=zzzz */,
- { 0, 34, 0, 3, 0, UNI_EXT } /* ext */,
- { 2, 7473, 4455, 5, 16, UNI_INSC__SYLLABLEMODIFIER } /* insc=syllablemodifier */,
- { 0, 8633, 6830, 7, 11, UNI_SC__CPMN } /* script=cyprominoan */,
- { 1, 5807, 3362, 3, 17, UNI_PI } /* isinitialpunctuation */,
- { 0, 21, 6450, 2, 12, UNI_KHMERSYMBOLS } /* inkhmersymbols */,
- { 0, 8457, 3649, 6, 17, UNI_ALCHEMICAL } /* block=alchemicalsymbols */,
- { 1, 2223, 26, 21, 1, UNI_EXTPICT } /* extendedpictographic=y */,
- { 16, 8449, 8727, 4, 7, UNI_INAVESTAN } /* blk=avestan */,
- { 1, 5807, 2534, 3, 19, UNI_PHLI } /* isinscriptionalpahlavi */,
- { 2, 9564, 1059, 5, 2, -UNI_IDST } /* idst=no */,
- { 9, 1348, 0, 2, 0, UNI_UPPERCASELETTER } /* lu */,
- { 2, 9341, 36, 6, 1, UNI_XPOSIXLOWER } /* lower=t */,
- { 0, 6428, 44, 3, 15, UNI_CJKCOMPAT } /* incjkcompatibility */,
- { 3, 7270, 25, 11, 1, UNI_XIDS } /* xidstart=yes */,
- { 2, 8449, 4550, 4, 15, UNI_ARABICEXTA } /* blk=arabicextendeda */,
- { 8, 8457, 6486, 6, 7, UNI_MAHJONG } /* block=mahjong */,
- { 9, 185, 6426, 2, 5, UNI_JOINC } /* isjoinc */,
- { 0, 8211, 0, 9, 0, UNI_SIND } /* khudawadi */,
- { 2, 9215, 1059, 6, 2, -UNI_XPOSIXALPHA } /* alpha=no */,
- { 0, 7603, 9742, 10, 4, UNI_IN__14 } /* presentin=14.0 */,
- { 1, 8944, 10498, 6, 3, UNI__PERL_NCHAR } /* nchar=yes */,
- { 1, 1589, 5596, 9, 14, UNI_SK } /* category=modifiersymbol */,
- { 1, 185, 9624, 2, 5, UNI_NSHU } /* isnushu */,
- { 8, 8457, 5722, 6, 14, UNI_INPSALTERPAHLAVI } /* block=psalterpahlavi */,
- { 18, 185, 44, 3, 2, UNI_CJK } /* iscjk */,
- { 2, 3523, 2644, 17, 4, UNI_MAND } /* scriptextensions=mand */,
- { 0, 4006, 1059, 17, 2, -UNI_UIDEO } /* unifiedideograph=no */,
- { 8, 10495, 109, 3, 2, UNI_WB__MB } /* wb=mb */,
- { 0, 8633, 9064, 8, 3, UNI_SOYO } /* script=soyo */,
- { 0, 8881, 1623, 3, 23, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* issupsymbolsandpictographs */,
- { 11, 3523, 10414, 18, 3, UNI_SOGO } /* scriptextensions=sogo */,
- { 1, 8449, 3785, 4, 17, UNI_ETHIOPICEXTA } /* blk=ethiopicextendeda */,
- { 0, 7475, 9287, 3, 4, UNI_HATR } /* sc=hatr */,
- { 7, 8874, 902, 3, 17, UNI_PHONETICEXT } /* isphoneticextensions */,
- { 6, 2844, 5805, 19, 2, UNI_LB__H2 } /* hangulsyllabletype=lv */,
- { 5, 8457, 3989, 6, 17, UNI_SUTTONSIGNWRITING } /* block=suttonsignwriting */,
- { 2, 8457, 1692, 6, 23, UNI_GEOMETRICSHAPESEXT } /* block=geometricshapesextended */,
- { 1, 9890, 8505, 3, 3, UNI_DT__FRA } /* dt=fra */,
- { 4, 218, 6775, 6, 6, UNI__PERL_IDCONT } /* _perl_idcont */,
- { 1, 9554, 126, 4, 2, UNI_LB__CR } /* gcb=cr */,
- { 6, 5442, 0, 7, 0, UNI_LISUSUP } /* lisusup */,
- { 0, 10230, 0, 4, 0, UNI_XSUX } /* xsux */,
- { 0, 3955, 10498, 17, 3, UNI_STERM } /* sentenceterminal=yes */,
- { 8, 9469, 1, 5, 1, -UNI_POSIXXDIGIT } /* ahex=n */,
- { 6, 185, 2513, 2, 13, UNI_GLAGOLITICSUP } /* isglagoliticsup */,
- { 1, 6629, 9630, 3, 4, UNI_INOGHAM } /* inogham */,
- { 0, 9281, 3, 6, 1, -UNI_GREXT } /* grext=f */,
- { 12, 10375, 36, 3, 1, UNI_CI } /* ci=t */,
- { 0, 8881, 9057, 3, 3, UNI_SIDD } /* issidd */,
- { 0, 9564, 0, 5, 0, UNI_idst_values_index } /* idst= */,
- { 1, 4790, 5470, 13, 14, UNI_JG__MANICHAEANAYIN } /* joininggroup=manichaeanayin */,
- { 0, 8449, 2513, 4, 13, UNI_GLAGOLITICSUP } /* blk=glagoliticsup */,
- { 1, 8457, 5442, 6, 7, UNI_LISUSUP } /* block=lisusup */,
- { 3, 7420, 2807, 3, 18, UNI_JAMOEXTA } /* ishanguljamoextendeda */,
- { 1, 9659, 9347, 4, 4, UNI_LYCI } /* scx=lyci */,
- { 4, 9874, 9549, 4, 5, -UNI_DEP } /* dep=false */,
- { 12, 7481, 3872, 4, 15, UNI_KITS } /* iskhitansmallscript */,
- { 0, 1620, 8642, 3, 7, UNI_SPECIALS } /* inspecials */,
- { 0, 7475, 10250, 3, 4, UNI_SC__ZYYY } /* sc=zyyy */,
- { 0, 8944, 9549, 6, 5, -UNI__PERL_NCHAR } /* nchar=false */,
- { 7, 7603, 7693, 10, 10, UNI_IN__NA } /* presentin=unassigned */,
- { 10, 185, 6378, 2, 12, UNI_GONG } /* isgunjalagondi */,
- { 0, 8457, 114, 6, 35, UNI_DIACRITICALSFORSYMBOLS } /* block=combiningdiacriticalmarksforsymbols */,
- { 0, 3181, 2653, 18, 4, UNI_DT__VERT } /* decompositiontype=vert */,
- { 0, 8449, 10026, 4, 3, UNI_INMRO } /* blk=mro */,
- { 0, 185, 10030, 2, 4, UNI_MTEI } /* ismtei */,
- { 40, 8457, 3379, 6, 18, UNI_LATINEXTADDITIONAL } /* block=latinextadditional */,
- { 1, 4119, 1075, 16, 2, UNI_CASEDLETTER } /* generalcategory=lc */,
- { 10, 10058, 10504, 3, 2, UNI_NV__35 } /* nv=35 */,
- { 0, 9782, 7752, 4, 3, UNI_IN__1_DOT_1 } /* age=1.1 */,
- { 1, 7475, 8832, 3, 4, UNI_SC__GRAN } /* sc=gran */,
- { 0, 8633, 1283, 7, 4, UNI_SC__KANA } /* script=kana */,
- { 1, 1589, 761, 9, 2, UNI_MN } /* category=mn */,
- { 8, 5736, 26, 14, 1, UNI_QMARK } /* quotationmark=y */,
- { 4, 8449, 6133, 4, 13, UNI_MISCTECHNICAL } /* blk=misctechnical */,
- { 7, 3955, 36, 17, 1, UNI_STERM } /* sentenceterminal=t */,
- { 0, 9862, 3, 4, 1, -UNI_CWT } /* cwt=f */,
- { 0, 9269, 0, 5, 0, UNI_EPRES } /* epres */,
- { 1, 7475, 753, 3, 9, UNI_XSUX } /* sc=cuneiform */,
- { 1, 3523, 7563, 17, 10, UNI_XPEO } /* scriptextensions=oldpersian */,
- { 28, 6426, 0, 12, 0, UNI_joinc_values_index } /* joincontrol= */,
- { 2, 9554, 18, 4, 2, UNI_RI } /* gcb=ri */,
- { 0, 10375, 1, 3, 1, -UNI_CI } /* ci=n */,
- { 0, 6159, 8093, 13, 2, UNI_NV__28 } /* numericvalue=28 */,
- { 1, 4003, 6381, 5, 9, UNI_INGUNJALAGONDI } /* ingunjalagondi */,
- { 2, 9830, 6077, 4, 4, UNI_BPT__N } /* bpt=none */,
- { 41, 9680, 3, 4, 1, -UNI_IDC } /* idc=f */,
- { 0, 6159, 7824, 13, 9, UNI_NV__1_SLASH_6 } /* numericvalue=1.667e-01 */,
- { 2, 7481, 6452, 4, 10, UNI_KHMERSYMBOLS } /* iskhmersymbols */,
- { 1, 7475, 8513, 3, 8, UNI_SC__GUJR } /* sc=gujarati */,
- { 4, 7475, 9000, 3, 7, UNI_OLCK } /* sc=olchiki */,
- { 3, 3523, 9534, 17, 5, UNI_DOGR } /* scriptextensions=dogra */,
- { 0, 8457, 543, 6, 30, UNI_CJKEXTA } /* block=cjkunifiedideographsextensiona */,
- { 6, 6234, 3433, 10, 18, UNI_BC__B } /* bidiclass=paragraphseparator */,
- { 1, 2371, 3139, 5, 6, UNI_HALFMARKS } /* inhalfmarks */,
- { 3, 7171, 1059, 11, 2, -UNI_SD } /* softdotted=no */,
- { 1, 6159, 7790, 13, 3, UNI_NV__500 } /* numericvalue=500 */,
- { 7, 8202, 6392, 4, 4, UNI_INHEBREW } /* inhebrew */,
- { 1, 9978, 0, 4, 0, UNI_LANA } /* lana */,
- { 0, 3127, 0, 18, 0, UNI_HALFMARKS } /* combininghalfmarks */,
- { 0, 6234, 6222, 10, 12, UNI_BC__AN } /* bidiclass=arabicnumber */,
- { 0, 9519, 0, 5, 0, UNI_cwcf_values_index } /* cwcf= */,
- { 0, 185, 9914, 2, 4, UNI_GURU } /* isguru */,
- { 0, 10495, 761, 3, 2, UNI_WB__MN } /* wb=mn */,
- { 10, 8457, 3541, 6, 18, UNI_SMALLKANAEXT } /* block=smallkanaextension */,
- { 0, 3523, 10178, 17, 4, UNI_TNSA } /* scriptextensions=tnsa */,
- { 3, 8457, 7713, 6, 10, UNI_INWARANGCITI } /* block=warangciti */,
- { 7, 8457, 5358, 6, 14, UNI_LATINEXTB } /* block=latinextendedb */,
- { 0, 8457, 9624, 6, 5, UNI_INNUSHU } /* block=nushu */,
- { 0, 6159, 10277, 13, 2, UNI_NV__22 } /* numericvalue=22 */,
- { 4, 10426, 0, 3, 0, UNI_sd_values_index } /* sd= */,
- { 2, 3523, 9347, 17, 6, UNI_LYCI } /* scriptextensions=lycian */,
- { 0, 2244, 1148, 21, 7, UNI_GCB__PP } /* graphemeclusterbreak=prepend */,
- { 1, 9574, 2553, 5, 4, UNI_INPC__LEFT } /* inpc=left */,
- { 6, 9659, 9126, 4, 4, UNI_TIRH } /* scx=tirh */,
- { 8, 4423, 1885, 14, 5, UNI_SB__LO } /* sentencebreak=lower */,
- { 9, 1620, 1762, 3, 22, UNI_SHORTHANDFORMATCONTROLS } /* inshorthandformatcontrols */,
- { 0, 8955, 2789, 4, 17, UNI_ENCLOSEDALPHANUMSUP } /* inenclosedalphanumsup */,
- { 4, 5666, 10498, 14, 3, UNI_PATSYN } /* patternsyntax=yes */,
- { 1, 8457, 3253, 6, 18, UNI_ETHIOPICSUP } /* block=ethiopicsupplement */,
- { 0, 21, 2674, 3, 18, UNI_ANCIENTGREEKNUMBERS } /* inancientgreeknumbers */,
- { 3, 9782, 10486, 4, 3, UNI_AGE__9 } /* age=v90 */,
- { 5, 7610, 7752, 3, 3, UNI_IN__1_DOT_1 } /* in=1.1 */,
- { 16, 3702, 0, 4, 0, UNI_UCAS } /* ucas */,
- { 3, 8457, 4471, 6, 6, UNI_INSYRIAC } /* block=syriac */,
- { 18, 8449, 6618, 4, 12, UNI_INMENDEKIKAKUI } /* blk=mendekikakui */,
- { 52631, 8457, 723, 6, 30, UNI_CJKEXTG } /* block=cjkunifiedideographsextensiong */,
- { 25, 8633, 9982, 7, 4, UNI_LAO } /* script=laoo */,
- { 1, 7478, 68, 3, 4, UNI_VSSUP } /* invssup */,
- { 0, 5246, 1059, 14, 2, -UNI_EMOD } /* emojimodifier=no */,
- { 1, 9659, 9509, 4, 5, UNI_BUHD } /* scx=buhid */,
- { 0, 9950, 7367, 3, 3, UNI_JG__KAF } /* jg=kaf */,
- { 1, 9659, 6618, 4, 12, UNI_MEND } /* scx=mendekikakui */,
- { 14, 8457, 8434, 7, 7, UNI_INBALINESE } /* block=balinese */,
- { 8, 10126, 0, 4, 0, UNI_RUNR } /* runr */,
- { 1, 10381, 3, 3, 1, UNI_EA__F } /* ea=f */,
- { 0, 4119, 236, 16, 2, UNI_LO } /* generalcategory=lo */,
- { 0, 8748, 8409, 7, 2, UNI_CCC__20 } /* ccc=ccc20 */,
- { 0, 9659, 9395, 4, 6, UNI_TNSA } /* scx=tangsa */,
- { 3, 3523, 1176, 17, 4, UNI_HANG } /* scriptextensions=hang */,
- { 3, 8449, 543, 4, 20, UNI_CJK } /* blk=cjkunifiedideographs */,
- { 0, 1589, 5045, 9, 15, UNI_TITLE } /* category=titlecaseletter */,
- { 1, 8457, 4231, 6, 16, UNI_LINEARBIDEOGRAMS } /* block=linearbideograms */,
- { 0, 7475, 10230, 3, 4, UNI_XSUX } /* sc=xsux */,
- { 101, 8633, 10242, 7, 4, UNI_ZANB } /* script=zanb */,
- { 8, 8457, 5386, 6, 14, UNI_LATINEXTD } /* block=latinextendedd */,
- { 2, 7473, 2473, 5, 20, UNI_INSC__CONSONANTPLACEHOLDER } /* insc=consonantplaceholder */,
- { 9, 9990, 10528, 3, 2, UNI_LB__H3 } /* lb=h3 */,
- { 0, 8972, 0, 7, 0, UNI_nfkdqc_values_index } /* nfkdqc= */,
- { 2, 4745, 0, 14, 0, UNI_GREXT } /* graphemeextend */,
- { 0, 9281, 36, 6, 1, UNI_GREXT } /* grext=t */,
- { 32, 9822, 4580, 3, 15, UNI_BC__CS } /* bc=commonseparator */,
- { 7, 9377, 10186, 6, 4, UNI__PERL_PATWS } /* patws=true */,
- { 0, 8633, 10182, 7, 4, UNI_TOTO } /* script=toto */,
- { 0, 7513, 9549, 10, 5, -UNI_XPOSIXLOWER } /* lowercase=false */,
- { 8, 8449, 7333, 4, 10, UNI_ARABICEXTA } /* blk=arabicexta */,
- { 1, 8457, 9275, 6, 6, UNI_INGOTHIC } /* block=gothic */,
- { 4, 2391, 0, 4, 0, UNI_TERM } /* term */,
- { 0, 10058, 7819, 3, 1, UNI_NV__3 } /* nv=3 */,
- { 2, 185, 8937, 2, 7, UNI_MULT } /* ismultani */,
- { 12, 9890, 3541, 3, 5, UNI_DT__SML } /* dt=small */,
- { 17, 10058, 7986, 3, 9, UNI_NV__7_SLASH_12 } /* nv=5.833e-01 */,
- { 0, 6402, 0, 12, 0, UNI_ideo_values_index } /* ideographic= */,
- { 0, 7473, 6666, 5, 12, UNI_INSC__NUMBERJOINER } /* insc=numberjoiner */,
- { 0, 3523, 5105, 17, 15, UNI_ZANB } /* scriptextensions=zanabazarsquare */,
- { 0, 7610, 10486, 3, 3, UNI_IN__9 } /* in=v90 */,
- { 18, 7475, 9818, 3, 4, UNI_BATK } /* sc=batk */,
- { 0, 8748, 8021, 7, 2, UNI_CCC__26 } /* ccc=ccc26 */,
- { 0, 8548, 1929, 5, 5, UNI_POSIXUPPER } /* posixupper */,
- { 0, 6774, 0, 4, 0, UNI_XIDC } /* xidc */,
- { 0, 9353, 0, 4, 0, UNI_LYDI } /* lydi */,
- { 79, 8449, 5134, 5, 14, UNI_BAMUMSUP } /* blk=bamumsupplement */,
- { 0, 8545, 5891, 8, 5, UNI_XPOSIXALNUM } /* isxposixalnum */,
- { 3, 8449, 6330, 4, 12, UNI_ETHIOPICEXTB } /* blk=ethiopicextb */,
- { 19, 5610, 0, 16, 0, UNI_DT__CAN } /* nfdquickcheck=no */,
- { 8, 5860, 1059, 13, 2, -UNI_BIDIM } /* bidimirrored=no */,
- { 0, 7475, 8310, 3, 9, UNI_ITAL } /* sc=olditalic */,
- { 0, 10130, 3997, 4, 3, UNI_SGNW } /* sc=sgnw */,
- { 0, 8457, 8220, 6, 9, UNI_LATINEXTB } /* block=latinextb */,
- { 0, 1884, 0, 2, 0, UNI_NL } /* nl */,
- { 0, 9782, 7878, 4, 3, UNI_AGE__3_DOT_1 } /* age=3.1 */,
- { 0, 185, 63, 2, 5, UNI_XPOSIXGRAPH } /* isgraph */,
- { 0, 3235, 0, 17, 0, UNI_EPRES } /* emojipresentation */,
- { 0, 9946, 8735, 3, 6, UNI_BENG } /* isbengali */,
- { 1, 8633, 9534, 7, 5, UNI_SC__DOGR } /* script=dogra */,
- { 0, 9539, 1, 5, 1, -UNI_EMOD } /* emod=n */,
- { 2, 8846, 0, 7, 0, UNI_HANO } /* hanunoo */,
- { 0, 8633, 9057, 8, 3, UNI_SIDD } /* script=sidd */,
- { 22, 9554, 34, 4, 6, UNI_GCB__EX } /* gcb=extend */,
- { 0, 8449, 9317, 4, 6, UNI_KANBUN } /* blk=kanbun */,
- { 4, 185, 9847, 3, 3, UNI_CHRS } /* ischrs */,
- { 0, 8633, 10250, 7, 4, UNI_SC__ZYYY } /* script=zyyy */,
- { 0, 10058, 7304, 3, 1, UNI_NV__5 } /* nv=5 */,
- { 0, 3955, 3, 17, 1, -UNI_STERM } /* sentenceterminal=f */,
- { 1, 4878, 2940, 3, 18, UNI_MONGOLIANSUP } /* inmongoliansupplement */,
- { 0, 1741, 417, 3, 31, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* inegyptianhieroglyphformatcontrols */,
- { 1, 8457, 184, 6, 34, UNI_MISCPICTOGRAPHS } /* block=miscellaneoussymbolsandpictographs */,
- { 12, 3523, 8930, 17, 7, UNI_MARC } /* scriptextensions=marchen */,
- { 3, 5666, 1, 14, 1, -UNI_PATSYN } /* patternsyntax=n */,
- { 10, 185, 9335, 2, 4, UNI_LEPC } /* islepc */,
- { 13, 8449, 8825, 4, 7, UNI_INELYMAIC } /* blk=elymaic */,
- { 0, 1741, 6319, 3, 11, UNI_ETHIOPICEXTA } /* inethiopicexta */,
- { 1, 6995, 1884, 10, 2, UNI_LB__NL } /* linebreak=nl */,
- { 0, 7259, 1255, 10, 2, UNI_LB__LF } /* wordbreak=lf */,
- { 0, 8457, 1807, 6, 13, UNI_ZNAMENNYMUSIC } /* block=znamennymusic */,
- { 0, 185, 2513, 2, 10, UNI_GLAG } /* isglagolitic */,
- { 4, 7, 0, 18, 0, UNI_CANS } /* canadianaboriginal */,
- { 2, 2363, 10075, 3, 3, UNI_ORYA } /* isorya */,
- { 1, 10182, 0, 4, 0, UNI_TOTO } /* toto */,
- { 0, 9950, 6016, 3, 13, UNI_JG__MALAYALAMLLLA } /* jg=malayalamllla */,
- { 1, 1896, 26, 22, 1, UNI_CWT } /* changeswhentitlecased=y */,
- { 0, 9659, 9534, 4, 4, UNI_DOGR } /* scx=dogr */,
- { 1, 7475, 9926, 3, 4, UNI_HMNG } /* sc=hmng */,
- { 2, 219, 0, 2, 0, UNI_PE } /* pe */,
- { 11, 4790, 4167, 13, 16, UNI_JG__HANIFIROHINGYAPA } /* joininggroup=hanifirohingyapa */,
- { 4, 9419, 1, 6, 1, -UNI_XPOSIXUPPER } /* upper=n */,
- { 0, 3523, 10082, 17, 4, UNI_OUGR } /* scriptextensions=ougr */,
- { 0, 9659, 9910, 4, 4, UNI_GUJR } /* scx=gujr */,
- { 10, 6428, 754, 3, 8, UNI_INCUNEIFORM } /* incuneiform */,
- { 1, 10393, 38, 3, 2, UNI_XPOSIXDIGIT } /* gc=nd */,
- { 3, 4423, 4391, 14, 5, UNI_SB__XX } /* sentencebreak=other */,
- { 16, 4119, 1105, 16, 6, UNI_L } /* generalcategory=letter */,
- { 14, 8748, 10267, 7, 3, UNI_CCC__103 } /* ccc=ccc103 */,
- { 0, 9141, 4552, 4, 13, UNI_ARABICEXTA } /* isarabicextendeda */,
- { 3, 4423, 0, 14, 0, UNI_sb_values_index } /* sentencebreak= */,
- { 5, 4119, 1278, 16, 2, UNI_SK } /* generalcategory=sk */,
- { 1, 185, 4359, 2, 16, UNI_MYANMAREXTA } /* ismyanmarextendeda */,
- { 4, 9950, 7149, 3, 11, UNI_JG__ROHINGYAYEH } /* jg=rohingyayeh */,
- { 0, 8748, 7778, 4, 2, UNI_CCC__21 } /* ccc=21 */,
- { 20, 3523, 9910, 17, 4, UNI_GUJR } /* scriptextensions=gujr */,
- { 1, 185, 6133, 2, 13, UNI_MISCTECHNICAL } /* ismisctechnical */,
- { 0, 4730, 0, 14, 0, UNI_ECOMP } /* emojicomponent */,
- { 4, 3451, 9549, 18, 5, -UNI__PERL_PATWS } /* patternwhitespace=false */,
- { 0, 2395, 6201, 5, 9, UNI_ALPHABETICPF } /* inalphabeticpf */,
- { 1, 9878, 1059, 4, 2, -UNI_DIA } /* dia=no */,
- { 4, 4745, 0, 15, 0, UNI_grext_values_index } /* graphemeextend= */,
- { 3, 8457, 9437, 6, 6, UNI_INYEZIDI } /* block=yezidi */,
- { 2, 6246, 0, 12, 0, UNI_bidic_values_index } /* bidicontrol= */,
- { 0, 5666, 36, 14, 1, UNI_PATSYN } /* patternsyntax=t */,
- { 11, 8633, 9870, 7, 4, UNI_SC__CYRL } /* script=cyrl */,
- { 3, 7475, 9798, 3, 4, UNI_ARMI } /* sc=armi */,
- { 2, 5358, 0, 14, 0, UNI_LATINEXTB } /* latinextendedb */,
- { 8, 9469, 10186, 5, 4, UNI_POSIXXDIGIT } /* ahex=true */,
- { 14, 1598, 8301, 22, 9, UNI_INSC__NONJOINER } /* indicsyllabiccategory=nonjoiner */,
- { 1, 1961, 0, 2, 0, UNI_PC } /* pc */,
- { 21, 8457, 5925, 6, 13, UNI_GREEKEXT } /* block=greekextended */,
- { 1, 9579, 4489, 4, 14, UNI_TANGUTCOMPONENTS } /* intangutcomponents */,
- { 0, 8449, 3768, 4, 17, UNI_CYRILLICEXTC } /* blk=cyrillicextendedc */,
- { 1, 2280, 7085, 4, 9, UNI_INNANDINAGARI } /* innandinagari */,
- { 1, 9950, 9794, 3, 4, UNI_JG__ALEF } /* jg=alef */,
- { 0, 4119, 3361, 16, 18, UNI_PI } /* generalcategory=initialpunctuation */,
- { 1, 3458, 9549, 11, 5, -UNI_XPOSIXSPACE } /* whitespace=false */,
- { 0, 9990, 1564, 3, 9, UNI_LB__SG } /* lb=surrogate */,
- { 0, 2363, 8330, 4, 7, UNI_ORKH } /* isoldturkic */,
- { 1, 9654, 5, 4, 1, UNI_SB__SE } /* sb=se */,
- { 1, 4199, 7138, 15, 11, UNI_IDENTIFIERTYPE__RECOMMENDED } /* identifiertype=recommended */,
- { 2, 7475, 9786, 3, 4, UNI_AGHB } /* sc=aghb */,
- { 3, 4023, 0, 16, 0, UNI_ARABICSUP } /* arabicsupplement */,
- { 3, 8449, 8292, 4, 9, UNI_INNEWTAILUE } /* blk=newtailue */,
- { 15, 1589, 5990, 9, 13, UNI_ZL } /* category=lineseparator */,
- { 0, 6159, 8048, 13, 2, UNI_NV__17 } /* numericvalue=17 */,
- { 0, 6402, 1059, 12, 2, -UNI_IDEO } /* ideographic=no */,
- { 1, 9990, 567, 3, 2, UNI_LB__NS } /* lb=ns */,
- { 0, 3181, 6630, 18, 8, UNI_DT__NONCANON } /* decompositiontype=noncanon */,
- { 0, 8748, 9773, 4, 2, UNI_CCC__27 } /* ccc=27 */,
- { 21, 8449, 753, 4, 9, UNI_INCUNEIFORM } /* blk=cuneiform */,
- { 1, 6629, 6691, 3, 11, UNI_INOLDHUNGARIAN } /* inoldhungarian */,
- { 1, 9464, 0, 5, 0, UNI_ADLM } /* adlam */,
- { 0, 1598, 0, 22, 0, UNI_insc_values_index } /* indicsyllabiccategory= */,
- { 0, 1620, 4472, 3, 8, UNI_SYRIACSUP } /* insyriacsup */,
- { 0, 9946, 5750, 3, 6, UNI_BRAI } /* isbraille */,
- { 0, 9413, 10186, 6, 4, UNI_UIDEO } /* uideo=true */,
- { 14, 8748, 5938, 4, 13, UNI_CCC__IS } /* ccc=iotasubscript */,
- { 3, 6234, 2613, 10, 20, UNI_BC__RLE } /* bidiclass=righttoleftembedding */,
- { 0, 1620, 1787, 5, 20, UNI_SUPPUNCTUATION } /* insupplementalpunctuation */,
- { 0, 4790, 5526, 13, 14, UNI_JG__MANICHAEANKAPH } /* joininggroup=manichaeankaph */,
- { 1, 9251, 36, 6, 1, UNI_CWKCF } /* cwkcf=t */,
- { 4, 8548, 5169, 5, 6, UNI_POSIXXDIGIT } /* posixxdigit */,
- { 2, 4215, 0, 16, 0, UNI_LATIN1 } /* latin1supplement */,
- { 12, 8853, 10498, 7, 3, UNI_HYPHEN } /* hyphen=yes */,
- { 1, 7453, 1059, 8, 2, -UNI_EXTPICT } /* extpict=no */,
- { 0, 1874, 10498, 22, 3, UNI_CWL } /* changeswhenlowercased=yes */,
- { 0, 10393, 501, 3, 11, UNI_P } /* gc=punctuation */,
- { 1, 207, 0, 2, 0, UNI_PI } /* pi */,
- { 1, 9874, 36, 4, 1, UNI_DEP } /* dep=t */,
- { 1, 5964, 0, 13, 0, UNI_KANAEXTA } /* kanaextendeda */,
- { 0, 8465, 34, 8, 8, UNI_BOPOMOFOEXT } /* bopomofoextended */,
- { 1, 8457, 8923, 6, 7, UNI_INMANDAIC } /* block=mandaic */,
- { 0, 3523, 9014, 17, 4, UNI_OSMA } /* scriptextensions=osma */,
- { 1, 448, 0, 32, 0, UNI_INIDC } /* ideographicdescriptioncharacters */,
- { 10, 7475, 6618, 3, 4, UNI_MEND } /* sc=mend */,
- { 14, 6428, 44, 3, 25, UNI_CJKCOMPATIDEOGRAPHS } /* incjkcompatibilityideographs */,
- { 0, 6159, 7751, 13, 2, UNI_NV__11 } /* numericvalue=11 */,
- { 18, 4790, 7330, 13, 3, UNI_JG__QAF } /* joininggroup=qaf */,
- { 5, 6830, 0, 11, 0, UNI_CPMN } /* cyprominoan */,
- { 1, 8569, 0, 4, 0, UNI_JAVA } /* java */,
- { 1, 3508, 8690, 3, 7, UNI_INUGARITIC } /* inugaritic */,
- { 0, 6159, 10351, 13, 3, UNI_NV__5_SLASH_8 } /* numericvalue=5/8 */,
- { 4, 8173, 2138, 3, 22, UNI_BYZANTINEMUSIC } /* inbyzantinemusicalsymbols */,
- { 1, 9414, 0, 5, 0, UNI_ideo_values_index } /* ideo= */,
- { 2, 5018, 10167, 3, 3, UNI_TGLG } /* istglg */,
- { 3, 7475, 9353, 3, 6, UNI_LYDI } /* sc=lydian */,
- { 0, 10058, 7887, 3, 9, UNI_NV__1_SLASH_320 } /* nv=3.125e-03 */,
- { 15, 9866, 9549, 4, 5, -UNI_CWU } /* cwu=false */,
- { 56, 10058, 8085, 3, 9, UNI_NV__1_SLASH_12 } /* nv=8.333e-02 */,
- { 0, 9126, 0, 7, 0, UNI_TIRH } /* tirhuta */,
- { 0, 8874, 5723, 3, 13, UNI_PHLP } /* ispsalterpahlavi */,
- { 0, 7610, 10444, 3, 3, UNI_IN__3 } /* in=v30 */,
- { 0, 9365, 0, 8, 0, UNI_DT__CAN } /* nfdqc=no */,
- { 4, 6159, 7995, 13, 9, UNI_NV__3_SLASH_5 } /* numericvalue=6.000e-01 */,
- { 0, 6428, 6831, 3, 10, UNI_INCYPROMINOAN } /* incyprominoan */,
- { 0, 185, 2203, 3, 10, UNI_CYRILLICSUP } /* iscyrillicsup */,
- { 3, 185, 2072, 2, 21, UNI__PERL_NCHAR } /* isnoncharactercodepoint */,
- { 5, 9669, 0, 5, 0, UNI_TAKR } /* takri */,
- { 49, 9377, 10498, 6, 3, UNI__PERL_PATWS } /* patws=yes */,
- { 1, 9554, 1148, 4, 7, UNI_GCB__PP } /* gcb=prepend */,
- { 10, 9659, 2286, 4, 21, UNI_PRTI } /* scx=inscriptionalparthian */,
- { 0, 8633, 9882, 7, 4, UNI_DIAK } /* script=diak */,
- { 0, 9574, 502, 3, 10, UNI_INPUNCTUATION } /* inpunctuation */,
- { 4, 185, 1348, 2, 2, UNI_UPPERCASELETTER } /* islu */,
- { 3, 6159, 9747, 13, 3, UNI_NV__5_SLASH_2 } /* numericvalue=5/2 */,
- { 6, 1334, 1, 21, 1, -UNI_CE } /* compositionexclusion=n */,
- { 2, 8665, 0, 8, 0, UNI_TFNG } /* tifinagh */,
- { 16, 6428, 544, 3, 19, UNI_CJK } /* incjkunifiedideographs */,
- { 1, 1885, 0, 5, 0, UNI_XPOSIXLOWER } /* lower */,
- { 0, 1175, 0, 26, 0, UNI_cwkcf_values_index } /* changeswhennfkccasefolded= */,
- { 4, 9659, 9347, 4, 6, UNI_LYCI } /* scx=lycian */,
- { 7, 6995, 8853, 10, 2, UNI_LB__HY } /* linebreak=hy */,
- { 0, 3523, 9275, 17, 6, UNI_GOTH } /* scriptextensions=gothic */,
- { 2, 4423, 434, 14, 6, UNI_SB__FO } /* sentencebreak=format */,
- { 0, 8874, 9504, 7, 5, UNI_POSIXBLANK } /* isposixblank */,
- { 9, 8457, 3307, 6, 18, UNI_INPUNCTUATION } /* block=generalpunctuation */,
- { 0, 7475, 9353, 3, 4, UNI_LYDI } /* sc=lydi */,
- { 1, 9283, 1, 4, 1, -UNI_EXT } /* ext=n */,
- { 1, 6402, 36, 12, 1, UNI_IDEO } /* ideographic=t */,
- { 0, 1830, 0, 21, 0, UNI_CWCF } /* changeswhencasefolded */,
- { 2, 2371, 1256, 5, 23, UNI_HALFANDFULLFORMS } /* inhalfwidthandfullwidthforms */,
- { 6, 9659, 9437, 4, 6, UNI_YEZI } /* scx=yezidi */,
- { 0, 1175, 26, 26, 1, UNI_CWKCF } /* changeswhennfkccasefolded=y */,
- { 8, 8449, 4135, 4, 11, UNI_GEORGIANEXT } /* blk=georgianext */,
- { 0, 3379, 0, 9, 0, UNI_LATINEXTA } /* latinexta */,
- { 0, 2863, 36, 19, 1, UNI_IDST } /* idstrinaryoperator=t */,
- { 0, 1896, 0, 22, 0, UNI_cwt_values_index } /* changeswhentitlecased= */,
- { 0, 8874, 5667, 3, 12, UNI_PATSYN } /* ispatternsyntax */,
- { 0, 185, 2161, 3, 20, UNI_CJKCOMPATFORMS } /* iscjkcompatibilityforms */,
- { 1, 1067, 8021, 24, 2, UNI_CCC__26 } /* canonicalcombiningclass=26 */,
- { 1, 185, 10034, 2, 4, UNI_MYMR } /* ismymr */,
- { 1, 7534, 5192, 4, 11, UNI_CI } /* iscaseignorable */,
- { 1, 5162, 1059, 14, 2, -UNI_POSIXXDIGIT } /* asciihexdigit=no */,
- { 0, 1852, 1, 22, 1, -UNI_CWCM } /* changeswhencasemapped=n */,
- { 0, 9659, 9311, 4, 6, UNI_KTHI } /* scx=kaithi */,
- { 1, 8457, 2202, 6, 18, UNI_CYRILLICSUP } /* block=cyrillicsupplement */,
- { 0, 25, 0, 1, 0, UNI_S } /* s */,
- { 9, 7475, 8433, 3, 8, UNI_BALI } /* sc=balinese */,
- { 10, 9659, 8441, 4, 4, UNI_BASS } /* scx=bass */,
- { 3, 8457, 4550, 6, 15, UNI_ARABICEXTA } /* block=arabicextendeda */,
- { 0, 3523, 7593, 17, 10, UNI_PHNX } /* scriptextensions=phoenician */,
- { 9, 9519, 1, 5, 1, -UNI_CWCF } /* cwcf=n */,
- { 0, 4896, 761, 4, 2, UNI_CPMN } /* iscpmn */,
- { 0, 9141, 1813, 3, 2, UNI_ANY } /* isany */,
- { 0, 3235, 0, 18, 0, UNI_epres_values_index } /* emojipresentation= */,
- { 1, 8457, 753, 6, 16, UNI_CUNEIFORMNUMBERS } /* block=cuneiformnumbers */,
- { 0, 2453, 0, 20, 0, UNI_PC } /* connectorpunctuation */,
- { 3, 6159, 8085, 13, 9, UNI_NV__1_SLASH_12 } /* numericvalue=8.333e-02 */,
- { 5, 9798, 0, 4, 0, UNI_ARMI } /* armi */,
- { 1, 2072, 0, 21, 0, UNI__PERL_NCHAR } /* noncharactercodepoint */,
- { 0, 185, 1897, 3, 20, UNI_CWT } /* ischangeswhentitlecased */,
- { 9, 9659, 10122, 4, 4, UNI_ROHG } /* scx=rohg */,
- { 0, 10130, 7216, 4, 3, UNI_SC__SYLO } /* sc=sylo */,
- { 6, 9275, 0, 4, 0, UNI_GOTH } /* goth */,
- { 1, 8449, 9599, 4, 5, UNI_INLIMBU } /* blk=limbu */,
- { 2, 1589, 5764, 9, 14, UNI_ZS } /* category=spaceseparator */,
- { 1, 9263, 10186, 6, 4, UNI_EMOJI } /* emoji=true */,
- { 2, 7603, 10357, 10, 3, UNI_IN__6_DOT_3 } /* presentin=6.3 */,
- { 1, 7481, 1280, 3, 25, UNI_KATAKANAEXT } /* iskatakanaphoneticextensions */,
- { 0, 8449, 8769, 4, 7, UNI_CJKEXTC } /* blk=cjkextc */,
- { 0, 8457, 3505, 6, 18, UNI_RUMI } /* block=ruminumeralsymbols */,
- { 14, 21, 8585, 2, 8, UNI_KANAEXTB } /* inkanaextb */,
- { 7, 6234, 3819, 10, 17, UNI_BC__ES } /* bidiclass=europeanseparator */,
- { 3, 1067, 8093, 24, 2, UNI_CCC__28 } /* canonicalcombiningclass=28 */,
- { 2, 9299, 5077, 4, 13, UNI_VEDICEXT } /* isvedicextensions */,
- { 1, 2863, 1, 19, 1, -UNI_IDST } /* idstrinaryoperator=n */,
- { 7, 4730, 26, 15, 1, UNI_ECOMP } /* emojicomponent=y */,
- { 1, 185, 5358, 2, 14, UNI_LATINEXTB } /* islatinextendedb */,
- { 0, 185, 7072, 2, 11, UNI_MYANMAREXTB } /* ismyanmarextb */,
- { 2, 9990, 224, 3, 2, UNI_LB__PR } /* lb=pr */,
- { 16, 5919, 10186, 6, 4, UNI_EBASE } /* ebase=true */,
- { 0, 8625, 10498, 8, 3, UNI_RADICAL } /* radical=yes */,
- { 1, 5807, 5952, 3, 12, UNI_IPAEXT } /* isipaextensions */,
- { 3, 8633, 8529, 7, 4, UNI_SC__HIRA } /* script=hira */,
- { 2, 9659, 8569, 4, 8, UNI_JAVA } /* scx=javanese */,
- { 0, 9782, 7809, 4, 1, UNI_AGE__6 } /* age=6 */,
- { 0, 1852, 36, 22, 1, UNI_CWCM } /* changeswhencasemapped=t */,
- { 1, 8449, 1094, 4, 27, UNI_ENCLOSEDCJK } /* blk=enclosedcjklettersandmonths */,
- { 0, 1067, 8, 24, 1, UNI_CCC__A } /* canonicalcombiningclass=a */,
- { 8, 10058, 8, 4, 2, UNI_NV__NAN } /* nv=nan */,
- { 1, 7473, 3717, 5, 17, UNI_INSC__CONSONANTPREFIXED } /* insc=consonantprefixed */,
- { 0, 7259, 8274, 10, 6, UNI_WB__MN } /* wordbreak=midnum */,
- { 9, 8748, 7463, 4, 10, UNI_CCC__6 } /* ccc=hanreading */,
- { 30, 9604, 36, 5, 1, UNI_MATH } /* math=t */,
- { 0, 3181, 9245, 18, 6, UNI_DT__ENC } /* decompositiontype=circle */,
- { 0, 3523, 6618, 17, 4, UNI_MEND } /* scriptextensions=mend */,
- { 0, 185, 1335, 3, 19, UNI_CE } /* iscompositionexclusion */,
- { 1, 9221, 36, 6, 1, UNI_BIDIC } /* bidic=t */,
- { 0, 6159, 9197, 13, 4, UNI_NV__7000 } /* numericvalue=7000 */,
- { 0, 9659, 4087, 4, 7, UNI_CPRT } /* scx=cypriot */,
- { 0, 4391, 0, 5, 0, UNI_C } /* other */,
- { 0, 9227, 10186, 6, 4, UNI_BIDIM } /* bidim=true */,
- { 0, 6841, 36, 11, 1, UNI_DEP } /* deprecated=t */,
- { 0, 9659, 6390, 4, 6, UNI_HEBR } /* scx=hebrew */,
- { 2, 4970, 0, 15, 0, UNI_NARB } /* oldnortharabian */,
- { 0, 8457, 4183, 6, 16, UNI_HIGHPUSURROGATES } /* block=highpusurrogates */,
- { 7, 8449, 43, 4, 3, UNI_CJK } /* blk=cjk */,
- { 1, 6159, 9197, 13, 2, UNI_NV__70 } /* numericvalue=70 */,
- { 2, 21, 9335, 2, 6, UNI_INLEPCHA } /* inlepcha */,
- { 2, 1972, 0, 2, 0, UNI_CN } /* cn */,
- { 2, 8449, 7433, 4, 10, UNI_INDIVESAKURU } /* blk=divesakuru */,
- { 1, 8881, 10414, 3, 3, UNI_SOGO } /* issogo */,
- { 0, 8748, 9746, 4, 2, UNI_CCC__15 } /* ccc=15 */,
- { 0, 8449, 9084, 4, 7, UNI_SUPPUAB } /* blk=suppuab */,
- { 14, 8449, 7713, 4, 10, UNI_INWARANGCITI } /* blk=warangciti */,
- { 1, 8457, 5925, 6, 8, UNI_GREEKEXT } /* block=greekext */,
- { 0, 185, 5386, 2, 14, UNI_LATINEXTD } /* islatinextendedd */,
- { 2, 3523, 8322, 17, 4, UNI_PERM } /* scriptextensions=perm */,
- { 1, 9990, 6414, 3, 12, UNI_LB__IS } /* lb=infixnumeric */,
- { 0, 1715, 0, 6, 0, UNI_HANG } /* hangul */,
- { 6, 8633, 8825, 7, 7, UNI_ELYM } /* script=elymaic */,
- { 6, 7475, 9105, 3, 7, UNI_TAVT } /* sc=taiviet */,
- { 10, 6159, 9726, 13, 4, UNI_NV__11_SLASH_2 } /* numericvalue=11/2 */,
- { 0, 10058, 10288, 3, 3, UNI_NV__2_SLASH_3 } /* nv=2/3 */,
- { 15, 9659, 8930, 4, 7, UNI_MARC } /* scx=marchen */,
- { 8, 3508, 1190, 3, 3, UNI_UCAS } /* inucas */,
- { 5, 8545, 9504, 8, 5, UNI_XPOSIXBLANK } /* isxposixblank */,
- { 2, 8457, 8930, 6, 7, UNI_INMARCHEN } /* block=marchen */,
- { 0, 8457, 2101, 6, 15, UNI_MODIFIERLETTERS } /* block=modifierletters */,
- { 1, 7603, 9722, 10, 4, UNI_IN__11 } /* presentin=11.0 */,
- { 2, 7475, 1176, 3, 4, UNI_SC__HANG } /* sc=hang */,
- { 1, 6159, 9179, 13, 6, UNI_NV__432000 } /* numericvalue=432000 */,
- { 4, 7610, 10462, 3, 3, UNI_IN__5_DOT_1 } /* in=v51 */,
- { 2, 3523, 753, 17, 9, UNI_XSUX } /* scriptextensions=cuneiform */,
- { 0, 8457, 942, 6, 10, UNI_PUA } /* block=privateuse */,
- { 16, 3523, 10230, 17, 4, UNI_XSUX } /* scriptextensions=xsux */,
- { 0, 7475, 3163, 3, 4, UNI_SC__COPT } /* sc=copt */,
- { 0, 2223, 1059, 21, 2, -UNI_EXTPICT } /* extendedpictographic=no */,
- { 0, 9950, 5624, 3, 14, UNI_JG__NOJOININGGROUP } /* jg=nojoininggroup */,
- { 6, 8449, 6390, 4, 6, UNI_INHEBREW } /* blk=hebrew */,
- { 14, 7048, 207, 6, 11, UNI_MISCPICTOGRAPHS } /* inmiscpictographs */,
- { 11, 9659, 2768, 4, 19, UNI_EGYP } /* scx=egyptianhieroglyphs */,
- { 0, 9982, 0, 3, 0, UNI_LAO } /* lao */,
- { 0, 9684, 10498, 5, 3, UNI_XIDS } /* xids=yes */,
- { 5, 4471, 0, 6, 0, UNI_SYRC } /* syriac */,
- { 2, 8818, 0, 7, 0, UNI_ELBA } /* elbasan */,
- { 2, 8748, 7904, 4, 2, UNI_CCC__13 } /* ccc=13 */,
- { 4, 4006, 1, 17, 1, -UNI_UIDEO } /* unifiedideograph=n */,
- { 0, 9990, 6366, 3, 4, UNI_LB__GL } /* lb=glue */,
- { 0, 4119, 501, 16, 11, UNI_P } /* generalcategory=punctuation */,
- { 2, 185, 8832, 2, 4, UNI_GRAN } /* isgran */,
- { 0, 3523, 9347, 17, 4, UNI_LYCI } /* scriptextensions=lyci */,
- { 0, 185, 133, 2, 2, UNI_LM } /* islm */,
- { 7, 10381, 1265, 3, 9, UNI_EA__F } /* ea=fullwidth */,
- { 3, 10393, 5899, 3, 13, UNI_ME } /* gc=enclosingmark */,
- { 0, 3523, 7035, 18, 3, UNI_SAMR } /* scriptextensions=samr */,
- { 3, 3541, 0, 18, 0, UNI_SMALLKANAEXT } /* smallkanaextension */,
- { 2, 7475, 8846, 3, 7, UNI_SC__HANO } /* sc=hanunoo */,
- { 0, 9782, 7995, 4, 3, UNI_AGE__6 } /* age=6.0 */,
- { 8, 8449, 6003, 4, 13, UNI_LOWSURROGATES } /* blk=lowsurrogates */,
- { 0, 9659, 3199, 4, 10, UNI_DEVA } /* scx=devanagari */,
- { 16, 9659, 9275, 4, 6, UNI_GOTH } /* scx=gothic */,
- { 5, 1175, 0, 25, 0, UNI_CWKCF } /* changeswhennfkccasefolded */,
- { 0, 6775, 1, 11, 1, -UNI_IDC } /* idcontinue=n */,
- { 0, 4790, 6786, 13, 11, UNI_JG__AFRICANNOON } /* joininggroup=africannoon */,
- { 2, 6159, 10506, 13, 2, UNI_NV__38 } /* numericvalue=38 */,
- { 0, 9604, 3, 5, 1, -UNI_MATH } /* math=f */,
- { 0, 7443, 0, 9, 0, UNI_ext_values_index } /* extender= */,
- { 1, 8449, 8247, 4, 9, UNI_LATINEXTF } /* blk=latinextf */,
- { 0, 7481, 9325, 4, 4, UNI_KHOJ } /* iskhojki */,
- { 1, 8457, 9239, 6, 6, UNI_INCHAKMA } /* block=chakma */,
- { 4, 1249, 10183, 3, 3, UNI_INTOTO } /* intoto */,
- { 10, 9056, 0, 7, 0, UNI_SIDD } /* siddham */,
- { 1, 10375, 9549, 3, 5, -UNI_CI } /* ci=false */,
- { 2, 9950, 4865, 3, 15, UNI_JG__MANICHAEANZAYIN } /* jg=manichaeanzayin */,
- { 5, 9659, 6618, 4, 4, UNI_MEND } /* scx=mend */,
- { 3, 10086, 10498, 4, 3, UNI_PCM } /* pcm=yes */,
- { 1, 4069, 0, 18, 0, UNI_PE } /* isclosepunctuation */,
- { 4, 9950, 4295, 3, 16, UNI_JG__MANICHAEANSAMEKH } /* jg=manichaeansamekh */,
- { 0, 7478, 8699, 4, 6, UNI_INVITHKUQI } /* invithkuqi */,
- { 2, 3181, 6630, 18, 12, UNI_DT__NONCANON } /* decompositiontype=noncanonical */,
- { 0, 185, 38, 2, 2, UNI_XPOSIXDIGIT } /* isnd */,
- { 1, 4247, 0, 16, 0, UNI_LINEARBSYLLABARY } /* linearbsyllabary */,
- { 6, 1689, 0, 4, 0, UNI_PHAG } /* phag */,
- { 1, 8881, 3443, 3, 8, UNI_Z } /* isseparator */,
- { 0, 9341, 9549, 6, 5, -UNI_XPOSIXLOWER } /* lower=false */,
- { 3, 2280, 9625, 3, 4, UNI_INNUSHU } /* innushu */,
- { 8, 3523, 8818, 17, 4, UNI_ELBA } /* scriptextensions=elba */,
- { 1, 8874, 7, 3, 1, UNI_PC } /* ispc */,
- { 0, 9574, 506, 3, 2, UNI_PUA } /* inpua */,
- { 0, 8457, 1094, 6, 27, UNI_ENCLOSEDCJK } /* block=enclosedcjklettersandmonths */,
- { 0, 185, 8916, 2, 7, UNI_MAKA } /* ismakasar */,
- { 12, 10166, 0, 4, 0, UNI_TGLG } /* tglg */,
- { 2, 9990, 6375, 3, 2, UNI_LB__ZW } /* lb=zw */,
- { 1, 8909, 0, 7, 0, UNI_LINA } /* lineara */,
- { 0, 3469, 1059, 18, 2, -UNI_RI } /* regionalindicator=no */,
- { 47, 3523, 9599, 17, 5, UNI_LIMB } /* scriptextensions=limbu */,
- { 3, 9659, 9484, 4, 5, UNI_BAMU } /* scx=bamum */,
- { 0, 6428, 6283, 3, 11, UNI_CYRILLICEXTA } /* incyrillicexta */,
- { 0, 6942, 3983, 4, 4, UNI_INCARIAN } /* incarian */,
- { 0, 9659, 10501, 5, 3, UNI_SYRC } /* scx=syrc */,
- { 32, 1330, 0, 25, 0, UNI_compex_values_index } /* fullcompositionexclusion= */,
- { 1, 9529, 3, 5, 1, -UNI_DASH } /* dash=f */,
- { 3, 185, 10118, 2, 4, UNI_RJNG } /* isrjng */,
- { 1, 8457, 6714, 6, 8, UNI_PHAISTOS } /* block=phaistos */,
- { 7, 7603, 9718, 10, 4, UNI_IN__10 } /* presentin=10.0 */,
- { 0, 9524, 10498, 5, 3, UNI_CWCM } /* cwcm=yes */,
- { 2, 3523, 3109, 17, 4, UNI_CHER } /* scriptextensions=cher */,
- { 0, 7603, 10483, 10, 3, UNI_IN__8 } /* presentin=v80 */,
- { 1, 3217, 0, 5, 0, UNI_EMOJI } /* emoji */,
- { 1, 9659, 10074, 4, 4, UNI_ORYA } /* scx=orya */,
- { 5, 2844, 8391, 19, 9, UNI_GCB__V } /* hangulsyllabletype=voweljamo */,
- { 5, 4119, 5170, 16, 5, UNI_XPOSIXDIGIT } /* generalcategory=digit */,
- { 1, 10058, 8409, 3, 8, UNI_NV__20000000 } /* nv=20000000 */,
- { 12, 8449, 5030, 4, 15, UNI_TAMILSUP } /* blk=tamilsupplement */,
- { 28, 1067, 10504, 27, 2, UNI_CCC__35 } /* canonicalcombiningclass=ccc35 */,
- { 0, 3463, 26, 6, 1, UNI_XPOSIXSPACE } /* space=y */,
- { 1, 10495, 73, 3, 2, UNI_WB__LE } /* wb=le */,
- { 0, 9554, 74, 4, 2, UNI_WB__EB } /* gcb=em */,
- { 0, 6185, 0, 13, 0, UNI_VERTICALFORMS } /* verticalforms */,
- { 9, 9251, 1059, 6, 2, -UNI_CWKCF } /* cwkcf=no */,
- { 1, 4423, 1255, 14, 2, UNI_LB__LF } /* sentencebreak=lf */,
- { 0, 9950, 7320, 3, 3, UNI_JG__FEH } /* jg=feh */,
- { 6, 5860, 0, 12, 0, UNI_BIDIM } /* bidimirrored */,
- { 0, 8449, 9042, 4, 7, UNI_SC__SHRD } /* blk=sharada */,
- { 1, 6234, 23, 10, 2, UNI_BC__AL } /* bidiclass=al */,
- { 0, 4925, 26, 14, 1, UNI_NFCQC__Y } /* nfcquickcheck=y */,
- { 0, 6841, 10186, 11, 4, UNI_DEP } /* deprecated=true */,
- { 2, 6995, 5736, 10, 9, UNI_LB__QU } /* linebreak=quotation */,
- { 0, 9377, 1, 6, 1, -UNI__PERL_PATWS } /* patws=n */,
- { 1, 3523, 8374, 18, 8, UNI_SAMR } /* scriptextensions=samaritan */,
- { 1, 185, 10050, 2, 4, UNI_NKO } /* isnkoo */,
- { 0, 1249, 2380, 3, 3, UNI_INTHAI } /* inthai */,
- { 12, 185, 44, 3, 35, UNI_CJKCOMPATIDEOGRAPHSSUP } /* iscjkcompatibilityideographssupplement */,
- { 1, 5167, 1, 9, 1, -UNI_XPOSIXXDIGIT } /* hexdigit=n */,
- { 0, 9990, 185, 3, 2, UNI_LB__IS } /* lb=is */,
- { 0, 5120, 2312, 14, 11, UNI__PERL_FOLDS_TO_MULTI_CHAR } /* _perl_folds_to_multi_char */,
- { 0, 3523, 2265, 17, 14, UNI_ROHG } /* scriptextensions=hanifirohingya */,
- { 6, 6428, 4656, 3, 14, UNI_CURRENCYSYMBOLS } /* incurrencysymbols */,
- { 1, 6774, 36, 12, 1, UNI_XIDC } /* xidcontinue=t */,
- { 0, 185, 1738, 2, 9, UNI_LATINEXTE } /* islatinexte */,
- { 1, 2363, 9630, 3, 4, UNI_OGAM } /* isogham */,
- { 0, 8449, 79, 4, 35, UNI_ARABICMATH } /* blk=arabicmathematicalalphabeticsymbols */,
- { 7, 185, 3915, 3, 3, UNI_CHAM } /* ischam */,
- { 1, 9659, 2589, 4, 4, UNI_MONG } /* scx=mong */,
- { 0, 185, 8561, 2, 8, UNI_JAMOEXTB } /* isjamoextb */,
- { 0, 9070, 9549, 6, 5, -UNI_STERM } /* sterm=false */,
- { 0, 9257, 1, 6, 1, -UNI_ECOMP } /* ecomp=n */,
- { 1, 218, 7271, 6, 7, UNI__PERL_IDSTART } /* _perl_idstart */,
- { 0, 2868, 1456, 4, 22, UNI_ARABICPFB } /* inarabicpresentationformsb */,
- { 0, 185, 2513, 2, 4, UNI_GLAG } /* isglag */,
- { 1, 6775, 10498, 11, 3, UNI_IDC } /* idcontinue=yes */,
- { 1, 2371, 4154, 5, 13, UNI_HALFANDFULLFORMS } /* inhalfandfullforms */,
- { 4, 8457, 149, 6, 35, UNI_DIACRITICALSSUP } /* block=combiningdiacriticalmarkssupplement */,
- { 1, 8633, 9798, 7, 4, UNI_ARMI } /* script=armi */,
- { 1, 185, 10022, 2, 4, UNI_MLYM } /* ismlym */,
- { 8, 5162, 26, 14, 1, UNI_POSIXXDIGIT } /* asciihexdigit=y */,
- { 0, 5018, 2117, 3, 14, UNI_TRANSPORTANDMAP } /* istransportandmap */,
- { 0, 1067, 9746, 27, 2, UNI_CCC__15 } /* canonicalcombiningclass=ccc15 */,
- { 1, 4655, 0, 14, 0, UNI_SC } /* currencysymbol */,
- { 11, 8881, 3542, 3, 11, UNI_SMALLKANAEXT } /* issmallkanaext */,
- { 1, 5246, 3, 14, 1, -UNI_EMOD } /* emojimodifier=f */,
- { 1, 7475, 10074, 3, 4, UNI_SC__ORYA } /* sc=orya */,
- { 0, 9830, 0, 4, 0, UNI_bpt_values_index } /* bpt= */,
- { 0, 2028, 3, 22, 1, -UNI_LOE } /* logicalorderexception=f */,
- { 1, 8457, 8193, 6, 9, UNI_EMOTICONS } /* block=emoticons */,
- { 2, 8481, 0, 4, 0, UNI_DUPL } /* dupl */,
- { 0, 8633, 9669, 7, 4, UNI_SC__TAKR } /* script=takr */,
- { 1, 185, 8818, 2, 7, UNI_ELBA } /* iselbasan */,
- { 69, 6159, 7815, 13, 9, UNI_NV__1_SLASH_64 } /* numericvalue=1.563e-02 */,
- { 5, 8449, 43, 4, 26, UNI_CJKCOMPATIDEOGRAPHS } /* blk=cjkcompatibilityideographs */,
- { 0, 9574, 6715, 3, 11, UNI_PHAISTOS } /* inphaistosdisc */,
- { 1, 6774, 1, 12, 1, -UNI_XIDC } /* xidcontinue=n */,
- { 0, 7423, 1, 10, 1, -UNI_DIA } /* diacritic=n */,
- { 5, 9659, 9842, 4, 4, UNI_CANS } /* scx=cans */,
- { 0, 185, 601, 2, 2, UNI_NB } /* isnb */,
- { 2, 8457, 4135, 6, 16, UNI_GEORGIANEXT } /* block=georgianextended */,
- { 1, 8449, 783, 4, 30, UNI_ENCLOSEDALPHANUMSUP } /* blk=enclosedalphanumericsupplement */,
- { 9, 9659, 8902, 4, 7, UNI_KALI } /* scx=kayahli */,
- { 44, 4790, 6081, 13, 13, UNI_JG__MANICHAEANTAW } /* joininggroup=manichaeantaw */,
- { 1, 5778, 0, 14, 0, UNI_SUPPUNCTUATION } /* suppunctuation */,
- { 0, 10393, 761, 3, 2, UNI_MN } /* gc=mn */,
- { 0, 8881, 8374, 3, 8, UNI_SAMR } /* issamaritan */,
- { 0, 8449, 8553, 4, 8, UNI_JAMOEXTA } /* blk=jamoexta */,
- { 0, 8633, 8895, 7, 7, UNI_SC__KNDA } /* script=kannada */,
- { 34, 8748, 79, 4, 2, UNI_CCC__AR } /* ccc=ar */,
- { 4, 7603, 7841, 10, 2, UNI_IN__12 } /* presentin=12 */,
- { 3, 9659, 8355, 4, 9, UNI_PAUC } /* scx=paucinhau */,
- { 1, 8457, 5778, 6, 14, UNI_SUPPUNCTUATION } /* block=suppunctuation */,
- { 1, 6797, 3, 11, 1, -UNI_XPOSIXALPHA } /* alphabetic=f */,
- { 0, 9858, 10186, 4, 4, UNI_CWL } /* cwl=true */,
- { 0, 8748, 10270, 4, 3, UNI_CCC__107 } /* ccc=107 */,
- { 20, 753, 0, 16, 0, UNI_CUNEIFORMNUMBERS } /* cuneiformnumbers */,
- { 8, 4925, 48, 14, 1, UNI_NFCQC__M } /* nfcquickcheck=m */,
- { 0, 8457, 2806, 6, 19, UNI_JAMOEXTA } /* block=hanguljamoextendeda */,
- { 1, 2868, 8159, 4, 7, UNI_ARABICPFB } /* inarabicpfb */,
- { 0, 185, 3199, 2, 10, UNI_DEVA } /* isdevanagari */,
- { 1, 1067, 1655, 24, 2, UNI_CCC__DB } /* canonicalcombiningclass=db */,
- { 0, 10393, 1278, 3, 2, UNI_SK } /* gc=sk */,
- { 0, 9659, 8895, 4, 7, UNI_KNDA } /* scx=kannada */,
- { 0, 3523, 10078, 17, 4, UNI_OSGE } /* scriptextensions=osge */,
- { 0, 3523, 3109, 17, 8, UNI_CHER } /* scriptextensions=cherokee */,
- { 0, 185, 184, 2, 34, UNI_MISCPICTOGRAPHS } /* ismiscellaneoussymbolsandpictographs */,
- { 9, 8943, 48, 5, 1, UNI_INCHAM } /* incham */,
- { 8, 7475, 8741, 3, 4, UNI_BRAI } /* sc=brai */,
- { 5, 9529, 36, 5, 1, UNI_DASH } /* dash=t */,
- { 1, 3451, 1, 18, 1, -UNI__PERL_PATWS } /* patternwhitespace=n */,
- { 1, 8545, 9514, 8, 5, UNI_XPOSIXCNTRL } /* isxposixcntrl */,
- { 1, 10058, 9713, 3, 2, UNI_NV__41 } /* nv=41 */,
- { 0, 9990, 1651, 3, 2, UNI_LB__AI } /* lb=ai */,
- { 1, 9826, 0, 4, 0, UNI_BHKS } /* bhks */,
- { 0, 4790, 4820, 13, 15, UNI_JG__MANICHAEANALEPH } /* joininggroup=manichaeanaleph */,
- { 0, 118, 2288, 4, 19, UNI_ININSCRIPTIONALPARTHIAN } /* ininscriptionalparthian */,
- { 0, 1148, 0, 26, 0, UNI_PCM } /* prependedconcatenationmark */,
- { 10, 7420, 9923, 3, 3, UNI_HLUW } /* ishluw */,
- { 1, 7603, 7940, 10, 2, UNI_IN__14 } /* presentin=14 */,
- { 0, 7420, 9288, 3, 5, UNI_HATR } /* ishatran */,
- { 0, 1067, 7904, 27, 2, UNI_CCC__13 } /* canonicalcombiningclass=ccc13 */,
- { 1, 8457, 8211, 6, 9, UNI_INKHUDAWADI } /* block=khudawadi */,
- { 0, 185, 5912, 2, 12, UNI_GRBASE } /* isgraphemebase */,
- { 32, 2280, 2574, 3, 19, UNI_INNYIAKENGPUACHUEHMONG } /* innyiakengpuachuehmong */,
- { 8, 10423, 1, 3, 1, -UNI_RI } /* ri=n */,
- { 5, 9341, 10498, 6, 3, UNI_XPOSIXLOWER } /* lower=yes */,
- { 0, 7171, 1, 11, 1, -UNI_SD } /* softdotted=n */,
- { 8, 1227, 26, 26, 1, UNI_DI } /* defaultignorablecodepoint=y */,
- { 65, 7475, 8832, 3, 7, UNI_SC__GRAN } /* sc=grantha */,
- { 3, 9659, 10070, 4, 4, UNI_ORKH } /* scx=orkh */,
- { 0, 9659, 8825, 4, 4, UNI_ELYM } /* scx=elym */,
- { 0, 8457, 9629, 6, 5, UNI_INOGHAM } /* block=ogham */,
- { 9, 5167, 10186, 9, 4, UNI_XPOSIXXDIGIT } /* hexdigit=true */,
- { 1, 1067, 9806, 24, 4, UNI_CCC__216 } /* canonicalcombiningclass=atar */,
- { 4, 9659, 6450, 4, 5, UNI_KHMR } /* scx=khmer */,
- { 1, 4003, 8523, 4, 6, UNI_INGURMUKHI } /* ingurmukhi */,
- { 0, 10058, 7968, 3, 9, UNI_NV__1_SLASH_20 } /* nv=5.000e-02 */,
- { 4, 9950, 6534, 3, 12, UNI_JG__MALAYALAMNNA } /* jg=malayalamnna */,
- { 0, 6426, 0, 5, 0, UNI_JOINC } /* joinc */,
- { 0, 185, 8784, 3, 6, UNI_CJKEXTE } /* iscjkexte */,
- { 2, 6159, 7895, 13, 2, UNI_NV__33 } /* numericvalue=33 */,
- { 0, 6246, 3, 12, 1, -UNI_BIDIC } /* bidicontrol=f */,
- { 1, 8633, 3870, 7, 17, UNI_KITS } /* script=khitansmallscript */,
- { 2, 185, 9281, 2, 5, UNI_GREXT } /* isgrext */,
- { 4, 8869, 3463, 5, 5, UNI_XPOSIXBLANK } /* horizspace */,
- { 6, 7475, 2513, 3, 4, UNI_SC__GLAG } /* sc=glag */,
- { 2, 6714, 0, 12, 0, UNI_PHAISTOS } /* phaistosdisc */,
- { 2, 10393, 296, 3, 2, UNI_SM } /* gc=sm */,
- { 1, 4940, 10498, 15, 3, UNI_NFKCQC__Y } /* nfkcquickcheck=yes */,
- { 17, 8457, 6474, 7, 12, UNI_BLOCKELEMENTS } /* block=blockelements */,
- { 0, 8449, 5105, 4, 15, UNI_INZANABAZARSQUARE } /* blk=zanabazarsquare */,
- { 8, 4715, 1253, 15, 9, UNI_EA__H } /* eastasianwidth=halfwidth */,
- { 3, 6428, 1479, 3, 23, UNI_CJKSYMBOLS } /* incjksymbolsandpunctuation */,
- { 0, 8633, 7183, 8, 10, UNI_SORA } /* script=sorasompeng */,
- { 0, 9946, 5750, 3, 14, UNI_BRAI } /* isbraillepatterns */,
- { 8, 8449, 2581, 4, 3, UNI_PUA } /* blk=pua */,
- { 4, 3523, 9091, 17, 7, UNI_TGLG } /* scriptextensions=tagalog */,
- { 2, 6995, 10526, 10, 2, UNI_LB__H2 } /* linebreak=h2 */,
- { 13, 6234, 3397, 10, 18, UNI_BC__LRI } /* bidiclass=lefttorightisolate */,
- { 1, 7443, 0, 8, 0, UNI_EXT } /* extender */,
- { 3, 1067, 8111, 27, 2, UNI_CCC__19 } /* canonicalcombiningclass=ccc19 */,
- { 2, 9950, 9330, 4, 5, UNI_JG__LAMADH } /* jg=lamadh */,
- { 2, 7478, 5076, 3, 7, UNI_VEDICEXT } /* invedicext */,
- { 9, 6486, 0, 12, 0, UNI_MAHJONG } /* mahjongtiles */,
- { 0, 783, 0, 21, 0, UNI_ENCLOSEDALPHANUM } /* enclosedalphanumerics */,
- { 1, 2244, 440, 21, 7, UNI_GCB__CN } /* graphemeclusterbreak=control */,
- { 0, 8449, 7383, 4, 10, UNI_INCHORASMIAN } /* blk=chorasmian */,
- { 6, 8457, 10046, 6, 4, UNI_INNEWA } /* block=newa */,
- { 0, 9659, 8818, 4, 4, UNI_ELBA } /* scx=elba */,
- { 4, 2363, 4392, 3, 15, UNI_PO } /* isotherpunctuation */,
- { 18, 6426, 36, 12, 1, UNI_JOINC } /* joincontrol=t */,
- { 2, 4745, 9549, 15, 5, -UNI_GREXT } /* graphemeextend=false */,
- { 9, 6995, 6376, 10, 2, UNI_LB__WJ } /* linebreak=wj */,
- { 1, 7603, 10471, 10, 3, UNI_IN__6_DOT_1 } /* presentin=v61 */,
- { 4, 8633, 9335, 7, 4, UNI_LEPC } /* script=lepc */,
- { 0, 7420, 5349, 3, 3, UNI_HIRA } /* ishira */,
- { 1, 8449, 7204, 4, 11, UNI_SUPERANDSUB } /* blk=superandsub */,
- { 0, 7475, 9962, 3, 4, UNI_KHMR } /* sc=khmr */,
- { 18, 185, 1227, 2, 25, UNI_DI } /* isdefaultignorablecodepoint */,
- { 5, 10495, 1884, 3, 2, UNI_WB__NL } /* wb=nl */,
- { 5, 8457, 3325, 6, 18, UNI_GEORGIANSUP } /* block=georgiansupplement */,
- { 1, 9377, 1059, 6, 2, -UNI__PERL_PATWS } /* patws=no */,
- { 0, 6159, 10508, 13, 2, UNI_NV__39 } /* numericvalue=39 */,
- { 1, 10393, 6462, 3, 12, UNI_NL } /* gc=letternumber */,
- { 4, 6797, 36, 11, 1, UNI_XPOSIXALPHA } /* alphabetic=t */,
- { 0, 9822, 2613, 3, 11, UNI_BC__R } /* bc=righttoleft */,
- { 2, 3253, 0, 4, 0, UNI_ETHI } /* ethi */,
- { 0, 8633, 8569, 7, 8, UNI_SC__JAVA } /* script=javanese */,
- { 15, 7703, 10186, 10, 4, UNI_XPOSIXUPPER } /* uppercase=true */,
- { 4, 7259, 139, 10, 2, UNI_WB__FO } /* wordbreak=fo */,
- { 1, 2391, 0, 21, 0, UNI_TERM } /* terminalpunctuation=t */,
- { 2, 4199, 6642, 15, 12, UNI_IDENTIFIERTYPE__NOTCHARACTER } /* identifiertype=notcharacter */,
- { 2, 8457, 2116, 6, 15, UNI_TRANSPORTANDMAP } /* block=transportandmap */,
- { 0, 4439, 0, 16, 0, UNI_SUPMATHOPERATORS } /* supmathoperators */,
- { 0, 8449, 3700, 4, 17, UNI_INCAUCASIANALBANIAN } /* blk=caucasianalbanian */,
- { 0, 9263, 9549, 6, 5, -UNI_EMOJI } /* emoji=false */,
- { 3, 8633, 8313, 7, 4, UNI_ITAL } /* script=ital */,
- { 5, 7475, 9982, 3, 4, UNI_LAO } /* sc=laoo */,
- { 0, 1984, 0, 12, 0, UNI_DIACRITICALS } /* diacriticals */,
- { 0, 9579, 2552, 4, 3, UNI_INTAILE } /* intaile */,
- { 0, 7603, 7819, 10, 1, UNI_IN__3 } /* presentin=3 */,
- { 0, 8633, 8346, 7, 4, UNI_PALM } /* script=palm */,
- { 0, 5482, 6608, 4, 10, UNI_MATHALPHANUM } /* inmathalphanum */,
- { 49, 10426, 10498, 3, 3, UNI_SD } /* sd=yes */,
- { 0, 8449, 7573, 4, 10, UNI_INOLDSOGDIAN } /* blk=oldsogdian */,
- { 16, 5045, 0, 15, 0, UNI_TITLE } /* titlecaseletter */,
- { 0, 185, 1738, 2, 23, UNI_LATINEXTADDITIONAL } /* islatinextendedadditional */,
- { 0, 8804, 1, 7, 1, -UNI_COMPEX } /* compex=n */,
- { 43, 3523, 9401, 17, 6, UNI_TELU } /* scriptextensions=telugu */,
- { 0, 1227, 0, 25, 0, UNI_DI } /* defaultignorablecodepoint */,
- { 0, 7475, 9275, 3, 6, UNI_GOTH } /* sc=gothic */,
- { 11, 8457, 5977, 6, 13, UNI_KANAEXTB } /* block=kanaextendedb */,
- { 2, 8633, 2286, 7, 21, UNI_PRTI } /* script=inscriptionalparthian */,
- { 6, 10393, 4655, 3, 14, UNI_SC } /* gc=currencysymbol */,
- { 0, 43, 0, 16, 0, UNI_CJKCOMPAT } /* cjkcompatibility */,
- { 4, 8457, 6270, 6, 12, UNI_CHESSSYMBOLS } /* block=chesssymbols */,
- { 2, 185, 9431, 2, 6, UNI_WCHO } /* iswancho */,
- { 17, 7475, 8328, 3, 9, UNI_ORKH } /* sc=oldturkic */,
- { 0, 8449, 184, 4, 20, UNI_MISCSYMBOLS } /* blk=miscellaneoussymbols */,
- { 21, 8457, 3887, 6, 17, UNI_LETTERLIKESYMBOLS } /* block=letterlikesymbols */,
- { 0, 2391, 1, 20, 1, -UNI_TERM } /* terminalpunctuation=n */,
- { 21, 4878, 4360, 3, 15, UNI_MYANMAREXTA } /* inmyanmarextendeda */,
- { 0, 9604, 10498, 5, 3, UNI_MATH } /* math=yes */,
- { 1, 2223, 10498, 21, 3, UNI_EXTPICT } /* extendedpictographic=yes */,
- { 0, 7478, 25, 3, 1, UNI_INVS } /* invs */,
- { 5, 1874, 0, 21, 0, UNI_CWL } /* changeswhenlowercased */,
- { 0, 10423, 0, 3, 0, UNI_ri_values_index } /* ri= */,
- { 8, 9659, 7577, 5, 6, UNI_SOGD } /* scx=sogdian */,
- { 2, 3631, 3, 18, 1, -UNI_VS } /* variationselector=f */,
- { 0, 8449, 8373, 4, 9, UNI_INSAMARITAN } /* blk=samaritan */,
- { 1, 10058, 8021, 3, 2, UNI_NV__26 } /* nv=26 */,
- { 1, 8569, 0, 8, 0, UNI_JAVA } /* javanese */,
- { 6, 8748, 9746, 7, 2, UNI_CCC__15 } /* ccc=ccc15 */,
- { 0, 5018, 1177, 3, 3, UNI_TANG } /* istang */,
- { 1, 9305, 10186, 6, 4, UNI_JOINC } /* joinc=true */,
- { 2, 9659, 2265, 4, 4, UNI_HAN } /* scx=hani */,
- { 0, 7603, 7304, 10, 1, UNI_IN__5 } /* presentin=5 */,
- { 5, 9414, 36, 5, 1, UNI_IDEO } /* ideo=t */,
- { 0, 10058, 7905, 3, 9, UNI_NV__7_SLASH_2 } /* nv=3.500e+00 */,
- { 0, 8449, 8923, 4, 7, UNI_INMANDAIC } /* blk=mandaic */,
- { 0, 7603, 10456, 10, 3, UNI_IN__4_DOT_1 } /* presentin=v41 */,
- { 7, 185, 5442, 2, 4, UNI_LISU } /* islisu */,
- { 64, 7473, 4910, 5, 15, UNI_INSC__MODIFYINGLETTER } /* insc=modifyingletter */,
- { 0, 8449, 1940, 4, 19, UNI_CJKCOMPATIDEOGRAPHS } /* blk=cjkcompatideographs */,
- { 0, 7475, 8346, 3, 4, UNI_PALM } /* sc=palm */,
- { 1, 8633, 8355, 7, 9, UNI_PAUC } /* script=paucinhau */,
- { 0, 9263, 1, 6, 1, -UNI_EMOJI } /* emoji=n */,
- { 2, 8633, 9624, 7, 5, UNI_NSHU } /* script=nushu */,
- { 4, 9659, 8909, 4, 7, UNI_LINA } /* scx=lineara */,
- { 0, 6234, 103, 10, 2, UNI_BC__ET } /* bidiclass=et */,
- { 12, 9950, 6091, 3, 3, UNI_JG__TAW } /* jg=taw */,
- { 0, 9782, 10468, 4, 3, UNI_AGE__6 } /* age=v60 */,
- { 12, 3466, 1059, 3, 2, -UNI_CE } /* ce=no */,
- { 0, 1227, 10186, 26, 4, UNI_DI } /* defaultignorablecodepoint=true */,
- { 0, 8944, 3, 6, 1, -UNI__PERL_NCHAR } /* nchar=f */,
- { 0, 8449, 4442, 4, 13, UNI_MATHOPERATORS } /* blk=mathoperators */,
- { 0, 4119, 6819, 16, 11, UNI_CASEDLETTER } /* generalcategory=casedletter */,
- { 0, 3523, 10014, 17, 4, UNI_MERC } /* scriptextensions=merc */,
- { 5, 8449, 10170, 4, 4, UNI_INTHAI } /* blk=thai */,
- { 0, 1598, 9425, 22, 6, UNI_INSC__VIRAMA } /* indicsyllabiccategory=virama */,
- { 6, 9659, 7083, 4, 4, UNI_NAND } /* scx=nand */,
- { 0, 7603, 10210, 10, 4, UNI_IN__14 } /* presentin=v140 */,
- { 1, 7475, 10050, 3, 3, UNI_SC__NKO } /* sc=nko */,
- { 0, 9782, 10366, 4, 3, UNI_AGE__9 } /* age=9.0 */,
- { 0, 10058, 8093, 3, 2, UNI_NV__28 } /* nv=28 */,
- { 1, 8748, 7904, 7, 2, UNI_CCC__13 } /* ccc=ccc13 */,
- { 0, 9042, 0, 7, 0, UNI_SHRD } /* sharada */,
- { 16, 6797, 0, 11, 0, UNI_alpha_values_index } /* alphabetic= */,
- { 3, 4119, 4670, 16, 15, UNI_PD } /* generalcategory=dashpunctuation */,
- { 1, 21, 1279, 2, 26, UNI_KATAKANAEXT } /* inkatakanaphoneticextensions */,
- { 30, 2363, 3416, 3, 17, UNI_ORNAMENTALDINGBATS } /* isornamentaldingbats */,
- { 0, 8748, 7895, 4, 2, UNI_CCC__33 } /* ccc=33 */,
- { 0, 9383, 10498, 6, 3, UNI_QMARK } /* qmark=yes */,
- { 2, 8457, 8553, 6, 8, UNI_JAMOEXTA } /* block=jamoexta */,
- { 35, 10426, 3, 3, 1, -UNI_SD } /* sd=f */,
- { 23, 5610, 10498, 14, 3, UNI_NFDQC__Y } /* nfdquickcheck=yes */,
- { 0, 7610, 10468, 3, 3, UNI_IN__6 } /* in=v60 */,
- { 0, 1598, 4910, 22, 15, UNI_INSC__MODIFYINGLETTER } /* indicsyllabiccategory=modifyingletter */,
- { 0, 3995, 0, 11, 0, UNI_SGNW } /* signwriting */,
- { 1, 6426, 3, 12, 1, -UNI_JOINC } /* joincontrol=f */,
- { 4, 7423, 1059, 10, 2, -UNI_DIA } /* diacritic=no */,
- { 1, 185, 184, 2, 20, UNI_MISCSYMBOLS } /* ismiscellaneoussymbols */,
- { 20, 185, 10006, 2, 4, UNI_MEDF } /* ismedf */,
- { 5, 9659, 9431, 4, 6, UNI_WCHO } /* scx=wancho */,
- { 71, 7475, 7039, 3, 11, UNI_MEDF } /* sc=medefaidrin */,
- { 1, 185, 9841, 2, 2, UNI_MC } /* ismc */,
- { 8, 8457, 5750, 7, 14, UNI_BRAI } /* block=braillepatterns */,
- { 2, 9659, 1962, 4, 6, UNI_ZYYY } /* scx=common */,
- { 0, 10130, 9064, 4, 3, UNI_SOYO } /* sc=soyo */,
- { 5, 8449, 573, 4, 30, UNI_CJKEXTB } /* blk=cjkunifiedideographsextensionb */,
- { 40, 8449, 2806, 4, 10, UNI_JAMO } /* blk=hanguljamo */,
- { 0, 1574, 7226, 24, 11, UNI_INPC__TOPANDRIGHT } /* indicpositionalcategory=topandright */,
- { 18, 10070, 0, 4, 0, UNI_ORKH } /* orkh */,
- { 1, 9659, 7573, 4, 10, UNI_SOGO } /* scx=oldsogdian */,
- { 3, 9659, 2997, 5, 8, UNI_SUND } /* scx=sundanese */,
- { 22, 8748, 10276, 4, 3, UNI_CCC__122 } /* ccc=122 */,
- { 0, 8457, 3972, 6, 17, UNI_SMALLFORMS } /* block=smallformvariants */,
- { 1, 9574, 902, 3, 27, UNI_PHONETICEXTSUP } /* inphoneticextensionssupplement */,
- { 0, 10130, 7577, 4, 6, UNI_SC__SOGD } /* sc=sogdian */,
- { 8, 7475, 8727, 3, 7, UNI_AVST } /* sc=avestan */,
- { 6, 185, 10026, 2, 3, UNI_MRO } /* ismro */,
- { 0, 6159, 7761, 13, 9, UNI_NV__1_SLASH_8 } /* numericvalue=1.250e-01 */,
- { 10, 8449, 3109, 4, 8, UNI_INCHEROKEE } /* blk=cherokee */,
- { 0, 8457, 2160, 6, 21, UNI_CJKCOMPATFORMS } /* block=cjkcompatibilityforms */,
- { 0, 8633, 1047, 7, 5, UNI_SC__GREK } /* script=greek */,
- { 5, 185, 8770, 3, 6, UNI_CJKEXTC } /* iscjkextc */,
- { 1, 7610, 10366, 3, 3, UNI_IN__9 } /* in=9.0 */,
- { 0, 2028, 10498, 22, 3, UNI_LOE } /* logicalorderexception=yes */,
- { 21, 1741, 8819, 3, 6, UNI_INELBASAN } /* inelbasan */,
- { 1, 6159, 8409, 13, 4, UNI_NV__2000 } /* numericvalue=2000 */,
- { 0, 7443, 1, 9, 1, -UNI_EXT } /* extender=n */,
- { 0, 1067, 9810, 24, 3, UNI_CCC__202 } /* canonicalcombiningclass=atb */,
- { 5, 8633, 10214, 7, 4, UNI_VAI } /* script=vaii */,
- { 8, 7610, 7878, 3, 3, UNI_IN__3_DOT_1 } /* in=3.1 */,
- { 0, 7475, 8657, 3, 4, UNI_SC__TAGB } /* sc=tagb */,
- { 1, 2244, 4430, 21, 2, UNI_WB__EB } /* graphemeclusterbreak=eb */,
- { 7, 9782, 10345, 4, 3, UNI_AGE__5_DOT_2 } /* age=5.2 */,
- { 0, 9554, 4462, 4, 9, UNI_WB__EB } /* gcb=emodifier */,
- { 0, 8457, 2202, 6, 8, UNI_INCYRILLIC } /* block=cyrillic */,
- { 0, 9822, 18, 3, 1, UNI_BC__R } /* bc=r */,
- { 0, 9574, 8347, 3, 8, UNI_PALM } /* inpalmyrene */,
- { 0, 6629, 9640, 3, 4, UNI_INOSAGE } /* inosage */,
- { 0, 185, 664, 3, 29, UNI_CJKEXTE } /* iscjkunifiedideographsextensione */,
- { 0, 8633, 2328, 7, 11, UNI_MTEI } /* script=meeteimayek */,
- { 0, 3181, 8537, 18, 8, UNI_DT__ISO } /* decompositiontype=isolated */,
- { 5, 8633, 9930, 7, 4, UNI_HMNP } /* script=hmnp */,
- { 0, 10423, 1059, 3, 2, -UNI_RI } /* ri=no */,
- { 0, 21, 8247, 2, 9, UNI_LATINEXTF } /* inlatinextf */,
- { 3, 8449, 8705, 6, 8, UNI_BOXDRAWING } /* blk=boxdrawing */,
- { 8, 10058, 10258, 3, 3, UNI_NV__1_SLASH_5 } /* nv=1/5 */,
- { 3, 5482, 6596, 4, 10, UNI_INMASARAMGONDI } /* inmasaramgondi */,
- { 0, 8449, 5414, 4, 14, UNI_LATINEXTF } /* blk=latinextendedf */,
- { 2, 9414, 1, 5, 1, -UNI_IDEO } /* ideo=n */,
- { 1, 942, 0, 14, 0, UNI_PUA } /* privateusearea */,
- { 0, 6234, 2349, 10, 21, UNI_BC__PDI } /* bidiclass=popdirectionalisolate */,
- { 20, 4119, 10546, 16, 2, UNI_ZS } /* generalcategory=zs */,
- { 0, 9383, 26, 6, 1, UNI_QMARK } /* qmark=y */,
- { 0, 9659, 2692, 4, 6, UNI_BRAH } /* scx=brahmi */,
- { 4, 9990, 900, 3, 2, UNI_LB__SP } /* lb=sp */,
- { 5, 185, 3, 3, 1, UNI_CF } /* iscf */,
- { 3, 8633, 8657, 7, 4, UNI_SC__TAGB } /* script=tagb */,
- { 18, 4715, 9359, 15, 6, UNI_EA__NA } /* eastasianwidth=narrow */,
- { 0, 2363, 6532, 3, 3, UNI_OGAM } /* isogam */,
- { 19, 9659, 8818, 4, 7, UNI_ELBA } /* scx=elbasan */,
- { 0, 8633, 9664, 7, 5, UNI_SC__TALE } /* script=taile */,
- { 53, 8457, 3034, 6, 19, UNI_SUPARROWSB } /* block=supplementalarrowsb */,
- { 0, 1067, 7463, 24, 10, UNI_CCC__6 } /* canonicalcombiningclass=hanreading */,
- { 20, 10058, 7914, 3, 9, UNI_NV__3_SLASH_8 } /* nv=3.750e-01 */,
- { 1, 79, 0, 4, 0, UNI_ARAB } /* arab */,
- { 4, 8449, 7563, 4, 10, UNI_INOLDPERSIAN } /* blk=oldpersian */,
- { 8, 8748, 10327, 4, 3, UNI_CCC__IS } /* ccc=240 */,
- { 0, 8748, 41, 4, 2, UNI_CCC__DA } /* ccc=da */,
- { 4, 8449, 3649, 4, 17, UNI_ALCHEMICAL } /* blk=alchemicalsymbols */,
- { 2, 6159, 9163, 13, 4, UNI_NV__6000 } /* numericvalue=6000 */,
- { 6, 8633, 5722, 7, 14, UNI_SC__PHLP } /* script=psalterpahlavi */,
- { 3, 9574, 902, 3, 10, UNI_PHONETICEXT } /* inphoneticext */,
- { 1, 9659, 8473, 4, 8, UNI_BUGI } /* scx=buginese */,
- { 2, 7259, 8951, 10, 7, UNI_WB__NL } /* wordbreak=newline */,
- { 2, 7473, 5232, 5, 14, UNI_INSC__CONSONANTFINAL } /* insc=consonantfinal */,
- { 4, 4880, 0, 15, 0, UNI_MERC } /* meroiticcursive */,
- { 0, 9141, 2418, 3, 3, UNI_POSIXXDIGIT } /* isahex */,
- { 66, 3109, 0, 8, 0, UNI_CHER } /* cherokee */,
- { 10, 3523, 8832, 17, 7, UNI_GRAN } /* scriptextensions=grantha */,
- { 4, 1589, 7105, 9, 11, UNI_NO } /* category=othernumber */,
- { 2, 8457, 5316, 6, 14, UNI_HIGHSURROGATES } /* block=highsurrogates */,
- { 0, 7610, 10345, 3, 3, UNI_IN__5_DOT_2 } /* in=5.2 */,
- { 2, 7475, 9649, 3, 5, UNI_RUNR } /* sc=runic */,
- { 0, 8881, 5779, 3, 13, UNI_SUPPUNCTUATION } /* issuppunctuation */,
- { 0, 9782, 10447, 4, 3, UNI_AGE__3_DOT_1 } /* age=v31 */,
- { 1, 6159, 9209, 13, 2, UNI_NV__90 } /* numericvalue=90 */,
- { 1, 3505, 0, 4, 0, UNI_RUMI } /* rumi */,
- { 16, 8874, 9644, 7, 5, UNI_POSIXPRINT } /* isposixprint */,
- { 0, 9822, 3875, 3, 3, UNI_BC__NSM } /* bc=nsm */,
- { 9567, 8625, 36, 8, 1, UNI_RADICAL } /* radical=t */,
- { 9, 8449, 2996, 4, 19, UNI_SUNDANESESUP } /* blk=sundanesesupplement */,
- { 4, 5167, 9549, 9, 5, -UNI_XPOSIXXDIGIT } /* hexdigit=false */,
- { 0, 7653, 0, 10, 0, UNI_SMALLFORMS } /* smallforms */,
- { 0, 9990, 8853, 3, 6, UNI_LB__HY } /* lb=hyphen */,
- { 0, 1589, 942, 9, 10, UNI_CO } /* category=privateuse */,
- { 0, 2028, 0, 22, 0, UNI_loe_values_index } /* logicalorderexception= */,
- { 0, 185, 75, 2, 2, UNI_ME } /* isme */,
- { 4, 3523, 8346, 17, 9, UNI_PALM } /* scriptextensions=palmyrene */,
- { 2, 3523, 6390, 17, 4, UNI_HEBR } /* scriptextensions=hebr */,
- { 5, 6438, 6940, 12, 11, UNI_JT__C } /* joiningtype=joincausing */,
- { 0, 9028, 3, 7, 1, -UNI_PATSYN } /* patsyn=f */,
- { 0, 3523, 9401, 17, 4, UNI_TELU } /* scriptextensions=telu */,
- { 6, 185, 2901, 2, 19, UNI_MERO } /* ismeroitichieroglyphs */,
- { 0, 5018, 9403, 4, 4, UNI_TELU } /* istelugu */,
- { 2, 9990, 8130, 3, 9, UNI_LB__AI } /* lb=ambiguous */,
- { 0, 9926, 0, 4, 0, UNI_HMNG } /* hmng */,
- { 0, 8633, 10126, 7, 4, UNI_RUNR } /* script=runr */,
- { 0, 2787, 0, 19, 0, UNI_ENCLOSEDALPHANUMSUP } /* enclosedalphanumsup */,
- { 7, 8457, 1279, 6, 26, UNI_KATAKANAEXT } /* block=katakanaphoneticextensions */,
- { 4, 8457, 4087, 6, 16, UNI_CYPRIOTSYLLABARY } /* block=cypriotsyllabary */,
- { 0, 7420, 8854, 3, 5, UNI_HYPHEN } /* ishyphen */,
- { 12, 9782, 10360, 4, 3, UNI_AGE__7 } /* age=7.0 */,
- { 3, 6159, 7303, 13, 10, UNI_NV___MINUS_1_SLASH_2 } /* numericvalue=-5.000e-01 */,
- { 4, 6159, 7860, 13, 9, UNI_NV__1_SLASH_4 } /* numericvalue=2.500e-01 */,
- { 0, 7259, 1279, 10, 2, UNI_WB__KA } /* wordbreak=ka */,
- { 0, 8449, 8641, 4, 8, UNI_SPECIALS } /* blk=specials */,
- { 1, 6774, 9549, 12, 5, -UNI_XIDC } /* xidcontinue=false */,
- { 0, 8346, 0, 9, 0, UNI_PALM } /* palmyrene */,
- { 8, 4730, 1059, 15, 2, -UNI_ECOMP } /* emojicomponent=no */,
- { 0, 7475, 1738, 3, 5, UNI_SC__LATN } /* sc=latin */,
- { 3, 1574, 2639, 24, 14, UNI_INPC__BOTTOMANDRIGHT } /* indicpositionalcategory=bottomandright */,
- { 4, 1245, 0, 3, 0, UNI_DEP } /* dep */,
- { 21, 5482, 4444, 4, 11, UNI_MATHOPERATORS } /* inmathoperators */,
- { 1, 8633, 3253, 7, 4, UNI_ETHI } /* script=ethi */,
- { 2, 3466, 9549, 3, 5, -UNI_CE } /* ce=false */,
- { 3, 9383, 0, 5, 0, UNI_QMARK } /* qmark */,
- { 1, 9890, 469, 4, 2, UNI_DT__ENC } /* dt=enc */,
- { 0, 10393, 1059, 3, 2, UNI_NO } /* gc=no */,
- { 10, 185, 3199, 2, 13, UNI_DEVANAGARIEXT } /* isdevanagariext */,
- { 1, 9950, 9474, 3, 5, UNI_JG__ALAPH } /* jg=alaph */,
- { 4, 8748, 10282, 7, 3, UNI_CCC__132 } /* ccc=ccc132 */,
- { 0, 6629, 9015, 3, 6, UNI_INOSMANYA } /* inosmanya */,
- { 3, 1067, 0, 24, 0, UNI_ccc_values_index } /* canonicalcombiningclass= */,
- { 1, 10393, 10536, 3, 2, UNI_CASEDLETTER } /* gc=l& */,
- { 1, 10058, 9167, 3, 2, UNI_NV__30 } /* nv=30 */,
- { 6, 1830, 1059, 22, 2, -UNI_CWCF } /* changeswhencasefolded=no */,
- { 21, 185, 10122, 2, 4, UNI_ROHG } /* isrohg */,
- { 3, 3523, 8697, 17, 4, UNI_VITH } /* scriptextensions=vith */,
- { 3, 1175, 1059, 26, 2, -UNI_CWKCF } /* changeswhennfkccasefolded=no */,
- { 68, 185, 3379, 2, 18, UNI_LATINEXTADDITIONAL } /* islatinextadditional */,
- { 0, 9147, 10498, 7, 3, UNI_XPOSIXSPACE } /* wspace=yes */,
- { 13, 8449, 1692, 4, 15, UNI_GEOMETRICSHAPES } /* blk=geometricshapes */,
- { 2, 7475, 3109, 3, 8, UNI_CHER } /* sc=cherokee */,
- { 1, 6714, 0, 8, 0, UNI_PHAISTOS } /* phaistos */,
- { 0, 6995, 900, 10, 2, UNI_LB__SP } /* linebreak=sp */,
- { 1, 8449, 383, 4, 33, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* blk=supplementalsymbolsandpictographs */,
- { 1, 8545, 1929, 8, 5, UNI_XPOSIXUPPER } /* isxposixupper */,
- { 3, 2184, 0, 7, 0, UNI_RADICAL } /* radical */,
- { 2, 9323, 0, 6, 0, UNI_KHOJ } /* khojki */,
- { 0, 4535, 6777, 15, 8, UNI__PERL_CHARNAME_CONTINUE } /* _perl_charname_continue */,
- { 0, 4940, 17, 16, 1, UNI_NFKCQC__N } /* nfkcquickcheck=no */,
- { 65, 3523, 8441, 17, 8, UNI_BASS } /* scriptextensions=bassavah */,
- { 1, 10381, 8, 3, 1, UNI_EA__A } /* ea=a */,
- { 2, 7473, 5015, 5, 15, UNI_INSC__REGISTERSHIFTER } /* insc=registershifter */,
- { 0, 9659, 9966, 4, 4, UNI_KITS } /* scx=kits */,
- { 3, 4790, 6094, 13, 13, UNI_JG__MANICHAEANTEN } /* joininggroup=manichaeanten */,
- { 2, 3523, 10026, 17, 4, UNI_MRO } /* scriptextensions=mroo */,
- { 1, 6995, 4928, 10, 2, UNI_LB__QU } /* linebreak=qu */,
- { 1, 7473, 762, 5, 6, UNI_INSC__NUMBER } /* insc=number */,
- { 2, 8748, 8030, 4, 2, UNI_CCC__36 } /* ccc=36 */,
- { 3, 8633, 9978, 7, 4, UNI_LANA } /* script=lana */,
- { 0, 8633, 9275, 7, 6, UNI_GOTH } /* script=gothic */,
- { 1, 9544, 2765, 5, 4, -UNI_EXT } /* ext=false */,
- { 36, 9950, 10420, 3, 3, UNI_JG__REH } /* jg=reh */,
- { 3, 8457, 0, 6, 34, UNI_UCAS } /* block=unifiedcanadianaboriginalsyllabics */,
- { 6, 2653, 3595, 20, 18, UNI_VO__TR } /* verticalorientation=transformedrotated */,
- { 6, 1620, 3018, 5, 16, UNI_SUPARROWSA } /* insupplementalarrowsa */,
- { 24, 3523, 7183, 18, 10, UNI_SORA } /* scriptextensions=sorasompeng */,
- { 0, 7473, 4039, 5, 16, UNI_INSC__CANTILLATIONMARK } /* insc=cantillationmark */,
- { 1, 8449, 5925, 4, 13, UNI_GREEKEXT } /* blk=greekextended */,
- { 0, 6995, 9555, 10, 2, UNI_LB__CB } /* linebreak=cb */,
- { 0, 6159, 9163, 13, 2, UNI_NV__60 } /* numericvalue=60 */,
- { 0, 10058, 9209, 3, 3, UNI_NV__900 } /* nv=900 */,
- { 1, 1830, 3, 22, 1, -UNI_CWCF } /* changeswhencasefolded=f */,
- { 1, 8776, 0, 7, 0, UNI_CJKEXTD } /* cjkextd */,
- { 5, 2072, 0, 22, 0, UNI_nchar_values_index } /* noncharactercodepoint= */,
- { 3, 8457, 4503, 6, 9, UNI_TANGUTSUP } /* block=tangutsup */,
- { 0, 9782, 5834, 4, 2, UNI_AGE__10 } /* age=10 */,
- { 3, 10495, 8489, 3, 8, UNI_WB__EB } /* wb=ebasegaz */,
- { 0, 1701, 1226, 2, 2, UNI_SHRD } /* shrd */,
- { 5, 8881, 3542, 3, 17, UNI_SMALLKANAEXT } /* issmallkanaextension */,
- { 0, 2391, 26, 20, 1, UNI_TERM } /* terminalpunctuation=y */,
- { 0, 8748, 7835, 4, 1, UNI_CCC__8 } /* ccc=8 */,
- { 3, 10034, 0, 4, 0, UNI_MYMR } /* mymr */,
- { 0, 1067, 10207, 24, 3, UNI_CCC__130 } /* canonicalcombiningclass=130 */,
- { 0, 10130, 2997, 4, 8, UNI_SUND } /* sc=sundanese */,
- { 0, 10426, 1059, 3, 2, -UNI_SD } /* sd=no */,
- { 1, 3235, 1, 18, 1, -UNI_EPRES } /* emojipresentation=n */,
- { 1, 8874, 2655, 3, 3, UNI_PRTI } /* isprti */,
- { 1, 7271, 10186, 8, 4, UNI_IDS } /* idstart=true */,
- { 7, 9890, 7, 3, 3, UNI_DT__CAN } /* dt=can */,
- { 8, 9659, 8930, 4, 4, UNI_MARC } /* scx=marc */,
- { 8, 8881, 1785, 3, 22, UNI_SUPPUNCTUATION } /* issupplementalpunctuation */,
- { 8, 21, 4215, 2, 9, UNI_LATIN1 } /* inlatin1sup */,
- { 0, 9950, 7320, 3, 2, UNI_JG__FE } /* jg=fe */,
- { 1, 9413, 1059, 6, 2, -UNI_UIDEO } /* uideo=no */,
- { 8, 8449, 4503, 4, 16, UNI_TANGUTSUP } /* blk=tangutsupplement */,
- { 16, 6159, 9167, 13, 5, UNI_NV__30000 } /* numericvalue=30000 */,
- { 1, 8625, 3, 8, 1, -UNI_RADICAL } /* radical=f */,
- { 1, 8633, 2265, 7, 4, UNI_SC__HAN } /* script=hani */,
- { 10, 8449, 9126, 4, 7, UNI_INTIRHUTA } /* blk=tirhuta */,
- { 4, 8449, 8193, 4, 9, UNI_EMOTICONS } /* blk=emoticons */,
- { 0, 6159, 10261, 13, 3, UNI_NV__1_SLASH_7 } /* numericvalue=1/7 */,
- { 1, 8633, 10246, 7, 4, UNI_SC__QAAI } /* script=zinh */,
- { 0, 8955, 1096, 4, 9, UNI_ENCLOSEDCJK } /* inenclosedcjk */,
- { 5, 4151, 0, 16, 0, UNI_HALFANDFULLFORMS } /* halfandfullforms */,
- { 4, 8633, 8734, 7, 4, UNI_SC__BENG } /* script=beng */,
- { 0, 185, 3253, 2, 18, UNI_ETHIOPICSUP } /* isethiopicsupplement */,
- { 57, 5030, 0, 5, 0, UNI_TAML } /* tamil */,
- { 0, 8457, 5951, 6, 13, UNI_IPAEXT } /* block=ipaextensions */,
- { 1, 8457, 6306, 6, 12, UNI_CYRILLICEXTC } /* block=cyrillicextc */,
- { 1, 1380, 0, 25, 0, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* symbolsandpictographsexta */,
- { 2, 185, 4442, 2, 13, UNI_MATHOPERATORS } /* ismathoperators */,
- { 1, 1620, 9043, 3, 6, UNI_SC__SHRD } /* insharada */,
- { 6, 9574, 9, 5, 2, UNI_INPC__NA } /* inpc=na */,
- { 0, 10393, 24, 3, 1, UNI_L } /* gc=l */,
- { 8, 8748, 9425, 4, 6, UNI_CCC__9 } /* ccc=virama */,
- { 0, 8548, 3463, 5, 5, UNI_POSIXSPACE } /* posixspace */,
- { 1, 4006, 9549, 17, 5, -UNI_UIDEO } /* unifiedideograph=false */,
- { 2, 9950, 6532, 3, 5, UNI_JG__GAMAL } /* jg=gamal */,
- { 1, 9574, 5681, 3, 13, UNI_PHONETICEXTSUP } /* inphoneticextsup */,
- { 0, 6159, 7914, 13, 9, UNI_NV__3_SLASH_8 } /* numericvalue=3.750e-01 */,
- { 4, 3523, 9998, 17, 4, UNI_LINB } /* scriptextensions=linb */,
- { 0, 3523, 1574, 18, 3, UNI_SIND } /* scriptextensions=sind */,
- { 0, 1940, 0, 19, 0, UNI_CJKCOMPATIDEOGRAPHS } /* cjkcompatideographs */,
- { 3, 8449, 2138, 5, 22, UNI_BYZANTINEMUSIC } /* blk=byzantinemusicalsymbols */,
- { 2, 9946, 9819, 3, 3, UNI_BATK } /* isbatk */,
- { 7, 9659, 9639, 4, 5, UNI_OSGE } /* scx=osage */,
- { 4, 7475, 8355, 3, 9, UNI_PAUC } /* sc=paucinhau */,
- { 0, 185, 9599, 2, 4, UNI_LIMB } /* islimb */,
- { 0, 10489, 3606, 3, 7, UNI_VO__R } /* vo=rotated */,
- { 0, 8633, 9918, 7, 4, UNI_SC__HANO } /* script=hano */,
- { 1, 6159, 5834, 13, 13, UNI_NV__1000000000000 } /* numericvalue=1000000000000 */,
- { 17, 8449, 317, 4, 33, UNI_MISCMATHSYMBOLSB } /* blk=miscellaneousmathematicalsymbolsb */,
- { 0, 3181, 2363, 18, 3, UNI_DT__ISO } /* decompositiontype=iso */,
- { 0, 9659, 9401, 4, 6, UNI_TELU } /* scx=telugu */,
- { 5, 1918, 10498, 22, 3, UNI_CWU } /* changeswhenuppercased=yes */,
- { 8, 8748, 9021, 4, 7, UNI_CCC__1 } /* ccc=overlay */,
- { 16, 6841, 3, 11, 1, -UNI_DEP } /* deprecated=f */,
- { 0, 9028, 0, 6, 0, UNI_PATSYN } /* patsyn */,
- { 13, 3523, 58, 17, 2, UNI_YI } /* scriptextensions=yi */,
- { 1, 2371, 2808, 4, 8, UNI_JAMO } /* inhanguljamo */,
- { 1, 7475, 9966, 3, 4, UNI_KITS } /* sc=kits */,
- { 0, 4119, 2351, 16, 2, UNI_PD } /* generalcategory=pd */,
- { 8, 9659, 10118, 4, 4, UNI_RJNG } /* scx=rjng */,
- { 1, 8449, 7039, 4, 11, UNI_INMEDEFAIDRIN } /* blk=medefaidrin */,
- { 1, 9071, 7441, 6, 3, UNI_TERM } /* term=true */,
- { 0, 8449, 8585, 4, 8, UNI_KANAEXTB } /* blk=kanaextb */,
- { 0, 7259, 18, 10, 2, UNI_RI } /* wordbreak=ri */,
- { 1, 6995, 4625, 10, 15, UNI_LB__CB } /* linebreak=contingentbreak */,
- { 1, 6159, 9702, 13, 4, UNI_NV__1_SLASH_20 } /* numericvalue=1/20 */,
- { 5, 8449, 8355, 4, 9, UNI_INPAUCINHAU } /* blk=paucinhau */,
- { 2, 7473, 4595, 5, 15, UNI_INSC__CONSONANTKILLER } /* insc=consonantkiller */,
- { 1, 9822, 2977, 3, 19, UNI_BC__RLO } /* bc=righttoleftoverride */,
- { 0, 7475, 9489, 3, 5, UNI_BATK } /* sc=batak */,
- { 0, 7373, 0, 10, 0, UNI_C } /* category=c */,
- { 0, 9822, 5652, 4, 14, UNI_BC__BN } /* bc=boundaryneutral */,
- { 0, 9822, 3271, 3, 18, UNI_BC__ET } /* bc=europeanterminator */,
- { 0, 9946, 5750, 3, 3, UNI_BRAI } /* isbrai */,
- { 11, 1067, 8409, 27, 2, UNI_CCC__20 } /* canonicalcombiningclass=ccc20 */,
- { 0, 8748, 10294, 4, 3, UNI_CCC__202 } /* ccc=202 */,
- { 0, 9659, 8513, 4, 8, UNI_GUJR } /* scx=gujarati */,
- { 0, 3523, 8337, 17, 9, UNI_OUGR } /* scriptextensions=olduyghur */,
- { 0, 8449, 7643, 4, 10, UNI_INSAURASHTRA } /* blk=saurashtra */,
- { 2, 6942, 3685, 4, 15, UNI_UCAS } /* incanadiansyllabics */,
- { 1, 8547, 3463, 6, 5, UNI_XPOSIXSPACE } /* xposixspace */,
- { 6, 185, 2589, 2, 4, UNI_MONG } /* ismong */,
- { 1, 8449, 4471, 4, 16, UNI_SYRIACSUP } /* blk=syriacsupplement */,
- { 24, 3523, 9814, 17, 4, UNI_AVST } /* scriptextensions=avst */,
- { 4, 3379, 0, 18, 0, UNI_LATINEXTADDITIONAL } /* latinextadditional */,
- { 0, 185, 8805, 3, 5, UNI_COMPEX } /* iscompex */,
- { 0, 7420, 1716, 3, 22, UNI_COMPATJAMO } /* ishangulcompatibilityjamo */,
- { 0, 5105, 0, 15, 0, UNI_ZANB } /* zanabazarsquare */,
- { 1, 8449, 5977, 4, 13, UNI_KANAEXTB } /* blk=kanaextendedb */,
- { 0, 1830, 36, 22, 1, UNI_CWCF } /* changeswhencasefolded=t */,
- { 0, 3523, 8689, 17, 8, UNI_UGAR } /* scriptextensions=ugaritic */,
- { 4, 1121, 0, 27, 0, UNI_OCR } /* opticalcharacterrecognition */,
- { 5, 10495, 529, 3, 7, UNI_WB__NU } /* wb=numeric */,
- { 1, 1741, 3786, 3, 16, UNI_ETHIOPICEXTA } /* inethiopicextendeda */,
- { 0, 4685, 0, 15, 0, UNI_DIACRITICALSEXT } /* diacriticalsext */,
- { 1, 5190, 1, 14, 1, -UNI_CI } /* caseignorable=n */,
- { 0, 723, 0, 30, 0, UNI_CJKEXTG } /* cjkunifiedideographsextensiong */,
- { 0, 185, 3458, 2, 10, UNI_XPOSIXSPACE } /* iswhitespace */,
- { 0, 8457, 7663, 6, 10, UNI_SUPARROWSA } /* block=suparrowsa */,
- { 0, 9141, 98, 3, 9, UNI_XPOSIXALPHA } /* isalphabetic */,
- { 2, 10393, 32, 3, 2, UNI__PERL_SURROGATE } /* gc=cs */,
- { 1, 7475, 8937, 3, 7, UNI_SC__MULT } /* sc=multani */,
- { 7, 8457, 6120, 6, 13, UNI_MAYANNUMERALS } /* block=mayannumerals */,
- { 0, 7373, 4072, 10, 15, UNI_PE } /* category=closepunctuation */,
- { 0, 2868, 4567, 4, 13, UNI_ARABICEXTB } /* inarabicextendedb */,
- { 4, 3523, 0, 17, 0, UNI_scx_values_index } /* scriptextensions= */,
- { 0, 7293, 10235, 3, 3, UNI_YI } /* isyiii */,
- { 0, 8633, 7483, 7, 10, UNI_KHAR } /* script=kharoshthi */,
- { 0, 9469, 0, 5, 0, UNI_ahex_values_index } /* ahex= */,
- { 0, 10058, 8048, 3, 2, UNI_NV__17 } /* nv=17 */,
- { 1, 3523, 2313, 17, 4, UNI_MULT } /* scriptextensions=mult */,
- { 1, 9257, 0, 6, 0, UNI_ecomp_values_index } /* ecomp= */,
- { 0, 5018, 10163, 3, 3, UNI_TFNG } /* istfng */,
- { 8, 9469, 1059, 5, 2, -UNI_POSIXXDIGIT } /* ahex=no */,
- { 6, 1067, 8021, 27, 2, UNI_CCC__26 } /* canonicalcombiningclass=ccc26 */,
- { 0, 9954, 7543, 3, 10, UNI_JT__U } /* jt=nonjoining */,
- { 2, 8633, 9098, 7, 7, UNI_LANA } /* script=taitham */,
- { 1, 9141, 9791, 3, 3, UNI_AHOM } /* isahom */,
- { 5, 9782, 7763, 4, 1, UNI_AGE__2 } /* age=2 */,
- { 5, 10026, 0, 4, 0, UNI_MRO } /* mroo */,
- { 2, 9822, 899, 3, 2, UNI_BC__WS } /* bc=ws */,
- { 0, 1589, 4103, 9, 16, UNI_PF } /* category=finalpunctuation */,
- { 2, 9946, 9505, 3, 4, UNI_XPOSIXBLANK } /* isblank */,
- { 4, 3523, 10158, 17, 4, UNI_TAVT } /* scriptextensions=tavt */,
- { 2, 185, 4327, 2, 16, UNI_MISCMATHSYMBOLSA } /* ismiscmathsymbolsa */,
- { 0, 7603, 10444, 10, 3, UNI_IN__3 } /* presentin=v30 */,
- { 3, 3523, 7129, 18, 3, UNI_SHAW } /* scriptextensions=shaw */,
- { 0, 5344, 0, 6, 0, UNI_KANGXI } /* kangxi */,
- { 0, 5018, 4504, 3, 15, UNI_TANGUTSUP } /* istangutsupplement */,
- { 8, 8449, 4503, 4, 9, UNI_TANGUTSUP } /* blk=tangutsup */,
- { 0, 6159, 7809, 13, 1, UNI_NV__6 } /* numericvalue=6 */,
- { 0, 8457, 5075, 6, 15, UNI_VEDICEXT } /* block=vedicextensions */,
- { 0, 5018, 2117, 3, 21, UNI_TRANSPORTANDMAP } /* istransportandmapsymbols */,
- { 0, 8449, 942, 4, 10, UNI_PUA } /* blk=privateuse */,
- { 1, 7610, 7995, 3, 3, UNI_IN__6 } /* in=6.0 */,
- { 1, 9554, 1255, 4, 2, UNI_LB__LF } /* gcb=lf */,
- { 1, 8449, 6294, 4, 12, UNI_CYRILLICEXTB } /* blk=cyrillicextb */,
- { 0, 8473, 0, 4, 0, UNI_BUGI } /* bugi */,
- { 1, 9599, 0, 5, 0, UNI_LIMB } /* limbu */,
- { 3, 8457, 9335, 6, 6, UNI_INLEPCHA } /* block=lepcha */,
- { 5, 9484, 0, 5, 0, UNI_BAMU } /* bamum */,
- { 2, 8457, 480, 6, 32, UNI_IDEOGRAPHICSYMBOLS } /* block=ideographicsymbolsandpunctuation */,
- { 2, 9685, 1, 4, 1, -UNI_IDS } /* ids=n */,
- { 0, 9659, 10094, 4, 4, UNI_PHNX } /* scx=phnx */,
- { 5, 10495, 126, 3, 2, UNI_LB__CR } /* wb=cr */,
- { 4, 8748, 10309, 4, 3, UNI_CCC__R } /* ccc=226 */,
- { 0, 185, 1984, 2, 22, UNI_DIACRITICALSFORSYMBOLS } /* isdiacriticalsforsymbols */,
- { 16, 3181, 3603, 18, 3, UNI_DT__MED } /* decompositiontype=med */,
- { 1, 6159, 9713, 13, 2, UNI_NV__41 } /* numericvalue=41 */,
- { 0, 10058, 9173, 3, 6, UNI_NV__400000 } /* nv=400000 */,
- { 0, 6774, 10498, 12, 3, UNI_XIDC } /* xidcontinue=yes */,
- { 0, 3523, 8593, 17, 8, UNI_MAHJ } /* scriptextensions=mahajani */,
- { 16, 7475, 8741, 3, 7, UNI_BRAI } /* sc=braille */,
- { 0, 7475, 1279, 3, 8, UNI_SC__KANA } /* sc=katakana */,
- { 0, 3559, 0, 18, 0, UNI_TAIXUANJING } /* taixuanjingsymbols */,
- { 8, 6428, 544, 3, 29, UNI_CJKEXTA } /* incjkunifiedideographsextensiona */,
- { 0, 8449, 6606, 4, 12, UNI_MATHALPHANUM } /* blk=mathalphanum */,
- { 0, 8633, 9057, 8, 6, UNI_SIDD } /* script=siddham */,
- { 0, 9147, 3, 7, 1, -UNI_XPOSIXSPACE } /* wspace=f */,
- { 3, 8748, 1656, 4, 2, UNI_CCC__BR } /* ccc=br */,
- { 0, 10058, 9750, 3, 4, UNI_NV__17_SLASH_2 } /* nv=17/2 */,
- { 4, 2868, 8419, 4, 6, UNI_INARMENIAN } /* inarmenian */,
- { 2, 4119, 107, 16, 6, UNI_S } /* generalcategory=symbol */,
- { 17, 6378, 0, 12, 0, UNI_GONG } /* gunjalagondi */,
- { 0, 8449, 7072, 4, 11, UNI_MYANMAREXTB } /* blk=myanmarextb */,
- { 3, 9878, 10498, 4, 3, UNI_DIA } /* dia=yes */,
- { 1, 6159, 5835, 13, 1, UNI_NV__0 } /* numericvalue=0 */,
- { 0, 9659, 9105, 4, 7, UNI_TAVT } /* scx=taiviet */,
- { 2, 8449, 4471, 4, 6, UNI_INSYRIAC } /* blk=syriac */,
- { 0, 1067, 8066, 24, 2, UNI_CCC__18 } /* canonicalcombiningclass=18 */,
- { 1, 8633, 3199, 7, 10, UNI_SC__DEVA } /* script=devanagari */,
- { 2, 2244, 4462, 21, 9, UNI_WB__EB } /* graphemeclusterbreak=emodifier */,
- { 1, 3559, 0, 11, 0, UNI_TAIXUANJING } /* taixuanjing */,
- { 9, 7420, 5317, 3, 13, UNI_HIGHSURROGATES } /* ishighsurrogates */,
- { 1, 1692, 0, 23, 0, UNI_GEOMETRICSHAPESEXT } /* geometricshapesextended */,
- { 0, 4790, 7494, 14, 9, UNI_JG__KNOTTEDHEH } /* joininggroup=knottedheh */,
- { 5, 7481, 9318, 3, 5, UNI_KANBUN } /* iskanbun */,
- { 0, 9659, 8741, 4, 4, UNI_BRAI } /* scx=brai */,
- { 37, 2371, 1551, 3, 23, UNI_HIGHPUSURROGATES } /* inhighprivateusesurrogates */,
- { 0, 8748, 10312, 4, 3, UNI_CCC__AL } /* ccc=228 */,
- { 3, 8832, 0, 4, 0, UNI_GRAN } /* gran */,
- { 5, 6159, 10516, 13, 2, UNI_NV__47 } /* numericvalue=47 */,
- { 0, 185, 1330, 2, 24, UNI_COMPEX } /* isfullcompositionexclusion */,
- { 0, 3523, 9035, 17, 7, UNI_PHAG } /* scriptextensions=phagspa */,
- { 0, 7373, 1, 10, 1, UNI_CN } /* category=cn */,
- { 0, 3523, 10034, 17, 4, UNI_MYMR } /* scriptextensions=mymr */,
- { 1, 4199, 7248, 15, 11, UNI_IDENTIFIERTYPE__UNCOMMONUSE } /* identifiertype=uncommonuse */,
- { 0, 10393, 4331, 3, 10, UNI_SM } /* gc=mathsymbol */,
- { 0, 9950, 6582, 3, 12, UNI_JG__MANICHAEANPE } /* jg=manichaeanpe */,
- { 1, 185, 1094, 2, 27, UNI_ENCLOSEDCJK } /* isenclosedcjklettersandmonths */,
- { 4, 2371, 8530, 3, 7, UNI_INHIRAGANA } /* inhiragana */,
- { 3, 1589, 1884, 9, 2, UNI_NL } /* category=nl */,
- { 0, 8449, 3253, 4, 11, UNI_ETHIOPICSUP } /* blk=ethiopicsup */,
- { 4, 185, 6618, 2, 12, UNI_MEND } /* ismendekikakui */,
- { 0, 8449, 5696, 8, 4, UNI_INBOPOMOFO } /* blk=bopomofo */,
- { 3, 9659, 7483, 4, 10, UNI_KHAR } /* scx=kharoshthi */,
- { 6, 3181, 8986, 18, 7, UNI_DT__NB } /* decompositiontype=nobreak */,
- { 2, 9227, 36, 6, 1, UNI_BIDIM } /* bidim=t */,
- { 0, 10218, 0, 4, 0, UNI_WCHO } /* wcho */,
- { 1, 8457, 251, 6, 33, UNI_DIACRITICALSEXT } /* block=combiningdiacriticalmarksextended */,
- { 1, 10130, 3996, 4, 10, UNI_SGNW } /* sc=signwriting */,
- { 1, 1067, 9161, 24, 3, UNI_CCC__216 } /* canonicalcombiningclass=216 */,
- { 1, 9685, 10186, 4, 4, UNI_IDS } /* ids=true */,
- { 5, 8457, 4135, 6, 11, UNI_GEORGIANEXT } /* block=georgianext */,
- { 0, 3523, 10022, 17, 4, UNI_MLYM } /* scriptextensions=mlym */,
- { 1, 1067, 5938, 24, 13, UNI_CCC__IS } /* canonicalcombiningclass=iotasubscript */,
- { 0, 9659, 10034, 4, 4, UNI_MYMR } /* scx=mymr */,
- { 8, 9584, 1808, 3, 22, UNI_ZNAMENNYMUSIC } /* inznamennymusicalnotation */,
- { 7, 1067, 7841, 24, 2, UNI_CCC__12 } /* canonicalcombiningclass=12 */,
- { 5, 8449, 1738, 4, 23, UNI_LATINEXTADDITIONAL } /* blk=latinextendedadditional */,
- { 0, 21, 5386, 2, 14, UNI_LATINEXTD } /* inlatinextendedd */,
- { 12, 3523, 1715, 17, 6, UNI_HANG } /* scriptextensions=hangul */,
- { 2, 6159, 9197, 13, 6, UNI_NV__700000 } /* numericvalue=700000 */,
- { 0, 8633, 10146, 7, 4, UNI_SC__TALE } /* script=tale */,
- { 4, 8457, 8811, 6, 7, UNI_DSRT } /* block=deseret */,
- { 0, 9946, 5694, 4, 9, UNI_BOPOMOFOEXT } /* isbopomofoext */,
- { 0, 8449, 8176, 5, 8, UNI_INBHAIKSUKI } /* blk=bhaiksuki */,
- { 1, 9559, 9549, 5, 5, -UNI_IDSB } /* idsb=false */,
- { 0, 3181, 5114, 18, 6, UNI_DT__SQR } /* decompositiontype=square */,
- { 0, 6428, 151, 4, 33, UNI_DIACRITICALSSUP } /* incombiningdiacriticalmarkssupplement */,
- { 2, 8748, 8121, 4, 9, UNI_CCC__AL } /* ccc=aboveleft */,
- { 1, 1620, 3046, 5, 7, UNI_SUPARROWSB } /* insuparrowsb */,
- { 24, 4629, 3327, 4, 9, UNI_GEORGIANSUP } /* ingeorgiansup */,
- { 0, 185, 24, 2, 1, UNI_L } /* isl */,
- { 80, 8457, 4215, 6, 9, UNI_LATIN1 } /* block=latin1sup */,
- { 19, 7171, 10498, 11, 3, UNI_SD } /* softdotted=yes */,
- { 3, 1620, 7207, 5, 8, UNI_SUPERANDSUB } /* insuperandsub */,
- { 0, 21, 9323, 2, 6, UNI_INKHOJKI } /* inkhojki */,
- { 4, 2202, 0, 21, 0, UNI_CYRILLICSUP } /* cyrillicsupplementary */,
- { 0, 9950, 4850, 3, 15, UNI_JG__MANICHAEANSADHE } /* jg=manichaeansadhe */,
- { 0, 4955, 1, 15, 1, UNI_NFKDQC__N } /* nfkdquickcheck=n */,
- { 0, 185, 2203, 3, 17, UNI_CYRILLICSUP } /* iscyrillicsupplement */,
- { 0, 9890, 9245, 3, 6, UNI_DT__ENC } /* dt=circle */,
- { 8, 8449, 3307, 4, 18, UNI_INPUNCTUATION } /* blk=generalpunctuation */,
- { 4, 8449, 1279, 4, 8, UNI_INKATAKANA } /* blk=katakana */,
- { 5, 9990, 9954, 3, 2, UNI_GCB__T } /* lb=jt */,
- { 1, 8633, 9126, 7, 7, UNI_SC__TIRH } /* script=tirhuta */,
- { 3, 362, 0, 21, 0, UNI_MATHOPERATORS } /* mathematicaloperators */,
- { 2, 21, 9353, 2, 6, UNI_INLYDIAN } /* inlydian */,
- { 4, 9574, 2639, 5, 6, UNI_INPC__BOTTOM } /* inpc=bottom */,
- { 1, 1067, 7940, 24, 2, UNI_CCC__14 } /* canonicalcombiningclass=14 */,
- { 1, 8633, 10170, 7, 4, UNI_THAI } /* script=thai */,
- { 3, 6995, 5176, 10, 14, UNI_LB__CR } /* linebreak=carriagereturn */,
- { 2, 6159, 9185, 13, 4, UNI_NV__5000 } /* numericvalue=5000 */,
- { 0, 2653, 3463, 4, 5, UNI_VERTSPACE } /* vertspace */,
- { 1, 10130, 7035, 4, 3, UNI_SAMR } /* sc=samr */,
- { 1, 4790, 6016, 13, 13, UNI_JG__MALAYALAMLLLA } /* joininggroup=malayalamllla */,
- { 0, 543, 0, 20, 0, UNI_CJK } /* cjkunifiedideographs */,
- { 0, 9858, 1059, 4, 2, -UNI_CWL } /* cwl=no */,
- { 2, 10234, 0, 4, 0, UNI_YI } /* yiii */,
- { 0, 3523, 8734, 17, 4, UNI_BENG } /* scriptextensions=beng */,
- { 3, 8449, 8832, 4, 7, UNI_INGRANTHA } /* blk=grantha */,
- { 4, 6426, 10186, 12, 4, UNI_JOINC } /* joincontrol=true */,
- { 0, 9049, 0, 7, 0, UNI_SHAW } /* shavian */,
- { 1, 8633, 8211, 7, 9, UNI_SC__SIND } /* script=khudawadi */,
- { 1, 10375, 26, 3, 1, UNI_CI } /* ci=y */,
- { 0, 8449, 5847, 4, 13, UNI_AEGEANNUMBERS } /* blk=aegeannumbers */,
- { 2, 3523, 9287, 17, 6, UNI_HATR } /* scriptextensions=hatran */,
- { 64, 8881, 9057, 3, 6, UNI_SIDD } /* issiddham */,
- { 1, 9659, 9091, 4, 7, UNI_TGLG } /* scx=tagalog */,
- { 0, 7475, 10166, 3, 4, UNI_SC__TGLG } /* sc=tglg */,
- { 2, 8449, 1968, 4, 16, UNI_INDICNUMBERFORMS } /* blk=indicnumberforms */,
- { 0, 185, 4685, 2, 15, UNI_DIACRITICALSEXT } /* isdiacriticalsext */,
- { 0, 10393, 7094, 3, 11, UNI_LO } /* gc=otherletter */,
- { 3, 8457, 9035, 6, 7, UNI_INPHAGSPA } /* block=phagspa */,
- { 0, 21, 6450, 2, 5, UNI_INKHMER } /* inkhmer */,
- { 2, 3734, 0, 17, 0, UNI_CYRILLICEXTA } /* cyrillicextendeda */,
- { 0, 8457, 7083, 6, 11, UNI_INNANDINAGARI } /* block=nandinagari */,
- { 64, 4760, 0, 15, 0, UNI_INHANGUL } /* hangulsyllables */,
- { 4, 6390, 0, 6, 0, UNI_HEBR } /* hebrew */,
- { 35, 8457, 9395, 6, 6, UNI_INTANGSA } /* block=tangsa */,
- { 0, 8449, 2094, 4, 22, UNI_MODIFIERLETTERS } /* blk=spacingmodifierletters */,
- { 1, 2868, 7335, 4, 8, UNI_ARABICEXTA } /* inarabicexta */,
- { 0, 8449, 6198, 4, 12, UNI_ALPHABETICPF } /* blk=alphabeticpf */,
- { 0, 8457, 8755, 6, 7, UNI_CJKEXTA } /* block=cjkexta */,
- { 5, 1232, 0, 2, 0, UNI_TITLE } /* lt */,
- { 0, 9554, 6375, 4, 3, UNI_LB__ZWJ } /* gcb=zwj */,
- { 17, 7420, 1551, 3, 23, UNI_HIGHPUSURROGATES } /* ishighprivateusesurrogates */,
- { 4, 10002, 3, 4, 1, -UNI_LOE } /* loe=f */,
- { 1, 10489, 3613, 3, 18, UNI_VO__TU } /* vo=transformedupright */,
- { 16, 9818, 0, 4, 0, UNI_BATK } /* batk */,
- { 2, 9990, 6808, 3, 11, UNI_LB__BB } /* lb=breakbefore */,
- { 0, 9071, 9549, 5, 5, -UNI_TERM } /* term=false */,
- { 0, 185, 7433, 2, 10, UNI_DIAK } /* isdivesakuru */,
- { 1, 8839, 36, 7, 1, UNI_GRBASE } /* grbase=t */,
- { 4, 3466, 0, 3, 0, UNI_ce_values_index } /* ce= */,
- { 4, 8881, 1574, 3, 3, UNI_SIND } /* issind */,
- { 0, 3253, 0, 18, 0, UNI_ETHIOPICSUP } /* ethiopicsupplement */,
- { 0, 9934, 7523, 4, 10, UNI_LB__H2 } /* hst=lvsyllable */,
- { 7, 8457, 7576, 6, 7, UNI_INSOGDIAN } /* block=sogdian */,
- { 0, 185, 9910, 2, 4, UNI_GUJR } /* isgujr */,
- { 0, 8633, 9599, 7, 5, UNI_SC__LIMB } /* script=limbu */,
- { 1, 7420, 6530, 3, 3, UNI_HMNG } /* ishmng */,
- { 8, 6234, 24, 10, 1, UNI_BC__L } /* bidiclass=l */,
- { 4, 10500, 0, 4, 0, UNI_SYRC } /* syrc */,
- { 0, 3523, 10146, 17, 4, UNI_TALE } /* scriptextensions=tale */,
- { 2, 10381, 1253, 3, 9, UNI_EA__H } /* ea=halfwidth */,
- { 6, 8449, 6726, 4, 12, UNI_PLAYINGCARDS } /* blk=playingcards */,
- { 0, 185, 4215, 2, 16, UNI_LATIN1 } /* islatin1supplement */,
- { 13, 8633, 8322, 7, 4, UNI_SC__PERM } /* script=perm */,
- { 8, 9946, 8176, 3, 8, UNI_BHKS } /* isbhaiksuki */,
- { 4, 1067, 10270, 27, 3, UNI_CCC__107 } /* canonicalcombiningclass=ccc107 */,
- { 1, 3523, 10118, 17, 4, UNI_RJNG } /* scriptextensions=rjng */,
- { 0, 3523, 9311, 17, 6, UNI_KTHI } /* scriptextensions=kaithi */,
- { 0, 9782, 10480, 4, 3, UNI_AGE__7 } /* age=v70 */,
- { 1, 8748, 16, 4, 1, UNI_CCC__B } /* ccc=b */,
- { 5, 985, 0, 18, 0, UNI_INVS } /* variationselectors */,
- { 2, 10393, 6208, 3, 2, UNI_PF } /* gc=pf */,
- { 0, 8449, 43, 4, 9, UNI_CJKCOMPAT } /* blk=cjkcompat */,
- { 17, 10058, 9203, 3, 3, UNI_NV__800 } /* nv=800 */,
- { 8, 10492, 1, 3, 1, -UNI_VS } /* vs=n */,
- { 4, 3523, 9982, 17, 3, UNI_LAO } /* scriptextensions=lao */,
- { 0, 8633, 9484, 7, 5, UNI_BAMU } /* script=bamum */,
- { 1, 9299, 6189, 6, 9, UNI_VERTICALFORMS } /* isverticalforms */,
- { 0, 10130, 7183, 4, 10, UNI_SORA } /* sc=sorasompeng */,
- { 4, 8839, 1, 7, 1, -UNI_GRBASE } /* grbase=n */,
- { 10, 8449, 8211, 4, 9, UNI_INKHUDAWADI } /* blk=khudawadi */,
- { 1, 9539, 26, 5, 1, UNI_EMOD } /* emod=y */,
- { 0, 9539, 0, 5, 0, UNI_emod_values_index } /* emod= */,
- { 19, 4790, 9112, 13, 7, UNI_JG__THINYEH } /* joininggroup=thinyeh */,
- { 1, 9659, 9786, 4, 4, UNI_AGHB } /* scx=aghb */,
- { 17, 7453, 0, 9, 0, -UNI_EXTPICT } /* extpict=f */,
- { 5, 9782, 10210, 4, 4, UNI_AGE__14 } /* age=v140 */,
- { 8, 8457, 4023, 6, 9, UNI_ARABICSUP } /* block=arabicsup */,
- { 0, 7481, 0, 12, 0, UNI_KHAR } /* iskharoshthi */,
- { 1, 7475, 10214, 3, 4, UNI_VAI } /* sc=vaii */,
- { 15, 7420, 2826, 3, 18, UNI_JAMOEXTB } /* ishanguljamoextendedb */,
- { 3, 6234, 18, 10, 1, UNI_BC__R } /* bidiclass=r */,
- { 16, 9782, 10194, 4, 3, UNI_IN__1_DOT_1 } /* age=v11 */,
- { 0, 9574, 2633, 5, 20, UNI_INPC__TOPANDBOTTOMANDRIGHT } /* inpc=topandbottomandright */,
- { 2, 8633, 8930, 7, 7, UNI_MARC } /* script=marchen */,
- { 0, 7593, 0, 10, 0, UNI_PHNX } /* phoenician */,
- { 0, 8449, 6185, 4, 13, UNI_VERTICALFORMS } /* blk=verticalforms */,
- { 1, 8853, 36, 7, 1, UNI_HYPHEN } /* hyphen=t */,
- { 4, 10058, 8022, 3, 9, UNI_NV__1_SLASH_160 } /* nv=6.250e-03 */,
- { 0, 10018, 0, 4, 0, UNI_MIAO } /* miao */,
- { 2, 8547, 5170, 6, 5, UNI_XPOSIXDIGIT } /* xposixdigit */,
- { 0, 9574, 5723, 3, 13, UNI_INPSALTERPAHLAVI } /* inpsalterpahlavi */,
- { 0, 10130, 10396, 4, 3, UNI_SC__SHRD } /* sc=shrd */,
- { 0, 9341, 1059, 6, 2, -UNI_XPOSIXLOWER } /* lower=no */,
- { 9, 9822, 5260, 3, 14, UNI_BC__EN } /* bc=europeannumber */,
- { 0, 3523, 7713, 17, 10, UNI_WARA } /* scriptextensions=warangciti */,
- { 0, 7475, 1283, 3, 4, UNI_SC__KANA } /* sc=kana */,
- { 7, 10226, 0, 4, 0, UNI_XPEO } /* xpeo */,
- { 2, 6995, 74, 10, 2, UNI_EMOD } /* linebreak=em */,
- { 33, 9950, 7193, 3, 11, UNI_JG__STRAIGHTWAW } /* jg=straightwaw */,
- { 65, 8965, 0, 7, 0, UNI_nfkcqc_values_index } /* nfkcqc= */,
- { 1, 7610, 10210, 3, 4, UNI_IN__14 } /* in=v140 */,
- { 7, 6775, 0, 10, 0, UNI_IDC } /* idcontinue */,
- { 59, 8633, 9597, 7, 4, UNI_PHLI } /* script=phli */,
- { 0, 7610, 10480, 3, 3, UNI_IN__7 } /* in=v70 */,
- { 25, 8449, 3559, 4, 11, UNI_TAIXUANJING } /* blk=taixuanjing */,
- { 0, 6234, 2613, 10, 11, UNI_BC__R } /* bidiclass=righttoleft */,
- { 8, 6159, 8103, 13, 9, UNI_NV__7_SLASH_8 } /* numericvalue=8.750e-01 */,
- { 4, 185, 3110, 3, 17, UNI_CHEROKEESUP } /* ischerokeesupplement */,
- { 1, 8633, 2692, 7, 4, UNI_BRAH } /* script=brah */,
- { 1, 7171, 0, 11, 0, UNI_sd_values_index } /* softdotted= */,
- { 1, 2223, 1, 21, 1, -UNI_EXTPICT } /* extendedpictographic=n */,
- { 2, 5091, 8690, 3, 7, UNI_UGAR } /* isugaritic */,
- { 1, 7420, 4761, 3, 14, UNI_INHANGUL } /* ishangulsyllables */,
- { 0, 5167, 10498, 9, 3, UNI_XPOSIXXDIGIT } /* hexdigit=yes */,
- { 14, 6159, 7782, 13, 2, UNI_NV__29 } /* numericvalue=29 */,
- { 0, 8457, 573, 6, 30, UNI_CJKEXTB } /* block=cjkunifiedideographsextensionb */,
- { 30, 7475, 4985, 3, 15, UNI_SARB } /* sc=oldsoutharabian */,
- { 0, 8853, 1, 7, 1, -UNI_HYPHEN } /* hyphen=n */,
- { 8, 9659, 9902, 4, 4, UNI_GONM } /* scx=gonm */,
- { 1, 3181, 1355, 18, 5, UNI_DT__SUP } /* decompositiontype=super */,
- { 14, 8633, 2371, 8, 6, UNI_SC__SINH } /* script=sinhala */,
- { 0, 9950, 6094, 3, 13, UNI_JG__MANICHAEANTEN } /* jg=manichaeanten */,
- { 2, 10058, 5835, 3, 1, UNI_NV__0 } /* nv=0 */,
- { 19, 9589, 3, 5, 31, UNI_UCAS } /* isunifiedcanadianaboriginalsyllabics */,
- { 16, 6159, 7877, 13, 2, UNI_NV__23 } /* numericvalue=23 */,
- { 1, 7475, 9509, 3, 5, UNI_SC__BUHD } /* sc=buhid */,
- { 0, 10130, 9057, 4, 3, UNI_SIDD } /* sc=sidd */,
- { 11, 10393, 7105, 3, 11, UNI_NO } /* gc=othernumber */,
- { 0, 9509, 0, 5, 0, UNI_BUHD } /* buhid */,
- { 0, 10002, 36, 4, 1, UNI_LOE } /* loe=t */,
- { 0, 8457, 5372, 6, 14, UNI_LATINEXTC } /* block=latinextendedc */,
- { 0, 9990, 10530, 3, 2, UNI_GCB__L } /* lb=jl */,
- { 0, 7475, 10090, 3, 4, UNI_SC__PHLP } /* sc=phlp */,
- { 3, 416, 0, 32, 0, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* egyptianhieroglyphformatcontrols */,
- { 1, 8457, 5330, 6, 7, UNI_KANASUP } /* block=kanasup */,
- { 3, 7271, 0, 7, 0, UNI_IDS } /* idstart */,
- { 4, 10378, 9549, 3, 5, -UNI_DI } /* di=false */,
- { 1, 9414, 1059, 5, 2, -UNI_IDEO } /* ideo=no */,
- { 0, 8633, 7383, 7, 10, UNI_CHRS } /* script=chorasmian */,
- { 7, 9419, 26, 6, 1, UNI_XPOSIXUPPER } /* upper=y */,
- { 0, 3343, 10186, 18, 4, UNI_IDSB } /* idsbinaryoperator=true */,
- { 1, 9221, 1059, 6, 2, -UNI_BIDIC } /* bidic=no */,
- { 4, 9990, 7553, 3, 10, UNI_LB__NS } /* lb=nonstarter */,
- { 0, 8449, 4247, 4, 16, UNI_LINEARBSYLLABARY } /* blk=linearbsyllabary */,
- { 17, 8457, 4685, 6, 15, UNI_DIACRITICALSEXT } /* block=diacriticalsext */,
- { 2, 4790, 9474, 13, 5, UNI_JG__ALAPH } /* joininggroup=alaph */,
- { 0, 8449, 9275, 4, 6, UNI_INGOTHIC } /* blk=gothic */,
- { 0, 7475, 8569, 3, 8, UNI_SC__JAVA } /* sc=javanese */,
- { 0, 8547, 1929, 6, 5, UNI_XPOSIXUPPER } /* xposixupper */,
- { 0, 8633, 9091, 7, 7, UNI_SC__TGLG } /* script=tagalog */,
- { 4, 7475, 8211, 3, 9, UNI_SC__SIND } /* sc=khudawadi */,
- { 9, 8633, 1574, 8, 3, UNI_SC__SIND } /* script=sind */,
- { 3, 8449, 3559, 4, 18, UNI_TAIXUANJING } /* blk=taixuanjingsymbols */,
- { 66, 3217, 0, 17, 0, UNI_EBASE } /* emojimodifierbase */,
- { 4, 4790, 4289, 13, 3, UNI_JG__LAM } /* joininggroup=lam */,
- { 9, 8839, 0, 6, 0, UNI_GRBASE } /* grbase */,
- { 0, 9227, 9549, 6, 5, -UNI_BIDIM } /* bidim=false */,
- { 0, 8457, 1715, 6, 6, UNI_INHANGUL } /* block=hangul */,
- { 0, 10393, 434, 3, 6, UNI_CF } /* gc=format */,
- { 2, 8457, 5400, 6, 14, UNI_LATINEXTE } /* block=latinextendede */,
- { 0, 8748, 7778, 7, 2, UNI_CCC__21 } /* ccc=ccc21 */,
- { 0, 8457, 1984, 6, 12, UNI_DIACRITICALS } /* block=diacriticals */,
- { 0, 1574, 2559, 24, 5, UNI_INPC__RIGHT } /* indicpositionalcategory=right */,
- { 0, 1896, 36, 22, 1, UNI_CWT } /* changeswhentitlecased=t */,
- { 29, 1250, 5170, 3, 5, UNI_NT__DI } /* nt=digit */,
- { 1, 8457, 79, 6, 10, UNI_ARABICMATH } /* block=arabicmath */,
- { 7, 6995, 429, 10, 2, UNI_LB__GL } /* linebreak=gl */,
- { 1, 9659, 9898, 4, 4, UNI_GONG } /* scx=gong */,
- { 0, 9950, 219, 3, 2, UNI_JG__PE } /* jg=pe */,
- { 1, 10378, 10186, 3, 4, UNI_DI } /* di=true */,
- { 8, 9659, 10042, 4, 4, UNI_NBAT } /* scx=nbat */,
- { 26, 7259, 2027, 10, 2, UNI_WB__ML } /* wordbreak=ml */,
- { 0, 8958, 0, 6, 0, UNI_nfcqc_values_index } /* nfcqc= */,
- { 9, 3523, 10501, 18, 3, UNI_SYRC } /* scriptextensions=syrc */,
- { 5, 9654, 36, 4, 1, UNI_SB__ST } /* sb=st */,
- { 4, 9990, 1884, 3, 2, UNI_LB__NL } /* lb=nl */,
- { 3, 813, 0, 30, 0, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* symbolsandpictographsextendeda */,
- { 0, 7453, 36, 8, 1, UNI_EXTPICT } /* extpict=t */,
- { 0, 2244, 6366, 21, 12, UNI_WB__EB } /* graphemeclusterbreak=glueafterzwj */,
- { 4, 3523, 8930, 17, 4, UNI_MARC } /* scriptextensions=marc */,
- { 1, 3523, 9634, 17, 5, UNI_ORYA } /* scriptextensions=oriya */,
- { 0, 2244, 34, 21, 6, UNI_GCB__EX } /* graphemeclusterbreak=extend */,
- { 0, 3523, 9057, 18, 6, UNI_SIDD } /* scriptextensions=siddham */,
- { 0, 8457, 8442, 7, 7, UNI_INBASSAVAH } /* block=bassavah */,
- { 0, 8748, 9773, 7, 2, UNI_CCC__27 } /* ccc=ccc27 */,
- { 0, 9659, 10046, 4, 4, UNI_NEWA } /* scx=newa */,
- { 1, 185, 3253, 2, 4, UNI_ETHI } /* isethi */,
- { 0, 10058, 9203, 3, 5, UNI_NV__80000 } /* nv=80000 */,
- { 0, 8633, 10414, 8, 3, UNI_SOGO } /* script=sogo */,
- { 5, 9990, 9555, 3, 2, UNI_LB__CB } /* lb=cb */,
- { 3, 8457, 8229, 6, 9, UNI_LATINEXTC } /* block=latinextc */,
- { 0, 8449, 9105, 4, 7, UNI_INTAIVIET } /* blk=taiviet */,
- { 16, 9854, 0, 4, 0, UNI_CPRT } /* cprt */,
- { 3, 6159, 8058, 13, 9, UNI_NV__3_SLASH_4 } /* numericvalue=7.500e-01 */,
- { 3, 9659, 10106, 4, 4, UNI_COPT } /* scx=qaac */,
- { 1, 9659, 10022, 4, 4, UNI_MLYM } /* scx=mlym */,
- { 3, 5018, 5031, 3, 7, UNI_TAMILSUP } /* istamilsup */,
- { 0, 6775, 0, 3, 0, UNI_IDC } /* idc */,
- { 1, 7475, 9098, 3, 7, UNI_LANA } /* sc=taitham */,
- { 3, 8449, 6318, 4, 12, UNI_ETHIOPICEXTA } /* blk=ethiopicexta */,
- { 2, 9659, 2265, 4, 14, UNI_ROHG } /* scx=hanifirohingya */,
- { 0, 8457, 3768, 6, 17, UNI_CYRILLICEXTC } /* block=cyrillicextendedc */,
- { 1, 8449, 7343, 4, 10, UNI_ARABICEXTB } /* blk=arabicextb */,
- { 11, 10130, 8374, 4, 8, UNI_SAMR } /* sc=samaritan */,
- { 0, 9634, 0, 5, 0, UNI_ORYA } /* oriya */,
- { 1, 5860, 3, 13, 1, -UNI_BIDIM } /* bidimirrored=f */,
- { 0, 4790, 7028, 13, 11, UNI_JG__MALAYALAMRA } /* joininggroup=malayalamra */,
- { 1, 8449, 7533, 4, 10, UNI_MISCARROWS } /* blk=miscarrows */,
- { 0, 8633, 9599, 7, 4, UNI_SC__LIMB } /* script=limb */,
- { 0, 4878, 2147, 3, 13, UNI_MUSIC } /* inmusicalsymbols */,
- { 0, 3523, 6390, 17, 6, UNI_HEBR } /* scriptextensions=hebrew */,
- { 8, 8449, 43, 4, 36, UNI_CJKCOMPATIDEOGRAPHSSUP } /* blk=cjkcompatibilityideographssupplement */,
- { 0, 7475, 2513, 3, 10, UNI_SC__GLAG } /* sc=glagolitic */,
- { 0, 6438, 7237, 12, 11, UNI_JT__T } /* joiningtype=transparent */,
- { 4, 7524, 0, 2, 0, UNI_VS } /* vs */,
- { 0, 3523, 8937, 17, 7, UNI_MULT } /* scriptextensions=multani */,
- { 4, 3631, 36, 18, 1, UNI_VS } /* variationselector=t */,
- { 5, 8449, 8346, 4, 9, UNI_PALM } /* blk=palmyrene */,
- { 0, 9251, 26, 6, 1, UNI_CWKCF } /* cwkcf=y */,
- { 2, 8633, 2371, 8, 3, UNI_SC__SINH } /* script=sinh */,
- { 0, 1574, 9, 24, 2, UNI_INPC__NA } /* indicpositionalcategory=na */,
- { 0, 8173, 5750, 3, 6, UNI_BRAI } /* inbraille */,
- { 1, 1984, 0, 22, 0, UNI_DIACRITICALSFORSYMBOLS } /* diacriticalsforsymbols */,
- { 1, 1741, 6331, 3, 11, UNI_ETHIOPICEXTB } /* inethiopicextb */,
- { 43, 6995, 567, 10, 2, UNI_LB__NS } /* linebreak=ns */,
- { 12, 10489, 18, 3, 1, UNI_VO__R } /* vo=r */,
- { 2, 7259, 73, 10, 2, UNI_WB__LE } /* wordbreak=le */,
- { 0, 9659, 3163, 4, 4, UNI_COPT } /* scx=copt */,
- { 0, 8633, 753, 7, 9, UNI_XSUX } /* script=cuneiform */,
- { 10, 7610, 10194, 3, 3, UNI_IN__1_DOT_1 } /* in=v11 */,
- { 7, 6428, 2182, 3, 20, UNI_CJKRADICALSSUP } /* incjkradicalssupplement */,
- { 9, 8449, 901, 4, 11, UNI_PHONETICEXT } /* blk=phoneticext */,
- { 0, 8457, 8569, 6, 8, UNI_INJAVANESE } /* block=javanese */,
- { 3, 7475, 9484, 3, 5, UNI_BAMU } /* sc=bamum */,
- { 0, 7420, 1068, 3, 3, UNI_HANO } /* ishano */,
- { 1, 9659, 10154, 4, 4, UNI_TAML } /* scx=taml */,
- { 4, 8633, 1962, 7, 6, UNI_SC__ZYYY } /* script=common */,
- { 21, 185, 10050, 2, 3, UNI_NKO } /* isnko */,
- { 0, 2351, 0, 2, 0, UNI_PD } /* pd */,
- { 11, 8457, 3853, 6, 17, UNI_INDICSIYAQNUMBERS } /* block=indicsiyaqnumbers */,
- { 1, 9890, 8986, 3, 7, UNI_DT__NB } /* dt=nobreak */,
- { 6, 9141, 4567, 4, 13, UNI_ARABICEXTB } /* isarabicextendedb */,
- { 33, 1148, 1059, 27, 2, -UNI_PCM } /* prependedconcatenationmark=no */,
- { 2, 3508, 8682, 3, 6, UNI_UCASEXT } /* inucasext */,
- { 5, 753, 0, 30, 0, UNI_CUNEIFORMNUMBERS } /* cuneiformnumbersandpunctuation */,
- { 0, 9437, 0, 4, 0, UNI_YEZI } /* yezi */,
- { 1, 8633, 10162, 7, 4, UNI_TFNG } /* script=tfng */,
- { 0, 8633, 9914, 7, 4, UNI_SC__GURU } /* script=guru */,
- { 0, 8633, 9275, 7, 4, UNI_GOTH } /* script=goth */,
- { 9, 8748, 10285, 4, 3, UNI_WB__EB } /* ccc=133 */,
- { 0, 185, 2313, 2, 4, UNI_MULT } /* ismult */,
- { 0, 6629, 1122, 3, 26, UNI_OCR } /* inopticalcharacterrecognition */,
- { 3, 5091, 59, 3, 4, UNI_UIDEO } /* isuideo */,
- { 32, 7475, 2901, 3, 19, UNI_MERO } /* sc=meroitichieroglyphs */,
- { 1, 6159, 9738, 13, 4, UNI_NV__13_SLASH_2 } /* numericvalue=13/2 */,
- { 6, 8457, 9389, 6, 6, UNI_INREJANG } /* block=rejang */,
- { 6, 8748, 8409, 4, 2, UNI_CCC__20 } /* ccc=20 */,
- { 1, 2286, 0, 21, 0, UNI_PRTI } /* inscriptionalparthian */,
- { 6, 8449, 3379, 4, 18, UNI_LATINEXTADDITIONAL } /* blk=latinextadditional */,
- { 6, 3523, 9395, 17, 6, UNI_TNSA } /* scriptextensions=tangsa */,
- { 1, 8633, 9437, 7, 6, UNI_SC__YEZI } /* script=yezidi */,
- { 0, 3523, 9050, 18, 6, UNI_SHAW } /* scriptextensions=shavian */,
- { 3, 1253, 0, 26, 0, UNI_HALFANDFULLFORMS } /* halfwidthandfullwidthforms */,
- { 101, 8689, 0, 8, 0, UNI_UGAR } /* ugaritic */,
- { 0, 7475, 9634, 3, 5, UNI_SC__ORYA } /* sc=oriya */,
- { 0, 6995, 2548, 10, 2, UNI_LB__HL } /* linebreak=hl */,
- { 0, 8449, 2513, 4, 20, UNI_GLAGOLITICSUP } /* blk=glagoliticsupplement */,
- { 2, 9561, 434, 3, 6, UNI_SB__FO } /* sb=format */,
- { 1, 8457, 1940, 6, 22, UNI_CJKCOMPATIDEOGRAPHSSUP } /* block=cjkcompatideographssup */,
- { 2, 10378, 0, 3, 0, UNI_di_values_index } /* di= */,
- { 10, 185, 115, 3, 34, UNI_DIACRITICALSFORSYMBOLS } /* iscombiningdiacriticalmarksforsymbols */,
- { 1, 8173, 8442, 3, 7, UNI_INBASSAVAH } /* inbassavah */,
- { 56, 1067, 185, 24, 2, UNI_CCC__IS } /* canonicalcombiningclass=is */,
- { 0, 5091, 5061, 3, 14, UNI_UPPERCASELETTER } /* isuppercaseletter */,
- { 0, 6995, 7363, 10, 10, UNI_LB__BA } /* linebreak=breakafter */,
- { 2, 8449, 7393, 4, 10, UNI_CJKSTROKES } /* blk=cjkstrokes */,
- { 1, 10058, 9738, 3, 4, UNI_NV__13_SLASH_2 } /* nv=13/2 */,
- { 2, 4925, 17, 15, 1, UNI_COMPEX } /* nfcquickcheck=no */,
- { 30, 8457, 4471, 6, 16, UNI_SYRIACSUP } /* block=syriacsupplement */,
- { 0, 6159, 7943, 13, 2, UNI_NV__16 } /* numericvalue=16 */,
- { 0, 7475, 8734, 3, 7, UNI_SC__BENG } /* sc=bengali */,
- { 1, 2072, 9549, 22, 5, -UNI__PERL_NCHAR } /* noncharactercodepoint=false */,
- { 1, 7475, 10050, 3, 4, UNI_SC__NKO } /* sc=nkoo */,
- { 0, 185, 4247, 2, 16, UNI_LINEARBSYLLABARY } /* islinearbsyllabary */,
- { 2, 8449, 3751, 4, 17, UNI_CYRILLICEXTB } /* blk=cyrillicextendedb */,
- { 6, 9383, 1059, 6, 2, -UNI_QMARK } /* qmark=no */,
- { 0, 7610, 10447, 3, 3, UNI_IN__3_DOT_1 } /* in=v31 */,
- { 0, 10495, 8713, 3, 7, UNI_WB__LE } /* wb=aletter */,
- { 2, 7420, 2266, 3, 3, UNI_HAN } /* ishani */,
- { 0, 8748, 8021, 4, 2, UNI_CCC__26 } /* ccc=26 */,
- { 1, 6995, 529, 10, 2, UNI_LB__NU } /* linebreak=nu */,
- { 0, 8457, 5344, 6, 6, UNI_KANGXI } /* block=kangxi */,
- { 0, 9946, 8474, 3, 3, UNI_BUGI } /* isbugi */,
- { 1, 8633, 9962, 7, 4, UNI_KHMR } /* script=khmr */,
- { 35, 9305, 9549, 6, 5, -UNI_JOINC } /* joinc=false */,
- { 1, 2433, 0, 20, 0, UNI_HLUW } /* anatolianhieroglyphs */,
- { 6, 8449, 5722, 4, 14, UNI_INPSALTERPAHLAVI } /* blk=psalterpahlavi */,
- { 6, 8449, 6830, 4, 11, UNI_INCYPROMINOAN } /* blk=cyprominoan */,
- { 33, 1807, 0, 13, 0, UNI_ZNAMENNYMUSIC } /* znamennymusic */,
- { 0, 9519, 1059, 5, 2, -UNI_CWCF } /* cwcf=no */,
- { 5, 4790, 6793, 13, 4, UNI_JG__NOON } /* joininggroup=noon */,
- { 20, 3463, 0, 6, 0, UNI_wspace_values_index } /* space= */,
- { 0, 9950, 6793, 3, 4, UNI_JG__NOON } /* jg=noon */,
- { 0, 5372, 0, 14, 0, UNI_LATINEXTC } /* latinextendedc */,
- { 17, 3523, 9464, 17, 5, UNI_ADLM } /* scriptextensions=adlam */,
- { 1, 4730, 3, 15, 1, -UNI_ECOMP } /* emojicomponent=f */,
- { 7, 7475, 8697, 3, 4, UNI_VITH } /* sc=vith */,
- { 0, 7703, 36, 10, 1, UNI_XPOSIXUPPER } /* uppercase=t */,
- { 11, 8748, 9806, 4, 4, UNI_CCC__216 } /* ccc=atar */,
- { 2, 1148, 10498, 27, 3, UNI_PCM } /* prependedconcatenationmark=yes */,
- { 4, 9413, 0, 6, 0, UNI_uideo_values_index } /* uideo= */,
- { 4, 8449, 8328, 4, 9, UNI_INOLDTURKIC } /* blk=oldturkic */,
- { 0, 9918, 0, 4, 0, UNI_HANO } /* hano */,
- { 0, 8457, 2996, 6, 12, UNI_SUNDANESESUP } /* block=sundanesesup */,
- { 0, 2223, 10186, 21, 4, UNI_EXTPICT } /* extendedpictographic=true */,
- { 12, 9574, 6727, 3, 11, UNI_PLAYINGCARDS } /* inplayingcards */,
- { 1, 9659, 3325, 4, 4, UNI_GEOR } /* scx=geor */,
- { 1, 8457, 783, 6, 21, UNI_ENCLOSEDALPHANUM } /* block=enclosedalphanumerics */,
- { 10, 4790, 8382, 13, 9, UNI_JG__SYRIACWAW } /* joininggroup=syriacwaw */,
- { 2, 6159, 5834, 13, 2, UNI_NV__10 } /* numericvalue=10 */,
- { 6, 7259, 5114, 10, 2, UNI_WB__SQ } /* wordbreak=sq */,
- { 0, 9950, 5498, 3, 14, UNI_JG__MANICHAEANFIVE } /* jg=manichaeanfive */,
- { 4, 8457, 5288, 6, 14, UNI_INGREEK } /* block=greekandcoptic */,
- { 1, 9950, 6498, 3, 12, UNI_JG__MALAYALAMBHA } /* jg=malayalambha */,
- { 3, 4790, 5792, 13, 14, UNI_JG__HAMZAONHEHGOAL } /* joininggroup=tehmarbutagoal */,
- { 1, 6995, 3463, 10, 5, UNI_LB__SP } /* linebreak=space */,
- { 0, 8457, 8895, 6, 7, UNI_INKANNADA } /* block=kannada */,
- { 6, 8449, 8256, 4, 9, UNI_LATINEXTG } /* blk=latinextg */,
- { 12, 8238, 0, 9, 0, UNI_LATINEXTD } /* latinextd */,
- { 34, 8457, 43, 6, 36, UNI_CJKCOMPATIDEOGRAPHSSUP } /* block=cjkcompatibilityideographssupplement */,
- { 0, 7475, 8916, 3, 4, UNI_MAKA } /* sc=maka */,
- { 0, 8457, 7343, 6, 10, UNI_ARABICEXTB } /* block=arabicextb */,
- { 1, 185, 9867, 3, 2, UNI_CWU } /* iscwu */,
- { 2, 1042, 0, 2, 0, UNI_CI } /* ci */,
- { 0, 8449, 8790, 4, 7, UNI_CJKEXTF } /* blk=cjkextf */,
- { 4, 7475, 9395, 3, 6, UNI_TNSA } /* sc=tangsa */,
- { 0, 3523, 8521, 17, 8, UNI_GURU } /* scriptextensions=gurmukhi */,
- { 8, 185, 1232, 2, 2, UNI_TITLE } /* islt */,
- { 0, 6428, 2203, 3, 20, UNI_CYRILLICSUP } /* incyrillicsupplementary */,
- { 0, 8748, 10279, 7, 3, UNI_CCC__129 } /* ccc=ccc129 */,
- { 0, 8449, 79, 4, 10, UNI_ARABICMATH } /* blk=arabicmath */,
- { 0, 8449, 901, 4, 28, UNI_PHONETICEXTSUP } /* blk=phoneticextensionssupplement */,
- { 2, 9990, 8853, 3, 2, UNI_LB__HY } /* lb=hy */,
- { 0, 7475, 3163, 3, 6, UNI_SC__COPT } /* sc=coptic */,
- { 0, 8943, 5469, 5, 3, UNI_INCHAKMA } /* inchakma */,
- { 0, 6629, 4986, 3, 14, UNI_SARB } /* inoldsoutharabian */,
- { 2, 7373, 25, 10, 1, UNI__PERL_SURROGATE } /* category=cs */,
- { 2, 9227, 1, 6, 1, -UNI_BIDIM } /* bidim=n */,
- { 3, 1148, 9549, 27, 5, -UNI_PCM } /* prependedconcatenationmark=false */,
- { 1, 8449, 9091, 4, 7, UNI_INTAGALOG } /* blk=tagalog */,
- { 2, 9659, 9962, 4, 4, UNI_KHMR } /* scx=khmr */,
- { 20, 1227, 1059, 26, 2, -UNI_DI } /* defaultignorablecodepoint=no */,
- { 0, 5912, 3, 13, 1, -UNI_GRBASE } /* graphemebase=f */,
- { 3, 185, 4880, 2, 15, UNI_MERC } /* ismeroiticcursive */,
- { 18, 9659, 3109, 4, 4, UNI_CHER } /* scx=cher */,
- { 1, 9782, 7783, 4, 1, UNI_AGE__9 } /* age=9 */,
- { 8, 6159, 5834, 13, 7, UNI_NV__1000000 } /* numericvalue=1000000 */,
- { 1, 9782, 9742, 4, 4, UNI_AGE__14 } /* age=14.0 */,
- { 5, 10058, 10348, 3, 3, UNI_NV__5_SLASH_6 } /* nv=5/6 */,
- { 39, 8220, 0, 9, 0, UNI_LATINEXTB } /* latinextb */,
- { 0, 18, 0, 2, 0, UNI_RI } /* ri */,
- { 0, 7534, 6821, 4, 9, UNI_CASEDLETTER } /* iscasedletter */,
- { 0, 4119, 0, 16, 0, UNI_gc_values_index } /* generalcategory= */,
- { 0, 10495, 6342, 3, 12, UNI_WB__EX } /* wb=extendnumlet */,
- { 1, 8449, 9119, 4, 7, UNI_INTIBETAN } /* blk=tibetan */,
- { 0, 8457, 2513, 6, 13, UNI_GLAGOLITICSUP } /* block=glagoliticsup */,
- { 4, 8457, 2412, 6, 6, UNI_YIJING } /* block=yijing */,
- { 1, 2863, 0, 4, 0, UNI_IDST } /* idst */,
- { 0, 6234, 441, 10, 2, UNI_BC__ON } /* bidiclass=on */,
- { 0, 8449, 9634, 4, 5, UNI_INORIYA } /* blk=oriya */,
- { 23, 7475, 8909, 3, 7, UNI_SC__LINA } /* sc=lineara */,
- { 1, 8748, 9161, 4, 3, UNI_CCC__216 } /* ccc=216 */,
- { 0, 8839, 9549, 7, 5, -UNI_GRBASE } /* grbase=false */,
- { 6, 1067, 9773, 24, 2, UNI_CCC__27 } /* canonicalcombiningclass=27 */,
- { 67, 2072, 10498, 22, 3, UNI__PERL_NCHAR } /* noncharactercodepoint=yes */,
- { 0, 9890, 3603, 3, 3, UNI_DT__MED } /* dt=med */,
- { 0, 8449, 601, 4, 2, UNI_NB } /* blk=nb */,
- { 0, 185, 9994, 2, 4, UNI_LINA } /* islina */,
- { 1, 185, 1885, 2, 9, UNI_XPOSIXLOWER } /* islowercase */,
- { 0, 9269, 1059, 6, 2, -UNI_EPRES } /* epres=no */,
- { 7, 8457, 4565, 6, 15, UNI_ARABICEXTB } /* block=arabicextendedb */,
- { 1, 6428, 44, 3, 2, UNI_CJK } /* incjk */,
- { 0, 9071, 0, 6, 0, UNI_TERM } /* term=t */,
- { 0, 1620, 7577, 3, 6, UNI_INSOGDIAN } /* insogdian */,
- { 27, 8457, 601, 6, 2, UNI_NB } /* block=nb */,
- { 0, 5190, 10498, 14, 3, UNI_CI } /* caseignorable=yes */,
- { 2, 185, 4641, 3, 14, UNI_CONTROLPICTURES } /* iscontrolpictures */,
- { 0, 9822, 0, 3, 0, UNI_bc_values_index } /* bc= */,
- { 0, 7373, 441, 10, 6, UNI_XPOSIXCNTRL } /* category=control */,
- { 41, 7610, 9742, 3, 4, UNI_IN__14 } /* in=14.0 */,
- { 1, 3853, 0, 17, 0, UNI_INDICSIYAQNUMBERS } /* indicsiyaqnumbers */,
- { 2, 6159, 7968, 13, 9, UNI_NV__1_SLASH_20 } /* numericvalue=5.000e-02 */,
- { 1, 8449, 813, 4, 30, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* blk=symbolsandpictographsextendeda */,
- { 0, 1620, 7654, 3, 9, UNI_SMALLFORMS } /* insmallforms */,
- { 65, 185, 10250, 2, 4, UNI_ZYYY } /* iszyyy */,
- { 0, 8457, 8521, 6, 8, UNI_INGURMUKHI } /* block=gurmukhi */,
- { 1, 7603, 7995, 10, 3, UNI_IN__6 } /* presentin=6.0 */,
- { 0, 2653, 0, 20, 1, UNI_VO__U } /* verticalorientation=u */,
- { 4, 9659, 10214, 4, 3, UNI_VAI } /* scx=vai */,
- { 0, 9561, 1255, 3, 2, UNI_LB__LF } /* sb=lf */,
- { 0, 8881, 3997, 3, 3, UNI_SGNW } /* issgnw */,
- { 0, 9782, 7819, 4, 1, UNI_AGE__3 } /* age=3 */,
- { 19, 9858, 1, 4, 1, -UNI_CWL } /* cwl=n */,
- { 1, 8881, 219, 7, 4, UNI_XPOSIXSPACE } /* isspaceperl */,
- { 5, 8748, 8066, 4, 2, UNI_CCC__18 } /* ccc=18 */,
- { 1, 21, 5344, 2, 14, UNI_KANGXI } /* inkangxiradicals */,
- { 0, 1067, 7782, 24, 2, UNI_CCC__29 } /* canonicalcombiningclass=29 */,
- { 0, 185, 7061, 2, 11, UNI_MYANMAREXTA } /* ismyanmarexta */,
- { 2, 7475, 8465, 3, 8, UNI_SC__BOPO } /* sc=bopomofo */,
- { 1, 8449, 10050, 4, 3, UNI_INNKO } /* blk=nko */,
- { 1, 185, 5372, 2, 14, UNI_LATINEXTC } /* islatinextendedc */,
- { 2, 8449, 2101, 4, 15, UNI_MODIFIERLETTERS } /* blk=modifierletters */,
- { 3, 10393, 5886, 3, 13, UNI_XPOSIXDIGIT } /* gc=decimalnumber */,
- { 5, 8874, 9029, 3, 5, UNI_PATSYN } /* ispatsyn */,
- { 0, 7603, 8067, 10, 3, UNI_IN__8 } /* presentin=8.0 */,
- { 17, 4878, 2940, 3, 8, UNI_INMONGOLIAN } /* inmongolian */,
- { 4, 9822, 2882, 3, 19, UNI_BC__LRO } /* bc=lefttorightoverride */,
- { 1, 1692, 0, 15, 0, UNI_GEOMETRICSHAPES } /* geometricshapes */,
- { 1, 1646, 6077, 22, 4, UNI_BPT__N } /* bidipairedbrackettype=none */,
- { 2, 9659, 5722, 4, 14, UNI_PHLP } /* scx=psalterpahlavi */,
- { 0, 8449, 149, 4, 35, UNI_DIACRITICALSSUP } /* blk=combiningdiacriticalmarkssupplement */,
- { 129, 8633, 8481, 7, 8, UNI_SC__DUPL } /* script=duployan */,
- { 0, 8457, 9407, 6, 6, UNI_INTHAANA } /* block=thaana */,
- { 4, 3523, 9599, 17, 4, UNI_LIMB } /* scriptextensions=limb */,
- { 9, 9878, 10186, 4, 4, UNI_DIA } /* dia=true */,
- { 0, 9028, 9549, 7, 5, -UNI_PATSYN } /* patsyn=false */,
- { 2, 1589, 1564, 9, 9, UNI__PERL_SURROGATE } /* category=surrogate */,
- { 0, 1589, 1120, 9, 2, UNI_SO } /* category=so */,
- { 0, 8449, 480, 4, 18, UNI_IDEOGRAPHICSYMBOLS } /* blk=ideographicsymbols */,
- { 1, 10006, 0, 4, 0, UNI_MEDF } /* medf */,
- { 2, 7048, 4347, 6, 12, UNI_MISCMATHSYMBOLSB } /* inmiscmathsymbolsb */,
- { 0, 9782, 7304, 4, 1, UNI_AGE__5 } /* age=5 */,
- { 0, 1067, 9021, 24, 7, UNI_CCC__1 } /* canonicalcombiningclass=overlay */,
- { 0, 3523, 8328, 17, 9, UNI_ORKH } /* scriptextensions=oldturkic */,
- { 8, 9950, 2285, 3, 3, UNI_JG__AIN } /* jg=ain */,
- { 0, 3523, 8916, 17, 4, UNI_MAKA } /* scriptextensions=maka */,
- { 5, 9659, 9974, 4, 4, UNI_KTHI } /* scx=kthi */,
- { 0, 9866, 3, 4, 1, -UNI_CWU } /* cwu=f */,
- { 0, 7481, 7036, 4, 2, UNI_KHMR } /* iskhmr */,
- { 3, 10058, 9167, 3, 5, UNI_NV__30000 } /* nv=30000 */,
- { 4, 8633, 5105, 7, 15, UNI_ZANB } /* script=zanabazarsquare */,
- { 2, 46, 0, 2, 0, UNI_CO } /* co */,
- { 1, 8457, 416, 6, 32, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* block=egyptianhieroglyphformatcontrols */,
- { 4, 185, 5400, 2, 14, UNI_LATINEXTE } /* islatinextendede */,
- { 9, 9858, 36, 4, 1, UNI_CWL } /* cwl=t */,
- { 1, 9659, 3996, 5, 10, UNI_SGNW } /* scx=signwriting */,
- { 3, 8457, 3785, 6, 17, UNI_ETHIOPICEXTA } /* block=ethiopicextendeda */,
- { 1, 9141, 8159, 4, 7, UNI_ARABICPFB } /* isarabicpfb */,
- { 2, 4790, 4311, 13, 16, UNI_JG__MANICHAEANTWENTY } /* joininggroup=manichaeantwenty */,
- { 7, 8457, 7039, 6, 11, UNI_INMEDEFAIDRIN } /* block=medefaidrin */,
- { 0, 9990, 9133, 3, 7, UNI_LB__XX } /* lb=unknown */,
- { 1, 8874, 8347, 3, 8, UNI_PALM } /* ispalmyrene */,
- { 13, 185, 783, 2, 21, UNI_ENCLOSEDALPHANUM } /* isenclosedalphanumerics */,
- { 0, 6159, 7950, 13, 9, UNI_NV__9_SLASH_2 } /* numericvalue=4.500e+00 */,
- { 1, 9141, 1014, 3, 26, UNI_ALPHABETICPF } /* isalphabeticpresentationforms */,
- { 0, 3523, 8417, 17, 8, UNI_ARMN } /* scriptextensions=armenian */,
- { 0, 7475, 6830, 3, 11, UNI_SC__CPMN } /* sc=cyprominoan */,
- { 0, 8633, 8441, 7, 8, UNI_BASS } /* script=bassavah */,
- { 1, 8633, 9353, 7, 4, UNI_LYDI } /* script=lydi */,
- { 19, 8449, 1121, 4, 27, UNI_OCR } /* blk=opticalcharacterrecognition */,
- { 7, 6306, 0, 12, 0, UNI_CYRILLICEXTC } /* cyrillicextc */,
- { 0, 10489, 3624, 3, 7, UNI_VO__U } /* vo=upright */,
- { 3, 6797, 10186, 11, 4, UNI_XPOSIXALPHA } /* alphabetic=true */,
- { 2, 9299, 25, 3, 1, UNI_VS } /* isvs */,
- { 0, 6234, 5260, 10, 14, UNI_BC__EN } /* bidiclass=europeannumber */,
- { 0, 2589, 0, 4, 0, UNI_MONG } /* mong */,
- { 1, 8881, 7183, 3, 10, UNI_SORA } /* issorasompeng */,
- { 9, 8457, 9119, 6, 7, UNI_INTIBETAN } /* block=tibetan */,
- { 2, 9574, 3577, 5, 10, UNI_INPC__TOPANDLEFT } /* inpc=topandleft */,
- { 9, 9834, 0, 4, 0, UNI_BUHD } /* buhd */,
- { 21, 4119, 10536, 16, 2, UNI_CASEDLETTER } /* generalcategory=l& */,
- { 8, 3343, 0, 4, 0, UNI_IDSB } /* idsb */,
- { 0, 9659, 8529, 4, 4, UNI_HIRA } /* scx=hira */,
- { 2, 2581, 0, 3, 0, UNI_PUA } /* pua */,
- { 0, 8449, 1478, 4, 10, UNI_CJKSYMBOLS } /* blk=cjksymbols */,
- { 0, 187, 0, 2, 0, UNI_CE } /* ce */,
- { 0, 3523, 5442, 17, 4, UNI_LISU } /* scriptextensions=lisu */,
- { 0, 8449, 6714, 4, 8, UNI_PHAISTOS } /* blk=phaistos */,
- { 2, 185, 27, 2, 2, UNI_LOWERCASELETTER } /* isll */,
- { 3, 3523, 8175, 17, 9, UNI_BHKS } /* scriptextensions=bhaiksuki */,
- { 0, 8449, 3785, 4, 16, UNI_ETHIOPICEXT } /* blk=ethiopicextended */,
- { 2, 2363, 8312, 4, 7, UNI_ITAL } /* isolditalic */,
- { 4, 5912, 36, 13, 1, UNI_GRBASE } /* graphemebase=t */,
- { 13, 1249, 9402, 3, 5, UNI_INTELUGU } /* intelugu */,
- { 0, 8457, 901, 6, 28, UNI_PHONETICEXTSUP } /* block=phoneticextensionssupplement */,
- { 0, 4119, 5596, 16, 14, UNI_SK } /* generalcategory=modifiersymbol */,
- { 1, 8748, 1280, 4, 3, UNI_CCC__214 } /* ccc=ata */,
- { 5, 10130, 7644, 4, 9, UNI_SAUR } /* sc=saurashtra */,
- { 9, 3523, 9974, 17, 4, UNI_KTHI } /* scriptextensions=kthi */,
- { 19, 8457, 4880, 6, 15, UNI_INMEROITICCURSIVE } /* block=meroiticcursive */,
- { 1, 4790, 6498, 13, 12, UNI_JG__MALAYALAMBHA } /* joininggroup=malayalambha */,
- { 0, 8633, 6390, 7, 6, UNI_HEBR } /* script=hebrew */,
- { 4, 9604, 26, 5, 1, UNI_MATH } /* math=y */,
- { 1, 1574, 1986, 4, 10, UNI_DIACRITICALS } /* indiacriticals */,
- { 4, 9584, 1808, 3, 12, UNI_ZNAMENNYMUSIC } /* inznamennymusic */,
- { 28, 1067, 18, 24, 1, UNI_CCC__R } /* canonicalcombiningclass=r */,
- { 5, 7373, 2454, 10, 19, UNI_PC } /* category=connectorpunctuation */,
- { 2, 8449, 9353, 4, 6, UNI_INLYDIAN } /* blk=lydian */,
- { 8, 7475, 2313, 3, 4, UNI_SC__MULT } /* sc=mult */,
- { 0, 7475, 8346, 3, 9, UNI_PALM } /* sc=palmyrene */,
- { 9, 9659, 8825, 4, 7, UNI_ELYM } /* scx=elymaic */,
- { 4, 3463, 36, 6, 1, UNI_XPOSIXSPACE } /* space=t */,
- { 2, 1430, 0, 24, 0, UNI_ARABICPFA } /* arabicpresentationformsa */,
- { 2, 9990, 9154, 3, 7, UNI_LB__ZW } /* lb=zwspace */,
- { 0, 4730, 0, 15, 0, UNI_ecomp_values_index } /* emojicomponent= */,
- { 9, 2363, 4392, 3, 4, UNI_C } /* isother */,
- { 0, 7373, 17, 10, 1, UNI_CO } /* category=co */,
- { 1, 5610, 0, 14, 0, UNI_nfdqc_values_index } /* nfdquickcheck= */,
- { 37, 10423, 26, 3, 1, UNI_RI } /* ri=y */,
- { 4, 8633, 9778, 7, 4, UNI_SC__ADLM } /* script=adlm */,
- { 0, 9950, 2721, 3, 9, UNI_JG__YEHBARREE } /* jg=yehbarree */,
- { 0, 9659, 4985, 4, 15, UNI_SARB } /* scx=oldsoutharabian */,
- { 80, 2244, 1255, 21, 2, UNI_LB__LF } /* graphemeclusterbreak=lf */,
- { 0, 5018, 239, 3, 3, UNI_TALE } /* istale */,
- { 0, 4878, 2921, 3, 18, UNI_MODIFIERTONELETTERS } /* inmodifiertoneletters */,
- { 0, 4119, 9254, 16, 2, UNI_CF } /* generalcategory=cf */,
- { 5, 9950, 5, 3, 1, UNI_JG__E } /* jg=e */,
- { 0, 6428, 2182, 3, 13, UNI_CJKRADICALSSUP } /* incjkradicalssup */,
- { 5, 5666, 9549, 14, 5, -UNI_PATSYN } /* patternsyntax=false */,
- { 36, 3523, 2901, 17, 19, UNI_MERO } /* scriptextensions=meroitichieroglyphs */,
- { 1, 10411, 0, 3, 0, UNI_OCR } /* ocr */,
- { 3, 8943, 3111, 4, 6, UNI_INCHEROKEE } /* incherokee */,
- { 0, 3343, 36, 18, 1, UNI_IDSB } /* idsbinaryoperator=t */,
- { 0, 1067, 10270, 24, 3, UNI_CCC__107 } /* canonicalcombiningclass=107 */,
- { 3, 8449, 9649, 4, 5, UNI_INRUNIC } /* blk=runic */,
- { 0, 6428, 6295, 3, 11, UNI_CYRILLICEXTB } /* incyrillicextb */,
- { 4, 3523, 9105, 17, 7, UNI_TAVT } /* scriptextensions=taiviet */,
- { 3, 8457, 4640, 6, 15, UNI_CONTROLPICTURES } /* block=controlpictures */,
- { 18, 4231, 0, 7, 0, UNI_LINB } /* linearb */,
- { 8, 4790, 4295, 13, 16, UNI_JG__MANICHAEANSAMEKH } /* joininggroup=manichaeansamekh */,
- { 9, 21, 6962, 2, 11, UNI_KATAKANAEXT } /* inkatakanaext */,
- { 0, 9659, 2997, 5, 3, UNI_SUND } /* scx=sund */,
- { 0, 8748, 7943, 4, 2, UNI_CCC__16 } /* ccc=16 */,
- { 1, 8748, 10318, 4, 3, UNI_CCC__AR } /* ccc=232 */,
- { 0, 10058, 5834, 3, 4, UNI_NV__1000 } /* nv=1000 */,
- { 5, 8449, 416, 4, 32, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* blk=egyptianhieroglyphformatcontrols */,
- { 0, 123, 0, 9, 0, UNI_DIA } /* diacritic */,
- { 0, 8457, 6133, 6, 13, UNI_MISCTECHNICAL } /* block=misctechnical */,
- { 6, 8633, 9000, 7, 7, UNI_OLCK } /* script=olchiki */,
- { 4, 8449, 2006, 4, 22, UNI_EARLYDYNASTICCUNEIFORM } /* blk=earlydynasticcuneiform */,
- { 6, 10393, 5596, 3, 14, UNI_SK } /* gc=modifiersymbol */,
- { 9, 3235, 9549, 18, 5, -UNI_EPRES } /* emojipresentation=false */,
- { 3, 5030, 0, 8, 0, UNI_TAMILSUP } /* tamilsup */,
- { 0, 185, 3469, 2, 17, UNI_RI } /* isregionalindicator */,
- { 2, 6428, 1941, 3, 18, UNI_CJKCOMPATIDEOGRAPHS } /* incjkcompatideographs */,
- { 0, 6159, 9209, 13, 4, UNI_NV__9000 } /* numericvalue=9000 */,
- { 3, 7475, 79, 3, 4, UNI_SC__ARAB } /* sc=arab */,
- { 0, 1574, 6853, 3, 10, UNI_DOMINO } /* indominotiles */,
- { 0, 3343, 1, 18, 1, -UNI_IDSB } /* idsbinaryoperator=n */,
- { 1, 8449, 2328, 4, 21, UNI_MEETEIMAYEKEXT } /* blk=meeteimayekextensions */,
- { 1, 1067, 9180, 27, 2, UNI_CCC__32 } /* canonicalcombiningclass=ccc32 */,
- { 5, 9659, 7713, 4, 4, UNI_WARA } /* scx=wara */,
- { 0, 3523, 9906, 17, 4, UNI_GREK } /* scriptextensions=grek */,
- { 0, 8633, 8433, 7, 8, UNI_BALI } /* script=balinese */,
- { 1, 8748, 10534, 4, 2, UNI_CCC__8 } /* ccc=kv */,
- { 3, 2844, 7006, 19, 3, UNI_LB__H3 } /* hangulsyllabletype=lvt */,
- { 13, 1052, 0, 5, 0, UNI_MUSIC } /* music */,
- { 0, 7475, 9882, 3, 4, UNI_DIAK } /* sc=diak */,
- { 5, 4790, 3, 15, 1, UNI_JG__KAF } /* joininggroup=kaf */,
- { 96, 8457, 1738, 6, 23, UNI_LATINEXTADDITIONAL } /* block=latinextendedadditional */,
- { 69, 8633, 10154, 7, 4, UNI_SC__TAML } /* script=taml */,
- { 23, 10130, 7129, 4, 3, UNI_SHAW } /* sc=shaw */,
- { 11, 10058, 8103, 3, 9, UNI_NV__7_SLASH_8 } /* nv=8.750e-01 */,
- { 0, 3955, 1059, 17, 2, -UNI_STERM } /* sentenceterminal=no */,
- { 0, 6159, 7743, 13, 9, UNI_NV__1_SLASH_10 } /* numericvalue=1.000e-01 */,
- { 11, 3785, 0, 17, 0, UNI_ETHIOPICEXTA } /* ethiopicextendeda */,
- { 7, 3523, 8825, 17, 7, UNI_ELYM } /* scriptextensions=elymaic */,
- { 5, 185, 8247, 2, 9, UNI_LATINEXTF } /* islatinextf */,
- { 7, 8449, 7653, 4, 10, UNI_SMALLFORMS } /* blk=smallforms */,
- { 14, 7259, 1884, 10, 2, UNI_WB__NL } /* wordbreak=nl */,
- { 5, 8965, 26, 7, 1, UNI_NFKCQC__Y } /* nfkcqc=y */,
- { 0, 9624, 0, 5, 0, UNI_NSHU } /* nushu */,
- { 15, 8457, 43, 6, 3, UNI_CJK } /* block=cjk */,
- { 1, 185, 1059, 2, 2, UNI_NO } /* isno */,
- { 3, 21, 8728, 3, 6, UNI_INAVESTAN } /* inavestan */,
- { 1, 5951, 0, 6, 0, UNI_IPAEXT } /* ipaext */,
- { 3, 8633, 9790, 7, 4, UNI_AHOM } /* script=ahom */,
- { 1, 8457, 8319, 6, 9, UNI_INOLDPERMIC } /* block=oldpermic */,
- { 4, 185, 3307, 2, 18, UNI_INPUNCTUATION } /* isgeneralpunctuation */,
- { 1, 9589, 549, 5, 13, UNI_UIDEO } /* isunifiedideograph */,
- { 0, 9870, 0, 4, 0, UNI_CYRL } /* cyrl */,
- { 0, 2868, 1432, 4, 22, UNI_ARABICPFA } /* inarabicpresentationformsa */,
- { 17, 4423, 34, 14, 6, UNI_SB__EX } /* sentencebreak=extend */,
- { 8, 10058, 7878, 3, 9, UNI_NV__1_SLASH_32 } /* nv=3.125e-02 */,
- { 21, 114, 0, 35, 0, UNI_DIACRITICALSFORSYMBOLS } /* combiningdiacriticalmarksforsymbols */,
- { 4, 1334, 0, 20, 0, UNI_CE } /* compositionexclusion */,
- { 0, 761, 0, 2, 0, UNI_MN } /* mn */,
- { 1, 8633, 8909, 7, 7, UNI_SC__LINA } /* script=lineara */,
- { 8, 9215, 10498, 6, 3, UNI_XPOSIXALPHA } /* alpha=yes */,
- { 3, 185, 7050, 2, 11, UNI_MISCSYMBOLS } /* ismiscsymbols */,
- { 2, 5919, 36, 6, 1, UNI_EBASE } /* ebase=t */,
- { 16, 10058, 9173, 3, 3, UNI_NV__400 } /* nv=400 */,
- { 1, 7259, 6375, 10, 3, UNI_LB__ZWJ } /* wordbreak=zwj */,
- { 1, 8748, 185, 4, 2, UNI_CCC__IS } /* ccc=is */,
- { 2, 9470, 10498, 4, 3, UNI_XPOSIXXDIGIT } /* hex=yes */,
- { 0, 185, 5288, 2, 14, UNI_INGREEK } /* isgreekandcoptic */,
- { 27, 8457, 3700, 6, 17, UNI_INCAUCASIANALBANIAN } /* block=caucasianalbanian */,
- { 8, 10058, 10510, 3, 2, UNI_NV__44 } /* nv=44 */,
- { 1, 5919, 10498, 6, 3, UNI_EBASE } /* ebase=yes */,
- { 0, 7475, 4487, 3, 6, UNI_TANG } /* sc=tangut */,
- { 5, 1250, 0, 3, 0, UNI_nt_values_index } /* nt= */,
- { 11, 8457, 2006, 6, 22, UNI_EARLYDYNASTICCUNEIFORM } /* block=earlydynasticcuneiform */,
- { 4, 9934, 945, 4, 1, UNI_GCB__V } /* hst=v */,
- { 0, 8449, 4439, 4, 16, UNI_SUPMATHOPERATORS } /* blk=supmathoperators */,
- { 0, 6159, 9203, 13, 6, UNI_NV__800000 } /* numericvalue=800000 */,
- { 1, 7603, 7751, 10, 2, UNI_IN__11 } /* presentin=11 */,
- { 14, 1598, 4391, 22, 5, UNI_INSC__OTHER } /* indicsyllabiccategory=other */,
- { 18, 9227, 1059, 6, 2, -UNI_BIDIM } /* bidim=no */,
- { 41459, 7475, 8811, 3, 7, UNI_DSRT } /* sc=deseret */,
- { 5, 8457, 6714, 6, 12, UNI_PHAISTOS } /* block=phaistosdisc */,
- { 0, 3523, 8346, 17, 4, UNI_PALM } /* scriptextensions=palm */,
- { 1, 1067, 7943, 27, 2, UNI_CCC__16 } /* canonicalcombiningclass=ccc16 */,
- { 1, 1067, 10538, 24, 2, UNI_CCC__9 } /* canonicalcombiningclass=vr */,
- { 1, 10058, 9706, 3, 4, UNI_NV__1_SLASH_40 } /* nv=1/40 */,
- { 14, 8916, 0, 7, 0, UNI_MAKA } /* makasar */,
- { 96, 9950, 7323, 3, 10, UNI_JG__AFRICANQAF } /* jg=africanqaf */,
- { 10, 8955, 785, 4, 14, UNI_ENCLOSEDALPHANUM } /* inenclosedalphanum */,
- { 0, 185, 3505, 2, 18, UNI_RUMI } /* isruminumeralsymbols */,
- { 29, 7259, 529, 10, 7, UNI_WB__NU } /* wordbreak=numeric */,
- { 2, 8449, 4775, 4, 15, UNI_INIMPERIALARAMAIC } /* blk=imperialaramaic */,
- { 9, 5330, 0, 14, 0, UNI_KANASUP } /* kanasupplement */,
- { 0, 8457, 942, 6, 14, UNI_PUA } /* block=privateusearea */,
- { 2, 2371, 2267, 4, 12, UNI_INHANIFIROHINGYA } /* inhanifirohingya */,
- { 11, 3523, 9978, 17, 4, UNI_LANA } /* scriptextensions=lana */,
- { 2, 6438, 7, 12, 1, UNI_JT__C } /* joiningtype=c */,
- { 1, 1741, 3786, 3, 15, UNI_ETHIOPICEXT } /* inethiopicextended */,
- { 0, 7420, 6391, 3, 5, UNI_HEBR } /* ishebrew */,
- { 4, 8457, 2825, 6, 19, UNI_JAMOEXTB } /* block=hanguljamoextendedb */,
- { 7, 6159, 10333, 13, 3, UNI_NV__3_SLASH_4 } /* numericvalue=3/4 */,
- { 49, 8449, 5330, 4, 7, UNI_KANASUP } /* blk=kanasup */,
- { 5, 8888, 17, 5, 1, UNI_XPEO } /* isxpeo */,
- { 0, 9377, 26, 6, 1, UNI__PERL_PATWS } /* patws=y */,
- { 1, 9659, 7577, 5, 3, UNI_SOGD } /* scx=sogd */,
- { 4, 9365, 0, 6, 0, UNI_nfdqc_values_index } /* nfdqc= */,
- { 2, 185, 783, 2, 30, UNI_ENCLOSEDALPHANUMSUP } /* isenclosedalphanumericsupplement */,
- { 6, 7475, 2692, 3, 4, UNI_BRAH } /* sc=brah */,
- { 0, 4119, 440, 16, 7, UNI_XPOSIXCNTRL } /* generalcategory=control */,
- { 0, 3458, 0, 11, 0, UNI_wspace_values_index } /* whitespace= */,
- { 1, 8449, 753, 4, 30, UNI_CUNEIFORMNUMBERS } /* blk=cuneiformnumbersandpunctuation */,
- { 1, 9950, 6029, 3, 13, UNI_JG__MALAYALAMNNNA } /* jg=malayalamnnna */,
- { 0, 7271, 0, 8, 0, UNI_ids_values_index } /* idstart= */,
- { 1, 10058, 7781, 3, 2, UNI_NV__42 } /* nv=42 */,
- { 0, 6159, 9739, 13, 3, UNI_NV__3_SLASH_2 } /* numericvalue=3/2 */,
- { 1, 1067, 3674, 24, 9, UNI_CCC__BL } /* canonicalcombiningclass=belowleft */,
- { 3, 4655, 0, 15, 0, UNI_CURRENCYSYMBOLS } /* currencysymbols */,
- { 32, 3523, 10090, 17, 4, UNI_PHLP } /* scriptextensions=phlp */,
- { 3, 1589, 4391, 9, 5, UNI_C } /* category=other */,
- { 0, 3181, 783, 18, 3, UNI_DT__ENC } /* decompositiontype=enc */,
- { 0, 185, 18, 2, 2, UNI_RI } /* isri */,
- { 2, 8449, 9790, 4, 4, UNI_INAHOM } /* blk=ahom */,
- { 1, 1175, 10498, 26, 3, UNI_CWKCF } /* changeswhennfkccasefolded=yes */,
- { 4, 8449, 8283, 4, 9, UNI_INNABATAEAN } /* blk=nabataean */,
- { 9, 8548, 9644, 5, 5, UNI_POSIXPRINT } /* posixprint */,
- { 9, 5925, 0, 8, 0, UNI_GREEKEXT } /* greekext */,
- { 5, 5162, 36, 14, 1, UNI_POSIXXDIGIT } /* asciihexdigit=t */,
- { 33, 185, 3217, 2, 5, UNI_EMOJI } /* isemoji */,
- { 2, 185, 9649, 2, 5, UNI_RUNR } /* isrunic */,
- { 40, 2050, 0, 22, 0, UNI_MISCTECHNICAL } /* miscellaneoustechnical */,
- { 5, 10495, 0, 3, 0, UNI_wb_values_index } /* wb= */,
- { 2, 8633, 9437, 7, 4, UNI_SC__YEZI } /* script=yezi */,
- { 0, 1896, 9549, 22, 5, -UNI_CWT } /* changeswhentitlecased=false */,
- { 89, 5596, 0, 14, 0, UNI_SK } /* modifiersymbol */,
- { 2, 5641, 0, 11, 0, UNI_MC } /* spacingmark */,
- { 1, 8874, 1929, 7, 5, UNI_POSIXUPPER } /* isposixupper */,
- { 25, 9554, 8489, 4, 8, UNI_WB__EB } /* gcb=ebasegaz */,
- { 6, 7475, 10062, 3, 4, UNI_OGAM } /* sc=ogam */,
- { 4, 185, 8791, 3, 6, UNI_CJKEXTF } /* iscjkextf */,
- { 10, 7475, 7483, 3, 10, UNI_KHAR } /* sc=kharoshthi */,
- { 0, 10058, 10518, 3, 2, UNI_NV__48 } /* nv=48 */,
- { 71, 10086, 9549, 4, 5, -UNI_PCM } /* pcm=false */,
- { 1, 4535, 9494, 15, 5, UNI__PERL_CHARNAME_BEGIN } /* _perl_charname_begin */,
- { 1, 9659, 4880, 4, 15, UNI_MERC } /* scx=meroiticcursive */,
- { 8, 10058, 7304, 3, 9, UNI_NV__1_SLASH_2 } /* nv=5.000e-01 */,
- { 8, 8457, 1405, 6, 25, UNI_SYMBOLSFORLEGACYCOMPUTING } /* block=symbolsforlegacycomputing */,
- { 0, 1067, 10294, 24, 3, UNI_CCC__202 } /* canonicalcombiningclass=202 */,
- { 20, 1874, 36, 22, 1, UNI_CWL } /* changeswhenlowercased=t */,
- { 2, 6486, 0, 4, 0, UNI_MAHJ } /* mahj */,
- { 1, 8633, 9389, 7, 6, UNI_RJNG } /* script=rejang */,
- { 6, 8457, 5301, 6, 4, UNI_INCHAM } /* block=cham */,
- { 0, 7443, 2765, 10, 4, -UNI_EXT } /* extender=false */,
- { 1, 8633, 5030, 7, 5, UNI_SC__TAML } /* script=tamil */,
- { 4, 6797, 26, 11, 1, UNI_XPOSIXALPHA } /* alphabetic=y */,
- { 0, 6159, 10288, 13, 3, UNI_NV__2_SLASH_3 } /* numericvalue=2/3 */,
- { 8, 9564, 36, 5, 1, UNI_IDST } /* idst=t */,
- { 2, 7475, 9014, 3, 4, UNI_OSMA } /* sc=osma */,
- { 0, 4790, 10134, 13, 4, UNI_JG__SEEN } /* joininggroup=seen */,
- { 5, 3836, 7623, 17, 10, UNI_IDENTIFIERSTATUS__RESTRICTED } /* identifierstatus=restricted */,
- { 17, 3523, 8741, 17, 7, UNI_BRAI } /* scriptextensions=braille */,
- { 0, 8449, 2138, 5, 13, UNI_BYZANTINEMUSIC } /* blk=byzantinemusic */,
- { 1, 8449, 3649, 4, 10, UNI_ALCHEMICAL } /* blk=alchemical */,
- { 4, 3523, 9958, 17, 4, UNI_KALI } /* scriptextensions=kali */,
- { 80, 185, 7443, 2, 8, UNI_EXT } /* isextender */,
- { 4, 2363, 9015, 3, 6, UNI_OSMA } /* isosmanya */,
- { 0, 2363, 2959, 3, 18, UNI_OTTOMANSIYAQNUMBERS } /* isottomansiyaqnumbers */,
- { 15, 8633, 8283, 7, 9, UNI_NBAT } /* script=nabataean */,
- { 33, 185, 2, 3, 1, UNI_CI } /* isci */,
- { 0, 7259, 6342, 10, 12, UNI_WB__EX } /* wordbreak=extendnumlet */,
- { 4, 3523, 7483, 17, 10, UNI_KHAR } /* scriptextensions=kharoshthi */,
- { 10, 9890, 4103, 3, 5, UNI_DT__FIN } /* dt=final */,
- { 8, 1574, 3072, 24, 19, UNI_INPC__TOPANDBOTTOMANDLEFT } /* indicpositionalcategory=topandbottomandleft */,
- { 0, 1874, 9549, 22, 5, -UNI_CWL } /* changeswhenlowercased=false */,
- { 3, 9654, 1150, 4, 2, UNI_SB__SE } /* sb=sep */,
- { 0, 4790, 6555, 13, 3, UNI_JG__NYA } /* joininggroup=nya */,
- { 0, 9534, 0, 5, 0, UNI_DOGR } /* dogra */,
- { 0, 6159, 9180, 13, 2, UNI_NV__32 } /* numericvalue=32 */,
- { 1, 7475, 9126, 3, 4, UNI_SC__TIRH } /* sc=tirh */,
- { 0, 6159, 9770, 13, 4, UNI_NV__5_SLASH_12 } /* numericvalue=5/12 */,
- { 20, 8457, 9091, 6, 7, UNI_INTAGALOG } /* block=tagalog */,
- { 3, 6159, 9209, 13, 3, UNI_NV__900 } /* numericvalue=900 */,
- { 1, 9579, 3561, 4, 9, UNI_TAIXUANJING } /* intaixuanjing */,
- { 41, 3631, 10186, 18, 4, UNI_VS } /* variationselector=true */,
- { 0, 8449, 10214, 4, 3, UNI_INVAI } /* blk=vai */,
- { 8, 9990, 4430, 3, 2, UNI_EBASE } /* lb=eb */,
- { 5, 7475, 9347, 3, 6, UNI_LYCI } /* sc=lycian */,
- { 5, 6855, 2960, 4, 17, UNI_OTTOMANSIYAQNUMBERS } /* inottomansiyaqnumbers */,
- { 0, 4790, 5554, 13, 14, UNI_JG__MANICHAEANRESH } /* joininggroup=manichaeanresh */,
- { 0, 2006, 0, 22, 0, UNI_EARLYDYNASTICCUNEIFORM } /* earlydynasticcuneiform */,
- { 0, 10058, 9197, 3, 3, UNI_NV__700 } /* nv=700 */,
- { 3, 8457, 9649, 6, 5, UNI_INRUNIC } /* block=runic */,
- { 0, 185, 9347, 2, 6, UNI_LYCI } /* islycian */,
- { 0, 8481, 0, 8, 0, UNI_DUPL } /* duployan */,
- { 1, 3523, 4359, 17, 7, UNI_MYMR } /* scriptextensions=myanmar */,
- { 9, 8449, 4359, 4, 16, UNI_MYANMAREXTA } /* blk=myanmarextendeda */,
- { 1, 9659, 8211, 4, 9, UNI_SIND } /* scx=khudawadi */,
- { 4, 2863, 0, 18, 0, UNI_IDST } /* idstrinaryoperator */,
- { 34, 5638, 0, 14, 0, UNI_MN } /* nonspacingmark */,
- { 9, 10058, 5834, 3, 8, UNI_NV__10000000 } /* nv=10000000 */,
- { 16, 9990, 10079, 3, 2, UNI_LB__SG } /* lb=sg */,
- { 66, 4006, 0, 17, 0, UNI_uideo_values_index } /* unifiedideograph= */,
- { 0, 4790, 5512, 13, 14, UNI_JG__MANICHAEANHETH } /* joininggroup=manichaeanheth */,
- { 4, 6159, 9449, 13, 5, UNI_NV__1_SLASH_160 } /* numericvalue=1/160 */,
- { 0, 9659, 8832, 4, 7, UNI_GRAN } /* scx=grantha */,
- { 6, 1227, 36, 26, 1, UNI_DI } /* defaultignorablecodepoint=t */,
- { 0, 10062, 0, 4, 0, UNI_OGAM } /* ogam */,
- { 2, 9659, 4359, 4, 7, UNI_MYMR } /* scx=myanmar */,
- { 0, 9890, 6630, 3, 8, UNI_DT__NONCANON } /* dt=noncanon */,
- { 1, 6234, 5638, 10, 14, UNI_BC__NSM } /* bidiclass=nonspacingmark */,
- { 0, 8449, 2160, 4, 21, UNI_CJKCOMPATFORMS } /* blk=cjkcompatibilityforms */,
- { 5, 9305, 1059, 6, 2, -UNI_JOINC } /* joinc=no */,
- { 0, 9659, 8322, 4, 4, UNI_PERM } /* scx=perm */,
- { 17, 8633, 9431, 7, 6, UNI_WCHO } /* script=wancho */,
- { 12, 9659, 10026, 4, 4, UNI_MRO } /* scx=mroo */,
- { 16, 6428, 1122, 4, 4, UNI_INCOPTIC } /* incoptic */,
- { 0, 3523, 7644, 18, 3, UNI_SAUR } /* scriptextensions=saur */,
- { 0, 185, 9525, 3, 3, UNI_CWCM } /* iscwcm */,
- { 1, 8633, 9926, 7, 4, UNI_HMNG } /* script=hmng */,
- { 7, 7478, 5076, 3, 14, UNI_VEDICEXT } /* invedicextensions */,
- { 0, 6159, 9750, 13, 4, UNI_NV__17_SLASH_2 } /* numericvalue=17/2 */,
- { 4, 8874, 501, 7, 5, UNI_POSIXPUNCT } /* isposixpunct */,
- { 26, 10426, 26, 3, 1, UNI_SD } /* sd=y */,
- { 0, 8457, 6852, 6, 6, UNI_DOMINO } /* block=domino */,
- { 10, 7473, 1526, 5, 24, UNI_INSC__CONSONANTSUCCEEDINGREPHA } /* insc=consonantsucceedingrepha */,
- { 73, 8457, 843, 6, 29, UNI_ENCLOSEDIDEOGRAPHICSUP } /* block=enclosedideographicsupplement */,
- { 5, 8449, 4023, 4, 9, UNI_ARABICSUP } /* blk=arabicsup */,
- { 22, 8874, 3434, 3, 17, UNI_ZP } /* isparagraphseparator */,
- { 0, 6159, 8112, 13, 9, UNI_NV__11_SLASH_12 } /* numericvalue=9.167e-01 */,
- { 37, 10058, 9773, 3, 2, UNI_NV__27 } /* nv=27 */,
- { 1, 7481, 8586, 3, 7, UNI_KANAEXTB } /* iskanaextb */,
- { 0, 9559, 0, 5, 0, UNI_idsb_values_index } /* idsb= */,
- { 4, 5162, 3, 14, 1, -UNI_POSIXXDIGIT } /* asciihexdigit=f */,
- { 1, 9063, 0, 7, 0, UNI_SOYO } /* soyombo */,
- { 2, 8748, 7940, 7, 2, UNI_CCC__14 } /* ccc=ccc14 */,
- { 5, 9990, 203, 3, 2, UNI_LB__SA } /* lb=sa */,
- { 1, 5482, 8595, 4, 6, UNI_INMAHAJANI } /* inmahajani */,
- { 0, 9659, 8916, 4, 4, UNI_MAKA } /* scx=maka */,
- { 0, 7271, 9549, 8, 5, -UNI_IDS } /* idstart=false */,
- { 1, 9990, 84, 3, 2, UNI_LB__CM } /* lb=cm */,
- { 7, 8881, 3996, 3, 10, UNI_SGNW } /* issignwriting */,
- { 7, 185, 6271, 3, 11, UNI_CHESSSYMBOLS } /* ischesssymbols */,
- { 4, 8633, 8473, 7, 4, UNI_SC__BUGI } /* script=bugi */,
- { 0, 79, 0, 35, 0, UNI_ARABICMATH } /* arabicmathematicalalphabeticsymbols */,
- { 0, 9470, 1059, 4, 2, -UNI_XPOSIXXDIGIT } /* hex=no */,
- { 1, 3523, 10218, 17, 4, UNI_WCHO } /* scriptextensions=wcho */,
- { 2, 7259, 74, 10, 2, UNI_WB__EB } /* wordbreak=em */,
- { 0, 8457, 2433, 6, 20, UNI_INANATOLIANHIEROGLYPHS } /* block=anatolianhieroglyphs */,
- { 2, 7048, 2054, 6, 18, UNI_MISCTECHNICAL } /* inmiscellaneoustechnical */,
- { 0, 8457, 1040, 6, 17, UNI_ANCIENTGREEKMUSIC } /* block=ancientgreekmusic */,
- { 3, 9890, 10432, 3, 3, UNI_DT__SQR } /* dt=sqr */,
- { 1, 9215, 26, 6, 1, UNI_XPOSIXALPHA } /* alpha=y */,
- { 1, 8881, 7654, 3, 9, UNI_SMALLFORMS } /* issmallforms */,
- { 0, 6774, 10186, 12, 4, UNI_XIDC } /* xidcontinue=true */,
- { 2, 6159, 7887, 13, 9, UNI_NV__1_SLASH_320 } /* numericvalue=3.125e-03 */,
- { 4, 3523, 3870, 17, 17, UNI_KITS } /* scriptextensions=khitansmallscript */,
- { 0, 43, 0, 3, 0, UNI_CJK } /* cjk */,
- { 65, 7182, 0, 4, 0, UNI_SORA } /* sora */,
- { 0, 5736, 1, 14, 1, -UNI_QMARK } /* quotationmark=n */,
- { 5, 8449, 501, 4, 11, UNI_INPUNCTUATION } /* blk=punctuation */,
- { 0, 6995, 10522, 10, 2, UNI_LB__B2 } /* linebreak=b2 */,
- { 0, 4199, 0, 15, 0, UNI_identifiertype_values_index } /* identifiertype= */,
- { 0, 8748, 7841, 7, 2, UNI_CCC__12 } /* ccc=ccc12 */,
- { 1, 4119, 10542, 16, 2, UNI_ZL } /* generalcategory=zl */,
- { 17, 9413, 3, 6, 1, -UNI_UIDEO } /* uideo=f */,
- { 0, 9659, 10182, 4, 4, UNI_TOTO } /* scx=toto */,
- { 0, 10058, 7782, 3, 2, UNI_NV__29 } /* nv=29 */,
- { 41, 8449, 8166, 5, 9, UNI_ASCII } /* blk=basiclatin */,
- { 7, 3451, 26, 18, 1, UNI__PERL_PATWS } /* patternwhitespace=y */,
- { 1, 7259, 8401, 11, 8, UNI_WB__WSEGSPACE } /* wordbreak=wsegspace */,
- { 0, 10393, 4805, 3, 15, UNI_LOWERCASELETTER } /* gc=lowercaseletter */,
- { 1, 8748, 9167, 4, 2, UNI_CCC__30 } /* ccc=30 */,
- { 0, 3466, 3, 3, 1, -UNI_CE } /* ce=f */,
- { 2, 8457, 9311, 6, 6, UNI_INKAITHI } /* block=kaithi */,
- { 0, 4199, 1227, 15, 16, UNI_IDENTIFIERTYPE__DEFAULTIGNORABLE } /* identifiertype=defaultignorable */,
- { 6, 1620, 4442, 5, 13, UNI_SUPMATHOPERATORS } /* insupmathoperators */,
- { 0, 1067, 10276, 27, 3, UNI_CCC__122 } /* canonicalcombiningclass=ccc122 */,
- { 2, 10393, 4071, 3, 16, UNI_PE } /* gc=closepunctuation */,
- { 1, 185, 9269, 2, 5, UNI_EPRES } /* isepres */,
- { 0, 21, 8229, 2, 9, UNI_LATINEXTC } /* inlatinextc */,
- { 0, 6426, 10498, 12, 3, UNI_JOINC } /* joincontrol=yes */,
- { 2, 8173, 5134, 3, 7, UNI_BAMUMSUP } /* inbamumsup */,
- { 0, 3523, 3163, 17, 6, UNI_COPT } /* scriptextensions=coptic */,
- { 21, 9470, 1, 4, 1, -UNI_XPOSIXXDIGIT } /* hex=n */,
- { 12, 8457, 1454, 6, 24, UNI_ARABICPFB } /* block=arabicpresentationformsb */,
- { 0, 4629, 3327, 4, 6, UNI_INGEORGIAN } /* ingeorgian */,
- { 0, 7475, 9599, 3, 4, UNI_SC__LIMB } /* sc=limb */,
- { 0, 7420, 1254, 3, 25, UNI_HALFANDFULLFORMS } /* ishalfwidthandfullwidthforms */,
- { 0, 8449, 603, 4, 30, UNI_CJKEXTC } /* blk=cjkunifiedideographsextensionc */,
- { 2, 185, 3235, 2, 17, UNI_EPRES } /* isemojipresentation */,
- { 18, 7259, 4462, 10, 9, UNI_WB__EB } /* wordbreak=emodifier */,
- { 0, 8633, 8175, 7, 9, UNI_BHKS } /* script=bhaiksuki */,
- { 1, 8457, 1784, 6, 23, UNI_SUPPUNCTUATION } /* block=supplementalpunctuation */,
- { 0, 9990, 34, 3, 2, UNI_LB__EX } /* lb=ex */,
- { 1, 4119, 1, 16, 1, UNI_N } /* generalcategory=n */,
- { 10, 3523, 2328, 17, 11, UNI_MTEI } /* scriptextensions=meeteimayek */,
- { 8, 10058, 9714, 3, 3, UNI_NV__1_SLASH_8 } /* nv=1/8 */,
- { 1, 6942, 3703, 5, 14, UNI_INCAUCASIANALBANIAN } /* incaucasianalbanian */,
- { 6, 9950, 7493, 3, 10, UNI_JG__KNOTTEDHEH } /* jg=knottedheh */,
- { 3, 9604, 1059, 5, 2, -UNI_MATH } /* math=no */,
- { 1, 8449, 5696, 8, 7, UNI_BOPOMOFOEXT } /* blk=bopomofoext */,
- { 0, 9383, 36, 6, 1, UNI_QMARK } /* qmark=t */,
- { 0, 9514, 0, 5, 0, UNI_XPOSIXCNTRL } /* cntrl */,
- { 3, 1067, 1280, 24, 3, UNI_CCC__214 } /* canonicalcombiningclass=ata */,
- { 2, 2844, 6973, 19, 11, UNI_GCB__L } /* hangulsyllabletype=leadingjamo */,
- { 0, 8547, 5169, 6, 6, UNI_XPOSIXXDIGIT } /* xposixxdigit */,
- { 2, 8449, 753, 4, 16, UNI_CUNEIFORMNUMBERS } /* blk=cuneiformnumbers */,
- { 0, 1227, 3, 26, 1, -UNI_DI } /* defaultignorablecodepoint=f */,
- { 1, 185, 10126, 2, 4, UNI_RUNR } /* isrunr */,
- { 67, 4119, 5641, 16, 11, UNI_MC } /* generalcategory=spacingmark */,
- { 0, 3053, 0, 19, 0, UNI_SUPARROWSC } /* supplementalarrowsc */,
- { 2, 7478, 1651, 3, 2, UNI_INVAI } /* invai */,
- { 24, 1589, 3433, 9, 18, UNI_ZP } /* category=paragraphseparator */,
- { 10, 185, 2101, 2, 14, UNI_LM } /* ismodifierletter */,
- { 1, 9293, 3463, 6, 5, UNI_POSIXSPACE } /* isperlspace */,
- { 0, 4670, 0, 15, 0, UNI_PD } /* dashpunctuation */,
- { 1, 9470, 36, 4, 1, UNI_XPOSIXXDIGIT } /* hex=t */,
- { 8, 10130, 10414, 4, 3, UNI_SOGO } /* sc=sogo */,
- { 1, 9890, 1355, 3, 5, UNI_DT__SUP } /* dt=super */,
- { 0, 9589, 3, 5, 40, UNI_UCASEXTA } /* isunifiedcanadianaboriginalsyllabicsextendeda */,
- { 1, 3217, 36, 18, 1, UNI_EBASE } /* emojimodifierbase=t */,
- { 8, 6159, 9203, 13, 3, UNI_NV__800 } /* numericvalue=800 */,
- { 0, 185, 694, 3, 29, UNI_CJKEXTF } /* iscjkunifiedideographsextensionf */,
- { 18, 85, 0, 4, 0, UNI_MATH } /* math */,
- { 0, 4790, 5624, 13, 14, UNI_JG__NOJOININGGROUP } /* joininggroup=nojoininggroup */,
- { 22, 9782, 9718, 4, 4, UNI_AGE__10 } /* age=10.0 */,
- { 2, 4700, 0, 15, 0, UNI_DIACRITICALSSUP } /* diacriticalssup */,
- { 0, 315, 18, 3, 1, UNI_SAMR } /* samr */,
- { 0, 8457, 6606, 6, 12, UNI_MATHALPHANUM } /* block=mathalphanum */,
- { 8, 8748, 8030, 7, 2, UNI_CCC__36 } /* ccc=ccc36 */,
- { 0, 8449, 5428, 4, 14, UNI_LATINEXTG } /* blk=latinextendedg */,
- { 72, 185, 115, 3, 24, UNI_DIACRITICALS } /* iscombiningdiacriticalmarks */,
- { 0, 21, 1738, 2, 9, UNI_LATINEXTE } /* inlatinexte */,
- { 9, 9958, 0, 4, 0, UNI_KALI } /* kali */,
- { 0, 9946, 5861, 3, 4, UNI_BIDIM } /* isbidim */,
- { 3, 4119, 10544, 16, 2, UNI_ZP } /* generalcategory=zp */,
- { 0, 8633, 9395, 7, 6, UNI_TNSA } /* script=tangsa */,
- { 32, 7270, 0, 9, 0, UNI_xids_values_index } /* xidstart= */,
- { 16, 10058, 9695, 3, 3, UNI_NV__1_SLASH_2 } /* nv=1/2 */,
- { 7, 8633, 9982, 7, 3, UNI_LAO } /* script=lao */,
- { 4, 8548, 97, 5, 5, UNI_POSIXALPHA } /* posixalpha */,
- { 6, 185, 6486, 2, 4, UNI_MAHJ } /* ismahj */,
- { 4, 9659, 10062, 4, 4, UNI_OGAM } /* scx=ogam */,
- { 0, 8457, 5694, 8, 6, UNI_INBOPOMOFO } /* block=bopomofo */,
- { 0, 8457, 543, 6, 20, UNI_CJK } /* block=cjkunifiedideographs */,
- { 6, 9862, 0, 4, 0, UNI_cwt_values_index } /* cwt= */,
- { 0, 5891, 0, 5, 0, UNI_XPOSIXALNUM } /* alnum */,
- { 0, 7293, 5349, 3, 9, UNI_YIRADICALS } /* isyiradicals */,
- { 0, 9946, 2578, 3, 3, UNI_BENG } /* isbeng */,
- { 4, 9114, 2413, 3, 20, UNI_YIJING } /* inyijinghexagramsymbols */,
- { 0, 5190, 1059, 14, 2, -UNI_CI } /* caseignorable=no */,
- { 5, 9659, 7035, 5, 3, UNI_SAMR } /* scx=samr */,
- { 1, 4790, 9595, 14, 4, UNI_JG__KHAPH } /* joininggroup=khaph */,
- { 0, 8633, 10396, 8, 3, UNI_SC__SHRD } /* script=shrd */,
- { 1, 9561, 10540, 3, 2, UNI_SB__XX } /* sb=xx */,
- { 6, 9946, 2693, 3, 5, UNI_BRAH } /* isbrahmi */,
- { 0, 7610, 9718, 3, 4, UNI_IN__10 } /* in=10.0 */,
- { 0, 8457, 5442, 6, 4, UNI_INLISU } /* block=lisu */,
- { 0, 63, 0, 5, 0, UNI_XPOSIXGRAPH } /* graph */,
- { 0, 8457, 3785, 6, 16, UNI_ETHIOPICEXT } /* block=ethiopicextended */,
- { 3, 8457, 6690, 6, 12, UNI_INOLDHUNGARIAN } /* block=oldhungarian */,
- { 1, 10393, 5000, 3, 15, UNI_PS } /* gc=openpunctuation */,
- { 1, 8457, 1279, 6, 8, UNI_INKATAKANA } /* block=katakana */,
- { 14, 8881, 7684, 3, 9, UNI_SUPARROWSC } /* issuparrowsc */,
- { 41, 9659, 9886, 4, 4, UNI_DSRT } /* scx=dsrt */,
- { 1, 7475, 10182, 3, 4, UNI_TOTO } /* sc=toto */,
- { 21, 9782, 10450, 4, 3, UNI_AGE__3_DOT_2 } /* age=v32 */,
- { 17, 5919, 1059, 6, 2, -UNI_EBASE } /* ebase=no */,
- { 0, 9141, 29, 4, 4, UNI_ARAB } /* isarabic */,
- { 20, 9659, 3199, 4, 4, UNI_DEVA } /* scx=deva */,
- { 2, 9878, 36, 4, 1, UNI_DIA } /* dia=t */,
- { 9, 7610, 5834, 3, 2, UNI_IN__10 } /* in=10 */,
- { 1, 3523, 9838, 17, 4, UNI_CAKM } /* scriptextensions=cakm */,
- { 50, 8972, 26, 7, 1, UNI_DT__NONE } /* nfkdqc=y */,
- { 2, 7475, 8441, 3, 4, UNI_BASS } /* sc=bass */,
- { 1, 1502, 0, 24, 0, UNI_DIACRITICALSFORSYMBOLS } /* combiningmarksforsymbols */,
- { 0, 5091, 1190, 3, 3, UNI_UCAS } /* isucas */,
- { 0, 6995, 6172, 10, 13, UNI_LB__PR } /* linebreak=prefixnumeric */,
- { 0, 6159, 9203, 13, 2, UNI_NV__80 } /* numericvalue=80 */,
- { 6, 3523, 9119, 17, 7, UNI_TIBT } /* scriptextensions=tibetan */,
- { 4, 7475, 9834, 3, 4, UNI_SC__BUHD } /* sc=buhd */,
- { 0, 8457, 7292, 6, 11, UNI_YISYLLABLES } /* block=yisyllables */,
- { 1, 8457, 1715, 6, 23, UNI_COMPATJAMO } /* block=hangulcompatibilityjamo */,
- { 1, 7534, 3685, 4, 15, UNI_UCAS } /* iscanadiansyllabics */,
- { 1, 8449, 2787, 4, 19, UNI_ENCLOSEDALPHANUMSUP } /* blk=enclosedalphanumsup */,
- { 82, 185, 7533, 2, 10, UNI_MISCARROWS } /* ismiscarrows */,
- { 10, 3199, 0, 18, 0, UNI_DEVANAGARIEXT } /* devanagariextended */,
- { 11, 3181, 1314, 18, 7, UNI_DT__INIT } /* decompositiontype=initial */,
- { 21, 3523, 1738, 17, 5, UNI_LATN } /* scriptextensions=latin */,
- { 35, 8457, 6830, 6, 11, UNI_INCYPROMINOAN } /* block=cyprominoan */,
- { 0, 9589, 9135, 4, 5, UNI_ZZZZ } /* isunknown */,
- { 1, 8748, 10266, 4, 2, UNI_CCC__91 } /* ccc=91 */,
- { 0, 3217, 1059, 18, 2, -UNI_EBASE } /* emojimodifierbase=no */,
- { 5, 8457, 4023, 6, 16, UNI_ARABICSUP } /* block=arabicsupplement */,
- { 0, 8449, 9431, 4, 6, UNI_INWANCHO } /* blk=wancho */,
- { 0, 3523, 2371, 18, 3, UNI_SINH } /* scriptextensions=sinh */,
- { 6, 185, 3325, 2, 18, UNI_GEORGIANSUP } /* isgeorgiansupplement */,
- { 0, 5482, 6018, 4, 7, UNI_INMALAYALAM } /* inmalayalam */,
- { 0, 6159, 9706, 13, 4, UNI_NV__1_SLASH_40 } /* numericvalue=1/40 */,
- { 9, 8633, 9233, 7, 4, UNI_CARI } /* script=cari */,
- { 72, 9942, 8667, 4, 6, UNI_INTIFINAGH } /* intifinagh */,
- { 1, 8748, 0, 4, 0, UNI_ccc_values_index } /* ccc= */,
- { 0, 7475, 8204, 5, 7, UNI_SC__QAAI } /* sc=inherited */,
- { 20, 8633, 8202, 7, 9, UNI_SC__QAAI } /* script=inherited */,
- { 1, 6159, 9714, 13, 3, UNI_NV__1_SLASH_8 } /* numericvalue=1/8 */,
- { 1, 9263, 10498, 6, 3, UNI_EMOJI } /* emoji=yes */,
- { 3, 9659, 8923, 4, 7, UNI_MAND } /* scx=mandaic */,
- { 17, 7473, 3145, 5, 18, UNI_INSC__CONSONANTSUBJOINED } /* insc=consonantsubjoined */,
- { 0, 9383, 3, 6, 1, -UNI_QMARK } /* qmark=f */,
- { 2, 9659, 10030, 4, 4, UNI_MTEI } /* scx=mtei */,
- { 0, 8457, 5694, 8, 14, UNI_BOPOMOFOEXT } /* block=bopomofoextended */,
- { 2, 8457, 1973, 6, 11, UNI_NUMBERFORMS } /* block=numberforms */,
- { 0, 8874, 7128, 3, 10, UNI_HMNG } /* ispahawhhmong */,
- { 9, 1589, 5170, 9, 5, UNI_XPOSIXDIGIT } /* category=digit */,
- { 8, 10058, 7895, 3, 2, UNI_NV__33 } /* nv=33 */,
- { 4, 8633, 9786, 7, 4, UNI_AGHB } /* script=aghb */,
- { 0, 9539, 1059, 5, 2, -UNI_EMOD } /* emod=no */,
- { 5, 9413, 10498, 6, 3, UNI_UIDEO } /* uideo=yes */,
- { 0, 3523, 6378, 17, 12, UNI_GONG } /* scriptextensions=gunjalagondi */,
- { 0, 9822, 3487, 3, 18, UNI_BC__RLI } /* bc=righttoleftisolate */,
- { 0, 8748, 10285, 7, 3, UNI_WB__EB } /* ccc=ccc133 */,
- { 9, 7475, 10038, 3, 4, UNI_NARB } /* sc=narb */,
- { 0, 7534, 12, 5, 3, UNI_CARI } /* iscarian */,
- { 0, 7475, 10026, 3, 4, UNI_MRO } /* sc=mroo */,
- { 0, 185, 1052, 2, 5, UNI_MUSIC } /* ismusic */,
- { 2, 6690, 0, 12, 0, UNI_HUNG } /* oldhungarian */,
- { 4, 9659, 8569, 4, 4, UNI_JAVA } /* scx=java */,
- { 0, 1574, 2633, 24, 12, UNI_INPC__TOPANDBOTTOM } /* indicpositionalcategory=topandbottom */,
- { 0, 6159, 8409, 13, 5, UNI_NV__20000 } /* numericvalue=20000 */,
- { 9, 8633, 7577, 8, 6, UNI_SC__SOGD } /* script=sogdian */,
- { 2, 7423, 9549, 10, 5, -UNI_DIA } /* diacritic=false */,
- { 0, 10058, 7761, 3, 9, UNI_NV__1_SLASH_8 } /* nv=1.250e-01 */,
- { 13, 7683, 0, 10, 0, UNI_SUPARROWSC } /* suparrowsc */,
- { 0, 3523, 9664, 17, 5, UNI_TALE } /* scriptextensions=taile */,
- { 3, 8449, 8337, 4, 9, UNI_INOLDUYGHUR } /* blk=olduyghur */,
- { 8, 8457, 2265, 6, 14, UNI_INHANIFIROHINGYA } /* block=hanifirohingya */,
- { 0, 8633, 8923, 7, 7, UNI_SC__MAND } /* script=mandaic */,
- { 1, 9950, 5540, 3, 14, UNI_JG__MANICHAEANQOPH } /* jg=manichaeanqoph */,
- { 0, 7475, 9233, 3, 4, UNI_CARI } /* sc=cari */,
- { 1, 2390, 0, 5, 0, UNI_STERM } /* sterm */,
- { 20, 7116, 0, 11, 0, UNI_SO } /* othersymbol */,
- { 0, 7475, 8895, 3, 7, UNI_SC__KNDA } /* sc=kannada */,
- { 2, 8625, 26, 8, 1, UNI_RADICAL } /* radical=y */,
- { 0, 10393, 10542, 3, 2, UNI_ZL } /* gc=zl */,
- { 11, 8457, 1968, 6, 16, UNI_INDICNUMBERFORMS } /* block=indicnumberforms */,
- { 0, 1175, 10186, 26, 4, UNI_CWKCF } /* changeswhennfkccasefolded=true */,
- { 1, 10058, 0, 3, 0, UNI_nv_values_index } /* nv= */,
- { 0, 4790, 5540, 13, 14, UNI_JG__MANICHAEANQOPH } /* joininggroup=manichaeanqoph */,
- { 1, 6159, 9695, 13, 3, UNI_NV__1_SLASH_2 } /* numericvalue=1/2 */,
- { 0, 1067, 5014, 24, 2, UNI_CCC__0 } /* canonicalcombiningclass=nr */,
- { 0, 7475, 9323, 3, 6, UNI_SC__KHOJ } /* sc=khojki */,
- { 1, 6159, 9191, 13, 6, UNI_NV__600000 } /* numericvalue=600000 */,
- { 51, 10058, 10508, 3, 2, UNI_NV__39 } /* nv=39 */,
- { 3, 8783, 0, 7, 0, UNI_CJKEXTE } /* cjkexte */,
- { 2, 9614, 0, 5, 0, UNI_NT__NU } /* nt=nu */,
- { 6, 8449, 1550, 4, 24, UNI_HIGHPUSURROGATES } /* blk=highprivateusesurrogates */,
- { 17, 8633, 9834, 7, 4, UNI_SC__BUHD } /* script=buhd */,
- { 2, 8748, 7828, 4, 1, UNI_CCC__7 } /* ccc=7 */,
- { 1, 9782, 7751, 4, 2, UNI_AGE__11 } /* age=11 */,
- { 3, 8449, 5134, 5, 7, UNI_BAMUMSUP } /* blk=bamumsup */,
- { 0, 1589, 24, 9, 1, UNI_L } /* category=l */,
- { 11, 9954, 36, 3, 1, UNI_JT__T } /* jt=t */,
- { 6, 8457, 6294, 6, 12, UNI_CYRILLICEXTB } /* block=cyrillicextb */,
- { 4, 8457, 8577, 6, 8, UNI_KANAEXTA } /* block=kanaexta */,
- { 6, 8449, 0, 4, 42, UNI_UCASEXT } /* blk=unifiedcanadianaboriginalsyllabicsextended */,
- { 0, 10130, 2371, 4, 3, UNI_SC__SINH } /* sc=sinh */,
- { 0, 1067, 10303, 24, 3, UNI_CCC__BR } /* canonicalcombiningclass=222 */,
- { 2, 9484, 69, 5, 3, UNI_BAMUMSUP } /* bamumsup */,
- { 3, 4670, 0, 4, 0, UNI_DASH } /* dash */,
- { 18, 9890, 1370, 3, 3, UNI_DT__SUB } /* dt=sub */,
- { 34, 2844, 7006, 19, 11, UNI_LB__H3 } /* hangulsyllabletype=lvtsyllable */,
- { 1, 8457, 5204, 6, 14, UNI_CJKCOMPATFORMS } /* block=cjkcompatforms */,
- { 1, 10495, 1279, 3, 2, UNI_WB__KA } /* wb=ka */,
- { 1, 3235, 10186, 18, 4, UNI_EPRES } /* emojipresentation=true */,
- { 0, 10058, 7851, 3, 9, UNI_NV__5_SLASH_2 } /* nv=2.500e+00 */,
- { 8, 1067, 3099, 24, 5, UNI_CCC__A } /* canonicalcombiningclass=above */,
- { 1, 4423, 529, 14, 7, UNI_SB__NU } /* sentencebreak=numeric */,
- { 2, 9489, 0, 5, 0, UNI_BATK } /* batak */,
- { 17, 8545, 9644, 8, 5, UNI_XPOSIXPRINT } /* isxposixprint */,
- { 64, 9990, 7723, 3, 10, UNI_LB__WJ } /* lb=wordjoiner */,
- { 1, 9141, 8419, 4, 6, UNI_ARMN } /* isarmenian */,
- { 17, 10378, 10498, 3, 3, UNI_DI } /* di=yes */,
- { 0, 10058, 10339, 3, 3, UNI_NV__4_SLASH_5 } /* nv=4/5 */,
- { 18, 5860, 9549, 13, 5, -UNI_BIDIM } /* bidimirrored=false */,
- { 0, 10393, 4103, 3, 16, UNI_PF } /* gc=finalpunctuation */,
- { 6, 9141, 2434, 3, 19, UNI_HLUW } /* isanatolianhieroglyphs */,
- { 21, 3523, 10070, 17, 4, UNI_ORKH } /* scriptextensions=orkh */,
- { 0, 8457, 43, 6, 16, UNI_CJKCOMPAT } /* block=cjkcompatibility */,
- { 0, 7475, 10150, 3, 4, UNI_TALU } /* sc=talu */,
- { 176, 8853, 0, 7, 0, UNI_hyphen_values_index } /* hyphen= */,
- { 0, 3523, 8473, 17, 4, UNI_BUGI } /* scriptextensions=bugi */,
- { 1, 7475, 9347, 3, 4, UNI_LYCI } /* sc=lyci */,
- { 50, 6159, 9706, 13, 3, UNI_NV__1_SLASH_4 } /* numericvalue=1/4 */,
- { 9, 3466, 36, 3, 1, UNI_CE } /* ce=t */,
- { 2, 185, 284, 2, 33, UNI_MISCMATHSYMBOLSA } /* ismiscellaneousmathematicalsymbolsa */,
- { 1, 8457, 6330, 6, 12, UNI_ETHIOPICEXTB } /* block=ethiopicextb */,
- { 1, 9524, 9549, 5, 5, -UNI_CWCM } /* cwcm=false */,
- { 0, 6159, 9758, 13, 4, UNI_NV__3_SLASH_20 } /* numericvalue=3/20 */,
- { 0, 8874, 943, 3, 13, UNI_PUA } /* isprivateusearea */,
- { 5, 8457, 3253, 6, 8, UNI_INETHIOPIC } /* block=ethiopic */,
- { 68, 7643, 0, 10, 0, UNI_SAUR } /* saurashtra */,
- { 0, 9559, 36, 5, 1, UNI_IDSB } /* idsb=t */,
- { 35, 10393, 48, 3, 1, UNI_M } /* gc=m */,
- { 2, 3631, 9549, 18, 5, -UNI_VS } /* variationselector=false */,
- { 4, 1067, 10306, 24, 3, UNI_CCC__L } /* canonicalcombiningclass=224 */,
- { 0, 8633, 9401, 7, 6, UNI_SC__TELU } /* script=telugu */,
- { 2, 9437, 0, 6, 0, UNI_YEZI } /* yezidi */,
- { 1, 185, 4805, 2, 15, UNI_LOWERCASELETTER } /* islowercaseletter */,
- { 4, 7259, 126, 10, 2, UNI_LB__CR } /* wordbreak=cr */,
- { 9, 21, 3870, 2, 17, UNI_INKHITANSMALLSCRIPT } /* inkhitansmallscript */,
- { 0, 7475, 10214, 3, 3, UNI_VAI } /* sc=vai */,
- { 12, 8457, 1052, 6, 5, UNI_MUSIC } /* block=music */,
- { 0, 9659, 8292, 4, 9, UNI_TALU } /* scx=newtailue */,
- { 1, 9922, 0, 4, 0, UNI_HLUW } /* hluw */,
- { 0, 1067, 8030, 24, 2, UNI_CCC__36 } /* canonicalcombiningclass=36 */,
- { 10, 8449, 8577, 4, 8, UNI_KANAEXTA } /* blk=kanaexta */,
- { 17, 8633, 7433, 7, 10, UNI_DIAK } /* script=divesakuru */,
- { 0, 1896, 10186, 22, 4, UNI_CWT } /* changeswhentitlecased=true */,
- { 1, 6234, 3289, 10, 18, UNI_BC__FSI } /* bidiclass=firststrongisolate */,
- { 2, 10393, 5641, 3, 11, UNI_MC } /* gc=spacingmark */,
- { 0, 9574, 6715, 3, 7, UNI_PHAISTOS } /* inphaistos */,
- { 11, 6159, 7941, 13, 9, UNI_NV__5_SLASH_12 } /* numericvalue=4.167e-01 */,
- { 8, 10381, 8130, 3, 9, UNI_EA__A } /* ea=ambiguous */,
- { 4, 21, 4247, 2, 16, UNI_LINEARBSYLLABARY } /* inlinearbsyllabary */,
- { 0, 7473, 7613, 5, 10, UNI_INSC__PUREKILLER } /* insc=purekiller */,
- { 7, 3458, 26, 11, 1, UNI_XPOSIXSPACE } /* whitespace=y */,
- { 7, 8748, 4220, 4, 1, UNI_CCC__1 } /* ccc=1 */,
- { 0, 3523, 9239, 17, 6, UNI_CAKM } /* scriptextensions=chakma */,
- { 26, 8449, 5288, 4, 14, UNI_INGREEK } /* blk=greekandcoptic */,
- { 0, 10086, 1, 4, 1, -UNI_PCM } /* pcm=n */,
- { 0, 7475, 8453, 3, 4, UNI_SC__BOPO } /* sc=bopo */,
- { 1, 10393, 25, 3, 1, UNI_S } /* gc=s */,
- { 20, 3523, 8569, 17, 4, UNI_JAVA } /* scriptextensions=java */,
- { 10, 9950, 6081, 3, 13, UNI_JG__MANICHAEANTAW } /* jg=manichaeantaw */,
- { 1, 8449, 10182, 4, 4, UNI_INTOTO } /* blk=toto */,
- { 1, 9559, 1, 5, 1, -UNI_IDSB } /* idsb=n */,
- { 3, 8449, 1984, 4, 22, UNI_DIACRITICALSFORSYMBOLS } /* blk=diacriticalsforsymbols */,
- { 2, 8449, 2202, 4, 18, UNI_CYRILLICSUP } /* blk=cyrillicsupplement */,
- { 1, 8547, 7259, 6, 4, UNI_XPOSIXWORD } /* xposixword */,
- { 0, 8449, 2533, 4, 20, UNI_ININSCRIPTIONALPAHLAVI } /* blk=inscriptionalpahlavi */,
- { 0, 7475, 9287, 3, 6, UNI_HATR } /* sc=hatran */,
- { 0, 7610, 0, 3, 0, UNI_in_values_index } /* in= */,
- { 1, 9862, 9549, 4, 5, -UNI_CWT } /* cwt=false */,
- { 18, 3523, 10396, 18, 3, UNI_SHRD } /* scriptextensions=shrd */,
- { 8, 8449, 4640, 4, 15, UNI_CONTROLPICTURES } /* blk=controlpictures */,
- { 0, 10495, 8494, 3, 3, UNI_WB__EB } /* wb=gaz */,
- { 8, 10214, 0, 3, 0, UNI_VAI } /* vai */,
- { 5, 8955, 1096, 4, 25, UNI_ENCLOSEDCJK } /* inenclosedcjklettersandmonths */,
- { 20, 2244, 126, 21, 2, UNI_LB__CR } /* graphemeclusterbreak=cr */,
- { 0, 7475, 6618, 3, 12, UNI_MEND } /* sc=mendekikakui */,
- { 6, 6428, 3752, 3, 16, UNI_CYRILLICEXTB } /* incyrillicextendedb */,
- { 21, 6995, 6258, 10, 12, UNI_LB__SY } /* linebreak=breaksymbols */,
- { 33, 8727, 0, 7, 0, UNI_AVST } /* avestan */,
- { 2, 7270, 10186, 9, 4, UNI_XIDS } /* xidstart=true */,
- { 67, 9890, 69, 3, 3, UNI_DT__SUP } /* dt=sup */,
- { 4, 10393, 222, 3, 2, UNI_CASEDLETTER } /* gc=l_ */,
- { 0, 9561, 34, 3, 2, UNI_SB__EX } /* sb=ex */,
- { 33, 5246, 10498, 14, 3, UNI_EMOD } /* emojimodifier=yes */,
- { 7, 1738, 0, 23, 0, UNI_LATINEXTADDITIONAL } /* latinextendedadditional */,
- { 6, 1148, 36, 27, 1, UNI_PCM } /* prependedconcatenationmark=t */,
- { 0, 8457, 4471, 6, 9, UNI_SYRIACSUP } /* block=syriacsup */,
- { 0, 9858, 10498, 4, 3, UNI_CWL } /* cwl=yes */,
- { 0, 4119, 1961, 16, 2, UNI_PC } /* generalcategory=pc */,
- { 1, 10375, 10498, 3, 3, UNI_CI } /* ci=yes */,
- { 0, 4023, 0, 9, 0, UNI_ARABICSUP } /* arabicsup */,
- { 2, 8633, 8832, 7, 7, UNI_SC__GRAN } /* script=grantha */,
- { 1, 8633, 9850, 7, 4, UNI_SC__CPMN } /* script=cpmn */,
- { 0, 1550, 0, 24, 0, UNI_HIGHPUSURROGATES } /* highprivateusesurrogates */,
- { 8, 8633, 8916, 7, 7, UNI_MAKA } /* script=makasar */,
- { 1, 2868, 4552, 4, 13, UNI_ARABICEXTA } /* inarabicextendeda */,
- { 4, 9946, 5861, 3, 11, UNI_BIDIM } /* isbidimirrored */,
- { 26, 6438, 6738, 12, 12, UNI_JT__R } /* joiningtype=rightjoining */,
- { 1, 9998, 0, 4, 0, UNI_LINB } /* linb */,
- { 1, 6426, 0, 11, 0, UNI_JOINC } /* joincontrol */,
- { 0, 9305, 36, 6, 1, UNI_JOINC } /* joinc=t */,
- { 3, 8457, 4343, 6, 16, UNI_MISCMATHSYMBOLSB } /* block=miscmathsymbolsb */,
- { 0, 4423, 7, 15, 1, UNI_SB__SC } /* sentencebreak=sc */,
- { 2, 10426, 10186, 3, 4, UNI_SD } /* sd=true */,
- { 0, 3523, 10066, 17, 4, UNI_OLCK } /* scriptextensions=olck */,
- { 17, 9782, 10194, 4, 4, UNI_AGE__11 } /* age=v110 */,
- { 0, 7475, 9974, 3, 4, UNI_SC__KTHI } /* sc=kthi */,
- { 4, 1278, 0, 2, 0, UNI_SK } /* sk */,
- { 56, 1067, 7782, 27, 2, UNI_CCC__29 } /* canonicalcombiningclass=ccc29 */,
- { 1, 1067, 7877, 27, 2, UNI_CCC__23 } /* canonicalcombiningclass=ccc23 */,
- { 64, 8449, 1715, 4, 23, UNI_COMPATJAMO } /* blk=hangulcompatibilityjamo */,
- { 3, 8449, 783, 4, 16, UNI_ENCLOSEDALPHANUM } /* blk=enclosedalphanum */,
- { 12, 8633, 9347, 7, 4, UNI_LYCI } /* script=lyci */,
- { 1, 8804, 1059, 7, 2, -UNI_COMPEX } /* compex=no */,
- { 1, 9654, 6778, 5, 7, UNI_SB__SC } /* sb=scontinue */,
- { 4, 3523, 9000, 17, 7, UNI_OLCK } /* scriptextensions=olchiki */,
- { 9, 6629, 7564, 3, 9, UNI_INOLDPERSIAN } /* inoldpersian */,
- { 2, 8457, 6486, 6, 12, UNI_MAHJONG } /* block=mahjongtiles */,
- { 1, 8449, 1973, 4, 11, UNI_NUMBERFORMS } /* blk=numberforms */,
- { 0, 4119, 207, 16, 2, UNI_PI } /* generalcategory=pi */,
- { 0, 9954, 0, 4, 0, UNI_JT__L } /* jt=l */,
- { 1, 9141, 9465, 3, 4, UNI_ADLM } /* isadlam */,
- { 73, 3523, 8909, 17, 7, UNI_LINA } /* scriptextensions=lineara */,
- { 20, 9659, 3253, 4, 8, UNI_ETHI } /* scx=ethiopic */,
- { 0, 4790, 5484, 13, 14, UNI_JG__MANICHAEANBETH } /* joininggroup=manichaeanbeth */,
- { 0, 6428, 4647, 9, 8, UNI_CONTROLPICTURES } /* incontrolpictures */,
- { 0, 1589, 4331, 9, 10, UNI_SM } /* category=mathsymbol */,
- { 0, 6159, 7828, 13, 1, UNI_NV__7 } /* numericvalue=7 */,
- { 24, 21, 5163, 3, 4, UNI_ASCII } /* inascii */,
- { 1, 8449, 6282, 4, 12, UNI_CYRILLICEXTA } /* blk=cyrillicexta */,
- { 2, 6428, 2203, 3, 10, UNI_CYRILLICSUP } /* incyrillicsup */,
- { 2, 6428, 7394, 3, 9, UNI_CJKSTROKES } /* incjkstrokes */,
- { 1, 2939, 0, 12, 0, UNI_MONGOLIANSUP } /* mongoliansup */,
- { 131, 3523, 9970, 17, 4, UNI_KNDA } /* scriptextensions=knda */,
- { 2, 9938, 8705, 4, 8, UNI_BOXDRAWING } /* inboxdrawing */,
- { 0, 21, 5442, 2, 4, UNI_INLISU } /* inlisu */,
- { 0, 10058, 7943, 3, 2, UNI_NV__16 } /* nv=16 */,
- { 59, 8457, 9353, 6, 6, UNI_INLYDIAN } /* block=lydian */,
- { 12, 2363, 7565, 4, 8, UNI_XPEO } /* isoldpersian */,
- { 54, 8449, 9669, 4, 5, UNI_INTAKRI } /* blk=takri */,
- { 8, 6159, 7781, 13, 2, UNI_NV__42 } /* numericvalue=42 */,
- { 5, 9950, 5792, 3, 10, UNI_JG__TEHMARBUTA } /* jg=tehmarbuta */,
- { 0, 8457, 1478, 6, 24, UNI_CJKSYMBOLS } /* block=cjksymbolsandpunctuation */,
- { 1, 8633, 9401, 7, 4, UNI_SC__TELU } /* script=telu */,
- { 0, 4790, 4263, 13, 16, UNI_JG__MANICHAEANDALETH } /* joininggroup=manichaeandaleth */,
- { 2, 185, 4745, 2, 14, UNI_GREXT } /* isgraphemeextend */,
- { 36, 8881, 45, 3, 1, UNI_SK } /* issk */,
- { 3, 10058, 7860, 3, 9, UNI_NV__1_SLASH_4 } /* nv=2.500e-01 */,
- { 1, 3785, 0, 11, 0, UNI_ETHIOPICEXT } /* ethiopicext */,
- { 49, 9659, 8355, 4, 4, UNI_PAUC } /* scx=pauc */,
- { 0, 1973, 0, 11, 0, UNI_NUMBERFORMS } /* numberforms */,
- { 20, 3523, 8902, 17, 7, UNI_KALI } /* scriptextensions=kayahli */,
- { 19, 4790, 6359, 13, 7, UNI_JG__SEMKATH } /* joininggroup=semkath */,
- { 5, 185, 10002, 2, 3, UNI_LOE } /* isloe */,
- { 4, 9251, 10186, 6, 4, UNI_CWKCF } /* cwkcf=true */,
- { 0, 1330, 9549, 25, 5, -UNI_COMPEX } /* fullcompositionexclusion=false */,
- { 75, 6841, 10498, 11, 3, UNI_DEP } /* deprecated=yes */,
- { 7, 8449, 4471, 4, 9, UNI_SYRIACSUP } /* blk=syriacsup */,
- { 0, 7453, 10498, 8, 3, UNI_EXTPICT } /* extpict=yes */,
- { 0, 480, 0, 32, 0, UNI_IDEOGRAPHICSYMBOLS } /* ideographicsymbolsandpunctuation */,
- { 3, 8874, 1885, 7, 5, UNI_POSIXLOWER } /* isposixlower */,
- { 0, 9950, 5554, 3, 14, UNI_JG__MANICHAEANRESH } /* jg=manichaeanresh */,
- { 1, 185, 9986, 2, 4, UNI_LATN } /* islatn */,
- { 0, 1227, 10498, 26, 3, UNI_DI } /* defaultignorablecodepoint=yes */,
- { 0, 8881, 9085, 3, 6, UNI_SUPPUAB } /* issuppuab */,
- { 0, 7475, 5722, 3, 14, UNI_SC__PHLP } /* sc=psalterpahlavi */,
- { 0, 6159, 7806, 13, 9, UNI_NV__1_SLASH_64 } /* numericvalue=1.562e-02 */,
- { 2, 9990, 10524, 3, 2, UNI_LB__BK } /* lb=bk */,
- { 2, 1918, 1, 22, 1, -UNI_CWU } /* changeswhenuppercased=n */,
- { 0, 4119, 38, 16, 2, UNI_XPOSIXDIGIT } /* generalcategory=nd */,
- { 52, 2244, 4391, 21, 5, UNI_GCB__XX } /* graphemeclusterbreak=other */,
- { 0, 3523, 10110, 17, 4, UNI_QAAI } /* scriptextensions=qaai */,
- { 1, 8748, 9619, 4, 5, UNI_CCC__7 } /* ccc=nukta */,
- { 0, 10542, 0, 2, 0, UNI_ZL } /* zl */,
- { 1, 9659, 9978, 4, 4, UNI_LANA } /* scx=lana */,
- { 2, 185, 1503, 3, 23, UNI_DIACRITICALSFORSYMBOLS } /* iscombiningmarksforsymbols */,
- { 3, 3325, 0, 8, 0, UNI_GEOR } /* georgian */,
- { 4, 9524, 36, 5, 1, UNI_CWCM } /* cwcm=t */,
- { 12, 4199, 9371, 15, 6, UNI_IDENTIFIERTYPE__NOTXID } /* identifiertype=notxid */,
- { 10, 8633, 9353, 7, 6, UNI_LYDI } /* script=lydian */,
- { 0, 9299, 5077, 4, 6, UNI_VEDICEXT } /* isvedicext */,
- { 1, 8173, 2693, 3, 5, UNI_INBRAHMI } /* inbrahmi */,
- { 6, 7475, 8734, 3, 4, UNI_SC__BENG } /* sc=beng */,
- { 0, 1502, 0, 13, 0, UNI_M } /* combiningmark */,
- { 0, 10130, 2997, 4, 3, UNI_SUND } /* sc=sund */,
- { 0, 1148, 3, 27, 1, -UNI_PCM } /* prependedconcatenationmark=f */,
- { 10, 6450, 0, 12, 0, UNI_KHMERSYMBOLS } /* khmersymbols */,
- { 0, 9684, 9549, 5, 5, -UNI_XIDS } /* xids=false */,
- { 0, 5442, 0, 14, 0, UNI_LISUSUP } /* lisusupplement */,
- { 0, 5807, 449, 3, 31, UNI_INIDC } /* isideographicdescriptioncharacters */,
- { 32, 5167, 0, 8, 0, UNI_XPOSIXXDIGIT } /* hexdigit */,
- { 1, 9579, 4489, 4, 4, UNI_INTANGUT } /* intangut */,
- { 46, 8839, 1059, 7, 2, -UNI_GRBASE } /* grbase=no */,
- { 1, 185, 1105, 2, 6, UNI_L } /* isletter */,
- { 1, 8633, 6390, 7, 4, UNI_HEBR } /* script=hebr */,
- { 0, 9299, 1651, 3, 2, UNI_VAI } /* isvai */,
- { 0, 2370, 0, 21, 0, UNI_SINHALAARCHAICNUMBERS } /* sinhalaarchaicnumbers */,
- { 1, 9990, 2724, 3, 2, UNI_LB__BA } /* lb=ba */,
- { 1, 185, 3802, 2, 17, UNI_ETHIOPICEXTB } /* isethiopicextendedb */,
- { 0, 7271, 1, 8, 1, -UNI_IDS } /* idstart=n */,
- { 0, 1067, 7751, 24, 2, UNI_CCC__11 } /* canonicalcombiningclass=11 */,
- { 3, 8633, 9838, 7, 4, UNI_SC__CAKM } /* script=cakm */,
- { 6, 2363, 10079, 3, 3, UNI_OSGE } /* isosge */,
- { 34, 21, 5372, 2, 14, UNI_LATINEXTC } /* inlatinextendedc */,
- { 0, 8633, 4487, 7, 6, UNI_TANG } /* script=tangut */,
- { 3, 9659, 8319, 4, 9, UNI_PERM } /* scx=oldpermic */,
- { 1, 6159, 9449, 13, 4, UNI_NV__1_SLASH_16 } /* numericvalue=1/16 */,
- { 0, 185, 872, 2, 29, UNI_MISCARROWS } /* ismiscellaneoussymbolsandarrows */,
- { 0, 8633, 10090, 7, 4, UNI_SC__PHLP } /* script=phlp */,
- { 0, 9524, 0, 4, 0, UNI_CWCM } /* cwcm */,
- { 0, 1067, 3091, 24, 18, UNI_CCC__216 } /* canonicalcombiningclass=attachedaboveright */,
- { 0, 4423, 70, 14, 2, UNI_SB__UP } /* sentencebreak=up */,
- { 0, 1620, 3065, 5, 7, UNI_SUPARROWSC } /* insuparrowsc */,
- { 7, 4487, 0, 4, 0, UNI_TANG } /* tang */,
- { 1, 7603, 10190, 10, 4, UNI_IN__10 } /* presentin=v100 */,
- { 0, 3523, 9624, 17, 5, UNI_NSHU } /* scriptextensions=nushu */,
- { 0, 8457, 9790, 6, 4, UNI_INAHOM } /* block=ahom */,
- { 1, 8457, 9464, 6, 5, UNI_INADLAM } /* block=adlam */,
- { 9, 8157, 0, 9, 0, UNI_ARABICPFB } /* arabicpfb */,
- { 32, 4896, 1223, 4, 2, UNI_CPRT } /* iscprt */,
- { 4, 8874, 7259, 7, 4, UNI_POSIXWORD } /* isposixword */,
- { 22, 7270, 3, 9, 1, -UNI_XIDS } /* xidstart=f */,
- { 0, 1478, 0, 10, 0, UNI_CJKSYMBOLS } /* cjksymbols */,
- { 0, 7475, 359, 4, 3, UNI_ITAL } /* sc=ital */,
- { 8, 8853, 0, 6, 0, UNI_HYPHEN } /* hyphen */,
- { 0, 9141, 897, 4, 4, UNI_ARROWS } /* isarrows */,
- { 0, 185, 9275, 2, 4, UNI_GOTH } /* isgoth */,
- { 0, 9934, 7006, 4, 3, UNI_LB__H3 } /* hst=lvt */,
- { 2, 8457, 3199, 6, 13, UNI_DEVANAGARIEXT } /* block=devanagariext */,
- { 4, 1929, 0, 5, 0, UNI_XPOSIXUPPER } /* upper */,
- { 0, 185, 10054, 2, 4, UNI_NSHU } /* isnshu */,
- { 9, 8457, 8776, 6, 7, UNI_CJKEXTD } /* block=cjkextd */,
- { 80, 3523, 3700, 17, 17, UNI_AGHB } /* scriptextensions=caucasianalbanian */,
- { 33, 6428, 8798, 3, 6, UNI_CJKEXTG } /* incjkextg */,
- { 0, 8449, 3870, 4, 17, UNI_INKHITANSMALLSCRIPT } /* blk=khitansmallscript */,
- { 0, 185, 2223, 2, 20, UNI_EXTPICT } /* isextendedpictographic */,
- { 0, 9419, 9549, 6, 5, -UNI_XPOSIXUPPER } /* upper=false */,
- { 4, 6234, 6702, 10, 12, UNI_BC__ON } /* bidiclass=otherneutral */,
- { 3, 7420, 2266, 3, 13, UNI_ROHG } /* ishanifirohingya */,
- { 24, 1589, 27, 9, 2, UNI_LOWERCASELETTER } /* category=ll */,
- { 5, 8449, 6450, 4, 5, UNI_INKHMER } /* blk=khmer */,
- { 22, 1890, 1, 6, 1, -UNI_CASED } /* cased=n */,
- { 1, 8449, 2116, 4, 22, UNI_TRANSPORTANDMAP } /* blk=transportandmapsymbols */,
- { 0, 8457, 2958, 6, 19, UNI_OTTOMANSIYAQNUMBERS } /* block=ottomansiyaqnumbers */,
- { 2, 5736, 0, 14, 0, UNI_qmark_values_index } /* quotationmark= */,
- { 0, 9950, 5792, 3, 14, UNI_JG__HAMZAONHEHGOAL } /* jg=tehmarbutagoal */,
- { 0, 185, 3325, 2, 8, UNI_GEOR } /* isgeorgian */,
- { 0, 10495, 6885, 3, 11, UNI_WB__DQ } /* wb=doublequote */,
- { 0, 9822, 10405, 3, 3, UNI_BC__LRO } /* bc=lro */,
- { 1, 9659, 7129, 5, 3, UNI_SHAW } /* scx=shaw */,
- { 0, 10393, 207, 3, 2, UNI_PI } /* gc=pi */,
- { 1, 5018, 2394, 5, 16, UNI_TERM } /* isterminalpunctuation */,
- { 12, 3523, 8811, 17, 7, UNI_DSRT } /* scriptextensions=deseret */,
- { 6, 185, 1094, 2, 11, UNI_ENCLOSEDCJK } /* isenclosedcjk */,
- { 144, 9141, 1432, 4, 22, UNI_ARABICPFA } /* isarabicpresentationformsa */,
- { 9, 10058, 9209, 3, 4, UNI_NV__9000 } /* nv=9000 */,
- { 6, 185, 1738, 2, 5, UNI_LATN } /* islatin */,
- { 0, 2391, 1059, 20, 2, -UNI_TERM } /* terminalpunctuation=no */,
- { 0, 3523, 9437, 17, 6, UNI_YEZI } /* scriptextensions=yezidi */,
- { 1, 9659, 7563, 4, 10, UNI_XPEO } /* scx=oldpersian */,
- { 0, 7693, 0, 10, 0, UNI_CN } /* unassigned */,
- { 0, 8449, 9407, 4, 6, UNI_INTHAANA } /* blk=thaana */,
- { 0, 1330, 3, 25, 1, -UNI_COMPEX } /* fullcompositionexclusion=f */,
- { 9, 8633, 1715, 7, 6, UNI_SC__HANG } /* script=hangul */,
- { 3, 9890, 2653, 3, 4, UNI_DT__VERT } /* dt=vert */,
- { 0, 9890, 601, 3, 2, UNI_DT__NB } /* dt=nb */,
- { 0, 8457, 8481, 6, 8, UNI_INDUPLOYAN } /* block=duployan */,
- { 104, 10058, 7743, 3, 9, UNI_NV__1_SLASH_10 } /* nv=1.000e-01 */,
- { 0, 9659, 9407, 4, 4, UNI_THAA } /* scx=thaa */,
- { 1, 21, 1279, 2, 8, UNI_INKATAKANA } /* inkatakana */,
- { 0, 9659, 3253, 4, 4, UNI_ETHI } /* scx=ethi */,
- { 0, 8874, 6715, 3, 11, UNI_PHAISTOS } /* isphaistosdisc */,
- { 24, 9659, 8697, 4, 8, UNI_VITH } /* scx=vithkuqi */,
- { 1, 8457, 8762, 6, 7, UNI_CJKEXTB } /* block=cjkextb */,
- { 0, 9554, 1972, 4, 2, UNI_GCB__CN } /* gcb=cn */,
- { 5, 1620, 2998, 4, 17, UNI_SUNDANESESUP } /* insundanesesupplement */,
- { 32, 8633, 9974, 7, 4, UNI_SC__KTHI } /* script=kthi */,
- { 1, 4423, 785, 14, 5, UNI_SB__CL } /* sentencebreak=close */,
- { 10, 4423, 34, 14, 2, UNI_SB__EX } /* sentencebreak=ex */,
- { 64, 9659, 10226, 4, 4, UNI_XPEO } /* scx=xpeo */,
- { 0, 4790, 2721, 13, 3, UNI_JG__YEH } /* joininggroup=yeh */,
- { 36, 6159, 8409, 13, 8, UNI_NV__20000000 } /* numericvalue=20000000 */,
- { 19, 185, 5205, 3, 13, UNI_CJKCOMPATFORMS } /* iscjkcompatforms */,
- { 0, 8874, 502, 3, 10, UNI_P } /* ispunctuation */,
- { 0, 9990, 3, 4, 1, UNI_LB__LF } /* lb=lf */,
- { 0, 6159, 9694, 13, 4, UNI_NV___MINUS_1_SLASH_2 } /* numericvalue=-1/2 */,
- { 68, 7473, 9425, 5, 6, UNI_INSC__VIRAMA } /* insc=virama */,
- { 0, 9680, 0, 4, 0, UNI_idc_values_index } /* idc= */,
- { 0, 8633, 58, 7, 2, UNI_SC__YI } /* script=yi */,
- { 0, 7420, 8847, 3, 6, UNI_HANO } /* ishanunoo */,
- { 1, 9561, 1885, 3, 5, UNI_SB__LO } /* sb=lower */,
- { 5, 3523, 8433, 17, 8, UNI_BALI } /* scriptextensions=balinese */,
- { 4, 185, 0, 3, 0, UNI_C } /* isc */,
- { 1, 2996, 0, 12, 0, UNI_SUNDANESESUP } /* sundanesesup */,
- { 0, 4940, 26, 15, 1, UNI_NFKCQC__Y } /* nfkcquickcheck=y */,
- { 0, 10495, 8951, 3, 7, UNI_WB__NL } /* wb=newline */,
- { 3, 9554, 5110, 5, 2, UNI_WB__EB } /* gcb=gaz */,
- { 2, 6426, 9549, 12, 5, -UNI_JOINC } /* joincontrol=false */,
- { 105, 8748, 8, 4, 1, UNI_CCC__A } /* ccc=a */,
- { 6, 9950, 10134, 3, 4, UNI_JG__SEEN } /* jg=seen */,
- { 0, 4878, 2102, 3, 14, UNI_MODIFIERLETTERS } /* inmodifierletters */,
- { 1, 185, 1919, 3, 20, UNI_CWU } /* ischangeswhenuppercased */,
- { 6, 1589, 2351, 9, 2, UNI_PD } /* category=pd */,
- { 4, 8457, 10026, 6, 3, UNI_INMRO } /* block=mro */,
- { 0, 10002, 26, 4, 1, UNI_LOE } /* loe=y */,
- { 40, 9950, 7633, 3, 10, UNI_JG__REVERSEDPE } /* jg=reversedpe */,
- { 0, 10495, 2027, 3, 2, UNI_WB__ML } /* wb=ml */,
- { 3, 6234, 25, 10, 1, UNI_BC__S } /* bidiclass=s */,
- { 0, 3523, 6618, 17, 12, UNI_MEND } /* scriptextensions=mendekikakui */,
- { 0, 2844, 9, 19, 2, UNI_HST__NA } /* hangulsyllabletype=na */,
- { 0, 8633, 8292, 7, 9, UNI_TALU } /* script=newtailue */,
- { 5, 9561, 50, 3, 2, UNI_SB__AT } /* sb=at */,
- { 0, 8449, 8916, 4, 7, UNI_INMAKASAR } /* blk=makasar */,
- { 0, 440, 0, 7, 0, UNI_XPOSIXCNTRL } /* control */,
- { 25, 185, 150, 3, 34, UNI_DIACRITICALSSUP } /* iscombiningdiacriticalmarkssupplement */,
- { 0, 7259, 6390, 10, 12, UNI_LB__HL } /* wordbreak=hebrewletter */,
- { 2, 6318, 0, 12, 0, UNI_ETHIOPICEXTA } /* ethiopicexta */,
- { 1, 133, 0, 2, 0, UNI_LM } /* lm */,
- { 0, 7475, 10070, 3, 4, UNI_ORKH } /* sc=orkh */,
- { 3, 9529, 1059, 5, 2, -UNI_DASH } /* dash=no */,
- { 0, 9141, 3650, 3, 9, UNI_ALCHEMICAL } /* isalchemical */,
- { 12, 10130, 9057, 4, 6, UNI_SIDD } /* sc=siddham */,
- { 18, 9659, 4970, 4, 15, UNI_NARB } /* scx=oldnortharabian */,
- { 1, 8457, 4442, 6, 13, UNI_MATHOPERATORS } /* block=mathoperators */,
- { 1, 10058, 9762, 3, 4, UNI_NV__3_SLASH_64 } /* nv=3/64 */,
- { 0, 7475, 8473, 3, 4, UNI_SC__BUGI } /* sc=bugi */,
- { 148, 9990, 5000, 3, 15, UNI_LB__OP } /* lb=openpunctuation */,
- { 2, 8633, 9233, 7, 6, UNI_CARI } /* script=carian */,
- { 16, 4215, 0, 9, 0, UNI_LATIN1 } /* latin1sup */,
- { 0, 10058, 8013, 3, 9, UNI_NV__1_SLASH_16 } /* nv=6.250e-02 */,
- { 47, 7270, 0, 4, 0, UNI_XIDS } /* xids */,
- { 2, 185, 44, 3, 8, UNI_CJKCOMPAT } /* iscjkcompat */,
- { 1, 8748, 5535, 4, 2, UNI_CCC__7 } /* ccc=nk */,
- { 1, 8633, 8741, 7, 4, UNI_BRAI } /* script=brai */,
- { 0, 9559, 10498, 5, 3, UNI_IDSB } /* idsb=yes */,
- { 1, 8853, 1059, 7, 2, -UNI_HYPHEN } /* hyphen=no */,
- { 0, 10393, 236, 3, 2, UNI_LO } /* gc=lo */,
- { 0, 1075, 0, 2, 0, UNI_CASEDLETTER } /* lc */,
- { 0, 9659, 2692, 4, 4, UNI_BRAH } /* scx=brah */,
- { 2, 9419, 36, 6, 1, UNI_XPOSIXUPPER } /* upper=t */,
- { 3, 8457, 753, 6, 30, UNI_CUNEIFORMNUMBERS } /* block=cuneiformnumbersandpunctuation */,
- { 129, 5091, 8682, 3, 6, UNI_UCASEXT } /* isucasext */,
- { 0, 0, 0, 34, 0, UNI_UCAS } /* unifiedcanadianaboriginalsyllabics */,
- { 20, 8545, 5170, 3, 5, UNI_XPOSIXXDIGIT } /* isxdigit */,
- { 6, 8633, 9239, 7, 6, UNI_SC__CAKM } /* script=chakma */,
- { 4, 8881, 4235, 3, 3, UNI_SARB } /* issarb */,
- { 47, 2101, 0, 4, 0, UNI_MODI } /* modi */,
- { 0, 3181, 8505, 18, 3, UNI_DT__FRA } /* decompositiontype=fra */,
- { 36, 7534, 567, 4, 2, UNI_CANS } /* iscans */,
- { 0, 9950, 6042, 3, 13, UNI_JG__MANICHAEANMEM } /* jg=manichaeanmem */,
- { 1, 6159, 8021, 13, 2, UNI_NV__26 } /* numericvalue=26 */,
- { 1, 7475, 9814, 3, 4, UNI_AVST } /* sc=avst */,
- { 9, 9990, 6918, 3, 11, UNI_LB__IN } /* lb=inseparable */,
- { 0, 3523, 9962, 17, 4, UNI_KHMR } /* scriptextensions=khmr */,
- { 1, 3523, 2997, 18, 3, UNI_SUND } /* scriptextensions=sund */,
- { 0, 7259, 8713, 10, 7, UNI_WB__LE } /* wordbreak=aletter */,
- { 0, 8457, 603, 6, 30, UNI_CJKEXTC } /* block=cjkunifiedideographsextensionc */,
- { 2, 3523, 7083, 17, 11, UNI_NAND } /* scriptextensions=nandinagari */,
- { 11, 8457, 7573, 6, 10, UNI_INOLDSOGDIAN } /* block=oldsogdian */,
- { 0, 185, 3904, 2, 10, UNI_MANI } /* ismanichaean */,
- { 80, 9251, 9549, 6, 5, -UNI_CWKCF } /* cwkcf=false */,
- { 0, 3181, 46, 18, 3, UNI_DT__COM } /* decompositiontype=com */,
- { 0, 8825, 0, 7, 0, UNI_ELYM } /* elymaic */,
- { 59, 97, 0, 10, 0, UNI_XPOSIXALPHA } /* alphabetic */,
- { 0, 8633, 7577, 8, 3, UNI_SC__SOGD } /* script=sogd */,
- { 0, 9554, 10384, 4, 3, UNI_WB__EB } /* gcb=ebg */,
- { 1, 8457, 1478, 6, 10, UNI_CJKSYMBOLS } /* block=cjksymbols */,
- { 2, 8874, 7594, 3, 9, UNI_PHNX } /* isphoenician */,
- { 30, 8633, 4487, 7, 4, UNI_TANG } /* script=tang */,
- { 1, 10492, 26, 3, 1, UNI_VS } /* vs=y */,
- { 0, 1330, 10186, 25, 4, UNI_COMPEX } /* fullcompositionexclusion=true */,
- { 0, 6246, 9549, 12, 5, -UNI_BIDIC } /* bidicontrol=false */,
- { 8, 9574, 943, 3, 13, UNI_PUA } /* inprivateusearea */,
- { 0, 9654, 2391, 4, 4, UNI_SB__ST } /* sb=sterm */,
- { 0, 9659, 9389, 4, 6, UNI_RJNG } /* scx=rejang */,
- { 2, 1067, 10273, 27, 3, UNI_CCC__118 } /* canonicalcombiningclass=ccc118 */,
- { 4, 7713, 0, 10, 0, UNI_WARA } /* warangciti */,
- { 1, 9539, 36, 5, 1, UNI_EMOD } /* emod=t */,
- { 2, 8547, 9504, 6, 5, UNI_XPOSIXBLANK } /* xposixblank */,
- { 1, 8457, 2181, 6, 21, UNI_CJKRADICALSSUP } /* block=cjkradicalssupplement */,
- { 0, 9141, 7696, 3, 7, UNI_ASSIGNED } /* isassigned */,
- { 3, 6995, 8130, 10, 9, UNI_LB__AI } /* linebreak=ambiguous */,
- { 2, 5018, 5046, 3, 14, UNI_TITLE } /* istitlecaseletter */,
- { 0, 10375, 3, 3, 1, -UNI_CI } /* ci=f */,
- { 2, 6159, 8409, 13, 2, UNI_NV__20 } /* numericvalue=20 */,
- { 0, 8449, 9664, 4, 5, UNI_INTAILE } /* blk=taile */,
- { 0, 8449, 8157, 4, 9, UNI_ARABICPFB } /* blk=arabicpfb */,
- { 1, 10393, 1624, 3, 2, UNI_PS } /* gc=ps */,
- { 37, 1589, 1232, 9, 2, UNI_TITLE } /* category=lt */,
- { 0, 9898, 0, 4, 0, UNI_GONG } /* gong */,
- { 3, 9659, 5442, 4, 4, UNI_LISU } /* scx=lisu */,
- { 46, 6234, 0, 5, 0, UNI_BIDIC } /* bidic */,
- { 2, 7453, 26, 8, 1, UNI_EXTPICT } /* extpict=y */,
- { 1, 9604, 9549, 5, 5, -UNI_MATH } /* math=false */,
- { 10, 8748, 10277, 7, 2, UNI_CCC__22 } /* ccc=ccc22 */,
- { 0, 8633, 8811, 7, 7, UNI_DSRT } /* script=deseret */,
- { 5, 8449, 957, 4, 28, UNI_SUPPUAB } /* blk=supplementaryprivateuseareab */,
- { 0, 10393, 5060, 3, 15, UNI_UPPERCASELETTER } /* gc=uppercaseletter */,
- { 0, 8457, 1253, 6, 26, UNI_HALFANDFULLFORMS } /* block=halfwidthandfullwidthforms */,
- { 9, 3523, 9966, 17, 4, UNI_KITS } /* scriptextensions=kits */,
- { 1, 6234, 1, 11, 1, UNI_BC__BN } /* bidiclass=bn */,
- { 0, 7513, 0, 10, 0, UNI_lower_values_index } /* lowercase= */,
- { 0, 9251, 1, 6, 1, -UNI_CWKCF } /* cwkcf=n */,
- { 3, 5442, 0, 4, 0, UNI_LISU } /* lisu */,
- { 0, 9990, 6375, 3, 3, UNI_LB__ZWJ } /* lb=zwj */,
- { 1, 9990, 8860, 4, 7, UNI_LB__LF } /* lb=linefeed */,
- { 0, 4790, 2285, 13, 3, UNI_JG__AIN } /* joininggroup=ain */,
- { 6, 3523, 5722, 17, 14, UNI_PHLP } /* scriptextensions=psalterpahlavi */,
- { 24, 9659, 9998, 4, 4, UNI_LINB } /* scx=linb */,
- { 8, 1574, 7435, 4, 8, UNI_INDIVESAKURU } /* indivesakuru */,
- { 25, 9862, 36, 4, 1, UNI_CWT } /* cwt=t */,
- { 0, 9990, 5736, 3, 9, UNI_LB__QU } /* lb=quotation */,
- { 0, 10393, 9514, 3, 5, UNI_XPOSIXCNTRL } /* gc=cntrl */,
- { 3, 3523, 10098, 17, 4, UNI_MIAO } /* scriptextensions=plrd */,
- { 35, 9659, 9014, 4, 7, UNI_OSMA } /* scx=osmanya */,
- { 0, 8449, 4487, 4, 6, UNI_INTANGUT } /* blk=tangut */,
- { 147, 6159, 5834, 13, 3, UNI_NV__100 } /* numericvalue=100 */,
- { 1, 8748, 6654, 4, 12, UNI_CCC__0 } /* ccc=notreordered */,
- { 2, 2996, 0, 19, 0, UNI_SUNDANESESUP } /* sundanesesupplement */,
- { 9, 9942, 9121, 4, 5, UNI_INTIBETAN } /* intibetan */,
- { 0, 9680, 36, 4, 1, UNI_IDC } /* idc=t */,
- { 12, 9946, 8166, 3, 9, UNI_ASCII } /* isbasiclatin */,
- { 18, 10058, 4220, 3, 1, UNI_NV__1 } /* nv=1 */,
- { 14, 2513, 0, 10, 0, UNI_GLAG } /* glagolitic */,
- { 0, 8449, 10018, 4, 4, UNI_INMIAO } /* blk=miao */,
- { 1, 8881, 48, 3, 1, UNI_SM } /* issm */,
- { 1, 185, 8513, 2, 8, UNI_GUJR } /* isgujarati */,
- { 38, 6246, 10498, 12, 3, UNI_BIDIC } /* bidicontrol=yes */,
- { 0, 4423, 50, 14, 2, UNI_SB__AT } /* sentencebreak=at */,
- { 1, 8449, 3199, 4, 13, UNI_DEVANAGARIEXT } /* blk=devanagariext */,
- { 72, 2371, 4184, 3, 15, UNI_HIGHPUSURROGATES } /* inhighpusurrogates */,
- { 1, 8457, 8238, 6, 9, UNI_LATINEXTD } /* block=latinextd */,
- { 64, 8457, 3559, 6, 18, UNI_TAIXUANJING } /* block=taixuanjingsymbols */,
- { 24, 4423, 10540, 14, 2, UNI_SB__XX } /* sentencebreak=xx */,
- { 2, 8748, 8093, 7, 2, UNI_CCC__28 } /* ccc=ccc28 */,
- { 20, 8449, 6690, 4, 12, UNI_INOLDHUNGARIAN } /* blk=oldhungarian */,
- { 1, 4790, 4279, 13, 16, UNI_JG__MANICHAEANLAMEDH } /* joininggroup=manichaeanlamedh */,
- { 1, 9554, 5641, 4, 11, UNI_GCB__SM } /* gcb=spacingmark */,
- { 0, 9946, 5134, 3, 14, UNI_BAMUMSUP } /* isbamumsupplement */,
- { 0, 2370, 0, 4, 0, UNI_SINH } /* sinh */,
- { 1, 9950, 6068, 3, 13, UNI_JG__MANICHAEANONE } /* jg=manichaeanone */,
- { 4, 7048, 2063, 6, 9, UNI_MISCTECHNICAL } /* inmisctechnical */,
- { 0, 8457, 3751, 6, 17, UNI_CYRILLICEXTB } /* block=cyrillicextendedb */,
- { 1, 3463, 10498, 6, 3, UNI_XPOSIXSPACE } /* space=yes */,
- { 1, 3523, 10050, 17, 4, UNI_NKO } /* scriptextensions=nkoo */,
- { 30, 9938, 5694, 4, 9, UNI_BOPOMOFOEXT } /* inbopomofoext */,
- { 0, 185, 222, 2, 2, UNI_CASEDLETTER } /* isl_ */,
- { 9, 1589, 5899, 9, 13, UNI_ME } /* category=enclosingmark */,
- { 0, 9221, 10186, 6, 4, UNI_BIDIC } /* bidic=true */,
- { 1, 8881, 7205, 3, 10, UNI_SUPERANDSUB } /* issuperandsub */,
- { 0, 2844, 24, 19, 1, UNI_GCB__L } /* hangulsyllabletype=l */,
- { 39, 8457, 1692, 6, 18, UNI_GEOMETRICSHAPESEXT } /* block=geometricshapesext */,
- { 2, 2244, 5641, 21, 11, UNI_GCB__SM } /* graphemeclusterbreak=spacingmark */,
- { 12, 3433, 0, 18, 0, UNI_ZP } /* paragraphseparator */,
- { 4, 8881, 3956, 3, 15, UNI_STERM } /* issentenceterminal */,
- { 2, 4790, 0, 13, 0, UNI_jg_values_index } /* joininggroup= */,
- { 0, 9950, 6510, 3, 12, UNI_JG__MALAYALAMLLA } /* jg=malayalamlla */,
- { 1, 9946, 8705, 4, 8, UNI_BOXDRAWING } /* isboxdrawing */,
- { 1, 185, 1984, 2, 12, UNI_DIACRITICALS } /* isdiacriticals */,
- { 48, 1067, 5835, 24, 1, UNI_CCC__0 } /* canonicalcombiningclass=0 */,
- { 1, 350, 0, 33, 0, UNI_SUPMATHOPERATORS } /* supplementalmathematicaloperators */,
- { 0, 8881, 958, 3, 27, UNI_SUPPUAB } /* issupplementaryprivateuseareab */,
- { 187, 7292, 0, 11, 0, UNI_YISYLLABLES } /* yisyllables */,
- { 1, 3451, 1059, 18, 2, -UNI__PERL_PATWS } /* patternwhitespace=no */,
- { 145, 5162, 10186, 14, 4, UNI_POSIXXDIGIT } /* asciihexdigit=true */,
- { 1, 8633, 9826, 7, 4, UNI_BHKS } /* script=bhks */,
- { 2, 7473, 2730, 5, 19, UNI_INSC__CONSONANTHEADLETTER } /* insc=consonantheadletter */,
- { 0, 10058, 8409, 3, 6, UNI_NV__200000 } /* nv=200000 */,
- { 32, 7475, 2288, 5, 19, UNI_PRTI } /* sc=inscriptionalparthian */,
- { 4, 38, 0, 2, 0, UNI_XPOSIXDIGIT } /* nd */,
- { 0, 1067, 10285, 27, 3, UNI_WB__EB } /* canonicalcombiningclass=ccc133 */,
- { 1, 5414, 0, 14, 0, UNI_LATINEXTF } /* latinextendedf */,
- { 32, 8548, 1885, 5, 5, UNI_POSIXLOWER } /* posixlower */,
- { 3, 1598, 4595, 22, 15, UNI_INSC__CONSONANTKILLER } /* indicsyllabiccategory=consonantkiller */,
- { 2, 8449, 4327, 4, 16, UNI_MISCMATHSYMBOLSA } /* blk=miscmathsymbolsa */,
- { 5, 5912, 0, 12, 0, UNI_GRBASE } /* graphemebase */,
- { 20, 8553, 0, 8, 0, UNI_JAMOEXTA } /* jamoexta */,
- { 0, 3523, 10250, 17, 4, UNI_ZYYY } /* scriptextensions=zyyy */,
- { 1, 7270, 1059, 9, 2, -UNI_XIDS } /* xidstart=no */,
- { 5, 3955, 1, 17, 1, -UNI_STERM } /* sentenceterminal=n */,
- { 8, 9539, 3, 5, 1, -UNI_EMOD } /* emod=f */,
- { 1, 8457, 7524, 6, 2, UNI_INVS } /* block=vs */,
- { 0, 4119, 296, 16, 2, UNI_SM } /* generalcategory=sm */,
- { 5, 8449, 2693, 5, 5, UNI_INBRAHMI } /* blk=brahmi */,
- { 1, 5018, 9037, 3, 3, UNI_TAGS } /* istags */,
- { 3, 7094, 0, 11, 0, UNI_LO } /* otherletter */,
- { 77, 8457, 2328, 6, 21, UNI_MEETEIMAYEKEXT } /* block=meeteimayekextensions */,
- { 1, 3458, 1059, 11, 2, -UNI_XPOSIXSPACE } /* whitespace=no */,
- { 4, 10058, 9746, 3, 4, UNI_NV__15_SLASH_2 } /* nv=15/2 */,
- { 46, 9822, 3458, 3, 10, UNI_BC__WS } /* bc=whitespace */,
- { 3, 8748, 10282, 4, 3, UNI_CCC__132 } /* ccc=132 */,
- { 0, 7293, 9438, 3, 3, UNI_YEZI } /* isyezi */,
- { 38, 9862, 10498, 4, 3, UNI_CWT } /* cwt=yes */,
- { 3, 8832, 0, 7, 0, UNI_GRAN } /* grantha */,
- { 0, 4955, 1059, 15, 2, UNI_NFKDQC__N } /* nfkdquickcheck=no */,
- { 1, 3181, 4103, 18, 3, UNI_DT__FIN } /* decompositiontype=fin */,
- { 0, 3217, 10498, 18, 3, UNI_EBASE } /* emojimodifierbase=yes */,
- { 1, 8748, 7877, 4, 2, UNI_CCC__23 } /* ccc=23 */,
- { 17, 4119, 5886, 16, 13, UNI_XPOSIXDIGIT } /* generalcategory=decimalnumber */,
- { 0, 8457, 8832, 6, 7, UNI_INGRANTHA } /* block=grantha */,
- { 5, 2363, 1659, 4, 2, UNI_OLCK } /* isolck */,
- { 22, 10106, 0, 4, 0, UNI_COPT } /* qaac */,
- { 1, 9950, 5302, 3, 14, UNI_JG__HAMZAONHEHGOAL } /* jg=hamzaonhehgoal */,
- { 21, 8457, 9634, 6, 5, UNI_INORIYA } /* block=oriya */,
- { 5, 9890, 1067, 3, 9, UNI_DT__CAN } /* dt=canonical */,
- { 0, 4878, 225, 3, 2, UNI_INMRO } /* inmro */,
- { 0, 8449, 448, 4, 32, UNI_INIDC } /* blk=ideographicdescriptioncharacters */,
- { 8, 7513, 10186, 10, 4, UNI_XPOSIXLOWER } /* lowercase=true */,
- { 0, 8449, 1280, 5, 4, UNI_INBATAK } /* blk=batak */,
- { 56, 185, 34, 2, 3, UNI_EXT } /* isext */,
- { 0, 9141, 184, 4, 2, UNI_ARMI } /* isarmi */,
- { 2, 3523, 10174, 17, 4, UNI_TIBT } /* scriptextensions=tibt */,
- { 24, 4790, 2265, 13, 21, UNI_JG__HANIFIROHINGYAKINNAYA } /* joininggroup=hanifirohingyakinnaya */,
- { 0, 8633, 6618, 7, 4, UNI_MEND } /* script=mend */,
- { 0, 9597, 0, 4, 0, UNI_PHLI } /* phli */,
- { 8, 6995, 4462, 10, 9, UNI_EMOD } /* linebreak=emodifier */,
- { 4, 8449, 1807, 4, 13, UNI_ZNAMENNYMUSIC } /* blk=znamennymusic */,
- { 21, 2958, 0, 19, 0, UNI_OTTOMANSIYAQNUMBERS } /* ottomansiyaqnumbers */,
- { 0, 8874, 10099, 3, 3, UNI_MIAO } /* isplrd */,
- { 40, 4524, 3201, 4, 8, UNI_INDEVANAGARI } /* indevanagari */,
- { 2, 6159, 9746, 13, 2, UNI_NV__15 } /* numericvalue=15 */,
- { 67, 9659, 9534, 4, 5, UNI_DOGR } /* scx=dogra */,
- { 1, 9141, 5163, 3, 4, UNI_ASCII } /* isascii */,
- { 0, 185, 2182, 3, 20, UNI_CJKRADICALSSUP } /* iscjkradicalssupplement */,
- { 89, 8457, 4359, 6, 7, UNI_INMYANMAR } /* block=myanmar */,
- { 4, 9934, 6750, 4, 12, UNI_GCB__T } /* hst=trailingjamo */,
- { 1, 8449, 3734, 4, 17, UNI_CYRILLICEXTA } /* blk=cyrillicextendeda */,
- { 0, 9659, 9287, 4, 6, UNI_HATR } /* scx=hatran */,
- { 1, 3631, 26, 18, 1, UNI_VS } /* variationselector=y */,
- { 4, 7610, 7828, 3, 1, UNI_IN__7 } /* in=7 */,
- { 129, 2868, 81, 4, 8, UNI_ARABICMATH } /* inarabicmath */,
- { 3, 185, 754, 3, 8, UNI_XSUX } /* iscuneiform */,
- { 16, 6402, 9549, 12, 5, -UNI_IDEO } /* ideographic=false */,
- { 0, 9257, 10498, 6, 3, UNI_ECOMP } /* ecomp=yes */,
- { 4, 3523, 9669, 17, 5, UNI_TAKR } /* scriptextensions=takri */,
- { 80, 9782, 10206, 4, 4, UNI_AGE__13 } /* age=v130 */,
- { 1, 3700, 0, 17, 0, UNI_AGHB } /* caucasianalbanian */,
- { 59, 6234, 2351, 10, 3, UNI_BC__PDI } /* bidiclass=pdi */,
- { 7, 8457, 5134, 7, 7, UNI_BAMUMSUP } /* block=bamumsup */,
- { 4, 5148, 0, 14, 0, UNI_ANCIENTSYMBOLS } /* ancientsymbols */,
- { 3, 8633, 10046, 7, 4, UNI_NEWA } /* script=newa */,
- { 3, 7610, 10450, 3, 3, UNI_IN__3_DOT_2 } /* in=v32 */,
- { 0, 2371, 2116, 4, 4, UNI_INHATRAN } /* inhatran */,
- { 5, 7603, 9730, 10, 4, UNI_IN__12_DOT_1 } /* presentin=12.1 */,
- { 4, 8449, 9049, 4, 7, UNI_SHAW } /* blk=shavian */,
- { 2, 7473, 6672, 5, 6, UNI_LB__ZWJ } /* insc=joiner */,
- { 0, 9659, 9854, 4, 4, UNI_CPRT } /* scx=cprt */,
- { 7, 9299, 68, 3, 4, UNI_VSSUP } /* isvssup */,
- { 10, 6159, 10348, 13, 3, UNI_NV__5_SLASH_6 } /* numericvalue=5/6 */,
- { 1, 6629, 9635, 3, 4, UNI_INORIYA } /* inoriya */,
- { 0, 9659, 8328, 4, 9, UNI_ORKH } /* scx=oldturkic */,
- { 0, 9990, 529, 3, 2, UNI_LB__NU } /* lb=nu */,
- { 128, 9133, 0, 7, 0, UNI_ZZZZ } /* unknown */,
- { 4, 5482, 8926, 5, 4, UNI_INMANDAIC } /* inmandaic */,
- { 32, 4916, 2515, 4, 8, UNI_INGLAGOLITIC } /* inglagolitic */,
- { 0, 9251, 0, 5, 0, UNI_CWKCF } /* cwkcf */,
- { 44, 8449, 7524, 4, 2, UNI_INVS } /* blk=vs */,
- { 0, 1784, 0, 23, 0, UNI_SUPPUNCTUATION } /* supplementalpunctuation */,
- { 0, 6003, 0, 13, 0, UNI_LOWSURROGATES } /* lowsurrogates */,
- { 6, 8457, 9098, 6, 7, UNI_INTAITHAM } /* block=taitham */,
- { 0, 8449, 8681, 4, 8, UNI_UCASEXTA } /* blk=ucasexta */,
- { 5, 8457, 3425, 6, 8, UNI_DINGBATS } /* block=dingbats */,
- { 4, 2363, 6692, 4, 10, UNI_HUNG } /* isoldhungarian */,
- { 0, 9659, 1047, 4, 5, UNI_GREK } /* scx=greek */,
- { 0, 7475, 9119, 3, 7, UNI_TIBT } /* sc=tibetan */,
- { 0, 8449, 3887, 4, 17, UNI_LETTERLIKESYMBOLS } /* blk=letterlikesymbols */,
- { 0, 8457, 5134, 7, 14, UNI_BAMUMSUP } /* block=bamumsupplement */,
- { 0, 7420, 5168, 3, 7, UNI_XPOSIXXDIGIT } /* ishexdigit */,
- { 0, 6438, 7543, 12, 10, UNI_JT__U } /* joiningtype=nonjoining */,
- { 0, 9305, 0, 6, 0, UNI_joinc_values_index } /* joinc= */,
- { 0, 7475, 10110, 3, 4, UNI_SC__QAAI } /* sc=qaai */,
- { 0, 1738, 0, 9, 0, UNI_LATINEXTE } /* latinexte */,
- { 6, 9986, 0, 4, 0, UNI_LATN } /* latn */,
- { 0, 6428, 1479, 3, 9, UNI_CJKSYMBOLS } /* incjksymbols */,
- { 7, 218, 2307, 6, 21, UNI__PERL_IS_IN_MULTI_CHAR_FOLD } /* _perl_is_in_multi_char_fold */,
- { 0, 1067, 10277, 24, 2, UNI_CCC__22 } /* canonicalcombiningclass=22 */,
- { 1, 8449, 8797, 4, 7, UNI_CJKEXTG } /* blk=cjkextg */,
- { 0, 118, 481, 3, 17, UNI_IDEOGRAPHICSYMBOLS } /* inideographicsymbols */,
- { 1, 8457, 929, 6, 28, UNI_SUPPUAA } /* block=supplementaryprivateuseareaa */,
- { 1, 7473, 9140, 5, 7, UNI_INSC__VISARGA } /* insc=visarga */,
- { 0, 3523, 2939, 17, 9, UNI_MONG } /* scriptextensions=mongolian */,
- { 0, 7473, 4519, 5, 5, UNI_INSC__VOWEL } /* insc=vowel */,
- { 4, 4119, 9514, 16, 5, UNI_XPOSIXCNTRL } /* generalcategory=cntrl */,
- { 30, 8457, 2286, 6, 21, UNI_ININSCRIPTIONALPARTHIAN } /* block=inscriptionalparthian */,
- { 0, 9680, 9549, 4, 5, -UNI_IDC } /* idc=false */,
- { 2, 185, 512, 2, 31, UNI_MATHALPHANUM } /* ismathematicalalphanumericsymbols */,
- { 24, 6159, 7833, 13, 9, UNI_NV__3_SLASH_16 } /* numericvalue=1.875e-01 */,
- { 8, 4119, 4391, 16, 5, UNI_C } /* generalcategory=other */,
- { 1, 9269, 10498, 6, 3, UNI_EPRES } /* epres=yes */,
- { 1, 6234, 3271, 10, 18, UNI_BC__ET } /* bidiclass=europeanterminator */,
- { 4, 5091, 1930, 3, 4, UNI_XPOSIXUPPER } /* isupper */,
- { 1, 6159, 9173, 13, 4, UNI_NV__4000 } /* numericvalue=4000 */,
- { 1, 3523, 8727, 17, 7, UNI_AVST } /* scriptextensions=avestan */,
- { 81, 7475, 2202, 3, 8, UNI_SC__CYRL } /* sc=cyrillic */,
- { 88, 2072, 26, 22, 1, UNI__PERL_NCHAR } /* noncharactercodepoint=y */,
- { 161, 9659, 9634, 4, 5, UNI_ORYA } /* scx=oriya */,
- { 0, 9782, 7835, 4, 1, UNI_AGE__8 } /* age=8 */,
- { 1, 118, 5952, 3, 12, UNI_IPAEXT } /* inipaextensions */,
- { 2, 6995, 1564, 10, 9, UNI_LB__SG } /* linebreak=surrogate */,
- { 1, 9659, 7183, 5, 10, UNI_SORA } /* scx=sorasompeng */,
- { 0, 8748, 10276, 7, 3, UNI_CCC__122 } /* ccc=ccc122 */,
- { 1, 1830, 9549, 22, 5, -UNI_CWCF } /* changeswhencasefolded=false */,
- { 0, 185, 9871, 3, 3, UNI_CYRL } /* iscyrl */,
- { 0, 9659, 1689, 4, 4, UNI_PHAG } /* scx=phag */,
- { 0, 7481, 8903, 3, 6, UNI_KALI } /* iskayahli */,
- { 4, 8229, 0, 9, 0, UNI_LATINEXTC } /* latinextc */,
- { 2, 3523, 8689, 17, 4, UNI_UGAR } /* scriptextensions=ugar */,
- { 0, 4790, 6534, 13, 12, UNI_JG__MALAYALAMNNA } /* joininggroup=malayalamnna */,
- { 87, 8457, 5162, 6, 5, UNI_ASCII } /* block=ascii */,
- { 0, 1334, 9549, 21, 5, -UNI_CE } /* compositionexclusion=false */,
- { 2, 8811, 0, 7, 0, UNI_DSRT } /* deseret */,
- { 1, 6234, 899, 10, 2, UNI_BC__WS } /* bidiclass=ws */,
- { 0, 3523, 8313, 17, 4, UNI_ITAL } /* scriptextensions=ital */,
- { 17, 8449, 8755, 4, 7, UNI_CJKEXTA } /* blk=cjkexta */,
- { 3, 10058, 8067, 3, 9, UNI_NV__4_SLASH_5 } /* nv=8.000e-01 */,
- { 2, 1067, 7931, 24, 2, UNI_CCC__24 } /* canonicalcombiningclass=24 */,
- { 1, 8633, 527, 7, 3, UNI_SC__HAN } /* script=han */,
- { 0, 1334, 3, 21, 1, -UNI_CE } /* compositionexclusion=f */,
- { 0, 8457, 1040, 6, 27, UNI_ANCIENTGREEKMUSIC } /* block=ancientgreekmusicalnotation */,
- { 0, 8633, 6378, 7, 12, UNI_SC__GONG } /* script=gunjalagondi */,
- { 1, 2363, 10071, 3, 3, UNI_ORKH } /* isorkh */,
- { 20, 6995, 6414, 10, 12, UNI_LB__IS } /* linebreak=infixnumeric */,
- { 2, 8881, 2997, 3, 11, UNI_SUNDANESESUP } /* issundanesesup */,
- { 1, 10058, 9714, 3, 4, UNI_NV__1_SLASH_80 } /* nv=1/80 */,
- { 18, 8804, 9549, 7, 5, -UNI_COMPEX } /* compex=false */,
- { 1, 7473, 8673, 5, 8, UNI_INSC__TONEMARK } /* insc=tonemark */,
- { 0, 8748, 2559, 4, 5, UNI_CCC__R } /* ccc=right */,
- { 5, 185, 1047, 2, 5, UNI_GREK } /* isgreek */,
- { 1, 185, 2328, 2, 21, UNI_MEETEIMAYEKEXT } /* ismeeteimayekextensions */,
- { 0, 8943, 6272, 4, 10, UNI_CHESSSYMBOLS } /* inchesssymbols */,
- { 0, 7703, 26, 10, 1, UNI_XPOSIXUPPER } /* uppercase=y */,
- { 0, 2653, 18, 20, 1, UNI_VO__R } /* verticalorientation=r */,
- { 7, 6159, 7304, 13, 9, UNI_NV__1_SLASH_2 } /* numericvalue=5.000e-01 */,
- { 15, 6294, 0, 12, 0, UNI_CYRILLICEXTB } /* cyrillicextb */,
- { 0, 10058, 5834, 3, 7, UNI_NV__1000000 } /* nv=1000000 */,
- { 4, 8449, 6450, 4, 12, UNI_KHMERSYMBOLS } /* blk=khmersymbols */,
- { 0, 8457, 1380, 6, 25, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* block=symbolsandpictographsexta */,
- { 1, 7603, 10354, 10, 3, UNI_IN__6_DOT_1 } /* presentin=6.1 */,
- { 0, 2160, 0, 21, 0, UNI_CJKCOMPATFORMS } /* cjkcompatibilityforms */,
- { 0, 8457, 9674, 6, 5, UNI_VSSUP } /* block=vssup */,
- { 6, 7475, 8818, 3, 7, UNI_ELBA } /* sc=elbasan */,
- { 0, 2028, 1059, 22, 2, -UNI_LOE } /* logicalorderexception=no */,
- { 0, 4790, 7017, 13, 11, UNI_JG__MALAYALAMJA } /* joininggroup=malayalamja */,
- { 3, 185, 8909, 2, 7, UNI_LINA } /* islineara */,
- { 1, 9782, 9, 4, 2, UNI_IN__NA } /* age=na */,
- { 4, 7481, 5965, 3, 12, UNI_KANAEXTA } /* iskanaextendeda */,
- { 0, 185, 8294, 3, 2, UNI_CWT } /* iscwt */,
- { 177, 9684, 10186, 5, 4, UNI_XIDS } /* xids=true */,
- { 18, 7215, 0, 4, 0, UNI_SYLO } /* sylo */,
- { 1, 9659, 527, 4, 3, UNI_HAN } /* scx=han */,
- { 2, 9519, 3, 5, 1, -UNI_CWCF } /* cwcf=f */,
- { 0, 9659, 9790, 4, 4, UNI_AHOM } /* scx=ahom */,
- { 0, 9293, 0, 4, 0, UNI_PE } /* ispe */,
- { 24, 8457, 2202, 6, 11, UNI_CYRILLICSUP } /* block=cyrillicsup */,
- { 6, 8748, 8111, 4, 2, UNI_CCC__19 } /* ccc=19 */,
- { 1, 8449, 1405, 4, 25, UNI_SYMBOLSFORLEGACYCOMPUTING } /* blk=symbolsforlegacycomputing */,
- { 0, 7610, 10206, 3, 4, UNI_IN__13 } /* in=v130 */,
- { 10, 6159, 8111, 13, 2, UNI_NV__19 } /* numericvalue=19 */,
- { 12, 8881, 2997, 3, 3, UNI_SUND } /* issund */,
- { 2, 8633, 3904, 7, 4, UNI_SC__MANI } /* script=mani */,
- { 23, 8748, 10321, 4, 3, UNI_CCC__DB } /* ccc=233 */,
- { 64, 9910, 0, 4, 0, UNI_GUJR } /* gujr */,
- { 0, 8449, 6378, 4, 12, UNI_INGUNJALAGONDI } /* blk=gunjalagondi */,
- { 1, 9782, 7781, 4, 1, UNI_AGE__4 } /* age=4 */,
- { 1, 8457, 2202, 6, 21, UNI_CYRILLICSUP } /* block=cyrillicsupplementary */,
- { 36, 7513, 26, 10, 1, UNI_XPOSIXLOWER } /* lowercase=y */,
- { 7, 3523, 8846, 17, 7, UNI_HANO } /* scriptextensions=hanunoo */,
- { 4, 7475, 8322, 3, 4, UNI_SC__PERM } /* sc=perm */,
- { 8, 9990, 5708, 3, 14, UNI_LB__PO } /* lb=postfixnumeric */,
- { 3, 10058, 9203, 3, 4, UNI_NV__8000 } /* nv=8000 */,
- { 1, 6402, 3, 12, 1, -UNI_IDEO } /* ideographic=f */,
- { 0, 9866, 26, 4, 1, UNI_CWU } /* cwu=y */,
- { 5, 9561, 236, 3, 2, UNI_SB__LO } /* sb=lo */,
- { 5, 1589, 134, 9, 4, UNI_M } /* category=mark */,
- { 4, 9659, 10026, 4, 3, UNI_MRO } /* scx=mro */,
- { 0, 9669, 0, 4, 0, UNI_TAKR } /* takr */,
- { 0, 8173, 8166, 3, 9, UNI_ASCII } /* inbasiclatin */,
- { 0, 75, 0, 2, 0, UNI_ME } /* me */,
- { 1, 8457, 4215, 6, 6, UNI_LATIN1 } /* block=latin1 */,
- { 8, 8449, 3163, 4, 6, UNI_INCOPTIC } /* blk=coptic */,
- { 69, 8748, 8048, 4, 2, UNI_CCC__17 } /* ccc=17 */,
- { 5, 6678, 39, 12, 2, UNI_XPOSIXDIGIT } /* numerictype=de */,
- { 2, 7048, 4331, 6, 12, UNI_MISCMATHSYMBOLSA } /* inmiscmathsymbolsa */,
- { 2, 3523, 9870, 17, 4, UNI_CYRL } /* scriptextensions=cyrl */,
- { 0, 218, 8364, 6, 9, UNI__PERL_QUOTEMETA } /* _perl_quotemeta */,
- { 0, 185, 9978, 2, 4, UNI_LANA } /* islana */,
- { 42, 3181, 1314, 18, 4, UNI_DT__INIT } /* decompositiontype=init */,
- { 2, 7475, 7483, 3, 4, UNI_KHAR } /* sc=khar */,
- { 64, 3523, 10246, 17, 4, UNI_QAAI } /* scriptextensions=zinh */,
- { 2, 1589, 4670, 9, 15, UNI_PD } /* category=dashpunctuation */,
- { 33, 10378, 26, 3, 1, UNI_DI } /* di=y */,
- { 0, 6678, 6077, 12, 4, UNI_NV__NAN } /* numerictype=none */,
- { 0, 9141, 8150, 4, 7, UNI_ARABICPFA } /* isarabicpfa */,
- { 132, 9822, 10417, 3, 3, UNI_BC__PDF } /* bc=pdf */,
- { 4, 6234, 2977, 10, 19, UNI_BC__RLO } /* bidiclass=righttoleftoverride */,
- { 0, 185, 9886, 2, 4, UNI_DSRT } /* isdsrt */,
- { 0, 10058, 10291, 3, 3, UNI_NV__2_SLASH_5 } /* nv=2/5 */,
- { 2, 5190, 0, 14, 0, UNI_ci_values_index } /* caseignorable= */,
- { 2, 48, 0, 1, 0, UNI_M } /* m */,
- { 1, 10058, 9163, 3, 3, UNI_NV__600 } /* nv=600 */,
- { 0, 1067, 10276, 24, 3, UNI_CCC__122 } /* canonicalcombiningclass=122 */,
- { 0, 7475, 9669, 3, 5, UNI_SC__TAKR } /* sc=takri */,
- { 0, 9091, 0, 7, 0, UNI_TGLG } /* tagalog */,
- { 0, 9946, 5134, 3, 3, UNI_BAMU } /* isbamu */,
- { 193, 8449, 8220, 4, 9, UNI_LATINEXTB } /* blk=latinextb */,
- { 2, 8681, 0, 7, 0, UNI_UCASEXT } /* ucasext */,
- { 3, 9890, 5114, 3, 6, UNI_DT__SQR } /* dt=square */,
- { 58, 8633, 0, 7, 0, UNI_sc_values_index } /* script= */,
- { 1, 3523, 2692, 17, 4, UNI_BRAH } /* scriptextensions=brah */,
- { 1, 7259, 5919, 10, 5, UNI_WB__EB } /* wordbreak=ebase */,
- { 6, 7610, 10194, 3, 4, UNI_IN__11 } /* in=v110 */,
- { 0, 8457, 1047, 6, 5, UNI_INGREEK } /* block=greek */,
- { 22, 8449, 783, 4, 21, UNI_ENCLOSEDALPHANUM } /* blk=enclosedalphanumerics */,
- { 0, 6618, 0, 4, 0, UNI_MEND } /* mend */,
- { 0, 9659, 9335, 4, 4, UNI_LEPC } /* scx=lepc */,
- { 1, 5482, 8918, 4, 5, UNI_INMAKASAR } /* inmakasar */,
- { 0, 1067, 7463, 24, 4, UNI_CCC__6 } /* canonicalcombiningclass=hanr */,
- { 168, 3343, 26, 18, 1, UNI_IDSB } /* idsbinaryoperator=y */,
- { 7, 9254, 0, 2, 0, UNI_CF } /* cf */,
- { 1, 185, 6841, 2, 10, UNI_DEP } /* isdeprecated */,
- { 1, 1067, 10519, 24, 2, UNI_CCC__84 } /* canonicalcombiningclass=84 */,
- { 1, 2653, 3624, 20, 7, UNI_VO__U } /* verticalorientation=upright */,
- { 0, 7259, 0, 4, 0, UNI_XPOSIXWORD } /* word */,
- { 0, 5807, 2287, 3, 20, UNI_PRTI } /* isinscriptionalparthian */,
- { 5, 9659, 8346, 4, 9, UNI_PALM } /* scx=palmyrene */,
- { 2, 185, 236, 2, 2, UNI_LO } /* islo */,
- { 7, 6016, 0, 9, 0, UNI_MLYM } /* malayalam */,
- { 217, 8874, 2, 3, 1, UNI_PI } /* ispi */,
- { 1, 8633, 10226, 7, 4, UNI_XPEO } /* script=xpeo */,
- { 2, 9659, 9669, 4, 4, UNI_TAKR } /* scx=takr */,
- { 0, 469, 0, 5, 0, UNI__PERL_NCHAR } /* nchar */,
- { 9, 5860, 10498, 13, 3, UNI_BIDIM } /* bidimirrored=yes */,
- { 1, 8633, 10070, 7, 4, UNI_ORKH } /* script=orkh */,
- { 0, 10086, 1059, 4, 2, -UNI_PCM } /* pcm=no */,
- { 3, 4119, 5764, 16, 14, UNI_ZS } /* generalcategory=spaceseparator */,
- { 0, 8449, 8238, 4, 9, UNI_LATINEXTD } /* blk=latinextd */,
- { 2, 8457, 8916, 6, 7, UNI_INMAKASAR } /* block=makasar */,
- { 8, 8449, 2806, 4, 19, UNI_JAMOEXTA } /* blk=hanguljamoextendeda */,
- { 2, 9283, 36, 4, 1, UNI_EXT } /* ext=t */,
- { 0, 8955, 845, 4, 27, UNI_ENCLOSEDIDEOGRAPHICSUP } /* inenclosedideographicsupplement */,
- { 5, 9221, 3, 6, 1, -UNI_BIDIC } /* bidic=f */,
- { 32, 3415, 0, 18, 0, UNI_ORNAMENTALDINGBATS } /* ornamentaldingbats */,
- { 8, 9990, 10540, 3, 2, UNI_LB__XX } /* lb=xx */,
- { 0, 7343, 0, 10, 0, UNI_ARABICEXTB } /* arabicextb */,
- { 1, 7534, 9, 4, 16, UNI_CANS } /* iscanadianaboriginal */,
- { 145, 2673, 0, 19, 0, UNI_ANCIENTGREEKNUMBERS } /* ancientgreeknumbers */,
- { 1, 2371, 1717, 4, 4, UNI_INHANGUL } /* inhangul */,
- { 2, 8457, 783, 6, 16, UNI_ENCLOSEDALPHANUM } /* block=enclosedalphanum */,
- { 0, 8457, 2138, 7, 13, UNI_BYZANTINEMUSIC } /* block=byzantinemusic */,
- { 0, 9519, 36, 5, 1, UNI_CWCF } /* cwcf=t */,
- { 4, 3989, 0, 17, 0, UNI_SUTTONSIGNWRITING } /* suttonsignwriting */,
- { 0, 6159, 4220, 13, 1, UNI_NV__1 } /* numericvalue=1 */,
- { 0, 4006, 3, 17, 1, -UNI_UIDEO } /* unifiedideograph=f */,
- { 2, 8457, 9431, 6, 6, UNI_INWANCHO } /* block=wancho */,
- { 0, 7603, 10194, 10, 4, UNI_IN__11 } /* presentin=v110 */,
- { 2, 6995, 10532, 10, 2, UNI_GCB__V } /* linebreak=jv */,
- { 3, 6428, 6307, 3, 11, UNI_CYRILLICEXTC } /* incyrillicextc */,
- { 218, 6678, 11, 12, 2, UNI_NT__DI } /* numerictype=di */,
- { 26, 7475, 4970, 3, 15, UNI_NARB } /* sc=oldnortharabian */,
- { 1, 8633, 9014, 7, 4, UNI_OSMA } /* script=osma */,
- { 3, 9659, 9323, 4, 4, UNI_KHOJ } /* scx=khoj */,
- { 0, 185, 8292, 2, 9, UNI_TALU } /* isnewtailue */,
- { 5, 3523, 9043, 18, 6, UNI_SHRD } /* scriptextensions=sharada */,
- { 0, 8417, 0, 8, 0, UNI_ARMN } /* armenian */,
- { 74, 4790, 5578, 13, 4, UNI_JG__TETH } /* joininggroup=teth */,
- { 1, 8874, 0, 4, 0, UNI_PO } /* ispo */,
- { 66, 6428, 116, 4, 23, UNI_DIACRITICALS } /* incombiningdiacriticalmarks */,
- { 28, 6159, 9774, 13, 4, UNI_NV__7_SLASH_12 } /* numericvalue=7/12 */,
- { 1, 185, 6852, 2, 11, UNI_DOMINO } /* isdominotiles */,
- { 0, 6995, 1502, 10, 13, UNI_LB__CM } /* linebreak=combiningmark */,
- { 1, 9659, 9958, 4, 4, UNI_KALI } /* scx=kali */,
- { 67, 9500, 8483, 4, 6, UNI_INDUPLOYAN } /* induployan */,
- { 5, 9659, 8374, 5, 8, UNI_SAMR } /* scx=samaritan */,
- { 67, 3109, 0, 18, 0, UNI_CHEROKEESUP } /* cherokeesupplement */,
- { 18, 8633, 9014, 7, 7, UNI_OSMA } /* script=osmanya */,
- { 2, 185, 3678, 3, 2, UNI_CWL } /* iscwl */,
- { 7, 8633, 8727, 7, 7, UNI_AVST } /* script=avestan */,
- { 8, 185, 3379, 2, 9, UNI_LATINEXTA } /* islatinexta */,
- { 16, 10381, 9359, 3, 6, UNI_EA__NA } /* ea=narrow */,
- { 0, 9659, 9323, 4, 6, UNI_KHOJ } /* scx=khojki */,
- { 1, 4119, 3433, 16, 18, UNI_ZP } /* generalcategory=paragraphseparator */,
- { 0, 8457, 843, 6, 22, UNI_ENCLOSEDIDEOGRAPHICSUP } /* block=enclosedideographicsup */,
- { 3, 1067, 7895, 27, 2, UNI_CCC__33 } /* canonicalcombiningclass=ccc33 */,
- { 1, 957, 0, 28, 0, UNI_SUPPUAB } /* supplementaryprivateuseareab */,
- { 0, 8633, 2901, 7, 19, UNI_MERO } /* script=meroitichieroglyphs */,
- { 1, 8173, 1280, 3, 4, UNI_INBATAK } /* inbatak */,
- { 0, 1598, 4519, 22, 16, UNI_INSC__VOWELINDEPENDENT } /* indicsyllabiccategory=vowelindependent */,
- { 0, 4790, 9794, 13, 4, UNI_JG__ALEF } /* joininggroup=alef */,
- { 0, 4119, 46, 16, 2, UNI_CO } /* generalcategory=co */,
- { 0, 9659, 7127, 4, 11, UNI_HMNG } /* scx=pahawhhmong */,
- { 1, 8449, 8811, 4, 7, UNI_DSRT } /* blk=deseret */,
- { 0, 3523, 9629, 17, 5, UNI_OGAM } /* scriptextensions=ogham */,
- { 2, 5060, 0, 15, 0, UNI_UPPERCASELETTER } /* uppercaseletter */,
- { 4, 8457, 985, 6, 28, UNI_VSSUP } /* block=variationselectorssupplement */,
- { 0, 9519, 10186, 5, 4, UNI_CWCF } /* cwcf=true */,
- { 7, 1542, 2337, 5, 5, UNI_GREEKEXT } /* ingreekext */,
- { 0, 8449, 2433, 4, 20, UNI_INANATOLIANHIEROGLYPHS } /* blk=anatolianhieroglyphs */,
- { 8, 9886, 0, 4, 0, UNI_DSRT } /* dsrt */,
- { 0, 7443, 26, 9, 1, UNI_EXT } /* extender=y */,
- { 192, 9141, 27, 3, 2, UNI_ALL } /* isall */,
- { 1, 6234, 8, 10, 2, UNI_BC__AN } /* bidiclass=an */,
- { 0, 1890, 10498, 6, 3, UNI_CASED } /* cased=yes */,
- { 6, 185, 1941, 3, 21, UNI_CJKCOMPATIDEOGRAPHSSUP } /* iscjkcompatideographssup */,
- { 174, 21, 8569, 2, 8, UNI_INJAVANESE } /* injavanese */,
- { 24, 8633, 3163, 7, 6, UNI_SC__COPT } /* script=coptic */,
- { 0, 9659, 6016, 4, 9, UNI_MLYM } /* scx=malayalam */,
- { 1, 8457, 8593, 6, 8, UNI_INMAHAJANI } /* block=mahajani */,
- { 1, 8449, 3505, 4, 18, UNI_RUMI } /* blk=ruminumeralsymbols */,
- { 4, 8633, 10034, 7, 4, UNI_SC__MYMR } /* script=mymr */,
- { 0, 185, 8256, 2, 9, UNI_LATINEXTG } /* islatinextg */,
- { 0, 9659, 10038, 4, 4, UNI_NARB } /* scx=narb */,
- { 0, 4790, 7313, 13, 10, UNI_JG__AFRICANFEH } /* joininggroup=africanfeh */,
- { 6, 7475, 8665, 3, 8, UNI_TFNG } /* sc=tifinagh */,
- { 113, 21, 8211, 2, 9, UNI_INKHUDAWADI } /* inkhudawadi */,
- { 4, 8633, 9986, 7, 4, UNI_SC__LATN } /* script=latn */,
- { 0, 9990, 529, 3, 7, UNI_LB__NU } /* lb=numeric */,
- { 0, 8457, 3870, 6, 17, UNI_INKHITANSMALLSCRIPT } /* block=khitansmallscript */,
- { 0, 9846, 0, 4, 0, UNI_CHRS } /* chrs */,
- { 2, 8633, 1738, 7, 5, UNI_SC__LATN } /* script=latin */,
- { 0, 9950, 6555, 3, 3, UNI_JG__NYA } /* jg=nya */,
- { 1, 8633, 10082, 7, 4, UNI_SC__OUGR } /* script=ougr */,
- { 0, 9802, 0, 4, 0, UNI_ARMN } /* armn */,
- { 3, 8328, 0, 9, 0, UNI_ORKH } /* oldturkic */,
- { 0, 1405, 0, 25, 0, UNI_SYMBOLSFORLEGACYCOMPUTING } /* symbolsforlegacycomputing */,
- { 8, 4135, 0, 11, 0, UNI_GEORGIANEXT } /* georgianext */,
- { 0, 9529, 9549, 5, 5, -UNI_DASH } /* dash=false */,
- { 4, 9269, 3, 6, 1, -UNI_EPRES } /* epres=f */,
- { 8, 3523, 9057, 18, 3, UNI_SIDD } /* scriptextensions=sidd */,
- { 0, 7475, 9918, 3, 4, UNI_SC__HANO } /* sc=hano */,
- { 0, 10058, 9191, 3, 6, UNI_NV__600000 } /* nv=600000 */,
- { 4, 9659, 9798, 4, 4, UNI_ARMI } /* scx=armi */,
- { 17, 6693, 0, 4, 0, UNI_HUNG } /* hung */,
- { 0, 8888, 3463, 7, 5, UNI_XPOSIXSPACE } /* isxperlspace */,
- { 0, 5899, 0, 13, 0, UNI_ME } /* enclosingmark */,
- { 0, 9071, 0, 5, 0, UNI_term_values_index } /* term= */,
- { 0, 1598, 2493, 22, 20, UNI_INSC__CONSONANTWITHSTACKER } /* indicsyllabiccategory=consonantwithstacker */,
- { 76, 7259, 8274, 10, 9, UNI_WB__MB } /* wordbreak=midnumlet */,
- { 142, 6438, 24, 12, 1, UNI_JT__L } /* joiningtype=l */,
- { 1, 5018, 9127, 3, 6, UNI_TIRH } /* istirhuta */,
- { 6, 9377, 3, 6, 1, -UNI__PERL_PATWS } /* patws=f */,
- { 1, 9950, 10390, 3, 3, UNI_JG__GAF } /* jg=gaf */,
- { 2, 5167, 3, 9, 1, -UNI_XPOSIXXDIGIT } /* hexdigit=f */,
- { 0, 10058, 10512, 3, 2, UNI_NV__45 } /* nv=45 */,
- { 0, 5162, 9549, 14, 5, -UNI_POSIXXDIGIT } /* asciihexdigit=false */,
- { 2, 8457, 2573, 6, 20, UNI_INNYIAKENGPUACHUEHMONG } /* block=nyiakengpuachuehmong */,
- { 13, 8697, 0, 8, 0, UNI_VITH } /* vithkuqi */,
- { 3, 1334, 1059, 21, 2, -UNI_CE } /* compositionexclusion=no */,
- { 77, 6159, 10369, 13, 3, UNI_NV__9_SLASH_2 } /* numericvalue=9/2 */,
- { 0, 7259, 529, 10, 2, UNI_WB__NU } /* wordbreak=nu */,
- { 0, 9614, 690, 4, 3, UNI_NV__NAN } /* nt=none */,
- { 12, 9659, 8433, 4, 4, UNI_BALI } /* scx=bali */,
- { 5, 9822, 3433, 3, 18, UNI_BC__B } /* bc=paragraphseparator */,
- { 5, 9257, 3, 6, 1, -UNI_ECOMP } /* ecomp=f */,
- { 0, 1067, 8048, 27, 2, UNI_CCC__17 } /* canonicalcombiningclass=ccc17 */,
- { 2, 9786, 0, 4, 0, UNI_AGHB } /* aghb */,
- { 5, 8748, 23, 4, 2, UNI_CCC__AL } /* ccc=al */,
- { 0, 8881, 10396, 3, 3, UNI_SHRD } /* isshrd */,
- { 4, 7475, 9870, 3, 4, UNI_SC__CYRL } /* sc=cyrl */,
- { 137, 7603, 5834, 10, 2, UNI_IN__10 } /* presentin=10 */,
- { 1, 7481, 6963, 3, 10, UNI_KATAKANAEXT } /* iskatakanaext */,
- { 8, 7271, 25, 10, 1, UNI_IDS } /* idstart=yes */,
- { 0, 2370, 0, 7, 0, UNI_SINH } /* sinhala */,
- { 0, 9950, 6546, 3, 12, UNI_JG__MALAYALAMNYA } /* jg=malayalamnya */,
- { 18, 2223, 9549, 21, 5, -UNI_EXTPICT } /* extendedpictographic=false */,
- { 0, 10058, 8076, 3, 9, UNI_NV__5_SLASH_6 } /* nv=8.333e-01 */,
- { 4, 6159, 7779, 13, 9, UNI_NV__1_SLASH_7 } /* numericvalue=1.429e-01 */,
- { 1, 9679, 3, 5, 1, -UNI_XIDC } /* xidc=f */,
- { 1, 10492, 0, 3, 0, UNI_vs_values_index } /* vs= */,
- { 192, 9858, 26, 4, 1, UNI_CWL } /* cwl=y */,
- { 0, 185, 544, 3, 19, UNI_CJK } /* iscjkunifiedideographs */,
- { 0, 9659, 9826, 4, 4, UNI_BHKS } /* scx=bhks */,
- { 0, 8457, 8665, 6, 8, UNI_INTIFINAGH } /* block=tifinagh */,
- { 11, 6428, 2203, 3, 7, UNI_INCYRILLIC } /* incyrillic */,
- { 6, 8457, 7643, 6, 10, UNI_INSAURASHTRA } /* block=saurashtra */,
- { 0, 3523, 7, 17, 18, UNI_CANS } /* scriptextensions=canadianaboriginal */,
- { 0, 10130, 9050, 4, 6, UNI_SHAW } /* sc=shavian */,
- { 2, 4503, 0, 16, 0, UNI_TANGUTSUP } /* tangutsupplement */,
- { 1, 10058, 9179, 3, 2, UNI_NV__43 } /* nv=43 */,
- { 3, 5018, 9408, 3, 3, UNI_THAA } /* isthaa */,
- { 74, 7475, 9311, 3, 6, UNI_SC__KTHI } /* sc=kaithi */,
- { 17, 7423, 3, 10, 1, -UNI_DIA } /* diacritic=f */,
- { 16, 6774, 3, 12, 1, -UNI_XIDC } /* xidcontinue=f */,
- { 0, 6159, 10336, 13, 3, UNI_NV__3_SLASH_5 } /* numericvalue=3/5 */,
- { 0, 8457, 1355, 6, 25, UNI_SUPERANDSUB } /* block=superscriptsandsubscripts */,
- { 0, 9215, 1, 6, 1, -UNI_XPOSIXALPHA } /* alpha=n */,
- { 1, 8633, 9629, 7, 5, UNI_OGAM } /* script=ogham */,
- { 0, 9890, 2869, 3, 3, UNI_DT__NAR } /* dt=nar */,
- { 2, 6428, 253, 4, 31, UNI_DIACRITICALSEXT } /* incombiningdiacriticalmarksextended */,
- { 0, 8633, 79, 7, 6, UNI_SC__ARAB } /* script=arabic */,
- { 0, 546, 0, 16, 0, UNI_UIDEO } /* unifiedideograph */,
- { 1, 2244, 296, 21, 2, UNI_GCB__SM } /* graphemeclusterbreak=sm */,
- { 2, 9305, 10498, 6, 3, UNI_JOINC } /* joinc=yes */,
- { 0, 9822, 2613, 3, 20, UNI_BC__RLE } /* bc=righttoleftembedding */,
- { 3, 8449, 5964, 4, 13, UNI_KANAEXTA } /* blk=kanaextendeda */,
- { 198, 7259, 10540, 10, 2, UNI_WB__XX } /* wordbreak=xx */,
- { 1, 7259, 34, 10, 6, UNI_WB__EXTEND } /* wordbreak=extend */,
- { 209, 9934, 0, 4, 0, UNI_hst_values_index } /* hst= */,
- { 0, 185, 434, 2, 6, UNI_CF } /* isformat */,
- { 197, 10058, 9710, 3, 4, UNI_NV__1_SLASH_64 } /* nv=1/64 */,
- { 7, 6159, 9714, 13, 4, UNI_NV__1_SLASH_80 } /* numericvalue=1/80 */,
- { 0, 8972, 10498, 7, 3, UNI_DT__NONE } /* nfkdqc=yes */,
- { 6, 7475, 6450, 3, 5, UNI_KHMR } /* sc=khmer */,
- { 11, 185, 2939, 2, 9, UNI_MONG } /* ismongolian */,
- { 5, 8449, 2286, 4, 21, UNI_ININSCRIPTIONALPARTHIAN } /* blk=inscriptionalparthian */,
- { 0, 10393, 113, 3, 2, UNI_SC } /* gc=sc */,
- { 0, 2028, 36, 22, 1, UNI_LOE } /* logicalorderexception=t */,
- { 5, 185, 8798, 3, 6, UNI_CJKEXTG } /* iscjkextg */,
- { 1, 2653, 505, 20, 2, UNI_VO__TU } /* verticalorientation=tu */,
- { 0, 9659, 9818, 4, 4, UNI_BATK } /* scx=batk */,
- { 0, 7473, 9619, 5, 5, UNI_INSC__NUKTA } /* insc=nukta */,
- { 39, 8657, 0, 4, 0, UNI_TAGB } /* tagb */,
- { 0, 6159, 1310, 13, 3, UNI_NV__NAN } /* numericvalue=nan */,
- { 0, 8633, 8689, 7, 4, UNI_UGAR } /* script=ugar */,
- { 0, 10058, 10520, 3, 2, UNI_NV__49 } /* nv=49 */,
- { 1, 8449, 7483, 4, 10, UNI_INKHAROSHTHI } /* blk=kharoshthi */,
- { 1, 185, 5736, 2, 13, UNI_QMARK } /* isquotationmark */,
- { 2, 7475, 9850, 3, 4, UNI_SC__CPMN } /* sc=cpmn */,
- { 0, 6159, 10504, 13, 2, UNI_NV__35 } /* numericvalue=35 */,
- { 40, 8449, 2181, 4, 21, UNI_CJKRADICALSSUP } /* blk=cjkradicalssupplement */,
- { 0, 6159, 10291, 13, 3, UNI_NV__2_SLASH_5 } /* numericvalue=2/5 */,
- { 1, 185, 9520, 3, 3, UNI_CWCF } /* iscwcf */,
- { 5, 6995, 6929, 10, 11, UNI_LB__IN } /* linebreak=inseperable */,
- { 1, 9659, 9986, 4, 4, UNI_LATN } /* scx=latn */,
- { 33, 1574, 0, 24, 0, UNI_inpc_values_index } /* indicpositionalcategory= */,
- { 0, 9659, 7593, 4, 10, UNI_PHNX } /* scx=phoenician */,
- { 5, 6159, 9209, 13, 6, UNI_NV__900000 } /* numericvalue=900000 */,
- { 1, 6159, 8067, 13, 9, UNI_NV__4_SLASH_5 } /* numericvalue=8.000e-01 */,
- { 25, 1646, 0, 22, 0, UNI_bpt_values_index } /* bidipairedbrackettype= */,
- { 0, 7259, 2548, 10, 2, UNI_LB__HL } /* wordbreak=hl */,
- { 13, 1067, 3666, 24, 17, UNI_WB__EB } /* canonicalcombiningclass=attachedbelowleft */,
- { 0, 9659, 8433, 4, 8, UNI_BALI } /* scx=balinese */,
- { 0, 8633, 2997, 8, 3, UNI_SUND } /* script=sund */,
- { 4, 218, 1564, 6, 9, UNI__PERL_SURROGATE } /* _perl_surrogate */,
- { 0, 10495, 4958, 3, 2, UNI_WB__DQ } /* wb=dq */,
- { 0, 9659, 1176, 4, 4, UNI_HANG } /* scx=hang */,
- { 0, 8457, 5330, 6, 14, UNI_KANASUP } /* block=kanasupplement */,
- { 1, 4790, 6546, 13, 12, UNI_JG__MALAYALAMNYA } /* joininggroup=malayalamnya */,
- { 1, 9659, 10162, 4, 4, UNI_TFNG } /* scx=tfng */,
- { 1, 9574, 7226, 5, 11, UNI_INPC__TOPANDRIGHT } /* inpc=topandright */,
- { 27, 8457, 7383, 6, 10, UNI_INCHORASMIAN } /* block=chorasmian */,
- { 0, 3136, 0, 9, 0, UNI_HALFMARKS } /* halfmarks */,
- { 32, 9377, 36, 6, 1, UNI__PERL_PATWS } /* patws=t */,
- { 5, 10058, 8058, 3, 9, UNI_NV__3_SLASH_4 } /* nv=7.500e-01 */,
- { 36, 8449, 5162, 4, 5, UNI_ASCII } /* blk=ascii */,
- { 0, 7475, 10082, 3, 4, UNI_SC__OUGR } /* sc=ougr */,
- { 0, 4790, 7149, 13, 11, UNI_JG__ROHINGYAYEH } /* joininggroup=rohingyayeh */,
- { 8, 6246, 1, 12, 1, -UNI_BIDIC } /* bidicontrol=n */,
- { 1, 185, 9147, 2, 6, UNI_XPOSIXSPACE } /* iswspace */,
- { 0, 8457, 2901, 6, 19, UNI_MERO } /* block=meroitichieroglyphs */,
- { 1, 1589, 0, 9, 0, UNI_gc_values_index } /* category= */,
- { 2, 10495, 34, 3, 2, UNI_WB__EX } /* wb=ex */,
- { 5, 4790, 9329, 13, 6, UNI_JG__LAMADH } /* joininggroup=lamadh */,
- { 0, 8633, 8937, 7, 7, UNI_SC__MULT } /* script=multani */,
- { 32, 2280, 8285, 4, 7, UNI_INNABATAEAN } /* innabataean */,
- { 0, 9866, 10186, 4, 4, UNI_CWU } /* cwu=true */,
- { 0, 21, 2434, 3, 19, UNI_INANATOLIANHIEROGLYPHS } /* inanatolianhieroglyphs */,
- { 5, 3523, 9854, 17, 4, UNI_CPRT } /* scriptextensions=cprt */,
- { 0, 185, 1503, 3, 12, UNI_M } /* iscombiningmark */,
- { 3, 9257, 36, 6, 1, UNI_ECOMP } /* ecomp=t */,
- { 52, 8633, 8902, 7, 7, UNI_SC__KALI } /* script=kayahli */,
- { 0, 8839, 0, 7, 0, UNI_grbase_values_index } /* grbase= */,
- { 3, 1620, 501, 5, 11, UNI_SUPPUNCTUATION } /* insuppunctuation */,
- { 5, 6426, 1059, 12, 2, -UNI_JOINC } /* joincontrol=no */,
- { 2, 10058, 10277, 3, 2, UNI_NV__22 } /* nv=22 */,
- { 1, 8748, 8111, 7, 2, UNI_CCC__19 } /* ccc=ccc19 */,
- { 0, 4790, 6091, 13, 3, UNI_JG__TAW } /* joininggroup=taw */,
- { 0, 3523, 10050, 17, 3, UNI_NKO } /* scriptextensions=nko */,
- { 2, 9071, 1059, 5, 2, -UNI_TERM } /* term=no */,
- { 0, 10058, 7931, 3, 2, UNI_NV__24 } /* nv=24 */,
- { 50, 8449, 843, 4, 22, UNI_ENCLOSEDIDEOGRAPHICSUP } /* blk=enclosedideographicsup */,
- { 9, 3523, 8657, 17, 8, UNI_TAGB } /* scriptextensions=tagbanwa */,
- { 0, 10495, 1279, 3, 8, UNI_WB__KA } /* wb=katakana */,
- { 74, 9990, 126, 3, 2, UNI_LB__CR } /* lb=cr */,
- { 46, 185, 4656, 3, 14, UNI_CURRENCYSYMBOLS } /* iscurrencysymbols */,
- { 1, 3469, 10498, 18, 3, UNI_RI } /* regionalindicator=yes */,
- { 0, 6438, 36, 12, 1, UNI_JT__T } /* joiningtype=t */,
- { 0, 2244, 5919, 21, 5, UNI_WB__EB } /* graphemeclusterbreak=ebase */,
- { 1, 10118, 0, 4, 0, UNI_RJNG } /* rjng */,
- { 1, 8748, 3674, 4, 9, UNI_CCC__BL } /* ccc=belowleft */,
- { 0, 1962, 0, 22, 0, UNI_INDICNUMBERFORMS } /* commonindicnumberforms */,
- { 27, 8633, 6450, 7, 5, UNI_KHMR } /* script=khmer */,
- { 0, 2280, 8456, 3, 6, UNI_NB } /* innoblock */,
- { 0, 7481, 5331, 3, 13, UNI_KANASUP } /* iskanasupplement */,
- { 0, 3523, 9323, 17, 6, UNI_KHOJ } /* scriptextensions=khojki */,
- { 2, 2363, 9640, 3, 4, UNI_OSGE } /* isosage */,
- { 0, 5091, 8682, 3, 7, UNI_UCASEXTA } /* isucasexta */,
- { 0, 185, 4231, 2, 16, UNI_LINEARBIDEOGRAMS } /* islinearbideograms */,
- { 1, 9954, 6985, 4, 10, UNI_JT__L } /* jt=leftjoining */,
- { 0, 8457, 8474, 7, 7, UNI_INBUGINESE } /* block=buginese */,
- { 0, 21, 5964, 2, 13, UNI_KANAEXTA } /* inkanaextendeda */,
- { 130, 8881, 1508, 6, 7, UNI_MC } /* isspacingmark */,
- { 0, 7048, 321, 6, 29, UNI_MISCMATHSYMBOLSB } /* inmiscellaneousmathematicalsymbolsb */,
- { 1, 7259, 1279, 10, 8, UNI_WB__KA } /* wordbreak=katakana */,
- { 183, 3523, 2901, 17, 4, UNI_MERO } /* scriptextensions=mero */,
- { 0, 6159, 7797, 13, 9, UNI_NV__3_SLASH_20 } /* numericvalue=1.500e-01 */,
- { 11, 7603, 10330, 10, 3, UNI_IN__3_DOT_2 } /* presentin=3.2 */,
- { 233, 8633, 3253, 7, 8, UNI_ETHI } /* script=ethiopic */,
- { 4, 7481, 9967, 3, 3, UNI_KITS } /* iskits */,
- { 1, 6234, 32, 10, 2, UNI_BC__CS } /* bidiclass=cs */,
- { 147, 1148, 10186, 27, 4, UNI_PCM } /* prependedconcatenationmark=true */,
- { 0, 3523, 8529, 17, 8, UNI_HIRA } /* scriptextensions=hiragana */,
- { 6, 185, 10544, 2, 2, UNI_ZP } /* iszp */,
- { 1, 8457, 8937, 6, 7, UNI_INMULTANI } /* block=multani */,
- { 2, 7105, 0, 11, 0, UNI_NO } /* othernumber */,
- { 3, 9579, 4505, 4, 7, UNI_TANGUTSUP } /* intangutsup */,
- { 0, 8748, 8048, 7, 2, UNI_CCC__17 } /* ccc=ccc17 */,
- { 0, 4985, 0, 15, 0, UNI_SARB } /* oldsoutharabian */,
- { 3, 6995, 529, 10, 7, UNI_LB__NU } /* linebreak=numeric */,
- { 0, 2363, 9635, 3, 4, UNI_ORYA } /* isoriya */,
- { 6, 8457, 10050, 6, 3, UNI_INNKO } /* block=nko */,
- { 1, 9990, 785, 3, 2, UNI_LB__CL } /* lb=cl */,
- { 1, 6159, 8004, 13, 9, UNI_NV__5_SLASH_8 } /* numericvalue=6.250e-01 */,
- { 2, 8633, 3199, 7, 4, UNI_SC__DEVA } /* script=deva */,
- { 136, 2692, 0, 6, 0, UNI_BRAH } /* brahmi */,
- { 89, 1830, 0, 22, 0, UNI_cwcf_values_index } /* changeswhencasefolded= */,
- { 0, 1701, 899, 3, 1, UNI_SHAW } /* shaw */,
- { 6, 8633, 9043, 8, 6, UNI_SC__SHRD } /* script=sharada */,
- { 5, 8449, 3325, 4, 18, UNI_GEORGIANSUP } /* blk=georgiansupplement */,
- { 1, 185, 1245, 2, 3, UNI_DEP } /* isdep */,
- { 0, 8457, 8735, 7, 6, UNI_INBENGALI } /* block=bengali */,
- { 9, 6159, 9766, 13, 4, UNI_NV__3_SLASH_80 } /* numericvalue=3/80 */,
- { 4, 3235, 10498, 18, 3, UNI_EPRES } /* emojipresentation=yes */,
- { 1, 8449, 693, 4, 30, UNI_CJKEXTF } /* blk=cjkunifiedideographsextensionf */,
- { 0, 4940, 9609, 15, 5, UNI_NFCQC__M } /* nfkcquickcheck=maybe */,
- { 0, 43, 0, 36, 0, UNI_CJKCOMPATIDEOGRAPHSSUP } /* cjkcompatibilityideographssupplement */,
- { 2, 8449, 3425, 4, 8, UNI_DINGBATS } /* blk=dingbats */,
- { 68, 2391, 3, 20, 1, -UNI_TERM } /* terminalpunctuation=f */,
- { 52, 10489, 3595, 3, 18, UNI_VO__TR } /* vo=transformedrotated */,
- { 1, 8633, 7083, 7, 4, UNI_SC__NAND } /* script=nand */,
- { 10, 6159, 7878, 13, 9, UNI_NV__1_SLASH_32 } /* numericvalue=3.125e-02 */,
- { 0, 942, 0, 10, 0, UNI_CO } /* privateuse */,
- { 143, 8633, 9287, 7, 6, UNI_HATR } /* script=hatran */,
- { 37, 10058, 10336, 3, 3, UNI_NV__3_SLASH_5 } /* nv=3/5 */,
- { 3, 9946, 2138, 3, 13, UNI_BYZANTINEMUSIC } /* isbyzantinemusic */,
- { 8, 5018, 1908, 3, 8, UNI_TITLE } /* istitlecase */,
- { 0, 21, 3887, 2, 17, UNI_LETTERLIKESYMBOLS } /* inletterlikesymbols */,
- { 32, 3631, 1, 18, 1, -UNI_VS } /* variationselector=n */,
- { 0, 8748, 10269, 4, 2, UNI_CCC__31 } /* ccc=31 */,
- { 8, 9574, 0, 5, 0, UNI_inpc_values_index } /* inpc= */,
- { 0, 8449, 4359, 4, 7, UNI_INMYANMAR } /* blk=myanmar */,
- { 2, 8449, 7127, 4, 11, UNI_INPAHAWHHMONG } /* blk=pahawhhmong */,
- { 3, 8449, 7663, 4, 10, UNI_SUPARROWSA } /* blk=suparrowsa */,
- { 0, 8449, 2573, 4, 20, UNI_INNYIAKENGPUACHUEHMONG } /* blk=nyiakengpuachuehmong */,
- { 9, 3523, 9798, 17, 4, UNI_ARMI } /* scriptextensions=armi */,
- { 1, 7475, 4487, 3, 4, UNI_TANG } /* sc=tang */,
- { 18, 1940, 0, 22, 0, UNI_CJKCOMPATIDEOGRAPHSSUP } /* cjkcompatideographssup */,
- { 1, 10393, 9254, 3, 2, UNI_CF } /* gc=cf */,
- { 130, 9311, 0, 6, 0, UNI_KTHI } /* kaithi */,
- { 0, 6629, 126, 3, 2, UNI_OCR } /* inocr */,
- { 112, 1589, 5886, 9, 13, UNI_XPOSIXDIGIT } /* category=decimalnumber */,
- { 11, 9574, 3583, 5, 12, UNI_INPC__LEFTANDRIGHT } /* inpc=leftandright */,
- { 3, 8449, 1715, 4, 6, UNI_INHANGUL } /* blk=hangul */,
- { 4, 185, 544, 3, 29, UNI_CJKEXTA } /* iscjkunifiedideographsextensiona */,
- { 2, 5807, 60, 3, 3, UNI_IDEO } /* isideo */,
- { 1, 1355, 0, 25, 0, UNI_SUPERANDSUB } /* superscriptsandsubscripts */,
- { 138, 9561, 70, 3, 2, UNI_SB__UP } /* sb=up */,
- { 7, 3325, 0, 18, 0, UNI_GEORGIANSUP } /* georgiansupplement */,
- { 16, 8874, 1690, 3, 3, UNI_PHAG } /* isphag */,
- { 57, 8633, 7713, 7, 10, UNI_WARA } /* script=warangciti */,
- { 0, 7475, 58, 3, 2, UNI_SC__YI } /* sc=yi */,
- { 7, 7603, 10342, 10, 3, UNI_IN__5_DOT_1 } /* presentin=5.1 */,
- { 1, 7481, 893, 3, 3, UNI_KNDA } /* isknda */,
- { 97, 9028, 10498, 7, 3, UNI_PATSYN } /* patsyn=yes */,
- { 69, 8457, 10182, 6, 4, UNI_INTOTO } /* block=toto */,
- { 1, 10058, 10264, 3, 3, UNI_NV__1_SLASH_9 } /* nv=1/9 */,
- { 0, 8748, 7895, 7, 2, UNI_CCC__33 } /* ccc=ccc33 */,
- { 12, 21, 8220, 2, 9, UNI_LATINEXTB } /* inlatinextb */,
- { 51, 2363, 296, 3, 3, UNI_OSMA } /* isosma */,
- { 58, 4423, 2392, 16, 3, UNI_SB__ST } /* sentencebreak=sterm */,
- { 104, 9561, 785, 3, 2, UNI_SB__CL } /* sb=cl */,
- { 0, 9569, 6476, 5, 10, UNI_BLOCKELEMENTS } /* inblockelements */,
- { 0, 7259, 4430, 10, 2, UNI_WB__EB } /* wordbreak=eb */,
- { 0, 4119, 3442, 16, 9, UNI_Z } /* generalcategory=separator */,
- { 1, 8449, 942, 4, 14, UNI_PUA } /* blk=privateusearea */,
- { 0, 3034, 0, 19, 0, UNI_SUPARROWSB } /* supplementalarrowsb */,
- { 0, 1852, 0, 22, 0, UNI_cwcm_values_index } /* changeswhencasemapped= */,
- { 6, 8457, 9639, 6, 5, UNI_INOSAGE } /* block=osage */,
- { 1, 1067, 10279, 27, 3, UNI_CCC__129 } /* canonicalcombiningclass=ccc129 */,
- { 4, 9659, 9057, 5, 3, UNI_SIDD } /* scx=sidd */,
- { 2, 8944, 36, 6, 1, UNI__PERL_NCHAR } /* nchar=t */,
- { 0, 7259, 8494, 10, 3, UNI_WB__EB } /* wordbreak=gaz */,
- { 4, 10046, 0, 4, 0, UNI_NEWA } /* newa */,
- { 0, 185, 724, 3, 29, UNI_CJKEXTG } /* iscjkunifiedideographsextensiong */,
- { 4, 9419, 0, 6, 0, UNI_upper_values_index } /* upper= */,
- { 105, 7475, 9091, 3, 7, UNI_SC__TGLG } /* sc=tagalog */,
- { 0, 9659, 3325, 4, 8, UNI_GEOR } /* scx=georgian */,
- { 144, 8734, 0, 4, 0, UNI_BENG } /* beng */,
- { 2, 8633, 3997, 8, 3, UNI_SGNW } /* script=sgnw */,
- { 10, 284, 0, 33, 0, UNI_MISCMATHSYMBOLSA } /* miscellaneousmathematicalsymbolsa */,
- { 2, 4199, 7503, 15, 10, UNI_IDENTIFIERTYPE__LIMITEDUSE } /* identifiertype=limiteduse */,
- { 128, 1620, 3542, 3, 11, UNI_SMALLKANAEXT } /* insmallkanaext */,
- { 0, 6159, 7851, 13, 9, UNI_NV__5_SLASH_2 } /* numericvalue=2.500e+00 */,
- { 0, 7475, 8930, 3, 4, UNI_MARC } /* sc=marc */,
- { 2, 10426, 1, 3, 1, -UNI_SD } /* sd=n */,
- { 13, 7475, 3199, 3, 4, UNI_SC__DEVA } /* sc=deva */,
- { 0, 21, 8238, 2, 9, UNI_LATINEXTD } /* inlatinextd */,
- { 6, 1620, 2371, 3, 6, UNI_INSINHALA } /* insinhala */,
- { 1, 10058, 9454, 3, 3, UNI_NV__1_SLASH_3 } /* nv=1/3 */,
- { 15, 8457, 813, 6, 30, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* block=symbolsandpictographsextendeda */,
- { 10, 8449, 9000, 4, 7, UNI_OLCK } /* blk=olchiki */,
- { 8, 185, 10026, 2, 4, UNI_MRO } /* ismroo */,
- { 3, 4790, 9443, 13, 4, UNI_JG__YUDH } /* joininggroup=yudh */,
- { 0, 8748, 10504, 7, 2, UNI_CCC__35 } /* ccc=ccc35 */,
- { 0, 7475, 8818, 3, 4, UNI_ELBA } /* sc=elba */,
- { 0, 7475, 9597, 3, 4, UNI_PHLI } /* sc=phli */,
- { 0, 3523, 10162, 17, 4, UNI_TFNG } /* scriptextensions=tfng */,
- { 1, 8457, 8641, 6, 8, UNI_SPECIALS } /* block=specials */,
- { 2, 1589, 48, 9, 1, UNI_M } /* category=m */,
- { 11, 9874, 10498, 4, 3, UNI_DEP } /* dep=yes */,
- { 0, 8457, 5750, 7, 6, UNI_BRAI } /* block=braille */,
- { 0, 8881, 3016, 3, 18, UNI_SUPARROWSA } /* issupplementalarrowsa */,
- { 0, 9890, 0, 3, 0, UNI_dt_values_index } /* dt= */,
- { 0, 9554, 5919, 4, 5, UNI_WB__EB } /* gcb=ebase */,
- { 1, 6995, 4055, 10, 16, UNI_LB__CP } /* linebreak=closeparenthesis */,
- { 0, 1574, 3577, 24, 10, UNI_INPC__TOPANDLEFT } /* indicpositionalcategory=topandleft */,
- { 202, 3523, 10214, 17, 4, UNI_VAI } /* scriptextensions=vaii */,
- { 2, 9574, 3577, 5, 18, UNI_INPC__TOPANDLEFTANDRIGHT } /* inpc=topandleftandright */,
- { 32, 7475, 8175, 3, 9, UNI_BHKS } /* sc=bhaiksuki */,
- { 2, 7259, 34, 10, 2, UNI_WB__EX } /* wordbreak=ex */,
- { 5, 9579, 3561, 4, 16, UNI_TAIXUANJING } /* intaixuanjingsymbols */,
- { 0, 4790, 66, 15, 2, UNI_JG__KAPH } /* joininggroup=kaph */,
- { 0, 9239, 0, 6, 0, UNI_CAKM } /* chakma */,
- { 98, 9659, 8811, 4, 7, UNI_DSRT } /* scx=deseret */,
- { 0, 9950, 10138, 3, 4, UNI_JG__SHIN } /* jg=shin */,
- { 0, 5018, 5031, 3, 4, UNI_TAML } /* istamil */,
- { 0, 9070, 0, 6, 0, UNI_sterm_values_index } /* sterm= */,
- { 0, 9561, 126, 3, 2, UNI_LB__CR } /* sb=cr */,
- { 2, 3458, 3, 11, 1, -UNI_XPOSIXSPACE } /* whitespace=f */,
- { 0, 4790, 6582, 13, 12, UNI_JG__MANICHAEANPE } /* joininggroup=manichaeanpe */,
- { 0, 4119, 25, 16, 1, UNI_S } /* generalcategory=s */,
- { 3, 7610, 7751, 3, 2, UNI_IN__11 } /* in=11 */,
- { 17, 8547, 501, 6, 5, UNI_XPOSIXPUNCT } /* xposixpunct */,
- { 0, 185, 2006, 2, 22, UNI_EARLYDYNASTICCUNEIFORM } /* isearlydynasticcuneiform */,
- { 0, 5912, 10186, 13, 4, UNI_GRBASE } /* graphemebase=true */,
- { 1, 8457, 4375, 6, 16, UNI_MYANMAREXTB } /* block=myanmarextendedb */,
- { 8, 8881, 7674, 3, 9, UNI_SUPARROWSB } /* issuparrowsb */,
- { 0, 185, 6606, 2, 12, UNI_MATHALPHANUM } /* ismathalphanum */,
- { 2, 10110, 0, 4, 0, UNI_QAAI } /* qaai */,
- { 1, 8449, 6852, 4, 11, UNI_DOMINO } /* blk=dominotiles */,
- { 0, 10058, 9754, 3, 4, UNI_NV__3_SLASH_16 } /* nv=3/16 */,
- { 6, 1598, 2692, 22, 19, UNI_INSC__BRAHMIJOININGNUMBER } /* indicsyllabiccategory=brahmijoiningnumber */,
- { 1, 1620, 2998, 4, 10, UNI_SUNDANESESUP } /* insundanesesup */,
- { 6, 10086, 0, 3, 0, UNI_PCM } /* pcm */,
- { 3, 185, 6295, 3, 11, UNI_CYRILLICEXTB } /* iscyrillicextb */,
- { 1, 185, 4088, 3, 15, UNI_CYPRIOTSYLLABARY } /* iscypriotsyllabary */,
- { 147, 21, 9649, 2, 5, UNI_INRUNIC } /* inrunic */,
- { 12, 9890, 6630, 3, 12, UNI_DT__NONCANON } /* dt=noncanonical */,
- { 0, 8748, 10538, 4, 2, UNI_CCC__9 } /* ccc=vr */,
- { 0, 5736, 1059, 14, 2, -UNI_QMARK } /* quotationmark=no */,
- { 10, 10058, 10325, 3, 2, UNI_NV__34 } /* nv=34 */,
- { 0, 9275, 0, 6, 0, UNI_GOTH } /* gothic */,
- { 1, 2844, 36, 19, 1, UNI_GCB__T } /* hangulsyllabletype=t */,
- { 0, 9782, 10465, 4, 3, UNI_AGE__5_DOT_2 } /* age=v52 */,
- { 7, 185, 3735, 3, 16, UNI_CYRILLICEXTA } /* iscyrillicextendeda */,
- { 4, 7373, 6820, 10, 10, UNI_CASEDLETTER } /* category=casedletter */,
- { 2, 9604, 1, 5, 1, -UNI_MATH } /* math=n */,
- { 0, 3523, 7644, 18, 9, UNI_SAUR } /* scriptextensions=saurashtra */,
- { 1, 4343, 0, 16, 0, UNI_MISCMATHSYMBOLSB } /* miscmathsymbolsb */,
- { 0, 10393, 1, 3, 1, UNI_N } /* gc=n */,
- { 16, 1067, 5834, 24, 2, UNI_CCC__10 } /* canonicalcombiningclass=10 */,
- { 0, 8449, 6962, 4, 11, UNI_KATAKANAEXT } /* blk=katakanaext */,
- { 13, 6234, 37, 10, 2, UNI_BC__EN } /* bidiclass=en */,
- { 128, 8881, 2997, 3, 8, UNI_SUND } /* issundanese */,
- { 444, 9215, 10186, 6, 4, UNI_XPOSIXALPHA } /* alpha=true */,
- { 0, 8449, 9014, 4, 7, UNI_INOSMANYA } /* blk=osmanya */,
- { 0, 9414, 9549, 5, 5, -UNI_IDEO } /* ideo=false */,
- { 249, 9782, 10198, 4, 4, UNI_AGE__12 } /* age=v120 */,
- { 25, 7083, 0, 4, 0, UNI_NAND } /* nand */,
- { 0, 3523, 2692, 17, 6, UNI_BRAH } /* scriptextensions=brahmi */,
- { 0, 5807, 5952, 3, 5, UNI_IPAEXT } /* isipaext */,
- { 0, 6995, 185, 10, 2, UNI_LB__IS } /* linebreak=is */,
- { 5, 1542, 5928, 5, 10, UNI_GREEKEXT } /* ingreekextended */,
- { 65, 9990, 10522, 3, 2, UNI_LB__B2 } /* lb=b2 */,
- { 1, 8633, 10174, 7, 4, UNI_TIBT } /* script=tibt */,
- { 20, 6618, 0, 12, 0, UNI_MEND } /* mendekikakui */,
- { 3, 4790, 10010, 13, 4, UNI_JG__MEEM } /* joininggroup=meem */,
- { 4, 4730, 10186, 15, 4, UNI_ECOMP } /* emojicomponent=true */,
- { 0, 1574, 4687, 4, 13, UNI_DIACRITICALSEXT } /* indiacriticalsext */,
- { 0, 6428, 754, 3, 29, UNI_CUNEIFORMNUMBERS } /* incuneiformnumbersandpunctuation */,
- { 8, 6159, 10264, 13, 3, UNI_NV__1_SLASH_9 } /* numericvalue=1/9 */,
- { 4, 8449, 3972, 4, 17, UNI_SMALLFORMS } /* blk=smallformvariants */,
- { 14, 9554, 945, 4, 1, UNI_GCB__V } /* gcb=v */,
- { 2, 8748, 2553, 4, 4, UNI_CCC__L } /* ccc=left */,
- { 0, 10058, 9180, 3, 2, UNI_NV__32 } /* nv=32 */,
- { 5, 8748, 10306, 4, 3, UNI_CCC__L } /* ccc=224 */,
- { 0, 2363, 7117, 3, 10, UNI_SO } /* isothersymbol */,
- { 76, 9574, 943, 3, 9, UNI_PUA } /* inprivateuse */,
- { 0, 10086, 26, 4, 1, UNI_PCM } /* pcm=y */,
- { 0, 9383, 0, 6, 0, UNI_qmark_values_index } /* qmark= */,
- { 386, 10058, 10351, 3, 3, UNI_NV__5_SLASH_8 } /* nv=5/8 */,
- { 76, 7610, 10198, 3, 4, UNI_IN__12 } /* in=v120 */,
- { 1, 4119, 2453, 16, 20, UNI_PC } /* generalcategory=connectorpunctuation */,
- { 52, 9659, 8441, 4, 8, UNI_BASS } /* scx=bassavah */,
- { 0, 7473, 4519, 5, 16, UNI_INSC__VOWELINDEPENDENT } /* insc=vowelindependent */,
- { 4, 7673, 0, 10, 0, UNI_SUPARROWSB } /* suparrowsb */,
- { 82, 8457, 8697, 6, 8, UNI_INVITHKUQI } /* block=vithkuqi */,
- { 5, 5190, 36, 14, 1, UNI_CI } /* caseignorable=t */,
- { 0, 9950, 4860, 3, 5, UNI_JG__SADHE } /* jg=sadhe */,
- { 65, 4790, 6042, 13, 13, UNI_JG__MANICHAEANMEM } /* joininggroup=manichaeanmem */,
- { 20, 8633, 3325, 7, 8, UNI_SC__GEOR } /* script=georgian */,
- { 4, 8633, 9922, 7, 4, UNI_HLUW } /* script=hluw */,
- { 8, 4629, 4137, 4, 14, UNI_GEORGIANEXT } /* ingeorgianextended */,
- { 209, 10058, 9459, 3, 5, UNI_NV__11_SLASH_12 } /* nv=11/12 */,
- { 6, 9990, 374, 3, 2, UNI_LB__OP } /* lb=op */,
- { 182, 1598, 8425, 22, 8, UNI_INSC__AVAGRAHA } /* indicsyllabiccategory=avagraha */,
- { 12, 1589, 25, 9, 1, UNI_S } /* category=s */,
- { 0, 8633, 8513, 7, 8, UNI_SC__GUJR } /* script=gujarati */,
- { 1, 8881, 9064, 3, 6, UNI_SOYO } /* issoyombo */,
- { 3, 6159, 9454, 13, 3, UNI_NV__1_SLASH_3 } /* numericvalue=1/3 */,
- { 7, 8449, 3541, 4, 18, UNI_SMALLKANAEXT } /* blk=smallkanaextension */,
- { 80, 9950, 5568, 3, 14, UNI_JG__MANICHAEANTETH } /* jg=manichaeanteth */,
- { 0, 10393, 4391, 3, 5, UNI_C } /* gc=other */,
- { 0, 10058, 10506, 3, 2, UNI_NV__38 } /* nv=38 */,
- { 0, 8881, 7216, 3, 10, UNI_SYLO } /* issylotinagri */,
- { 14, 4231, 0, 16, 0, UNI_LINEARBIDEOGRAMS } /* linearbideograms */,
- { 64, 2391, 0, 20, 0, UNI_term_values_index } /* terminalpunctuation= */,
- { 6, 10146, 0, 4, 0, UNI_TALE } /* tale */,
- { 1, 6234, 3458, 10, 10, UNI_BC__WS } /* bidiclass=whitespace */,
- { 0, 8790, 0, 7, 0, UNI_CJKEXTF } /* cjkextf */,
- { 0, 2244, 34, 21, 2, UNI_GCB__EX } /* graphemeclusterbreak=ex */,
- { 11, 9383, 9549, 6, 5, -UNI_QMARK } /* qmark=false */,
- { 85, 9954, 0, 3, 1, UNI_JT__U } /* jt=u */,
- { 81, 9659, 9597, 4, 4, UNI_PHLI } /* scx=phli */,
- { 37, 10393, 10546, 3, 2, UNI_ZS } /* gc=zs */,
- { 14, 6995, 785, 10, 2, UNI_LB__CL } /* linebreak=cl */,
- { 13, 9782, 7841, 4, 2, UNI_AGE__12 } /* age=12 */,
- { 0, 8633, 10066, 7, 4, UNI_OLCK } /* script=olck */,
- { 204, 8457, 5030, 6, 5, UNI_INTAMIL } /* block=tamil */,
- { 0, 8449, 2901, 4, 19, UNI_MERO } /* blk=meroitichieroglyphs */,
- { 0, 9347, 0, 4, 0, UNI_LYCI } /* lyci */,
- { 270, 9028, 36, 7, 1, UNI_PATSYN } /* patsyn=t */,
- { 0, 8449, 8474, 5, 7, UNI_INBUGINESE } /* blk=buginese */,
- { 1, 3523, 9133, 17, 7, UNI_ZZZZ } /* scriptextensions=unknown */,
- { 26, 10393, 632, 3, 2, UNI_XPOSIXCNTRL } /* gc=cc */,
- { 11, 4119, 762, 16, 6, UNI_N } /* generalcategory=number */,
- { 2, 8748, 7809, 4, 1, UNI_CCC__6 } /* ccc=6 */,
- { 32, 7475, 8657, 3, 8, UNI_SC__TAGB } /* sc=tagbanwa */,
- { 1, 7475, 8825, 3, 7, UNI_ELYM } /* sc=elymaic */,
- { 20, 8457, 9287, 6, 6, UNI_INHATRAN } /* block=hatran */,
- { 2, 9554, 3469, 4, 17, UNI_RI } /* gcb=regionalindicator */,
- { 0, 5807, 2864, 3, 3, UNI_IDST } /* isidst */,
- { 0, 185, 44, 3, 25, UNI_CJKCOMPATIDEOGRAPHS } /* iscjkcompatibilityideographs */,
- { 1, 6159, 10258, 13, 3, UNI_NV__1_SLASH_5 } /* numericvalue=1/5 */,
- { 0, 10082, 0, 4, 0, UNI_OUGR } /* ougr */,
- { 2, 4629, 4137, 4, 9, UNI_GEORGIANEXT } /* ingeorgianext */,
- { 1, 9221, 10498, 6, 3, UNI_BIDIC } /* bidic=yes */,
- { 0, 2395, 1016, 5, 24, UNI_ALPHABETICPF } /* inalphabeticpresentationforms */,
- { 5, 8457, 3702, 6, 4, UNI_UCAS } /* block=ucas */,
- { 4, 4790, 4860, 13, 5, UNI_JG__SADHE } /* joininggroup=sadhe */,
- { 3, 120, 9276, 3, 5, UNI_INGOTHIC } /* ingothic */,
- { 157, 1620, 9050, 3, 6, UNI_SHAW } /* inshavian */,
- { 3, 8457, 8657, 6, 8, UNI_INTAGBANWA } /* block=tagbanwa */,
- { 0, 8633, 9489, 7, 5, UNI_BATK } /* script=batak */,
- { 5, 8633, 9958, 7, 4, UNI_SC__KALI } /* script=kali */,
- { 41, 3523, 3253, 17, 8, UNI_ETHI } /* scriptextensions=ethiopic */,
- { 135, 8748, 227, 4, 2, UNI_CCC__BL } /* ccc=bl */,
- { 144, 9574, 9036, 3, 6, UNI_INPHAGSPA } /* inphagspa */,
- { 62, 3523, 1689, 17, 4, UNI_PHAG } /* scriptextensions=phag */,
- { 9, 6995, 43, 10, 2, UNI_LB__CJ } /* linebreak=cj */,
- { 4, 10058, 8040, 3, 9, UNI_NV__2_SLASH_3 } /* nv=6.667e-01 */,
- { 2, 9684, 0, 5, 0, UNI_xids_values_index } /* xids= */,
- { 0, 6629, 4971, 3, 14, UNI_NARB } /* inoldnortharabian */,
- { 4, 8748, 5835, 4, 1, UNI_CCC__0 } /* ccc=0 */,
- { 5, 4087, 0, 7, 0, UNI_CPRT } /* cypriot */,
- { 1, 1620, 7183, 3, 10, UNI_INSORASOMPENG } /* insorasompeng */,
- { 144, 4423, 139, 14, 2, UNI_SB__FO } /* sentencebreak=fo */,
- { 1, 8545, 10231, 3, 3, UNI_XSUX } /* isxsux */,
- { 8, 3523, 9818, 17, 4, UNI_BATK } /* scriptextensions=batk */,
- { 19, 10130, 9064, 4, 6, UNI_SOYO } /* sc=soyombo */,
- { 0, 1830, 1, 22, 1, -UNI_CWCF } /* changeswhencasefolded=n */,
- { 1, 3523, 8818, 17, 7, UNI_ELBA } /* scriptextensions=elbasan */,
- { 76, 2863, 3, 19, 1, -UNI_IDST } /* idstrinaryoperator=f */,
- { 3, 6438, 6896, 12, 11, UNI_JT__D } /* joiningtype=dualjoining */,
- { 0, 7259, 8265, 10, 9, UNI_WB__ML } /* wordbreak=midletter */,
- { 0, 6159, 9173, 13, 3, UNI_NV__400 } /* numericvalue=400 */,
- { 1, 3870, 0, 17, 0, UNI_KITS } /* khitansmallscript */,
- { 22, 10058, 8111, 3, 2, UNI_NV__19 } /* nv=19 */,
- { 1, 3523, 8355, 17, 9, UNI_PAUC } /* scriptextensions=paucinhau */,
- { 39, 185, 317, 2, 33, UNI_MISCMATHSYMBOLSB } /* ismiscellaneousmathematicalsymbolsb */,
- { 2, 9866, 0, 3, 0, UNI_CWU } /* cwu */,
- { 0, 1067, 10269, 24, 2, UNI_CCC__31 } /* canonicalcombiningclass=31 */,
- { 20, 118, 481, 3, 31, UNI_IDEOGRAPHICSYMBOLS } /* inideographicsymbolsandpunctuation */,
- { 1, 10489, 505, 3, 2, UNI_VO__TU } /* vo=tu */,
- { 6, 8633, 8741, 7, 7, UNI_BRAI } /* script=braille */,
- { 80, 9659, 4487, 4, 4, UNI_TANG } /* scx=tang */,
- { 2, 8449, 1984, 4, 12, UNI_DIACRITICALS } /* blk=diacriticals */,
- { 3, 9257, 10186, 6, 4, UNI_ECOMP } /* ecomp=true */,
- { 23, 7473, 5820, 5, 14, UNI_INSC__VOWELDEPENDENT } /* insc=voweldependent */,
- { 21, 8457, 2513, 6, 10, UNI_INGLAGOLITIC } /* block=glagolitic */,
- { 1, 3523, 9484, 17, 4, UNI_BAMU } /* scriptextensions=bamu */,
- { 0, 2280, 5651, 3, 2, UNI_INNKO } /* innko */,
- { 7, 9114, 2413, 3, 5, UNI_YIJING } /* inyijing */,
- { 1, 8449, 6775, 4, 3, UNI_INIDC } /* blk=idc */,
- { 2, 9950, 7281, 3, 11, UNI_JG__YEHWITHTAIL } /* jg=yehwithtail */,
- { 0, 6995, 1022, 10, 2, UNI_LB__CP } /* linebreak=cp */,
- { 4, 3955, 0, 16, 0, UNI_STERM } /* sentenceterminal */,
- { 0, 9659, 7, 4, 18, UNI_CANS } /* scx=canadianaboriginal */,
- { 0, 5018, 3560, 3, 17, UNI_TAIXUANJING } /* istaixuanjingsymbols */,
- { 1, 6775, 3, 11, 1, -UNI_IDC } /* idcontinue=f */,
- { 200, 5018, 5031, 3, 14, UNI_TAMILSUP } /* istamilsupplement */,
- { 43, 10130, 4235, 4, 3, UNI_SARB } /* sc=sarb */,
- { 1, 4878, 1053, 3, 4, UNI_MUSIC } /* inmusic */,
- { 9, 7039, 0, 11, 0, UNI_MEDF } /* medefaidrin */,
- { 2, 9659, 6486, 4, 4, UNI_MAHJ } /* scx=mahj */,
- { 10, 9950, 6762, 3, 12, UNI_JG__VERTICALTAIL } /* jg=verticaltail */,
- { 6, 8633, 10230, 7, 4, UNI_XSUX } /* script=xsux */,
- { 163, 21, 9389, 2, 6, UNI_INREJANG } /* inrejang */,
- { 0, 7475, 10242, 3, 4, UNI_ZANB } /* sc=zanb */,
- { 0, 9305, 26, 6, 1, UNI_JOINC } /* joinc=y */,
- { 25, 9685, 36, 4, 1, UNI_IDS } /* ids=t */,
- { 1, 8457, 3109, 6, 8, UNI_INCHEROKEE } /* block=cherokee */,
- { 1, 6995, 6907, 10, 11, UNI_LB__EX } /* linebreak=exclamation */,
- { 273, 1874, 1059, 22, 2, -UNI_CWL } /* changeswhenlowercased=no */,
- { 1, 10058, 7904, 3, 2, UNI_NV__13 } /* nv=13 */,
- { 0, 8457, 2939, 6, 12, UNI_MONGOLIANSUP } /* block=mongoliansup */,
- { 0, 8874, 8356, 3, 8, UNI_PAUC } /* ispaucinhau */,
- { 0, 8874, 5891, 7, 5, UNI_POSIXALNUM } /* isposixalnum */,
- { 3, 9970, 0, 4, 0, UNI_KNDA } /* knda */,
- { 33, 1067, 10277, 27, 2, UNI_CCC__22 } /* canonicalcombiningclass=ccc22 */,
- { 1, 2371, 1717, 4, 21, UNI_COMPATJAMO } /* inhangulcompatibilityjamo */,
- { 40, 1885, 0, 9, 0, UNI_XPOSIXLOWER } /* lowercase */,
- { 6, 9257, 1059, 6, 2, -UNI_ECOMP } /* ecomp=no */,
- { 0, 1598, 8673, 22, 8, UNI_INSC__TONEMARK } /* indicsyllabiccategory=tonemark */,
- { 0, 9659, 8734, 4, 7, UNI_BENG } /* scx=bengali */,
- { 1, 543, 0, 30, 0, UNI_CJKEXTA } /* cjkunifiedideographsextensiona */,
- { 0, 6159, 9161, 13, 6, UNI_NV__216000 } /* numericvalue=216000 */,
- { 5, 6841, 1, 11, 1, -UNI_DEP } /* deprecated=n */,
- { 4, 6995, 7553, 10, 10, UNI_LB__NS } /* linebreak=nonstarter */,
- { 0, 7475, 10122, 3, 4, UNI_SC__ROHG } /* sc=rohg */,
- { 0, 10058, 9751, 3, 3, UNI_NV__7_SLASH_2 } /* nv=7/2 */,
- { 33, 2244, 18, 21, 2, UNI_RI } /* graphemeclusterbreak=ri */,
- { 5, 6428, 3769, 3, 16, UNI_CYRILLICEXTC } /* incyrillicextendedc */,
- { 1, 6594, 0, 12, 0, UNI_GONM } /* masaramgondi */,
- { 90, 9822, 4407, 3, 16, UNI_BC__S } /* bc=segmentseparator */,
- { 3, 4715, 9, 15, 2, UNI_EA__NA } /* eastasianwidth=na */,
- { 0, 8449, 3253, 4, 8, UNI_INETHIOPIC } /* blk=ethiopic */,
- { 47, 10393, 1807, 3, 1, UNI_Z } /* gc=z */,
- { 5, 8457, 4487, 6, 16, UNI_TANGUTCOMPONENTS } /* block=tangutcomponents */,
- { 170, 7475, 9275, 3, 4, UNI_GOTH } /* sc=goth */,
- { 291, 5018, 4488, 3, 5, UNI_TANG } /* istangut */,
- { 1, 185, 2644, 2, 4, UNI_MAND } /* ismand */,
- { 6, 219, 7259, 4, 4, UNI_POSIXWORD } /* perlword */,
- { 2, 3523, 7127, 17, 11, UNI_HMNG } /* scriptextensions=pahawhhmong */,
- { 0, 21, 3651, 4, 15, UNI_ALCHEMICAL } /* inalchemicalsymbols */,
- { 0, 9990, 6172, 3, 13, UNI_LB__PR } /* lb=prefixnumeric */,
- { 4, 1067, 10273, 24, 3, UNI_CCC__118 } /* canonicalcombiningclass=118 */,
- { 71, 8881, 10501, 3, 3, UNI_SYRC } /* issyrc */,
- { 29, 8748, 10303, 4, 3, UNI_CCC__BR } /* ccc=222 */,
- { 14, 10058, 9746, 3, 2, UNI_NV__15 } /* nv=15 */,
- { 25, 3523, 8923, 17, 7, UNI_MAND } /* scriptextensions=mandaic */,
- { 124, 4119, 6462, 16, 12, UNI_NL } /* generalcategory=letternumber */,
- { 8, 9561, 9479, 3, 5, UNI_SB__AT } /* sb=aterm */,
- { 2, 9141, 98, 3, 4, UNI_XPOSIXALPHA } /* isalpha */,
- { 33, 7603, 10450, 10, 3, UNI_IN__3_DOT_2 } /* presentin=v32 */,
- { 2, 3523, 9930, 17, 4, UNI_HMNP } /* scriptextensions=hmnp */,
- { 2, 8457, 7072, 6, 11, UNI_MYANMAREXTB } /* block=myanmarextb */,
- { 2, 6428, 664, 3, 29, UNI_CJKEXTE } /* incjkunifiedideographsextensione */,
- { 4, 9659, 7713, 4, 10, UNI_WARA } /* scx=warangciti */,
- { 40, 7475, 2101, 3, 4, UNI_SC__MODI } /* sc=modi */,
- { 26, 7259, 8489, 10, 8, UNI_WB__EB } /* wordbreak=ebasegaz */,
- { 7, 8881, 9043, 3, 6, UNI_SHRD } /* issharada */,
- { 0, 9659, 10250, 4, 4, UNI_ZYYY } /* scx=zyyy */,
- { 12, 21, 9347, 2, 6, UNI_INLYCIAN } /* inlycian */,
- { 169, 9659, 10166, 4, 4, UNI_TGLG } /* scx=tglg */,
- { 0, 6159, 7896, 13, 9, UNI_NV__1_SLASH_3 } /* numericvalue=3.333e-01 */,
- { 5, 3523, 6486, 17, 4, UNI_MAHJ } /* scriptextensions=mahj */,
- { 129, 1067, 5535, 24, 2, UNI_CCC__7 } /* canonicalcombiningclass=nk */,
- { 66, 10495, 74, 3, 2, UNI_WB__EB } /* wb=em */,
- { 0, 6159, 7781, 13, 1, UNI_NV__4 } /* numericvalue=4 */,
- { 17, 9679, 9549, 5, 5, -UNI_XIDC } /* xidc=false */,
- { 8, 9890, 6077, 3, 4, UNI_DT__NONE } /* dt=none */,
- { 33, 2363, 4972, 4, 13, UNI_NARB } /* isoldnortharabian */,
- { 0, 218, 469, 6, 5, UNI__PERL_NCHAR } /* _perl_nchar */,
- { 1, 185, 7394, 3, 9, UNI_CJKSTROKES } /* iscjkstrokes */,
- { 35, 9680, 10498, 4, 3, UNI_IDC } /* idc=yes */,
- { 32, 9519, 0, 4, 0, UNI_CWCF } /* cwcf */,
- { 5, 3523, 10126, 17, 4, UNI_RUNR } /* scriptextensions=runr */,
- { 0, 3458, 10498, 11, 3, UNI_XPOSIXSPACE } /* whitespace=yes */,
- { 34, 8633, 10014, 7, 4, UNI_MERC } /* script=merc */,
- { 1, 9950, 10408, 3, 3, UNI_JG__MIM } /* jg=mim */,
- { 0, 8449, 3505, 4, 4, UNI_RUMI } /* blk=rumi */,
- { 18, 1542, 1050, 5, 2, UNI_INGREEK } /* ingreek */,
- { 12, 4925, 0, 14, 0, UNI_nfcqc_values_index } /* nfcquickcheck= */,
- { 1, 6428, 604, 3, 29, UNI_CJKEXTC } /* incjkunifiedideographsextensionc */,
- { 0, 5018, 48, 5, 1, UNI_TERM } /* isterm */,
- { 73, 7475, 9994, 3, 4, UNI_SC__LINA } /* sc=lina */,
- { 13, 9659, 10214, 4, 4, UNI_VAI } /* scx=vaii */,
- { 2, 8633, 3163, 7, 4, UNI_SC__COPT } /* script=copt */,
- { 66, 9659, 4235, 5, 3, UNI_SARB } /* scx=sarb */,
- { 3, 1067, 10266, 24, 2, UNI_CCC__91 } /* canonicalcombiningclass=91 */,
- { 1, 9990, 6390, 3, 12, UNI_LB__HL } /* lb=hebrewletter */,
- { 1, 7473, 4391, 5, 5, UNI_INSC__OTHER } /* insc=other */,
- { 3, 185, 6486, 2, 12, UNI_MAHJONG } /* ismahjongtiles */,
- { 4, 21, 8553, 2, 8, UNI_JAMOEXTA } /* injamoexta */,
- { 148, 185, 1807, 2, 1, UNI_Z } /* isz */,
- { 0, 9938, 5694, 4, 14, UNI_BOPOMOFOEXT } /* inbopomofoextended */,
- { 0, 3451, 10186, 18, 4, UNI__PERL_PATWS } /* patternwhitespace=true */,
- { 0, 1148, 26, 27, 1, UNI_PCM } /* prependedconcatenationmark=y */,
- { 22, 9950, 3904, 3, 17, UNI_JG__MANICHAEANDHAMEDH } /* jg=manichaeandhamedh */,
- { 0, 9946, 8434, 3, 7, UNI_BALI } /* isbalinese */,
- { 4, 9649, 0, 5, 0, UNI_RUNR } /* runic */,
- { 0, 6775, 36, 11, 1, UNI_IDC } /* idcontinue=t */,
- { 0, 8881, 9078, 3, 6, UNI_SUPPUAA } /* issuppuaa */,
- { 2, 9574, 3078, 5, 13, UNI_INPC__BOTTOMANDLEFT } /* inpc=bottomandleft */,
- { 0, 8633, 5442, 7, 4, UNI_LISU } /* script=lisu */,
- { 29, 8633, 8916, 7, 4, UNI_MAKA } /* script=maka */,
- { 15, 3523, 4087, 17, 7, UNI_CPRT } /* scriptextensions=cypriot */,
- { 0, 1890, 26, 6, 1, UNI_CASED } /* cased=y */,
- { 134, 8853, 9549, 7, 5, -UNI_HYPHEN } /* hyphen=false */,
- { 0, 4629, 1694, 4, 13, UNI_GEOMETRICSHAPES } /* ingeometricshapes */,
- { 12, 1067, 3666, 24, 13, UNI_CCC__202 } /* canonicalcombiningclass=attachedbelow */,
- { 139, 8457, 8818, 6, 7, UNI_INELBASAN } /* block=elbasan */,
- { 0, 1067, 8093, 27, 2, UNI_CCC__28 } /* canonicalcombiningclass=ccc28 */,
- { 2, 9950, 6786, 3, 11, UNI_JG__AFRICANNOON } /* jg=africannoon */,
- { 0, 10546, 0, 2, 0, UNI_ZS } /* zs */,
- { 2, 3181, 1370, 18, 3, UNI_DT__SUB } /* decompositiontype=sub */,
- { 0, 9685, 3, 4, 1, -UNI_IDS } /* ids=f */,
- { 0, 3523, 10030, 17, 4, UNI_MTEI } /* scriptextensions=mtei */,
- { 3, 4462, 0, 4, 0, UNI_EMOD } /* emod */,
- { 0, 8449, 1962, 4, 22, UNI_INDICNUMBERFORMS } /* blk=commonindicnumberforms */,
- { 1, 8449, 3199, 4, 10, UNI_INDEVANAGARI } /* blk=devanagari */,
- { 1, 4790, 88, 13, 2, UNI_JG__HE } /* joininggroup=he */,
- { 128, 6159, 9197, 13, 3, UNI_NV__700 } /* numericvalue=700 */,
- { 1, 8633, 10094, 7, 4, UNI_PHNX } /* script=phnx */,
- { 0, 185, 4135, 2, 16, UNI_GEORGIANEXT } /* isgeorgianextended */,
- { 1, 9950, 6055, 3, 13, UNI_JG__MANICHAEANNUN } /* jg=manichaeannun */,
- { 3, 8449, 5148, 4, 14, UNI_ANCIENTSYMBOLS } /* blk=ancientsymbols */,
- { 138, 4391, 0, 16, 0, UNI_PO } /* otherpunctuation */,
- { 0, 8874, 0, 3, 0, UNI_P } /* isp */,
- { 67, 3523, 9786, 17, 4, UNI_AGHB } /* scriptextensions=aghb */,
- { 2, 5018, 9106, 3, 6, UNI_TAVT } /* istaiviet */,
- { 263, 9946, 2361, 3, 3, UNI_BALI } /* isbali */,
- { 131, 8457, 6185, 6, 13, UNI_VERTICALFORMS } /* block=verticalforms */,
- { 0, 9147, 1, 7, 1, -UNI_XPOSIXSPACE } /* wspace=n */,
- { 2, 3469, 0, 17, 0, UNI_RI } /* regionalindicator */,
- { 2, 8449, 9674, 4, 5, UNI_VSSUP } /* blk=vssup */,
- { 2, 9233, 0, 4, 0, UNI_CARI } /* cari */,
- { 1, 8545, 7259, 8, 4, UNI_XPOSIXWORD } /* isxposixword */,
- { 1, 6159, 8094, 13, 9, UNI_NV__17_SLASH_2 } /* numericvalue=8.500e+00 */,
- { 1, 8633, 7483, 7, 4, UNI_KHAR } /* script=khar */,
- { 2, 8449, 2996, 4, 12, UNI_SUNDANESESUP } /* blk=sundanesesup */,
- { 1, 10058, 9460, 3, 4, UNI_NV__1_SLASH_12 } /* nv=1/12 */,
- { 36, 4119, 6208, 16, 2, UNI_PF } /* generalcategory=pf */,
- { 8, 4790, 7323, 13, 10, UNI_JG__AFRICANQAF } /* joininggroup=africanqaf */,
- { 5, 9659, 10098, 4, 4, UNI_MIAO } /* scx=plrd */,
- { 8, 1589, 4805, 9, 15, UNI_LOWERCASELETTER } /* category=lowercaseletter */,
- { 0, 2863, 10498, 19, 3, UNI_IDST } /* idstrinaryoperator=yes */,
- { 89, 6995, 5708, 10, 14, UNI_LB__PO } /* linebreak=postfixnumeric */,
- { 207, 4423, 0, 16, 0, UNI_SB__ST } /* sentencebreak=st */,
- { 0, 4119, 5990, 16, 13, UNI_ZL } /* generalcategory=lineseparator */,
- { 2, 7576, 0, 7, 0, UNI_SOGD } /* sogdian */,
- { 222, 7475, 10066, 3, 4, UNI_OLCK } /* sc=olck */,
- { 0, 3631, 10498, 18, 3, UNI_VS } /* variationselector=yes */,
- { 29, 118, 4776, 3, 14, UNI_INIMPERIALARAMAIC } /* inimperialaramaic */,
- { 259, 9950, 4835, 3, 15, UNI_JG__MANICHAEANGIMEL } /* jg=manichaeangimel */,
- { 0, 10102, 0, 4, 0, UNI_PRTI } /* prti */,
- { 158, 185, 2328, 2, 11, UNI_MTEI } /* ismeeteimayek */,
- { 3, 3955, 26, 17, 1, UNI_STERM } /* sentenceterminal=y */,
- { 2, 9950, 10010, 3, 4, UNI_JG__MEEM } /* jg=meem */,
- { 1, 10393, 1232, 3, 2, UNI_TITLE } /* gc=lt */,
- { 0, 8148, 0, 9, 0, UNI_ARABICPFA } /* arabicpfa */,
- { 16, 6234, 0, 11, 0, UNI_BC__B } /* bidiclass=b */,
- { 5, 2280, 10047, 3, 3, UNI_INNEWA } /* innewa */,
- { 129, 4715, 67, 15, 1, UNI_EA__H } /* eastasianwidth=h */,
- { 4, 185, 1, 2, 1, UNI_N } /* isn */,
- { 0, 5018, 3560, 3, 10, UNI_TAIXUANJING } /* istaixuanjing */,
- { 0, 6428, 8791, 3, 6, UNI_CJKEXTF } /* incjkextf */,
- { 2, 185, 754, 3, 15, UNI_CUNEIFORMNUMBERS } /* iscuneiformnumbers */,
- { 0, 7513, 10498, 10, 3, UNI_XPOSIXLOWER } /* lowercase=yes */,
- { 36, 3768, 0, 17, 0, UNI_CYRILLICEXTC } /* cyrillicextendedc */,
- { 33, 9147, 36, 7, 1, UNI_XPOSIXSPACE } /* wspace=t */,
- { 0, 185, 4462, 2, 4, UNI_EMOD } /* isemod */,
- { 24, 4119, 1232, 16, 2, UNI_TITLE } /* generalcategory=lt */,
- { 0, 3649, 0, 17, 0, UNI_ALCHEMICAL } /* alchemicalsymbols */,
- { 1, 8449, 9098, 4, 7, UNI_INTAITHAM } /* blk=taitham */,
- { 0, 3181, 601, 18, 2, UNI_DT__NB } /* decompositiontype=nb */,
- { 0, 5847, 0, 13, 0, UNI_AEGEANNUMBERS } /* aegeannumbers */,
- { 5, 9990, 10532, 3, 2, UNI_GCB__V } /* lb=jv */,
- { 139, 8457, 8783, 6, 7, UNI_CJKEXTE } /* block=cjkexte */,
- { 8, 4423, 6777, 15, 8, UNI_SB__SC } /* sentencebreak=scontinue */,
- { 1, 5666, 10186, 14, 4, UNI_PATSYN } /* patternsyntax=true */,
- { 0, 9579, 8660, 5, 5, UNI_INTAGBANWA } /* intagbanwa */,
- { 4, 8881, 2371, 3, 3, UNI_SINH } /* issinh */,
- { 5, 8839, 10186, 7, 4, UNI_GRBASE } /* grbase=true */,
- { 0, 6159, 9173, 13, 6, UNI_NV__400000 } /* numericvalue=400000 */,
- { 3, 8449, 4760, 4, 15, UNI_INHANGUL } /* blk=hangulsyllables */,
- { 158, 7475, 9778, 3, 4, UNI_SC__ADLM } /* sc=adlm */,
- { 132, 1589, 133, 9, 2, UNI_LM } /* category=lm */,
- { 0, 9782, 9734, 4, 4, UNI_AGE__13 } /* age=13.0 */,
- { 4, 9659, 9437, 4, 4, UNI_YEZI } /* scx=yezi */,
- { 0, 9564, 10498, 5, 3, UNI_IDST } /* idst=yes */,
- { 0, 8457, 1121, 6, 27, UNI_OCR } /* block=opticalcharacterrecognition */,
- { 1, 8548, 9504, 5, 5, UNI_POSIXBLANK } /* posixblank */,
- { 24, 8585, 0, 8, 0, UNI_KANAEXTB } /* kanaextb */,
- { 2, 10058, 5834, 3, 3, UNI_NV__100 } /* nv=100 */,
- { 0, 2863, 1059, 19, 2, -UNI_IDST } /* idstrinaryoperator=no */,
- { 6, 4775, 0, 15, 0, UNI_ARMI } /* imperialaramaic */,
- { 1, 8457, 1622, 6, 24, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* block=supsymbolsandpictographs */,
- { 0, 8748, 24, 4, 1, UNI_CCC__L } /* ccc=l */,
- { 521, 8633, 9407, 7, 4, UNI_SC__THAA } /* script=thaa */,
- { 12, 8449, 4565, 4, 15, UNI_ARABICEXTB } /* blk=arabicextendedb */,
- { 16, 9147, 9549, 7, 5, -UNI_XPOSIXSPACE } /* wspace=false */,
- { 1, 9830, 5000, 4, 4, UNI_BPT__O } /* bpt=open */,
- { 10, 9782, 7841, 4, 4, UNI_AGE__12 } /* age=12.0 */,
- { 0, 8457, 9401, 6, 6, UNI_INTELUGU } /* block=telugu */,
- { 0, 10002, 9549, 4, 5, -UNI_LOE } /* loe=false */,
- { 0, 8457, 4970, 6, 15, UNI_NARB } /* block=oldnortharabian */,
- { 1, 1589, 1247, 9, 2, UNI_PO } /* category=po */,
- { 51, 8457, 8769, 6, 7, UNI_CJKEXTC } /* block=cjkextc */,
- { 0, 1589, 1075, 9, 2, UNI_CASEDLETTER } /* category=lc */,
- { 19, 8633, 3996, 8, 10, UNI_SGNW } /* script=signwriting */,
- { 0, 9629, 0, 5, 0, UNI_OGAM } /* ogham */,
- { 0, 7271, 0, 9, 0, UNI_IDS } /* idstart=y */,
- { 33, 8874, 3701, 3, 3, UNI_PAUC } /* ispauc */,
- { 0, 8449, 3325, 4, 11, UNI_GEORGIANSUP } /* blk=georgiansup */,
- { 0, 7610, 9734, 3, 4, UNI_IN__13 } /* in=13.0 */,
- { 0, 8633, 10158, 7, 4, UNI_TAVT } /* script=tavt */,
- { 1, 10178, 0, 4, 0, UNI_TNSA } /* tnsa */,
- { 1, 10058, 7806, 3, 9, UNI_NV__1_SLASH_64 } /* nv=1.562e-02 */,
- { 4, 4790, 5582, 13, 14, UNI_JG__MANICHAEANYODH } /* joininggroup=manichaeanyodh */,
- { 0, 2244, 71, 21, 2, UNI_GCB__PP } /* graphemeclusterbreak=pp */,
- { 2, 9215, 9549, 6, 5, -UNI_XPOSIXALPHA } /* alpha=false */,
- { 7, 3181, 69, 18, 3, UNI_DT__SUP } /* decompositiontype=sup */,
- { 257, 1589, 7094, 9, 11, UNI_LO } /* category=otherletter */,
- { 0, 9561, 34, 3, 6, UNI_SB__EX } /* sb=extend */,
- { 0, 1852, 0, 21, 0, UNI_CWCM } /* changeswhencasemapped */,
- { 9, 8457, 8979, 6, 7, UNI_NB } /* block=noblock */,
- { 28, 8457, 5694, 8, 9, UNI_BOPOMOFOEXT } /* block=bopomofoext */,
- { 1, 8449, 2920, 4, 19, UNI_MODIFIERTONELETTERS } /* blk=modifiertoneletters */,
- { 0, 5736, 36, 14, 1, UNI_QMARK } /* quotationmark=t */,
- { 30, 8449, 4215, 4, 16, UNI_LATIN1 } /* blk=latin1supplement */,
- { 72, 7610, 7841, 3, 4, UNI_IN__12 } /* in=12.0 */,
- { 0, 9574, 7594, 3, 9, UNI_INPHOENICIAN } /* inphoenician */,
- { 201, 2223, 0, 20, 0, UNI_EXTPICT } /* extendedpictographic */,
- { 98, 9589, 3, 5, 39, UNI_UCASEXT } /* isunifiedcanadianaboriginalsyllabicsextended */,
- { 0, 9950, 6570, 3, 12, UNI_JG__MALAYALAMTTA } /* jg=malayalamtta */,
- { 6, 8748, 10273, 4, 3, UNI_CCC__118 } /* ccc=118 */,
- { 0, 9323, 0, 4, 0, UNI_KHOJ } /* khoj */,
- { 0, 3523, 10006, 17, 4, UNI_MEDF } /* scriptextensions=medf */,
- { 32, 2692, 0, 4, 0, UNI_BRAH } /* brah */,
- { 68, 1852, 10498, 22, 3, UNI_CWCM } /* changeswhencasemapped=yes */,
- { 57, 4423, 126, 14, 2, UNI_LB__CR } /* sentencebreak=cr */,
- { 305, 9990, 7363, 3, 10, UNI_LB__BA } /* lb=breakafter */,
- { 0, 1574, 2633, 24, 3, UNI_INPC__TOP } /* indicpositionalcategory=top */,
- { 4, 8449, 2101, 4, 4, UNI_INMODI } /* blk=modi */,
- { 329, 9659, 9624, 4, 5, UNI_NSHU } /* scx=nushu */,
- { 24, 10393, 2351, 3, 2, UNI_PD } /* gc=pd */,
- { 4, 1589, 219, 9, 2, UNI_PE } /* category=pe */,
- { 33, 185, 10536, 2, 2, UNI_CASEDLETTER } /* isl& */,
- { 0, 8633, 10078, 7, 4, UNI_OSGE } /* script=osge */,
- { 0, 8449, 3199, 4, 18, UNI_DEVANAGARIEXT } /* blk=devanagariextended */,
- { 0, 8881, 384, 3, 32, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* issupplementalsymbolsandpictographs */,
- { 242, 7420, 3137, 3, 8, UNI_HALFMARKS } /* ishalfmarks */,
- { 14, 7533, 0, 10, 0, UNI_MISCARROWS } /* miscarrows */,
- { 3, 1067, 10297, 24, 3, UNI_CCC__BL } /* canonicalcombiningclass=218 */,
- { 0, 9353, 0, 6, 0, UNI_LYDI } /* lydian */,
- { 0, 185, 2750, 3, 10, UNI_COUNTINGROD } /* iscountingrod */,
- { 1, 10058, 9173, 3, 4, UNI_NV__4000 } /* nv=4000 */,
- { 28, 6852, 0, 6, 0, UNI_DOMINO } /* domino */,
- { 0, 1830, 10186, 22, 4, UNI_CWCF } /* changeswhencasefolded=true */,
- { 1, 27, 0, 2, 0, UNI_LOWERCASELETTER } /* ll */,
- { 1, 1620, 0, 26, 0, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* insupsymbolsandpictographs */,
- { 1024, 1741, 3786, 3, 10, UNI_ETHIOPICEXT } /* inethiopicext */,
- { 1, 9659, 9982, 4, 3, UNI_LAO } /* scx=lao */,
- { 0, 7473, 9499, 5, 5, UNI_INSC__BINDU } /* insc=bindu */,
- { 790, 5764, 0, 14, 0, UNI_ZS } /* spaceseparator */,
- { 13, 10495, 10384, 3, 3, UNI_WB__EB } /* wb=ebg */,
- { 0, 1067, 2893, 24, 2, UNI_CCC__1 } /* canonicalcombiningclass=ov */,
- { 0, 9584, 5108, 5, 12, UNI_INZANABAZARSQUARE } /* inzanabazarsquare */,
- { 13, 3523, 9639, 17, 5, UNI_OSGE } /* scriptextensions=osage */,
- { 1032, 1589, 1961, 9, 2, UNI_PC } /* category=pc */,
- { 121, 5610, 0, 15, 0, UNI_DT__CAN } /* nfdquickcheck=n */,
- { 1032, 185, 9383, 2, 5, UNI_QMARK } /* isqmark */,
- { 0, 8657, 0, 8, 0, UNI_TAGB } /* tagbanwa */,
- { 131, 7475, 9930, 3, 4, UNI_HMNP } /* sc=hmnp */,
- { 35, 8457, 8529, 6, 8, UNI_INHIRAGANA } /* block=hiragana */,
- { 1, 8633, 9335, 7, 6, UNI_LEPC } /* script=lepcha */,
- { 128, 8633, 6618, 7, 12, UNI_MEND } /* script=mendekikakui */,
- { 78, 8449, 8319, 4, 9, UNI_INOLDPERMIC } /* blk=oldpermic */,
- { 5, 8633, 10026, 7, 3, UNI_MRO } /* script=mro */,
- { 0, 6629, 8329, 3, 8, UNI_INOLDTURKIC } /* inoldturkic */,
- { 34, 7475, 7593, 3, 10, UNI_PHNX } /* sc=phoenician */,
- { 0, 5807, 4776, 3, 14, UNI_ARMI } /* isimperialaramaic */,
- { 1, 9934, 5805, 4, 2, UNI_LB__H2 } /* hst=lv */,
- { 0, 185, 1875, 3, 20, UNI_CWL } /* ischangeswhenlowercased */,
- { 0, 10492, 3, 3, 1, -UNI_VS } /* vs=f */,
- { 0, 8457, 3127, 6, 18, UNI_HALFMARKS } /* block=combininghalfmarks */,
- { 3, 3523, 7577, 18, 3, UNI_SOGD } /* scriptextensions=sogd */,
- { 0, 6678, 5170, 12, 5, UNI_NT__DI } /* numerictype=digit */,
- { 0, 7475, 9437, 3, 6, UNI_SC__YEZI } /* sc=yezidi */,
- { 1550, 8457, 633, 6, 30, UNI_CJKEXTD } /* block=cjkunifiedideographsextensiond */,
- { 1, 9680, 26, 4, 1, UNI_IDC } /* idc=y */,
- { 32, 6159, 9773, 13, 2, UNI_NV__27 } /* numericvalue=27 */,
- { 0, 8943, 7385, 4, 8, UNI_INCHORASMIAN } /* inchorasmian */,
- { 257, 185, 3110, 3, 3, UNI_CHER } /* ischer */,
- { 0, 8839, 3, 7, 1, -UNI_GRBASE } /* grbase=f */,
- { 4, 10393, 27, 3, 2, UNI_LOWERCASELETTER } /* gc=ll */,
- { 581, 2513, 0, 20, 0, UNI_GLAGOLITICSUP } /* glagoliticsupplement */,
- { 2, 9659, 8417, 4, 8, UNI_ARMN } /* scx=armenian */,
- { 3, 7259, 10384, 10, 3, UNI_WB__EB } /* wordbreak=ebg */,
- { 256, 3523, 10170, 17, 4, UNI_THAI } /* scriptextensions=thai */,
- { 0, 9950, 7017, 3, 11, UNI_JG__MALAYALAMJA } /* jg=malayalamja */,
- { 2, 8633, 9634, 7, 5, UNI_SC__ORYA } /* script=oriya */,
- { 4, 10090, 0, 4, 0, UNI_PHLP } /* phlp */,
- { 2, 4375, 0, 16, 0, UNI_MYANMAREXTB } /* myanmarextendedb */,
- { 4, 185, 8283, 2, 9, UNI_NBAT } /* isnabataean */,
- { 2, 6841, 0, 10, 0, UNI_DEP } /* deprecated */,
- { 62, 7293, 2, 3, 1, UNI_YI } /* isyi */,
- { 9, 4790, 6117, 13, 3, UNI_JG__WAW } /* joininggroup=waw */,
- { 820, 10214, 0, 4, 0, UNI_VAI } /* vaii */,
- { 10, 4119, 27, 16, 2, UNI_LOWERCASELETTER } /* generalcategory=ll */,
- { 5, 9862, 10186, 4, 4, UNI_CWT } /* cwt=true */,
- { 0, 3523, 9431, 17, 6, UNI_WCHO } /* scriptextensions=wancho */,
- { 13, 8853, 3, 7, 1, -UNI_HYPHEN } /* hyphen=f */,
- { 44, 21, 5344, 2, 6, UNI_KANGXI } /* inkangxi */,
- { 513, 7475, 10170, 3, 4, UNI_THAI } /* sc=thai */,
- { 3, 9604, 0, 5, 0, UNI_math_values_index } /* math= */,
- { 1, 9990, 4071, 3, 16, UNI_LB__CL } /* lb=closepunctuation */,
- { 0, 8457, 1738, 6, 14, UNI_LATINEXTA } /* block=latinextendeda */,
- { 157, 9469, 26, 5, 1, UNI_POSIXXDIGIT } /* ahex=y */,
- { 1, 3523, 10234, 17, 4, UNI_YI } /* scriptextensions=yiii */,
- { 0, 9281, 26, 6, 1, UNI_GREXT } /* grext=y */,
- { 6, 4119, 134, 16, 4, UNI_M } /* generalcategory=mark */,
- { 1137, 9659, 2202, 4, 8, UNI_CYRL } /* scx=cyrillic */,
- { 0, 8748, 3666, 4, 13, UNI_CCC__202 } /* ccc=attachedbelow */,
- { 1081, 6159, 7778, 13, 2, UNI_NV__21 } /* numericvalue=21 */,
- { 1031, 9519, 9549, 5, 5, -UNI_CWCF } /* cwcf=false */,
- { 0, 8449, 3989, 4, 17, UNI_SUTTONSIGNWRITING } /* blk=suttonsignwriting */,
- { 0, 5204, 0, 14, 0, UNI_CJKCOMPATFORMS } /* cjkcompatforms */,
- { 32, 6390, 0, 4, 0, UNI_HEBR } /* hebr */,
- { 0, 1589, 1348, 9, 2, UNI_UPPERCASELETTER } /* category=lu */,
- { 0, 185, 6003, 2, 13, UNI_LOWSURROGATES } /* islowsurrogates */,
- { 0, 9659, 9664, 4, 5, UNI_TALE } /* scx=taile */,
- { 0, 9574, 2633, 5, 3, UNI_INPC__TOP } /* inpc=top */,
- { 1217, 9654, 49, 4, 1, UNI_SB__SP } /* sb=sp */,
- { 0, 5162, 0, 5, 0, UNI_ASCII } /* ascii */,
- { 0, 3523, 3996, 18, 10, UNI_SGNW } /* scriptextensions=signwriting */,
- { 25, 6995, 8609, 10, 8, UNI_LB__NL } /* linebreak=nextline */,
- { 1, 7603, 0, 10, 0, UNI_in_values_index } /* presentin= */,
- { 1, 8449, 929, 4, 28, UNI_SUPPUAA } /* blk=supplementaryprivateuseareaa */,
- { 0, 9990, 448, 3, 11, UNI_LB__ID } /* lb=ideographic */,
- { 0, 7475, 3325, 3, 8, UNI_SC__GEOR } /* sc=georgian */,
- { 6, 8748, 7877, 7, 2, UNI_CCC__23 } /* ccc=ccc23 */,
- { 24, 8449, 5442, 4, 7, UNI_LISUSUP } /* blk=lisusup */,
- { 235, 9114, 9439, 4, 4, UNI_INYEZIDI } /* inyezidi */,
- { 0, 9782, 10330, 4, 3, UNI_AGE__3_DOT_2 } /* age=3.2 */,
- { 1, 8449, 4215, 4, 6, UNI_LATIN1 } /* blk=latin1 */,
- { 705, 9659, 9930, 4, 4, UNI_HMNP } /* scx=hmnp */,
- { 1, 4119, 9841, 16, 2, UNI_MC } /* generalcategory=mc */,
- { 1, 7420, 2807, 3, 9, UNI_JAMO } /* ishanguljamo */,
- { 15, 118, 1970, 4, 14, UNI_INDICNUMBERFORMS } /* inindicnumberforms */,
- { 0, 1852, 10186, 22, 4, UNI_CWCM } /* changeswhencasemapped=true */,
- { 0, 3181, 10222, 18, 4, UNI_EA__F } /* decompositiontype=wide */,
- { 16, 185, 8481, 2, 4, UNI_DUPL } /* isdupl */,
- { 0, 7259, 761, 10, 2, UNI_WB__MN } /* wordbreak=mn */,
- { 0, 843, 0, 29, 0, UNI_ENCLOSEDIDEOGRAPHICSUP } /* enclosedideographicsupplement */,
- { 887, 9990, 97, 3, 10, UNI_LB__AL } /* lb=alphabetic */,
- { 0, 8633, 10042, 7, 4, UNI_NBAT } /* script=nbat */,
- { 148, 8457, 9323, 6, 6, UNI_INKHOJKI } /* block=khojki */,
- { 7, 9098, 0, 7, 0, UNI_LANA } /* taitham */,
- { 1, 4199, 8617, 15, 8, UNI_IDENTIFIERTYPE__OBSOLETE } /* identifiertype=obsolete */,
- { 0, 8547, 9644, 6, 5, UNI_XPOSIXPRINT } /* xposixprint */,
- { 70, 10058, 7809, 3, 1, UNI_NV__6 } /* nv=6 */,
- { 2, 9659, 8529, 4, 8, UNI_HIRA } /* scx=hiragana */,
- { 0, 2072, 3, 22, 1, -UNI__PERL_NCHAR } /* noncharactercodepoint=f */,
- { 1027, 10058, 7833, 3, 9, UNI_NV__3_SLASH_16 } /* nv=1.875e-01 */,
- { 0, 8449, 901, 4, 18, UNI_PHONETICEXT } /* blk=phoneticextensions */,
- { 724, 185, 6016, 2, 9, UNI_MLYM } /* ismalayalam */,
- { 0, 4119, 75, 16, 2, UNI_ME } /* generalcategory=me */,
- { 130, 8548, 9514, 5, 5, UNI_POSIXCNTRL } /* posixcntrl */,
- { 6, 7475, 8481, 3, 4, UNI_SC__DUPL } /* sc=dupl */,
- { 3, 8748, 7782, 7, 2, UNI_CCC__29 } /* ccc=ccc29 */,
- { 2, 7603, 10465, 10, 3, UNI_IN__5_DOT_2 } /* presentin=v52 */,
- { 1, 10492, 36, 3, 1, UNI_VS } /* vs=t */,
- { 3, 9842, 0, 4, 0, UNI_CANS } /* cans */,
- { 129, 6159, 8040, 13, 9, UNI_NV__2_SLASH_3 } /* numericvalue=6.667e-01 */,
- { 0, 4940, 0, 16, 0, UNI_NFKCQC__N } /* nfkcquickcheck=n */,
- { 4, 8625, 9549, 8, 5, -UNI_RADICAL } /* radical=false */,
- { 1027, 8457, 2146, 6, 14, UNI_MUSIC } /* block=musicalsymbols */,
- { 0, 7475, 8473, 3, 8, UNI_SC__BUGI } /* sc=buginese */,
- { 5, 8457, 6726, 6, 12, UNI_PLAYINGCARDS } /* block=playingcards */,
- { 35, 185, 4331, 2, 10, UNI_SM } /* ismathsymbol */,
- { 10, 8633, 8818, 7, 4, UNI_ELBA } /* script=elba */,
- { 0, 3523, 9407, 17, 6, UNI_THAA } /* scriptextensions=thaana */,
- { 3, 10058, 9191, 3, 5, UNI_NV__60000 } /* nv=60000 */,
- { 11, 8633, 6594, 7, 12, UNI_SC__GONM } /* script=masaramgondi */,
- { 0, 5162, 0, 13, 0, UNI_POSIXXDIGIT } /* asciihexdigit */,
- { 35, 8449, 9335, 4, 6, UNI_INLEPCHA } /* blk=lepcha */,
- { 0, 16, 2138, 1, 22, UNI_BYZANTINEMUSIC } /* byzantinemusicalsymbols */,
- { 128, 3469, 36, 18, 1, UNI_RI } /* regionalindicator=t */,
- { 0, 7475, 10254, 3, 4, UNI_ZZZZ } /* sc=zzzz */,
- { 2, 8457, 4655, 6, 15, UNI_CURRENCYSYMBOLS } /* block=currencysymbols */,
- { 0, 10086, 10186, 4, 4, UNI_PCM } /* pcm=true */,
- { 520, 3523, 9126, 17, 7, UNI_TIRH } /* scriptextensions=tirhuta */,
- { 42, 7475, 9624, 3, 5, UNI_NSHU } /* sc=nushu */,
- { 0, 4423, 9007, 14, 7, UNI_SB__LE } /* sentencebreak=oletter */,
- { 1, 4878, 6620, 4, 10, UNI_INMENDEKIKAKUI } /* inmendekikakui */,
- { 1056, 8449, 4343, 4, 16, UNI_MISCMATHSYMBOLSB } /* blk=miscmathsymbolsb */,
- { 39, 3523, 3163, 17, 4, UNI_COPT } /* scriptextensions=copt */,
- { 0, 8449, 4183, 4, 16, UNI_HIGHPUSURROGATES } /* blk=highpusurrogates */,
- { 518, 3523, 2997, 18, 8, UNI_SUND } /* scriptextensions=sundanese */,
- { 1537, 9141, 2674, 3, 18, UNI_ANCIENTGREEKNUMBERS } /* isancientgreeknumbers */,
- { 560, 8881, 6, 3, 1, UNI_SD } /* issd */,
- { 8, 901, 0, 28, 0, UNI_PHONETICEXTSUP } /* phoneticextensionssupplement */,
- { 1, 7481, 2361, 3, 3, UNI_KALI } /* iskali */,
- { 9, 8457, 4775, 6, 15, UNI_INIMPERIALARAMAIC } /* block=imperialaramaic */,
- { 2, 3523, 8433, 17, 4, UNI_BALI } /* scriptextensions=bali */,
- { 0, 7475, 9802, 3, 4, UNI_ARMN } /* sc=armn */,
- { 0, 3523, 9233, 17, 4, UNI_CARI } /* scriptextensions=cari */,
- { 0, 4790, 1548, 13, 3, UNI_JG__HAH } /* joininggroup=hah */,
- { 3, 8449, 5750, 5, 14, UNI_BRAI } /* blk=braillepatterns */,
- { 645, 1067, 10282, 27, 3, UNI_CCC__132 } /* canonicalcombiningclass=ccc132 */,
- { 0, 6159, 7977, 13, 9, UNI_NV__11_SLASH_2 } /* numericvalue=5.500e+00 */,
- { 4, 10098, 0, 4, 0, UNI_MIAO } /* plrd */,
- { 0, 6208, 0, 2, 0, UNI_PF } /* pf */,
- { 769, 8449, 6270, 4, 12, UNI_CHESSSYMBOLS } /* blk=chesssymbols */,
- { 0, 1896, 3, 22, 1, -UNI_CWT } /* changeswhentitlecased=f */,
- { 0, 7610, 7693, 3, 10, UNI_IN__NA } /* in=unassigned */,
- { 2, 5428, 0, 14, 0, UNI_LATINEXTG } /* latinextendedg */,
- { 0, 3523, 9014, 17, 7, UNI_OSMA } /* scriptextensions=osmanya */,
- { 0, 5860, 1, 13, 1, -UNI_BIDIM } /* bidimirrored=n */,
- { 777, 8545, 97, 8, 5, UNI_XPOSIXALPHA } /* isxposixalpha */,
- { 0, 1067, 6951, 24, 11, UNI_CCC__8 } /* canonicalcombiningclass=kanavoicing */,
- { 1282, 7475, 9534, 3, 4, UNI_SC__DOGR } /* sc=dogr */,
- { 4, 3523, 10242, 17, 4, UNI_ZANB } /* scriptextensions=zanb */,
- { 0, 9990, 4625, 3, 15, UNI_LB__CB } /* lb=contingentbreak */,
- { 5, 7475, 8689, 3, 4, UNI_UGAR } /* sc=ugar */,
- { 1, 4790, 6107, 13, 13, UNI_JG__MANICHAEANWAW } /* joininggroup=manichaeanwaw */,
- { 29, 9071, 1, 5, 1, -UNI_TERM } /* term=n */,
- { 1, 43, 0, 26, 0, UNI_CJKCOMPATIDEOGRAPHS } /* cjkcompatibilityideographs */,
- { 2, 4916, 2515, 4, 11, UNI_GLAGOLITICSUP } /* inglagoliticsup */,
- { 1, 9659, 9464, 4, 5, UNI_ADLM } /* scx=adlam */,
- { 0, 9141, 8728, 3, 6, UNI_AVST } /* isavestan */,
- { 1, 185, 1176, 3, 24, UNI_CWKCF } /* ischangeswhennfkccasefolded */,
- { 1, 8449, 8930, 4, 7, UNI_INMARCHEN } /* blk=marchen */,
- { 3, 6995, 224, 10, 2, UNI_LB__PR } /* linebreak=pr */,
- { 6, 5736, 10186, 14, 4, UNI_QMARK } /* quotationmark=true */,
- { 526, 8748, 10277, 4, 2, UNI_CCC__22 } /* ccc=22 */,
- { 128, 1067, 6874, 24, 11, UNI_CCC__DB } /* canonicalcombiningclass=doublebelow */,
- { 0, 2028, 10186, 22, 4, UNI_LOE } /* logicalorderexception=true */,
- { 1, 10058, 9197, 3, 5, UNI_NV__70000 } /* nv=70000 */,
- { 0, 8545, 5170, 8, 5, UNI_XPOSIXDIGIT } /* isxposixdigit */,
- { 9, 9679, 1059, 5, 2, -UNI_XIDC } /* xidc=no */,
- { 0, 10058, 9702, 3, 4, UNI_NV__1_SLASH_20 } /* nv=1/20 */,
- { 0, 9914, 0, 4, 0, UNI_GURU } /* guru */,
- { 128, 8881, 4472, 3, 15, UNI_SYRIACSUP } /* issyriacsupplement */,
- { 0, 9659, 9119, 4, 7, UNI_TIBT } /* scx=tibetan */,
- { 0, 10378, 3, 3, 1, -UNI_DI } /* di=f */,
- { 0, 5666, 26, 14, 1, UNI_PATSYN } /* patternsyntax=y */,
- { 4, 8874, 6715, 3, 7, UNI_PHAISTOS } /* isphaistos */,
- { 0, 1738, 0, 14, 0, UNI_LATINEXTA } /* latinextendeda */,
- { 800, 8449, 9510, 5, 4, UNI_INBUHID } /* blk=buhid */,
- { 1, 21, 5149, 3, 13, UNI_ANCIENTSYMBOLS } /* inancientsymbols */,
- { 0, 1598, 5274, 22, 14, UNI_INSC__GEMINATIONMARK } /* indicsyllabiccategory=geminationmark */,
- { 1029, 10058, 5834, 3, 5, UNI_NV__10000 } /* nv=10000 */,
- { 2, 3523, 9389, 17, 6, UNI_RJNG } /* scriptextensions=rejang */,
- { 0, 185, 3785, 2, 11, UNI_ETHIOPICEXT } /* isethiopicext */,
- { 0, 8633, 7083, 7, 11, UNI_SC__NAND } /* script=nandinagari */,
- { 4, 1067, 3091, 24, 13, UNI_CCC__214 } /* canonicalcombiningclass=attachedabove */,
- { 7, 3523, 8211, 17, 9, UNI_SIND } /* scriptextensions=khudawadi */,
- { 1, 185, 9599, 2, 5, UNI_LIMB } /* islimbu */,
- { 2, 8433, 0, 4, 0, UNI_BALI } /* bali */,
- { 0, 1574, 3583, 24, 12, UNI_INPC__LEFTANDRIGHT } /* indicpositionalcategory=leftandright */,
- { 1, 6629, 7574, 3, 9, UNI_INOLDSOGDIAN } /* inoldsogdian */,
- { 1, 7475, 3700, 3, 17, UNI_AGHB } /* sc=caucasianalbanian */,
- { 1, 8881, 1406, 3, 24, UNI_SYMBOLSFORLEGACYCOMPUTING } /* issymbolsforlegacycomputing */,
- { 0, 8457, 43, 6, 26, UNI_CJKCOMPATIDEOGRAPHS } /* block=cjkcompatibilityideographs */,
- { 0, 6159, 7940, 13, 2, UNI_NV__14 } /* numericvalue=14 */,
- { 384, 2072, 36, 22, 1, UNI__PERL_NCHAR } /* noncharactercodepoint=t */,
- { 3, 9317, 0, 6, 0, UNI_KANBUN } /* kanbun */,
- { 3, 185, 9534, 2, 5, UNI_DOGR } /* isdogra */,
- { 208, 5018, 10159, 3, 3, UNI_TAVT } /* istavt */,
- { 1, 9574, 2633, 5, 12, UNI_INPC__TOPANDBOTTOM } /* inpc=topandbottom */,
- { 0, 6995, 1651, 10, 2, UNI_LB__AI } /* linebreak=ai */,
- { 0, 7610, 7809, 3, 1, UNI_IN__6 } /* in=6 */,
- { 0, 9890, 4103, 3, 3, UNI_DT__FIN } /* dt=fin */,
- { 0, 8633, 10118, 7, 4, UNI_RJNG } /* script=rjng */,
- { 1, 9413, 0, 5, 0, UNI_UIDEO } /* uideo */,
- { 0, 8457, 9317, 6, 6, UNI_KANBUN } /* block=kanbun */,
- { 7, 8633, 8832, 7, 4, UNI_SC__GRAN } /* script=gran */,
- { 1545, 9962, 0, 4, 0, UNI_KHMR } /* khmr */,
- { 0, 3181, 3541, 18, 5, UNI_DT__SML } /* decompositiontype=small */,
- { 849, 4745, 10498, 15, 3, UNI_GREXT } /* graphemeextend=yes */,
- { 40, 10423, 9549, 3, 5, -UNI_RI } /* ri=false */,
- { 74, 7603, 7841, 10, 4, UNI_IN__12 } /* presentin=12.0 */,
- { 1679, 4629, 1694, 4, 21, UNI_GEOMETRICSHAPESEXT } /* ingeometricshapesextended */,
- { 2, 8633, 79, 7, 4, UNI_SC__ARAB } /* script=arab */,
- { 5, 7610, 9, 3, 2, UNI_IN__NA } /* in=na */,
- { 25, 9227, 10498, 6, 3, UNI_BIDIM } /* bidim=yes */,
- { 0, 6995, 6366, 10, 4, UNI_LB__GL } /* linebreak=glue */,
- { 17, 7475, 5442, 3, 4, UNI_LISU } /* sc=lisu */,
- { 4, 2244, 7006, 21, 3, UNI_LB__H3 } /* graphemeclusterbreak=lvt */,
- { 2, 9659, 9882, 4, 4, UNI_DIAK } /* scx=diak */,
- { 21, 8748, 3674, 4, 5, UNI_CCC__B } /* ccc=below */,
- { 1, 8449, 3109, 4, 18, UNI_CHEROKEESUP } /* blk=cherokeesupplement */,
- { 0, 6234, 0, 10, 0, UNI_bc_values_index } /* bidiclass= */,
- { 0, 1620, 2371, 3, 20, UNI_SINHALAARCHAICNUMBERS } /* insinhalaarchaicnumbers */,
- { 0, 3469, 3, 18, 1, -UNI_RI } /* regionalindicator=f */,
- { 8, 7475, 1047, 3, 5, UNI_SC__GREK } /* sc=greek */,
- { 1, 7270, 9549, 9, 5, -UNI_XIDS } /* xidstart=false */,
- { 1, 7475, 2901, 3, 4, UNI_MERO } /* sc=mero */,
- { 3, 6962, 0, 11, 0, UNI_KATAKANAEXT } /* katakanaext */,
- { 840, 10495, 8274, 3, 6, UNI_WB__MN } /* wb=midnum */,
- { 14, 1175, 36, 26, 1, UNI_CWKCF } /* changeswhennfkccasefolded=t */,
- { 0, 1330, 10498, 25, 3, UNI_COMPEX } /* fullcompositionexclusion=yes */,
- { 2, 8449, 8521, 4, 8, UNI_INGURMUKHI } /* blk=gurmukhi */,
- { 14, 8633, 10214, 7, 3, UNI_VAI } /* script=vai */,
- { 0, 3523, 4985, 17, 15, UNI_SARB } /* scriptextensions=oldsoutharabian */,
- { 0, 1598, 1305, 22, 9, UNI_INSC__CONSONANT } /* indicsyllabiccategory=consonant */,
- { 0, 10495, 8400, 3, 9, UNI_WB__WSEGSPACE } /* wb=wsegspace */,
- { 2, 9946, 1087, 3, 3, UNI_BASS } /* isbass */,
- { 0, 9659, 9870, 4, 4, UNI_CYRL } /* scx=cyrl */,
- { 0, 9878, 0, 4, 0, UNI_dia_values_index } /* dia= */,
- { 0, 8247, 0, 9, 0, UNI_LATINEXTF } /* latinextf */,
- { 0, 118, 449, 3, 31, UNI_INIDC } /* inideographicdescriptioncharacters */,
- { 4, 43, 0, 9, 0, UNI_CJKCOMPAT } /* cjkcompat */,
- { 2, 7478, 986, 3, 17, UNI_INVS } /* invariationselectors */,
- { 0, 4119, 2101, 16, 14, UNI_LM } /* generalcategory=modifierletter */,
- { 0, 9659, 9275, 4, 4, UNI_GOTH } /* scx=goth */,
- { 2, 8547, 9514, 6, 5, UNI_XPOSIXCNTRL } /* xposixcntrl */,
- { 4, 10058, 9747, 3, 3, UNI_NV__5_SLASH_2 } /* nv=5/2 */,
- { 0, 8449, 8776, 4, 7, UNI_CJKEXTD } /* blk=cjkextd */,
- { 7, 8449, 10411, 4, 3, UNI_OCR } /* blk=ocr */,
- { 1, 8457, 9664, 6, 5, UNI_INTAILE } /* block=taile */,
- { 0, 8173, 5750, 3, 14, UNI_BRAI } /* inbraillepatterns */,
- { 4, 8748, 10297, 4, 3, UNI_CCC__BL } /* ccc=218 */,
- { 136, 10058, 7835, 3, 1, UNI_NV__8 } /* nv=8 */,
- { 2, 4730, 1, 15, 1, -UNI_ECOMP } /* emojicomponent=n */,
- { 0, 6120, 0, 13, 0, UNI_MAYANNUMERALS } /* mayannumerals */,
- { 7, 6995, 18, 10, 2, UNI_RI } /* linebreak=ri */,
- { 1, 8457, 8373, 6, 9, UNI_INSAMARITAN } /* block=samaritan */,
- { 0, 9659, 10230, 4, 4, UNI_XSUX } /* scx=xsux */,
- { 290, 8457, 10142, 6, 4, UNI_TAGS } /* block=tags */,
- { 256, 1542, 5291, 5, 11, UNI_INGREEK } /* ingreekandcoptic */,
- { 3, 8633, 10050, 7, 3, UNI_SC__NKO } /* script=nko */,
- { 1, 6159, 8066, 13, 2, UNI_NV__18 } /* numericvalue=18 */,
- { 0, 8322, 0, 4, 0, UNI_PERM } /* perm */,
- { 7, 6428, 1941, 3, 21, UNI_CJKCOMPATIDEOGRAPHSSUP } /* incjkcompatideographssup */,
- { 1, 416, 0, 4, 0, UNI_EGYP } /* egyp */,
- { 1137, 8633, 8374, 8, 8, UNI_SAMR } /* script=samaritan */,
- { 0, 1176, 0, 4, 0, UNI_HANG } /* hang */,
- { 0, 10495, 4462, 3, 9, UNI_WB__EB } /* wb=emodifier */,
- { 519, 9659, 10234, 4, 4, UNI_YI } /* scx=yiii */,
- { 0, 3466, 10498, 3, 3, UNI_CE } /* ce=yes */,
- { 1, 8633, 2513, 7, 4, UNI_SC__GLAG } /* script=glag */,
- { 0, 8449, 5442, 4, 14, UNI_LISUSUP } /* blk=lisusupplement */,
- { 1, 3523, 10046, 17, 4, UNI_NEWA } /* scriptextensions=newa */,
- { 2, 8449, 7083, 4, 11, UNI_INNANDINAGARI } /* blk=nandinagari */,
- { 0, 1067, 7763, 24, 2, UNI_CCC__25 } /* canonicalcombiningclass=25 */,
- { 21, 185, 4670, 2, 4, UNI_DASH } /* isdash */,
- { 0, 8633, 9347, 7, 6, UNI_LYCI } /* script=lycian */,
- { 1536, 10393, 7116, 3, 11, UNI_SO } /* gc=othersymbol */,
- { 1564, 7259, 4958, 10, 2, UNI_WB__DQ } /* wordbreak=dq */,
- { 4, 8748, 9741, 4, 3, UNI_CCC__214 } /* ccc=214 */,
- { 1039, 7703, 3, 10, 1, -UNI_XPOSIXUPPER } /* uppercase=f */,
- { 222, 4730, 36, 15, 1, UNI_ECOMP } /* emojicomponent=t */,
- { 0, 10378, 36, 3, 1, UNI_DI } /* di=t */,
- { 2, 4955, 26, 15, 1, UNI_DT__NONE } /* nfkdquickcheck=y */,
- { 0, 7475, 10014, 3, 4, UNI_MERC } /* sc=merc */,
- { 0, 8457, 9599, 6, 5, UNI_INLIMBU } /* block=limbu */,
- { 37, 185, 8818, 2, 4, UNI_ELBA } /* iselba */,
- { 2, 9559, 1059, 5, 2, -UNI_IDSB } /* idsb=no */,
- { 0, 8457, 9534, 6, 5, UNI_INDOGRA } /* block=dogra */,
- { 5, 4745, 3, 15, 1, -UNI_GREXT } /* graphemeextend=f */,
- { 0, 1067, 16, 24, 1, UNI_CCC__B } /* canonicalcombiningclass=b */,
- { 0, 1907, 0, 9, 0, UNI_TITLE } /* titlecase */,
- { 2, 7475, 8417, 3, 8, UNI_ARMN } /* sc=armenian */,
- { 2, 2181, 0, 21, 0, UNI_CJKRADICALSSUP } /* cjkradicalssupplement */,
- { 1536, 9822, 2351, 3, 3, UNI_BC__PDI } /* bc=pdi */,
- { 1, 1059, 0, 2, 0, UNI_NO } /* no */,
- { 0, 1067, 10279, 24, 3, UNI_CCC__129 } /* canonicalcombiningclass=129 */,
- { 1, 3523, 8441, 17, 4, UNI_BASS } /* scriptextensions=bass */,
- { 0, 185, 3253, 2, 11, UNI_ETHIOPICSUP } /* isethiopicsup */,
- { 1, 8449, 5344, 4, 14, UNI_KANGXI } /* blk=kangxiradicals */,
- { 0, 9858, 9549, 4, 5, -UNI_CWL } /* cwl=false */,
- { 24, 185, 10018, 2, 4, UNI_MIAO } /* ismiao */,
- { 0, 7475, 10026, 3, 3, UNI_MRO } /* sc=mro */,
- { 6, 5807, 3344, 3, 16, UNI_IDSB } /* isidsbinaryoperator */,
- { 0, 8625, 1, 8, 1, -UNI_RADICAL } /* radical=n */,
- { 148, 3523, 9922, 17, 4, UNI_HLUW } /* scriptextensions=hluw */,
- { 2, 8457, 6390, 6, 6, UNI_INHEBREW } /* block=hebrew */,
- { 29, 6159, 9754, 13, 4, UNI_NV__3_SLASH_16 } /* numericvalue=3/16 */,
- { 788, 9659, 7644, 5, 9, UNI_SAUR } /* scx=saurashtra */,
- { 39, 8633, 8346, 7, 9, UNI_PALM } /* script=palmyrene */,
- { 2, 8923, 0, 7, 0, UNI_MAND } /* mandaic */,
- { 98, 185, 4231, 2, 7, UNI_LINB } /* islinearb */,
- { 0, 1589, 10542, 9, 2, UNI_ZL } /* category=zl */,
- { 517, 9377, 9549, 6, 5, -UNI__PERL_PATWS } /* patws=false */,
- { 3, 4790, 3904, 13, 17, UNI_JG__MANICHAEANDHAMEDH } /* joininggroup=manichaeandhamedh */,
- { 5, 9659, 10066, 4, 4, UNI_OLCK } /* scx=olck */,
- { 2, 185, 1807, 2, 23, UNI_ZNAMENNYMUSIC } /* isznamennymusicalnotation */,
- { 1, 9281, 0, 5, 0, UNI_GREXT } /* grext */,
- { 6, 9679, 0, 5, 0, UNI_xidc_values_index } /* xidc= */,
- { 0, 1807, 0, 1, 0, UNI_Z } /* z */,
- { 0, 8449, 9077, 4, 7, UNI_SUPPUAA } /* blk=suppuaa */,
- { 133, 185, 1738, 2, 14, UNI_LATINEXTA } /* islatinextendeda */,
- { 0, 8173, 9510, 3, 4, UNI_INBUHID } /* inbuhid */,
- { 0, 6234, 5653, 12, 13, UNI_BC__BN } /* bidiclass=boundaryneutral */,
- { 0, 10492, 1059, 3, 2, -UNI_VS } /* vs=no */,
- { 0, 5246, 26, 14, 1, UNI_EMOD } /* emojimodifier=y */,
- { 3, 3463, 0, 5, 0, UNI_XPOSIXSPACE } /* space */,
- { 20, 5018, 6167, 3, 3, UNI_TALU } /* istalu */,
- { 0, 9890, 8505, 3, 8, UNI_DT__FRA } /* dt=fraction */,
- { 7, 1067, 3099, 24, 10, UNI_CCC__AR } /* canonicalcombiningclass=aboveright */,
- { 0, 8449, 9982, 4, 3, UNI_INLAO } /* blk=lao */,
- { 0, 6797, 1059, 11, 2, -UNI_XPOSIXALPHA } /* alphabetic=no */,
- { 2, 2244, 5805, 21, 2, UNI_LB__H2 } /* graphemeclusterbreak=lv */,
- { 6, 1175, 3, 26, 1, -UNI_CWKCF } /* changeswhennfkccasefolded=f */,
- { 6, 185, 9906, 2, 4, UNI_GREK } /* isgrek */,
- { 2, 185, 1692, 2, 18, UNI_GEOMETRICSHAPESEXT } /* isgeometricshapesext */,
- { 196, 8633, 8319, 7, 9, UNI_SC__PERM } /* script=oldpermic */,
- { 0, 8457, 3163, 6, 18, UNI_COPTICEPACTNUMBERS } /* block=copticepactnumbers */,
- { 0, 3469, 0, 18, 0, UNI_ri_values_index } /* regionalindicator= */,
- { 0, 9221, 26, 6, 1, UNI_BIDIC } /* bidic=y */,
- { 0, 185, 1885, 2, 5, UNI_XPOSIXLOWER } /* islower */,
- { 1, 3523, 9534, 17, 4, UNI_DOGR } /* scriptextensions=dogr */,
- { 0, 8955, 785, 4, 19, UNI_ENCLOSEDALPHANUM } /* inenclosedalphanumerics */,
- { 36, 5091, 1930, 3, 8, UNI_XPOSIXUPPER } /* isuppercase */,
- { 3, 6159, 10339, 13, 3, UNI_NV__4_SLASH_5 } /* numericvalue=4/5 */,
- { 0, 8633, 9064, 8, 6, UNI_SOYO } /* script=soyombo */,
- { 1, 8173, 2138, 3, 13, UNI_BYZANTINEMUSIC } /* inbyzantinemusic */,
- { 1825, 16, 8705, 2, 8, UNI_BOXDRAWING } /* boxdrawing */,
- { 5, 7610, 10465, 3, 3, UNI_IN__5_DOT_2 } /* in=v52 */,
- { 0, 5919, 1, 6, 1, -UNI_EBASE } /* ebase=n */,
- { 0, 8748, 10324, 4, 3, UNI_CCC__DA } /* ccc=234 */,
- { 89, 8748, 5834, 4, 2, UNI_CCC__10 } /* ccc=10 */,
- { 0, 6402, 10186, 12, 4, UNI_IDEO } /* ideographic=true */,
- { 2, 6462, 0, 12, 0, UNI_NL } /* letternumber */,
- { 0, 2181, 0, 14, 0, UNI_CJKRADICALSSUP } /* cjkradicalssup */,
- { 0, 3649, 0, 10, 0, UNI_ALCHEMICAL } /* alchemical */,
- { 35, 6270, 0, 12, 0, UNI_CHESSSYMBOLS } /* chesssymbols */,
- { 0, 3523, 9842, 17, 4, UNI_CANS } /* scriptextensions=cans */,
- { 1, 9659, 6693, 4, 4, UNI_HUNG } /* scx=hung */,
- { 513, 7443, 36, 9, 1, UNI_EXT } /* extender=t */,
- { 0, 9950, 6065, 3, 3, UNI_JG__NUN } /* jg=nun */,
- { 6, 1067, 7877, 24, 2, UNI_CCC__23 } /* canonicalcombiningclass=23 */,
- { 1056, 9782, 10357, 4, 3, UNI_AGE__6_DOT_3 } /* age=6.3 */,
- { 0, 9990, 6258, 3, 12, UNI_LB__SY } /* lb=breaksymbols */,
- { 0, 185, 3325, 2, 11, UNI_GEORGIANSUP } /* isgeorgiansup */,
- { 3, 1589, 1278, 9, 2, UNI_SK } /* category=sk */,
- { 0, 1067, 10315, 24, 3, UNI_CCC__A } /* canonicalcombiningclass=230 */,
- { 7, 4119, 219, 16, 2, UNI_PE } /* generalcategory=pe */,
- { 52, 8457, 4760, 6, 15, UNI_INHANGUL } /* block=hangulsyllables */,
- { 0, 9283, 26, 4, 1, UNI_EXT } /* ext=y */,
- { 0, 8804, 3, 7, 1, -UNI_COMPEX } /* compex=f */,
- { 21, 8449, 9347, 4, 6, UNI_INLYCIAN } /* blk=lycian */,
- { 5, 8449, 8229, 4, 9, UNI_LATINEXTC } /* blk=latinextc */,
- { 0, 8930, 0, 7, 0, UNI_MARC } /* marchen */,
- { 2, 9822, 23, 3, 2, UNI_BC__AL } /* bc=al */,
- { 4, 10058, 10333, 3, 3, UNI_NV__3_SLASH_4 } /* nv=3/4 */,
- { 0, 9650, 1244, 4, 3, UNI_ANY } /* unicode */,
- { 0, 185, 2146, 2, 14, UNI_MUSIC } /* ismusicalsymbols */,
- { 522, 1067, 4220, 24, 1, UNI_CCC__1 } /* canonicalcombiningclass=1 */,
- { 0, 9529, 10498, 5, 3, UNI_DASH } /* dash=yes */,
- { 5, 2806, 0, 19, 0, UNI_JAMOEXTA } /* hanguljamoextendeda */,
- { 0, 3181, 0, 18, 0, UNI_dt_values_index } /* decompositiontype= */,
- { 0, 8457, 9347, 6, 6, UNI_INLYCIAN } /* block=lycian */,
- { 4, 6159, 5834, 13, 4, UNI_NV__1000 } /* numericvalue=1000 */,
- { 0, 10495, 3469, 3, 17, UNI_RI } /* wb=regionalindicator */,
- { 1, 9519, 26, 5, 1, UNI_CWCF } /* cwcf=y */,
- { 133, 8633, 9464, 7, 5, UNI_SC__ADLM } /* script=adlam */,
- { 0, 9822, 3819, 3, 17, UNI_BC__ES } /* bc=europeanseparator */,
- { 1, 7204, 0, 11, 0, UNI_SUPERANDSUB } /* superandsub */,
- { 0, 9281, 0, 6, 0, UNI_grext_values_index } /* grext= */,
- { 0, 9782, 10456, 4, 3, UNI_AGE__4_DOT_1 } /* age=v41 */,
- { 5, 3523, 8741, 17, 4, UNI_BRAI } /* scriptextensions=brai */,
- { 0, 10058, 9774, 3, 4, UNI_NV__7_SLASH_12 } /* nv=7/12 */,
- { 8, 6775, 1059, 11, 2, -UNI_IDC } /* idcontinue=no */,
- { 51, 3523, 10182, 17, 4, UNI_TOTO } /* scriptextensions=toto */,
- { 0, 8881, 0, 7, 0, UNI_XPOSIXSPACE } /* isspace */,
- { 65, 1620, 9080, 5, 4, UNI_SUPPUAA } /* insuppuaa */,
- { 0, 7481, 2302, 3, 3, UNI_KTHI } /* iskthi */,
- { 55, 8449, 8593, 4, 8, UNI_INMAHAJANI } /* blk=mahajani */,
- { 19, 8457, 10214, 6, 3, UNI_INVAI } /* block=vai */,
- { 672, 8633, 2533, 7, 20, UNI_PHLI } /* script=inscriptionalpahlavi */,
- { 200, 1067, 10267, 24, 3, UNI_CCC__103 } /* canonicalcombiningclass=103 */,
- { 0, 7513, 36, 10, 1, UNI_XPOSIXLOWER } /* lowercase=t */,
- { 0, 2749, 0, 19, 0, UNI_COUNTINGROD } /* countingrodnumerals */,
- { 0, 10495, 6366, 3, 12, UNI_WB__EB } /* wb=glueafterzwj */,
- { 1847, 1589, 501, 9, 5, UNI_P } /* category=punct */,
- { 16, 9659, 8657, 4, 8, UNI_TAGB } /* scx=tagbanwa */,
- { 27, 9822, 6222, 3, 12, UNI_BC__AN } /* bc=arabicnumber */,
- { 0, 8449, 1738, 4, 9, UNI_LATINEXTE } /* blk=latinexte */,
- { 4, 1227, 0, 26, 0, UNI_di_values_index } /* defaultignorablecodepoint= */,
- { 2, 9866, 36, 4, 1, UNI_CWU } /* cwu=t */,
- { 16, 6450, 0, 5, 0, UNI_KHMR } /* khmer */,
- { 0, 9659, 7483, 4, 4, UNI_KHAR } /* scx=khar */,
- { 1, 5018, 9670, 3, 4, UNI_TAKR } /* istakri */,
- { 0, 2244, 10384, 21, 3, UNI_WB__EB } /* graphemeclusterbreak=ebg */,
- { 5, 10495, 18, 3, 2, UNI_RI } /* wb=ri */,
- { 0, 9659, 8734, 4, 4, UNI_BENG } /* scx=beng */,
- { 20, 5018, 9665, 3, 4, UNI_TALE } /* istaile */,
- { 1, 9990, 1247, 3, 2, UNI_LB__PO } /* lb=po */,
- { 98, 8633, 2644, 7, 4, UNI_SC__MAND } /* script=mand */,
- { 1, 4790, 790, 13, 3, UNI_JG__DAL } /* joininggroup=dal */,
- { 1152, 9946, 1247, 4, 2, UNI_BOPO } /* isbopo */,
- { 6, 3523, 7216, 18, 10, UNI_SYLO } /* scriptextensions=sylotinagri */,
- { 3, 3181, 4619, 18, 6, UNI_DT__MED } /* decompositiontype=medial */,
- { 519, 3523, 8825, 17, 4, UNI_ELYM } /* scriptextensions=elym */,
- { 2, 185, 7713, 2, 10, UNI_WARA } /* iswarangciti */,
- { 28, 24, 0, 1, 0, UNI_L } /* l */,
- { 2, 9954, 6896, 3, 11, UNI_JT__D } /* jt=dualjoining */,
- { 4, 8457, 284, 6, 33, UNI_MISCMATHSYMBOLSA } /* block=miscellaneousmathematicalsymbolsa */,
- { 0, 7475, 8441, 3, 8, UNI_BASS } /* sc=bassavah */,
- { 6, 9950, 8497, 3, 8, UNI_JG__FARSIYEH } /* jg=farsiyeh */,
- { 0, 8457, 448, 6, 32, UNI_INIDC } /* block=ideographicdescriptioncharacters */,
- { 29, 185, 5990, 2, 13, UNI_ZL } /* islineseparator */,
- { 8, 1598, 5232, 22, 14, UNI_INSC__CONSONANTFINAL } /* indicsyllabiccategory=consonantfinal */,
- { 1, 1620, 9064, 3, 6, UNI_INSOYOMBO } /* insoyombo */,
- { 1273, 10381, 0, 3, 0, UNI_ea_values_index } /* ea= */,
- { 0, 1067, 8030, 27, 2, UNI_CCC__36 } /* canonicalcombiningclass=ccc36 */,
- { 4, 8313, 0, 4, 0, UNI_ITAL } /* ital */,
- { 0, 10130, 7644, 4, 3, UNI_SAUR } /* sc=saur */,
- { 0, 7433, 0, 10, 0, UNI_DIAK } /* divesakuru */,
- { 18, 185, 3217, 2, 17, UNI_EBASE } /* isemojimodifierbase */,
- { 744, 185, 8220, 2, 9, UNI_LATINEXTB } /* islatinextb */,
- { 1, 9990, 21, 3, 2, UNI_LB__IN } /* lb=in */,
- { 0, 6774, 26, 12, 1, UNI_XIDC } /* xidcontinue=y */,
- { 0, 8881, 2371, 3, 6, UNI_SINH } /* issinhala */,
- { 790, 8449, 1940, 4, 22, UNI_CJKCOMPATIDEOGRAPHSSUP } /* blk=cjkcompatideographssup */,
- { 2, 1874, 1, 22, 1, -UNI_CWL } /* changeswhenlowercased=n */,
- { 0, 10495, 2548, 3, 2, UNI_LB__HL } /* wb=hl */,
- { 7, 3955, 0, 17, 0, UNI_sterm_values_index } /* sentenceterminal= */,
- { 0, 9564, 1, 5, 1, -UNI_IDST } /* idst=n */,
- { 10, 185, 8553, 2, 8, UNI_JAMOEXTA } /* isjamoexta */,
- { 0, 9579, 5032, 4, 13, UNI_TAMILSUP } /* intamilsupplement */,
- { 6, 3523, 9509, 17, 5, UNI_BUHD } /* scriptextensions=buhid */,
- { 314, 1067, 9167, 27, 2, UNI_CCC__30 } /* canonicalcombiningclass=ccc30 */,
- { 1, 6995, 8184, 10, 9, UNI_LB__B2 } /* linebreak=breakboth */,
- { 4, 32, 0, 2, 0, UNI__PERL_SURROGATE } /* cs */,
- { 0, 7573, 0, 10, 0, UNI_SOGO } /* oldsogdian */,
- { 1, 9554, 4430, 4, 2, UNI_WB__EB } /* gcb=eb */,
- { 66, 10495, 1255, 3, 2, UNI_LB__LF } /* wb=lf */,
- { 32, 9659, 7216, 5, 3, UNI_SYLO } /* scx=sylo */,
- { 58, 8547, 5891, 6, 5, UNI_XPOSIXALNUM } /* xposixalnum */,
- { 3, 8449, 4880, 4, 15, UNI_INMEROITICCURSIVE } /* blk=meroiticcursive */,
- { 0, 4119, 1972, 16, 2, UNI_CN } /* generalcategory=cn */,
- { 1, 21, 5330, 2, 14, UNI_KANASUP } /* inkanasupplement */,
- { 0, 6159, 7835, 13, 1, UNI_NV__8 } /* numericvalue=8 */,
- { 0, 8874, 6, 3, 1, UNI_PD } /* ispd */,
- { 262, 4715, 10222, 15, 4, UNI_EA__W } /* eastasianwidth=wide */,
- { 0, 8633, 10254, 7, 4, UNI_ZZZZ } /* script=zzzz */,
- { 1, 9659, 7039, 4, 11, UNI_MEDF } /* scx=medefaidrin */,
- { 0, 8457, 5030, 6, 15, UNI_TAMILSUP } /* block=tamilsupplement */,
- { 0, 8449, 2513, 4, 10, UNI_INGLAGOLITIC } /* blk=glagolitic */,
- { 7, 9950, 3921, 3, 17, UNI_JG__MANICHAEANHUNDRED } /* jg=manichaeanhundred */,
- { 0, 7475, 9464, 3, 5, UNI_SC__ADLM } /* sc=adlam */,
- { 4, 9950, 5512, 3, 14, UNI_JG__MANICHAEANHETH } /* jg=manichaeanheth */,
- { 0, 9070, 0, 7, 0, UNI_STERM } /* sterm=t */,
- { 1, 10142, 0, 4, 0, UNI_TAGS } /* tags */,
- { 142, 5075, 0, 15, 0, UNI_VEDICEXT } /* vedicextensions */,
- { 0, 9882, 0, 4, 0, UNI_DIAK } /* diak */,
- { 0, 9950, 7330, 3, 3, UNI_JG__QAF } /* jg=qaf */,
- { 0, 9659, 2313, 4, 4, UNI_MULT } /* scx=mult */,
- { 14, 21, 1041, 3, 26, UNI_ANCIENTGREEKMUSIC } /* inancientgreekmusicalnotation */,
- { 1, 1598, 5015, 22, 15, UNI_INSC__REGISTERSHIFTER } /* indicsyllabiccategory=registershifter */,
- { 0, 184, 0, 20, 0, UNI_MISCSYMBOLS } /* miscellaneoussymbols */,
- { 1, 4715, 1, 15, 1, UNI_EA__N } /* eastasianwidth=n */,
- { 0, 6234, 3875, 10, 3, UNI_BC__NSM } /* bidiclass=nsm */,
- { 0, 9659, 3163, 4, 6, UNI_COPT } /* scx=coptic */,
- { 0, 185, 2203, 3, 7, UNI_CYRL } /* iscyrillic */,
- { 3, 8457, 512, 6, 31, UNI_MATHALPHANUM } /* block=mathematicalalphanumericsymbols */,
- { 0, 4103, 0, 16, 0, UNI_PF } /* finalpunctuation */,
- { 1, 3199, 0, 10, 0, UNI_DEVA } /* devanagari */,
- { 0, 8457, 9056, 6, 7, UNI_INSIDDHAM } /* block=siddham */,
- { 1, 10086, 0, 4, 0, UNI_pcm_values_index } /* pcm= */,
- { 525, 8529, 0, 4, 0, UNI_HIRA } /* hira */,
- { 0, 3523, 10026, 17, 3, UNI_MRO } /* scriptextensions=mro */,
- { 0, 3343, 3, 18, 1, -UNI_IDSB } /* idsbinaryoperator=f */,
- { 0, 9890, 2653, 3, 8, UNI_DT__VERT } /* dt=vertical */,
- { 0, 8449, 1430, 4, 24, UNI_ARABICPFA } /* blk=arabicpresentationformsa */,
- { 0, 8545, 1885, 8, 5, UNI_XPOSIXLOWER } /* isxposixlower */,
- { 1, 10130, 10501, 4, 3, UNI_SC__SYRC } /* sc=syrc */,
- { 75, 8633, 10018, 7, 4, UNI_MIAO } /* script=miao */,
- { 1, 4925, 0, 15, 0, UNI_COMPEX } /* nfcquickcheck=n */,
- { 1365, 1598, 4610, 22, 15, UNI_INSC__CONSONANTMEDIAL } /* indicsyllabiccategory=consonantmedial */,
- { 1, 185, 8825, 2, 7, UNI_ELYM } /* iselymaic */,
- { 2, 8457, 9669, 6, 5, UNI_INTAKRI } /* block=takri */,
- { 0, 7475, 0, 3, 0, UNI_sc_values_index } /* sc= */,
- { 674, 218, 25, 29, 1, UNI__PERL_PROBLEMATIC_LOCALE_FOLDS } /* _perl_problematic_locale_folds */,
- { 34, 10495, 6375, 3, 3, UNI_LB__ZWJ } /* wb=zwj */,
- { 0, 10058, 10514, 3, 2, UNI_NV__46 } /* nv=46 */,
- { 280, 5912, 10498, 13, 3, UNI_GRBASE } /* graphemebase=yes */,
- { 0, 9564, 10186, 5, 4, UNI_IDST } /* idst=true */,
- { 28, 4359, 0, 7, 0, UNI_MYMR } /* myanmar */,
- { 1, 8633, 9509, 7, 5, UNI_SC__BUHD } /* script=buhid */,
- { 0, 9070, 1, 6, 1, -UNI_STERM } /* sterm=n */,
- { 663, 8457, 2328, 6, 14, UNI_MEETEIMAYEKEXT } /* block=meeteimayekext */,
- { 165, 9529, 26, 5, 1, UNI_DASH } /* dash=y */,
- { 0, 9934, 36, 4, 1, UNI_GCB__T } /* hst=t */,
- { 2, 10393, 1502, 3, 13, UNI_M } /* gc=combiningmark */,
- { 66, 5246, 0, 14, 0, UNI_emod_values_index } /* emojimodifier= */,
- { 16, 2863, 10186, 19, 4, UNI_IDST } /* idstrinaryoperator=true */,
- { 762, 1067, 5834, 27, 2, UNI_CCC__10 } /* canonicalcombiningclass=ccc10 */,
- { 5, 4423, 1929, 14, 5, UNI_SB__UP } /* sentencebreak=upper */,
- { 0, 8449, 8902, 4, 7, UNI_KALI } /* blk=kayahli */,
- { 0, 6428, 2161, 3, 20, UNI_CJKCOMPATFORMS } /* incjkcompatibilityforms */,
- { 27, 10393, 9841, 3, 2, UNI_MC } /* gc=mc */,
- { 0, 185, 8569, 2, 8, UNI_JAVA } /* isjavanese */,
- { 1, 7513, 3, 10, 1, -UNI_XPOSIXLOWER } /* lowercase=f */,
- { 2, 8633, 3904, 7, 10, UNI_SC__MANI } /* script=manichaean */,
- { 0, 3217, 10186, 18, 4, UNI_EBASE } /* emojimodifierbase=true */,
- { 0, 1330, 1059, 25, 2, -UNI_COMPEX } /* fullcompositionexclusion=no */,
- { 8, 3181, 10429, 18, 3, UNI_DT__SML } /* decompositiontype=sml */,
- { 515, 10381, 5659, 3, 7, UNI_EA__N } /* ea=neutral */,
- { 1, 185, 6307, 3, 11, UNI_CYRILLICEXTC } /* iscyrillicextc */,
- { 0, 6159, 9766, 13, 3, UNI_NV__3_SLASH_8 } /* numericvalue=3/8 */,
- { 3, 8748, 7353, 4, 10, UNI_CCC__BR } /* ccc=belowright */,
- { 259, 3523, 8283, 17, 9, UNI_NBAT } /* scriptextensions=nabataean */,
- { 3, 9263, 26, 6, 1, UNI_EMOJI } /* emoji=y */,
- { 0, 9659, 9834, 4, 4, UNI_BUHD } /* scx=buhd */,
- { 33, 21, 1041, 3, 16, UNI_ANCIENTGREEKMUSIC } /* inancientgreekmusic */,
- { 1716, 9221, 9549, 6, 5, -UNI_BIDIC } /* bidic=false */,
- { 0, 6995, 8860, 11, 7, UNI_LB__LF } /* linebreak=linefeed */,
- { 11, 9684, 36, 5, 1, UNI_XIDS } /* xids=t */,
- { 8, 6246, 26, 12, 1, UNI_BIDIC } /* bidicontrol=y */,
- { 1, 7259, 6885, 10, 11, UNI_WB__DQ } /* wordbreak=doublequote */,
- { 37, 8881, 7664, 3, 9, UNI_SUPARROWSA } /* issuparrowsa */,
- { 1652, 6234, 10417, 10, 3, UNI_BC__PDF } /* bidiclass=pdf */,
- { 68, 4730, 9549, 15, 5, -UNI_ECOMP } /* emojicomponent=false */,
- { 0, 8881, 351, 3, 32, UNI_SUPMATHOPERATORS } /* issupplementalmathematicaloperators */,
- { 98, 8457, 2693, 7, 5, UNI_INBRAHMI } /* block=brahmi */,
- { 9, 9659, 9233, 4, 6, UNI_CARI } /* scx=carian */,
- { 0, 762, 0, 6, 0, UNI_N } /* number */,
- { 32, 9119, 0, 7, 0, UNI_TIBT } /* tibetan */,
- { 22, 8633, 8337, 7, 9, UNI_SC__OUGR } /* script=olduyghur */,
- { 520, 7475, 10022, 3, 4, UNI_SC__MLYM } /* sc=mlym */,
- { 57, 7475, 9323, 3, 4, UNI_SC__KHOJ } /* sc=khoj */,
- { 1832, 8457, 9000, 6, 7, UNI_OLCK } /* block=olchiki */,
- { 1, 6995, 8853, 10, 6, UNI_LB__HY } /* linebreak=hyphen */,
- { 15, 7475, 3904, 3, 10, UNI_SC__MANI } /* sc=manichaean */,
- { 137, 7475, 7573, 3, 10, UNI_SOGO } /* sc=oldsogdian */,
- { 1553, 7475, 5030, 3, 5, UNI_SC__TAML } /* sc=tamil */,
- { 2, 6428, 2203, 3, 17, UNI_CYRILLICSUP } /* incyrillicsupplement */,
- { 0, 4423, 236, 14, 2, UNI_SB__LO } /* sentencebreak=lo */,
- { 1063, 10058, 7842, 3, 9, UNI_NV__1_SLASH_5 } /* nv=2.000e-01 */,
- { 20, 2363, 8339, 4, 7, UNI_OUGR } /* isolduyghur */,
- { 0, 185, 134, 2, 4, UNI_M } /* ismark */,
- { 608, 9822, 103, 3, 2, UNI_BC__ET } /* bc=et */,
- { 109, 9646, 2118, 4, 20, UNI_TRANSPORTANDMAP } /* intransportandmapsymbols */,
- { 16, 7603, 10474, 10, 3, UNI_IN__6_DOT_2 } /* presentin=v62 */,
- { 4, 9126, 0, 4, 0, UNI_TIRH } /* tirh */,
- { 0, 8874, 3452, 3, 16, UNI__PERL_PATWS } /* ispatternwhitespace */,
- { 3, 9269, 26, 6, 1, UNI_EPRES } /* epres=y */,
- { 0, 9950, 316, 4, 2, UNI_JG__LAM } /* jg=lam */,
- { 54, 8633, 8453, 7, 4, UNI_SC__BOPO } /* script=bopo */,
- { 0, 9147, 1059, 7, 2, -UNI_XPOSIXSPACE } /* wspace=no */,
- { 1, 8449, 5301, 4, 4, UNI_INCHAM } /* blk=cham */,
- { 5, 9293, 7259, 6, 4, UNI_POSIXWORD } /* isperlword */,
- { 0, 527, 0, 3, 0, UNI_HAN } /* han */,
- { 4, 7475, 7083, 3, 11, UNI_SC__NAND } /* sc=nandinagari */,
- { 1906, 9659, 9914, 4, 4, UNI_GURU } /* scx=guru */,
- { 0, 9950, 5578, 3, 4, UNI_JG__TETH } /* jg=teth */,
- { 3, 7576, 0, 4, 0, UNI_SOGD } /* sogd */,
- { 1, 7475, 9978, 3, 4, UNI_LANA } /* sc=lana */,
- { 0, 9659, 9922, 4, 4, UNI_HLUW } /* scx=hluw */,
- { 0, 6159, 10325, 13, 2, UNI_NV__34 } /* numericvalue=34 */,
- { 5, 3217, 1, 18, 1, -UNI_EBASE } /* emojimodifierbase=n */,
- { 0, 9659, 2533, 4, 20, UNI_PHLI } /* scx=inscriptionalpahlavi */,
- { 0, 185, 6486, 2, 7, UNI_MAHJONG } /* ismahjong */,
- { 0, 7048, 188, 6, 16, UNI_MISCSYMBOLS } /* inmiscellaneoussymbols */,
- { 90, 1598, 6672, 22, 6, UNI_LB__ZWJ } /* indicsyllabiccategory=joiner */,
- { 0, 9990, 4462, 3, 9, UNI_EMOD } /* lb=emodifier */,
- { 0, 21, 3379, 2, 9, UNI_LATINEXTA } /* inlatinexta */,
- { 0, 2653, 0, 20, 0, UNI_vo_values_index } /* verticalorientation= */,
- { 1, 7475, 6016, 3, 9, UNI_SC__MLYM } /* sc=malayalam */,
- { 0, 8633, 8734, 7, 7, UNI_SC__BENG } /* script=bengali */,
- { 0, 2244, 945, 21, 1, UNI_GCB__V } /* graphemeclusterbreak=v */,
- { 0, 8449, 10142, 4, 4, UNI_TAGS } /* blk=tags */,
- { 1, 8548, 63, 5, 5, UNI_POSIXGRAPH } /* posixgraph */,
- { 261, 1067, 8121, 24, 9, UNI_CCC__AL } /* canonicalcombiningclass=aboveleft */,
- { 0, 10381, 9, 3, 2, UNI_EA__NA } /* ea=na */,
- { 8, 3523, 9778, 17, 4, UNI_ADLM } /* scriptextensions=adlm */,
- { 0, 9822, 3397, 3, 18, UNI_BC__LRI } /* bc=lefttorightisolate */,
- { 0, 9147, 0, 7, 0, UNI_wspace_values_index } /* wspace= */,
- { 0, 10058, 7752, 3, 9, UNI_NV__1_SLASH_9 } /* nv=1.111e-01 */,
- { 186, 2328, 0, 21, 0, UNI_MEETEIMAYEKEXT } /* meeteimayekextensions */,
- { 0, 9950, 10114, 3, 4, UNI_JG__QAPH } /* jg=qaph */,
- { 292, 9950, 9443, 3, 6, UNI_JG__YUDHHE } /* jg=yudhhe */,
- { 1, 7475, 10054, 3, 4, UNI_NSHU } /* sc=nshu */,
- { 5, 4790, 6570, 13, 12, UNI_JG__MALAYALAMTTA } /* joininggroup=malayalamtta */,
- { 512, 9554, 296, 4, 2, UNI_GCB__SM } /* gcb=sm */,
- { 3, 8449, 4970, 4, 15, UNI_NARB } /* blk=oldnortharabian */,
- { 2, 185, 441, 3, 6, UNI_XPOSIXCNTRL } /* iscontrol */,
- { 0, 8449, 2939, 4, 9, UNI_INMONGOLIAN } /* blk=mongolian */,
- { 0, 8457, 5964, 6, 13, UNI_KANAEXTA } /* block=kanaextendeda */,
- { 0, 185, 9982, 2, 3, UNI_LAO } /* islao */,
- { 0, 7475, 10158, 3, 4, UNI_TAVT } /* sc=tavt */,
- { 42, 9684, 3, 5, 1, -UNI_XIDS } /* xids=f */,
- { 54, 9990, 8609, 3, 8, UNI_LB__NL } /* lb=nextline */,
- { 132, 2028, 9549, 22, 5, -UNI_LOE } /* logicalorderexception=false */,
- { 66, 185, 2101, 2, 4, UNI_MODI } /* ismodi */,
- { 0, 7603, 9734, 10, 4, UNI_IN__13 } /* presentin=13.0 */,
- { 74, 8457, 2673, 6, 19, UNI_ANCIENTGREEKNUMBERS } /* block=ancientgreeknumbers */,
- { 0, 4878, 4376, 3, 15, UNI_MYANMAREXTB } /* inmyanmarextendedb */,
- { 21, 185, 10246, 2, 4, UNI_QAAI } /* iszinh */,
- { 0, 185, 5442, 2, 7, UNI_LISUSUP } /* islisusup */,
- { 9, 8449, 895, 4, 6, UNI_ARROWS } /* blk=arrows */,
- { 0, 9782, 10477, 4, 3, UNI_AGE__6_DOT_3 } /* age=v63 */,
- { 1, 7475, 9838, 3, 4, UNI_SC__CAKM } /* sc=cakm */,
- { 92, 8457, 8157, 6, 9, UNI_ARABICPFB } /* block=arabicpfb */,
- { 1548, 8449, 8937, 4, 7, UNI_INMULTANI } /* blk=multani */,
- { 0, 3463, 10186, 6, 4, UNI_XPOSIXSPACE } /* space=true */,
- { 11, 4629, 1694, 4, 16, UNI_GEOMETRICSHAPESEXT } /* ingeometricshapesext */,
- { 40, 7603, 7809, 10, 1, UNI_IN__6 } /* presentin=6 */,
- { 2, 6234, 1414, 10, 3, UNI_BC__RLE } /* bidiclass=rle */,
- { 0, 8748, 8066, 7, 2, UNI_CCC__18 } /* ccc=ccc18 */,
- { 1, 5482, 6488, 4, 5, UNI_MAHJONG } /* inmahjong */,
- { 0, 8633, 9994, 7, 4, UNI_SC__LINA } /* script=lina */,
- { 12, 10058, 7877, 3, 2, UNI_NV__23 } /* nv=23 */,
- { 1, 9950, 1548, 3, 3, UNI_JG__HAH } /* jg=hah */,
- { 0, 7259, 434, 10, 6, UNI_WB__FO } /* wordbreak=format */,
- { 1, 10393, 134, 3, 4, UNI_M } /* gc=mark */,
- { 0, 9659, 7083, 4, 11, UNI_NAND } /* scx=nandinagari */,
- { 0, 6159, 7752, 13, 9, UNI_NV__1_SLASH_9 } /* numericvalue=1.111e-01 */,
- { 764, 9659, 10246, 4, 4, UNI_QAAI } /* scx=zinh */,
- { 6, 3181, 6077, 18, 4, UNI_DT__NONE } /* decompositiontype=none */,
- { 6, 10058, 8094, 3, 9, UNI_NV__17_SLASH_2 } /* nv=8.500e+00 */,
- { 260, 9659, 9335, 4, 6, UNI_LEPC } /* scx=lepcha */,
- { 1, 1067, 9741, 24, 3, UNI_CCC__214 } /* canonicalcombiningclass=214 */,
- { 0, 9141, 5892, 3, 4, UNI_XPOSIXALNUM } /* isalnum */,
- { 0, 9401, 0, 4, 0, UNI_TELU } /* telu */,
- { 4, 7475, 2328, 3, 11, UNI_MTEI } /* sc=meeteimayek */,
- { 2, 9934, 24, 4, 1, UNI_GCB__L } /* hst=l */,
- { 0, 9141, 3650, 3, 16, UNI_ALCHEMICAL } /* isalchemicalsymbols */,
- { 0, 6995, 3, 11, 1, UNI_LB__LF } /* linebreak=lf */,
- { 1, 7259, 0, 10, 0, UNI_wb_values_index } /* wordbreak= */,
- { 26, 6234, 460, 10, 2, UNI_BC__ES } /* bidiclass=es */,
- { 1294, 7048, 288, 6, 29, UNI_MISCMATHSYMBOLSA } /* inmiscellaneousmathematicalsymbolsa */,
- { 96, 9227, 0, 6, 0, UNI_bidim_values_index } /* bidim= */,
- { 2074, 9377, 0, 6, 0, UNI_patws_values_index } /* patws= */,
- { 265, 4119, 7105, 16, 11, UNI_NO } /* generalcategory=othernumber */,
- { 1137, 8449, 5030, 4, 8, UNI_TAMILSUP } /* blk=tamilsup */,
- { 3, 9990, 1502, 3, 13, UNI_LB__CM } /* lb=combiningmark */,
- { 1, 7475, 10042, 3, 4, UNI_NBAT } /* sc=nbat */,
- { 2, 185, 2028, 2, 21, UNI_LOE } /* islogicalorderexception */,
- { 2347, 9990, 1201, 3, 26, UNI_LB__CJ } /* lb=conditionaljapanesestarter */,
- { 80, 8633, 2692, 7, 6, UNI_BRAH } /* script=brahmi */,
- { 1, 2313, 0, 4, 0, UNI_MULT } /* mult */,
- { 4, 8748, 7943, 7, 2, UNI_CCC__16 } /* ccc=ccc16 */,
- { 16, 10058, 7763, 3, 2, UNI_NV__25 } /* nv=25 */,
- { 0, 7603, 7878, 10, 3, UNI_IN__3_DOT_1 } /* presentin=3.1 */,
- { 16, 9822, 32, 3, 2, UNI_BC__CS } /* bc=cs */,
- { 993, 4503, 0, 9, 0, UNI_TANGUTSUP } /* tangutsup */,
- { 0, 8748, 10325, 4, 2, UNI_CCC__34 } /* ccc=34 */,
- { 1, 9414, 26, 5, 1, UNI_IDEO } /* ideo=y */,
- { 8, 7603, 7835, 10, 1, UNI_IN__8 } /* presentin=8 */,
- { 1, 3425, 0, 8, 0, UNI_DINGBATS } /* dingbats */,
- { 4, 9874, 0, 4, 0, UNI_dep_values_index } /* dep= */,
- { 195, 4878, 7062, 3, 10, UNI_MYANMAREXTA } /* inmyanmarexta */,
- { 33, 9659, 8337, 4, 9, UNI_OUGR } /* scx=olduyghur */,
- { 139, 7513, 1059, 10, 2, -UNI_XPOSIXLOWER } /* lowercase=no */,
- { 256, 9579, 5032, 4, 3, UNI_INTAMIL } /* intamil */,
- { 116, 7610, 10477, 3, 3, UNI_IN__6_DOT_3 } /* in=v63 */,
- { 8, 3523, 10062, 17, 4, UNI_OGAM } /* scriptextensions=ogam */,
- { 1, 8881, 3990, 3, 16, UNI_SUTTONSIGNWRITING } /* issuttonsignwriting */,
- { 1, 2653, 3606, 20, 7, UNI_VO__R } /* verticalorientation=rotated */,
- { 4, 1094, 0, 27, 0, UNI_ENCLOSEDCJK } /* enclosedcjklettersandmonths */,
- { 71, 8748, 10279, 4, 3, UNI_CCC__129 } /* ccc=129 */,
- { 1, 8449, 723, 4, 30, UNI_CJKEXTG } /* blk=cjkunifiedideographsextensiong */,
- { 0, 6159, 7770, 13, 9, UNI_NV__1_SLASH_80 } /* numericvalue=1.250e-02 */,
- { 0, 185, 5919, 2, 5, UNI_EBASE } /* isebase */,
- { 0, 9659, 4231, 4, 7, UNI_LINB } /* scx=linearb */,
- { 0, 4790, 8649, 13, 8, UNI_JG__SWASHKAF } /* joininggroup=swashkaf */,
- { 0, 9990, 0, 3, 0, UNI_lb_values_index } /* lb= */,
- { 17, 8457, 3199, 6, 10, UNI_INDEVANAGARI } /* block=devanagari */,
- { 2, 1907, 0, 5, 0, UNI_TITLE } /* title */,
- { 3, 9680, 10186, 4, 4, UNI_IDC } /* idc=true */,
- { 0, 8457, 362, 6, 21, UNI_MATHOPERATORS } /* block=mathematicaloperators */,
- { 72, 8633, 7644, 8, 9, UNI_SAUR } /* script=saurashtra */,
- { 20, 8874, 10095, 3, 3, UNI_PHNX } /* isphnx */,
- { 833, 9878, 1, 4, 1, -UNI_DIA } /* dia=n */,
- { 0, 8449, 9233, 4, 6, UNI_INCARIAN } /* blk=carian */,
- { 70, 10393, 1105, 3, 6, UNI_L } /* gc=letter */,
- { 3, 2094, 0, 22, 0, UNI_MODIFIERLETTERS } /* spacingmodifierletters */,
- { 0, 185, 574, 3, 29, UNI_CJKEXTB } /* iscjkunifiedideographsextensionb */,
- { 0, 5912, 1059, 13, 2, -UNI_GRBASE } /* graphemebase=no */,
- { 7, 9782, 7941, 4, 3, UNI_AGE__4_DOT_1 } /* age=4.1 */,
- { 40, 9990, 25, 3, 2, UNI_LB__SY } /* lb=sy */,
- { 0, 10054, 0, 4, 0, UNI_NSHU } /* nshu */,
- { 1, 1741, 3254, 3, 10, UNI_ETHIOPICSUP } /* inethiopicsup */,
- { 3, 6159, 7986, 13, 9, UNI_NV__7_SLASH_12 } /* numericvalue=5.833e-01 */,
- { 1, 7475, 527, 3, 3, UNI_SC__HAN } /* sc=han */,
- { 1280, 7475, 8521, 3, 8, UNI_SC__GURU } /* sc=gurmukhi */,
- { 0, 10058, 7950, 3, 9, UNI_NV__9_SLASH_2 } /* nv=4.500e+00 */,
- { 0, 9014, 0, 7, 0, UNI_OSMA } /* osmanya */,
- { 0, 10242, 0, 4, 0, UNI_ZANB } /* zanb */,
- { 0, 7610, 10330, 3, 3, UNI_IN__3_DOT_2 } /* in=3.2 */,
- { 15, 8625, 0, 8, 0, UNI_radical_values_index } /* radical= */,
- { 0, 6995, 5456, 10, 14, UNI_LB__BK } /* linebreak=mandatorybreak */,
- { 2, 4925, 10498, 14, 3, UNI_NFCQC__Y } /* nfcquickcheck=yes */,
- { 2177, 6995, 0, 10, 0, UNI_lb_values_index } /* linebreak= */,
- { 1, 9950, 10435, 3, 3, UNI_JG__TAH } /* jg=tah */,
- { 0, 9299, 986, 3, 16, UNI_VS } /* isvariationselector */,
- { 0, 9950, 5470, 3, 14, UNI_JG__MANICHAEANAYIN } /* jg=manichaeanayin */,
- { 7, 10130, 2371, 4, 6, UNI_SC__SINH } /* sc=sinhala */,
- { 1, 6852, 0, 11, 0, UNI_DOMINO } /* dominotiles */,
- { 12, 3253, 0, 11, 0, UNI_ETHIOPICSUP } /* ethiopicsup */,
- { 2, 10058, 7923, 3, 9, UNI_NV__3_SLASH_80 } /* nv=3.750e-02 */,
- { 66, 8449, 9534, 4, 5, UNI_INDOGRA } /* blk=dogra */,
- { 2, 9858, 0, 4, 0, UNI_cwl_values_index } /* cwl= */,
- { 2, 8457, 8561, 6, 8, UNI_JAMOEXTB } /* block=jamoextb */,
- { 0, 8449, 4023, 4, 16, UNI_ARABICSUP } /* blk=arabicsupplement */,
- { 92, 4119, 24, 16, 1, UNI_L } /* generalcategory=l */,
- { 2, 8449, 543, 4, 30, UNI_CJKEXTA } /* blk=cjkunifiedideographsextensiona */,
- { 2, 9906, 0, 4, 0, UNI_GREK } /* grek */,
- { 939, 9554, 0, 4, 0, UNI_gcb_values_index } /* gcb= */,
- { 2, 9659, 6594, 4, 12, UNI_GONM } /* scx=masaramgondi */,
- { 0, 8457, 1550, 6, 24, UNI_HIGHPUSURROGATES } /* block=highprivateusesurrogates */,
- { 12, 8748, 9180, 7, 2, UNI_CCC__32 } /* ccc=ccc32 */,
- { 3, 9782, 8067, 4, 3, UNI_AGE__8 } /* age=8.0 */,
- { 3, 9413, 1, 6, 1, -UNI_UIDEO } /* uideo=n */,
- { 16, 7383, 0, 10, 0, UNI_CHRS } /* chorasmian */,
- { 0, 9659, 9043, 5, 6, UNI_SHRD } /* scx=sharada */,
- { 9, 8633, 10234, 7, 4, UNI_SC__YI } /* script=yiii */,
- { 0, 8457, 872, 6, 29, UNI_MISCARROWS } /* block=miscellaneoussymbolsandarrows */,
- { 2161, 8449, 3109, 4, 11, UNI_CHEROKEESUP } /* blk=cherokeesup */,
- { 0, 9866, 10498, 4, 3, UNI_CWU } /* cwu=yes */,
- { 0, 6159, 5834, 13, 8, UNI_NV__10000000 } /* numericvalue=10000000 */,
- { 29, 8633, 4359, 7, 7, UNI_SC__MYMR } /* script=myanmar */,
- { 17, 5925, 0, 13, 0, UNI_GREEKEXT } /* greekextended */,
- { 405, 9554, 10540, 4, 2, UNI_GCB__XX } /* gcb=xx */,
- { 1, 251, 0, 33, 0, UNI_DIACRITICALSEXT } /* combiningdiacriticalmarksextended */,
- { 360, 21, 5442, 2, 7, UNI_LISUSUP } /* inlisusup */,
- { 4, 3451, 0, 17, 0, UNI__PERL_PATWS } /* patternwhitespace */,
- { 2, 8874, 902, 3, 10, UNI_PHONETICEXT } /* isphoneticext */,
- { 0, 9950, 5582, 3, 14, UNI_JG__MANICHAEANYODH } /* jg=manichaeanyodh */,
- { 0, 8633, 8697, 7, 8, UNI_VITH } /* script=vithkuqi */,
- { 145, 317, 0, 33, 0, UNI_MISCMATHSYMBOLSB } /* miscellaneousmathematicalsymbolsb */,
- { 0, 6995, 9133, 10, 7, UNI_LB__XX } /* linebreak=unknown */,
- { 0, 3523, 10102, 17, 4, UNI_PRTI } /* scriptextensions=prti */,
- { 0, 8633, 4880, 7, 15, UNI_MERC } /* script=meroiticcursive */,
- { 39, 2939, 0, 9, 0, UNI_MONG } /* mongolian */,
- { 0, 8449, 5316, 4, 14, UNI_HIGHSURROGATES } /* blk=highsurrogates */,
- { 16, 8449, 4135, 4, 16, UNI_GEORGIANEXT } /* blk=georgianextended */,
- { 171, 8457, 7433, 6, 10, UNI_INDIVESAKURU } /* block=divesakuru */,
- { 8, 8874, 943, 3, 9, UNI_CO } /* isprivateuse */,
- { 1304, 8633, 1689, 7, 4, UNI_SC__PHAG } /* script=phag */,
- { 0, 3523, 8319, 17, 9, UNI_PERM } /* scriptextensions=oldpermic */,
- { 0, 3253, 0, 8, 0, UNI_ETHI } /* ethiopic */,
- { 1, 185, 1963, 3, 5, UNI_ZYYY } /* iscommon */,
- { 0, 4471, 0, 16, 0, UNI_SYRIACSUP } /* syriacsupplement */,
- { 0, 8449, 1738, 4, 14, UNI_LATINEXTA } /* blk=latinextendeda */,
- { 1068, 6159, 9167, 13, 6, UNI_NV__300000 } /* numericvalue=300000 */,
- { 1, 4790, 10435, 13, 3, UNI_JG__TAH } /* joininggroup=tah */,
- { 113, 6678, 529, 12, 2, UNI_NT__NU } /* numerictype=nu */,
- { 1, 9679, 10498, 5, 3, UNI_XIDC } /* xidc=yes */,
- { 0, 6995, 97, 10, 10, UNI_LB__AL } /* linebreak=alphabetic */,
- { 0, 9659, 2371, 5, 3, UNI_SINH } /* scx=sinh */,
- { 530, 8633, 9854, 7, 4, UNI_SC__CPRT } /* script=cprt */,
- { 1, 8748, 10325, 7, 2, UNI_CCC__34 } /* ccc=ccc34 */,
- { 6, 5860, 0, 13, 0, UNI_bidim_values_index } /* bidimirrored= */,
- { 0, 6606, 0, 12, 0, UNI_MATHALPHANUM } /* mathalphanum */,
- { 1, 9946, 2138, 3, 22, UNI_BYZANTINEMUSIC } /* isbyzantinemusicalsymbols */,
- { 1, 9413, 36, 6, 1, UNI_UIDEO } /* uideo=t */,
- { 0, 4715, 5659, 15, 7, UNI_EA__N } /* eastasianwidth=neutral */,
- { 32, 9659, 79, 4, 4, UNI_ARAB } /* scx=arab */,
- { 147, 21, 4215, 2, 6, UNI_LATIN1 } /* inlatin1 */,
- { 1, 3523, 7039, 17, 11, UNI_MEDF } /* scriptextensions=medefaidrin */,
- { 0, 9659, 2101, 4, 4, UNI_MODI } /* scx=modi */,
- { 1, 10058, 9710, 3, 3, UNI_NV__1_SLASH_6 } /* nv=1/6 */,
- { 17, 6438, 0, 12, 1, UNI_JT__U } /* joiningtype=u */,
- { 25, 8449, 2328, 4, 11, UNI_INMEETEIMAYEK } /* blk=meeteimayek */,
- { 3, 10026, 0, 3, 0, UNI_MRO } /* mro */,
- { 0, 4916, 2515, 4, 18, UNI_GLAGOLITICSUP } /* inglagoliticsupplement */,
- { 1, 7475, 9599, 3, 5, UNI_SC__LIMB } /* sc=limbu */,
- { 133, 3235, 26, 18, 1, UNI_EPRES } /* emojipresentation=y */,
- { 0, 8449, 2370, 4, 7, UNI_INSINHALA } /* blk=sinhala */,
- { 1056, 8449, 4685, 4, 15, UNI_DIACRITICALSEXT } /* blk=diacriticalsext */,
- { 0, 7610, 7841, 3, 2, UNI_IN__12 } /* in=12 */,
- { 0, 8457, 79, 6, 35, UNI_ARABICMATH } /* block=arabicmathematicalalphabeticsymbols */,
- { 0, 3343, 10498, 18, 3, UNI_IDSB } /* idsbinaryoperator=yes */,
- { 8, 8548, 501, 5, 5, UNI_POSIXPUNCT } /* posixpunct */,
- { 1, 9659, 5030, 4, 5, UNI_TAML } /* scx=tamil */,
- { 5, 8449, 3136, 4, 9, UNI_HALFMARKS } /* blk=halfmarks */,
- { 3134, 7475, 6486, 3, 4, UNI_SC__MAHJ } /* sc=mahj */,
- { 8, 7610, 8067, 3, 3, UNI_IN__8 } /* in=8.0 */,
- { 0, 8457, 4359, 6, 16, UNI_MYANMAREXTA } /* block=myanmarextendeda */,
- { 3, 7475, 10146, 3, 4, UNI_SC__TALE } /* sc=tale */,
- { 201, 1715, 0, 23, 0, UNI_COMPATJAMO } /* hangulcompatibilityjamo */,
- { 0, 3163, 0, 18, 0, UNI_COPTICEPACTNUMBERS } /* copticepactnumbers */,
- { 0, 7603, 7304, 10, 3, UNI_IN__5 } /* presentin=5.0 */,
- { 0, 9524, 0, 5, 0, UNI_cwcm_values_index } /* cwcm= */,
- { 67, 4119, 49, 16, 1, UNI_P } /* generalcategory=p */,
- { 21, 9946, 5694, 4, 14, UNI_BOPOMOFOEXT } /* isbopomofoextended */,
- { 2, 1574, 2633, 24, 20, UNI_INPC__TOPANDBOTTOMANDRIGHT } /* indicpositionalcategory=topandbottomandright */,
- { 1, 185, 10106, 2, 4, UNI_COPT } /* isqaac */,
- { 1, 9659, 416, 4, 4, UNI_EGYP } /* scx=egyp */,
- { 1, 1589, 5060, 9, 15, UNI_UPPERCASELETTER } /* category=uppercaseletter */,
- { 2179, 9659, 1738, 4, 5, UNI_LATN } /* scx=latin */,
- { 1, 9141, 4025, 4, 14, UNI_ARABICSUP } /* isarabicsupplement */,
- { 0, 7475, 10126, 3, 4, UNI_RUNR } /* sc=runr */,
- { 32, 8545, 2863, 3, 3, UNI_XIDS } /* isxids */,
- { 1954, 2996, 0, 4, 0, UNI_SUND } /* sund */,
- { 76, 10058, 10359, 3, 2, UNI_NV__37 } /* nv=37 */,
- { 2123, 6133, 0, 13, 0, UNI_MISCTECHNICAL } /* misctechnical */,
- { 0, 3181, 9359, 18, 6, UNI_DT__NAR } /* decompositiontype=narrow */,
- { 2, 9934, 6146, 4, 13, UNI_HST__NA } /* hst=notapplicable */,
- { 0, 6797, 9549, 11, 5, -UNI_XPOSIXALPHA } /* alphabetic=false */,
- { 1, 4119, 1807, 16, 1, UNI_Z } /* generalcategory=z */,
- { 0, 8449, 4087, 4, 16, UNI_CYPRIOTSYLLABARY } /* blk=cypriotsyllabary */,
- { 0, 9659, 9838, 4, 4, UNI_CAKM } /* scx=cakm */,
- { 95, 10086, 36, 4, 1, UNI_PCM } /* pcm=t */,
- { 2416, 8457, 8176, 7, 8, UNI_INBHAIKSUKI } /* block=bhaiksuki */,
- { 0, 8449, 6016, 4, 9, UNI_INMALAYALAM } /* blk=malayalam */,
- { 3, 8748, 3099, 4, 10, UNI_CCC__AR } /* ccc=aboveright */,
- { 1427, 3508, 1, 3, 41, UNI_UCASEXT } /* inunifiedcanadianaboriginalsyllabicsextended */,
- { 2, 185, 9347, 2, 4, UNI_LYCI } /* islyci */,
- { 106, 184, 0, 34, 0, UNI_MISCPICTOGRAPHS } /* miscellaneoussymbolsandpictographs */,
- { 2791, 4878, 7041, 4, 9, UNI_INMEDEFAIDRIN } /* inmedefaidrin */,
- { 6, 185, 10110, 2, 4, UNI_QAAI } /* isqaai */,
- { 46617, 9782, 10202, 4, 4, UNI_AGE__12_DOT_1 } /* age=v121 */,
- { 0, 6159, 7869, 13, 9, UNI_NV__1_SLASH_40 } /* numericvalue=2.500e-02 */,
- { 3, 7048, 5306, 4, 2, UNI_INMIAO } /* inmiao */,
- { 42, 4215, 0, 6, 0, UNI_LATIN1 } /* latin1 */,
- { 1, 8741, 5666, 7, 8, UNI_BRAI } /* braillepatterns */,
- { 0, 9141, 1041, 3, 26, UNI_ANCIENTGREEKMUSIC } /* isancientgreekmusicalnotation */,
- { 2053, 9028, 26, 7, 1, UNI_PATSYN } /* patsyn=y */,
- { 0, 2072, 10186, 22, 4, UNI__PERL_NCHAR } /* noncharactercodepoint=true */,
- { 0, 185, 8193, 2, 9, UNI_EMOTICONS } /* isemoticons */,
- { 624, 9862, 1059, 4, 2, -UNI_CWT } /* cwt=no */,
- { 2, 9990, 6907, 3, 11, UNI_LB__EX } /* lb=exclamation */,
- { 0, 218, 8139, 6, 9, UNI__PERL_ANY_FOLDS } /* _perl_any_folds */,
- { 17, 9950, 5309, 3, 3, UNI_JG__HEH } /* jg=heh */,
- { 65, 185, 362, 2, 21, UNI_MATHOPERATORS } /* ismathematicaloperators */,
- { 0, 9950, 5494, 3, 4, UNI_JG__BETH } /* jg=beth */,
- { 2157, 1589, 4391, 9, 16, UNI_PO } /* category=otherpunctuation */,
- { 2019, 1620, 4472, 3, 15, UNI_SYRIACSUP } /* insyriacsupplement */,
- { 11, 7475, 9133, 3, 7, UNI_ZZZZ } /* sc=unknown */,
- { 1, 8755, 0, 7, 0, UNI_CJKEXTA } /* cjkexta */,
- { 0, 8449, 8846, 4, 7, UNI_INHANUNOO } /* blk=hanunoo */,
- { 1, 185, 8923, 2, 7, UNI_MAND } /* ismandaic */,
- { 19, 8937, 0, 7, 0, UNI_MULT } /* multani */,
- { 0, 185, 2328, 2, 14, UNI_MEETEIMAYEKEXT } /* ismeeteimayekext */,
- { 0, 1279, 0, 8, 0, UNI_KANA } /* katakana */,
- { 4, 7610, 10202, 3, 4, UNI_IN__12_DOT_1 } /* in=v121 */,
- { 0, 7475, 79, 3, 6, UNI_SC__ARAB } /* sc=arabic */,
- { 0, 7663, 0, 10, 0, UNI_SUPARROWSA } /* suparrowsa */,
- { 2337, 8641, 0, 8, 0, UNI_SPECIALS } /* specials */,
- { 2, 3523, 10074, 17, 4, UNI_ORYA } /* scriptextensions=orya */,
- { 0, 1589, 49, 9, 1, UNI_P } /* category=p */,
- { 0, 9659, 2939, 4, 9, UNI_MONG } /* scx=mongolian */,
- { 1026, 8449, 3325, 4, 8, UNI_INGEORGIAN } /* blk=georgian */,
- { 20, 3508, 1, 3, 42, UNI_UCASEXTA } /* inunifiedcanadianaboriginalsyllabicsextendeda */,
- { 4, 9659, 8310, 4, 9, UNI_ITAL } /* scx=olditalic */,
- { 16, 10130, 1574, 4, 3, UNI_SC__SIND } /* sc=sind */,
- { 8, 4878, 2330, 4, 19, UNI_MEETEIMAYEKEXT } /* inmeeteimayekextensions */,
- { 14, 10393, 7, 3, 1, UNI_C } /* gc=c */,
- { 0, 8457, 1962, 6, 22, UNI_INDICNUMBERFORMS } /* block=commonindicnumberforms */,
- { 0, 8449, 1253, 4, 26, UNI_HALFANDFULLFORMS } /* blk=halfwidthandfullwidthforms */,
- { 32, 8633, 10110, 7, 4, UNI_SC__QAAI } /* script=qaai */,
- { 0, 9287, 0, 6, 0, UNI_HATR } /* hatran */,
- { 0, 8449, 8529, 4, 8, UNI_INHIRAGANA } /* blk=hiragana */,
- { 0, 9305, 1, 6, 1, -UNI_JOINC } /* joinc=n */,
- { 1144, 9383, 1, 6, 1, -UNI_QMARK } /* qmark=n */,
- { 386, 2844, 6146, 19, 13, UNI_HST__NA } /* hangulsyllabletype=notapplicable */,
- { 1, 9778, 0, 4, 0, UNI_ADLM } /* adlm */,
- { 9, 3523, 9233, 17, 6, UNI_CARI } /* scriptextensions=carian */,
- { 256, 6774, 0, 11, 0, UNI_XIDC } /* xidcontinue */,
- { 0, 9950, 88, 3, 2, UNI_JG__HE } /* jg=he */,
- { 0, 8797, 0, 7, 0, UNI_CJKEXTG } /* cjkextg */,
- { 0, 6995, 84, 10, 2, UNI_LB__CM } /* linebreak=cm */,
- { 8, 4442, 0, 13, 0, UNI_MATHOPERATORS } /* mathoperators */,
- { 0, 3523, 1279, 17, 8, UNI_KANA } /* scriptextensions=katakana */,
- { 0, 8457, 895, 6, 6, UNI_ARROWS } /* block=arrows */,
- { 0, 9950, 4263, 3, 16, UNI_JG__MANICHAEANDALETH } /* jg=manichaeandaleth */,
- { 0, 6995, 6918, 10, 11, UNI_LB__IN } /* linebreak=inseparable */,
- { 277, 8373, 0, 9, 0, UNI_SAMR } /* samaritan */,
- { 1, 4119, 1624, 16, 2, UNI_PS } /* generalcategory=ps */,
- { 20, 9782, 7904, 4, 2, UNI_AGE__13 } /* age=13 */,
- { 1158, 2101, 0, 15, 0, UNI_MODIFIERLETTERS } /* modifierletters */,
- { 0, 383, 0, 33, 0, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* supplementalsymbolsandpictographs */,
- { 0, 6995, 25, 10, 2, UNI_LB__SY } /* linebreak=sy */,
- { 1570, 3523, 3997, 18, 3, UNI_SGNW } /* scriptextensions=sgnw */,
- { 640, 9874, 3, 4, 1, -UNI_DEP } /* dep=f */,
- { 19, 1620, 3037, 5, 16, UNI_SUPARROWSB } /* insupplementalarrowsb */,
- { 0, 8633, 3700, 7, 17, UNI_AGHB } /* script=caucasianalbanian */,
- { 1, 7475, 3199, 3, 10, UNI_SC__DEVA } /* sc=devanagari */,
- { 0, 9685, 26, 4, 1, UNI_IDS } /* ids=y */,
- { 0, 79, 0, 6, 0, UNI_ARAB } /* arabic */,
- { 0, 1067, 10300, 24, 3, UNI_CCC__B } /* canonicalcombiningclass=220 */,
- { 0, 8529, 0, 8, 0, UNI_HIRA } /* hiragana */,
- { 1, 6995, 59, 10, 2, UNI_LB__ID } /* linebreak=id */,
- { 129, 1574, 3577, 24, 18, UNI_INPC__TOPANDLEFTANDRIGHT } /* indicpositionalcategory=topandleftandright */,
- { 16, 8173, 8434, 3, 7, UNI_INBALINESE } /* inbalinese */,
- { 0, 9890, 1314, 3, 7, UNI_DT__INIT } /* dt=initial */,
- { 148, 8633, 10106, 7, 4, UNI_SC__COPT } /* script=qaac */,
- { 21, 3523, 2513, 17, 4, UNI_GLAG } /* scriptextensions=glag */,
- { 14, 6159, 9203, 13, 4, UNI_NV__8000 } /* numericvalue=8000 */,
- { 0, 872, 0, 29, 0, UNI_MISCARROWS } /* miscellaneoussymbolsandarrows */,
- { 1, 8449, 8979, 4, 7, UNI_NB } /* blk=noblock */,
- { 0, 10489, 443, 3, 2, UNI_VO__TR } /* vo=tr */,
- { 0, 3523, 527, 17, 3, UNI_HAN } /* scriptextensions=han */,
- { 1061, 9659, 3109, 4, 8, UNI_CHER } /* scx=cherokee */,
- { 3195, 4119, 7693, 16, 10, UNI_CN } /* generalcategory=unassigned */,
- { 0, 9659, 10090, 4, 4, UNI_PHLP } /* scx=phlp */,
- { 1, 3523, 9898, 17, 4, UNI_GONG } /* scriptextensions=gong */,
- { 0, 2868, 4025, 4, 7, UNI_ARABICSUP } /* inarabicsup */,
- { 1272, 10495, 5114, 3, 2, UNI_WB__SQ } /* wb=sq */,
- { 3, 9659, 8665, 4, 8, UNI_TFNG } /* scx=tifinagh */,
- { 2, 2371, 2827, 4, 17, UNI_JAMOEXTB } /* inhanguljamoextendedb */,
- { 11, 9659, 9014, 4, 4, UNI_OSMA } /* scx=osma */,
- { 0, 8633, 9323, 7, 4, UNI_SC__KHOJ } /* script=khoj */,
- { 1, 8633, 5301, 7, 4, UNI_CHAM } /* script=cham */,
- { 1550, 222, 0, 2, 0, UNI_CASEDLETTER } /* l_ */,
- { 0, 8449, 7576, 4, 7, UNI_INSOGDIAN } /* blk=sogdian */,
- { 1, 9579, 9094, 5, 4, UNI_INTAGALOG } /* intagalog */,
- { 0, 6995, 10079, 10, 2, UNI_LB__SG } /* linebreak=sg */,
- { 0, 9215, 0, 6, 0, UNI_alpha_values_index } /* alpha= */,
- { 2, 9930, 0, 4, 0, UNI_HMNP } /* hmnp */,
- { 0, 8633, 9669, 7, 5, UNI_SC__TAKR } /* script=takri */,
- { 2132, 9524, 1, 5, 1, -UNI_CWCM } /* cwcm=n */,
- { 0, 4940, 0, 15, 0, UNI_nfkcqc_values_index } /* nfkcquickcheck= */,
- { 0, 3523, 9994, 17, 4, UNI_LINA } /* scriptextensions=lina */,
- { 2064, 1574, 4702, 4, 13, UNI_DIACRITICALSSUP } /* indiacriticalssup */,
- { 0, 8881, 4472, 3, 5, UNI_SYRC } /* issyriac */,
- { 3, 6995, 21, 10, 2, UNI_LB__IN } /* linebreak=in */,
- { 2074, 3523, 7573, 17, 10, UNI_SOGO } /* scriptextensions=oldsogdian */,
- { 1, 8449, 284, 4, 33, UNI_MISCMATHSYMBOLSA } /* blk=miscellaneousmathematicalsymbolsa */,
- { 2, 10058, 8066, 3, 2, UNI_NV__18 } /* nv=18 */,
- { 0, 8449, 2958, 4, 19, UNI_OTTOMANSIYAQNUMBERS } /* blk=ottomansiyaqnumbers */,
- { 0, 1589, 107, 9, 6, UNI_S } /* category=symbol */,
- { 0, 1067, 9167, 24, 2, UNI_CCC__30 } /* canonicalcombiningclass=30 */,
- { 1056, 9659, 9489, 4, 5, UNI_BATK } /* scx=batak */,
- { 288, 6596, 16, 3, 1, UNI_SARB } /* sarb */,
- { 0, 9554, 7006, 4, 3, UNI_LB__H3 } /* gcb=lvt */,
- { 0, 7475, 2433, 3, 20, UNI_HLUW } /* sc=anatolianhieroglyphs */,
- { 518, 8930, 0, 4, 0, UNI_MARC } /* marc */,
- { 25, 9950, 4279, 3, 16, UNI_JG__MANICHAEANLAMEDH } /* jg=manichaeanlamedh */,
- { 0, 3523, 8465, 17, 8, UNI_BOPO } /* scriptextensions=bopomofo */,
- { 0, 9862, 0, 3, 0, UNI_CWT } /* cwt */,
- { 0, 8881, 2391, 3, 4, UNI_STERM } /* issterm */,
- { 133, 8633, 10166, 7, 4, UNI_SC__TGLG } /* script=tglg */,
- { 1, 185, 9275, 2, 6, UNI_GOTH } /* isgothic */,
- { 1, 633, 0, 30, 0, UNI_CJKEXTD } /* cjkunifiedideographsextensiond */,
- { 1, 1741, 3803, 3, 16, UNI_ETHIOPICEXTB } /* inethiopicextendedb */,
- { 257, 8874, 84, 3, 2, UNI_PCM } /* ispcm */,
- { 8, 7475, 10226, 3, 4, UNI_XPEO } /* sc=xpeo */,
- { 0, 185, 3325, 2, 4, UNI_GEOR } /* isgeor */,
- { 0, 9659, 10006, 4, 4, UNI_MEDF } /* scx=medf */,
- { 0, 3972, 0, 17, 0, UNI_SMALLFORMS } /* smallformvariants */,
- { 1, 185, 9982, 2, 4, UNI_LAO } /* islaoo */,
- { 0, 6428, 3129, 4, 16, UNI_HALFMARKS } /* incombininghalfmarks */,
- { 0, 2533, 0, 20, 0, UNI_PHLI } /* inscriptionalpahlavi */,
- { 0, 6159, 7923, 13, 9, UNI_NV__3_SLASH_80 } /* numericvalue=3.750e-02 */,
- { 4197, 8457, 7403, 6, 10, UNI_COMPATJAMO } /* block=compatjamo */,
- { 32, 9946, 6247, 3, 10, UNI_BIDIC } /* isbidicontrol */,
- { 14, 7475, 7713, 3, 10, UNI_WARA } /* sc=warangciti */,
- { 0, 8633, 9910, 7, 4, UNI_SC__GUJR } /* script=gujr */,
- { 0, 5919, 9549, 6, 5, -UNI_EBASE } /* ebase=false */,
- { 0, 10002, 0, 4, 0, UNI_loe_values_index } /* loe= */,
- { 0, 5482, 8932, 4, 5, UNI_INMARCHEN } /* inmarchen */,
- { 2052, 3523, 10038, 17, 4, UNI_NARB } /* scriptextensions=narb */,
- { 1, 3631, 0, 18, 0, UNI_vs_values_index } /* variationselector= */,
- { 4151, 1040, 0, 27, 0, UNI_ANCIENTGREEKMUSIC } /* ancientgreekmusicalnotation */,
- { 0, 6159, 10518, 13, 2, UNI_NV__48 } /* numericvalue=48 */,
- { 0, 8633, 9484, 7, 4, UNI_BAMU } /* script=bamu */,
- { 4, 10058, 7841, 3, 2, UNI_NV__12 } /* nv=12 */,
- { 14, 1067, 7763, 27, 2, UNI_CCC__25 } /* canonicalcombiningclass=ccc25 */,
- { 0, 6775, 26, 11, 1, UNI_IDC } /* idcontinue=y */,
- { 22, 8457, 7061, 6, 11, UNI_MYANMAREXTA } /* block=myanmarexta */,
- { 161, 3523, 8202, 17, 9, UNI_QAAI } /* scriptextensions=inherited */,
- { 0, 9659, 8473, 4, 4, UNI_BUGI } /* scx=bugi */,
- { 4224, 3508, 8682, 3, 7, UNI_UCASEXTA } /* inucasexta */,
- { 0, 185, 2750, 3, 18, UNI_COUNTINGROD } /* iscountingrodnumerals */,
- { 0, 1620, 814, 3, 29, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* insymbolsandpictographsextendeda */,
- { 0, 8890, 3463, 5, 5, UNI_XPOSIXSPACE } /* xperlspace */,
- { 0, 1830, 26, 22, 1, UNI_CWCF } /* changeswhencasefolded=y */,
- { 85, 573, 0, 30, 0, UNI_CJKEXTB } /* cjkunifiedideographsextensionb */,
- { 517, 4071, 0, 16, 0, UNI_PE } /* closepunctuation */,
- { 3, 8881, 9064, 3, 3, UNI_SOYO } /* issoyo */,
- { 2060, 5482, 6488, 4, 10, UNI_MAHJONG } /* inmahjongtiles */,
- { 3, 185, 4343, 2, 16, UNI_MISCMATHSYMBOLSB } /* ismiscmathsymbolsb */,
- { 27, 3523, 2513, 17, 10, UNI_GLAG } /* scriptextensions=glagolitic */,
- { 90, 3523, 2768, 17, 19, UNI_EGYP } /* scriptextensions=egyptianhieroglyphs */,
- { 0, 7475, 9914, 3, 4, UNI_SC__GURU } /* sc=guru */,
- { 0, 7423, 0, 10, 0, UNI_dia_values_index } /* diacritic= */,
- { 4, 10393, 440, 3, 7, UNI_XPOSIXCNTRL } /* gc=control */,
- { 0, 7610, 10357, 3, 3, UNI_IN__6_DOT_3 } /* in=6.3 */,
- { 5, 8633, 7573, 7, 10, UNI_SOGO } /* script=oldsogdian */,
- { 3595, 3523, 7216, 18, 3, UNI_SYLO } /* scriptextensions=sylo */,
- { 1, 9559, 3, 5, 1, -UNI_IDSB } /* idsb=f */,
- { 0, 1334, 10186, 21, 4, UNI_CE } /* compositionexclusion=true */,
- { 1025, 9950, 4311, 3, 16, UNI_JG__MANICHAEANTWENTY } /* jg=manichaeantwenty */,
- { 86, 4423, 5, 15, 1, UNI_SB__SE } /* sentencebreak=se */,
- { 65, 8804, 10498, 7, 3, UNI_COMPEX } /* compex=yes */,
- { 923, 1761, 0, 23, 0, UNI_SHORTHANDFORMATCONTROLS } /* shorthandformatcontrols */,
- { 0, 1890, 36, 6, 1, UNI_CASED } /* cased=t */,
- { 0, 7534, 2, 5, 1, UNI_CARI } /* iscari */,
- { 1794, 296, 0, 2, 0, UNI_SM } /* sm */,
- { 0, 8449, 251, 4, 33, UNI_DIACRITICALSEXT } /* blk=combiningdiacriticalmarksextended */,
- { 0, 8449, 3053, 4, 19, UNI_SUPARROWSC } /* blk=supplementalarrowsc */,
- { 528, 185, 2939, 2, 12, UNI_MONGOLIANSUP } /* ismongoliansup */,
- { 0, 6775, 9549, 11, 5, -UNI_IDC } /* idcontinue=false */,
- { 0, 185, 3110, 3, 10, UNI_CHEROKEESUP } /* ischerokeesup */,
- { 163, 8625, 10186, 8, 4, UNI_RADICAL } /* radical=true */,
- { 7, 4790, 6068, 13, 13, UNI_JG__MANICHAEANONE } /* joininggroup=manichaeanone */,
- { 5, 5666, 0, 14, 0, UNI_patsyn_values_index } /* patternsyntax= */,
- { 0, 7475, 1689, 3, 4, UNI_SC__PHAG } /* sc=phag */,
- { 1, 10058, 7940, 3, 2, UNI_NV__14 } /* nv=14 */,
- { 5, 9414, 10186, 5, 4, UNI_IDEO } /* ideo=true */,
- { 3, 9470, 0, 4, 0, UNI_hex_values_index } /* hex= */,
- { 0, 6428, 634, 3, 29, UNI_CJKEXTD } /* incjkunifiedideographsextensiond */,
- { 138, 3523, 7483, 17, 4, UNI_KHAR } /* scriptextensions=khar */,
- { 0, 8449, 7061, 4, 11, UNI_MYANMAREXTA } /* blk=myanmarexta */,
- { 0, 8457, 5148, 6, 14, UNI_ANCIENTSYMBOLS } /* block=ancientsymbols */,
- { 11, 185, 44, 3, 15, UNI_CJKCOMPAT } /* iscjkcompatibility */,
- { 0, 7610, 10456, 3, 3, UNI_IN__4_DOT_1 } /* in=v41 */,
- { 0, 9659, 2433, 4, 20, UNI_HLUW } /* scx=anatolianhieroglyphs */,
- { 0, 10495, 4430, 3, 2, UNI_WB__EB } /* wb=eb */,
- { 0, 6159, 7304, 13, 1, UNI_NV__5 } /* numericvalue=5 */,
- { 65, 1918, 9549, 22, 5, -UNI_CWU } /* changeswhenuppercased=false */,
- { 1, 9539, 9549, 5, 5, -UNI_EMOD } /* emod=false */,
- { 2312, 9141, 5163, 3, 12, UNI_POSIXXDIGIT } /* isasciihexdigit */,
- { 2, 185, 4700, 2, 15, UNI_DIACRITICALSSUP } /* isdiacriticalssup */,
- { 3131, 3523, 9353, 17, 4, UNI_LYDI } /* scriptextensions=lydi */,
- { 1, 8457, 985, 6, 18, UNI_INVS } /* block=variationselectors */,
- { 0, 9659, 10146, 4, 4, UNI_TALE } /* scx=tale */,
- { 0, 3523, 4880, 17, 15, UNI_MERC } /* scriptextensions=meroiticcursive */,
- { 1, 9950, 2721, 3, 3, UNI_JG__YEH } /* jg=yeh */,
- { 1, 9529, 0, 5, 0, UNI_dash_values_index } /* dash= */,
- { 0, 9990, 4055, 3, 16, UNI_LB__CP } /* lb=closeparenthesis */,
- { 0, 8449, 4151, 4, 16, UNI_HALFANDFULLFORMS } /* blk=halfandfullforms */,
- { 1605, 9659, 8657, 4, 4, UNI_TAGB } /* scx=tagb */,
- { 0, 8457, 7182, 6, 11, UNI_INSORASOMPENG } /* block=sorasompeng */,
- { 521, 6717, 210, 4, 2, UNI_TOTO } /* istoto */,
- { 0, 9659, 9035, 4, 7, UNI_PHAG } /* scx=phagspa */,
- { 3592, 10495, 7160, 3, 11, UNI_WB__SQ } /* wb=singlequote */,
- { 2091, 6159, 10510, 13, 2, UNI_NV__44 } /* numericvalue=44 */,
- { 0, 185, 416, 2, 4, UNI_EGYP } /* isegyp */,
- { 32, 113, 0, 2, 0, UNI_SC } /* sc */,
- { 0, 8818, 0, 4, 0, UNI_ELBA } /* elba */,
- { 0, 9946, 8442, 3, 7, UNI_BASS } /* isbassavah */,
- { 0, 9950, 8382, 3, 9, UNI_JG__SYRIACWAW } /* jg=syriacwaw */,
- { 6, 9950, 7028, 3, 11, UNI_JG__MALAYALAMRA } /* jg=malayalamra */,
- { 1, 21, 8561, 2, 8, UNI_JAMOEXTB } /* injamoextb */,
- { 2049, 6428, 574, 3, 29, UNI_CJKEXTB } /* incjkunifiedideographsextensionb */,
- { 1606, 3217, 0, 13, 0, UNI_EMOD } /* emojimodifier */,
- { 0, 10393, 501, 3, 5, UNI_P } /* gc=punct */,
- { 4, 8449, 0, 4, 43, UNI_UCASEXTA } /* blk=unifiedcanadianaboriginalsyllabicsextendeda */,
- { 17, 7048, 876, 6, 25, UNI_MISCARROWS } /* inmiscellaneoussymbolsandarrows */,
- { 0, 9982, 0, 4, 0, UNI_LAO } /* laoo */,
- { 10, 10094, 0, 4, 0, UNI_PHNX } /* phnx */,
- { 0, 9890, 10429, 3, 3, UNI_DT__SML } /* dt=sml */,
- { 2, 10058, 9726, 3, 4, UNI_NV__11_SLASH_2 } /* nv=11/2 */,
- { 4, 3523, 79, 17, 6, UNI_ARAB } /* scriptextensions=arabic */,
- { 5, 185, 843, 2, 22, UNI_ENCLOSEDIDEOGRAPHICSUP } /* isenclosedideographicsup */,
- { 24, 9561, 9007, 3, 7, UNI_SB__LE } /* sb=oletter */,
- { 2069, 7475, 4776, 4, 14, UNI_ARMI } /* sc=imperialaramaic */,
- { 0, 9341, 3, 6, 1, -UNI_XPOSIXLOWER } /* lower=f */,
- { 33, 7373, 9515, 10, 4, UNI_XPOSIXCNTRL } /* category=cntrl */,
- { 0, 2768, 0, 19, 0, UNI_EGYP } /* egyptianhieroglyphs */,
- { 56, 8449, 5951, 4, 6, UNI_IPAEXT } /* blk=ipaext */,
- { 0, 1574, 6834, 3, 5, UNI_DOMINO } /* indomino */,
- { 20, 1067, 2559, 24, 5, UNI_CCC__R } /* canonicalcombiningclass=right */,
- { 274, 5807, 359, 3, 3, UNI_ITAL } /* isital */,
- { 0, 3181, 7, 18, 3, UNI_DT__CAN } /* decompositiontype=can */,
- { 13, 21, 5428, 2, 14, UNI_LATINEXTG } /* inlatinextendedg */,
- { 1, 6995, 4071, 10, 16, UNI_LB__CL } /* linebreak=closepunctuation */,
- { 4, 8449, 1761, 4, 23, UNI_SHORTHANDFORMATCONTROLS } /* blk=shorthandformatcontrols */,
- { 0, 8465, 34, 8, 3, UNI_BOPOMOFOEXT } /* bopomofoext */,
- { 2, 8633, 9846, 7, 4, UNI_CHRS } /* script=chrs */,
- { 4096, 185, 3182, 2, 5, UNI_ECOMP } /* isecomp */,
- { 1, 9659, 10174, 4, 4, UNI_TIBT } /* scx=tibt */,
- { 0, 8457, 1738, 6, 9, UNI_LATINEXTE } /* block=latinexte */,
- { 1, 2116, 0, 15, 0, UNI_TRANSPORTANDMAP } /* transportandmap */,
- { 0, 8633, 9970, 7, 4, UNI_SC__KNDA } /* script=knda */,
- { 0, 8881, 0, 3, 0, UNI_S } /* iss */,
- { 0, 9659, 8175, 4, 9, UNI_BHKS } /* scx=bhaiksuki */,
- { 0, 1175, 9549, 26, 5, -UNI_CWKCF } /* changeswhennfkccasefolded=false */,
- { 2240, 6428, 8770, 3, 6, UNI_CJKEXTC } /* incjkextc */,
- { 8, 1598, 1305, 22, 25, UNI_INSC__CONSONANTINITIALPOSTFIXED } /* indicsyllabiccategory=consonantinitialpostfixed */,
- { 1, 8748, 7763, 4, 2, UNI_CCC__25 } /* ccc=25 */,
- { 642, 6159, 9460, 13, 4, UNI_NV__1_SLASH_12 } /* numericvalue=1/12 */,
- { 3, 7475, 3904, 3, 4, UNI_SC__MANI } /* sc=mani */,
- { 2, 5610, 26, 14, 1, UNI_NFDQC__Y } /* nfdquickcheck=y */,
- { 812, 9659, 1715, 4, 6, UNI_HANG } /* scx=hangul */,
- { 3, 5482, 514, 4, 29, UNI_MATHALPHANUM } /* inmathematicalalphanumericsymbols */,
- { 2, 21, 1738, 2, 23, UNI_LATINEXTADDITIONAL } /* inlatinextendedadditional */,
- { 1160, 8633, 8481, 7, 4, UNI_SC__DUPL } /* script=dupl */,
- { 273, 8881, 9050, 3, 6, UNI_SHAW } /* isshavian */,
- { 1, 1890, 1059, 6, 2, -UNI_CASED } /* cased=no */,
- { 128, 1620, 3027, 5, 7, UNI_SUPARROWSA } /* insuparrowsa */,
- { 0, 1067, 8048, 24, 2, UNI_CCC__17 } /* canonicalcombiningclass=17 */,
- { 600, 1620, 9057, 3, 6, UNI_INSIDDHAM } /* insiddham */,
- { 2412, 8449, 43, 4, 16, UNI_CJKCOMPAT } /* blk=cjkcompatibility */,
- { 18, 2825, 0, 19, 0, UNI_JAMOEXTB } /* hanguljamoextendedb */,
- { 322, 8193, 0, 9, 0, UNI_EMOTICONS } /* emoticons */,
- { 31, 9659, 9064, 5, 6, UNI_SOYO } /* scx=soyombo */,
- { 0, 3523, 9926, 17, 4, UNI_HMNG } /* scriptextensions=hmng */,
- { 142, 10058, 9161, 3, 6, UNI_NV__216000 } /* nv=216000 */,
- { 3075, 6995, 34, 10, 2, UNI_LB__EX } /* linebreak=ex */,
- { 24, 9347, 0, 6, 0, UNI_LYCI } /* lycian */,
- { 3, 6246, 0, 11, 0, UNI_BIDIC } /* bidicontrol */,
- { 0, 8547, 97, 6, 5, UNI_XPOSIXALPHA } /* xposixalpha */,
- { 0, 8449, 9239, 4, 6, UNI_INCHAKMA } /* blk=chakma */,
- { 3, 2363, 10083, 3, 3, UNI_OUGR } /* isougr */,
- { 9, 2146, 0, 14, 0, UNI_MUSIC } /* musicalsymbols */,
- { 0, 8355, 0, 4, 0, UNI_PAUC } /* pauc */,
- { 7, 9579, 9397, 4, 4, UNI_INTANGSA } /* intangsa */,
- { 0, 5018, 1908, 3, 4, UNI_TITLE } /* istitle */,
- { 13, 8449, 2939, 4, 12, UNI_MONGOLIANSUP } /* blk=mongoliansup */,
- { 0, 8457, 6198, 6, 12, UNI_ALPHABETICPF } /* block=alphabeticpf */,
- { 1333, 10393, 1348, 3, 2, UNI_UPPERCASELETTER } /* gc=lu */,
- { 2, 7475, 2692, 3, 6, UNI_BRAH } /* sc=brahmi */,
- { 0, 9659, 9126, 4, 7, UNI_TIRH } /* scx=tirhuta */,
- { 250, 6428, 8784, 3, 6, UNI_CJKEXTE } /* incjkexte */,
- { 0, 2868, 897, 4, 4, UNI_ARROWS } /* inarrows */,
- { 1, 9659, 3904, 4, 4, UNI_MANI } /* scx=mani */,
- { 1, 5018, 9127, 3, 3, UNI_TIRH } /* istirh */,
- { 5, 8633, 10074, 7, 4, UNI_SC__ORYA } /* script=orya */,
- { 90, 985, 0, 28, 0, UNI_VSSUP } /* variationselectorssupplement */,
- { 2109, 4119, 1348, 16, 2, UNI_UPPERCASELETTER } /* generalcategory=lu */,
- { 2, 1598, 2928, 22, 10, UNI_INSC__TONELETTER } /* indicsyllabiccategory=toneletter */,
- { 1, 7475, 6378, 3, 12, UNI_SC__GONG } /* sc=gunjalagondi */,
- { 0, 9659, 8846, 4, 7, UNI_HANO } /* scx=hanunoo */,
- { 2589, 6995, 4430, 10, 2, UNI_EBASE } /* linebreak=eb */,
- { 129, 8839, 26, 7, 1, UNI_GRBASE } /* grbase=y */,
- { 0, 7453, 10186, 8, 4, UNI_EXTPICT } /* extpict=true */,
- { 2141, 8457, 9014, 6, 7, UNI_INOSMANYA } /* block=osmanya */,
- { 1, 7271, 3, 8, 1, -UNI_IDS } /* idstart=f */,
- { 3235, 8457, 8790, 6, 7, UNI_CJKEXTF } /* block=cjkextf */,
- { 0, 5807, 6, 3, 2, UNI_IDC } /* isidc */,
- { 0, 2244, 0, 21, 0, UNI_gcb_values_index } /* graphemeclusterbreak= */,
- { 0, 7475, 4087, 3, 7, UNI_SC__CPRT } /* sc=cypriot */,
- { 71, 9281, 1, 6, 1, -UNI_GREXT } /* grext=n */,
- { 2848, 9469, 3, 5, 1, -UNI_POSIXXDIGIT } /* ahex=f */,
- { 38, 185, 8825, 2, 4, UNI_ELYM } /* iselym */,
- { 0, 5807, 8203, 3, 8, UNI_QAAI } /* isinherited */,
- { 0, 8449, 9063, 4, 7, UNI_INSOYOMBO } /* blk=soyombo */,
- { 1, 8457, 79, 6, 6, UNI_INARABIC } /* block=arabic */,
- { 0, 8457, 4700, 6, 15, UNI_DIACRITICALSSUP } /* block=diacriticalssup */,
- { 308, 3751, 0, 17, 0, UNI_CYRILLICEXTB } /* cyrillicextendedb */,
- { 4, 21, 4215, 2, 16, UNI_LATIN1 } /* inlatin1supplement */,
- { 0, 10058, 9449, 3, 5, UNI_NV__1_SLASH_160 } /* nv=1/160 */,
- { 8, 7473, 2928, 5, 10, UNI_INSC__TONELETTER } /* insc=toneletter */,
- { 4103, 7270, 1, 9, 1, -UNI_XIDS } /* xidstart=n */,
- { 4, 8457, 2094, 6, 22, UNI_MODIFIERLETTERS } /* block=spacingmodifierletters */,
- { 0, 9659, 2573, 4, 20, UNI_HMNP } /* scx=nyiakengpuachuehmong */,
- { 3, 21, 1738, 2, 14, UNI_LATINEXTA } /* inlatinextendeda */,
- { 2575, 10250, 0, 4, 0, UNI_ZYYY } /* zyyy */,
- { 0, 1148, 1, 27, 1, -UNI_PCM } /* prependedconcatenationmark=n */,
- { 0, 4790, 8497, 13, 8, UNI_JG__FARSIYEH } /* joininggroup=farsiyeh */,
- { 7, 6234, 10399, 10, 3, UNI_BC__LRE } /* bidiclass=lre */,
- { 3, 8457, 7050, 6, 11, UNI_MISCSYMBOLS } /* block=miscsymbols */,
- { 0, 8881, 1381, 3, 24, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* issymbolsandpictographsexta */,
- { 474, 9141, 7335, 4, 8, UNI_ARABICEXTA } /* isarabicexta */,
- { 26, 1067, 7353, 24, 10, UNI_CCC__BR } /* canonicalcombiningclass=belowright */,
- { 1, 8874, 3463, 7, 5, UNI_POSIXSPACE } /* isposixspace */,
- { 0, 8965, 48, 7, 1, UNI_NFCQC__M } /* nfkcqc=m */,
- { 0, 9782, 9730, 4, 4, UNI_AGE__12_DOT_1 } /* age=12.1 */,
- { 0, 10154, 0, 4, 0, UNI_TAML } /* taml */,
- { 262, 3523, 2101, 17, 4, UNI_MODI } /* scriptextensions=modi */,
- { 0, 8881, 4440, 3, 15, UNI_SUPMATHOPERATORS } /* issupmathoperators */,
- { 0, 10393, 1961, 3, 2, UNI_PC } /* gc=pc */,
- { 1, 7513, 1, 10, 1, -UNI_XPOSIXLOWER } /* lowercase=n */,
- { 2244, 185, 1941, 3, 18, UNI_CJKCOMPATIDEOGRAPHS } /* iscjkcompatideographs */,
- { 1, 9862, 1, 4, 1, -UNI_CWT } /* cwt=n */,
- { 1, 6159, 9191, 13, 5, UNI_NV__60000 } /* numericvalue=60000 */,
- { 1121, 118, 2535, 4, 18, UNI_ININSCRIPTIONALPAHLAVI } /* ininscriptionalpahlavi */,
- { 12, 3523, 4235, 18, 3, UNI_SARB } /* scriptextensions=sarb */,
- { 1, 8633, 10050, 7, 4, UNI_SC__NKO } /* script=nkoo */,
- { 1, 7563, 0, 10, 0, UNI_XPEO } /* oldpersian */,
- { 306, 2573, 0, 20, 0, UNI_HMNP } /* nyiakengpuachuehmong */,
- { 8, 8839, 10498, 7, 3, UNI_GRBASE } /* grbase=yes */,
- { 12, 9680, 1, 4, 1, -UNI_IDC } /* idc=n */,
- { 0, 185, 8839, 2, 6, UNI_GRBASE } /* isgrbase */,
- { 0, 6234, 2553, 10, 20, UNI_BC__LRE } /* bidiclass=lefttorightembedding */,
- { 0, 8457, 3015, 6, 19, UNI_SUPARROWSA } /* block=supplementalarrowsa */,
- { 29, 9365, 26, 6, 1, UNI_NFDQC__Y } /* nfdqc=y */,
- { 2184, 8449, 4985, 4, 15, UNI_SARB } /* blk=oldsoutharabian */,
- { 2, 1968, 0, 16, 0, UNI_INDICNUMBERFORMS } /* indicnumberforms */,
- { 2050, 8633, 416, 7, 4, UNI_EGYP } /* script=egyp */,
- { 0, 5919, 0, 5, 0, UNI_EBASE } /* ebase */,
- { 0, 9659, 9926, 4, 4, UNI_HMNG } /* scx=hmng */,
- { 0, 8853, 26, 7, 1, UNI_HYPHEN } /* hyphen=y */,
- { 2, 8748, 10519, 7, 2, UNI_CCC__84 } /* ccc=ccc84 */,
- { 0, 7610, 9730, 3, 4, UNI_IN__12_DOT_1 } /* in=12.1 */,
- { 1, 185, 2203, 3, 20, UNI_CYRILLICSUP } /* iscyrillicsupplementary */,
- { 2177, 10381, 67, 3, 1, UNI_EA__H } /* ea=h */,
- { 512, 9990, 7352, 3, 2, UNI_LB__BB } /* lb=bb */,
- { 5, 7703, 10498, 10, 3, UNI_XPOSIXUPPER } /* uppercase=yes */,
- { 0, 1589, 6208, 9, 2, UNI_PF } /* category=pf */,
- { 0, 5977, 0, 13, 0, UNI_KANAEXTB } /* kanaextendedb */,
- { 2067, 8457, 9233, 6, 6, UNI_INCARIAN } /* block=carian */,
- { 6, 8449, 1478, 4, 24, UNI_CJKSYMBOLS } /* blk=cjksymbolsandpunctuation */,
- { 0, 4550, 0, 15, 0, UNI_ARABICEXTA } /* arabicextendeda */,
- { 1077, 6774, 0, 12, 0, UNI_xidc_values_index } /* xidcontinue= */,
- { 0, 8741, 0, 4, 0, UNI_BRAI } /* brai */,
- { 17, 10393, 219, 3, 2, UNI_PE } /* gc=pe */,
- { 393, 9251, 3, 6, 1, -UNI_CWKCF } /* cwkcf=f */,
- { 1, 236, 0, 2, 0, UNI_LO } /* lo */,
- { 0, 6438, 0, 12, 0, UNI_jt_values_index } /* joiningtype= */,
- { 266, 185, 10042, 2, 4, UNI_NBAT } /* isnbat */,
- { 2, 5666, 1059, 14, 2, -UNI_PATSYN } /* patternsyntax=no */,
- { 112, 8874, 9645, 3, 4, UNI_XPOSIXPRINT } /* isprint */,
- { 0, 8449, 362, 4, 21, UNI_MATHOPERATORS } /* blk=mathematicaloperators */,
- { 0, 9335, 0, 4, 0, UNI_LEPC } /* lepc */,
- { 0, 9902, 0, 4, 0, UNI_GONM } /* gonm */,
- { 100, 6428, 116, 4, 33, UNI_DIACRITICALSFORSYMBOLS } /* incombiningdiacriticalmarksforsymbols */,
- { 15, 185, 1831, 3, 20, UNI_CWCF } /* ischangeswhencasefolded */,
- { 1462, 3469, 9549, 18, 5, -UNI_RI } /* regionalindicator=false */,
- { 0, 8457, 8346, 6, 9, UNI_PALM } /* block=palmyrene */,
- { 4, 8633, 10098, 7, 4, UNI_MIAO } /* script=plrd */,
- { 26, 5162, 10498, 14, 3, UNI_POSIXXDIGIT } /* asciihexdigit=yes */,
- { 0, 7603, 7932, 10, 3, UNI_IN__4 } /* presentin=4.0 */,
- { 0, 1283, 0, 4, 0, UNI_KANA } /* kana */,
- { 0, 5860, 0, 5, 0, UNI_BIDIM } /* bidim */,
- { 0, 8633, 9906, 7, 4, UNI_SC__GREK } /* script=grek */,
- { 0, 4895, 0, 15, 0, UNI_MISCPICTOGRAPHS } /* miscpictographs */,
- { 0, 9579, 4505, 4, 14, UNI_TANGUTSUP } /* intangutsupplement */,
- { 0, 9990, 3469, 3, 17, UNI_RI } /* lb=regionalindicator */,
- { 3628, 1646, 5000, 22, 4, UNI_BPT__O } /* bidipairedbrackettype=open */,
- { 0, 3523, 3199, 17, 10, UNI_DEVA } /* scriptextensions=devanagari */,
- { 4, 10393, 1075, 3, 2, UNI_CASEDLETTER } /* gc=lc */,
- { 0, 9659, 9050, 5, 6, UNI_SHAW } /* scx=shavian */,
- { 0, 8449, 5925, 4, 8, UNI_GREEKEXT } /* blk=greekext */,
- { 0, 4715, 1265, 15, 9, UNI_EA__F } /* eastasianwidth=fullwidth */,
- { 6, 3523, 10214, 17, 3, UNI_VAI } /* scriptextensions=vai */,
- { 1050, 3523, 9918, 17, 4, UNI_HANO } /* scriptextensions=hano */,
- { 1, 10381, 1, 3, 1, UNI_EA__N } /* ea=n */,
- { 2051, 8958, 48, 6, 1, UNI_NFCQC__M } /* nfcqc=m */,
- { 6, 7610, 7783, 3, 1, UNI_IN__9 } /* in=9 */,
- { 4, 8874, 97, 7, 5, UNI_POSIXALPHA } /* isposixalpha */,
- { 2, 5666, 0, 13, 0, UNI_PATSYN } /* patternsyntax */,
- { 21, 9646, 2118, 4, 13, UNI_TRANSPORTANDMAP } /* intransportandmap */,
- { 440, 10393, 1247, 3, 2, UNI_PO } /* gc=po */,
- { 1, 7475, 9846, 3, 4, UNI_CHRS } /* sc=chrs */,
- { 0, 185, 8930, 2, 7, UNI_MARC } /* ismarchen */,
- { 7, 8449, 9639, 4, 5, UNI_INOSAGE } /* blk=osage */,
- { 0, 7271, 36, 8, 1, UNI_IDS } /* idstart=t */,
- { 647, 8457, 501, 6, 11, UNI_INPUNCTUATION } /* block=punctuation */,
- { 0, 4790, 5522, 13, 4, UNI_JG__HETH } /* joininggroup=heth */,
- { 0, 6159, 7931, 13, 2, UNI_NV__24 } /* numericvalue=24 */,
- { 0, 8457, 8310, 6, 9, UNI_INOLDITALIC } /* block=olditalic */,
- { 0, 9822, 10399, 3, 3, UNI_BC__LRE } /* bc=lre */,
- { 13, 9469, 36, 5, 1, UNI_POSIXXDIGIT } /* ahex=t */,
- { 0, 7420, 4184, 3, 15, UNI_HIGHPUSURROGATES } /* ishighpusurrogates */,
- { 600, 4359, 0, 16, 0, UNI_MYANMAREXTA } /* myanmarextendeda */,
- { 31, 8457, 663, 6, 30, UNI_CJKEXTE } /* block=cjkunifiedideographsextensione */,
- { 28, 5018, 10175, 3, 3, UNI_TIBT } /* istibt */,
- { 2266, 185, 9240, 3, 5, UNI_CAKM } /* ischakma */,
- { 0, 8881, 17, 3, 1, UNI_SO } /* isso */,
- { 0, 8457, 5680, 6, 14, UNI_PHONETICEXTSUP } /* block=phoneticextsup */,
- { 453, 10393, 133, 3, 2, UNI_LM } /* gc=lm */,
- { 2, 9141, 7345, 4, 8, UNI_ARABICEXTB } /* isarabicextb */,
- { 0, 4006, 10498, 17, 3, UNI_UIDEO } /* unifiedideograph=yes */,
- { 0, 8457, 5414, 6, 14, UNI_LATINEXTF } /* block=latinextendedf */,
- { 1329, 4119, 133, 16, 2, UNI_LM } /* generalcategory=lm */,
- { 2082, 4790, 6532, 13, 5, UNI_JG__GAMAL } /* joininggroup=gamal */,
- { 0, 3523, 9353, 17, 6, UNI_LYDI } /* scriptextensions=lydian */,
- { 0, 5722, 0, 14, 0, UNI_PHLP } /* psalterpahlavi */,
- { 0, 3523, 8453, 17, 4, UNI_BOPO } /* scriptextensions=bopo */,
- { 1, 9414, 10498, 5, 3, UNI_IDEO } /* ideo=yes */,
- { 3, 185, 8521, 2, 8, UNI_GURU } /* isgurmukhi */,
- { 4, 3785, 0, 16, 0, UNI_ETHIOPICEXT } /* ethiopicextended */,
- { 0, 3523, 2265, 17, 4, UNI_HAN } /* scriptextensions=hani */,
- { 167, 7453, 0, 7, 0, UNI_EXTPICT } /* extpict */,
- { 1703, 9659, 2901, 4, 19, UNI_MERO } /* scx=meroitichieroglyphs */,
- { 22, 7475, 9886, 3, 4, UNI_DSRT } /* sc=dsrt */,
- { 9, 3163, 0, 4, 0, UNI_COPT } /* copt */,
- { 0, 9251, 0, 6, 0, UNI_cwkcf_values_index } /* cwkcf= */,
- { 0, 7481, 8578, 3, 7, UNI_KANAEXTA } /* iskanaexta */,
- { 0, 8449, 2202, 4, 21, UNI_CYRILLICSUP } /* blk=cyrillicsupplementary */,
- { 0, 5860, 26, 13, 1, UNI_BIDIM } /* bidimirrored=y */,
- { 1, 10489, 0, 3, 1, UNI_VO__U } /* vo=u */,
- { 3, 9659, 5105, 4, 15, UNI_ZANB } /* scx=zanabazarsquare */,
- { 2, 9141, 9779, 3, 3, UNI_ADLM } /* isadlm */,
- { 0, 7475, 8337, 3, 9, UNI_SC__OUGR } /* sc=olduyghur */,
- { 261, 9659, 4487, 4, 6, UNI_TANG } /* scx=tangut */,
- { 3008, 8748, 7931, 7, 2, UNI_CCC__24 } /* ccc=ccc24 */,
- { 98, 8633, 10501, 8, 3, UNI_SC__SYRC } /* script=syrc */,
- { 520, 8748, 3091, 4, 18, UNI_CCC__216 } /* ccc=attachedaboveright */,
- { 1, 2143, 8195, 4, 7, UNI_EMOTICONS } /* inemoticons */,
- { 302, 3523, 1047, 17, 5, UNI_GREK } /* scriptextensions=greek */,
- { 1, 6995, 5919, 10, 5, UNI_EBASE } /* linebreak=ebase */,
- { 1, 7475, 8569, 3, 4, UNI_SC__JAVA } /* sc=java */,
- { 0, 2868, 4025, 4, 14, UNI_ARABICSUP } /* inarabicsupplement */,
- { 3953, 3181, 4103, 18, 5, UNI_DT__FIN } /* decompositiontype=final */,
- { 106, 9141, 5149, 3, 13, UNI_ANCIENTSYMBOLS } /* isancientsymbols */,
- { 0, 8881, 1356, 3, 24, UNI_SUPERANDSUB } /* issuperscriptsandsubscripts */,
- { 88, 3343, 0, 18, 0, UNI_idsb_values_index } /* idsbinaryoperator= */,
- { 2258, 8453, 0, 4, 0, UNI_BOPO } /* bopo */,
- { 15, 9659, 8697, 4, 4, UNI_VITH } /* scx=vith */,
- { 0, 5666, 3, 14, 1, -UNI_PATSYN } /* patternsyntax=f */,
- { 35, 9659, 8916, 4, 7, UNI_MAKA } /* scx=makasar */,
- { 2, 4940, 48, 15, 1, UNI_NFCQC__M } /* nfkcquickcheck=m */,
- { 3, 8958, 26, 6, 1, UNI_NFCQC__Y } /* nfcqc=y */,
- { 0, 8457, 3683, 6, 17, UNI_UCAS } /* block=canadiansyllabics */,
- { 2, 1573, 0, 4, 0, UNI_SIND } /* sind */,
- { 0, 3523, 6016, 17, 9, UNI_MLYM } /* scriptextensions=malayalam */,
- { 0, 9890, 8537, 3, 8, UNI_DT__ISO } /* dt=isolated */,
- { 0, 9419, 3, 6, 1, -UNI_XPOSIXUPPER } /* upper=f */,
- { 0, 1896, 1059, 22, 2, -UNI_CWT } /* changeswhentitlecased=no */,
- { 4, 5482, 364, 4, 19, UNI_MATHOPERATORS } /* inmathematicaloperators */,
- { 10, 9866, 0, 4, 0, UNI_cwu_values_index } /* cwu= */,
- { 2, 9659, 5301, 4, 4, UNI_CHAM } /* scx=cham */,
- { 1, 9283, 1059, 4, 2, -UNI_EXT } /* ext=no */,
- { 1, 7475, 9842, 3, 4, UNI_CANS } /* sc=cans */,
- { 0, 3523, 7083, 17, 4, UNI_NAND } /* scriptextensions=nand */,
- { 0, 9659, 8202, 4, 9, UNI_QAAI } /* scx=inherited */,
- { 0, 1741, 2769, 3, 18, UNI_INEGYPTIANHIEROGLYPHS } /* inegyptianhieroglyphs */,
- { 0, 9269, 10186, 6, 4, UNI_EPRES } /* epres=true */,
- { 0, 8449, 0, 4, 34, UNI_UCAS } /* blk=unifiedcanadianaboriginalsyllabics */,
- { 233, 10058, 7828, 3, 1, UNI_NV__7 } /* nv=7 */,
- { 4, 3181, 1067, 18, 9, UNI_DT__CAN } /* decompositiontype=canonical */,
- { 0, 10495, 434, 3, 6, UNI_WB__FO } /* wb=format */,
- { 194, 9822, 10402, 3, 3, UNI_BC__LRI } /* bc=lri */,
- { 0, 8633, 2513, 7, 10, UNI_SC__GLAG } /* script=glagolitic */,
- { 191, 10058, 5834, 3, 11, UNI_NV__10000000000 } /* nv=10000000000 */,
- { 150, 1620, 932, 5, 25, UNI_SUPPUAA } /* insupplementaryprivateuseareaa */,
- { 0, 1620, 8374, 3, 8, UNI_INSAMARITAN } /* insamaritan */,
- { 0, 8748, 7782, 4, 2, UNI_CCC__29 } /* ccc=29 */,
- { 0, 10393, 1884, 3, 2, UNI_NL } /* gc=nl */,
- { 0, 6159, 7932, 13, 9, UNI_NV__2_SLASH_5 } /* numericvalue=4.000e-01 */,
- { 77, 8457, 8247, 6, 9, UNI_LATINEXTF } /* block=latinextf */,
- { 0, 8881, 7, 3, 1, UNI_SC } /* issc */,
- { 0, 8283, 0, 9, 0, UNI_NBAT } /* nabataean */,
- { 0, 8449, 7050, 4, 11, UNI_MISCSYMBOLS } /* blk=miscsymbols */,
- { 0, 6159, 5834, 13, 5, UNI_NV__10000 } /* numericvalue=10000 */,
- { 13, 7610, 7941, 3, 3, UNI_IN__4_DOT_1 } /* in=4.1 */,
- { 1, 7603, 10462, 10, 3, UNI_IN__5_DOT_1 } /* presentin=v51 */,
- { 1, 4119, 113, 16, 2, UNI_SC } /* generalcategory=sc */,
- { 4, 9071, 10498, 5, 3, UNI_TERM } /* term=yes */,
- { 0, 8449, 1052, 4, 5, UNI_MUSIC } /* blk=music */,
- { 2259, 9659, 10082, 4, 4, UNI_OUGR } /* scx=ougr */,
- { 2, 8944, 10186, 6, 4, UNI__PERL_NCHAR } /* nchar=true */,
- { 0, 8449, 2050, 4, 22, UNI_MISCTECHNICAL } /* blk=miscellaneoustechnical */,
- { 0, 434, 0, 6, 0, UNI_CF } /* format */,
- { 0, 8457, 1807, 6, 23, UNI_ZNAMENNYMUSIC } /* block=znamennymusicalnotation */,
- { 2779, 8895, 0, 7, 0, UNI_KNDA } /* kannada */,
- { 500, 8457, 2513, 6, 20, UNI_GLAGOLITICSUP } /* block=glagoliticsupplement */,
- { 0, 8545, 63, 8, 5, UNI_XPOSIXGRAPH } /* isxposixgraph */,
- { 1667, 10058, 9167, 3, 4, UNI_NV__3000 } /* nv=3000 */,
- { 1624, 6629, 9001, 3, 6, UNI_OLCK } /* inolchiki */,
- { 4544, 10393, 5045, 3, 15, UNI_TITLE } /* gc=titlecaseletter */,
- { 7, 9281, 10186, 6, 4, UNI_GREXT } /* grext=true */,
- { 230, 4199, 2063, 15, 9, UNI_IDENTIFIERTYPE__TECHNICAL } /* identifiertype=technical */,
- { 1, 5330, 0, 7, 0, UNI_KANASUP } /* kanasup */,
- { 16, 10058, 7783, 3, 1, UNI_NV__9 } /* nv=9 */,
- { 98, 0, 0, 42, 0, UNI_UCASEXT } /* unifiedcanadianaboriginalsyllabicsextended */,
- { 4694, 185, 1121, 3, 5, UNI_COPT } /* iscoptic */,
- { 2187, 7481, 5345, 3, 13, UNI_KANGXI } /* iskangxiradicals */,
- { 1090, 4119, 761, 16, 2, UNI_MN } /* generalcategory=mn */,
- { 0, 9950, 6117, 3, 3, UNI_JG__WAW } /* jg=waw */,
- { 6, 3508, 1, 3, 33, UNI_UCAS } /* inunifiedcanadianaboriginalsyllabics */,
- { 953, 1067, 7809, 24, 1, UNI_CCC__6 } /* canonicalcombiningclass=6 */,
- { 1, 185, 3887, 2, 17, UNI_LETTERLIKESYMBOLS } /* isletterlikesymbols */,
- { 1, 8449, 8657, 4, 8, UNI_INTAGBANWA } /* blk=tagbanwa */,
- { 18, 185, 3785, 2, 16, UNI_ETHIOPICEXT } /* isethiopicextended */,
- { 1024, 7083, 0, 11, 0, UNI_NAND } /* nandinagari */,
- { 2184, 601, 0, 2, 0, UNI_NB } /* nb */,
- { 1317, 985, 0, 17, 0, UNI_VS } /* variationselector */,
- { 199, 7473, 2493, 5, 20, UNI_INSC__CONSONANTWITHSTACKER } /* insc=consonantwithstacker */,
- { 0, 7215, 0, 11, 0, UNI_SYLO } /* sylotinagri */,
- { 4, 8874, 6727, 3, 11, UNI_PLAYINGCARDS } /* isplayingcards */,
- { 1, 4119, 222, 16, 2, UNI_CASEDLETTER } /* generalcategory=l_ */,
- { 2116, 8449, 350, 4, 33, UNI_SUPMATHOPERATORS } /* blk=supplementalmathematicaloperators */,
- { 0, 5386, 0, 14, 0, UNI_LATINEXTD } /* latinextendedd */,
- { 11, 9950, 2711, 3, 19, UNI_JG__BURUSHASKIYEHBARREE } /* jg=burushaskiyehbarree */,
- { 4608, 9782, 9731, 4, 3, UNI_AGE__2_DOT_1 } /* age=2.1 */,
- { 2, 7373, 1503, 10, 12, UNI_M } /* category=combiningmark */,
- { 3816, 2363, 7106, 3, 10, UNI_NO } /* isothernumber */,
- { 0, 9659, 3997, 5, 3, UNI_SGNW } /* scx=sgnw */,
- { 1, 10058, 9203, 3, 2, UNI_NV__80 } /* nv=80 */,
- { 7, 8457, 7483, 6, 10, UNI_INKHAROSHTHI } /* block=kharoshthi */,
- { 2832, 8521, 0, 8, 0, UNI_GURU } /* gurmukhi */,
- { 1, 9654, 0, 5, 0, UNI_SB__SC } /* sb=sc */,
- { 0, 8748, 10207, 4, 3, UNI_CCC__130 } /* ccc=130 */,
- { 2208, 5912, 9549, 13, 5, -UNI_GRBASE } /* graphemebase=false */,
- { 577, 6159, 9751, 13, 3, UNI_NV__7_SLASH_2 } /* numericvalue=7/2 */,
- { 0, 8748, 10270, 7, 3, UNI_CCC__107 } /* ccc=ccc107 */,
- { 0, 3523, 3325, 17, 4, UNI_GEOR } /* scriptextensions=geor */,
- { 2, 1574, 2553, 24, 4, UNI_INPC__LEFT } /* indicpositionalcategory=left */,
- { 0, 4119, 1120, 16, 2, UNI_SO } /* generalcategory=so */,
- { 0, 2244, 3469, 21, 17, UNI_RI } /* graphemeclusterbreak=regionalindicator */,
- { 0, 8633, 7127, 7, 11, UNI_HMNG } /* script=pahawhhmong */,
- { 4416, 185, 11, 2, 2, UNI_DI } /* isdi */,
- { 2209, 185, 8916, 2, 4, UNI_MAKA } /* ismaka */,
- { 0, 1067, 7835, 24, 1, UNI_CCC__8 } /* canonicalcombiningclass=8 */,
- { 0, 6995, 23, 10, 2, UNI_LB__AL } /* linebreak=al */,
- { 0, 7475, 10106, 3, 4, UNI_SC__COPT } /* sc=qaac */,
- { 6170, 7610, 7819, 3, 1, UNI_IN__3 } /* in=3 */,
- { 70, 9990, 2548, 3, 2, UNI_LB__HL } /* lb=hl */,
- { 0, 10393, 0, 3, 0, UNI_gc_values_index } /* gc= */,
- { 2063, 8449, 9389, 4, 6, UNI_INREJANG } /* blk=rejang */,
- { 3, 8804, 0, 6, 0, UNI_COMPEX } /* compex */,
- { 0, 4715, 0, 15, 0, UNI_ea_values_index } /* eastasianwidth= */,
- { 5, 185, 10014, 2, 4, UNI_MERC } /* ismerc */,
- { 0, 8633, 6016, 7, 9, UNI_SC__MLYM } /* script=malayalam */,
- { 2200, 7475, 4880, 3, 15, UNI_MERC } /* sc=meroiticcursive */,
- { 3, 7475, 2573, 3, 20, UNI_HMNP } /* sc=nyiakengpuachuehmong */,
- { 2724, 3523, 9886, 17, 4, UNI_DSRT } /* scriptextensions=dsrt */,
- { 0, 6159, 9185, 13, 5, UNI_NV__50000 } /* numericvalue=50000 */,
- { 0, 7473, 5873, 5, 13, UNI_INSC__CONSONANTDEAD } /* insc=consonantdead */,
- { 2, 3523, 9649, 17, 5, UNI_RUNR } /* scriptextensions=runic */,
- { 2954, 1247, 0, 2, 0, UNI_PO } /* po */,
- { 4, 6246, 10186, 12, 4, UNI_BIDIC } /* bidicontrol=true */,
- { 4, 185, 1692, 2, 15, UNI_GEOMETRICSHAPES } /* isgeometricshapes */,
- { 0, 9659, 10018, 4, 4, UNI_MIAO } /* scx=miao */,
- { 1738, 2363, 126, 3, 2, UNI_OCR } /* isocr */,
- { 0, 8457, 3199, 6, 18, UNI_DEVANAGARIEXT } /* block=devanagariextended */,
- { 0, 185, 5596, 2, 14, UNI_SK } /* ismodifiersymbol */,
- { 4873, 1598, 2730, 22, 19, UNI_INSC__CONSONANTHEADLETTER } /* indicsyllabiccategory=consonantheadletter */,
- { 0, 3469, 10186, 18, 4, UNI_RI } /* regionalindicator=true */,
- { 0, 3469, 26, 18, 1, UNI_RI } /* regionalindicator=y */,
- { 3657, 6159, 10363, 13, 3, UNI_NV__7_SLASH_8 } /* numericvalue=7/8 */,
- { 0, 3523, 6594, 17, 12, UNI_GONM } /* scriptextensions=masaramgondi */,
- { 0, 8457, 7204, 6, 11, UNI_SUPERANDSUB } /* block=superandsub */,
- { 4, 9990, 8184, 3, 9, UNI_LB__B2 } /* lb=breakboth */,
- { 8, 9659, 9401, 4, 4, UNI_TELU } /* scx=telu */,
- { 0, 10393, 6819, 3, 11, UNI_CASEDLETTER } /* gc=casedletter */,
- { 1258, 9822, 3892, 3, 3, UNI_BC__RLI } /* bc=rli */,
- { 6, 7610, 7304, 3, 1, UNI_IN__5 } /* in=5 */,
- { 0, 10489, 0, 3, 0, UNI_vo_values_index } /* vo= */,
- { 5253, 8449, 1040, 4, 27, UNI_ANCIENTGREEKMUSIC } /* blk=ancientgreekmusicalnotation */,
- { 6, 2863, 0, 19, 0, UNI_idst_values_index } /* idstrinaryoperator= */,
- { 2721, 9950, 6354, 3, 12, UNI_JG__FINALSEMKATH } /* jg=finalsemkath */,
- { 2, 9659, 9906, 4, 4, UNI_GREK } /* scx=grek */,
- { 0, 8881, 3973, 3, 16, UNI_SMALLFORMS } /* issmallformvariants */,
- { 3332, 4790, 7413, 13, 10, UNI_JG__DALATHRISH } /* joininggroup=dalathrish */,
- { 4, 6995, 1247, 10, 2, UNI_LB__PO } /* linebreak=po */,
- { 1156, 9659, 8453, 4, 4, UNI_BOPO } /* scx=bopo */,
- { 5381, 8457, 8689, 6, 8, UNI_INUGARITIC } /* block=ugaritic */,
- { 2, 8547, 1885, 6, 5, UNI_XPOSIXLOWER } /* xposixlower */,
- { 0, 8633, 6690, 7, 12, UNI_HUNG } /* script=oldhungarian */,
- { 1, 1598, 5873, 22, 13, UNI_INSC__CONSONANTDEAD } /* indicsyllabiccategory=consonantdead */,
- { 892, 10381, 10222, 3, 4, UNI_EA__W } /* ea=wide */,
- { 2, 7270, 0, 8, 0, UNI_XIDS } /* xidstart */,
- { 489, 512, 0, 31, 0, UNI_MATHALPHANUM } /* mathematicalalphanumericsymbols */,
- { 0, 2072, 1059, 22, 2, -UNI__PERL_NCHAR } /* noncharactercodepoint=no */,
- { 0, 5807, 1969, 3, 15, UNI_INDICNUMBERFORMS } /* isindicnumberforms */,
- { 0, 1067, 23, 24, 2, UNI_CCC__AL } /* canonicalcombiningclass=al */,
- { 4, 21, 9599, 2, 5, UNI_INLIMBU } /* inlimbu */,
- { 2883, 8874, 9378, 3, 4, UNI__PERL_PATWS } /* ispatws */,
- { 454, 7475, 2265, 3, 14, UNI_SC__ROHG } /* sc=hanifirohingya */,
- { 320, 6428, 4088, 3, 15, UNI_CYPRIOTSYLLABARY } /* incypriotsyllabary */,
- { 3166, 9299, 3463, 6, 5, UNI_VERTSPACE } /* isvertspace */,
- { 0, 1013, 0, 27, 0, UNI_ALPHABETICPF } /* alphabeticpresentationforms */,
- { 2250, 9822, 6702, 3, 12, UNI_BC__ON } /* bc=otherneutral */,
- { 2629, 8874, 902, 3, 27, UNI_PHONETICEXTSUP } /* isphoneticextensionssupplement */,
- { 0, 1852, 3, 22, 1, -UNI_CWCM } /* changeswhencasemapped=f */,
- { 3846, 185, 3128, 3, 17, UNI_HALFMARKS } /* iscombininghalfmarks */,
- { 12, 10050, 0, 3, 0, UNI_NKO } /* nko */,
- { 136, 185, 4215, 2, 9, UNI_LATIN1 } /* islatin1sup */,
- { 0, 8449, 985, 4, 28, UNI_VSSUP } /* blk=variationselectorssupplement */,
- { 2664, 4119, 7116, 16, 11, UNI_SO } /* generalcategory=othersymbol */,
- { 530, 8633, 6486, 7, 4, UNI_SC__MAHJ } /* script=mahj */,
- { 1678, 21, 6003, 2, 13, UNI_LOWSURROGATES } /* inlowsurrogates */,
- { 0, 9822, 6002, 3, 3, UNI_BC__RLO } /* bc=rlo */,
- { 3072, 9782, 10441, 4, 3, UNI_AGE__2_DOT_1 } /* age=v21 */,
- { 2, 1574, 2639, 24, 6, UNI_INPC__BOTTOM } /* indicpositionalcategory=bottom */,
- { 1, 3307, 0, 18, 0, UNI_INPUNCTUATION } /* generalpunctuation */,
- { 129, 8633, 4235, 8, 3, UNI_SARB } /* script=sarb */,
- { 2146, 9822, 10387, 3, 3, UNI_BC__FSI } /* bc=fsi */,
- { 0, 9950, 7313, 3, 10, UNI_JG__AFRICANFEH } /* jg=africanfeh */,
- { 1157, 8449, 1692, 4, 23, UNI_GEOMETRICSHAPESEXT } /* blk=geometricshapesextended */,
- { 0, 8633, 2313, 7, 4, UNI_SC__MULT } /* script=mult */,
- { 202, 8457, 7333, 6, 10, UNI_ARABICEXTA } /* block=arabicexta */,
- { 0, 8748, 6863, 4, 11, UNI_CCC__DA } /* ccc=doubleabove */,
- { 0, 6629, 8320, 3, 8, UNI_INOLDPERMIC } /* inoldpermic */,
- { 0, 8256, 0, 9, 0, UNI_LATINEXTG } /* latinextg */,
- { 24, 9679, 10186, 5, 4, UNI_XIDC } /* xidc=true */,
- { 2168, 1624, 0, 2, 0, UNI_PS } /* ps */,
- { 0, 8449, 8783, 4, 7, UNI_CJKEXTE } /* blk=cjkexte */,
- { 3459, 9990, 5176, 3, 14, UNI_LB__CR } /* lb=carriagereturn */,
- { 22, 2244, 8494, 21, 3, UNI_WB__EB } /* graphemeclusterbreak=gaz */,
- { 652, 9659, 79, 4, 6, UNI_ARAB } /* scx=arabic */,
- { 1047, 7475, 9970, 3, 4, UNI_SC__KNDA } /* sc=knda */,
- { 0, 9561, 1929, 3, 5, UNI_SB__UP } /* sb=upper */,
- { 4107, 185, 2920, 2, 19, UNI_MODIFIERTONELETTERS } /* ismodifiertoneletters */,
- { 6704, 185, 9998, 2, 4, UNI_LINB } /* islinb */,
- { 0, 3523, 10094, 17, 4, UNI_PHNX } /* scriptextensions=phnx */,
- { 4160, 8337, 0, 9, 0, UNI_OUGR } /* olduyghur */,
- { 0, 9071, 26, 5, 1, UNI_TERM } /* term=y */,
- { 1, 7481, 8213, 4, 7, UNI_SIND } /* iskhudawadi */,
- { 0, 8449, 5778, 4, 14, UNI_SUPPUNCTUATION } /* blk=suppunctuation */,
- { 1, 4790, 10238, 13, 4, UNI_JG__ZAIN } /* joininggroup=zain */,
- { 0, 8457, 7653, 6, 10, UNI_SMALLFORMS } /* block=smallforms */,
- { 0, 9377, 0, 5, 0, UNI__PERL_PATWS } /* patws */,
- { 2568, 4790, 10420, 13, 3, UNI_JG__REH } /* joininggroup=reh */,
- { 0, 9469, 10498, 5, 3, UNI_POSIXXDIGIT } /* ahex=yes */,
- { 0, 5807, 3854, 3, 16, UNI_INDICSIYAQNUMBERS } /* isindicsiyaqnumbers */,
- { 2210, 9822, 1414, 3, 3, UNI_BC__RLE } /* bc=rle */,
- { 17, 10058, 7824, 3, 9, UNI_NV__1_SLASH_6 } /* nv=1.667e-01 */,
- { 0, 7473, 1305, 5, 9, UNI_INSC__CONSONANT } /* insc=consonant */,
- { 13, 2513, 0, 13, 0, UNI_GLAGOLITICSUP } /* glagoliticsup */,
- { 3, 21, 7713, 2, 10, UNI_INWARANGCITI } /* inwarangciti */,
- { 0, 9469, 0, 4, 0, UNI_POSIXXDIGIT } /* ahex */,
- { 0, 8457, 7127, 6, 11, UNI_INPAHAWHHMONG } /* block=pahawhhmong */,
- { 0, 9561, 73, 3, 2, UNI_SB__LE } /* sb=le */,
- { 0, 8449, 7403, 4, 10, UNI_COMPATJAMO } /* blk=compatjamo */,
- { 4513, 6428, 44, 3, 35, UNI_CJKCOMPATIDEOGRAPHSSUP } /* incjkcompatibilityideographssupplement */,
- { 4390, 10058, 8409, 3, 5, UNI_NV__20000 } /* nv=20000 */,
- { 5, 2244, 6375, 21, 3, UNI_LB__ZWJ } /* graphemeclusterbreak=zwj */,
- { 0, 7475, 4231, 3, 7, UNI_SC__LINB } /* sc=linearb */,
- { 2, 3523, 9669, 17, 4, UNI_TAKR } /* scriptextensions=takr */,
- { 1, 4199, 8993, 15, 7, UNI_IDENTIFIERTYPE__NOTNFKC } /* identifiertype=notnfkc */,
- { 4308, 21, 9791, 3, 3, UNI_INAHOM } /* inahom */,
- { 2321, 8633, 8689, 7, 8, UNI_UGAR } /* script=ugaritic */,
- { 6912, 8881, 7129, 3, 3, UNI_SHAW } /* isshaw */,
- { 24, 4119, 32, 16, 2, UNI__PERL_SURROGATE } /* generalcategory=cs */,
- { 0, 1067, 8409, 24, 2, UNI_CCC__20 } /* canonicalcombiningclass=20 */,
- { 3, 10038, 0, 4, 0, UNI_NARB } /* narb */,
- { 2, 6995, 10530, 10, 2, UNI_GCB__L } /* linebreak=jl */,
- { 0, 185, 2939, 2, 19, UNI_MONGOLIANSUP } /* ismongoliansupplement */,
- { 1, 10058, 10369, 3, 3, UNI_NV__9_SLASH_2 } /* nv=9/2 */,
- { 0, 9070, 10498, 6, 3, UNI_STERM } /* sterm=yes */,
- { 3, 3181, 2653, 18, 8, UNI_DT__VERT } /* decompositiontype=vertical */,
- { 85, 8457, 2749, 6, 19, UNI_COUNTINGROD } /* block=countingrodnumerals */,
- { 18, 10058, 9173, 3, 5, UNI_NV__40000 } /* nv=40000 */,
- { 2980, 118, 6, 3, 2, UNI_INIDC } /* inidc */,
- { 0, 10492, 10498, 3, 3, UNI_VS } /* vs=yes */,
- { 0, 4119, 7094, 16, 11, UNI_LO } /* generalcategory=otherletter */,
- { 292, 8545, 3463, 8, 5, UNI_XPOSIXSPACE } /* isxposixspace */,
- { 1, 8874, 5681, 3, 13, UNI_PHONETICEXTSUP } /* isphoneticextsup */,
- { 0, 7475, 9407, 3, 6, UNI_SC__THAA } /* sc=thaana */,
- { 0, 8449, 114, 4, 35, UNI_DIACRITICALSFORSYMBOLS } /* blk=combiningdiacriticalmarksforsymbols */,
- { 0, 8449, 79, 4, 6, UNI_INARABIC } /* blk=arabic */,
- { 3667, 10375, 0, 3, 0, UNI_ci_values_index } /* ci= */,
- { 26, 7182, 0, 11, 0, UNI_SORA } /* sorasompeng */,
- { 6, 3523, 9287, 17, 4, UNI_HATR } /* scriptextensions=hatr */,
- { 0, 8548, 5891, 5, 5, UNI_POSIXALNUM } /* posixalnum */,
- { 0, 2028, 0, 21, 0, UNI_LOE } /* logicalorderexception */,
- { 0, 1589, 10546, 9, 2, UNI_ZS } /* category=zs */,
- { 0, 7475, 10078, 3, 4, UNI_OSGE } /* sc=osge */,
- { 1, 10058, 9758, 3, 4, UNI_NV__3_SLASH_20 } /* nv=3/20 */
+ { 0, 6025, 6878, 9, 12, UNI_GEOMETRICSHAPES } /* block=geometricshapes */,
+ { 0, 1702, 6142, 6, 5, UNI_ARABICSUP } /* isarabicsup */,
+ { 0, 2726, 3061, 3, 5, UNI_XPOSIXDIGIT } /* gc=digit */,
+ { 1, 7688, 4687, 23, 5, UNI_JG__MANICHAEANZAYIN } /* joininggroup=manichaeanzayin */,
+ { 0, 3974, 602, 17, 3, -UNI_IDSB } /* idsbinaryoperator=no */,
+ { 1, 2, 8150, 1, 24, UNI_DIACRITICALS } /* combiningdiacriticalmarks */,
+ { 3, 3622, 129, 13, 3, UNI_LATINEXTF } /* islatinextendedf */,
+ { 0, 464, 625, 2, 7, UNI_EXTPICT } /* isextpict */,
+ { 0, 441, 779, 3, 4, UNI_OLCK } /* olchiki */,
+ { 8, 1516, 0, 6, 0, UNI_KANA } /* iskana */,
+ { 0, 6944, 2695, 23, 3, UNI_CCC__AR } /* canonicalcombiningclass=ar */,
+ { 0, 6114, 457, 3, 4, UNI_PRTI } /* sc=prti */,
+ { 1, 875, 934, 5, 6, -UNI_UIDEO } /* uideo=false */,
+ { 1, 1383, 934, 4, 6, -UNI_IDST } /* idst=false */,
+ { 0, 1879, 4827, 4, 5, UNI_INBAMUM } /* blk=bamum */,
+ { 4, 6114, 686, 3, 4, UNI_SC__TAKR } /* sc=takr */,
+ { 0, 275, 2728, 3, 6, UNI_GCB__XX } /* gcb=other */,
+ { 1, 4122, 278, 5, 1, UNI_lower_values_index } /* lower= */,
+ { 0, 5409, 588, 19, 5, UNI_TERM } /* terminalpunctuation=true */,
+ { 1, 7208, 0, 9, 2, UNI_CASEDLETTER } /* category=l& */,
+ { 1, 2496, 4174, 3, 4, UNI_JG__HETH } /* jg=heth */,
+ { 0, 7201, 4598, 16, 16, UNI_PE } /* generalcategory=closepunctuation */,
+ { 5, 1710, 1426, 3, 3, UNI_SORA } /* issora */,
+ { 3, 46, 5021, 2, 6, UNI_SB__CL } /* sb=close */,
+ { 0, 464, 1508, 2, 4, UNI_UGAR } /* isugar */,
+ { 1, 6112, 2783, 5, 9, UNI_INSC__NONJOINER } /* insc=nonjoiner */,
+ { 0, 464, 3396, 2, 15, UNI_SARB } /* isoldsoutharabian */,
+ { 1, 2926, 4372, 3, 16, UNI_SMALLFORMS } /* insmallformvariants */,
+ { 10, 6114, 3285, 3, 4, UNI_HEBR } /* sc=hebr */,
+ { 1, 6112, 2412, 5, 8, UNI_INSC__AVAGRAHA } /* insc=avagraha */,
+ { 0, 917, 0, 8, 0, UNI_BASS } /* bassavah */,
+ { 0, 3474, 4857, 6, 8, UNI_TAMILSUP } /* block=tamilsup */,
+ { 6, 54, 0, 2, 0, UNI_MC } /* mc */,
+ { 0, 343, 0, 6, 0, UNI_CCC__11 } /* ccc=11 */,
+ { 1, 1915, 355, 11, 3, UNI_GRBASE } /* graphemebase=y */,
+ { 1, 1102, 681, 4, 5, UNI_RUNR } /* scx=runic */,
+ { 3, 1796, 901, 7, 8, UNI_ARMN } /* script=armenian */,
+ { 5, 3053, 601, 12, 2, UNI_ahex_values_index } /* asciihexdigit= */,
+ { 1, 5481, 356, 21, 4, UNI_CWCF } /* changeswhencasefolded=yes */,
+ { 9, 6011, 4442, 14, 9, UNI_ETHIOPICEXTB } /* block=ethiopicextendedb */,
+ { 1, 2, 0, 1, 0, UNI_C } /* c */,
+ { 2, 2726, 3514, 3, 13, UNI_ZL } /* gc=lineseparator */,
+ { 2, 326, 0, 5, 0, UNI_VSSUP } /* vssup */,
+ { 0, 464, 5397, 2, 3, UNI_PUA } /* ispua */,
+ { 1, 5147, 2579, 7, 12, UNI_LOWSURROGATES } /* block=lowsurrogates */,
+ { 0, 313, 4582, 2, 8, UNI_INBOPOMOFO } /* inbopomofo */,
+ { 0, 7584, 1679, 18, 8, UNI_DT__FRA } /* decompositiontype=fraction */,
+ { 2, 7208, 4137, 9, 15, UNI_PS } /* category=openpunctuation */,
+ { 1, 555, 2195, 3, 4, UNI_AGE__6_DOT_2 } /* age=6.2 */,
+ { 0, 2726, 3947, 3, 14, UNI_ZS } /* gc=spaceseparator */,
+ { 1, 464, 256, 2, 2, UNI_CASEDLETTER } /* islc */,
+ { 1, 6803, 588, 20, 2, UNI_CE } /* compositionexclusion=t */,
+ { 0, 343, 6280, 4, 3, UNI_CCC__202 } /* ccc=atb */,
+ { 11, 4450, 6104, 7, 8, UNI_INCUNEIFORM } /* block=cuneiform */,
+ { 7, 4355, 120, 17, 4, UNI_LAO } /* scriptextensions=laoo */,
+ { 2, 6944, 2138, 25, 2, UNI_CCC__DB } /* canonicalcombiningclass=233 */,
+ { 0, 644, 3178, 5, 10, UNI_GCB__L } /* hst=leadingjamo */,
+ { 1, 8182, 3203, 24, 10, UNI_INPC__OVERSTRUCK } /* indicpositionalcategory=overstruck */,
+ { 1, 7740, 602, 11, 2, -UNI_IDEO } /* ideographic=n */,
+ { 4, 7732, 7857, 7, 23, UNI_ENCLOSEDALPHANUMSUP } /* enclosedalphanumericsupplement */,
+ { 0, 34, 867, 1, 8, UNI_INTIRHUTA } /* intirhuta */,
+ { 0, 7020, 0, 24, 0, UNI_ARABICPFB } /* arabicpresentationformsb */,
+ { 1, 3474, 3527, 6, 16, UNI_HALFANDFULLFORMS } /* block=halfandfullforms */,
+ { 0, 3974, 588, 4, 5, UNI_IDSB } /* idsb=true */,
+ { 1, 1440, 934, 2, 6, -UNI_SD } /* sd=false */,
+ { 0, 823, 602, 4, 2, -UNI_DASH } /* dash=n */,
+ { 1, 4999, 0, 10, 0, UNI_MANI } /* manichaean */,
+ { 2, 464, 1027, 2, 6, UNI_YEZI } /* isyezidi */,
+ { 3, 1867, 356, 5, 2, UNI_BIDIM } /* bidim=y */,
+ { 1, 1796, 8599, 7, 18, UNI_CANS } /* script=canadianaboriginal */,
+ { 3, 7208, 3654, 9, 11, UNI_MC } /* category=spacingmark */,
+ { 6, 1102, 236, 4, 2, UNI_YI } /* scx=yi */,
+ { 0, 311, 0, 5, 0, UNI_XPOSIXPRINT } /* print */,
+ { 0, 959, 356, 8, 4, UNI_EXT } /* extender=yes */,
+ { 1, 2496, 5015, 3, 4, UNI_JG__YUDH } /* jg=yudh */,
+ { 0, 464, 5888, 2, 5, UNI__PERL_NCHAR } /* isnchar */,
+ { 3, 296, 6199, 4, 5, UNI_NV__900000 } /* nv=900000 */,
+ { 0, 1879, 4467, 4, 18, UNI_COPTICEPACTNUMBERS } /* blk=copticepactnumbers */,
+ { 0, 2353, 5643, 3, 10, UNI_COUNTINGROD } /* incountingrod */,
+ { 12, 302, 588, 2, 2, UNI_RI } /* ri=t */,
+ { 0, 464, 4077, 2, 15, UNI_PD } /* isdashpunctuation */,
+ { 2, 8533, 1262, 10, 3, UNI_SUPPUAB } /* block=suppuab */,
+ { 1, 1796, 4551, 7, 7, UNI_SC__LINB } /* script=linearb */,
+ { 1, 6114, 120, 3, 3, UNI_LAO } /* sc=lao */,
+ { 5, 6114, 530, 3, 6, UNI_RJNG } /* sc=rejang */,
+ { 1, 5748, 1262, 6, 3, UNI_SUPPUAB } /* insuppuab */,
+ { 0, 1102, 337, 4, 4, UNI_CARI } /* scx=cari */,
+ { 0, 895, 294, 5, 2, UNI_AGE__4 } /* age=v40 */,
+ { 2, 426, 2285, 3, 12, UNI_AEGEANNUMBERS } /* inaegeannumbers */,
+ { 2, 4901, 588, 13, 2, UNI_EMOD } /* emojimodifier=t */,
+ { 8, 464, 3285, 2, 4, UNI_HEBR } /* ishebr */,
+ { 2, 1879, 4062, 4, 8, UNI_VEDICEXT } /* blk=vedicext */,
+ { 0, 464, 2290, 2, 6, UNI_N } /* isnumber */,
+ { 1, 6379, 3261, 13, 12, UNI_JG__VERTICALTAIL } /* joininggroup=verticaltail */,
+ { 3, 6114, 4962, 3, 4, UNI_SC__HAN } /* sc=hani */,
+ { 0, 12, 1638, 1, 8, UNI_POSIXSPACE } /* perlspace */,
+ { 1, 2454, 957, 8, 5, UNI_GEORGIANEXT } /* isgeorgianext */,
+ { 0, 4533, 0, 18, 0, UNI_PI } /* initialpunctuation */,
+ { 0, 1879, 997, 4, 6, UNI_INKAITHI } /* blk=kaithi */,
+ { 3, 6039, 402, 7, 3, UNI_INMIAO } /* block=miao */,
+ { 2, 1764, 1290, 3, 8, UNI_INNEWTAILUE } /* innewtailue */,
+ { 1, 7132, 4081, 16, 11, UNI_SUPPUNCTUATION } /* blk=supplementalpunctuation */,
+ { 1, 464, 224, 2, 4, UNI_WCHO } /* iswcho */,
+ { 1, 1065, 1303, 5, 3, UNI_NV__1_SLASH_320 } /* nv=1/320 */,
+ { 12, 313, 1965, 2, 10, UNI_YIRADICALS } /* inyiradicals */,
+ { 0, 1102, 1280, 4, 9, UNI_NBAT } /* scx=nabataean */,
+ { 1, 1879, 1248, 4, 7, UNI_INSIDDHAM } /* blk=siddham */,
+ { 1, 188, 0, 4, 0, UNI_SGNW } /* sgnw */,
+ { 17, 464, 1033, 2, 4, UNI_JAMO } /* isjamo */,
+ { 2, 464, 593, 2, 7, UNI_DSRT } /* isdeseret */,
+ { 0, 6114, 2220, 3, 4, UNI_HUNG } /* sc=hung */,
+ { 3, 1991, 16, 12, 1, UNI_JT__D } /* joiningtype=d */,
+ { 1, 4291, 2890, 10, 2, UNI_GCB__T } /* linebreak=jt */,
+ { 2, 666, 0, 4, 0, UNI_LIMB } /* limb */,
+ { 1, 2382, 0, 4, 0, UNI__PERL_SURROGATE } /* iscs */,
+ { 1, 3474, 1326, 6, 9, UNI_INOLDTURKIC } /* block=oldturkic */,
+ { 0, 6039, 8212, 7, 32, UNI_MISCMATHSYMBOLSB } /* block=miscellaneousmathematicalsymbolsb */,
+ { 2, 7431, 1070, 27, 2, UNI_CCC__31 } /* canonicalcombiningclass=ccc31 */,
+ { 0, 4996, 5376, 14, 6, UNI_JG__MANICHAEANTHAMEDH } /* jg=manichaeanthamedh */,
+ { 3, 3164, 356, 14, 2, UNI_GREXT } /* graphemeextend=y */,
+ { 2, 1796, 429, 7, 4, UNI_MRO } /* script=mroo */,
+ { 2, 4901, 602, 13, 2, -UNI_EMOD } /* emojimodifier=n */,
+ { 3, 5865, 602, 21, 2, -UNI_LOE } /* logicalorderexception=n */,
+ { 1, 3351, 2127, 13, 2, UNI_NV__13 } /* numericvalue=13 */,
+ { 1, 464, 2322, 2, 10, UNI_CN } /* isunassigned */,
+ { 1, 313, 2652, 2, 13, UNI_VERTICALFORMS } /* inverticalforms */,
+ { 4, 4500, 933, 8, 7, -UNI_XPOSIXUPPER } /* uppercase=false */,
+ { 11, 1856, 602, 5, 2, -UNI_BIDIC } /* bidic=n */,
+ { 1, 27, 0, 4, 0, UNI_AHOM } /* ahom */,
+ { 1, 832, 356, 5, 2, UNI_STERM } /* sterm=y */,
+ { 3, 3622, 74, 9, 2, UNI_LATINEXTC } /* islatinextc */,
+ { 2, 2153, 2617, 4, 8, UNI_NV__2_SLASH_5 } /* nv=4.000e-01 */,
+ { 0, 6114, 4107, 3, 6, UNI_SC__HANG } /* sc=hangul */,
+ { 0, 1102, 1311, 4, 4, UNI_ITAL } /* scx=ital */,
+ { 0, 34, 7790, 1, 12, UNI_IDEO } /* isideographic */,
+ { 2, 7201, 4485, 16, 15, UNI_TITLE } /* generalcategory=titlecaseletter */,
+ { 2, 2890, 2257, 11, 3, UNI_JT__T } /* jt=transparent */,
+ { 1, 313, 1470, 2, 8, UNI_INBUGINESE } /* inbuginese */,
+ { 0, 7473, 602, 10, 2, -UNI_XPOSIXALPHA } /* alphabetic=n */,
+ { 0, 1704, 3721, 5, 5, UNI_ARABICMATH } /* arabicmath */,
+ { 1, 1796, 909, 7, 4, UNI_BALI } /* script=bali */,
+ { 0, 916, 355, 4, 3, UNI_EBASE } /* ebase=y */,
+ { 4, 6570, 5239, 5, 15, UNI_LOE } /* inpc=visualorderleft */,
+ { 0, 7208, 259, 9, 2, UNI_CF } /* category=cf */,
+ { 0, 3809, 0, 14, 0, UNI_NV__9 } /* numericvalue=9 */,
+ { 4, 6114, 360, 3, 6, UNI_SC__CAKM } /* sc=chakma */,
+ { 6, 2802, 5769, 3, 18, UNI_ENCLOSEDALPHANUMSUP } /* isenclosedalphanumsup */,
+ { 1, 4500, 0, 9, 0, UNI_XPOSIXUPPER } /* uppercase */,
+ { 4, 1796, 749, 7, 4, UNI_MARC } /* script=marc */,
+ { 0, 12, 1345, 1, 3, UNI_PALM } /* palm */,
+ { 2, 508, 602, 5, 2, UNI_DT__CAN } /* nfdqc=n */,
+ { 0, 696, 6635, 5, 8, UNI_LO } /* isotherletter */,
+ { 2, 7208, 1582, 9, 6, UNI_L } /* category=letter */,
+ { 2, 1702, 3721, 7, 5, UNI_ARABICMATH } /* isarabicmath */,
+ { 1, 2678, 87, 3, 2, UNI_BC__ON } /* bc=on */,
+ { 1, 508, 356, 5, 4, UNI_NFDQC__Y } /* nfdqc=yes */,
+ { 0, 5, 7175, 1, 10, UNI_ENCLOSEDCJK } /* enclosedcjk */,
+ { 2, 4355, 4857, 17, 5, UNI_TAML } /* scriptextensions=tamil */,
+ { 6, 3474, 3396, 6, 15, UNI_SARB } /* block=oldsoutharabian */,
+ { 2, 313, 1529, 2, 10, UNI_INKHAROSHTHI } /* inkharoshthi */,
+ { 0, 2973, 602, 5, 2, -UNI_EPRES } /* epres=n */,
+ { 1, 5087, 2729, 10, 5, UNI_WB__XX } /* wordbreak=other */,
+ { 3, 343, 1302, 5, 2, UNI_CCC__103 } /* ccc=103 */,
+ { 2, 1856, 588, 11, 2, UNI_BIDIC } /* bidicontrol=t */,
+ { 6, 5949, 0, 6, 0, UNI_YIJING } /* yijing */,
+ { 0, 2365, 4442, 8, 9, UNI_ETHIOPICEXTB } /* ethiopicextendedb */,
+ { 1, 2474, 3324, 3, 14, UNI_MISCPICTOGRAPHS } /* ismiscpictographs */,
+ { 1, 1508, 0, 4, 0, UNI_UGAR } /* ugar */,
+ { 5, 464, 7290, 2, 27, UNI_OCR } /* isopticalcharacterrecognition */,
+ { 1, 4872, 3582, 9, 11, UNI_KANGXI } /* block=kangxiradicals */,
+ { 0, 6114, 208, 3, 4, UNI_TFNG } /* sc=tfng */,
+ { 2, 464, 3594, 2, 2, UNI_NL } /* isnl */,
+ { 0, 4793, 0, 18, 0, UNI_RUMI } /* ruminumeralsymbols */,
+ { 1, 464, 3236, 2, 13, UNI_ME } /* isenclosingmark */,
+ { 0, 7828, 588, 16, 2, UNI_UIDEO } /* unifiedideograph=t */,
+ { 2, 1102, 502, 4, 4, UNI_LYDI } /* scx=lydi */,
+ { 4, 4291, 4581, 10, 2, UNI_LB__BB } /* linebreak=bb */,
+ { 2, 8244, 6509, 9, 16, UNI_CJKCOMPATIDEOGRAPHS } /* block=cjkcompatideographs */,
+ { 1, 3061, 0, 5, 0, UNI_XPOSIXDIGIT } /* digit */,
+ { 1, 940, 5644, 2, 9, UNI_COUNTINGROD } /* countingrod */,
+ { 1, 1796, 1807, 7, 4, UNI_SORA } /* script=sora */,
+ { 4, 3351, 6199, 14, 5, UNI_NV__200000 } /* numericvalue=200000 */,
+ { 1, 2926, 6623, 3, 21, UNI_MODIFIERLETTERS } /* inspacingmodifierletters */,
+ { 2, 6379, 2846, 13, 11, UNI_JG__YEHWITHTAIL } /* joininggroup=yehwithtail */,
+ { 0, 2181, 6199, 4, 5, UNI_NV__500000 } /* nv=500000 */,
+ { 0, 1879, 7020, 4, 24, UNI_ARABICPFB } /* blk=arabicpresentationformsb */,
+ { 0, 302, 934, 2, 2, -UNI_RI } /* ri=f */,
+ { 6, 4355, 449, 17, 4, UNI_PHLI } /* scriptextensions=phli */,
+ { 1, 1766, 602, 5, 3, UNI_COMPEX } /* nfcqc=no */,
+ { 0, 2712, 588, 5, 2, UNI_EMOJI } /* emoji=t */,
+ { 0, 112, 0, 4, 0, UNI_KITS } /* kits */,
+ { 1, 4355, 1657, 17, 11, UNI_CPMN } /* scriptextensions=cyprominoan */,
+ { 0, 1597, 934, 10, 6, -UNI_SD } /* softdotted=false */,
+ { 3, 4355, 1117, 17, 4, UNI_TAGB } /* scriptextensions=tagb */,
+ { 1, 6379, 2835, 13, 11, UNI_JG__STRAIGHTWAW } /* joininggroup=straightwaw */,
+ { 1, 2973, 588, 5, 2, UNI_EPRES } /* epres=t */,
+ { 1, 1102, 991, 4, 4, UNI_HATR } /* scx=hatr */,
+ { 0, 464, 6416, 2, 23, UNI_SHORTHANDFORMATCONTROLS } /* isshorthandformatcontrols */,
+ { 1, 2153, 523, 4, 1, UNI_NV__47 } /* nv=47 */,
+ { 3, 612, 2680, 2, 3, UNI_RI } /* lb=ri */,
+ { 3, 5523, 278, 21, 1, UNI_cwl_values_index } /* changeswhenlowercased= */,
+ { 2, 1879, 5806, 4, 19, UNI_MONGOLIANSUP } /* blk=mongoliansupplement */,
+ { 0, 2961, 2961, 12, 7, UNI_NT__NU } /* numerictype=numeric */,
+ { 3, 1796, 39, 7, 4, UNI_BATK } /* script=batk */,
+ { 0, 1879, 1015, 4, 6, UNI_INTELUGU } /* blk=telugu */,
+ { 11, 5136, 7761, 5, 30, UNI_MATHALPHANUM } /* blk=mathematicalalphanumericsymbols */,
+ { 4, 14, 3719, 1, 15, UNI_MISCMATHSYMBOLSA } /* miscmathsymbolsa */,
+ { 0, 34, 1898, 1, 7, UNI_S } /* issymbol */,
+ { 4, 1879, 2297, 4, 13, UNI_BLOCKELEMENTS } /* blk=blockelements */,
+ { 0, 464, 4582, 2, 8, UNI_BOPO } /* isbopomofo */,
+ { 0, 7431, 347, 27, 2, UNI_CCC__11 } /* canonicalcombiningclass=ccc11 */,
+ { 1, 1102, 3991, 4, 7, UNI_BRAI } /* scx=braille */,
+ { 0, 1702, 2285, 3, 12, UNI_AEGEANNUMBERS } /* isaegeannumbers */,
+ { 0, 600, 3571, 3, 6, UNI_DT__COM } /* dt=compat */,
+ { 1, 3722, 588, 4, 5, UNI_MATH } /* math=true */,
+ { 0, 6103, 0, 9, 0, UNI_XSUX } /* cuneiform */,
+ { 3, 6114, 868, 3, 7, UNI_SC__TIRH } /* sc=tirhuta */,
+ { 0, 8276, 4050, 22, 12, UNI_INSC__NUMBERJOINER } /* indicsyllabiccategory=numberjoiner */,
+ { 3, 1021, 0, 6, 0, UNI_WCHO } /* wancho */,
+ { 1, 6379, 5015, 13, 6, UNI_JG__YUDHHE } /* joininggroup=yudhhe */,
+ { 1, 3474, 637, 6, 7, UNI_INHANUNOO } /* block=hanunoo */,
+ { 1, 464, 7377, 2, 8, UNI_KANA } /* iskatakana */,
+ { 1, 1390, 0, 10, 0, UNI_ASCII } /* basiclatin */,
+ { 5, 1796, 1792, 7, 4, UNI_SC__MONG } /* script=mong */,
+ { 2, 4322, 766, 14, 3, UNI_NV__3_SLASH_64 } /* numericvalue=3/64 */,
+ { 1, 464, 2986, 2, 2, UNI_PS } /* isps */,
+ { 2, 6114, 1807, 3, 4, UNI_SORA } /* sc=sora */,
+ { 4, 2726, 469, 3, 2, UNI_SO } /* gc=so */,
+ { 0, 7018, 8110, 8, 29, UNI_ARABICMATH } /* inarabicmathematicalalphabeticsymbols */,
+ { 0, 1102, 574, 4, 7, UNI_AVST } /* scx=avestan */,
+ { 0, 6833, 0, 14, 0, UNI_BYZANTINEMUSIC } /* byzantinemusic */,
+ { 1, 2496, 481, 3, 3, UNI_JG__BEH } /* jg=beh */,
+ { 1, 3474, 120, 6, 3, UNI_INLAO } /* block=lao */,
+ { 4, 24, 934, 3, 6, -UNI_XPOSIXXDIGIT } /* hex=false */,
+ { 0, 4355, 47, 17, 4, UNI_BUHD } /* scriptextensions=buhd */,
+ { 1, 5806, 0, 19, 0, UNI_MONGOLIANSUP } /* mongoliansupplement */,
+ { 0, 742, 0, 4, 0, UNI_MAND } /* mand */,
+ { 1, 3351, 1070, 13, 2, UNI_NV__31 } /* numericvalue=31 */,
+ { 1, 1383, 356, 4, 2, UNI_IDST } /* idst=y */,
+ { 2, 5607, 6814, 15, 9, UNI_IDENTIFIERTYPE__EXCLUSION } /* identifiertype=exclusion */,
+ { 2, 464, 4467, 2, 18, UNI_COPTICEPACTNUMBERS } /* iscopticepactnumbers */,
+ { 3, 5949, 0, 21, 0, UNI_YIJING } /* yijinghexagramsymbols */,
+ { 0, 5523, 356, 21, 2, UNI_CWL } /* changeswhenlowercased=y */,
+ { 4, 313, 1845, 2, 11, UNI_YISYLLABLES } /* inyisyllables */,
+ { 1, 313, 847, 2, 7, UNI_INTAITHAM } /* intaitham */,
+ { 1, 1879, 3637, 4, 4, UNI_INLISU } /* blk=lisu */,
+ { 2, 1597, 934, 10, 2, -UNI_SD } /* softdotted=f */,
+ { 7, 464, 140, 2, 4, UNI_NARB } /* isnarb */,
+ { 1, 4726, 2080, 14, 8, UNI_NV__13_SLASH_2 } /* numericvalue=6.500e+00 */,
+ { 5, 7431, 351, 27, 2, UNI_CCC__91 } /* canonicalcombiningclass=ccc91 */,
+ { 0, 378, 934, 5, 6, -UNI_GREXT } /* grext=false */,
+ { 1, 4322, 523, 14, 1, UNI_NV__37 } /* numericvalue=37 */,
+ { 0, 4776, 933, 16, 3, -UNI__PERL_PATWS } /* patternwhitespace=f */,
+ { 0, 464, 1241, 2, 7, UNI_PHAG } /* isphagspa */,
+ { 4, 1967, 602, 7, 3, -UNI_RADICAL } /* radical=no */,
+ { 1, 7132, 5358, 5, 11, UNI_SMALLKANAEXT } /* blk=smallkanaext */,
+ { 1, 4418, 0, 6, 0, UNI_ZYYY } /* common */,
+ { 0, 3474, 3637, 6, 14, UNI_LISUSUP } /* block=lisusupplement */,
+ { 0, 524, 602, 6, 3, -UNI_PATSYN } /* patsyn=no */,
+ { 4, 6114, 2217, 3, 12, UNI_HUNG } /* sc=oldhungarian */,
+ { 0, 520, 2080, 4, 8, UNI_NV__15_SLASH_2 } /* nv=7.500e+00 */,
+ { 7, 313, 5661, 2, 19, UNI_MERO } /* inmeroitichieroglyphs */,
+ { 2, 2974, 2098, 11, 2, UNI_IN__6_DOT_3 } /* presentin=v63 */,
+ { 0, 1879, 2428, 4, 13, UNI_IPAEXT } /* blk=ipaextensions */,
+ { 1, 4291, 4137, 10, 15, UNI_LB__OP } /* linebreak=openpunctuation */,
+ { 1, 4355, 4882, 17, 4, UNI_EGYP } /* scriptextensions=egyp */,
+ { 0, 2232, 1145, 3, 3, UNI_THAI } /* isthai */,
+ { 0, 1102, 469, 4, 4, UNI_SOGO } /* scx=sogo */,
+ { 0, 15, 36, 1, 3, UNI_AVST } /* avst */,
+ { 0, 7880, 1491, 5, 4, UNI_CJKEXTA } /* iscjkexta */,
+ { 0, 3058, 588, 8, 2, UNI_XPOSIXXDIGIT } /* hexdigit=t */,
+ { 0, 2712, 356, 14, 4, UNI_ECOMP } /* emojicomponent=yes */,
+ { 1, 4081, 0, 5, 0, UNI_P } /* punct */,
+ { 3, 1317, 0, 9, 0, UNI_PERM } /* oldpermic */,
+ { 0, 3474, 1887, 6, 7, UNI_UCASEXT } /* block=ucasext */,
+ { 1, 6379, 4152, 13, 14, UNI_JG__HAMZAONHEHGOAL } /* joininggroup=hamzaonhehgoal */,
+ { 0, 5147, 4629, 10, 12, UNI_LATIN1 } /* block=latin1supplement */,
+ { 0, 464, 4656, 2, 9, UNI_TANGUTSUP } /* istangutsup */,
+ { 0, 5099, 306, 6, 5, UNI__PERL_PATWS } /* _perl_patws */,
+ { 3, 1102, 457, 4, 4, UNI_PRTI } /* scx=prti */,
+ { 12, 7527, 703, 3, 2, UNI_EMOD } /* lb=em */,
+ { 2, 3474, 2428, 6, 6, UNI_IPAEXT } /* block=ipaext */,
+ { 8, 1102, 1508, 4, 8, UNI_UGAR } /* scx=ugaritic */,
+ { 4, 1382, 356, 4, 2, UNI_XIDS } /* xids=y */,
+ { 5, 1548, 409, 3, 2, UNI_NT__DI } /* nt=di */,
+ { 0, 1395, 0, 5, 0, UNI_LATN } /* latin */,
+ { 1, 7688, 4198, 23, 4, UNI_JG__MANICHAEANTETH } /* joininggroup=manichaeanteth */,
+ { 16, 2181, 1072, 4, 3, UNI_NV__5_SLASH_12 } /* nv=5/12 */,
+ { 0, 1796, 1614, 7, 4, UNI_WARA } /* script=wara */,
+ { 1, 6379, 4194, 13, 4, UNI_JG__QAPH } /* joininggroup=qaph */,
+ { 0, 2712, 934, 5, 2, -UNI_EMOJI } /* emoji=f */,
+ { 6, 78, 3500, 2, 14, UNI_CYPRIOTSYLLABARY } /* cypriotsyllabary */,
+ { 3, 1382, 6573, 3, 3, UNI_XIDC } /* xidc=t */,
+ { 9, 1102, 3885, 4, 17, UNI_AGHB } /* scx=caucasianalbanian */,
+ { 0, 4872, 2373, 8, 9, UNI_KATAKANAEXT } /* block=katakanaext */,
+ { 0, 6039, 3324, 7, 14, UNI_MISCPICTOGRAPHS } /* block=miscpictographs */,
+ { 8, 3474, 6833, 6, 23, UNI_BYZANTINEMUSIC } /* block=byzantinemusicalsymbols */,
+ { 0, 464, 2740, 2, 4, UNI_COPT } /* iscopt */,
+ { 0, 2496, 4962, 3, 16, UNI_JG__HANIFIROHINGYAPA } /* jg=hanifirohingyapa */,
+ { 0, 940, 1104, 5, 2, UNI_compex_values_index } /* compex= */,
+ { 4, 1879, 735, 4, 7, UNI_INLINEARA } /* blk=lineara */,
+ { 0, 612, 8010, 2, 3, UNI_LB__CJ } /* lb=cj */,
+ { 2, 6011, 7175, 7, 10, UNI_ENCLOSEDCJK } /* block=enclosedcjk */,
+ { 1, 5888, 602, 5, 2, -UNI__PERL_NCHAR } /* nchar=n */,
+ { 8, 2, 587, 1, 6, UNI_CE } /* ce=true */,
+ { 1, 7208, 2322, 9, 10, UNI_CN } /* category=unassigned */,
+ { 1, 7201, 4006, 16, 14, UNI_SC } /* generalcategory=currencysymbol */,
+ { 2, 4092, 6573, 8, 3, UNI_DIA } /* diacritic=t */,
+ { 0, 1440, 588, 2, 2, UNI_SD } /* sd=t */,
+ { 0, 2463, 602, 11, 2, -UNI_JOINC } /* joincontrol=n */,
+ { 2, 1796, 473, 7, 4, UNI_TNSA } /* script=tnsa */,
+ { 0, 1796, 991, 7, 4, UNI_HATR } /* script=hatr */,
+ { 0, 469, 8, 2, 2, UNI_SOGO } /* sogo */,
+ { 1, 4355, 4998, 16, 11, UNI_MANI } /* scriptextensions=manichaean */,
+ { 3, 464, 252, 2, 5, UNI_XPOSIXCNTRL } /* iscntrl */,
+ { 2, 1102, 671, 4, 5, UNI_OGAM } /* scx=ogham */,
+ { 2, 1059, 602, 6, 2, UNI_NFKDQC__N } /* nfkdqc=n */,
+ { 8, 1102, 1807, 4, 4, UNI_SORA } /* scx=sora */,
+ { 0, 4355, 983, 17, 4, UNI_HIRA } /* scriptextensions=hira */,
+ { 0, 1410, 351, 7, 2, UNI_CCC__91 } /* ccc=ccc91 */,
+ { 1, 296, 1304, 3, 2, UNI_NV__20 } /* nv=20 */,
+ { 0, 7688, 5382, 23, 7, UNI_JG__MANICHAEANHUNDRED } /* joininggroup=manichaeanhundred */,
+ { 0, 5136, 4442, 11, 9, UNI_MYANMAREXTB } /* blk=myanmarextendedb */,
+ { 1, 1879, 4882, 4, 19, UNI_INEGYPTIANHIEROGLYPHS } /* blk=egyptianhieroglyphs */,
+ { 1, 2253, 523, 10, 1, UNI_IN__7 } /* presentin=7 */,
+ { 0, 895, 2090, 5, 2, UNI_AGE__6_DOT_2 } /* age=v62 */,
+ { 2, 1102, 951, 4, 4, UNI_DUPL } /* scx=dupl */,
+ { 0, 1102, 417, 4, 4, UNI_HANO } /* scx=hano */,
+ { 6, 316, 588, 5, 5, UNI_QMARK } /* qmark=true */,
+ { 3, 1879, 144, 4, 4, UNI_INNEWA } /* blk=newa */,
+ { 2, 3474, 1141, 12, 3, UNI_ARABICPFA } /* block=arabicpfa */,
+ { 1, 1796, 1371, 7, 6, UNI_SC__THAA } /* script=thaana */,
+ { 1, 1991, 11, 12, 1, UNI_JT__R } /* joiningtype=r */,
+ { 1, 3474, 7044, 6, 24, UNI_DIACRITICALSFORSYMBOLS } /* block=combiningmarksforsymbols */,
+ { 4, 7500, 0, 17, 0, UNI_ANCIENTGREEKMUSIC } /* ancientgreekmusic */,
+ { 1, 3748, 766, 14, 3, UNI_NV__1_SLASH_64 } /* numericvalue=1/64 */,
+ { 0, 6114, 1614, 3, 4, UNI_WARA } /* sc=wara */,
+ { 4, 1796, 1090, 7, 4, UNI_SC__LINB } /* script=linb */,
+ { 1, 2033, 934, 5, 2, -UNI_XPOSIXALPHA } /* alpha=f */,
+ { 2, 7527, 67, 3, 2, UNI_LB__CP } /* lb=cp */,
+ { 0, 3794, 1781, 14, 4, UNI_NV__80000 } /* numericvalue=80000 */,
+ { 3, 1796, 1326, 7, 9, UNI_ORKH } /* script=oldturkic */,
+ { 4, 4355, 1982, 17, 6, UNI_SYRC } /* scriptextensions=syriac */,
+ { 0, 2581, 0, 9, 0, UNI__PERL_SURROGATE } /* surrogate */,
+ { 7, 204, 0, 4, 0, UNI_TAVT } /* tavt */,
+ { 5, 2181, 2080, 4, 8, UNI_NV__11_SLASH_2 } /* nv=5.500e+00 */,
+ { 4, 1796, 5322, 7, 8, UNI_CHER } /* script=cherokee */,
+ { 6, 8276, 1503, 22, 5, UNI_INSC__BINDU } /* indicsyllabiccategory=bindu */,
+ { 2, 464, 1003, 2, 6, UNI_LEPC } /* islepcha */,
+ { 2, 1597, 588, 10, 2, UNI_SD } /* softdotted=t */,
+ { 2, 1480, 5812, 5, 6, UNI_GEORGIANSUP } /* georgiansup */,
+ { 2, 4355, 4418, 17, 6, UNI_ZYYY } /* scriptextensions=common */,
+ { 0, 464, 7660, 2, 18, UNI_INVS } /* isvariationselectors */,
+ { 0, 5087, 3024, 10, 11, UNI_WB__SQ } /* wordbreak=singlequote */,
+ { 1, 1410, 347, 7, 2, UNI_CCC__11 } /* ccc=ccc11 */,
+ { 1, 2253, 549, 10, 3, UNI_IN__3 } /* presentin=3.0 */,
+ { 0, 4726, 6231, 14, 8, UNI_NV__1_SLASH_160 } /* numericvalue=6.250e-03 */,
+ { 1, 1548, 593, 3, 2, UNI_XPOSIXDIGIT } /* nt=de */,
+ { 2, 1879, 917, 4, 8, UNI_INBASSAVAH } /* blk=bassavah */,
+ { 0, 1548, 2961, 3, 7, UNI_NT__NU } /* nt=numeric */,
+ { 2, 1796, 4882, 7, 19, UNI_EGYP } /* script=egyptianhieroglyphs */,
+ { 0, 2392, 1037, 9, 4, UNI_MYANMAREXTB } /* inmyanmarextb */,
+ { 9, 2253, 298, 9, 2, UNI_IN__9 } /* presentin=9 */,
+ { 0, 1102, 473, 4, 4, UNI_TNSA } /* scx=tnsa */,
+ { 5, 4776, 587, 16, 3, UNI__PERL_PATWS } /* patternwhitespace=t */,
+ { 1, 2394, 1037, 7, 4, UNI_MYANMAREXTB } /* myanmarextb */,
+ { 8, 1102, 116, 4, 4, UNI_KNDA } /* scx=knda */,
+ { 8, 1539, 1939, 3, 9, UNI_COMPATJAMO } /* iscompatjamo */,
+ { 2, 6114, 1241, 3, 7, UNI_SC__PHAG } /* sc=phagspa */,
+ { 0, 2253, 2172, 10, 3, UNI_IN__2 } /* presentin=2.0 */,
+ { 1, 1516, 328, 6, 3, UNI_KANASUP } /* iskanasup */,
+ { 0, 4291, 3285, 10, 12, UNI_LB__HL } /* linebreak=hebrewletter */,
+ { 2, 6039, 6549, 7, 21, UNI_MISCTECHNICAL } /* block=miscellaneoustechnical */,
+ { 3, 343, 1155, 4, 2, UNI_CCC__35 } /* ccc=35 */,
+ { 3, 2033, 588, 5, 2, UNI_XPOSIXALPHA } /* alpha=t */,
+ { 1, 236, 0, 2, 0, UNI_YI } /* yi */,
+ { 1, 6114, 1785, 3, 11, UNI_HMNG } /* sc=pahawhhmong */,
+ { 5, 600, 940, 3, 3, UNI_DT__COM } /* dt=com */,
+ { 0, 464, 3061, 2, 5, UNI_XPOSIXDIGIT } /* isdigit */,
+ { 11, 4355, 3465, 16, 5, UNI_ETHI } /* scriptextensions=ethi */,
+ { 1, 7688, 639, 23, 3, UNI_JG__MANICHAEANNUN } /* joininggroup=manichaeannun */,
+ { 0, 2981, 2090, 4, 2, UNI_IN__6_DOT_2 } /* in=v62 */,
+ { 0, 8007, 4089, 30, 4, UNI_CJKEXTD } /* blk=cjkunifiedideographsextensiond */,
+ { 0, 2274, 602, 4, 2, -UNI_XIDC } /* xidc=n */,
+ { 4, 4355, 1792, 17, 4, UNI_MONG } /* scriptextensions=mong */,
+ { 1, 4355, 1882, 16, 5, UNI_KANA } /* scriptextensions=kana */,
+ { 3, 7201, 1413, 15, 2, UNI_C } /* generalcategory=c */,
+ { 4, 1796, 0, 11, 0, UNI_SC__MLYM } /* script=mlym */,
+ { 1, 2491, 0, 5, 0, UNI_XPOSIXBLANK } /* blank */,
+ { 0, 2033, 2762, 3, 9, UNI_ALPHABETICPF } /* alphabeticpf */,
+ { 4, 1879, 1495, 4, 8, UNI_INJAVANESE } /* blk=javanese */,
+ { 1, 464, 4614, 2, 16, UNI_PF } /* isfinalpunctuation */,
+ { 6, 7208, 4533, 9, 18, UNI_PI } /* category=initialpunctuation */,
+ { 0, 6379, 2529, 13, 10, UNI_JG__REVERSEDPE } /* joininggroup=reversedpe */,
+ { 1, 3474, 1289, 6, 9, UNI_INNEWTAILUE } /* block=newtailue */,
+ { 0, 555, 552, 4, 3, UNI_AGE__4 } /* age=4.0 */,
+ { 1, 1102, 2217, 4, 12, UNI_HUNG } /* scx=oldhungarian */,
+ { 5, 4783, 587, 9, 6, UNI_XPOSIXSPACE } /* whitespace=true */,
+ { 1, 464, 252, 2, 2, UNI_CN } /* iscn */,
+ { 0, 4355, 951, 17, 8, UNI_DUPL } /* scriptextensions=duployan */,
+ { 0, 8533, 8319, 18, 21, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* block=supplementalsymbolsandpictographs */,
+ { 4, 7132, 5858, 7, 7, UNI_SUPARROWSC } /* blk=suparrowsc */,
+ { 2, 464, 248, 2, 4, UNI_ZZZZ } /* iszzzz */,
+ { 0, 4901, 355, 16, 3, UNI_EBASE } /* emojimodifierbase=y */,
+ { 1, 4322, 1300, 14, 2, UNI_NV__300 } /* numericvalue=300 */,
+ { 0, 1065, 2096, 4, 8, UNI_NV__1_SLASH_64 } /* nv=1.563e-02 */,
+ { 6, 1308, 0, 9, 0, UNI_ITAL } /* olditalic */,
+ { 0, 1879, 6728, 4, 14, UNI_MEETEIMAYEKEXT } /* blk=meeteimayekext */,
+ { 0, 3474, 7481, 10, 20, UNI_ARABICPFA } /* block=arabicpresentationformsa */,
+ { 10, 555, 2616, 4, 3, UNI_AGE__5 } /* age=5.0 */,
+ { 1, 7880, 6505, 27, 5, UNI_CJKEXTC } /* iscjkunifiedideographsextensionc */,
+ { 0, 6114, 749, 3, 7, UNI_MARC } /* sc=marchen */,
+ { 0, 8276, 2290, 22, 6, UNI_INSC__NUMBER } /* indicsyllabiccategory=number */,
+ { 0, 1796, 1098, 7, 4, UNI_NSHU } /* script=nshu */,
+ { 2, 4355, 3839, 17, 6, UNI_TANG } /* scriptextensions=tangut */,
+ { 3, 7201, 1379, 15, 2, UNI_M } /* generalcategory=m */,
+ { 9, 4355, 1003, 17, 6, UNI_LEPC } /* scriptextensions=lepcha */,
+ { 0, 3915, 588, 17, 2, UNI_EPRES } /* emojipresentation=t */,
+ { 1, 2, 1939, 1, 9, UNI_COMPATJAMO } /* compatjamo */,
+ { 0, 6114, 164, 3, 4, UNI_PHNX } /* sc=phnx */,
+ { 0, 1065, 523, 5, 1, UNI_NV__1_SLASH_7 } /* nv=1/7 */,
+ { 2, 4433, 6771, 14, 4, UNI_LATINEXTD } /* blk=latinextendedd */,
+ { 2, 8590, 5898, 5, 4, UNI_ANY } /* isunicode */,
+ { 16, 6114, 71, 3, 4, UNI_SC__CPRT } /* sc=cprt */,
+ { 1, 2496, 4682, 3, 3, UNI_JG__SAD } /* jg=sad */,
+ { 1, 1410, 1070, 7, 2, UNI_CCC__31 } /* ccc=ccc31 */,
+ { 4, 959, 602, 8, 3, -UNI_EXT } /* extender=no */,
+ { 7, 58, 5139, 2, 8, UNI_SC__MYMR } /* sc=myanmar */,
+ { 0, 1796, 1353, 7, 4, UNI_PAUC } /* script=pauc */,
+ { 0, 1465, 933, 4, 7, -UNI_XPOSIXSPACE } /* space=false */,
+ { 3, 4827, 0, 4, 0, UNI_BAMU } /* bamu */,
+ { 1, 940, 1104, 5, 3, UNI_COMPEX } /* compex=t */,
+ { 0, 3367, 292, 14, 1, UNI_NV__43 } /* numericvalue=43 */,
+ { 19, 7182, 1434, 3, 7, UNI_CJKSTROKES } /* cjkstrokes */,
+ { 0, 4355, 868, 17, 4, UNI_TIRH } /* scriptextensions=tirh */,
+ { 1, 1796, 5322, 7, 4, UNI_CHER } /* script=cher */,
+ { 2, 296, 1781, 4, 4, UNI_NV__90000 } /* nv=90000 */,
+ { 0, 2802, 0, 10, 0, UNI_ETHI } /* isethiopic */,
+ { 6, 2153, 2060, 8, 4, UNI_NV__5_SLASH_12 } /* nv=4.167e-01 */,
+ { 4, 1879, 3991, 4, 7, UNI_BRAI } /* blk=braille */,
+ { 0, 524, 602, 6, 2, -UNI_PATSYN } /* patsyn=n */,
+ { 4, 3722, 0, 10, 0, UNI_SM } /* mathsymbol */,
+ { 1, 6402, 5075, 14, 5, UNI_SB__AT } /* sentencebreak=aterm */,
+ { 0, 24, 356, 3, 2, UNI_XPOSIXXDIGIT } /* hex=y */,
+ { 5, 5607, 6500, 15, 9, UNI_IDENTIFIERTYPE__INCLUSION } /* identifiertype=inclusion */,
+ { 2, 7201, 4614, 16, 16, UNI_PF } /* generalcategory=finalpunctuation */,
+ { 0, 6114, 236, 3, 4, UNI_SC__YI } /* sc=yiii */,
+ { 1, 6114, 909, 3, 4, UNI_BALI } /* sc=bali */,
+ { 11, 3915, 934, 17, 2, -UNI_EPRES } /* emojipresentation=f */,
+ { 1, 464, 110, 2, 2, UNI_ZL } /* iszl */,
+ { 0, 4355, 951, 17, 4, UNI_DUPL } /* scriptextensions=dupl */,
+ { 1, 321, 0, 5, 0, UNI_TALE } /* taile */,
+ { 0, 464, 3974, 2, 4, UNI_IDSB } /* isidsb */,
+ { 1, 2260, 2616, 3, 3, UNI_IN__5 } /* in=5.0 */,
+ { 3, 4433, 0, 18, 0, UNI_LATINEXTB } /* blk=latinextendedb */,
+ { 2, 1879, 7377, 4, 26, UNI_KATAKANAEXT } /* blk=katakanaphoneticextensions */,
+ { 0, 4092, 588, 9, 5, UNI_DIA } /* diacritic=true */,
+ { 1, 6379, 639, 13, 3, UNI_JG__NUN } /* joininggroup=nun */,
+ { 2, 1879, 1027, 4, 6, UNI_INYEZIDI } /* blk=yezidi */,
+ { 0, 939, 934, 5, 6, -UNI_ECOMP } /* ecomp=false */,
+ { 1, 4355, 409, 17, 4, UNI_DIAK } /* scriptextensions=diak */,
+ { 0, 6774, 934, 25, 6, -UNI_DI } /* defaultignorablecodepoint=false */,
+ { 0, 2678, 387, 3, 2, UNI_BC__EN } /* bc=en */,
+ { 1, 6114, 4882, 3, 4, UNI_EGYP } /* sc=egyp */,
+ { 2, 2454, 6878, 5, 20, UNI_GEOMETRICSHAPESEXT } /* isgeometricshapesextended */,
+ { 0, 409, 356, 3, 2, UNI_DIA } /* dia=y */,
+ { 1, 1796, 82, 7, 4, UNI_DSRT } /* script=dsrt */,
+ { 0, 2, 355, 1, 3, UNI_CE } /* ce=y */,
+ { 0, 3474, 3933, 6, 4, UNI_INMODI } /* block=modi */,
+ { 1, 7527, 1990, 3, 2, UNI_LB__WJ } /* lb=wj */,
+ { 0, 6944, 294, 25, 2, UNI_CCC__IS } /* canonicalcombiningclass=240 */,
+ { 8, 464, 5846, 2, 19, UNI_SUPARROWSC } /* issupplementalarrowsc */,
+ { 5, 2485, 1915, 6, 5, UNI_XPOSIXGRAPH } /* xposixgraph */,
+ { 1, 1975, 3060, 7, 6, UNI_POSIXXDIGIT } /* isposixxdigit */,
+ { 0, 1106, 0, 4, 0, UNI_TALU } /* talu */,
+ { 4, 6114, 818, 3, 7, UNI_SC__SHRD } /* sc=sharada */,
+ { 0, 34, 539, 1, 7, UNI_TNSA } /* istangsa */,
+ { 0, 7208, 54, 9, 2, UNI_MC } /* category=mc */,
+ { 0, 7201, 3651, 16, 14, UNI_MN } /* generalcategory=nonspacingmark */,
+ { 0, 2974, 292, 12, 2, UNI_IN__13 } /* presentin=v130 */,
+ { 0, 378, 601, 4, 4, -UNI_GREXT } /* grext=no */,
+ { 0, 2260, 6214, 3, 3, UNI_IN__2_DOT_1 } /* in=2.1 */,
+ { 0, 132, 0, 4, 0, UNI_MTEI } /* mtei */,
+ { 5, 6114, 321, 3, 5, UNI_SC__TALE } /* sc=taile */,
+ { 2, 2260, 292, 4, 1, UNI_IN__13 } /* in=13 */,
+ { 0, 2392, 0, 9, 0, UNI_INMYANMAR } /* inmyanmar */,
+ { 0, 6039, 5038, 7, 18, UNI_MODIFIERTONELETTERS } /* block=modifiertoneletters */,
+ { 0, 2253, 569, 10, 3, UNI_IN__9 } /* presentin=9.0 */,
+ { 1, 34, 7499, 1, 18, UNI_ANCIENTGREEKMUSIC } /* isancientgreekmusic */,
+ { 0, 296, 2081, 3, 3, UNI_NV__500 } /* nv=500 */,
+ { 1, 721, 730, 2, 5, UNI_KALI } /* kayahli */,
+ { 4, 5990, 928, 21, 2, UNI_BPT__O } /* bidipairedbrackettype=o */,
+ { 0, 2974, 1304, 11, 2, UNI_IN__2 } /* presentin=v20 */,
+ { 1, 1065, 2197, 4, 8, UNI_NV__1_SLASH_80 } /* nv=1.250e-02 */,
+ { 1, 4308, 356, 14, 4, UNI_DT__NONE } /* nfkdquickcheck=yes */,
+ { 5, 1102, 1227, 4, 7, UNI_MULT } /* scx=multani */,
+ { 15, 313, 967, 2, 8, UNI_INGUJARATI } /* ingujarati */,
+ { 0, 2496, 717, 3, 4, UNI_JG__ZAIN } /* jg=zain */,
+ { 4, 3474, 4918, 7, 9, UNI_ALCHEMICAL } /* block=alchemical */,
+ { 7, 1102, 6134, 4, 10, UNI_GLAG } /* scx=glagolitic */,
+ { 0, 1102, 1051, 4, 8, UNI_MAHJ } /* scx=mahajani */,
+ { 1, 296, 3365, 3, 2, UNI_NV__36 } /* nv=36 */,
+ { 1, 1879, 909, 4, 8, UNI_INBALINESE } /* blk=balinese */,
+ { 1, 7740, 356, 11, 4, UNI_IDEO } /* ideographic=yes */,
+ { 0, 4355, 1125, 17, 8, UNI_TFNG } /* scriptextensions=tifinagh */,
+ { 5, 7208, 128, 9, 2, UNI_ME } /* category=me */,
+ { 3, 1102, 5907, 4, 7, UNI_SINH } /* scx=sinhala */,
+ { 1, 887, 2053, 5, 3, UNI_AGE__11 } /* age=11.0 */,
+ { 0, 3474, 4551, 6, 16, UNI_LINEARBSYLLABARY } /* block=linearbsyllabary */,
+ { 0, 1410, 292, 8, 2, UNI_CCC__130 } /* ccc=ccc130 */,
+ { 0, 1102, 1826, 4, 11, UNI_SYLO } /* scx=sylotinagri */,
+ { 2, 5888, 278, 5, 1, UNI_nchar_values_index } /* nchar= */,
+ { 5, 7605, 897, 17, 3, UNI_GCB__V } /* hangulsyllabletype=v */,
+ { 3, 3351, 2079, 13, 9, UNI_NV__3_SLASH_2 } /* numericvalue=1.500e+00 */,
+ { 0, 4783, 5620, 9, 3, -UNI_XPOSIXSPACE } /* whitespace=n */,
+ { 6, 2678, 278, 2, 2, UNI_BC__B } /* bc=b */,
+ { 0, 2792, 4590, 10, 9, UNI_CYRILLICEXTC } /* iscyrillicextendedc */,
+ { 0, 2392, 5807, 3, 11, UNI_MONGOLIANSUP } /* inmongoliansup */,
+ { 1, 464, 3435, 2, 15, UNI_ZANB } /* iszanabazarsquare */,
+ { 2, 6114, 1508, 3, 8, UNI_UGAR } /* sc=ugaritic */,
+ { 5, 8276, 1157, 22, 5, UNI_INSC__NUKTA } /* indicsyllabiccategory=nukta */,
+ { 3, 4308, 3477, 12, 3, UNI_nfkdqc_values_index } /* nfkdquickcheck= */,
+ { 0, 313, 1227, 2, 7, UNI_INMULTANI } /* inmultani */,
+ { 2, 6402, 287, 14, 2, UNI_SB__NU } /* sentencebreak=nu */,
+ { 7, 3474, 5806, 6, 19, UNI_MONGOLIANSUP } /* block=mongoliansupplement */,
+ { 4, 34, 5660, 1, 5, UNI_MERO } /* ismero */,
+ { 3, 464, 496, 2, 4, UNI_KHOJ } /* iskhoj */,
+ { 2, 876, 934, 4, 2, -UNI_IDEO } /* ideo=f */,
+ { 2, 1539, 52, 3, 3, UNI_CAKM } /* iscakm */,
+ { 1, 3622, 3638, 3, 13, UNI_LISUSUP } /* islisusupplement */,
+ { 7, 2260, 2053, 4, 3, UNI_IN__11 } /* in=11.0 */,
+ { 1, 8276, 1958, 22, 7, UNI_INSC__VISARGA } /* indicsyllabiccategory=visarga */,
+ { 3, 2974, 771, 12, 2, UNI_IN__12_DOT_1 } /* presentin=v121 */,
+ { 1, 875, 356, 5, 2, UNI_UIDEO } /* uideo=y */,
+ { 3, 3474, 728, 6, 7, UNI_KALI } /* block=kayahli */,
+ { 5, 296, 6197, 2, 10, UNI_NV__100000000 } /* nv=100000000 */,
+ { 0, 275, 588, 3, 2, UNI_GCB__T } /* gcb=t */,
+ { 8, 6687, 1849, 22, 3, UNI_JG__MALAYALAMLLA } /* joininggroup=malayalamlla */,
+ { 1, 313, 5846, 2, 19, UNI_SUPARROWSC } /* insupplementalarrowsc */,
+ { 16, 1710, 7937, 3, 29, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* issymbolsandpictographsextendeda */,
+ { 0, 3367, 1781, 14, 4, UNI_NV__40000 } /* numericvalue=40000 */,
+ { 0, 464, 5502, 2, 21, UNI_CWCM } /* ischangeswhencasemapped */,
+ { 0, 6239, 0, 4, 0, UNI_BC__L } /* bc=l */,
+ { 2, 3474, 735, 6, 7, UNI_INLINEARA } /* block=lineara */,
+ { 10, 3474, 1561, 6, 10, UNI_INPHOENICIAN } /* block=phoenician */,
+ { 0, 464, 2771, 2, 5, UNI_KHMR } /* iskhmer */,
+ { 8, 4355, 1353, 17, 4, UNI_PAUC } /* scriptextensions=pauc */,
+ { 4, 7182, 1037, 3, 4, UNI_CJKEXTB } /* cjkextb */,
+ { 8, 3474, 1390, 6, 10, UNI_ASCII } /* block=basiclatin */,
+ { 0, 8, 6115, 1, 4, UNI_CO } /* gc=co */,
+ { 0, 1102, 4582, 4, 8, UNI_BOPO } /* scx=bopomofo */,
+ { 2, 8276, 6370, 31, 9, UNI_INSC__CONSONANTSUBJOINED } /* indicsyllabiccategory=consonantsubjoined */,
+ { 7, 5087, 4338, 10, 17, UNI_RI } /* wordbreak=regionalindicator */,
+ { 3, 5565, 278, 21, 1, UNI_cwu_values_index } /* changeswhenuppercased= */,
+ { 0, 4450, 1491, 14, 4, UNI_CYRILLICEXTA } /* block=cyrillicexta */,
+ { 0, 7132, 7238, 5, 24, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* blk=symbolsandpictographsexta */,
+ { 0, 1065, 1303, 5, 2, UNI_NV__1_SLASH_32 } /* nv=1/32 */,
+ { 4, 464, 43, 2, 4, UNI_BHKS } /* isbhks */,
+ { 4, 925, 601, 2, 3, UNI_BPT__N } /* bpt=n */,
+ { 2, 7317, 0, 21, 0, UNI_BC__L } /* bidiclass=lefttoright */,
+ { 1, 8244, 3571, 9, 6, UNI_CJKCOMPAT } /* block=cjkcompat */,
+ { 1, 464, 721, 2, 7, UNI_KNDA } /* iskannada */,
+ { 0, 6114, 172, 3, 4, UNI_RJNG } /* sc=rjng */,
+ { 2, 4783, 587, 9, 3, UNI_XPOSIXSPACE } /* whitespace=t */,
+ { 0, 433, 122, 2, 2, UNI_NKO } /* nkoo */,
+ { 2, 1796, 681, 7, 5, UNI_RUNR } /* script=runic */,
+ { 2, 7148, 1303, 25, 2, UNI_CCC__132 } /* canonicalcombiningclass=132 */,
+ { 0, 1796, 1133, 7, 4, UNI_VITH } /* script=vith */,
+ { 4, 7823, 3571, 5, 11, UNI_CJKCOMPATFORMS } /* incjkcompatforms */,
+ { 1, 2981, 771, 4, 2, UNI_IN__2_DOT_1 } /* in=v21 */,
+ { 2, 1879, 4582, 4, 16, UNI_BOPOMOFOEXT } /* blk=bopomofoextended */,
+ { 0, 1796, 4107, 7, 4, UNI_SC__HANG } /* script=hang */,
+ { 3, 1255, 0, 4, 0, UNI_SOYO } /* soyo */,
+ { 1, 6114, 1003, 3, 4, UNI_LEPC } /* sc=lepc */,
+ { 4, 313, 4107, 2, 15, UNI_INHANGUL } /* inhangulsyllables */,
+ { 6, 14, 5038, 1, 18, UNI_MODIFIERTONELETTERS } /* modifiertoneletters */,
+ { 0, 2890, 3273, 3, 12, UNI_JT__R } /* jt=rightjoining */,
+ { 4, 3474, 5825, 6, 9, UNI_INSUNDANESE } /* block=sundanese */,
+ { 4, 1102, 1451, 4, 10, UNI_DIAK } /* scx=divesakuru */,
+ { 0, 2443, 0, 11, 0, UNI_CASEDLETTER } /* casedletter */,
+ { 7, 8182, 5239, 24, 15, UNI_LOE } /* indicpositionalcategory=visualorderleft */,
+ { 0, 7527, 213, 3, 2, UNI_LB__GL } /* lb=gl */,
+ { 1, 555, 2262, 3, 3, UNI_AGE__14 } /* age=14 */,
+ { 0, 3450, 3869, 5, 16, UNI_UCAS } /* blk=canadiansyllabics */,
+ { 5, 815, 2747, 3, 13, UNI_HIGHSURROGATES } /* inhighsurrogates */,
+ { 1, 1975, 1915, 7, 5, UNI_POSIXGRAPH } /* isposixgraph */,
+ { 0, 661, 0, 4, 0, UNI_DOGR } /* dogr */,
+ { 0, 4355, 3188, 17, 15, UNI_ARMI } /* scriptextensions=imperialaramaic */,
+ { 3, 4872, 1037, 10, 4, UNI_KANAEXTB } /* block=kanaextb */,
+ { 2, 6114, 3435, 3, 15, UNI_ZANB } /* sc=zanabazarsquare */,
+ { 0, 464, 1755, 2, 11, UNI_MEDF } /* ismedefaidrin */,
+ { 0, 6011, 1491, 14, 4, UNI_ETHIOPICEXTA } /* block=ethiopicexta */,
+ { 3, 3974, 356, 4, 2, UNI_IDSB } /* idsb=y */,
+ { 0, 34, 1570, 1, 11, UNI_INSAURASHTRA } /* insaurashtra */,
+ { 16, 1133, 0, 4, 0, UNI_VITH } /* vith */,
+ { 0, 464, 4107, 2, 6, UNI_HANG } /* ishangul */,
+ { 0, 6570, 0, 24, 0, UNI_INPC__TOPANDBOTTOMANDLEFT } /* inpc=topandbottomandleft */,
+ { 0, 1796, 983, 7, 8, UNI_SC__HIRA } /* script=hiragana */,
+ { 2, 464, 951, 2, 8, UNI_DUPL } /* isduployan */,
+ { 1, 600, 696, 3, 3, UNI_DT__ISO } /* dt=iso */,
+ { 6, 8007, 3571, 7, 11, UNI_CJKCOMPATFORMS } /* blk=cjkcompatforms */,
+ { 1, 783, 0, 4, 0, UNI_OSMA } /* osma */,
+ { 1, 814, 0, 4, 0, UNI_QAAI } /* zinh */,
+ { 0, 6944, 1155, 24, 2, UNI_CCC__35 } /* canonicalcombiningclass=35 */,
+ { 1, 313, 6069, 2, 22, UNI_DIACRITICALSFORSYMBOLS } /* indiacriticalsforsymbols */,
+ { 0, 1796, 1755, 7, 11, UNI_MEDF } /* script=medefaidrin */,
+ { 1, 3450, 0, 12, 0, UNI_INCYRILLIC } /* blk=cyrillic */,
+ { 1, 4355, 405, 17, 4, UNI_ARMN } /* scriptextensions=armn */,
+ { 0, 967, 972, 5, 3, UNI_GUJR } /* gujarati */,
+ { 0, 5607, 6486, 10, 7, UNI_identifierstatus_values_index } /* identifierstatus= */,
+ { 2, 1102, 360, 4, 6, UNI_CAKM } /* scx=chakma */,
+ { 1, 75, 602, 3, 3, -UNI_CWU } /* cwu=no */,
+ { 0, 374, 322, 2, 2, UNI_THAI } /* thai */,
+ { 3, 313, 5787, 2, 19, UNI_JAMOEXTA } /* inhanguljamoextendeda */,
+ { 2, 296, 6197, 2, 7, UNI_NV__100000 } /* nv=100000 */,
+ { 1, 2961, 0, 12, 0, UNI_nt_values_index } /* numerictype= */,
+ { 1, 3474, 1965, 6, 10, UNI_YIRADICALS } /* block=yiradicals */,
+ { 4, 464, 1951, 2, 4, UNI_SOGD } /* issogd */,
+ { 0, 520, 3777, 4, 2, UNI_NV__7_SLASH_8 } /* nv=7/8 */,
+ { 1, 8276, 5711, 22, 16, UNI_INSC__SYLLABLEMODIFIER } /* indicsyllabiccategory=syllablemodifier */,
+ { 0, 1977, 1082, 5, 4, UNI_POSIXWORD } /* posixword */,
+ { 2, 313, 728, 2, 7, UNI_KALI } /* inkayahli */,
+ { 0, 4355, 1255, 17, 4, UNI_SOYO } /* scriptextensions=soyo */,
+ { 16, 7527, 4247, 3, 14, UNI_LB__BK } /* lb=mandatorybreak */,
+ { 2, 895, 2066, 5, 2, UNI_AGE__5 } /* age=v50 */,
+ { 0, 6112, 5695, 5, 16, UNI_INSC__INVISIBLESTACKER } /* insc=invisiblestacker */,
+ { 9, 1796, 1470, 7, 8, UNI_SC__BUGI } /* script=buginese */,
+ { 4, 1102, 240, 4, 4, UNI_ZANB } /* scx=zanb */,
+ { 1, 14, 1052, 1, 7, UNI_MAHJ } /* mahajani */,
+ { 2, 2310, 933, 12, 3, -UNI_CI } /* caseignorable=f */,
+ { 0, 2253, 140, 10, 2, UNI_IN__NA } /* presentin=na */,
+ { 0, 524, 588, 6, 5, UNI_PATSYN } /* patsyn=true */,
+ { 0, 3474, 2771, 6, 5, UNI_INKHMER } /* block=khmer */,
+ { 3, 3543, 0, 16, 0, UNI_HIGHPUSURROGATES } /* highpusurrogates */,
+ { 12, 696, 4138, 3, 14, UNI_PS } /* isopenpunctuation */,
+ { 5, 5718, 356, 4, 4, UNI_EMOD } /* emod=yes */,
+ { 0, 581, 1300, 5, 2, UNI_WB__EB } /* ccc=200 */,
+ { 2, 464, 7660, 2, 28, UNI_VSSUP } /* isvariationselectorssupplement */,
+ { 2, 6944, 2138, 24, 2, UNI_CCC__33 } /* canonicalcombiningclass=33 */,
+ { 0, 719, 493, 5, 3, UNI_KANBUN } /* inkanbun */,
+ { 2, 3450, 8150, 5, 24, UNI_DIACRITICALS } /* blk=combiningdiacriticalmarks */,
+ { 10, 1015, 0, 6, 0, UNI_TELU } /* telugu */,
+ { 0, 313, 1144, 2, 9, UNI_INBHAIKSUKI } /* inbhaiksuki */,
+ { 1, 6114, 5806, 3, 9, UNI_SC__MONG } /* sc=mongolian */,
+ { 2, 2310, 933, 12, 7, -UNI_CI } /* caseignorable=false */,
+ { 4, 464, 691, 2, 5, UNI_BATK } /* isbatak */,
+ { 5, 3474, 1826, 6, 11, UNI_INSYLOTINAGRI } /* block=sylotinagri */,
+ { 0, 5990, 5020, 20, 3, UNI_BPT__C } /* bidipairedbrackettype=c */,
+ { 1, 1102, 3188, 4, 15, UNI_ARMI } /* scx=imperialaramaic */,
+ { 0, 4291, 10, 10, 2, UNI_LB__CR } /* linebreak=cr */,
+ { 0, 1529, 0, 10, 0, UNI_KHAR } /* kharoshthi */,
+ { 3, 2890, 1413, 2, 2, UNI_JT__C } /* jt=c */,
+ { 2, 1796, 1826, 7, 4, UNI_SC__SYLO } /* script=sylo */,
+ { 1, 7201, 4081, 16, 5, UNI_P } /* generalcategory=punct */,
+ { 1, 313, 197, 3, 3, UNI_TAGS } /* intags */,
+ { 0, 464, 6134, 2, 20, UNI_GLAGOLITICSUP } /* isglagoliticsupplement */,
+ { 2, 8533, 5858, 9, 7, UNI_SUPARROWSC } /* block=suparrowsc */,
+ { 0, 5565, 356, 21, 2, UNI_CWU } /* changeswhenuppercased=y */,
+ { 0, 7208, 6629, 9, 14, UNI_LM } /* category=modifierletter */,
+ { 2, 1879, 2018, 4, 12, UNI_INMASARAMGONDI } /* blk=masaramgondi */,
+ { 0, 1702, 8110, 8, 29, UNI_ARABICMATH } /* isarabicmathematicalalphabeticsymbols */,
+ { 0, 7201, 5174, 20, 12, UNI_PO } /* generalcategory=otherpunctuation */,
+ { 0, 2241, 0, 12, 0, UNI_PLAYINGCARDS } /* playingcards */,
+ { 7, 2496, 6666, 3, 21, UNI_JG__HANIFIROHINGYAKINNAYA } /* jg=hanifirohingyakinnaya */,
+ { 0, 58, 3093, 2, 5, UNI_SC__GEOR } /* sc=geor */,
+ { 3, 4355, 3381, 17, 15, UNI_NARB } /* scriptextensions=oldnortharabian */,
+ { 2, 343, 349, 4, 2, UNI_CCC__84 } /* ccc=84 */,
+ { 0, 3474, 1400, 6, 10, UNI_BOXDRAWING } /* block=boxdrawing */,
+ { 1, 3608, 0, 11, 0, UNI_PHONETICEXT } /* phoneticext */,
+ { 0, 296, 346, 2, 3, UNI_NV__11 } /* nv=11 */,
+ { 0, 1879, 1668, 4, 6, UNI_DOMINO } /* blk=domino */,
+ { 0, 464, 2401, 2, 4, UNI_NAND } /* isnand */,
+ { 4, 7431, 1153, 27, 2, UNI_CCC__24 } /* canonicalcombiningclass=ccc24 */,
+ { 2, 275, 647, 3, 2, UNI_GCB__L } /* gcb=l */,
+ { 0, 4355, 228, 17, 4, UNI_XPEO } /* scriptextensions=xpeo */,
+ { 0, 1796, 1125, 7, 8, UNI_TFNG } /* script=tifinagh */,
+ { 1, 7317, 4811, 10, 16, UNI_BC__S } /* bidiclass=segmentseparator */,
+ { 3, 6114, 1021, 3, 6, UNI_WCHO } /* sc=wancho */,
+ { 2, 6379, 481, 13, 3, UNI_JG__BEH } /* joininggroup=beh */,
+ { 0, 4355, 5389, 17, 20, UNI_HMNP } /* scriptextensions=nyiakengpuachuehmong */,
+ { 0, 6114, 728, 3, 7, UNI_SC__KALI } /* sc=kayahli */,
+ { 4, 1478, 5812, 7, 13, UNI_GEORGIANSUP } /* ingeorgiansupplement */,
+ { 2, 8250, 5887, 27, 3, UNI_CJKEXTC } /* cjkunifiedideographsextensionc */,
+ { 2, 3351, 350, 13, 2, UNI_NV__49 } /* numericvalue=49 */,
+ { 4, 296, 2157, 4, 8, UNI_NV__11_SLASH_12 } /* nv=9.167e-01 */,
+ { 0, 6112, 1168, 14, 6, UNI_INSC__CONSONANTMEDIAL } /* insc=consonantmedial */,
+ { 1, 6039, 1539, 7, 9, UNI_MISCARROWS } /* block=miscarrows */,
+ { 0, 34, 1596, 1, 11, UNI_SD } /* issoftdotted */,
+ { 0, 7825, 5183, 26, 4, UNI_CJKEXTE } /* cjkunifiedideographsextensione */,
+ { 0, 2392, 8307, 3, 33, UNI_MISCPICTOGRAPHS } /* inmiscellaneoussymbolsandpictographs */,
+ { 3, 2802, 5769, 3, 15, UNI_ENCLOSEDALPHANUM } /* isenclosedalphanum */,
+ { 0, 2692, 5625, 5, 18, UNI_ANCIENTGREEKNUMBERS } /* blk=ancientgreeknumbers */,
+ { 6, 6011, 5769, 7, 18, UNI_ENCLOSEDALPHANUMSUP } /* block=enclosedalphanumsup */,
+ { 0, 313, 2195, 2, 4, UNI_IN__6_DOT_2 } /* in=6.2 */,
+ { 1, 1102, 152, 4, 4, UNI_OSGE } /* scx=osge */,
+ { 5, 425, 0, 4, 0, UNI_LINA } /* lina */,
+ { 8, 464, 7068, 2, 26, UNI_PCM } /* isprependedconcatenationmark */,
+ { 0, 7688, 5376, 24, 6, UNI_JG__MANICHAEANTHAMEDH } /* joininggroup=manichaeanthamedh */,
+ { 4, 6039, 3719, 7, 15, UNI_MISCMATHSYMBOLSA } /* block=miscmathsymbolsa */,
+ { 0, 7527, 2951, 3, 2, UNI_LB__QU } /* lb=qu */,
+ { 0, 7201, 602, 15, 3, UNI_NO } /* generalcategory=no */,
+ { 1, 719, 0, 9, 0, UNI_INKANNADA } /* inkannada */,
+ { 1, 1614, 0, 4, 0, UNI_WARA } /* wara */,
+ { 2, 1102, 63, 4, 4, UNI_CHRS } /* scx=chrs */,
+ { 1, 832, 588, 5, 5, UNI_STERM } /* sterm=true */,
+ { 0, 1879, 651, 4, 5, UNI_INADLAM } /* blk=adlam */,
+ { 0, 7132, 5762, 16, 7, UNI_SUPARROWSB } /* blk=supplementalarrowsb */,
+ { 1, 581, 1304, 5, 2, UNI_CCC__B } /* ccc=220 */,
+ { 0, 2692, 7501, 5, 16, UNI_ANCIENTGREEKMUSIC } /* blk=ancientgreekmusic */,
+ { 1, 3474, 4656, 6, 16, UNI_TANGUTSUP } /* block=tangutsupplement */,
+ { 0, 464, 530, 2, 6, UNI_RJNG } /* isrejang */,
+ { 15, 4355, 63, 17, 4, UNI_CHRS } /* scriptextensions=chrs */,
+ { 0, 313, 2365, 2, 8, UNI_INETHIOPIC } /* inethiopic */,
+ { 2, 2726, 12, 3, 1, UNI_P } /* gc=p */,
+ { 0, 3060, 0, 6, 0, UNI_XPOSIXXDIGIT } /* xdigit */,
+ { 0, 7527, 2937, 3, 11, UNI_LB__IN } /* lb=inseperable */,
+ { 1, 313, 4793, 2, 4, UNI_RUMI } /* inrumi */,
+ { 0, 7823, 3929, 28, 4, UNI_CJKEXTG } /* incjkunifiedideographsextensiong */,
+ { 1, 7201, 2581, 16, 9, UNI__PERL_SURROGATE } /* generalcategory=surrogate */,
+ { 0, 4355, 1614, 17, 4, UNI_WARA } /* scriptextensions=wara */,
+ { 6, 24, 588, 3, 5, UNI_XPOSIXXDIGIT } /* hex=true */,
+ { 0, 2353, 1939, 3, 9, UNI_COMPATJAMO } /* incompatjamo */,
+ { 3, 3351, 0, 14, 0, UNI_NV__2 } /* numericvalue=2 */,
+ { 0, 7208, 117, 9, 2, UNI_XPOSIXDIGIT } /* category=nd */,
+ { 0, 1879, 951, 4, 8, UNI_INDUPLOYAN } /* blk=duployan */,
+ { 0, 464, 1470, 2, 8, UNI_BUGI } /* isbuginese */,
+ { 1, 2981, 294, 4, 2, UNI_IN__4 } /* in=v40 */,
+ { 0, 4355, 721, 17, 7, UNI_KNDA } /* scriptextensions=kannada */,
+ { 1, 59, 0, 4, 0, UNI_CHAM } /* cham */,
+ { 0, 464, 5340, 2, 18, UNI_DEVANAGARIEXT } /* isdevanagariextended */,
+ { 6, 1441, 588, 3, 5, UNI_DEP } /* dep=true */,
+ { 2, 3450, 5643, 5, 10, UNI_COUNTINGROD } /* blk=countingrod */,
+ { 6, 464, 477, 2, 4, UNI_VAI } /* isvaii */,
+ { 3, 676, 0, 5, 0, UNI_OSGE } /* osage */,
+ { 4, 6379, 484, 13, 3, UNI_JG__GAF } /* joininggroup=gaf */,
+ { 19, 2678, 7712, 3, 21, UNI_BC__PDI } /* bc=popdirectionalisolate */,
+ { 1, 4355, 1098, 17, 4, UNI_NSHU } /* scriptextensions=nshu */,
+ { 2, 34, 6438, 1, 14, UNI_ZNAMENNYMUSIC } /* isznamennymusic */,
+ { 3, 1516, 3582, 5, 3, UNI_KANGXI } /* iskangxi */,
+ { 0, 2496, 1522, 3, 7, UNI_JG__THINYEH } /* jg=thinyeh */,
+ { 0, 261, 356, 4, 2, UNI_CWCM } /* cwcm=y */,
+ { 0, 313, 4021, 2, 17, UNI_INDICSIYAQNUMBERS } /* inindicsiyaqnumbers */,
+ { 0, 1440, 0, 2, 0, UNI_SD } /* sd */,
+ { 3, 3351, 768, 13, 2, UNI_NV__45 } /* numericvalue=45 */,
+ { 0, 3474, 691, 6, 5, UNI_INBATAK } /* block=batak */,
+ { 0, 464, 3223, 2, 13, UNI_XPOSIXDIGIT } /* isdecimalnumber */,
+ { 4, 6114, 3285, 3, 6, UNI_HEBR } /* sc=hebrew */,
+ { 3, 844, 587, 2, 6, UNI_LOE } /* loe=true */,
+ { 5, 6799, 356, 24, 2, UNI_COMPEX } /* fullcompositionexclusion=y */,
+ { 0, 2353, 5797, 10, 9, UNI_CYRILLICEXTA } /* incyrillicextendeda */,
+ { 3, 3514, 0, 13, 0, UNI_ZL } /* lineseparator */,
+ { 17, 916, 355, 4, 2, UNI_ebase_values_index } /* ebase= */,
+ { 0, 464, 2401, 2, 11, UNI_NAND } /* isnandinagari */,
+ { 3, 3137, 934, 14, 2, UNI_EA__F } /* eastasianwidth=f */,
+ { 0, 2726, 5166, 3, 20, UNI_PC } /* gc=connectorpunctuation */,
+ { 1, 6114, 742, 3, 4, UNI_SC__MAND } /* sc=mand */,
+ { 0, 464, 3651, 2, 14, UNI_MN } /* isnonspacingmark */,
+ { 0, 1075, 6207, 4, 8, UNI_NV__1_SLASH_40 } /* nv=2.500e-02 */,
+ { 1, 2802, 5797, 10, 9, UNI_ETHIOPICEXTA } /* isethiopicextendeda */,
+ { 4, 343, 6280, 4, 4, UNI_WB__EB } /* ccc=atbl */,
+ { 4, 3474, 868, 6, 7, UNI_INTIRHUTA } /* block=tirhuta */,
+ { 1, 2253, 2056, 11, 2, UNI_IN__1_DOT_1 } /* presentin=1.1 */,
+ { 0, 1796, 3396, 7, 15, UNI_SARB } /* script=oldsoutharabian */,
+ { 6, 2726, 4533, 3, 18, UNI_PI } /* gc=initialpunctuation */,
+ { 4, 1065, 398, 5, 2, UNI_NV__1_SLASH_16 } /* nv=1/16 */,
+ { 3, 464, 160, 2, 4, UNI_PHLP } /* isphlp */,
+ { 0, 7201, 3236, 16, 13, UNI_ME } /* generalcategory=enclosingmark */,
+ { 7, 1879, 1125, 4, 8, UNI_INTIFINAGH } /* blk=tifinagh */,
+ { 0, 6402, 310, 14, 2, UNI_SB__SP } /* sentencebreak=sp */,
+ { 0, 6114, 814, 3, 4, UNI_SC__QAAI } /* sc=zinh */,
+ { 4, 4092, 356, 9, 4, UNI_DIA } /* diacritic=yes */,
+ { 0, 1887, 0, 8, 0, UNI_UCASEXTA } /* ucasexta */,
+ { 9, 5186, 6573, 19, 3, UNI_EXTPICT } /* extendedpictographic=t */,
+ { 0, 3593, 129, 13, 3, UNI_LATINEXTF } /* inlatinextendedf */,
+ { 0, 4291, 928, 9, 3, UNI_LB__OP } /* linebreak=op */,
+ { 0, 1796, 1117, 7, 8, UNI_SC__TAGB } /* script=tagbanwa */,
+ { 6, 1480, 3599, 7, 9, UNI_GEORGIANEXT } /* georgianextended */,
+ { 1, 6114, 1027, 3, 4, UNI_SC__YEZI } /* sc=yezi */,
+ { 1, 313, 854, 2, 7, UNI_INTAIVIET } /* intaiviet */,
+ { 0, 2275, 587, 9, 6, UNI_IDC } /* idcontinue=true */,
+ { 4, 3474, 1668, 6, 11, UNI_DOMINO } /* block=dominotiles */,
+ { 0, 6114, 5322, 3, 4, UNI_CHER } /* sc=cher */,
+ { 0, 4355, 4998, 16, 5, UNI_MANI } /* scriptextensions=mani */,
+ { 6, 520, 1300, 4, 3, UNI_NV__7000 } /* nv=7000 */,
+ { 0, 6570, 8440, 5, 14, UNI_INPC__BOTTOMANDRIGHT } /* inpc=bottomandright */,
+ { 4, 7823, 1037, 5, 4, UNI_CJKEXTB } /* incjkextb */,
+ { 20, 1382, 356, 8, 2, UNI_XIDS } /* xidstart=y */,
+ { 0, 1796, 5116, 7, 20, UNI_HLUW } /* script=anatolianhieroglyphs */,
+ { 4, 2355, 0, 8, 0, UNI_CYRL } /* cyrillic */,
+ { 0, 1102, 1216, 4, 4, UNI_KANA } /* scx=kana */,
+ { 0, 1102, 742, 4, 4, UNI_MAND } /* scx=mand */,
+ { 1, 7732, 0, 22, 0, UNI_ENCLOSEDIDEOGRAPHICSUP } /* enclosedideographicsup */,
+ { 1, 6114, 983, 3, 4, UNI_SC__HIRA } /* sc=hira */,
+ { 0, 4996, 4672, 13, 5, UNI_JG__MANICHAEANALEPH } /* jg=manichaeanaleph */,
+ { 0, 3474, 2018, 6, 12, UNI_INMASARAMGONDI } /* block=masaramgondi */,
+ { 0, 2496, 0, 3, 0, UNI_jg_values_index } /* jg= */,
+ { 1, 909, 0, 8, 0, UNI_BALI } /* balinese */,
+ { 0, 6944, 398, 24, 2, UNI_CCC__16 } /* canonicalcombiningclass=16 */,
+ { 35, 5990, 5021, 21, 6, UNI_BPT__C } /* bidipairedbrackettype=close */,
+ { 2, 2454, 2332, 3, 12, UNI_GREEKEXT } /* isgreekextended */,
+ { 8, 5136, 2591, 5, 12, UNI_MAYANNUMERALS } /* blk=mayannumerals */,
+ { 11, 1102, 6728, 4, 11, UNI_MTEI } /* scx=meeteimayek */,
+ { 5, 1065, 891, 5, 2, UNI_NV__1_SLASH_10 } /* nv=1/10 */,
+ { 0, 464, 4793, 2, 4, UNI_RUMI } /* isrumi */,
+ { 1, 8244, 5, 9, 4, UNI_CJKEXTG } /* block=cjkextg */,
+ { 22, 1796, 2220, 7, 4, UNI_HUNG } /* script=hung */,
+ { 1, 464, 1320, 2, 4, UNI_PERM } /* isperm */,
+ { 0, 844, 5620, 2, 3, -UNI_LOE } /* loe=n */,
+ { 1, 3622, 4629, 6, 2, UNI_LATIN1 } /* islatin1 */,
+ { 6, 4322, 2080, 14, 8, UNI_NV__7_SLASH_2 } /* numericvalue=3.500e+00 */,
+ { 13, 464, 473, 2, 4, UNI_TNSA } /* istnsa */,
+ { 0, 5, 5769, 1, 15, UNI_ENCLOSEDALPHANUM } /* enclosedalphanum */,
+ { 2, 257, 356, 4, 4, UNI_CWCF } /* cwcf=yes */,
+ { 7, 0, 4123, 1, 14, UNI_LOWERCASELETTER } /* lowercaseletter */,
+ { 1, 2310, 587, 12, 6, UNI_CI } /* caseignorable=true */,
+ { 1, 6114, 1015, 3, 6, UNI_SC__TELU } /* sc=telugu */,
+ { 2, 7823, 1646, 5, 4, UNI_CJKEXTD } /* incjkextd */,
+ { 1, 3748, 1303, 15, 2, UNI_NV__1_SLASH_32 } /* numericvalue=1/32 */,
+ { 0, 464, 2041, 2, 4, UNI_MEND } /* ismend */,
+ { 16, 464, 7020, 2, 24, UNI_ARABICPFB } /* isarabicpresentationformsb */,
+ { 1, 5565, 588, 21, 5, UNI_CWU } /* changeswhenuppercased=true */,
+ { 0, 756, 1768, 3, 9, UNI_NFCQC__M } /* nfkcqc=maybe */,
+ { 0, 464, 5949, 2, 6, UNI_YIJING } /* isyijing */,
+ { 1, 3641, 1262, 4, 3, UNI_SUPPUAB } /* suppuab */,
+ { 0, 1102, 1344, 4, 4, UNI_PALM } /* scx=palm */,
+ { 2, 6114, 2018, 3, 12, UNI_SC__GONM } /* sc=masaramgondi */,
+ { 12, 1965, 0, 10, 0, UNI_YIRADICALS } /* yiradicals */,
+ { 1, 1441, 602, 10, 3, -UNI_DEP } /* deprecated=no */,
+ { 2, 2726, 2290, 3, 6, UNI_N } /* gc=number */,
+ { 11, 383, 588, 6, 5, UNI_HYPHEN } /* hyphen=true */,
+ { 0, 3462, 623, 10, 5, UNI_ETHIOPICEXT } /* blk=ethiopicext */,
+ { 0, 6114, 102, 3, 4, UNI_HLUW } /* sc=hluw */,
+ { 3, 1879, 3641, 8, 10, UNI_KANASUP } /* blk=kanasupplement */,
+ { 16, 7208, 2986, 9, 2, UNI_PS } /* category=ps */,
+ { 12, 3309, 0, 4, 0, UNI_MERO } /* mero */,
+ { 0, 6379, 229, 13, 2, UNI_JG__PE } /* joininggroup=pe */,
+ { 5, 6185, 0, 22, 0, UNI_NV__100000000 } /* numericvalue=100000000 */,
+ { 0, 2483, 4081, 8, 5, UNI_XPOSIXPUNCT } /* isxposixpunct */,
+ { 5, 2726, 5174, 7, 12, UNI_PO } /* gc=otherpunctuation */,
+ { 1, 1879, 721, 4, 7, UNI_INKANNADA } /* blk=kannada */,
+ { 1, 464, 686, 2, 4, UNI_TAKR } /* istakr */,
+ { 1, 1879, 5631, 4, 5, UNI_INGREEK } /* blk=greek */,
+ { 1, 3474, 901, 6, 8, UNI_INARMENIAN } /* block=armenian */,
+ { 0, 1710, 1110, 3, 7, UNI_SPECIALS } /* isspecials */,
+ { 4, 3748, 1303, 15, 3, UNI_NV__1_SLASH_320 } /* numericvalue=1/320 */,
+ { 1, 4515, 934, 18, 6, -UNI_IDST } /* idstrinaryoperator=false */,
+ { 1, 1796, 3381, 7, 15, UNI_NARB } /* script=oldnortharabian */,
+ { 1, 7208, 844, 9, 2, UNI_LO } /* category=lo */,
+ { 0, 1702, 2760, 3, 11, UNI_ALPHABETICPF } /* isalphabeticpf */,
+ { 1, 6379, 713, 13, 4, UNI_JG__SHIN } /* joininggroup=shin */,
+ { 0, 644, 140, 4, 2, UNI_HST__NA } /* hst=na */,
+ { 0, 625, 601, 6, 3, -UNI_EXTPICT } /* extpict=n */,
+ { 3, 3474, 1927, 6, 12, UNI_INGUNJALAGONDI } /* block=gunjalagondi */,
+ { 0, 1539, 6528, 3, 21, UNI_INDICNUMBERFORMS } /* iscommonindicnumberforms */,
+ { 0, 1796, 128, 7, 4, UNI_MEDF } /* script=medf */,
+ { 9, 1065, 2080, 4, 8, UNI_NV__3_SLASH_2 } /* nv=1.500e+00 */,
+ { 6, 4433, 3704, 5, 15, UNI_LINEARBIDEOGRAMS } /* blk=linearbideograms */,
+ { 0, 6114, 1015, 3, 4, UNI_SC__TELU } /* sc=telu */,
+ { 1, 3462, 4442, 12, 9, UNI_ETHIOPICEXTB } /* blk=ethiopicextendedb */,
+ { 2, 313, 1033, 2, 4, UNI_JAMO } /* injamo */,
+ { 2, 6114, 94, 3, 4, UNI_SC__GUJR } /* sc=gujr */,
+ { 0, 756, 602, 6, 2, UNI_NFKCQC__N } /* nfkcqc=n */,
+ { 0, 313, 6728, 2, 11, UNI_INMEETEIMAYEK } /* inmeeteimayek */,
+ { 3, 1102, 4202, 4, 17, UNI_KITS } /* scx=khitansmallscript */,
+ { 0, 2355, 6142, 6, 5, UNI_CYRILLICSUP } /* cyrillicsup */,
+ { 8, 7208, 628, 9, 2, UNI_PI } /* category=pi */,
+ { 2, 4355, 496, 17, 4, UNI_KHOJ } /* scriptextensions=khoj */,
+ { 18, 7317, 5970, 21, 8, UNI_BC__LRO } /* bidiclass=lefttorightoverride */,
+ { 8, 1796, 3453, 6, 9, UNI_SC__CYRL } /* script=cyrillic */,
+ { 7, 5586, 703, 21, 2, UNI_WB__EB } /* graphemeclusterbreak=em */,
+ { 4, 6570, 3203, 5, 10, UNI_INPC__OVERSTRUCK } /* inpc=overstruck */,
+ { 5, 464, 4827, 2, 8, UNI_BAMUMSUP } /* isbamumsup */,
+ { 1, 6114, 1353, 3, 4, UNI_PAUC } /* sc=pauc */,
+ { 1, 1879, 6439, 4, 23, UNI_ZNAMENNYMUSIC } /* blk=znamennymusicalnotation */,
+ { 1, 5586, 285, 21, 2, UNI_GCB__XX } /* graphemeclusterbreak=xx */,
+ { 8, 1236, 1550, 5, 11, UNI_INOLDPERSIAN } /* block=oldpersian */,
+ { 0, 4291, 4338, 10, 17, UNI_RI } /* linebreak=regionalindicator */,
+ { 0, 1796, 1105, 6, 5, UNI_TALU } /* script=talu */,
+ { 6, 5186, 934, 20, 2, -UNI_EXTPICT } /* extendedpictographic=f */,
+ { 1, 464, 840, 2, 7, UNI_TGLG } /* istagalog */,
+ { 2, 959, 588, 8, 5, UNI_EXT } /* extender=true */,
+ { 57, 2678, 358, 3, 2, UNI_BC__ES } /* bc=es */,
+ { 5, 2802, 1037, 10, 4, UNI_ETHIOPICEXTB } /* isethiopicextb */,
+ { 0, 14, 1095, 1, 3, UNI_MERC } /* merc */,
+ { 0, 6114, 401, 3, 4, UNI_MIAO } /* sc=miao */,
+ { 0, 4322, 1300, 14, 3, UNI_NV__3000 } /* numericvalue=3000 */,
+ { 0, 1796, 3309, 7, 4, UNI_MERO } /* script=mero */,
+ { 3, 555, 2322, 4, 10, UNI_IN__NA } /* age=unassigned */,
+ { 3, 7201, 6466, 16, 10, UNI_CO } /* generalcategory=privateuse */,
+ { 1, 6114, 4827, 3, 4, UNI_BAMU } /* sc=bamu */,
+ { 0, 2712, 602, 5, 3, -UNI_EMOJI } /* emoji=no */,
+ { 7, 2193, 2067, 7, 5, UNI_NV__5_SLASH_8 } /* nv=6.250e-01 */,
+ { 0, 464, 4750, 2, 8, UNI_DINGBATS } /* isdingbats */,
+ { 0, 1796, 825, 7, 7, UNI_SHAW } /* script=shavian */,
+ { 0, 2232, 862, 3, 6, UNI_TIBT } /* istibetan */,
+ { 0, 7431, 1302, 28, 2, UNI_CCC__103 } /* canonicalcombiningclass=ccc103 */,
+ { 10, 1441, 602, 3, 3, -UNI_DEP } /* dep=no */,
+ { 1, 58, 3465, 2, 9, UNI_ETHI } /* sc=ethiopic */,
+ { 4, 3474, 5304, 6, 11, UNI_TAIXUANJING } /* block=taixuanjing */,
+ { 0, 1702, 0, 6, 0, UNI_ARAB } /* isarab */,
+ { 1, 296, 2066, 3, 2, UNI_NV__50 } /* nv=50 */,
+ { 1, 4122, 356, 5, 2, UNI_XPOSIXLOWER } /* lower=y */,
+ { 1, 1704, 4442, 6, 9, UNI_ARABICEXTB } /* arabicextendedb */,
+ { 1, 7201, 3722, 16, 10, UNI_SM } /* generalcategory=mathsymbol */,
+ { 0, 513, 6199, 4, 5, UNI_NV__300000 } /* nv=300000 */,
+ { 8, 1102, 1198, 4, 4, UNI_GRAN } /* scx=gran */,
+ { 2, 1102, 847, 4, 7, UNI_LANA } /* scx=taitham */,
+ { 0, 1879, 611, 4, 7, UNI_INELBASAN } /* blk=elbasan */,
+ { 2, 1879, 671, 4, 5, UNI_INOGHAM } /* blk=ogham */,
+ { 0, 555, 0, 4, 0, UNI_age_values_index } /* age= */,
+ { 2, 5409, 356, 19, 4, UNI_TERM } /* terminalpunctuation=yes */,
+ { 3, 8276, 5680, 23, 15, UNI_INSC__CANTILLATIONMARK } /* indicsyllabiccategory=cantillationmark */,
+ { 7, 8276, 5695, 22, 16, UNI_INSC__INVISIBLESTACKER } /* indicsyllabiccategory=invisiblestacker */,
+ { 7, 5, 601, 2, 2, UNI_ext_values_index } /* ext= */,
+ { 0, 2365, 1037, 8, 4, UNI_ETHIOPICEXTB } /* ethiopicextb */,
+ { 2, 1410, 347, 7, 3, UNI_CCC__118 } /* ccc=ccc118 */,
+ { 2, 1144, 0, 9, 0, UNI_BHKS } /* bhaiksuki */,
+ { 0, 929, 4081, 4, 11, UNI_PS } /* openpunctuation */,
+ { 1, 1879, 4998, 3, 11, UNI_INMANICHAEAN } /* blk=manichaean */,
+ { 6, 7201, 1413, 15, 3, UNI_XPOSIXCNTRL } /* generalcategory=cc */,
+ { 0, 2193, 2617, 4, 8, UNI_NV__3_SLASH_5 } /* nv=6.000e-01 */,
+ { 0, 4355, 1289, 17, 9, UNI_TALU } /* scriptextensions=newtailue */,
+ { 0, 7688, 4682, 23, 5, UNI_JG__MANICHAEANSADHE } /* joininggroup=manichaeansadhe */,
+ { 0, 1879, 8078, 4, 32, UNI_IDEOGRAPHICSYMBOLS } /* blk=ideographicsymbolsandpunctuation */,
+ { 0, 7431, 349, 27, 2, UNI_CCC__84 } /* canonicalcombiningclass=ccc84 */,
+ { 0, 7201, 7044, 16, 13, UNI_M } /* generalcategory=combiningmark */,
+ { 1, 1879, 1308, 4, 9, UNI_INOLDITALIC } /* blk=olditalic */,
+ { 8, 313, 120, 2, 3, UNI_INLAO } /* inlao */,
+ { 5, 2253, 2155, 9, 4, UNI_IN__4_DOT_1 } /* presentin=4.1 */,
+ { 0, 1102, 180, 4, 4, UNI_RUNR } /* scx=runr */,
+ { 0, 5787, 0, 10, 0, UNI_JAMO } /* hanguljamo */,
+ { 4, 1796, 861, 7, 7, UNI_TIBT } /* script=tibetan */,
+ { 1, 8244, 4611, 32, 4, UNI_CJKEXTF } /* block=cjkunifiedideographsextensionf */,
+ { 0, 296, 0, 5, 0, UNI_NV__90 } /* nv=90 */,
+ { 1, 4355, 27, 17, 4, UNI_AHOM } /* scriptextensions=ahom */,
+ { 9, 464, 4081, 2, 5, UNI_P } /* ispunct */,
+ { 1, 1888, 6781, 4, 9, UNI_CI } /* caseignorable */,
+ { 0, 464, 409, 2, 4, UNI_DIAK } /* isdiak */,
+ { 1, 4500, 602, 9, 3, -UNI_XPOSIXUPPER } /* uppercase=no */,
+ { 5469, 261, 588, 4, 5, UNI_CWCM } /* cwcm=true */,
+ { 0, 5748, 8550, 13, 22, UNI_SUPMATHOPERATORS } /* insupplementalmathematicaloperators */,
+ { 0, 1867, 588, 12, 2, UNI_BIDIM } /* bidimirrored=t */,
+ { 0, 1102, 1248, 4, 7, UNI_SIDD } /* scx=siddham */,
+ { 1, 1480, 0, 4, 0, UNI_GEOR } /* geor */,
+ { 0, 7208, 6276, 9, 6, UNI_CF } /* category=format */,
+ { 1, 464, 2220, 2, 4, UNI_HUNG } /* ishung */,
+ { 20, 1248, 0, 4, 0, UNI_SIDD } /* sidd */,
+ { 2, 3915, 602, 17, 3, -UNI_EPRES } /* emojipresentation=no */,
+ { 15, 1174, 3, 3, 1, UNI_EA__W } /* ea=w */,
+ { 0, 4355, 1133, 17, 8, UNI_VITH } /* scriptextensions=vithkuqi */,
+ { 9, 1102, 4827, 4, 4, UNI_BAMU } /* scx=bamu */,
+ { 0, 8533, 6052, 9, 13, UNI_SUPMATHOPERATORS } /* block=supmathoperators */,
+ { 4, 7132, 8319, 7, 21, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* blk=supsymbolsandpictographs */,
+ { 0, 1539, 7908, 3, 29, UNI_CUNEIFORMNUMBERS } /* iscuneiformnumbersandpunctuation */,
+ { 0, 2692, 1141, 10, 3, UNI_ARABICPFA } /* blk=arabicpfa */,
+ { 12, 6239, 0, 14, 0, UNI_BC__L } /* bc=lefttoright */,
+ { 1, 4901, 934, 13, 6, -UNI_EMOD } /* emojimodifier=false */,
+ { 2, 3351, 2065, 13, 2, UNI_NV__25 } /* numericvalue=25 */,
+ { 2, 4355, 1105, 16, 5, UNI_TALU } /* scriptextensions=talu */,
+ { 0, 8276, 2344, 22, 5, UNI_INSC__VOWEL } /* indicsyllabiccategory=vowel */,
+ { 1, 7208, 3518, 9, 9, UNI_Z } /* category=separator */,
+ { 1, 2, 8499, 1, 34, UNI_DIACRITICALSSUP } /* combiningdiacriticalmarkssupplement */,
+ { 2, 464, 1133, 2, 4, UNI_VITH } /* isvith */,
+ { 1, 1796, 917, 7, 4, UNI_BASS } /* script=bass */,
+ { 2, 343, 2679, 2, 3, UNI_CCC__R } /* ccc=r */,
+ { 0, 8470, 588, 19, 3, UNI_VO__TR } /* verticalorientation=tr */,
+ { 3, 4355, 2217, 17, 12, UNI_HUNG } /* scriptextensions=oldhungarian */,
+ { 1, 343, 182, 4, 2, UNI_CCC__0 } /* ccc=nr */,
+ { 1, 513, 2137, 4, 8, UNI_NV__1_SLASH_3 } /* nv=3.333e-01 */,
+ { 1, 2443, 0, 5, 0, UNI_CASED } /* cased */,
+ { 1, 644, 1847, 7, 8, UNI_LB__H3 } /* hst=lvtsyllable */,
+ { 8, 1710, 3518, 7, 9, UNI_ZS } /* isspaceseparator */,
+ { 1, 5147, 5584, 17, 3, UNI_LATINEXTG } /* block=latinextendedg */,
+ { 1, 270, 356, 3, 2, UNI_CWT } /* cwt=y */,
+ { 2, 1102, 7377, 4, 8, UNI_KANA } /* scx=katakana */,
+ { 1, 8533, 0, 39, 0, UNI_SUPMATHOPERATORS } /* block=supplementalmathematicaloperators */,
+ { 8, 313, 6728, 2, 14, UNI_MEETEIMAYEKEXT } /* inmeeteimayekext */,
+ { 0, 1102, 425, 4, 4, UNI_LINA } /* scx=lina */,
+ { 1, 3000, 934, 13, 2, -UNI_QMARK } /* quotationmark=f */,
+ { 1, 1102, 880, 4, 7, UNI_ZZZZ } /* scx=unknown */,
+ { 5, 34, 1116, 1, 5, UNI_TAGB } /* istagb */,
+ { 0, 7527, 281, 3, 2, UNI_LB__H2 } /* lb=h2 */,
+ { 3, 536, 2729, 3, 5, UNI_SB__XX } /* sb=other */,
+ { 1, 34, 3884, 1, 18, UNI_AGHB } /* iscaucasianalbanian */,
+ { 8, 0, 4275, 1, 16, UNI_LETTERLIKESYMBOLS } /* letterlikesymbols */,
+ { 5, 5087, 655, 10, 2, UNI_WB__MB } /* wordbreak=mb */,
+ { 0, 1075, 0, 4, 0, UNI_NV__2 } /* nv=2 */,
+ { 3, 4355, 1371, 17, 4, UNI_THAA } /* scriptextensions=thaa */,
+ { 0, 8276, 4948, 22, 14, UNI_INSC__VOWELDEPENDENT } /* indicsyllabiccategory=voweldependent */,
+ { 0, 1102, 15, 4, 4, UNI_ADLM } /* scx=adlm */,
+ { 0, 2392, 2591, 3, 12, UNI_MAYANNUMERALS } /* inmayannumerals */,
+ { 0, 4355, 1308, 17, 9, UNI_ITAL } /* scriptextensions=olditalic */,
+ { 4, 5631, 0, 5, 0, UNI_GREK } /* greek */,
+ { 0, 6112, 0, 5, 0, UNI_insc_values_index } /* insc= */,
+ { 1, 5565, 602, 21, 3, -UNI_CWU } /* changeswhenuppercased=no */,
+ { 4, 464, 2297, 2, 13, UNI_BLOCKELEMENTS } /* isblockelements */,
+ { 2, 2275, 3361, 8, 3, UNI_idc_values_index } /* idcontinue= */,
+ { 0, 464, 1382, 2, 8, UNI_XIDS } /* isxidstart */,
+ { 3, 3748, 1071, 14, 4, UNI_NV__11_SLASH_12 } /* numericvalue=11/12 */,
+ { 5, 5147, 1491, 11, 4, UNI_LATINEXTA } /* block=latinexta */,
+ { 1, 2392, 1539, 3, 9, UNI_MISCARROWS } /* inmiscarrows */,
+ { 0, 1796, 975, 7, 8, UNI_SC__GURU } /* script=gurmukhi */,
+ { 0, 1410, 2065, 7, 2, UNI_CCC__25 } /* ccc=ccc25 */,
+ { 1, 2726, 3651, 3, 14, UNI_MN } /* gc=nonspacingmark */,
+ { 0, 464, 502, 2, 4, UNI_LYDI } /* islydi */,
+ { 2, 5136, 3324, 5, 14, UNI_MISCPICTOGRAPHS } /* blk=miscpictographs */,
+ { 10, 4450, 5797, 14, 9, UNI_CYRILLICEXTA } /* block=cyrillicextendeda */,
+ { 0, 555, 549, 4, 3, UNI_AGE__3 } /* age=3.0 */,
+ { 3, 6114, 1371, 3, 4, UNI_SC__THAA } /* sc=thaa */,
+ { 16, 464, 5166, 2, 20, UNI_PC } /* isconnectorpunctuation */,
+ { 0, 4355, 3453, 16, 9, UNI_CYRL } /* scriptextensions=cyrillic */,
+ { 1, 4355, 2695, 16, 5, UNI_ARAB } /* scriptextensions=arab */,
+ { 0, 3474, 575, 7, 6, UNI_INAVESTAN } /* block=avestan */,
+ { 0, 4962, 0, 14, 0, UNI_ROHG } /* hanifirohingya */,
+ { 0, 625, 934, 7, 6, -UNI_EXTPICT } /* extpict=false */,
+ { 6, 2812, 0, 7, 0, UNI_MAHJONG } /* mahjong */,
+ { 3, 1777, 6199, 8, 8, UNI_NV__1000000000000 } /* nv=1000000000000 */,
+ { 4, 1710, 4641, 3, 8, UNI_SYRIACSUP } /* issyriacsup */,
+ { 2, 248, 0, 4, 0, UNI_ZZZZ } /* zzzz */,
+ { 2, 34, 636, 1, 4, UNI_HAN } /* ishan */,
+ { 1, 2153, 0, 4, 0, UNI_NV__4 } /* nv=4 */,
+ { 4, 464, 4107, 2, 4, UNI_HANG } /* ishang */,
+ { 2, 1383, 934, 3, 6, -UNI_IDS } /* ids=false */,
+ { 3, 7605, 0, 19, 0, UNI_hst_values_index } /* hangulsyllabletype= */,
+ { 5, 1548, 3223, 3, 7, UNI_XPOSIXDIGIT } /* nt=decimal */,
+ { 0, 2260, 552, 3, 3, UNI_IN__4 } /* in=4.0 */,
+ { 2, 4355, 847, 17, 7, UNI_LANA } /* scriptextensions=taitham */,
+ { 4, 34, 7402, 1, 29, UNI_SUPPUAA } /* issupplementaryprivateuseareaa */,
+ { 64182, 6944, 522, 23, 2, UNI_CCC__7 } /* canonicalcombiningclass=7 */,
+ { 3, 464, 1951, 2, 7, UNI_SOGD } /* issogdian */,
+ { 2, 313, 1198, 2, 7, UNI_INGRANTHA } /* ingrantha */,
+ { 6, 7338, 1687, 21, 7, UNI_BC__RLI } /* bidiclass=righttoleftisolate */,
+ { 0, 5147, 5, 11, 4, UNI_LATINEXTG } /* block=latinextg */,
+ { 0, 5748, 7643, 13, 17, UNI_SUPPUAB } /* insupplementaryprivateuseareab */,
+ { 2, 581, 349, 5, 1, UNI_CCC__28 } /* ccc=28 */,
+ { 1, 2974, 2066, 11, 2, UNI_IN__5 } /* presentin=v50 */,
+ { 18, 2153, 2166, 5, 7, UNI_NV__3_SLASH_64 } /* nv=4.688e-02 */,
+ { 0, 8470, 1605, 29, 9, UNI_VO__TU } /* verticalorientation=transformedupright */,
+ { 4, 1102, 1098, 4, 4, UNI_NSHU } /* scx=nshu */,
+ { 0, 6402, 5021, 13, 3, UNI_SB__CL } /* sentencebreak=cl */,
+ { 1, 4291, 285, 10, 2, UNI_LB__XX } /* linebreak=xx */,
+ { 19, 1102, 4998, 3, 11, UNI_MANI } /* scx=manichaean */,
+ { 0, 2205, 6199, 4, 5, UNI_NV__800000 } /* nv=800000 */,
+ { 0, 313, 5340, 2, 18, UNI_DEVANAGARIEXT } /* indevanagariextended */,
+ { 0, 6185, 0, 19, 0, UNI_NV__100000 } /* numericvalue=100000 */,
+ { 0, 3474, 8078, 6, 18, UNI_IDEOGRAPHICSYMBOLS } /* block=ideographicsymbols */,
+ { 3, 1879, 4740, 4, 18, UNI_ORNAMENTALDINGBATS } /* blk=ornamentaldingbats */,
+ { 5, 2496, 2509, 3, 10, UNI_JG__DALATHRISH } /* jg=dalathrish */,
+ { 8, 3450, 6142, 10, 5, UNI_CYRILLICSUP } /* blk=cyrillicsup */,
+ { 0, 4355, 1003, 17, 4, UNI_LEPC } /* scriptextensions=lepc */,
+ { 5, 8289, 4007, 10, 13, UNI_SC } /* category=currencysymbol */,
+ { 46464, 296, 762, 3, 4, UNI_NV___MINUS_1_SLASH_2 } /* nv=-1/2 */,
+ { 5, 1377, 1592, 3, 2, UNI_WB__FO } /* wb=fo */,
+ { 3, 5886, 601, 20, 3, -UNI__PERL_NCHAR } /* noncharactercodepoint=n */,
+ { 0, 296, 1304, 3, 3, UNI_NV__200 } /* nv=200 */,
+ { 2, 6114, 224, 3, 4, UNI_WCHO } /* sc=wcho */,
+ { 0, 6944, 1157, 24, 5, UNI_CCC__7 } /* canonicalcombiningclass=nukta */,
+ { 1, 6402, 2928, 14, 3, UNI_SB__SE } /* sentencebreak=sep */,
+ { 0, 6114, 128, 3, 4, UNI_MEDF } /* sc=medf */,
+ { 1, 313, 1353, 2, 9, UNI_INPAUCINHAU } /* inpaucinhau */,
+ { 0, 313, 2207, 2, 2, UNI_IN__8 } /* in=8 */,
+ { 9, 3474, 3839, 6, 6, UNI_INTANGUT } /* block=tangut */,
+ { 0, 6114, 136, 3, 4, UNI_SC__MYMR } /* sc=mymr */,
+ { 11, 464, 409, 2, 3, UNI_DIA } /* isdia */,
+ { 1, 1102, 461, 4, 4, UNI_QAAI } /* scx=qaai */,
+ { 1, 1102, 35, 4, 4, UNI_AVST } /* scx=avst */,
+ { 0, 0, 1036, 1, 2, UNI_LOE } /* loe */,
+ { 8, 4355, 98, 17, 4, UNI_GURU } /* scriptextensions=guru */,
+ { 18, 2474, 4442, 9, 9, UNI_MYANMAREXTB } /* ismyanmarextendedb */,
+ { 3, 1033, 0, 8, 0, UNI_JAMOEXTB } /* jamoextb */,
+ { 1, 7431, 292, 28, 2, UNI_CCC__130 } /* canonicalcombiningclass=ccc130 */,
+ { 1, 6114, 1133, 3, 8, UNI_VITH } /* sc=vithkuqi */,
+ { 8, 625, 601, 6, 2, UNI_extpict_values_index } /* extpict= */,
+ { 1, 1395, 6890, 5, 9, UNI_LATINEXTE } /* latinextendede */,
+ { 1, 426, 4918, 3, 9, UNI_ALCHEMICAL } /* inalchemical */,
+ { 6, 1241, 0, 7, 0, UNI_PHAG } /* phagspa */,
+ { 0, 555, 2172, 4, 3, UNI_AGE__2 } /* age=2.0 */,
+ { 0, 313, 5825, 2, 9, UNI_INSUNDANESE } /* insundanese */,
+ { 1, 343, 8139, 4, 11, UNI_CCC__DB } /* ccc=doublebelow */,
+ { 0, 6025, 0, 14, 0, UNI_INGEORGIAN } /* block=georgian */,
+ { 5, 328, 8319, 3, 21, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* supsymbolsandpictographs */,
+ { 3, 1856, 602, 11, 3, -UNI_BIDIC } /* bidicontrol=no */,
+ { 3, 2454, 2332, 3, 7, UNI_GREEKEXT } /* isgreekext */,
+ { 0, 6112, 6594, 5, 19, UNI_INSC__BRAHMIJOININGNUMBER } /* insc=brahmijoiningnumber */,
+ { 2, 6799, 0, 24, 0, UNI_COMPEX } /* fullcompositionexclusion */,
+ { 8, 5322, 5329, 7, 4, UNI_CHEROKEESUP } /* cherokeesup */,
+ { 16, 513, 3807, 5, 2, UNI_NV__3_SLASH_80 } /* nv=3/80 */,
+ { 0, 925, 5021, 3, 6, UNI_BPT__C } /* bpt=close */,
+ { 2, 4291, 4233, 10, 14, UNI_LB__SA } /* linebreak=complexcontext */,
+ { 12, 7182, 8089, 3, 21, UNI_CJKSYMBOLS } /* cjksymbolsandpunctuation */,
+ { 4, 5340, 0, 13, 0, UNI_DEVANAGARIEXT } /* devanagariext */,
+ { 1, 3474, 8592, 6, 42, UNI_UCASEXT } /* block=unifiedcanadianaboriginalsyllabicsextended */,
+ { 0, 6114, 983, 3, 8, UNI_SC__HIRA } /* sc=hiragana */,
+ { 1, 275, 3423, 4, 12, UNI_WB__EB } /* gcb=glueafterzwj */,
+ { 0, 343, 1153, 4, 2, UNI_CCC__24 } /* ccc=24 */,
+ { 3, 3351, 7171, 12, 3, UNI_NV__12 } /* numericvalue=12 */,
+ { 0, 6944, 298, 23, 2, UNI_CCC__9 } /* canonicalcombiningclass=9 */,
+ { 2, 313, 584, 2, 2, UNI_IN__2 } /* in=2 */,
+ { 4, 3991, 0, 7, 0, UNI_BRAI } /* braille */,
+ { 0, 1383, 0, 3, 0, UNI_IDS } /* ids */,
+ { 10, 1991, 2879, 12, 11, UNI_JT__L } /* joiningtype=leftjoining */,
+ { 11, 313, 4827, 2, 5, UNI_INBAMUM } /* inbamum */,
+ { 1, 4355, 1220, 17, 7, UNI_MAKA } /* scriptextensions=makasar */,
+ { 2, 6114, 413, 3, 4, UNI_SC__GONM } /* sc=gonm */,
+ { 3, 2181, 1781, 4, 4, UNI_NV__50000 } /* nv=50000 */,
+ { 9, 5748, 4388, 4, 15, UNI_SUTTONSIGNWRITING } /* insuttonsignwriting */,
+ { 1, 4515, 356, 18, 2, UNI_IDST } /* idstrinaryoperator=y */,
+ { 0, 6114, 661, 3, 5, UNI_SC__DOGR } /* sc=dogra */,
+ { 0, 8592, 0, 43, 0, UNI_UCASEXTA } /* unifiedcanadianaboriginalsyllabicsextendeda */,
+ { 8, 2496, 118, 3, 3, UNI_JG__DAL } /* jg=dal */,
+ { 0, 464, 405, 2, 4, UNI_ARMN } /* isarmn */,
+ { 2, 464, 1317, 2, 9, UNI_PERM } /* isoldpermic */,
+ { 0, 6114, 1220, 3, 7, UNI_MAKA } /* sc=makasar */,
+ { 0, 2678, 143, 3, 2, UNI_BC__BN } /* bc=bn */,
+ { 1, 5544, 602, 21, 2, -UNI_CWT } /* changeswhentitlecased=n */,
+ { 5, 6687, 135, 14, 2, UNI_JG__MIM } /* joininggroup=mim */,
+ { 3, 2496, 1046, 3, 5, UNI_JG__KHAPH } /* jg=khaph */,
+ { 7, 4783, 0, 10, 0, UNI_XPOSIXSPACE } /* whitespace */,
+ { 1, 833, 934, 4, 2, -UNI_TERM } /* term=f */,
+ { 1, 6114, 90, 3, 4, UNI_SC__GREK } /* sc=grek */,
+ { 0, 1796, 637, 7, 7, UNI_SC__HANO } /* script=hanunoo */,
+ { 1, 6944, 4947, 24, 2, UNI_CCC__8 } /* canonicalcombiningclass=kv */,
+ { 1, 8007, 6352, 7, 11, UNI_CJKRADICALSSUP } /* blk=cjkradicalssup */,
+ { 0, 7317, 4418, 10, 15, UNI_BC__CS } /* bidiclass=commonseparator */,
+ { 1, 2474, 1052, 3, 7, UNI_MAHJ } /* ismahajani */,
+ { 1, 3474, 5806, 6, 9, UNI_INMONGOLIAN } /* block=mongolian */,
+ { 1, 6114, 473, 3, 4, UNI_TNSA } /* sc=tnsa */,
+ { 1, 3748, 769, 14, 3, UNI_NV__15_SLASH_2 } /* numericvalue=15/2 */,
+ { 0, 409, 602, 2, 3, -UNI_DI } /* di=no */,
+ { 0, 313, 2155, 2, 2, UNI_IN__4 } /* in=4 */,
+ { 3, 1236, 4998, 5, 11, UNI_INMANICHAEAN } /* block=manichaean */,
+ { 2, 6728, 0, 14, 0, UNI_MEETEIMAYEKEXT } /* meeteimayekext */,
+ { 0, 313, 1021, 2, 6, UNI_INWANCHO } /* inwancho */,
+ { 0, 1441, 278, 10, 1, UNI_dep_values_index } /* deprecated= */,
+ { 20, 6944, 3101, 24, 11, UNI_CCC__DA } /* canonicalcombiningclass=doubleabove */,
+ { 0, 1879, 5949, 4, 6, UNI_YIJING } /* blk=yijing */,
+ { 0, 4291, 3432, 10, 3, UNI_LB__ZWJ } /* linebreak=zwj */,
+ { 2, 7660, 602, 17, 3, -UNI_VS } /* variationselector=no */,
+ { 0, 1879, 1033, 4, 4, UNI_JAMO } /* blk=jamo */,
+ { 2, 1710, 6623, 3, 21, UNI_MODIFIERLETTERS } /* isspacingmodifierletters */,
+ { 0, 409, 602, 2, 2, -UNI_DI } /* di=n */,
+ { 0, 4291, 2569, 10, 10, UNI_LB__WJ } /* linebreak=wordjoiner */,
+ { 0, 1915, 5620, 11, 3, -UNI_GRBASE } /* graphemebase=n */,
+ { 1, 1856, 345, 4, 2, UNI_bidic_values_index } /* bidic= */,
+ { 0, 464, 24, 2, 3, UNI_XPOSIXXDIGIT } /* ishex */,
+ { 5, 7527, 1837, 3, 5, UNI_EBASE } /* lb=ebase */,
+ { 3, 3474, 1255, 6, 7, UNI_INSOYOMBO } /* block=soyombo */,
+ { 0, 378, 356, 5, 4, UNI_GREXT } /* grext=yes */,
+ { 0, 3137, 1906, 15, 9, UNI_EA__A } /* eastasianwidth=ambiguous */,
+ { 0, 6114, 4202, 3, 17, UNI_KITS } /* sc=khitansmallscript */,
+ { 0, 4355, 1191, 17, 7, UNI_BENG } /* scriptextensions=bengali */,
+ { 3, 296, 2071, 3, 9, UNI_NV__1_SLASH_7 } /* nv=1.429e-01 */,
+ { 1, 6114, 86, 3, 4, UNI_SC__GONG } /* sc=gong */,
+ { 1, 7880, 8089, 5, 21, UNI_CJKSYMBOLS } /* iscjksymbolsandpunctuation */,
+ { 9, 313, 3637, 2, 14, UNI_LISUSUP } /* inlisusupplement */,
+ { 1, 1796, 1308, 7, 9, UNI_ITAL } /* script=olditalic */,
+ { 3, 600, 607, 3, 4, UNI_EA__F } /* dt=wide */,
+ { 2, 313, 7044, 2, 24, UNI_DIACRITICALSFORSYMBOLS } /* incombiningmarksforsymbols */,
+ { 0, 1033, 0, 4, 0, UNI_JAMO } /* jamo */,
+ { 3, 6379, 4682, 13, 3, UNI_JG__SAD } /* joininggroup=sad */,
+ { 4, 313, 4999, 2, 10, UNI_INMANICHAEAN } /* inmanichaean */,
+ { 1, 1377, 285, 3, 2, UNI_WB__XX } /* wb=xx */,
+ { 1, 313, 6919, 2, 25, UNI_SYMBOLSFORLEGACYCOMPUTING } /* insymbolsforlegacycomputing */,
+ { 2, 895, 1304, 5, 2, UNI_AGE__2 } /* age=v20 */,
+ { 4, 5409, 934, 19, 6, -UNI_TERM } /* terminalpunctuation=false */,
+ { 0, 7385, 0, 18, 0, UNI_PHONETICEXT } /* phoneticextensions */,
+ { 0, 7584, 3571, 18, 6, UNI_DT__COM } /* decompositiontype=compat */,
+ { 1, 464, 2275, 2, 10, UNI_IDC } /* isidcontinue */,
+ { 20, 2, 934, 3, 2, -UNI_CWL } /* cwl=f */,
+ { 4, 7208, 5103, 9, 2, UNI_CASEDLETTER } /* category=l_ */,
+ { 0, 6114, 200, 3, 4, UNI_SC__TAML } /* sc=taml */,
+ { 1, 2253, 563, 10, 3, UNI_IN__7 } /* presentin=7.0 */,
+ { 0, 7208, 3151, 8, 13, UNI_NL } /* category=letternumber */,
+ { 0, 1382, 602, 4, 3, -UNI_XIDS } /* xids=no */,
+ { 0, 3779, 1781, 14, 4, UNI_NV__70000 } /* numericvalue=70000 */,
+ { 0, 5409, 0, 19, 0, UNI_TERM } /* terminalpunctuation */,
+ { 5, 3462, 6142, 10, 12, UNI_ETHIOPICSUP } /* blk=ethiopicsupplement */,
+ { 1, 2678, 3066, 3, 12, UNI_BC__AL } /* bc=arabicletter */,
+ { 2, 1102, 502, 4, 6, UNI_LYDI } /* scx=lydian */,
+ { 0, 8533, 7643, 17, 17, UNI_SUPPUAB } /* block=supplementaryprivateuseareab */,
+ { 0, 12, 0, 1, 0, UNI_P } /* p */,
+ { 3, 8007, 1037, 7, 4, UNI_CJKEXTB } /* blk=cjkextb */,
+ { 0, 940, 588, 6, 5, UNI_COMPEX } /* compex=true */,
+ { 0, 1879, 5205, 4, 18, UNI_HALFMARKS } /* blk=combininghalfmarks */,
+ { 2, 6944, 771, 24, 2, UNI_CCC__21 } /* canonicalcombiningclass=21 */,
+ { 2, 7527, 4235, 5, 12, UNI_LB__SA } /* lb=complexcontext */,
+ { 0, 1441, 356, 3, 2, UNI_DEP } /* dep=y */,
+ { 3, 4338, 602, 17, 2, -UNI_RI } /* regionalindicator=n */,
+ { 0, 1879, 7473, 4, 27, UNI_ALPHABETICPF } /* blk=alphabeticpresentationforms */,
+ { 2, 2726, 3518, 3, 9, UNI_Z } /* gc=separator */,
+ { 15, 1102, 666, 4, 5, UNI_LIMB } /* scx=limbu */,
+ { 4, 6114, 132, 3, 4, UNI_MTEI } /* sc=mtei */,
+ { 1, 4996, 1988, 13, 3, UNI_JG__MANICHAEANWAW } /* jg=manichaeanwaw */,
+ { 0, 1383, 602, 3, 3, -UNI_IDS } /* ids=no */,
+ { 9, 4355, 5116, 17, 20, UNI_HLUW } /* scriptextensions=anatolianhieroglyphs */,
+ { 0, 313, 7385, 2, 18, UNI_PHONETICEXT } /* inphoneticextensions */,
+ { 1, 1102, 1982, 4, 6, UNI_SYRC } /* scx=syriac */,
+ { 2, 1796, 3498, 7, 7, UNI_SC__CPRT } /* script=cypriot */,
+ { 1, 3823, 588, 16, 5, UNI_STERM } /* sentenceterminal=true */,
+ { 0, 75, 602, 3, 2, -UNI_CWU } /* cwu=n */,
+ { 6, 5607, 1441, 15, 10, UNI_DEP } /* identifiertype=deprecated */,
+ { 2, 464, 1668, 2, 6, UNI_DOMINO } /* isdomino */,
+ { 1, 2726, 2581, 3, 9, UNI__PERL_SURROGATE } /* gc=surrogate */,
+ { 0, 2253, 2195, 9, 4, UNI_IN__6_DOT_2 } /* presentin=6.2 */,
+ { 5, 464, 3527, 2, 16, UNI_HALFANDFULLFORMS } /* ishalfandfullforms */,
+ { 1, 1879, 7044, 4, 24, UNI_DIACRITICALSFORSYMBOLS } /* blk=combiningmarksforsymbols */,
+ { 0, 6379, 7276, 13, 10, UNI_JG__TEHMARBUTA } /* joininggroup=tehmarbuta */,
+ { 2, 7208, 273, 9, 2, UNI_ZP } /* category=zp */,
+ { 2, 1571, 0, 4, 0, UNI_SAUR } /* saur */,
+ { 4, 464, 1125, 2, 8, UNI_TFNG } /* istifinagh */,
+ { 3, 1102, 433, 4, 3, UNI_NKO } /* scx=nko */,
+ { 0, 1214, 1491, 6, 4, UNI_KANAEXTA } /* inkanaexta */,
+ { 0, 1879, 1965, 4, 10, UNI_YIRADICALS } /* blk=yiradicals */,
+ { 4, 8244, 6352, 9, 11, UNI_CJKRADICALSSUP } /* block=cjkradicalssup */,
+ { 2, 1867, 934, 5, 2, -UNI_BIDIM } /* bidim=f */,
+ { 13, 2678, 6262, 3, 20, UNI_BC__PDF } /* bc=popdirectionalformat */,
+ { 4, 736, 7851, 3, 29, UNI_ENCLOSEDALPHANUMSUP } /* inenclosedalphanumericsupplement */,
+ { 3, 7740, 356, 11, 2, UNI_IDEO } /* ideographic=y */,
+ { 0, 3518, 0, 9, 0, UNI_Z } /* separator */,
+ { 9, 6114, 1289, 3, 9, UNI_TALU } /* sc=newtailue */,
+ { 0, 3763, 6199, 14, 5, UNI_NV__500000 } /* numericvalue=500000 */,
+ { 1, 33, 2383, 2, 9, UNI_MISCSYMBOLS } /* miscsymbols */,
+ { 8, 7605, 1847, 21, 8, UNI_LB__H2 } /* hangulsyllabletype=lvsyllable */,
+ { 0, 6803, 356, 20, 2, UNI_CE } /* compositionexclusion=y */,
+ { 1, 3474, 3435, 6, 15, UNI_INZANABAZARSQUARE } /* block=zanabazarsquare */,
+ { 1, 2678, 5446, 3, 18, UNI_BC__FSI } /* bc=firststrongisolate */,
+ { 5, 4291, 0, 12, 0, UNI_LB__ZW } /* linebreak=zw */,
+ { 9, 1529, 0, 4, 0, UNI_KHAR } /* khar */,
+ { 4, 19, 3790, 2, 3, UNI_AGE__7 } /* age=7 */,
+ { 0, 3462, 7733, 5, 28, UNI_ENCLOSEDIDEOGRAPHICSUP } /* blk=enclosedideographicsupplement */,
+ { 7, 2496, 4178, 3, 4, UNI_JG__KAPH } /* jg=kaph */,
+ { 5, 1465, 933, 4, 3, -UNI_XPOSIXSPACE } /* space=f */,
+ { 3, 313, 6538, 2, 11, UNI_NUMBERFORMS } /* innumberforms */,
+ { 0, 618, 0, 4, 0, UNI_ELYM } /* elym */,
+ { 0, 1879, 5907, 4, 21, UNI_SINHALAARCHAICNUMBERS } /* blk=sinhalaarchaicnumbers */,
+ { 1, 7208, 366, 9, 2, UNI_SM } /* category=sm */,
+ { 0, 1915, 355, 11, 2, UNI_grbase_values_index } /* graphemebase= */,
+ { 0, 275, 5, 4, 2, UNI_GCB__EX } /* gcb=ex */,
+ { 8, 6944, 6280, 24, 4, UNI_WB__EB } /* canonicalcombiningclass=atbl */,
+ { 1, 1879, 1887, 4, 7, UNI_UCASEXT } /* blk=ucasext */,
+ { 0, 2496, 1731, 3, 8, UNI_JG__SWASHKAF } /* jg=swashkaf */,
+ { 0, 6114, 618, 3, 4, UNI_ELYM } /* sc=elym */,
+ { 0, 4500, 5620, 8, 3, -UNI_XPOSIXUPPER } /* uppercase=n */,
+ { 5, 6944, 394, 25, 2, UNI_CCC__DA } /* canonicalcombiningclass=234 */,
+ { 0, 1236, 6414, 4, 25, UNI_SHORTHANDFORMATCONTROLS } /* block=shorthandformatcontrols */,
+ { 1, 343, 2262, 3, 3, UNI_CCC__14 } /* ccc=14 */,
+ { 2, 3474, 5284, 6, 20, UNI_ININSCRIPTIONALPAHLAVI } /* block=inscriptionalpahlavi */,
+ { 0, 1516, 4442, 6, 9, UNI_KANAEXTB } /* iskanaextendedb */,
+ { 0, 3622, 5584, 13, 3, UNI_LATINEXTG } /* islatinextendedg */,
+ { 56, 3474, 7385, 6, 18, UNI_PHONETICEXT } /* block=phoneticextensions */,
+ { 1, 1796, 413, 7, 4, UNI_SC__GONM } /* script=gonm */,
+ { 7, 1879, 1561, 4, 10, UNI_INPHOENICIAN } /* blk=phoenician */,
+ { 6, 3474, 967, 6, 8, UNI_INGUJARATI } /* block=gujarati */,
+ { 3, 854, 0, 7, 0, UNI_TAVT } /* taiviet */,
+ { 5, 313, 735, 2, 7, UNI_INLINEARA } /* inlineara */,
+ { 1, 464, 5340, 2, 4, UNI_DEVA } /* isdeva */,
+ { 9, 1465, 5620, 4, 4, -UNI_XPOSIXSPACE } /* space=no */,
+ { 2, 5502, 356, 21, 2, UNI_CWCM } /* changeswhencasemapped=y */,
+ { 8, 1102, 1255, 4, 4, UNI_SOYO } /* scx=soyo */,
+ { 0, 3164, 602, 14, 2, -UNI_GREXT } /* graphemeextend=n */,
+ { 5, 1796, 3188, 7, 15, UNI_ARMI } /* script=imperialaramaic */,
+ { 12, 1236, 2302, 5, 8, UNI_BLOCKELEMENTS } /* blockelements */,
+ { 40, 6114, 1003, 3, 6, UNI_LEPC } /* sc=lepcha */,
+ { 0, 3669, 919, 12, 3, UNI_JG__MALAYALAMSSA } /* jg=malayalamssa */,
+ { 1, 313, 2428, 2, 6, UNI_IPAEXT } /* inipaext */,
+ { 17, 2981, 2066, 4, 2, UNI_IN__5 } /* in=v50 */,
+ { 1, 2802, 1491, 10, 4, UNI_ETHIOPICEXTA } /* isethiopicexta */,
+ { 1, 1879, 1191, 4, 7, UNI_INBENGALI } /* blk=bengali */,
+ { 0, 581, 292, 5, 2, UNI_CCC__A } /* ccc=230 */,
+ { 3, 2726, 2322, 3, 10, UNI_CN } /* gc=unassigned */,
+ { 0, 2355, 1491, 8, 4, UNI_CYRILLICEXTA } /* cyrillicexta */,
+ { 0, 464, 4827, 2, 5, UNI_BAMU } /* isbamum */,
+ { 3, 1796, 5389, 7, 20, UNI_HMNP } /* script=nyiakengpuachuehmong */,
+ { 3, 4962, 0, 4, 0, UNI_HAN } /* hani */,
+ { 0, 464, 3839, 2, 16, UNI_TANGUTCOMPONENTS } /* istangutcomponents */,
+ { 1, 6944, 5472, 24, 5, UNI_CCC__B } /* canonicalcombiningclass=below */,
+ { 3, 1371, 0, 6, 0, UNI_THAA } /* thaana */,
+ { 8, 3474, 1280, 6, 9, UNI_INNABATAEAN } /* block=nabataean */,
+ { 11, 6114, 783, 3, 7, UNI_OSMA } /* sc=osmanya */,
+ { 0, 6114, 1982, 3, 6, UNI_SC__SYRC } /* sc=syriac */,
+ { 1, 343, 0, 2, 0, UNI_XPOSIXCNTRL } /* cc */,
+ { 0, 34, 8077, 1, 33, UNI_IDEOGRAPHICSYMBOLS } /* isideographicsymbolsandpunctuation */,
+ { 0, 7208, 58, 9, 2, UNI_SC } /* category=sc */,
+ { 12, 343, 7171, 3, 3, UNI_CCC__12 } /* ccc=12 */,
+ { 1, 343, 2702, 4, 4, UNI_CCC__6 } /* ccc=hanr */,
+ { 3, 3474, 818, 6, 7, UNI_SC__SHRD } /* block=sharada */,
+ { 2, 8276, 6856, 31, 11, UNI_INSC__CONSONANTPLACEHOLDER } /* indicsyllabiccategory=consonantplaceholder */,
+ { 0, 1796, 86, 7, 4, UNI_SC__GONG } /* script=gong */,
+ { 0, 3164, 588, 14, 2, UNI_GREXT } /* graphemeextend=t */,
+ { 3, 3058, 601, 7, 4, -UNI_XPOSIXXDIGIT } /* hexdigit=no */,
+ { 0, 296, 2119, 3, 9, UNI_NV__3_SLASH_20 } /* nv=1.500e-01 */,
+ { 2, 464, 5825, 2, 19, UNI_SUNDANESESUP } /* issundanesesupplement */,
+ { 0, 1879, 4021, 4, 17, UNI_INDICSIYAQNUMBERS } /* blk=indicsiyaqnumbers */,
+ { 1, 6944, 647, 23, 2, UNI_CCC__L } /* canonicalcombiningclass=l */,
+ { 0, 555, 2649, 4, 3, UNI_AGE__6_DOT_1 } /* age=6.1 */,
+ { 0, 2443, 588, 5, 5, UNI_CASED } /* cased=true */,
+ { 1, 2363, 6142, 8, 12, UNI_ETHIOPICSUP } /* inethiopicsupplement */,
+ { 1, 1879, 6284, 4, 19, UNI_JAMOEXTB } /* blk=hanguljamoextendedb */,
+ { 4, 6944, 1303, 25, 2, UNI_CCC__AR } /* canonicalcombiningclass=232 */,
+ { 6, 1383, 601, 6, 4, -UNI_IDS } /* idstart=no */,
+ { 0, 4433, 1491, 9, 4, UNI_LATINEXTA } /* blk=latinexta */,
+ { 1, 6749, 602, 25, 2, -UNI_CWKCF } /* changeswhennfkccasefolded=n */,
+ { 1, 1102, 1371, 4, 6, UNI_THAA } /* scx=thaana */,
+ { 9, 1796, 868, 7, 4, UNI_SC__TIRH } /* script=tirh */,
+ { 0, 3779, 2080, 14, 8, UNI_NV__15_SLASH_2 } /* numericvalue=7.500e+00 */,
+ { 0, 2678, 56, 3, 2, UNI_BC__AN } /* bc=an */,
+ { 7, 6011, 6142, 12, 5, UNI_ETHIOPICSUP } /* block=ethiopicsup */,
+ { 1, 612, 5606, 2, 3, UNI_LB__ID } /* lb=id */,
+ { 1, 7688, 4677, 23, 5, UNI_JG__MANICHAEANGIMEL } /* joininggroup=manichaeangimel */,
+ { 0, 991, 0, 4, 0, UNI_HATR } /* hatr */,
+ { 0, 7823, 3571, 5, 6, UNI_CJKCOMPAT } /* incjkcompat */,
+ { 0, 7740, 0, 11, 0, UNI_IDEO } /* ideographic */,
+ { 2, 1236, 3671, 5, 10, UNI_INMALAYALAM } /* block=malayalam */,
+ { 0, 916, 933, 4, 3, -UNI_EBASE } /* ebase=f */,
+ { 4, 464, 776, 2, 7, UNI_OLCK } /* isolchiki */,
+ { 1, 1766, 602, 5, 2, UNI_COMPEX } /* nfcqc=n */,
+ { 2, 313, 1308, 2, 9, UNI_INOLDITALIC } /* inolditalic */,
+ { 0, 1879, 967, 4, 8, UNI_INGUJARATI } /* blk=gujarati */,
+ { 4, 313, 593, 2, 7, UNI_DSRT } /* indeseret */,
+ { 1, 8007, 5183, 30, 4, UNI_CJKEXTE } /* blk=cjkunifiedideographsextensione */,
+ { 4, 5544, 356, 21, 4, UNI_CWT } /* changeswhentitlecased=yes */,
+ { 4, 6114, 1424, 3, 10, UNI_CHRS } /* sc=chorasmian */,
+ { 1, 0, 0, 2, 0, UNI_CASEDLETTER } /* l& */,
+ { 3, 1102, 6134, 4, 4, UNI_GLAG } /* scx=glag */,
+ { 5, 756, 356, 6, 4, UNI_NFKCQC__Y } /* nfkcqc=yes */,
+ { 1, 275, 647, 3, 3, UNI_LB__H2 } /* gcb=lv */,
+ { 0, 8533, 837, 10, 3, UNI_SUPPUAA } /* block=suppuaa */,
+ { 0, 4500, 355, 8, 2, UNI_upper_values_index } /* uppercase= */,
+ { 2, 464, 4882, 2, 19, UNI_EGYP } /* isegyptianhieroglyphs */,
+ { 8, 302, 356, 2, 4, UNI_RI } /* ri=yes */,
+ { 0, 1975, 1345, 3, 3, UNI_PALM } /* ispalm */,
+ { 1, 6379, 4166, 13, 4, UNI_JG__BETH } /* joininggroup=beth */,
+ { 9, 4996, 4166, 13, 4, UNI_JG__MANICHAEANBETH } /* jg=manichaeanbeth */,
+ { 1, 6114, 1280, 3, 9, UNI_NBAT } /* sc=nabataean */,
+ { 3, 6114, 1051, 3, 8, UNI_SC__MAHJ } /* sc=mahajani */,
+ { 0, 1377, 2447, 5, 7, UNI_WB__ML } /* wb=midletter */,
+ { 5, 6114, 453, 3, 4, UNI_MIAO } /* sc=plrd */,
+ { 7, 1704, 1491, 6, 4, UNI_ARABICEXTA } /* arabicexta */,
+ { 6, 7880, 6177, 4, 8, UNI_CJKSYMBOLS } /* iscjksymbols */,
+ { 4, 7208, 1413, 8, 3, UNI_XPOSIXCNTRL } /* category=cc */,
+ { 0, 67, 69, 2, 2, UNI_CPMN } /* cpmn */,
+ { 0, 4355, 540, 17, 4, UNI_TANG } /* scriptextensions=tang */,
+ { 1, 6011, 7851, 7, 29, UNI_ENCLOSEDALPHANUMSUP } /* block=enclosedalphanumericsupplement */,
+ { 0, 37, 5358, 1, 11, UNI_SMALLKANAEXT } /* smallkanaext */,
+ { 3, 3450, 4007, 5, 14, UNI_CURRENCYSYMBOLS } /* blk=currencysymbols */,
+ { 3, 464, 3152, 2, 12, UNI_NL } /* isletternumber */,
+ { 1, 3474, 4827, 6, 5, UNI_INBAMUM } /* block=bamum */,
+ { 1, 1289, 0, 9, 0, UNI_TALU } /* newtailue */,
+ { 1, 8276, 3213, 22, 10, UNI_INSC__PUREKILLER } /* indicsyllabiccategory=purekiller */,
+ { 2, 1687, 1950, 4, 8, UNI_SOGO } /* isoldsogdian */,
+ { 0, 1796, 4582, 7, 8, UNI_SC__BOPO } /* script=bopomofo */,
+ { 0, 3593, 4701, 10, 10, UNI_LATINEXTADDITIONAL } /* inlatinextadditional */,
+ { 7, 4355, 248, 17, 4, UNI_ZZZZ } /* scriptextensions=zzzz */,
+ { 0, 313, 661, 2, 5, UNI_INDOGRA } /* indogra */,
+ { 0, 1796, 5825, 7, 9, UNI_SUND } /* script=sundanese */,
+ { 24, 57, 0, 1, 0, UNI_N } /* n */,
+ { 0, 8533, 5358, 7, 11, UNI_SMALLKANAEXT } /* block=smallkanaext */,
+ { 1, 343, 3112, 4, 11, UNI_CCC__8 } /* ccc=kanavoicing */,
+ { 6, 4355, 5340, 17, 4, UNI_DEVA } /* scriptextensions=deva */,
+ { 0, 1702, 36, 3, 3, UNI_AVST } /* isavst */,
+ { 1, 261, 602, 4, 3, -UNI_CWCM } /* cwcm=no */,
+ { 1, 7208, 4081, 9, 11, UNI_P } /* category=punctuation */,
+ { 0, 1879, 2812, 4, 7, UNI_MAHJONG } /* blk=mahjong */,
+ { 4, 7018, 0, 8, 0, UNI_INARABIC } /* inarabic */,
+ { 1, 1796, 5806, 7, 9, UNI_SC__MONG } /* script=mongolian */,
+ { 8, 7431, 394, 27, 2, UNI_CCC__34 } /* canonicalcombiningclass=ccc34 */,
+ { 0, 2, 3123, 1, 14, UNI_CONTROLPICTURES } /* controlpictures */,
+ { 0, 3474, 2275, 6, 3, UNI_INIDC } /* block=idc */,
+ { 5, 313, 1191, 2, 7, UNI_INBENGALI } /* inbengali */,
+ { 8, 3622, 1646, 7, 4, UNI_LATINEXTD } /* islatinextd */,
+ { 1, 7605, 3559, 19, 12, UNI_GCB__T } /* hangulsyllabletype=trailingjamo */,
+ { 0, 313, 4750, 2, 8, UNI_DINGBATS } /* indingbats */,
+ { 2, 2428, 0, 13, 0, UNI_IPAEXT } /* ipaextensions */,
+ { 4, 464, 2712, 2, 14, UNI_ECOMP } /* isemojicomponent */,
+ { 9, 296, 1299, 3, 2, UNI_NV__60 } /* nv=60 */,
+ { 0, 7132, 6898, 7, 22, UNI_SUPERANDSUB } /* blk=superscriptsandsubscripts */,
+ { 4, 600, 6065, 3, 4, UNI_DT__FONT } /* dt=font */,
+ { 0, 464, 991, 2, 4, UNI_HATR } /* ishatr */,
+ { 2, 464, 1495, 2, 4, UNI_JAVA } /* isjava */,
+ { 3, 1205, 1211, 6, 3, UNI_QAAI } /* inherited */,
+ { 1, 721, 3582, 3, 11, UNI_KANGXI } /* kangxiradicals */,
+ { 1, 5586, 4435, 19, 3, UNI_GCB__L } /* graphemeclusterbreak=l */,
+ { 1, 313, 4857, 2, 8, UNI_TAMILSUP } /* intamilsup */,
+ { 1, 7403, 0, 28, 0, UNI_SUPPUAA } /* supplementaryprivateuseareaa */,
+ { 0, 1191, 0, 7, 0, UNI_BENG } /* bengali */,
+ { 0, 7584, 6065, 18, 4, UNI_DT__FONT } /* decompositiontype=font */,
+ { 8, 3474, 854, 6, 7, UNI_INTAIVIET } /* block=taiviet */,
+ { 1, 7828, 356, 16, 2, UNI_UIDEO } /* unifiedideograph=y */,
+ { 3, 409, 0, 3, 0, UNI_DIA } /* dia */,
+ { 6, 3474, 4740, 6, 18, UNI_ORNAMENTALDINGBATS } /* block=ornamentaldingbats */,
+ { 2, 1796, 405, 7, 4, UNI_ARMN } /* script=armn */,
+ { 3, 6112, 7364, 15, 13, UNI_INSC__CONSONANTPRECEDINGREPHA } /* insc=consonantprecedingrepha */,
+ { 9, 1796, 132, 7, 4, UNI_MTEI } /* script=mtei */,
+ { 0, 1442, 4370, 4, 2, UNI_epres_values_index } /* epres= */,
+ { 1, 1102, 405, 4, 4, UNI_ARMN } /* scx=armn */,
+ { 2, 154, 6878, 3, 15, UNI_GEOMETRICSHAPESEXT } /* geometricshapesext */,
+ { 0, 34, 617, 1, 8, UNI_INELYMAIC } /* inelymaic */,
+ { 1, 7317, 331, 10, 3, UNI_BC__FSI } /* bidiclass=fsi */,
+ { 4, 6114, 43, 3, 4, UNI_BHKS } /* sc=bhks */,
+ { 0, 2353, 7908, 3, 15, UNI_CUNEIFORMNUMBERS } /* incuneiformnumbers */,
+ { 3, 4355, 1255, 17, 7, UNI_SOYO } /* scriptextensions=soyombo */,
+ { 3, 464, 330, 2, 2, UNI_PF } /* ispf */,
+ { 0, 4355, 1807, 17, 4, UNI_SORA } /* scriptextensions=sora */,
+ { 10, 536, 287, 3, 2, UNI_SB__NU } /* sb=nu */,
+ { 0, 3462, 7175, 5, 10, UNI_ENCLOSEDCJK } /* blk=enclosedcjk */,
+ { 15, 2441, 0, 7, 0, UNI_CASED } /* iscased */,
+ { 5, 1899, 0, 6, 0, UNI_S } /* symbol */,
+ { 17, 1377, 3285, 3, 12, UNI_LB__HL } /* wb=hebrewletter */,
+ { 8, 1796, 1495, 7, 4, UNI_SC__JAVA } /* script=java */,
+ { 4, 2926, 7238, 3, 24, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* insymbolsandpictographsexta */,
+ { 1, 6644, 1899, 15, 7, UNI_TRANSPORTANDMAP } /* transportandmapsymbols */,
+ { 3, 3351, 2066, 13, 2, UNI_NV__50 } /* numericvalue=50 */,
+ { 2, 1353, 0, 9, 0, UNI_PAUC } /* paucinhau */,
+ { 4, 1879, 1033, 4, 8, UNI_JAMOEXTB } /* blk=jamoextb */,
+ { 1, 6379, 2972, 12, 2, UNI_JG__E } /* joininggroup=e */,
+ { 2, 6728, 0, 11, 0, UNI_MTEI } /* meeteimayek */,
+ { 0, 5523, 934, 21, 2, -UNI_CWL } /* changeswhenlowercased=f */,
+ { 5, 1383, 934, 4, 2, -UNI_IDST } /* idst=f */,
+ { 2, 600, 1178, 4, 5, UNI_DT__NAR } /* dt=narrow */,
+ { 0, 2948, 1771, 13, 6, UNI_NFCQC__M } /* nfcquickcheck=maybe */,
+ { 0, 4291, 22, 10, 2, UNI_LB__BA } /* linebreak=ba */,
+ { 13, 2253, 2127, 10, 2, UNI_IN__13 } /* presentin=13 */,
+ { 0, 7431, 294, 28, 1, UNI_CCC__14 } /* canonicalcombiningclass=ccc14 */,
+ { 0, 6402, 3151, 13, 3, UNI_SB__LE } /* sentencebreak=le */,
+ { 11, 4291, 7529, 9, 27, UNI_LB__CJ } /* linebreak=conditionaljapanesestarter */,
+ { 9, 1796, 55, 7, 4, UNI_CANS } /* script=cans */,
+ { 0, 6944, 118, 24, 2, UNI_CCC__DA } /* canonicalcombiningclass=da */,
+ { 5, 1879, 1887, 4, 4, UNI_UCAS } /* blk=ucas */,
+ { 0, 1102, 67, 4, 4, UNI_CPMN } /* scx=cpmn */,
+ { 0, 4355, 176, 17, 4, UNI_ROHG } /* scriptextensions=rohg */,
+ { 8, 959, 934, 8, 2, -UNI_EXT } /* extender=f */,
+ { 0, 1102, 465, 4, 4, UNI_SHRD } /* scx=shrd */,
+ { 0, 7880, 6352, 5, 11, UNI_CJKRADICALSSUP } /* iscjkradicalssup */,
+ { 3, 7018, 935, 9, 2, UNI_ARABICPFA } /* inarabicpfa */,
+ { 0, 1589, 0, 3, 0, UNI_ALL } /* all */,
+ { 7, 3669, 1193, 12, 3, UNI_JG__MALAYALAMNGA } /* jg=malayalamnga */,
+ { 7, 2974, 347, 11, 2, UNI_IN__1_DOT_1 } /* presentin=v11 */,
+ { 5, 2463, 356, 11, 2, UNI_JOINC } /* joincontrol=y */,
+ { 8, 3058, 356, 8, 2, UNI_XPOSIXXDIGIT } /* hexdigit=y */,
+ { 4, 4999, 0, 4, 0, UNI_MANI } /* mani */,
+ { 8, 1470, 0, 8, 0, UNI_BUGI } /* buginese */,
+ { 8, 4827, 0, 15, 0, UNI_BAMUMSUP } /* bamumsupplement */,
+ { 0, 313, 3933, 2, 4, UNI_INMODI } /* inmodi */,
+ { 2, 51, 0, 4, 0, UNI_CAKM } /* cakm */,
+ { 0, 1377, 2728, 2, 6, UNI_WB__XX } /* wb=other */,
+ { 1, 296, 294, 3, 2, UNI_NV__40 } /* nv=40 */,
+ { 1, 1102, 776, 4, 7, UNI_OLCK } /* scx=olchiki */,
+ { 1, 5136, 7556, 5, 28, UNI_MISCARROWS } /* blk=miscellaneoussymbolsandarrows */,
+ { 7, 1879, 3608, 4, 14, UNI_PHONETICEXTSUP } /* blk=phoneticextsup */,
+ { 0, 2726, 128, 3, 2, UNI_ME } /* gc=me */,
+ { 5, 6439, 0, 23, 0, UNI_ZNAMENNYMUSIC } /* znamennymusicalnotation */,
+ { 0, 4291, 7740, 10, 11, UNI_LB__ID } /* linebreak=ideographic */,
+ { 12, 7431, 1073, 27, 2, UNI_CCC__12 } /* canonicalcombiningclass=ccc12 */,
+ { 0, 1796, 1826, 7, 11, UNI_SC__SYLO } /* script=sylotinagri */,
+ { 0, 3474, 8592, 6, 43, UNI_UCASEXTA } /* block=unifiedcanadianaboriginalsyllabicsextendeda */,
+ { 21, 6185, 6199, 16, 8, UNI_NV__10000000000 } /* numericvalue=10000000000 */,
+ { 8, 3474, 1033, 6, 4, UNI_JAMO } /* block=jamo */,
+ { 0, 4291, 2012, 10, 2, UNI_LB__BK } /* linebreak=bk */,
+ { 0, 1377, 1837, 3, 5, UNI_WB__EB } /* wb=ebase */,
+ { 1, 2678, 538, 2, 2, UNI_BC__S } /* bc=s */,
+ { 0, 1879, 2812, 4, 12, UNI_MAHJONG } /* blk=mahjongtiles */,
+ { 3, 2926, 5358, 3, 17, UNI_SMALLKANAEXT } /* insmallkanaextension */,
+ { 1, 3474, 4062, 6, 8, UNI_VEDICEXT } /* block=vedicext */,
+ { 8, 876, 0, 4, 0, UNI_IDEO } /* ideo */,
+ { 0, 464, 3498, 2, 7, UNI_CPRT } /* iscypriot */,
+ { 1, 1102, 1927, 4, 12, UNI_GONG } /* scx=gunjalagondi */,
+ { 14, 1879, 496, 4, 6, UNI_INKHOJKI } /* blk=khojki */,
+ { 2, 5322, 0, 4, 0, UNI_CHER } /* cher */,
+ { 1, 2746, 2581, 4, 10, UNI_HIGHSURROGATES } /* highsurrogates */,
+ { 2, 644, 2344, 4, 9, UNI_GCB__V } /* hst=voweljamo */,
+ { 1, 464, 2018, 2, 12, UNI_GONM } /* ismasaramgondi */,
+ { 3, 7880, 1646, 5, 4, UNI_CJKEXTD } /* iscjkextd */,
+ { 0, 1796, 880, 7, 7, UNI_ZZZZ } /* script=unknown */,
+ { 0, 5865, 356, 21, 2, UNI_LOE } /* logicalorderexception=y */,
+ { 2, 464, 2581, 2, 9, UNI__PERL_SURROGATE } /* issurrogate */,
+ { 0, 832, 934, 5, 2, -UNI_STERM } /* sterm=f */,
+ { 0, 3474, 2771, 6, 12, UNI_KHMERSYMBOLS } /* block=khmersymbols */,
+ { 10, 3351, 292, 13, 2, UNI_NV__30 } /* numericvalue=30 */,
+ { 2, 2193, 2080, 4, 8, UNI_NV__13_SLASH_2 } /* nv=6.500e+00 */,
+ { 2, 7201, 4500, 16, 15, UNI_UPPERCASELETTER } /* generalcategory=uppercaseletter */,
+ { 4, 612, 6492, 2, 3, UNI_LB__AL } /* lb=al */,
+ { 1, 4092, 356, 9, 2, UNI_DIA } /* diacritic=y */,
+ { 20, 1102, 0, 4, 0, UNI_scx_values_index } /* scx= */,
+ { 0, 5502, 602, 21, 3, -UNI_CWCM } /* changeswhencasemapped=no */,
+ { 11, 6114, 337, 3, 6, UNI_CARI } /* sc=carian */,
+ { 22, 3474, 6728, 6, 11, UNI_INMEETEIMAYEK } /* block=meeteimayek */,
+ { 7, 464, 1371, 2, 6, UNI_THAA } /* isthaana */,
+ { 3, 7201, 6276, 16, 6, UNI_CF } /* generalcategory=format */,
+ { 2, 7431, 348, 27, 2, UNI_CCC__18 } /* canonicalcombiningclass=ccc18 */,
+ { 5, 2033, 0, 5, 0, UNI_XPOSIXALPHA } /* alpha */,
+ { 41851, 540, 184, 4, 2, UNI_TNSA } /* tangsa */,
+ { 0, 6944, 1300, 25, 2, UNI_WB__EB } /* canonicalcombiningclass=200 */,
+ { 3, 4355, 967, 17, 8, UNI_GUJR } /* scriptextensions=gujarati */,
+ { 0, 4291, 2014, 10, 2, UNI_LB__H3 } /* linebreak=h3 */,
+ { 0, 7338, 844, 11, 2, UNI_BC__RLO } /* bidiclass=rlo */,
+ { 0, 464, 2274, 2, 11, UNI_XIDC } /* isxidcontinue */,
+ { 8, 464, 940, 2, 2, UNI_CO } /* isco */,
+ { 4, 7317, 424, 10, 3, UNI_BC__RLI } /* bidiclass=rli */,
+ { 41, 536, 1592, 3, 2, UNI_SB__FO } /* sb=fo */,
+ { 0, 1796, 661, 7, 4, UNI_SC__DOGR } /* script=dogr */,
+ { 0, 823, 588, 4, 5, UNI_DASH } /* dash=true */,
+ { 0, 1879, 1826, 4, 11, UNI_INSYLOTINAGRI } /* blk=sylotinagri */,
+ { 0, 7880, 1037, 5, 4, UNI_CJKEXTB } /* iscjkextb */,
+ { 0, 464, 656, 2, 5, UNI_BUHD } /* isbuhid */,
+ { 17, 1102, 666, 4, 4, UNI_LIMB } /* scx=limb */,
+ { 4, 4355, 802, 17, 4, UNI_NBAT } /* scriptextensions=nbat */,
+ { 9, 1879, 5949, 4, 21, UNI_YIJING } /* blk=yijinghexagramsymbols */,
+ { 0, 4355, 1027, 17, 4, UNI_YEZI } /* scriptextensions=yezi */,
+ { 4, 343, 1650, 4, 2, UNI_CCC__1 } /* ccc=ov */,
+ { 0, 5, 588, 3, 5, UNI_EXT } /* ext=true */,
+ { 7, 464, 2463, 2, 11, UNI_JOINC } /* isjoincontrol */,
+ { 0, 2974, 1299, 11, 2, UNI_IN__6 } /* presentin=v60 */,
+ { 3, 3351, 3365, 13, 2, UNI_NV__36 } /* numericvalue=36 */,
+ { 0, 1796, 224, 7, 4, UNI_WCHO } /* script=wcho */,
+ { 0, 4355, 1470, 17, 8, UNI_BUGI } /* scriptextensions=buginese */,
+ { 3, 917, 0, 4, 0, UNI_BASS } /* bass */,
+ { 0, 58, 3465, 2, 5, UNI_ETHI } /* sc=ethi */,
+ { 5, 464, 4901, 2, 13, UNI_EMOD } /* isemojimodifier */,
+ { 1, 374, 169, 2, 2, UNI_THAA } /* thaa */,
+ { 2, 1879, 4842, 4, 15, UNI_DIACRITICALSSUP } /* blk=diacriticalssup */,
+ { 3, 5586, 588, 20, 2, UNI_GCB__T } /* graphemeclusterbreak=t */,
+ { 10, 1879, 3582, 7, 3, UNI_KANGXI } /* blk=kangxi */,
+ { 0, 464, 1657, 2, 11, UNI_CPMN } /* iscyprominoan */,
+ { 1, 3593, 3704, 3, 15, UNI_LINEARBIDEOGRAMS } /* inlinearbideograms */,
+ { 1, 2181, 1300, 4, 3, UNI_NV__5000 } /* nv=5000 */,
+ { 16, 7828, 588, 16, 5, UNI_UIDEO } /* unifiedideograph=true */,
+ { 1, 1465, 5100, 5, 4, UNI_XPOSIXSPACE } /* spaceperl */,
+ { 37, 939, 356, 5, 2, UNI_ECOMP } /* ecomp=y */,
+ { 5, 464, 1133, 2, 8, UNI_VITH } /* isvithkuqi */,
+ { 5, 464, 749, 2, 4, UNI_MARC } /* ismarc */,
+ { 0, 2253, 584, 9, 2, UNI_IN__2 } /* presentin=2 */,
+ { 0, 6114, 1951, 3, 4, UNI_SC__SOGD } /* sc=sogd */,
+ { 10, 6549, 0, 4, 0, UNI_CE } /* isce */,
+ { 0, 8276, 6116, 21, 18, UNI_INSC__CONSONANTPREFIXED } /* indicsyllabiccategory=consonantprefixed */,
+ { 0, 464, 1529, 2, 4, UNI_KHAR } /* iskhar */,
+ { 0, 2355, 6142, 6, 12, UNI_CYRILLICSUP } /* cyrillicsupplement */,
+ { 0, 2726, 1899, 3, 6, UNI_S } /* gc=symbol */,
+ { 0, 1441, 934, 10, 6, -UNI_DEP } /* deprecated=false */,
+ { 22, 832, 602, 5, 3, -UNI_STERM } /* sterm=no */,
+ { 17, 5, 934, 3, 2, -UNI_EXT } /* ext=f */,
+ { 56593, 3474, 1353, 6, 9, UNI_INPAUCINHAU } /* block=paucinhau */,
+ { 9, 409, 934, 3, 6, -UNI_DIA } /* dia=false */,
+ { 0, 34, 7986, 1, 5, UNI_MATH } /* ismath */,
+ { 0, 1879, 6644, 4, 15, UNI_TRANSPORTANDMAP } /* blk=transportandmap */,
+ { 6, 2726, 6466, 3, 10, UNI_CO } /* gc=privateuse */,
+ { 9, 216, 0, 4, 0, UNI_TIBT } /* tibt */,
+ { 9, 4433, 4629, 8, 5, UNI_LATIN1 } /* blk=latin1sup */,
+ { 4, 1003, 0, 6, 0, UNI_LEPC } /* lepcha */,
+ { 2, 1102, 120, 4, 4, UNI_LAO } /* scx=laoo */,
+ { 16, 8244, 1434, 9, 7, UNI_CJKSTROKES } /* block=cjkstrokes */,
+ { 1, 1879, 1845, 4, 11, UNI_YISYLLABLES } /* blk=yisyllables */,
+ { 4, 5544, 0, 21, 0, UNI_CWT } /* changeswhentitlecased */,
+ { 0, 464, 1198, 2, 7, UNI_GRAN } /* isgrantha */,
+ { 1, 7880, 5366, 22, 10, UNI_CJKEXTD } /* iscjkunifiedideographsextensiond */,
+ { 8, 464, 1464, 2, 2, UNI_ZS } /* iszs */,
+ { 5, 3474, 4793, 6, 4, UNI_RUMI } /* block=rumi */,
+ { 1, 2726, 6629, 3, 14, UNI_LM } /* gc=modifierletter */,
+ { 3, 1597, 588, 10, 5, UNI_SD } /* softdotted=true */,
+ { 0, 1465, 5620, 4, 3, -UNI_XPOSIXSPACE } /* space=n */,
+ { 2, 3000, 934, 13, 6, -UNI_QMARK } /* quotationmark=false */,
+ { 16, 8078, 0, 18, 0, UNI_IDEOGRAPHICSYMBOLS } /* ideographicsymbols */,
+ { 11, 3053, 601, 12, 3, -UNI_POSIXXDIGIT } /* asciihexdigit=n */,
+ { 1, 1214, 4442, 6, 9, UNI_KANAEXTB } /* inkanaextendedb */,
+ { 0, 4355, 67, 17, 4, UNI_CPMN } /* scriptextensions=cpmn */,
+ { 0, 2253, 2155, 9, 2, UNI_IN__4 } /* presentin=4 */,
+ { 5, 296, 771, 3, 2, UNI_NV__21 } /* nv=21 */,
+ { 1, 464, 343, 2, 2, UNI_XPOSIXCNTRL } /* iscc */,
+ { 0, 3351, 2617, 14, 8, UNI_NV__1_SLASH_5 } /* numericvalue=2.000e-01 */,
+ { 0, 895, 399, 5, 2, UNI_AGE__6_DOT_1 } /* age=v61 */,
+ { 0, 6379, 6154, 13, 19, UNI_JG__BURUSHASKIYEHBARREE } /* joininggroup=burushaskiyehbarree */,
+ { 0, 464, 19, 2, 4, UNI_AGHB } /* isaghb */,
+ { 8, 2, 5620, 1, 3, -UNI_CE } /* ce=n */,
+ { 1, 7688, 4170, 23, 4, UNI_JG__MANICHAEANFIVE } /* joininggroup=manichaeanfive */,
+ { 0, 2974, 3792, 11, 2, UNI_IN__7 } /* presentin=v70 */,
+ { 0, 1086, 0, 4, 0, UNI_KTHI } /* kthi */,
+ { 0, 2974, 294, 11, 2, UNI_IN__4 } /* presentin=v40 */,
+ { 11, 24, 0, 3, 0, UNI_XPOSIXXDIGIT } /* hex */,
+ { 6, 2465, 6529, 4, 20, UNI_INDICNUMBERFORMS } /* incommonindicnumberforms */,
+ { 2, 313, 5322, 2, 11, UNI_CHEROKEESUP } /* incherokeesup */,
+ { 0, 4062, 0, 8, 0, UNI_VEDICEXT } /* vedicext */,
+ { 1, 24, 934, 3, 2, -UNI_XPOSIXXDIGIT } /* hex=f */,
+ { 1, 34, 1116, 1, 9, UNI_TAGB } /* istagbanwa */,
+ { 0, 3474, 5907, 6, 21, UNI_SINHALAARCHAICNUMBERS } /* block=sinhalaarchaicnumbers */,
+ { 0, 3090, 6878, 7, 15, UNI_GEOMETRICSHAPESEXT } /* blk=geometricshapesext */,
+ { 7, 464, 1845, 2, 11, UNI_YISYLLABLES } /* isyisyllables */,
+ { 0, 5631, 2737, 5, 9, UNI_INGREEK } /* greekandcoptic */,
+ { 0, 4450, 5643, 7, 10, UNI_COUNTINGROD } /* block=countingrod */,
+ { 31, 4901, 933, 16, 3, -UNI_EBASE } /* emojimodifierbase=f */,
+ { 2, 1102, 6103, 4, 9, UNI_XSUX } /* scx=cuneiform */,
+ { 0, 1383, 356, 3, 4, UNI_IDS } /* ids=yes */,
+ { 0, 4355, 43, 17, 4, UNI_BHKS } /* scriptextensions=bhks */,
+ { 2, 3351, 2195, 12, 10, UNI_NV__1_SLASH_16 } /* numericvalue=6.250e-02 */,
+ { 2, 4355, 59, 17, 4, UNI_CHAM } /* scriptextensions=cham */,
+ { 6, 1796, 611, 7, 7, UNI_ELBA } /* script=elbasan */,
+ { 1, 3622, 503, 3, 5, UNI_LYDI } /* islydian */,
+ { 2, 1766, 356, 5, 4, UNI_NFCQC__Y } /* nfcqc=yes */,
+ { 8, 1410, 891, 7, 2, UNI_CCC__10 } /* ccc=ccc10 */,
+ { 0, 296, 4334, 2, 4, UNI_NV__3_SLASH_2 } /* nv=3/2 */,
+ { 0, 1879, 1807, 4, 11, UNI_INSORASOMPENG } /* blk=sorasompeng */,
+ { 2, 1796, 3093, 6, 5, UNI_SC__GEOR } /* script=geor */,
+ { 0, 2274, 356, 4, 2, UNI_XIDC } /* xidc=y */,
+ { 8, 441, 0, 4, 0, UNI_OLCK } /* olck */,
+ { 8, 343, 1303, 4, 2, UNI_CCC__32 } /* ccc=32 */,
+ { 2, 34, 1855, 1, 6, UNI_BIDIC } /* isbidic */,
+ { 0, 6112, 4934, 5, 14, UNI_INSC__GEMINATIONMARK } /* insc=geminationmark */,
+ { 0, 6114, 4418, 3, 6, UNI_SC__ZYYY } /* sc=common */,
+ { 6, 2890, 2868, 3, 11, UNI_JT__C } /* jt=joincausing */,
+ { 8, 6774, 601, 24, 3, -UNI_DI } /* defaultignorablecodepoint=n */,
+ { 0, 1382, 602, 4, 2, -UNI_XIDS } /* xids=n */,
+ { 2, 940, 356, 6, 2, UNI_COMPEX } /* compex=y */,
+ { 17, 6379, 6164, 13, 9, UNI_JG__YEHBARREE } /* joininggroup=yehbarree */,
+ { 2, 4857, 3641, 5, 10, UNI_TAMILSUP } /* tamilsupplement */,
+ { 0, 2253, 6214, 10, 3, UNI_IN__2_DOT_1 } /* presentin=2.1 */,
+ { 2, 1879, 2229, 4, 12, UNI_PHAISTOS } /* blk=phaistosdisc */,
+ { 1, 3474, 5846, 6, 19, UNI_SUPARROWSC } /* block=supplementalarrowsc */,
+ { 1, 464, 240, 2, 4, UNI_ZANB } /* iszanb */,
+ { 20, 3474, 1202, 6, 4, UNI_INTHAI } /* block=thai */,
+ { 1, 2394, 1491, 7, 4, UNI_MYANMAREXTA } /* myanmarexta */,
+ { 5, 1597, 0, 10, 0, UNI_SD } /* softdotted */,
+ { 1, 464, 1826, 2, 4, UNI_SYLO } /* issylo */,
+ { 2, 6803, 356, 20, 4, UNI_CE } /* compositionexclusion=yes */,
+ { 0, 2483, 3060, 8, 6, UNI_XPOSIXXDIGIT } /* isxposixxdigit */,
+ { 33, 600, 1168, 3, 6, UNI_DT__MED } /* dt=medial */,
+ { 2, 208, 0, 4, 0, UNI_TFNG } /* tfng */,
+ { 14, 7201, 4122, 16, 15, UNI_LOWERCASELETTER } /* generalcategory=lowercaseletter */,
+ { 0, 3608, 0, 14, 0, UNI_PHONETICEXTSUP } /* phoneticextsup */,
+ { 0, 2973, 934, 5, 6, -UNI_EPRES } /* epres=false */,
+ { 0, 2474, 2591, 3, 12, UNI_MAYANNUMERALS } /* ismayannumerals */,
+ { 0, 939, 0, 5, 0, UNI_ECOMP } /* ecomp */,
+ { 0, 6944, 2002, 23, 3, UNI_CCC__BR } /* canonicalcombiningclass=br */,
+ { 3, 409, 934, 3, 2, -UNI_DIA } /* dia=f */,
+ { 8, 2981, 399, 4, 2, UNI_IN__6_DOT_1 } /* in=v61 */,
+ { 1, 513, 3777, 4, 2, UNI_NV__3_SLASH_8 } /* nv=3/8 */,
+ { 0, 5136, 8307, 5, 33, UNI_MISCPICTOGRAPHS } /* blk=miscellaneoussymbolsandpictographs */,
+ { 4, 5888, 356, 5, 2, UNI__PERL_NCHAR } /* nchar=y */,
+ { 2, 5523, 588, 21, 5, UNI_CWL } /* changeswhenlowercased=true */,
+ { 0, 6379, 2526, 13, 3, UNI_JG__HEH } /* joininggroup=heh */,
+ { 2, 7132, 5762, 7, 7, UNI_SUPARROWSB } /* blk=suparrowsb */,
+ { 2, 1102, 1571, 4, 4, UNI_SAUR } /* scx=saur */,
+ { 6, 4662, 5080, 12, 7, UNI_SUPARROWSA } /* supplementalarrowsa */,
+ { 21, 275, 163, 4, 2, UNI_GCB__PP } /* gcb=pp */,
+ { 1, 2275, 602, 3, 3, -UNI_IDC } /* idc=no */,
+ { 1, 1879, 1241, 4, 7, UNI_INPHAGSPA } /* blk=phagspa */,
+ { 2, 34, 5321, 1, 9, UNI_CHER } /* ischerokee */,
+ { 0, 2260, 549, 3, 3, UNI_IN__3 } /* in=3.0 */,
+ { 1, 3474, 6644, 6, 22, UNI_TRANSPORTANDMAP } /* block=transportandmapsymbols */,
+ { 6, 3474, 9, 6, 3, UNI_OCR } /* block=ocr */,
+ { 0, 464, 2274, 2, 4, UNI_XIDC } /* isxidc */,
+ { 1, 2890, 0, 3, 0, UNI_jt_values_index } /* jt= */,
+ { 0, 7208, 2290, 9, 6, UNI_N } /* category=number */,
+ { 0, 1059, 602, 6, 3, UNI_NFKDQC__N } /* nfkdqc=no */,
+ { 4, 895, 3807, 5, 2, UNI_AGE__8 } /* age=v80 */,
+ { 3, 1011, 602, 2, 3, -UNI_CI } /* ci=no */,
+ { 1, 555, 2056, 5, 2, UNI_AGE__5_DOT_1 } /* age=5.1 */,
+ { 12, 1377, 287, 3, 2, UNI_WB__NU } /* wb=nu */,
+ { 10, 313, 1335, 2, 9, UNI_INOLDUYGHUR } /* inolduyghur */,
+ { 5, 1796, 192, 7, 4, UNI_SHAW } /* script=shaw */,
+ { 0, 296, 1304, 3, 4, UNI_NV__2000 } /* nv=2000 */,
+ { 21, 4302, 0, 6, 0, UNI_XPOSIXSPACE } /* wspace */,
+ { 8, 7584, 140, 18, 3, UNI_DT__NAR } /* decompositiontype=nar */,
+ { 5, 4433, 6890, 9, 9, UNI_LATINEXTE } /* blk=latinextendede */,
+ { 0, 3474, 6069, 6, 22, UNI_DIACRITICALSFORSYMBOLS } /* block=diacriticalsforsymbols */,
+ { 5, 1102, 4020, 4, 4, UNI_SIND } /* scx=sind */,
+ { 4, 1597, 356, 10, 2, UNI_SD } /* softdotted=y */,
+ { 0, 4355, 5907, 17, 7, UNI_SINH } /* scriptextensions=sinhala */,
+ { 2, 1065, 294, 5, 1, UNI_NV__1_SLASH_4 } /* nv=1/4 */,
+ { 0, 3164, 602, 14, 3, -UNI_GREXT } /* graphemeextend=no */,
+ { 0, 3593, 5, 7, 4, UNI_LATINEXTG } /* inlatinextg */,
+ { 4, 464, 6538, 2, 11, UNI_NUMBERFORMS } /* isnumberforms */,
+ { 0, 1410, 292, 7, 2, UNI_CCC__30 } /* ccc=ccc30 */,
+ { 0, 464, 1383, 2, 7, UNI_IDS } /* isidstart */,
+ { 0, 3351, 1299, 13, 3, UNI_NV__600 } /* numericvalue=600 */,
+ { 1, 4291, 0, 17, 0, UNI_LB__ZW } /* linebreak=zwspace */,
+ { 9, 5565, 0, 21, 0, UNI_CWU } /* changeswhenuppercased */,
+ { 0, 6114, 59, 3, 4, UNI_CHAM } /* sc=cham */,
+ { 2, 1102, 1424, 4, 10, UNI_CHRS } /* scx=chorasmian */,
+ { 0, 1796, 1549, 5, 12, UNI_XPEO } /* script=oldpersian */,
+ { 1, 464, 265, 2, 5, UNI_CWKCF } /* iscwkcf */,
+ { 1, 1879, 4062, 4, 15, UNI_VEDICEXT } /* blk=vedicextensions */,
+ { 1, 1879, 5825, 4, 9, UNI_INSUNDANESE } /* blk=sundanese */,
+ { 0, 2, 3869, 1, 16, UNI_UCAS } /* canadiansyllabics */,
+ { 74, 4355, 200, 17, 4, UNI_TAML } /* scriptextensions=taml */,
+ { 16, 1377, 959, 3, 6, UNI_WB__EXTEND } /* wb=extend */,
+ { 13, 34, 996, 1, 7, UNI_INKAITHI } /* inkaithi */,
+ { 7, 6112, 7627, 14, 16, UNI_INSC__CONSONANTINITIALPOSTFIXED } /* insc=consonantinitialpostfixed */,
+ { 1, 1879, 6842, 4, 14, UNI_MUSIC } /* blk=musicalsymbols */,
+ { 1, 1582, 0, 6, 0, UNI_L } /* letter */,
+ { 2, 6114, 8599, 3, 18, UNI_CANS } /* sc=canadianaboriginal */,
+ { 1, 6114, 1451, 3, 10, UNI_DIAK } /* sc=divesakuru */,
+ { 1, 464, 86, 2, 4, UNI_GONG } /* isgong */,
+ { 4, 2496, 3254, 3, 7, UNI_JG__SEMKATH } /* jg=semkath */,
+ { 0, 464, 69, 2, 2, UNI_MN } /* ismn */,
+ { 0, 6114, 1317, 3, 9, UNI_SC__PERM } /* sc=oldpermic */,
+ { 8, 2981, 3807, 4, 2, UNI_IN__8 } /* in=v80 */,
+ { 25, 7584, 369, 18, 3, UNI_DT__SQR } /* decompositiontype=sqr */,
+ { 1, 1796, 1052, 8, 7, UNI_SC__MAHJ } /* script=mahajani */,
+ { 6, 2645, 2056, 4, 2, UNI_IN__5_DOT_1 } /* in=5.1 */,
+ { 0, 2638, 390, 11, 2, UNI_IN__5_DOT_2 } /* presentin=5.2 */,
+ { 3, 313, 3309, 2, 15, UNI_INMEROITICCURSIVE } /* inmeroiticcursive */,
+ { 4, 4433, 4590, 9, 9, UNI_LATINEXTC } /* blk=latinextendedc */,
+ { 0, 1879, 0, 4, 0, UNI_blk_values_index } /* blk= */,
+ { 9, 600, 4533, 3, 4, UNI_DT__INIT } /* dt=init */,
+ { 0, 343, 1878, 4, 2, UNI_CCC__DB } /* ccc=db */,
+ { 0, 419, 1236, 2, 5, UNI_NB } /* noblock */,
+ { 6, 895, 292, 5, 2, UNI_AGE__3 } /* age=v30 */,
+ { 0, 2260, 2172, 3, 3, UNI_IN__2 } /* in=2.0 */,
+ { 10, 313, 242, 2, 2, UNI_NB } /* innb */,
+ { 0, 3809, 1781, 14, 4, UNI_NV__90000 } /* numericvalue=90000 */,
+ { 0, 1542, 0, 6, 0, UNI_ARROWS } /* arrows */,
+ { 4, 6803, 8486, 17, 4, UNI_ce_values_index } /* compositionexclusion= */,
+ { 3, 6114, 2401, 3, 4, UNI_SC__NAND } /* sc=nand */,
+ { 5, 1796, 1241, 7, 7, UNI_SC__PHAG } /* script=phagspa */,
+ { 4, 786, 0, 3, 0, UNI_ANY } /* any */,
+ { 17, 343, 8572, 4, 13, UNI_CCC__214 } /* ccc=attachedabove */,
+ { 1, 6570, 2679, 3, 7, UNI_INPC__RIGHT } /* inpc=right */,
+ { 14, 5844, 5762, 14, 7, UNI_SUPARROWSB } /* issupplementalarrowsb */,
+ { 17, 3839, 0, 6, 0, UNI_TANG } /* tangut */,
+ { 1, 895, 1780, 5, 3, UNI_AGE__10 } /* age=v100 */,
+ { 0, 464, 1614, 2, 4, UNI_WARA } /* iswara */,
+ { 7, 6114, 27, 3, 4, UNI_AHOM } /* sc=ahom */,
+ { 0, 36, 588, 2, 5, UNI_VS } /* vs=true */,
+ { 4, 4776, 355, 16, 5, UNI__PERL_PATWS } /* patternwhitespace=yes */,
+ { 1, 5661, 0, 19, 0, UNI_MERO } /* meroitichieroglyphs */,
+ { 0, 6379, 3671, 12, 14, UNI_JG__MALAYALAMNNNA } /* joininggroup=malayalamnnna */,
+ { 0, 313, 4793, 2, 18, UNI_RUMI } /* inruminumeralsymbols */,
+ { 0, 313, 5340, 2, 13, UNI_DEVANAGARIEXT } /* indevanagariext */,
+ { 0, 2153, 1303, 4, 5, UNI_NV__432000 } /* nv=432000 */,
+ { 4, 464, 1571, 2, 4, UNI_SAUR } /* issaur */,
+ { 14, 313, 5322, 2, 18, UNI_CHEROKEESUP } /* incherokeesupplement */,
+ { 0, 6114, 124, 3, 4, UNI_SC__LATN } /* sc=latn */,
+ { 0, 2260, 294, 4, 1, UNI_IN__14 } /* in=14 */,
+ { 8, 2726, 4758, 3, 18, UNI_ZP } /* gc=paragraphseparator */,
+ { 0, 296, 2615, 3, 10, UNI_NV___MINUS_1_SLASH_2 } /* nv=-5.000e-01 */,
+ { 0, 1441, 602, 3, 2, -UNI_DEP } /* dep=n */,
+ { 10, 6114, 1826, 3, 11, UNI_SC__SYLO } /* sc=sylotinagri */,
+ { 8, 756, 602, 6, 3, UNI_NFKCQC__N } /* nfkcqc=no */,
+ { 8, 925, 1413, 3, 2, UNI_BPT__C } /* bpt=c */,
+ { 0, 464, 413, 2, 4, UNI_GONM } /* isgonm */,
+ { 16, 4355, 5284, 17, 20, UNI_PHLI } /* scriptextensions=inscriptionalpahlavi */,
+ { 0, 3474, 3608, 6, 11, UNI_PHONETICEXT } /* block=phoneticext */,
+ { 0, 7208, 110, 9, 1, UNI_Z } /* category=z */,
+ { 2, 2974, 771, 11, 2, UNI_IN__2_DOT_1 } /* presentin=v21 */,
+ { 1, 464, 5907, 2, 21, UNI_SINHALAARCHAICNUMBERS } /* issinhalaarchaicnumbers */,
+ { 0, 1879, 4962, 4, 14, UNI_INHANIFIROHINGYA } /* blk=hanifirohingya */,
+ { 3, 4500, 602, 5, 3, -UNI_XPOSIXUPPER } /* upper=no */,
+ { 1, 2726, 252, 3, 2, UNI_CN } /* gc=cn */,
+ { 3, 4355, 6030, 16, 9, UNI_GEOR } /* scriptextensions=georgian */,
+ { 3, 1879, 4857, 4, 5, UNI_INTAMIL } /* blk=tamil */,
+ { 1, 3839, 0, 16, 0, UNI_TANGUTCOMPONENTS } /* tangutcomponents */,
+ { 3, 3474, 2285, 7, 12, UNI_AEGEANNUMBERS } /* block=aegeannumbers */,
+ { 0, 2981, 1780, 4, 3, UNI_IN__10 } /* in=v100 */,
+ { 0, 296, 1070, 3, 2, UNI_NV__31 } /* nv=31 */,
+ { 9, 2792, 4442, 10, 9, UNI_CYRILLICEXTB } /* iscyrillicextendedb */,
+ { 33, 1796, 457, 7, 4, UNI_PRTI } /* script=prti */,
+ { 3, 4901, 588, 13, 5, UNI_EMOD } /* emojimodifier=true */,
+ { 8, 1803, 0, 4, 0, UNI_MLYM } /* mlym */,
+ { 4, 464, 184, 2, 4, UNI_SAMR } /* issamr */,
+ { 12, 2443, 934, 5, 6, -UNI_CASED } /* cased=false */,
+ { 6, 4355, 1451, 17, 10, UNI_DIAK } /* scriptextensions=divesakuru */,
+ { 1, 7208, 3651, 9, 14, UNI_MN } /* category=nonspacingmark */,
+ { 4, 7208, 2774, 12, 8, UNI_SO } /* category=othersymbol */,
+ { 1, 3474, 5214, 6, 9, UNI_HALFMARKS } /* block=halfmarks */,
+ { 0, 1220, 0, 4, 0, UNI_MAKA } /* maka */,
+ { 1, 1796, 618, 7, 4, UNI_ELYM } /* script=elym */,
+ { 3, 464, 847, 2, 7, UNI_LANA } /* istaitham */,
+ { 0, 3474, 1335, 6, 9, UNI_INOLDUYGHUR } /* block=olduyghur */,
+ { 2, 2474, 0, 9, 0, UNI_MYMR } /* ismyanmar */,
+ { 0, 3823, 934, 16, 6, -UNI_STERM } /* sentenceterminal=false */,
+ { 4, 4355, 1198, 17, 4, UNI_GRAN } /* scriptextensions=gran */,
+ { 4, 3223, 0, 13, 0, UNI_XPOSIXDIGIT } /* decimalnumber */,
+ { 12, 1796, 1561, 7, 10, UNI_PHNX } /* script=phoenician */,
+ { 4, 37, 4641, 1, 8, UNI_SYRIACSUP } /* syriacsup */,
+ { 4, 1785, 1791, 6, 5, UNI_HMNG } /* pahawhhmong */,
+ { 4, 34, 1370, 1, 7, UNI_INTHAANA } /* inthaana */,
+ { 2, 1102, 686, 4, 5, UNI_TAKR } /* scx=takri */,
+ { 0, 4355, 2771, 17, 5, UNI_KHMR } /* scriptextensions=khmer */,
+ { 2, 2974, 1304, 12, 2, UNI_IN__12 } /* presentin=v120 */,
+ { 0, 2310, 355, 12, 3, UNI_CI } /* caseignorable=y */,
+ { 2, 1796, 3933, 7, 4, UNI_SC__MODI } /* script=modi */,
+ { 5, 7527, 1465, 3, 5, UNI_LB__SP } /* lb=space */,
+ { 1, 1796, 184, 7, 4, UNI_SAMR } /* script=samr */,
+ { 0, 2443, 278, 5, 1, UNI_cased_values_index } /* cased= */,
+ { 26, 3974, 934, 17, 6, -UNI_IDSB } /* idsbinaryoperator=false */,
+ { 1, 1539, 8150, 3, 32, UNI_DIACRITICALSEXT } /* iscombiningdiacriticalmarksextended */,
+ { 5, 4355, 413, 17, 4, UNI_GONM } /* scriptextensions=gonm */,
+ { 0, 3748, 766, 14, 2, UNI_NV__1_SLASH_6 } /* numericvalue=1/6 */,
+ { 1, 464, 6629, 2, 15, UNI_MODIFIERLETTERS } /* ismodifierletters */,
+ { 4, 464, 1234, 2, 7, UNI_NB } /* isnoblock */,
+ { 8, 5, 356, 3, 4, UNI_EXT } /* ext=yes */,
+ { 0, 7182, 4464, 3, 4, UNI_CJKEXTC } /* cjkextc */,
+ { 4, 1214, 328, 6, 3, UNI_KANASUP } /* inkanasup */,
+ { 0, 2274, 602, 11, 3, -UNI_XIDC } /* xidcontinue=no */,
+ { 0, 530, 0, 6, 0, UNI_RJNG } /* rejang */,
+ { 1, 343, 298, 3, 2, UNI_CCC__9 } /* ccc=9 */,
+ { 0, 6114, 144, 3, 4, UNI_NEWA } /* sc=newa */,
+ { 1, 844, 5620, 2, 4, -UNI_LOE } /* loe=no */,
+ { 2, 925, 0, 5, 0, UNI_BPT__O } /* bpt=o */,
+ { 1, 464, 1015, 2, 4, UNI_TELU } /* istelu */,
+ { 1, 6011, 623, 12, 5, UNI_ETHIOPICEXT } /* block=ethiopicext */,
+ { 2, 3474, 5949, 6, 21, UNI_YIJING } /* block=yijinghexagramsymbols */,
+ { 0, 6944, 1236, 24, 2, UNI_CCC__BL } /* canonicalcombiningclass=bl */,
+ { 2, 536, 2961, 3, 7, UNI_SB__NU } /* sb=numeric */,
+ { 0, 275, 1860, 4, 7, UNI_GCB__CN } /* gcb=control */,
+ { 0, 7208, 602, 8, 2, UNI_N } /* category=n */,
+ { 8, 7148, 2138, 25, 2, UNI_WB__EB } /* canonicalcombiningclass=133 */,
+ { 0, 464, 4515, 2, 18, UNI_IDST } /* isidstrinaryoperator */,
+ { 0, 2726, 273, 3, 2, UNI_ZP } /* gc=zp */,
+ { 0, 7201, 4137, 16, 15, UNI_PS } /* generalcategory=openpunctuation */,
+ { 2, 6114, 676, 3, 5, UNI_OSGE } /* sc=osage */,
+ { 0, 2890, 2680, 2, 2, UNI_JT__R } /* jt=r */,
+ { 0, 5888, 602, 5, 3, -UNI__PERL_NCHAR } /* nchar=no */,
+ { 18, 5586, 252, 21, 2, UNI_GCB__CN } /* graphemeclusterbreak=cn */,
+ { 2, 2981, 1304, 4, 2, UNI_IN__2 } /* in=v20 */,
+ { 0, 4500, 588, 5, 5, UNI_XPOSIXUPPER } /* upper=true */,
+ { 1, 3474, 5787, 6, 10, UNI_JAMO } /* block=hanguljamo */,
+ { 1, 6944, 1418, 24, 6, UNI_CCC__9 } /* canonicalcombiningclass=virama */,
+ { 0, 265, 356, 5, 4, UNI_CWKCF } /* cwkcf=yes */,
+ { 1, 6944, 391, 25, 2, UNI_CCC__R } /* canonicalcombiningclass=226 */,
+ { 0, 313, 651, 2, 5, UNI_INADLAM } /* inadlam */,
+ { 3, 5502, 934, 21, 6, -UNI_CWCM } /* changeswhencasemapped=false */,
+ { 0, 6114, 5284, 3, 20, UNI_PHLI } /* sc=inscriptionalpahlavi */,
+ { 0, 12, 934, 3, 2, -UNI_PCM } /* pcm=f */,
+ { 11, 8182, 6581, 24, 13, UNI_INPC__BOTTOMANDLEFT } /* indicpositionalcategory=bottomandleft */,
+ { 17, 1796, 1571, 7, 4, UNI_SAUR } /* script=saur */,
+ { 15, 3000, 317, 9, 4, UNI_QMARK } /* quotationmark */,
+ { 20, 6944, 2688, 24, 4, UNI_CCC__L } /* canonicalcombiningclass=left */,
+ { 1, 2802, 8047, 3, 31, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* isegyptianhieroglyphformatcontrols */,
+ { 6, 1102, 951, 4, 8, UNI_DUPL } /* scx=duployan */,
+ { 1, 5748, 8319, 14, 21, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* insupplementalsymbolsandpictographs */,
+ { 1, 3474, 5397, 6, 3, UNI_PUA } /* block=pua */,
+ { 5, 2792, 1491, 10, 4, UNI_CYRILLICEXTA } /* iscyrillicexta */,
+ { 1, 1011, 588, 2, 5, UNI_CI } /* ci=true */,
+ { 0, 1867, 588, 12, 5, UNI_BIDIM } /* bidimirrored=true */,
+ { 3, 5565, 588, 21, 2, UNI_CWU } /* changeswhenuppercased=t */,
+ { 0, 1796, 437, 7, 4, UNI_OGAM } /* script=ogam */,
+ { 0, 6114, 671, 3, 5, UNI_OGAM } /* sc=ogham */,
+ { 1, 1879, 287, 4, 5, UNI_INNUSHU } /* blk=nushu */,
+ { 3, 4081, 0, 11, 0, UNI_P } /* punctuation */,
+ { 4, 302, 588, 2, 5, UNI_RI } /* ri=true */,
+ { 0, 2463, 934, 5, 2, -UNI_JOINC } /* joinc=f */,
+ { 1, 6687, 1193, 22, 3, UNI_JG__MALAYALAMNGA } /* joininggroup=malayalamnga */,
+ { 4, 6944, 394, 24, 2, UNI_CCC__34 } /* canonicalcombiningclass=34 */,
+ { 0, 6239, 0, 23, 0, UNI_BC__LRE } /* bc=lefttorightembedding */,
+ { 4, 2324, 0, 8, 0, UNI_ASSIGNED } /* assigned */,
+ { 8, 313, 1785, 2, 11, UNI_INPAHAWHHMONG } /* inpahawhhmong */,
+ { 0, 1102, 204, 4, 4, UNI_TAVT } /* scx=tavt */,
+ { 22, 736, 7733, 3, 21, UNI_ENCLOSEDIDEOGRAPHICSUP } /* inenclosedideographicsup */,
+ { 4, 1102, 224, 4, 4, UNI_WCHO } /* scx=wcho */,
+ { 0, 5990, 5617, 17, 6, UNI_BPT__N } /* bidipairedbrackettype=n */,
+ { 2, 36, 934, 2, 6, -UNI_VS } /* vs=false */,
+ { 0, 1879, 901, 4, 8, UNI_INARMENIAN } /* blk=armenian */,
+ { 0, 1879, 540, 4, 6, UNI_INTANGSA } /* blk=tangsa */,
+ { 0, 3351, 1300, 14, 2, UNI_NV__200 } /* numericvalue=200 */,
+ { 15, 1233, 4741, 3, 17, UNI_ORNAMENTALDINGBATS } /* inornamentaldingbats */,
+ { 0, 1102, 3285, 4, 4, UNI_HEBR } /* scx=hebr */,
+ { 2, 3474, 5825, 6, 19, UNI_SUNDANESESUP } /* block=sundanesesupplement */,
+ { 3, 313, 4437, 2, 14, UNI_LATINEXTB } /* inlatinextendedb */,
+ { 1, 313, 4827, 2, 15, UNI_BAMUMSUP } /* inbamumsupplement */,
+ { 1, 1102, 1094, 4, 4, UNI_MERC } /* scx=merc */,
+ { 3, 313, 7660, 2, 28, UNI_VSSUP } /* invariationselectorssupplement */,
+ { 4, 343, 3107, 4, 5, UNI_CCC__A } /* ccc=above */,
+ { 0, 464, 1571, 2, 10, UNI_SAUR } /* issaurashtra */,
+ { 1, 7473, 356, 10, 4, UNI_XPOSIXALPHA } /* alphabetic=yes */,
+ { 3, 8276, 7363, 31, 14, UNI_INSC__CONSONANTPRECEDINGREPHA } /* indicsyllabiccategory=consonantprecedingrepha */,
+ { 0, 2740, 0, 6, 0, UNI_COPT } /* coptic */,
+ { 1, 895, 397, 5, 2, UNI_AGE__5_DOT_1 } /* age=v51 */,
+ { 0, 1539, 4007, 3, 13, UNI_SC } /* iscurrencysymbol */,
+ { 2, 4291, 184, 10, 2, UNI_LB__SA } /* linebreak=sa */,
+ { 0, 176, 0, 4, 0, UNI_ROHG } /* rohg */,
+ { 3, 4901, 933, 16, 7, -UNI_EBASE } /* emojimodifierbase=false */,
+ { 3, 6944, 7173, 25, 2, UNI_CCC__AL } /* canonicalcombiningclass=228 */,
+ { 2, 464, 5389, 2, 20, UNI_HMNP } /* isnyiakengpuachuehmong */,
+ { 3, 520, 6199, 4, 5, UNI_NV__700000 } /* nv=700000 */,
+ { 10, 1796, 4962, 7, 14, UNI_SC__ROHG } /* script=hanifirohingya */,
+ { 1, 4776, 355, 16, 2, UNI_patws_values_index } /* patternwhitespace= */,
+ { 3, 1377, 3416, 5, 7, UNI_WB__MB } /* wb=midnumlet */,
+ { 0, 524, 2261, 5, 2, UNI_patsyn_values_index } /* patsyn= */,
+ { 0, 1478, 5223, 4, 16, UNI_INPUNCTUATION } /* ingeneralpunctuation */,
+ { 2, 6944, 1303, 24, 2, UNI_CCC__32 } /* canonicalcombiningclass=32 */,
+ { 1, 464, 6594, 2, 4, UNI_BRAH } /* isbrah */,
+ { 5, 1102, 0, 8, 0, UNI_TALU } /* scx=talu */,
+ { 0, 7431, 771, 27, 2, UNI_CCC__21 } /* canonicalcombiningclass=ccc21 */,
+ { 3, 3474, 1887, 6, 8, UNI_UCASEXTA } /* block=ucasexta */,
+ { 5, 1796, 176, 7, 4, UNI_SC__ROHG } /* script=rohg */,
+ { 1, 7068, 1881, 25, 2, UNI_pcm_values_index } /* prependedconcatenationmark= */,
+ { 0, 464, 997, 2, 6, UNI_KTHI } /* iskaithi */,
+ { 0, 1796, 140, 7, 4, UNI_NARB } /* script=narb */,
+ { 0, 1796, 854, 7, 7, UNI_TAVT } /* script=taiviet */,
+ { 3, 464, 983, 2, 8, UNI_HIRA } /* ishiragana */,
+ { 3, 7825, 4611, 26, 4, UNI_CJKEXTF } /* cjkunifiedideographsextensionf */,
+ { 1, 3137, 3, 15, 1, UNI_EA__W } /* eastasianwidth=w */,
+ { 0, 2232, 201, 3, 3, UNI_TAML } /* istaml */,
+ { 2, 1879, 1133, 4, 8, UNI_INVITHKUQI } /* blk=vithkuqi */,
+ { 1, 1382, 2891, 7, 3, UNI_XIDS } /* xidstart=t */,
+ { 8, 1796, 1982, 7, 6, UNI_SC__SYRC } /* script=syriac */,
+ { 0, 513, 1300, 4, 2, UNI_NV__300 } /* nv=300 */,
+ { 10, 2890, 16, 3, 1, UNI_JT__D } /* jt=d */,
+ { 1, 1977, 3060, 4, 6, UNI_POSIXDIGIT } /* posixdigit */,
+ { 12, 2474, 6549, 3, 21, UNI_MISCTECHNICAL } /* ismiscellaneoustechnical */,
+ { 2, 7317, 3066, 10, 12, UNI_BC__AL } /* bidiclass=arabicletter */,
+ { 1, 2260, 2649, 3, 3, UNI_IN__6_DOT_1 } /* in=6.1 */,
+ { 9, 8533, 5762, 9, 7, UNI_SUPARROWSB } /* block=suparrowsb */,
+ { 0, 1879, 1508, 4, 8, UNI_INUGARITIC } /* blk=ugaritic */,
+ { 0, 3351, 0, 13, 0, UNI_nv_values_index } /* numericvalue= */,
+ { 4, 4355, 212, 17, 4, UNI_TGLG } /* scriptextensions=tglg */,
+ { 4, 3474, 4882, 6, 19, UNI_INEGYPTIANHIEROGLYPHS } /* block=egyptianhieroglyphs */,
+ { 9, 34, 8077, 1, 19, UNI_IDEOGRAPHICSYMBOLS } /* isideographicsymbols */,
+ { 3, 58, 1550, 2, 11, UNI_XPEO } /* sc=oldpersian */,
+ { 6, 802, 0, 4, 0, UNI_NBAT } /* nbat */,
+ { 11, 6944, 3486, 24, 12, UNI_CCC__0 } /* canonicalcombiningclass=notreordered */,
+ { 2, 1796, 997, 7, 6, UNI_SC__KTHI } /* script=kaithi */,
+ { 2, 313, 637, 2, 7, UNI_INHANUNOO } /* inhanunoo */,
+ { 0, 2, 0, 3, 0, UNI_CWL } /* cwl */,
+ { 2, 1777, 0, 5, 0, UNI_NV__10 } /* nv=10 */,
+ { 0, 7431, 6968, 27, 2, UNI_CCC__27 } /* canonicalcombiningclass=ccc27 */,
+ { 8, 6114, 1090, 3, 4, UNI_SC__LINB } /* sc=linb */,
+ { 2, 4291, 2904, 10, 11, UNI_LB__BB } /* linebreak=breakbefore */,
+ { 3, 1766, 0, 11, 0, UNI_NFCQC__M } /* nfcqc=maybe */,
+ { 0, 6379, 4696, 13, 5, UNI_JG__ZHAIN } /* joininggroup=zhain */,
+ { 7, 261, 934, 4, 2, -UNI_CWCM } /* cwcm=f */,
+ { 1, 2974, 1070, 11, 2, UNI_IN__3_DOT_1 } /* presentin=v31 */,
+ { 1, 1102, 3309, 4, 4, UNI_MERO } /* scx=mero */,
+ { 0, 313, 1826, 2, 11, UNI_INSYLOTINAGRI } /* insylotinagri */,
+ { 0, 317, 0, 4, 0, UNI_M } /* mark */,
+ { 0, 1796, 35, 7, 4, UNI_AVST } /* script=avst */,
+ { 13, 464, 5949, 2, 21, UNI_YIJING } /* isyijinghexagramsymbols */,
+ { 0, 7317, 6262, 10, 20, UNI_BC__PDF } /* bidiclass=popdirectionalformat */,
+ { 6, 1441, 356, 10, 2, UNI_DEP } /* deprecated=y */,
+ { 6, 7201, 1977, 16, 2, UNI_PO } /* generalcategory=po */,
+ { 0, 4302, 587, 5, 6, UNI_XPOSIXSPACE } /* wspace=true */,
+ { 7, 1236, 4454, 2, 14, UNI_CYRILLICEXTC } /* blk=cyrillicextc */,
+ { 1, 464, 1424, 2, 10, UNI_CHRS } /* ischorasmian */,
+ { 1, 6114, 951, 3, 8, UNI_SC__DUPL } /* sc=duployan */,
+ { 8, 464, 7732, 2, 29, UNI_ENCLOSEDIDEOGRAPHICSUP } /* isenclosedideographicsupplement */,
+ { 10, 2496, 4159, 3, 7, UNI_JG__HEHGOAL } /* jg=hehgoal */,
+ { 0, 6379, 1743, 13, 2, UNI_JG__FE } /* joininggroup=fe */,
+ { 2, 464, 1082, 2, 4, UNI_XPOSIXWORD } /* isword */,
+ { 0, 5748, 6898, 5, 22, UNI_SUPERANDSUB } /* insuperscriptsandsubscripts */,
+ { 0, 6687, 919, 22, 3, UNI_JG__MALAYALAMSSA } /* joininggroup=malayalamssa */,
+ { 4, 5565, 934, 21, 2, -UNI_CWU } /* changeswhenuppercased=f */,
+ { 1, 3474, 7473, 6, 27, UNI_ALPHABETICPF } /* block=alphabeticpresentationforms */,
+ { 0, 313, 1982, 2, 6, UNI_INSYRIAC } /* insyriac */,
+ { 0, 464, 4999, 2, 4, UNI_MANI } /* ismani */,
+ { 0, 3474, 5322, 6, 18, UNI_CHEROKEESUP } /* block=cherokeesupplement */,
+ { 0, 5340, 0, 4, 0, UNI_DEVA } /* deva */,
+ { 0, 6114, 216, 3, 4, UNI_TIBT } /* sc=tibt */,
+ { 2, 7201, 3594, 16, 2, UNI_NL } /* generalcategory=nl */,
+ { 0, 1879, 7660, 4, 18, UNI_INVS } /* blk=variationselectors */,
+ { 8, 3351, 294, 13, 2, UNI_NV__40 } /* numericvalue=40 */,
+ { 4, 7377, 0, 26, 0, UNI_KATAKANAEXT } /* katakanaphoneticextensions */,
+ { 0, 5825, 0, 9, 0, UNI_SUND } /* sundanese */,
+ { 1, 3474, 5907, 6, 7, UNI_INSINHALA } /* block=sinhala */,
+ { 4, 469, 0, 2, 0, UNI_SO } /* so */,
+ { 0, 343, 5464, 4, 17, UNI_WB__EB } /* ccc=attachedbelowleft */,
+ { 7, 7132, 5080, 16, 7, UNI_SUPARROWSA } /* blk=supplementalarrowsa */,
+ { 2, 6114, 794, 3, 4, UNI_SC__KALI } /* sc=kali */,
+ { 8, 4582, 0, 8, 0, UNI_BOPO } /* bopomofo */,
+ { 0, 8276, 7459, 31, 15, UNI_INSC__CONSONANTSUCCEEDINGREPHA } /* indicsyllabiccategory=consonantsucceedingrepha */,
+ { 0, 6039, 2042, 7, 11, UNI_INMENDEKIKAKUI } /* block=mendekikakui */,
+ { 2, 152, 0, 4, 0, UNI_OSGE } /* osge */,
+ { 0, 6025, 5812, 11, 6, UNI_GEORGIANSUP } /* block=georgiansup */,
+ { 0, 736, 6091, 3, 21, UNI_EARLYDYNASTICCUNEIFORM } /* inearlydynasticcuneiform */,
+ { 8, 4322, 0, 14, 0, UNI_NV__3 } /* numericvalue=3 */,
+ { 1, 7823, 4611, 28, 4, UNI_CJKEXTF } /* incjkunifiedideographsextensionf */,
+ { 0, 7148, 299, 25, 1, UNI_CCC__19 } /* canonicalcombiningclass=19 */,
+ { 1, 5586, 1837, 21, 8, UNI_WB__EB } /* graphemeclusterbreak=ebasegaz */,
+ { 2, 1102, 1657, 4, 11, UNI_CPMN } /* scx=cyprominoan */,
+ { 5, 1102, 1508, 4, 4, UNI_UGAR } /* scx=ugar */,
+ { 34, 34, 46, 1, 5, UNI_BUHD } /* isbuhd */,
+ { 0, 1879, 991, 4, 6, UNI_INHATRAN } /* blk=hatran */,
+ { 1, 23, 934, 4, 6, -UNI_POSIXXDIGIT } /* ahex=false */,
+ { 1, 148, 0, 4, 0, UNI_ORYA } /* orya */,
+ { 4, 3474, 656, 6, 5, UNI_INBUHID } /* block=buhid */,
+ { 2, 1102, 433, 4, 4, UNI_NKO } /* scx=nkoo */,
+ { 3, 464, 1383, 2, 3, UNI_IDS } /* isids */,
+ { 0, 536, 0, 3, 0, UNI_sb_values_index } /* sb= */,
+ { 2, 4355, 691, 17, 5, UNI_BATK } /* scriptextensions=batak */,
+ { 1, 409, 0, 2, 0, UNI_DI } /* di */,
+ { 1, 1796, 112, 7, 4, UNI_KITS } /* script=kits */,
+ { 21, 6134, 0, 4, 0, UNI_GLAG } /* glag */,
+ { 2, 4355, 2220, 17, 4, UNI_HUNG } /* scriptextensions=hung */,
+ { 0, 844, 355, 2, 5, UNI_LOE } /* loe=yes */,
+ { 1, 313, 686, 2, 5, UNI_INTAKRI } /* intakri */,
+ { 0, 296, 3792, 3, 2, UNI_NV__70 } /* nv=70 */,
+ { 12, 6114, 1792, 3, 4, UNI_SC__MONG } /* sc=mong */,
+ { 8, 3367, 392, 14, 1, UNI_NV__46 } /* numericvalue=46 */,
+ { 2, 4122, 588, 5, 5, UNI_XPOSIXLOWER } /* lower=true */,
+ { 2, 1975, 252, 7, 5, UNI_POSIXCNTRL } /* isposixcntrl */,
+ { 0, 2392, 2382, 3, 10, UNI_MISCSYMBOLS } /* inmiscsymbols */,
+ { 0, 2260, 563, 3, 3, UNI_IN__7 } /* in=7.0 */,
+ { 0, 7208, 602, 8, 3, UNI_NO } /* category=no */,
+ { 2, 464, 144, 2, 4, UNI_NEWA } /* isnewa */,
+ { 50, 3367, 2165, 14, 8, UNI_NV__3_SLASH_64 } /* numericvalue=4.688e-02 */,
+ { 4, 3137, 2498, 14, 2, UNI_EA__A } /* eastasianwidth=a */,
+ { 7, 1879, 3839, 4, 16, UNI_TANGUTCOMPONENTS } /* blk=tangutcomponents */,
+ { 3, 1102, 975, 4, 8, UNI_GURU } /* scx=gurmukhi */,
+ { 9, 6799, 588, 24, 2, UNI_COMPEX } /* fullcompositionexclusion=t */,
+ { 11, 4355, 402, 18, 3, UNI_MIAO } /* scriptextensions=miao */,
+ { 3, 3474, 618, 6, 7, UNI_INELYMAIC } /* block=elymaic */,
+ { 6, 6379, 2506, 13, 3, UNI_JG__FEH } /* joininggroup=feh */,
+ { 4, 4355, 1495, 17, 8, UNI_JAVA } /* scriptextensions=javanese */,
+ { 1, 1796, 676, 7, 5, UNI_OSGE } /* script=osage */,
+ { 1, 4355, 4827, 17, 5, UNI_BAMU } /* scriptextensions=bamum */,
+ { 1, 1975, 3060, 6, 6, UNI_POSIXDIGIT } /* isposixdigit */,
+ { 2, 34, 6351, 1, 8, UNI_RADICAL } /* isradical */,
+ { 45, 608, 4370, 2, 2, UNI_ids_values_index } /* ids= */,
+ { 1, 6944, 2127, 24, 2, UNI_CCC__13 } /* canonicalcombiningclass=13 */,
+ { 1, 8374, 1385, 33, 5, UNI__PERL_PROBLEMATIC_LOCALE_FOLDEDS_START } /* _perl_problematic_locale_foldeds_start */,
+ { 3, 3593, 6890, 7, 9, UNI_LATINEXTE } /* inlatinextendede */,
+ { 13, 5718, 588, 4, 5, UNI_EMOD } /* emod=true */,
+ { 0, 4355, 4551, 17, 7, UNI_LINB } /* scriptextensions=linearb */,
+ { 5, 4996, 4178, 13, 4, UNI_JG__MANICHAEANKAPH } /* jg=manichaeankaph */,
+ { 0, 2443, 934, 5, 2, -UNI_CASED } /* cased=f */,
+ { 4, 3474, 825, 6, 7, UNI_SHAW } /* block=shavian */,
+ { 18, 464, 790, 2, 4, UNI_HMNP } /* ishmnp */,
+ { 2, 110, 12, 1, 1, UNI_ZP } /* zp */,
+ { 13, 2353, 5643, 3, 18, UNI_COUNTINGROD } /* incountingrodnumerals */,
+ { 0, 3474, 0, 6, 0, UNI_blk_values_index } /* block= */,
+ { 1, 6379, 3249, 13, 12, UNI_JG__FINALSEMKATH } /* joininggroup=finalsemkath */,
+ { 0, 2961, 3223, 12, 7, UNI_XPOSIXDIGIT } /* numerictype=decimal */,
+ { 1, 4500, 356, 5, 4, UNI_XPOSIXUPPER } /* upper=yes */,
+ { 5, 337, 0, 6, 0, UNI_CARI } /* carian */,
+ { 4, 7823, 1491, 5, 4, UNI_CJKEXTA } /* incjkexta */,
+ { 1, 4355, 1424, 17, 10, UNI_CHRS } /* scriptextensions=chorasmian */,
+ { 0, 3474, 5322, 6, 11, UNI_CHEROKEESUP } /* block=cherokeesup */,
+ { 2, 6039, 7556, 7, 19, UNI_MISCSYMBOLS } /* block=miscellaneoussymbols */,
+ { 4, 296, 1299, 3, 4, UNI_NV__6000 } /* nv=6000 */,
+ { 2, 6379, 4159, 13, 7, UNI_JG__HEHGOAL } /* joininggroup=hehgoal */,
+ { 0, 2496, 4696, 3, 5, UNI_JG__ZHAIN } /* jg=zhain */,
+ { 9, 2678, 3651, 3, 14, UNI_BC__NSM } /* bc=nonspacingmark */,
+ { 1, 6114, 742, 3, 7, UNI_SC__MAND } /* sc=mandaic */,
+ { 1, 3748, 891, 15, 2, UNI_NV__1_SLASH_10 } /* numericvalue=1/10 */,
+ { 0, 464, 1461, 3, 9, UNI_XPOSIXBLANK } /* ishorizspace */,
+ { 0, 6799, 602, 24, 2, -UNI_COMPEX } /* fullcompositionexclusion=n */,
+ { 39, 7317, 176, 11, 2, UNI_BC__LRO } /* bidiclass=lro */,
+ { 0, 2474, 0, 3, 0, UNI_M } /* ism */,
+ { 2, 4355, 372, 17, 4, UNI_GOTH } /* scriptextensions=goth */,
+ { 1, 3974, 0, 17, 0, UNI_IDSB } /* idsbinaryoperator */,
+ { 0, 4122, 602, 5, 2, -UNI_XPOSIXLOWER } /* lower=n */,
+ { 3, 4901, 355, 16, 2, UNI_ebase_values_index } /* emojimodifierbase= */,
+ { 0, 464, 449, 2, 4, UNI_PHLI } /* isphli */,
+ { 1, 5186, 345, 19, 2, UNI_extpict_values_index } /* extendedpictographic= */,
+ { 0, 3164, 588, 14, 5, UNI_GREXT } /* graphemeextend=true */,
+ { 14, 1102, 1202, 4, 4, UNI_THAI } /* scx=thai */,
+ { 0, 2974, 299, 11, 2, UNI_IN__9 } /* presentin=v90 */,
+ { 4, 6944, 396, 24, 2, UNI_CCC__15 } /* canonicalcombiningclass=15 */,
+ { 0, 2726, 4077, 3, 15, UNI_PD } /* gc=dashpunctuation */,
+ { 9, 4450, 8150, 7, 24, UNI_DIACRITICALS } /* block=combiningdiacriticalmarks */,
+ { 2, 1796, 7377, 7, 8, UNI_SC__KANA } /* script=katakana */,
+ { 0, 4355, 1951, 17, 7, UNI_SOGD } /* scriptextensions=sogdian */,
+ { 0, 5087, 3423, 10, 12, UNI_WB__EB } /* wordbreak=glueafterzwj */,
+ { 2, 4355, 124, 17, 4, UNI_LATN } /* scriptextensions=latn */,
+ { 0, 4355, 5727, 17, 21, UNI_PRTI } /* scriptextensions=inscriptionalparthian */,
+ { 0, 464, 4092, 2, 9, UNI_DIA } /* isdiacritic */,
+ { 1, 3000, 356, 13, 4, UNI_QMARK } /* quotationmark=yes */,
+ { 3, 4355, 168, 17, 4, UNI_COPT } /* scriptextensions=qaac */,
+ { 0, 3794, 2137, 14, 8, UNI_NV__5_SLASH_6 } /* numericvalue=8.333e-01 */,
+ { 6, 3641, 837, 4, 3, UNI_SUPPUAA } /* suppuaa */,
+ { 0, 1216, 1491, 4, 4, UNI_KANAEXTA } /* kanaexta */,
+ { 1, 3474, 2740, 6, 6, UNI_INCOPTIC } /* block=coptic */,
+ { 3, 5607, 6486, 10, 14, UNI_IDENTIFIERSTATUS__ALLOWED } /* identifierstatus=allowed */,
+ { 0, 3058, 601, 7, 2, UNI_hex_values_index } /* hexdigit= */,
+ { 1, 313, 4467, 2, 18, UNI_COPTICEPACTNUMBERS } /* incopticepactnumbers */,
+ { 1, 2712, 278, 5, 1, UNI_emoji_values_index } /* emoji= */,
+ { 3, 7317, 3272, 10, 3, UNI_BC__LRI } /* bidiclass=lri */,
+ { 3, 464, 661, 2, 4, UNI_DOGR } /* isdogr */,
+ { 0, 3450, 5643, 5, 18, UNI_COUNTINGROD } /* blk=countingrodnumerals */,
+ { 0, 4302, 355, 5, 3, UNI_XPOSIXSPACE } /* wspace=y */,
+ { 0, 1796, 496, 7, 6, UNI_SC__KHOJ } /* script=khojki */,
+ { 2, 6114, 4882, 3, 19, UNI_EGYP } /* sc=egyptianhieroglyphs */,
+ { 15, 6629, 0, 14, 0, UNI_LM } /* modifierletter */,
+ { 4, 7018, 1037, 8, 4, UNI_ARABICEXTB } /* inarabicextb */,
+ { 3, 1102, 248, 4, 4, UNI_ZZZZ } /* scx=zzzz */,
+ { 0, 5, 0, 3, 0, UNI_EXT } /* ext */,
+ { 2, 6112, 5711, 5, 16, UNI_INSC__SYLLABLEMODIFIER } /* insc=syllablemodifier */,
+ { 0, 1796, 1657, 7, 11, UNI_SC__CPMN } /* script=cyprominoan */,
+ { 1, 464, 4533, 2, 18, UNI_PI } /* isinitialpunctuation */,
+ { 0, 313, 2771, 2, 12, UNI_KHMERSYMBOLS } /* inkhmersymbols */,
+ { 0, 3474, 4918, 7, 16, UNI_ALCHEMICAL } /* block=alchemicalsymbols */,
+ { 1, 5186, 356, 20, 2, UNI_EXTPICT } /* extendedpictographic=y */,
+ { 16, 1879, 574, 4, 7, UNI_INAVESTAN } /* blk=avestan */,
+ { 1, 464, 5284, 2, 20, UNI_PHLI } /* isinscriptionalpahlavi */,
+ { 2, 1383, 601, 3, 4, -UNI_IDST } /* idst=no */,
+ { 9, 103, 0, 2, 0, UNI_UPPERCASELETTER } /* lu */,
+ { 2, 4122, 588, 5, 2, UNI_XPOSIXLOWER } /* lower=t */,
+ { 0, 7823, 6309, 5, 13, UNI_CJKCOMPAT } /* incjkcompatibility */,
+ { 3, 1382, 356, 8, 4, UNI_XIDS } /* xidstart=yes */,
+ { 2, 2692, 5797, 10, 9, UNI_ARABICEXTA } /* blk=arabicextendeda */,
+ { 8, 6039, 2813, 7, 6, UNI_MAHJONG } /* block=mahjong */,
+ { 9, 464, 2463, 2, 5, UNI_JOINC } /* isjoinc */,
+ { 0, 1271, 0, 9, 0, UNI_SIND } /* khudawadi */,
+ { 2, 2033, 602, 5, 3, -UNI_XPOSIXALPHA } /* alpha=no */,
+ { 0, 2253, 552, 11, 3, UNI_IN__14 } /* presentin=14.0 */,
+ { 1, 5888, 356, 5, 4, UNI__PERL_NCHAR } /* nchar=yes */,
+ { 1, 7208, 3933, 9, 14, UNI_SK } /* category=modifiersymbol */,
+ { 1, 464, 287, 2, 5, UNI_NSHU } /* isnushu */,
+ { 8, 3474, 2986, 6, 14, UNI_INPSALTERPAHLAVI } /* block=psalterpahlavi */,
+ { 18, 7880, 0, 5, 0, UNI_CJK } /* iscjk */,
+ { 2, 4355, 742, 17, 4, UNI_MAND } /* scriptextensions=mand */,
+ { 0, 7828, 602, 16, 3, -UNI_UIDEO } /* unifiedideograph=no */,
+ { 8, 1377, 655, 3, 2, UNI_WB__MB } /* wb=mb */,
+ { 0, 1796, 1255, 7, 4, UNI_SOYO } /* script=soyo */,
+ { 0, 5844, 8319, 5, 21, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* issupsymbolsandpictographs */,
+ { 11, 4355, 469, 17, 4, UNI_SOGO } /* scriptextensions=sogo */,
+ { 1, 3462, 5797, 12, 9, UNI_ETHIOPICEXTA } /* blk=ethiopicextendeda */,
+ { 0, 6114, 991, 3, 4, UNI_HATR } /* sc=hatr */,
+ { 7, 464, 7385, 2, 18, UNI_PHONETICEXT } /* isphoneticextensions */,
+ { 6, 7605, 0, 21, 0, UNI_LB__H2 } /* hangulsyllabletype=lv */,
+ { 5, 8533, 4388, 8, 15, UNI_SUTTONSIGNWRITING } /* block=suttonsignwriting */,
+ { 2, 6025, 6878, 9, 20, UNI_GEOMETRICSHAPESEXT } /* block=geometricshapesextended */,
+ { 1, 600, 1679, 3, 3, UNI_DT__FRA } /* dt=fra */,
+ { 4, 5099, 2275, 6, 6, UNI__PERL_IDCONT } /* _perl_idcont */,
+ { 1, 275, 10, 4, 2, UNI_LB__CR } /* gcb=cr */,
+ { 6, 2473, 3640, 3, 4, UNI_LISUSUP } /* lisusup */,
+ { 0, 232, 0, 4, 0, UNI_XSUX } /* xsux */,
+ { 0, 3823, 356, 16, 4, UNI_STERM } /* sentenceterminal=yes */,
+ { 8, 23, 602, 4, 2, -UNI_POSIXXDIGIT } /* ahex=n */,
+ { 6, 464, 6134, 2, 13, UNI_GLAGOLITICSUP } /* isglagoliticsup */,
+ { 1, 313, 671, 2, 5, UNI_INOGHAM } /* inogham */,
+ { 0, 378, 934, 5, 2, -UNI_GREXT } /* grext=f */,
+ { 12, 1011, 588, 2, 2, UNI_CI } /* ci=t */,
+ { 0, 464, 1248, 2, 4, UNI_SIDD } /* issidd */,
+ { 0, 608, 645, 2, 3, UNI_idst_values_index } /* idst= */,
+ { 1, 7688, 2243, 23, 4, UNI_JG__MANICHAEANAYIN } /* joininggroup=manichaeanayin */,
+ { 0, 1879, 6134, 4, 13, UNI_GLAGOLITICSUP } /* blk=glagoliticsup */,
+ { 1, 3474, 3637, 6, 7, UNI_LISUSUP } /* block=lisusup */,
+ { 3, 464, 5787, 2, 19, UNI_JAMOEXTA } /* ishanguljamoextendeda */,
+ { 1, 1102, 1009, 4, 4, UNI_LYCI } /* scx=lyci */,
+ { 4, 1441, 934, 3, 6, -UNI_DEP } /* dep=false */,
+ { 12, 1516, 4203, 3, 16, UNI_KITS } /* iskhitansmallscript */,
+ { 0, 2926, 1110, 3, 7, UNI_SPECIALS } /* inspecials */,
+ { 0, 6114, 244, 3, 4, UNI_SC__ZYYY } /* sc=zyyy */,
+ { 0, 5888, 934, 5, 6, -UNI__PERL_NCHAR } /* nchar=false */,
+ { 7, 2253, 2322, 10, 10, UNI_IN__NA } /* presentin=unassigned */,
+ { 10, 464, 1927, 2, 12, UNI_GONG } /* isgunjalagondi */,
+ { 0, 4450, 8340, 7, 34, UNI_DIACRITICALSFORSYMBOLS } /* block=combiningdiacriticalmarksforsymbols */,
+ { 0, 7584, 1719, 18, 4, UNI_DT__VERT } /* decompositiontype=vert */,
+ { 0, 1879, 429, 4, 3, UNI_INMRO } /* blk=mro */,
+ { 0, 464, 132, 2, 4, UNI_MTEI } /* ismtei */,
+ { 40, 5147, 4701, 14, 10, UNI_LATINEXTADDITIONAL } /* block=latinextadditional */,
+ { 1, 7201, 256, 16, 2, UNI_CASEDLETTER } /* generalcategory=lc */,
+ { 10, 296, 1155, 3, 2, UNI_NV__35 } /* nv=35 */,
+ { 0, 887, 2056, 5, 2, UNI_IN__1_DOT_1 } /* age=1.1 */,
+ { 1, 6114, 1198, 3, 4, UNI_SC__GRAN } /* sc=gran */,
+ { 0, 1796, 1882, 6, 5, UNI_SC__KANA } /* script=kana */,
+ { 1, 7208, 69, 9, 2, UNI_MN } /* category=mn */,
+ { 8, 3000, 356, 13, 2, UNI_QMARK } /* quotationmark=y */,
+ { 4, 5136, 2603, 5, 12, UNI_MISCTECHNICAL } /* blk=misctechnical */,
+ { 7, 3823, 588, 16, 2, UNI_STERM } /* sentenceterminal=t */,
+ { 0, 270, 934, 3, 2, -UNI_CWT } /* cwt=f */,
+ { 0, 2973, 0, 5, 0, UNI_EPRES } /* epres */,
+ { 1, 6114, 6103, 3, 9, UNI_XSUX } /* sc=cuneiform */,
+ { 1, 4355, 1550, 16, 11, UNI_XPEO } /* scriptextensions=oldpersian */,
+ { 28, 2463, 278, 11, 1, UNI_joinc_values_index } /* joincontrol= */,
+ { 2, 275, 2680, 3, 3, UNI_RI } /* gcb=ri */,
+ { 0, 1011, 602, 2, 2, -UNI_CI } /* ci=n */,
+ { 0, 3351, 7173, 13, 2, UNI_NV__28 } /* numericvalue=28 */,
+ { 1, 313, 1927, 2, 12, UNI_INGUNJALAGONDI } /* ingunjalagondi */,
+ { 2, 925, 601, 2, 6, UNI_BPT__N } /* bpt=none */,
+ { 41, 2275, 934, 3, 2, -UNI_IDC } /* idc=f */,
+ { 0, 3748, 2104, 14, 8, UNI_NV__1_SLASH_6 } /* numericvalue=1.667e-01 */,
+ { 2, 464, 2771, 2, 12, UNI_KHMERSYMBOLS } /* iskhmersymbols */,
+ { 1, 6114, 967, 3, 8, UNI_SC__GUJR } /* sc=gujarati */,
+ { 4, 6114, 776, 3, 7, UNI_OLCK } /* sc=olchiki */,
+ { 3, 4355, 661, 17, 5, UNI_DOGR } /* scriptextensions=dogra */,
+ { 0, 8244, 4341, 32, 4, UNI_CJKEXTA } /* block=cjkunifiedideographsextensiona */,
+ { 6, 7317, 4758, 10, 18, UNI_BC__B } /* bidiclass=paragraphseparator */,
+ { 1, 313, 5214, 2, 9, UNI_HALFMARKS } /* inhalfmarks */,
+ { 3, 1597, 602, 10, 3, -UNI_SD } /* softdotted=no */,
+ { 1, 3351, 2081, 13, 3, UNI_NV__500 } /* numericvalue=500 */,
+ { 7, 313, 3285, 2, 6, UNI_INHEBREW } /* inhebrew */,
+ { 1, 798, 0, 4, 0, UNI_LANA } /* lana */,
+ { 0, 5205, 0, 18, 0, UNI_HALFMARKS } /* combininghalfmarks */,
+ { 0, 7317, 5978, 10, 12, UNI_BC__AN } /* bidiclass=arabicnumber */,
+ { 0, 257, 278, 4, 1, UNI_cwcf_values_index } /* cwcf= */,
+ { 0, 464, 98, 2, 4, UNI_GURU } /* isguru */,
+ { 0, 1377, 57, 4, 1, UNI_WB__MN } /* wb=mn */,
+ { 10, 8533, 5358, 7, 17, UNI_SMALLKANAEXT } /* block=smallkanaextension */,
+ { 0, 4355, 473, 17, 4, UNI_TNSA } /* scriptextensions=tnsa */,
+ { 3, 3474, 1614, 6, 10, UNI_INWARANGCITI } /* block=warangciti */,
+ { 7, 5147, 4441, 10, 10, UNI_LATINEXTB } /* block=latinextendedb */,
+ { 0, 3474, 287, 6, 5, UNI_INNUSHU } /* block=nushu */,
+ { 0, 3351, 584, 12, 3, UNI_NV__22 } /* numericvalue=22 */,
+ { 4, 1440, 278, 2, 1, UNI_sd_values_index } /* sd= */,
+ { 2, 4355, 1009, 17, 6, UNI_LYCI } /* scriptextensions=lycian */,
+ { 0, 5586, 7068, 21, 7, UNI_GCB__PP } /* graphemeclusterbreak=prepend */,
+ { 1, 6570, 6240, 3, 6, UNI_INPC__LEFT } /* inpc=left */,
+ { 6, 1102, 868, 4, 4, UNI_TIRH } /* scx=tirh */,
+ { 8, 6402, 4122, 14, 5, UNI_SB__LO } /* sentencebreak=lower */,
+ { 9, 313, 6416, 2, 23, UNI_SHORTHANDFORMATCONTROLS } /* inshorthandformatcontrols */,
+ { 0, 736, 5769, 3, 18, UNI_ENCLOSEDALPHANUMSUP } /* inenclosedalphanumsup */,
+ { 4, 2625, 356, 13, 4, UNI_PATSYN } /* patternsyntax=yes */,
+ { 1, 6011, 6142, 12, 12, UNI_ETHIOPICSUP } /* block=ethiopicsupplement */,
+ { 0, 426, 5625, 3, 18, UNI_ANCIENTGREEKNUMBERS } /* inancientgreeknumbers */,
+ { 3, 895, 299, 5, 2, UNI_AGE__9 } /* age=v90 */,
+ { 5, 2260, 2056, 4, 2, UNI_IN__1_DOT_1 } /* in=1.1 */,
+ { 16, 48, 1888, 1, 3, UNI_UCAS } /* ucas */,
+ { 3, 3474, 1982, 6, 6, UNI_INSYRIAC } /* block=syriac */,
+ { 18, 5136, 2042, 5, 11, UNI_INMENDEKIKAKUI } /* blk=mendekikakui */,
+ { 52631, 8244, 3929, 32, 4, UNI_CJKEXTG } /* block=cjkunifiedideographsextensiong */,
+ { 25, 1796, 120, 7, 4, UNI_LAO } /* script=laoo */,
+ { 1, 313, 326, 2, 5, UNI_VSSUP } /* invssup */,
+ { 0, 4901, 602, 13, 3, -UNI_EMOD } /* emojimodifier=no */,
+ { 1, 1102, 656, 4, 5, UNI_BUHD } /* scx=buhid */,
+ { 0, 2496, 1736, 3, 3, UNI_JG__KAF } /* jg=kaf */,
+ { 1, 1102, 2041, 4, 12, UNI_MEND } /* scx=mendekikakui */,
+ { 14, 3474, 909, 6, 8, UNI_INBALINESE } /* block=balinese */,
+ { 8, 180, 0, 4, 0, UNI_RUNR } /* runr */,
+ { 1, 738, 934, 2, 2, UNI_EA__F } /* ea=f */,
+ { 0, 7201, 844, 16, 2, UNI_LO } /* generalcategory=lo */,
+ { 0, 1410, 1304, 7, 2, UNI_CCC__20 } /* ccc=ccc20 */,
+ { 0, 1102, 540, 4, 6, UNI_TNSA } /* scx=tangsa */,
+ { 3, 4355, 4107, 17, 4, UNI_HANG } /* scriptextensions=hang */,
+ { 3, 8007, 0, 24, 0, UNI_CJK } /* blk=cjkunifiedideographs */,
+ { 0, 7208, 4485, 9, 15, UNI_TITLE } /* category=titlecaseletter */,
+ { 1, 5147, 3704, 7, 15, UNI_LINEARBIDEOGRAMS } /* block=linearbideograms */,
+ { 0, 6114, 232, 3, 4, UNI_XSUX } /* sc=xsux */,
+ { 101, 1796, 240, 7, 4, UNI_ZANB } /* script=zanb */,
+ { 8, 5147, 660, 18, 2, UNI_LATINEXTD } /* block=latinextendedd */,
+ { 2, 6112, 6856, 14, 11, UNI_INSC__CONSONANTPLACEHOLDER } /* insc=consonantplaceholder */,
+ { 9, 7527, 2014, 3, 2, UNI_LB__H3 } /* lb=h3 */,
+ { 0, 1059, 1769, 4, 3, UNI_nfkdqc_values_index } /* nfkdqc= */,
+ { 2, 1915, 959, 8, 6, UNI_GREXT } /* graphemeextend */,
+ { 0, 378, 588, 5, 2, UNI_GREXT } /* grext=t */,
+ { 32, 2678, 4418, 3, 15, UNI_BC__CS } /* bc=commonseparator */,
+ { 7, 306, 588, 5, 5, UNI__PERL_PATWS } /* patws=true */,
+ { 0, 1796, 220, 7, 4, UNI_TOTO } /* script=toto */,
+ { 0, 4122, 933, 8, 7, -UNI_XPOSIXLOWER } /* lowercase=false */,
+ { 8, 2692, 1491, 10, 4, UNI_ARABICEXTA } /* blk=arabicexta */,
+ { 1, 3474, 372, 6, 6, UNI_INGOTHIC } /* block=gothic */,
+ { 4, 833, 0, 4, 0, UNI_TERM } /* term */,
+ { 0, 513, 0, 4, 0, UNI_NV__3 } /* nv=3 */,
+ { 2, 464, 1227, 2, 7, UNI_MULT } /* ismultani */,
+ { 12, 600, 4208, 3, 5, UNI_DT__SML } /* dt=small */,
+ { 17, 2181, 2060, 8, 4, UNI_NV__7_SLASH_12 } /* nv=5.833e-01 */,
+ { 0, 7740, 345, 10, 2, UNI_ideo_values_index } /* ideographic= */,
+ { 0, 6112, 4050, 5, 12, UNI_INSC__NUMBERJOINER } /* insc=numberjoiner */,
+ { 0, 4355, 3435, 17, 15, UNI_ZANB } /* scriptextensions=zanabazarsquare */,
+ { 0, 2981, 299, 4, 2, UNI_IN__9 } /* in=v90 */,
+ { 18, 6114, 39, 3, 4, UNI_BATK } /* sc=batk */,
+ { 0, 1410, 391, 7, 2, UNI_CCC__26 } /* ccc=ccc26 */,
+ { 0, 1977, 4500, 5, 5, UNI_POSIXUPPER } /* posixupper */,
+ { 0, 2274, 0, 4, 0, UNI_XIDC } /* xidc */,
+ { 0, 502, 0, 4, 0, UNI_LYDI } /* lydi */,
+ { 79, 1879, 4827, 4, 15, UNI_BAMUMSUP } /* blk=bamumsupplement */,
+ { 0, 2483, 3228, 8, 5, UNI_XPOSIXALNUM } /* isxposixalnum */,
+ { 3, 3462, 1037, 12, 4, UNI_ETHIOPICEXTB } /* blk=ethiopicextb */,
+ { 19, 3338, 602, 13, 3, UNI_DT__CAN } /* nfdquickcheck=no */,
+ { 8, 1867, 602, 12, 3, -UNI_BIDIM } /* bidimirrored=no */,
+ { 0, 6114, 1308, 3, 9, UNI_ITAL } /* sc=olditalic */,
+ { 0, 6114, 188, 3, 4, UNI_SGNW } /* sc=sgnw */,
+ { 0, 5147, 1037, 11, 4, UNI_LATINEXTB } /* block=latinextb */,
+ { 0, 3594, 0, 2, 0, UNI_NL } /* nl */,
+ { 0, 555, 2128, 4, 3, UNI_AGE__3_DOT_1 } /* age=3.1 */,
+ { 0, 464, 1915, 2, 5, UNI_XPOSIXGRAPH } /* isgraph */,
+ { 0, 3915, 0, 17, 0, UNI_EPRES } /* emojipresentation */,
+ { 0, 34, 1190, 1, 8, UNI_BENG } /* isbengali */,
+ { 1, 1796, 661, 7, 5, UNI_SC__DOGR } /* script=dogra */,
+ { 0, 5718, 602, 4, 2, -UNI_EMOD } /* emod=n */,
+ { 2, 637, 0, 7, 0, UNI_HANO } /* hanunoo */,
+ { 0, 1796, 1248, 7, 4, UNI_SIDD } /* script=sidd */,
+ { 22, 275, 959, 4, 6, UNI_GCB__EX } /* gcb=extend */,
+ { 0, 1879, 493, 7, 3, UNI_KANBUN } /* blk=kanbun */,
+ { 4, 1539, 64, 3, 3, UNI_CHRS } /* ischrs */,
+ { 0, 1796, 244, 7, 4, UNI_SC__ZYYY } /* script=zyyy */,
+ { 0, 2181, 0, 4, 0, UNI_NV__5 } /* nv=5 */,
+ { 0, 3823, 934, 16, 2, -UNI_STERM } /* sentenceterminal=f */,
+ { 1, 313, 5806, 2, 19, UNI_MONGOLIANSUP } /* inmongoliansupplement */,
+ { 0, 736, 8047, 3, 31, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* inegyptianhieroglyphformatcontrols */,
+ { 1, 6039, 8307, 7, 33, UNI_MISCPICTOGRAPHS } /* block=miscellaneoussymbolsandpictographs */,
+ { 12, 4355, 749, 17, 7, UNI_MARC } /* scriptextensions=marchen */,
+ { 3, 2625, 602, 13, 2, -UNI_PATSYN } /* patternsyntax=n */,
+ { 10, 464, 1003, 2, 4, UNI_LEPC } /* islepc */,
+ { 13, 1879, 618, 4, 7, UNI_INELYMAIC } /* blk=elymaic */,
+ { 0, 2363, 1491, 10, 4, UNI_ETHIOPICEXTA } /* inethiopicexta */,
+ { 1, 4291, 3594, 10, 2, UNI_LB__NL } /* linebreak=nl */,
+ { 0, 5087, 1591, 10, 2, UNI_LB__LF } /* wordbreak=lf */,
+ { 0, 3474, 6439, 6, 13, UNI_ZNAMENNYMUSIC } /* block=znamennymusic */,
+ { 0, 464, 6134, 2, 10, UNI_GLAG } /* isglagolitic */,
+ { 4, 8599, 0, 18, 0, UNI_CANS } /* canadianaboriginal */,
+ { 2, 464, 148, 2, 4, UNI_ORYA } /* isorya */,
+ { 1, 220, 0, 4, 0, UNI_TOTO } /* toto */,
+ { 0, 3669, 3665, 12, 4, UNI_JG__MALAYALAMLLLA } /* jg=malayalamllla */,
+ { 1, 5544, 356, 21, 2, UNI_CWT } /* changeswhentitlecased=y */,
+ { 0, 1102, 661, 4, 4, UNI_DOGR } /* scx=dogr */,
+ { 1, 6114, 106, 3, 4, UNI_HMNG } /* sc=hmng */,
+ { 2, 229, 0, 2, 0, UNI_PE } /* pe */,
+ { 11, 6379, 4962, 13, 16, UNI_JG__HANIFIROHINGYAPA } /* joininggroup=hanifirohingyapa */,
+ { 4, 4500, 602, 5, 2, -UNI_XPOSIXUPPER } /* upper=n */,
+ { 0, 4355, 156, 17, 4, UNI_OUGR } /* scriptextensions=ougr */,
+ { 0, 1102, 94, 4, 4, UNI_GUJR } /* scx=gujr */,
+ { 10, 313, 6103, 2, 9, UNI_INCUNEIFORM } /* incuneiform */,
+ { 1, 2726, 117, 3, 2, UNI_XPOSIXDIGIT } /* gc=nd */,
+ { 3, 6402, 2728, 13, 6, UNI_SB__XX } /* sentencebreak=other */,
+ { 16, 7201, 1582, 16, 6, UNI_L } /* generalcategory=letter */,
+ { 14, 1410, 1302, 8, 2, UNI_CCC__103 } /* ccc=ccc103 */,
+ { 0, 1702, 5797, 8, 9, UNI_ARABICEXTA } /* isarabicextendeda */,
+ { 3, 6402, 0, 14, 0, UNI_sb_values_index } /* sentencebreak= */,
+ { 5, 7201, 115, 16, 2, UNI_SK } /* generalcategory=sk */,
+ { 1, 2474, 5797, 9, 9, UNI_MYANMAREXTA } /* ismyanmarextendeda */,
+ { 4, 2496, 2824, 3, 11, UNI_JG__ROHINGYAYEH } /* jg=rohingyayeh */,
+ { 0, 343, 771, 4, 2, UNI_CCC__21 } /* ccc=21 */,
+ { 20, 4355, 94, 17, 4, UNI_GUJR } /* scriptextensions=gujr */,
+ { 1, 2474, 2603, 3, 12, UNI_MISCTECHNICAL } /* ismisctechnical */,
+ { 0, 2712, 0, 14, 0, UNI_ECOMP } /* emojicomponent */,
+ { 4, 4776, 933, 16, 7, -UNI__PERL_PATWS } /* patternwhitespace=false */,
+ { 0, 4615, 2762, 5, 9, UNI_ALPHABETICPF } /* inalphabeticpf */,
+ { 1, 409, 602, 3, 3, -UNI_DIA } /* dia=no */,
+ { 4, 3164, 278, 14, 1, UNI_grext_values_index } /* graphemeextend= */,
+ { 3, 3474, 1027, 6, 6, UNI_INYEZIDI } /* block=yezidi */,
+ { 2, 1856, 278, 11, 1, UNI_bidic_values_index } /* bidicontrol= */,
+ { 0, 2625, 1104, 12, 3, UNI_PATSYN } /* patternsyntax=t */,
+ { 11, 1796, 78, 7, 4, UNI_SC__CYRL } /* script=cyrl */,
+ { 3, 6114, 31, 3, 4, UNI_ARMI } /* sc=armi */,
+ { 2, 4437, 0, 14, 0, UNI_LATINEXTB } /* latinextendedb */,
+ { 8, 23, 588, 4, 5, UNI_POSIXXDIGIT } /* ahex=true */,
+ { 14, 8276, 2783, 22, 9, UNI_INSC__NONJOINER } /* indicsyllabiccategory=nonjoiner */,
+ { 1, 12, 0, 2, 0, UNI_PC } /* pc */,
+ { 21, 6025, 2332, 7, 12, UNI_GREEKEXT } /* block=greekextended */,
+ { 1, 313, 3839, 2, 16, UNI_TANGUTCOMPONENTS } /* intangutcomponents */,
+ { 0, 3450, 4590, 12, 9, UNI_CYRILLICEXTC } /* blk=cyrillicextendedc */,
+ { 1, 313, 2401, 2, 11, UNI_INNANDINAGARI } /* innandinagari */,
+ { 1, 2496, 2688, 4, 3, UNI_JG__ALEF } /* jg=alef */,
+ { 0, 7201, 4533, 16, 18, UNI_PI } /* generalcategory=initialpunctuation */,
+ { 1, 4783, 933, 9, 7, -UNI_XPOSIXSPACE } /* whitespace=false */,
+ { 0, 7527, 2581, 3, 9, UNI_LB__SG } /* lb=surrogate */,
+ { 0, 464, 1326, 2, 9, UNI_ORKH } /* isoldturkic */,
+ { 1, 536, 595, 3, 2, UNI_SB__SE } /* sb=se */,
+ { 1, 5607, 6996, 15, 11, UNI_IDENTIFIERTYPE__RECOMMENDED } /* identifiertype=recommended */,
+ { 2, 6114, 19, 3, 4, UNI_AGHB } /* sc=aghb */,
+ { 3, 1704, 6142, 4, 12, UNI_ARABICSUP } /* arabicsupplement */,
+ { 3, 1879, 1289, 4, 9, UNI_INNEWTAILUE } /* blk=newtailue */,
+ { 15, 7208, 3514, 9, 13, UNI_ZL } /* category=lineseparator */,
+ { 0, 3351, 772, 13, 2, UNI_NV__17 } /* numericvalue=17 */,
+ { 0, 7740, 602, 11, 3, -UNI_IDEO } /* ideographic=no */,
+ { 1, 7527, 57, 3, 2, UNI_LB__NS } /* lb=ns */,
+ { 0, 7584, 6944, 21, 5, UNI_DT__NONCANON } /* decompositiontype=noncanon */,
+ { 0, 343, 6967, 3, 3, UNI_CCC__27 } /* ccc=27 */,
+ { 21, 1879, 6103, 4, 9, UNI_INCUNEIFORM } /* blk=cuneiform */,
+ { 1, 313, 2217, 2, 12, UNI_INOLDHUNGARIAN } /* inoldhungarian */,
+ { 1, 651, 0, 5, 0, UNI_ADLM } /* adlam */,
+ { 0, 8276, 0, 22, 0, UNI_insc_values_index } /* indicsyllabiccategory= */,
+ { 0, 2926, 4641, 3, 8, UNI_SYRIACSUP } /* insyriacsup */,
+ { 0, 464, 3991, 2, 7, UNI_BRAI } /* isbraille */,
+ { 0, 875, 588, 5, 5, UNI_UIDEO } /* uideo=true */,
+ { 14, 343, 3902, 4, 13, UNI_CCC__IS } /* ccc=iotasubscript */,
+ { 3, 7338, 6252, 20, 10, UNI_BC__RLE } /* bidiclass=righttoleftembedding */,
+ { 0, 5748, 4538, 12, 13, UNI_SUPPUNCTUATION } /* insupplementalpunctuation */,
+ { 0, 7688, 4178, 23, 4, UNI_JG__MANICHAEANKAPH } /* joininggroup=manichaeankaph */,
+ { 1, 265, 588, 5, 2, UNI_CWKCF } /* cwkcf=t */,
+ { 4, 1977, 3060, 5, 6, UNI_POSIXXDIGIT } /* posixxdigit */,
+ { 2, 1395, 4629, 4, 12, UNI_LATIN1 } /* latin1supplement */,
+ { 12, 383, 356, 6, 4, UNI_HYPHEN } /* hyphen=yes */,
+ { 1, 625, 601, 6, 4, -UNI_EXTPICT } /* extpict=no */,
+ { 0, 5523, 356, 21, 4, UNI_CWL } /* changeswhenlowercased=yes */,
+ { 0, 2726, 4081, 3, 11, UNI_P } /* gc=punctuation */,
+ { 1, 628, 0, 2, 0, UNI_PI } /* pi */,
+ { 1, 1441, 588, 3, 2, UNI_DEP } /* dep=t */,
+ { 1, 1216, 5797, 4, 9, UNI_KANAEXTA } /* kanaextendeda */,
+ { 0, 4582, 0, 16, 0, UNI_BOPOMOFOEXT } /* bopomofoextended */,
+ { 1, 6039, 743, 7, 6, UNI_INMANDAIC } /* block=mandaic */,
+ { 0, 4355, 783, 17, 4, UNI_OSMA } /* scriptextensions=osma */,
+ { 1, 7791, 0, 32, 0, UNI_INIDC } /* ideographicdescriptioncharacters */,
+ { 10, 6114, 2041, 3, 4, UNI_MEND } /* sc=mend */,
+ { 14, 7823, 8407, 5, 23, UNI_CJKCOMPATIDEOGRAPHS } /* incjkcompatibilityideographs */,
+ { 0, 3351, 346, 12, 3, UNI_NV__11 } /* numericvalue=11 */,
+ { 18, 6379, 6399, 13, 3, UNI_JG__QAF } /* joininggroup=qaf */,
+ { 5, 1657, 0, 11, 0, UNI_CPMN } /* cyprominoan */,
+ { 1, 1495, 0, 4, 0, UNI_JAVA } /* java */,
+ { 1, 313, 1508, 2, 8, UNI_INUGARITIC } /* inugaritic */,
+ { 0, 3763, 0, 16, 0, UNI_NV__5_SLASH_8 } /* numericvalue=5/8 */,
+ { 4, 313, 6833, 2, 23, UNI_BYZANTINEMUSIC } /* inbyzantinemusicalsymbols */,
+ { 1, 608, 5929, 3, 2, UNI_ideo_values_index } /* ideo= */,
+ { 2, 464, 212, 2, 4, UNI_TGLG } /* istglg */,
+ { 3, 6114, 502, 3, 6, UNI_LYDI } /* sc=lydian */,
+ { 0, 513, 6215, 4, 8, UNI_NV__1_SLASH_320 } /* nv=3.125e-03 */,
+ { 15, 75, 934, 3, 6, -UNI_CWU } /* cwu=false */,
+ { 56, 2205, 2092, 8, 4, UNI_NV__1_SLASH_12 } /* nv=8.333e-02 */,
+ { 0, 868, 0, 7, 0, UNI_TIRH } /* tirhuta */,
+ { 0, 464, 2986, 2, 14, UNI_PHLP } /* ispsalterpahlavi */,
+ { 0, 2981, 292, 4, 2, UNI_IN__3 } /* in=v30 */,
+ { 0, 508, 602, 5, 3, UNI_DT__CAN } /* nfdqc=no */,
+ { 4, 4726, 2617, 14, 8, UNI_NV__3_SLASH_5 } /* numericvalue=6.000e-01 */,
+ { 0, 313, 1657, 2, 11, UNI_INCYPROMINOAN } /* incyprominoan */,
+ { 0, 2792, 6142, 8, 5, UNI_CYRILLICSUP } /* iscyrillicsup */,
+ { 3, 464, 5886, 2, 21, UNI__PERL_NCHAR } /* isnoncharactercodepoint */,
+ { 5, 686, 0, 5, 0, UNI_TAKR } /* takri */,
+ { 49, 306, 356, 5, 4, UNI__PERL_PATWS } /* patws=yes */,
+ { 1, 275, 7068, 4, 7, UNI_GCB__PP } /* gcb=prepend */,
+ { 10, 1102, 5727, 4, 21, UNI_PRTI } /* scx=inscriptionalparthian */,
+ { 0, 1796, 409, 7, 4, UNI_DIAK } /* script=diak */,
+ { 0, 34, 4140, 1, 12, UNI_INPUNCTUATION } /* inpunctuation */,
+ { 4, 464, 103, 2, 2, UNI_UPPERCASELETTER } /* islu */,
+ { 3, 3763, 764, 14, 2, UNI_NV__5_SLASH_2 } /* numericvalue=5/2 */,
+ { 6, 6803, 602, 20, 2, -UNI_CE } /* compositionexclusion=n */,
+ { 2, 1125, 0, 8, 0, UNI_TFNG } /* tifinagh */,
+ { 16, 7823, 0, 22, 0, UNI_CJK } /* incjkunifiedideographs */,
+ { 1, 4122, 0, 5, 0, UNI_XPOSIXLOWER } /* lower */,
+ { 0, 6749, 278, 25, 1, UNI_cwkcf_values_index } /* changeswhennfkccasefolded= */,
+ { 4, 1102, 1009, 4, 6, UNI_LYCI } /* scx=lycian */,
+ { 7, 4291, 383, 10, 2, UNI_LB__HY } /* linebreak=hy */,
+ { 0, 4355, 372, 17, 6, UNI_GOTH } /* scriptextensions=gothic */,
+ { 2, 6402, 6276, 14, 6, UNI_SB__FO } /* sentencebreak=format */,
+ { 0, 464, 2486, 2, 10, UNI_POSIXBLANK } /* isposixblank */,
+ { 9, 6025, 5223, 8, 16, UNI_INPUNCTUATION } /* block=generalpunctuation */,
+ { 0, 6114, 502, 3, 4, UNI_LYDI } /* sc=lydi */,
+ { 1, 5, 601, 2, 3, -UNI_EXT } /* ext=n */,
+ { 1, 7740, 6573, 10, 3, UNI_IDEO } /* ideographic=t */,
+ { 0, 5481, 0, 21, 0, UNI_CWCF } /* changeswhencasefolded */,
+ { 2, 313, 6970, 2, 26, UNI_HALFANDFULLFORMS } /* inhalfwidthandfullwidthforms */,
+ { 6, 1102, 1027, 4, 6, UNI_YEZI } /* scx=yezidi */,
+ { 0, 6749, 356, 25, 2, UNI_CWKCF } /* changeswhennfkccasefolded=y */,
+ { 8, 3090, 957, 10, 5, UNI_GEORGIANEXT } /* blk=georgianext */,
+ { 0, 1395, 1491, 5, 4, UNI_LATINEXTA } /* latinexta */,
+ { 0, 4515, 588, 18, 2, UNI_IDST } /* idstrinaryoperator=t */,
+ { 0, 5544, 278, 21, 1, UNI_cwt_values_index } /* changeswhentitlecased= */,
+ { 0, 464, 2625, 2, 13, UNI_PATSYN } /* ispatternsyntax */,
+ { 0, 7880, 6334, 5, 18, UNI_CJKCOMPATFORMS } /* iscjkcompatibilityforms */,
+ { 1, 6944, 391, 24, 2, UNI_CCC__26 } /* canonicalcombiningclass=26 */,
+ { 1, 464, 136, 2, 4, UNI_MYMR } /* ismymr */,
+ { 1, 2441, 6781, 6, 9, UNI_CI } /* iscaseignorable */,
+ { 1, 3053, 601, 12, 4, -UNI_POSIXXDIGIT } /* asciihexdigit=no */,
+ { 0, 5502, 602, 21, 2, -UNI_CWCM } /* changeswhencasemapped=n */,
+ { 0, 1102, 997, 4, 6, UNI_KTHI } /* scx=kaithi */,
+ { 1, 4450, 4645, 13, 11, UNI_CYRILLICSUP } /* block=cyrillicsupplement */,
+ { 0, 37, 0, 1, 0, UNI_S } /* s */,
+ { 9, 6114, 909, 3, 8, UNI_BALI } /* sc=balinese */,
+ { 10, 1102, 917, 4, 4, UNI_BASS } /* scx=bass */,
+ { 3, 3474, 5797, 12, 9, UNI_ARABICEXTA } /* block=arabicextendeda */,
+ { 0, 4355, 1561, 17, 10, UNI_PHNX } /* scriptextensions=phoenician */,
+ { 9, 257, 602, 4, 2, -UNI_CWCF } /* cwcf=n */,
+ { 0, 34, 66, 1, 5, UNI_CPMN } /* iscpmn */,
+ { 0, 464, 786, 2, 3, UNI_ANY } /* isany */,
+ { 0, 3915, 2261, 16, 2, UNI_epres_values_index } /* emojipresentation= */,
+ { 1, 4450, 7908, 7, 15, UNI_CUNEIFORMNUMBERS } /* block=cuneiformnumbers */,
+ { 0, 5166, 0, 20, 0, UNI_PC } /* connectorpunctuation */,
+ { 3, 3351, 2207, 12, 10, UNI_NV__1_SLASH_12 } /* numericvalue=8.333e-02 */,
+ { 5, 15, 32, 1, 3, UNI_ARMI } /* armi */,
+ { 1, 5886, 0, 21, 0, UNI__PERL_NCHAR } /* noncharactercodepoint */,
+ { 0, 464, 5544, 2, 21, UNI_CWT } /* ischangeswhentitlecased */,
+ { 9, 1102, 176, 4, 4, UNI_ROHG } /* scx=rohg */,
+ { 0, 6114, 1826, 3, 4, UNI_SC__SYLO } /* sc=sylo */,
+ { 6, 372, 0, 4, 0, UNI_GOTH } /* goth */,
+ { 1, 1879, 666, 4, 5, UNI_INLIMBU } /* blk=limbu */,
+ { 2, 7208, 3947, 9, 14, UNI_ZS } /* category=spaceseparator */,
+ { 1, 2712, 588, 5, 5, UNI_EMOJI } /* emoji=true */,
+ { 2, 2253, 392, 10, 3, UNI_IN__6_DOT_3 } /* presentin=6.3 */,
+ { 1, 464, 7377, 2, 26, UNI_KATAKANAEXT } /* iskatakanaphoneticextensions */,
+ { 0, 8007, 4464, 7, 4, UNI_CJKEXTC } /* blk=cjkextc */,
+ { 0, 3474, 4793, 6, 18, UNI_RUMI } /* block=ruminumeralsymbols */,
+ { 14, 1214, 1037, 6, 4, UNI_KANAEXTB } /* inkanaextb */,
+ { 7, 7317, 7115, 10, 17, UNI_BC__ES } /* bidiclass=europeanseparator */,
+ { 3, 6944, 349, 25, 1, UNI_CCC__28 } /* canonicalcombiningclass=28 */,
+ { 2, 464, 4062, 2, 15, UNI_VEDICEXT } /* isvedicextensions */,
+ { 1, 4515, 602, 18, 2, -UNI_IDST } /* idstrinaryoperator=n */,
+ { 7, 2712, 356, 14, 2, UNI_ECOMP } /* emojicomponent=y */,
+ { 1, 464, 4437, 2, 14, UNI_LATINEXTB } /* islatinextendedb */,
+ { 0, 2474, 1037, 9, 4, UNI_MYANMAREXTB } /* ismyanmarextb */,
+ { 2, 7527, 72, 3, 2, UNI_LB__PR } /* lb=pr */,
+ { 16, 916, 587, 4, 6, UNI_EBASE } /* ebase=true */,
+ { 0, 1967, 356, 7, 4, UNI_RADICAL } /* radical=yes */,
+ { 1, 464, 2428, 2, 13, UNI_IPAEXT } /* isipaextensions */,
+ { 3, 1796, 983, 7, 4, UNI_SC__HIRA } /* script=hira */,
+ { 2, 1102, 1495, 4, 8, UNI_JAVA } /* scx=javanese */,
+ { 0, 19, 4737, 2, 3, UNI_AGE__6 } /* age=6 */,
+ { 0, 5502, 588, 21, 2, UNI_CWCM } /* changeswhencasemapped=t */,
+ { 1, 3462, 7175, 5, 26, UNI_ENCLOSEDCJK } /* blk=enclosedcjklettersandmonths */,
+ { 0, 6944, 6491, 22, 3, UNI_CCC__A } /* canonicalcombiningclass=a */,
+ { 8, 296, 800, 3, 3, UNI_NV__NAN } /* nv=nan */,
+ { 1, 6112, 129, 20, 2, UNI_INSC__CONSONANTPREFIXED } /* insc=consonantprefixed */,
+ { 0, 5087, 3416, 12, 4, UNI_WB__MN } /* wordbreak=midnum */,
+ { 9, 343, 2702, 4, 10, UNI_CCC__6 } /* ccc=hanreading */,
+ { 30, 3722, 588, 4, 2, UNI_MATH } /* math=t */,
+ { 0, 7584, 1162, 18, 6, UNI_DT__ENC } /* decompositiontype=circle */,
+ { 0, 4355, 2041, 17, 4, UNI_MEND } /* scriptextensions=mend */,
+ { 0, 464, 6803, 2, 20, UNI_CE } /* iscompositionexclusion */,
+ { 1, 1856, 6573, 4, 3, UNI_BIDIC } /* bidic=t */,
+ { 0, 3779, 1300, 14, 3, UNI_NV__7000 } /* numericvalue=7000 */,
+ { 0, 1102, 3498, 4, 7, UNI_CPRT } /* scx=cypriot */,
+ { 0, 2729, 0, 5, 0, UNI_C } /* other */,
+ { 0, 1867, 588, 5, 5, UNI_BIDIM } /* bidim=true */,
+ { 0, 1441, 588, 10, 2, UNI_DEP } /* deprecated=t */,
+ { 0, 1102, 3285, 4, 6, UNI_HEBR } /* scx=hebrew */,
+ { 2, 3381, 0, 15, 0, UNI_NARB } /* oldnortharabian */,
+ { 0, 3474, 3543, 6, 16, UNI_HIGHPUSURROGATES } /* block=highpusurrogates */,
+ { 7, 8007, 0, 7, 0, UNI_CJK } /* blk=cjk */,
+ { 1, 3779, 0, 15, 0, UNI_NV__70 } /* numericvalue=70 */,
+ { 2, 313, 1003, 2, 6, UNI_INLEPCHA } /* inlepcha */,
+ { 2, 252, 0, 2, 0, UNI_CN } /* cn */,
+ { 2, 1879, 1451, 4, 10, UNI_INDIVESAKURU } /* blk=divesakuru */,
+ { 1, 464, 469, 2, 4, UNI_SOGO } /* issogo */,
+ { 0, 343, 396, 4, 2, UNI_CCC__15 } /* ccc=15 */,
+ { 0, 7132, 1262, 8, 3, UNI_SUPPUAB } /* blk=suppuab */,
+ { 14, 1879, 1614, 4, 10, UNI_INWARANGCITI } /* blk=warangciti */,
+ { 1, 6025, 2332, 7, 7, UNI_GREEKEXT } /* block=greekext */,
+ { 0, 3622, 6771, 12, 4, UNI_LATINEXTD } /* islatinextendedd */,
+ { 2, 4355, 1320, 17, 4, UNI_PERM } /* scriptextensions=perm */,
+ { 1, 7527, 3297, 3, 12, UNI_LB__IS } /* lb=infixnumeric */,
+ { 0, 4107, 0, 6, 0, UNI_HANG } /* hangul */,
+ { 6, 1796, 618, 7, 7, UNI_ELYM } /* script=elymaic */,
+ { 6, 6114, 854, 3, 7, UNI_TAVT } /* sc=taiviet */,
+ { 10, 3748, 763, 14, 3, UNI_NV__11_SLASH_2 } /* numericvalue=11/2 */,
+ { 0, 1075, 1069, 4, 2, UNI_NV__2_SLASH_3 } /* nv=2/3 */,
+ { 15, 1102, 749, 4, 7, UNI_MARC } /* scx=marchen */,
+ { 8, 313, 1887, 2, 4, UNI_UCAS } /* inucas */,
+ { 5, 2483, 0, 13, 0, UNI_XPOSIXBLANK } /* isxposixblank */,
+ { 2, 3474, 749, 6, 7, UNI_INMARCHEN } /* block=marchen */,
+ { 0, 3474, 6629, 6, 15, UNI_MODIFIERLETTERS } /* block=modifierletters */,
+ { 1, 2253, 2053, 11, 3, UNI_IN__11 } /* presentin=11.0 */,
+ { 2, 6114, 4107, 3, 4, UNI_SC__HANG } /* sc=hang */,
+ { 1, 3367, 1303, 14, 5, UNI_NV__432000 } /* numericvalue=432000 */,
+ { 4, 2981, 397, 4, 2, UNI_IN__5_DOT_1 } /* in=v51 */,
+ { 2, 4355, 6103, 17, 9, UNI_XSUX } /* scriptextensions=cuneiform */,
+ { 0, 3474, 6466, 6, 10, UNI_PUA } /* block=privateuse */,
+ { 16, 4355, 232, 17, 4, UNI_XSUX } /* scriptextensions=xsux */,
+ { 0, 6114, 2740, 3, 4, UNI_SC__COPT } /* sc=copt */,
+ { 0, 5186, 602, 20, 3, -UNI_EXTPICT } /* extendedpictographic=no */,
+ { 0, 2496, 7262, 3, 14, UNI_JG__NOJOININGGROUP } /* jg=nojoininggroup */,
+ { 6, 1879, 3285, 4, 6, UNI_INHEBREW } /* blk=hebrew */,
+ { 14, 2392, 3324, 3, 14, UNI_MISCPICTOGRAPHS } /* inmiscpictographs */,
+ { 11, 1102, 4882, 4, 19, UNI_EGYP } /* scx=egyptianhieroglyphs */,
+ { 0, 120, 0, 3, 0, UNI_LAO } /* lao */,
+ { 0, 1382, 356, 4, 4, UNI_XIDS } /* xids=yes */,
+ { 5, 1982, 0, 6, 0, UNI_SYRC } /* syriac */,
+ { 2, 611, 0, 7, 0, UNI_ELBA } /* elbasan */,
+ { 2, 343, 2127, 4, 2, UNI_CCC__13 } /* ccc=13 */,
+ { 4, 7828, 602, 16, 2, -UNI_UIDEO } /* unifiedideograph=n */,
+ { 0, 7527, 3423, 3, 4, UNI_LB__GL } /* lb=glue */,
+ { 0, 7201, 4081, 16, 11, UNI_P } /* generalcategory=punctuation */,
+ { 2, 2454, 994, 3, 3, UNI_GRAN } /* isgran */,
+ { 0, 4355, 1009, 17, 4, UNI_LYCI } /* scriptextensions=lyci */,
+ { 0, 464, 17, 2, 2, UNI_LM } /* islm */,
+ { 7, 1174, 6982, 3, 9, UNI_EA__F } /* ea=fullwidth */,
+ { 3, 2726, 3236, 3, 13, UNI_ME } /* gc=enclosingmark */,
+ { 0, 4355, 184, 17, 4, UNI_SAMR } /* scriptextensions=samr */,
+ { 3, 37, 5358, 1, 17, UNI_SMALLKANAEXT } /* smallkanaextension */,
+ { 2, 6114, 637, 3, 7, UNI_SC__HANO } /* sc=hanunoo */,
+ { 0, 555, 560, 4, 3, UNI_AGE__6 } /* age=6.0 */,
+ { 8, 4433, 2579, 5, 12, UNI_LOWSURROGATES } /* blk=lowsurrogates */,
+ { 0, 1102, 5340, 4, 10, UNI_DEVA } /* scx=devanagari */,
+ { 16, 1102, 372, 4, 6, UNI_GOTH } /* scx=gothic */,
+ { 5, 6749, 0, 25, 0, UNI_CWKCF } /* changeswhennfkccasefolded */,
+ { 0, 2275, 5620, 9, 3, -UNI_IDC } /* idcontinue=n */,
+ { 0, 6379, 705, 20, 4, UNI_JG__AFRICANNOON } /* joininggroup=africannoon */,
+ { 2, 4322, 349, 14, 1, UNI_NV__38 } /* numericvalue=38 */,
+ { 0, 3722, 934, 4, 2, -UNI_MATH } /* math=f */,
+ { 0, 959, 278, 8, 1, UNI_ext_values_index } /* extender= */,
+ { 1, 4433, 1698, 9, 4, UNI_LATINEXTF } /* blk=latinextf */,
+ { 0, 464, 496, 2, 6, UNI_KHOJ } /* iskhojki */,
+ { 1, 3474, 360, 6, 6, UNI_INCHAKMA } /* block=chakma */,
+ { 4, 313, 220, 2, 4, UNI_INTOTO } /* intoto */,
+ { 10, 1248, 0, 7, 0, UNI_SIDD } /* siddham */,
+ { 1, 1011, 934, 2, 6, -UNI_CI } /* ci=false */,
+ { 2, 4996, 4687, 13, 5, UNI_JG__MANICHAEANZAYIN } /* jg=manichaeanzayin */,
+ { 5, 1102, 2041, 4, 4, UNI_MEND } /* scx=mend */,
+ { 3, 12, 356, 3, 4, UNI_PCM } /* pcm=yes */,
+ { 1, 464, 4598, 2, 16, UNI_PE } /* isclosepunctuation */,
+ { 4, 4996, 4990, 13, 6, UNI_JG__MANICHAEANSAMEKH } /* jg=manichaeansamekh */,
+ { 0, 313, 1133, 2, 8, UNI_INVITHKUQI } /* invithkuqi */,
+ { 2, 7584, 6944, 21, 9, UNI_DT__NONCANON } /* decompositiontype=noncanonical */,
+ { 0, 464, 117, 2, 2, UNI_XPOSIXDIGIT } /* isnd */,
+ { 1, 0, 4552, 1, 15, UNI_LINEARBSYLLABARY } /* linearbsyllabary */,
+ { 6, 1241, 0, 4, 0, UNI_PHAG } /* phag */,
+ { 1, 464, 3518, 2, 9, UNI_Z } /* isseparator */,
+ { 0, 4122, 934, 5, 6, -UNI_XPOSIXLOWER } /* lower=false */,
+ { 3, 313, 287, 2, 5, UNI_INNUSHU } /* innushu */,
+ { 8, 4355, 611, 17, 4, UNI_ELBA } /* scriptextensions=elba */,
+ { 1, 464, 12, 2, 2, UNI_PC } /* ispc */,
+ { 0, 313, 5397, 2, 3, UNI_PUA } /* inpua */,
+ { 0, 6011, 7175, 7, 26, UNI_ENCLOSEDCJK } /* block=enclosedcjklettersandmonths */,
+ { 0, 464, 1220, 2, 7, UNI_MAKA } /* ismakasar */,
+ { 12, 212, 0, 4, 0, UNI_TGLG } /* tglg */,
+ { 2, 7527, 3432, 3, 2, UNI_LB__ZW } /* lb=zw */,
+ { 1, 735, 0, 7, 0, UNI_LINA } /* lineara */,
+ { 0, 4338, 602, 17, 3, -UNI_RI } /* regionalindicator=no */,
+ { 47, 4355, 666, 17, 5, UNI_LIMB } /* scriptextensions=limbu */,
+ { 3, 1102, 4827, 4, 5, UNI_BAMU } /* scx=bamum */,
+ { 0, 2353, 1491, 10, 4, UNI_CYRILLICEXTA } /* incyrillicexta */,
+ { 0, 313, 337, 2, 6, UNI_INCARIAN } /* incarian */,
+ { 0, 1102, 810, 4, 4, UNI_SYRC } /* scx=syrc */,
+ { 32, 6799, 2261, 23, 2, UNI_compex_values_index } /* fullcompositionexclusion= */,
+ { 1, 823, 934, 4, 2, -UNI_DASH } /* dash=f */,
+ { 3, 464, 172, 2, 4, UNI_RJNG } /* isrjng */,
+ { 1, 3474, 2229, 6, 8, UNI_PHAISTOS } /* block=phaistos */,
+ { 7, 2253, 890, 9, 5, UNI_IN__10 } /* presentin=10.0 */,
+ { 0, 261, 356, 4, 4, UNI_CWCM } /* cwcm=yes */,
+ { 2, 4355, 5322, 17, 4, UNI_CHER } /* scriptextensions=cher */,
+ { 0, 2974, 3807, 11, 2, UNI_IN__8 } /* presentin=v80 */,
+ { 1, 2712, 0, 5, 0, UNI_EMOJI } /* emoji */,
+ { 1, 1102, 148, 4, 4, UNI_ORYA } /* scx=orya */,
+ { 5, 7605, 2344, 19, 9, UNI_GCB__V } /* hangulsyllabletype=voweljamo */,
+ { 5, 7201, 3061, 16, 5, UNI_XPOSIXDIGIT } /* generalcategory=digit */,
+ { 1, 1075, 6199, 4, 7, UNI_NV__20000000 } /* nv=20000000 */,
+ { 12, 1879, 4857, 4, 15, UNI_TAMILSUP } /* blk=tamilsupplement */,
+ { 28, 7431, 1155, 27, 2, UNI_CCC__35 } /* canonicalcombiningclass=ccc35 */,
+ { 0, 1465, 355, 4, 3, UNI_XPOSIXSPACE } /* space=y */,
+ { 1, 1377, 3151, 2, 3, UNI_WB__LE } /* wb=le */,
+ { 0, 275, 703, 4, 2, UNI_WB__EB } /* gcb=em */,
+ { 0, 2652, 0, 13, 0, UNI_VERTICALFORMS } /* verticalforms */,
+ { 9, 265, 602, 5, 3, -UNI_CWKCF } /* cwkcf=no */,
+ { 1, 6402, 1591, 14, 2, UNI_LB__LF } /* sentencebreak=lf */,
+ { 0, 2496, 2506, 3, 3, UNI_JG__FEH } /* jg=feh */,
+ { 6, 1867, 0, 12, 0, UNI_BIDIM } /* bidimirrored */,
+ { 0, 1879, 818, 4, 7, UNI_SC__SHRD } /* blk=sharada */,
+ { 1, 7317, 119, 10, 2, UNI_BC__AL } /* bidiclass=al */,
+ { 0, 2948, 356, 13, 2, UNI_NFCQC__Y } /* nfcquickcheck=y */,
+ { 0, 1441, 588, 10, 5, UNI_DEP } /* deprecated=true */,
+ { 2, 4291, 3000, 10, 9, UNI_LB__QU } /* linebreak=quotation */,
+ { 0, 306, 602, 5, 2, -UNI__PERL_PATWS } /* patws=n */,
+ { 1, 4355, 1362, 17, 9, UNI_SAMR } /* scriptextensions=samaritan */,
+ { 1, 464, 433, 2, 4, UNI_NKO } /* isnkoo */,
+ { 0, 313, 1145, 3, 3, UNI_INTHAI } /* inthai */,
+ { 12, 7880, 8407, 5, 33, UNI_CJKCOMPATIDEOGRAPHSSUP } /* iscjkcompatibilityideographssupplement */,
+ { 1, 3058, 601, 7, 3, -UNI_XPOSIXXDIGIT } /* hexdigit=n */,
+ { 0, 7527, 464, 3, 2, UNI_LB__IS } /* lb=is */,
+ { 0, 5099, 6709, 6, 19, UNI__PERL_FOLDS_TO_MULTI_CHAR } /* _perl_folds_to_multi_char */,
+ { 0, 4355, 4962, 17, 14, UNI_ROHG } /* scriptextensions=hanifirohingya */,
+ { 6, 313, 4006, 2, 15, UNI_CURRENCYSYMBOLS } /* incurrencysymbols */,
+ { 1, 2274, 587, 10, 3, UNI_XIDC } /* xidcontinue=t */,
+ { 0, 464, 3595, 2, 9, UNI_LATINEXTE } /* islatinexte */,
+ { 1, 464, 671, 2, 5, UNI_OGAM } /* isogham */,
+ { 0, 2692, 8110, 10, 29, UNI_ARABICMATH } /* blk=arabicmathematicalalphabeticsymbols */,
+ { 7, 34, 58, 1, 5, UNI_CHAM } /* ischam */,
+ { 1, 1102, 1792, 4, 4, UNI_MONG } /* scx=mong */,
+ { 0, 464, 1033, 2, 8, UNI_JAMOEXTB } /* isjamoextb */,
+ { 0, 832, 934, 5, 6, -UNI_STERM } /* sterm=false */,
+ { 0, 939, 602, 5, 2, -UNI_ECOMP } /* ecomp=n */,
+ { 1, 5099, 1383, 6, 7, UNI__PERL_IDSTART } /* _perl_idstart */,
+ { 0, 7018, 0, 26, 0, UNI_ARABICPFB } /* inarabicpresentationformsb */,
+ { 0, 464, 6134, 2, 4, UNI_GLAG } /* isglag */,
+ { 1, 2275, 355, 9, 5, UNI_IDC } /* idcontinue=yes */,
+ { 1, 313, 3527, 2, 16, UNI_HALFANDFULLFORMS } /* inhalfandfullforms */,
+ { 4, 4450, 8499, 7, 34, UNI_DIACRITICALSSUP } /* block=combiningdiacriticalmarkssupplement */,
+ { 1, 1796, 31, 7, 4, UNI_ARMI } /* script=armi */,
+ { 1, 2474, 619, 3, 3, UNI_MLYM } /* ismlym */,
+ { 8, 3053, 356, 13, 2, UNI_POSIXXDIGIT } /* asciihexdigit=y */,
+ { 0, 34, 6643, 1, 16, UNI_TRANSPORTANDMAP } /* istransportandmap */,
+ { 0, 7431, 396, 27, 2, UNI_CCC__15 } /* canonicalcombiningclass=ccc15 */,
+ { 1, 4006, 0, 14, 0, UNI_SC } /* currencysymbol */,
+ { 11, 1710, 5358, 3, 11, UNI_SMALLKANAEXT } /* issmallkanaext */,
+ { 1, 4901, 934, 13, 2, -UNI_EMOD } /* emojimodifier=f */,
+ { 1, 6114, 148, 3, 4, UNI_SC__ORYA } /* sc=orya */,
+ { 0, 925, 0, 4, 0, UNI_bpt_values_index } /* bpt= */,
+ { 0, 5865, 934, 21, 2, -UNI_LOE } /* logicalorderexception=f */,
+ { 1, 6011, 1183, 7, 8, UNI_EMOTICONS } /* block=emoticons */,
+ { 2, 951, 0, 4, 0, UNI_DUPL } /* dupl */,
+ { 0, 1796, 686, 7, 4, UNI_SC__TAKR } /* script=takr */,
+ { 1, 464, 611, 2, 7, UNI_ELBA } /* iselbasan */,
+ { 69, 3748, 2096, 14, 8, UNI_NV__1_SLASH_64 } /* numericvalue=1.563e-02 */,
+ { 5, 8007, 8407, 7, 23, UNI_CJKCOMPATIDEOGRAPHS } /* blk=cjkcompatibilityideographs */,
+ { 0, 34, 2228, 1, 13, UNI_PHAISTOS } /* inphaistosdisc */,
+ { 1, 2274, 5620, 10, 3, -UNI_XIDC } /* xidcontinue=n */,
+ { 0, 4092, 602, 9, 2, -UNI_DIA } /* diacritic=n */,
+ { 5, 1102, 55, 4, 4, UNI_CANS } /* scx=cans */,
+ { 0, 464, 242, 2, 2, UNI_NB } /* isnb */,
+ { 2, 6025, 3599, 13, 9, UNI_GEORGIANEXT } /* block=georgianextended */,
+ { 1, 3462, 7851, 5, 29, UNI_ENCLOSEDALPHANUMSUP } /* blk=enclosedalphanumericsupplement */,
+ { 9, 1102, 728, 4, 7, UNI_KALI } /* scx=kayahli */,
+ { 44, 7688, 3688, 23, 3, UNI_JG__MANICHAEANTAW } /* joininggroup=manichaeantaw */,
+ { 1, 328, 4081, 3, 11, UNI_SUPPUNCTUATION } /* suppunctuation */,
+ { 0, 2726, 69, 3, 2, UNI_MN } /* gc=mn */,
+ { 0, 464, 1362, 2, 9, UNI_SAMR } /* issamaritan */,
+ { 0, 1879, 1487, 4, 8, UNI_JAMOEXTA } /* blk=jamoexta */,
+ { 0, 1796, 721, 7, 7, UNI_SC__KNDA } /* script=kannada */,
+ { 34, 343, 2695, 3, 3, UNI_CCC__AR } /* ccc=ar */,
+ { 4, 2253, 7171, 9, 3, UNI_IN__12 } /* presentin=12 */,
+ { 3, 1102, 1353, 4, 9, UNI_PAUC } /* scx=paucinhau */,
+ { 1, 8533, 4081, 9, 11, UNI_SUPPUNCTUATION } /* block=suppunctuation */,
+ { 1, 7473, 934, 10, 2, -UNI_XPOSIXALPHA } /* alphabetic=f */,
+ { 0, 2, 588, 3, 5, UNI_CWL } /* cwl=true */,
+ { 0, 343, 562, 5, 2, UNI_CCC__107 } /* ccc=107 */,
+ { 20, 2, 7908, 1, 15, UNI_CUNEIFORMNUMBERS } /* cuneiformnumbers */,
+ { 8, 2948, 6042, 11, 4, UNI_NFCQC__M } /* nfcquickcheck=m */,
+ { 0, 3474, 5787, 6, 19, UNI_JAMOEXTA } /* block=hanguljamoextendeda */,
+ { 1, 7018, 1696, 9, 2, UNI_ARABICPFB } /* inarabicpfb */,
+ { 0, 464, 5340, 2, 10, UNI_DEVA } /* isdevanagari */,
+ { 1, 6944, 1878, 24, 2, UNI_CCC__DB } /* canonicalcombiningclass=db */,
+ { 0, 2726, 115, 3, 2, UNI_SK } /* gc=sk */,
+ { 0, 1102, 721, 4, 7, UNI_KNDA } /* scx=kannada */,
+ { 0, 4355, 152, 17, 4, UNI_OSGE } /* scriptextensions=osge */,
+ { 0, 4355, 5322, 17, 8, UNI_CHER } /* scriptextensions=cherokee */,
+ { 0, 2474, 8307, 3, 33, UNI_MISCPICTOGRAPHS } /* ismiscellaneoussymbolsandpictographs */,
+ { 9, 313, 59, 2, 4, UNI_INCHAM } /* incham */,
+ { 8, 6114, 3991, 3, 4, UNI_BRAI } /* sc=brai */,
+ { 5, 823, 588, 4, 2, UNI_DASH } /* dash=t */,
+ { 1, 4776, 5620, 16, 3, -UNI__PERL_PATWS } /* patternwhitespace=n */,
+ { 1, 2483, 252, 8, 5, UNI_XPOSIXCNTRL } /* isxposixcntrl */,
+ { 1, 296, 395, 3, 2, UNI_NV__41 } /* nv=41 */,
+ { 0, 7527, 322, 3, 2, UNI_LB__AI } /* lb=ai */,
+ { 1, 43, 0, 4, 0, UNI_BHKS } /* bhks */,
+ { 0, 7688, 4672, 23, 5, UNI_JG__MANICHAEANALEPH } /* joininggroup=manichaeanaleph */,
+ { 0, 313, 5727, 2, 21, UNI_ININSCRIPTIONALPARTHIAN } /* ininscriptionalparthian */,
+ { 0, 7068, 0, 26, 0, UNI_PCM } /* prependedconcatenationmark */,
+ { 10, 464, 102, 2, 4, UNI_HLUW } /* ishluw */,
+ { 1, 2253, 0, 12, 0, UNI_IN__14 } /* presentin=14 */,
+ { 0, 464, 991, 2, 6, UNI_HATR } /* ishatran */,
+ { 0, 7431, 2127, 27, 2, UNI_CCC__13 } /* canonicalcombiningclass=ccc13 */,
+ { 1, 3474, 1271, 6, 9, UNI_INKHUDAWADI } /* block=khudawadi */,
+ { 0, 2454, 1916, 3, 11, UNI_GRBASE } /* isgraphemebase */,
+ { 32, 313, 5389, 2, 20, UNI_INNYIAKENGPUACHUEHMONG } /* innyiakengpuachuehmong */,
+ { 8, 302, 602, 2, 2, -UNI_RI } /* ri=n */,
+ { 5, 4122, 356, 5, 4, UNI_XPOSIXLOWER } /* lower=yes */,
+ { 0, 1597, 602, 10, 2, -UNI_SD } /* softdotted=n */,
+ { 8, 6774, 356, 25, 2, UNI_DI } /* defaultignorablecodepoint=y */,
+ { 65, 6114, 1198, 3, 7, UNI_SC__GRAN } /* sc=grantha */,
+ { 3, 1102, 445, 4, 4, UNI_ORKH } /* scx=orkh */,
+ { 0, 1102, 618, 4, 4, UNI_ELYM } /* scx=elym */,
+ { 0, 3474, 671, 6, 5, UNI_INOGHAM } /* block=ogham */,
+ { 9, 3058, 588, 8, 5, UNI_XPOSIXXDIGIT } /* hexdigit=true */,
+ { 1, 6944, 7359, 24, 4, UNI_CCC__216 } /* canonicalcombiningclass=atar */,
+ { 4, 1102, 2771, 4, 5, UNI_KHMR } /* scx=khmer */,
+ { 1, 313, 975, 2, 8, UNI_INGURMUKHI } /* ingurmukhi */,
+ { 0, 2181, 2173, 4, 8, UNI_NV__1_SLASH_20 } /* nv=5.000e-02 */,
+ { 4, 3669, 723, 12, 3, UNI_JG__MALAYALAMNNA } /* jg=malayalamnna */,
+ { 0, 2463, 0, 5, 0, UNI_JOINC } /* joinc */,
+ { 0, 7880, 2335, 4, 5, UNI_CJKEXTE } /* iscjkexte */,
+ { 2, 3351, 2138, 13, 2, UNI_NV__33 } /* numericvalue=33 */,
+ { 0, 1856, 934, 11, 2, -UNI_BIDIC } /* bidicontrol=f */,
+ { 1, 1796, 4202, 7, 17, UNI_KITS } /* script=khitansmallscript */,
+ { 2, 464, 378, 2, 5, UNI_GREXT } /* isgrext */,
+ { 4, 28, 1462, 2, 8, UNI_XPOSIXBLANK } /* horizspace */,
+ { 6, 6114, 6134, 3, 4, UNI_SC__GLAG } /* sc=glag */,
+ { 2, 2229, 1539, 9, 3, UNI_PHAISTOS } /* phaistosdisc */,
+ { 2, 2726, 366, 3, 2, UNI_SM } /* gc=sm */,
+ { 1, 3734, 356, 14, 4, UNI_NFKCQC__Y } /* nfkcquickcheck=yes */,
+ { 17, 3474, 2297, 6, 13, UNI_BLOCKELEMENTS } /* block=blockelements */,
+ { 0, 1879, 3435, 4, 15, UNI_INZANABAZARSQUARE } /* blk=zanabazarsquare */,
+ { 8, 3137, 6970, 15, 9, UNI_EA__H } /* eastasianwidth=halfwidth */,
+ { 3, 7823, 8089, 5, 21, UNI_CJKSYMBOLS } /* incjksymbolsandpunctuation */,
+ { 0, 1796, 1807, 7, 11, UNI_SORA } /* script=sorasompeng */,
+ { 0, 464, 3991, 2, 15, UNI_BRAI } /* isbraillepatterns */,
+ { 8, 1879, 5397, 4, 3, UNI_PUA } /* blk=pua */,
+ { 4, 4355, 840, 17, 7, UNI_TGLG } /* scriptextensions=tagalog */,
+ { 2, 4291, 281, 10, 2, UNI_LB__H2 } /* linebreak=h2 */,
+ { 13, 7317, 1687, 21, 7, UNI_BC__LRI } /* bidiclass=lefttorightisolate */,
+ { 1, 959, 0, 8, 0, UNI_EXT } /* extender */,
+ { 3, 7431, 299, 28, 1, UNI_CCC__19 } /* canonicalcombiningclass=ccc19 */,
+ { 2, 2496, 1265, 3, 6, UNI_JG__LAMADH } /* jg=lamadh */,
+ { 2, 313, 4062, 2, 8, UNI_VEDICEXT } /* invedicext */,
+ { 9, 2812, 0, 12, 0, UNI_MAHJONG } /* mahjongtiles */,
+ { 0, 7732, 7772, 8, 13, UNI_ENCLOSEDALPHANUM } /* enclosedalphanumerics */,
+ { 1, 5586, 1860, 21, 7, UNI_GCB__CN } /* graphemeclusterbreak=control */,
+ { 0, 1879, 1424, 4, 10, UNI_INCHORASMIAN } /* blk=chorasmian */,
+ { 6, 3474, 144, 6, 4, UNI_INNEWA } /* block=newa */,
+ { 0, 1102, 611, 4, 4, UNI_ELBA } /* scx=elba */,
+ { 4, 696, 5174, 6, 12, UNI_PO } /* isotherpunctuation */,
+ { 18, 2463, 588, 11, 2, UNI_JOINC } /* joincontrol=t */,
+ { 2, 3164, 934, 14, 6, -UNI_GREXT } /* graphemeextend=false */,
+ { 9, 4291, 1990, 10, 2, UNI_LB__WJ } /* linebreak=wj */,
+ { 1, 2974, 399, 11, 2, UNI_IN__6_DOT_1 } /* presentin=v61 */,
+ { 4, 1796, 1003, 7, 4, UNI_LEPC } /* script=lepc */,
+ { 0, 464, 983, 2, 4, UNI_HIRA } /* ishira */,
+ { 1, 7132, 1818, 7, 8, UNI_SUPERANDSUB } /* blk=superandsub */,
+ { 0, 6114, 421, 3, 4, UNI_KHMR } /* sc=khmr */,
+ { 18, 464, 6774, 2, 25, UNI_DI } /* isdefaultignorablecodepoint */,
+ { 5, 1377, 3594, 3, 2, UNI_WB__NL } /* wb=nl */,
+ { 5, 6025, 5812, 11, 13, UNI_GEORGIANSUP } /* block=georgiansupplement */,
+ { 1, 306, 602, 5, 3, -UNI__PERL_PATWS } /* patws=no */,
+ { 0, 4322, 299, 14, 1, UNI_NV__39 } /* numericvalue=39 */,
+ { 1, 2726, 3152, 3, 12, UNI_NL } /* gc=letternumber */,
+ { 4, 7473, 6573, 9, 3, UNI_XPOSIXALPHA } /* alphabetic=t */,
+ { 0, 2678, 0, 14, 0, UNI_BC__R } /* bc=righttoleft */,
+ { 2, 2365, 0, 4, 0, UNI_ETHI } /* ethi */,
+ { 0, 1796, 1495, 7, 8, UNI_SC__JAVA } /* script=javanese */,
+ { 15, 4500, 587, 8, 6, UNI_XPOSIXUPPER } /* uppercase=true */,
+ { 4, 5087, 1592, 10, 2, UNI_WB__FO } /* wordbreak=fo */,
+ { 1, 5409, 588, 19, 2, UNI_TERM } /* terminalpunctuation=t */,
+ { 2, 5607, 5889, 18, 9, UNI_IDENTIFIERTYPE__NOTCHARACTER } /* identifiertype=notcharacter */,
+ { 2, 3474, 6644, 6, 15, UNI_TRANSPORTANDMAP } /* block=transportandmap */,
+ { 0, 328, 6052, 3, 13, UNI_SUPMATHOPERATORS } /* supmathoperators */,
+ { 0, 1879, 3885, 4, 17, UNI_INCAUCASIANALBANIAN } /* blk=caucasianalbanian */,
+ { 0, 2712, 934, 5, 6, -UNI_EMOJI } /* emoji=false */,
+ { 3, 1796, 1311, 7, 4, UNI_ITAL } /* script=ital */,
+ { 5, 6114, 120, 3, 4, UNI_LAO } /* sc=laoo */,
+ { 0, 4092, 0, 12, 0, UNI_DIACRITICALS } /* diacriticals */,
+ { 0, 313, 322, 3, 4, UNI_INTAILE } /* intaile */,
+ { 0, 2253, 515, 9, 2, UNI_IN__3 } /* presentin=3 */,
+ { 0, 1796, 1344, 7, 4, UNI_PALM } /* script=palm */,
+ { 0, 2392, 2030, 3, 11, UNI_MATHALPHANUM } /* inmathalphanum */,
+ { 49, 1440, 356, 2, 4, UNI_SD } /* sd=yes */,
+ { 0, 1879, 1948, 4, 10, UNI_INOLDSOGDIAN } /* blk=oldsogdian */,
+ { 16, 4485, 0, 15, 0, UNI_TITLE } /* titlecaseletter */,
+ { 0, 3622, 4701, 15, 10, UNI_LATINEXTADDITIONAL } /* islatinextendedadditional */,
+ { 0, 940, 602, 6, 2, -UNI_COMPEX } /* compex=n */,
+ { 43, 4355, 1015, 17, 6, UNI_TELU } /* scriptextensions=telugu */,
+ { 0, 6774, 0, 25, 0, UNI_DI } /* defaultignorablecodepoint */,
+ { 0, 6114, 372, 3, 6, UNI_GOTH } /* sc=gothic */,
+ { 11, 4872, 4442, 10, 9, UNI_KANAEXTB } /* block=kanaextendedb */,
+ { 2, 1796, 5727, 7, 21, UNI_PRTI } /* script=inscriptionalparthian */,
+ { 6, 2726, 4006, 3, 14, UNI_SC } /* gc=currencysymbol */,
+ { 0, 7182, 6309, 3, 13, UNI_CJKCOMPAT } /* cjkcompatibility */,
+ { 4, 4450, 1895, 7, 11, UNI_CHESSSYMBOLS } /* block=chesssymbols */,
+ { 2, 464, 1021, 2, 6, UNI_WCHO } /* iswancho */,
+ { 17, 6114, 1326, 3, 9, UNI_ORKH } /* sc=oldturkic */,
+ { 0, 5136, 7556, 5, 19, UNI_MISCSYMBOLS } /* blk=miscellaneoussymbols */,
+ { 21, 5147, 4275, 7, 16, UNI_LETTERLIKESYMBOLS } /* block=letterlikesymbols */,
+ { 0, 5409, 602, 19, 2, -UNI_TERM } /* terminalpunctuation=n */,
+ { 21, 2392, 5797, 9, 9, UNI_MYANMAREXTA } /* inmyanmarextendeda */,
+ { 0, 3722, 356, 4, 4, UNI_MATH } /* math=yes */,
+ { 1, 5186, 356, 20, 4, UNI_EXTPICT } /* extendedpictographic=yes */,
+ { 0, 313, 36, 2, 2, UNI_INVS } /* invs */,
+ { 5, 5523, 0, 21, 0, UNI_CWL } /* changeswhenlowercased */,
+ { 0, 302, 278, 2, 1, UNI_ri_values_index } /* ri= */,
+ { 8, 1102, 1951, 4, 7, UNI_SOGD } /* scx=sogdian */,
+ { 2, 7660, 934, 17, 2, -UNI_VS } /* variationselector=f */,
+ { 0, 1879, 1362, 4, 9, UNI_INSAMARITAN } /* blk=samaritan */,
+ { 1, 296, 391, 3, 2, UNI_NV__26 } /* nv=26 */,
+ { 1, 1495, 0, 8, 0, UNI_JAVA } /* javanese */,
+ { 6, 1410, 396, 7, 2, UNI_CCC__15 } /* ccc=ccc15 */,
+ { 0, 464, 540, 2, 4, UNI_TANG } /* istang */,
+ { 1, 2463, 588, 5, 5, UNI_JOINC } /* joinc=true */,
+ { 2, 1102, 4962, 4, 4, UNI_HAN } /* scx=hani */,
+ { 0, 2638, 0, 11, 0, UNI_IN__5 } /* presentin=5 */,
+ { 5, 608, 5929, 3, 3, UNI_IDEO } /* ideo=t */,
+ { 0, 513, 2080, 4, 8, UNI_NV__7_SLASH_2 } /* nv=3.500e+00 */,
+ { 0, 5136, 743, 5, 6, UNI_INMANDAIC } /* blk=mandaic */,
+ { 0, 2974, 395, 11, 2, UNI_IN__4_DOT_1 } /* presentin=v41 */,
+ { 7, 464, 3637, 2, 4, UNI_LISU } /* islisu */,
+ { 64, 6112, 5254, 5, 15, UNI_INSC__MODIFYINGLETTER } /* insc=modifyingletter */,
+ { 0, 8007, 6509, 7, 16, UNI_CJKCOMPATIDEOGRAPHS } /* blk=cjkcompatideographs */,
+ { 0, 6114, 1344, 3, 4, UNI_PALM } /* sc=palm */,
+ { 1, 1796, 1353, 7, 9, UNI_PAUC } /* script=paucinhau */,
+ { 0, 2712, 602, 5, 2, -UNI_EMOJI } /* emoji=n */,
+ { 2, 1796, 287, 7, 5, UNI_NSHU } /* script=nushu */,
+ { 4, 1102, 735, 4, 7, UNI_LINA } /* scx=lineara */,
+ { 0, 7317, 3465, 9, 3, UNI_BC__ET } /* bidiclass=et */,
+ { 12, 2496, 3688, 3, 3, UNI_JG__TAW } /* jg=taw */,
+ { 0, 895, 1299, 5, 2, UNI_AGE__6 } /* age=v60 */,
+ { 12, 624, 602, 2, 3, -UNI_CE } /* ce=no */,
+ { 0, 6774, 588, 25, 5, UNI_DI } /* defaultignorablecodepoint=true */,
+ { 0, 5888, 934, 5, 2, -UNI__PERL_NCHAR } /* nchar=f */,
+ { 0, 1879, 6052, 4, 13, UNI_MATHOPERATORS } /* blk=mathoperators */,
+ { 0, 7201, 2443, 16, 11, UNI_CASEDLETTER } /* generalcategory=casedletter */,
+ { 0, 4355, 1094, 17, 4, UNI_MERC } /* scriptextensions=merc */,
+ { 5, 1879, 1202, 4, 4, UNI_INTHAI } /* blk=thai */,
+ { 0, 8276, 1418, 22, 6, UNI_INSC__VIRAMA } /* indicsyllabiccategory=virama */,
+ { 6, 1102, 2401, 4, 4, UNI_NAND } /* scx=nand */,
+ { 0, 2974, 294, 12, 2, UNI_IN__14 } /* presentin=v140 */,
+ { 1, 6114, 433, 3, 3, UNI_SC__NKO } /* sc=nko */,
+ { 0, 555, 569, 4, 3, UNI_AGE__9 } /* age=9.0 */,
+ { 0, 296, 7173, 3, 2, UNI_NV__28 } /* nv=28 */,
+ { 1, 1410, 2127, 7, 2, UNI_CCC__13 } /* ccc=ccc13 */,
+ { 0, 818, 0, 7, 0, UNI_SHRD } /* sharada */,
+ { 16, 7473, 345, 9, 2, UNI_alpha_values_index } /* alphabetic= */,
+ { 3, 7201, 4077, 16, 15, UNI_PD } /* generalcategory=dashpunctuation */,
+ { 1, 313, 7377, 2, 26, UNI_KATAKANAEXT } /* inkatakanaphoneticextensions */,
+ { 30, 464, 4740, 2, 18, UNI_ORNAMENTALDINGBATS } /* isornamentaldingbats */,
+ { 0, 343, 2138, 4, 2, UNI_CCC__33 } /* ccc=33 */,
+ { 0, 316, 356, 5, 4, UNI_QMARK } /* qmark=yes */,
+ { 2, 3474, 1487, 6, 8, UNI_JAMOEXTA } /* block=jamoexta */,
+ { 35, 1440, 934, 2, 2, -UNI_SD } /* sd=f */,
+ { 23, 3338, 356, 13, 4, UNI_NFDQC__Y } /* nfdquickcheck=yes */,
+ { 0, 2981, 1299, 4, 2, UNI_IN__6 } /* in=v60 */,
+ { 0, 8276, 5254, 22, 15, UNI_INSC__MODIFYINGLETTER } /* indicsyllabiccategory=modifyingletter */,
+ { 0, 4392, 0, 11, 0, UNI_SGNW } /* signwriting */,
+ { 1, 2463, 934, 11, 2, -UNI_JOINC } /* joincontrol=f */,
+ { 4, 4092, 602, 9, 3, -UNI_DIA } /* diacritic=no */,
+ { 1, 2474, 7556, 3, 19, UNI_MISCSYMBOLS } /* ismiscellaneoussymbols */,
+ { 20, 464, 128, 2, 4, UNI_MEDF } /* ismedf */,
+ { 5, 1102, 1021, 4, 6, UNI_WCHO } /* scx=wancho */,
+ { 71, 6114, 1755, 3, 11, UNI_MEDF } /* sc=medefaidrin */,
+ { 1, 464, 54, 2, 2, UNI_MC } /* ismc */,
+ { 8, 3474, 3991, 6, 15, UNI_BRAI } /* block=braillepatterns */,
+ { 2, 1102, 4418, 4, 6, UNI_ZYYY } /* scx=common */,
+ { 0, 6114, 1255, 3, 4, UNI_SOYO } /* sc=soyo */,
+ { 5, 8007, 7314, 30, 4, UNI_CJKEXTB } /* blk=cjkunifiedideographsextensionb */,
+ { 40, 1879, 5787, 4, 10, UNI_JAMO } /* blk=hanguljamo */,
+ { 0, 8182, 4042, 27, 8, UNI_INPC__TOPANDRIGHT } /* indicpositionalcategory=topandright */,
+ { 18, 445, 0, 4, 0, UNI_ORKH } /* orkh */,
+ { 1, 1102, 1948, 4, 10, UNI_SOGO } /* scx=oldsogdian */,
+ { 3, 1102, 5825, 4, 9, UNI_SUND } /* scx=sundanese */,
+ { 22, 343, 585, 5, 2, UNI_CCC__122 } /* ccc=122 */,
+ { 0, 8533, 4372, 7, 16, UNI_SMALLFORMS } /* block=smallformvariants */,
+ { 1, 313, 7385, 2, 28, UNI_PHONETICEXTSUP } /* inphoneticextensionssupplement */,
+ { 0, 6114, 1951, 3, 7, UNI_SC__SOGD } /* sc=sogdian */,
+ { 8, 6114, 574, 3, 7, UNI_AVST } /* sc=avestan */,
+ { 6, 2474, 176, 3, 2, UNI_MRO } /* ismro */,
+ { 0, 3351, 2063, 13, 9, UNI_NV__1_SLASH_8 } /* numericvalue=1.250e-01 */,
+ { 10, 1879, 5322, 4, 8, UNI_INCHEROKEE } /* blk=cherokee */,
+ { 0, 8244, 6334, 9, 18, UNI_CJKCOMPATFORMS } /* block=cjkcompatibilityforms */,
+ { 0, 1796, 5631, 7, 5, UNI_SC__GREK } /* script=greek */,
+ { 5, 7880, 4464, 5, 4, UNI_CJKEXTC } /* iscjkextc */,
+ { 1, 2260, 569, 3, 3, UNI_IN__9 } /* in=9.0 */,
+ { 0, 5865, 356, 21, 4, UNI_LOE } /* logicalorderexception=yes */,
+ { 21, 313, 611, 2, 7, UNI_INELBASAN } /* inelbasan */,
+ { 1, 3351, 1304, 13, 4, UNI_NV__2000 } /* numericvalue=2000 */,
+ { 0, 959, 602, 8, 2, -UNI_EXT } /* extender=n */,
+ { 0, 6944, 6280, 24, 3, UNI_CCC__202 } /* canonicalcombiningclass=atb */,
+ { 5, 1796, 477, 7, 4, UNI_VAI } /* script=vaii */,
+ { 8, 2260, 2128, 3, 3, UNI_IN__3_DOT_1 } /* in=3.1 */,
+ { 0, 6114, 1117, 3, 4, UNI_SC__TAGB } /* sc=tagb */,
+ { 1, 5586, 546, 21, 2, UNI_WB__EB } /* graphemeclusterbreak=eb */,
+ { 7, 555, 390, 5, 2, UNI_AGE__5_DOT_2 } /* age=5.2 */,
+ { 0, 275, 5718, 4, 9, UNI_WB__EB } /* gcb=emodifier */,
+ { 0, 1236, 3452, 4, 10, UNI_INCYRILLIC } /* block=cyrillic */,
+ { 0, 2678, 0, 4, 0, UNI_BC__R } /* bc=r */,
+ { 0, 313, 1344, 2, 9, UNI_PALM } /* inpalmyrene */,
+ { 0, 313, 676, 2, 5, UNI_INOSAGE } /* inosage */,
+ { 0, 7880, 5183, 28, 4, UNI_CJKEXTE } /* iscjkunifiedideographsextensione */,
+ { 0, 1796, 6728, 7, 11, UNI_MTEI } /* script=meeteimayek */,
+ { 0, 7584, 1687, 18, 8, UNI_DT__ISO } /* decompositiontype=isolated */,
+ { 5, 1796, 790, 7, 4, UNI_HMNP } /* script=hmnp */,
+ { 0, 302, 602, 2, 3, -UNI_RI } /* ri=no */,
+ { 0, 3593, 1698, 7, 4, UNI_LATINEXTF } /* inlatinextf */,
+ { 3, 1879, 1400, 4, 10, UNI_BOXDRAWING } /* blk=boxdrawing */,
+ { 8, 1065, 397, 5, 1, UNI_NV__1_SLASH_5 } /* nv=1/5 */,
+ { 3, 313, 2018, 2, 12, UNI_INMASARAMGONDI } /* inmasaramgondi */,
+ { 0, 4433, 129, 15, 3, UNI_LATINEXTF } /* blk=latinextendedf */,
+ { 2, 876, 602, 4, 2, -UNI_IDEO } /* ideo=n */,
+ { 1, 7416, 0, 14, 0, UNI_PUA } /* privateusearea */,
+ { 0, 7317, 7712, 10, 21, UNI_BC__PDI } /* bidiclass=popdirectionalisolate */,
+ { 20, 7201, 1464, 16, 2, UNI_ZS } /* generalcategory=zs */,
+ { 0, 316, 356, 5, 2, UNI_QMARK } /* qmark=y */,
+ { 0, 1102, 6594, 4, 6, UNI_BRAH } /* scx=brahmi */,
+ { 4, 7527, 310, 3, 2, UNI_LB__SP } /* lb=sp */,
+ { 5, 464, 259, 2, 2, UNI_CF } /* iscf */,
+ { 3, 1796, 1117, 7, 4, UNI_SC__TAGB } /* script=tagb */,
+ { 18, 3137, 1176, 14, 7, UNI_EA__NA } /* eastasianwidth=narrow */,
+ { 0, 464, 437, 2, 4, UNI_OGAM } /* isogam */,
+ { 19, 1102, 611, 4, 7, UNI_ELBA } /* scx=elbasan */,
+ { 0, 1796, 321, 7, 5, UNI_SC__TALE } /* script=taile */,
+ { 53, 3474, 5750, 6, 19, UNI_SUPARROWSB } /* block=supplementalarrowsb */,
+ { 0, 6944, 2702, 24, 10, UNI_CCC__6 } /* canonicalcombiningclass=hanreading */,
+ { 20, 513, 2145, 4, 8, UNI_NV__3_SLASH_8 } /* nv=3.750e-01 */,
+ { 1, 1704, 0, 4, 0, UNI_ARAB } /* arab */,
+ { 4, 1879, 1550, 3, 11, UNI_INOLDPERSIAN } /* blk=oldpersian */,
+ { 8, 581, 294, 5, 2, UNI_CCC__IS } /* ccc=240 */,
+ { 0, 343, 118, 4, 2, UNI_CCC__DA } /* ccc=da */,
+ { 4, 2692, 4918, 5, 16, UNI_ALCHEMICAL } /* blk=alchemicalsymbols */,
+ { 2, 3351, 1299, 13, 4, UNI_NV__6000 } /* numericvalue=6000 */,
+ { 6, 1796, 2986, 7, 14, UNI_SC__PHLP } /* script=psalterpahlavi */,
+ { 3, 313, 3608, 2, 11, UNI_PHONETICEXT } /* inphoneticext */,
+ { 1, 1102, 1470, 4, 8, UNI_BUGI } /* scx=buginese */,
+ { 2, 5087, 1631, 10, 7, UNI_WB__NL } /* wordbreak=newline */,
+ { 2, 6112, 3249, 14, 5, UNI_INSC__CONSONANTFINAL } /* insc=consonantfinal */,
+ { 4, 3309, 0, 15, 0, UNI_MERC } /* meroiticcursive */,
+ { 0, 464, 23, 2, 4, UNI_POSIXXDIGIT } /* isahex */,
+ { 66, 5322, 0, 8, 0, UNI_CHER } /* cherokee */,
+ { 10, 4355, 1198, 17, 7, UNI_GRAN } /* scriptextensions=grantha */,
+ { 4, 7208, 3156, 12, 8, UNI_NO } /* category=othernumber */,
+ { 2, 3474, 2746, 6, 14, UNI_HIGHSURROGATES } /* block=highsurrogates */,
+ { 0, 2645, 390, 4, 2, UNI_IN__5_DOT_2 } /* in=5.2 */,
+ { 2, 6114, 681, 3, 5, UNI_RUNR } /* sc=runic */,
+ { 0, 5844, 4081, 5, 11, UNI_SUPPUNCTUATION } /* issuppunctuation */,
+ { 0, 895, 1070, 5, 2, UNI_AGE__3_DOT_1 } /* age=v31 */,
+ { 1, 3351, 298, 12, 3, UNI_NV__90 } /* numericvalue=90 */,
+ { 1, 4793, 0, 4, 0, UNI_RUMI } /* rumi */,
+ { 16, 1975, 311, 7, 5, UNI_POSIXPRINT } /* isposixprint */,
+ { 0, 2678, 4207, 3, 3, UNI_BC__NSM } /* bc=nsm */,
+ { 9567, 1967, 588, 7, 2, UNI_RADICAL } /* radical=t */,
+ { 9, 1879, 5825, 4, 19, UNI_SUNDANESESUP } /* blk=sundanesesupplement */,
+ { 4, 3058, 934, 8, 6, -UNI_XPOSIXXDIGIT } /* hexdigit=false */,
+ { 0, 37, 1588, 1, 9, UNI_SMALLFORMS } /* smallforms */,
+ { 0, 7527, 383, 3, 6, UNI_LB__HY } /* lb=hyphen */,
+ { 0, 7208, 6466, 9, 10, UNI_CO } /* category=privateuse */,
+ { 0, 5865, 8485, 17, 5, UNI_loe_values_index } /* logicalorderexception= */,
+ { 0, 34, 5660, 1, 3, UNI_ME } /* isme */,
+ { 4, 4355, 1344, 17, 9, UNI_PALM } /* scriptextensions=palmyrene */,
+ { 2, 4355, 3285, 17, 4, UNI_HEBR } /* scriptextensions=hebr */,
+ { 5, 1991, 2868, 12, 11, UNI_JT__C } /* joiningtype=joincausing */,
+ { 0, 524, 934, 6, 2, -UNI_PATSYN } /* patsyn=f */,
+ { 0, 4355, 1015, 17, 4, UNI_TELU } /* scriptextensions=telu */,
+ { 6, 34, 5660, 1, 20, UNI_MERO } /* ismeroitichieroglyphs */,
+ { 0, 464, 1015, 2, 6, UNI_TELU } /* istelugu */,
+ { 2, 7527, 1906, 3, 9, UNI_LB__AI } /* lb=ambiguous */,
+ { 0, 106, 0, 4, 0, UNI_HMNG } /* hmng */,
+ { 0, 1796, 180, 7, 4, UNI_RUNR } /* script=runr */,
+ { 0, 3236, 5771, 3, 16, UNI_ENCLOSEDALPHANUMSUP } /* enclosedalphanumsup */,
+ { 7, 3474, 7377, 6, 26, UNI_KATAKANAEXT } /* block=katakanaphoneticextensions */,
+ { 4, 4450, 3500, 8, 14, UNI_CYPRIOTSYLLABARY } /* block=cypriotsyllabary */,
+ { 0, 464, 383, 2, 6, UNI_HYPHEN } /* ishyphen */,
+ { 12, 555, 563, 4, 3, UNI_AGE__7 } /* age=7.0 */,
+ { 3, 3351, 2615, 13, 10, UNI_NV___MINUS_1_SLASH_2 } /* numericvalue=-5.000e-01 */,
+ { 4, 3351, 2120, 14, 8, UNI_NV__1_SLASH_4 } /* numericvalue=2.500e-01 */,
+ { 0, 5087, 1881, 8, 4, UNI_WB__KA } /* wordbreak=ka */,
+ { 0, 7132, 1110, 5, 7, UNI_SPECIALS } /* blk=specials */,
+ { 1, 2274, 933, 10, 7, -UNI_XIDC } /* xidcontinue=false */,
+ { 0, 1344, 931, 6, 3, UNI_PALM } /* palmyrene */,
+ { 8, 2712, 601, 13, 4, -UNI_ECOMP } /* emojicomponent=no */,
+ { 0, 58, 4436, 2, 6, UNI_SC__LATN } /* sc=latin */,
+ { 3, 8182, 8440, 24, 14, UNI_INPC__BOTTOMANDRIGHT } /* indicpositionalcategory=bottomandright */,
+ { 4, 1441, 0, 3, 0, UNI_DEP } /* dep */,
+ { 21, 2392, 6053, 3, 12, UNI_MATHOPERATORS } /* inmathoperators */,
+ { 1, 1796, 3465, 6, 5, UNI_ETHI } /* script=ethi */,
+ { 2, 2, 933, 1, 7, -UNI_CE } /* ce=false */,
+ { 3, 316, 0, 5, 0, UNI_QMARK } /* qmark */,
+ { 1, 600, 3236, 3, 3, UNI_DT__ENC } /* dt=enc */,
+ { 0, 275, 602, 2, 3, UNI_NO } /* gc=no */,
+ { 10, 464, 5340, 2, 13, UNI_DEVANAGARIEXT } /* isdevanagariext */,
+ { 1, 2496, 4692, 4, 4, UNI_JG__ALAPH } /* jg=alaph */,
+ { 4, 1410, 1303, 8, 2, UNI_CCC__132 } /* ccc=ccc132 */,
+ { 0, 313, 783, 2, 7, UNI_INOSMANYA } /* inosmanya */,
+ { 3, 6944, 0, 24, 0, UNI_ccc_values_index } /* canonicalcombiningclass= */,
+ { 1, 2726, 0, 3, 2, UNI_CASEDLETTER } /* gc=l& */,
+ { 1, 296, 292, 3, 2, UNI_NV__30 } /* nv=30 */,
+ { 6, 5481, 602, 21, 3, -UNI_CWCF } /* changeswhencasefolded=no */,
+ { 21, 464, 176, 2, 4, UNI_ROHG } /* isrohg */,
+ { 3, 4355, 1133, 17, 4, UNI_VITH } /* scriptextensions=vith */,
+ { 3, 6749, 602, 25, 3, -UNI_CWKCF } /* changeswhennfkccasefolded=no */,
+ { 68, 3622, 4701, 10, 10, UNI_LATINEXTADDITIONAL } /* islatinextadditional */,
+ { 0, 4302, 355, 5, 5, UNI_XPOSIXSPACE } /* wspace=yes */,
+ { 13, 3090, 6878, 7, 12, UNI_GEOMETRICSHAPES } /* blk=geometricshapes */,
+ { 2, 6114, 5322, 3, 8, UNI_CHER } /* sc=cherokee */,
+ { 1, 2229, 0, 8, 0, UNI_PHAISTOS } /* phaistos */,
+ { 0, 4291, 310, 10, 2, UNI_LB__SP } /* linebreak=sp */,
+ { 1, 7132, 8319, 16, 21, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* blk=supplementalsymbolsandpictographs */,
+ { 1, 2483, 4500, 8, 5, UNI_XPOSIXUPPER } /* isxposixupper */,
+ { 3, 821, 1970, 3, 4, UNI_RADICAL } /* radical */,
+ { 2, 496, 0, 6, 0, UNI_KHOJ } /* khojki */,
+ { 0, 5099, 2277, 15, 8, UNI__PERL_CHARNAME_CONTINUE } /* _perl_charname_continue */,
+ { 0, 3734, 602, 14, 3, UNI_NFKCQC__N } /* nfkcquickcheck=no */,
+ { 65, 4355, 917, 17, 8, UNI_BASS } /* scriptextensions=bassavah */,
+ { 1, 738, 2498, 2, 2, UNI_EA__A } /* ea=a */,
+ { 2, 6112, 5269, 5, 15, UNI_INSC__REGISTERSHIFTER } /* insc=registershifter */,
+ { 0, 1102, 112, 4, 4, UNI_KITS } /* scx=kits */,
+ { 3, 7688, 3825, 22, 4, UNI_JG__MANICHAEANTEN } /* joininggroup=manichaeanten */,
+ { 2, 4355, 429, 17, 4, UNI_MRO } /* scriptextensions=mroo */,
+ { 1, 4291, 2951, 10, 2, UNI_LB__QU } /* linebreak=qu */,
+ { 1, 6112, 2290, 5, 6, UNI_INSC__NUMBER } /* insc=number */,
+ { 2, 343, 3365, 4, 2, UNI_CCC__36 } /* ccc=36 */,
+ { 3, 1796, 798, 7, 4, UNI_LANA } /* script=lana */,
+ { 0, 1796, 372, 7, 6, UNI_GOTH } /* script=gothic */,
+ { 1, 5, 934, 3, 6, -UNI_EXT } /* ext=false */,
+ { 36, 2496, 490, 3, 3, UNI_JG__REH } /* jg=reh */,
+ { 3, 3474, 8592, 6, 34, UNI_UCAS } /* block=unifiedcanadianaboriginalsyllabics */,
+ { 6, 8470, 5930, 19, 19, UNI_VO__TR } /* verticalorientation=transformedrotated */,
+ { 6, 5748, 5080, 14, 7, UNI_SUPARROWSA } /* insupplementalarrowsa */,
+ { 24, 4355, 1807, 17, 11, UNI_SORA } /* scriptextensions=sorasompeng */,
+ { 0, 6112, 5680, 6, 15, UNI_INSC__CANTILLATIONMARK } /* insc=cantillationmark */,
+ { 1, 3090, 2332, 5, 12, UNI_GREEKEXT } /* blk=greekextended */,
+ { 0, 4291, 276, 10, 2, UNI_LB__CB } /* linebreak=cb */,
+ { 0, 3351, 1299, 13, 2, UNI_NV__60 } /* numericvalue=60 */,
+ { 0, 296, 1300, 4, 2, UNI_NV__900 } /* nv=900 */,
+ { 1, 5481, 934, 21, 2, -UNI_CWCF } /* changeswhencasefolded=f */,
+ { 1, 7182, 1646, 3, 4, UNI_CJKEXTD } /* cjkextd */,
+ { 5, 5886, 1548, 19, 3, UNI_nchar_values_index } /* noncharactercodepoint= */,
+ { 3, 3474, 4656, 6, 9, UNI_TANGUTSUP } /* block=tangutsup */,
+ { 0, 887, 0, 6, 0, UNI_AGE__10 } /* age=10 */,
+ { 3, 1377, 1837, 3, 8, UNI_WB__EB } /* wb=ebasegaz */,
+ { 0, 465, 0, 4, 0, UNI_SHRD } /* shrd */,
+ { 5, 1710, 5358, 3, 17, UNI_SMALLKANAEXT } /* issmallkanaextension */,
+ { 0, 5409, 356, 19, 2, UNI_TERM } /* terminalpunctuation=y */,
+ { 0, 343, 2207, 3, 2, UNI_CCC__8 } /* ccc=8 */,
+ { 3, 136, 0, 4, 0, UNI_MYMR } /* mymr */,
+ { 0, 7148, 292, 25, 2, UNI_CCC__130 } /* canonicalcombiningclass=130 */,
+ { 0, 6114, 5825, 3, 9, UNI_SUND } /* sc=sundanese */,
+ { 0, 1440, 602, 2, 3, -UNI_SD } /* sd=no */,
+ { 1, 3915, 602, 17, 2, -UNI_EPRES } /* emojipresentation=n */,
+ { 1, 464, 457, 2, 4, UNI_PRTI } /* isprti */,
+ { 1, 1383, 588, 7, 5, UNI_IDS } /* idstart=true */,
+ { 7, 600, 55, 3, 3, UNI_DT__CAN } /* dt=can */,
+ { 8, 1102, 749, 4, 4, UNI_MARC } /* scx=marc */,
+ { 8, 5844, 4538, 12, 13, UNI_SUPPUNCTUATION } /* issupplementalpunctuation */,
+ { 8, 3593, 4629, 6, 5, UNI_LATIN1 } /* inlatin1sup */,
+ { 0, 2496, 1743, 3, 2, UNI_JG__FE } /* jg=fe */,
+ { 1, 875, 602, 5, 3, -UNI_UIDEO } /* uideo=no */,
+ { 8, 1879, 4656, 4, 16, UNI_TANGUTSUP } /* blk=tangutsupplement */,
+ { 16, 4322, 1781, 14, 4, UNI_NV__30000 } /* numericvalue=30000 */,
+ { 1, 1967, 934, 7, 2, -UNI_RADICAL } /* radical=f */,
+ { 1, 1796, 4962, 7, 4, UNI_SC__HAN } /* script=hani */,
+ { 10, 1879, 868, 4, 7, UNI_INTIRHUTA } /* blk=tirhuta */,
+ { 4, 3462, 1183, 5, 8, UNI_EMOTICONS } /* blk=emoticons */,
+ { 0, 3748, 523, 15, 1, UNI_NV__1_SLASH_7 } /* numericvalue=1/7 */,
+ { 1, 1796, 814, 7, 4, UNI_SC__QAAI } /* script=zinh */,
+ { 0, 736, 7175, 3, 10, UNI_ENCLOSEDCJK } /* inenclosedcjk */,
+ { 5, 3527, 0, 16, 0, UNI_HALFANDFULLFORMS } /* halfandfullforms */,
+ { 4, 1796, 1191, 7, 4, UNI_SC__BENG } /* script=beng */,
+ { 0, 2802, 3641, 10, 10, UNI_ETHIOPICSUP } /* isethiopicsupplement */,
+ { 57, 4857, 0, 5, 0, UNI_TAML } /* tamil */,
+ { 0, 3474, 2428, 6, 13, UNI_IPAEXT } /* block=ipaextensions */,
+ { 1, 4450, 4457, 7, 11, UNI_CYRILLICEXTC } /* block=cyrillicextc */,
+ { 1, 37, 7238, 1, 24, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* symbolsandpictographsexta */,
+ { 2, 464, 6052, 2, 13, UNI_MATHOPERATORS } /* ismathoperators */,
+ { 1, 313, 818, 2, 7, UNI_SC__SHRD } /* insharada */,
+ { 6, 6570, 140, 5, 2, UNI_INPC__NA } /* inpc=na */,
+ { 0, 8, 6240, 1, 3, UNI_L } /* gc=l */,
+ { 8, 343, 1418, 4, 6, UNI_CCC__9 } /* ccc=virama */,
+ { 0, 1977, 1465, 5, 5, UNI_POSIXSPACE } /* posixspace */,
+ { 1, 7828, 934, 16, 6, -UNI_UIDEO } /* unifiedideograph=false */,
+ { 2, 2496, 1041, 3, 5, UNI_JG__GAMAL } /* jg=gamal */,
+ { 1, 313, 3608, 2, 14, UNI_PHONETICEXTSUP } /* inphoneticextsup */,
+ { 0, 4322, 2145, 14, 8, UNI_NV__3_SLASH_8 } /* numericvalue=3.750e-01 */,
+ { 4, 4355, 1090, 17, 4, UNI_LINB } /* scriptextensions=linb */,
+ { 0, 4355, 4020, 17, 4, UNI_SIND } /* scriptextensions=sind */,
+ { 0, 7182, 6509, 3, 16, UNI_CJKCOMPATIDEOGRAPHS } /* cjkcompatideographs */,
+ { 3, 1879, 6833, 4, 23, UNI_BYZANTINEMUSIC } /* blk=byzantinemusicalsymbols */,
+ { 2, 464, 39, 2, 4, UNI_BATK } /* isbatk */,
+ { 7, 1102, 676, 4, 5, UNI_OSGE } /* scx=osage */,
+ { 4, 6114, 1353, 3, 9, UNI_PAUC } /* sc=paucinhau */,
+ { 0, 464, 666, 2, 4, UNI_LIMB } /* islimb */,
+ { 0, 5928, 5942, 3, 7, UNI_VO__R } /* vo=rotated */,
+ { 0, 1796, 417, 7, 4, UNI_SC__HANO } /* script=hano */,
+ { 1, 6185, 6199, 18, 8, UNI_NV__1000000000000 } /* numericvalue=1000000000000 */,
+ { 17, 5136, 8212, 5, 32, UNI_MISCMATHSYMBOLSB } /* blk=miscellaneousmathematicalsymbolsb */,
+ { 0, 7584, 696, 18, 3, UNI_DT__ISO } /* decompositiontype=iso */,
+ { 0, 1102, 1015, 4, 6, UNI_TELU } /* scx=telugu */,
+ { 5, 5565, 356, 21, 4, UNI_CWU } /* changeswhenuppercased=yes */,
+ { 8, 343, 1650, 4, 7, UNI_CCC__1 } /* ccc=overlay */,
+ { 16, 1441, 934, 10, 2, -UNI_DEP } /* deprecated=f */,
+ { 0, 524, 0, 6, 0, UNI_PATSYN } /* patsyn */,
+ { 13, 4355, 236, 17, 2, UNI_YI } /* scriptextensions=yi */,
+ { 1, 313, 5787, 2, 10, UNI_JAMO } /* inhanguljamo */,
+ { 1, 6114, 112, 3, 4, UNI_KITS } /* sc=kits */,
+ { 0, 7201, 334, 16, 2, UNI_PD } /* generalcategory=pd */,
+ { 8, 1102, 172, 4, 4, UNI_RJNG } /* scx=rjng */,
+ { 1, 1879, 1755, 4, 11, UNI_INMEDEFAIDRIN } /* blk=medefaidrin */,
+ { 1, 833, 588, 4, 5, UNI_TERM } /* term=true */,
+ { 0, 1879, 1037, 8, 4, UNI_KANAEXTB } /* blk=kanaextb */,
+ { 0, 5087, 2680, 9, 3, UNI_RI } /* wordbreak=ri */,
+ { 1, 4291, 4711, 10, 15, UNI_LB__CB } /* linebreak=contingentbreak */,
+ { 1, 3748, 1304, 15, 2, UNI_NV__1_SLASH_20 } /* numericvalue=1/20 */,
+ { 5, 1879, 1353, 4, 9, UNI_INPAUCINHAU } /* blk=paucinhau */,
+ { 2, 6112, 3217, 14, 6, UNI_INSC__CONSONANTKILLER } /* insc=consonantkiller */,
+ { 1, 2678, 5970, 14, 8, UNI_BC__RLO } /* bc=righttoleftoverride */,
+ { 0, 6114, 691, 3, 5, UNI_BATK } /* sc=batak */,
+ { 0, 7208, 1413, 8, 2, UNI_C } /* category=c */,
+ { 0, 2678, 4403, 3, 15, UNI_BC__BN } /* bc=boundaryneutral */,
+ { 0, 2678, 5428, 3, 18, UNI_BC__ET } /* bc=europeanterminator */,
+ { 0, 464, 3991, 2, 4, UNI_BRAI } /* isbrai */,
+ { 11, 7431, 1304, 27, 2, UNI_CCC__20 } /* canonicalcombiningclass=ccc20 */,
+ { 0, 581, 2094, 5, 2, UNI_CCC__202 } /* ccc=202 */,
+ { 0, 1102, 967, 4, 8, UNI_GUJR } /* scx=gujarati */,
+ { 0, 4355, 1335, 17, 9, UNI_OUGR } /* scriptextensions=olduyghur */,
+ { 0, 1879, 1571, 4, 10, UNI_INSAURASHTRA } /* blk=saurashtra */,
+ { 2, 2353, 3869, 3, 16, UNI_UCAS } /* incanadiansyllabics */,
+ { 1, 2485, 1465, 6, 5, UNI_XPOSIXSPACE } /* xposixspace */,
+ { 6, 464, 1792, 2, 4, UNI_MONG } /* ismong */,
+ { 1, 7132, 4641, 5, 15, UNI_SYRIACSUP } /* blk=syriacsupplement */,
+ { 24, 4355, 35, 17, 4, UNI_AVST } /* scriptextensions=avst */,
+ { 4, 3595, 4701, 8, 10, UNI_LATINEXTADDITIONAL } /* latinextadditional */,
+ { 0, 464, 940, 2, 6, UNI_COMPEX } /* iscompex */,
+ { 0, 464, 6303, 2, 23, UNI_COMPATJAMO } /* ishangulcompatibilityjamo */,
+ { 0, 240, 3438, 3, 12, UNI_ZANB } /* zanabazarsquare */,
+ { 1, 1879, 4442, 8, 9, UNI_KANAEXTB } /* blk=kanaextendedb */,
+ { 0, 5481, 588, 21, 2, UNI_CWCF } /* changeswhencasefolded=t */,
+ { 0, 4355, 1508, 17, 8, UNI_UGAR } /* scriptextensions=ugaritic */,
+ { 4, 7290, 0, 27, 0, UNI_OCR } /* opticalcharacterrecognition */,
+ { 5, 1377, 2961, 3, 7, UNI_WB__NU } /* wb=numeric */,
+ { 1, 2363, 5797, 10, 9, UNI_ETHIOPICEXTA } /* inethiopicextendeda */,
+ { 0, 4092, 0, 15, 0, UNI_DIACRITICALSEXT } /* diacriticalsext */,
+ { 1, 2310, 5620, 12, 3, -UNI_CI } /* caseignorable=n */,
+ { 0, 7825, 3929, 26, 4, UNI_CJKEXTG } /* cjkunifiedideographsextensiong */,
+ { 0, 464, 4783, 2, 10, UNI_XPOSIXSPACE } /* iswhitespace */,
+ { 0, 8533, 5080, 9, 7, UNI_SUPARROWSA } /* block=suparrowsa */,
+ { 0, 1702, 2760, 3, 9, UNI_XPOSIXALPHA } /* isalphabetic */,
+ { 2, 2726, 2384, 3, 2, UNI__PERL_SURROGATE } /* gc=cs */,
+ { 1, 6114, 1227, 3, 7, UNI_SC__MULT } /* sc=multani */,
+ { 7, 6039, 2591, 7, 12, UNI_MAYANNUMERALS } /* block=mayannumerals */,
+ { 0, 7208, 4598, 9, 16, UNI_PE } /* category=closepunctuation */,
+ { 0, 7018, 4442, 8, 9, UNI_ARABICEXTB } /* inarabicextendedb */,
+ { 4, 4355, 0, 17, 0, UNI_scx_values_index } /* scriptextensions= */,
+ { 0, 1846, 237, 3, 3, UNI_YI } /* isyiii */,
+ { 0, 1796, 1529, 7, 10, UNI_KHAR } /* script=kharoshthi */,
+ { 0, 23, 1104, 3, 2, UNI_ahex_values_index } /* ahex= */,
+ { 0, 296, 772, 3, 2, UNI_NV__17 } /* nv=17 */,
+ { 1, 4355, 1227, 17, 4, UNI_MULT } /* scriptextensions=mult */,
+ { 1, 939, 6390, 4, 2, UNI_ecomp_values_index } /* ecomp= */,
+ { 0, 464, 208, 2, 4, UNI_TFNG } /* istfng */,
+ { 8, 23, 602, 4, 3, -UNI_POSIXXDIGIT } /* ahex=no */,
+ { 6, 7431, 391, 27, 2, UNI_CCC__26 } /* canonicalcombiningclass=ccc26 */,
+ { 0, 2890, 2539, 3, 10, UNI_JT__U } /* jt=nonjoining */,
+ { 2, 1796, 847, 7, 7, UNI_LANA } /* script=taitham */,
+ { 1, 464, 27, 2, 4, UNI_AHOM } /* isahom */,
+ { 5, 19, 3362, 2, 3, UNI_AGE__2 } /* age=2 */,
+ { 5, 138, 122, 2, 2, UNI_MRO } /* mroo */,
+ { 2, 2678, 191, 3, 2, UNI_BC__WS } /* bc=ws */,
+ { 0, 7208, 4614, 9, 16, UNI_PF } /* category=finalpunctuation */,
+ { 2, 464, 2491, 2, 5, UNI_XPOSIXBLANK } /* isblank */,
+ { 4, 4355, 204, 17, 4, UNI_TAVT } /* scriptextensions=tavt */,
+ { 2, 2474, 3719, 3, 15, UNI_MISCMATHSYMBOLSA } /* ismiscmathsymbolsa */,
+ { 0, 2974, 292, 11, 2, UNI_IN__3 } /* presentin=v30 */,
+ { 3, 4355, 192, 17, 4, UNI_SHAW } /* scriptextensions=shaw */,
+ { 0, 721, 3582, 3, 3, UNI_KANGXI } /* kangxi */,
+ { 0, 464, 4656, 2, 16, UNI_TANGUTSUP } /* istangutsupplement */,
+ { 8, 1879, 4656, 4, 9, UNI_TANGUTSUP } /* blk=tangutsup */,
+ { 0, 4726, 0, 14, 0, UNI_NV__6 } /* numericvalue=6 */,
+ { 0, 3474, 4062, 6, 15, UNI_VEDICEXT } /* block=vedicextensions */,
+ { 0, 34, 6643, 1, 23, UNI_TRANSPORTANDMAP } /* istransportandmapsymbols */,
+ { 0, 1879, 6466, 4, 10, UNI_PUA } /* blk=privateuse */,
+ { 1, 2260, 560, 3, 3, UNI_IN__6 } /* in=6.0 */,
+ { 1, 275, 1591, 4, 2, UNI_LB__LF } /* gcb=lf */,
+ { 1, 3450, 1037, 12, 4, UNI_CYRILLICEXTB } /* blk=cyrillicextb */,
+ { 0, 1470, 0, 4, 0, UNI_BUGI } /* bugi */,
+ { 1, 666, 0, 5, 0, UNI_LIMB } /* limbu */,
+ { 3, 3474, 1003, 6, 6, UNI_INLEPCHA } /* block=lepcha */,
+ { 5, 4827, 0, 5, 0, UNI_BAMU } /* bamum */,
+ { 2, 3474, 8078, 6, 32, UNI_IDEOGRAPHICSYMBOLS } /* block=ideographicsymbolsandpunctuation */,
+ { 2, 1383, 602, 3, 2, -UNI_IDS } /* ids=n */,
+ { 0, 1102, 164, 4, 4, UNI_PHNX } /* scx=phnx */,
+ { 5, 1377, 10, 3, 2, UNI_LB__CR } /* wb=cr */,
+ { 4, 581, 392, 6, 1, UNI_CCC__R } /* ccc=226 */,
+ { 0, 464, 6069, 2, 22, UNI_DIACRITICALSFORSYMBOLS } /* isdiacriticalsforsymbols */,
+ { 16, 7584, 128, 18, 3, UNI_DT__MED } /* decompositiontype=med */,
+ { 1, 3351, 395, 13, 2, UNI_NV__41 } /* numericvalue=41 */,
+ { 0, 2153, 6199, 4, 5, UNI_NV__400000 } /* nv=400000 */,
+ { 0, 2274, 355, 10, 5, UNI_XIDC } /* xidcontinue=yes */,
+ { 0, 4355, 1052, 18, 7, UNI_MAHJ } /* scriptextensions=mahajani */,
+ { 16, 6114, 3991, 3, 7, UNI_BRAI } /* sc=braille */,
+ { 0, 6114, 7377, 3, 8, UNI_SC__KANA } /* sc=katakana */,
+ { 0, 7, 5305, 1, 17, UNI_TAIXUANJING } /* taixuanjingsymbols */,
+ { 8, 7823, 4341, 28, 4, UNI_CJKEXTA } /* incjkunifiedideographsextensiona */,
+ { 0, 5136, 2030, 5, 11, UNI_MATHALPHANUM } /* blk=mathalphanum */,
+ { 0, 1796, 1248, 7, 7, UNI_SIDD } /* script=siddham */,
+ { 0, 4302, 933, 5, 3, -UNI_XPOSIXSPACE } /* wspace=f */,
+ { 3, 343, 2002, 3, 3, UNI_CCC__BR } /* ccc=br */,
+ { 0, 296, 772, 3, 4, UNI_NV__17_SLASH_2 } /* nv=17/2 */,
+ { 4, 313, 901, 2, 8, UNI_INARMENIAN } /* inarmenian */,
+ { 2, 7201, 1899, 16, 6, UNI_S } /* generalcategory=symbol */,
+ { 17, 1927, 0, 12, 0, UNI_GONG } /* gunjalagondi */,
+ { 0, 5136, 1037, 11, 4, UNI_MYANMAREXTB } /* blk=myanmarextb */,
+ { 3, 409, 356, 3, 4, UNI_DIA } /* dia=yes */,
+ { 1, 3351, 293, 13, 1, UNI_NV__0 } /* numericvalue=0 */,
+ { 0, 1102, 854, 4, 7, UNI_TAVT } /* scx=taiviet */,
+ { 2, 1879, 1982, 4, 6, UNI_INSYRIAC } /* blk=syriac */,
+ { 0, 6944, 348, 24, 2, UNI_CCC__18 } /* canonicalcombiningclass=18 */,
+ { 1, 1796, 5340, 7, 10, UNI_SC__DEVA } /* script=devanagari */,
+ { 2, 5586, 5718, 21, 9, UNI_WB__EB } /* graphemeclusterbreak=emodifier */,
+ { 1, 5304, 0, 11, 0, UNI_TAIXUANJING } /* taixuanjing */,
+ { 9, 464, 2747, 3, 13, UNI_HIGHSURROGATES } /* ishighsurrogates */,
+ { 1, 154, 6878, 3, 20, UNI_GEOMETRICSHAPESEXT } /* geometricshapesextended */,
+ { 0, 6379, 2519, 13, 10, UNI_JG__KNOTTEDHEH } /* joininggroup=knottedheh */,
+ { 5, 1516, 493, 5, 3, UNI_KANBUN } /* iskanbun */,
+ { 0, 1102, 3991, 4, 4, UNI_BRAI } /* scx=brai */,
+ { 37, 313, 6462, 2, 24, UNI_HIGHPUSURROGATES } /* inhighprivateusesurrogates */,
+ { 0, 581, 349, 6, 1, UNI_CCC__AL } /* ccc=228 */,
+ { 3, 1198, 0, 4, 0, UNI_GRAN } /* gran */,
+ { 5, 3367, 523, 14, 1, UNI_NV__47 } /* numericvalue=47 */,
+ { 0, 464, 6799, 2, 24, UNI_COMPEX } /* isfullcompositionexclusion */,
+ { 0, 4355, 1241, 17, 7, UNI_PHAG } /* scriptextensions=phagspa */,
+ { 0, 7208, 252, 9, 2, UNI_CN } /* category=cn */,
+ { 0, 4355, 136, 17, 4, UNI_MYMR } /* scriptextensions=mymr */,
+ { 1, 5607, 7007, 15, 11, UNI_IDENTIFIERTYPE__UNCOMMONUSE } /* identifiertype=uncommonuse */,
+ { 0, 2726, 3722, 3, 10, UNI_SM } /* gc=mathsymbol */,
+ { 0, 4996, 229, 13, 2, UNI_JG__MANICHAEANPE } /* jg=manichaeanpe */,
+ { 1, 2802, 7175, 3, 26, UNI_ENCLOSEDCJK } /* isenclosedcjklettersandmonths */,
+ { 4, 313, 983, 2, 8, UNI_INHIRAGANA } /* inhiragana */,
+ { 3, 7208, 3594, 9, 2, UNI_NL } /* category=nl */,
+ { 0, 3462, 6142, 10, 5, UNI_ETHIOPICSUP } /* blk=ethiopicsup */,
+ { 4, 464, 2041, 2, 12, UNI_MEND } /* ismendekikakui */,
+ { 0, 1879, 4582, 4, 8, UNI_INBOPOMOFO } /* blk=bopomofo */,
+ { 3, 1102, 1529, 4, 10, UNI_KHAR } /* scx=kharoshthi */,
+ { 6, 7584, 2003, 20, 5, UNI_DT__NB } /* decompositiontype=nobreak */,
+ { 2, 1867, 588, 5, 2, UNI_BIDIM } /* bidim=t */,
+ { 0, 224, 0, 4, 0, UNI_WCHO } /* wcho */,
+ { 1, 4450, 8150, 7, 32, UNI_DIACRITICALSEXT } /* block=combiningdiacriticalmarksextended */,
+ { 1, 6114, 4392, 3, 11, UNI_SGNW } /* sc=signwriting */,
+ { 1, 6944, 398, 25, 2, UNI_CCC__216 } /* canonicalcombiningclass=216 */,
+ { 1, 1383, 588, 3, 5, UNI_IDS } /* ids=true */,
+ { 5, 6025, 3408, 11, 6, UNI_GEORGIANEXT } /* block=georgianext */,
+ { 0, 4355, 1802, 16, 5, UNI_MLYM } /* scriptextensions=mlym */,
+ { 1, 6944, 3902, 24, 13, UNI_CCC__IS } /* canonicalcombiningclass=iotasubscript */,
+ { 0, 1102, 136, 4, 4, UNI_MYMR } /* scx=mymr */,
+ { 8, 313, 6439, 2, 23, UNI_ZNAMENNYMUSIC } /* inznamennymusicalnotation */,
+ { 7, 7148, 0, 26, 0, UNI_CCC__12 } /* canonicalcombiningclass=12 */,
+ { 5, 4433, 4701, 17, 10, UNI_LATINEXTADDITIONAL } /* blk=latinextendedadditional */,
+ { 0, 3593, 6771, 12, 4, UNI_LATINEXTD } /* inlatinextendedd */,
+ { 12, 4355, 4107, 17, 6, UNI_HANG } /* scriptextensions=hangul */,
+ { 2, 3779, 6199, 14, 5, UNI_NV__700000 } /* numericvalue=700000 */,
+ { 0, 1796, 4671, 7, 4, UNI_SC__TALE } /* script=tale */,
+ { 4, 3474, 593, 6, 7, UNI_DSRT } /* block=deseret */,
+ { 0, 464, 4582, 2, 11, UNI_BOPOMOFOEXT } /* isbopomofoext */,
+ { 0, 1879, 1144, 4, 9, UNI_INBHAIKSUKI } /* blk=bhaiksuki */,
+ { 1, 3974, 934, 4, 6, -UNI_IDSB } /* idsb=false */,
+ { 0, 7584, 3444, 18, 6, UNI_DT__SQR } /* decompositiontype=square */,
+ { 0, 2465, 8500, 4, 33, UNI_DIACRITICALSSUP } /* incombiningdiacriticalmarkssupplement */,
+ { 2, 343, 7966, 4, 9, UNI_CCC__AL } /* ccc=aboveleft */,
+ { 1, 5748, 5762, 5, 7, UNI_SUPARROWSB } /* insuparrowsb */,
+ { 24, 1478, 5812, 7, 6, UNI_GEORGIANSUP } /* ingeorgiansup */,
+ { 0, 3622, 0, 3, 0, UNI_L } /* isl */,
+ { 80, 5147, 4629, 10, 5, UNI_LATIN1 } /* block=latin1sup */,
+ { 19, 1597, 356, 10, 4, UNI_SD } /* softdotted=yes */,
+ { 3, 5748, 1818, 5, 8, UNI_SUPERANDSUB } /* insuperandsub */,
+ { 0, 34, 495, 1, 7, UNI_INKHOJKI } /* inkhojki */,
+ { 4, 2355, 7403, 8, 13, UNI_CYRILLICSUP } /* cyrillicsupplementary */,
+ { 0, 4996, 4682, 13, 5, UNI_JG__MANICHAEANSADHE } /* jg=manichaeansadhe */,
+ { 0, 4308, 602, 14, 2, UNI_NFKDQC__N } /* nfkdquickcheck=n */,
+ { 0, 2792, 6142, 8, 12, UNI_CYRILLICSUP } /* iscyrillicsupplement */,
+ { 0, 600, 1162, 3, 6, UNI_DT__ENC } /* dt=circle */,
+ { 8, 3090, 5223, 6, 16, UNI_INPUNCTUATION } /* blk=generalpunctuation */,
+ { 4, 1879, 7377, 4, 8, UNI_INKATAKANA } /* blk=katakana */,
+ { 5, 7527, 2890, 3, 2, UNI_GCB__T } /* lb=jt */,
+ { 1, 1796, 868, 7, 7, UNI_SC__TIRH } /* script=tirhuta */,
+ { 3, 7987, 6056, 12, 9, UNI_MATHOPERATORS } /* mathematicaloperators */,
+ { 2, 313, 502, 2, 6, UNI_INLYDIAN } /* inlydian */,
+ { 4, 6570, 6581, 5, 6, UNI_INPC__BOTTOM } /* inpc=bottom */,
+ { 1, 6944, 2262, 23, 3, UNI_CCC__14 } /* canonicalcombiningclass=14 */,
+ { 1, 1796, 1202, 7, 4, UNI_THAI } /* script=thai */,
+ { 3, 4291, 4219, 10, 14, UNI_LB__CR } /* linebreak=carriagereturn */,
+ { 2, 3763, 1300, 14, 3, UNI_NV__5000 } /* numericvalue=5000 */,
+ { 0, 1719, 1465, 4, 5, UNI_VERTSPACE } /* vertspace */,
+ { 1, 6114, 184, 3, 4, UNI_SAMR } /* sc=samr */,
+ { 1, 6687, 3665, 22, 4, UNI_JG__MALAYALAMLLLA } /* joininggroup=malayalamllla */,
+ { 0, 7825, 0, 20, 0, UNI_CJK } /* cjkunifiedideographs */,
+ { 0, 2, 602, 3, 3, -UNI_CWL } /* cwl=no */,
+ { 2, 236, 0, 4, 0, UNI_YI } /* yiii */,
+ { 0, 4355, 1191, 17, 4, UNI_BENG } /* scriptextensions=beng */,
+ { 3, 1879, 1198, 4, 7, UNI_INGRANTHA } /* blk=grantha */,
+ { 4, 2463, 588, 11, 5, UNI_JOINC } /* joincontrol=true */,
+ { 0, 825, 0, 7, 0, UNI_SHAW } /* shavian */,
+ { 1, 1796, 1271, 7, 9, UNI_SC__SIND } /* script=khudawadi */,
+ { 1, 1011, 356, 2, 2, UNI_CI } /* ci=y */,
+ { 0, 2692, 2285, 5, 12, UNI_AEGEANNUMBERS } /* blk=aegeannumbers */,
+ { 2, 4355, 991, 17, 6, UNI_HATR } /* scriptextensions=hatran */,
+ { 64, 1710, 1249, 3, 6, UNI_SIDD } /* issiddham */,
+ { 1, 1102, 840, 4, 7, UNI_TGLG } /* scx=tagalog */,
+ { 0, 6114, 212, 3, 4, UNI_SC__TGLG } /* sc=tglg */,
+ { 2, 1879, 6533, 4, 16, UNI_INDICNUMBERFORMS } /* blk=indicnumberforms */,
+ { 0, 464, 4092, 2, 15, UNI_DIACRITICALSEXT } /* isdiacriticalsext */,
+ { 0, 2726, 6635, 6, 8, UNI_LO } /* gc=otherletter */,
+ { 3, 3474, 1241, 6, 7, UNI_INPHAGSPA } /* block=phagspa */,
+ { 0, 313, 2771, 2, 5, UNI_INKHMER } /* inkhmer */,
+ { 2, 2355, 5797, 8, 9, UNI_CYRILLICEXTA } /* cyrillicextendeda */,
+ { 0, 3474, 2401, 6, 11, UNI_INNANDINAGARI } /* block=nandinagari */,
+ { 64, 4107, 1676, 12, 3, UNI_INHANGUL } /* hangulsyllables */,
+ { 4, 3285, 0, 6, 0, UNI_HEBR } /* hebrew */,
+ { 35, 3474, 540, 6, 6, UNI_INTANGSA } /* block=tangsa */,
+ { 0, 7132, 6623, 5, 21, UNI_MODIFIERLETTERS } /* blk=spacingmodifierletters */,
+ { 1, 7018, 1491, 8, 4, UNI_ARABICEXTA } /* inarabicexta */,
+ { 0, 2692, 2760, 5, 11, UNI_ALPHABETICPF } /* blk=alphabeticpf */,
+ { 0, 8244, 1491, 9, 4, UNI_CJKEXTA } /* block=cjkexta */,
+ { 5, 203, 0, 2, 0, UNI_TITLE } /* lt */,
+ { 0, 275, 3432, 4, 3, UNI_LB__ZWJ } /* gcb=zwj */,
+ { 17, 464, 6462, 2, 24, UNI_HIGHPUSURROGATES } /* ishighprivateusesurrogates */,
+ { 4, 844, 933, 2, 3, -UNI_LOE } /* loe=f */,
+ { 1, 5928, 1605, 12, 9, UNI_VO__TU } /* vo=transformedupright */,
+ { 16, 39, 42, 3, 1, UNI_BATK } /* batk */,
+ { 2, 7527, 2904, 3, 11, UNI_LB__BB } /* lb=breakbefore */,
+ { 0, 833, 934, 4, 6, -UNI_TERM } /* term=false */,
+ { 0, 464, 1451, 2, 10, UNI_DIAK } /* isdivesakuru */,
+ { 1, 632, 587, 5, 3, UNI_GRBASE } /* grbase=t */,
+ { 4, 2, 355, 1, 2, UNI_ce_values_index } /* ce= */,
+ { 4, 464, 4020, 2, 4, UNI_SIND } /* issind */,
+ { 0, 2365, 6142, 6, 12, UNI_ETHIOPICSUP } /* ethiopicsupplement */,
+ { 0, 644, 1847, 6, 8, UNI_LB__H2 } /* hst=lvsyllable */,
+ { 7, 3474, 1951, 6, 7, UNI_INSOGDIAN } /* block=sogdian */,
+ { 0, 464, 94, 2, 4, UNI_GUJR } /* isgujr */,
+ { 0, 1796, 666, 7, 5, UNI_SC__LIMB } /* script=limbu */,
+ { 1, 464, 107, 3, 3, UNI_HMNG } /* ishmng */,
+ { 8, 7317, 0, 11, 0, UNI_BC__L } /* bidiclass=l */,
+ { 4, 810, 0, 4, 0, UNI_SYRC } /* syrc */,
+ { 0, 4355, 4671, 17, 4, UNI_TALE } /* scriptextensions=tale */,
+ { 2, 1174, 6970, 3, 9, UNI_EA__H } /* ea=halfwidth */,
+ { 6, 1879, 2241, 4, 12, UNI_PLAYINGCARDS } /* blk=playingcards */,
+ { 0, 3622, 4629, 6, 12, UNI_LATIN1 } /* islatin1supplement */,
+ { 13, 1796, 1320, 7, 4, UNI_SC__PERM } /* script=perm */,
+ { 8, 464, 1144, 2, 9, UNI_BHKS } /* isbhaiksuki */,
+ { 4, 7431, 562, 28, 2, UNI_CCC__107 } /* canonicalcombiningclass=ccc107 */,
+ { 1, 4355, 172, 17, 4, UNI_RJNG } /* scriptextensions=rjng */,
+ { 0, 4355, 997, 17, 6, UNI_KTHI } /* scriptextensions=kaithi */,
+ { 0, 895, 3792, 5, 2, UNI_AGE__7 } /* age=v70 */,
+ { 1, 343, 278, 3, 2, UNI_CCC__B } /* ccc=b */,
+ { 5, 7660, 0, 18, 0, UNI_INVS } /* variationselectors */,
+ { 2, 2726, 330, 3, 2, UNI_PF } /* gc=pf */,
+ { 0, 8007, 3571, 7, 6, UNI_CJKCOMPAT } /* blk=cjkcompat */,
+ { 17, 2205, 1300, 4, 2, UNI_NV__800 } /* nv=800 */,
+ { 8, 36, 602, 2, 2, -UNI_VS } /* vs=n */,
+ { 4, 4355, 120, 17, 3, UNI_LAO } /* scriptextensions=lao */,
+ { 0, 1796, 4827, 7, 5, UNI_BAMU } /* script=bamum */,
+ { 1, 464, 2652, 2, 13, UNI_VERTICALFORMS } /* isverticalforms */,
+ { 0, 6114, 1807, 3, 11, UNI_SORA } /* sc=sorasompeng */,
+ { 4, 632, 5620, 5, 3, -UNI_GRBASE } /* grbase=n */,
+ { 10, 1879, 1271, 4, 9, UNI_INKHUDAWADI } /* blk=khudawadi */,
+ { 1, 5718, 356, 4, 2, UNI_EMOD } /* emod=y */,
+ { 0, 5718, 278, 4, 1, UNI_emod_values_index } /* emod= */,
+ { 19, 6379, 1522, 13, 7, UNI_JG__THINYEH } /* joininggroup=thinyeh */,
+ { 1, 1102, 19, 4, 4, UNI_AGHB } /* scx=aghb */,
+ { 17, 625, 934, 7, 2, -UNI_EXTPICT } /* extpict=f */,
+ { 5, 895, 294, 6, 2, UNI_AGE__14 } /* age=v140 */,
+ { 8, 3474, 6142, 10, 5, UNI_ARABICSUP } /* block=arabicsup */,
+ { 0, 464, 1529, 2, 10, UNI_KHAR } /* iskharoshthi */,
+ { 1, 6114, 477, 3, 4, UNI_VAI } /* sc=vaii */,
+ { 15, 464, 6284, 2, 19, UNI_JAMOEXTB } /* ishanguljamoextendedb */,
+ { 3, 7338, 0, 11, 0, UNI_BC__R } /* bidiclass=r */,
+ { 16, 895, 347, 5, 2, UNI_IN__1_DOT_1 } /* age=v11 */,
+ { 0, 6570, 8440, 11, 14, UNI_INPC__TOPANDBOTTOMANDRIGHT } /* inpc=topandbottomandright */,
+ { 2, 1796, 749, 7, 7, UNI_MARC } /* script=marchen */,
+ { 0, 1561, 0, 10, 0, UNI_PHNX } /* phoenician */,
+ { 0, 1879, 2652, 4, 13, UNI_VERTICALFORMS } /* blk=verticalforms */,
+ { 1, 383, 588, 6, 2, UNI_HYPHEN } /* hyphen=t */,
+ { 4, 2193, 6219, 8, 4, UNI_NV__1_SLASH_160 } /* nv=6.250e-03 */,
+ { 0, 14, 402, 1, 3, UNI_MIAO } /* miao */,
+ { 2, 2485, 3060, 5, 6, UNI_XPOSIXDIGIT } /* xposixdigit */,
+ { 0, 313, 2986, 2, 14, UNI_INPSALTERPAHLAVI } /* inpsalterpahlavi */,
+ { 0, 6114, 465, 3, 4, UNI_SC__SHRD } /* sc=shrd */,
+ { 0, 4122, 602, 5, 3, -UNI_XPOSIXLOWER } /* lower=no */,
+ { 9, 2678, 3855, 3, 14, UNI_BC__EN } /* bc=europeannumber */,
+ { 0, 4355, 1614, 17, 10, UNI_WARA } /* scriptextensions=warangciti */,
+ { 0, 58, 1882, 2, 5, UNI_SC__KANA } /* sc=kana */,
+ { 7, 228, 0, 4, 0, UNI_XPEO } /* xpeo */,
+ { 2, 4291, 703, 10, 2, UNI_EMOD } /* linebreak=em */,
+ { 33, 2496, 2835, 3, 11, UNI_JG__STRAIGHTWAW } /* jg=straightwaw */,
+ { 65, 756, 1768, 3, 4, UNI_nfkcqc_values_index } /* nfkcqc= */,
+ { 1, 2981, 294, 5, 2, UNI_IN__14 } /* in=v140 */,
+ { 7, 2275, 0, 10, 0, UNI_IDC } /* idcontinue */,
+ { 59, 1796, 449, 7, 4, UNI_PHLI } /* script=phli */,
+ { 0, 2981, 3792, 4, 2, UNI_IN__7 } /* in=v70 */,
+ { 25, 1879, 5304, 4, 11, UNI_TAIXUANJING } /* blk=taixuanjing */,
+ { 0, 7338, 0, 21, 0, UNI_BC__R } /* bidiclass=righttoleft */,
+ { 8, 3794, 2145, 14, 8, UNI_NV__7_SLASH_8 } /* numericvalue=8.750e-01 */,
+ { 4, 34, 5321, 1, 19, UNI_CHEROKEESUP } /* ischerokeesupplement */,
+ { 1, 1796, 6594, 7, 4, UNI_BRAH } /* script=brah */,
+ { 1, 1597, 278, 10, 1, UNI_sd_values_index } /* softdotted= */,
+ { 1, 5186, 602, 20, 2, -UNI_EXTPICT } /* extendedpictographic=n */,
+ { 2, 464, 1508, 2, 8, UNI_UGAR } /* isugaritic */,
+ { 1, 464, 4107, 2, 15, UNI_INHANGUL } /* ishangulsyllables */,
+ { 0, 3058, 356, 8, 4, UNI_XPOSIXXDIGIT } /* hexdigit=yes */,
+ { 14, 3351, 2074, 13, 2, UNI_NV__29 } /* numericvalue=29 */,
+ { 0, 8244, 7315, 33, 3, UNI_CJKEXTB } /* block=cjkunifiedideographsextensionb */,
+ { 30, 6114, 3396, 3, 15, UNI_SARB } /* sc=oldsoutharabian */,
+ { 0, 383, 602, 6, 2, -UNI_HYPHEN } /* hyphen=n */,
+ { 8, 1102, 413, 4, 4, UNI_GONM } /* scx=gonm */,
+ { 1, 7584, 946, 18, 5, UNI_DT__SUP } /* decompositiontype=super */,
+ { 14, 1796, 5907, 7, 7, UNI_SC__SINH } /* script=sinhala */,
+ { 0, 4996, 3825, 12, 4, UNI_JG__MANICHAEANTEN } /* jg=manichaeanten */,
+ { 2, 296, 293, 3, 1, UNI_NV__0 } /* nv=0 */,
+ { 19, 8590, 0, 36, 0, UNI_UCAS } /* isunifiedcanadianaboriginalsyllabics */,
+ { 16, 3351, 0, 15, 0, UNI_NV__23 } /* numericvalue=23 */,
+ { 1, 6114, 656, 3, 5, UNI_SC__BUHD } /* sc=buhid */,
+ { 0, 6114, 1248, 3, 4, UNI_SIDD } /* sc=sidd */,
+ { 11, 2726, 3156, 6, 8, UNI_NO } /* gc=othernumber */,
+ { 0, 656, 0, 5, 0, UNI_BUHD } /* buhid */,
+ { 0, 844, 587, 2, 3, UNI_LOE } /* loe=t */,
+ { 0, 5147, 4590, 11, 9, UNI_LATINEXTC } /* block=latinextendedc */,
+ { 0, 7527, 283, 3, 2, UNI_GCB__L } /* lb=jl */,
+ { 0, 6114, 160, 3, 4, UNI_SC__PHLP } /* sc=phlp */,
+ { 3, 5, 8047, 1, 31, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* egyptianhieroglyphformatcontrols */,
+ { 1, 4872, 328, 10, 3, UNI_KANASUP } /* block=kanasup */,
+ { 3, 1383, 0, 7, 0, UNI_IDS } /* idstart */,
+ { 4, 409, 934, 2, 6, -UNI_DI } /* di=false */,
+ { 1, 876, 602, 4, 3, -UNI_IDEO } /* ideo=no */,
+ { 0, 1796, 1424, 7, 10, UNI_CHRS } /* script=chorasmian */,
+ { 7, 4500, 356, 5, 2, UNI_XPOSIXUPPER } /* upper=y */,
+ { 0, 3974, 588, 17, 5, UNI_IDSB } /* idsbinaryoperator=true */,
+ { 1, 1856, 602, 5, 3, -UNI_BIDIC } /* bidic=no */,
+ { 4, 7527, 2559, 3, 10, UNI_LB__NS } /* lb=nonstarter */,
+ { 0, 4433, 4552, 5, 15, UNI_LINEARBSYLLABARY } /* blk=linearbsyllabary */,
+ { 17, 3474, 4092, 6, 15, UNI_DIACRITICALSEXT } /* block=diacriticalsext */,
+ { 2, 6379, 4692, 14, 4, UNI_JG__ALAPH } /* joininggroup=alaph */,
+ { 0, 1879, 372, 4, 6, UNI_INGOTHIC } /* blk=gothic */,
+ { 0, 6114, 1495, 3, 8, UNI_SC__JAVA } /* sc=javanese */,
+ { 0, 2485, 4500, 6, 5, UNI_XPOSIXUPPER } /* xposixupper */,
+ { 0, 1796, 840, 7, 7, UNI_SC__TGLG } /* script=tagalog */,
+ { 4, 6114, 1271, 3, 9, UNI_SC__SIND } /* sc=khudawadi */,
+ { 9, 1796, 4020, 7, 4, UNI_SC__SIND } /* script=sind */,
+ { 3, 1879, 5304, 4, 18, UNI_TAIXUANJING } /* blk=taixuanjingsymbols */,
+ { 66, 4901, 0, 17, 0, UNI_EBASE } /* emojimodifierbase */,
+ { 4, 6379, 653, 13, 3, UNI_JG__LAM } /* joininggroup=lam */,
+ { 9, 8, 4913, 1, 5, UNI_GRBASE } /* grbase */,
+ { 0, 1867, 934, 5, 6, -UNI_BIDIM } /* bidim=false */,
+ { 0, 3474, 4107, 6, 6, UNI_INHANGUL } /* block=hangul */,
+ { 0, 2726, 6276, 3, 6, UNI_CF } /* gc=format */,
+ { 2, 5147, 6890, 11, 9, UNI_LATINEXTE } /* block=latinextendede */,
+ { 0, 1410, 771, 7, 2, UNI_CCC__21 } /* ccc=ccc21 */,
+ { 0, 3474, 4092, 6, 12, UNI_DIACRITICALS } /* block=diacriticals */,
+ { 0, 8182, 2680, 23, 6, UNI_INPC__RIGHT } /* indicpositionalcategory=right */,
+ { 0, 5544, 588, 21, 2, UNI_CWT } /* changeswhentitlecased=t */,
+ { 29, 1548, 3061, 3, 5, UNI_NT__DI } /* nt=digit */,
+ { 1, 3474, 3721, 11, 5, UNI_ARABICMATH } /* block=arabicmath */,
+ { 7, 4291, 213, 10, 2, UNI_LB__GL } /* linebreak=gl */,
+ { 1, 1102, 86, 4, 4, UNI_GONG } /* scx=gong */,
+ { 0, 2496, 229, 3, 2, UNI_JG__PE } /* jg=pe */,
+ { 1, 409, 588, 2, 5, UNI_DI } /* di=true */,
+ { 8, 1102, 802, 4, 4, UNI_NBAT } /* scx=nbat */,
+ { 26, 5087, 1802, 9, 3, UNI_WB__ML } /* wordbreak=ml */,
+ { 0, 508, 1768, 2, 4, UNI_nfcqc_values_index } /* nfcqc= */,
+ { 9, 4355, 810, 17, 4, UNI_SYRC } /* scriptextensions=syrc */,
+ { 5, 536, 37, 3, 2, UNI_SB__ST } /* sb=st */,
+ { 4, 7527, 3594, 3, 2, UNI_LB__NL } /* lb=nl */,
+ { 3, 37, 7937, 1, 29, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* symbolsandpictographsextendeda */,
+ { 0, 625, 588, 7, 2, UNI_EXTPICT } /* extpict=t */,
+ { 0, 5586, 3423, 21, 12, UNI_WB__EB } /* graphemeclusterbreak=glueafterzwj */,
+ { 4, 4355, 749, 17, 4, UNI_MARC } /* scriptextensions=marc */,
+ { 1, 4355, 301, 17, 5, UNI_ORYA } /* scriptextensions=oriya */,
+ { 0, 5586, 959, 21, 6, UNI_GCB__EX } /* graphemeclusterbreak=extend */,
+ { 0, 4355, 1248, 17, 7, UNI_SIDD } /* scriptextensions=siddham */,
+ { 0, 3474, 917, 6, 8, UNI_INBASSAVAH } /* block=bassavah */,
+ { 0, 1410, 6968, 7, 2, UNI_CCC__27 } /* ccc=ccc27 */,
+ { 0, 1102, 144, 4, 4, UNI_NEWA } /* scx=newa */,
+ { 1, 2802, 0, 6, 0, UNI_ETHI } /* isethi */,
+ { 0, 2205, 1781, 4, 4, UNI_NV__80000 } /* nv=80000 */,
+ { 0, 1796, 469, 7, 4, UNI_SOGO } /* script=sogo */,
+ { 5, 7527, 22, 4, 1, UNI_LB__CB } /* lb=cb */,
+ { 3, 5147, 74, 13, 2, UNI_LATINEXTC } /* block=latinextc */,
+ { 0, 1879, 854, 4, 7, UNI_INTAIVIET } /* blk=taiviet */,
+ { 16, 71, 0, 4, 0, UNI_CPRT } /* cprt */,
+ { 3, 3779, 2120, 14, 8, UNI_NV__3_SLASH_4 } /* numericvalue=7.500e-01 */,
+ { 3, 1102, 168, 4, 4, UNI_COPT } /* scx=qaac */,
+ { 1, 1102, 1802, 3, 5, UNI_MLYM } /* scx=mlym */,
+ { 3, 464, 4857, 2, 8, UNI_TAMILSUP } /* istamilsup */,
+ { 0, 2275, 0, 3, 0, UNI_IDC } /* idc */,
+ { 1, 6114, 847, 3, 7, UNI_LANA } /* sc=taitham */,
+ { 3, 3462, 1491, 12, 4, UNI_ETHIOPICEXTA } /* blk=ethiopicexta */,
+ { 2, 1102, 4962, 4, 14, UNI_ROHG } /* scx=hanifirohingya */,
+ { 0, 4450, 4590, 14, 9, UNI_CYRILLICEXTC } /* block=cyrillicextendedc */,
+ { 1, 2692, 1037, 10, 4, UNI_ARABICEXTB } /* blk=arabicextb */,
+ { 11, 6114, 1362, 3, 9, UNI_SAMR } /* sc=samaritan */,
+ { 0, 301, 0, 5, 0, UNI_ORYA } /* oriya */,
+ { 1, 1867, 934, 12, 2, -UNI_BIDIM } /* bidimirrored=f */,
+ { 0, 6687, 664, 22, 2, UNI_JG__MALAYALAMRA } /* joininggroup=malayalamra */,
+ { 1, 5136, 1539, 5, 9, UNI_MISCARROWS } /* blk=miscarrows */,
+ { 0, 1796, 666, 7, 4, UNI_SC__LIMB } /* script=limb */,
+ { 0, 313, 6842, 2, 14, UNI_MUSIC } /* inmusicalsymbols */,
+ { 0, 4355, 3285, 17, 6, UNI_HEBR } /* scriptextensions=hebrew */,
+ { 8, 8007, 8407, 7, 33, UNI_CJKCOMPATIDEOGRAPHSSUP } /* blk=cjkcompatibilityideographssupplement */,
+ { 0, 6114, 6134, 3, 10, UNI_SC__GLAG } /* sc=glagolitic */,
+ { 0, 1991, 2892, 11, 12, UNI_JT__T } /* joiningtype=transparent */,
+ { 4, 36, 0, 2, 0, UNI_VS } /* vs */,
+ { 0, 4355, 1227, 17, 7, UNI_MULT } /* scriptextensions=multani */,
+ { 4, 7660, 588, 17, 2, UNI_VS } /* variationselector=t */,
+ { 5, 1879, 1344, 4, 9, UNI_PALM } /* blk=palmyrene */,
+ { 0, 265, 356, 5, 2, UNI_CWKCF } /* cwkcf=y */,
+ { 2, 1796, 5907, 7, 4, UNI_SC__SINH } /* script=sinh */,
+ { 0, 8182, 140, 24, 2, UNI_INPC__NA } /* indicpositionalcategory=na */,
+ { 0, 313, 3991, 2, 7, UNI_BRAI } /* inbraille */,
+ { 1, 6069, 0, 22, 0, UNI_DIACRITICALSFORSYMBOLS } /* diacriticalsforsymbols */,
+ { 1, 2363, 1037, 10, 4, UNI_ETHIOPICEXTB } /* inethiopicextb */,
+ { 43, 4291, 57, 10, 2, UNI_LB__NS } /* linebreak=ns */,
+ { 12, 2344, 2680, 2, 2, UNI_VO__R } /* vo=r */,
+ { 2, 5087, 3151, 9, 3, UNI_WB__LE } /* wordbreak=le */,
+ { 0, 1102, 2740, 4, 4, UNI_COPT } /* scx=copt */,
+ { 0, 1796, 6103, 7, 9, UNI_XSUX } /* script=cuneiform */,
+ { 10, 2981, 347, 4, 2, UNI_IN__1_DOT_1 } /* in=v11 */,
+ { 7, 7823, 6352, 5, 18, UNI_CJKRADICALSSUP } /* incjkradicalssupplement */,
+ { 9, 1879, 3608, 4, 11, UNI_PHONETICEXT } /* blk=phoneticext */,
+ { 0, 3474, 1495, 6, 8, UNI_INJAVANESE } /* block=javanese */,
+ { 3, 6114, 4827, 3, 5, UNI_BAMU } /* sc=bamum */,
+ { 0, 464, 417, 2, 4, UNI_HANO } /* ishano */,
+ { 1, 1102, 200, 4, 4, UNI_TAML } /* scx=taml */,
+ { 4, 1796, 4418, 7, 6, UNI_SC__ZYYY } /* script=common */,
+ { 21, 464, 433, 2, 3, UNI_NKO } /* isnko */,
+ { 0, 334, 0, 2, 0, UNI_PD } /* pd */,
+ { 11, 3474, 4021, 6, 17, UNI_INDICSIYAQNUMBERS } /* block=indicsiyaqnumbers */,
+ { 1, 600, 2003, 5, 5, UNI_DT__NB } /* dt=nobreak */,
+ { 6, 1702, 4442, 8, 9, UNI_ARABICEXTB } /* isarabicextendedb */,
+ { 33, 7068, 602, 26, 3, -UNI_PCM } /* prependedconcatenationmark=no */,
+ { 2, 313, 1887, 2, 7, UNI_UCASEXT } /* inucasext */,
+ { 5, 2, 7908, 1, 29, UNI_CUNEIFORMNUMBERS } /* cuneiformnumbersandpunctuation */,
+ { 0, 1027, 0, 4, 0, UNI_YEZI } /* yezi */,
+ { 1, 1796, 208, 7, 4, UNI_TFNG } /* script=tfng */,
+ { 0, 1796, 98, 7, 4, UNI_SC__GURU } /* script=guru */,
+ { 0, 1796, 372, 7, 4, UNI_GOTH } /* script=goth */,
+ { 9, 343, 2138, 5, 2, UNI_WB__EB } /* ccc=133 */,
+ { 0, 464, 1227, 2, 4, UNI_MULT } /* ismult */,
+ { 0, 313, 7290, 2, 27, UNI_OCR } /* inopticalcharacterrecognition */,
+ { 3, 464, 875, 2, 5, UNI_UIDEO } /* isuideo */,
+ { 32, 6114, 5661, 3, 19, UNI_MERO } /* sc=meroitichieroglyphs */,
+ { 1, 3748, 4335, 14, 3, UNI_NV__13_SLASH_2 } /* numericvalue=13/2 */,
+ { 6, 3474, 530, 6, 6, UNI_INREJANG } /* block=rejang */,
+ { 6, 343, 1304, 4, 2, UNI_CCC__20 } /* ccc=20 */,
+ { 1, 5727, 0, 21, 0, UNI_PRTI } /* inscriptionalparthian */,
+ { 6, 4433, 4701, 12, 10, UNI_LATINEXTADDITIONAL } /* blk=latinextadditional */,
+ { 6, 4355, 540, 17, 6, UNI_TNSA } /* scriptextensions=tangsa */,
+ { 1, 1796, 1027, 7, 6, UNI_SC__YEZI } /* script=yezidi */,
+ { 0, 4355, 825, 17, 7, UNI_SHAW } /* scriptextensions=shavian */,
+ { 3, 6970, 0, 26, 0, UNI_HALFANDFULLFORMS } /* halfwidthandfullwidthforms */,
+ { 101, 1508, 0, 8, 0, UNI_UGAR } /* ugaritic */,
+ { 0, 6114, 301, 3, 5, UNI_SC__ORYA } /* sc=oriya */,
+ { 0, 4291, 102, 10, 2, UNI_LB__HL } /* linebreak=hl */,
+ { 0, 1879, 6134, 4, 20, UNI_GLAGOLITICSUP } /* blk=glagoliticsupplement */,
+ { 2, 536, 6276, 3, 6, UNI_SB__FO } /* sb=format */,
+ { 1, 8244, 6509, 9, 19, UNI_CJKCOMPATIDEOGRAPHSSUP } /* block=cjkcompatideographssup */,
+ { 2, 409, 278, 2, 1, UNI_di_values_index } /* di= */,
+ { 10, 1539, 8340, 3, 34, UNI_DIACRITICALSFORSYMBOLS } /* iscombiningdiacriticalmarksforsymbols */,
+ { 1, 313, 917, 2, 8, UNI_INBASSAVAH } /* inbassavah */,
+ { 56, 6944, 464, 24, 2, UNI_CCC__IS } /* canonicalcombiningclass=is */,
+ { 0, 464, 4500, 2, 15, UNI_UPPERCASELETTER } /* isuppercaseletter */,
+ { 0, 4291, 2549, 10, 10, UNI_LB__BA } /* linebreak=breakafter */,
+ { 2, 8007, 1434, 7, 7, UNI_CJKSTROKES } /* blk=cjkstrokes */,
+ { 1, 1065, 4335, 4, 3, UNI_NV__13_SLASH_2 } /* nv=13/2 */,
+ { 2, 2948, 602, 13, 3, UNI_COMPEX } /* nfcquickcheck=no */,
+ { 30, 8533, 4641, 7, 15, UNI_SYRIACSUP } /* block=syriacsupplement */,
+ { 0, 3351, 398, 13, 2, UNI_NV__16 } /* numericvalue=16 */,
+ { 0, 6114, 1191, 3, 7, UNI_SC__BENG } /* sc=bengali */,
+ { 1, 5886, 934, 21, 6, -UNI__PERL_NCHAR } /* noncharactercodepoint=false */,
+ { 1, 6114, 433, 3, 4, UNI_SC__NKO } /* sc=nkoo */,
+ { 0, 464, 4551, 2, 16, UNI_LINEARBSYLLABARY } /* islinearbsyllabary */,
+ { 2, 3450, 4442, 12, 9, UNI_CYRILLICEXTB } /* blk=cyrillicextendedb */,
+ { 6, 316, 602, 5, 3, -UNI_QMARK } /* qmark=no */,
+ { 0, 2981, 1070, 4, 2, UNI_IN__3_DOT_1 } /* in=v31 */,
+ { 0, 1377, 1624, 3, 7, UNI_WB__LE } /* wb=aletter */,
+ { 2, 464, 4962, 2, 4, UNI_HAN } /* ishani */,
+ { 0, 343, 391, 4, 2, UNI_CCC__26 } /* ccc=26 */,
+ { 1, 4291, 287, 10, 2, UNI_LB__NU } /* linebreak=nu */,
+ { 0, 4872, 3582, 9, 3, UNI_KANGXI } /* block=kangxi */,
+ { 0, 464, 1470, 2, 4, UNI_BUGI } /* isbugi */,
+ { 1, 1796, 421, 7, 4, UNI_KHMR } /* script=khmr */,
+ { 35, 2463, 934, 5, 6, -UNI_JOINC } /* joinc=false */,
+ { 1, 5116, 0, 20, 0, UNI_HLUW } /* anatolianhieroglyphs */,
+ { 6, 1879, 2986, 4, 14, UNI_INPSALTERPAHLAVI } /* blk=psalterpahlavi */,
+ { 6, 1879, 1657, 4, 11, UNI_INCYPROMINOAN } /* blk=cyprominoan */,
+ { 33, 6439, 0, 13, 0, UNI_ZNAMENNYMUSIC } /* znamennymusic */,
+ { 0, 257, 602, 4, 3, -UNI_CWCF } /* cwcf=no */,
+ { 5, 6379, 705, 13, 4, UNI_JG__NOON } /* joininggroup=noon */,
+ { 20, 1465, 355, 4, 2, UNI_wspace_values_index } /* space= */,
+ { 0, 2496, 705, 3, 4, UNI_JG__NOON } /* jg=noon */,
+ { 0, 1395, 4590, 5, 9, UNI_LATINEXTC } /* latinextendedc */,
+ { 17, 4355, 651, 17, 5, UNI_ADLM } /* scriptextensions=adlam */,
+ { 1, 2712, 934, 14, 2, -UNI_ECOMP } /* emojicomponent=f */,
+ { 7, 6114, 1133, 3, 4, UNI_VITH } /* sc=vith */,
+ { 0, 4500, 588, 9, 2, UNI_XPOSIXUPPER } /* uppercase=t */,
+ { 11, 343, 7359, 4, 4, UNI_CCC__216 } /* ccc=atar */,
+ { 2, 7068, 356, 26, 4, UNI_PCM } /* prependedconcatenationmark=yes */,
+ { 4, 875, 278, 5, 1, UNI_uideo_values_index } /* uideo= */,
+ { 4, 1879, 1326, 4, 9, UNI_INOLDTURKIC } /* blk=oldturkic */,
+ { 0, 21, 418, 1, 3, UNI_HANO } /* hano */,
+ { 0, 3474, 5825, 6, 12, UNI_SUNDANESESUP } /* block=sundanesesup */,
+ { 0, 5186, 588, 20, 5, UNI_EXTPICT } /* extendedpictographic=true */,
+ { 12, 6570, 2242, 3, 11, UNI_PLAYINGCARDS } /* inplayingcards */,
+ { 1, 1102, 1480, 4, 4, UNI_GEOR } /* scx=geor */,
+ { 1, 6011, 7851, 7, 20, UNI_ENCLOSEDALPHANUM } /* block=enclosedalphanumerics */,
+ { 10, 6379, 1982, 13, 9, UNI_JG__SYRIACWAW } /* joininggroup=syriacwaw */,
+ { 2, 3351, 891, 13, 2, UNI_NV__10 } /* numericvalue=10 */,
+ { 6, 5087, 369, 10, 2, UNI_WB__SQ } /* wordbreak=sq */,
+ { 0, 4996, 4170, 13, 4, UNI_JG__MANICHAEANFIVE } /* jg=manichaeanfive */,
+ { 4, 6025, 2733, 7, 13, UNI_INGREEK } /* block=greekandcoptic */,
+ { 1, 3669, 1144, 12, 3, UNI_JG__MALAYALAMBHA } /* jg=malayalambha */,
+ { 3, 6379, 7276, 13, 14, UNI_JG__HAMZAONHEHGOAL } /* joininggroup=tehmarbutagoal */,
+ { 1, 4291, 1465, 10, 5, UNI_LB__SP } /* linebreak=space */,
+ { 0, 3474, 721, 6, 7, UNI_INKANNADA } /* block=kannada */,
+ { 6, 4433, 5, 9, 4, UNI_LATINEXTG } /* blk=latinextg */,
+ { 12, 1395, 1646, 5, 4, UNI_LATINEXTD } /* latinextd */,
+ { 34, 8244, 8407, 9, 33, UNI_CJKCOMPATIDEOGRAPHSSUP } /* block=cjkcompatibilityideographssupplement */,
+ { 0, 6114, 1220, 3, 4, UNI_MAKA } /* sc=maka */,
+ { 0, 3474, 1037, 12, 4, UNI_ARABICEXTB } /* block=arabicextb */,
+ { 1, 464, 75, 2, 3, UNI_CWU } /* iscwu */,
+ { 2, 1011, 0, 2, 0, UNI_CI } /* ci */,
+ { 0, 8007, 1698, 7, 4, UNI_CJKEXTF } /* blk=cjkextf */,
+ { 4, 6114, 540, 3, 6, UNI_TNSA } /* sc=tangsa */,
+ { 0, 4355, 975, 17, 8, UNI_GURU } /* scriptextensions=gurmukhi */,
+ { 8, 464, 203, 2, 2, UNI_TITLE } /* islt */,
+ { 0, 2353, 7403, 10, 13, UNI_CYRILLICSUP } /* incyrillicsupplementary */,
+ { 0, 1410, 2074, 8, 2, UNI_CCC__129 } /* ccc=ccc129 */,
+ { 0, 2692, 3721, 9, 5, UNI_ARABICMATH } /* blk=arabicmath */,
+ { 0, 1879, 7385, 4, 28, UNI_PHONETICEXTSUP } /* blk=phoneticextensionssupplement */,
+ { 2, 7527, 383, 3, 2, UNI_LB__HY } /* lb=hy */,
+ { 0, 6114, 2740, 3, 6, UNI_SC__COPT } /* sc=coptic */,
+ { 0, 2353, 361, 3, 5, UNI_INCHAKMA } /* inchakma */,
+ { 0, 34, 3395, 1, 16, UNI_SARB } /* inoldsoutharabian */,
+ { 2, 7208, 2384, 9, 2, UNI__PERL_SURROGATE } /* category=cs */,
+ { 2, 1867, 602, 5, 2, -UNI_BIDIM } /* bidim=n */,
+ { 3, 7068, 934, 26, 6, -UNI_PCM } /* prependedconcatenationmark=false */,
+ { 1, 1879, 840, 4, 7, UNI_INTAGALOG } /* blk=tagalog */,
+ { 2, 1102, 421, 4, 4, UNI_KHMR } /* scx=khmr */,
+ { 20, 6774, 601, 24, 4, -UNI_DI } /* defaultignorablecodepoint=no */,
+ { 0, 1915, 933, 11, 3, -UNI_GRBASE } /* graphemebase=f */,
+ { 3, 464, 3309, 2, 15, UNI_MERC } /* ismeroiticcursive */,
+ { 18, 1102, 5322, 4, 4, UNI_CHER } /* scx=cher */,
+ { 1, 19, 3820, 2, 3, UNI_AGE__9 } /* age=9 */,
+ { 8, 6185, 0, 20, 0, UNI_NV__1000000 } /* numericvalue=1000000 */,
+ { 1, 887, 552, 5, 3, UNI_AGE__14 } /* age=14.0 */,
+ { 5, 2181, 766, 4, 2, UNI_NV__5_SLASH_6 } /* nv=5/6 */,
+ { 39, 1395, 1037, 5, 4, UNI_LATINEXTB } /* latinextb */,
+ { 0, 302, 0, 2, 0, UNI_RI } /* ri */,
+ { 0, 2441, 0, 13, 0, UNI_CASEDLETTER } /* iscasedletter */,
+ { 0, 7201, 0, 16, 0, UNI_gc_values_index } /* generalcategory= */,
+ { 0, 1377, 3411, 3, 12, UNI_WB__EX } /* wb=extendnumlet */,
+ { 1, 1879, 861, 4, 7, UNI_INTIBETAN } /* blk=tibetan */,
+ { 0, 3474, 6134, 6, 13, UNI_GLAGOLITICSUP } /* block=glagoliticsup */,
+ { 4, 3474, 5949, 6, 6, UNI_YIJING } /* block=yijing */,
+ { 1, 1383, 0, 4, 0, UNI_IDST } /* idst */,
+ { 0, 7317, 87, 10, 2, UNI_BC__ON } /* bidiclass=on */,
+ { 0, 1879, 301, 4, 5, UNI_INORIYA } /* blk=oriya */,
+ { 23, 6114, 735, 3, 7, UNI_SC__LINA } /* sc=lineara */,
+ { 1, 581, 398, 5, 2, UNI_CCC__216 } /* ccc=216 */,
+ { 0, 632, 933, 5, 7, -UNI_GRBASE } /* grbase=false */,
+ { 6, 6944, 0, 26, 0, UNI_CCC__27 } /* canonicalcombiningclass=27 */,
+ { 67, 5886, 356, 21, 4, UNI__PERL_NCHAR } /* noncharactercodepoint=yes */,
+ { 0, 600, 128, 3, 3, UNI_DT__MED } /* dt=med */,
+ { 0, 1879, 242, 4, 2, UNI_NB } /* blk=nb */,
+ { 0, 464, 425, 2, 4, UNI_LINA } /* islina */,
+ { 1, 464, 4122, 2, 9, UNI_XPOSIXLOWER } /* islowercase */,
+ { 0, 2973, 602, 5, 3, -UNI_EPRES } /* epres=no */,
+ { 7, 3474, 4442, 12, 9, UNI_ARABICEXTB } /* block=arabicextendedb */,
+ { 1, 7823, 0, 5, 0, UNI_CJK } /* incjk */,
+ { 0, 833, 588, 4, 2, UNI_TERM } /* term=t */,
+ { 0, 313, 1951, 2, 7, UNI_INSOGDIAN } /* insogdian */,
+ { 27, 3474, 242, 6, 2, UNI_NB } /* block=nb */,
+ { 0, 2310, 355, 12, 5, UNI_CI } /* caseignorable=yes */,
+ { 2, 1539, 3123, 3, 14, UNI_CONTROLPICTURES } /* iscontrolpictures */,
+ { 0, 2678, 0, 3, 0, UNI_bc_values_index } /* bc= */,
+ { 0, 7208, 1860, 9, 7, UNI_XPOSIXCNTRL } /* category=control */,
+ { 41, 2260, 552, 4, 3, UNI_IN__14 } /* in=14.0 */,
+ { 1, 4021, 0, 17, 0, UNI_INDICSIYAQNUMBERS } /* indicsiyaqnumbers */,
+ { 2, 3763, 2173, 14, 8, UNI_NV__1_SLASH_20 } /* numericvalue=5.000e-02 */,
+ { 1, 7132, 7937, 5, 29, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* blk=symbolsandpictographsextendeda */,
+ { 0, 2926, 1588, 3, 9, UNI_SMALLFORMS } /* insmallforms */,
+ { 65, 464, 244, 2, 4, UNI_ZYYY } /* iszyyy */,
+ { 0, 3474, 975, 6, 8, UNI_INGURMUKHI } /* block=gurmukhi */,
+ { 1, 2253, 560, 10, 3, UNI_IN__6 } /* presentin=6.0 */,
+ { 0, 8470, 48, 20, 1, UNI_VO__U } /* verticalorientation=u */,
+ { 4, 1102, 477, 4, 3, UNI_VAI } /* scx=vai */,
+ { 0, 536, 1591, 3, 2, UNI_LB__LF } /* sb=lf */,
+ { 0, 464, 188, 2, 4, UNI_SGNW } /* issgnw */,
+ { 0, 19, 4333, 2, 3, UNI_AGE__3 } /* age=3 */,
+ { 19, 2, 602, 3, 2, -UNI_CWL } /* cwl=n */,
+ { 1, 1710, 5100, 7, 4, UNI_XPOSIXSPACE } /* isspaceperl */,
+ { 5, 343, 348, 4, 2, UNI_CCC__18 } /* ccc=18 */,
+ { 1, 719, 3582, 5, 11, UNI_KANGXI } /* inkangxiradicals */,
+ { 0, 6944, 2074, 24, 2, UNI_CCC__29 } /* canonicalcombiningclass=29 */,
+ { 0, 2474, 1491, 9, 4, UNI_MYANMAREXTA } /* ismyanmarexta */,
+ { 2, 6114, 4582, 3, 8, UNI_SC__BOPO } /* sc=bopomofo */,
+ { 1, 1879, 433, 4, 3, UNI_INNKO } /* blk=nko */,
+ { 1, 3622, 4590, 7, 9, UNI_LATINEXTC } /* islatinextendedc */,
+ { 2, 1879, 6629, 4, 15, UNI_MODIFIERLETTERS } /* blk=modifierletters */,
+ { 3, 2726, 3223, 3, 13, UNI_XPOSIXDIGIT } /* gc=decimalnumber */,
+ { 5, 464, 524, 2, 6, UNI_PATSYN } /* ispatsyn */,
+ { 0, 2253, 566, 10, 3, UNI_IN__8 } /* presentin=8.0 */,
+ { 17, 313, 5806, 2, 9, UNI_INMONGOLIAN } /* inmongolian */,
+ { 4, 6239, 5970, 14, 8, UNI_BC__LRO } /* bc=lefttorightoverride */,
+ { 1, 154, 6878, 3, 12, UNI_GEOMETRICSHAPES } /* geometricshapes */,
+ { 1, 5990, 602, 21, 5, UNI_BPT__N } /* bidipairedbrackettype=none */,
+ { 2, 1102, 2986, 4, 14, UNI_PHLP } /* scx=psalterpahlavi */,
+ { 0, 3450, 8499, 5, 34, UNI_DIACRITICALSSUP } /* blk=combiningdiacriticalmarkssupplement */,
+ { 129, 1796, 951, 7, 8, UNI_SC__DUPL } /* script=duployan */,
+ { 0, 3474, 1371, 6, 6, UNI_INTHAANA } /* block=thaana */,
+ { 4, 4355, 666, 17, 4, UNI_LIMB } /* scriptextensions=limb */,
+ { 9, 409, 588, 3, 5, UNI_DIA } /* dia=true */,
+ { 0, 524, 934, 6, 6, -UNI_PATSYN } /* patsyn=false */,
+ { 2, 7208, 2581, 9, 9, UNI__PERL_SURROGATE } /* category=surrogate */,
+ { 0, 7208, 469, 9, 2, UNI_SO } /* category=so */,
+ { 0, 1879, 8078, 4, 18, UNI_IDEOGRAPHICSYMBOLS } /* blk=ideographicsymbols */,
+ { 1, 128, 0, 4, 0, UNI_MEDF } /* medf */,
+ { 2, 2392, 4567, 3, 15, UNI_MISCMATHSYMBOLSB } /* inmiscmathsymbolsb */,
+ { 0, 555, 0, 5, 0, UNI_AGE__5 } /* age=5 */,
+ { 0, 6944, 1650, 24, 7, UNI_CCC__1 } /* canonicalcombiningclass=overlay */,
+ { 0, 4355, 1326, 17, 9, UNI_ORKH } /* scriptextensions=oldturkic */,
+ { 8, 2496, 718, 3, 3, UNI_JG__AIN } /* jg=ain */,
+ { 0, 4355, 1220, 17, 4, UNI_MAKA } /* scriptextensions=maka */,
+ { 5, 1102, 1086, 4, 4, UNI_KTHI } /* scx=kthi */,
+ { 0, 75, 934, 3, 2, -UNI_CWU } /* cwu=f */,
+ { 0, 464, 421, 2, 4, UNI_KHMR } /* iskhmr */,
+ { 3, 513, 1781, 4, 4, UNI_NV__30000 } /* nv=30000 */,
+ { 4, 1796, 3435, 7, 15, UNI_ZANB } /* script=zanabazarsquare */,
+ { 2, 940, 0, 2, 0, UNI_CO } /* co */,
+ { 1, 6011, 8047, 7, 31, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* block=egyptianhieroglyphformatcontrols */,
+ { 4, 3622, 6890, 7, 9, UNI_LATINEXTE } /* islatinextendede */,
+ { 9, 2, 588, 3, 2, UNI_CWL } /* cwl=t */,
+ { 1, 1102, 4392, 4, 11, UNI_SGNW } /* scx=signwriting */,
+ { 3, 6011, 5797, 14, 9, UNI_ETHIOPICEXTA } /* block=ethiopicextendeda */,
+ { 1, 1702, 1695, 8, 3, UNI_ARABICPFB } /* isarabicpfb */,
+ { 2, 6379, 4998, 12, 17, UNI_JG__MANICHAEANTWENTY } /* joininggroup=manichaeantwenty */,
+ { 7, 3474, 1755, 6, 11, UNI_INMEDEFAIDRIN } /* block=medefaidrin */,
+ { 0, 7527, 880, 3, 7, UNI_LB__XX } /* lb=unknown */,
+ { 1, 464, 1344, 2, 9, UNI_PALM } /* ispalmyrene */,
+ { 13, 2802, 7851, 3, 20, UNI_ENCLOSEDALPHANUM } /* isenclosedalphanumerics */,
+ { 0, 3367, 2080, 14, 8, UNI_NV__9_SLASH_2 } /* numericvalue=4.500e+00 */,
+ { 1, 1702, 7474, 3, 26, UNI_ALPHABETICPF } /* isalphabeticpresentationforms */,
+ { 0, 4355, 901, 17, 8, UNI_ARMN } /* scriptextensions=armenian */,
+ { 0, 6114, 1657, 3, 11, UNI_SC__CPMN } /* sc=cyprominoan */,
+ { 0, 1796, 917, 7, 8, UNI_BASS } /* script=bassavah */,
+ { 1, 1796, 502, 7, 4, UNI_LYDI } /* script=lydi */,
+ { 19, 1879, 7290, 4, 27, UNI_OCR } /* blk=opticalcharacterrecognition */,
+ { 7, 4456, 0, 12, 0, UNI_CYRILLICEXTC } /* cyrillicextc */,
+ { 0, 5928, 1607, 3, 7, UNI_VO__U } /* vo=upright */,
+ { 3, 7473, 588, 10, 5, UNI_XPOSIXALPHA } /* alphabetic=true */,
+ { 2, 464, 36, 2, 2, UNI_VS } /* isvs */,
+ { 0, 7317, 3855, 10, 14, UNI_BC__EN } /* bidiclass=europeannumber */,
+ { 0, 1792, 0, 4, 0, UNI_MONG } /* mong */,
+ { 1, 1710, 1808, 3, 10, UNI_SORA } /* issorasompeng */,
+ { 9, 3474, 861, 6, 7, UNI_INTIBETAN } /* block=tibetan */,
+ { 2, 6570, 2688, 11, 4, UNI_INPC__TOPANDLEFT } /* inpc=topandleft */,
+ { 9, 47, 0, 4, 0, UNI_BUHD } /* buhd */,
+ { 21, 7201, 0, 16, 2, UNI_CASEDLETTER } /* generalcategory=l& */,
+ { 8, 3974, 0, 4, 0, UNI_IDSB } /* idsb */,
+ { 0, 1102, 983, 4, 4, UNI_HIRA } /* scx=hira */,
+ { 2, 5397, 0, 3, 0, UNI_PUA } /* pua */,
+ { 0, 8007, 6177, 6, 8, UNI_CJKSYMBOLS } /* blk=cjksymbols */,
+ { 0, 624, 0, 2, 0, UNI_CE } /* ce */,
+ { 0, 4355, 3637, 17, 4, UNI_LISU } /* scriptextensions=lisu */,
+ { 0, 1879, 2229, 4, 8, UNI_PHAISTOS } /* blk=phaistos */,
+ { 2, 464, 1590, 2, 2, UNI_LOWERCASELETTER } /* isll */,
+ { 3, 4355, 1144, 17, 9, UNI_BHKS } /* scriptextensions=bhaiksuki */,
+ { 0, 3462, 2336, 12, 8, UNI_ETHIOPICEXT } /* blk=ethiopicextended */,
+ { 2, 1687, 1310, 4, 7, UNI_ITAL } /* isolditalic */,
+ { 4, 1915, 588, 12, 2, UNI_GRBASE } /* graphemebase=t */,
+ { 13, 313, 1016, 3, 5, UNI_INTELUGU } /* intelugu */,
+ { 0, 3474, 7385, 6, 28, UNI_PHONETICEXTSUP } /* block=phoneticextensionssupplement */,
+ { 0, 7201, 3933, 16, 14, UNI_SK } /* generalcategory=modifiersymbol */,
+ { 1, 343, 692, 4, 3, UNI_CCC__214 } /* ccc=ata */,
+ { 5, 6114, 1571, 3, 10, UNI_SAUR } /* sc=saurashtra */,
+ { 9, 4355, 1086, 17, 4, UNI_KTHI } /* scriptextensions=kthi */,
+ { 19, 3474, 3309, 6, 15, UNI_INMEROITICCURSIVE } /* block=meroiticcursive */,
+ { 1, 6687, 1144, 22, 3, UNI_JG__MALAYALAMBHA } /* joininggroup=malayalambha */,
+ { 0, 1796, 3285, 7, 6, UNI_HEBR } /* script=hebrew */,
+ { 4, 3722, 356, 4, 2, UNI_MATH } /* math=y */,
+ { 1, 34, 4091, 1, 13, UNI_DIACRITICALS } /* indiacriticals */,
+ { 4, 313, 6439, 2, 13, UNI_ZNAMENNYMUSIC } /* inznamennymusic */,
+ { 28, 6944, 7342, 18, 7, UNI_CCC__R } /* canonicalcombiningclass=r */,
+ { 5, 7208, 5166, 9, 20, UNI_PC } /* category=connectorpunctuation */,
+ { 2, 1879, 502, 4, 6, UNI_INLYDIAN } /* blk=lydian */,
+ { 8, 6114, 1227, 3, 4, UNI_SC__MULT } /* sc=mult */,
+ { 0, 6114, 1344, 3, 9, UNI_PALM } /* sc=palmyrene */,
+ { 9, 1102, 618, 4, 7, UNI_ELYM } /* scx=elymaic */,
+ { 4, 1465, 587, 4, 3, UNI_XPOSIXSPACE } /* space=t */,
+ { 2, 1704, 7481, 4, 20, UNI_ARABICPFA } /* arabicpresentationformsa */,
+ { 2, 612, 4300, 2, 8, UNI_LB__ZW } /* lb=zwspace */,
+ { 0, 2712, 1548, 12, 3, UNI_ecomp_values_index } /* emojicomponent= */,
+ { 9, 464, 2729, 2, 5, UNI_C } /* isother */,
+ { 0, 8289, 0, 11, 0, UNI_CO } /* category=co */,
+ { 1, 3338, 3477, 11, 3, UNI_nfdqc_values_index } /* nfdquickcheck= */,
+ { 37, 302, 356, 2, 2, UNI_RI } /* ri=y */,
+ { 4, 1796, 15, 7, 4, UNI_SC__ADLM } /* script=adlm */,
+ { 0, 2496, 6164, 3, 9, UNI_JG__YEHBARREE } /* jg=yehbarree */,
+ { 0, 1102, 3396, 4, 15, UNI_SARB } /* scx=oldsoutharabian */,
+ { 80, 5586, 1591, 21, 2, UNI_LB__LF } /* graphemeclusterbreak=lf */,
+ { 0, 464, 4671, 2, 4, UNI_TALE } /* istale */,
+ { 0, 2392, 5038, 3, 18, UNI_MODIFIERTONELETTERS } /* inmodifiertoneletters */,
+ { 0, 7201, 259, 16, 2, UNI_CF } /* generalcategory=cf */,
+ { 5, 2496, 2972, 2, 2, UNI_JG__E } /* jg=e */,
+ { 0, 7823, 6352, 5, 11, UNI_CJKRADICALSSUP } /* incjkradicalssup */,
+ { 5, 2625, 934, 13, 6, -UNI_PATSYN } /* patternsyntax=false */,
+ { 36, 4355, 5661, 17, 19, UNI_MERO } /* scriptextensions=meroitichieroglyphs */,
+ { 1, 9, 0, 3, 0, UNI_OCR } /* ocr */,
+ { 3, 313, 5322, 2, 8, UNI_INCHEROKEE } /* incherokee */,
+ { 0, 3974, 588, 17, 2, UNI_IDSB } /* idsbinaryoperator=t */,
+ { 0, 7148, 562, 25, 2, UNI_CCC__107 } /* canonicalcombiningclass=107 */,
+ { 3, 1879, 681, 4, 5, UNI_INRUNIC } /* blk=runic */,
+ { 0, 2353, 1037, 10, 4, UNI_CYRILLICEXTB } /* incyrillicextb */,
+ { 4, 4355, 854, 17, 7, UNI_TAVT } /* scriptextensions=taiviet */,
+ { 3, 4450, 3123, 7, 14, UNI_CONTROLPICTURES } /* block=controlpictures */,
+ { 18, 4551, 0, 7, 0, UNI_LINB } /* linearb */,
+ { 8, 7688, 4990, 23, 6, UNI_JG__MANICHAEANSAMEKH } /* joininggroup=manichaeansamekh */,
+ { 9, 719, 2373, 4, 9, UNI_KATAKANAEXT } /* inkatakanaext */,
+ { 0, 1102, 5825, 4, 4, UNI_SUND } /* scx=sund */,
+ { 0, 343, 398, 4, 2, UNI_CCC__16 } /* ccc=16 */,
+ { 1, 581, 1303, 5, 2, UNI_CCC__AR } /* ccc=232 */,
+ { 0, 1777, 0, 7, 0, UNI_NV__1000 } /* nv=1000 */,
+ { 5, 3462, 8047, 5, 31, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* blk=egyptianhieroglyphformatcontrols */,
+ { 0, 4092, 0, 9, 0, UNI_DIA } /* diacritic */,
+ { 0, 6039, 2603, 7, 12, UNI_MISCTECHNICAL } /* block=misctechnical */,
+ { 6, 1796, 776, 7, 7, UNI_OLCK } /* script=olchiki */,
+ { 4, 3462, 6091, 5, 21, UNI_EARLYDYNASTICCUNEIFORM } /* blk=earlydynasticcuneiform */,
+ { 6, 2726, 3933, 3, 14, UNI_SK } /* gc=modifiersymbol */,
+ { 9, 3915, 934, 17, 6, -UNI_EPRES } /* emojipresentation=false */,
+ { 3, 4857, 0, 8, 0, UNI_TAMILSUP } /* tamilsup */,
+ { 0, 464, 4338, 2, 17, UNI_RI } /* isregionalindicator */,
+ { 2, 7823, 6509, 5, 16, UNI_CJKCOMPATIDEOGRAPHS } /* incjkcompatideographs */,
+ { 0, 3809, 1300, 14, 3, UNI_NV__9000 } /* numericvalue=9000 */,
+ { 3, 58, 2695, 2, 5, UNI_SC__ARAB } /* sc=arab */,
+ { 0, 34, 1667, 1, 12, UNI_DOMINO } /* indominotiles */,
+ { 0, 3974, 602, 17, 2, -UNI_IDSB } /* idsbinaryoperator=n */,
+ { 1, 1879, 6728, 4, 21, UNI_MEETEIMAYEKEXT } /* blk=meeteimayekextensions */,
+ { 1, 7431, 1303, 27, 2, UNI_CCC__32 } /* canonicalcombiningclass=ccc32 */,
+ { 5, 1102, 1614, 4, 4, UNI_WARA } /* scx=wara */,
+ { 0, 4355, 90, 17, 4, UNI_GREK } /* scriptextensions=grek */,
+ { 0, 1796, 909, 7, 8, UNI_BALI } /* script=balinese */,
+ { 1, 343, 4947, 4, 2, UNI_CCC__8 } /* ccc=kv */,
+ { 3, 7605, 0, 22, 0, UNI_LB__H3 } /* hangulsyllabletype=lvt */,
+ { 13, 6447, 0, 5, 0, UNI_MUSIC } /* music */,
+ { 0, 6114, 409, 3, 4, UNI_DIAK } /* sc=diak */,
+ { 5, 6379, 1736, 13, 3, UNI_JG__KAF } /* joininggroup=kaf */,
+ { 96, 5147, 4701, 19, 10, UNI_LATINEXTADDITIONAL } /* block=latinextendedadditional */,
+ { 69, 1796, 200, 7, 4, UNI_SC__TAML } /* script=taml */,
+ { 23, 6114, 192, 3, 4, UNI_SHAW } /* sc=shaw */,
+ { 11, 2205, 2145, 4, 8, UNI_NV__7_SLASH_8 } /* nv=8.750e-01 */,
+ { 0, 3823, 602, 16, 3, -UNI_STERM } /* sentenceterminal=no */,
+ { 0, 3748, 2617, 14, 8, UNI_NV__1_SLASH_10 } /* numericvalue=1.000e-01 */,
+ { 11, 2365, 5797, 8, 9, UNI_ETHIOPICEXTA } /* ethiopicextendeda */,
+ { 7, 4355, 618, 17, 7, UNI_ELYM } /* scriptextensions=elymaic */,
+ { 5, 3622, 1698, 7, 4, UNI_LATINEXTF } /* islatinextf */,
+ { 7, 7132, 1588, 5, 9, UNI_SMALLFORMS } /* blk=smallforms */,
+ { 14, 5087, 3594, 10, 2, UNI_WB__NL } /* wordbreak=nl */,
+ { 5, 756, 356, 6, 2, UNI_NFKCQC__Y } /* nfkcqc=y */,
+ { 0, 287, 0, 5, 0, UNI_NSHU } /* nushu */,
+ { 15, 8244, 0, 9, 0, UNI_CJK } /* block=cjk */,
+ { 1, 34, 2782, 1, 3, UNI_NO } /* isno */,
+ { 3, 313, 574, 2, 7, UNI_INAVESTAN } /* inavestan */,
+ { 1, 2428, 0, 6, 0, UNI_IPAEXT } /* ipaext */,
+ { 3, 1796, 27, 7, 4, UNI_AHOM } /* script=ahom */,
+ { 1, 3474, 1317, 6, 9, UNI_INOLDPERMIC } /* block=oldpermic */,
+ { 4, 2454, 5223, 4, 16, UNI_INPUNCTUATION } /* isgeneralpunctuation */,
+ { 1, 464, 7828, 2, 16, UNI_UIDEO } /* isunifiedideograph */,
+ { 0, 78, 80, 2, 2, UNI_CYRL } /* cyrl */,
+ { 0, 7018, 7481, 6, 20, UNI_ARABICPFA } /* inarabicpresentationformsa */,
+ { 17, 6402, 959, 14, 6, UNI_SB__EX } /* sentencebreak=extend */,
+ { 8, 296, 2128, 3, 9, UNI_NV__1_SLASH_32 } /* nv=3.125e-02 */,
+ { 21, 2, 8340, 1, 34, UNI_DIACRITICALSFORSYMBOLS } /* combiningdiacriticalmarksforsymbols */,
+ { 4, 6803, 0, 20, 0, UNI_CE } /* compositionexclusion */,
+ { 0, 14, 57, 1, 1, UNI_MN } /* mn */,
+ { 1, 1796, 735, 7, 7, UNI_SC__LINA } /* script=lineara */,
+ { 8, 2033, 356, 5, 4, UNI_XPOSIXALPHA } /* alpha=yes */,
+ { 3, 2474, 2382, 3, 10, UNI_MISCSYMBOLS } /* ismiscsymbols */,
+ { 2, 916, 587, 4, 3, UNI_EBASE } /* ebase=t */,
+ { 16, 2153, 1300, 4, 2, UNI_NV__400 } /* nv=400 */,
+ { 1, 5087, 3432, 10, 3, UNI_LB__ZWJ } /* wordbreak=zwj */,
+ { 1, 343, 464, 4, 2, UNI_CCC__IS } /* ccc=is */,
+ { 2, 24, 356, 3, 4, UNI_XPOSIXXDIGIT } /* hex=yes */,
+ { 0, 2454, 2733, 3, 13, UNI_INGREEK } /* isgreekandcoptic */,
+ { 27, 3474, 3885, 6, 17, UNI_INCAUCASIANALBANIAN } /* block=caucasianalbanian */,
+ { 8, 2153, 294, 4, 1, UNI_NV__44 } /* nv=44 */,
+ { 1, 916, 355, 4, 5, UNI_EBASE } /* ebase=yes */,
+ { 0, 6114, 3839, 3, 6, UNI_TANG } /* sc=tangut */,
+ { 5, 1548, 0, 3, 0, UNI_nt_values_index } /* nt= */,
+ { 11, 6011, 6091, 7, 21, UNI_EARLYDYNASTICCUNEIFORM } /* block=earlydynasticcuneiform */,
+ { 4, 644, 898, 3, 2, UNI_GCB__V } /* hst=v */,
+ { 0, 7132, 6052, 7, 13, UNI_SUPMATHOPERATORS } /* blk=supmathoperators */,
+ { 0, 3794, 6199, 14, 5, UNI_NV__800000 } /* numericvalue=800000 */,
+ { 1, 2253, 346, 9, 3, UNI_IN__11 } /* presentin=11 */,
+ { 14, 8276, 2728, 21, 6, UNI_INSC__OTHER } /* indicsyllabiccategory=other */,
+ { 18, 1867, 602, 5, 3, -UNI_BIDIM } /* bidim=no */,
+ { 41459, 6114, 593, 3, 7, UNI_DSRT } /* sc=deseret */,
+ { 5, 3474, 2229, 6, 12, UNI_PHAISTOS } /* block=phaistosdisc */,
+ { 0, 4355, 1344, 17, 4, UNI_PALM } /* scriptextensions=palm */,
+ { 1, 7431, 398, 27, 2, UNI_CCC__16 } /* canonicalcombiningclass=ccc16 */,
+ { 1, 6944, 353, 24, 2, UNI_CCC__9 } /* canonicalcombiningclass=vr */,
+ { 1, 1065, 294, 5, 2, UNI_NV__1_SLASH_40 } /* nv=1/40 */,
+ { 14, 1220, 0, 7, 0, UNI_MAKA } /* makasar */,
+ { 96, 2496, 6392, 3, 10, UNI_JG__AFRICANQAF } /* jg=africanqaf */,
+ { 10, 736, 5769, 3, 15, UNI_ENCLOSEDALPHANUM } /* inenclosedalphanum */,
+ { 0, 464, 4793, 2, 18, UNI_RUMI } /* isruminumeralsymbols */,
+ { 29, 5087, 2961, 10, 7, UNI_WB__NU } /* wordbreak=numeric */,
+ { 2, 1879, 3188, 4, 15, UNI_INIMPERIALARAMAIC } /* blk=imperialaramaic */,
+ { 9, 1216, 3641, 4, 10, UNI_KANASUP } /* kanasupplement */,
+ { 0, 3474, 7416, 6, 14, UNI_PUA } /* block=privateusearea */,
+ { 2, 313, 4962, 2, 14, UNI_INHANIFIROHINGYA } /* inhanifirohingya */,
+ { 11, 4355, 798, 17, 4, UNI_LANA } /* scriptextensions=lana */,
+ { 2, 1991, 1413, 11, 2, UNI_JT__C } /* joiningtype=c */,
+ { 1, 2363, 2336, 10, 8, UNI_ETHIOPICEXT } /* inethiopicextended */,
+ { 0, 464, 3285, 2, 6, UNI_HEBR } /* ishebrew */,
+ { 4, 3474, 6284, 6, 19, UNI_JAMOEXTB } /* block=hanguljamoextendedb */,
+ { 7, 4322, 294, 15, 1, UNI_NV__3_SLASH_4 } /* numericvalue=3/4 */,
+ { 49, 1879, 328, 8, 3, UNI_KANASUP } /* blk=kanasup */,
+ { 5, 464, 228, 2, 4, UNI_XPEO } /* isxpeo */,
+ { 0, 306, 356, 5, 2, UNI__PERL_PATWS } /* patws=y */,
+ { 1, 1102, 1951, 4, 4, UNI_SOGD } /* scx=sogd */,
+ { 4, 508, 1769, 3, 3, UNI_nfdqc_values_index } /* nfdqc= */,
+ { 2, 2802, 7851, 3, 29, UNI_ENCLOSEDALPHANUMSUP } /* isenclosedalphanumericsupplement */,
+ { 6, 6114, 6594, 3, 4, UNI_BRAH } /* sc=brah */,
+ { 0, 7201, 1860, 16, 7, UNI_XPOSIXCNTRL } /* generalcategory=control */,
+ { 0, 4783, 355, 9, 2, UNI_wspace_values_index } /* whitespace= */,
+ { 1, 3450, 7908, 5, 29, UNI_CUNEIFORMNUMBERS } /* blk=cuneiformnumbersandpunctuation */,
+ { 1, 3669, 0, 16, 0, UNI_JG__MALAYALAMNNNA } /* jg=malayalamnnna */,
+ { 0, 1383, 601, 6, 2, UNI_ids_values_index } /* idstart= */,
+ { 1, 296, 2073, 3, 2, UNI_NV__42 } /* nv=42 */,
+ { 0, 4322, 0, 16, 0, UNI_NV__3_SLASH_2 } /* numericvalue=3/2 */,
+ { 1, 6944, 5472, 24, 9, UNI_CCC__BL } /* canonicalcombiningclass=belowleft */,
+ { 3, 4006, 0, 15, 0, UNI_CURRENCYSYMBOLS } /* currencysymbols */,
+ { 32, 4355, 160, 17, 4, UNI_PHLP } /* scriptextensions=phlp */,
+ { 3, 7208, 2728, 8, 6, UNI_C } /* category=other */,
+ { 0, 7584, 3236, 18, 3, UNI_DT__ENC } /* decompositiontype=enc */,
+ { 0, 464, 302, 2, 2, UNI_RI } /* isri */,
+ { 2, 1879, 27, 4, 4, UNI_INAHOM } /* blk=ahom */,
+ { 1, 6749, 356, 25, 4, UNI_CWKCF } /* changeswhennfkccasefolded=yes */,
+ { 4, 1879, 1280, 4, 9, UNI_INNABATAEAN } /* blk=nabataean */,
+ { 9, 1977, 311, 5, 5, UNI_POSIXPRINT } /* posixprint */,
+ { 9, 8, 2332, 1, 7, UNI_GREEKEXT } /* greekext */,
+ { 5, 3053, 588, 13, 2, UNI_POSIXXDIGIT } /* asciihexdigit=t */,
+ { 33, 34, 4900, 1, 6, UNI_EMOJI } /* isemoji */,
+ { 2, 464, 681, 2, 5, UNI_RUNR } /* isrunic */,
+ { 40, 14, 6549, 1, 21, UNI_MISCTECHNICAL } /* miscellaneoustechnical */,
+ { 5, 1377, 0, 3, 0, UNI_wb_values_index } /* wb= */,
+ { 2, 1796, 1027, 7, 4, UNI_SC__YEZI } /* script=yezi */,
+ { 0, 5544, 934, 21, 6, -UNI_CWT } /* changeswhentitlecased=false */,
+ { 89, 3933, 2774, 6, 8, UNI_SK } /* modifiersymbol */,
+ { 2, 3654, 0, 11, 0, UNI_MC } /* spacingmark */,
+ { 1, 1975, 4500, 7, 5, UNI_POSIXUPPER } /* isposixupper */,
+ { 25, 275, 1837, 4, 8, UNI_WB__EB } /* gcb=ebasegaz */,
+ { 6, 6114, 437, 3, 4, UNI_OGAM } /* sc=ogam */,
+ { 4, 7880, 1698, 5, 4, UNI_CJKEXTF } /* iscjkextf */,
+ { 10, 6114, 1529, 3, 10, UNI_KHAR } /* sc=kharoshthi */,
+ { 0, 2153, 349, 4, 1, UNI_NV__48 } /* nv=48 */,
+ { 71, 12, 934, 3, 6, -UNI_PCM } /* pcm=false */,
+ { 1, 5099, 1472, 17, 3, UNI__PERL_CHARNAME_BEGIN } /* _perl_charname_begin */,
+ { 1, 1102, 3309, 4, 15, UNI_MERC } /* scx=meroiticcursive */,
+ { 8, 296, 2616, 3, 9, UNI_NV__1_SLASH_2 } /* nv=5.000e-01 */,
+ { 8, 3474, 6919, 6, 25, UNI_SYMBOLSFORLEGACYCOMPUTING } /* block=symbolsforlegacycomputing */,
+ { 0, 6944, 2094, 25, 2, UNI_CCC__202 } /* canonicalcombiningclass=202 */,
+ { 20, 5523, 588, 21, 2, UNI_CWL } /* changeswhenlowercased=t */,
+ { 2, 14, 2813, 1, 3, UNI_MAHJ } /* mahj */,
+ { 1, 1796, 530, 7, 6, UNI_RJNG } /* script=rejang */,
+ { 6, 4450, 60, 7, 3, UNI_INCHAM } /* block=cham */,
+ { 0, 959, 934, 8, 6, -UNI_EXT } /* extender=false */,
+ { 1, 1796, 4857, 7, 5, UNI_SC__TAML } /* script=tamil */,
+ { 4, 7473, 356, 10, 2, UNI_XPOSIXALPHA } /* alphabetic=y */,
+ { 0, 3351, 1069, 14, 2, UNI_NV__2_SLASH_3 } /* numericvalue=2/3 */,
+ { 8, 1383, 588, 4, 2, UNI_IDST } /* idst=t */,
+ { 2, 6114, 783, 3, 4, UNI_OSMA } /* sc=osma */,
+ { 0, 6379, 709, 13, 4, UNI_JG__SEEN } /* joininggroup=seen */,
+ { 5, 5607, 7221, 10, 17, UNI_IDENTIFIERSTATUS__RESTRICTED } /* identifierstatus=restricted */,
+ { 17, 4355, 3991, 17, 7, UNI_BRAI } /* scriptextensions=braille */,
+ { 0, 1879, 6833, 4, 14, UNI_BYZANTINEMUSIC } /* blk=byzantinemusic */,
+ { 1, 2692, 4918, 5, 9, UNI_ALCHEMICAL } /* blk=alchemical */,
+ { 4, 4355, 794, 17, 4, UNI_KALI } /* scriptextensions=kali */,
+ { 80, 464, 959, 2, 8, UNI_EXT } /* isextender */,
+ { 4, 464, 783, 2, 7, UNI_OSMA } /* isosmanya */,
+ { 0, 696, 5057, 3, 18, UNI_OTTOMANSIYAQNUMBERS } /* isottomansiyaqnumbers */,
+ { 15, 1796, 1280, 7, 9, UNI_NBAT } /* script=nabataean */,
+ { 33, 34, 3054, 1, 3, UNI_CI } /* isci */,
+ { 0, 5087, 3411, 10, 12, UNI_WB__EX } /* wordbreak=extendnumlet */,
+ { 4, 4355, 1529, 17, 10, UNI_KHAR } /* scriptextensions=kharoshthi */,
+ { 10, 600, 3249, 3, 5, UNI_DT__FIN } /* dt=final */,
+ { 8, 8182, 6574, 23, 20, UNI_INPC__TOPANDBOTTOMANDLEFT } /* indicpositionalcategory=topandbottomandleft */,
+ { 0, 5523, 934, 21, 6, -UNI_CWL } /* changeswhenlowercased=false */,
+ { 3, 536, 2928, 3, 3, UNI_SB__SE } /* sb=sep */,
+ { 0, 6379, 787, 13, 3, UNI_JG__NYA } /* joininggroup=nya */,
+ { 0, 661, 0, 5, 0, UNI_DOGR } /* dogra */,
+ { 0, 3351, 1303, 13, 2, UNI_NV__32 } /* numericvalue=32 */,
+ { 1, 6114, 868, 3, 4, UNI_SC__TIRH } /* sc=tirh */,
+ { 0, 3763, 1073, 15, 2, UNI_NV__5_SLASH_12 } /* numericvalue=5/12 */,
+ { 20, 3474, 840, 6, 7, UNI_INTAGALOG } /* block=tagalog */,
+ { 3, 3809, 1300, 14, 2, UNI_NV__900 } /* numericvalue=900 */,
+ { 1, 313, 5305, 3, 10, UNI_TAIXUANJING } /* intaixuanjing */,
+ { 41, 7660, 588, 17, 5, UNI_VS } /* variationselector=true */,
+ { 0, 1879, 477, 4, 3, UNI_INVAI } /* blk=vai */,
+ { 8, 7527, 546, 3, 2, UNI_EBASE } /* lb=eb */,
+ { 5, 6114, 1009, 3, 6, UNI_LYCI } /* sc=lycian */,
+ { 5, 1233, 5057, 3, 18, UNI_OTTOMANSIYAQNUMBERS } /* inottomansiyaqnumbers */,
+ { 0, 7688, 4186, 23, 4, UNI_JG__MANICHAEANRESH } /* joininggroup=manichaeanresh */,
+ { 0, 5, 6091, 1, 21, UNI_EARLYDYNASTICCUNEIFORM } /* earlydynasticcuneiform */,
+ { 0, 520, 1300, 4, 2, UNI_NV__700 } /* nv=700 */,
+ { 3, 3474, 681, 6, 5, UNI_INRUNIC } /* block=runic */,
+ { 0, 464, 1009, 2, 6, UNI_LYCI } /* islycian */,
+ { 0, 951, 0, 8, 0, UNI_DUPL } /* duployan */,
+ { 1, 4355, 5139, 16, 8, UNI_MYMR } /* scriptextensions=myanmar */,
+ { 9, 5136, 5797, 11, 9, UNI_MYANMAREXTA } /* blk=myanmarextendeda */,
+ { 1, 1102, 1271, 4, 9, UNI_SIND } /* scx=khudawadi */,
+ { 4, 4515, 0, 18, 0, UNI_IDST } /* idstrinaryoperator */,
+ { 34, 3651, 0, 14, 0, UNI_MN } /* nonspacingmark */,
+ { 9, 296, 6198, 3, 8, UNI_NV__10000000 } /* nv=10000000 */,
+ { 16, 7527, 153, 3, 2, UNI_LB__SG } /* lb=sg */,
+ { 66, 7828, 3150, 15, 2, UNI_uideo_values_index } /* unifiedideograph= */,
+ { 0, 7688, 4174, 23, 4, UNI_JG__MANICHAEANHETH } /* joininggroup=manichaeanheth */,
+ { 4, 3748, 1298, 15, 3, UNI_NV__1_SLASH_160 } /* numericvalue=1/160 */,
+ { 0, 1102, 1198, 4, 7, UNI_GRAN } /* scx=grantha */,
+ { 6, 6774, 588, 25, 2, UNI_DI } /* defaultignorablecodepoint=t */,
+ { 0, 437, 0, 4, 0, UNI_OGAM } /* ogam */,
+ { 2, 1102, 5139, 3, 8, UNI_MYMR } /* scx=myanmar */,
+ { 0, 600, 6944, 6, 5, UNI_DT__NONCANON } /* dt=noncanon */,
+ { 1, 7317, 3651, 10, 14, UNI_BC__NSM } /* bidiclass=nonspacingmark */,
+ { 0, 8007, 6334, 7, 18, UNI_CJKCOMPATFORMS } /* blk=cjkcompatibilityforms */,
+ { 5, 2463, 602, 5, 3, -UNI_JOINC } /* joinc=no */,
+ { 0, 1102, 1320, 4, 4, UNI_PERM } /* scx=perm */,
+ { 17, 1796, 1021, 7, 6, UNI_WCHO } /* script=wancho */,
+ { 12, 1102, 429, 4, 4, UNI_MRO } /* scx=mroo */,
+ { 16, 313, 2740, 2, 6, UNI_INCOPTIC } /* incoptic */,
+ { 0, 4355, 1571, 17, 4, UNI_SAUR } /* scriptextensions=saur */,
+ { 0, 464, 261, 2, 4, UNI_CWCM } /* iscwcm */,
+ { 1, 1796, 106, 7, 4, UNI_HMNG } /* script=hmng */,
+ { 7, 313, 4062, 2, 15, UNI_VEDICEXT } /* invedicextensions */,
+ { 0, 3351, 772, 13, 4, UNI_NV__17_SLASH_2 } /* numericvalue=17/2 */,
+ { 4, 1975, 4081, 7, 5, UNI_POSIXPUNCT } /* isposixpunct */,
+ { 26, 1440, 356, 2, 2, UNI_SD } /* sd=y */,
+ { 0, 3474, 1668, 6, 6, UNI_DOMINO } /* block=domino */,
+ { 10, 6112, 7459, 14, 15, UNI_INSC__CONSONANTSUCCEEDINGREPHA } /* insc=consonantsucceedingrepha */,
+ { 73, 3474, 7732, 6, 29, UNI_ENCLOSEDIDEOGRAPHICSUP } /* block=enclosedideographicsupplement */,
+ { 5, 2692, 6142, 8, 5, UNI_ARABICSUP } /* blk=arabicsup */,
+ { 22, 34, 4757, 1, 19, UNI_ZP } /* isparagraphseparator */,
+ { 0, 3809, 2157, 14, 8, UNI_NV__11_SLASH_12 } /* numericvalue=9.167e-01 */,
+ { 37, 296, 6967, 2, 3, UNI_NV__27 } /* nv=27 */,
+ { 1, 1516, 1037, 6, 4, UNI_KANAEXTB } /* iskanaextb */,
+ { 0, 608, 536, 2, 3, UNI_idsb_values_index } /* idsb= */,
+ { 4, 3053, 934, 13, 2, -UNI_POSIXXDIGIT } /* asciihexdigit=f */,
+ { 1, 37, 1256, 1, 6, UNI_SOYO } /* soyombo */,
+ { 2, 1410, 2263, 7, 2, UNI_CCC__14 } /* ccc=ccc14 */,
+ { 5, 7527, 184, 3, 2, UNI_LB__SA } /* lb=sa */,
+ { 1, 2392, 1052, 3, 7, UNI_INMAHAJANI } /* inmahajani */,
+ { 0, 1102, 1220, 4, 4, UNI_MAKA } /* scx=maka */,
+ { 0, 1383, 934, 7, 6, -UNI_IDS } /* idstart=false */,
+ { 1, 7527, 13, 3, 2, UNI_LB__CM } /* lb=cm */,
+ { 7, 464, 4392, 2, 11, UNI_SGNW } /* issignwriting */,
+ { 7, 1539, 1895, 3, 11, UNI_CHESSSYMBOLS } /* ischesssymbols */,
+ { 4, 1796, 1470, 7, 4, UNI_SC__BUGI } /* script=bugi */,
+ { 0, 1704, 8110, 6, 29, UNI_ARABICMATH } /* arabicmathematicalalphabeticsymbols */,
+ { 0, 24, 602, 3, 3, -UNI_XPOSIXXDIGIT } /* hex=no */,
+ { 1, 4355, 224, 17, 4, UNI_WCHO } /* scriptextensions=wcho */,
+ { 2, 5087, 703, 10, 2, UNI_WB__EB } /* wordbreak=em */,
+ { 0, 3474, 5117, 7, 19, UNI_INANATOLIANHIEROGLYPHS } /* block=anatolianhieroglyphs */,
+ { 2, 2392, 6549, 3, 21, UNI_MISCTECHNICAL } /* inmiscellaneoustechnical */,
+ { 0, 3474, 7500, 6, 17, UNI_ANCIENTGREEKMUSIC } /* block=ancientgreekmusic */,
+ { 3, 600, 369, 3, 3, UNI_DT__SQR } /* dt=sqr */,
+ { 1, 2033, 356, 5, 2, UNI_XPOSIXALPHA } /* alpha=y */,
+ { 1, 1710, 1588, 3, 9, UNI_SMALLFORMS } /* issmallforms */,
+ { 0, 2274, 587, 10, 6, UNI_XIDC } /* xidcontinue=true */,
+ { 2, 4322, 6215, 14, 8, UNI_NV__1_SLASH_320 } /* numericvalue=3.125e-03 */,
+ { 4, 4355, 4202, 17, 17, UNI_KITS } /* scriptextensions=khitansmallscript */,
+ { 0, 7182, 0, 3, 0, UNI_CJK } /* cjk */,
+ { 65, 1807, 0, 4, 0, UNI_SORA } /* sora */,
+ { 0, 3000, 602, 13, 2, -UNI_QMARK } /* quotationmark=n */,
+ { 5, 1879, 4081, 4, 11, UNI_INPUNCTUATION } /* blk=punctuation */,
+ { 0, 4291, 278, 9, 3, UNI_LB__B2 } /* linebreak=b2 */,
+ { 0, 5607, 0, 15, 0, UNI_identifiertype_values_index } /* identifiertype= */,
+ { 0, 1410, 1073, 7, 2, UNI_CCC__12 } /* ccc=ccc12 */,
+ { 1, 7201, 110, 16, 2, UNI_ZL } /* generalcategory=zl */,
+ { 17, 875, 934, 5, 2, -UNI_UIDEO } /* uideo=f */,
+ { 0, 1102, 220, 4, 4, UNI_TOTO } /* scx=toto */,
+ { 0, 296, 2074, 3, 2, UNI_NV__29 } /* nv=29 */,
+ { 41, 1879, 1390, 4, 10, UNI_ASCII } /* blk=basiclatin */,
+ { 7, 4776, 355, 16, 3, UNI__PERL_PATWS } /* patternwhitespace=y */,
+ { 1, 5087, 2265, 10, 9, UNI_WB__WSEGSPACE } /* wordbreak=wsegspace */,
+ { 0, 2726, 4122, 3, 15, UNI_LOWERCASELETTER } /* gc=lowercaseletter */,
+ { 1, 343, 292, 4, 2, UNI_CCC__30 } /* ccc=30 */,
+ { 0, 2, 933, 1, 3, -UNI_CE } /* ce=f */,
+ { 2, 3474, 997, 6, 6, UNI_INKAITHI } /* block=kaithi */,
+ { 0, 5607, 6774, 15, 16, UNI_IDENTIFIERTYPE__DEFAULTIGNORABLE } /* identifiertype=defaultignorable */,
+ { 6, 5748, 6052, 5, 13, UNI_SUPMATHOPERATORS } /* insupmathoperators */,
+ { 0, 7431, 585, 28, 2, UNI_CCC__122 } /* canonicalcombiningclass=ccc122 */,
+ { 2, 2726, 4598, 3, 16, UNI_PE } /* gc=closepunctuation */,
+ { 1, 464, 2973, 2, 5, UNI_EPRES } /* isepres */,
+ { 0, 3593, 4464, 7, 4, UNI_LATINEXTC } /* inlatinextc */,
+ { 0, 2463, 356, 11, 4, UNI_JOINC } /* joincontrol=yes */,
+ { 2, 313, 4827, 2, 8, UNI_BAMUMSUP } /* inbamumsup */,
+ { 0, 4355, 2740, 17, 6, UNI_COPT } /* scriptextensions=coptic */,
+ { 21, 24, 602, 3, 2, -UNI_XPOSIXXDIGIT } /* hex=n */,
+ { 12, 3474, 7020, 6, 24, UNI_ARABICPFB } /* block=arabicpresentationformsb */,
+ { 0, 313, 6031, 2, 8, UNI_INGEORGIAN } /* ingeorgian */,
+ { 0, 6114, 666, 3, 4, UNI_SC__LIMB } /* sc=limb */,
+ { 0, 464, 6970, 2, 26, UNI_HALFANDFULLFORMS } /* ishalfwidthandfullwidthforms */,
+ { 0, 8007, 6505, 29, 5, UNI_CJKEXTC } /* blk=cjkunifiedideographsextensionc */,
+ { 2, 464, 3915, 2, 17, UNI_EPRES } /* isemojipresentation */,
+ { 18, 5087, 5718, 10, 9, UNI_WB__EB } /* wordbreak=emodifier */,
+ { 0, 1796, 1144, 7, 9, UNI_BHKS } /* script=bhaiksuki */,
+ { 1, 8533, 4538, 16, 13, UNI_SUPPUNCTUATION } /* block=supplementalpunctuation */,
+ { 0, 7527, 5, 3, 2, UNI_LB__EX } /* lb=ex */,
+ { 1, 7201, 602, 15, 2, UNI_N } /* generalcategory=n */,
+ { 10, 4355, 6728, 17, 11, UNI_MTEI } /* scriptextensions=meeteimayek */,
+ { 8, 1065, 3777, 4, 2, UNI_NV__1_SLASH_8 } /* nv=1/8 */,
+ { 1, 313, 3885, 2, 17, UNI_INCAUCASIANALBANIAN } /* incaucasianalbanian */,
+ { 6, 2496, 2519, 3, 10, UNI_JG__KNOTTEDHEH } /* jg=knottedheh */,
+ { 3, 3722, 602, 4, 3, -UNI_MATH } /* math=no */,
+ { 1, 1879, 4582, 4, 11, UNI_BOPOMOFOEXT } /* blk=bopomofoext */,
+ { 0, 316, 588, 5, 2, UNI_QMARK } /* qmark=t */,
+ { 0, 252, 0, 5, 0, UNI_XPOSIXCNTRL } /* cntrl */,
+ { 3, 6944, 692, 24, 3, UNI_CCC__214 } /* canonicalcombiningclass=ata */,
+ { 2, 7605, 3178, 20, 10, UNI_GCB__L } /* hangulsyllabletype=leadingjamo */,
+ { 0, 2485, 3060, 6, 6, UNI_XPOSIXXDIGIT } /* xposixxdigit */,
+ { 2, 3450, 7908, 5, 15, UNI_CUNEIFORMNUMBERS } /* blk=cuneiformnumbers */,
+ { 0, 6774, 934, 25, 2, -UNI_DI } /* defaultignorablecodepoint=f */,
+ { 1, 464, 180, 2, 4, UNI_RUNR } /* isrunr */,
+ { 67, 7201, 3654, 16, 11, UNI_MC } /* generalcategory=spacingmark */,
+ { 0, 5846, 0, 19, 0, UNI_SUPARROWSC } /* supplementalarrowsc */,
+ { 2, 313, 477, 2, 3, UNI_INVAI } /* invai */,
+ { 24, 7208, 4758, 9, 18, UNI_ZP } /* category=paragraphseparator */,
+ { 10, 464, 6629, 2, 14, UNI_LM } /* ismodifierletter */,
+ { 1, 1975, 1638, 3, 8, UNI_POSIXSPACE } /* isperlspace */,
+ { 0, 4077, 0, 15, 0, UNI_PD } /* dashpunctuation */,
+ { 1, 24, 1104, 2, 3, UNI_XPOSIXXDIGIT } /* hex=t */,
+ { 8, 6114, 469, 3, 4, UNI_SOGO } /* sc=sogo */,
+ { 1, 600, 946, 3, 5, UNI_DT__SUP } /* dt=super */,
+ { 0, 464, 8592, 2, 43, UNI_UCASEXTA } /* isunifiedcanadianaboriginalsyllabicsextendeda */,
+ { 1, 4901, 587, 16, 3, UNI_EBASE } /* emojimodifierbase=t */,
+ { 8, 3794, 1300, 14, 2, UNI_NV__800 } /* numericvalue=800 */,
+ { 0, 7880, 4611, 28, 4, UNI_CJKEXTF } /* iscjkunifiedideographsextensionf */,
+ { 18, 3722, 0, 4, 0, UNI_MATH } /* math */,
+ { 0, 6379, 7262, 13, 14, UNI_JG__NOJOININGGROUP } /* joininggroup=nojoininggroup */,
+ { 22, 887, 0, 8, 0, UNI_AGE__10 } /* age=10.0 */,
+ { 2, 409, 4844, 2, 13, UNI_DIACRITICALSSUP } /* diacriticalssup */,
+ { 0, 184, 0, 4, 0, UNI_SAMR } /* samr */,
+ { 0, 6039, 2030, 7, 11, UNI_MATHALPHANUM } /* block=mathalphanum */,
+ { 8, 1410, 3365, 7, 2, UNI_CCC__36 } /* ccc=ccc36 */,
+ { 0, 4433, 5584, 15, 3, UNI_LATINEXTG } /* blk=latinextendedg */,
+ { 72, 1539, 8150, 3, 24, UNI_DIACRITICALS } /* iscombiningdiacriticalmarks */,
+ { 0, 3593, 0, 11, 0, UNI_LATINEXTE } /* inlatinexte */,
+ { 9, 794, 0, 4, 0, UNI_KALI } /* kali */,
+ { 0, 464, 1867, 2, 5, UNI_BIDIM } /* isbidim */,
+ { 3, 7201, 273, 16, 2, UNI_ZP } /* generalcategory=zp */,
+ { 0, 1796, 540, 7, 6, UNI_TNSA } /* script=tangsa */,
+ { 32, 1382, 601, 7, 2, UNI_xids_values_index } /* xidstart= */,
+ { 16, 1065, 764, 4, 2, UNI_NV__1_SLASH_2 } /* nv=1/2 */,
+ { 7, 1796, 120, 7, 3, UNI_LAO } /* script=lao */,
+ { 4, 1977, 2033, 5, 5, UNI_POSIXALPHA } /* posixalpha */,
+ { 6, 464, 2812, 2, 4, UNI_MAHJ } /* ismahj */,
+ { 4, 1102, 437, 4, 4, UNI_OGAM } /* scx=ogam */,
+ { 0, 3474, 4582, 6, 8, UNI_INBOPOMOFO } /* block=bopomofo */,
+ { 0, 8244, 0, 26, 0, UNI_CJK } /* block=cjkunifiedideographs */,
+ { 6, 2, 601, 2, 2, UNI_cwt_values_index } /* cwt= */,
+ { 0, 3228, 0, 5, 0, UNI_XPOSIXALNUM } /* alnum */,
+ { 0, 464, 1965, 2, 10, UNI_YIRADICALS } /* isyiradicals */,
+ { 0, 34, 1190, 1, 5, UNI_BENG } /* isbeng */,
+ { 4, 313, 5949, 2, 21, UNI_YIJING } /* inyijinghexagramsymbols */,
+ { 0, 2310, 5620, 12, 4, -UNI_CI } /* caseignorable=no */,
+ { 5, 1102, 184, 4, 4, UNI_SAMR } /* scx=samr */,
+ { 1, 6379, 1046, 13, 5, UNI_JG__KHAPH } /* joininggroup=khaph */,
+ { 0, 1796, 465, 7, 4, UNI_SC__SHRD } /* script=shrd */,
+ { 1, 536, 285, 3, 2, UNI_SB__XX } /* sb=xx */,
+ { 6, 464, 6594, 2, 6, UNI_BRAH } /* isbrahmi */,
+ { 0, 313, 890, 2, 5, UNI_IN__10 } /* in=10.0 */,
+ { 0, 3474, 3637, 6, 4, UNI_INLISU } /* block=lisu */,
+ { 0, 1915, 0, 5, 0, UNI_XPOSIXGRAPH } /* graph */,
+ { 0, 6011, 2336, 14, 8, UNI_ETHIOPICEXT } /* block=ethiopicextended */,
+ { 3, 3474, 2217, 6, 12, UNI_INOLDHUNGARIAN } /* block=oldhungarian */,
+ { 1, 2726, 4137, 3, 15, UNI_PS } /* gc=openpunctuation */,
+ { 1, 3474, 7377, 6, 8, UNI_INKATAKANA } /* block=katakana */,
+ { 14, 5844, 5858, 5, 7, UNI_SUPARROWSC } /* issuparrowsc */,
+ { 41, 1102, 82, 4, 4, UNI_DSRT } /* scx=dsrt */,
+ { 1, 6114, 220, 3, 4, UNI_TOTO } /* sc=toto */,
+ { 21, 895, 1303, 5, 2, UNI_AGE__3_DOT_2 } /* age=v32 */,
+ { 17, 916, 5620, 4, 4, -UNI_EBASE } /* ebase=no */,
+ { 0, 1702, 0, 8, 0, UNI_ARAB } /* isarabic */,
+ { 20, 1102, 5340, 4, 4, UNI_DEVA } /* scx=deva */,
+ { 2, 409, 588, 3, 2, UNI_DIA } /* dia=t */,
+ { 9, 313, 890, 2, 3, UNI_IN__10 } /* in=10 */,
+ { 1, 4355, 51, 17, 4, UNI_CAKM } /* scriptextensions=cakm */,
+ { 50, 1059, 356, 6, 2, UNI_DT__NONE } /* nfkdqc=y */,
+ { 2, 6114, 917, 3, 4, UNI_BASS } /* sc=bass */,
+ { 1, 7044, 2775, 16, 8, UNI_DIACRITICALSFORSYMBOLS } /* combiningmarksforsymbols */,
+ { 0, 464, 1887, 2, 4, UNI_UCAS } /* isucas */,
+ { 0, 4291, 3691, 10, 13, UNI_LB__PR } /* linebreak=prefixnumeric */,
+ { 0, 3794, 0, 15, 0, UNI_NV__80 } /* numericvalue=80 */,
+ { 6, 4355, 861, 17, 7, UNI_TIBT } /* scriptextensions=tibetan */,
+ { 4, 6114, 47, 3, 4, UNI_SC__BUHD } /* sc=buhd */,
+ { 0, 3474, 1845, 6, 11, UNI_YISYLLABLES } /* block=yisyllables */,
+ { 1, 3474, 6303, 6, 23, UNI_COMPATJAMO } /* block=hangulcompatibilityjamo */,
+ { 1, 1539, 3869, 3, 16, UNI_UCAS } /* iscanadiansyllabics */,
+ { 1, 3462, 5769, 5, 18, UNI_ENCLOSEDALPHANUMSUP } /* blk=enclosedalphanumsup */,
+ { 82, 2474, 1539, 3, 9, UNI_MISCARROWS } /* ismiscarrows */,
+ { 10, 5340, 0, 18, 0, UNI_DEVANAGARIEXT } /* devanagariextended */,
+ { 11, 7584, 4533, 18, 7, UNI_DT__INIT } /* decompositiontype=initial */,
+ { 21, 4355, 4436, 16, 6, UNI_LATN } /* scriptextensions=latin */,
+ { 35, 3474, 1657, 6, 11, UNI_INCYPROMINOAN } /* block=cyprominoan */,
+ { 0, 464, 880, 2, 7, UNI_ZZZZ } /* isunknown */,
+ { 1, 343, 351, 4, 2, UNI_CCC__91 } /* ccc=91 */,
+ { 0, 4901, 5620, 16, 4, -UNI_EBASE } /* emojimodifierbase=no */,
+ { 5, 3474, 6142, 10, 12, UNI_ARABICSUP } /* block=arabicsupplement */,
+ { 0, 1879, 1021, 4, 6, UNI_INWANCHO } /* blk=wancho */,
+ { 0, 4355, 5907, 17, 4, UNI_SINH } /* scriptextensions=sinh */,
+ { 6, 2454, 5812, 7, 13, UNI_GEORGIANSUP } /* isgeorgiansupplement */,
+ { 0, 313, 3672, 2, 9, UNI_INMALAYALAM } /* inmalayalam */,
+ { 0, 3748, 294, 15, 2, UNI_NV__1_SLASH_40 } /* numericvalue=1/40 */,
+ { 9, 1796, 337, 7, 4, UNI_CARI } /* script=cari */,
+ { 72, 313, 1125, 2, 8, UNI_INTIFINAGH } /* intifinagh */,
+ { 1, 343, 0, 4, 0, UNI_ccc_values_index } /* ccc= */,
+ { 0, 6114, 1205, 3, 9, UNI_SC__QAAI } /* sc=inherited */,
+ { 20, 1796, 1205, 7, 9, UNI_SC__QAAI } /* script=inherited */,
+ { 1, 3748, 3777, 14, 2, UNI_NV__1_SLASH_8 } /* numericvalue=1/8 */,
+ { 1, 2712, 356, 5, 4, UNI_EMOJI } /* emoji=yes */,
+ { 3, 1102, 742, 4, 7, UNI_MAND } /* scx=mandaic */,
+ { 17, 6112, 6368, 12, 11, UNI_INSC__CONSONANTSUBJOINED } /* insc=consonantsubjoined */,
+ { 0, 316, 934, 5, 2, -UNI_QMARK } /* qmark=f */,
+ { 2, 1102, 132, 4, 4, UNI_MTEI } /* scx=mtei */,
+ { 0, 3474, 4582, 6, 16, UNI_BOPOMOFOEXT } /* block=bopomofoextended */,
+ { 2, 3474, 6538, 6, 11, UNI_NUMBERFORMS } /* block=numberforms */,
+ { 0, 464, 1785, 2, 11, UNI_HMNG } /* ispahawhhmong */,
+ { 9, 7208, 3061, 9, 5, UNI_XPOSIXDIGIT } /* category=digit */,
+ { 8, 296, 2138, 3, 2, UNI_NV__33 } /* nv=33 */,
+ { 4, 1796, 19, 7, 4, UNI_AGHB } /* script=aghb */,
+ { 0, 5718, 602, 4, 3, -UNI_EMOD } /* emod=no */,
+ { 5, 875, 356, 5, 4, UNI_UIDEO } /* uideo=yes */,
+ { 0, 4355, 1927, 17, 12, UNI_GONG } /* scriptextensions=gunjalagondi */,
+ { 0, 2678, 1687, 14, 7, UNI_BC__RLI } /* bc=righttoleftisolate */,
+ { 0, 1410, 2138, 8, 2, UNI_WB__EB } /* ccc=ccc133 */,
+ { 9, 6114, 140, 3, 4, UNI_NARB } /* sc=narb */,
+ { 0, 464, 337, 2, 6, UNI_CARI } /* iscarian */,
+ { 0, 6114, 429, 3, 4, UNI_MRO } /* sc=mroo */,
+ { 0, 464, 6447, 2, 5, UNI_MUSIC } /* ismusic */,
+ { 2, 2217, 0, 12, 0, UNI_HUNG } /* oldhungarian */,
+ { 4, 1102, 1495, 4, 4, UNI_JAVA } /* scx=java */,
+ { 0, 8182, 6574, 23, 13, UNI_INPC__TOPANDBOTTOM } /* indicpositionalcategory=topandbottom */,
+ { 0, 3351, 1781, 14, 4, UNI_NV__20000 } /* numericvalue=20000 */,
+ { 9, 1796, 1951, 7, 7, UNI_SC__SOGD } /* script=sogdian */,
+ { 2, 4092, 934, 9, 6, -UNI_DIA } /* diacritic=false */,
+ { 0, 296, 2063, 3, 9, UNI_NV__1_SLASH_8 } /* nv=1.250e-01 */,
+ { 13, 328, 5858, 3, 7, UNI_SUPARROWSC } /* suparrowsc */,
+ { 0, 4355, 321, 17, 5, UNI_TALE } /* scriptextensions=taile */,
+ { 3, 1879, 1335, 4, 9, UNI_INOLDUYGHUR } /* blk=olduyghur */,
+ { 8, 3474, 4962, 6, 14, UNI_INHANIFIROHINGYA } /* block=hanifirohingya */,
+ { 0, 1796, 742, 7, 7, UNI_SC__MAND } /* script=mandaic */,
+ { 1, 4996, 4182, 13, 4, UNI_JG__MANICHAEANQOPH } /* jg=manichaeanqoph */,
+ { 0, 6114, 338, 4, 3, UNI_CARI } /* sc=cari */,
+ { 1, 832, 0, 5, 0, UNI_STERM } /* sterm */,
+ { 20, 2729, 1899, 5, 6, UNI_SO } /* othersymbol */,
+ { 0, 6114, 721, 3, 7, UNI_SC__KNDA } /* sc=kannada */,
+ { 2, 1967, 356, 7, 2, UNI_RADICAL } /* radical=y */,
+ { 0, 2726, 110, 3, 2, UNI_ZL } /* gc=zl */,
+ { 11, 3474, 6533, 6, 16, UNI_INDICNUMBERFORMS } /* block=indicnumberforms */,
+ { 0, 6749, 588, 25, 5, UNI_CWKCF } /* changeswhennfkccasefolded=true */,
+ { 1, 296, 0, 3, 0, UNI_nv_values_index } /* nv= */,
+ { 0, 7688, 4182, 23, 4, UNI_JG__MANICHAEANQOPH } /* joininggroup=manichaeanqoph */,
+ { 1, 3351, 763, 13, 3, UNI_NV__1_SLASH_2 } /* numericvalue=1/2 */,
+ { 0, 6944, 182, 24, 2, UNI_CCC__0 } /* canonicalcombiningclass=nr */,
+ { 0, 6114, 496, 3, 6, UNI_SC__KHOJ } /* sc=khojki */,
+ { 1, 4726, 6199, 14, 5, UNI_NV__600000 } /* numericvalue=600000 */,
+ { 51, 513, 299, 4, 1, UNI_NV__39 } /* nv=39 */,
+ { 3, 7182, 2335, 2, 5, UNI_CJKEXTE } /* cjkexte */,
+ { 2, 1548, 287, 3, 2, UNI_NT__NU } /* nt=nu */,
+ { 6, 1879, 6462, 4, 24, UNI_HIGHPUSURROGATES } /* blk=highprivateusesurrogates */,
+ { 17, 1796, 47, 7, 4, UNI_SC__BUHD } /* script=buhd */,
+ { 2, 343, 522, 3, 2, UNI_CCC__7 } /* ccc=7 */,
+ { 1, 555, 346, 3, 3, UNI_AGE__11 } /* age=11 */,
+ { 3, 1879, 4827, 4, 8, UNI_BAMUMSUP } /* blk=bamumsup */,
+ { 0, 7208, 647, 8, 2, UNI_L } /* category=l */,
+ { 11, 2890, 588, 2, 2, UNI_JT__T } /* jt=t */,
+ { 6, 4450, 1037, 14, 4, UNI_CYRILLICEXTB } /* block=cyrillicextb */,
+ { 4, 4872, 1491, 10, 4, UNI_KANAEXTA } /* block=kanaexta */,
+ { 6, 1879, 8592, 4, 42, UNI_UCASEXT } /* blk=unifiedcanadianaboriginalsyllabicsextended */,
+ { 0, 6114, 5907, 3, 4, UNI_SC__SINH } /* sc=sinh */,
+ { 0, 6944, 585, 25, 2, UNI_CCC__BR } /* canonicalcombiningclass=222 */,
+ { 2, 4827, 328, 5, 3, UNI_BAMUMSUP } /* bamumsup */,
+ { 3, 823, 0, 4, 0, UNI_DASH } /* dash */,
+ { 18, 600, 1823, 3, 3, UNI_DT__SUB } /* dt=sub */,
+ { 34, 7605, 1847, 22, 8, UNI_LB__H3 } /* hangulsyllabletype=lvtsyllable */,
+ { 1, 8244, 3571, 9, 11, UNI_CJKCOMPATFORMS } /* block=cjkcompatforms */,
+ { 1, 1377, 1882, 2, 3, UNI_WB__KA } /* wb=ka */,
+ { 1, 3915, 588, 17, 5, UNI_EPRES } /* emojipresentation=true */,
+ { 0, 1075, 2080, 4, 8, UNI_NV__5_SLASH_2 } /* nv=2.500e+00 */,
+ { 8, 6944, 3107, 24, 5, UNI_CCC__A } /* canonicalcombiningclass=above */,
+ { 1, 6402, 2961, 14, 7, UNI_SB__NU } /* sentencebreak=numeric */,
+ { 2, 691, 0, 5, 0, UNI_BATK } /* batak */,
+ { 17, 2483, 311, 8, 5, UNI_XPOSIXPRINT } /* isxposixprint */,
+ { 64, 7527, 2569, 3, 10, UNI_LB__WJ } /* lb=wordjoiner */,
+ { 1, 464, 901, 2, 8, UNI_ARMN } /* isarmenian */,
+ { 17, 409, 356, 2, 4, UNI_DI } /* di=yes */,
+ { 0, 2153, 518, 4, 2, UNI_NV__4_SLASH_5 } /* nv=4/5 */,
+ { 18, 1867, 934, 12, 6, -UNI_BIDIM } /* bidimirrored=false */,
+ { 0, 2726, 4614, 3, 16, UNI_PF } /* gc=finalpunctuation */,
+ { 6, 464, 5116, 2, 20, UNI_HLUW } /* isanatolianhieroglyphs */,
+ { 21, 4355, 445, 17, 4, UNI_ORKH } /* scriptextensions=orkh */,
+ { 0, 8244, 6309, 9, 13, UNI_CJKCOMPAT } /* block=cjkcompatibility */,
+ { 0, 58, 1105, 2, 5, UNI_TALU } /* sc=talu */,
+ { 176, 383, 2261, 5, 2, UNI_hyphen_values_index } /* hyphen= */,
+ { 0, 4355, 1470, 17, 4, UNI_BUGI } /* scriptextensions=bugi */,
+ { 1, 6114, 1009, 3, 4, UNI_LYCI } /* sc=lyci */,
+ { 50, 3748, 294, 15, 1, UNI_NV__1_SLASH_4 } /* numericvalue=1/4 */,
+ { 9, 2, 587, 1, 3, UNI_CE } /* ce=t */,
+ { 2, 2474, 7975, 3, 32, UNI_MISCMATHSYMBOLSA } /* ismiscellaneousmathematicalsymbolsa */,
+ { 1, 6011, 1037, 14, 4, UNI_ETHIOPICEXTB } /* block=ethiopicextb */,
+ { 1, 261, 934, 4, 6, -UNI_CWCM } /* cwcm=false */,
+ { 0, 4322, 1304, 15, 2, UNI_NV__3_SLASH_20 } /* numericvalue=3/20 */,
+ { 0, 464, 7416, 2, 14, UNI_PUA } /* isprivateusearea */,
+ { 5, 6011, 0, 14, 0, UNI_INETHIOPIC } /* block=ethiopic */,
+ { 68, 1571, 0, 10, 0, UNI_SAUR } /* saurashtra */,
+ { 0, 3974, 588, 4, 2, UNI_IDSB } /* idsb=t */,
+ { 35, 275, 1379, 2, 2, UNI_M } /* gc=m */,
+ { 2, 7660, 934, 17, 6, -UNI_VS } /* variationselector=false */,
+ { 4, 6944, 1153, 25, 2, UNI_CCC__L } /* canonicalcombiningclass=224 */,
+ { 0, 1796, 1015, 7, 6, UNI_SC__TELU } /* script=telugu */,
+ { 2, 1027, 0, 6, 0, UNI_YEZI } /* yezidi */,
+ { 1, 3622, 4123, 3, 14, UNI_LOWERCASELETTER } /* islowercaseletter */,
+ { 4, 5087, 10, 10, 2, UNI_LB__CR } /* wordbreak=cr */,
+ { 9, 719, 4203, 3, 16, UNI_INKHITANSMALLSCRIPT } /* inkhitansmallscript */,
+ { 0, 6114, 477, 3, 3, UNI_VAI } /* sc=vai */,
+ { 12, 3474, 6447, 6, 5, UNI_MUSIC } /* block=music */,
+ { 0, 1102, 1289, 4, 9, UNI_TALU } /* scx=newtailue */,
+ { 1, 102, 104, 2, 2, UNI_HLUW } /* hluw */,
+ { 0, 6944, 3365, 24, 2, UNI_CCC__36 } /* canonicalcombiningclass=36 */,
+ { 10, 1879, 1491, 8, 4, UNI_KANAEXTA } /* blk=kanaexta */,
+ { 17, 1796, 1451, 7, 10, UNI_DIAK } /* script=divesakuru */,
+ { 0, 5544, 588, 21, 5, UNI_CWT } /* changeswhentitlecased=true */,
+ { 1, 7317, 5446, 10, 18, UNI_BC__FSI } /* bidiclass=firststrongisolate */,
+ { 2, 2726, 3654, 3, 11, UNI_MC } /* gc=spacingmark */,
+ { 0, 6570, 2230, 3, 7, UNI_PHAISTOS } /* inphaistos */,
+ { 11, 3351, 2155, 12, 10, UNI_NV__5_SLASH_12 } /* numericvalue=4.167e-01 */,
+ { 8, 1174, 1906, 3, 9, UNI_EA__A } /* ea=ambiguous */,
+ { 4, 34, 4550, 1, 17, UNI_LINEARBSYLLABARY } /* inlinearbsyllabary */,
+ { 0, 6112, 3213, 5, 10, UNI_INSC__PUREKILLER } /* insc=purekiller */,
+ { 7, 4783, 355, 9, 3, UNI_XPOSIXSPACE } /* whitespace=y */,
+ { 7, 343, 0, 5, 0, UNI_CCC__1 } /* ccc=1 */,
+ { 0, 4355, 360, 17, 6, UNI_CAKM } /* scriptextensions=chakma */,
+ { 26, 3090, 2733, 5, 13, UNI_INGREEK } /* blk=greekandcoptic */,
+ { 0, 12, 602, 3, 2, -UNI_PCM } /* pcm=n */,
+ { 0, 6114, 4582, 3, 4, UNI_SC__BOPO } /* sc=bopo */,
+ { 1, 275, 538, 2, 2, UNI_S } /* gc=s */,
+ { 20, 4355, 1495, 17, 4, UNI_JAVA } /* scriptextensions=java */,
+ { 10, 4996, 194, 14, 2, UNI_JG__MANICHAEANTAW } /* jg=manichaeantaw */,
+ { 1, 1879, 220, 4, 4, UNI_INTOTO } /* blk=toto */,
+ { 1, 3974, 602, 4, 2, -UNI_IDSB } /* idsb=n */,
+ { 3, 1879, 6069, 4, 22, UNI_DIACRITICALSFORSYMBOLS } /* blk=diacriticalsforsymbols */,
+ { 2, 3450, 6142, 10, 12, UNI_CYRILLICSUP } /* blk=cyrillicsupplement */,
+ { 1, 2485, 1082, 6, 4, UNI_XPOSIXWORD } /* xposixword */,
+ { 0, 1879, 5284, 4, 20, UNI_ININSCRIPTIONALPAHLAVI } /* blk=inscriptionalpahlavi */,
+ { 0, 6114, 991, 3, 6, UNI_HATR } /* sc=hatran */,
+ { 0, 2260, 0, 3, 0, UNI_in_values_index } /* in= */,
+ { 1, 270, 934, 3, 6, -UNI_CWT } /* cwt=false */,
+ { 18, 4355, 465, 17, 4, UNI_SHRD } /* scriptextensions=shrd */,
+ { 8, 3450, 3123, 5, 14, UNI_CONTROLPICTURES } /* blk=controlpictures */,
+ { 0, 1377, 1842, 3, 3, UNI_WB__EB } /* wb=gaz */,
+ { 8, 477, 0, 3, 0, UNI_VAI } /* vai */,
+ { 5, 736, 7175, 3, 26, UNI_ENCLOSEDCJK } /* inenclosedcjklettersandmonths */,
+ { 20, 5586, 10, 21, 2, UNI_LB__CR } /* graphemeclusterbreak=cr */,
+ { 0, 6114, 2041, 3, 12, UNI_MEND } /* sc=mendekikakui */,
+ { 6, 2353, 4442, 10, 9, UNI_CYRILLICEXTB } /* incyrillicextendedb */,
+ { 21, 4291, 6173, 10, 12, UNI_LB__SY } /* linebreak=breaksymbols */,
+ { 33, 15, 575, 1, 6, UNI_AVST } /* avestan */,
+ { 2, 1382, 588, 8, 5, UNI_XIDS } /* xidstart=true */,
+ { 67, 600, 7135, 2, 4, UNI_DT__SUP } /* dt=sup */,
+ { 4, 2726, 5103, 3, 2, UNI_CASEDLETTER } /* gc=l_ */,
+ { 0, 536, 5, 3, 2, UNI_SB__EX } /* sb=ex */,
+ { 33, 4901, 356, 13, 4, UNI_EMOD } /* emojimodifier=yes */,
+ { 7, 3595, 4701, 13, 10, UNI_LATINEXTADDITIONAL } /* latinextendedadditional */,
+ { 6, 7068, 588, 26, 2, UNI_PCM } /* prependedconcatenationmark=t */,
+ { 0, 8533, 4641, 7, 8, UNI_SYRIACSUP } /* block=syriacsup */,
+ { 0, 2, 356, 3, 4, UNI_CWL } /* cwl=yes */,
+ { 0, 7201, 12, 16, 2, UNI_PC } /* generalcategory=pc */,
+ { 1, 1011, 356, 2, 4, UNI_CI } /* ci=yes */,
+ { 0, 1704, 6142, 4, 5, UNI_ARABICSUP } /* arabicsup */,
+ { 2, 1796, 1198, 7, 7, UNI_SC__GRAN } /* script=grantha */,
+ { 1, 1796, 67, 7, 4, UNI_SC__CPMN } /* script=cpmn */,
+ { 0, 6462, 0, 24, 0, UNI_HIGHPUSURROGATES } /* highprivateusesurrogates */,
+ { 8, 1796, 1220, 7, 7, UNI_MAKA } /* script=makasar */,
+ { 1, 7018, 5797, 8, 9, UNI_ARABICEXTA } /* inarabicextendeda */,
+ { 4, 464, 1867, 2, 12, UNI_BIDIM } /* isbidimirrored */,
+ { 26, 1991, 3273, 12, 12, UNI_JT__R } /* joiningtype=rightjoining */,
+ { 1, 1090, 0, 4, 0, UNI_LINB } /* linb */,
+ { 1, 2463, 0, 11, 0, UNI_JOINC } /* joincontrol */,
+ { 0, 1991, 6573, 4, 3, UNI_JOINC } /* joinc=t */,
+ { 3, 6039, 4567, 7, 15, UNI_MISCMATHSYMBOLSB } /* block=miscmathsymbolsb */,
+ { 0, 6402, 58, 14, 2, UNI_SB__SC } /* sentencebreak=sc */,
+ { 2, 1440, 588, 2, 5, UNI_SD } /* sd=true */,
+ { 0, 4355, 441, 17, 4, UNI_OLCK } /* scriptextensions=olck */,
+ { 17, 895, 891, 6, 2, UNI_AGE__11 } /* age=v110 */,
+ { 0, 6114, 1086, 3, 4, UNI_SC__KTHI } /* sc=kthi */,
+ { 4, 115, 0, 2, 0, UNI_SK } /* sk */,
+ { 56, 7431, 2074, 27, 2, UNI_CCC__29 } /* canonicalcombiningclass=ccc29 */,
+ { 1, 7431, 3364, 27, 2, UNI_CCC__23 } /* canonicalcombiningclass=ccc23 */,
+ { 64, 1879, 6303, 4, 23, UNI_COMPATJAMO } /* blk=hangulcompatibilityjamo */,
+ { 3, 3462, 5769, 5, 15, UNI_ENCLOSEDALPHANUM } /* blk=enclosedalphanum */,
+ { 12, 1796, 1009, 7, 4, UNI_LYCI } /* script=lyci */,
+ { 1, 940, 602, 6, 3, -UNI_COMPEX } /* compex=no */,
+ { 1, 536, 2277, 4, 8, UNI_SB__SC } /* sb=scontinue */,
+ { 4, 4355, 776, 17, 7, UNI_OLCK } /* scriptextensions=olchiki */,
+ { 9, 313, 1551, 2, 10, UNI_INOLDPERSIAN } /* inoldpersian */,
+ { 2, 3474, 2812, 6, 12, UNI_MAHJONG } /* block=mahjongtiles */,
+ { 1, 1879, 6538, 4, 11, UNI_NUMBERFORMS } /* blk=numberforms */,
+ { 0, 7201, 628, 16, 2, UNI_PI } /* generalcategory=pi */,
+ { 0, 96, 646, 1, 3, UNI_JT__L } /* jt=l */,
+ { 1, 464, 651, 2, 5, UNI_ADLM } /* isadlam */,
+ { 73, 4355, 735, 17, 7, UNI_LINA } /* scriptextensions=lineara */,
+ { 20, 1102, 3465, 3, 9, UNI_ETHI } /* scx=ethiopic */,
+ { 0, 7688, 4166, 23, 4, UNI_JG__MANICHAEANBETH } /* joininggroup=manichaeanbeth */,
+ { 0, 2353, 3123, 3, 14, UNI_CONTROLPICTURES } /* incontrolpictures */,
+ { 0, 7208, 3722, 9, 10, UNI_SM } /* category=mathsymbol */,
+ { 0, 3351, 523, 13, 1, UNI_NV__7 } /* numericvalue=7 */,
+ { 24, 313, 3053, 2, 5, UNI_ASCII } /* inascii */,
+ { 1, 3450, 1491, 12, 4, UNI_CYRILLICEXTA } /* blk=cyrillicexta */,
+ { 2, 2353, 6142, 8, 5, UNI_CYRILLICSUP } /* incyrillicsup */,
+ { 2, 7823, 1434, 5, 7, UNI_CJKSTROKES } /* incjkstrokes */,
+ { 1, 14, 5807, 1, 11, UNI_MONGOLIANSUP } /* mongoliansup */,
+ { 131, 4355, 116, 17, 4, UNI_KNDA } /* scriptextensions=knda */,
+ { 2, 1398, 1407, 9, 3, UNI_BOXDRAWING } /* inboxdrawing */,
+ { 0, 313, 3637, 2, 4, UNI_INLISU } /* inlisu */,
+ { 0, 296, 398, 3, 2, UNI_NV__16 } /* nv=16 */,
+ { 59, 3474, 502, 6, 6, UNI_INLYDIAN } /* block=lydian */,
+ { 12, 464, 1551, 2, 10, UNI_XPEO } /* isoldpersian */,
+ { 54, 1879, 686, 4, 5, UNI_INTAKRI } /* blk=takri */,
+ { 8, 3351, 2073, 13, 2, UNI_NV__42 } /* numericvalue=42 */,
+ { 5, 2496, 7276, 3, 10, UNI_JG__TEHMARBUTA } /* jg=tehmarbuta */,
+ { 0, 8244, 8089, 9, 21, UNI_CJKSYMBOLS } /* block=cjksymbolsandpunctuation */,
+ { 1, 1796, 1015, 7, 4, UNI_SC__TELU } /* script=telu */,
+ { 0, 7688, 4978, 23, 6, UNI_JG__MANICHAEANDALETH } /* joininggroup=manichaeandaleth */,
+ { 2, 464, 3164, 2, 14, UNI_GREXT } /* isgraphemeextend */,
+ { 36, 464, 115, 2, 2, UNI_SK } /* issk */,
+ { 3, 1075, 2120, 4, 8, UNI_NV__1_SLASH_4 } /* nv=2.500e-01 */,
+ { 1, 2365, 623, 6, 5, UNI_ETHIOPICEXT } /* ethiopicext */,
+ { 49, 1102, 1353, 4, 4, UNI_PAUC } /* scx=pauc */,
+ { 0, 6538, 0, 11, 0, UNI_NUMBERFORMS } /* numberforms */,
+ { 20, 4355, 728, 17, 7, UNI_KALI } /* scriptextensions=kayahli */,
+ { 19, 6379, 3254, 13, 7, UNI_JG__SEMKATH } /* joininggroup=semkath */,
+ { 5, 3622, 1036, 3, 2, UNI_LOE } /* isloe */,
+ { 4, 265, 588, 5, 5, UNI_CWKCF } /* cwkcf=true */,
+ { 0, 6799, 934, 24, 6, -UNI_COMPEX } /* fullcompositionexclusion=false */,
+ { 75, 1441, 356, 10, 4, UNI_DEP } /* deprecated=yes */,
+ { 7, 7132, 4641, 5, 8, UNI_SYRIACSUP } /* blk=syriacsup */,
+ { 0, 625, 356, 7, 4, UNI_EXTPICT } /* extpict=yes */,
+ { 0, 8078, 0, 32, 0, UNI_IDEOGRAPHICSYMBOLS } /* ideographicsymbolsandpunctuation */,
+ { 3, 1975, 4122, 7, 5, UNI_POSIXLOWER } /* isposixlower */,
+ { 0, 4996, 4186, 13, 4, UNI_JG__MANICHAEANRESH } /* jg=manichaeanresh */,
+ { 1, 464, 124, 2, 4, UNI_LATN } /* islatn */,
+ { 0, 6774, 356, 25, 4, UNI_DI } /* defaultignorablecodepoint=yes */,
+ { 0, 5844, 1262, 6, 3, UNI_SUPPUAB } /* issuppuab */,
+ { 0, 6114, 2986, 3, 14, UNI_SC__PHLP } /* sc=psalterpahlavi */,
+ { 0, 3748, 2088, 14, 8, UNI_NV__1_SLASH_64 } /* numericvalue=1.562e-02 */,
+ { 2, 7527, 2012, 3, 2, UNI_LB__BK } /* lb=bk */,
+ { 2, 5565, 602, 21, 2, -UNI_CWU } /* changeswhenuppercased=n */,
+ { 0, 7201, 117, 16, 2, UNI_XPOSIXDIGIT } /* generalcategory=nd */,
+ { 52, 5586, 2729, 21, 5, UNI_GCB__XX } /* graphemeclusterbreak=other */,
+ { 0, 4355, 461, 17, 4, UNI_QAAI } /* scriptextensions=qaai */,
+ { 1, 343, 1157, 4, 5, UNI_CCC__7 } /* ccc=nukta */,
+ { 0, 110, 0, 2, 0, UNI_ZL } /* zl */,
+ { 1, 1102, 798, 4, 4, UNI_LANA } /* scx=lana */,
+ { 2, 464, 7044, 2, 24, UNI_DIACRITICALSFORSYMBOLS } /* iscombiningmarksforsymbols */,
+ { 3, 6031, 0, 8, 0, UNI_GEOR } /* georgian */,
+ { 4, 261, 588, 4, 2, UNI_CWCM } /* cwcm=t */,
+ { 12, 5607, 1382, 18, 3, UNI_IDENTIFIERTYPE__NOTXID } /* identifiertype=notxid */,
+ { 10, 1796, 502, 7, 6, UNI_LYDI } /* script=lydian */,
+ { 0, 464, 4062, 2, 8, UNI_VEDICEXT } /* isvedicext */,
+ { 1, 313, 6594, 2, 6, UNI_INBRAHMI } /* inbrahmi */,
+ { 6, 6114, 1191, 3, 4, UNI_SC__BENG } /* sc=beng */,
+ { 0, 7044, 0, 13, 0, UNI_M } /* combiningmark */,
+ { 0, 6114, 5825, 3, 4, UNI_SUND } /* sc=sund */,
+ { 0, 7068, 934, 26, 2, -UNI_PCM } /* prependedconcatenationmark=f */,
+ { 10, 2771, 0, 12, 0, UNI_KHMERSYMBOLS } /* khmersymbols */,
+ { 0, 1382, 934, 4, 6, -UNI_XIDS } /* xids=false */,
+ { 0, 3637, 0, 14, 0, UNI_LISUSUP } /* lisusupplement */,
+ { 0, 34, 7790, 1, 33, UNI_INIDC } /* isideographicdescriptioncharacters */,
+ { 32, 3058, 0, 8, 0, UNI_XPOSIXXDIGIT } /* hexdigit */,
+ { 1, 313, 3839, 2, 6, UNI_INTANGUT } /* intangut */,
+ { 46, 632, 5620, 5, 4, -UNI_GRBASE } /* grbase=no */,
+ { 1, 464, 1582, 2, 6, UNI_L } /* isletter */,
+ { 1, 1796, 3285, 7, 4, UNI_HEBR } /* script=hebr */,
+ { 0, 464, 477, 2, 3, UNI_VAI } /* isvai */,
+ { 0, 5907, 0, 21, 0, UNI_SINHALAARCHAICNUMBERS } /* sinhalaarchaicnumbers */,
+ { 1, 7527, 22, 3, 2, UNI_LB__BA } /* lb=ba */,
+ { 1, 2802, 4442, 10, 9, UNI_ETHIOPICEXTB } /* isethiopicextendedb */,
+ { 0, 1383, 601, 6, 3, -UNI_IDS } /* idstart=n */,
+ { 0, 6944, 346, 23, 3, UNI_CCC__11 } /* canonicalcombiningclass=11 */,
+ { 3, 1796, 51, 7, 4, UNI_SC__CAKM } /* script=cakm */,
+ { 6, 464, 152, 2, 4, UNI_OSGE } /* isosge */,
+ { 34, 3593, 4590, 7, 9, UNI_LATINEXTC } /* inlatinextendedc */,
+ { 0, 1796, 3839, 7, 6, UNI_TANG } /* script=tangut */,
+ { 3, 1102, 1317, 4, 9, UNI_PERM } /* scx=oldpermic */,
+ { 1, 3748, 398, 15, 2, UNI_NV__1_SLASH_16 } /* numericvalue=1/16 */,
+ { 0, 2474, 7556, 3, 28, UNI_MISCARROWS } /* ismiscellaneoussymbolsandarrows */,
+ { 0, 1796, 160, 7, 4, UNI_SC__PHLP } /* script=phlp */,
+ { 0, 261, 0, 4, 0, UNI_CWCM } /* cwcm */,
+ { 0, 6944, 8572, 24, 18, UNI_CCC__216 } /* canonicalcombiningclass=attachedaboveright */,
+ { 0, 6402, 329, 14, 2, UNI_SB__UP } /* sentencebreak=up */,
+ { 0, 5748, 5858, 5, 7, UNI_SUPARROWSC } /* insuparrowsc */,
+ { 7, 540, 0, 4, 0, UNI_TANG } /* tang */,
+ { 1, 2974, 1780, 11, 3, UNI_IN__10 } /* presentin=v100 */,
+ { 0, 4355, 287, 17, 5, UNI_NSHU } /* scriptextensions=nushu */,
+ { 0, 3474, 27, 6, 4, UNI_INAHOM } /* block=ahom */,
+ { 1, 3474, 651, 6, 5, UNI_INADLAM } /* block=adlam */,
+ { 9, 1704, 1695, 6, 3, UNI_ARABICPFB } /* arabicpfb */,
+ { 32, 1539, 72, 3, 3, UNI_CPRT } /* iscprt */,
+ { 4, 1975, 1082, 7, 4, UNI_POSIXWORD } /* isposixword */,
+ { 22, 1382, 934, 8, 2, -UNI_XIDS } /* xidstart=f */,
+ { 0, 7182, 6177, 2, 8, UNI_CJKSYMBOLS } /* cjksymbols */,
+ { 0, 6114, 1311, 3, 4, UNI_ITAL } /* sc=ital */,
+ { 8, 383, 0, 6, 0, UNI_HYPHEN } /* hyphen */,
+ { 0, 464, 1542, 2, 6, UNI_ARROWS } /* isarrows */,
+ { 0, 464, 372, 2, 4, UNI_GOTH } /* isgoth */,
+ { 0, 644, 0, 7, 0, UNI_LB__H3 } /* hst=lvt */,
+ { 2, 3474, 5340, 6, 13, UNI_DEVANAGARIEXT } /* block=devanagariext */,
+ { 4, 4500, 0, 5, 0, UNI_XPOSIXUPPER } /* upper */,
+ { 0, 464, 1098, 2, 4, UNI_NSHU } /* isnshu */,
+ { 9, 8244, 1646, 9, 4, UNI_CJKEXTD } /* block=cjkextd */,
+ { 80, 4355, 3885, 17, 17, UNI_AGHB } /* scriptextensions=caucasianalbanian */,
+ { 33, 7823, 5, 5, 4, UNI_CJKEXTG } /* incjkextg */,
+ { 0, 1879, 4202, 4, 17, UNI_INKHITANSMALLSCRIPT } /* blk=khitansmallscript */,
+ { 0, 464, 5186, 2, 20, UNI_EXTPICT } /* isextendedpictographic */,
+ { 0, 4500, 934, 5, 6, -UNI_XPOSIXUPPER } /* upper=false */,
+ { 4, 7317, 3078, 10, 12, UNI_BC__ON } /* bidiclass=otherneutral */,
+ { 3, 464, 4962, 2, 14, UNI_ROHG } /* ishanifirohingya */,
+ { 24, 7208, 1590, 9, 2, UNI_LOWERCASELETTER } /* category=ll */,
+ { 5, 1879, 2771, 4, 5, UNI_INKHMER } /* blk=khmer */,
+ { 22, 2443, 602, 5, 2, -UNI_CASED } /* cased=n */,
+ { 1, 1879, 6644, 4, 22, UNI_TRANSPORTANDMAP } /* blk=transportandmapsymbols */,
+ { 0, 3474, 5056, 6, 19, UNI_OTTOMANSIYAQNUMBERS } /* block=ottomansiyaqnumbers */,
+ { 2, 3000, 1881, 12, 2, UNI_qmark_values_index } /* quotationmark= */,
+ { 0, 2496, 7276, 3, 14, UNI_JG__HAMZAONHEHGOAL } /* jg=tehmarbutagoal */,
+ { 0, 464, 6031, 2, 8, UNI_GEOR } /* isgeorgian */,
+ { 0, 1377, 3013, 3, 11, UNI_WB__DQ } /* wb=doublequote */,
+ { 0, 6239, 176, 4, 2, UNI_BC__LRO } /* bc=lro */,
+ { 1, 1102, 192, 4, 4, UNI_SHAW } /* scx=shaw */,
+ { 0, 2726, 628, 3, 2, UNI_PI } /* gc=pi */,
+ { 1, 464, 5409, 2, 19, UNI_TERM } /* isterminalpunctuation */,
+ { 12, 4355, 593, 17, 7, UNI_DSRT } /* scriptextensions=deseret */,
+ { 6, 2802, 7175, 3, 10, UNI_ENCLOSEDCJK } /* isenclosedcjk */,
+ { 144, 1702, 7481, 6, 20, UNI_ARABICPFA } /* isarabicpresentationformsa */,
+ { 9, 296, 1300, 4, 3, UNI_NV__9000 } /* nv=9000 */,
+ { 6, 3622, 0, 7, 0, UNI_LATN } /* islatin */,
+ { 0, 5409, 602, 19, 3, -UNI_TERM } /* terminalpunctuation=no */,
+ { 0, 4355, 1027, 17, 6, UNI_YEZI } /* scriptextensions=yezidi */,
+ { 1, 1102, 1550, 3, 11, UNI_XPEO } /* scx=oldpersian */,
+ { 0, 181, 2324, 2, 8, UNI_CN } /* unassigned */,
+ { 0, 1879, 1371, 4, 6, UNI_INTHAANA } /* blk=thaana */,
+ { 0, 6799, 934, 24, 2, -UNI_COMPEX } /* fullcompositionexclusion=f */,
+ { 9, 1796, 4107, 7, 6, UNI_SC__HANG } /* script=hangul */,
+ { 3, 600, 1719, 3, 4, UNI_DT__VERT } /* dt=vert */,
+ { 0, 600, 242, 3, 2, UNI_DT__NB } /* dt=nb */,
+ { 0, 3474, 951, 6, 8, UNI_INDUPLOYAN } /* block=duployan */,
+ { 104, 1065, 2617, 4, 8, UNI_NV__1_SLASH_10 } /* nv=1.000e-01 */,
+ { 0, 1102, 1371, 4, 4, UNI_THAA } /* scx=thaa */,
+ { 1, 313, 7377, 2, 8, UNI_INKATAKANA } /* inkatakana */,
+ { 0, 1102, 3465, 3, 5, UNI_ETHI } /* scx=ethi */,
+ { 0, 464, 2229, 2, 12, UNI_PHAISTOS } /* isphaistosdisc */,
+ { 24, 1102, 1133, 4, 8, UNI_VITH } /* scx=vithkuqi */,
+ { 1, 8244, 1037, 9, 4, UNI_CJKEXTB } /* block=cjkextb */,
+ { 0, 275, 252, 4, 2, UNI_GCB__CN } /* gcb=cn */,
+ { 5, 313, 5825, 2, 19, UNI_SUNDANESESUP } /* insundanesesupplement */,
+ { 32, 1796, 1086, 7, 4, UNI_SC__KTHI } /* script=kthi */,
+ { 1, 6402, 5021, 13, 6, UNI_SB__CL } /* sentencebreak=close */,
+ { 10, 6402, 5, 14, 2, UNI_SB__EX } /* sentencebreak=ex */,
+ { 64, 1102, 228, 4, 4, UNI_XPEO } /* scx=xpeo */,
+ { 0, 6379, 1526, 13, 3, UNI_JG__YEH } /* joininggroup=yeh */,
+ { 36, 3351, 6199, 14, 7, UNI_NV__20000000 } /* numericvalue=20000000 */,
+ { 19, 7880, 3571, 5, 11, UNI_CJKCOMPATFORMS } /* iscjkcompatforms */,
+ { 0, 464, 4081, 2, 11, UNI_P } /* ispunctuation */,
+ { 0, 7527, 1591, 3, 2, UNI_LB__LF } /* lb=lf */,
+ { 0, 3351, 762, 13, 4, UNI_NV___MINUS_1_SLASH_2 } /* numericvalue=-1/2 */,
+ { 68, 6112, 1418, 5, 6, UNI_INSC__VIRAMA } /* insc=virama */,
+ { 0, 608, 345, 2, 2, UNI_idc_values_index } /* idc= */,
+ { 0, 1796, 236, 7, 2, UNI_SC__YI } /* script=yi */,
+ { 0, 34, 636, 1, 8, UNI_HANO } /* ishanunoo */,
+ { 1, 536, 4122, 3, 5, UNI_SB__LO } /* sb=lower */,
+ { 5, 4355, 909, 17, 8, UNI_BALI } /* scriptextensions=balinese */,
+ { 4, 1539, 0, 3, 0, UNI_C } /* isc */,
+ { 1, 5825, 0, 12, 0, UNI_SUNDANESESUP } /* sundanesesup */,
+ { 0, 3734, 356, 14, 2, UNI_NFKCQC__Y } /* nfkcquickcheck=y */,
+ { 0, 1377, 1631, 3, 7, UNI_WB__NL } /* wb=newline */,
+ { 3, 275, 1842, 4, 3, UNI_WB__EB } /* gcb=gaz */,
+ { 2, 2463, 934, 11, 6, -UNI_JOINC } /* joincontrol=false */,
+ { 105, 343, 2498, 3, 2, UNI_CCC__A } /* ccc=a */,
+ { 6, 2496, 709, 3, 4, UNI_JG__SEEN } /* jg=seen */,
+ { 0, 313, 6629, 2, 15, UNI_MODIFIERLETTERS } /* inmodifierletters */,
+ { 1, 1539, 5566, 3, 20, UNI_CWU } /* ischangeswhenuppercased */,
+ { 6, 7208, 334, 9, 2, UNI_PD } /* category=pd */,
+ { 4, 3474, 429, 6, 3, UNI_INMRO } /* block=mro */,
+ { 0, 844, 355, 2, 3, UNI_LOE } /* loe=y */,
+ { 40, 2496, 2529, 3, 10, UNI_JG__REVERSEDPE } /* jg=reversedpe */,
+ { 0, 1377, 1802, 2, 3, UNI_WB__ML } /* wb=ml */,
+ { 3, 7317, 538, 9, 2, UNI_BC__S } /* bidiclass=s */,
+ { 0, 4355, 2042, 18, 11, UNI_MEND } /* scriptextensions=mendekikakui */,
+ { 0, 7605, 140, 19, 2, UNI_HST__NA } /* hangulsyllabletype=na */,
+ { 0, 1796, 1289, 7, 9, UNI_TALU } /* script=newtailue */,
+ { 5, 536, 40, 3, 2, UNI_SB__AT } /* sb=at */,
+ { 0, 1879, 1220, 4, 7, UNI_INMAKASAR } /* blk=makasar */,
+ { 0, 1860, 0, 7, 0, UNI_XPOSIXCNTRL } /* control */,
+ { 25, 1539, 8499, 3, 34, UNI_DIACRITICALSSUP } /* iscombiningdiacriticalmarkssupplement */,
+ { 0, 5087, 3285, 10, 12, UNI_LB__HL } /* wordbreak=hebrewletter */,
+ { 2, 2365, 1491, 8, 4, UNI_ETHIOPICEXTA } /* ethiopicexta */,
+ { 1, 17, 0, 2, 0, UNI_LM } /* lm */,
+ { 0, 6114, 445, 3, 4, UNI_ORKH } /* sc=orkh */,
+ { 3, 823, 602, 4, 3, -UNI_DASH } /* dash=no */,
+ { 0, 1702, 4918, 3, 9, UNI_ALCHEMICAL } /* isalchemical */,
+ { 12, 6114, 1248, 3, 7, UNI_SIDD } /* sc=siddham */,
+ { 18, 1102, 3381, 4, 15, UNI_NARB } /* scx=oldnortharabian */,
+ { 1, 3474, 6052, 6, 13, UNI_MATHOPERATORS } /* block=mathoperators */,
+ { 1, 513, 766, 4, 3, UNI_NV__3_SLASH_64 } /* nv=3/64 */,
+ { 0, 6114, 1470, 3, 4, UNI_SC__BUGI } /* sc=bugi */,
+ { 148, 7527, 4137, 3, 15, UNI_LB__OP } /* lb=openpunctuation */,
+ { 2, 1796, 337, 7, 6, UNI_CARI } /* script=carian */,
+ { 16, 1395, 4629, 4, 5, UNI_LATIN1 } /* latin1sup */,
+ { 0, 2193, 2199, 6, 6, UNI_NV__1_SLASH_16 } /* nv=6.250e-02 */,
+ { 47, 1382, 0, 4, 0, UNI_XIDS } /* xids */,
+ { 2, 7880, 3571, 5, 6, UNI_CJKCOMPAT } /* iscjkcompat */,
+ { 1, 343, 433, 4, 2, UNI_CCC__7 } /* ccc=nk */,
+ { 1, 1796, 3991, 7, 4, UNI_BRAI } /* script=brai */,
+ { 0, 3974, 356, 4, 4, UNI_IDSB } /* idsb=yes */,
+ { 1, 383, 602, 6, 3, -UNI_HYPHEN } /* hyphen=no */,
+ { 0, 2726, 844, 3, 2, UNI_LO } /* gc=lo */,
+ { 0, 256, 0, 2, 0, UNI_CASEDLETTER } /* lc */,
+ { 0, 1102, 6594, 4, 4, UNI_BRAH } /* scx=brah */,
+ { 2, 4500, 588, 5, 2, UNI_XPOSIXUPPER } /* upper=t */,
+ { 3, 4450, 7908, 7, 29, UNI_CUNEIFORMNUMBERS } /* block=cuneiformnumbersandpunctuation */,
+ { 129, 464, 1887, 2, 7, UNI_UCASEXT } /* isucasext */,
+ { 0, 8592, 0, 34, 0, UNI_UCAS } /* unifiedcanadianaboriginalsyllabics */,
+ { 20, 464, 3060, 2, 6, UNI_XPOSIXXDIGIT } /* isxdigit */,
+ { 6, 1796, 360, 7, 6, UNI_SC__CAKM } /* script=chakma */,
+ { 4, 464, 806, 2, 4, UNI_SARB } /* issarb */,
+ { 47, 3933, 0, 4, 0, UNI_MODI } /* modi */,
+ { 0, 7584, 1679, 18, 3, UNI_DT__FRA } /* decompositiontype=fra */,
+ { 36, 464, 55, 2, 4, UNI_CANS } /* iscans */,
+ { 0, 4996, 3685, 13, 3, UNI_JG__MANICHAEANMEM } /* jg=manichaeanmem */,
+ { 1, 3351, 391, 13, 2, UNI_NV__26 } /* numericvalue=26 */,
+ { 1, 6114, 35, 3, 4, UNI_AVST } /* sc=avst */,
+ { 9, 7527, 2926, 3, 11, UNI_LB__IN } /* lb=inseparable */,
+ { 0, 4355, 421, 17, 4, UNI_KHMR } /* scriptextensions=khmr */,
+ { 1, 4355, 5825, 17, 4, UNI_SUND } /* scriptextensions=sund */,
+ { 0, 5087, 1624, 10, 7, UNI_WB__LE } /* wordbreak=aletter */,
+ { 0, 8244, 6505, 31, 5, UNI_CJKEXTC } /* block=cjkunifiedideographsextensionc */,
+ { 2, 4355, 2401, 17, 11, UNI_NAND } /* scriptextensions=nandinagari */,
+ { 11, 3474, 1948, 6, 10, UNI_INOLDSOGDIAN } /* block=oldsogdian */,
+ { 0, 464, 4999, 2, 10, UNI_MANI } /* ismanichaean */,
+ { 80, 265, 934, 5, 6, -UNI_CWKCF } /* cwkcf=false */,
+ { 0, 7584, 940, 18, 3, UNI_DT__COM } /* decompositiontype=com */,
+ { 0, 618, 0, 7, 0, UNI_ELYM } /* elymaic */,
+ { 59, 7473, 0, 10, 0, UNI_XPOSIXALPHA } /* alphabetic */,
+ { 0, 1796, 1951, 7, 4, UNI_SC__SOGD } /* script=sogd */,
+ { 0, 275, 546, 4, 3, UNI_WB__EB } /* gcb=ebg */,
+ { 1, 8244, 1899, 9, 7, UNI_CJKSYMBOLS } /* block=cjksymbols */,
+ { 2, 464, 1561, 2, 10, UNI_PHNX } /* isphoenician */,
+ { 30, 1796, 540, 7, 4, UNI_TANG } /* script=tang */,
+ { 1, 36, 356, 2, 2, UNI_VS } /* vs=y */,
+ { 0, 6799, 588, 24, 5, UNI_COMPEX } /* fullcompositionexclusion=true */,
+ { 0, 1856, 934, 11, 6, -UNI_BIDIC } /* bidicontrol=false */,
+ { 8, 313, 7416, 2, 14, UNI_PUA } /* inprivateusearea */,
+ { 0, 536, 832, 3, 5, UNI_SB__ST } /* sb=sterm */,
+ { 0, 1102, 530, 4, 6, UNI_RJNG } /* scx=rejang */,
+ { 2, 7431, 347, 27, 3, UNI_CCC__118 } /* canonicalcombiningclass=ccc118 */,
+ { 4, 1614, 0, 10, 0, UNI_WARA } /* warangciti */,
+ { 1, 5718, 588, 4, 2, UNI_EMOD } /* emod=t */,
+ { 2, 2485, 42, 10, 1, UNI_XPOSIXBLANK } /* xposixblank */,
+ { 1, 8244, 6352, 9, 18, UNI_CJKRADICALSSUP } /* block=cjkradicalssupplement */,
+ { 0, 464, 2324, 2, 8, UNI_ASSIGNED } /* isassigned */,
+ { 3, 4291, 1906, 10, 9, UNI_LB__AI } /* linebreak=ambiguous */,
+ { 2, 34, 4484, 1, 16, UNI_TITLE } /* istitlecaseletter */,
+ { 0, 1011, 934, 2, 2, -UNI_CI } /* ci=f */,
+ { 2, 3351, 1304, 13, 2, UNI_NV__20 } /* numericvalue=20 */,
+ { 0, 1879, 321, 4, 5, UNI_INTAILE } /* blk=taile */,
+ { 0, 2692, 1695, 10, 3, UNI_ARABICPFB } /* blk=arabicpfb */,
+ { 1, 2726, 2986, 3, 2, UNI_PS } /* gc=ps */,
+ { 37, 7208, 203, 9, 2, UNI_TITLE } /* category=lt */,
+ { 0, 86, 0, 4, 0, UNI_GONG } /* gong */,
+ { 3, 1102, 3637, 4, 4, UNI_LISU } /* scx=lisu */,
+ { 46, 1856, 0, 5, 0, UNI_BIDIC } /* bidic */,
+ { 2, 625, 356, 7, 2, UNI_EXTPICT } /* extpict=y */,
+ { 1, 3722, 934, 4, 6, -UNI_MATH } /* math=false */,
+ { 10, 1410, 585, 7, 2, UNI_CCC__22 } /* ccc=ccc22 */,
+ { 0, 1796, 593, 7, 7, UNI_DSRT } /* script=deseret */,
+ { 5, 7132, 7643, 15, 17, UNI_SUPPUAB } /* blk=supplementaryprivateuseareab */,
+ { 0, 2726, 4500, 3, 15, UNI_UPPERCASELETTER } /* gc=uppercaseletter */,
+ { 0, 3474, 6970, 6, 26, UNI_HALFANDFULLFORMS } /* block=halfwidthandfullwidthforms */,
+ { 9, 4355, 112, 17, 4, UNI_KITS } /* scriptextensions=kits */,
+ { 1, 7317, 143, 10, 2, UNI_BC__BN } /* bidiclass=bn */,
+ { 0, 4122, 355, 8, 2, UNI_lower_values_index } /* lowercase= */,
+ { 0, 265, 602, 5, 2, -UNI_CWKCF } /* cwkcf=n */,
+ { 3, 3637, 0, 4, 0, UNI_LISU } /* lisu */,
+ { 0, 7527, 3432, 3, 3, UNI_LB__ZWJ } /* lb=zwj */,
+ { 1, 7527, 1739, 3, 8, UNI_LB__LF } /* lb=linefeed */,
+ { 0, 6379, 718, 13, 3, UNI_JG__AIN } /* joininggroup=ain */,
+ { 6, 4355, 2986, 17, 14, UNI_PHLP } /* scriptextensions=psalterpahlavi */,
+ { 24, 1102, 1090, 4, 4, UNI_LINB } /* scx=linb */,
+ { 8, 313, 1451, 2, 10, UNI_INDIVESAKURU } /* indivesakuru */,
+ { 25, 2, 2891, 2, 3, UNI_CWT } /* cwt=t */,
+ { 0, 7527, 3000, 3, 9, UNI_LB__QU } /* lb=quotation */,
+ { 0, 2726, 252, 3, 5, UNI_XPOSIXCNTRL } /* gc=cntrl */,
+ { 3, 4355, 453, 17, 4, UNI_MIAO } /* scriptextensions=plrd */,
+ { 35, 1102, 783, 4, 7, UNI_OSMA } /* scx=osmanya */,
+ { 0, 1879, 3839, 4, 6, UNI_INTANGUT } /* blk=tangut */,
+ { 147, 6185, 0, 16, 0, UNI_NV__100 } /* numericvalue=100 */,
+ { 1, 343, 3486, 4, 12, UNI_CCC__0 } /* ccc=notreordered */,
+ { 2, 5825, 0, 19, 0, UNI_SUNDANESESUP } /* sundanesesupplement */,
+ { 9, 313, 861, 2, 7, UNI_INTIBETAN } /* intibetan */,
+ { 0, 608, 6573, 2, 3, UNI_IDC } /* idc=t */,
+ { 12, 464, 1390, 2, 10, UNI_ASCII } /* isbasiclatin */,
+ { 18, 1065, 0, 4, 0, UNI_NV__1 } /* nv=1 */,
+ { 14, 6134, 0, 10, 0, UNI_GLAG } /* glagolitic */,
+ { 0, 1879, 401, 4, 4, UNI_INMIAO } /* blk=miao */,
+ { 1, 464, 366, 2, 2, UNI_SM } /* issm */,
+ { 1, 464, 967, 2, 8, UNI_GUJR } /* isgujarati */,
+ { 38, 1856, 356, 11, 4, UNI_BIDIC } /* bidicontrol=yes */,
+ { 0, 6402, 40, 14, 2, UNI_SB__AT } /* sentencebreak=at */,
+ { 1, 1879, 5340, 4, 13, UNI_DEVANAGARIEXT } /* blk=devanagariext */,
+ { 72, 313, 3543, 2, 16, UNI_HIGHPUSURROGATES } /* inhighpusurrogates */,
+ { 1, 5147, 1646, 11, 4, UNI_LATINEXTD } /* block=latinextd */,
+ { 64, 3474, 5304, 6, 18, UNI_TAIXUANJING } /* block=taixuanjingsymbols */,
+ { 24, 6402, 285, 14, 2, UNI_SB__XX } /* sentencebreak=xx */,
+ { 2, 1410, 7173, 7, 2, UNI_CCC__28 } /* ccc=ccc28 */,
+ { 20, 1879, 2217, 4, 12, UNI_INOLDHUNGARIAN } /* blk=oldhungarian */,
+ { 1, 7688, 4984, 23, 6, UNI_JG__MANICHAEANLAMEDH } /* joininggroup=manichaeanlamedh */,
+ { 1, 275, 3654, 4, 11, UNI_GCB__SM } /* gcb=spacingmark */,
+ { 0, 464, 4827, 2, 15, UNI_BAMUMSUP } /* isbamumsupplement */,
+ { 0, 5907, 0, 4, 0, UNI_SINH } /* sinh */,
+ { 1, 4996, 603, 12, 4, UNI_JG__MANICHAEANONE } /* jg=manichaeanone */,
+ { 4, 2392, 2603, 3, 12, UNI_MISCTECHNICAL } /* inmisctechnical */,
+ { 0, 4450, 4442, 14, 9, UNI_CYRILLICEXTB } /* block=cyrillicextendedb */,
+ { 1, 1465, 355, 4, 5, UNI_XPOSIXSPACE } /* space=yes */,
+ { 1, 4355, 433, 17, 4, UNI_NKO } /* scriptextensions=nkoo */,
+ { 30, 313, 4582, 2, 11, UNI_BOPOMOFOEXT } /* inbopomofoext */,
+ { 0, 464, 5103, 2, 2, UNI_CASEDLETTER } /* isl_ */,
+ { 9, 7208, 3236, 9, 13, UNI_ME } /* category=enclosingmark */,
+ { 0, 1856, 588, 5, 5, UNI_BIDIC } /* bidic=true */,
+ { 1, 5844, 1818, 5, 8, UNI_SUPERANDSUB } /* issuperandsub */,
+ { 0, 7605, 0, 20, 0, UNI_GCB__L } /* hangulsyllabletype=l */,
+ { 39, 6025, 6878, 9, 15, UNI_GEOMETRICSHAPESEXT } /* block=geometricshapesext */,
+ { 2, 5586, 3654, 21, 11, UNI_GCB__SM } /* graphemeclusterbreak=spacingmark */,
+ { 12, 4758, 0, 18, 0, UNI_ZP } /* paragraphseparator */,
+ { 4, 464, 3823, 2, 16, UNI_STERM } /* issentenceterminal */,
+ { 2, 6379, 0, 13, 0, UNI_jg_values_index } /* joininggroup= */,
+ { 0, 3669, 1849, 12, 3, UNI_JG__MALAYALAMLLA } /* jg=malayalamlla */,
+ { 1, 464, 1400, 2, 10, UNI_BOXDRAWING } /* isboxdrawing */,
+ { 1, 464, 4092, 2, 12, UNI_DIACRITICALS } /* isdiacriticals */,
+ { 48, 6944, 293, 24, 1, UNI_CCC__0 } /* canonicalcombiningclass=0 */,
+ { 1, 4662, 8551, 12, 21, UNI_SUPMATHOPERATORS } /* supplementalmathematicaloperators */,
+ { 0, 5844, 7643, 13, 17, UNI_SUPPUAB } /* issupplementaryprivateuseareab */,
+ { 187, 1845, 0, 11, 0, UNI_YISYLLABLES } /* yisyllables */,
+ { 1, 4776, 5620, 16, 4, -UNI__PERL_PATWS } /* patternwhitespace=no */,
+ { 145, 3053, 588, 13, 5, UNI_POSIXXDIGIT } /* asciihexdigit=true */,
+ { 1, 1796, 43, 7, 4, UNI_BHKS } /* script=bhks */,
+ { 2, 6112, 6613, 14, 10, UNI_INSC__CONSONANTHEADLETTER } /* insc=consonantheadletter */,
+ { 0, 1075, 6199, 4, 5, UNI_NV__200000 } /* nv=200000 */,
+ { 32, 6114, 5727, 3, 21, UNI_PRTI } /* sc=inscriptionalparthian */,
+ { 4, 117, 0, 2, 0, UNI_XPOSIXDIGIT } /* nd */,
+ { 0, 7431, 2138, 28, 2, UNI_WB__EB } /* canonicalcombiningclass=ccc133 */,
+ { 1, 3595, 129, 11, 3, UNI_LATINEXTF } /* latinextendedf */,
+ { 32, 1977, 4122, 5, 5, UNI_POSIXLOWER } /* posixlower */,
+ { 3, 8276, 3217, 31, 6, UNI_INSC__CONSONANTKILLER } /* indicsyllabiccategory=consonantkiller */,
+ { 2, 5136, 3719, 5, 15, UNI_MISCMATHSYMBOLSA } /* blk=miscmathsymbolsa */,
+ { 5, 1915, 0, 12, 0, UNI_GRBASE } /* graphemebase */,
+ { 20, 1487, 0, 8, 0, UNI_JAMOEXTA } /* jamoexta */,
+ { 0, 4355, 244, 17, 4, UNI_ZYYY } /* scriptextensions=zyyy */,
+ { 1, 1382, 601, 7, 4, -UNI_XIDS } /* xidstart=no */,
+ { 5, 3823, 602, 16, 2, -UNI_STERM } /* sentenceterminal=n */,
+ { 8, 5718, 934, 4, 2, -UNI_EMOD } /* emod=f */,
+ { 1, 3474, 36, 6, 2, UNI_INVS } /* block=vs */,
+ { 0, 7201, 366, 16, 2, UNI_SM } /* generalcategory=sm */,
+ { 5, 1879, 6594, 4, 6, UNI_INBRAHMI } /* blk=brahmi */,
+ { 1, 464, 196, 2, 4, UNI_TAGS } /* istags */,
+ { 3, 373, 6635, 3, 8, UNI_LO } /* otherletter */,
+ { 77, 3474, 6728, 6, 21, UNI_MEETEIMAYEKEXT } /* block=meeteimayekextensions */,
+ { 1, 4783, 5620, 9, 4, -UNI_XPOSIXSPACE } /* whitespace=no */,
+ { 4, 1065, 769, 4, 3, UNI_NV__15_SLASH_2 } /* nv=15/2 */,
+ { 46, 2678, 4783, 3, 10, UNI_BC__WS } /* bc=whitespace */,
+ { 3, 343, 1303, 5, 2, UNI_CCC__132 } /* ccc=132 */,
+ { 0, 464, 1027, 2, 4, UNI_YEZI } /* isyezi */,
+ { 38, 270, 356, 3, 4, UNI_CWT } /* cwt=yes */,
+ { 3, 1198, 850, 4, 3, UNI_GRAN } /* grantha */,
+ { 0, 4308, 602, 14, 3, UNI_NFKDQC__N } /* nfkdquickcheck=no */,
+ { 1, 7584, 1127, 18, 3, UNI_DT__FIN } /* decompositiontype=fin */,
+ { 0, 4901, 355, 16, 5, UNI_EBASE } /* emojimodifierbase=yes */,
+ { 1, 343, 3363, 3, 3, UNI_CCC__23 } /* ccc=23 */,
+ { 17, 7201, 3223, 16, 13, UNI_XPOSIXDIGIT } /* generalcategory=decimalnumber */,
+ { 0, 3474, 1198, 6, 7, UNI_INGRANTHA } /* block=grantha */,
+ { 5, 464, 441, 2, 4, UNI_OLCK } /* isolck */,
+ { 22, 168, 170, 2, 2, UNI_COPT } /* qaac */,
+ { 1, 2496, 4152, 3, 14, UNI_JG__HAMZAONHEHGOAL } /* jg=hamzaonhehgoal */,
+ { 21, 3474, 301, 6, 5, UNI_INORIYA } /* block=oriya */,
+ { 5, 600, 6944, 3, 9, UNI_DT__CAN } /* dt=canonical */,
+ { 0, 313, 429, 2, 3, UNI_INMRO } /* inmro */,
+ { 0, 1879, 7791, 4, 32, UNI_INIDC } /* blk=ideographicdescriptioncharacters */,
+ { 8, 4122, 587, 8, 6, UNI_XPOSIXLOWER } /* lowercase=true */,
+ { 0, 1879, 691, 4, 5, UNI_INBATAK } /* blk=batak */,
+ { 56, 34, 1890, 1, 4, UNI_EXT } /* isext */,
+ { 0, 1702, 32, 3, 3, UNI_ARMI } /* isarmi */,
+ { 2, 4355, 216, 17, 4, UNI_TIBT } /* scriptextensions=tibt */,
+ { 24, 6379, 6666, 13, 21, UNI_JG__HANIFIROHINGYAKINNAYA } /* joininggroup=hanifirohingyakinnaya */,
+ { 0, 1796, 2041, 7, 4, UNI_MEND } /* script=mend */,
+ { 0, 449, 0, 4, 0, UNI_PHLI } /* phli */,
+ { 8, 4291, 5718, 10, 9, UNI_EMOD } /* linebreak=emodifier */,
+ { 4, 1879, 6439, 4, 13, UNI_ZNAMENNYMUSIC } /* blk=znamennymusic */,
+ { 21, 5056, 0, 19, 0, UNI_OTTOMANSIYAQNUMBERS } /* ottomansiyaqnumbers */,
+ { 0, 464, 453, 2, 4, UNI_MIAO } /* isplrd */,
+ { 40, 313, 5340, 2, 10, UNI_INDEVANAGARI } /* indevanagari */,
+ { 2, 3351, 396, 13, 2, UNI_NV__15 } /* numericvalue=15 */,
+ { 67, 1102, 661, 4, 5, UNI_DOGR } /* scx=dogra */,
+ { 1, 464, 3053, 2, 5, UNI_ASCII } /* isascii */,
+ { 0, 7880, 6352, 5, 18, UNI_CJKRADICALSSUP } /* iscjkradicalssupplement */,
+ { 89, 1236, 5138, 4, 9, UNI_INMYANMAR } /* block=myanmar */,
+ { 4, 644, 3559, 4, 12, UNI_GCB__T } /* hst=trailingjamo */,
+ { 1, 3450, 5797, 12, 9, UNI_CYRILLICEXTA } /* blk=cyrillicextendeda */,
+ { 0, 1102, 991, 4, 6, UNI_HATR } /* scx=hatran */,
+ { 1, 7660, 356, 17, 2, UNI_VS } /* variationselector=y */,
+ { 4, 313, 522, 2, 2, UNI_IN__7 } /* in=7 */,
+ { 129, 7018, 3722, 8, 4, UNI_ARABICMATH } /* inarabicmath */,
+ { 3, 464, 6103, 2, 9, UNI_XSUX } /* iscuneiform */,
+ { 16, 7740, 934, 11, 6, -UNI_IDEO } /* ideographic=false */,
+ { 0, 939, 356, 5, 4, UNI_ECOMP } /* ecomp=yes */,
+ { 4, 4355, 686, 17, 5, UNI_TAKR } /* scriptextensions=takri */,
+ { 80, 895, 292, 6, 2, UNI_AGE__13 } /* age=v130 */,
+ { 1, 3885, 0, 17, 0, UNI_AGHB } /* caucasianalbanian */,
+ { 59, 7317, 6264, 10, 3, UNI_BC__PDI } /* bidiclass=pdi */,
+ { 7, 3474, 4827, 6, 8, UNI_BAMUMSUP } /* block=bamumsup */,
+ { 4, 15, 2665, 1, 13, UNI_ANCIENTSYMBOLS } /* ancientsymbols */,
+ { 3, 1796, 144, 7, 4, UNI_NEWA } /* script=newa */,
+ { 3, 2981, 1303, 4, 2, UNI_IN__3_DOT_2 } /* in=v32 */,
+ { 0, 313, 991, 2, 6, UNI_INHATRAN } /* inhatran */,
+ { 5, 2253, 6214, 11, 3, UNI_IN__12_DOT_1 } /* presentin=12.1 */,
+ { 4, 1879, 825, 4, 7, UNI_SHAW } /* blk=shavian */,
+ { 2, 6112, 2573, 5, 6, UNI_LB__ZWJ } /* insc=joiner */,
+ { 0, 1102, 71, 4, 4, UNI_CPRT } /* scx=cprt */,
+ { 7, 1717, 327, 3, 4, UNI_VSSUP } /* isvssup */,
+ { 10, 3763, 392, 15, 1, UNI_NV__5_SLASH_6 } /* numericvalue=5/6 */,
+ { 1, 313, 301, 2, 5, UNI_INORIYA } /* inoriya */,
+ { 0, 1102, 1326, 4, 9, UNI_ORKH } /* scx=oldturkic */,
+ { 0, 7527, 287, 3, 2, UNI_LB__NU } /* lb=nu */,
+ { 128, 880, 0, 7, 0, UNI_ZZZZ } /* unknown */,
+ { 4, 2392, 743, 3, 6, UNI_INMANDAIC } /* inmandaic */,
+ { 32, 313, 6134, 2, 10, UNI_INGLAGOLITIC } /* inglagolitic */,
+ { 0, 265, 0, 5, 0, UNI_CWKCF } /* cwkcf */,
+ { 44, 1879, 36, 4, 2, UNI_INVS } /* blk=vs */,
+ { 0, 3641, 4538, 10, 13, UNI_SUPPUNCTUATION } /* supplementalpunctuation */,
+ { 0, 0, 2579, 1, 12, UNI_LOWSURROGATES } /* lowsurrogates */,
+ { 6, 3474, 847, 6, 7, UNI_INTAITHAM } /* block=taitham */,
+ { 0, 1879, 1887, 4, 8, UNI_UCASEXTA } /* blk=ucasexta */,
+ { 5, 3474, 4750, 6, 8, UNI_DINGBATS } /* block=dingbats */,
+ { 4, 464, 2217, 2, 12, UNI_HUNG } /* isoldhungarian */,
+ { 0, 1102, 5631, 4, 5, UNI_GREK } /* scx=greek */,
+ { 0, 6114, 861, 3, 7, UNI_TIBT } /* sc=tibetan */,
+ { 0, 4433, 4275, 5, 16, UNI_LETTERLIKESYMBOLS } /* blk=letterlikesymbols */,
+ { 0, 3474, 4827, 6, 15, UNI_BAMUMSUP } /* block=bamumsupplement */,
+ { 0, 464, 3058, 2, 8, UNI_XPOSIXXDIGIT } /* ishexdigit */,
+ { 0, 1991, 2539, 12, 10, UNI_JT__U } /* joiningtype=nonjoining */,
+ { 0, 1991, 345, 4, 2, UNI_joinc_values_index } /* joinc= */,
+ { 0, 6114, 461, 3, 4, UNI_SC__QAAI } /* sc=qaai */,
+ { 0, 3595, 0, 9, 0, UNI_LATINEXTE } /* latinexte */,
+ { 6, 124, 0, 4, 0, UNI_LATN } /* latn */,
+ { 0, 7823, 6177, 4, 8, UNI_CJKSYMBOLS } /* incjksymbols */,
+ { 7, 5099, 7094, 6, 21, UNI__PERL_IS_IN_MULTI_CHAR_FOLD } /* _perl_is_in_multi_char_fold */,
+ { 0, 6944, 584, 23, 3, UNI_CCC__22 } /* canonicalcombiningclass=22 */,
+ { 1, 8007, 5, 7, 4, UNI_CJKEXTG } /* blk=cjkextg */,
+ { 0, 313, 8078, 2, 18, UNI_IDEOGRAPHICSYMBOLS } /* inideographicsymbols */,
+ { 1, 3474, 7403, 6, 28, UNI_SUPPUAA } /* block=supplementaryprivateuseareaa */,
+ { 1, 6112, 1958, 5, 7, UNI_INSC__VISARGA } /* insc=visarga */,
+ { 0, 4355, 5806, 17, 9, UNI_MONG } /* scriptextensions=mongolian */,
+ { 0, 6112, 2344, 5, 5, UNI_INSC__VOWEL } /* insc=vowel */,
+ { 4, 7201, 252, 16, 5, UNI_XPOSIXCNTRL } /* generalcategory=cntrl */,
+ { 30, 3474, 5727, 6, 21, UNI_ININSCRIPTIONALPARTHIAN } /* block=inscriptionalparthian */,
+ { 0, 2275, 934, 3, 6, -UNI_IDC } /* idc=false */,
+ { 2, 2474, 7761, 3, 30, UNI_MATHALPHANUM } /* ismathematicalalphanumericsymbols */,
+ { 24, 3351, 2111, 13, 9, UNI_NV__3_SLASH_16 } /* numericvalue=1.875e-01 */,
+ { 8, 7201, 2728, 15, 6, UNI_C } /* generalcategory=other */,
+ { 1, 2973, 356, 5, 4, UNI_EPRES } /* epres=yes */,
+ { 1, 7317, 5428, 10, 18, UNI_BC__ET } /* bidiclass=europeanterminator */,
+ { 4, 464, 4500, 2, 5, UNI_XPOSIXUPPER } /* isupper */,
+ { 1, 3367, 1300, 14, 3, UNI_NV__4000 } /* numericvalue=4000 */,
+ { 1, 4355, 574, 17, 7, UNI_AVST } /* scriptextensions=avestan */,
+ { 81, 58, 3453, 2, 9, UNI_SC__CYRL } /* sc=cyrillic */,
+ { 88, 5886, 356, 21, 2, UNI__PERL_NCHAR } /* noncharactercodepoint=y */,
+ { 161, 1102, 301, 4, 5, UNI_ORYA } /* scx=oriya */,
+ { 0, 19, 3805, 2, 3, UNI_AGE__8 } /* age=8 */,
+ { 1, 313, 2428, 2, 13, UNI_IPAEXT } /* inipaextensions */,
+ { 2, 4291, 2581, 10, 9, UNI_LB__SG } /* linebreak=surrogate */,
+ { 1, 1102, 1807, 4, 11, UNI_SORA } /* scx=sorasompeng */,
+ { 0, 1410, 585, 8, 2, UNI_CCC__122 } /* ccc=ccc122 */,
+ { 1, 5481, 934, 21, 6, -UNI_CWCF } /* changeswhencasefolded=false */,
+ { 0, 464, 78, 2, 4, UNI_CYRL } /* iscyrl */,
+ { 0, 1102, 1241, 4, 4, UNI_PHAG } /* scx=phag */,
+ { 0, 464, 728, 2, 7, UNI_KALI } /* iskayahli */,
+ { 4, 1395, 4464, 5, 4, UNI_LATINEXTC } /* latinextc */,
+ { 2, 4355, 1508, 17, 4, UNI_UGAR } /* scriptextensions=ugar */,
+ { 0, 6687, 723, 22, 3, UNI_JG__MALAYALAMNNA } /* joininggroup=malayalamnna */,
+ { 87, 3474, 3053, 6, 5, UNI_ASCII } /* block=ascii */,
+ { 0, 6803, 934, 20, 6, -UNI_CE } /* compositionexclusion=false */,
+ { 2, 593, 0, 7, 0, UNI_DSRT } /* deseret */,
+ { 1, 7317, 191, 10, 2, UNI_BC__WS } /* bidiclass=ws */,
+ { 0, 4355, 1311, 17, 4, UNI_ITAL } /* scriptextensions=ital */,
+ { 17, 8007, 1491, 7, 4, UNI_CJKEXTA } /* blk=cjkexta */,
+ { 3, 2205, 2617, 4, 8, UNI_NV__4_SLASH_5 } /* nv=8.000e-01 */,
+ { 2, 6944, 294, 25, 1, UNI_CCC__24 } /* canonicalcombiningclass=24 */,
+ { 1, 1796, 417, 7, 3, UNI_SC__HAN } /* script=han */,
+ { 0, 6803, 934, 20, 2, -UNI_CE } /* compositionexclusion=f */,
+ { 0, 3474, 7500, 6, 27, UNI_ANCIENTGREEKMUSIC } /* block=ancientgreekmusicalnotation */,
+ { 0, 1796, 1927, 7, 12, UNI_SC__GONG } /* script=gunjalagondi */,
+ { 1, 464, 445, 2, 4, UNI_ORKH } /* isorkh */,
+ { 20, 4291, 3297, 10, 12, UNI_LB__IS } /* linebreak=infixnumeric */,
+ { 2, 464, 5825, 2, 12, UNI_SUNDANESESUP } /* issundanesesup */,
+ { 1, 1065, 3807, 5, 2, UNI_NV__1_SLASH_80 } /* nv=1/80 */,
+ { 18, 940, 934, 6, 6, -UNI_COMPEX } /* compex=false */,
+ { 1, 6112, 2420, 5, 8, UNI_INSC__TONEMARK } /* insc=tonemark */,
+ { 0, 343, 2679, 2, 7, UNI_CCC__R } /* ccc=right */,
+ { 5, 464, 5631, 2, 5, UNI_GREK } /* isgreek */,
+ { 1, 464, 6728, 2, 21, UNI_MEETEIMAYEKEXT } /* ismeeteimayekextensions */,
+ { 0, 2353, 1895, 3, 11, UNI_CHESSSYMBOLS } /* inchesssymbols */,
+ { 0, 4500, 355, 8, 3, UNI_XPOSIXUPPER } /* uppercase=y */,
+ { 0, 8470, 2680, 19, 2, UNI_VO__R } /* verticalorientation=r */,
+ { 7, 3351, 2616, 13, 9, UNI_NV__1_SLASH_2 } /* numericvalue=5.000e-01 */,
+ { 15, 2355, 1037, 8, 4, UNI_CYRILLICEXTB } /* cyrillicextb */,
+ { 0, 296, 6197, 2, 8, UNI_NV__1000000 } /* nv=1000000 */,
+ { 4, 1879, 2771, 4, 12, UNI_KHMERSYMBOLS } /* blk=khmersymbols */,
+ { 0, 8533, 7238, 7, 24, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* block=symbolsandpictographsexta */,
+ { 1, 2253, 2649, 10, 3, UNI_IN__6_DOT_1 } /* presentin=6.1 */,
+ { 0, 7182, 6334, 3, 18, UNI_CJKCOMPATFORMS } /* cjkcompatibilityforms */,
+ { 0, 3474, 326, 6, 5, UNI_VSSUP } /* block=vssup */,
+ { 6, 6114, 611, 3, 7, UNI_ELBA } /* sc=elbasan */,
+ { 0, 5865, 602, 21, 3, -UNI_LOE } /* logicalorderexception=no */,
+ { 0, 6687, 532, 22, 2, UNI_JG__MALAYALAMJA } /* joininggroup=malayalamja */,
+ { 3, 464, 735, 2, 7, UNI_LINA } /* islineara */,
+ { 1, 555, 140, 4, 2, UNI_IN__NA } /* age=na */,
+ { 4, 1516, 5797, 6, 9, UNI_KANAEXTA } /* iskanaextendeda */,
+ { 0, 464, 270, 2, 3, UNI_CWT } /* iscwt */,
+ { 177, 1382, 588, 4, 5, UNI_XIDS } /* xids=true */,
+ { 18, 1826, 0, 4, 0, UNI_SYLO } /* sylo */,
+ { 1, 1102, 417, 4, 3, UNI_HAN } /* scx=han */,
+ { 2, 257, 934, 4, 2, -UNI_CWCF } /* cwcf=f */,
+ { 0, 1102, 27, 4, 4, UNI_AHOM } /* scx=ahom */,
+ { 0, 464, 229, 2, 2, UNI_PE } /* ispe */,
+ { 24, 4450, 6142, 12, 5, UNI_CYRILLICSUP } /* block=cyrillicsup */,
+ { 6, 343, 299, 5, 1, UNI_CCC__19 } /* ccc=19 */,
+ { 1, 1879, 6919, 4, 25, UNI_SYMBOLSFORLEGACYCOMPUTING } /* blk=symbolsforlegacycomputing */,
+ { 0, 2981, 292, 5, 2, UNI_IN__13 } /* in=v130 */,
+ { 10, 3748, 299, 14, 1, UNI_NV__19 } /* numericvalue=19 */,
+ { 12, 464, 5825, 2, 4, UNI_SUND } /* issund */,
+ { 2, 1796, 4998, 6, 5, UNI_SC__MANI } /* script=mani */,
+ { 23, 581, 2138, 5, 2, UNI_CCC__DB } /* ccc=233 */,
+ { 64, 94, 11, 3, 1, UNI_GUJR } /* gujr */,
+ { 0, 1879, 1927, 4, 12, UNI_INGUNJALAGONDI } /* blk=gunjalagondi */,
+ { 1, 19, 3378, 2, 3, UNI_AGE__4 } /* age=4 */,
+ { 1, 4450, 7403, 14, 13, UNI_CYRILLICSUP } /* block=cyrillicsupplementary */,
+ { 36, 4122, 355, 8, 3, UNI_XPOSIXLOWER } /* lowercase=y */,
+ { 7, 4355, 637, 17, 7, UNI_HANO } /* scriptextensions=hanunoo */,
+ { 4, 6114, 1320, 3, 4, UNI_SC__PERM } /* sc=perm */,
+ { 8, 7527, 4261, 3, 14, UNI_LB__PO } /* lb=postfixnumeric */,
+ { 3, 2205, 1300, 4, 3, UNI_NV__8000 } /* nv=8000 */,
+ { 1, 7740, 934, 11, 2, -UNI_IDEO } /* ideographic=f */,
+ { 0, 75, 356, 3, 2, UNI_CWU } /* cwu=y */,
+ { 5, 536, 844, 3, 2, UNI_SB__LO } /* sb=lo */,
+ { 5, 7208, 317, 9, 4, UNI_M } /* category=mark */,
+ { 4, 1102, 429, 4, 3, UNI_MRO } /* scx=mro */,
+ { 0, 686, 0, 4, 0, UNI_TAKR } /* takr */,
+ { 0, 313, 1390, 2, 10, UNI_ASCII } /* inbasiclatin */,
+ { 0, 128, 0, 2, 0, UNI_ME } /* me */,
+ { 1, 5147, 4629, 10, 2, UNI_LATIN1 } /* block=latin1 */,
+ { 8, 1879, 2740, 4, 6, UNI_INCOPTIC } /* blk=coptic */,
+ { 69, 343, 772, 4, 2, UNI_CCC__17 } /* ccc=17 */,
+ { 5, 2961, 593, 12, 2, UNI_XPOSIXDIGIT } /* numerictype=de */,
+ { 2, 2392, 3719, 3, 15, UNI_MISCMATHSYMBOLSA } /* inmiscmathsymbolsa */,
+ { 2, 4355, 78, 17, 4, UNI_CYRL } /* scriptextensions=cyrl */,
+ { 0, 5099, 3044, 6, 9, UNI__PERL_QUOTEMETA } /* _perl_quotemeta */,
+ { 0, 3622, 799, 3, 3, UNI_LANA } /* islana */,
+ { 42, 7584, 4533, 18, 4, UNI_DT__INIT } /* decompositiontype=init */,
+ { 2, 6114, 1529, 3, 4, UNI_KHAR } /* sc=khar */,
+ { 64, 4355, 814, 17, 4, UNI_QAAI } /* scriptextensions=zinh */,
+ { 2, 7208, 4077, 9, 15, UNI_PD } /* category=dashpunctuation */,
+ { 33, 409, 356, 2, 2, UNI_DI } /* di=y */,
+ { 0, 2961, 602, 11, 5, UNI_NV__NAN } /* numerictype=none */,
+ { 0, 1702, 1141, 8, 3, UNI_ARABICPFA } /* isarabicpfa */,
+ { 132, 2678, 334, 3, 3, UNI_BC__PDF } /* bc=pdf */,
+ { 4, 7338, 5970, 21, 8, UNI_BC__RLO } /* bidiclass=righttoleftoverride */,
+ { 0, 464, 82, 2, 4, UNI_DSRT } /* isdsrt */,
+ { 0, 1075, 518, 4, 2, UNI_NV__2_SLASH_5 } /* nv=2/5 */,
+ { 2, 2310, 355, 12, 2, UNI_ci_values_index } /* caseignorable= */,
+ { 2, 14, 0, 1, 0, UNI_M } /* m */,
+ { 1, 296, 1299, 3, 3, UNI_NV__600 } /* nv=600 */,
+ { 0, 7148, 585, 25, 2, UNI_CCC__122 } /* canonicalcombiningclass=122 */,
+ { 0, 6114, 686, 3, 5, UNI_SC__TAKR } /* sc=takri */,
+ { 0, 840, 0, 7, 0, UNI_TGLG } /* tagalog */,
+ { 0, 464, 4827, 2, 4, UNI_BAMU } /* isbamu */,
+ { 193, 4433, 1037, 9, 4, UNI_LATINEXTB } /* blk=latinextb */,
+ { 2, 1887, 1890, 3, 4, UNI_UCASEXT } /* ucasext */,
+ { 3, 600, 3444, 3, 6, UNI_DT__SQR } /* dt=square */,
+ { 58, 1796, 0, 7, 0, UNI_sc_values_index } /* script= */,
+ { 1, 4355, 6594, 17, 4, UNI_BRAH } /* scriptextensions=brah */,
+ { 1, 5087, 1837, 10, 5, UNI_WB__EB } /* wordbreak=ebase */,
+ { 6, 2981, 891, 5, 2, UNI_IN__11 } /* in=v110 */,
+ { 0, 3474, 5631, 6, 5, UNI_INGREEK } /* block=greek */,
+ { 22, 3462, 7851, 5, 20, UNI_ENCLOSEDALPHANUM } /* blk=enclosedalphanumerics */,
+ { 0, 14, 962, 1, 3, UNI_MEND } /* mend */,
+ { 0, 1102, 1003, 4, 4, UNI_LEPC } /* scx=lepc */,
+ { 1, 313, 1220, 2, 7, UNI_INMAKASAR } /* inmakasar */,
+ { 0, 6944, 2702, 24, 4, UNI_CCC__6 } /* canonicalcombiningclass=hanr */,
+ { 168, 3974, 356, 17, 2, UNI_IDSB } /* idsbinaryoperator=y */,
+ { 7, 259, 0, 2, 0, UNI_CF } /* cf */,
+ { 1, 34, 1440, 1, 11, UNI_DEP } /* isdeprecated */,
+ { 1, 6944, 349, 24, 2, UNI_CCC__84 } /* canonicalcombiningclass=84 */,
+ { 1, 8470, 1607, 20, 7, UNI_VO__U } /* verticalorientation=upright */,
+ { 0, 1082, 0, 4, 0, UNI_XPOSIXWORD } /* word */,
+ { 0, 464, 5727, 2, 21, UNI_PRTI } /* isinscriptionalparthian */,
+ { 5, 1102, 1344, 4, 9, UNI_PALM } /* scx=palmyrene */,
+ { 2, 464, 844, 2, 2, UNI_LO } /* islo */,
+ { 7, 3672, 0, 9, 0, UNI_MLYM } /* malayalam */,
+ { 217, 464, 628, 2, 2, UNI_PI } /* ispi */,
+ { 1, 1796, 228, 7, 4, UNI_XPEO } /* script=xpeo */,
+ { 2, 1102, 686, 4, 4, UNI_TAKR } /* scx=takr */,
+ { 0, 5888, 0, 5, 0, UNI__PERL_NCHAR } /* nchar */,
+ { 9, 1867, 356, 12, 4, UNI_BIDIM } /* bidimirrored=yes */,
+ { 1, 1796, 445, 7, 4, UNI_ORKH } /* script=orkh */,
+ { 0, 12, 602, 3, 3, -UNI_PCM } /* pcm=no */,
+ { 3, 7201, 3947, 16, 14, UNI_ZS } /* generalcategory=spaceseparator */,
+ { 0, 4433, 1646, 9, 4, UNI_LATINEXTD } /* blk=latinextd */,
+ { 2, 3474, 1220, 6, 7, UNI_INMAKASAR } /* block=makasar */,
+ { 8, 1879, 5787, 4, 19, UNI_JAMOEXTA } /* blk=hanguljamoextendeda */,
+ { 2, 5, 588, 3, 2, UNI_EXT } /* ext=t */,
+ { 0, 313, 7732, 2, 29, UNI_ENCLOSEDIDEOGRAPHICSUP } /* inenclosedideographicsupplement */,
+ { 5, 1856, 934, 5, 2, -UNI_BIDIC } /* bidic=f */,
+ { 32, 4740, 0, 18, 0, UNI_ORNAMENTALDINGBATS } /* ornamentaldingbats */,
+ { 8, 7527, 285, 3, 2, UNI_LB__XX } /* lb=xx */,
+ { 0, 1704, 1037, 6, 4, UNI_ARABICEXTB } /* arabicextb */,
+ { 1, 464, 8599, 2, 18, UNI_CANS } /* iscanadianaboriginal */,
+ { 145, 15, 5625, 1, 18, UNI_ANCIENTGREEKNUMBERS } /* ancientgreeknumbers */,
+ { 1, 313, 4107, 2, 6, UNI_INHANGUL } /* inhangul */,
+ { 2, 6011, 5769, 7, 15, UNI_ENCLOSEDALPHANUM } /* block=enclosedalphanum */,
+ { 0, 3474, 6833, 6, 14, UNI_BYZANTINEMUSIC } /* block=byzantinemusic */,
+ { 0, 257, 588, 4, 2, UNI_CWCF } /* cwcf=t */,
+ { 4, 233, 4388, 2, 15, UNI_SUTTONSIGNWRITING } /* suttonsignwriting */,
+ { 0, 3748, 0, 14, 0, UNI_NV__1 } /* numericvalue=1 */,
+ { 0, 7828, 934, 16, 2, -UNI_UIDEO } /* unifiedideograph=f */,
+ { 2, 3474, 1021, 6, 6, UNI_INWANCHO } /* block=wancho */,
+ { 0, 2974, 891, 12, 2, UNI_IN__11 } /* presentin=v110 */,
+ { 2, 4291, 2016, 10, 2, UNI_GCB__V } /* linebreak=jv */,
+ { 3, 2353, 4457, 3, 11, UNI_CYRILLICEXTC } /* incyrillicextc */,
+ { 218, 2961, 409, 12, 2, UNI_NT__DI } /* numerictype=di */,
+ { 26, 6114, 3381, 3, 15, UNI_NARB } /* sc=oldnortharabian */,
+ { 1, 1796, 783, 7, 4, UNI_OSMA } /* script=osma */,
+ { 3, 1102, 496, 4, 4, UNI_KHOJ } /* scx=khoj */,
+ { 0, 464, 1289, 2, 9, UNI_TALU } /* isnewtailue */,
+ { 5, 4355, 818, 17, 7, UNI_SHRD } /* scriptextensions=sharada */,
+ { 0, 901, 0, 8, 0, UNI_ARMN } /* armenian */,
+ { 74, 6379, 4198, 13, 4, UNI_JG__TETH } /* joininggroup=teth */,
+ { 1, 1975, 0, 4, 0, UNI_PO } /* ispo */,
+ { 66, 2353, 8150, 3, 24, UNI_DIACRITICALS } /* incombiningdiacriticalmarks */,
+ { 28, 3779, 1072, 14, 3, UNI_NV__7_SLASH_12 } /* numericvalue=7/12 */,
+ { 1, 464, 1668, 2, 11, UNI_DOMINO } /* isdominotiles */,
+ { 0, 4291, 7044, 10, 13, UNI_LB__CM } /* linebreak=combiningmark */,
+ { 1, 1102, 794, 4, 4, UNI_KALI } /* scx=kali */,
+ { 67, 313, 951, 2, 8, UNI_INDUPLOYAN } /* induployan */,
+ { 5, 1102, 1362, 4, 9, UNI_SAMR } /* scx=samaritan */,
+ { 67, 5322, 5329, 7, 11, UNI_CHEROKEESUP } /* cherokeesupplement */,
+ { 18, 1796, 783, 7, 7, UNI_OSMA } /* script=osmanya */,
+ { 2, 464, 2, 2, 3, UNI_CWL } /* iscwl */,
+ { 7, 1796, 574, 7, 7, UNI_AVST } /* script=avestan */,
+ { 8, 3622, 1491, 7, 4, UNI_LATINEXTA } /* islatinexta */,
+ { 16, 1174, 1178, 4, 5, UNI_EA__NA } /* ea=narrow */,
+ { 0, 1102, 496, 4, 6, UNI_KHOJ } /* scx=khojki */,
+ { 1, 7201, 4758, 16, 18, UNI_ZP } /* generalcategory=paragraphseparator */,
+ { 0, 3474, 7732, 6, 22, UNI_ENCLOSEDIDEOGRAPHICSUP } /* block=enclosedideographicsup */,
+ { 3, 7431, 2138, 27, 2, UNI_CCC__33 } /* canonicalcombiningclass=ccc33 */,
+ { 1, 4662, 7643, 11, 17, UNI_SUPPUAB } /* supplementaryprivateuseareab */,
+ { 0, 1796, 5661, 7, 19, UNI_MERO } /* script=meroitichieroglyphs */,
+ { 1, 313, 691, 2, 5, UNI_INBATAK } /* inbatak */,
+ { 0, 8276, 8454, 22, 16, UNI_INSC__VOWELINDEPENDENT } /* indicsyllabiccategory=vowelindependent */,
+ { 0, 6379, 2688, 14, 3, UNI_JG__ALEF } /* joininggroup=alef */,
+ { 0, 7201, 8289, 7, 11, UNI_CO } /* generalcategory=co */,
+ { 0, 1102, 1785, 4, 11, UNI_HMNG } /* scx=pahawhhmong */,
+ { 1, 1879, 593, 4, 7, UNI_DSRT } /* blk=deseret */,
+ { 0, 4355, 671, 17, 5, UNI_OGAM } /* scriptextensions=ogham */,
+ { 2, 4500, 4127, 5, 10, UNI_UPPERCASELETTER } /* uppercaseletter */,
+ { 4, 3474, 7660, 6, 28, UNI_VSSUP } /* block=variationselectorssupplement */,
+ { 0, 257, 588, 4, 5, UNI_CWCF } /* cwcf=true */,
+ { 7, 1407, 2332, 3, 7, UNI_GREEKEXT } /* ingreekext */,
+ { 0, 1879, 5116, 4, 20, UNI_INANATOLIANHIEROGLYPHS } /* blk=anatolianhieroglyphs */,
+ { 8, 82, 0, 4, 0, UNI_DSRT } /* dsrt */,
+ { 0, 959, 356, 8, 2, UNI_EXT } /* extender=y */,
+ { 192, 464, 1589, 2, 3, UNI_ALL } /* isall */,
+ { 1, 7317, 56, 10, 2, UNI_BC__AN } /* bidiclass=an */,
+ { 0, 2443, 356, 5, 4, UNI_CASED } /* cased=yes */,
+ { 6, 7880, 6509, 5, 19, UNI_CJKCOMPATIDEOGRAPHSSUP } /* iscjkcompatideographssup */,
+ { 174, 313, 1495, 2, 8, UNI_INJAVANESE } /* injavanese */,
+ { 24, 1796, 2740, 7, 6, UNI_SC__COPT } /* script=coptic */,
+ { 0, 1102, 3671, 3, 10, UNI_MLYM } /* scx=malayalam */,
+ { 1, 6039, 1052, 7, 7, UNI_INMAHAJANI } /* block=mahajani */,
+ { 1, 1879, 4793, 4, 18, UNI_RUMI } /* blk=ruminumeralsymbols */,
+ { 4, 1796, 136, 7, 4, UNI_SC__MYMR } /* script=mymr */,
+ { 0, 3622, 5, 7, 4, UNI_LATINEXTG } /* islatinextg */,
+ { 0, 1102, 140, 4, 4, UNI_NARB } /* scx=narb */,
+ { 0, 6379, 2498, 12, 11, UNI_JG__AFRICANFEH } /* joininggroup=africanfeh */,
+ { 6, 6114, 1125, 3, 8, UNI_TFNG } /* sc=tifinagh */,
+ { 113, 313, 1271, 2, 9, UNI_INKHUDAWADI } /* inkhudawadi */,
+ { 4, 1796, 124, 7, 4, UNI_SC__LATN } /* script=latn */,
+ { 0, 7527, 2961, 3, 7, UNI_LB__NU } /* lb=numeric */,
+ { 0, 3474, 4202, 6, 17, UNI_INKHITANSMALLSCRIPT } /* block=khitansmallscript */,
+ { 0, 2, 64, 1, 3, UNI_CHRS } /* chrs */,
+ { 2, 1796, 4436, 6, 6, UNI_SC__LATN } /* script=latin */,
+ { 0, 2496, 787, 3, 3, UNI_JG__NYA } /* jg=nya */,
+ { 1, 1796, 156, 7, 4, UNI_SC__OUGR } /* script=ougr */,
+ { 0, 405, 0, 4, 0, UNI_ARMN } /* armn */,
+ { 3, 1326, 0, 9, 0, UNI_ORKH } /* oldturkic */,
+ { 0, 6919, 0, 25, 0, UNI_SYMBOLSFORLEGACYCOMPUTING } /* symbolsforlegacycomputing */,
+ { 8, 1480, 958, 7, 4, UNI_GEORGIANEXT } /* georgianext */,
+ { 0, 823, 934, 4, 6, -UNI_DASH } /* dash=false */,
+ { 4, 2973, 934, 5, 2, -UNI_EPRES } /* epres=f */,
+ { 8, 4355, 1248, 17, 4, UNI_SIDD } /* scriptextensions=sidd */,
+ { 0, 6114, 417, 3, 4, UNI_SC__HANO } /* sc=hano */,
+ { 0, 2193, 6199, 4, 5, UNI_NV__600000 } /* nv=600000 */,
+ { 4, 1102, 31, 4, 4, UNI_ARMI } /* scx=armi */,
+ { 17, 2220, 0, 4, 0, UNI_HUNG } /* hung */,
+ { 0, 2483, 1638, 4, 8, UNI_XPOSIXSPACE } /* isxperlspace */,
+ { 0, 3236, 0, 13, 0, UNI_ME } /* enclosingmark */,
+ { 0, 833, 278, 4, 1, UNI_term_values_index } /* term= */,
+ { 0, 8276, 6867, 31, 11, UNI_INSC__CONSONANTWITHSTACKER } /* indicsyllabiccategory=consonantwithstacker */,
+ { 76, 5087, 3416, 12, 7, UNI_WB__MB } /* wordbreak=midnumlet */,
+ { 142, 1991, 647, 11, 2, UNI_JT__L } /* joiningtype=l */,
+ { 1, 464, 868, 2, 7, UNI_TIRH } /* istirhuta */,
+ { 6, 306, 934, 5, 2, -UNI__PERL_PATWS } /* patws=f */,
+ { 1, 2496, 484, 3, 3, UNI_JG__GAF } /* jg=gaf */,
+ { 2, 3058, 934, 8, 2, -UNI_XPOSIXXDIGIT } /* hexdigit=f */,
+ { 0, 296, 768, 3, 2, UNI_NV__45 } /* nv=45 */,
+ { 0, 3053, 934, 13, 6, -UNI_POSIXXDIGIT } /* asciihexdigit=false */,
+ { 2, 3474, 5389, 6, 20, UNI_INNYIAKENGPUACHUEHMONG } /* block=nyiakengpuachuehmong */,
+ { 13, 1133, 0, 8, 0, UNI_VITH } /* vithkuqi */,
+ { 3, 6803, 602, 20, 3, -UNI_CE } /* compositionexclusion=no */,
+ { 77, 3809, 764, 14, 2, UNI_NV__9_SLASH_2 } /* numericvalue=9/2 */,
+ { 0, 5087, 287, 10, 2, UNI_WB__NU } /* wordbreak=nu */,
+ { 0, 57, 601, 1, 6, UNI_NV__NAN } /* nt=none */,
+ { 12, 1102, 909, 4, 4, UNI_BALI } /* scx=bali */,
+ { 5, 2678, 4758, 3, 18, UNI_BC__B } /* bc=paragraphseparator */,
+ { 5, 939, 934, 5, 2, -UNI_ECOMP } /* ecomp=f */,
+ { 0, 7431, 772, 27, 2, UNI_CCC__17 } /* canonicalcombiningclass=ccc17 */,
+ { 2, 19, 0, 4, 0, UNI_AGHB } /* aghb */,
+ { 5, 343, 119, 4, 2, UNI_CCC__AL } /* ccc=al */,
+ { 0, 1710, 466, 3, 3, UNI_SHRD } /* isshrd */,
+ { 4, 6114, 78, 3, 4, UNI_SC__CYRL } /* sc=cyrl */,
+ { 137, 2253, 890, 9, 3, UNI_IN__10 } /* presentin=10 */,
+ { 1, 1516, 2373, 4, 9, UNI_KATAKANAEXT } /* iskatakanaext */,
+ { 8, 1383, 356, 7, 4, UNI_IDS } /* idstart=yes */,
+ { 0, 5907, 0, 7, 0, UNI_SINH } /* sinhala */,
+ { 0, 3669, 787, 12, 3, UNI_JG__MALAYALAMNYA } /* jg=malayalamnya */,
+ { 18, 5186, 934, 20, 6, -UNI_EXTPICT } /* extendedpictographic=false */,
+ { 0, 2205, 2060, 8, 4, UNI_NV__5_SLASH_6 } /* nv=8.333e-01 */,
+ { 4, 3351, 2071, 13, 9, UNI_NV__1_SLASH_7 } /* numericvalue=1.429e-01 */,
+ { 1, 2274, 934, 4, 2, -UNI_XIDC } /* xidc=f */,
+ { 1, 36, 4370, 1, 2, UNI_vs_values_index } /* vs= */,
+ { 192, 2, 356, 3, 2, UNI_CWL } /* cwl=y */,
+ { 0, 7880, 0, 22, 0, UNI_CJK } /* iscjkunifiedideographs */,
+ { 0, 1102, 43, 4, 4, UNI_BHKS } /* scx=bhks */,
+ { 0, 3474, 1125, 6, 8, UNI_INTIFINAGH } /* block=tifinagh */,
+ { 11, 313, 2355, 2, 8, UNI_INCYRILLIC } /* incyrillic */,
+ { 6, 3474, 1571, 6, 10, UNI_INSAURASHTRA } /* block=saurashtra */,
+ { 0, 4355, 8599, 17, 18, UNI_CANS } /* scriptextensions=canadianaboriginal */,
+ { 0, 6114, 825, 3, 7, UNI_SHAW } /* sc=shavian */,
+ { 2, 4656, 0, 16, 0, UNI_TANGUTSUP } /* tangutsupplement */,
+ { 1, 2153, 292, 4, 1, UNI_NV__43 } /* nv=43 */,
+ { 3, 464, 1371, 2, 4, UNI_THAA } /* isthaa */,
+ { 74, 6114, 997, 3, 6, UNI_SC__KTHI } /* sc=kaithi */,
+ { 17, 4092, 934, 9, 2, -UNI_DIA } /* diacritic=f */,
+ { 16, 2274, 933, 10, 3, -UNI_XIDC } /* xidcontinue=f */,
+ { 0, 4322, 518, 14, 2, UNI_NV__3_SLASH_5 } /* numericvalue=3/5 */,
+ { 0, 8533, 6898, 9, 22, UNI_SUPERANDSUB } /* block=superscriptsandsubscripts */,
+ { 0, 2033, 1175, 4, 3, -UNI_XPOSIXALPHA } /* alpha=n */,
+ { 1, 1796, 671, 7, 5, UNI_OGAM } /* script=ogham */,
+ { 0, 600, 1176, 2, 4, UNI_DT__NAR } /* dt=nar */,
+ { 2, 2353, 8150, 3, 32, UNI_DIACRITICALSEXT } /* incombiningdiacriticalmarksextended */,
+ { 0, 1796, 2695, 6, 7, UNI_SC__ARAB } /* script=arabic */,
+ { 0, 7828, 0, 16, 0, UNI_UIDEO } /* unifiedideograph */,
+ { 1, 5586, 366, 21, 2, UNI_GCB__SM } /* graphemeclusterbreak=sm */,
+ { 2, 2463, 356, 5, 4, UNI_JOINC } /* joinc=yes */,
+ { 0, 2678, 6253, 14, 9, UNI_BC__RLE } /* bc=righttoleftembedding */,
+ { 3, 1879, 5797, 8, 9, UNI_KANAEXTA } /* blk=kanaextendeda */,
+ { 198, 5087, 285, 10, 2, UNI_WB__XX } /* wordbreak=xx */,
+ { 1, 5087, 959, 10, 6, UNI_WB__EXTEND } /* wordbreak=extend */,
+ { 209, 644, 0, 4, 0, UNI_hst_values_index } /* hst= */,
+ { 0, 464, 6276, 2, 6, UNI_CF } /* isformat */,
+ { 197, 1065, 766, 4, 3, UNI_NV__1_SLASH_64 } /* nv=1/64 */,
+ { 7, 3748, 3807, 15, 2, UNI_NV__1_SLASH_80 } /* numericvalue=1/80 */,
+ { 0, 1059, 356, 6, 4, UNI_DT__NONE } /* nfkdqc=yes */,
+ { 6, 6114, 2771, 3, 5, UNI_KHMR } /* sc=khmer */,
+ { 11, 464, 5806, 2, 9, UNI_MONG } /* ismongolian */,
+ { 5, 1879, 5727, 4, 21, UNI_ININSCRIPTIONALPARTHIAN } /* blk=inscriptionalparthian */,
+ { 0, 2726, 58, 3, 2, UNI_SC } /* gc=sc */,
+ { 0, 5865, 588, 21, 2, UNI_LOE } /* logicalorderexception=t */,
+ { 5, 7880, 5, 5, 4, UNI_CJKEXTG } /* iscjkextg */,
+ { 1, 8470, 1329, 20, 2, UNI_VO__TU } /* verticalorientation=tu */,
+ { 0, 1102, 39, 4, 4, UNI_BATK } /* scx=batk */,
+ { 0, 6112, 1157, 5, 5, UNI_INSC__NUKTA } /* insc=nukta */,
+ { 39, 1117, 0, 4, 0, UNI_TAGB } /* tagb */,
+ { 0, 3351, 800, 13, 3, UNI_NV__NAN } /* numericvalue=nan */,
+ { 0, 1796, 1508, 7, 4, UNI_UGAR } /* script=ugar */,
+ { 0, 296, 350, 3, 2, UNI_NV__49 } /* nv=49 */,
+ { 1, 1879, 1529, 4, 10, UNI_INKHAROSHTHI } /* blk=kharoshthi */,
+ { 1, 464, 3000, 2, 13, UNI_QMARK } /* isquotationmark */,
+ { 2, 6114, 67, 3, 4, UNI_SC__CPMN } /* sc=cpmn */,
+ { 0, 4322, 397, 14, 1, UNI_NV__35 } /* numericvalue=35 */,
+ { 40, 8007, 6352, 7, 18, UNI_CJKRADICALSSUP } /* blk=cjkradicalssupplement */,
+ { 0, 3351, 518, 14, 2, UNI_NV__2_SLASH_5 } /* numericvalue=2/5 */,
+ { 1, 464, 257, 2, 4, UNI_CWCF } /* iscwcf */,
+ { 5, 4291, 2937, 10, 11, UNI_LB__IN } /* linebreak=inseperable */,
+ { 1, 1102, 124, 4, 4, UNI_LATN } /* scx=latn */,
+ { 33, 8182, 0, 24, 0, UNI_inpc_values_index } /* indicpositionalcategory= */,
+ { 0, 1102, 1561, 4, 10, UNI_PHNX } /* scx=phoenician */,
+ { 5, 3809, 6199, 14, 5, UNI_NV__900000 } /* numericvalue=900000 */,
+ { 1, 3794, 2617, 14, 8, UNI_NV__4_SLASH_5 } /* numericvalue=8.000e-01 */,
+ { 25, 5990, 1998, 17, 5, UNI_bpt_values_index } /* bidipairedbrackettype= */,
+ { 0, 5087, 102, 10, 2, UNI_LB__HL } /* wordbreak=hl */,
+ { 13, 6944, 5464, 24, 17, UNI_WB__EB } /* canonicalcombiningclass=attachedbelowleft */,
+ { 0, 1102, 909, 4, 8, UNI_BALI } /* scx=balinese */,
+ { 0, 1796, 5825, 7, 4, UNI_SUND } /* script=sund */,
+ { 4, 5099, 2581, 6, 9, UNI__PERL_SURROGATE } /* _perl_surrogate */,
+ { 0, 1377, 510, 3, 2, UNI_WB__DQ } /* wb=dq */,
+ { 0, 1102, 4107, 4, 4, UNI_HANG } /* scx=hang */,
+ { 0, 4872, 3641, 10, 10, UNI_KANASUP } /* block=kanasupplement */,
+ { 1, 6687, 787, 22, 3, UNI_JG__MALAYALAMNYA } /* joininggroup=malayalamnya */,
+ { 1, 1102, 208, 4, 4, UNI_TFNG } /* scx=tfng */,
+ { 1, 6570, 4042, 8, 8, UNI_INPC__TOPANDRIGHT } /* inpc=topandright */,
+ { 27, 3474, 1424, 6, 10, UNI_INCHORASMIAN } /* block=chorasmian */,
+ { 0, 5214, 0, 9, 0, UNI_HALFMARKS } /* halfmarks */,
+ { 32, 306, 588, 5, 2, UNI__PERL_PATWS } /* patws=t */,
+ { 5, 520, 2120, 4, 8, UNI_NV__3_SLASH_4 } /* nv=7.500e-01 */,
+ { 36, 1879, 3053, 4, 5, UNI_ASCII } /* blk=ascii */,
+ { 0, 6114, 156, 3, 4, UNI_SC__OUGR } /* sc=ougr */,
+ { 0, 6379, 2824, 13, 11, UNI_JG__ROHINGYAYEH } /* joininggroup=rohingyayeh */,
+ { 8, 1856, 602, 11, 2, -UNI_BIDIC } /* bidicontrol=n */,
+ { 1, 464, 4302, 2, 6, UNI_XPOSIXSPACE } /* iswspace */,
+ { 0, 3474, 5661, 6, 19, UNI_MERO } /* block=meroitichieroglyphs */,
+ { 1, 7208, 0, 9, 0, UNI_gc_values_index } /* category= */,
+ { 2, 1377, 5, 3, 2, UNI_WB__EX } /* wb=ex */,
+ { 5, 6379, 1265, 13, 6, UNI_JG__LAMADH } /* joininggroup=lamadh */,
+ { 0, 1796, 1228, 8, 6, UNI_SC__MULT } /* script=multani */,
+ { 32, 313, 1280, 2, 9, UNI_INNABATAEAN } /* innabataean */,
+ { 0, 75, 588, 3, 5, UNI_CWU } /* cwu=true */,
+ { 0, 426, 5117, 3, 19, UNI_INANATOLIANHIEROGLYPHS } /* inanatolianhieroglyphs */,
+ { 5, 4355, 71, 17, 4, UNI_CPRT } /* scriptextensions=cprt */,
+ { 0, 464, 7044, 2, 13, UNI_M } /* iscombiningmark */,
+ { 3, 939, 588, 5, 2, UNI_ECOMP } /* ecomp=t */,
+ { 52, 1796, 728, 7, 7, UNI_SC__KALI } /* script=kayahli */,
+ { 0, 632, 355, 5, 2, UNI_grbase_values_index } /* grbase= */,
+ { 3, 5748, 4081, 5, 11, UNI_SUPPUNCTUATION } /* insuppunctuation */,
+ { 5, 2463, 602, 11, 3, -UNI_JOINC } /* joincontrol=no */,
+ { 2, 296, 584, 2, 3, UNI_NV__22 } /* nv=22 */,
+ { 1, 1410, 299, 8, 1, UNI_CCC__19 } /* ccc=ccc19 */,
+ { 0, 6379, 3688, 13, 3, UNI_JG__TAW } /* joininggroup=taw */,
+ { 0, 4355, 433, 17, 3, UNI_NKO } /* scriptextensions=nko */,
+ { 2, 833, 602, 4, 3, -UNI_TERM } /* term=no */,
+ { 0, 296, 1153, 3, 2, UNI_NV__24 } /* nv=24 */,
+ { 50, 1879, 7732, 4, 22, UNI_ENCLOSEDIDEOGRAPHICSUP } /* blk=enclosedideographicsup */,
+ { 9, 4355, 1117, 17, 8, UNI_TAGB } /* scriptextensions=tagbanwa */,
+ { 0, 1377, 7377, 3, 8, UNI_WB__KA } /* wb=katakana */,
+ { 74, 7527, 10, 3, 2, UNI_LB__CR } /* lb=cr */,
+ { 46, 34, 4005, 1, 16, UNI_CURRENCYSYMBOLS } /* iscurrencysymbols */,
+ { 1, 4338, 356, 17, 4, UNI_RI } /* regionalindicator=yes */,
+ { 0, 1991, 588, 11, 2, UNI_JT__T } /* joiningtype=t */,
+ { 0, 5586, 1837, 21, 5, UNI_WB__EB } /* graphemeclusterbreak=ebase */,
+ { 1, 172, 0, 4, 0, UNI_RJNG } /* rjng */,
+ { 1, 343, 5472, 4, 9, UNI_CCC__BL } /* ccc=belowleft */,
+ { 0, 2, 6528, 1, 21, UNI_INDICNUMBERFORMS } /* commonindicnumberforms */,
+ { 27, 1796, 2771, 7, 5, UNI_KHMR } /* script=khmer */,
+ { 0, 313, 1234, 2, 7, UNI_NB } /* innoblock */,
+ { 0, 1516, 3641, 6, 10, UNI_KANASUP } /* iskanasupplement */,
+ { 0, 4355, 496, 17, 6, UNI_KHOJ } /* scriptextensions=khojki */,
+ { 2, 464, 676, 2, 5, UNI_OSGE } /* isosage */,
+ { 0, 464, 1887, 2, 8, UNI_UCASEXTA } /* isucasexta */,
+ { 0, 3622, 3704, 3, 15, UNI_LINEARBIDEOGRAMS } /* islinearbideograms */,
+ { 1, 2890, 2879, 3, 11, UNI_JT__L } /* jt=leftjoining */,
+ { 0, 3474, 1470, 6, 8, UNI_INBUGINESE } /* block=buginese */,
+ { 0, 1214, 5797, 6, 9, UNI_KANAEXTA } /* inkanaextendeda */,
+ { 130, 464, 3654, 2, 11, UNI_MC } /* isspacingmark */,
+ { 0, 2392, 8212, 3, 32, UNI_MISCMATHSYMBOLSB } /* inmiscellaneousmathematicalsymbolsb */,
+ { 1, 5087, 7377, 10, 8, UNI_WB__KA } /* wordbreak=katakana */,
+ { 183, 4355, 3309, 17, 4, UNI_MERO } /* scriptextensions=mero */,
+ { 0, 3351, 2119, 13, 9, UNI_NV__3_SLASH_20 } /* numericvalue=1.500e-01 */,
+ { 11, 2253, 389, 10, 3, UNI_IN__3_DOT_2 } /* presentin=3.2 */,
+ { 233, 1796, 3465, 6, 9, UNI_ETHI } /* script=ethiopic */,
+ { 4, 464, 112, 2, 4, UNI_KITS } /* iskits */,
+ { 1, 7317, 2384, 10, 2, UNI_BC__CS } /* bidiclass=cs */,
+ { 147, 7068, 588, 26, 5, UNI_PCM } /* prependedconcatenationmark=true */,
+ { 0, 4355, 983, 17, 8, UNI_HIRA } /* scriptextensions=hiragana */,
+ { 6, 464, 273, 2, 2, UNI_ZP } /* iszp */,
+ { 1, 3474, 1227, 6, 7, UNI_INMULTANI } /* block=multani */,
+ { 2, 373, 3156, 3, 8, UNI_NO } /* othernumber */,
+ { 3, 313, 4656, 2, 9, UNI_TANGUTSUP } /* intangutsup */,
+ { 0, 1410, 772, 7, 2, UNI_CCC__17 } /* ccc=ccc17 */,
+ { 0, 3396, 0, 15, 0, UNI_SARB } /* oldsoutharabian */,
+ { 3, 4291, 2961, 10, 7, UNI_LB__NU } /* linebreak=numeric */,
+ { 0, 464, 301, 2, 5, UNI_ORYA } /* isoriya */,
+ { 6, 3474, 433, 6, 3, UNI_INNKO } /* block=nko */,
+ { 1, 612, 5021, 2, 3, UNI_LB__CL } /* lb=cl */,
+ { 1, 4726, 2064, 14, 8, UNI_NV__5_SLASH_8 } /* numericvalue=6.250e-01 */,
+ { 2, 1796, 5340, 7, 4, UNI_SC__DEVA } /* script=deva */,
+ { 136, 6594, 0, 6, 0, UNI_BRAH } /* brahmi */,
+ { 89, 5481, 278, 21, 1, UNI_cwcf_values_index } /* changeswhencasefolded= */,
+ { 0, 192, 194, 2, 2, UNI_SHAW } /* shaw */,
+ { 6, 1796, 818, 7, 7, UNI_SC__SHRD } /* script=sharada */,
+ { 5, 3090, 5812, 9, 13, UNI_GEORGIANSUP } /* blk=georgiansupplement */,
+ { 1, 34, 1440, 1, 4, UNI_DEP } /* isdep */,
+ { 0, 3474, 1191, 6, 7, UNI_INBENGALI } /* block=bengali */,
+ { 9, 4322, 3807, 15, 2, UNI_NV__3_SLASH_80 } /* numericvalue=3/80 */,
+ { 4, 3915, 356, 17, 4, UNI_EPRES } /* emojipresentation=yes */,
+ { 1, 8007, 4611, 30, 4, UNI_CJKEXTF } /* blk=cjkunifiedideographsextensionf */,
+ { 0, 3734, 1771, 14, 6, UNI_NFCQC__M } /* nfkcquickcheck=maybe */,
+ { 0, 7182, 8407, 3, 33, UNI_CJKCOMPATIDEOGRAPHSSUP } /* cjkcompatibilityideographssupplement */,
+ { 2, 1879, 4750, 4, 8, UNI_DINGBATS } /* blk=dingbats */,
+ { 68, 5409, 934, 19, 2, -UNI_TERM } /* terminalpunctuation=f */,
+ { 52, 5928, 0, 21, 0, UNI_VO__TR } /* vo=transformedrotated */,
+ { 1, 1796, 2401, 7, 4, UNI_SC__NAND } /* script=nand */,
+ { 10, 3351, 2128, 13, 9, UNI_NV__1_SLASH_32 } /* numericvalue=3.125e-02 */,
+ { 0, 6466, 0, 10, 0, UNI_CO } /* privateuse */,
+ { 143, 1796, 991, 7, 6, UNI_HATR } /* script=hatran */,
+ { 37, 513, 518, 4, 2, UNI_NV__3_SLASH_5 } /* nv=3/5 */,
+ { 3, 464, 6833, 2, 14, UNI_BYZANTINEMUSIC } /* isbyzantinemusic */,
+ { 8, 34, 4484, 1, 10, UNI_TITLE } /* istitlecase */,
+ { 0, 3593, 4275, 3, 16, UNI_LETTERLIKESYMBOLS } /* inletterlikesymbols */,
+ { 32, 7660, 602, 17, 2, -UNI_VS } /* variationselector=n */,
+ { 0, 343, 1070, 4, 2, UNI_CCC__31 } /* ccc=31 */,
+ { 8, 6570, 0, 5, 0, UNI_inpc_values_index } /* inpc= */,
+ { 0, 1879, 2394, 4, 7, UNI_INMYANMAR } /* blk=myanmar */,
+ { 2, 1879, 1785, 4, 11, UNI_INPAHAWHHMONG } /* blk=pahawhhmong */,
+ { 3, 7132, 5080, 7, 7, UNI_SUPARROWSA } /* blk=suparrowsa */,
+ { 0, 1879, 5389, 4, 20, UNI_INNYIAKENGPUACHUEHMONG } /* blk=nyiakengpuachuehmong */,
+ { 9, 4355, 31, 17, 4, UNI_ARMI } /* scriptextensions=armi */,
+ { 1, 6114, 540, 3, 4, UNI_TANG } /* sc=tang */,
+ { 18, 7182, 6509, 3, 19, UNI_CJKCOMPATIDEOGRAPHSSUP } /* cjkcompatideographssup */,
+ { 1, 2726, 259, 3, 2, UNI_CF } /* gc=cf */,
+ { 130, 997, 0, 6, 0, UNI_KTHI } /* kaithi */,
+ { 0, 1233, 10, 3, 2, UNI_OCR } /* inocr */,
+ { 112, 7208, 3223, 9, 13, UNI_XPOSIXDIGIT } /* category=decimalnumber */,
+ { 11, 6570, 4038, 5, 12, UNI_INPC__LEFTANDRIGHT } /* inpc=leftandright */,
+ { 3, 1879, 4107, 4, 6, UNI_INHANGUL } /* blk=hangul */,
+ { 4, 7880, 4341, 28, 4, UNI_CJKEXTA } /* iscjkunifiedideographsextensiona */,
+ { 2, 34, 7790, 1, 5, UNI_IDEO } /* isideo */,
+ { 1, 328, 6898, 3, 22, UNI_SUPERANDSUB } /* superscriptsandsubscripts */,
+ { 138, 536, 329, 3, 2, UNI_SB__UP } /* sb=up */,
+ { 7, 1480, 5812, 5, 13, UNI_GEORGIANSUP } /* georgiansupplement */,
+ { 16, 464, 1241, 2, 4, UNI_PHAG } /* isphag */,
+ { 57, 1796, 1614, 7, 10, UNI_WARA } /* script=warangciti */,
+ { 0, 6114, 236, 3, 2, UNI_SC__YI } /* sc=yi */,
+ { 7, 2638, 2056, 11, 2, UNI_IN__5_DOT_1 } /* presentin=5.1 */,
+ { 1, 34, 115, 1, 5, UNI_KNDA } /* isknda */,
+ { 97, 524, 356, 6, 4, UNI_PATSYN } /* patsyn=yes */,
+ { 69, 3474, 220, 6, 4, UNI_INTOTO } /* block=toto */,
+ { 1, 1065, 299, 5, 1, UNI_NV__1_SLASH_9 } /* nv=1/9 */,
+ { 0, 1410, 2138, 7, 2, UNI_CCC__33 } /* ccc=ccc33 */,
+ { 12, 3593, 1037, 7, 4, UNI_LATINEXTB } /* inlatinextb */,
+ { 51, 464, 783, 2, 4, UNI_OSMA } /* isosma */,
+ { 58, 6402, 832, 14, 5, UNI_SB__ST } /* sentencebreak=sterm */,
+ { 104, 46, 5021, 2, 3, UNI_SB__CL } /* sb=cl */,
+ { 0, 313, 2297, 2, 13, UNI_BLOCKELEMENTS } /* inblockelements */,
+ { 0, 5087, 546, 10, 2, UNI_WB__EB } /* wordbreak=eb */,
+ { 0, 7201, 3518, 16, 9, UNI_Z } /* generalcategory=separator */,
+ { 1, 1879, 7416, 4, 14, UNI_PUA } /* blk=privateusearea */,
+ { 0, 4662, 5762, 12, 7, UNI_SUPARROWSB } /* supplementalarrowsb */,
+ { 0, 5502, 278, 21, 1, UNI_cwcm_values_index } /* changeswhencasemapped= */,
+ { 6, 3474, 676, 6, 5, UNI_INOSAGE } /* block=osage */,
+ { 1, 7431, 2074, 28, 2, UNI_CCC__129 } /* canonicalcombiningclass=ccc129 */,
+ { 4, 1102, 1248, 4, 4, UNI_SIDD } /* scx=sidd */,
+ { 2, 5888, 588, 5, 2, UNI__PERL_NCHAR } /* nchar=t */,
+ { 0, 5087, 1842, 10, 3, UNI_WB__EB } /* wordbreak=gaz */,
+ { 4, 144, 0, 4, 0, UNI_NEWA } /* newa */,
+ { 0, 7880, 3929, 28, 4, UNI_CJKEXTG } /* iscjkunifiedideographsextensiong */,
+ { 4, 4500, 278, 5, 1, UNI_upper_values_index } /* upper= */,
+ { 105, 6114, 840, 3, 7, UNI_SC__TGLG } /* sc=tagalog */,
+ { 0, 1102, 6030, 3, 9, UNI_GEOR } /* scx=georgian */,
+ { 144, 1191, 0, 4, 0, UNI_BENG } /* beng */,
+ { 2, 1796, 188, 7, 4, UNI_SGNW } /* script=sgnw */,
+ { 10, 14, 7975, 1, 32, UNI_MISCMATHSYMBOLSA } /* miscellaneousmathematicalsymbolsa */,
+ { 2, 5607, 6823, 15, 10, UNI_IDENTIFIERTYPE__LIMITEDUSE } /* identifiertype=limiteduse */,
+ { 128, 2926, 5358, 3, 11, UNI_SMALLKANAEXT } /* insmallkanaext */,
+ { 0, 3351, 2080, 14, 8, UNI_NV__5_SLASH_2 } /* numericvalue=2.500e+00 */,
+ { 0, 6114, 749, 3, 4, UNI_MARC } /* sc=marc */,
+ { 2, 1440, 602, 2, 2, -UNI_SD } /* sd=n */,
+ { 13, 6114, 5340, 3, 4, UNI_SC__DEVA } /* sc=deva */,
+ { 0, 3593, 1646, 7, 4, UNI_LATINEXTD } /* inlatinextd */,
+ { 6, 313, 5907, 2, 7, UNI_INSINHALA } /* insinhala */,
+ { 1, 1065, 0, 6, 0, UNI_NV__1_SLASH_3 } /* nv=1/3 */,
+ { 15, 8533, 7937, 7, 29, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* block=symbolsandpictographsextendeda */,
+ { 10, 1879, 776, 4, 7, UNI_OLCK } /* blk=olchiki */,
+ { 8, 464, 429, 2, 4, UNI_MRO } /* ismroo */,
+ { 3, 6379, 5015, 13, 4, UNI_JG__YUDH } /* joininggroup=yudh */,
+ { 0, 1410, 1155, 7, 2, UNI_CCC__35 } /* ccc=ccc35 */,
+ { 0, 6114, 611, 3, 4, UNI_ELBA } /* sc=elba */,
+ { 0, 6114, 449, 3, 4, UNI_PHLI } /* sc=phli */,
+ { 0, 4355, 208, 17, 4, UNI_TFNG } /* scriptextensions=tfng */,
+ { 1, 8533, 1110, 7, 7, UNI_SPECIALS } /* block=specials */,
+ { 2, 7208, 1379, 8, 2, UNI_M } /* category=m */,
+ { 11, 1441, 356, 3, 4, UNI_DEP } /* dep=yes */,
+ { 0, 3474, 3991, 6, 7, UNI_BRAI } /* block=braille */,
+ { 0, 5844, 5080, 14, 7, UNI_SUPARROWSA } /* issupplementalarrowsa */,
+ { 0, 16, 601, 1, 2, UNI_dt_values_index } /* dt= */,
+ { 0, 275, 1837, 4, 5, UNI_WB__EB } /* gcb=ebase */,
+ { 1, 4291, 5021, 9, 17, UNI_LB__CP } /* linebreak=closeparenthesis */,
+ { 0, 8182, 2688, 30, 4, UNI_INPC__TOPANDLEFT } /* indicpositionalcategory=topandleft */,
+ { 202, 4355, 477, 17, 4, UNI_VAI } /* scriptextensions=vaii */,
+ { 2, 6570, 4038, 11, 12, UNI_INPC__TOPANDLEFTANDRIGHT } /* inpc=topandleftandright */,
+ { 32, 6114, 1144, 3, 9, UNI_BHKS } /* sc=bhaiksuki */,
+ { 2, 5087, 5, 10, 2, UNI_WB__EX } /* wordbreak=ex */,
+ { 5, 313, 5305, 3, 17, UNI_TAIXUANJING } /* intaixuanjingsymbols */,
+ { 0, 6379, 4178, 13, 4, UNI_JG__KAPH } /* joininggroup=kaph */,
+ { 0, 360, 0, 6, 0, UNI_CAKM } /* chakma */,
+ { 98, 1102, 593, 4, 7, UNI_DSRT } /* scx=deseret */,
+ { 0, 2496, 713, 3, 4, UNI_JG__SHIN } /* jg=shin */,
+ { 0, 464, 4857, 2, 5, UNI_TAML } /* istamil */,
+ { 0, 832, 278, 5, 1, UNI_sterm_values_index } /* sterm= */,
+ { 0, 536, 10, 3, 2, UNI_LB__CR } /* sb=cr */,
+ { 2, 4783, 933, 9, 3, -UNI_XPOSIXSPACE } /* whitespace=f */,
+ { 0, 7688, 229, 23, 2, UNI_JG__MANICHAEANPE } /* joininggroup=manichaeanpe */,
+ { 0, 7201, 538, 15, 2, UNI_S } /* generalcategory=s */,
+ { 3, 313, 346, 2, 3, UNI_IN__11 } /* in=11 */,
+ { 17, 2485, 4081, 6, 5, UNI_XPOSIXPUNCT } /* xposixpunct */,
+ { 0, 2802, 6091, 3, 21, UNI_EARLYDYNASTICCUNEIFORM } /* isearlydynasticcuneiform */,
+ { 0, 1915, 587, 11, 6, UNI_GRBASE } /* graphemebase=true */,
+ { 1, 6039, 4442, 13, 9, UNI_MYANMAREXTB } /* block=myanmarextendedb */,
+ { 8, 5844, 5762, 5, 7, UNI_SUPARROWSB } /* issuparrowsb */,
+ { 0, 2474, 2030, 3, 11, UNI_MATHALPHANUM } /* ismathalphanum */,
+ { 2, 461, 0, 4, 0, UNI_QAAI } /* qaai */,
+ { 1, 1879, 1668, 4, 11, UNI_DOMINO } /* blk=dominotiles */,
+ { 0, 513, 398, 5, 2, UNI_NV__3_SLASH_16 } /* nv=3/16 */,
+ { 6, 8276, 6594, 22, 19, UNI_INSC__BRAHMIJOININGNUMBER } /* indicsyllabiccategory=brahmijoiningnumber */,
+ { 1, 313, 5825, 2, 12, UNI_SUNDANESESUP } /* insundanesesup */,
+ { 6, 12, 0, 3, 0, UNI_PCM } /* pcm */,
+ { 3, 2792, 1037, 10, 4, UNI_CYRILLICEXTB } /* iscyrillicextb */,
+ { 1, 464, 3498, 2, 16, UNI_CYPRIOTSYLLABARY } /* iscypriotsyllabary */,
+ { 147, 313, 681, 2, 5, UNI_INRUNIC } /* inrunic */,
+ { 12, 600, 6944, 6, 9, UNI_DT__NONCANON } /* dt=noncanonical */,
+ { 0, 343, 353, 4, 2, UNI_CCC__9 } /* ccc=vr */,
+ { 0, 3000, 602, 13, 3, -UNI_QMARK } /* quotationmark=no */,
+ { 10, 296, 394, 3, 2, UNI_NV__34 } /* nv=34 */,
+ { 0, 372, 0, 6, 0, UNI_GOTH } /* gothic */,
+ { 1, 7605, 587, 17, 3, UNI_GCB__T } /* hangulsyllabletype=t */,
+ { 0, 895, 572, 5, 2, UNI_AGE__5_DOT_2 } /* age=v52 */,
+ { 7, 2792, 5797, 10, 9, UNI_CYRILLICEXTA } /* iscyrillicextendeda */,
+ { 4, 7208, 2443, 9, 11, UNI_CASEDLETTER } /* category=casedletter */,
+ { 2, 3722, 602, 4, 2, -UNI_MATH } /* math=n */,
+ { 0, 4355, 1571, 17, 10, UNI_SAUR } /* scriptextensions=saurashtra */,
+ { 1, 14, 4567, 1, 15, UNI_MISCMATHSYMBOLSB } /* miscmathsymbolsb */,
+ { 0, 275, 602, 2, 2, UNI_N } /* gc=n */,
+ { 16, 6944, 890, 23, 3, UNI_CCC__10 } /* canonicalcombiningclass=10 */,
+ { 0, 1879, 2373, 6, 9, UNI_KATAKANAEXT } /* blk=katakanaext */,
+ { 13, 7317, 387, 10, 2, UNI_BC__EN } /* bidiclass=en */,
+ { 128, 464, 5825, 2, 9, UNI_SUND } /* issundanese */,
+ { 444, 2033, 588, 5, 5, UNI_XPOSIXALPHA } /* alpha=true */,
+ { 0, 1879, 783, 4, 7, UNI_INOSMANYA } /* blk=osmanya */,
+ { 0, 876, 934, 4, 6, -UNI_IDEO } /* ideo=false */,
+ { 249, 895, 1304, 6, 2, UNI_AGE__12 } /* age=v120 */,
+ { 25, 2401, 0, 4, 0, UNI_NAND } /* nand */,
+ { 0, 4355, 6594, 17, 6, UNI_BRAH } /* scriptextensions=brahmi */,
+ { 0, 464, 2428, 2, 6, UNI_IPAEXT } /* isipaext */,
+ { 0, 4291, 464, 10, 2, UNI_LB__IS } /* linebreak=is */,
+ { 5, 1407, 2332, 3, 12, UNI_GREEKEXT } /* ingreekextended */,
+ { 65, 0, 277, 1, 4, UNI_LB__B2 } /* lb=b2 */,
+ { 1, 1796, 216, 7, 4, UNI_TIBT } /* script=tibt */,
+ { 20, 2041, 0, 12, 0, UNI_MEND } /* mendekikakui */,
+ { 3, 6687, 702, 14, 3, UNI_JG__MEEM } /* joininggroup=meem */,
+ { 4, 2712, 588, 14, 5, UNI_ECOMP } /* emojicomponent=true */,
+ { 0, 34, 4091, 1, 16, UNI_DIACRITICALSEXT } /* indiacriticalsext */,
+ { 0, 2353, 7908, 3, 29, UNI_CUNEIFORMNUMBERS } /* incuneiformnumbersandpunctuation */,
+ { 8, 3748, 299, 15, 1, UNI_NV__1_SLASH_9 } /* numericvalue=1/9 */,
+ { 4, 7132, 4372, 5, 16, UNI_SMALLFORMS } /* blk=smallformvariants */,
+ { 14, 275, 898, 3, 2, UNI_GCB__V } /* gcb=v */,
+ { 2, 343, 2688, 4, 4, UNI_CCC__L } /* ccc=left */,
+ { 0, 296, 1303, 3, 2, UNI_NV__32 } /* nv=32 */,
+ { 5, 581, 294, 6, 1, UNI_CCC__L } /* ccc=224 */,
+ { 0, 696, 2774, 5, 8, UNI_SO } /* isothersymbol */,
+ { 76, 313, 6466, 2, 10, UNI_PUA } /* inprivateuse */,
+ { 0, 12, 356, 3, 2, UNI_PCM } /* pcm=y */,
+ { 0, 316, 1881, 4, 2, UNI_qmark_values_index } /* qmark= */,
+ { 386, 296, 3775, 2, 4, UNI_NV__5_SLASH_8 } /* nv=5/8 */,
+ { 76, 2981, 1304, 5, 2, UNI_IN__12 } /* in=v120 */,
+ { 1, 7201, 5166, 16, 20, UNI_PC } /* generalcategory=connectorpunctuation */,
+ { 52, 1102, 917, 4, 8, UNI_BASS } /* scx=bassavah */,
+ { 0, 6112, 8454, 5, 16, UNI_INSC__VOWELINDEPENDENT } /* insc=vowelindependent */,
+ { 4, 328, 5762, 3, 7, UNI_SUPARROWSB } /* suparrowsb */,
+ { 82, 3474, 1133, 6, 8, UNI_INVITHKUQI } /* block=vithkuqi */,
+ { 5, 2310, 587, 12, 3, UNI_CI } /* caseignorable=t */,
+ { 0, 2496, 4682, 3, 5, UNI_JG__SADHE } /* jg=sadhe */,
+ { 65, 7688, 3685, 23, 3, UNI_JG__MANICHAEANMEM } /* joininggroup=manichaeanmem */,
+ { 20, 1796, 6030, 6, 9, UNI_SC__GEOR } /* script=georgian */,
+ { 4, 1796, 102, 7, 4, UNI_HLUW } /* script=hluw */,
+ { 8, 1478, 3599, 9, 9, UNI_GEORGIANEXT } /* ingeorgianextended */,
+ { 209, 1065, 1071, 4, 4, UNI_NV__11_SLASH_12 } /* nv=11/12 */,
+ { 6, 612, 928, 2, 3, UNI_LB__OP } /* lb=op */,
+ { 182, 8276, 2412, 22, 8, UNI_INSC__AVAGRAHA } /* indicsyllabiccategory=avagraha */,
+ { 12, 7208, 538, 8, 2, UNI_S } /* category=s */,
+ { 0, 1796, 967, 7, 8, UNI_SC__GUJR } /* script=gujarati */,
+ { 1, 464, 1255, 2, 7, UNI_SOYO } /* issoyombo */,
+ { 3, 3351, 1067, 12, 4, UNI_NV__1_SLASH_3 } /* numericvalue=1/3 */,
+ { 7, 7132, 5358, 5, 17, UNI_SMALLKANAEXT } /* blk=smallkanaextension */,
+ { 80, 4996, 4198, 13, 4, UNI_JG__MANICHAEANTETH } /* jg=manichaeanteth */,
+ { 0, 2726, 2729, 3, 5, UNI_C } /* gc=other */,
+ { 0, 513, 349, 4, 1, UNI_NV__38 } /* nv=38 */,
+ { 0, 464, 1826, 2, 11, UNI_SYLO } /* issylotinagri */,
+ { 14, 0, 3704, 1, 15, UNI_LINEARBIDEOGRAMS } /* linearbideograms */,
+ { 64, 5409, 8484, 14, 6, UNI_term_values_index } /* terminalpunctuation= */,
+ { 6, 4671, 0, 4, 0, UNI_TALE } /* tale */,
+ { 1, 7317, 4783, 10, 10, UNI_BC__WS } /* bidiclass=whitespace */,
+ { 0, 7182, 1698, 3, 4, UNI_CJKEXTF } /* cjkextf */,
+ { 0, 5586, 5, 21, 2, UNI_GCB__EX } /* graphemeclusterbreak=ex */,
+ { 11, 316, 934, 5, 6, -UNI_QMARK } /* qmark=false */,
+ { 85, 2890, 48, 3, 1, UNI_JT__U } /* jt=u */,
+ { 81, 1102, 449, 4, 4, UNI_PHLI } /* scx=phli */,
+ { 37, 2726, 1464, 3, 2, UNI_ZS } /* gc=zs */,
+ { 14, 4291, 5021, 9, 3, UNI_LB__CL } /* linebreak=cl */,
+ { 13, 555, 7171, 3, 3, UNI_AGE__12 } /* age=12 */,
+ { 0, 1796, 441, 7, 4, UNI_OLCK } /* script=olck */,
+ { 204, 3474, 4857, 6, 5, UNI_INTAMIL } /* block=tamil */,
+ { 0, 1879, 5661, 4, 19, UNI_MERO } /* blk=meroitichieroglyphs */,
+ { 0, 1009, 0, 4, 0, UNI_LYCI } /* lyci */,
+ { 270, 524, 8488, 5, 3, UNI_PATSYN } /* patsyn=t */,
+ { 0, 1879, 1470, 4, 8, UNI_INBUGINESE } /* blk=buginese */,
+ { 1, 4355, 880, 17, 7, UNI_ZZZZ } /* scriptextensions=unknown */,
+ { 26, 8, 1412, 1, 4, UNI_XPOSIXCNTRL } /* gc=cc */,
+ { 11, 7201, 2290, 16, 6, UNI_N } /* generalcategory=number */,
+ { 2, 343, 2195, 3, 2, UNI_CCC__6 } /* ccc=6 */,
+ { 32, 6114, 1117, 3, 8, UNI_SC__TAGB } /* sc=tagbanwa */,
+ { 1, 6114, 618, 3, 7, UNI_ELYM } /* sc=elymaic */,
+ { 20, 3474, 991, 6, 6, UNI_INHATRAN } /* block=hatran */,
+ { 2, 275, 4338, 4, 17, UNI_RI } /* gcb=regionalindicator */,
+ { 0, 464, 1383, 2, 4, UNI_IDST } /* isidst */,
+ { 0, 7880, 8407, 5, 23, UNI_CJKCOMPATIDEOGRAPHS } /* iscjkcompatibilityideographs */,
+ { 1, 3748, 518, 14, 2, UNI_NV__1_SLASH_5 } /* numericvalue=1/5 */,
+ { 0, 156, 0, 4, 0, UNI_OUGR } /* ougr */,
+ { 2, 1478, 957, 8, 5, UNI_GEORGIANEXT } /* ingeorgianext */,
+ { 1, 1856, 356, 5, 4, UNI_BIDIC } /* bidic=yes */,
+ { 0, 313, 7473, 2, 27, UNI_ALPHABETICPF } /* inalphabeticpresentationforms */,
+ { 5, 3474, 1887, 6, 4, UNI_UCAS } /* block=ucas */,
+ { 4, 6379, 4682, 13, 5, UNI_JG__SADHE } /* joininggroup=sadhe */,
+ { 3, 313, 372, 2, 6, UNI_INGOTHIC } /* ingothic */,
+ { 157, 313, 825, 2, 7, UNI_SHAW } /* inshavian */,
+ { 3, 3474, 1117, 6, 8, UNI_INTAGBANWA } /* block=tagbanwa */,
+ { 0, 1796, 691, 7, 5, UNI_BATK } /* script=batak */,
+ { 5, 1796, 794, 7, 4, UNI_SC__KALI } /* script=kali */,
+ { 41, 4355, 3465, 16, 9, UNI_ETHI } /* scriptextensions=ethiopic */,
+ { 135, 343, 1236, 4, 2, UNI_CCC__BL } /* ccc=bl */,
+ { 144, 6570, 1242, 3, 6, UNI_INPHAGSPA } /* inphagspa */,
+ { 62, 4355, 1241, 17, 4, UNI_PHAG } /* scriptextensions=phag */,
+ { 9, 4291, 8009, 8, 4, UNI_LB__CJ } /* linebreak=cj */,
+ { 4, 2193, 2104, 4, 8, UNI_NV__2_SLASH_3 } /* nv=6.667e-01 */,
+ { 2, 1382, 4370, 3, 2, UNI_xids_values_index } /* xids= */,
+ { 0, 313, 3381, 2, 15, UNI_NARB } /* inoldnortharabian */,
+ { 4, 343, 293, 4, 1, UNI_CCC__0 } /* ccc=0 */,
+ { 5, 3498, 0, 7, 0, UNI_CPRT } /* cypriot */,
+ { 1, 2926, 1808, 3, 10, UNI_INSORASOMPENG } /* insorasompeng */,
+ { 144, 6402, 1592, 14, 2, UNI_SB__FO } /* sentencebreak=fo */,
+ { 1, 464, 232, 2, 4, UNI_XSUX } /* isxsux */,
+ { 8, 4355, 39, 17, 4, UNI_BATK } /* scriptextensions=batk */,
+ { 19, 6114, 1255, 3, 7, UNI_SOYO } /* sc=soyombo */,
+ { 0, 5481, 602, 21, 2, -UNI_CWCF } /* changeswhencasefolded=n */,
+ { 1, 4355, 611, 17, 7, UNI_ELBA } /* scriptextensions=elbasan */,
+ { 76, 4515, 934, 18, 2, -UNI_IDST } /* idstrinaryoperator=f */,
+ { 3, 1991, 2857, 12, 11, UNI_JT__D } /* joiningtype=dualjoining */,
+ { 0, 5087, 2447, 12, 7, UNI_WB__ML } /* wordbreak=midletter */,
+ { 0, 3367, 1300, 14, 2, UNI_NV__400 } /* numericvalue=400 */,
+ { 1, 4202, 0, 17, 0, UNI_KITS } /* khitansmallscript */,
+ { 22, 1065, 299, 4, 1, UNI_NV__19 } /* nv=19 */,
+ { 1, 4355, 1353, 17, 9, UNI_PAUC } /* scriptextensions=paucinhau */,
+ { 39, 2474, 8212, 3, 32, UNI_MISCMATHSYMBOLSB } /* ismiscellaneousmathematicalsymbolsb */,
+ { 2, 75, 0, 3, 0, UNI_CWU } /* cwu */,
+ { 0, 6944, 1070, 24, 2, UNI_CCC__31 } /* canonicalcombiningclass=31 */,
+ { 20, 313, 8078, 2, 32, UNI_IDEOGRAPHICSYMBOLS } /* inideographicsymbolsandpunctuation */,
+ { 1, 5928, 1329, 3, 2, UNI_VO__TU } /* vo=tu */,
+ { 6, 1796, 3991, 7, 7, UNI_BRAI } /* script=braille */,
+ { 80, 1102, 540, 4, 4, UNI_TANG } /* scx=tang */,
+ { 2, 1879, 4092, 4, 12, UNI_DIACRITICALS } /* blk=diacriticals */,
+ { 3, 939, 588, 5, 5, UNI_ECOMP } /* ecomp=true */,
+ { 23, 6112, 4948, 5, 14, UNI_INSC__VOWELDEPENDENT } /* insc=voweldependent */,
+ { 21, 3474, 6134, 6, 10, UNI_INGLAGOLITIC } /* block=glagolitic */,
+ { 1, 4355, 4827, 17, 4, UNI_BAMU } /* scriptextensions=bamu */,
+ { 0, 1764, 434, 3, 2, UNI_INNKO } /* innko */,
+ { 7, 313, 5949, 2, 6, UNI_YIJING } /* inyijing */,
+ { 1, 1879, 2275, 4, 3, UNI_INIDC } /* blk=idc */,
+ { 2, 2496, 2846, 3, 11, UNI_JG__YEHWITHTAIL } /* jg=yehwithtail */,
+ { 0, 4291, 67, 10, 2, UNI_LB__CP } /* linebreak=cp */,
+ { 4, 3823, 0, 16, 0, UNI_STERM } /* sentenceterminal */,
+ { 0, 1102, 8599, 4, 18, UNI_CANS } /* scx=canadianaboriginal */,
+ { 0, 2232, 5305, 3, 17, UNI_TAIXUANJING } /* istaixuanjingsymbols */,
+ { 1, 2275, 933, 9, 3, -UNI_IDC } /* idcontinue=f */,
+ { 200, 464, 4857, 2, 15, UNI_TAMILSUP } /* istamilsupplement */,
+ { 43, 6114, 806, 3, 4, UNI_SARB } /* sc=sarb */,
+ { 1, 313, 6447, 2, 5, UNI_MUSIC } /* inmusic */,
+ { 9, 1755, 0, 11, 0, UNI_MEDF } /* medefaidrin */,
+ { 2, 1102, 2812, 4, 4, UNI_MAHJ } /* scx=mahj */,
+ { 10, 2496, 3261, 3, 12, UNI_JG__VERTICALTAIL } /* jg=verticaltail */,
+ { 6, 1796, 232, 7, 4, UNI_XSUX } /* script=xsux */,
+ { 163, 34, 529, 1, 7, UNI_INREJANG } /* inrejang */,
+ { 0, 6114, 240, 3, 4, UNI_ZANB } /* sc=zanb */,
+ { 0, 2463, 356, 5, 2, UNI_JOINC } /* joinc=y */,
+ { 25, 1383, 588, 3, 2, UNI_IDS } /* ids=t */,
+ { 1, 3474, 5322, 6, 8, UNI_INCHEROKEE } /* block=cherokee */,
+ { 1, 4291, 2915, 10, 11, UNI_LB__EX } /* linebreak=exclamation */,
+ { 273, 5523, 602, 21, 3, -UNI_CWL } /* changeswhenlowercased=no */,
+ { 1, 296, 2127, 3, 2, UNI_NV__13 } /* nv=13 */,
+ { 0, 3474, 5806, 6, 12, UNI_MONGOLIANSUP } /* block=mongoliansup */,
+ { 0, 464, 1353, 2, 9, UNI_PAUC } /* ispaucinhau */,
+ { 0, 1975, 3228, 7, 5, UNI_POSIXALNUM } /* isposixalnum */,
+ { 3, 116, 0, 4, 0, UNI_KNDA } /* knda */,
+ { 33, 7431, 585, 27, 2, UNI_CCC__22 } /* canonicalcombiningclass=ccc22 */,
+ { 1, 313, 6303, 2, 23, UNI_COMPATJAMO } /* inhangulcompatibilityjamo */,
+ { 40, 4122, 0, 9, 0, UNI_XPOSIXLOWER } /* lowercase */,
+ { 6, 939, 602, 5, 3, -UNI_ECOMP } /* ecomp=no */,
+ { 0, 8276, 2420, 22, 8, UNI_INSC__TONEMARK } /* indicsyllabiccategory=tonemark */,
+ { 0, 1102, 1191, 4, 7, UNI_BENG } /* scx=bengali */,
+ { 1, 7825, 4341, 26, 4, UNI_CJKEXTA } /* cjkunifiedideographsextensiona */,
+ { 0, 3351, 1298, 14, 5, UNI_NV__216000 } /* numericvalue=216000 */,
+ { 5, 1441, 602, 10, 2, -UNI_DEP } /* deprecated=n */,
+ { 4, 4291, 2559, 10, 10, UNI_LB__NS } /* linebreak=nonstarter */,
+ { 0, 6114, 176, 3, 4, UNI_SC__ROHG } /* sc=rohg */,
+ { 0, 296, 773, 3, 3, UNI_NV__7_SLASH_2 } /* nv=7/2 */,
+ { 33, 5586, 2680, 20, 3, UNI_RI } /* graphemeclusterbreak=ri */,
+ { 5, 2353, 4590, 10, 9, UNI_CYRILLICEXTC } /* incyrillicextendedc */,
+ { 1, 2018, 0, 12, 0, UNI_GONM } /* masaramgondi */,
+ { 90, 2678, 4811, 3, 16, UNI_BC__S } /* bc=segmentseparator */,
+ { 3, 3137, 140, 15, 2, UNI_EA__NA } /* eastasianwidth=na */,
+ { 0, 3462, 0, 12, 0, UNI_INETHIOPIC } /* blk=ethiopic */,
+ { 47, 275, 4300, 2, 2, UNI_Z } /* gc=z */,
+ { 5, 3474, 3839, 6, 16, UNI_TANGUTCOMPONENTS } /* block=tangutcomponents */,
+ { 170, 6114, 372, 3, 4, UNI_GOTH } /* sc=goth */,
+ { 291, 464, 3839, 2, 6, UNI_TANG } /* istangut */,
+ { 1, 464, 742, 2, 4, UNI_MAND } /* ismand */,
+ { 6, 12, 1079, 1, 7, UNI_POSIXWORD } /* perlword */,
+ { 2, 4355, 1785, 17, 11, UNI_HMNG } /* scriptextensions=pahawhhmong */,
+ { 0, 426, 4918, 3, 16, UNI_ALCHEMICAL } /* inalchemicalsymbols */,
+ { 0, 7527, 3691, 3, 13, UNI_LB__PR } /* lb=prefixnumeric */,
+ { 4, 6944, 346, 23, 4, UNI_CCC__118 } /* canonicalcombiningclass=118 */,
+ { 71, 464, 810, 2, 4, UNI_SYRC } /* issyrc */,
+ { 29, 581, 585, 5, 2, UNI_CCC__BR } /* ccc=222 */,
+ { 14, 296, 396, 3, 2, UNI_NV__15 } /* nv=15 */,
+ { 25, 4355, 743, 18, 6, UNI_MAND } /* scriptextensions=mandaic */,
+ { 124, 7201, 3151, 15, 13, UNI_NL } /* generalcategory=letternumber */,
+ { 8, 536, 5075, 3, 5, UNI_SB__AT } /* sb=aterm */,
+ { 2, 464, 2033, 2, 5, UNI_XPOSIXALPHA } /* isalpha */,
+ { 33, 2974, 1303, 11, 2, UNI_IN__3_DOT_2 } /* presentin=v32 */,
+ { 2, 4355, 790, 17, 4, UNI_HMNP } /* scriptextensions=hmnp */,
+ { 2, 6039, 1037, 13, 4, UNI_MYANMAREXTB } /* block=myanmarextb */,
+ { 2, 7823, 5183, 28, 4, UNI_CJKEXTE } /* incjkunifiedideographsextensione */,
+ { 4, 1102, 1614, 4, 10, UNI_WARA } /* scx=warangciti */,
+ { 40, 6114, 3933, 3, 4, UNI_SC__MODI } /* sc=modi */,
+ { 26, 5087, 1837, 10, 8, UNI_WB__EB } /* wordbreak=ebasegaz */,
+ { 7, 464, 818, 2, 7, UNI_SHRD } /* issharada */,
+ { 0, 1102, 244, 4, 4, UNI_ZYYY } /* scx=zyyy */,
+ { 12, 313, 1009, 2, 6, UNI_INLYCIAN } /* inlycian */,
+ { 169, 1102, 212, 4, 4, UNI_TGLG } /* scx=tglg */,
+ { 0, 4322, 2137, 14, 8, UNI_NV__1_SLASH_3 } /* numericvalue=3.333e-01 */,
+ { 5, 4355, 2812, 17, 4, UNI_MAHJ } /* scriptextensions=mahj */,
+ { 129, 6944, 433, 24, 2, UNI_CCC__7 } /* canonicalcombiningclass=nk */,
+ { 66, 1377, 703, 3, 2, UNI_WB__EB } /* wb=em */,
+ { 0, 3367, 0, 14, 0, UNI_NV__4 } /* numericvalue=4 */,
+ { 17, 2274, 934, 4, 6, -UNI_XIDC } /* xidc=false */,
+ { 8, 600, 0, 7, 0, UNI_DT__NONE } /* dt=none */,
+ { 33, 464, 3381, 2, 15, UNI_NARB } /* isoldnortharabian */,
+ { 0, 5099, 5888, 6, 5, UNI__PERL_NCHAR } /* _perl_nchar */,
+ { 1, 7880, 1434, 5, 7, UNI_CJKSTROKES } /* iscjkstrokes */,
+ { 35, 2275, 356, 3, 4, UNI_IDC } /* idc=yes */,
+ { 32, 2, 258, 1, 3, UNI_CWCF } /* cwcf */,
+ { 5, 4355, 180, 17, 4, UNI_RUNR } /* scriptextensions=runr */,
+ { 0, 4783, 355, 9, 5, UNI_XPOSIXSPACE } /* whitespace=yes */,
+ { 34, 1796, 1094, 7, 4, UNI_MERC } /* script=merc */,
+ { 1, 3669, 135, 4, 2, UNI_JG__MIM } /* jg=mim */,
+ { 0, 1879, 4793, 4, 4, UNI_RUMI } /* blk=rumi */,
+ { 18, 313, 5631, 2, 5, UNI_INGREEK } /* ingreek */,
+ { 12, 2948, 3477, 11, 3, UNI_nfcqc_values_index } /* nfcquickcheck= */,
+ { 1, 7823, 6505, 27, 5, UNI_CJKEXTC } /* incjkunifiedideographsextensionc */,
+ { 0, 34, 832, 1, 5, UNI_TERM } /* isterm */,
+ { 73, 6114, 425, 3, 4, UNI_SC__LINA } /* sc=lina */,
+ { 13, 1102, 477, 4, 4, UNI_VAI } /* scx=vaii */,
+ { 2, 1796, 2740, 7, 4, UNI_SC__COPT } /* script=copt */,
+ { 66, 1102, 806, 4, 4, UNI_SARB } /* scx=sarb */,
+ { 3, 6944, 351, 24, 2, UNI_CCC__91 } /* canonicalcombiningclass=91 */,
+ { 1, 7527, 3285, 3, 12, UNI_LB__HL } /* lb=hebrewletter */,
+ { 1, 2926, 2727, 3, 7, UNI_INSC__OTHER } /* insc=other */,
+ { 3, 464, 2812, 2, 12, UNI_MAHJONG } /* ismahjongtiles */,
+ { 4, 313, 1487, 2, 8, UNI_JAMOEXTA } /* injamoexta */,
+ { 148, 34, 6438, 1, 2, UNI_Z } /* isz */,
+ { 0, 313, 4582, 2, 16, UNI_BOPOMOFOEXT } /* inbopomofoextended */,
+ { 0, 4776, 587, 16, 6, UNI__PERL_PATWS } /* patternwhitespace=true */,
+ { 0, 7068, 356, 26, 2, UNI_PCM } /* prependedconcatenationmark=y */,
+ { 22, 4996, 5375, 13, 7, UNI_JG__MANICHAEANDHAMEDH } /* jg=manichaeandhamedh */,
+ { 0, 464, 909, 2, 8, UNI_BALI } /* isbalinese */,
+ { 4, 681, 0, 5, 0, UNI_RUNR } /* runic */,
+ { 0, 2275, 587, 9, 3, UNI_IDC } /* idcontinue=t */,
+ { 0, 5844, 837, 6, 3, UNI_SUPPUAA } /* issuppuaa */,
+ { 2, 6570, 6581, 5, 13, UNI_INPC__BOTTOMANDLEFT } /* inpc=bottomandleft */,
+ { 0, 1796, 3637, 7, 4, UNI_LISU } /* script=lisu */,
+ { 29, 1796, 1220, 7, 4, UNI_MAKA } /* script=maka */,
+ { 15, 4355, 3498, 17, 7, UNI_CPRT } /* scriptextensions=cypriot */,
+ { 0, 2443, 356, 5, 2, UNI_CASED } /* cased=y */,
+ { 134, 383, 934, 6, 6, -UNI_HYPHEN } /* hyphen=false */,
+ { 0, 1478, 6878, 5, 12, UNI_GEOMETRICSHAPES } /* ingeometricshapes */,
+ { 12, 6944, 5464, 24, 13, UNI_CCC__202 } /* canonicalcombiningclass=attachedbelow */,
+ { 139, 6011, 612, 7, 6, UNI_INELBASAN } /* block=elbasan */,
+ { 0, 7431, 7173, 27, 2, UNI_CCC__28 } /* canonicalcombiningclass=ccc28 */,
+ { 2, 2496, 705, 10, 4, UNI_JG__AFRICANNOON } /* jg=africannoon */,
+ { 0, 1464, 0, 2, 0, UNI_ZS } /* zs */,
+ { 2, 7584, 1823, 18, 3, UNI_DT__SUB } /* decompositiontype=sub */,
+ { 0, 1383, 934, 3, 2, -UNI_IDS } /* ids=f */,
+ { 0, 4355, 132, 17, 4, UNI_MTEI } /* scriptextensions=mtei */,
+ { 3, 5, 3933, 1, 3, UNI_EMOD } /* emod */,
+ { 0, 3450, 6528, 5, 21, UNI_INDICNUMBERFORMS } /* blk=commonindicnumberforms */,
+ { 1, 1879, 5340, 4, 10, UNI_INDEVANAGARI } /* blk=devanagari */,
+ { 1, 6379, 24, 13, 2, UNI_JG__HE } /* joininggroup=he */,
+ { 128, 3779, 1300, 14, 2, UNI_NV__700 } /* numericvalue=700 */,
+ { 1, 1796, 164, 7, 4, UNI_PHNX } /* script=phnx */,
+ { 0, 2454, 3599, 9, 9, UNI_GEORGIANEXT } /* isgeorgianextended */,
+ { 1, 4996, 639, 13, 3, UNI_JG__MANICHAEANNUN } /* jg=manichaeannun */,
+ { 3, 2692, 2665, 5, 13, UNI_ANCIENTSYMBOLS } /* blk=ancientsymbols */,
+ { 138, 698, 5174, 4, 12, UNI_PO } /* otherpunctuation */,
+ { 0, 1975, 0, 3, 0, UNI_P } /* isp */,
+ { 67, 4355, 19, 17, 4, UNI_AGHB } /* scriptextensions=aghb */,
+ { 2, 464, 854, 2, 7, UNI_TAVT } /* istaiviet */,
+ { 263, 464, 909, 2, 4, UNI_BALI } /* isbali */,
+ { 131, 3474, 2652, 6, 13, UNI_VERTICALFORMS } /* block=verticalforms */,
+ { 0, 4302, 5620, 5, 3, -UNI_XPOSIXSPACE } /* wspace=n */,
+ { 2, 4338, 0, 17, 0, UNI_RI } /* regionalindicator */,
+ { 2, 1879, 326, 4, 5, UNI_VSSUP } /* blk=vssup */,
+ { 2, 337, 0, 4, 0, UNI_CARI } /* cari */,
+ { 1, 2483, 1082, 8, 4, UNI_XPOSIXWORD } /* isxposixword */,
+ { 1, 3794, 2080, 14, 8, UNI_NV__17_SLASH_2 } /* numericvalue=8.500e+00 */,
+ { 1, 1796, 1529, 7, 4, UNI_KHAR } /* script=khar */,
+ { 2, 1879, 5825, 4, 12, UNI_SUNDANESESUP } /* blk=sundanesesup */,
+ { 1, 296, 1071, 3, 4, UNI_NV__1_SLASH_12 } /* nv=1/12 */,
+ { 36, 7201, 330, 16, 2, UNI_PF } /* generalcategory=pf */,
+ { 8, 6379, 6392, 13, 10, UNI_JG__AFRICANQAF } /* joininggroup=africanqaf */,
+ { 5, 1102, 453, 4, 4, UNI_MIAO } /* scx=plrd */,
+ { 8, 7208, 4122, 9, 15, UNI_LOWERCASELETTER } /* category=lowercaseletter */,
+ { 0, 4515, 356, 18, 4, UNI_IDST } /* idstrinaryoperator=yes */,
+ { 89, 4291, 4261, 10, 14, UNI_LB__PO } /* linebreak=postfixnumeric */,
+ { 207, 6402, 37, 14, 2, UNI_SB__ST } /* sentencebreak=st */,
+ { 0, 7201, 3514, 16, 13, UNI_ZL } /* generalcategory=lineseparator */,
+ { 2, 1951, 0, 7, 0, UNI_SOGD } /* sogdian */,
+ { 222, 6114, 441, 3, 4, UNI_OLCK } /* sc=olck */,
+ { 0, 7660, 356, 17, 4, UNI_VS } /* variationselector=yes */,
+ { 29, 313, 3188, 2, 15, UNI_INIMPERIALARAMAIC } /* inimperialaramaic */,
+ { 259, 4996, 4677, 13, 5, UNI_JG__MANICHAEANGIMEL } /* jg=manichaeangimel */,
+ { 0, 12, 458, 1, 3, UNI_PRTI } /* prti */,
+ { 158, 464, 6728, 2, 11, UNI_MTEI } /* ismeeteimayek */,
+ { 3, 3823, 356, 16, 2, UNI_STERM } /* sentenceterminal=y */,
+ { 2, 3669, 702, 4, 3, UNI_JG__MEEM } /* jg=meem */,
+ { 1, 2726, 203, 3, 2, UNI_TITLE } /* gc=lt */,
+ { 0, 1704, 1141, 6, 3, UNI_ARABICPFA } /* arabicpfa */,
+ { 16, 7317, 278, 9, 2, UNI_BC__B } /* bidiclass=b */,
+ { 5, 313, 144, 2, 4, UNI_INNEWA } /* innewa */,
+ { 129, 3137, 21, 15, 1, UNI_EA__H } /* eastasianwidth=h */,
+ { 4, 34, 1547, 1, 2, UNI_N } /* isn */,
+ { 0, 464, 5304, 2, 11, UNI_TAIXUANJING } /* istaixuanjing */,
+ { 0, 7823, 1698, 5, 4, UNI_CJKEXTF } /* incjkextf */,
+ { 2, 1539, 7908, 3, 15, UNI_CUNEIFORMNUMBERS } /* iscuneiformnumbers */,
+ { 0, 4122, 355, 8, 5, UNI_XPOSIXLOWER } /* lowercase=yes */,
+ { 36, 2355, 4590, 8, 9, UNI_CYRILLICEXTC } /* cyrillicextendedc */,
+ { 33, 4302, 587, 5, 3, UNI_XPOSIXSPACE } /* wspace=t */,
+ { 0, 464, 5718, 2, 4, UNI_EMOD } /* isemod */,
+ { 24, 7201, 203, 16, 2, UNI_TITLE } /* generalcategory=lt */,
+ { 0, 15, 4918, 1, 16, UNI_ALCHEMICAL } /* alchemicalsymbols */,
+ { 1, 1879, 847, 4, 7, UNI_INTAITHAM } /* blk=taitham */,
+ { 0, 7584, 242, 18, 2, UNI_DT__NB } /* decompositiontype=nb */,
+ { 0, 15, 2285, 1, 12, UNI_AEGEANNUMBERS } /* aegeannumbers */,
+ { 5, 7527, 2016, 3, 2, UNI_GCB__V } /* lb=jv */,
+ { 139, 8244, 2335, 8, 5, UNI_CJKEXTE } /* block=cjkexte */,
+ { 8, 6402, 2277, 15, 8, UNI_SB__SC } /* sentencebreak=scontinue */,
+ { 1, 2625, 588, 13, 5, UNI_PATSYN } /* patternsyntax=true */,
+ { 0, 313, 1117, 2, 8, UNI_INTAGBANWA } /* intagbanwa */,
+ { 4, 464, 5907, 2, 4, UNI_SINH } /* issinh */,
+ { 5, 632, 587, 5, 6, UNI_GRBASE } /* grbase=true */,
+ { 0, 3367, 6199, 14, 5, UNI_NV__400000 } /* numericvalue=400000 */,
+ { 3, 1879, 4107, 4, 15, UNI_INHANGUL } /* blk=hangulsyllables */,
+ { 158, 6114, 15, 3, 4, UNI_SC__ADLM } /* sc=adlm */,
+ { 132, 7208, 17, 9, 2, UNI_LM } /* category=lm */,
+ { 0, 887, 549, 5, 3, UNI_AGE__13 } /* age=13.0 */,
+ { 4, 1102, 1027, 4, 4, UNI_YEZI } /* scx=yezi */,
+ { 0, 1383, 356, 4, 4, UNI_IDST } /* idst=yes */,
+ { 0, 3474, 7290, 6, 27, UNI_OCR } /* block=opticalcharacterrecognition */,
+ { 1, 2486, 0, 10, 0, UNI_POSIXBLANK } /* posixblank */,
+ { 24, 1216, 1037, 4, 4, UNI_KANAEXTB } /* kanaextb */,
+ { 2, 1777, 0, 6, 0, UNI_NV__100 } /* nv=100 */,
+ { 0, 4515, 602, 18, 3, -UNI_IDST } /* idstrinaryoperator=no */,
+ { 6, 3188, 0, 15, 0, UNI_ARMI } /* imperialaramaic */,
+ { 1, 8533, 8319, 9, 21, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* block=supsymbolsandpictographs */,
+ { 0, 343, 6240, 2, 3, UNI_CCC__L } /* ccc=l */,
+ { 521, 1796, 1371, 7, 4, UNI_SC__THAA } /* script=thaa */,
+ { 12, 2692, 4442, 10, 9, UNI_ARABICEXTB } /* blk=arabicextendedb */,
+ { 16, 4302, 933, 5, 7, -UNI_XPOSIXSPACE } /* wspace=false */,
+ { 1, 925, 0, 8, 0, UNI_BPT__O } /* bpt=open */,
+ { 10, 887, 2172, 5, 3, UNI_AGE__12 } /* age=12.0 */,
+ { 0, 3474, 1015, 6, 6, UNI_INTELUGU } /* block=telugu */,
+ { 0, 844, 933, 2, 7, -UNI_LOE } /* loe=false */,
+ { 0, 3474, 3381, 6, 15, UNI_NARB } /* block=oldnortharabian */,
+ { 1, 7208, 1977, 9, 2, UNI_PO } /* category=po */,
+ { 51, 8244, 4464, 9, 4, UNI_CJKEXTC } /* block=cjkextc */,
+ { 0, 7208, 256, 9, 2, UNI_CASEDLETTER } /* category=lc */,
+ { 19, 1796, 4392, 7, 11, UNI_SGNW } /* script=signwriting */,
+ { 0, 671, 0, 5, 0, UNI_OGAM } /* ogham */,
+ { 0, 1383, 356, 7, 2, UNI_IDS } /* idstart=y */,
+ { 33, 464, 1353, 2, 4, UNI_PAUC } /* ispauc */,
+ { 0, 3090, 5812, 9, 6, UNI_GEORGIANSUP } /* blk=georgiansup */,
+ { 0, 2260, 549, 4, 3, UNI_IN__13 } /* in=13.0 */,
+ { 0, 1796, 204, 7, 4, UNI_TAVT } /* script=tavt */,
+ { 1, 126, 184, 2, 2, UNI_TNSA } /* tnsa */,
+ { 1, 1065, 2088, 4, 8, UNI_NV__1_SLASH_64 } /* nv=1.562e-02 */,
+ { 4, 7688, 4190, 23, 4, UNI_JG__MANICHAEANYODH } /* joininggroup=manichaeanyodh */,
+ { 0, 5586, 163, 21, 2, UNI_GCB__PP } /* graphemeclusterbreak=pp */,
+ { 2, 2033, 934, 5, 6, -UNI_XPOSIXALPHA } /* alpha=false */,
+ { 7, 7584, 7135, 17, 4, UNI_DT__SUP } /* decompositiontype=sup */,
+ { 257, 7208, 6635, 12, 8, UNI_LO } /* category=otherletter */,
+ { 0, 536, 959, 3, 6, UNI_SB__EX } /* sb=extend */,
+ { 0, 5502, 0, 21, 0, UNI_CWCM } /* changeswhencasemapped */,
+ { 9, 3474, 1234, 6, 7, UNI_NB } /* block=noblock */,
+ { 28, 3474, 4582, 6, 11, UNI_BOPOMOFOEXT } /* block=bopomofoext */,
+ { 1, 5136, 5038, 5, 18, UNI_MODIFIERTONELETTERS } /* blk=modifiertoneletters */,
+ { 0, 3000, 588, 13, 2, UNI_QMARK } /* quotationmark=t */,
+ { 30, 4433, 4629, 8, 12, UNI_LATIN1 } /* blk=latin1supplement */,
+ { 72, 2260, 2172, 4, 3, UNI_IN__12 } /* in=12.0 */,
+ { 0, 34, 1560, 1, 11, UNI_INPHOENICIAN } /* inphoenician */,
+ { 201, 5186, 0, 20, 0, UNI_EXTPICT } /* extendedpictographic */,
+ { 98, 8590, 0, 44, 0, UNI_UCASEXT } /* isunifiedcanadianaboriginalsyllabicsextended */,
+ { 0, 3669, 4655, 12, 3, UNI_JG__MALAYALAMTTA } /* jg=malayalamtta */,
+ { 6, 343, 0, 7, 0, UNI_CCC__118 } /* ccc=118 */,
+ { 0, 496, 0, 4, 0, UNI_KHOJ } /* khoj */,
+ { 0, 4355, 128, 17, 4, UNI_MEDF } /* scriptextensions=medf */,
+ { 32, 6594, 0, 4, 0, UNI_BRAH } /* brah */,
+ { 68, 5502, 356, 21, 4, UNI_CWCM } /* changeswhencasemapped=yes */,
+ { 57, 6402, 10, 14, 2, UNI_LB__CR } /* sentencebreak=cr */,
+ { 305, 7527, 2549, 3, 10, UNI_LB__BA } /* lb=breakafter */,
+ { 0, 8182, 0, 27, 0, UNI_INPC__TOP } /* indicpositionalcategory=top */,
+ { 4, 1879, 3933, 4, 4, UNI_INMODI } /* blk=modi */,
+ { 329, 1102, 287, 4, 5, UNI_NSHU } /* scx=nushu */,
+ { 24, 2726, 334, 3, 2, UNI_PD } /* gc=pd */,
+ { 4, 7208, 229, 9, 2, UNI_PE } /* category=pe */,
+ { 33, 464, 0, 2, 2, UNI_CASEDLETTER } /* isl& */,
+ { 0, 1796, 152, 7, 4, UNI_OSGE } /* script=osge */,
+ { 0, 1879, 5340, 4, 18, UNI_DEVANAGARIEXT } /* blk=devanagariextended */,
+ { 0, 5844, 8319, 14, 21, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* issupplementalsymbolsandpictographs */,
+ { 242, 464, 5214, 2, 9, UNI_HALFMARKS } /* ishalfmarks */,
+ { 14, 14, 1539, 1, 9, UNI_MISCARROWS } /* miscarrows */,
+ { 3, 6944, 348, 25, 2, UNI_CCC__BL } /* canonicalcombiningclass=218 */,
+ { 0, 502, 0, 6, 0, UNI_LYDI } /* lydian */,
+ { 0, 1539, 5643, 3, 10, UNI_COUNTINGROD } /* iscountingrod */,
+ { 1, 2153, 1300, 4, 3, UNI_NV__4000 } /* nv=4000 */,
+ { 28, 661, 1662, 2, 4, UNI_DOMINO } /* domino */,
+ { 0, 5481, 588, 21, 5, UNI_CWCF } /* changeswhencasefolded=true */,
+ { 1, 1590, 0, 2, 0, UNI_LOWERCASELETTER } /* ll */,
+ { 1, 5748, 8319, 5, 21, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* insupsymbolsandpictographs */,
+ { 1024, 2363, 623, 8, 5, UNI_ETHIOPICEXT } /* inethiopicext */,
+ { 1, 1102, 120, 4, 3, UNI_LAO } /* scx=lao */,
+ { 0, 6112, 1503, 5, 5, UNI_INSC__BINDU } /* insc=bindu */,
+ { 790, 1465, 3517, 4, 10, UNI_ZS } /* spaceseparator */,
+ { 13, 1377, 546, 3, 3, UNI_WB__EB } /* wb=ebg */,
+ { 0, 6944, 1650, 24, 2, UNI_CCC__1 } /* canonicalcombiningclass=ov */,
+ { 0, 313, 3435, 2, 15, UNI_INZANABAZARSQUARE } /* inzanabazarsquare */,
+ { 13, 4355, 676, 17, 5, UNI_OSGE } /* scriptextensions=osage */,
+ { 1032, 7208, 12, 9, 2, UNI_PC } /* category=pc */,
+ { 121, 3338, 602, 13, 2, UNI_DT__CAN } /* nfdquickcheck=n */,
+ { 1032, 464, 316, 2, 5, UNI_QMARK } /* isqmark */,
+ { 0, 1117, 0, 8, 0, UNI_TAGB } /* tagbanwa */,
+ { 131, 6114, 790, 3, 4, UNI_HMNP } /* sc=hmnp */,
+ { 35, 3474, 983, 6, 8, UNI_INHIRAGANA } /* block=hiragana */,
+ { 1, 1796, 1003, 7, 6, UNI_LEPC } /* script=lepcha */,
+ { 128, 1796, 2042, 8, 11, UNI_MEND } /* script=mendekikakui */,
+ { 78, 1879, 1317, 4, 9, UNI_INOLDPERMIC } /* blk=oldpermic */,
+ { 5, 1796, 429, 7, 3, UNI_MRO } /* script=mro */,
+ { 0, 313, 1326, 2, 9, UNI_INOLDTURKIC } /* inoldturkic */,
+ { 34, 6114, 1561, 3, 10, UNI_PHNX } /* sc=phoenician */,
+ { 0, 464, 3188, 2, 15, UNI_ARMI } /* isimperialaramaic */,
+ { 1, 644, 0, 6, 0, UNI_LB__H2 } /* hst=lv */,
+ { 0, 464, 5523, 2, 21, UNI_CWL } /* ischangeswhenlowercased */,
+ { 0, 36, 934, 2, 2, -UNI_VS } /* vs=f */,
+ { 0, 4450, 5206, 7, 17, UNI_HALFMARKS } /* block=combininghalfmarks */,
+ { 3, 4355, 1951, 17, 4, UNI_SOGD } /* scriptextensions=sogd */,
+ { 0, 2961, 3061, 12, 5, UNI_NT__DI } /* numerictype=digit */,
+ { 0, 6114, 1027, 3, 6, UNI_SC__YEZI } /* sc=yezidi */,
+ { 1550, 8244, 5366, 26, 10, UNI_CJKEXTD } /* block=cjkunifiedideographsextensiond */,
+ { 1, 2275, 356, 3, 2, UNI_IDC } /* idc=y */,
+ { 32, 3351, 523, 14, 1, UNI_NV__27 } /* numericvalue=27 */,
+ { 0, 313, 1424, 2, 10, UNI_INCHORASMIAN } /* inchorasmian */,
+ { 257, 34, 5321, 1, 5, UNI_CHER } /* ischer */,
+ { 0, 632, 933, 5, 3, -UNI_GRBASE } /* grbase=f */,
+ { 4, 2726, 1590, 3, 2, UNI_LOWERCASELETTER } /* gc=ll */,
+ { 581, 6134, 6142, 8, 12, UNI_GLAGOLITICSUP } /* glagoliticsupplement */,
+ { 2, 1102, 901, 4, 8, UNI_ARMN } /* scx=armenian */,
+ { 3, 5087, 546, 10, 3, UNI_WB__EB } /* wordbreak=ebg */,
+ { 256, 4355, 1202, 17, 4, UNI_THAI } /* scriptextensions=thai */,
+ { 0, 3669, 532, 12, 2, UNI_JG__MALAYALAMJA } /* jg=malayalamja */,
+ { 2, 1796, 301, 7, 5, UNI_SC__ORYA } /* script=oriya */,
+ { 4, 160, 0, 4, 0, UNI_PHLP } /* phlp */,
+ { 2, 2394, 4442, 7, 9, UNI_MYANMAREXTB } /* myanmarextendedb */,
+ { 4, 464, 1280, 2, 9, UNI_NBAT } /* isnabataean */,
+ { 2, 1441, 0, 10, 0, UNI_DEP } /* deprecated */,
+ { 62, 464, 236, 2, 2, UNI_YI } /* isyi */,
+ { 9, 6379, 1988, 13, 3, UNI_JG__WAW } /* joininggroup=waw */,
+ { 820, 477, 0, 4, 0, UNI_VAI } /* vaii */,
+ { 10, 7201, 1590, 16, 2, UNI_LOWERCASELETTER } /* generalcategory=ll */,
+ { 5, 270, 588, 3, 5, UNI_CWT } /* cwt=true */,
+ { 0, 4355, 1021, 17, 6, UNI_WCHO } /* scriptextensions=wancho */,
+ { 13, 383, 934, 6, 2, -UNI_HYPHEN } /* hyphen=f */,
+ { 44, 719, 3582, 5, 3, UNI_KANGXI } /* inkangxi */,
+ { 513, 6114, 1202, 3, 4, UNI_THAI } /* sc=thai */,
+ { 3, 14, 3149, 2, 3, UNI_math_values_index } /* math= */,
+ { 1, 7527, 4598, 3, 16, UNI_LB__CL } /* lb=closepunctuation */,
+ { 0, 5147, 5797, 11, 9, UNI_LATINEXTA } /* block=latinextendeda */,
+ { 157, 23, 356, 4, 2, UNI_POSIXXDIGIT } /* ahex=y */,
+ { 1, 4355, 236, 17, 4, UNI_YI } /* scriptextensions=yiii */,
+ { 0, 378, 356, 5, 2, UNI_GREXT } /* grext=y */,
+ { 6, 7201, 317, 16, 4, UNI_M } /* generalcategory=mark */,
+ { 1137, 1102, 3453, 3, 9, UNI_CYRL } /* scx=cyrillic */,
+ { 0, 343, 5464, 4, 13, UNI_CCC__202 } /* ccc=attachedbelow */,
+ { 1081, 3351, 771, 13, 2, UNI_NV__21 } /* numericvalue=21 */,
+ { 1031, 257, 934, 4, 6, -UNI_CWCF } /* cwcf=false */,
+ { 0, 7132, 4388, 6, 15, UNI_SUTTONSIGNWRITING } /* blk=suttonsignwriting */,
+ { 0, 7182, 3571, 3, 11, UNI_CJKCOMPATFORMS } /* cjkcompatforms */,
+ { 32, 3285, 0, 4, 0, UNI_HEBR } /* hebr */,
+ { 0, 7208, 103, 9, 2, UNI_UPPERCASELETTER } /* category=lu */,
+ { 0, 3622, 2579, 3, 12, UNI_LOWSURROGATES } /* islowsurrogates */,
+ { 0, 1102, 322, 5, 4, UNI_TALE } /* scx=taile */,
+ { 0, 6570, 0, 8, 0, UNI_INPC__TOP } /* inpc=top */,
+ { 1217, 536, 310, 3, 2, UNI_SB__SP } /* sb=sp */,
+ { 0, 3053, 0, 5, 0, UNI_ASCII } /* ascii */,
+ { 0, 4355, 4392, 17, 11, UNI_SGNW } /* scriptextensions=signwriting */,
+ { 25, 4291, 1747, 10, 8, UNI_LB__NL } /* linebreak=nextline */,
+ { 1, 2253, 0, 10, 0, UNI_in_values_index } /* presentin= */,
+ { 1, 1879, 7403, 4, 28, UNI_SUPPUAA } /* blk=supplementaryprivateuseareaa */,
+ { 0, 7527, 7740, 3, 11, UNI_LB__ID } /* lb=ideographic */,
+ { 0, 58, 6030, 2, 9, UNI_SC__GEOR } /* sc=georgian */,
+ { 6, 1410, 3364, 7, 2, UNI_CCC__23 } /* ccc=ccc23 */,
+ { 24, 4433, 3638, 5, 6, UNI_LISUSUP } /* blk=lisusup */,
+ { 235, 313, 1027, 2, 6, UNI_INYEZIDI } /* inyezidi */,
+ { 0, 555, 389, 4, 3, UNI_AGE__3_DOT_2 } /* age=3.2 */,
+ { 1, 4433, 4629, 8, 2, UNI_LATIN1 } /* blk=latin1 */,
+ { 705, 1102, 790, 4, 4, UNI_HMNP } /* scx=hmnp */,
+ { 1, 7201, 54, 16, 2, UNI_MC } /* generalcategory=mc */,
+ { 1, 464, 5787, 2, 10, UNI_JAMO } /* ishanguljamo */,
+ { 15, 34, 6532, 1, 17, UNI_INDICNUMBERFORMS } /* inindicnumberforms */,
+ { 0, 5502, 588, 21, 5, UNI_CWCM } /* changeswhencasemapped=true */,
+ { 0, 7584, 607, 18, 4, UNI_EA__F } /* decompositiontype=wide */,
+ { 16, 464, 951, 2, 4, UNI_DUPL } /* isdupl */,
+ { 0, 5087, 57, 11, 1, UNI_WB__MN } /* wordbreak=mn */,
+ { 0, 5, 7733, 1, 28, UNI_ENCLOSEDIDEOGRAPHICSUP } /* enclosedideographicsupplement */,
+ { 887, 7527, 7473, 3, 10, UNI_LB__AL } /* lb=alphabetic */,
+ { 0, 1796, 802, 7, 4, UNI_NBAT } /* script=nbat */,
+ { 148, 3474, 496, 6, 6, UNI_INKHOJKI } /* block=khojki */,
+ { 7, 847, 0, 7, 0, UNI_LANA } /* taitham */,
+ { 1, 5607, 6326, 15, 8, UNI_IDENTIFIERTYPE__OBSOLETE } /* identifiertype=obsolete */,
+ { 0, 2485, 311, 6, 5, UNI_XPOSIXPRINT } /* xposixprint */,
+ { 70, 2193, 0, 4, 0, UNI_NV__6 } /* nv=6 */,
+ { 2, 1102, 983, 4, 8, UNI_HIRA } /* scx=hiragana */,
+ { 0, 5886, 934, 21, 2, -UNI__PERL_NCHAR } /* noncharactercodepoint=f */,
+ { 1027, 296, 2111, 3, 9, UNI_NV__3_SLASH_16 } /* nv=1.875e-01 */,
+ { 0, 1879, 7385, 4, 18, UNI_PHONETICEXT } /* blk=phoneticextensions */,
+ { 724, 464, 3672, 2, 9, UNI_MLYM } /* ismalayalam */,
+ { 0, 7201, 128, 16, 2, UNI_ME } /* generalcategory=me */,
+ { 130, 1977, 252, 5, 5, UNI_POSIXCNTRL } /* posixcntrl */,
+ { 6, 6114, 951, 3, 4, UNI_SC__DUPL } /* sc=dupl */,
+ { 3, 1410, 2074, 7, 2, UNI_CCC__29 } /* ccc=ccc29 */,
+ { 2, 2974, 572, 11, 2, UNI_IN__5_DOT_2 } /* presentin=v52 */,
+ { 1, 36, 588, 2, 2, UNI_VS } /* vs=t */,
+ { 3, 55, 0, 4, 0, UNI_CANS } /* cans */,
+ { 129, 4726, 2104, 14, 8, UNI_NV__2_SLASH_3 } /* numericvalue=6.667e-01 */,
+ { 0, 3734, 602, 14, 2, UNI_NFKCQC__N } /* nfkcquickcheck=n */,
+ { 4, 1967, 934, 7, 6, -UNI_RADICAL } /* radical=false */,
+ { 1027, 3474, 6842, 6, 14, UNI_MUSIC } /* block=musicalsymbols */,
+ { 0, 6114, 1470, 3, 8, UNI_SC__BUGI } /* sc=buginese */,
+ { 5, 3474, 2241, 6, 12, UNI_PLAYINGCARDS } /* block=playingcards */,
+ { 35, 2474, 3723, 3, 9, UNI_SM } /* ismathsymbol */,
+ { 10, 1796, 611, 7, 4, UNI_ELBA } /* script=elba */,
+ { 0, 4355, 1371, 17, 6, UNI_THAA } /* scriptextensions=thaana */,
+ { 3, 2193, 1781, 4, 4, UNI_NV__60000 } /* nv=60000 */,
+ { 11, 1796, 2018, 7, 12, UNI_SC__GONM } /* script=masaramgondi */,
+ { 0, 3053, 0, 13, 0, UNI_POSIXXDIGIT } /* asciihexdigit */,
+ { 35, 1879, 1003, 4, 6, UNI_INLEPCHA } /* blk=lepcha */,
+ { 0, 6833, 0, 23, 0, UNI_BYZANTINEMUSIC } /* byzantinemusicalsymbols */,
+ { 128, 4338, 588, 17, 2, UNI_RI } /* regionalindicator=t */,
+ { 0, 6114, 248, 3, 4, UNI_ZZZZ } /* sc=zzzz */,
+ { 2, 4450, 4007, 7, 14, UNI_CURRENCYSYMBOLS } /* block=currencysymbols */,
+ { 0, 12, 588, 3, 5, UNI_PCM } /* pcm=true */,
+ { 520, 4355, 868, 17, 7, UNI_TIRH } /* scriptextensions=tirhuta */,
+ { 42, 6114, 287, 3, 5, UNI_NSHU } /* sc=nushu */,
+ { 0, 6402, 1581, 14, 7, UNI_SB__LE } /* sentencebreak=oletter */,
+ { 1, 2392, 2042, 3, 11, UNI_INMENDEKIKAKUI } /* inmendekikakui */,
+ { 1056, 5136, 4567, 5, 15, UNI_MISCMATHSYMBOLSB } /* blk=miscmathsymbolsb */,
+ { 39, 4355, 2740, 17, 4, UNI_COPT } /* scriptextensions=copt */,
+ { 0, 1879, 3543, 4, 16, UNI_HIGHPUSURROGATES } /* blk=highpusurrogates */,
+ { 518, 4355, 5825, 17, 9, UNI_SUND } /* scriptextensions=sundanese */,
+ { 1537, 1702, 5625, 3, 18, UNI_ANCIENTGREEKNUMBERS } /* isancientgreeknumbers */,
+ { 560, 464, 1440, 2, 2, UNI_SD } /* issd */,
+ { 8, 7385, 0, 28, 0, UNI_PHONETICEXTSUP } /* phoneticextensionssupplement */,
+ { 1, 464, 794, 2, 4, UNI_KALI } /* iskali */,
+ { 9, 3474, 3188, 6, 15, UNI_INIMPERIALARAMAIC } /* block=imperialaramaic */,
+ { 2, 4355, 909, 17, 4, UNI_BALI } /* scriptextensions=bali */,
+ { 0, 6114, 405, 3, 4, UNI_ARMN } /* sc=armn */,
+ { 0, 4355, 337, 17, 4, UNI_CARI } /* scriptextensions=cari */,
+ { 0, 6379, 487, 13, 3, UNI_JG__HAH } /* joininggroup=hah */,
+ { 3, 1879, 3991, 4, 15, UNI_BRAI } /* blk=braillepatterns */,
+ { 645, 7431, 1303, 28, 2, UNI_CCC__132 } /* canonicalcombiningclass=ccc132 */,
+ { 0, 3763, 2080, 14, 8, UNI_NV__11_SLASH_2 } /* numericvalue=5.500e+00 */,
+ { 4, 453, 0, 4, 0, UNI_MIAO } /* plrd */,
+ { 0, 330, 0, 2, 0, UNI_PF } /* pf */,
+ { 769, 3450, 1895, 5, 11, UNI_CHESSSYMBOLS } /* blk=chesssymbols */,
+ { 0, 5544, 934, 21, 2, -UNI_CWT } /* changeswhentitlecased=f */,
+ { 0, 2260, 2322, 3, 10, UNI_IN__NA } /* in=unassigned */,
+ { 2, 3595, 5584, 11, 3, UNI_LATINEXTG } /* latinextendedg */,
+ { 0, 4355, 783, 17, 7, UNI_OSMA } /* scriptextensions=osmanya */,
+ { 0, 1867, 602, 12, 2, -UNI_BIDIM } /* bidimirrored=n */,
+ { 777, 2483, 2033, 8, 5, UNI_XPOSIXALPHA } /* isxposixalpha */,
+ { 0, 6944, 3112, 24, 11, UNI_CCC__8 } /* canonicalcombiningclass=kanavoicing */,
+ { 1282, 6114, 661, 3, 4, UNI_SC__DOGR } /* sc=dogr */,
+ { 4, 4355, 240, 17, 4, UNI_ZANB } /* scriptextensions=zanb */,
+ { 0, 7527, 4711, 3, 15, UNI_LB__CB } /* lb=contingentbreak */,
+ { 5, 6114, 1508, 3, 4, UNI_UGAR } /* sc=ugar */,
+ { 1, 7688, 1988, 23, 3, UNI_JG__MANICHAEANWAW } /* joininggroup=manichaeanwaw */,
+ { 29, 833, 602, 4, 2, -UNI_TERM } /* term=n */,
+ { 1, 7182, 8407, 3, 23, UNI_CJKCOMPATIDEOGRAPHS } /* cjkcompatibilityideographs */,
+ { 2, 313, 6134, 2, 13, UNI_GLAGOLITICSUP } /* inglagoliticsup */,
+ { 1, 1102, 651, 4, 5, UNI_ADLM } /* scx=adlam */,
+ { 0, 1702, 575, 3, 6, UNI_AVST } /* isavestan */,
+ { 1, 1539, 6750, 3, 24, UNI_CWKCF } /* ischangeswhennfkccasefolded */,
+ { 1, 1879, 749, 4, 7, UNI_INMARCHEN } /* blk=marchen */,
+ { 3, 4291, 72, 10, 2, UNI_LB__PR } /* linebreak=pr */,
+ { 6, 3000, 588, 13, 5, UNI_QMARK } /* quotationmark=true */,
+ { 526, 581, 0, 6, 0, UNI_CCC__22 } /* ccc=22 */,
+ { 128, 6944, 8139, 24, 11, UNI_CCC__DB } /* canonicalcombiningclass=doublebelow */,
+ { 0, 5865, 588, 21, 5, UNI_LOE } /* logicalorderexception=true */,
+ { 1, 520, 1781, 4, 4, UNI_NV__70000 } /* nv=70000 */,
+ { 0, 2483, 3060, 7, 6, UNI_XPOSIXDIGIT } /* isxposixdigit */,
+ { 9, 2274, 602, 4, 3, -UNI_XIDC } /* xidc=no */,
+ { 0, 1065, 1304, 5, 2, UNI_NV__1_SLASH_20 } /* nv=1/20 */,
+ { 0, 8, 99, 1, 3, UNI_GURU } /* guru */,
+ { 128, 1710, 4641, 3, 15, UNI_SYRIACSUP } /* issyriacsupplement */,
+ { 0, 1102, 861, 4, 7, UNI_TIBT } /* scx=tibetan */,
+ { 0, 409, 934, 2, 2, -UNI_DI } /* di=f */,
+ { 0, 2625, 356, 13, 2, UNI_PATSYN } /* patternsyntax=y */,
+ { 4, 464, 2229, 2, 8, UNI_PHAISTOS } /* isphaistos */,
+ { 0, 1395, 5797, 5, 9, UNI_LATINEXTA } /* latinextendeda */,
+ { 800, 1879, 656, 4, 5, UNI_INBUHID } /* blk=buhid */,
+ { 1, 426, 2665, 3, 13, UNI_ANCIENTSYMBOLS } /* inancientsymbols */,
+ { 0, 8276, 4934, 22, 14, UNI_INSC__GEMINATIONMARK } /* indicsyllabiccategory=geminationmark */,
+ { 1029, 296, 1780, 3, 5, UNI_NV__10000 } /* nv=10000 */,
+ { 2, 4355, 530, 17, 6, UNI_RJNG } /* scriptextensions=rejang */,
+ { 0, 2802, 623, 8, 5, UNI_ETHIOPICEXT } /* isethiopicext */,
+ { 0, 1796, 2401, 7, 11, UNI_SC__NAND } /* script=nandinagari */,
+ { 4, 6944, 8572, 24, 13, UNI_CCC__214 } /* canonicalcombiningclass=attachedabove */,
+ { 7, 4355, 1271, 17, 9, UNI_SIND } /* scriptextensions=khudawadi */,
+ { 1, 464, 666, 2, 5, UNI_LIMB } /* islimbu */,
+ { 2, 909, 0, 4, 0, UNI_BALI } /* bali */,
+ { 0, 8182, 4038, 24, 12, UNI_INPC__LEFTANDRIGHT } /* indicpositionalcategory=leftandright */,
+ { 1, 313, 1948, 2, 10, UNI_INOLDSOGDIAN } /* inoldsogdian */,
+ { 1, 6114, 3885, 3, 17, UNI_AGHB } /* sc=caucasianalbanian */,
+ { 1, 464, 6919, 2, 25, UNI_SYMBOLSFORLEGACYCOMPUTING } /* issymbolsforlegacycomputing */,
+ { 0, 8244, 8407, 9, 23, UNI_CJKCOMPATIDEOGRAPHS } /* block=cjkcompatibilityideographs */,
+ { 0, 3351, 2262, 12, 3, UNI_NV__14 } /* numericvalue=14 */,
+ { 384, 5886, 588, 21, 2, UNI__PERL_NCHAR } /* noncharactercodepoint=t */,
+ { 3, 721, 493, 3, 3, UNI_KANBUN } /* kanbun */,
+ { 3, 464, 661, 2, 5, UNI_DOGR } /* isdogra */,
+ { 208, 2232, 205, 3, 3, UNI_TAVT } /* istavt */,
+ { 1, 6570, 0, 17, 0, UNI_INPC__TOPANDBOTTOM } /* inpc=topandbottom */,
+ { 0, 4291, 322, 10, 2, UNI_LB__AI } /* linebreak=ai */,
+ { 0, 313, 2195, 2, 2, UNI_IN__6 } /* in=6 */,
+ { 0, 600, 1127, 3, 3, UNI_DT__FIN } /* dt=fin */,
+ { 0, 1796, 172, 7, 4, UNI_RJNG } /* script=rjng */,
+ { 1, 875, 0, 5, 0, UNI_UIDEO } /* uideo */,
+ { 0, 4872, 493, 9, 3, UNI_KANBUN } /* block=kanbun */,
+ { 7, 1796, 1198, 7, 4, UNI_SC__GRAN } /* script=gran */,
+ { 1545, 421, 138, 2, 2, UNI_KHMR } /* khmr */,
+ { 0, 7584, 4208, 18, 5, UNI_DT__SML } /* decompositiontype=small */,
+ { 849, 3164, 356, 14, 4, UNI_GREXT } /* graphemeextend=yes */,
+ { 40, 302, 934, 2, 6, -UNI_RI } /* ri=false */,
+ { 74, 2253, 2172, 11, 3, UNI_IN__12 } /* presentin=12.0 */,
+ { 1679, 1478, 6878, 5, 20, UNI_GEOMETRICSHAPESEXT } /* ingeometricshapesextended */,
+ { 2, 1796, 2695, 6, 5, UNI_SC__ARAB } /* script=arab */,
+ { 5, 2260, 140, 3, 2, UNI_IN__NA } /* in=na */,
+ { 25, 1867, 356, 5, 4, UNI_BIDIM } /* bidim=yes */,
+ { 0, 4291, 3423, 10, 4, UNI_LB__GL } /* linebreak=glue */,
+ { 17, 6114, 3637, 3, 4, UNI_LISU } /* sc=lisu */,
+ { 4, 5586, 647, 20, 4, UNI_LB__H3 } /* graphemeclusterbreak=lvt */,
+ { 2, 1102, 409, 4, 4, UNI_DIAK } /* scx=diak */,
+ { 21, 343, 5472, 4, 5, UNI_CCC__B } /* ccc=below */,
+ { 1, 1879, 5322, 4, 18, UNI_CHEROKEESUP } /* blk=cherokeesupplement */,
+ { 0, 7317, 0, 10, 0, UNI_bc_values_index } /* bidiclass= */,
+ { 0, 313, 5907, 2, 21, UNI_SINHALAARCHAICNUMBERS } /* insinhalaarchaicnumbers */,
+ { 0, 4338, 934, 17, 2, -UNI_RI } /* regionalindicator=f */,
+ { 8, 6114, 5631, 3, 5, UNI_SC__GREK } /* sc=greek */,
+ { 1, 1382, 934, 8, 6, -UNI_XIDS } /* xidstart=false */,
+ { 1, 6114, 3309, 3, 4, UNI_MERO } /* sc=mero */,
+ { 3, 721, 2373, 2, 9, UNI_KATAKANAEXT } /* katakanaext */,
+ { 840, 1377, 3416, 5, 4, UNI_WB__MN } /* wb=midnum */,
+ { 14, 6749, 588, 25, 2, UNI_CWKCF } /* changeswhennfkccasefolded=t */,
+ { 0, 6799, 356, 24, 4, UNI_COMPEX } /* fullcompositionexclusion=yes */,
+ { 2, 1879, 975, 4, 8, UNI_INGURMUKHI } /* blk=gurmukhi */,
+ { 14, 1796, 477, 7, 3, UNI_VAI } /* script=vai */,
+ { 0, 4355, 3396, 17, 15, UNI_SARB } /* scriptextensions=oldsoutharabian */,
+ { 0, 8276, 0, 31, 0, UNI_INSC__CONSONANT } /* indicsyllabiccategory=consonant */,
+ { 0, 1377, 2265, 3, 9, UNI_WB__WSEGSPACE } /* wb=wsegspace */,
+ { 2, 464, 917, 2, 4, UNI_BASS } /* isbass */,
+ { 0, 1102, 78, 4, 4, UNI_CYRL } /* scx=cyrl */,
+ { 0, 409, 1175, 2, 2, UNI_dia_values_index } /* dia= */,
+ { 0, 1395, 1698, 5, 4, UNI_LATINEXTF } /* latinextf */,
+ { 0, 313, 7791, 2, 32, UNI_INIDC } /* inideographicdescriptioncharacters */,
+ { 4, 7182, 3571, 3, 6, UNI_CJKCOMPAT } /* cjkcompat */,
+ { 2, 313, 7660, 2, 18, UNI_INVS } /* invariationselectors */,
+ { 0, 7201, 6629, 16, 14, UNI_LM } /* generalcategory=modifierletter */,
+ { 0, 1102, 372, 4, 4, UNI_GOTH } /* scx=goth */,
+ { 2, 2485, 252, 6, 5, UNI_XPOSIXCNTRL } /* xposixcntrl */,
+ { 4, 2181, 764, 4, 2, UNI_NV__5_SLASH_2 } /* nv=5/2 */,
+ { 0, 8007, 1646, 7, 4, UNI_CJKEXTD } /* blk=cjkextd */,
+ { 7, 1879, 9, 4, 3, UNI_OCR } /* blk=ocr */,
+ { 1, 3474, 321, 6, 5, UNI_INTAILE } /* block=taile */,
+ { 0, 313, 3991, 2, 15, UNI_BRAI } /* inbraillepatterns */,
+ { 4, 581, 348, 5, 2, UNI_CCC__BL } /* ccc=218 */,
+ { 136, 2205, 0, 4, 0, UNI_NV__8 } /* nv=8 */,
+ { 2, 2712, 601, 13, 3, -UNI_ECOMP } /* emojicomponent=n */,
+ { 0, 14, 2591, 1, 12, UNI_MAYANNUMERALS } /* mayannumerals */,
+ { 7, 4291, 2680, 9, 3, UNI_RI } /* linebreak=ri */,
+ { 1, 3474, 1362, 6, 9, UNI_INSAMARITAN } /* block=samaritan */,
+ { 0, 1102, 232, 4, 4, UNI_XSUX } /* scx=xsux */,
+ { 290, 3474, 196, 6, 4, UNI_TAGS } /* block=tags */,
+ { 256, 1407, 2733, 3, 13, UNI_INGREEK } /* ingreekandcoptic */,
+ { 3, 1796, 433, 7, 3, UNI_SC__NKO } /* script=nko */,
+ { 1, 3351, 348, 13, 2, UNI_NV__18 } /* numericvalue=18 */,
+ { 0, 1320, 0, 4, 0, UNI_PERM } /* perm */,
+ { 7, 7823, 6509, 5, 19, UNI_CJKCOMPATIDEOGRAPHSSUP } /* incjkcompatideographssup */,
+ { 1, 4882, 0, 4, 0, UNI_EGYP } /* egyp */,
+ { 1137, 1796, 1362, 7, 9, UNI_SAMR } /* script=samaritan */,
+ { 0, 4107, 0, 4, 0, UNI_HANG } /* hang */,
+ { 0, 1377, 5718, 3, 9, UNI_WB__EB } /* wb=emodifier */,
+ { 519, 1102, 236, 4, 4, UNI_YI } /* scx=yiii */,
+ { 0, 2, 355, 1, 5, UNI_CE } /* ce=yes */,
+ { 1, 1796, 6134, 7, 4, UNI_SC__GLAG } /* script=glag */,
+ { 0, 1879, 3637, 4, 14, UNI_LISUSUP } /* blk=lisusupplement */,
+ { 1, 4355, 144, 17, 4, UNI_NEWA } /* scriptextensions=newa */,
+ { 2, 1879, 2401, 4, 11, UNI_INNANDINAGARI } /* blk=nandinagari */,
+ { 0, 6944, 397, 25, 1, UNI_CCC__25 } /* canonicalcombiningclass=25 */,
+ { 21, 34, 4076, 1, 5, UNI_DASH } /* isdash */,
+ { 0, 1796, 1009, 7, 6, UNI_LYCI } /* script=lycian */,
+ { 1536, 2726, 2774, 6, 8, UNI_SO } /* gc=othersymbol */,
+ { 1564, 5087, 510, 10, 2, UNI_WB__DQ } /* wordbreak=dq */,
+ { 4, 581, 2263, 5, 2, UNI_CCC__214 } /* ccc=214 */,
+ { 1039, 4500, 933, 8, 3, -UNI_XPOSIXUPPER } /* uppercase=f */,
+ { 222, 2712, 588, 14, 2, UNI_ECOMP } /* emojicomponent=t */,
+ { 0, 409, 588, 2, 2, UNI_DI } /* di=t */,
+ { 2, 4308, 356, 14, 2, UNI_DT__NONE } /* nfkdquickcheck=y */,
+ { 0, 6114, 1094, 3, 4, UNI_MERC } /* sc=merc */,
+ { 0, 3474, 666, 6, 5, UNI_INLIMBU } /* block=limbu */,
+ { 37, 464, 611, 2, 4, UNI_ELBA } /* iselba */,
+ { 2, 3974, 602, 4, 3, -UNI_IDSB } /* idsb=no */,
+ { 0, 3474, 661, 6, 5, UNI_INDOGRA } /* block=dogra */,
+ { 5, 3164, 934, 14, 2, -UNI_GREXT } /* graphemeextend=f */,
+ { 0, 6944, 278, 23, 2, UNI_CCC__B } /* canonicalcombiningclass=b */,
+ { 0, 4485, 0, 9, 0, UNI_TITLE } /* titlecase */,
+ { 2, 6114, 901, 3, 8, UNI_ARMN } /* sc=armenian */,
+ { 2, 7182, 6352, 3, 18, UNI_CJKRADICALSSUP } /* cjkradicalssupplement */,
+ { 1536, 2678, 6264, 3, 3, UNI_BC__PDI } /* bc=pdi */,
+ { 1, 419, 0, 2, 0, UNI_NO } /* no */,
+ { 0, 7148, 2074, 25, 2, UNI_CCC__129 } /* canonicalcombiningclass=129 */,
+ { 1, 4355, 917, 17, 4, UNI_BASS } /* scriptextensions=bass */,
+ { 0, 2802, 6142, 8, 5, UNI_ETHIOPICSUP } /* isethiopicsup */,
+ { 1, 1879, 3582, 7, 11, UNI_KANGXI } /* blk=kangxiradicals */,
+ { 0, 2, 934, 3, 6, -UNI_CWL } /* cwl=false */,
+ { 24, 464, 401, 2, 4, UNI_MIAO } /* ismiao */,
+ { 0, 6114, 429, 3, 3, UNI_MRO } /* sc=mro */,
+ { 6, 464, 3974, 2, 17, UNI_IDSB } /* isidsbinaryoperator */,
+ { 0, 1967, 602, 7, 2, -UNI_RADICAL } /* radical=n */,
+ { 148, 4355, 102, 17, 4, UNI_HLUW } /* scriptextensions=hluw */,
+ { 2, 3474, 3285, 6, 6, UNI_INHEBREW } /* block=hebrew */,
+ { 29, 4322, 398, 15, 2, UNI_NV__3_SLASH_16 } /* numericvalue=3/16 */,
+ { 788, 1102, 1571, 4, 10, UNI_SAUR } /* scx=saurashtra */,
+ { 39, 1796, 1344, 7, 9, UNI_PALM } /* script=palmyrene */,
+ { 2, 742, 0, 7, 0, UNI_MAND } /* mandaic */,
+ { 98, 464, 4551, 2, 7, UNI_LINB } /* islinearb */,
+ { 0, 7208, 110, 9, 2, UNI_ZL } /* category=zl */,
+ { 517, 306, 934, 5, 6, -UNI__PERL_PATWS } /* patws=false */,
+ { 3, 7688, 5374, 22, 8, UNI_JG__MANICHAEANDHAMEDH } /* joininggroup=manichaeandhamedh */,
+ { 5, 1102, 441, 4, 4, UNI_OLCK } /* scx=olck */,
+ { 2, 34, 6438, 1, 24, UNI_ZNAMENNYMUSIC } /* isznamennymusicalnotation */,
+ { 1, 378, 0, 5, 0, UNI_GREXT } /* grext */,
+ { 6, 1382, 345, 3, 2, UNI_xidc_values_index } /* xidc= */,
+ { 0, 110, 0, 1, 0, UNI_Z } /* z */,
+ { 0, 7132, 837, 8, 3, UNI_SUPPUAA } /* blk=suppuaa */,
+ { 133, 3622, 5797, 7, 9, UNI_LATINEXTA } /* islatinextendeda */,
+ { 0, 313, 656, 2, 5, UNI_INBUHID } /* inbuhid */,
+ { 0, 7317, 4403, 10, 15, UNI_BC__BN } /* bidiclass=boundaryneutral */,
+ { 0, 36, 602, 2, 3, -UNI_VS } /* vs=no */,
+ { 0, 4901, 356, 13, 2, UNI_EMOD } /* emojimodifier=y */,
+ { 3, 1465, 0, 5, 0, UNI_XPOSIXSPACE } /* space */,
+ { 20, 464, 1106, 2, 4, UNI_TALU } /* istalu */,
+ { 0, 600, 1679, 3, 8, UNI_DT__FRA } /* dt=fraction */,
+ { 7, 6944, 8580, 24, 10, UNI_CCC__AR } /* canonicalcombiningclass=aboveright */,
+ { 0, 4433, 121, 5, 2, UNI_INLAO } /* blk=lao */,
+ { 0, 7473, 602, 10, 3, -UNI_XPOSIXALPHA } /* alphabetic=no */,
+ { 2, 5586, 647, 20, 3, UNI_LB__H2 } /* graphemeclusterbreak=lv */,
+ { 6, 6749, 934, 25, 2, -UNI_CWKCF } /* changeswhennfkccasefolded=f */,
+ { 6, 464, 90, 2, 4, UNI_GREK } /* isgrek */,
+ { 2, 2454, 6878, 5, 15, UNI_GEOMETRICSHAPESEXT } /* isgeometricshapesext */,
+ { 196, 1796, 1317, 7, 9, UNI_SC__PERM } /* script=oldpermic */,
+ { 0, 3474, 4467, 6, 18, UNI_COPTICEPACTNUMBERS } /* block=copticepactnumbers */,
+ { 0, 4338, 278, 17, 1, UNI_ri_values_index } /* regionalindicator= */,
+ { 0, 1856, 356, 5, 2, UNI_BIDIC } /* bidic=y */,
+ { 0, 464, 4122, 2, 5, UNI_XPOSIXLOWER } /* islower */,
+ { 1, 4355, 661, 17, 4, UNI_DOGR } /* scriptextensions=dogr */,
+ { 0, 736, 7851, 3, 20, UNI_ENCLOSEDALPHANUM } /* inenclosedalphanumerics */,
+ { 36, 464, 4500, 2, 9, UNI_XPOSIXUPPER } /* isuppercase */,
+ { 3, 3367, 518, 14, 2, UNI_NV__4_SLASH_5 } /* numericvalue=4/5 */,
+ { 0, 1796, 1255, 7, 7, UNI_SOYO } /* script=soyombo */,
+ { 1, 313, 6833, 2, 14, UNI_BYZANTINEMUSIC } /* inbyzantinemusic */,
+ { 1825, 1400, 0, 10, 0, UNI_BOXDRAWING } /* boxdrawing */,
+ { 5, 2981, 572, 4, 2, UNI_IN__5_DOT_2 } /* in=v52 */,
+ { 0, 916, 5620, 4, 3, -UNI_EBASE } /* ebase=n */,
+ { 0, 581, 394, 5, 2, UNI_CCC__DA } /* ccc=234 */,
+ { 89, 343, 891, 4, 2, UNI_CCC__10 } /* ccc=10 */,
+ { 0, 7740, 588, 11, 5, UNI_IDEO } /* ideographic=true */,
+ { 2, 3152, 0, 12, 0, UNI_NL } /* letternumber */,
+ { 0, 7182, 6352, 3, 11, UNI_CJKRADICALSSUP } /* cjkradicalssup */,
+ { 0, 15, 4918, 1, 9, UNI_ALCHEMICAL } /* alchemical */,
+ { 35, 2, 1895, 1, 11, UNI_CHESSSYMBOLS } /* chesssymbols */,
+ { 0, 4355, 55, 17, 4, UNI_CANS } /* scriptextensions=cans */,
+ { 1, 1102, 2220, 4, 4, UNI_HUNG } /* scx=hung */,
+ { 513, 959, 588, 8, 2, UNI_EXT } /* extender=t */,
+ { 0, 2496, 639, 3, 3, UNI_JG__NUN } /* jg=nun */,
+ { 6, 6944, 292, 25, 1, UNI_CCC__23 } /* canonicalcombiningclass=23 */,
+ { 1056, 555, 392, 4, 3, UNI_AGE__6_DOT_3 } /* age=6.3 */,
+ { 0, 7527, 6173, 3, 12, UNI_LB__SY } /* lb=breaksymbols */,
+ { 0, 2454, 5812, 7, 6, UNI_GEORGIANSUP } /* isgeorgiansup */,
+ { 3, 7208, 115, 9, 2, UNI_SK } /* category=sk */,
+ { 0, 6944, 292, 25, 2, UNI_CCC__A } /* canonicalcombiningclass=230 */,
+ { 7, 7201, 229, 16, 2, UNI_PE } /* generalcategory=pe */,
+ { 52, 3474, 4107, 6, 15, UNI_INHANGUL } /* block=hangulsyllables */,
+ { 0, 5, 356, 3, 2, UNI_EXT } /* ext=y */,
+ { 0, 940, 934, 6, 2, -UNI_COMPEX } /* compex=f */,
+ { 21, 1879, 1009, 4, 6, UNI_INLYCIAN } /* blk=lycian */,
+ { 5, 4433, 4464, 9, 4, UNI_LATINEXTC } /* blk=latinextc */,
+ { 0, 749, 0, 7, 0, UNI_MARC } /* marchen */,
+ { 2, 2678, 6492, 2, 3, UNI_BC__AL } /* bc=al */,
+ { 4, 513, 294, 5, 1, UNI_NV__3_SLASH_4 } /* nv=3/4 */,
+ { 0, 682, 5898, 3, 4, UNI_ANY } /* unicode */,
+ { 0, 464, 6842, 2, 14, UNI_MUSIC } /* ismusicalsymbols */,
+ { 522, 6944, 346, 23, 2, UNI_CCC__1 } /* canonicalcombiningclass=1 */,
+ { 0, 823, 356, 4, 4, UNI_DASH } /* dash=yes */,
+ { 5, 5787, 0, 19, 0, UNI_JAMOEXTA } /* hanguljamoextendeda */,
+ { 0, 7584, 0, 18, 0, UNI_dt_values_index } /* decompositiontype= */,
+ { 0, 3474, 1009, 6, 6, UNI_INLYCIAN } /* block=lycian */,
+ { 4, 6185, 0, 17, 0, UNI_NV__1000 } /* numericvalue=1000 */,
+ { 0, 1377, 4338, 3, 17, UNI_RI } /* wb=regionalindicator */,
+ { 1, 257, 356, 4, 2, UNI_CWCF } /* cwcf=y */,
+ { 133, 1796, 651, 7, 5, UNI_SC__ADLM } /* script=adlam */,
+ { 0, 2678, 7115, 3, 17, UNI_BC__ES } /* bc=europeanseparator */,
+ { 1, 328, 1818, 3, 8, UNI_SUPERANDSUB } /* superandsub */,
+ { 0, 378, 601, 4, 2, UNI_grext_values_index } /* grext= */,
+ { 0, 895, 395, 5, 2, UNI_AGE__4_DOT_1 } /* age=v41 */,
+ { 5, 4355, 3991, 17, 4, UNI_BRAI } /* scriptextensions=brai */,
+ { 0, 520, 1072, 4, 3, UNI_NV__7_SLASH_12 } /* nv=7/12 */,
+ { 8, 2275, 5620, 9, 4, -UNI_IDC } /* idcontinue=no */,
+ { 51, 4355, 220, 17, 4, UNI_TOTO } /* scriptextensions=toto */,
+ { 0, 1710, 0, 7, 0, UNI_XPOSIXSPACE } /* isspace */,
+ { 65, 5748, 837, 6, 3, UNI_SUPPUAA } /* insuppuaa */,
+ { 0, 464, 1086, 2, 4, UNI_KTHI } /* iskthi */,
+ { 55, 5136, 1052, 5, 7, UNI_INMAHAJANI } /* blk=mahajani */,
+ { 19, 3474, 477, 6, 3, UNI_INVAI } /* block=vai */,
+ { 672, 1796, 5284, 7, 20, UNI_PHLI } /* script=inscriptionalpahlavi */,
+ { 200, 7148, 1302, 25, 2, UNI_CCC__103 } /* canonicalcombiningclass=103 */,
+ { 0, 4122, 587, 8, 3, UNI_XPOSIXLOWER } /* lowercase=t */,
+ { 0, 940, 5644, 2, 17, UNI_COUNTINGROD } /* countingrodnumerals */,
+ { 0, 1377, 3423, 3, 12, UNI_WB__EB } /* wb=glueafterzwj */,
+ { 1847, 7208, 4081, 9, 5, UNI_P } /* category=punct */,
+ { 16, 1102, 1117, 4, 8, UNI_TAGB } /* scx=tagbanwa */,
+ { 27, 2678, 5978, 3, 12, UNI_BC__AN } /* bc=arabicnumber */,
+ { 0, 4433, 0, 13, 0, UNI_LATINEXTE } /* blk=latinexte */,
+ { 4, 6774, 1548, 23, 3, UNI_di_values_index } /* defaultignorablecodepoint= */,
+ { 2, 75, 588, 3, 2, UNI_CWU } /* cwu=t */,
+ { 16, 2771, 0, 5, 0, UNI_KHMR } /* khmer */,
+ { 0, 1102, 1529, 4, 4, UNI_KHAR } /* scx=khar */,
+ { 1, 464, 686, 2, 5, UNI_TAKR } /* istakri */,
+ { 0, 5586, 546, 21, 3, UNI_WB__EB } /* graphemeclusterbreak=ebg */,
+ { 5, 1377, 2680, 2, 3, UNI_RI } /* wb=ri */,
+ { 0, 1102, 1191, 4, 4, UNI_BENG } /* scx=beng */,
+ { 20, 464, 321, 2, 5, UNI_TALE } /* istaile */,
+ { 1, 7527, 1977, 3, 2, UNI_LB__PO } /* lb=po */,
+ { 98, 1796, 742, 7, 4, UNI_SC__MAND } /* script=mand */,
+ { 1, 6379, 118, 13, 3, UNI_JG__DAL } /* joininggroup=dal */,
+ { 1152, 464, 4582, 2, 4, UNI_BOPO } /* isbopo */,
+ { 6, 4355, 1826, 17, 11, UNI_SYLO } /* scriptextensions=sylotinagri */,
+ { 3, 7584, 1168, 18, 6, UNI_DT__MED } /* decompositiontype=medial */,
+ { 519, 4355, 618, 17, 4, UNI_ELYM } /* scriptextensions=elym */,
+ { 2, 464, 1614, 2, 10, UNI_WARA } /* iswarangciti */,
+ { 28, 0, 0, 1, 0, UNI_L } /* l */,
+ { 2, 2890, 2857, 3, 11, UNI_JT__D } /* jt=dualjoining */,
+ { 4, 6039, 7975, 7, 32, UNI_MISCMATHSYMBOLSA } /* block=miscellaneousmathematicalsymbolsa */,
+ { 0, 6114, 917, 3, 8, UNI_BASS } /* sc=bassavah */,
+ { 6, 2496, 1723, 3, 8, UNI_JG__FARSIYEH } /* jg=farsiyeh */,
+ { 0, 3474, 7791, 6, 32, UNI_INIDC } /* block=ideographicdescriptioncharacters */,
+ { 29, 464, 3514, 2, 13, UNI_ZL } /* islineseparator */,
+ { 8, 8276, 3249, 31, 5, UNI_INSC__CONSONANTFINAL } /* indicsyllabiccategory=consonantfinal */,
+ { 1, 313, 1255, 2, 7, UNI_INSOYOMBO } /* insoyombo */,
+ { 1273, 1174, 0, 3, 0, UNI_ea_values_index } /* ea= */,
+ { 0, 7431, 3365, 27, 2, UNI_CCC__36 } /* canonicalcombiningclass=ccc36 */,
+ { 4, 1311, 0, 4, 0, UNI_ITAL } /* ital */,
+ { 0, 6114, 1571, 3, 4, UNI_SAUR } /* sc=saur */,
+ { 0, 1451, 0, 10, 0, UNI_DIAK } /* divesakuru */,
+ { 18, 34, 4900, 1, 18, UNI_EBASE } /* isemojimodifierbase */,
+ { 744, 3622, 1037, 7, 4, UNI_LATINEXTB } /* islatinextb */,
+ { 1, 7527, 313, 3, 2, UNI_LB__IN } /* lb=in */,
+ { 0, 2274, 355, 10, 3, UNI_XIDC } /* xidcontinue=y */,
+ { 0, 464, 5907, 2, 7, UNI_SINH } /* issinhala */,
+ { 790, 8007, 6509, 7, 19, UNI_CJKCOMPATIDEOGRAPHSSUP } /* blk=cjkcompatideographssup */,
+ { 2, 5523, 602, 21, 2, -UNI_CWL } /* changeswhenlowercased=n */,
+ { 0, 1377, 102, 3, 2, UNI_LB__HL } /* wb=hl */,
+ { 7, 3823, 278, 16, 1, UNI_sterm_values_index } /* sentenceterminal= */,
+ { 0, 1383, 601, 3, 3, -UNI_IDST } /* idst=n */,
+ { 10, 464, 1487, 2, 8, UNI_JAMOEXTA } /* isjamoexta */,
+ { 0, 313, 4857, 2, 15, UNI_TAMILSUP } /* intamilsupplement */,
+ { 6, 4355, 656, 17, 5, UNI_BUHD } /* scriptextensions=buhid */,
+ { 314, 7431, 292, 27, 2, UNI_CCC__30 } /* canonicalcombiningclass=ccc30 */,
+ { 1, 4291, 2002, 9, 10, UNI_LB__B2 } /* linebreak=breakboth */,
+ { 4, 2384, 0, 2, 0, UNI__PERL_SURROGATE } /* cs */,
+ { 0, 1948, 0, 10, 0, UNI_SOGO } /* oldsogdian */,
+ { 1, 275, 546, 4, 2, UNI_WB__EB } /* gcb=eb */,
+ { 66, 1377, 1591, 3, 2, UNI_LB__LF } /* wb=lf */,
+ { 32, 1102, 1826, 4, 4, UNI_SYLO } /* scx=sylo */,
+ { 58, 2485, 3228, 6, 5, UNI_XPOSIXALNUM } /* xposixalnum */,
+ { 3, 1879, 3309, 4, 15, UNI_INMEROITICCURSIVE } /* blk=meroiticcursive */,
+ { 0, 7201, 252, 16, 2, UNI_CN } /* generalcategory=cn */,
+ { 1, 1214, 3641, 6, 10, UNI_KANASUP } /* inkanasupplement */,
+ { 0, 3794, 0, 14, 0, UNI_NV__8 } /* numericvalue=8 */,
+ { 0, 464, 334, 2, 2, UNI_PD } /* ispd */,
+ { 262, 3137, 607, 15, 4, UNI_EA__W } /* eastasianwidth=wide */,
+ { 0, 1796, 248, 7, 4, UNI_ZZZZ } /* script=zzzz */,
+ { 1, 1102, 1755, 4, 11, UNI_MEDF } /* scx=medefaidrin */,
+ { 0, 3474, 4857, 6, 15, UNI_TAMILSUP } /* block=tamilsupplement */,
+ { 0, 1879, 6134, 4, 10, UNI_INGLAGOLITIC } /* blk=glagolitic */,
+ { 7, 4996, 5382, 13, 7, UNI_JG__MANICHAEANHUNDRED } /* jg=manichaeanhundred */,
+ { 0, 6114, 651, 3, 5, UNI_SC__ADLM } /* sc=adlam */,
+ { 4, 4996, 4174, 13, 4, UNI_JG__MANICHAEANHETH } /* jg=manichaeanheth */,
+ { 0, 832, 588, 5, 2, UNI_STERM } /* sterm=t */,
+ { 1, 7, 197, 1, 3, UNI_TAGS } /* tags */,
+ { 142, 4062, 0, 15, 0, UNI_VEDICEXT } /* vedicextensions */,
+ { 0, 409, 0, 4, 0, UNI_DIAK } /* diak */,
+ { 0, 2496, 6399, 3, 3, UNI_JG__QAF } /* jg=qaf */,
+ { 0, 1102, 1227, 4, 4, UNI_MULT } /* scx=mult */,
+ { 14, 426, 7501, 3, 26, UNI_ANCIENTGREEKMUSIC } /* inancientgreekmusicalnotation */,
+ { 1, 8276, 5269, 22, 15, UNI_INSC__REGISTERSHIFTER } /* indicsyllabiccategory=registershifter */,
+ { 0, 14, 7556, 1, 19, UNI_MISCSYMBOLS } /* miscellaneoussymbols */,
+ { 1, 3137, 602, 14, 2, UNI_EA__N } /* eastasianwidth=n */,
+ { 0, 7317, 4207, 10, 3, UNI_BC__NSM } /* bidiclass=nsm */,
+ { 0, 1102, 2740, 4, 6, UNI_COPT } /* scx=coptic */,
+ { 0, 2792, 0, 10, 0, UNI_CYRL } /* iscyrillic */,
+ { 3, 6039, 7761, 7, 30, UNI_MATHALPHANUM } /* block=mathematicalalphanumericsymbols */,
+ { 0, 131, 4615, 1, 15, UNI_PF } /* finalpunctuation */,
+ { 1, 5340, 0, 10, 0, UNI_DEVA } /* devanagari */,
+ { 0, 3474, 1248, 6, 7, UNI_INSIDDHAM } /* block=siddham */,
+ { 1, 12, 278, 3, 1, UNI_pcm_values_index } /* pcm= */,
+ { 525, 983, 0, 4, 0, UNI_HIRA } /* hira */,
+ { 0, 4355, 429, 17, 3, UNI_MRO } /* scriptextensions=mro */,
+ { 0, 3974, 934, 17, 2, -UNI_IDSB } /* idsbinaryoperator=f */,
+ { 0, 600, 2652, 3, 8, UNI_DT__VERT } /* dt=vertical */,
+ { 0, 2692, 7481, 8, 20, UNI_ARABICPFA } /* blk=arabicpresentationformsa */,
+ { 0, 2483, 4122, 8, 5, UNI_XPOSIXLOWER } /* isxposixlower */,
+ { 1, 6114, 810, 3, 4, UNI_SC__SYRC } /* sc=syrc */,
+ { 75, 1796, 401, 7, 4, UNI_MIAO } /* script=miao */,
+ { 1, 2948, 602, 13, 2, UNI_COMPEX } /* nfcquickcheck=n */,
+ { 1365, 8276, 1168, 31, 6, UNI_INSC__CONSONANTMEDIAL } /* indicsyllabiccategory=consonantmedial */,
+ { 1, 464, 618, 2, 7, UNI_ELYM } /* iselymaic */,
+ { 2, 3474, 686, 6, 5, UNI_INTAKRI } /* block=takri */,
+ { 0, 6114, 0, 3, 0, UNI_sc_values_index } /* sc= */,
+ { 674, 8374, 3039, 25, 5, UNI__PERL_PROBLEMATIC_LOCALE_FOLDS } /* _perl_problematic_locale_folds */,
+ { 34, 1377, 3432, 3, 3, UNI_LB__ZWJ } /* wb=zwj */,
+ { 0, 2153, 392, 4, 1, UNI_NV__46 } /* nv=46 */,
+ { 280, 1915, 355, 11, 5, UNI_GRBASE } /* graphemebase=yes */,
+ { 0, 1383, 588, 4, 5, UNI_IDST } /* idst=true */,
+ { 28, 2394, 0, 7, 0, UNI_MYMR } /* myanmar */,
+ { 1, 1796, 656, 7, 5, UNI_SC__BUHD } /* script=buhid */,
+ { 0, 832, 602, 5, 2, -UNI_STERM } /* sterm=n */,
+ { 663, 3474, 6728, 6, 14, UNI_MEETEIMAYEKEXT } /* block=meeteimayekext */,
+ { 165, 823, 356, 4, 2, UNI_DASH } /* dash=y */,
+ { 0, 644, 588, 3, 2, UNI_GCB__T } /* hst=t */,
+ { 2, 2726, 7044, 3, 13, UNI_M } /* gc=combiningmark */,
+ { 66, 4901, 278, 13, 1, UNI_emod_values_index } /* emojimodifier= */,
+ { 16, 4515, 588, 18, 5, UNI_IDST } /* idstrinaryoperator=true */,
+ { 762, 7431, 891, 27, 2, UNI_CCC__10 } /* canonicalcombiningclass=ccc10 */,
+ { 5, 6402, 4500, 14, 5, UNI_SB__UP } /* sentencebreak=upper */,
+ { 0, 1879, 728, 4, 7, UNI_KALI } /* blk=kayahli */,
+ { 0, 7823, 6334, 5, 18, UNI_CJKCOMPATFORMS } /* incjkcompatibilityforms */,
+ { 27, 2726, 54, 3, 2, UNI_MC } /* gc=mc */,
+ { 0, 464, 1495, 2, 8, UNI_JAVA } /* isjavanese */,
+ { 1, 4122, 933, 8, 3, -UNI_XPOSIXLOWER } /* lowercase=f */,
+ { 2, 1796, 4998, 6, 11, UNI_SC__MANI } /* script=manichaean */,
+ { 0, 4901, 587, 16, 6, UNI_EBASE } /* emojimodifierbase=true */,
+ { 0, 6799, 602, 24, 3, -UNI_COMPEX } /* fullcompositionexclusion=no */,
+ { 8, 7584, 366, 18, 3, UNI_DT__SML } /* decompositiontype=sml */,
+ { 515, 1174, 3083, 3, 7, UNI_EA__N } /* ea=neutral */,
+ { 1, 464, 4456, 2, 12, UNI_CYRILLICEXTC } /* iscyrillicextc */,
+ { 0, 4322, 3777, 14, 2, UNI_NV__3_SLASH_8 } /* numericvalue=3/8 */,
+ { 3, 343, 8037, 4, 10, UNI_CCC__BR } /* ccc=belowright */,
+ { 259, 4355, 1280, 17, 9, UNI_NBAT } /* scriptextensions=nabataean */,
+ { 3, 2712, 356, 5, 2, UNI_EMOJI } /* emoji=y */,
+ { 0, 1102, 47, 4, 4, UNI_BUHD } /* scx=buhd */,
+ { 33, 313, 7500, 2, 17, UNI_ANCIENTGREEKMUSIC } /* inancientgreekmusic */,
+ { 1716, 1856, 934, 5, 6, -UNI_BIDIC } /* bidic=false */,
+ { 0, 4291, 1739, 10, 8, UNI_LB__LF } /* linebreak=linefeed */,
+ { 11, 1382, 588, 4, 2, UNI_XIDS } /* xids=t */,
+ { 8, 1856, 356, 11, 2, UNI_BIDIC } /* bidicontrol=y */,
+ { 1, 5087, 3013, 10, 11, UNI_WB__DQ } /* wordbreak=doublequote */,
+ { 37, 5844, 5080, 5, 7, UNI_SUPARROWSA } /* issuparrowsa */,
+ { 1652, 7317, 334, 10, 3, UNI_BC__PDF } /* bidiclass=pdf */,
+ { 68, 2712, 934, 14, 6, -UNI_ECOMP } /* emojicomponent=false */,
+ { 0, 5844, 8550, 13, 22, UNI_SUPMATHOPERATORS } /* issupplementalmathematicaloperators */,
+ { 98, 3474, 6594, 6, 6, UNI_INBRAHMI } /* block=brahmi */,
+ { 9, 1102, 337, 4, 6, UNI_CARI } /* scx=carian */,
+ { 0, 2290, 0, 6, 0, UNI_N } /* number */,
+ { 32, 861, 0, 7, 0, UNI_TIBT } /* tibetan */,
+ { 22, 1796, 1335, 7, 9, UNI_SC__OUGR } /* script=olduyghur */,
+ { 520, 58, 1802, 2, 5, UNI_SC__MLYM } /* sc=mlym */,
+ { 57, 6114, 496, 3, 4, UNI_SC__KHOJ } /* sc=khoj */,
+ { 1832, 3474, 776, 6, 7, UNI_OLCK } /* block=olchiki */,
+ { 1, 4291, 383, 10, 6, UNI_LB__HY } /* linebreak=hyphen */,
+ { 15, 58, 4998, 2, 11, UNI_SC__MANI } /* sc=manichaean */,
+ { 137, 6114, 1948, 3, 10, UNI_SOGO } /* sc=oldsogdian */,
+ { 1553, 6114, 4857, 3, 5, UNI_SC__TAML } /* sc=tamil */,
+ { 2, 2353, 6142, 8, 12, UNI_CYRILLICSUP } /* incyrillicsupplement */,
+ { 0, 6402, 844, 14, 2, UNI_SB__LO } /* sentencebreak=lo */,
+ { 1063, 1075, 2617, 4, 8, UNI_NV__1_SLASH_5 } /* nv=2.000e-01 */,
+ { 20, 464, 1335, 2, 9, UNI_OUGR } /* isolduyghur */,
+ { 0, 464, 317, 2, 4, UNI_M } /* ismark */,
+ { 608, 2678, 3465, 2, 3, UNI_BC__ET } /* bc=et */,
+ { 109, 313, 6644, 2, 22, UNI_TRANSPORTANDMAP } /* intransportandmapsymbols */,
+ { 16, 2974, 2090, 11, 2, UNI_IN__6_DOT_2 } /* presentin=v62 */,
+ { 4, 868, 0, 4, 0, UNI_TIRH } /* tirh */,
+ { 0, 464, 4776, 2, 17, UNI__PERL_PATWS } /* ispatternwhitespace */,
+ { 3, 2973, 356, 5, 2, UNI_EPRES } /* epres=y */,
+ { 0, 2496, 653, 3, 3, UNI_JG__LAM } /* jg=lam */,
+ { 54, 1796, 4582, 7, 4, UNI_SC__BOPO } /* script=bopo */,
+ { 0, 4302, 5620, 5, 4, -UNI_XPOSIXSPACE } /* wspace=no */,
+ { 1, 1879, 59, 4, 4, UNI_INCHAM } /* blk=cham */,
+ { 5, 1975, 1079, 3, 7, UNI_POSIXWORD } /* isperlword */,
+ { 0, 417, 0, 3, 0, UNI_HAN } /* han */,
+ { 4, 6114, 2401, 3, 11, UNI_SC__NAND } /* sc=nandinagari */,
+ { 1906, 1102, 98, 4, 4, UNI_GURU } /* scx=guru */,
+ { 0, 2496, 4198, 3, 4, UNI_JG__TETH } /* jg=teth */,
+ { 3, 1951, 0, 4, 0, UNI_SOGD } /* sogd */,
+ { 1, 6114, 798, 3, 4, UNI_LANA } /* sc=lana */,
+ { 0, 1102, 102, 4, 4, UNI_HLUW } /* scx=hluw */,
+ { 0, 3351, 394, 13, 2, UNI_NV__34 } /* numericvalue=34 */,
+ { 5, 4901, 5620, 16, 3, -UNI_EBASE } /* emojimodifierbase=n */,
+ { 0, 1102, 5284, 4, 20, UNI_PHLI } /* scx=inscriptionalpahlavi */,
+ { 0, 2474, 2813, 3, 6, UNI_MAHJONG } /* ismahjong */,
+ { 0, 2392, 7556, 3, 19, UNI_MISCSYMBOLS } /* inmiscellaneoussymbols */,
+ { 90, 8276, 2573, 22, 6, UNI_LB__ZWJ } /* indicsyllabiccategory=joiner */,
+ { 0, 7527, 5718, 3, 9, UNI_EMOD } /* lb=emodifier */,
+ { 0, 3593, 1491, 7, 4, UNI_LATINEXTA } /* inlatinexta */,
+ { 0, 8470, 0, 20, 0, UNI_vo_values_index } /* verticalorientation= */,
+ { 1, 58, 3671, 2, 10, UNI_SC__MLYM } /* sc=malayalam */,
+ { 0, 1796, 1191, 7, 7, UNI_SC__BENG } /* script=bengali */,
+ { 0, 5586, 898, 20, 2, UNI_GCB__V } /* graphemeclusterbreak=v */,
+ { 0, 1879, 196, 4, 4, UNI_TAGS } /* blk=tags */,
+ { 1, 1977, 1915, 5, 5, UNI_POSIXGRAPH } /* posixgraph */,
+ { 261, 6944, 7966, 24, 9, UNI_CCC__AL } /* canonicalcombiningclass=aboveleft */,
+ { 0, 1174, 140, 3, 2, UNI_EA__NA } /* ea=na */,
+ { 8, 4355, 15, 17, 4, UNI_ADLM } /* scriptextensions=adlm */,
+ { 0, 6239, 1687, 14, 7, UNI_BC__LRI } /* bc=lefttorightisolate */,
+ { 0, 4302, 355, 5, 2, UNI_wspace_values_index } /* wspace= */,
+ { 0, 1065, 2056, 4, 8, UNI_NV__1_SLASH_9 } /* nv=1.111e-01 */,
+ { 186, 6728, 0, 21, 0, UNI_MEETEIMAYEKEXT } /* meeteimayekextensions */,
+ { 0, 2496, 4194, 3, 4, UNI_JG__QAPH } /* jg=qaph */,
+ { 292, 2496, 5015, 3, 6, UNI_JG__YUDHHE } /* jg=yudhhe */,
+ { 1, 6114, 1098, 3, 4, UNI_NSHU } /* sc=nshu */,
+ { 5, 6687, 4655, 22, 3, UNI_JG__MALAYALAMTTA } /* joininggroup=malayalamtta */,
+ { 512, 275, 366, 4, 2, UNI_GCB__SM } /* gcb=sm */,
+ { 3, 1879, 3381, 4, 15, UNI_NARB } /* blk=oldnortharabian */,
+ { 2, 464, 1860, 2, 7, UNI_XPOSIXCNTRL } /* iscontrol */,
+ { 0, 1879, 5806, 4, 9, UNI_INMONGOLIAN } /* blk=mongolian */,
+ { 0, 4872, 5797, 10, 9, UNI_KANAEXTA } /* block=kanaextendeda */,
+ { 0, 3622, 121, 3, 2, UNI_LAO } /* islao */,
+ { 0, 6114, 204, 3, 4, UNI_TAVT } /* sc=tavt */,
+ { 42, 1382, 934, 4, 2, -UNI_XIDS } /* xids=f */,
+ { 54, 7527, 1747, 3, 8, UNI_LB__NL } /* lb=nextline */,
+ { 132, 5865, 934, 21, 6, -UNI_LOE } /* logicalorderexception=false */,
+ { 66, 464, 3933, 2, 4, UNI_MODI } /* ismodi */,
+ { 0, 2253, 549, 11, 3, UNI_IN__13 } /* presentin=13.0 */,
+ { 74, 3474, 5625, 7, 18, UNI_ANCIENTGREEKNUMBERS } /* block=ancientgreeknumbers */,
+ { 0, 2392, 4442, 9, 9, UNI_MYANMAREXTB } /* inmyanmarextendedb */,
+ { 21, 464, 814, 2, 4, UNI_QAAI } /* iszinh */,
+ { 0, 464, 3637, 2, 7, UNI_LISUSUP } /* islisusup */,
+ { 9, 1879, 1542, 4, 6, UNI_ARROWS } /* blk=arrows */,
+ { 0, 895, 2098, 5, 2, UNI_AGE__6_DOT_3 } /* age=v63 */,
+ { 1, 6114, 51, 3, 4, UNI_SC__CAKM } /* sc=cakm */,
+ { 92, 3474, 1695, 12, 3, UNI_ARABICPFB } /* block=arabicpfb */,
+ { 1548, 1879, 1227, 4, 7, UNI_INMULTANI } /* blk=multani */,
+ { 0, 1465, 587, 4, 6, UNI_XPOSIXSPACE } /* space=true */,
+ { 11, 1478, 6878, 5, 15, UNI_GEOMETRICSHAPESEXT } /* ingeometricshapesext */,
+ { 40, 2253, 2195, 9, 2, UNI_IN__6 } /* presentin=6 */,
+ { 2, 7317, 5249, 10, 3, UNI_BC__RLE } /* bidiclass=rle */,
+ { 0, 1410, 348, 7, 2, UNI_CCC__18 } /* ccc=ccc18 */,
+ { 1, 2392, 2813, 3, 6, UNI_MAHJONG } /* inmahjong */,
+ { 0, 1796, 425, 7, 4, UNI_SC__LINA } /* script=lina */,
+ { 12, 296, 3363, 2, 3, UNI_NV__23 } /* nv=23 */,
+ { 1, 2496, 487, 3, 3, UNI_JG__HAH } /* jg=hah */,
+ { 0, 5087, 6276, 10, 6, UNI_WB__FO } /* wordbreak=format */,
+ { 1, 2726, 317, 3, 4, UNI_M } /* gc=mark */,
+ { 0, 1102, 2401, 4, 11, UNI_NAND } /* scx=nandinagari */,
+ { 0, 3748, 2056, 14, 8, UNI_NV__1_SLASH_9 } /* numericvalue=1.111e-01 */,
+ { 764, 1102, 814, 4, 4, UNI_QAAI } /* scx=zinh */,
+ { 6, 7584, 602, 17, 5, UNI_DT__NONE } /* decompositiontype=none */,
+ { 6, 2205, 2080, 4, 8, UNI_NV__17_SLASH_2 } /* nv=8.500e+00 */,
+ { 260, 1102, 1003, 4, 6, UNI_LEPC } /* scx=lepcha */,
+ { 1, 6944, 2263, 25, 2, UNI_CCC__214 } /* canonicalcombiningclass=214 */,
+ { 0, 464, 3228, 2, 5, UNI_XPOSIXALNUM } /* isalnum */,
+ { 0, 1015, 0, 4, 0, UNI_TELU } /* telu */,
+ { 4, 6114, 6728, 3, 11, UNI_MTEI } /* sc=meeteimayek */,
+ { 2, 644, 0, 5, 0, UNI_GCB__L } /* hst=l */,
+ { 0, 1702, 4918, 3, 16, UNI_ALCHEMICAL } /* isalchemicalsymbols */,
+ { 0, 4291, 1591, 10, 2, UNI_LB__LF } /* linebreak=lf */,
+ { 1, 5087, 0, 10, 0, UNI_wb_values_index } /* wordbreak= */,
+ { 26, 7317, 358, 10, 2, UNI_BC__ES } /* bidiclass=es */,
+ { 1294, 2392, 7975, 3, 32, UNI_MISCMATHSYMBOLSA } /* inmiscellaneousmathematicalsymbolsa */,
+ { 96, 1867, 278, 5, 1, UNI_bidim_values_index } /* bidim= */,
+ { 2074, 306, 4370, 4, 2, UNI_patws_values_index } /* patws= */,
+ { 265, 7201, 3156, 19, 8, UNI_NO } /* generalcategory=othernumber */,
+ { 1137, 1879, 4857, 4, 8, UNI_TAMILSUP } /* blk=tamilsup */,
+ { 3, 7527, 7044, 3, 13, UNI_LB__CM } /* lb=combiningmark */,
+ { 1, 6114, 802, 3, 4, UNI_NBAT } /* sc=nbat */,
+ { 2, 464, 5865, 2, 21, UNI_LOE } /* islogicalorderexception */,
+ { 2347, 7527, 0, 29, 0, UNI_LB__CJ } /* lb=conditionaljapanesestarter */,
+ { 80, 1796, 6594, 7, 6, UNI_BRAH } /* script=brahmi */,
+ { 1, 1227, 0, 4, 0, UNI_MULT } /* mult */,
+ { 4, 1410, 398, 7, 2, UNI_CCC__16 } /* ccc=ccc16 */,
+ { 16, 296, 2065, 3, 2, UNI_NV__25 } /* nv=25 */,
+ { 0, 2253, 2128, 10, 3, UNI_IN__3_DOT_1 } /* presentin=3.1 */,
+ { 16, 2678, 2384, 3, 2, UNI_BC__CS } /* bc=cs */,
+ { 993, 4656, 0, 9, 0, UNI_TANGUTSUP } /* tangutsup */,
+ { 0, 343, 394, 4, 2, UNI_CCC__34 } /* ccc=34 */,
+ { 1, 876, 356, 4, 2, UNI_IDEO } /* ideo=y */,
+ { 8, 2253, 2207, 9, 2, UNI_IN__8 } /* presentin=8 */,
+ { 1, 4750, 0, 8, 0, UNI_DINGBATS } /* dingbats */,
+ { 4, 593, 6390, 2, 2, UNI_dep_values_index } /* dep= */,
+ { 195, 2392, 1491, 9, 4, UNI_MYANMAREXTA } /* inmyanmarexta */,
+ { 33, 1102, 1335, 4, 9, UNI_OUGR } /* scx=olduyghur */,
+ { 139, 4122, 5620, 8, 4, -UNI_XPOSIXLOWER } /* lowercase=no */,
+ { 256, 313, 4857, 2, 5, UNI_INTAMIL } /* intamil */,
+ { 116, 2981, 2098, 4, 2, UNI_IN__6_DOT_3 } /* in=v63 */,
+ { 8, 4355, 437, 17, 4, UNI_OGAM } /* scriptextensions=ogam */,
+ { 1, 5844, 4388, 4, 15, UNI_SUTTONSIGNWRITING } /* issuttonsignwriting */,
+ { 1, 8470, 5942, 20, 7, UNI_VO__R } /* verticalorientation=rotated */,
+ { 4, 5, 7175, 1, 26, UNI_ENCLOSEDCJK } /* enclosedcjklettersandmonths */,
+ { 71, 343, 2074, 5, 2, UNI_CCC__129 } /* ccc=129 */,
+ { 1, 8007, 3929, 30, 4, UNI_CJKEXTG } /* blk=cjkunifiedideographsextensiong */,
+ { 0, 3748, 2197, 14, 8, UNI_NV__1_SLASH_80 } /* numericvalue=1.250e-02 */,
+ { 0, 464, 1837, 2, 5, UNI_EBASE } /* isebase */,
+ { 0, 1102, 4551, 4, 7, UNI_LINB } /* scx=linearb */,
+ { 0, 6379, 1731, 13, 8, UNI_JG__SWASHKAF } /* joininggroup=swashkaf */,
+ { 0, 7527, 0, 3, 0, UNI_lb_values_index } /* lb= */,
+ { 17, 3474, 5340, 6, 10, UNI_INDEVANAGARI } /* block=devanagari */,
+ { 2, 4485, 0, 5, 0, UNI_TITLE } /* title */,
+ { 3, 2275, 588, 3, 5, UNI_IDC } /* idc=true */,
+ { 0, 3474, 8551, 6, 21, UNI_MATHOPERATORS } /* block=mathematicaloperators */,
+ { 72, 1796, 1571, 7, 10, UNI_SAUR } /* script=saurashtra */,
+ { 20, 1975, 165, 3, 3, UNI_PHNX } /* isphnx */,
+ { 833, 409, 1175, 2, 3, -UNI_DIA } /* dia=n */,
+ { 0, 1879, 337, 4, 6, UNI_INCARIAN } /* blk=carian */,
+ { 70, 275, 3151, 2, 7, UNI_L } /* gc=letter */,
+ { 3, 3654, 6629, 7, 15, UNI_MODIFIERLETTERS } /* spacingmodifierletters */,
+ { 0, 7880, 7314, 28, 4, UNI_CJKEXTB } /* iscjkunifiedideographsextensionb */,
+ { 0, 1915, 5620, 11, 4, -UNI_GRBASE } /* graphemebase=no */,
+ { 7, 555, 2155, 3, 4, UNI_AGE__4_DOT_1 } /* age=4.1 */,
+ { 40, 7527, 527, 3, 2, UNI_LB__SY } /* lb=sy */,
+ { 0, 1098, 0, 4, 0, UNI_NSHU } /* nshu */,
+ { 1, 2363, 6142, 8, 5, UNI_ETHIOPICSUP } /* inethiopicsup */,
+ { 3, 3351, 2183, 12, 10, UNI_NV__7_SLASH_12 } /* numericvalue=5.833e-01 */,
+ { 1, 6114, 417, 3, 3, UNI_SC__HAN } /* sc=han */,
+ { 1280, 6114, 975, 3, 8, UNI_SC__GURU } /* sc=gurmukhi */,
+ { 0, 2153, 2080, 4, 8, UNI_NV__9_SLASH_2 } /* nv=4.500e+00 */,
+ { 0, 783, 0, 7, 0, UNI_OSMA } /* osmanya */,
+ { 0, 240, 0, 4, 0, UNI_ZANB } /* zanb */,
+ { 0, 2260, 389, 3, 3, UNI_IN__3_DOT_2 } /* in=3.2 */,
+ { 15, 1967, 278, 7, 1, UNI_radical_values_index } /* radical= */,
+ { 0, 4291, 4247, 10, 14, UNI_LB__BK } /* linebreak=mandatorybreak */,
+ { 2, 2948, 356, 13, 4, UNI_NFCQC__Y } /* nfcquickcheck=yes */,
+ { 2177, 4291, 0, 10, 0, UNI_lb_values_index } /* linebreak= */,
+ { 1, 2496, 1893, 3, 3, UNI_JG__TAH } /* jg=tah */,
+ { 0, 464, 7660, 2, 17, UNI_VS } /* isvariationselector */,
+ { 0, 4996, 2243, 13, 4, UNI_JG__MANICHAEANAYIN } /* jg=manichaeanayin */,
+ { 7, 6114, 5907, 3, 7, UNI_SC__SINH } /* sc=sinhala */,
+ { 1, 661, 1670, 2, 9, UNI_DOMINO } /* dominotiles */,
+ { 12, 2365, 6142, 6, 5, UNI_ETHIOPICSUP } /* ethiopicsup */,
+ { 2, 296, 6222, 3, 9, UNI_NV__3_SLASH_80 } /* nv=3.750e-02 */,
+ { 66, 1879, 661, 4, 5, UNI_INDOGRA } /* blk=dogra */,
+ { 2, 2, 278, 3, 1, UNI_cwl_values_index } /* cwl= */,
+ { 2, 3474, 1033, 6, 8, UNI_JAMOEXTB } /* block=jamoextb */,
+ { 0, 2692, 6142, 8, 12, UNI_ARABICSUP } /* blk=arabicsupplement */,
+ { 92, 7201, 647, 15, 2, UNI_L } /* generalcategory=l */,
+ { 2, 8007, 4341, 30, 4, UNI_CJKEXTA } /* blk=cjkunifiedideographsextensiona */,
+ { 2, 90, 92, 2, 2, UNI_GREK } /* grek */,
+ { 939, 275, 0, 4, 0, UNI_gcb_values_index } /* gcb= */,
+ { 2, 1102, 2018, 4, 12, UNI_GONM } /* scx=masaramgondi */,
+ { 0, 3474, 6462, 6, 24, UNI_HIGHPUSURROGATES } /* block=highprivateusesurrogates */,
+ { 12, 1410, 1303, 7, 2, UNI_CCC__32 } /* ccc=ccc32 */,
+ { 3, 555, 566, 4, 3, UNI_AGE__8 } /* age=8.0 */,
+ { 3, 875, 602, 5, 2, -UNI_UIDEO } /* uideo=n */,
+ { 16, 1424, 340, 7, 3, UNI_CHRS } /* chorasmian */,
+ { 0, 1102, 818, 4, 7, UNI_SHRD } /* scx=sharada */,
+ { 9, 1796, 236, 7, 4, UNI_SC__YI } /* script=yiii */,
+ { 0, 6039, 7556, 7, 28, UNI_MISCARROWS } /* block=miscellaneoussymbolsandarrows */,
+ { 2161, 1879, 5322, 4, 11, UNI_CHEROKEESUP } /* blk=cherokeesup */,
+ { 0, 75, 356, 3, 4, UNI_CWU } /* cwu=yes */,
+ { 0, 3351, 6198, 13, 8, UNI_NV__10000000 } /* numericvalue=10000000 */,
+ { 29, 1796, 5139, 6, 8, UNI_SC__MYMR } /* script=myanmar */,
+ { 17, 8, 2332, 1, 12, UNI_GREEKEXT } /* greekextended */,
+ { 405, 275, 285, 4, 2, UNI_GCB__XX } /* gcb=xx */,
+ { 1, 2, 8150, 1, 32, UNI_DIACRITICALSEXT } /* combiningdiacriticalmarksextended */,
+ { 360, 313, 3637, 2, 7, UNI_LISUSUP } /* inlisusup */,
+ { 4, 4776, 0, 17, 0, UNI__PERL_PATWS } /* patternwhitespace */,
+ { 2, 464, 3608, 2, 11, UNI_PHONETICEXT } /* isphoneticext */,
+ { 0, 4996, 4190, 13, 4, UNI_JG__MANICHAEANYODH } /* jg=manichaeanyodh */,
+ { 0, 1796, 1133, 7, 8, UNI_VITH } /* script=vithkuqi */,
+ { 145, 33, 8213, 2, 31, UNI_MISCMATHSYMBOLSB } /* miscellaneousmathematicalsymbolsb */,
+ { 0, 4291, 880, 10, 7, UNI_LB__XX } /* linebreak=unknown */,
+ { 0, 4355, 457, 17, 4, UNI_PRTI } /* scriptextensions=prti */,
+ { 0, 1796, 3309, 7, 15, UNI_MERC } /* script=meroiticcursive */,
+ { 39, 5806, 0, 9, 0, UNI_MONG } /* mongolian */,
+ { 0, 1879, 2746, 4, 14, UNI_HIGHSURROGATES } /* blk=highsurrogates */,
+ { 16, 3090, 3599, 11, 9, UNI_GEORGIANEXT } /* blk=georgianextended */,
+ { 171, 3474, 1451, 6, 10, UNI_INDIVESAKURU } /* block=divesakuru */,
+ { 8, 464, 6466, 2, 10, UNI_CO } /* isprivateuse */,
+ { 1304, 1796, 1241, 7, 4, UNI_SC__PHAG } /* script=phag */,
+ { 0, 4355, 1317, 17, 9, UNI_PERM } /* scriptextensions=oldpermic */,
+ { 0, 2365, 0, 8, 0, UNI_ETHI } /* ethiopic */,
+ { 1, 464, 4418, 2, 6, UNI_ZYYY } /* iscommon */,
+ { 0, 37, 4641, 1, 15, UNI_SYRIACSUP } /* syriacsupplement */,
+ { 0, 4433, 5797, 9, 9, UNI_LATINEXTA } /* blk=latinextendeda */,
+ { 1068, 4322, 6199, 14, 5, UNI_NV__300000 } /* numericvalue=300000 */,
+ { 1, 6379, 1893, 13, 3, UNI_JG__TAH } /* joininggroup=tah */,
+ { 113, 2961, 287, 12, 2, UNI_NT__NU } /* numerictype=nu */,
+ { 1, 2274, 356, 4, 4, UNI_XIDC } /* xidc=yes */,
+ { 0, 4291, 7473, 10, 10, UNI_LB__AL } /* linebreak=alphabetic */,
+ { 0, 1102, 5907, 4, 4, UNI_SINH } /* scx=sinh */,
+ { 530, 1796, 71, 7, 4, UNI_SC__CPRT } /* script=cprt */,
+ { 1, 1410, 394, 7, 2, UNI_CCC__34 } /* ccc=ccc34 */,
+ { 6, 1867, 278, 12, 1, UNI_bidim_values_index } /* bidimirrored= */,
+ { 0, 14, 2030, 1, 11, UNI_MATHALPHANUM } /* mathalphanum */,
+ { 1, 464, 6833, 2, 23, UNI_BYZANTINEMUSIC } /* isbyzantinemusicalsymbols */,
+ { 1, 875, 588, 5, 2, UNI_UIDEO } /* uideo=t */,
+ { 0, 3137, 3083, 15, 7, UNI_EA__N } /* eastasianwidth=neutral */,
+ { 32, 1102, 2695, 3, 5, UNI_ARAB } /* scx=arab */,
+ { 147, 3593, 4629, 6, 2, UNI_LATIN1 } /* inlatin1 */,
+ { 1, 4355, 1755, 17, 11, UNI_MEDF } /* scriptextensions=medefaidrin */,
+ { 0, 1102, 3933, 4, 4, UNI_MODI } /* scx=modi */,
+ { 1, 1065, 766, 4, 2, UNI_NV__1_SLASH_6 } /* nv=1/6 */,
+ { 17, 1991, 48, 12, 1, UNI_JT__U } /* joiningtype=u */,
+ { 25, 1879, 6728, 4, 11, UNI_INMEETEIMAYEK } /* blk=meeteimayek */,
+ { 3, 429, 0, 3, 0, UNI_MRO } /* mro */,
+ { 0, 313, 6134, 2, 20, UNI_GLAGOLITICSUP } /* inglagoliticsupplement */,
+ { 1, 6114, 666, 3, 5, UNI_SC__LIMB } /* sc=limbu */,
+ { 133, 3915, 356, 17, 2, UNI_EPRES } /* emojipresentation=y */,
+ { 0, 1879, 5907, 4, 7, UNI_INSINHALA } /* blk=sinhala */,
+ { 1056, 1879, 4092, 4, 15, UNI_DIACRITICALSEXT } /* blk=diacriticalsext */,
+ { 0, 313, 7171, 2, 3, UNI_IN__12 } /* in=12 */,
+ { 0, 3474, 8110, 12, 29, UNI_ARABICMATH } /* block=arabicmathematicalalphabeticsymbols */,
+ { 0, 3974, 356, 17, 4, UNI_IDSB } /* idsbinaryoperator=yes */,
+ { 8, 1977, 4081, 5, 5, UNI_POSIXPUNCT } /* posixpunct */,
+ { 1, 1102, 4857, 4, 5, UNI_TAML } /* scx=tamil */,
+ { 5, 1879, 5214, 4, 9, UNI_HALFMARKS } /* blk=halfmarks */,
+ { 3134, 6114, 2812, 3, 4, UNI_SC__MAHJ } /* sc=mahj */,
+ { 8, 2260, 566, 3, 3, UNI_IN__8 } /* in=8.0 */,
+ { 0, 6039, 5797, 13, 9, UNI_MYANMAREXTA } /* block=myanmarextendeda */,
+ { 3, 6114, 4671, 3, 4, UNI_SC__TALE } /* sc=tale */,
+ { 201, 6303, 0, 23, 0, UNI_COMPATJAMO } /* hangulcompatibilityjamo */,
+ { 0, 4467, 0, 18, 0, UNI_COPTICEPACTNUMBERS } /* copticepactnumbers */,
+ { 0, 2253, 2616, 10, 3, UNI_IN__5 } /* presentin=5.0 */,
+ { 0, 261, 278, 4, 1, UNI_cwcm_values_index } /* cwcm= */,
+ { 67, 7201, 12, 16, 1, UNI_P } /* generalcategory=p */,
+ { 21, 464, 4582, 2, 16, UNI_BOPOMOFOEXT } /* isbopomofoextended */,
+ { 2, 8182, 8440, 30, 14, UNI_INPC__TOPANDBOTTOMANDRIGHT } /* indicpositionalcategory=topandbottomandright */,
+ { 1, 464, 168, 2, 4, UNI_COPT } /* isqaac */,
+ { 1, 1102, 4882, 4, 4, UNI_EGYP } /* scx=egyp */,
+ { 1, 7208, 4500, 9, 15, UNI_UPPERCASELETTER } /* category=uppercaseletter */,
+ { 2179, 1102, 4436, 3, 6, UNI_LATN } /* scx=latin */,
+ { 1, 1702, 6142, 6, 12, UNI_ARABICSUP } /* isarabicsupplement */,
+ { 0, 6114, 180, 3, 4, UNI_RUNR } /* sc=runr */,
+ { 32, 464, 1382, 2, 4, UNI_XIDS } /* isxids */,
+ { 1954, 5825, 0, 4, 0, UNI_SUND } /* sund */,
+ { 76, 513, 523, 4, 1, UNI_NV__37 } /* nv=37 */,
+ { 2123, 14, 2603, 1, 12, UNI_MISCTECHNICAL } /* misctechnical */,
+ { 0, 7584, 1178, 19, 5, UNI_DT__NAR } /* decompositiontype=narrow */,
+ { 2, 644, 3961, 4, 13, UNI_HST__NA } /* hst=notapplicable */,
+ { 0, 7473, 934, 10, 6, -UNI_XPOSIXALPHA } /* alphabetic=false */,
+ { 1, 7201, 110, 16, 1, UNI_Z } /* generalcategory=z */,
+ { 0, 1879, 3498, 4, 16, UNI_CYPRIOTSYLLABARY } /* blk=cypriotsyllabary */,
+ { 0, 1102, 51, 4, 4, UNI_CAKM } /* scx=cakm */,
+ { 95, 12, 588, 3, 2, UNI_PCM } /* pcm=t */,
+ { 2416, 3474, 1144, 6, 9, UNI_INBHAIKSUKI } /* block=bhaiksuki */,
+ { 0, 1879, 3671, 3, 10, UNI_INMALAYALAM } /* blk=malayalam */,
+ { 3, 343, 8580, 4, 10, UNI_CCC__AR } /* ccc=aboveright */,
+ { 1427, 313, 8592, 2, 42, UNI_UCASEXT } /* inunifiedcanadianaboriginalsyllabicsextended */,
+ { 2, 464, 1009, 2, 4, UNI_LYCI } /* islyci */,
+ { 106, 14, 8307, 1, 33, UNI_MISCPICTOGRAPHS } /* miscellaneoussymbolsandpictographs */,
+ { 2791, 313, 1755, 2, 11, UNI_INMEDEFAIDRIN } /* inmedefaidrin */,
+ { 6, 464, 461, 2, 4, UNI_QAAI } /* isqaai */,
+ { 46617, 895, 771, 6, 2, UNI_AGE__12_DOT_1 } /* age=v121 */,
+ { 0, 3351, 6207, 14, 8, UNI_NV__1_SLASH_40 } /* numericvalue=2.500e-02 */,
+ { 3, 2392, 402, 3, 3, UNI_INMIAO } /* inmiao */,
+ { 42, 1395, 4629, 4, 2, UNI_LATIN1 } /* latin1 */,
+ { 1, 3991, 2626, 8, 7, UNI_BRAI } /* braillepatterns */,
+ { 0, 34, 7499, 1, 28, UNI_ANCIENTGREEKMUSIC } /* isancientgreekmusicalnotation */,
+ { 2053, 524, 356, 6, 2, UNI_PATSYN } /* patsyn=y */,
+ { 0, 5886, 588, 21, 5, UNI__PERL_NCHAR } /* noncharactercodepoint=true */,
+ { 0, 2802, 1183, 3, 8, UNI_EMOTICONS } /* isemoticons */,
+ { 624, 2, 601, 2, 4, -UNI_CWT } /* cwt=no */,
+ { 2, 7527, 2915, 3, 11, UNI_LB__EX } /* lb=exclamation */,
+ { 0, 5099, 3035, 6, 9, UNI__PERL_ANY_FOLDS } /* _perl_any_folds */,
+ { 17, 2496, 2526, 3, 3, UNI_JG__HEH } /* jg=heh */,
+ { 65, 2474, 8552, 3, 20, UNI_MATHOPERATORS } /* ismathematicaloperators */,
+ { 0, 2496, 4166, 3, 4, UNI_JG__BETH } /* jg=beth */,
+ { 2157, 7208, 5174, 13, 12, UNI_PO } /* category=otherpunctuation */,
+ { 2019, 2926, 4641, 3, 15, UNI_SYRIACSUP } /* insyriacsupplement */,
+ { 11, 6114, 880, 3, 7, UNI_ZZZZ } /* sc=unknown */,
+ { 1, 7182, 1491, 3, 4, UNI_CJKEXTA } /* cjkexta */,
+ { 0, 1879, 637, 4, 7, UNI_INHANUNOO } /* blk=hanunoo */,
+ { 1, 2474, 743, 3, 6, UNI_MAND } /* ismandaic */,
+ { 19, 1227, 0, 7, 0, UNI_MULT } /* multani */,
+ { 0, 464, 6728, 2, 14, UNI_MEETEIMAYEKEXT } /* ismeeteimayekext */,
+ { 0, 7377, 0, 8, 0, UNI_KANA } /* katakana */,
+ { 4, 2981, 771, 5, 2, UNI_IN__12_DOT_1 } /* in=v121 */,
+ { 0, 58, 2695, 2, 7, UNI_SC__ARAB } /* sc=arabic */,
+ { 0, 328, 5080, 3, 7, UNI_SUPARROWSA } /* suparrowsa */,
+ { 2337, 37, 1110, 1, 7, UNI_SPECIALS } /* specials */,
+ { 2, 4355, 148, 17, 4, UNI_ORYA } /* scriptextensions=orya */,
+ { 0, 7208, 12, 9, 1, UNI_P } /* category=p */,
+ { 0, 1102, 5806, 4, 9, UNI_MONG } /* scx=mongolian */,
+ { 1026, 1236, 6029, 2, 10, UNI_INGEORGIAN } /* blk=georgian */,
+ { 20, 313, 8592, 2, 43, UNI_UCASEXTA } /* inunifiedcanadianaboriginalsyllabicsextendeda */,
+ { 4, 1102, 1308, 4, 9, UNI_ITAL } /* scx=olditalic */,
+ { 16, 6114, 4020, 3, 4, UNI_SC__SIND } /* sc=sind */,
+ { 8, 313, 6728, 2, 21, UNI_MEETEIMAYEKEXT } /* inmeeteimayekextensions */,
+ { 14, 8, 1412, 1, 3, UNI_C } /* gc=c */,
+ { 0, 4450, 6528, 7, 21, UNI_INDICNUMBERFORMS } /* block=commonindicnumberforms */,
+ { 0, 1879, 6970, 4, 26, UNI_HALFANDFULLFORMS } /* blk=halfwidthandfullwidthforms */,
+ { 32, 1796, 461, 7, 4, UNI_SC__QAAI } /* script=qaai */,
+ { 0, 991, 0, 6, 0, UNI_HATR } /* hatran */,
+ { 0, 1879, 983, 4, 8, UNI_INHIRAGANA } /* blk=hiragana */,
+ { 0, 2463, 602, 5, 2, -UNI_JOINC } /* joinc=n */,
+ { 1144, 316, 602, 5, 2, -UNI_QMARK } /* qmark=n */,
+ { 386, 7605, 3961, 19, 13, UNI_HST__NA } /* hangulsyllabletype=notapplicable */,
+ { 1, 15, 0, 4, 0, UNI_ADLM } /* adlm */,
+ { 9, 4355, 337, 17, 6, UNI_CARI } /* scriptextensions=carian */,
+ { 256, 2274, 0, 11, 0, UNI_XIDC } /* xidcontinue */,
+ { 0, 2496, 24, 3, 2, UNI_JG__HE } /* jg=he */,
+ { 0, 7182, 5, 3, 4, UNI_CJKEXTG } /* cjkextg */,
+ { 0, 4291, 13, 10, 2, UNI_LB__CM } /* linebreak=cm */,
+ { 8, 14, 6053, 1, 12, UNI_MATHOPERATORS } /* mathoperators */,
+ { 0, 4355, 7377, 17, 8, UNI_KANA } /* scriptextensions=katakana */,
+ { 0, 3474, 1542, 6, 6, UNI_ARROWS } /* block=arrows */,
+ { 0, 4996, 4978, 13, 6, UNI_JG__MANICHAEANDALETH } /* jg=manichaeandaleth */,
+ { 0, 4291, 2926, 10, 11, UNI_LB__IN } /* linebreak=inseparable */,
+ { 277, 1362, 0, 9, 0, UNI_SAMR } /* samaritan */,
+ { 1, 7201, 2986, 16, 2, UNI_PS } /* generalcategory=ps */,
+ { 20, 887, 292, 5, 1, UNI_AGE__13 } /* age=13 */,
+ { 1158, 6629, 0, 15, 0, UNI_MODIFIERLETTERS } /* modifierletters */,
+ { 0, 4662, 8319, 12, 21, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* supplementalsymbolsandpictographs */,
+ { 0, 4291, 527, 10, 2, UNI_LB__SY } /* linebreak=sy */,
+ { 1570, 4355, 188, 17, 4, UNI_SGNW } /* scriptextensions=sgnw */,
+ { 640, 1441, 934, 3, 2, -UNI_DEP } /* dep=f */,
+ { 19, 5748, 0, 21, 0, UNI_SUPARROWSB } /* insupplementalarrowsb */,
+ { 0, 1796, 3885, 7, 17, UNI_AGHB } /* script=caucasianalbanian */,
+ { 1, 6114, 5340, 3, 10, UNI_SC__DEVA } /* sc=devanagari */,
+ { 0, 1383, 356, 3, 2, UNI_IDS } /* ids=y */,
+ { 0, 1704, 0, 6, 0, UNI_ARAB } /* arabic */,
+ { 0, 6944, 1304, 25, 2, UNI_CCC__B } /* canonicalcombiningclass=220 */,
+ { 0, 983, 0, 8, 0, UNI_HIRA } /* hiragana */,
+ { 1, 735, 5601, 4, 8, UNI_LB__ID } /* linebreak=id */,
+ { 129, 8182, 4038, 30, 12, UNI_INPC__TOPANDLEFTANDRIGHT } /* indicpositionalcategory=topandleftandright */,
+ { 16, 34, 908, 1, 9, UNI_INBALINESE } /* inbalinese */,
+ { 0, 600, 4533, 3, 7, UNI_DT__INIT } /* dt=initial */,
+ { 148, 1796, 168, 7, 4, UNI_SC__COPT } /* script=qaac */,
+ { 21, 4355, 6134, 17, 4, UNI_GLAG } /* scriptextensions=glag */,
+ { 14, 3794, 1300, 14, 3, UNI_NV__8000 } /* numericvalue=8000 */,
+ { 0, 14, 7556, 1, 28, UNI_MISCARROWS } /* miscellaneoussymbolsandarrows */,
+ { 1, 1879, 1234, 4, 7, UNI_NB } /* blk=noblock */,
+ { 0, 5928, 0, 5, 0, UNI_VO__TR } /* vo=tr */,
+ { 0, 4355, 417, 17, 3, UNI_HAN } /* scriptextensions=han */,
+ { 1061, 1102, 5322, 4, 8, UNI_CHER } /* scx=cherokee */,
+ { 3195, 7201, 2322, 16, 10, UNI_CN } /* generalcategory=unassigned */,
+ { 0, 1102, 160, 4, 4, UNI_PHLP } /* scx=phlp */,
+ { 1, 4355, 86, 17, 4, UNI_GONG } /* scriptextensions=gong */,
+ { 0, 7018, 6142, 6, 5, UNI_ARABICSUP } /* inarabicsup */,
+ { 1272, 1377, 369, 3, 2, UNI_WB__SQ } /* wb=sq */,
+ { 3, 1102, 1125, 4, 8, UNI_TFNG } /* scx=tifinagh */,
+ { 2, 1357, 6286, 4, 17, UNI_JAMOEXTB } /* inhanguljamoextendedb */,
+ { 11, 1102, 783, 4, 4, UNI_OSMA } /* scx=osma */,
+ { 0, 1796, 496, 7, 4, UNI_SC__KHOJ } /* script=khoj */,
+ { 1, 1796, 59, 7, 4, UNI_CHAM } /* script=cham */,
+ { 1550, 5103, 0, 2, 0, UNI_CASEDLETTER } /* l_ */,
+ { 0, 1879, 1951, 4, 7, UNI_INSOGDIAN } /* blk=sogdian */,
+ { 1, 313, 840, 2, 7, UNI_INTAGALOG } /* intagalog */,
+ { 0, 4291, 153, 10, 2, UNI_LB__SG } /* linebreak=sg */,
+ { 0, 2033, 1175, 4, 2, UNI_alpha_values_index } /* alpha= */,
+ { 2, 106, 792, 2, 2, UNI_HMNP } /* hmnp */,
+ { 0, 1796, 686, 7, 5, UNI_SC__TAKR } /* script=takri */,
+ { 2132, 261, 602, 4, 2, -UNI_CWCM } /* cwcm=n */,
+ { 0, 3734, 3477, 12, 3, UNI_nfkcqc_values_index } /* nfkcquickcheck= */,
+ { 0, 4355, 425, 17, 4, UNI_LINA } /* scriptextensions=lina */,
+ { 2064, 4021, 4844, 4, 13, UNI_DIACRITICALSSUP } /* indiacriticalssup */,
+ { 0, 464, 1982, 2, 6, UNI_SYRC } /* issyriac */,
+ { 3, 4291, 313, 10, 2, UNI_LB__IN } /* linebreak=in */,
+ { 2074, 4355, 1948, 17, 10, UNI_SOGO } /* scriptextensions=oldsogdian */,
+ { 1, 5136, 7975, 5, 32, UNI_MISCMATHSYMBOLSA } /* blk=miscellaneousmathematicalsymbolsa */,
+ { 2, 296, 348, 3, 2, UNI_NV__18 } /* nv=18 */,
+ { 0, 1879, 5056, 4, 19, UNI_OTTOMANSIYAQNUMBERS } /* blk=ottomansiyaqnumbers */,
+ { 0, 7208, 1899, 9, 6, UNI_S } /* category=symbol */,
+ { 0, 6944, 292, 24, 2, UNI_CCC__30 } /* canonicalcombiningclass=30 */,
+ { 1056, 1102, 691, 4, 5, UNI_BATK } /* scx=batak */,
+ { 288, 806, 0, 4, 0, UNI_SARB } /* sarb */,
+ { 0, 275, 647, 3, 4, UNI_LB__H3 } /* gcb=lvt */,
+ { 0, 6114, 5116, 3, 20, UNI_HLUW } /* sc=anatolianhieroglyphs */,
+ { 518, 749, 0, 4, 0, UNI_MARC } /* marc */,
+ { 25, 4996, 4984, 13, 6, UNI_JG__MANICHAEANLAMEDH } /* jg=manichaeanlamedh */,
+ { 0, 4355, 4582, 17, 8, UNI_BOPO } /* scriptextensions=bopomofo */,
+ { 0, 270, 0, 3, 0, UNI_CWT } /* cwt */,
+ { 0, 464, 832, 2, 5, UNI_STERM } /* issterm */,
+ { 133, 1796, 212, 7, 4, UNI_SC__TGLG } /* script=tglg */,
+ { 1, 464, 372, 2, 6, UNI_GOTH } /* isgothic */,
+ { 1, 7825, 5366, 20, 10, UNI_CJKEXTD } /* cjkunifiedideographsextensiond */,
+ { 1, 2363, 4442, 10, 9, UNI_ETHIOPICEXTB } /* inethiopicextendedb */,
+ { 257, 464, 12, 2, 3, UNI_PCM } /* ispcm */,
+ { 8, 6114, 228, 3, 4, UNI_XPEO } /* sc=xpeo */,
+ { 0, 2454, 0, 6, 0, UNI_GEOR } /* isgeor */,
+ { 0, 1102, 128, 4, 4, UNI_MEDF } /* scx=medf */,
+ { 0, 37, 4372, 1, 16, UNI_SMALLFORMS } /* smallformvariants */,
+ { 1, 464, 120, 2, 4, UNI_LAO } /* islaoo */,
+ { 0, 2353, 5206, 3, 17, UNI_HALFMARKS } /* incombininghalfmarks */,
+ { 0, 5284, 0, 20, 0, UNI_PHLI } /* inscriptionalpahlavi */,
+ { 0, 4322, 6223, 14, 8, UNI_NV__3_SLASH_80 } /* numericvalue=3.750e-02 */,
+ { 4197, 4450, 1939, 7, 9, UNI_COMPATJAMO } /* block=compatjamo */,
+ { 32, 34, 1855, 1, 12, UNI_BIDIC } /* isbidicontrol */,
+ { 14, 6114, 1614, 3, 10, UNI_WARA } /* sc=warangciti */,
+ { 0, 1796, 94, 7, 4, UNI_SC__GUJR } /* script=gujr */,
+ { 0, 916, 933, 4, 7, -UNI_EBASE } /* ebase=false */,
+ { 0, 844, 355, 2, 2, UNI_loe_values_index } /* loe= */,
+ { 0, 313, 749, 2, 7, UNI_INMARCHEN } /* inmarchen */,
+ { 2052, 4355, 140, 17, 4, UNI_NARB } /* scriptextensions=narb */,
+ { 1, 7660, 278, 17, 1, UNI_vs_values_index } /* variationselector= */,
+ { 4151, 7500, 0, 27, 0, UNI_ANCIENTGREEKMUSIC } /* ancientgreekmusicalnotation */,
+ { 0, 3367, 349, 14, 1, UNI_NV__48 } /* numericvalue=48 */,
+ { 0, 1796, 4827, 7, 4, UNI_BAMU } /* script=bamu */,
+ { 4, 296, 7171, 2, 3, UNI_NV__12 } /* nv=12 */,
+ { 14, 7431, 2065, 27, 2, UNI_CCC__25 } /* canonicalcombiningclass=ccc25 */,
+ { 0, 2275, 355, 9, 3, UNI_IDC } /* idcontinue=y */,
+ { 22, 6039, 1491, 13, 4, UNI_MYANMAREXTA } /* block=myanmarexta */,
+ { 161, 4355, 1205, 17, 9, UNI_QAAI } /* scriptextensions=inherited */,
+ { 0, 1102, 1470, 4, 4, UNI_BUGI } /* scx=bugi */,
+ { 4224, 313, 1887, 2, 8, UNI_UCASEXTA } /* inucasexta */,
+ { 0, 1539, 5643, 3, 18, UNI_COUNTINGROD } /* iscountingrodnumerals */,
+ { 0, 2926, 7937, 3, 29, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* insymbolsandpictographsextendeda */,
+ { 0, 228, 1638, 2, 8, UNI_XPOSIXSPACE } /* xperlspace */,
+ { 0, 5481, 356, 21, 2, UNI_CWCF } /* changeswhencasefolded=y */,
+ { 85, 7825, 7314, 26, 4, UNI_CJKEXTB } /* cjkunifiedideographsextensionb */,
+ { 517, 4598, 0, 16, 0, UNI_PE } /* closepunctuation */,
+ { 3, 464, 1255, 2, 4, UNI_SOYO } /* issoyo */,
+ { 2060, 2392, 2813, 3, 11, UNI_MAHJONG } /* inmahjongtiles */,
+ { 3, 2474, 4567, 3, 15, UNI_MISCMATHSYMBOLSB } /* ismiscmathsymbolsb */,
+ { 27, 4355, 6134, 17, 10, UNI_GLAG } /* scriptextensions=glagolitic */,
+ { 90, 4355, 4882, 17, 19, UNI_EGYP } /* scriptextensions=egyptianhieroglyphs */,
+ { 0, 6114, 98, 3, 4, UNI_SC__GURU } /* sc=guru */,
+ { 0, 4092, 345, 8, 2, UNI_dia_values_index } /* diacritic= */,
+ { 4, 2726, 1860, 3, 7, UNI_XPOSIXCNTRL } /* gc=control */,
+ { 0, 2260, 392, 3, 3, UNI_IN__6_DOT_3 } /* in=6.3 */,
+ { 5, 1796, 1948, 7, 10, UNI_SOGO } /* script=oldsogdian */,
+ { 3595, 4355, 1826, 17, 4, UNI_SYLO } /* scriptextensions=sylo */,
+ { 1, 3974, 934, 4, 2, -UNI_IDSB } /* idsb=f */,
+ { 0, 6803, 588, 20, 5, UNI_CE } /* compositionexclusion=true */,
+ { 1025, 4996, 4638, 15, 4, UNI_JG__MANICHAEANTWENTY } /* jg=manichaeantwenty */,
+ { 86, 6402, 595, 14, 2, UNI_SB__SE } /* sentencebreak=se */,
+ { 65, 940, 356, 6, 4, UNI_COMPEX } /* compex=yes */,
+ { 923, 6416, 0, 23, 0, UNI_SHORTHANDFORMATCONTROLS } /* shorthandformatcontrols */,
+ { 0, 2443, 588, 5, 2, UNI_CASED } /* cased=t */,
+ { 0, 464, 337, 2, 4, UNI_CARI } /* iscari */,
+ { 1794, 366, 0, 2, 0, UNI_SM } /* sm */,
+ { 0, 3450, 8150, 5, 32, UNI_DIACRITICALSEXT } /* blk=combiningdiacriticalmarksextended */,
+ { 0, 1879, 5846, 4, 19, UNI_SUPARROWSC } /* blk=supplementalarrowsc */,
+ { 528, 464, 5806, 2, 12, UNI_MONGOLIANSUP } /* ismongoliansup */,
+ { 0, 2275, 933, 9, 7, -UNI_IDC } /* idcontinue=false */,
+ { 0, 464, 5322, 2, 11, UNI_CHEROKEESUP } /* ischerokeesup */,
+ { 163, 1967, 588, 7, 5, UNI_RADICAL } /* radical=true */,
+ { 7, 7688, 603, 22, 4, UNI_JG__MANICHAEANONE } /* joininggroup=manichaeanone */,
+ { 5, 2625, 1104, 12, 2, UNI_patsyn_values_index } /* patternsyntax= */,
+ { 0, 6114, 1241, 3, 4, UNI_SC__PHAG } /* sc=phag */,
+ { 1, 296, 2262, 2, 3, UNI_NV__14 } /* nv=14 */,
+ { 5, 876, 588, 4, 5, UNI_IDEO } /* ideo=true */,
+ { 3, 24, 1104, 2, 2, UNI_hex_values_index } /* hex= */,
+ { 0, 7823, 5366, 22, 10, UNI_CJKEXTD } /* incjkunifiedideographsextensiond */,
+ { 138, 4355, 1529, 17, 4, UNI_KHAR } /* scriptextensions=khar */,
+ { 0, 5136, 1491, 11, 4, UNI_MYANMAREXTA } /* blk=myanmarexta */,
+ { 0, 3474, 2665, 7, 13, UNI_ANCIENTSYMBOLS } /* block=ancientsymbols */,
+ { 11, 7880, 6309, 5, 13, UNI_CJKCOMPAT } /* iscjkcompatibility */,
+ { 0, 2981, 395, 4, 2, UNI_IN__4_DOT_1 } /* in=v41 */,
+ { 0, 1102, 5116, 4, 20, UNI_HLUW } /* scx=anatolianhieroglyphs */,
+ { 0, 1377, 546, 3, 2, UNI_WB__EB } /* wb=eb */,
+ { 0, 3763, 0, 14, 0, UNI_NV__5 } /* numericvalue=5 */,
+ { 65, 5565, 934, 21, 6, -UNI_CWU } /* changeswhenuppercased=false */,
+ { 1, 5718, 934, 4, 6, -UNI_EMOD } /* emod=false */,
+ { 2312, 464, 3053, 2, 13, UNI_POSIXXDIGIT } /* isasciihexdigit */,
+ { 2, 464, 4842, 2, 15, UNI_DIACRITICALSSUP } /* isdiacriticalssup */,
+ { 3131, 4355, 502, 17, 4, UNI_LYDI } /* scriptextensions=lydi */,
+ { 1, 3474, 7660, 6, 18, UNI_INVS } /* block=variationselectors */,
+ { 0, 1102, 4671, 4, 4, UNI_TALE } /* scx=tale */,
+ { 0, 4355, 3309, 17, 15, UNI_MERC } /* scriptextensions=meroiticcursive */,
+ { 1, 2496, 1526, 3, 3, UNI_JG__YEH } /* jg=yeh */,
+ { 1, 823, 3150, 3, 2, UNI_dash_values_index } /* dash= */,
+ { 0, 612, 5021, 2, 17, UNI_LB__CP } /* lb=closeparenthesis */,
+ { 0, 1879, 3527, 4, 16, UNI_HALFANDFULLFORMS } /* blk=halfandfullforms */,
+ { 1605, 1102, 1117, 4, 4, UNI_TAGB } /* scx=tagb */,
+ { 0, 8533, 1808, 7, 10, UNI_INSORASOMPENG } /* block=sorasompeng */,
+ { 521, 464, 220, 2, 4, UNI_TOTO } /* istoto */,
+ { 0, 1102, 1241, 4, 7, UNI_PHAG } /* scx=phagspa */,
+ { 3592, 1377, 3024, 3, 11, UNI_WB__SQ } /* wb=singlequote */,
+ { 2091, 3367, 294, 14, 1, UNI_NV__44 } /* numericvalue=44 */,
+ { 0, 464, 4882, 2, 4, UNI_EGYP } /* isegyp */,
+ { 32, 58, 0, 2, 0, UNI_SC } /* sc */,
+ { 0, 611, 0, 4, 0, UNI_ELBA } /* elba */,
+ { 0, 464, 917, 2, 8, UNI_BASS } /* isbassavah */,
+ { 0, 2496, 1982, 3, 9, UNI_JG__SYRIACWAW } /* jg=syriacwaw */,
+ { 6, 3669, 664, 12, 2, UNI_JG__MALAYALAMRA } /* jg=malayalamra */,
+ { 1, 313, 1033, 2, 8, UNI_JAMOEXTB } /* injamoextb */,
+ { 2049, 7823, 7314, 28, 4, UNI_CJKEXTB } /* incjkunifiedideographsextensionb */,
+ { 1606, 4901, 0, 13, 0, UNI_EMOD } /* emojimodifier */,
+ { 0, 2726, 4081, 3, 5, UNI_P } /* gc=punct */,
+ { 4, 1879, 8592, 4, 43, UNI_UCASEXTA } /* blk=unifiedcanadianaboriginalsyllabicsextendeda */,
+ { 17, 2392, 7556, 3, 28, UNI_MISCARROWS } /* inmiscellaneoussymbolsandarrows */,
+ { 0, 120, 122, 2, 2, UNI_LAO } /* laoo */,
+ { 10, 12, 165, 1, 3, UNI_PHNX } /* phnx */,
+ { 0, 600, 366, 3, 3, UNI_DT__SML } /* dt=sml */,
+ { 2, 1065, 763, 4, 3, UNI_NV__11_SLASH_2 } /* nv=11/2 */,
+ { 4, 4355, 2695, 16, 7, UNI_ARAB } /* scriptextensions=arabic */,
+ { 5, 2802, 7733, 3, 21, UNI_ENCLOSEDIDEOGRAPHICSUP } /* isenclosedideographicsup */,
+ { 24, 536, 1581, 3, 7, UNI_SB__LE } /* sb=oletter */,
+ { 2069, 6114, 3188, 3, 15, UNI_ARMI } /* sc=imperialaramaic */,
+ { 0, 4122, 934, 5, 2, -UNI_XPOSIXLOWER } /* lower=f */,
+ { 33, 7208, 252, 9, 5, UNI_XPOSIXCNTRL } /* category=cntrl */,
+ { 0, 4882, 0, 19, 0, UNI_EGYP } /* egyptianhieroglyphs */,
+ { 56, 1879, 2428, 4, 6, UNI_IPAEXT } /* blk=ipaext */,
+ { 0, 34, 1667, 1, 7, UNI_DOMINO } /* indomino */,
+ { 20, 6944, 7342, 18, 11, UNI_CCC__R } /* canonicalcombiningclass=right */,
+ { 274, 464, 1311, 2, 4, UNI_ITAL } /* isital */,
+ { 0, 7584, 55, 18, 3, UNI_DT__CAN } /* decompositiontype=can */,
+ { 13, 3593, 5584, 13, 3, UNI_LATINEXTG } /* inlatinextendedg */,
+ { 1, 4291, 4598, 10, 16, UNI_LB__CL } /* linebreak=closepunctuation */,
+ { 4, 1236, 6414, 2, 25, UNI_SHORTHANDFORMATCONTROLS } /* blk=shorthandformatcontrols */,
+ { 0, 4582, 0, 11, 0, UNI_BOPOMOFOEXT } /* bopomofoext */,
+ { 2, 1796, 63, 7, 4, UNI_CHRS } /* script=chrs */,
+ { 4096, 34, 938, 1, 6, UNI_ECOMP } /* isecomp */,
+ { 1, 1102, 216, 4, 4, UNI_TIBT } /* scx=tibt */,
+ { 0, 5147, 0, 15, 0, UNI_LATINEXTE } /* block=latinexte */,
+ { 1, 6644, 0, 15, 0, UNI_TRANSPORTANDMAP } /* transportandmap */,
+ { 0, 1796, 116, 7, 4, UNI_SC__KNDA } /* script=knda */,
+ { 0, 1710, 0, 3, 0, UNI_S } /* iss */,
+ { 0, 1102, 1144, 4, 9, UNI_BHKS } /* scx=bhaiksuki */,
+ { 0, 6749, 934, 25, 6, -UNI_CWKCF } /* changeswhennfkccasefolded=false */,
+ { 2240, 7823, 4464, 5, 4, UNI_CJKEXTC } /* incjkextc */,
+ { 8, 8276, 7627, 31, 16, UNI_INSC__CONSONANTINITIALPOSTFIXED } /* indicsyllabiccategory=consonantinitialpostfixed */,
+ { 1, 343, 2065, 4, 2, UNI_CCC__25 } /* ccc=25 */,
+ { 642, 3351, 1071, 13, 4, UNI_NV__1_SLASH_12 } /* numericvalue=1/12 */,
+ { 3, 58, 4998, 2, 5, UNI_SC__MANI } /* sc=mani */,
+ { 2, 3338, 356, 13, 2, UNI_NFDQC__Y } /* nfdquickcheck=y */,
+ { 812, 1102, 4107, 4, 6, UNI_HANG } /* scx=hangul */,
+ { 3, 2392, 7761, 3, 30, UNI_MATHALPHANUM } /* inmathematicalalphanumericsymbols */,
+ { 2, 3593, 4701, 15, 10, UNI_LATINEXTADDITIONAL } /* inlatinextendedadditional */,
+ { 1160, 1796, 951, 7, 4, UNI_SC__DUPL } /* script=dupl */,
+ { 273, 464, 825, 2, 7, UNI_SHAW } /* isshavian */,
+ { 1, 2443, 602, 5, 3, -UNI_CASED } /* cased=no */,
+ { 128, 5748, 5080, 5, 7, UNI_SUPARROWSA } /* insuparrowsa */,
+ { 0, 6944, 772, 24, 2, UNI_CCC__17 } /* canonicalcombiningclass=17 */,
+ { 600, 313, 1248, 2, 7, UNI_INSIDDHAM } /* insiddham */,
+ { 2412, 8007, 6309, 7, 13, UNI_CJKCOMPAT } /* blk=cjkcompatibility */,
+ { 18, 5787, 4442, 10, 9, UNI_JAMOEXTB } /* hanguljamoextendedb */,
+ { 322, 5, 1183, 1, 8, UNI_EMOTICONS } /* emoticons */,
+ { 31, 1102, 1255, 4, 7, UNI_SOYO } /* scx=soyombo */,
+ { 0, 4355, 106, 17, 4, UNI_HMNG } /* scriptextensions=hmng */,
+ { 142, 1075, 1298, 4, 5, UNI_NV__216000 } /* nv=216000 */,
+ { 3075, 4291, 5, 10, 2, UNI_LB__EX } /* linebreak=ex */,
+ { 24, 1009, 0, 6, 0, UNI_LYCI } /* lycian */,
+ { 3, 1856, 0, 11, 0, UNI_BIDIC } /* bidicontrol */,
+ { 0, 2485, 2033, 6, 5, UNI_XPOSIXALPHA } /* xposixalpha */,
+ { 0, 1879, 360, 4, 6, UNI_INCHAKMA } /* blk=chakma */,
+ { 3, 464, 156, 2, 4, UNI_OUGR } /* isougr */,
+ { 9, 6842, 0, 14, 0, UNI_MUSIC } /* musicalsymbols */,
+ { 0, 1353, 0, 4, 0, UNI_PAUC } /* pauc */,
+ { 7, 313, 540, 2, 6, UNI_INTANGSA } /* intangsa */,
+ { 0, 464, 4485, 2, 5, UNI_TITLE } /* istitle */,
+ { 13, 1879, 5806, 4, 12, UNI_MONGOLIANSUP } /* blk=mongoliansup */,
+ { 0, 3474, 2760, 7, 11, UNI_ALPHABETICPF } /* block=alphabeticpf */,
+ { 1333, 2726, 103, 3, 2, UNI_UPPERCASELETTER } /* gc=lu */,
+ { 2, 6114, 6594, 3, 6, UNI_BRAH } /* sc=brahmi */,
+ { 0, 1102, 868, 4, 7, UNI_TIRH } /* scx=tirhuta */,
+ { 250, 7823, 2335, 4, 5, UNI_CJKEXTE } /* incjkexte */,
+ { 0, 313, 1542, 2, 6, UNI_ARROWS } /* inarrows */,
+ { 1, 1102, 4998, 3, 5, UNI_MANI } /* scx=mani */,
+ { 1, 464, 868, 2, 4, UNI_TIRH } /* istirh */,
+ { 5, 1796, 148, 7, 4, UNI_SC__ORYA } /* script=orya */,
+ { 90, 7660, 0, 28, 0, UNI_VSSUP } /* variationselectorssupplement */,
+ { 2109, 7201, 103, 16, 2, UNI_UPPERCASELETTER } /* generalcategory=lu */,
+ { 2, 8276, 5045, 22, 10, UNI_INSC__TONELETTER } /* indicsyllabiccategory=toneletter */,
+ { 1, 6114, 1927, 3, 12, UNI_SC__GONG } /* sc=gunjalagondi */,
+ { 0, 1102, 637, 4, 7, UNI_HANO } /* scx=hanunoo */,
+ { 2589, 4291, 546, 10, 2, UNI_EBASE } /* linebreak=eb */,
+ { 129, 632, 355, 5, 3, UNI_GRBASE } /* grbase=y */,
+ { 0, 625, 588, 7, 5, UNI_EXTPICT } /* extpict=true */,
+ { 2141, 3474, 783, 6, 7, UNI_INOSMANYA } /* block=osmanya */,
+ { 1, 1383, 934, 7, 2, -UNI_IDS } /* idstart=f */,
+ { 3235, 8244, 1698, 9, 4, UNI_CJKEXTF } /* block=cjkextf */,
+ { 0, 464, 2275, 2, 3, UNI_IDC } /* isidc */,
+ { 0, 5586, 0, 21, 0, UNI_gcb_values_index } /* graphemeclusterbreak= */,
+ { 0, 6114, 3498, 3, 7, UNI_SC__CPRT } /* sc=cypriot */,
+ { 71, 378, 601, 4, 3, -UNI_GREXT } /* grext=n */,
+ { 2848, 23, 934, 4, 2, -UNI_POSIXXDIGIT } /* ahex=f */,
+ { 38, 464, 618, 2, 4, UNI_ELYM } /* iselym */,
+ { 0, 464, 1205, 2, 9, UNI_QAAI } /* isinherited */,
+ { 0, 7132, 1256, 5, 6, UNI_INSOYOMBO } /* blk=soyombo */,
+ { 1, 3474, 0, 12, 0, UNI_INARABIC } /* block=arabic */,
+ { 0, 3474, 4842, 6, 15, UNI_DIACRITICALSSUP } /* block=diacriticalssup */,
+ { 308, 2355, 4442, 8, 9, UNI_CYRILLICEXTB } /* cyrillicextendedb */,
+ { 4, 3593, 4629, 6, 12, UNI_LATIN1 } /* inlatin1supplement */,
+ { 0, 1065, 1298, 5, 3, UNI_NV__1_SLASH_160 } /* nv=1/160 */,
+ { 8, 6112, 5045, 5, 10, UNI_INSC__TONELETTER } /* insc=toneletter */,
+ { 4103, 1382, 601, 7, 3, -UNI_XIDS } /* xidstart=n */,
+ { 4, 8533, 6623, 7, 21, UNI_MODIFIERLETTERS } /* block=spacingmodifierletters */,
+ { 0, 1102, 5389, 4, 20, UNI_HMNP } /* scx=nyiakengpuachuehmong */,
+ { 3, 3593, 5797, 7, 9, UNI_LATINEXTA } /* inlatinextendeda */,
+ { 2575, 244, 0, 4, 0, UNI_ZYYY } /* zyyy */,
+ { 0, 7068, 602, 26, 2, -UNI_PCM } /* prependedconcatenationmark=n */,
+ { 0, 6379, 1723, 13, 8, UNI_JG__FARSIYEH } /* joininggroup=farsiyeh */,
+ { 7, 7317, 91, 11, 2, UNI_BC__LRE } /* bidiclass=lre */,
+ { 3, 6039, 2382, 7, 10, UNI_MISCSYMBOLS } /* block=miscsymbols */,
+ { 0, 1710, 7238, 3, 24, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* issymbolsandpictographsexta */,
+ { 474, 1702, 1491, 8, 4, UNI_ARABICEXTA } /* isarabicexta */,
+ { 26, 6944, 8037, 24, 10, UNI_CCC__BR } /* canonicalcombiningclass=belowright */,
+ { 1, 1975, 1465, 7, 5, UNI_POSIXSPACE } /* isposixspace */,
+ { 0, 756, 1768, 3, 5, UNI_NFCQC__M } /* nfkcqc=m */,
+ { 0, 887, 6214, 5, 3, UNI_AGE__12_DOT_1 } /* age=12.1 */,
+ { 0, 7, 201, 1, 3, UNI_TAML } /* taml */,
+ { 262, 4355, 3933, 17, 4, UNI_MODI } /* scriptextensions=modi */,
+ { 0, 5844, 6052, 5, 13, UNI_SUPMATHOPERATORS } /* issupmathoperators */,
+ { 0, 2726, 12, 3, 2, UNI_PC } /* gc=pc */,
+ { 1, 4122, 5620, 8, 3, -UNI_XPOSIXLOWER } /* lowercase=n */,
+ { 2244, 7880, 6509, 5, 16, UNI_CJKCOMPATIDEOGRAPHS } /* iscjkcompatideographs */,
+ { 1, 2, 601, 2, 3, -UNI_CWT } /* cwt=n */,
+ { 1, 4726, 1781, 14, 4, UNI_NV__60000 } /* numericvalue=60000 */,
+ { 1121, 313, 5284, 2, 20, UNI_ININSCRIPTIONALPAHLAVI } /* ininscriptionalpahlavi */,
+ { 12, 4355, 806, 17, 4, UNI_SARB } /* scriptextensions=sarb */,
+ { 1, 1796, 433, 7, 4, UNI_SC__NKO } /* script=nkoo */,
+ { 1, 1551, 0, 10, 0, UNI_XPEO } /* oldpersian */,
+ { 306, 5389, 0, 20, 0, UNI_HMNP } /* nyiakengpuachuehmong */,
+ { 8, 632, 355, 5, 5, UNI_GRBASE } /* grbase=yes */,
+ { 12, 2275, 602, 3, 2, -UNI_IDC } /* idc=n */,
+ { 0, 2454, 4913, 3, 5, UNI_GRBASE } /* isgrbase */,
+ { 0, 7317, 6241, 9, 21, UNI_BC__LRE } /* bidiclass=lefttorightembedding */,
+ { 0, 8533, 5080, 18, 7, UNI_SUPARROWSA } /* block=supplementalarrowsa */,
+ { 29, 508, 356, 5, 2, UNI_NFDQC__Y } /* nfdqc=y */,
+ { 2184, 1879, 3396, 4, 15, UNI_SARB } /* blk=oldsoutharabian */,
+ { 2, 4021, 6538, 5, 11, UNI_INDICNUMBERFORMS } /* indicnumberforms */,
+ { 2050, 1796, 4882, 7, 4, UNI_EGYP } /* script=egyp */,
+ { 0, 1837, 0, 5, 0, UNI_EBASE } /* ebase */,
+ { 0, 1102, 106, 4, 4, UNI_HMNG } /* scx=hmng */,
+ { 0, 383, 356, 6, 2, UNI_HYPHEN } /* hyphen=y */,
+ { 2, 1410, 349, 7, 2, UNI_CCC__84 } /* ccc=ccc84 */,
+ { 0, 2260, 6214, 4, 3, UNI_IN__12_DOT_1 } /* in=12.1 */,
+ { 1, 2792, 7403, 10, 13, UNI_CYRILLICSUP } /* iscyrillicsupplementary */,
+ { 2177, 1174, 21, 3, 1, UNI_EA__H } /* ea=h */,
+ { 512, 7527, 4581, 3, 2, UNI_LB__BB } /* lb=bb */,
+ { 5, 4500, 355, 8, 5, UNI_XPOSIXUPPER } /* uppercase=yes */,
+ { 0, 7208, 330, 9, 2, UNI_PF } /* category=pf */,
+ { 0, 1216, 4442, 4, 9, UNI_KANAEXTB } /* kanaextendedb */,
+ { 2067, 3474, 337, 6, 6, UNI_INCARIAN } /* block=carian */,
+ { 6, 8007, 8089, 7, 21, UNI_CJKSYMBOLS } /* blk=cjksymbolsandpunctuation */,
+ { 0, 1704, 5797, 6, 9, UNI_ARABICEXTA } /* arabicextendeda */,
+ { 1077, 2274, 3361, 9, 3, UNI_xidc_values_index } /* xidcontinue= */,
+ { 0, 3991, 0, 4, 0, UNI_BRAI } /* brai */,
+ { 17, 2726, 229, 3, 2, UNI_PE } /* gc=pe */,
+ { 393, 265, 934, 5, 2, -UNI_CWKCF } /* cwkcf=f */,
+ { 1, 844, 0, 2, 0, UNI_LO } /* lo */,
+ { 0, 1991, 0, 12, 0, UNI_jt_values_index } /* joiningtype= */,
+ { 266, 464, 802, 2, 4, UNI_NBAT } /* isnbat */,
+ { 2, 2625, 602, 13, 3, -UNI_PATSYN } /* patternsyntax=no */,
+ { 112, 34, 310, 1, 6, UNI_XPOSIXPRINT } /* isprint */,
+ { 0, 1879, 8551, 4, 21, UNI_MATHOPERATORS } /* blk=mathematicaloperators */,
+ { 0, 1003, 0, 4, 0, UNI_LEPC } /* lepc */,
+ { 0, 413, 0, 4, 0, UNI_GONM } /* gonm */,
+ { 100, 2353, 8340, 3, 34, UNI_DIACRITICALSFORSYMBOLS } /* incombiningdiacriticalmarksforsymbols */,
+ { 15, 464, 5481, 2, 21, UNI_CWCF } /* ischangeswhencasefolded */,
+ { 1462, 4338, 934, 17, 6, -UNI_RI } /* regionalindicator=false */,
+ { 0, 3474, 1344, 6, 9, UNI_PALM } /* block=palmyrene */,
+ { 4, 1796, 453, 7, 4, UNI_MIAO } /* script=plrd */,
+ { 26, 3053, 356, 13, 4, UNI_POSIXXDIGIT } /* asciihexdigit=yes */,
+ { 0, 2253, 552, 10, 3, UNI_IN__4 } /* presentin=4.0 */,
+ { 0, 1216, 0, 4, 0, UNI_KANA } /* kana */,
+ { 0, 1867, 0, 5, 0, UNI_BIDIM } /* bidim */,
+ { 0, 1796, 90, 7, 4, UNI_SC__GREK } /* script=grek */,
+ { 0, 14, 3324, 1, 14, UNI_MISCPICTOGRAPHS } /* miscpictographs */,
+ { 0, 313, 4656, 2, 16, UNI_TANGUTSUP } /* intangutsupplement */,
+ { 0, 7527, 4338, 3, 17, UNI_RI } /* lb=regionalindicator */,
+ { 3628, 5990, 928, 21, 5, UNI_BPT__O } /* bidipairedbrackettype=open */,
+ { 0, 4355, 5340, 17, 10, UNI_DEVA } /* scriptextensions=devanagari */,
+ { 4, 2726, 256, 3, 2, UNI_CASEDLETTER } /* gc=lc */,
+ { 0, 1102, 825, 4, 7, UNI_SHAW } /* scx=shavian */,
+ { 0, 3090, 2332, 5, 7, UNI_GREEKEXT } /* blk=greekext */,
+ { 0, 3137, 6982, 15, 9, UNI_EA__F } /* eastasianwidth=fullwidth */,
+ { 6, 4355, 477, 17, 3, UNI_VAI } /* scriptextensions=vai */,
+ { 1050, 4355, 417, 17, 4, UNI_HANO } /* scriptextensions=hano */,
+ { 1, 738, 602, 2, 2, UNI_EA__N } /* ea=n */,
+ { 2051, 1766, 0, 7, 0, UNI_NFCQC__M } /* nfcqc=m */,
+ { 6, 313, 298, 2, 2, UNI_IN__9 } /* in=9 */,
+ { 4, 1975, 2033, 7, 5, UNI_POSIXALPHA } /* isposixalpha */,
+ { 2, 306, 2628, 3, 10, UNI_PATSYN } /* patternsyntax */,
+ { 21, 313, 6644, 2, 15, UNI_TRANSPORTANDMAP } /* intransportandmap */,
+ { 440, 2726, 1977, 3, 2, UNI_PO } /* gc=po */,
+ { 1, 6114, 64, 4, 3, UNI_CHRS } /* sc=chrs */,
+ { 0, 464, 749, 2, 7, UNI_MARC } /* ismarchen */,
+ { 7, 1879, 676, 4, 5, UNI_INOSAGE } /* blk=osage */,
+ { 0, 1383, 2891, 6, 3, UNI_IDS } /* idstart=t */,
+ { 647, 3474, 4081, 6, 11, UNI_INPUNCTUATION } /* block=punctuation */,
+ { 0, 6379, 4174, 13, 4, UNI_JG__HETH } /* joininggroup=heth */,
+ { 0, 3351, 294, 14, 1, UNI_NV__24 } /* numericvalue=24 */,
+ { 0, 3474, 1308, 6, 9, UNI_INOLDITALIC } /* block=olditalic */,
+ { 0, 6239, 91, 4, 2, UNI_BC__LRE } /* bc=lre */,
+ { 13, 23, 1104, 3, 3, UNI_POSIXXDIGIT } /* ahex=t */,
+ { 0, 34, 3542, 1, 17, UNI_HIGHPUSURROGATES } /* ishighpusurrogates */,
+ { 600, 2394, 5797, 7, 9, UNI_MYANMAREXTA } /* myanmarextendeda */,
+ { 31, 8244, 5183, 32, 4, UNI_CJKEXTE } /* block=cjkunifiedideographsextensione */,
+ { 28, 464, 216, 2, 4, UNI_TIBT } /* istibt */,
+ { 2266, 1539, 361, 3, 5, UNI_CAKM } /* ischakma */,
+ { 0, 34, 1596, 1, 3, UNI_SO } /* isso */,
+ { 0, 3474, 3608, 6, 14, UNI_PHONETICEXTSUP } /* block=phoneticextsup */,
+ { 453, 2726, 17, 3, 2, UNI_LM } /* gc=lm */,
+ { 2, 1702, 1037, 8, 4, UNI_ARABICEXTB } /* isarabicextb */,
+ { 0, 7828, 356, 16, 4, UNI_UIDEO } /* unifiedideograph=yes */,
+ { 0, 5147, 129, 17, 3, UNI_LATINEXTF } /* block=latinextendedf */,
+ { 1329, 7201, 17, 16, 2, UNI_LM } /* generalcategory=lm */,
+ { 2082, 6379, 1041, 13, 5, UNI_JG__GAMAL } /* joininggroup=gamal */,
+ { 0, 4355, 502, 17, 6, UNI_LYDI } /* scriptextensions=lydian */,
+ { 0, 2986, 0, 14, 0, UNI_PHLP } /* psalterpahlavi */,
+ { 0, 4355, 4582, 17, 4, UNI_BOPO } /* scriptextensions=bopo */,
+ { 1, 876, 356, 4, 4, UNI_IDEO } /* ideo=yes */,
+ { 3, 464, 975, 2, 8, UNI_GURU } /* isgurmukhi */,
+ { 4, 2365, 2336, 8, 8, UNI_ETHIOPICEXT } /* ethiopicextended */,
+ { 0, 4355, 4962, 17, 4, UNI_HAN } /* scriptextensions=hani */,
+ { 167, 625, 0, 7, 0, UNI_EXTPICT } /* extpict */,
+ { 1703, 1102, 5661, 4, 19, UNI_MERO } /* scx=meroitichieroglyphs */,
+ { 22, 6114, 82, 3, 4, UNI_DSRT } /* sc=dsrt */,
+ { 9, 2740, 0, 4, 0, UNI_COPT } /* copt */,
+ { 0, 265, 278, 5, 1, UNI_cwkcf_values_index } /* cwkcf= */,
+ { 0, 1516, 1491, 6, 4, UNI_KANAEXTA } /* iskanaexta */,
+ { 0, 3450, 7403, 12, 13, UNI_CYRILLICSUP } /* blk=cyrillicsupplementary */,
+ { 0, 1867, 356, 12, 2, UNI_BIDIM } /* bidimirrored=y */,
+ { 1, 5928, 48, 3, 1, UNI_VO__U } /* vo=u */,
+ { 3, 1102, 3435, 4, 15, UNI_ZANB } /* scx=zanabazarsquare */,
+ { 2, 464, 15, 2, 4, UNI_ADLM } /* isadlm */,
+ { 0, 6114, 1335, 3, 9, UNI_SC__OUGR } /* sc=olduyghur */,
+ { 261, 1102, 3839, 4, 6, UNI_TANG } /* scx=tangut */,
+ { 3008, 1410, 1153, 7, 2, UNI_CCC__24 } /* ccc=ccc24 */,
+ { 98, 1796, 810, 7, 4, UNI_SC__SYRC } /* script=syrc */,
+ { 520, 343, 8572, 4, 18, UNI_CCC__216 } /* ccc=attachedaboveright */,
+ { 1, 736, 1183, 3, 8, UNI_EMOTICONS } /* inemoticons */,
+ { 302, 4355, 5631, 17, 5, UNI_GREK } /* scriptextensions=greek */,
+ { 1, 4291, 1837, 10, 5, UNI_EBASE } /* linebreak=ebase */,
+ { 1, 6114, 1495, 3, 4, UNI_SC__JAVA } /* sc=java */,
+ { 0, 7018, 4645, 7, 11, UNI_ARABICSUP } /* inarabicsupplement */,
+ { 3953, 7584, 3249, 18, 5, UNI_DT__FIN } /* decompositiontype=final */,
+ { 106, 1702, 2665, 3, 13, UNI_ANCIENTSYMBOLS } /* isancientsymbols */,
+ { 0, 5844, 6898, 5, 22, UNI_SUPERANDSUB } /* issuperscriptsandsubscripts */,
+ { 88, 3974, 278, 17, 1, UNI_idsb_values_index } /* idsbinaryoperator= */,
+ { 2258, 4582, 0, 4, 0, UNI_BOPO } /* bopo */,
+ { 15, 1102, 1133, 4, 4, UNI_VITH } /* scx=vith */,
+ { 0, 2625, 934, 13, 2, -UNI_PATSYN } /* patternsyntax=f */,
+ { 35, 1102, 1220, 4, 7, UNI_MAKA } /* scx=makasar */,
+ { 2, 3734, 6042, 12, 4, UNI_NFCQC__M } /* nfkcquickcheck=m */,
+ { 3, 1766, 356, 5, 2, UNI_NFCQC__Y } /* nfcqc=y */,
+ { 0, 4450, 3869, 7, 16, UNI_UCAS } /* block=canadiansyllabics */,
+ { 2, 4020, 0, 4, 0, UNI_SIND } /* sind */,
+ { 0, 4355, 3671, 16, 10, UNI_MLYM } /* scriptextensions=malayalam */,
+ { 0, 600, 1687, 3, 8, UNI_DT__ISO } /* dt=isolated */,
+ { 0, 4500, 934, 5, 2, -UNI_XPOSIXUPPER } /* upper=f */,
+ { 0, 5544, 602, 21, 3, -UNI_CWT } /* changeswhentitlecased=no */,
+ { 4, 313, 8551, 2, 21, UNI_MATHOPERATORS } /* inmathematicaloperators */,
+ { 10, 75, 278, 3, 1, UNI_cwu_values_index } /* cwu= */,
+ { 2, 1102, 59, 4, 4, UNI_CHAM } /* scx=cham */,
+ { 1, 5, 601, 2, 4, -UNI_EXT } /* ext=no */,
+ { 1, 6114, 55, 3, 4, UNI_CANS } /* sc=cans */,
+ { 0, 4355, 2401, 17, 4, UNI_NAND } /* scriptextensions=nand */,
+ { 0, 1102, 1205, 4, 9, UNI_QAAI } /* scx=inherited */,
+ { 0, 313, 4882, 2, 19, UNI_INEGYPTIANHIEROGLYPHS } /* inegyptianhieroglyphs */,
+ { 0, 2973, 588, 5, 5, UNI_EPRES } /* epres=true */,
+ { 0, 1879, 8592, 4, 34, UNI_UCAS } /* blk=unifiedcanadianaboriginalsyllabics */,
+ { 233, 520, 0, 4, 0, UNI_NV__7 } /* nv=7 */,
+ { 4, 7584, 6944, 18, 9, UNI_DT__CAN } /* decompositiontype=canonical */,
+ { 0, 1377, 6276, 3, 6, UNI_WB__FO } /* wb=format */,
+ { 194, 6239, 302, 4, 2, UNI_BC__LRI } /* bc=lri */,
+ { 0, 1796, 6134, 7, 10, UNI_SC__GLAG } /* script=glagolitic */,
+ { 191, 1777, 6199, 6, 8, UNI_NV__10000000000 } /* nv=10000000000 */,
+ { 150, 313, 7403, 2, 28, UNI_SUPPUAA } /* insupplementaryprivateuseareaa */,
+ { 0, 313, 1362, 2, 9, UNI_INSAMARITAN } /* insamaritan */,
+ { 0, 343, 2074, 4, 2, UNI_CCC__29 } /* ccc=29 */,
+ { 0, 2726, 3594, 3, 2, UNI_NL } /* gc=nl */,
+ { 0, 3367, 2617, 14, 8, UNI_NV__2_SLASH_5 } /* numericvalue=4.000e-01 */,
+ { 77, 5147, 1698, 11, 4, UNI_LATINEXTF } /* block=latinextf */,
+ { 0, 464, 58, 2, 2, UNI_SC } /* issc */,
+ { 0, 1280, 0, 9, 0, UNI_NBAT } /* nabataean */,
+ { 0, 5136, 2382, 5, 10, UNI_MISCSYMBOLS } /* blk=miscsymbols */,
+ { 0, 6185, 0, 18, 0, UNI_NV__10000 } /* numericvalue=10000 */,
+ { 13, 313, 2155, 2, 4, UNI_IN__4_DOT_1 } /* in=4.1 */,
+ { 1, 2974, 397, 11, 2, UNI_IN__5_DOT_1 } /* presentin=v51 */,
+ { 1, 7201, 58, 16, 2, UNI_SC } /* generalcategory=sc */,
+ { 4, 833, 356, 4, 4, UNI_TERM } /* term=yes */,
+ { 0, 1879, 6447, 4, 5, UNI_MUSIC } /* blk=music */,
+ { 2259, 1102, 156, 4, 4, UNI_OUGR } /* scx=ougr */,
+ { 2, 5888, 588, 5, 5, UNI__PERL_NCHAR } /* nchar=true */,
+ { 0, 5136, 6549, 5, 21, UNI_MISCTECHNICAL } /* blk=miscellaneoustechnical */,
+ { 0, 6276, 0, 6, 0, UNI_CF } /* format */,
+ { 0, 3474, 6439, 6, 23, UNI_ZNAMENNYMUSIC } /* block=znamennymusicalnotation */,
+ { 2779, 721, 0, 7, 0, UNI_KNDA } /* kannada */,
+ { 500, 3474, 6134, 6, 20, UNI_GLAGOLITICSUP } /* block=glagoliticsupplement */,
+ { 0, 2483, 1915, 8, 5, UNI_XPOSIXGRAPH } /* isxposixgraph */,
+ { 1667, 513, 1300, 4, 3, UNI_NV__3000 } /* nv=3000 */,
+ { 1624, 313, 776, 2, 7, UNI_OLCK } /* inolchiki */,
+ { 4544, 2726, 4485, 3, 15, UNI_TITLE } /* gc=titlecaseletter */,
+ { 7, 378, 588, 5, 5, UNI_GREXT } /* grext=true */,
+ { 230, 5607, 2606, 15, 9, UNI_IDENTIFIERTYPE__TECHNICAL } /* identifiertype=technical */,
+ { 1, 1216, 328, 4, 3, UNI_KANASUP } /* kanasup */,
+ { 16, 296, 0, 4, 0, UNI_NV__9 } /* nv=9 */,
+ { 98, 8592, 0, 42, 0, UNI_UCASEXT } /* unifiedcanadianaboriginalsyllabicsextended */,
+ { 4694, 464, 2740, 2, 6, UNI_COPT } /* iscoptic */,
+ { 2187, 1516, 3582, 5, 11, UNI_KANGXI } /* iskangxiradicals */,
+ { 1090, 7201, 69, 16, 2, UNI_MN } /* generalcategory=mn */,
+ { 0, 2496, 1988, 3, 3, UNI_JG__WAW } /* jg=waw */,
+ { 6, 313, 8592, 2, 34, UNI_UCAS } /* inunifiedcanadianaboriginalsyllabics */,
+ { 953, 6944, 2195, 23, 2, UNI_CCC__6 } /* canonicalcombiningclass=6 */,
+ { 1, 3622, 4275, 3, 16, UNI_LETTERLIKESYMBOLS } /* isletterlikesymbols */,
+ { 1, 1879, 1117, 4, 8, UNI_INTAGBANWA } /* blk=tagbanwa */,
+ { 18, 2802, 2336, 10, 8, UNI_ETHIOPICEXT } /* isethiopicextended */,
+ { 1024, 2401, 0, 11, 0, UNI_NAND } /* nandinagari */,
+ { 2184, 242, 0, 2, 0, UNI_NB } /* nb */,
+ { 1317, 7660, 0, 17, 0, UNI_VS } /* variationselector */,
+ { 199, 6112, 6867, 14, 11, UNI_INSC__CONSONANTWITHSTACKER } /* insc=consonantwithstacker */,
+ { 0, 1826, 0, 11, 0, UNI_SYLO } /* sylotinagri */,
+ { 4, 464, 2241, 2, 12, UNI_PLAYINGCARDS } /* isplayingcards */,
+ { 1, 7201, 5103, 16, 2, UNI_CASEDLETTER } /* generalcategory=l_ */,
+ { 2116, 7132, 8550, 15, 22, UNI_SUPMATHOPERATORS } /* blk=supplementalmathematicaloperators */,
+ { 0, 3595, 6771, 10, 4, UNI_LATINEXTD } /* latinextendedd */,
+ { 11, 2496, 6154, 3, 19, UNI_JG__BURUSHASKIYEHBARREE } /* jg=burushaskiyehbarree */,
+ { 4608, 555, 6214, 4, 3, UNI_AGE__2_DOT_1 } /* age=2.1 */,
+ { 2, 8289, 7045, 10, 12, UNI_M } /* category=combiningmark */,
+ { 3816, 696, 3156, 5, 8, UNI_NO } /* isothernumber */,
+ { 0, 1102, 188, 4, 4, UNI_SGNW } /* scx=sgnw */,
+ { 1, 296, 3806, 2, 3, UNI_NV__80 } /* nv=80 */,
+ { 7, 3474, 1529, 6, 10, UNI_INKHAROSHTHI } /* block=kharoshthi */,
+ { 2832, 975, 0, 8, 0, UNI_GURU } /* gurmukhi */,
+ { 1, 536, 58, 3, 2, UNI_SB__SC } /* sb=sc */,
+ { 0, 343, 292, 5, 2, UNI_CCC__130 } /* ccc=130 */,
+ { 2208, 1915, 933, 11, 7, -UNI_GRBASE } /* graphemebase=false */,
+ { 577, 3351, 773, 13, 3, UNI_NV__7_SLASH_2 } /* numericvalue=7/2 */,
+ { 0, 1410, 562, 8, 2, UNI_CCC__107 } /* ccc=ccc107 */,
+ { 0, 4355, 3093, 16, 5, UNI_GEOR } /* scriptextensions=geor */,
+ { 2, 8182, 6241, 23, 5, UNI_INPC__LEFT } /* indicpositionalcategory=left */,
+ { 0, 7201, 469, 16, 2, UNI_SO } /* generalcategory=so */,
+ { 0, 5586, 4338, 21, 17, UNI_RI } /* graphemeclusterbreak=regionalindicator */,
+ { 0, 1796, 1785, 7, 11, UNI_HMNG } /* script=pahawhhmong */,
+ { 4416, 34, 2236, 1, 3, UNI_DI } /* isdi */,
+ { 2209, 464, 1220, 2, 4, UNI_MAKA } /* ismaka */,
+ { 0, 6944, 2207, 23, 2, UNI_CCC__8 } /* canonicalcombiningclass=8 */,
+ { 0, 4291, 119, 10, 2, UNI_LB__AL } /* linebreak=al */,
+ { 0, 6114, 168, 3, 4, UNI_SC__COPT } /* sc=qaac */,
+ { 6170, 313, 515, 2, 2, UNI_IN__3 } /* in=3 */,
+ { 70, 7527, 102, 3, 2, UNI_LB__HL } /* lb=hl */,
+ { 0, 2726, 0, 3, 0, UNI_gc_values_index } /* gc= */,
+ { 2063, 1879, 530, 4, 6, UNI_INREJANG } /* blk=rejang */,
+ { 3, 940, 0, 6, 0, UNI_COMPEX } /* compex */,
+ { 0, 3137, 0, 15, 0, UNI_ea_values_index } /* eastasianwidth= */,
+ { 5, 464, 1094, 2, 4, UNI_MERC } /* ismerc */,
+ { 0, 1796, 3671, 6, 10, UNI_SC__MLYM } /* script=malayalam */,
+ { 2200, 6114, 3309, 3, 15, UNI_MERC } /* sc=meroiticcursive */,
+ { 3, 6114, 5389, 3, 20, UNI_HMNP } /* sc=nyiakengpuachuehmong */,
+ { 2724, 4355, 82, 17, 4, UNI_DSRT } /* scriptextensions=dsrt */,
+ { 0, 3763, 1781, 14, 4, UNI_NV__50000 } /* numericvalue=50000 */,
+ { 0, 6112, 3177, 14, 4, UNI_INSC__CONSONANTDEAD } /* insc=consonantdead */,
+ { 2, 4355, 681, 17, 5, UNI_RUNR } /* scriptextensions=runic */,
+ { 2954, 1977, 0, 2, 0, UNI_PO } /* po */,
+ { 4, 1856, 588, 11, 5, UNI_BIDIC } /* bidicontrol=true */,
+ { 4, 2454, 6878, 5, 12, UNI_GEOMETRICSHAPES } /* isgeometricshapes */,
+ { 0, 1102, 401, 4, 4, UNI_MIAO } /* scx=miao */,
+ { 1738, 464, 9, 2, 3, UNI_OCR } /* isocr */,
+ { 0, 3474, 5340, 6, 18, UNI_DEVANAGARIEXT } /* block=devanagariextended */,
+ { 0, 464, 3933, 2, 14, UNI_SK } /* ismodifiersymbol */,
+ { 4873, 8276, 6613, 31, 10, UNI_INSC__CONSONANTHEADLETTER } /* indicsyllabiccategory=consonantheadletter */,
+ { 0, 4338, 588, 17, 5, UNI_RI } /* regionalindicator=true */,
+ { 0, 4338, 356, 17, 2, UNI_RI } /* regionalindicator=y */,
+ { 3657, 3779, 3777, 14, 2, UNI_NV__7_SLASH_8 } /* numericvalue=7/8 */,
+ { 0, 4355, 2018, 17, 12, UNI_GONM } /* scriptextensions=masaramgondi */,
+ { 0, 8533, 1818, 9, 8, UNI_SUPERANDSUB } /* block=superandsub */,
+ { 4, 612, 2002, 2, 10, UNI_LB__B2 } /* lb=breakboth */,
+ { 8, 1102, 1016, 5, 3, UNI_TELU } /* scx=telu */,
+ { 0, 2726, 2443, 3, 11, UNI_CASEDLETTER } /* gc=casedletter */,
+ { 1258, 2678, 424, 3, 3, UNI_BC__RLI } /* bc=rli */,
+ { 6, 2645, 0, 4, 0, UNI_IN__5 } /* in=5 */,
+ { 0, 5928, 0, 3, 0, UNI_vo_values_index } /* vo= */,
+ { 5253, 1879, 7500, 4, 27, UNI_ANCIENTGREEKMUSIC } /* blk=ancientgreekmusicalnotation */,
+ { 6, 4515, 278, 18, 1, UNI_idst_values_index } /* idstrinaryoperator= */,
+ { 2721, 2496, 3249, 3, 12, UNI_JG__FINALSEMKATH } /* jg=finalsemkath */,
+ { 2, 1102, 90, 4, 4, UNI_GREK } /* scx=grek */,
+ { 0, 1710, 4372, 3, 16, UNI_SMALLFORMS } /* issmallformvariants */,
+ { 3332, 6379, 2509, 13, 10, UNI_JG__DALATHRISH } /* joininggroup=dalathrish */,
+ { 4, 4291, 1977, 10, 2, UNI_LB__PO } /* linebreak=po */,
+ { 1156, 1102, 4582, 4, 4, UNI_BOPO } /* scx=bopo */,
+ { 5381, 3474, 1508, 6, 8, UNI_INUGARITIC } /* block=ugaritic */,
+ { 2, 2485, 4122, 6, 5, UNI_XPOSIXLOWER } /* xposixlower */,
+ { 0, 1796, 2217, 7, 12, UNI_HUNG } /* script=oldhungarian */,
+ { 1, 8276, 3177, 31, 4, UNI_INSC__CONSONANTDEAD } /* indicsyllabiccategory=consonantdead */,
+ { 892, 1174, 607, 3, 4, UNI_EA__W } /* ea=wide */,
+ { 2, 1382, 0, 8, 0, UNI_XIDS } /* xidstart */,
+ { 489, 14, 7761, 1, 30, UNI_MATHALPHANUM } /* mathematicalalphanumericsymbols */,
+ { 0, 5886, 601, 20, 4, -UNI__PERL_NCHAR } /* noncharactercodepoint=no */,
+ { 0, 464, 6533, 2, 16, UNI_INDICNUMBERFORMS } /* isindicnumberforms */,
+ { 0, 6944, 6491, 22, 4, UNI_CCC__AL } /* canonicalcombiningclass=al */,
+ { 4, 313, 666, 2, 5, UNI_INLIMBU } /* inlimbu */,
+ { 2883, 464, 306, 2, 5, UNI__PERL_PATWS } /* ispatws */,
+ { 454, 6114, 4962, 3, 14, UNI_SC__ROHG } /* sc=hanifirohingya */,
+ { 320, 313, 3498, 2, 16, UNI_CYPRIOTSYLLABARY } /* incypriotsyllabary */,
+ { 3166, 1717, 1465, 6, 5, UNI_VERTSPACE } /* isvertspace */,
+ { 0, 7473, 0, 27, 0, UNI_ALPHABETICPF } /* alphabeticpresentationforms */,
+ { 2250, 2678, 3078, 3, 12, UNI_BC__ON } /* bc=otherneutral */,
+ { 2629, 464, 7385, 2, 28, UNI_PHONETICEXTSUP } /* isphoneticextensionssupplement */,
+ { 0, 5502, 934, 21, 2, -UNI_CWCM } /* changeswhencasemapped=f */,
+ { 3846, 464, 5205, 2, 18, UNI_HALFMARKS } /* iscombininghalfmarks */,
+ { 12, 433, 0, 3, 0, UNI_NKO } /* nko */,
+ { 136, 3622, 4629, 6, 5, UNI_LATIN1 } /* islatin1sup */,
+ { 0, 1879, 7660, 4, 28, UNI_VSSUP } /* blk=variationselectorssupplement */,
+ { 2664, 7201, 2774, 19, 8, UNI_SO } /* generalcategory=othersymbol */,
+ { 530, 1796, 2812, 7, 4, UNI_SC__MAHJ } /* script=mahj */,
+ { 1678, 3593, 2579, 3, 12, UNI_LOWSURROGATES } /* inlowsurrogates */,
+ { 0, 2678, 844, 4, 2, UNI_BC__RLO } /* bc=rlo */,
+ { 3072, 895, 771, 5, 2, UNI_AGE__2_DOT_1 } /* age=v21 */,
+ { 2, 8182, 6581, 24, 6, UNI_INPC__BOTTOM } /* indicpositionalcategory=bottom */,
+ { 1, 154, 5223, 2, 16, UNI_INPUNCTUATION } /* generalpunctuation */,
+ { 129, 1796, 806, 7, 4, UNI_SARB } /* script=sarb */,
+ { 2146, 2678, 331, 3, 3, UNI_BC__FSI } /* bc=fsi */,
+ { 0, 2496, 0, 13, 0, UNI_JG__AFRICANFEH } /* jg=africanfeh */,
+ { 1157, 3090, 6878, 7, 20, UNI_GEOMETRICSHAPESEXT } /* blk=geometricshapesextended */,
+ { 0, 1796, 1227, 7, 4, UNI_SC__MULT } /* script=mult */,
+ { 202, 3474, 1491, 12, 4, UNI_ARABICEXTA } /* block=arabicexta */,
+ { 0, 343, 3101, 4, 11, UNI_CCC__DA } /* ccc=doubleabove */,
+ { 0, 313, 1317, 2, 9, UNI_INOLDPERMIC } /* inoldpermic */,
+ { 0, 1395, 5, 5, 4, UNI_LATINEXTG } /* latinextg */,
+ { 24, 2274, 588, 4, 5, UNI_XIDC } /* xidc=true */,
+ { 2168, 12, 37, 1, 1, UNI_PS } /* ps */,
+ { 0, 8007, 2335, 6, 5, UNI_CJKEXTE } /* blk=cjkexte */,
+ { 3459, 7527, 4219, 3, 14, UNI_LB__CR } /* lb=carriagereturn */,
+ { 22, 5586, 1842, 21, 3, UNI_WB__EB } /* graphemeclusterbreak=gaz */,
+ { 652, 1102, 2695, 3, 7, UNI_ARAB } /* scx=arabic */,
+ { 1047, 6114, 116, 3, 4, UNI_SC__KNDA } /* sc=knda */,
+ { 0, 536, 4500, 3, 5, UNI_SB__UP } /* sb=upper */,
+ { 4107, 2474, 5038, 3, 18, UNI_MODIFIERTONELETTERS } /* ismodifiertoneletters */,
+ { 6704, 464, 1090, 2, 4, UNI_LINB } /* islinb */,
+ { 0, 4355, 164, 17, 4, UNI_PHNX } /* scriptextensions=phnx */,
+ { 4160, 1335, 0, 9, 0, UNI_OUGR } /* olduyghur */,
+ { 0, 833, 356, 4, 2, UNI_TERM } /* term=y */,
+ { 1, 464, 1271, 2, 9, UNI_SIND } /* iskhudawadi */,
+ { 0, 7132, 4081, 7, 11, UNI_SUPPUNCTUATION } /* blk=suppunctuation */,
+ { 1, 6379, 717, 13, 4, UNI_JG__ZAIN } /* joininggroup=zain */,
+ { 0, 8533, 1588, 7, 9, UNI_SMALLFORMS } /* block=smallforms */,
+ { 0, 306, 0, 5, 0, UNI__PERL_PATWS } /* patws */,
+ { 2568, 6379, 490, 13, 3, UNI_JG__REH } /* joininggroup=reh */,
+ { 0, 23, 356, 4, 4, UNI_POSIXXDIGIT } /* ahex=yes */,
+ { 0, 464, 4021, 2, 17, UNI_INDICSIYAQNUMBERS } /* isindicsiyaqnumbers */,
+ { 2210, 2678, 5249, 3, 3, UNI_BC__RLE } /* bc=rle */,
+ { 17, 1065, 2104, 4, 8, UNI_NV__1_SLASH_6 } /* nv=1.667e-01 */,
+ { 0, 6112, 0, 14, 0, UNI_INSC__CONSONANT } /* insc=consonant */,
+ { 13, 6134, 0, 13, 0, UNI_GLAGOLITICSUP } /* glagoliticsup */,
+ { 3, 313, 1614, 2, 10, UNI_INWARANGCITI } /* inwarangciti */,
+ { 0, 23, 0, 4, 0, UNI_POSIXXDIGIT } /* ahex */,
+ { 0, 3474, 1785, 6, 11, UNI_INPAHAWHHMONG } /* block=pahawhhmong */,
+ { 0, 46, 3151, 2, 3, UNI_SB__LE } /* sb=le */,
+ { 0, 3450, 1939, 5, 9, UNI_COMPATJAMO } /* blk=compatjamo */,
+ { 4513, 7823, 8407, 5, 33, UNI_CJKCOMPATIDEOGRAPHSSUP } /* incjkcompatibilityideographssupplement */,
+ { 4390, 1075, 1781, 4, 4, UNI_NV__20000 } /* nv=20000 */,
+ { 5, 5586, 3432, 21, 3, UNI_LB__ZWJ } /* graphemeclusterbreak=zwj */,
+ { 0, 6114, 4551, 3, 7, UNI_SC__LINB } /* sc=linearb */,
+ { 2, 4355, 686, 17, 4, UNI_TAKR } /* scriptextensions=takr */,
+ { 1, 5607, 756, 18, 4, UNI_IDENTIFIERTYPE__NOTNFKC } /* identifiertype=notnfkc */,
+ { 4308, 313, 27, 2, 4, UNI_INAHOM } /* inahom */,
+ { 2321, 1796, 1508, 7, 8, UNI_UGAR } /* script=ugaritic */,
+ { 6912, 464, 192, 2, 4, UNI_SHAW } /* isshaw */,
+ { 24, 7201, 2384, 16, 2, UNI__PERL_SURROGATE } /* generalcategory=cs */,
+ { 0, 6944, 1304, 24, 2, UNI_CCC__20 } /* canonicalcombiningclass=20 */,
+ { 3, 140, 0, 4, 0, UNI_NARB } /* narb */,
+ { 2, 4291, 283, 10, 2, UNI_GCB__L } /* linebreak=jl */,
+ { 0, 464, 5806, 2, 19, UNI_MONGOLIANSUP } /* ismongoliansupplement */,
+ { 1, 296, 764, 4, 2, UNI_NV__9_SLASH_2 } /* nv=9/2 */,
+ { 0, 832, 356, 5, 4, UNI_STERM } /* sterm=yes */,
+ { 3, 7584, 2652, 18, 8, UNI_DT__VERT } /* decompositiontype=vertical */,
+ { 85, 4450, 5643, 7, 18, UNI_COUNTINGROD } /* block=countingrodnumerals */,
+ { 18, 2153, 1781, 4, 4, UNI_NV__40000 } /* nv=40000 */,
+ { 2980, 313, 2275, 2, 3, UNI_INIDC } /* inidc */,
+ { 0, 36, 356, 2, 4, UNI_VS } /* vs=yes */,
+ { 0, 7201, 6636, 20, 7, UNI_LO } /* generalcategory=otherletter */,
+ { 292, 2483, 1465, 8, 5, UNI_XPOSIXSPACE } /* isxposixspace */,
+ { 1, 464, 3608, 2, 14, UNI_PHONETICEXTSUP } /* isphoneticextsup */,
+ { 0, 6114, 1371, 3, 6, UNI_SC__THAA } /* sc=thaana */,
+ { 0, 3450, 8340, 5, 34, UNI_DIACRITICALSFORSYMBOLS } /* blk=combiningdiacriticalmarksforsymbols */,
+ { 0, 2692, 0, 10, 0, UNI_INARABIC } /* blk=arabic */,
+ { 3667, 1011, 278, 2, 1, UNI_ci_values_index } /* ci= */,
+ { 26, 1807, 0, 11, 0, UNI_SORA } /* sorasompeng */,
+ { 6, 4355, 991, 17, 4, UNI_HATR } /* scriptextensions=hatr */,
+ { 0, 1977, 3228, 5, 5, UNI_POSIXALNUM } /* posixalnum */,
+ { 0, 5865, 0, 21, 0, UNI_LOE } /* logicalorderexception */,
+ { 0, 7208, 1464, 9, 2, UNI_ZS } /* category=zs */,
+ { 0, 6114, 152, 3, 4, UNI_OSGE } /* sc=osge */,
+ { 1, 513, 1304, 5, 2, UNI_NV__3_SLASH_20 } /* nv=3/20 */
};
MPH_VALt
@@ -7708,6 +7680,6 @@ match_uniprop( const unsigned char * const key, const U16 key_len ) {
* c72bbdeda99714db1c8024d3311da4aef3c0db3b9b9f11455a7cfe10d5e9aba3 lib/unicore/version
* 0a6b5ab33bb1026531f816efe81aea1a8ffcd34a27cbea37dd6a70a63d73c844 regen/charset_translations.pl
* 5f8520d3a17ade6317fc0c423f5091470924b1ef425bca0c41ce8e4a9f8460fe regen/mk_PL_charclass.pl
- * 9c08a09afbb28779be92ff658e0d27e654be4570241048689e2ffc20437a3d91 regen/mk_invlists.pl
- * 193db308cfcc2343ddde130a314afa74f4632a89635607f5297db8dccb64059b regen/mph.pl
+ * 1c73795f9150bd556573e7ae982789377289e22b6a7f3db0a05c36852e8d749f regen/mk_invlists.pl
+ * c71eddd9ff61cf69040e9ab7f5711415fc28e5d41003af2479e4aaddbadbd0aa regen/mph.pl
* ex: set ro: */