From 12a92d7d76929718df06b11494e1f4a73ba9c82f Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Thu, 23 Mar 2017 16:36:12 -0400 Subject: [PATCH] reduce space required by idna data tables The `Range` type defined by uts46 takes up 20 bytes on a 32-bit platform and 32 bytes on a 64-bit platform. This bloat is due to `Mapping` using a full word-width discriminant for its type and native string slices, which are unnecessarily large. The use of native string slices in this context also require many load-time relocations on some platforms when idna is used in a static library, another unnecessary cost. Instead of this scheme, we can define our own string slice type that indexes into a generated table. This string slice type enables us to use a smaller discriminant type for `Mapping`, and therefore reduces the size of `Range` to 16 bytes on a 32-bit platform and 16 bytes on a 64-bit platform. For x86-64 Linux, this change reduces total idna size by ~130K, a significant savings. Changing the script to use unicode escapes makes things slightly more readable, enables better eyeball comparisons of the generated tables to the original mapping table, and makes syntax highlighting in emacs somewhat faster. --- idna/src/make_uts46_mapping_table.py | 47 +- idna/src/uts46.rs | 29 +- idna/src/uts46_mapping_table.rs | 21890 +++++++++++++++---------- 3 files changed, 13612 insertions(+), 8354 deletions(-) diff --git a/idna/src/make_uts46_mapping_table.py b/idna/src/make_uts46_mapping_table.py index d4554e5b..733cb729 100644 --- a/idna/src/make_uts46_mapping_table.py +++ b/idna/src/make_uts46_mapping_table.py @@ -10,6 +10,9 @@ # You can get the latest idna table from # http://www.unicode.org/Public/idna/latest/IdnaMappingTable.txt +import collections +import itertools + print('''\ // Copyright 2013-2014 The rust-url developers. // @@ -26,12 +29,29 @@ txt = open("IdnaMappingTable.txt") +def escape_char(c): + return "\\u{%x}" % ord(c[0]) + def char(s): - return (unichr(int(s, 16)) - .encode('utf8') - .replace('\\', '\\\\') - .replace('"', '\\"') - .replace('\0', '\\0')) + return unichr(int(s, 16)) + +strtab = collections.OrderedDict() +strtab_offset = 0 + +def strtab_slice(s): + global strtab, strtab_offset + + if s in strtab: + return strtab[s] + else: + utf8_len = len(s.encode('utf8')) + c = (strtab_offset, utf8_len) + strtab[s] = c + strtab_offset += utf8_len + return c + +def rust_slice(s): + return "(StringTableSlice { byte_start: %d, byte_len: %d })" % s for line in txt: # remove comments @@ -48,9 +68,18 @@ def char(s): mapping = fields[1].strip().replace('_', ' ').title().replace(' ', '') if len(fields) > 2: if fields[2].strip(): - mapping += '("%s")' % ''.join(char(c) for c in fields[2].strip().split(' ')) + unicode_str = u''.join(char(c) for c in fields[2].strip().split(' ')) + mapping += rust_slice(strtab_slice(unicode_str)) elif mapping == "Deviation": - mapping += '("")' - print(" Range { from: '%s', to: '%s', mapping: %s }," % (char(first), char(last), mapping)) + mapping += rust_slice(strtab_slice('')) + print(" Range { from: '%s', to: '%s', mapping: %s }," % (escape_char(char(first)), + escape_char(char(last)), + mapping)) + +print("];\n") + +def escape_str(s): + return [escape_char(c) for c in s] -print("];") +print("static STRING_TABLE: &'static str = \"%s\";" + % '\\\n '.join(itertools.chain(*[escape_str(s) for s in strtab.iterkeys()]))) diff --git a/idna/src/uts46.rs b/idna/src/uts46.rs index af2a6313..eef531d5 100644 --- a/idna/src/uts46.rs +++ b/idna/src/uts46.rs @@ -18,15 +18,28 @@ use unicode_bidi::{BidiClass, bidi_class}; include!("uts46_mapping_table.rs"); +#[derive(Debug)] +struct StringTableSlice { + byte_start: u16, + byte_len: u16, +} + +fn decode_slice(slice: &StringTableSlice) -> &'static str { + let start = slice.byte_start as usize; + let len = slice.byte_len as usize; + &STRING_TABLE[start..(start + len)] +} + +#[repr(u16)] #[derive(Debug)] enum Mapping { Valid, Ignored, - Mapped(&'static str), - Deviation(&'static str), + Mapped(StringTableSlice), + Deviation(StringTableSlice), Disallowed, DisallowedStd3Valid, - DisallowedStd3Mapped(&'static str), + DisallowedStd3Mapped(StringTableSlice), } struct Range { @@ -56,10 +69,10 @@ fn map_char(codepoint: char, flags: Flags, output: &mut String, errors: &mut Vec match *find_char(codepoint) { Mapping::Valid => output.push(codepoint), Mapping::Ignored => {}, - Mapping::Mapped(mapping) => output.push_str(mapping), - Mapping::Deviation(mapping) => { + Mapping::Mapped(ref slice) => output.push_str(decode_slice(slice)), + Mapping::Deviation(ref slice) => { if flags.transitional_processing { - output.push_str(mapping) + output.push_str(decode_slice(slice)) } else { output.push(codepoint) } @@ -74,11 +87,11 @@ fn map_char(codepoint: char, flags: Flags, output: &mut String, errors: &mut Vec } output.push(codepoint) } - Mapping::DisallowedStd3Mapped(mapping) => { + Mapping::DisallowedStd3Mapped(ref slice) => { if flags.use_std3_ascii_rules { errors.push(Error::DissallowedMappedInStd3); } - output.push_str(mapping) + output.push_str(decode_slice(slice)) } } } diff --git a/idna/src/uts46_mapping_table.rs b/idna/src/uts46_mapping_table.rs index 0476089c..ba3ff89a 100644 --- a/idna/src/uts46_mapping_table.rs +++ b/idna/src/uts46_mapping_table.rs @@ -10,8341 +10,13557 @@ static TABLE: &'static [Range] = &[ - Range { from: '\0', to: ',', mapping: DisallowedStd3Valid }, - Range { from: '-', to: '.', mapping: Valid }, - Range { from: '/', to: '/', mapping: DisallowedStd3Valid }, - Range { from: '0', to: '9', mapping: Valid }, - Range { from: ':', to: '@', mapping: DisallowedStd3Valid }, - Range { from: 'A', to: 'A', mapping: Mapped("a") }, - Range { from: 'B', to: 'B', mapping: Mapped("b") }, - Range { from: 'C', to: 'C', mapping: Mapped("c") }, - Range { from: 'D', to: 'D', mapping: Mapped("d") }, - Range { from: 'E', to: 'E', mapping: Mapped("e") }, - Range { from: 'F', to: 'F', mapping: Mapped("f") }, - Range { from: 'G', to: 'G', mapping: Mapped("g") }, - Range { from: 'H', to: 'H', mapping: Mapped("h") }, - Range { from: 'I', to: 'I', mapping: Mapped("i") }, - Range { from: 'J', to: 'J', mapping: Mapped("j") }, - Range { from: 'K', to: 'K', mapping: Mapped("k") }, - Range { from: 'L', to: 'L', mapping: Mapped("l") }, - Range { from: 'M', to: 'M', mapping: Mapped("m") }, - Range { from: 'N', to: 'N', mapping: Mapped("n") }, - Range { from: 'O', to: 'O', mapping: Mapped("o") }, - Range { from: 'P', to: 'P', mapping: Mapped("p") }, - Range { from: 'Q', to: 'Q', mapping: Mapped("q") }, - Range { from: 'R', to: 'R', mapping: Mapped("r") }, - Range { from: 'S', to: 'S', mapping: Mapped("s") }, - Range { from: 'T', to: 'T', mapping: Mapped("t") }, - Range { from: 'U', to: 'U', mapping: Mapped("u") }, - Range { from: 'V', to: 'V', mapping: Mapped("v") }, - Range { from: 'W', to: 'W', mapping: Mapped("w") }, - Range { from: 'X', to: 'X', mapping: Mapped("x") }, - Range { from: 'Y', to: 'Y', mapping: Mapped("y") }, - Range { from: 'Z', to: 'Z', mapping: Mapped("z") }, - Range { from: '[', to: '`', mapping: DisallowedStd3Valid }, - Range { from: 'a', to: 'z', mapping: Valid }, - Range { from: '{', to: '', mapping: DisallowedStd3Valid }, - Range { from: '€', to: 'Ÿ', mapping: Disallowed }, - Range { from: ' ', to: ' ', mapping: DisallowedStd3Mapped(" ") }, - Range { from: '¡', to: '§', mapping: Valid }, - Range { from: '¨', to: '¨', mapping: DisallowedStd3Mapped(" ̈") }, - Range { from: '©', to: '©', mapping: Valid }, - Range { from: 'ª', to: 'ª', mapping: Mapped("a") }, - Range { from: '«', to: '¬', mapping: Valid }, - Range { from: '­', to: '­', mapping: Ignored }, - Range { from: '®', to: '®', mapping: Valid }, - Range { from: '¯', to: '¯', mapping: DisallowedStd3Mapped(" ̄") }, - Range { from: '°', to: '±', mapping: Valid }, - Range { from: '²', to: '²', mapping: Mapped("2") }, - Range { from: '³', to: '³', mapping: Mapped("3") }, - Range { from: '´', to: '´', mapping: DisallowedStd3Mapped(" ́") }, - Range { from: 'µ', to: 'µ', mapping: Mapped("μ") }, - Range { from: '¶', to: '¶', mapping: Valid }, - Range { from: '·', to: '·', mapping: Valid }, - Range { from: '¸', to: '¸', mapping: DisallowedStd3Mapped(" ̧") }, - Range { from: '¹', to: '¹', mapping: Mapped("1") }, - Range { from: 'º', to: 'º', mapping: Mapped("o") }, - Range { from: '»', to: '»', mapping: Valid }, - Range { from: '¼', to: '¼', mapping: Mapped("1⁄4") }, - Range { from: '½', to: '½', mapping: Mapped("1⁄2") }, - Range { from: '¾', to: '¾', mapping: Mapped("3⁄4") }, - Range { from: '¿', to: '¿', mapping: Valid }, - Range { from: 'À', to: 'À', mapping: Mapped("à") }, - Range { from: 'Á', to: 'Á', mapping: Mapped("á") }, - Range { from: 'Â', to: 'Â', mapping: Mapped("â") }, - Range { from: 'Ã', to: 'Ã', mapping: Mapped("ã") }, - Range { from: 'Ä', to: 'Ä', mapping: Mapped("ä") }, - Range { from: 'Å', to: 'Å', mapping: Mapped("å") }, - Range { from: 'Æ', to: 'Æ', mapping: Mapped("æ") }, - Range { from: 'Ç', to: 'Ç', mapping: Mapped("ç") }, - Range { from: 'È', to: 'È', mapping: Mapped("è") }, - Range { from: 'É', to: 'É', mapping: Mapped("é") }, - Range { from: 'Ê', to: 'Ê', mapping: Mapped("ê") }, - Range { from: 'Ë', to: 'Ë', mapping: Mapped("ë") }, - Range { from: 'Ì', to: 'Ì', mapping: Mapped("ì") }, - Range { from: 'Í', to: 'Í', mapping: Mapped("í") }, - Range { from: 'Î', to: 'Î', mapping: Mapped("î") }, - Range { from: 'Ï', to: 'Ï', mapping: Mapped("ï") }, - Range { from: 'Ð', to: 'Ð', mapping: Mapped("ð") }, - Range { from: 'Ñ', to: 'Ñ', mapping: Mapped("ñ") }, - Range { from: 'Ò', to: 'Ò', mapping: Mapped("ò") }, - Range { from: 'Ó', to: 'Ó', mapping: Mapped("ó") }, - Range { from: 'Ô', to: 'Ô', mapping: Mapped("ô") }, - Range { from: 'Õ', to: 'Õ', mapping: Mapped("õ") }, - Range { from: 'Ö', to: 'Ö', mapping: Mapped("ö") }, - Range { from: '×', to: '×', mapping: Valid }, - Range { from: 'Ø', to: 'Ø', mapping: Mapped("ø") }, - Range { from: 'Ù', to: 'Ù', mapping: Mapped("ù") }, - Range { from: 'Ú', to: 'Ú', mapping: Mapped("ú") }, - Range { from: 'Û', to: 'Û', mapping: Mapped("û") }, - Range { from: 'Ü', to: 'Ü', mapping: Mapped("ü") }, - Range { from: 'Ý', to: 'Ý', mapping: Mapped("ý") }, - Range { from: 'Þ', to: 'Þ', mapping: Mapped("þ") }, - Range { from: 'ß', to: 'ß', mapping: Deviation("ss") }, - Range { from: 'à', to: 'ö', mapping: Valid }, - Range { from: '÷', to: '÷', mapping: Valid }, - Range { from: 'ø', to: 'ÿ', mapping: Valid }, - Range { from: 'Ā', to: 'Ā', mapping: Mapped("ā") }, - Range { from: 'ā', to: 'ā', mapping: Valid }, - Range { from: 'Ă', to: 'Ă', mapping: Mapped("ă") }, - Range { from: 'ă', to: 'ă', mapping: Valid }, - Range { from: 'Ą', to: 'Ą', mapping: Mapped("ą") }, - Range { from: 'ą', to: 'ą', mapping: Valid }, - Range { from: 'Ć', to: 'Ć', mapping: Mapped("ć") }, - Range { from: 'ć', to: 'ć', mapping: Valid }, - Range { from: 'Ĉ', to: 'Ĉ', mapping: Mapped("ĉ") }, - Range { from: 'ĉ', to: 'ĉ', mapping: Valid }, - Range { from: 'Ċ', to: 'Ċ', mapping: Mapped("ċ") }, - Range { from: 'ċ', to: 'ċ', mapping: Valid }, - Range { from: 'Č', to: 'Č', mapping: Mapped("č") }, - Range { from: 'č', to: 'č', mapping: Valid }, - Range { from: 'Ď', to: 'Ď', mapping: Mapped("ď") }, - Range { from: 'ď', to: 'ď', mapping: Valid }, - Range { from: 'Đ', to: 'Đ', mapping: Mapped("đ") }, - Range { from: 'đ', to: 'đ', mapping: Valid }, - Range { from: 'Ē', to: 'Ē', mapping: Mapped("ē") }, - Range { from: 'ē', to: 'ē', mapping: Valid }, - Range { from: 'Ĕ', to: 'Ĕ', mapping: Mapped("ĕ") }, - Range { from: 'ĕ', to: 'ĕ', mapping: Valid }, - Range { from: 'Ė', to: 'Ė', mapping: Mapped("ė") }, - Range { from: 'ė', to: 'ė', mapping: Valid }, - Range { from: 'Ę', to: 'Ę', mapping: Mapped("ę") }, - Range { from: 'ę', to: 'ę', mapping: Valid }, - Range { from: 'Ě', to: 'Ě', mapping: Mapped("ě") }, - Range { from: 'ě', to: 'ě', mapping: Valid }, - Range { from: 'Ĝ', to: 'Ĝ', mapping: Mapped("ĝ") }, - Range { from: 'ĝ', to: 'ĝ', mapping: Valid }, - Range { from: 'Ğ', to: 'Ğ', mapping: Mapped("ğ") }, - Range { from: 'ğ', to: 'ğ', mapping: Valid }, - Range { from: 'Ġ', to: 'Ġ', mapping: Mapped("ġ") }, - Range { from: 'ġ', to: 'ġ', mapping: Valid }, - Range { from: 'Ģ', to: 'Ģ', mapping: Mapped("ģ") }, - Range { from: 'ģ', to: 'ģ', mapping: Valid }, - Range { from: 'Ĥ', to: 'Ĥ', mapping: Mapped("ĥ") }, - Range { from: 'ĥ', to: 'ĥ', mapping: Valid }, - Range { from: 'Ħ', to: 'Ħ', mapping: Mapped("ħ") }, - Range { from: 'ħ', to: 'ħ', mapping: Valid }, - Range { from: 'Ĩ', to: 'Ĩ', mapping: Mapped("ĩ") }, - Range { from: 'ĩ', to: 'ĩ', mapping: Valid }, - Range { from: 'Ī', to: 'Ī', mapping: Mapped("ī") }, - Range { from: 'ī', to: 'ī', mapping: Valid }, - Range { from: 'Ĭ', to: 'Ĭ', mapping: Mapped("ĭ") }, - Range { from: 'ĭ', to: 'ĭ', mapping: Valid }, - Range { from: 'Į', to: 'Į', mapping: Mapped("į") }, - Range { from: 'į', to: 'į', mapping: Valid }, - Range { from: 'İ', to: 'İ', mapping: Mapped("i̇") }, - Range { from: 'ı', to: 'ı', mapping: Valid }, - Range { from: 'IJ', to: 'ij', mapping: Mapped("ij") }, - Range { from: 'Ĵ', to: 'Ĵ', mapping: Mapped("ĵ") }, - Range { from: 'ĵ', to: 'ĵ', mapping: Valid }, - Range { from: 'Ķ', to: 'Ķ', mapping: Mapped("ķ") }, - Range { from: 'ķ', to: 'ĸ', mapping: Valid }, - Range { from: 'Ĺ', to: 'Ĺ', mapping: Mapped("ĺ") }, - Range { from: 'ĺ', to: 'ĺ', mapping: Valid }, - Range { from: 'Ļ', to: 'Ļ', mapping: Mapped("ļ") }, - Range { from: 'ļ', to: 'ļ', mapping: Valid }, - Range { from: 'Ľ', to: 'Ľ', mapping: Mapped("ľ") }, - Range { from: 'ľ', to: 'ľ', mapping: Valid }, - Range { from: 'Ŀ', to: 'ŀ', mapping: Mapped("l·") }, - Range { from: 'Ł', to: 'Ł', mapping: Mapped("ł") }, - Range { from: 'ł', to: 'ł', mapping: Valid }, - Range { from: 'Ń', to: 'Ń', mapping: Mapped("ń") }, - Range { from: 'ń', to: 'ń', mapping: Valid }, - Range { from: 'Ņ', to: 'Ņ', mapping: Mapped("ņ") }, - Range { from: 'ņ', to: 'ņ', mapping: Valid }, - Range { from: 'Ň', to: 'Ň', mapping: Mapped("ň") }, - Range { from: 'ň', to: 'ň', mapping: Valid }, - Range { from: 'ʼn', to: 'ʼn', mapping: Mapped("ʼn") }, - Range { from: 'Ŋ', to: 'Ŋ', mapping: Mapped("ŋ") }, - Range { from: 'ŋ', to: 'ŋ', mapping: Valid }, - Range { from: 'Ō', to: 'Ō', mapping: Mapped("ō") }, - Range { from: 'ō', to: 'ō', mapping: Valid }, - Range { from: 'Ŏ', to: 'Ŏ', mapping: Mapped("ŏ") }, - Range { from: 'ŏ', to: 'ŏ', mapping: Valid }, - Range { from: 'Ő', to: 'Ő', mapping: Mapped("ő") }, - Range { from: 'ő', to: 'ő', mapping: Valid }, - Range { from: 'Œ', to: 'Œ', mapping: Mapped("œ") }, - Range { from: 'œ', to: 'œ', mapping: Valid }, - Range { from: 'Ŕ', to: 'Ŕ', mapping: Mapped("ŕ") }, - Range { from: 'ŕ', to: 'ŕ', mapping: Valid }, - Range { from: 'Ŗ', to: 'Ŗ', mapping: Mapped("ŗ") }, - Range { from: 'ŗ', to: 'ŗ', mapping: Valid }, - Range { from: 'Ř', to: 'Ř', mapping: Mapped("ř") }, - Range { from: 'ř', to: 'ř', mapping: Valid }, - Range { from: 'Ś', to: 'Ś', mapping: Mapped("ś") }, - Range { from: 'ś', to: 'ś', mapping: Valid }, - Range { from: 'Ŝ', to: 'Ŝ', mapping: Mapped("ŝ") }, - Range { from: 'ŝ', to: 'ŝ', mapping: Valid }, - Range { from: 'Ş', to: 'Ş', mapping: Mapped("ş") }, - Range { from: 'ş', to: 'ş', mapping: Valid }, - Range { from: 'Š', to: 'Š', mapping: Mapped("š") }, - Range { from: 'š', to: 'š', mapping: Valid }, - Range { from: 'Ţ', to: 'Ţ', mapping: Mapped("ţ") }, - Range { from: 'ţ', to: 'ţ', mapping: Valid }, - Range { from: 'Ť', to: 'Ť', mapping: Mapped("ť") }, - Range { from: 'ť', to: 'ť', mapping: Valid }, - Range { from: 'Ŧ', to: 'Ŧ', mapping: Mapped("ŧ") }, - Range { from: 'ŧ', to: 'ŧ', mapping: Valid }, - Range { from: 'Ũ', to: 'Ũ', mapping: Mapped("ũ") }, - Range { from: 'ũ', to: 'ũ', mapping: Valid }, - Range { from: 'Ū', to: 'Ū', mapping: Mapped("ū") }, - Range { from: 'ū', to: 'ū', mapping: Valid }, - Range { from: 'Ŭ', to: 'Ŭ', mapping: Mapped("ŭ") }, - Range { from: 'ŭ', to: 'ŭ', mapping: Valid }, - Range { from: 'Ů', to: 'Ů', mapping: Mapped("ů") }, - Range { from: 'ů', to: 'ů', mapping: Valid }, - Range { from: 'Ű', to: 'Ű', mapping: Mapped("ű") }, - Range { from: 'ű', to: 'ű', mapping: Valid }, - Range { from: 'Ų', to: 'Ų', mapping: Mapped("ų") }, - Range { from: 'ų', to: 'ų', mapping: Valid }, - Range { from: 'Ŵ', to: 'Ŵ', mapping: Mapped("ŵ") }, - Range { from: 'ŵ', to: 'ŵ', mapping: Valid }, - Range { from: 'Ŷ', to: 'Ŷ', mapping: Mapped("ŷ") }, - Range { from: 'ŷ', to: 'ŷ', mapping: Valid }, - Range { from: 'Ÿ', to: 'Ÿ', mapping: Mapped("ÿ") }, - Range { from: 'Ź', to: 'Ź', mapping: Mapped("ź") }, - Range { from: 'ź', to: 'ź', mapping: Valid }, - Range { from: 'Ż', to: 'Ż', mapping: Mapped("ż") }, - Range { from: 'ż', to: 'ż', mapping: Valid }, - Range { from: 'Ž', to: 'Ž', mapping: Mapped("ž") }, - Range { from: 'ž', to: 'ž', mapping: Valid }, - Range { from: 'ſ', to: 'ſ', mapping: Mapped("s") }, - Range { from: 'ƀ', to: 'ƀ', mapping: Valid }, - Range { from: 'Ɓ', to: 'Ɓ', mapping: Mapped("ɓ") }, - Range { from: 'Ƃ', to: 'Ƃ', mapping: Mapped("ƃ") }, - Range { from: 'ƃ', to: 'ƃ', mapping: Valid }, - Range { from: 'Ƅ', to: 'Ƅ', mapping: Mapped("ƅ") }, - Range { from: 'ƅ', to: 'ƅ', mapping: Valid }, - Range { from: 'Ɔ', to: 'Ɔ', mapping: Mapped("ɔ") }, - Range { from: 'Ƈ', to: 'Ƈ', mapping: Mapped("ƈ") }, - Range { from: 'ƈ', to: 'ƈ', mapping: Valid }, - Range { from: 'Ɖ', to: 'Ɖ', mapping: Mapped("ɖ") }, - Range { from: 'Ɗ', to: 'Ɗ', mapping: Mapped("ɗ") }, - Range { from: 'Ƌ', to: 'Ƌ', mapping: Mapped("ƌ") }, - Range { from: 'ƌ', to: 'ƍ', mapping: Valid }, - Range { from: 'Ǝ', to: 'Ǝ', mapping: Mapped("ǝ") }, - Range { from: 'Ə', to: 'Ə', mapping: Mapped("ə") }, - Range { from: 'Ɛ', to: 'Ɛ', mapping: Mapped("ɛ") }, - Range { from: 'Ƒ', to: 'Ƒ', mapping: Mapped("ƒ") }, - Range { from: 'ƒ', to: 'ƒ', mapping: Valid }, - Range { from: 'Ɠ', to: 'Ɠ', mapping: Mapped("ɠ") }, - Range { from: 'Ɣ', to: 'Ɣ', mapping: Mapped("ɣ") }, - Range { from: 'ƕ', to: 'ƕ', mapping: Valid }, - Range { from: 'Ɩ', to: 'Ɩ', mapping: Mapped("ɩ") }, - Range { from: 'Ɨ', to: 'Ɨ', mapping: Mapped("ɨ") }, - Range { from: 'Ƙ', to: 'Ƙ', mapping: Mapped("ƙ") }, - Range { from: 'ƙ', to: 'ƛ', mapping: Valid }, - Range { from: 'Ɯ', to: 'Ɯ', mapping: Mapped("ɯ") }, - Range { from: 'Ɲ', to: 'Ɲ', mapping: Mapped("ɲ") }, - Range { from: 'ƞ', to: 'ƞ', mapping: Valid }, - Range { from: 'Ɵ', to: 'Ɵ', mapping: Mapped("ɵ") }, - Range { from: 'Ơ', to: 'Ơ', mapping: Mapped("ơ") }, - Range { from: 'ơ', to: 'ơ', mapping: Valid }, - Range { from: 'Ƣ', to: 'Ƣ', mapping: Mapped("ƣ") }, - Range { from: 'ƣ', to: 'ƣ', mapping: Valid }, - Range { from: 'Ƥ', to: 'Ƥ', mapping: Mapped("ƥ") }, - Range { from: 'ƥ', to: 'ƥ', mapping: Valid }, - Range { from: 'Ʀ', to: 'Ʀ', mapping: Mapped("ʀ") }, - Range { from: 'Ƨ', to: 'Ƨ', mapping: Mapped("ƨ") }, - Range { from: 'ƨ', to: 'ƨ', mapping: Valid }, - Range { from: 'Ʃ', to: 'Ʃ', mapping: Mapped("ʃ") }, - Range { from: 'ƪ', to: 'ƫ', mapping: Valid }, - Range { from: 'Ƭ', to: 'Ƭ', mapping: Mapped("ƭ") }, - Range { from: 'ƭ', to: 'ƭ', mapping: Valid }, - Range { from: 'Ʈ', to: 'Ʈ', mapping: Mapped("ʈ") }, - Range { from: 'Ư', to: 'Ư', mapping: Mapped("ư") }, - Range { from: 'ư', to: 'ư', mapping: Valid }, - Range { from: 'Ʊ', to: 'Ʊ', mapping: Mapped("ʊ") }, - Range { from: 'Ʋ', to: 'Ʋ', mapping: Mapped("ʋ") }, - Range { from: 'Ƴ', to: 'Ƴ', mapping: Mapped("ƴ") }, - Range { from: 'ƴ', to: 'ƴ', mapping: Valid }, - Range { from: 'Ƶ', to: 'Ƶ', mapping: Mapped("ƶ") }, - Range { from: 'ƶ', to: 'ƶ', mapping: Valid }, - Range { from: 'Ʒ', to: 'Ʒ', mapping: Mapped("ʒ") }, - Range { from: 'Ƹ', to: 'Ƹ', mapping: Mapped("ƹ") }, - Range { from: 'ƹ', to: 'ƻ', mapping: Valid }, - Range { from: 'Ƽ', to: 'Ƽ', mapping: Mapped("ƽ") }, - Range { from: 'ƽ', to: 'ǃ', mapping: Valid }, - Range { from: 'DŽ', to: 'dž', mapping: Mapped("dž") }, - Range { from: 'LJ', to: 'lj', mapping: Mapped("lj") }, - Range { from: 'NJ', to: 'nj', mapping: Mapped("nj") }, - Range { from: 'Ǎ', to: 'Ǎ', mapping: Mapped("ǎ") }, - Range { from: 'ǎ', to: 'ǎ', mapping: Valid }, - Range { from: 'Ǐ', to: 'Ǐ', mapping: Mapped("ǐ") }, - Range { from: 'ǐ', to: 'ǐ', mapping: Valid }, - Range { from: 'Ǒ', to: 'Ǒ', mapping: Mapped("ǒ") }, - Range { from: 'ǒ', to: 'ǒ', mapping: Valid }, - Range { from: 'Ǔ', to: 'Ǔ', mapping: Mapped("ǔ") }, - Range { from: 'ǔ', to: 'ǔ', mapping: Valid }, - Range { from: 'Ǖ', to: 'Ǖ', mapping: Mapped("ǖ") }, - Range { from: 'ǖ', to: 'ǖ', mapping: Valid }, - Range { from: 'Ǘ', to: 'Ǘ', mapping: Mapped("ǘ") }, - Range { from: 'ǘ', to: 'ǘ', mapping: Valid }, - Range { from: 'Ǚ', to: 'Ǚ', mapping: Mapped("ǚ") }, - Range { from: 'ǚ', to: 'ǚ', mapping: Valid }, - Range { from: 'Ǜ', to: 'Ǜ', mapping: Mapped("ǜ") }, - Range { from: 'ǜ', to: 'ǝ', mapping: Valid }, - Range { from: 'Ǟ', to: 'Ǟ', mapping: Mapped("ǟ") }, - Range { from: 'ǟ', to: 'ǟ', mapping: Valid }, - Range { from: 'Ǡ', to: 'Ǡ', mapping: Mapped("ǡ") }, - Range { from: 'ǡ', to: 'ǡ', mapping: Valid }, - Range { from: 'Ǣ', to: 'Ǣ', mapping: Mapped("ǣ") }, - Range { from: 'ǣ', to: 'ǣ', mapping: Valid }, - Range { from: 'Ǥ', to: 'Ǥ', mapping: Mapped("ǥ") }, - Range { from: 'ǥ', to: 'ǥ', mapping: Valid }, - Range { from: 'Ǧ', to: 'Ǧ', mapping: Mapped("ǧ") }, - Range { from: 'ǧ', to: 'ǧ', mapping: Valid }, - Range { from: 'Ǩ', to: 'Ǩ', mapping: Mapped("ǩ") }, - Range { from: 'ǩ', to: 'ǩ', mapping: Valid }, - Range { from: 'Ǫ', to: 'Ǫ', mapping: Mapped("ǫ") }, - Range { from: 'ǫ', to: 'ǫ', mapping: Valid }, - Range { from: 'Ǭ', to: 'Ǭ', mapping: Mapped("ǭ") }, - Range { from: 'ǭ', to: 'ǭ', mapping: Valid }, - Range { from: 'Ǯ', to: 'Ǯ', mapping: Mapped("ǯ") }, - Range { from: 'ǯ', to: 'ǰ', mapping: Valid }, - Range { from: 'DZ', to: 'dz', mapping: Mapped("dz") }, - Range { from: 'Ǵ', to: 'Ǵ', mapping: Mapped("ǵ") }, - Range { from: 'ǵ', to: 'ǵ', mapping: Valid }, - Range { from: 'Ƕ', to: 'Ƕ', mapping: Mapped("ƕ") }, - Range { from: 'Ƿ', to: 'Ƿ', mapping: Mapped("ƿ") }, - Range { from: 'Ǹ', to: 'Ǹ', mapping: Mapped("ǹ") }, - Range { from: 'ǹ', to: 'ǹ', mapping: Valid }, - Range { from: 'Ǻ', to: 'Ǻ', mapping: Mapped("ǻ") }, - Range { from: 'ǻ', to: 'ǻ', mapping: Valid }, - Range { from: 'Ǽ', to: 'Ǽ', mapping: Mapped("ǽ") }, - Range { from: 'ǽ', to: 'ǽ', mapping: Valid }, - Range { from: 'Ǿ', to: 'Ǿ', mapping: Mapped("ǿ") }, - Range { from: 'ǿ', to: 'ǿ', mapping: Valid }, - Range { from: 'Ȁ', to: 'Ȁ', mapping: Mapped("ȁ") }, - Range { from: 'ȁ', to: 'ȁ', mapping: Valid }, - Range { from: 'Ȃ', to: 'Ȃ', mapping: Mapped("ȃ") }, - Range { from: 'ȃ', to: 'ȃ', mapping: Valid }, - Range { from: 'Ȅ', to: 'Ȅ', mapping: Mapped("ȅ") }, - Range { from: 'ȅ', to: 'ȅ', mapping: Valid }, - Range { from: 'Ȇ', to: 'Ȇ', mapping: Mapped("ȇ") }, - Range { from: 'ȇ', to: 'ȇ', mapping: Valid }, - Range { from: 'Ȉ', to: 'Ȉ', mapping: Mapped("ȉ") }, - Range { from: 'ȉ', to: 'ȉ', mapping: Valid }, - Range { from: 'Ȋ', to: 'Ȋ', mapping: Mapped("ȋ") }, - Range { from: 'ȋ', to: 'ȋ', mapping: Valid }, - Range { from: 'Ȍ', to: 'Ȍ', mapping: Mapped("ȍ") }, - Range { from: 'ȍ', to: 'ȍ', mapping: Valid }, - Range { from: 'Ȏ', to: 'Ȏ', mapping: Mapped("ȏ") }, - Range { from: 'ȏ', to: 'ȏ', mapping: Valid }, - Range { from: 'Ȑ', to: 'Ȑ', mapping: Mapped("ȑ") }, - Range { from: 'ȑ', to: 'ȑ', mapping: Valid }, - Range { from: 'Ȓ', to: 'Ȓ', mapping: Mapped("ȓ") }, - Range { from: 'ȓ', to: 'ȓ', mapping: Valid }, - Range { from: 'Ȕ', to: 'Ȕ', mapping: Mapped("ȕ") }, - Range { from: 'ȕ', to: 'ȕ', mapping: Valid }, - Range { from: 'Ȗ', to: 'Ȗ', mapping: Mapped("ȗ") }, - Range { from: 'ȗ', to: 'ȗ', mapping: Valid }, - Range { from: 'Ș', to: 'Ș', mapping: Mapped("ș") }, - Range { from: 'ș', to: 'ș', mapping: Valid }, - Range { from: 'Ț', to: 'Ț', mapping: Mapped("ț") }, - Range { from: 'ț', to: 'ț', mapping: Valid }, - Range { from: 'Ȝ', to: 'Ȝ', mapping: Mapped("ȝ") }, - Range { from: 'ȝ', to: 'ȝ', mapping: Valid }, - Range { from: 'Ȟ', to: 'Ȟ', mapping: Mapped("ȟ") }, - Range { from: 'ȟ', to: 'ȟ', mapping: Valid }, - Range { from: 'Ƞ', to: 'Ƞ', mapping: Mapped("ƞ") }, - Range { from: 'ȡ', to: 'ȡ', mapping: Valid }, - Range { from: 'Ȣ', to: 'Ȣ', mapping: Mapped("ȣ") }, - Range { from: 'ȣ', to: 'ȣ', mapping: Valid }, - Range { from: 'Ȥ', to: 'Ȥ', mapping: Mapped("ȥ") }, - Range { from: 'ȥ', to: 'ȥ', mapping: Valid }, - Range { from: 'Ȧ', to: 'Ȧ', mapping: Mapped("ȧ") }, - Range { from: 'ȧ', to: 'ȧ', mapping: Valid }, - Range { from: 'Ȩ', to: 'Ȩ', mapping: Mapped("ȩ") }, - Range { from: 'ȩ', to: 'ȩ', mapping: Valid }, - Range { from: 'Ȫ', to: 'Ȫ', mapping: Mapped("ȫ") }, - Range { from: 'ȫ', to: 'ȫ', mapping: Valid }, - Range { from: 'Ȭ', to: 'Ȭ', mapping: Mapped("ȭ") }, - Range { from: 'ȭ', to: 'ȭ', mapping: Valid }, - Range { from: 'Ȯ', to: 'Ȯ', mapping: Mapped("ȯ") }, - Range { from: 'ȯ', to: 'ȯ', mapping: Valid }, - Range { from: 'Ȱ', to: 'Ȱ', mapping: Mapped("ȱ") }, - Range { from: 'ȱ', to: 'ȱ', mapping: Valid }, - Range { from: 'Ȳ', to: 'Ȳ', mapping: Mapped("ȳ") }, - Range { from: 'ȳ', to: 'ȳ', mapping: Valid }, - Range { from: 'ȴ', to: 'ȶ', mapping: Valid }, - Range { from: 'ȷ', to: 'ȹ', mapping: Valid }, - Range { from: 'Ⱥ', to: 'Ⱥ', mapping: Mapped("ⱥ") }, - Range { from: 'Ȼ', to: 'Ȼ', mapping: Mapped("ȼ") }, - Range { from: 'ȼ', to: 'ȼ', mapping: Valid }, - Range { from: 'Ƚ', to: 'Ƚ', mapping: Mapped("ƚ") }, - Range { from: 'Ⱦ', to: 'Ⱦ', mapping: Mapped("ⱦ") }, - Range { from: 'ȿ', to: 'ɀ', mapping: Valid }, - Range { from: 'Ɂ', to: 'Ɂ', mapping: Mapped("ɂ") }, - Range { from: 'ɂ', to: 'ɂ', mapping: Valid }, - Range { from: 'Ƀ', to: 'Ƀ', mapping: Mapped("ƀ") }, - Range { from: 'Ʉ', to: 'Ʉ', mapping: Mapped("ʉ") }, - Range { from: 'Ʌ', to: 'Ʌ', mapping: Mapped("ʌ") }, - Range { from: 'Ɇ', to: 'Ɇ', mapping: Mapped("ɇ") }, - Range { from: 'ɇ', to: 'ɇ', mapping: Valid }, - Range { from: 'Ɉ', to: 'Ɉ', mapping: Mapped("ɉ") }, - Range { from: 'ɉ', to: 'ɉ', mapping: Valid }, - Range { from: 'Ɋ', to: 'Ɋ', mapping: Mapped("ɋ") }, - Range { from: 'ɋ', to: 'ɋ', mapping: Valid }, - Range { from: 'Ɍ', to: 'Ɍ', mapping: Mapped("ɍ") }, - Range { from: 'ɍ', to: 'ɍ', mapping: Valid }, - Range { from: 'Ɏ', to: 'Ɏ', mapping: Mapped("ɏ") }, - Range { from: 'ɏ', to: 'ɏ', mapping: Valid }, - Range { from: 'ɐ', to: 'ʨ', mapping: Valid }, - Range { from: 'ʩ', to: 'ʭ', mapping: Valid }, - Range { from: 'ʮ', to: 'ʯ', mapping: Valid }, - Range { from: 'ʰ', to: 'ʰ', mapping: Mapped("h") }, - Range { from: 'ʱ', to: 'ʱ', mapping: Mapped("ɦ") }, - Range { from: 'ʲ', to: 'ʲ', mapping: Mapped("j") }, - Range { from: 'ʳ', to: 'ʳ', mapping: Mapped("r") }, - Range { from: 'ʴ', to: 'ʴ', mapping: Mapped("ɹ") }, - Range { from: 'ʵ', to: 'ʵ', mapping: Mapped("ɻ") }, - Range { from: 'ʶ', to: 'ʶ', mapping: Mapped("ʁ") }, - Range { from: 'ʷ', to: 'ʷ', mapping: Mapped("w") }, - Range { from: 'ʸ', to: 'ʸ', mapping: Mapped("y") }, - Range { from: 'ʹ', to: 'ˁ', mapping: Valid }, - Range { from: '˂', to: '˅', mapping: Valid }, - Range { from: 'ˆ', to: 'ˑ', mapping: Valid }, - Range { from: '˒', to: '˗', mapping: Valid }, - Range { from: '˘', to: '˘', mapping: DisallowedStd3Mapped(" ̆") }, - Range { from: '˙', to: '˙', mapping: DisallowedStd3Mapped(" ̇") }, - Range { from: '˚', to: '˚', mapping: DisallowedStd3Mapped(" ̊") }, - Range { from: '˛', to: '˛', mapping: DisallowedStd3Mapped(" ̨") }, - Range { from: '˜', to: '˜', mapping: DisallowedStd3Mapped(" ̃") }, - Range { from: '˝', to: '˝', mapping: DisallowedStd3Mapped(" ̋") }, - Range { from: '˞', to: '˞', mapping: Valid }, - Range { from: '˟', to: '˟', mapping: Valid }, - Range { from: 'ˠ', to: 'ˠ', mapping: Mapped("ɣ") }, - Range { from: 'ˡ', to: 'ˡ', mapping: Mapped("l") }, - Range { from: 'ˢ', to: 'ˢ', mapping: Mapped("s") }, - Range { from: 'ˣ', to: 'ˣ', mapping: Mapped("x") }, - Range { from: 'ˤ', to: 'ˤ', mapping: Mapped("ʕ") }, - Range { from: '˥', to: '˩', mapping: Valid }, - Range { from: '˪', to: '˫', mapping: Valid }, - Range { from: 'ˬ', to: 'ˬ', mapping: Valid }, - Range { from: '˭', to: '˭', mapping: Valid }, - Range { from: 'ˮ', to: 'ˮ', mapping: Valid }, - Range { from: '˯', to: '˿', mapping: Valid }, - Range { from: '̀', to: '̿', mapping: Valid }, - Range { from: '̀', to: '̀', mapping: Mapped("̀") }, - Range { from: '́', to: '́', mapping: Mapped("́") }, - Range { from: '͂', to: '͂', mapping: Valid }, - Range { from: '̓', to: '̓', mapping: Mapped("̓") }, - Range { from: '̈́', to: '̈́', mapping: Mapped("̈́") }, - Range { from: 'ͅ', to: 'ͅ', mapping: Mapped("ι") }, - Range { from: '͆', to: '͎', mapping: Valid }, - Range { from: '͏', to: '͏', mapping: Ignored }, - Range { from: '͐', to: '͗', mapping: Valid }, - Range { from: '͘', to: '͜', mapping: Valid }, - Range { from: '͝', to: '͟', mapping: Valid }, - Range { from: '͠', to: '͡', mapping: Valid }, - Range { from: '͢', to: '͢', mapping: Valid }, - Range { from: 'ͣ', to: 'ͯ', mapping: Valid }, - Range { from: 'Ͱ', to: 'Ͱ', mapping: Mapped("ͱ") }, - Range { from: 'ͱ', to: 'ͱ', mapping: Valid }, - Range { from: 'Ͳ', to: 'Ͳ', mapping: Mapped("ͳ") }, - Range { from: 'ͳ', to: 'ͳ', mapping: Valid }, - Range { from: 'ʹ', to: 'ʹ', mapping: Mapped("ʹ") }, - Range { from: '͵', to: '͵', mapping: Valid }, - Range { from: 'Ͷ', to: 'Ͷ', mapping: Mapped("ͷ") }, - Range { from: 'ͷ', to: 'ͷ', mapping: Valid }, - Range { from: '͸', to: '͹', mapping: Disallowed }, - Range { from: 'ͺ', to: 'ͺ', mapping: DisallowedStd3Mapped(" ι") }, - Range { from: 'ͻ', to: 'ͽ', mapping: Valid }, - Range { from: ';', to: ';', mapping: DisallowedStd3Mapped(";") }, - Range { from: 'Ϳ', to: 'Ϳ', mapping: Mapped("ϳ") }, - Range { from: '΀', to: '΃', mapping: Disallowed }, - Range { from: '΄', to: '΄', mapping: DisallowedStd3Mapped(" ́") }, - Range { from: '΅', to: '΅', mapping: DisallowedStd3Mapped(" ̈́") }, - Range { from: 'Ά', to: 'Ά', mapping: Mapped("ά") }, - Range { from: '·', to: '·', mapping: Mapped("·") }, - Range { from: 'Έ', to: 'Έ', mapping: Mapped("έ") }, - Range { from: 'Ή', to: 'Ή', mapping: Mapped("ή") }, - Range { from: 'Ί', to: 'Ί', mapping: Mapped("ί") }, - Range { from: '΋', to: '΋', mapping: Disallowed }, - Range { from: 'Ό', to: 'Ό', mapping: Mapped("ό") }, - Range { from: '΍', to: '΍', mapping: Disallowed }, - Range { from: 'Ύ', to: 'Ύ', mapping: Mapped("ύ") }, - Range { from: 'Ώ', to: 'Ώ', mapping: Mapped("ώ") }, - Range { from: 'ΐ', to: 'ΐ', mapping: Valid }, - Range { from: 'Α', to: 'Α', mapping: Mapped("α") }, - Range { from: 'Β', to: 'Β', mapping: Mapped("β") }, - Range { from: 'Γ', to: 'Γ', mapping: Mapped("γ") }, - Range { from: 'Δ', to: 'Δ', mapping: Mapped("δ") }, - Range { from: 'Ε', to: 'Ε', mapping: Mapped("ε") }, - Range { from: 'Ζ', to: 'Ζ', mapping: Mapped("ζ") }, - Range { from: 'Η', to: 'Η', mapping: Mapped("η") }, - Range { from: 'Θ', to: 'Θ', mapping: Mapped("θ") }, - Range { from: 'Ι', to: 'Ι', mapping: Mapped("ι") }, - Range { from: 'Κ', to: 'Κ', mapping: Mapped("κ") }, - Range { from: 'Λ', to: 'Λ', mapping: Mapped("λ") }, - Range { from: 'Μ', to: 'Μ', mapping: Mapped("μ") }, - Range { from: 'Ν', to: 'Ν', mapping: Mapped("ν") }, - Range { from: 'Ξ', to: 'Ξ', mapping: Mapped("ξ") }, - Range { from: 'Ο', to: 'Ο', mapping: Mapped("ο") }, - Range { from: 'Π', to: 'Π', mapping: Mapped("π") }, - Range { from: 'Ρ', to: 'Ρ', mapping: Mapped("ρ") }, - Range { from: '΢', to: '΢', mapping: Disallowed }, - Range { from: 'Σ', to: 'Σ', mapping: Mapped("σ") }, - Range { from: 'Τ', to: 'Τ', mapping: Mapped("τ") }, - Range { from: 'Υ', to: 'Υ', mapping: Mapped("υ") }, - Range { from: 'Φ', to: 'Φ', mapping: Mapped("φ") }, - Range { from: 'Χ', to: 'Χ', mapping: Mapped("χ") }, - Range { from: 'Ψ', to: 'Ψ', mapping: Mapped("ψ") }, - Range { from: 'Ω', to: 'Ω', mapping: Mapped("ω") }, - Range { from: 'Ϊ', to: 'Ϊ', mapping: Mapped("ϊ") }, - Range { from: 'Ϋ', to: 'Ϋ', mapping: Mapped("ϋ") }, - Range { from: 'ά', to: 'ρ', mapping: Valid }, - Range { from: 'ς', to: 'ς', mapping: Deviation("σ") }, - Range { from: 'σ', to: 'ώ', mapping: Valid }, - Range { from: 'Ϗ', to: 'Ϗ', mapping: Mapped("ϗ") }, - Range { from: 'ϐ', to: 'ϐ', mapping: Mapped("β") }, - Range { from: 'ϑ', to: 'ϑ', mapping: Mapped("θ") }, - Range { from: 'ϒ', to: 'ϒ', mapping: Mapped("υ") }, - Range { from: 'ϓ', to: 'ϓ', mapping: Mapped("ύ") }, - Range { from: 'ϔ', to: 'ϔ', mapping: Mapped("ϋ") }, - Range { from: 'ϕ', to: 'ϕ', mapping: Mapped("φ") }, - Range { from: 'ϖ', to: 'ϖ', mapping: Mapped("π") }, - Range { from: 'ϗ', to: 'ϗ', mapping: Valid }, - Range { from: 'Ϙ', to: 'Ϙ', mapping: Mapped("ϙ") }, - Range { from: 'ϙ', to: 'ϙ', mapping: Valid }, - Range { from: 'Ϛ', to: 'Ϛ', mapping: Mapped("ϛ") }, - Range { from: 'ϛ', to: 'ϛ', mapping: Valid }, - Range { from: 'Ϝ', to: 'Ϝ', mapping: Mapped("ϝ") }, - Range { from: 'ϝ', to: 'ϝ', mapping: Valid }, - Range { from: 'Ϟ', to: 'Ϟ', mapping: Mapped("ϟ") }, - Range { from: 'ϟ', to: 'ϟ', mapping: Valid }, - Range { from: 'Ϡ', to: 'Ϡ', mapping: Mapped("ϡ") }, - Range { from: 'ϡ', to: 'ϡ', mapping: Valid }, - Range { from: 'Ϣ', to: 'Ϣ', mapping: Mapped("ϣ") }, - Range { from: 'ϣ', to: 'ϣ', mapping: Valid }, - Range { from: 'Ϥ', to: 'Ϥ', mapping: Mapped("ϥ") }, - Range { from: 'ϥ', to: 'ϥ', mapping: Valid }, - Range { from: 'Ϧ', to: 'Ϧ', mapping: Mapped("ϧ") }, - Range { from: 'ϧ', to: 'ϧ', mapping: Valid }, - Range { from: 'Ϩ', to: 'Ϩ', mapping: Mapped("ϩ") }, - Range { from: 'ϩ', to: 'ϩ', mapping: Valid }, - Range { from: 'Ϫ', to: 'Ϫ', mapping: Mapped("ϫ") }, - Range { from: 'ϫ', to: 'ϫ', mapping: Valid }, - Range { from: 'Ϭ', to: 'Ϭ', mapping: Mapped("ϭ") }, - Range { from: 'ϭ', to: 'ϭ', mapping: Valid }, - Range { from: 'Ϯ', to: 'Ϯ', mapping: Mapped("ϯ") }, - Range { from: 'ϯ', to: 'ϯ', mapping: Valid }, - Range { from: 'ϰ', to: 'ϰ', mapping: Mapped("κ") }, - Range { from: 'ϱ', to: 'ϱ', mapping: Mapped("ρ") }, - Range { from: 'ϲ', to: 'ϲ', mapping: Mapped("σ") }, - Range { from: 'ϳ', to: 'ϳ', mapping: Valid }, - Range { from: 'ϴ', to: 'ϴ', mapping: Mapped("θ") }, - Range { from: 'ϵ', to: 'ϵ', mapping: Mapped("ε") }, - Range { from: '϶', to: '϶', mapping: Valid }, - Range { from: 'Ϸ', to: 'Ϸ', mapping: Mapped("ϸ") }, - Range { from: 'ϸ', to: 'ϸ', mapping: Valid }, - Range { from: 'Ϲ', to: 'Ϲ', mapping: Mapped("σ") }, - Range { from: 'Ϻ', to: 'Ϻ', mapping: Mapped("ϻ") }, - Range { from: 'ϻ', to: 'ϻ', mapping: Valid }, - Range { from: 'ϼ', to: 'ϼ', mapping: Valid }, - Range { from: 'Ͻ', to: 'Ͻ', mapping: Mapped("ͻ") }, - Range { from: 'Ͼ', to: 'Ͼ', mapping: Mapped("ͼ") }, - Range { from: 'Ͽ', to: 'Ͽ', mapping: Mapped("ͽ") }, - Range { from: 'Ѐ', to: 'Ѐ', mapping: Mapped("ѐ") }, - Range { from: 'Ё', to: 'Ё', mapping: Mapped("ё") }, - Range { from: 'Ђ', to: 'Ђ', mapping: Mapped("ђ") }, - Range { from: 'Ѓ', to: 'Ѓ', mapping: Mapped("ѓ") }, - Range { from: 'Є', to: 'Є', mapping: Mapped("є") }, - Range { from: 'Ѕ', to: 'Ѕ', mapping: Mapped("ѕ") }, - Range { from: 'І', to: 'І', mapping: Mapped("і") }, - Range { from: 'Ї', to: 'Ї', mapping: Mapped("ї") }, - Range { from: 'Ј', to: 'Ј', mapping: Mapped("ј") }, - Range { from: 'Љ', to: 'Љ', mapping: Mapped("љ") }, - Range { from: 'Њ', to: 'Њ', mapping: Mapped("њ") }, - Range { from: 'Ћ', to: 'Ћ', mapping: Mapped("ћ") }, - Range { from: 'Ќ', to: 'Ќ', mapping: Mapped("ќ") }, - Range { from: 'Ѝ', to: 'Ѝ', mapping: Mapped("ѝ") }, - Range { from: 'Ў', to: 'Ў', mapping: Mapped("ў") }, - Range { from: 'Џ', to: 'Џ', mapping: Mapped("џ") }, - Range { from: 'А', to: 'А', mapping: Mapped("а") }, - Range { from: 'Б', to: 'Б', mapping: Mapped("б") }, - Range { from: 'В', to: 'В', mapping: Mapped("в") }, - Range { from: 'Г', to: 'Г', mapping: Mapped("г") }, - Range { from: 'Д', to: 'Д', mapping: Mapped("д") }, - Range { from: 'Е', to: 'Е', mapping: Mapped("е") }, - Range { from: 'Ж', to: 'Ж', mapping: Mapped("ж") }, - Range { from: 'З', to: 'З', mapping: Mapped("з") }, - Range { from: 'И', to: 'И', mapping: Mapped("и") }, - Range { from: 'Й', to: 'Й', mapping: Mapped("й") }, - Range { from: 'К', to: 'К', mapping: Mapped("к") }, - Range { from: 'Л', to: 'Л', mapping: Mapped("л") }, - Range { from: 'М', to: 'М', mapping: Mapped("м") }, - Range { from: 'Н', to: 'Н', mapping: Mapped("н") }, - Range { from: 'О', to: 'О', mapping: Mapped("о") }, - Range { from: 'П', to: 'П', mapping: Mapped("п") }, - Range { from: 'Р', to: 'Р', mapping: Mapped("р") }, - Range { from: 'С', to: 'С', mapping: Mapped("с") }, - Range { from: 'Т', to: 'Т', mapping: Mapped("т") }, - Range { from: 'У', to: 'У', mapping: Mapped("у") }, - Range { from: 'Ф', to: 'Ф', mapping: Mapped("ф") }, - Range { from: 'Х', to: 'Х', mapping: Mapped("х") }, - Range { from: 'Ц', to: 'Ц', mapping: Mapped("ц") }, - Range { from: 'Ч', to: 'Ч', mapping: Mapped("ч") }, - Range { from: 'Ш', to: 'Ш', mapping: Mapped("ш") }, - Range { from: 'Щ', to: 'Щ', mapping: Mapped("щ") }, - Range { from: 'Ъ', to: 'Ъ', mapping: Mapped("ъ") }, - Range { from: 'Ы', to: 'Ы', mapping: Mapped("ы") }, - Range { from: 'Ь', to: 'Ь', mapping: Mapped("ь") }, - Range { from: 'Э', to: 'Э', mapping: Mapped("э") }, - Range { from: 'Ю', to: 'Ю', mapping: Mapped("ю") }, - Range { from: 'Я', to: 'Я', mapping: Mapped("я") }, - Range { from: 'а', to: 'я', mapping: Valid }, - Range { from: 'ѐ', to: 'ѐ', mapping: Valid }, - Range { from: 'ё', to: 'ќ', mapping: Valid }, - Range { from: 'ѝ', to: 'ѝ', mapping: Valid }, - Range { from: 'ў', to: 'џ', mapping: Valid }, - Range { from: 'Ѡ', to: 'Ѡ', mapping: Mapped("ѡ") }, - Range { from: 'ѡ', to: 'ѡ', mapping: Valid }, - Range { from: 'Ѣ', to: 'Ѣ', mapping: Mapped("ѣ") }, - Range { from: 'ѣ', to: 'ѣ', mapping: Valid }, - Range { from: 'Ѥ', to: 'Ѥ', mapping: Mapped("ѥ") }, - Range { from: 'ѥ', to: 'ѥ', mapping: Valid }, - Range { from: 'Ѧ', to: 'Ѧ', mapping: Mapped("ѧ") }, - Range { from: 'ѧ', to: 'ѧ', mapping: Valid }, - Range { from: 'Ѩ', to: 'Ѩ', mapping: Mapped("ѩ") }, - Range { from: 'ѩ', to: 'ѩ', mapping: Valid }, - Range { from: 'Ѫ', to: 'Ѫ', mapping: Mapped("ѫ") }, - Range { from: 'ѫ', to: 'ѫ', mapping: Valid }, - Range { from: 'Ѭ', to: 'Ѭ', mapping: Mapped("ѭ") }, - Range { from: 'ѭ', to: 'ѭ', mapping: Valid }, - Range { from: 'Ѯ', to: 'Ѯ', mapping: Mapped("ѯ") }, - Range { from: 'ѯ', to: 'ѯ', mapping: Valid }, - Range { from: 'Ѱ', to: 'Ѱ', mapping: Mapped("ѱ") }, - Range { from: 'ѱ', to: 'ѱ', mapping: Valid }, - Range { from: 'Ѳ', to: 'Ѳ', mapping: Mapped("ѳ") }, - Range { from: 'ѳ', to: 'ѳ', mapping: Valid }, - Range { from: 'Ѵ', to: 'Ѵ', mapping: Mapped("ѵ") }, - Range { from: 'ѵ', to: 'ѵ', mapping: Valid }, - Range { from: 'Ѷ', to: 'Ѷ', mapping: Mapped("ѷ") }, - Range { from: 'ѷ', to: 'ѷ', mapping: Valid }, - Range { from: 'Ѹ', to: 'Ѹ', mapping: Mapped("ѹ") }, - Range { from: 'ѹ', to: 'ѹ', mapping: Valid }, - Range { from: 'Ѻ', to: 'Ѻ', mapping: Mapped("ѻ") }, - Range { from: 'ѻ', to: 'ѻ', mapping: Valid }, - Range { from: 'Ѽ', to: 'Ѽ', mapping: Mapped("ѽ") }, - Range { from: 'ѽ', to: 'ѽ', mapping: Valid }, - Range { from: 'Ѿ', to: 'Ѿ', mapping: Mapped("ѿ") }, - Range { from: 'ѿ', to: 'ѿ', mapping: Valid }, - Range { from: 'Ҁ', to: 'Ҁ', mapping: Mapped("ҁ") }, - Range { from: 'ҁ', to: 'ҁ', mapping: Valid }, - Range { from: '҂', to: '҂', mapping: Valid }, - Range { from: '҃', to: '҆', mapping: Valid }, - Range { from: '҇', to: '҇', mapping: Valid }, - Range { from: '҈', to: '҉', mapping: Valid }, - Range { from: 'Ҋ', to: 'Ҋ', mapping: Mapped("ҋ") }, - Range { from: 'ҋ', to: 'ҋ', mapping: Valid }, - Range { from: 'Ҍ', to: 'Ҍ', mapping: Mapped("ҍ") }, - Range { from: 'ҍ', to: 'ҍ', mapping: Valid }, - Range { from: 'Ҏ', to: 'Ҏ', mapping: Mapped("ҏ") }, - Range { from: 'ҏ', to: 'ҏ', mapping: Valid }, - Range { from: 'Ґ', to: 'Ґ', mapping: Mapped("ґ") }, - Range { from: 'ґ', to: 'ґ', mapping: Valid }, - Range { from: 'Ғ', to: 'Ғ', mapping: Mapped("ғ") }, - Range { from: 'ғ', to: 'ғ', mapping: Valid }, - Range { from: 'Ҕ', to: 'Ҕ', mapping: Mapped("ҕ") }, - Range { from: 'ҕ', to: 'ҕ', mapping: Valid }, - Range { from: 'Җ', to: 'Җ', mapping: Mapped("җ") }, - Range { from: 'җ', to: 'җ', mapping: Valid }, - Range { from: 'Ҙ', to: 'Ҙ', mapping: Mapped("ҙ") }, - Range { from: 'ҙ', to: 'ҙ', mapping: Valid }, - Range { from: 'Қ', to: 'Қ', mapping: Mapped("қ") }, - Range { from: 'қ', to: 'қ', mapping: Valid }, - Range { from: 'Ҝ', to: 'Ҝ', mapping: Mapped("ҝ") }, - Range { from: 'ҝ', to: 'ҝ', mapping: Valid }, - Range { from: 'Ҟ', to: 'Ҟ', mapping: Mapped("ҟ") }, - Range { from: 'ҟ', to: 'ҟ', mapping: Valid }, - Range { from: 'Ҡ', to: 'Ҡ', mapping: Mapped("ҡ") }, - Range { from: 'ҡ', to: 'ҡ', mapping: Valid }, - Range { from: 'Ң', to: 'Ң', mapping: Mapped("ң") }, - Range { from: 'ң', to: 'ң', mapping: Valid }, - Range { from: 'Ҥ', to: 'Ҥ', mapping: Mapped("ҥ") }, - Range { from: 'ҥ', to: 'ҥ', mapping: Valid }, - Range { from: 'Ҧ', to: 'Ҧ', mapping: Mapped("ҧ") }, - Range { from: 'ҧ', to: 'ҧ', mapping: Valid }, - Range { from: 'Ҩ', to: 'Ҩ', mapping: Mapped("ҩ") }, - Range { from: 'ҩ', to: 'ҩ', mapping: Valid }, - Range { from: 'Ҫ', to: 'Ҫ', mapping: Mapped("ҫ") }, - Range { from: 'ҫ', to: 'ҫ', mapping: Valid }, - Range { from: 'Ҭ', to: 'Ҭ', mapping: Mapped("ҭ") }, - Range { from: 'ҭ', to: 'ҭ', mapping: Valid }, - Range { from: 'Ү', to: 'Ү', mapping: Mapped("ү") }, - Range { from: 'ү', to: 'ү', mapping: Valid }, - Range { from: 'Ұ', to: 'Ұ', mapping: Mapped("ұ") }, - Range { from: 'ұ', to: 'ұ', mapping: Valid }, - Range { from: 'Ҳ', to: 'Ҳ', mapping: Mapped("ҳ") }, - Range { from: 'ҳ', to: 'ҳ', mapping: Valid }, - Range { from: 'Ҵ', to: 'Ҵ', mapping: Mapped("ҵ") }, - Range { from: 'ҵ', to: 'ҵ', mapping: Valid }, - Range { from: 'Ҷ', to: 'Ҷ', mapping: Mapped("ҷ") }, - Range { from: 'ҷ', to: 'ҷ', mapping: Valid }, - Range { from: 'Ҹ', to: 'Ҹ', mapping: Mapped("ҹ") }, - Range { from: 'ҹ', to: 'ҹ', mapping: Valid }, - Range { from: 'Һ', to: 'Һ', mapping: Mapped("һ") }, - Range { from: 'һ', to: 'һ', mapping: Valid }, - Range { from: 'Ҽ', to: 'Ҽ', mapping: Mapped("ҽ") }, - Range { from: 'ҽ', to: 'ҽ', mapping: Valid }, - Range { from: 'Ҿ', to: 'Ҿ', mapping: Mapped("ҿ") }, - Range { from: 'ҿ', to: 'ҿ', mapping: Valid }, - Range { from: 'Ӏ', to: 'Ӏ', mapping: Disallowed }, - Range { from: 'Ӂ', to: 'Ӂ', mapping: Mapped("ӂ") }, - Range { from: 'ӂ', to: 'ӂ', mapping: Valid }, - Range { from: 'Ӄ', to: 'Ӄ', mapping: Mapped("ӄ") }, - Range { from: 'ӄ', to: 'ӄ', mapping: Valid }, - Range { from: 'Ӆ', to: 'Ӆ', mapping: Mapped("ӆ") }, - Range { from: 'ӆ', to: 'ӆ', mapping: Valid }, - Range { from: 'Ӈ', to: 'Ӈ', mapping: Mapped("ӈ") }, - Range { from: 'ӈ', to: 'ӈ', mapping: Valid }, - Range { from: 'Ӊ', to: 'Ӊ', mapping: Mapped("ӊ") }, - Range { from: 'ӊ', to: 'ӊ', mapping: Valid }, - Range { from: 'Ӌ', to: 'Ӌ', mapping: Mapped("ӌ") }, - Range { from: 'ӌ', to: 'ӌ', mapping: Valid }, - Range { from: 'Ӎ', to: 'Ӎ', mapping: Mapped("ӎ") }, - Range { from: 'ӎ', to: 'ӎ', mapping: Valid }, - Range { from: 'ӏ', to: 'ӏ', mapping: Valid }, - Range { from: 'Ӑ', to: 'Ӑ', mapping: Mapped("ӑ") }, - Range { from: 'ӑ', to: 'ӑ', mapping: Valid }, - Range { from: 'Ӓ', to: 'Ӓ', mapping: Mapped("ӓ") }, - Range { from: 'ӓ', to: 'ӓ', mapping: Valid }, - Range { from: 'Ӕ', to: 'Ӕ', mapping: Mapped("ӕ") }, - Range { from: 'ӕ', to: 'ӕ', mapping: Valid }, - Range { from: 'Ӗ', to: 'Ӗ', mapping: Mapped("ӗ") }, - Range { from: 'ӗ', to: 'ӗ', mapping: Valid }, - Range { from: 'Ә', to: 'Ә', mapping: Mapped("ә") }, - Range { from: 'ә', to: 'ә', mapping: Valid }, - Range { from: 'Ӛ', to: 'Ӛ', mapping: Mapped("ӛ") }, - Range { from: 'ӛ', to: 'ӛ', mapping: Valid }, - Range { from: 'Ӝ', to: 'Ӝ', mapping: Mapped("ӝ") }, - Range { from: 'ӝ', to: 'ӝ', mapping: Valid }, - Range { from: 'Ӟ', to: 'Ӟ', mapping: Mapped("ӟ") }, - Range { from: 'ӟ', to: 'ӟ', mapping: Valid }, - Range { from: 'Ӡ', to: 'Ӡ', mapping: Mapped("ӡ") }, - Range { from: 'ӡ', to: 'ӡ', mapping: Valid }, - Range { from: 'Ӣ', to: 'Ӣ', mapping: Mapped("ӣ") }, - Range { from: 'ӣ', to: 'ӣ', mapping: Valid }, - Range { from: 'Ӥ', to: 'Ӥ', mapping: Mapped("ӥ") }, - Range { from: 'ӥ', to: 'ӥ', mapping: Valid }, - Range { from: 'Ӧ', to: 'Ӧ', mapping: Mapped("ӧ") }, - Range { from: 'ӧ', to: 'ӧ', mapping: Valid }, - Range { from: 'Ө', to: 'Ө', mapping: Mapped("ө") }, - Range { from: 'ө', to: 'ө', mapping: Valid }, - Range { from: 'Ӫ', to: 'Ӫ', mapping: Mapped("ӫ") }, - Range { from: 'ӫ', to: 'ӫ', mapping: Valid }, - Range { from: 'Ӭ', to: 'Ӭ', mapping: Mapped("ӭ") }, - Range { from: 'ӭ', to: 'ӭ', mapping: Valid }, - Range { from: 'Ӯ', to: 'Ӯ', mapping: Mapped("ӯ") }, - Range { from: 'ӯ', to: 'ӯ', mapping: Valid }, - Range { from: 'Ӱ', to: 'Ӱ', mapping: Mapped("ӱ") }, - Range { from: 'ӱ', to: 'ӱ', mapping: Valid }, - Range { from: 'Ӳ', to: 'Ӳ', mapping: Mapped("ӳ") }, - Range { from: 'ӳ', to: 'ӳ', mapping: Valid }, - Range { from: 'Ӵ', to: 'Ӵ', mapping: Mapped("ӵ") }, - Range { from: 'ӵ', to: 'ӵ', mapping: Valid }, - Range { from: 'Ӷ', to: 'Ӷ', mapping: Mapped("ӷ") }, - Range { from: 'ӷ', to: 'ӷ', mapping: Valid }, - Range { from: 'Ӹ', to: 'Ӹ', mapping: Mapped("ӹ") }, - Range { from: 'ӹ', to: 'ӹ', mapping: Valid }, - Range { from: 'Ӻ', to: 'Ӻ', mapping: Mapped("ӻ") }, - Range { from: 'ӻ', to: 'ӻ', mapping: Valid }, - Range { from: 'Ӽ', to: 'Ӽ', mapping: Mapped("ӽ") }, - Range { from: 'ӽ', to: 'ӽ', mapping: Valid }, - Range { from: 'Ӿ', to: 'Ӿ', mapping: Mapped("ӿ") }, - Range { from: 'ӿ', to: 'ӿ', mapping: Valid }, - Range { from: 'Ԁ', to: 'Ԁ', mapping: Mapped("ԁ") }, - Range { from: 'ԁ', to: 'ԁ', mapping: Valid }, - Range { from: 'Ԃ', to: 'Ԃ', mapping: Mapped("ԃ") }, - Range { from: 'ԃ', to: 'ԃ', mapping: Valid }, - Range { from: 'Ԅ', to: 'Ԅ', mapping: Mapped("ԅ") }, - Range { from: 'ԅ', to: 'ԅ', mapping: Valid }, - Range { from: 'Ԇ', to: 'Ԇ', mapping: Mapped("ԇ") }, - Range { from: 'ԇ', to: 'ԇ', mapping: Valid }, - Range { from: 'Ԉ', to: 'Ԉ', mapping: Mapped("ԉ") }, - Range { from: 'ԉ', to: 'ԉ', mapping: Valid }, - Range { from: 'Ԋ', to: 'Ԋ', mapping: Mapped("ԋ") }, - Range { from: 'ԋ', to: 'ԋ', mapping: Valid }, - Range { from: 'Ԍ', to: 'Ԍ', mapping: Mapped("ԍ") }, - Range { from: 'ԍ', to: 'ԍ', mapping: Valid }, - Range { from: 'Ԏ', to: 'Ԏ', mapping: Mapped("ԏ") }, - Range { from: 'ԏ', to: 'ԏ', mapping: Valid }, - Range { from: 'Ԑ', to: 'Ԑ', mapping: Mapped("ԑ") }, - Range { from: 'ԑ', to: 'ԑ', mapping: Valid }, - Range { from: 'Ԓ', to: 'Ԓ', mapping: Mapped("ԓ") }, - Range { from: 'ԓ', to: 'ԓ', mapping: Valid }, - Range { from: 'Ԕ', to: 'Ԕ', mapping: Mapped("ԕ") }, - Range { from: 'ԕ', to: 'ԕ', mapping: Valid }, - Range { from: 'Ԗ', to: 'Ԗ', mapping: Mapped("ԗ") }, - Range { from: 'ԗ', to: 'ԗ', mapping: Valid }, - Range { from: 'Ԙ', to: 'Ԙ', mapping: Mapped("ԙ") }, - Range { from: 'ԙ', to: 'ԙ', mapping: Valid }, - Range { from: 'Ԛ', to: 'Ԛ', mapping: Mapped("ԛ") }, - Range { from: 'ԛ', to: 'ԛ', mapping: Valid }, - Range { from: 'Ԝ', to: 'Ԝ', mapping: Mapped("ԝ") }, - Range { from: 'ԝ', to: 'ԝ', mapping: Valid }, - Range { from: 'Ԟ', to: 'Ԟ', mapping: Mapped("ԟ") }, - Range { from: 'ԟ', to: 'ԟ', mapping: Valid }, - Range { from: 'Ԡ', to: 'Ԡ', mapping: Mapped("ԡ") }, - Range { from: 'ԡ', to: 'ԡ', mapping: Valid }, - Range { from: 'Ԣ', to: 'Ԣ', mapping: Mapped("ԣ") }, - Range { from: 'ԣ', to: 'ԣ', mapping: Valid }, - Range { from: 'Ԥ', to: 'Ԥ', mapping: Mapped("ԥ") }, - Range { from: 'ԥ', to: 'ԥ', mapping: Valid }, - Range { from: 'Ԧ', to: 'Ԧ', mapping: Mapped("ԧ") }, - Range { from: 'ԧ', to: 'ԧ', mapping: Valid }, - Range { from: 'Ԩ', to: 'Ԩ', mapping: Mapped("ԩ") }, - Range { from: 'ԩ', to: 'ԩ', mapping: Valid }, - Range { from: 'Ԫ', to: 'Ԫ', mapping: Mapped("ԫ") }, - Range { from: 'ԫ', to: 'ԫ', mapping: Valid }, - Range { from: 'Ԭ', to: 'Ԭ', mapping: Mapped("ԭ") }, - Range { from: 'ԭ', to: 'ԭ', mapping: Valid }, - Range { from: 'Ԯ', to: 'Ԯ', mapping: Mapped("ԯ") }, - Range { from: 'ԯ', to: 'ԯ', mapping: Valid }, - Range { from: '԰', to: '԰', mapping: Disallowed }, - Range { from: 'Ա', to: 'Ա', mapping: Mapped("ա") }, - Range { from: 'Բ', to: 'Բ', mapping: Mapped("բ") }, - Range { from: 'Գ', to: 'Գ', mapping: Mapped("գ") }, - Range { from: 'Դ', to: 'Դ', mapping: Mapped("դ") }, - Range { from: 'Ե', to: 'Ե', mapping: Mapped("ե") }, - Range { from: 'Զ', to: 'Զ', mapping: Mapped("զ") }, - Range { from: 'Է', to: 'Է', mapping: Mapped("է") }, - Range { from: 'Ը', to: 'Ը', mapping: Mapped("ը") }, - Range { from: 'Թ', to: 'Թ', mapping: Mapped("թ") }, - Range { from: 'Ժ', to: 'Ժ', mapping: Mapped("ժ") }, - Range { from: 'Ի', to: 'Ի', mapping: Mapped("ի") }, - Range { from: 'Լ', to: 'Լ', mapping: Mapped("լ") }, - Range { from: 'Խ', to: 'Խ', mapping: Mapped("խ") }, - Range { from: 'Ծ', to: 'Ծ', mapping: Mapped("ծ") }, - Range { from: 'Կ', to: 'Կ', mapping: Mapped("կ") }, - Range { from: 'Հ', to: 'Հ', mapping: Mapped("հ") }, - Range { from: 'Ձ', to: 'Ձ', mapping: Mapped("ձ") }, - Range { from: 'Ղ', to: 'Ղ', mapping: Mapped("ղ") }, - Range { from: 'Ճ', to: 'Ճ', mapping: Mapped("ճ") }, - Range { from: 'Մ', to: 'Մ', mapping: Mapped("մ") }, - Range { from: 'Յ', to: 'Յ', mapping: Mapped("յ") }, - Range { from: 'Ն', to: 'Ն', mapping: Mapped("ն") }, - Range { from: 'Շ', to: 'Շ', mapping: Mapped("շ") }, - Range { from: 'Ո', to: 'Ո', mapping: Mapped("ո") }, - Range { from: 'Չ', to: 'Չ', mapping: Mapped("չ") }, - Range { from: 'Պ', to: 'Պ', mapping: Mapped("պ") }, - Range { from: 'Ջ', to: 'Ջ', mapping: Mapped("ջ") }, - Range { from: 'Ռ', to: 'Ռ', mapping: Mapped("ռ") }, - Range { from: 'Ս', to: 'Ս', mapping: Mapped("ս") }, - Range { from: 'Վ', to: 'Վ', mapping: Mapped("վ") }, - Range { from: 'Տ', to: 'Տ', mapping: Mapped("տ") }, - Range { from: 'Ր', to: 'Ր', mapping: Mapped("ր") }, - Range { from: 'Ց', to: 'Ց', mapping: Mapped("ց") }, - Range { from: 'Ւ', to: 'Ւ', mapping: Mapped("ւ") }, - Range { from: 'Փ', to: 'Փ', mapping: Mapped("փ") }, - Range { from: 'Ք', to: 'Ք', mapping: Mapped("ք") }, - Range { from: 'Օ', to: 'Օ', mapping: Mapped("օ") }, - Range { from: 'Ֆ', to: 'Ֆ', mapping: Mapped("ֆ") }, - Range { from: '՗', to: '՘', mapping: Disallowed }, - Range { from: 'ՙ', to: 'ՙ', mapping: Valid }, - Range { from: '՚', to: '՟', mapping: Valid }, - Range { from: 'ՠ', to: 'ՠ', mapping: Disallowed }, - Range { from: 'ա', to: 'ֆ', mapping: Valid }, - Range { from: 'և', to: 'և', mapping: Mapped("եւ") }, - Range { from: 'ֈ', to: 'ֈ', mapping: Disallowed }, - Range { from: '։', to: '։', mapping: Valid }, - Range { from: '֊', to: '֊', mapping: Valid }, - Range { from: '֋', to: '֌', mapping: Disallowed }, - Range { from: '֍', to: '֎', mapping: Valid }, - Range { from: '֏', to: '֏', mapping: Valid }, - Range { from: '֐', to: '֐', mapping: Disallowed }, - Range { from: '֑', to: '֡', mapping: Valid }, - Range { from: '֢', to: '֢', mapping: Valid }, - Range { from: '֣', to: '֯', mapping: Valid }, - Range { from: 'ְ', to: 'ֹ', mapping: Valid }, - Range { from: 'ֺ', to: 'ֺ', mapping: Valid }, - Range { from: 'ֻ', to: 'ֽ', mapping: Valid }, - Range { from: '־', to: '־', mapping: Valid }, - Range { from: 'ֿ', to: 'ֿ', mapping: Valid }, - Range { from: '׀', to: '׀', mapping: Valid }, - Range { from: 'ׁ', to: 'ׂ', mapping: Valid }, - Range { from: '׃', to: '׃', mapping: Valid }, - Range { from: 'ׄ', to: 'ׄ', mapping: Valid }, - Range { from: 'ׅ', to: 'ׅ', mapping: Valid }, - Range { from: '׆', to: '׆', mapping: Valid }, - Range { from: 'ׇ', to: 'ׇ', mapping: Valid }, - Range { from: '׈', to: '׏', mapping: Disallowed }, - Range { from: 'א', to: 'ת', mapping: Valid }, - Range { from: '׫', to: 'ׯ', mapping: Disallowed }, - Range { from: 'װ', to: '״', mapping: Valid }, - Range { from: '׵', to: '׿', mapping: Disallowed }, - Range { from: '؀', to: '؃', mapping: Disallowed }, - Range { from: '؄', to: '؄', mapping: Disallowed }, - Range { from: '؅', to: '؅', mapping: Disallowed }, - Range { from: '؆', to: '؊', mapping: Valid }, - Range { from: '؋', to: '؋', mapping: Valid }, - Range { from: '،', to: '،', mapping: Valid }, - Range { from: '؍', to: '؏', mapping: Valid }, - Range { from: 'ؐ', to: 'ؕ', mapping: Valid }, - Range { from: 'ؖ', to: 'ؚ', mapping: Valid }, - Range { from: '؛', to: '؛', mapping: Valid }, - Range { from: '؜', to: '؜', mapping: Disallowed }, - Range { from: '؝', to: '؝', mapping: Disallowed }, - Range { from: '؞', to: '؞', mapping: Valid }, - Range { from: '؟', to: '؟', mapping: Valid }, - Range { from: 'ؠ', to: 'ؠ', mapping: Valid }, - Range { from: 'ء', to: 'غ', mapping: Valid }, - Range { from: 'ػ', to: 'ؿ', mapping: Valid }, - Range { from: 'ـ', to: 'ـ', mapping: Valid }, - Range { from: 'ف', to: 'ْ', mapping: Valid }, - Range { from: 'ٓ', to: 'ٕ', mapping: Valid }, - Range { from: 'ٖ', to: '٘', mapping: Valid }, - Range { from: 'ٙ', to: 'ٞ', mapping: Valid }, - Range { from: 'ٟ', to: 'ٟ', mapping: Valid }, - Range { from: '٠', to: '٩', mapping: Valid }, - Range { from: '٪', to: '٭', mapping: Valid }, - Range { from: 'ٮ', to: 'ٯ', mapping: Valid }, - Range { from: 'ٰ', to: 'ٴ', mapping: Valid }, - Range { from: 'ٵ', to: 'ٵ', mapping: Mapped("اٴ") }, - Range { from: 'ٶ', to: 'ٶ', mapping: Mapped("وٴ") }, - Range { from: 'ٷ', to: 'ٷ', mapping: Mapped("ۇٴ") }, - Range { from: 'ٸ', to: 'ٸ', mapping: Mapped("يٴ") }, - Range { from: 'ٹ', to: 'ڷ', mapping: Valid }, - Range { from: 'ڸ', to: 'ڹ', mapping: Valid }, - Range { from: 'ں', to: 'ھ', mapping: Valid }, - Range { from: 'ڿ', to: 'ڿ', mapping: Valid }, - Range { from: 'ۀ', to: 'ێ', mapping: Valid }, - Range { from: 'ۏ', to: 'ۏ', mapping: Valid }, - Range { from: 'ې', to: 'ۓ', mapping: Valid }, - Range { from: '۔', to: '۔', mapping: Valid }, - Range { from: 'ە', to: 'ۜ', mapping: Valid }, - Range { from: '۝', to: '۝', mapping: Disallowed }, - Range { from: '۞', to: '۞', mapping: Valid }, - Range { from: '۟', to: 'ۨ', mapping: Valid }, - Range { from: '۩', to: '۩', mapping: Valid }, - Range { from: '۪', to: 'ۭ', mapping: Valid }, - Range { from: 'ۮ', to: 'ۯ', mapping: Valid }, - Range { from: '۰', to: '۹', mapping: Valid }, - Range { from: 'ۺ', to: '۾', mapping: Valid }, - Range { from: 'ۿ', to: 'ۿ', mapping: Valid }, - Range { from: '܀', to: '܍', mapping: Valid }, - Range { from: '܎', to: '܎', mapping: Disallowed }, - Range { from: '܏', to: '܏', mapping: Disallowed }, - Range { from: 'ܐ', to: 'ܬ', mapping: Valid }, - Range { from: 'ܭ', to: 'ܯ', mapping: Valid }, - Range { from: 'ܰ', to: '݊', mapping: Valid }, - Range { from: '݋', to: '݌', mapping: Disallowed }, - Range { from: 'ݍ', to: 'ݏ', mapping: Valid }, - Range { from: 'ݐ', to: 'ݭ', mapping: Valid }, - Range { from: 'ݮ', to: 'ݿ', mapping: Valid }, - Range { from: 'ހ', to: 'ް', mapping: Valid }, - Range { from: 'ޱ', to: 'ޱ', mapping: Valid }, - Range { from: '޲', to: '޿', mapping: Disallowed }, - Range { from: '߀', to: 'ߵ', mapping: Valid }, - Range { from: '߶', to: 'ߺ', mapping: Valid }, - Range { from: '߻', to: '߿', mapping: Disallowed }, - Range { from: 'ࠀ', to: '࠭', mapping: Valid }, - Range { from: '࠮', to: '࠯', mapping: Disallowed }, - Range { from: '࠰', to: '࠾', mapping: Valid }, - Range { from: '࠿', to: '࠿', mapping: Disallowed }, - Range { from: 'ࡀ', to: '࡛', mapping: Valid }, - Range { from: '࡜', to: '࡝', mapping: Disallowed }, - Range { from: '࡞', to: '࡞', mapping: Valid }, - Range { from: '࡟', to: '࢟', mapping: Disallowed }, - Range { from: 'ࢠ', to: 'ࢠ', mapping: Valid }, - Range { from: 'ࢡ', to: 'ࢡ', mapping: Valid }, - Range { from: 'ࢢ', to: 'ࢬ', mapping: Valid }, - Range { from: 'ࢭ', to: 'ࢲ', mapping: Valid }, - Range { from: 'ࢳ', to: 'ࢴ', mapping: Valid }, - Range { from: 'ࢵ', to: 'ࢵ', mapping: Disallowed }, - Range { from: 'ࢶ', to: 'ࢽ', mapping: Valid }, - Range { from: 'ࢾ', to: '࣓', mapping: Disallowed }, - Range { from: 'ࣔ', to: '࣡', mapping: Valid }, - Range { from: '࣢', to: '࣢', mapping: Disallowed }, - Range { from: 'ࣣ', to: 'ࣣ', mapping: Valid }, - Range { from: 'ࣤ', to: 'ࣾ', mapping: Valid }, - Range { from: 'ࣿ', to: 'ࣿ', mapping: Valid }, - Range { from: 'ऀ', to: 'ऀ', mapping: Valid }, - Range { from: 'ँ', to: 'ः', mapping: Valid }, - Range { from: 'ऄ', to: 'ऄ', mapping: Valid }, - Range { from: 'अ', to: 'ह', mapping: Valid }, - Range { from: 'ऺ', to: 'ऻ', mapping: Valid }, - Range { from: '़', to: '्', mapping: Valid }, - Range { from: 'ॎ', to: 'ॎ', mapping: Valid }, - Range { from: 'ॏ', to: 'ॏ', mapping: Valid }, - Range { from: 'ॐ', to: '॔', mapping: Valid }, - Range { from: 'ॕ', to: 'ॕ', mapping: Valid }, - Range { from: 'ॖ', to: 'ॗ', mapping: Valid }, - Range { from: 'क़', to: 'क़', mapping: Mapped("क़") }, - Range { from: 'ख़', to: 'ख़', mapping: Mapped("ख़") }, - Range { from: 'ग़', to: 'ग़', mapping: Mapped("ग़") }, - Range { from: 'ज़', to: 'ज़', mapping: Mapped("ज़") }, - Range { from: 'ड़', to: 'ड़', mapping: Mapped("ड़") }, - Range { from: 'ढ़', to: 'ढ़', mapping: Mapped("ढ़") }, - Range { from: 'फ़', to: 'फ़', mapping: Mapped("फ़") }, - Range { from: 'य़', to: 'य़', mapping: Mapped("य़") }, - Range { from: 'ॠ', to: 'ॣ', mapping: Valid }, - Range { from: '।', to: '॥', mapping: Valid }, - Range { from: '०', to: '९', mapping: Valid }, - Range { from: '॰', to: '॰', mapping: Valid }, - Range { from: 'ॱ', to: 'ॲ', mapping: Valid }, - Range { from: 'ॳ', to: 'ॷ', mapping: Valid }, - Range { from: 'ॸ', to: 'ॸ', mapping: Valid }, - Range { from: 'ॹ', to: 'ॺ', mapping: Valid }, - Range { from: 'ॻ', to: 'ॼ', mapping: Valid }, - Range { from: 'ॽ', to: 'ॽ', mapping: Valid }, - Range { from: 'ॾ', to: 'ॿ', mapping: Valid }, - Range { from: 'ঀ', to: 'ঀ', mapping: Valid }, - Range { from: 'ঁ', to: 'ঃ', mapping: Valid }, - Range { from: '঄', to: '঄', mapping: Disallowed }, - Range { from: 'অ', to: 'ঌ', mapping: Valid }, - Range { from: '঍', to: '঎', mapping: Disallowed }, - Range { from: 'এ', to: 'ঐ', mapping: Valid }, - Range { from: '঑', to: '঒', mapping: Disallowed }, - Range { from: 'ও', to: 'ন', mapping: Valid }, - Range { from: '঩', to: '঩', mapping: Disallowed }, - Range { from: 'প', to: 'র', mapping: Valid }, - Range { from: '঱', to: '঱', mapping: Disallowed }, - Range { from: 'ল', to: 'ল', mapping: Valid }, - Range { from: '঳', to: '঵', mapping: Disallowed }, - Range { from: 'শ', to: 'হ', mapping: Valid }, - Range { from: '঺', to: '঻', mapping: Disallowed }, - Range { from: '়', to: '়', mapping: Valid }, - Range { from: 'ঽ', to: 'ঽ', mapping: Valid }, - Range { from: 'া', to: 'ৄ', mapping: Valid }, - Range { from: '৅', to: '৆', mapping: Disallowed }, - Range { from: 'ে', to: 'ৈ', mapping: Valid }, - Range { from: '৉', to: '৊', mapping: Disallowed }, - Range { from: 'ো', to: '্', mapping: Valid }, - Range { from: 'ৎ', to: 'ৎ', mapping: Valid }, - Range { from: '৏', to: '৖', mapping: Disallowed }, - Range { from: 'ৗ', to: 'ৗ', mapping: Valid }, - Range { from: '৘', to: '৛', mapping: Disallowed }, - Range { from: 'ড়', to: 'ড়', mapping: Mapped("ড়") }, - Range { from: 'ঢ়', to: 'ঢ়', mapping: Mapped("ঢ়") }, - Range { from: '৞', to: '৞', mapping: Disallowed }, - Range { from: 'য়', to: 'য়', mapping: Mapped("য়") }, - Range { from: 'ৠ', to: 'ৣ', mapping: Valid }, - Range { from: '৤', to: '৥', mapping: Disallowed }, - Range { from: '০', to: 'ৱ', mapping: Valid }, - Range { from: '৲', to: '৺', mapping: Valid }, - Range { from: '৻', to: '৻', mapping: Valid }, - Range { from: 'ৼ', to: '਀', mapping: Disallowed }, - Range { from: 'ਁ', to: 'ਁ', mapping: Valid }, - Range { from: 'ਂ', to: 'ਂ', mapping: Valid }, - Range { from: 'ਃ', to: 'ਃ', mapping: Valid }, - Range { from: '਄', to: '਄', mapping: Disallowed }, - Range { from: 'ਅ', to: 'ਊ', mapping: Valid }, - Range { from: '਋', to: '਎', mapping: Disallowed }, - Range { from: 'ਏ', to: 'ਐ', mapping: Valid }, - Range { from: '਑', to: '਒', mapping: Disallowed }, - Range { from: 'ਓ', to: 'ਨ', mapping: Valid }, - Range { from: '਩', to: '਩', mapping: Disallowed }, - Range { from: 'ਪ', to: 'ਰ', mapping: Valid }, - Range { from: '਱', to: '਱', mapping: Disallowed }, - Range { from: 'ਲ', to: 'ਲ', mapping: Valid }, - Range { from: 'ਲ਼', to: 'ਲ਼', mapping: Mapped("ਲ਼") }, - Range { from: '਴', to: '਴', mapping: Disallowed }, - Range { from: 'ਵ', to: 'ਵ', mapping: Valid }, - Range { from: 'ਸ਼', to: 'ਸ਼', mapping: Mapped("ਸ਼") }, - Range { from: '਷', to: '਷', mapping: Disallowed }, - Range { from: 'ਸ', to: 'ਹ', mapping: Valid }, - Range { from: '਺', to: '਻', mapping: Disallowed }, - Range { from: '਼', to: '਼', mapping: Valid }, - Range { from: '਽', to: '਽', mapping: Disallowed }, - Range { from: 'ਾ', to: 'ੂ', mapping: Valid }, - Range { from: '੃', to: '੆', mapping: Disallowed }, - Range { from: 'ੇ', to: 'ੈ', mapping: Valid }, - Range { from: '੉', to: '੊', mapping: Disallowed }, - Range { from: 'ੋ', to: '੍', mapping: Valid }, - Range { from: '੎', to: '੐', mapping: Disallowed }, - Range { from: 'ੑ', to: 'ੑ', mapping: Valid }, - Range { from: '੒', to: '੘', mapping: Disallowed }, - Range { from: 'ਖ਼', to: 'ਖ਼', mapping: Mapped("ਖ਼") }, - Range { from: 'ਗ਼', to: 'ਗ਼', mapping: Mapped("ਗ਼") }, - Range { from: 'ਜ਼', to: 'ਜ਼', mapping: Mapped("ਜ਼") }, - Range { from: 'ੜ', to: 'ੜ', mapping: Valid }, - Range { from: '੝', to: '੝', mapping: Disallowed }, - Range { from: 'ਫ਼', to: 'ਫ਼', mapping: Mapped("ਫ਼") }, - Range { from: '੟', to: '੥', mapping: Disallowed }, - Range { from: '੦', to: 'ੴ', mapping: Valid }, - Range { from: 'ੵ', to: 'ੵ', mapping: Valid }, - Range { from: '੶', to: '઀', mapping: Disallowed }, - Range { from: 'ઁ', to: 'ઃ', mapping: Valid }, - Range { from: '઄', to: '઄', mapping: Disallowed }, - Range { from: 'અ', to: 'ઋ', mapping: Valid }, - Range { from: 'ઌ', to: 'ઌ', mapping: Valid }, - Range { from: 'ઍ', to: 'ઍ', mapping: Valid }, - Range { from: '઎', to: '઎', mapping: Disallowed }, - Range { from: 'એ', to: 'ઑ', mapping: Valid }, - Range { from: '઒', to: '઒', mapping: Disallowed }, - Range { from: 'ઓ', to: 'ન', mapping: Valid }, - Range { from: '઩', to: '઩', mapping: Disallowed }, - Range { from: 'પ', to: 'ર', mapping: Valid }, - Range { from: '઱', to: '઱', mapping: Disallowed }, - Range { from: 'લ', to: 'ળ', mapping: Valid }, - Range { from: '઴', to: '઴', mapping: Disallowed }, - Range { from: 'વ', to: 'હ', mapping: Valid }, - Range { from: '઺', to: '઻', mapping: Disallowed }, - Range { from: '઼', to: 'ૅ', mapping: Valid }, - Range { from: '૆', to: '૆', mapping: Disallowed }, - Range { from: 'ે', to: 'ૉ', mapping: Valid }, - Range { from: '૊', to: '૊', mapping: Disallowed }, - Range { from: 'ો', to: '્', mapping: Valid }, - Range { from: '૎', to: '૏', mapping: Disallowed }, - Range { from: 'ૐ', to: 'ૐ', mapping: Valid }, - Range { from: '૑', to: '૟', mapping: Disallowed }, - Range { from: 'ૠ', to: 'ૠ', mapping: Valid }, - Range { from: 'ૡ', to: 'ૣ', mapping: Valid }, - Range { from: '૤', to: '૥', mapping: Disallowed }, - Range { from: '૦', to: '૯', mapping: Valid }, - Range { from: '૰', to: '૰', mapping: Valid }, - Range { from: '૱', to: '૱', mapping: Valid }, - Range { from: '૲', to: '૸', mapping: Disallowed }, - Range { from: 'ૹ', to: 'ૹ', mapping: Valid }, - Range { from: 'ૺ', to: '଀', mapping: Disallowed }, - Range { from: 'ଁ', to: 'ଃ', mapping: Valid }, - Range { from: '଄', to: '଄', mapping: Disallowed }, - Range { from: 'ଅ', to: 'ଌ', mapping: Valid }, - Range { from: '଍', to: '଎', mapping: Disallowed }, - Range { from: 'ଏ', to: 'ଐ', mapping: Valid }, - Range { from: '଑', to: '଒', mapping: Disallowed }, - Range { from: 'ଓ', to: 'ନ', mapping: Valid }, - Range { from: '଩', to: '଩', mapping: Disallowed }, - Range { from: 'ପ', to: 'ର', mapping: Valid }, - Range { from: '଱', to: '଱', mapping: Disallowed }, - Range { from: 'ଲ', to: 'ଳ', mapping: Valid }, - Range { from: '଴', to: '଴', mapping: Disallowed }, - Range { from: 'ଵ', to: 'ଵ', mapping: Valid }, - Range { from: 'ଶ', to: 'ହ', mapping: Valid }, - Range { from: '଺', to: '଻', mapping: Disallowed }, - Range { from: '଼', to: 'ୃ', mapping: Valid }, - Range { from: 'ୄ', to: 'ୄ', mapping: Valid }, - Range { from: '୅', to: '୆', mapping: Disallowed }, - Range { from: 'େ', to: 'ୈ', mapping: Valid }, - Range { from: '୉', to: '୊', mapping: Disallowed }, - Range { from: 'ୋ', to: '୍', mapping: Valid }, - Range { from: '୎', to: '୕', mapping: Disallowed }, - Range { from: 'ୖ', to: 'ୗ', mapping: Valid }, - Range { from: '୘', to: '୛', mapping: Disallowed }, - Range { from: 'ଡ଼', to: 'ଡ଼', mapping: Mapped("ଡ଼") }, - Range { from: 'ଢ଼', to: 'ଢ଼', mapping: Mapped("ଢ଼") }, - Range { from: '୞', to: '୞', mapping: Disallowed }, - Range { from: 'ୟ', to: 'ୡ', mapping: Valid }, - Range { from: 'ୢ', to: 'ୣ', mapping: Valid }, - Range { from: '୤', to: '୥', mapping: Disallowed }, - Range { from: '୦', to: '୯', mapping: Valid }, - Range { from: '୰', to: '୰', mapping: Valid }, - Range { from: 'ୱ', to: 'ୱ', mapping: Valid }, - Range { from: '୲', to: '୷', mapping: Valid }, - Range { from: '୸', to: '஁', mapping: Disallowed }, - Range { from: 'ஂ', to: 'ஃ', mapping: Valid }, - Range { from: '஄', to: '஄', mapping: Disallowed }, - Range { from: 'அ', to: 'ஊ', mapping: Valid }, - Range { from: '஋', to: '஍', mapping: Disallowed }, - Range { from: 'எ', to: 'ஐ', mapping: Valid }, - Range { from: '஑', to: '஑', mapping: Disallowed }, - Range { from: 'ஒ', to: 'க', mapping: Valid }, - Range { from: '஖', to: '஘', mapping: Disallowed }, - Range { from: 'ங', to: 'ச', mapping: Valid }, - Range { from: '஛', to: '஛', mapping: Disallowed }, - Range { from: 'ஜ', to: 'ஜ', mapping: Valid }, - Range { from: '஝', to: '஝', mapping: Disallowed }, - Range { from: 'ஞ', to: 'ட', mapping: Valid }, - Range { from: '஠', to: '஢', mapping: Disallowed }, - Range { from: 'ண', to: 'த', mapping: Valid }, - Range { from: '஥', to: '஧', mapping: Disallowed }, - Range { from: 'ந', to: 'ப', mapping: Valid }, - Range { from: '஫', to: '஭', mapping: Disallowed }, - Range { from: 'ம', to: 'வ', mapping: Valid }, - Range { from: 'ஶ', to: 'ஶ', mapping: Valid }, - Range { from: 'ஷ', to: 'ஹ', mapping: Valid }, - Range { from: '஺', to: '஽', mapping: Disallowed }, - Range { from: 'ா', to: 'ூ', mapping: Valid }, - Range { from: '௃', to: '௅', mapping: Disallowed }, - Range { from: 'ெ', to: 'ை', mapping: Valid }, - Range { from: '௉', to: '௉', mapping: Disallowed }, - Range { from: 'ொ', to: '்', mapping: Valid }, - Range { from: '௎', to: '௏', mapping: Disallowed }, - Range { from: 'ௐ', to: 'ௐ', mapping: Valid }, - Range { from: '௑', to: '௖', mapping: Disallowed }, - Range { from: 'ௗ', to: 'ௗ', mapping: Valid }, - Range { from: '௘', to: '௥', mapping: Disallowed }, - Range { from: '௦', to: '௦', mapping: Valid }, - Range { from: '௧', to: '௯', mapping: Valid }, - Range { from: '௰', to: '௲', mapping: Valid }, - Range { from: '௳', to: '௺', mapping: Valid }, - Range { from: '௻', to: '௿', mapping: Disallowed }, - Range { from: 'ఀ', to: 'ఀ', mapping: Valid }, - Range { from: 'ఁ', to: 'ః', mapping: Valid }, - Range { from: 'ఄ', to: 'ఄ', mapping: Disallowed }, - Range { from: 'అ', to: 'ఌ', mapping: Valid }, - Range { from: '఍', to: '఍', mapping: Disallowed }, - Range { from: 'ఎ', to: 'ఐ', mapping: Valid }, - Range { from: '఑', to: '఑', mapping: Disallowed }, - Range { from: 'ఒ', to: 'న', mapping: Valid }, - Range { from: '఩', to: '఩', mapping: Disallowed }, - Range { from: 'ప', to: 'ళ', mapping: Valid }, - Range { from: 'ఴ', to: 'ఴ', mapping: Valid }, - Range { from: 'వ', to: 'హ', mapping: Valid }, - Range { from: '఺', to: '఼', mapping: Disallowed }, - Range { from: 'ఽ', to: 'ఽ', mapping: Valid }, - Range { from: 'ా', to: 'ౄ', mapping: Valid }, - Range { from: '౅', to: '౅', mapping: Disallowed }, - Range { from: 'ె', to: 'ై', mapping: Valid }, - Range { from: '౉', to: '౉', mapping: Disallowed }, - Range { from: 'ొ', to: '్', mapping: Valid }, - Range { from: '౎', to: '౔', mapping: Disallowed }, - Range { from: 'ౕ', to: 'ౖ', mapping: Valid }, - Range { from: '౗', to: '౗', mapping: Disallowed }, - Range { from: 'ౘ', to: 'ౙ', mapping: Valid }, - Range { from: 'ౚ', to: 'ౚ', mapping: Valid }, - Range { from: '౛', to: '౟', mapping: Disallowed }, - Range { from: 'ౠ', to: 'ౡ', mapping: Valid }, - Range { from: 'ౢ', to: 'ౣ', mapping: Valid }, - Range { from: '౤', to: '౥', mapping: Disallowed }, - Range { from: '౦', to: '౯', mapping: Valid }, - Range { from: '౰', to: '౷', mapping: Disallowed }, - Range { from: '౸', to: '౿', mapping: Valid }, - Range { from: 'ಀ', to: 'ಀ', mapping: Valid }, - Range { from: 'ಁ', to: 'ಁ', mapping: Valid }, - Range { from: 'ಂ', to: 'ಃ', mapping: Valid }, - Range { from: '಄', to: '಄', mapping: Disallowed }, - Range { from: 'ಅ', to: 'ಌ', mapping: Valid }, - Range { from: '಍', to: '಍', mapping: Disallowed }, - Range { from: 'ಎ', to: 'ಐ', mapping: Valid }, - Range { from: '಑', to: '಑', mapping: Disallowed }, - Range { from: 'ಒ', to: 'ನ', mapping: Valid }, - Range { from: '಩', to: '಩', mapping: Disallowed }, - Range { from: 'ಪ', to: 'ಳ', mapping: Valid }, - Range { from: '಴', to: '಴', mapping: Disallowed }, - Range { from: 'ವ', to: 'ಹ', mapping: Valid }, - Range { from: '಺', to: '಻', mapping: Disallowed }, - Range { from: '಼', to: 'ಽ', mapping: Valid }, - Range { from: 'ಾ', to: 'ೄ', mapping: Valid }, - Range { from: '೅', to: '೅', mapping: Disallowed }, - Range { from: 'ೆ', to: 'ೈ', mapping: Valid }, - Range { from: '೉', to: '೉', mapping: Disallowed }, - Range { from: 'ೊ', to: '್', mapping: Valid }, - Range { from: '೎', to: '೔', mapping: Disallowed }, - Range { from: 'ೕ', to: 'ೖ', mapping: Valid }, - Range { from: '೗', to: 'ೝ', mapping: Disallowed }, - Range { from: 'ೞ', to: 'ೞ', mapping: Valid }, - Range { from: '೟', to: '೟', mapping: Disallowed }, - Range { from: 'ೠ', to: 'ೡ', mapping: Valid }, - Range { from: 'ೢ', to: 'ೣ', mapping: Valid }, - Range { from: '೤', to: '೥', mapping: Disallowed }, - Range { from: '೦', to: '೯', mapping: Valid }, - Range { from: '೰', to: '೰', mapping: Disallowed }, - Range { from: 'ೱ', to: 'ೲ', mapping: Valid }, - Range { from: 'ೳ', to: 'ഀ', mapping: Disallowed }, - Range { from: 'ഁ', to: 'ഁ', mapping: Valid }, - Range { from: 'ം', to: 'ഃ', mapping: Valid }, - Range { from: 'ഄ', to: 'ഄ', mapping: Disallowed }, - Range { from: 'അ', to: 'ഌ', mapping: Valid }, - Range { from: '഍', to: '഍', mapping: Disallowed }, - Range { from: 'എ', to: 'ഐ', mapping: Valid }, - Range { from: '഑', to: '഑', mapping: Disallowed }, - Range { from: 'ഒ', to: 'ന', mapping: Valid }, - Range { from: 'ഩ', to: 'ഩ', mapping: Valid }, - Range { from: 'പ', to: 'ഹ', mapping: Valid }, - Range { from: 'ഺ', to: 'ഺ', mapping: Valid }, - Range { from: '഻', to: '഼', mapping: Disallowed }, - Range { from: 'ഽ', to: 'ഽ', mapping: Valid }, - Range { from: 'ാ', to: 'ൃ', mapping: Valid }, - Range { from: 'ൄ', to: 'ൄ', mapping: Valid }, - Range { from: '൅', to: '൅', mapping: Disallowed }, - Range { from: 'െ', to: 'ൈ', mapping: Valid }, - Range { from: '൉', to: '൉', mapping: Disallowed }, - Range { from: 'ൊ', to: '്', mapping: Valid }, - Range { from: 'ൎ', to: 'ൎ', mapping: Valid }, - Range { from: '൏', to: '൏', mapping: Valid }, - Range { from: '൐', to: '൓', mapping: Disallowed }, - Range { from: 'ൔ', to: 'ൖ', mapping: Valid }, - Range { from: 'ൗ', to: 'ൗ', mapping: Valid }, - Range { from: '൘', to: '൞', mapping: Valid }, - Range { from: 'ൟ', to: 'ൟ', mapping: Valid }, - Range { from: 'ൠ', to: 'ൡ', mapping: Valid }, - Range { from: 'ൢ', to: 'ൣ', mapping: Valid }, - Range { from: '൤', to: '൥', mapping: Disallowed }, - Range { from: '൦', to: '൯', mapping: Valid }, - Range { from: '൰', to: '൵', mapping: Valid }, - Range { from: '൶', to: '൸', mapping: Valid }, - Range { from: '൹', to: '൹', mapping: Valid }, - Range { from: 'ൺ', to: 'ൿ', mapping: Valid }, - Range { from: '඀', to: 'ඁ', mapping: Disallowed }, - Range { from: 'ං', to: 'ඃ', mapping: Valid }, - Range { from: '඄', to: '඄', mapping: Disallowed }, - Range { from: 'අ', to: 'ඖ', mapping: Valid }, - Range { from: '඗', to: '඙', mapping: Disallowed }, - Range { from: 'ක', to: 'න', mapping: Valid }, - Range { from: '඲', to: '඲', mapping: Disallowed }, - Range { from: 'ඳ', to: 'ර', mapping: Valid }, - Range { from: '඼', to: '඼', mapping: Disallowed }, - Range { from: 'ල', to: 'ල', mapping: Valid }, - Range { from: '඾', to: '඿', mapping: Disallowed }, - Range { from: 'ව', to: 'ෆ', mapping: Valid }, - Range { from: '෇', to: '෉', mapping: Disallowed }, - Range { from: '්', to: '්', mapping: Valid }, - Range { from: '෋', to: '෎', mapping: Disallowed }, - Range { from: 'ා', to: 'ු', mapping: Valid }, - Range { from: '෕', to: '෕', mapping: Disallowed }, - Range { from: 'ූ', to: 'ූ', mapping: Valid }, - Range { from: '෗', to: '෗', mapping: Disallowed }, - Range { from: 'ෘ', to: 'ෟ', mapping: Valid }, - Range { from: '෠', to: '෥', mapping: Disallowed }, - Range { from: '෦', to: '෯', mapping: Valid }, - Range { from: '෰', to: '෱', mapping: Disallowed }, - Range { from: 'ෲ', to: 'ෳ', mapping: Valid }, - Range { from: '෴', to: '෴', mapping: Valid }, - Range { from: '෵', to: '฀', mapping: Disallowed }, - Range { from: 'ก', to: 'า', mapping: Valid }, - Range { from: 'ำ', to: 'ำ', mapping: Mapped("ํา") }, - Range { from: 'ิ', to: 'ฺ', mapping: Valid }, - Range { from: '฻', to: '฾', mapping: Disallowed }, - Range { from: '฿', to: '฿', mapping: Valid }, - Range { from: 'เ', to: '๎', mapping: Valid }, - Range { from: '๏', to: '๏', mapping: Valid }, - Range { from: '๐', to: '๙', mapping: Valid }, - Range { from: '๚', to: '๛', mapping: Valid }, - Range { from: '๜', to: '຀', mapping: Disallowed }, - Range { from: 'ກ', to: 'ຂ', mapping: Valid }, - Range { from: '຃', to: '຃', mapping: Disallowed }, - Range { from: 'ຄ', to: 'ຄ', mapping: Valid }, - Range { from: '຅', to: 'ຆ', mapping: Disallowed }, - Range { from: 'ງ', to: 'ຈ', mapping: Valid }, - Range { from: 'ຉ', to: 'ຉ', mapping: Disallowed }, - Range { from: 'ຊ', to: 'ຊ', mapping: Valid }, - Range { from: '຋', to: 'ຌ', mapping: Disallowed }, - Range { from: 'ຍ', to: 'ຍ', mapping: Valid }, - Range { from: 'ຎ', to: 'ຓ', mapping: Disallowed }, - Range { from: 'ດ', to: 'ທ', mapping: Valid }, - Range { from: 'ຘ', to: 'ຘ', mapping: Disallowed }, - Range { from: 'ນ', to: 'ຟ', mapping: Valid }, - Range { from: 'ຠ', to: 'ຠ', mapping: Disallowed }, - Range { from: 'ມ', to: 'ຣ', mapping: Valid }, - Range { from: '຤', to: '຤', mapping: Disallowed }, - Range { from: 'ລ', to: 'ລ', mapping: Valid }, - Range { from: '຦', to: '຦', mapping: Disallowed }, - Range { from: 'ວ', to: 'ວ', mapping: Valid }, - Range { from: 'ຨ', to: 'ຩ', mapping: Disallowed }, - Range { from: 'ສ', to: 'ຫ', mapping: Valid }, - Range { from: 'ຬ', to: 'ຬ', mapping: Disallowed }, - Range { from: 'ອ', to: 'າ', mapping: Valid }, - Range { from: 'ຳ', to: 'ຳ', mapping: Mapped("ໍາ") }, - Range { from: 'ິ', to: 'ູ', mapping: Valid }, - Range { from: '຺', to: '຺', mapping: Disallowed }, - Range { from: 'ົ', to: 'ຽ', mapping: Valid }, - Range { from: '຾', to: '຿', mapping: Disallowed }, - Range { from: 'ເ', to: 'ໄ', mapping: Valid }, - Range { from: '໅', to: '໅', mapping: Disallowed }, - Range { from: 'ໆ', to: 'ໆ', mapping: Valid }, - Range { from: '໇', to: '໇', mapping: Disallowed }, - Range { from: '່', to: 'ໍ', mapping: Valid }, - Range { from: '໎', to: '໏', mapping: Disallowed }, - Range { from: '໐', to: '໙', mapping: Valid }, - Range { from: '໚', to: '໛', mapping: Disallowed }, - Range { from: 'ໜ', to: 'ໜ', mapping: Mapped("ຫນ") }, - Range { from: 'ໝ', to: 'ໝ', mapping: Mapped("ຫມ") }, - Range { from: 'ໞ', to: 'ໟ', mapping: Valid }, - Range { from: '໠', to: '໿', mapping: Disallowed }, - Range { from: 'ༀ', to: 'ༀ', mapping: Valid }, - Range { from: '༁', to: '༊', mapping: Valid }, - Range { from: '་', to: '་', mapping: Valid }, - Range { from: '༌', to: '༌', mapping: Mapped("་") }, - Range { from: '།', to: '༗', mapping: Valid }, - Range { from: '༘', to: '༙', mapping: Valid }, - Range { from: '༚', to: '༟', mapping: Valid }, - Range { from: '༠', to: '༩', mapping: Valid }, - Range { from: '༪', to: '༴', mapping: Valid }, - Range { from: '༵', to: '༵', mapping: Valid }, - Range { from: '༶', to: '༶', mapping: Valid }, - Range { from: '༷', to: '༷', mapping: Valid }, - Range { from: '༸', to: '༸', mapping: Valid }, - Range { from: '༹', to: '༹', mapping: Valid }, - Range { from: '༺', to: '༽', mapping: Valid }, - Range { from: '༾', to: 'ག', mapping: Valid }, - Range { from: 'གྷ', to: 'གྷ', mapping: Mapped("གྷ") }, - Range { from: 'ང', to: 'ཇ', mapping: Valid }, - Range { from: '཈', to: '཈', mapping: Disallowed }, - Range { from: 'ཉ', to: 'ཌ', mapping: Valid }, - Range { from: 'ཌྷ', to: 'ཌྷ', mapping: Mapped("ཌྷ") }, - Range { from: 'ཎ', to: 'ད', mapping: Valid }, - Range { from: 'དྷ', to: 'དྷ', mapping: Mapped("དྷ") }, - Range { from: 'ན', to: 'བ', mapping: Valid }, - Range { from: 'བྷ', to: 'བྷ', mapping: Mapped("བྷ") }, - Range { from: 'མ', to: 'ཛ', mapping: Valid }, - Range { from: 'ཛྷ', to: 'ཛྷ', mapping: Mapped("ཛྷ") }, - Range { from: 'ཝ', to: 'ཨ', mapping: Valid }, - Range { from: 'ཀྵ', to: 'ཀྵ', mapping: Mapped("ཀྵ") }, - Range { from: 'ཪ', to: 'ཪ', mapping: Valid }, - Range { from: 'ཫ', to: 'ཬ', mapping: Valid }, - Range { from: '཭', to: '཰', mapping: Disallowed }, - Range { from: 'ཱ', to: 'ི', mapping: Valid }, - Range { from: 'ཱི', to: 'ཱི', mapping: Mapped("ཱི") }, - Range { from: 'ུ', to: 'ུ', mapping: Valid }, - Range { from: 'ཱུ', to: 'ཱུ', mapping: Mapped("ཱུ") }, - Range { from: 'ྲྀ', to: 'ྲྀ', mapping: Mapped("ྲྀ") }, - Range { from: 'ཷ', to: 'ཷ', mapping: Mapped("ྲཱྀ") }, - Range { from: 'ླྀ', to: 'ླྀ', mapping: Mapped("ླྀ") }, - Range { from: 'ཹ', to: 'ཹ', mapping: Mapped("ླཱྀ") }, - Range { from: 'ེ', to: 'ྀ', mapping: Valid }, - Range { from: 'ཱྀ', to: 'ཱྀ', mapping: Mapped("ཱྀ") }, - Range { from: 'ྂ', to: '྄', mapping: Valid }, - Range { from: '྅', to: '྅', mapping: Valid }, - Range { from: '྆', to: 'ྋ', mapping: Valid }, - Range { from: 'ྌ', to: 'ྏ', mapping: Valid }, - Range { from: 'ྐ', to: 'ྒ', mapping: Valid }, - Range { from: 'ྒྷ', to: 'ྒྷ', mapping: Mapped("ྒྷ") }, - Range { from: 'ྔ', to: 'ྕ', mapping: Valid }, - Range { from: 'ྖ', to: 'ྖ', mapping: Valid }, - Range { from: 'ྗ', to: 'ྗ', mapping: Valid }, - Range { from: '྘', to: '྘', mapping: Disallowed }, - Range { from: 'ྙ', to: 'ྜ', mapping: Valid }, - Range { from: 'ྜྷ', to: 'ྜྷ', mapping: Mapped("ྜྷ") }, - Range { from: 'ྞ', to: 'ྡ', mapping: Valid }, - Range { from: 'ྡྷ', to: 'ྡྷ', mapping: Mapped("ྡྷ") }, - Range { from: 'ྣ', to: 'ྦ', mapping: Valid }, - Range { from: 'ྦྷ', to: 'ྦྷ', mapping: Mapped("ྦྷ") }, - Range { from: 'ྨ', to: 'ྫ', mapping: Valid }, - Range { from: 'ྫྷ', to: 'ྫྷ', mapping: Mapped("ྫྷ") }, - Range { from: 'ྭ', to: 'ྭ', mapping: Valid }, - Range { from: 'ྮ', to: 'ྰ', mapping: Valid }, - Range { from: 'ྱ', to: 'ྷ', mapping: Valid }, - Range { from: 'ྸ', to: 'ྸ', mapping: Valid }, - Range { from: 'ྐྵ', to: 'ྐྵ', mapping: Mapped("ྐྵ") }, - Range { from: 'ྺ', to: 'ྼ', mapping: Valid }, - Range { from: '྽', to: '྽', mapping: Disallowed }, - Range { from: '྾', to: '࿅', mapping: Valid }, - Range { from: '࿆', to: '࿆', mapping: Valid }, - Range { from: '࿇', to: '࿌', mapping: Valid }, - Range { from: '࿍', to: '࿍', mapping: Disallowed }, - Range { from: '࿎', to: '࿎', mapping: Valid }, - Range { from: '࿏', to: '࿏', mapping: Valid }, - Range { from: '࿐', to: '࿑', mapping: Valid }, - Range { from: '࿒', to: '࿔', mapping: Valid }, - Range { from: '࿕', to: '࿘', mapping: Valid }, - Range { from: '࿙', to: '࿚', mapping: Valid }, - Range { from: '࿛', to: '࿿', mapping: Disallowed }, - Range { from: 'က', to: 'အ', mapping: Valid }, - Range { from: 'ဢ', to: 'ဢ', mapping: Valid }, - Range { from: 'ဣ', to: 'ဧ', mapping: Valid }, - Range { from: 'ဨ', to: 'ဨ', mapping: Valid }, - Range { from: 'ဩ', to: 'ဪ', mapping: Valid }, - Range { from: 'ါ', to: 'ါ', mapping: Valid }, - Range { from: 'ာ', to: 'ဲ', mapping: Valid }, - Range { from: 'ဳ', to: 'ဵ', mapping: Valid }, - Range { from: 'ံ', to: '္', mapping: Valid }, - Range { from: '်', to: 'ဿ', mapping: Valid }, - Range { from: '၀', to: '၉', mapping: Valid }, - Range { from: '၊', to: '၏', mapping: Valid }, - Range { from: 'ၐ', to: 'ၙ', mapping: Valid }, - Range { from: 'ၚ', to: '႙', mapping: Valid }, - Range { from: 'ႚ', to: 'ႝ', mapping: Valid }, - Range { from: '႞', to: '႟', mapping: Valid }, - Range { from: 'Ⴀ', to: 'Ⴥ', mapping: Disallowed }, - Range { from: '჆', to: '჆', mapping: Disallowed }, - Range { from: 'Ⴧ', to: 'Ⴧ', mapping: Mapped("ⴧ") }, - Range { from: '჈', to: '჌', mapping: Disallowed }, - Range { from: 'Ⴭ', to: 'Ⴭ', mapping: Mapped("ⴭ") }, - Range { from: '჎', to: '჏', mapping: Disallowed }, - Range { from: 'ა', to: 'ჶ', mapping: Valid }, - Range { from: 'ჷ', to: 'ჸ', mapping: Valid }, - Range { from: 'ჹ', to: 'ჺ', mapping: Valid }, - Range { from: '჻', to: '჻', mapping: Valid }, - Range { from: 'ჼ', to: 'ჼ', mapping: Mapped("ნ") }, - Range { from: 'ჽ', to: 'ჿ', mapping: Valid }, - Range { from: 'ᄀ', to: 'ᅙ', mapping: Valid }, - Range { from: 'ᅚ', to: 'ᅞ', mapping: Valid }, - Range { from: 'ᅟ', to: 'ᅠ', mapping: Disallowed }, - Range { from: 'ᅡ', to: 'ᆢ', mapping: Valid }, - Range { from: 'ᆣ', to: 'ᆧ', mapping: Valid }, - Range { from: 'ᆨ', to: 'ᇹ', mapping: Valid }, - Range { from: 'ᇺ', to: 'ᇿ', mapping: Valid }, - Range { from: 'ሀ', to: 'ሆ', mapping: Valid }, - Range { from: 'ሇ', to: 'ሇ', mapping: Valid }, - Range { from: 'ለ', to: 'ቆ', mapping: Valid }, - Range { from: 'ቇ', to: 'ቇ', mapping: Valid }, - Range { from: 'ቈ', to: 'ቈ', mapping: Valid }, - Range { from: '቉', to: '቉', mapping: Disallowed }, - Range { from: 'ቊ', to: 'ቍ', mapping: Valid }, - Range { from: '቎', to: '቏', mapping: Disallowed }, - Range { from: 'ቐ', to: 'ቖ', mapping: Valid }, - Range { from: '቗', to: '቗', mapping: Disallowed }, - Range { from: 'ቘ', to: 'ቘ', mapping: Valid }, - Range { from: '቙', to: '቙', mapping: Disallowed }, - Range { from: 'ቚ', to: 'ቝ', mapping: Valid }, - Range { from: '቞', to: '቟', mapping: Disallowed }, - Range { from: 'በ', to: 'ኆ', mapping: Valid }, - Range { from: 'ኇ', to: 'ኇ', mapping: Valid }, - Range { from: 'ኈ', to: 'ኈ', mapping: Valid }, - Range { from: '኉', to: '኉', mapping: Disallowed }, - Range { from: 'ኊ', to: 'ኍ', mapping: Valid }, - Range { from: '኎', to: '኏', mapping: Disallowed }, - Range { from: 'ነ', to: 'ኮ', mapping: Valid }, - Range { from: 'ኯ', to: 'ኯ', mapping: Valid }, - Range { from: 'ኰ', to: 'ኰ', mapping: Valid }, - Range { from: '኱', to: '኱', mapping: Disallowed }, - Range { from: 'ኲ', to: 'ኵ', mapping: Valid }, - Range { from: '኶', to: '኷', mapping: Disallowed }, - Range { from: 'ኸ', to: 'ኾ', mapping: Valid }, - Range { from: '኿', to: '኿', mapping: Disallowed }, - Range { from: 'ዀ', to: 'ዀ', mapping: Valid }, - Range { from: '዁', to: '዁', mapping: Disallowed }, - Range { from: 'ዂ', to: 'ዅ', mapping: Valid }, - Range { from: '዆', to: '዇', mapping: Disallowed }, - Range { from: 'ወ', to: 'ዎ', mapping: Valid }, - Range { from: 'ዏ', to: 'ዏ', mapping: Valid }, - Range { from: 'ዐ', to: 'ዖ', mapping: Valid }, - Range { from: '዗', to: '዗', mapping: Disallowed }, - Range { from: 'ዘ', to: 'ዮ', mapping: Valid }, - Range { from: 'ዯ', to: 'ዯ', mapping: Valid }, - Range { from: 'ደ', to: 'ጎ', mapping: Valid }, - Range { from: 'ጏ', to: 'ጏ', mapping: Valid }, - Range { from: 'ጐ', to: 'ጐ', mapping: Valid }, - Range { from: '጑', to: '጑', mapping: Disallowed }, - Range { from: 'ጒ', to: 'ጕ', mapping: Valid }, - Range { from: '጖', to: '጗', mapping: Disallowed }, - Range { from: 'ጘ', to: 'ጞ', mapping: Valid }, - Range { from: 'ጟ', to: 'ጟ', mapping: Valid }, - Range { from: 'ጠ', to: 'ፆ', mapping: Valid }, - Range { from: 'ፇ', to: 'ፇ', mapping: Valid }, - Range { from: 'ፈ', to: 'ፚ', mapping: Valid }, - Range { from: '፛', to: '፜', mapping: Disallowed }, - Range { from: '፝', to: '፞', mapping: Valid }, - Range { from: '፟', to: '፟', mapping: Valid }, - Range { from: '፠', to: '፠', mapping: Valid }, - Range { from: '፡', to: '፼', mapping: Valid }, - Range { from: '፽', to: '፿', mapping: Disallowed }, - Range { from: 'ᎀ', to: 'ᎏ', mapping: Valid }, - Range { from: '᎐', to: '᎙', mapping: Valid }, - Range { from: '᎚', to: '᎟', mapping: Disallowed }, - Range { from: 'Ꭰ', to: 'Ᏼ', mapping: Valid }, - Range { from: 'Ᏽ', to: 'Ᏽ', mapping: Valid }, - Range { from: '᏶', to: '᏷', mapping: Disallowed }, - Range { from: 'ᏸ', to: 'ᏸ', mapping: Mapped("Ᏸ") }, - Range { from: 'ᏹ', to: 'ᏹ', mapping: Mapped("Ᏹ") }, - Range { from: 'ᏺ', to: 'ᏺ', mapping: Mapped("Ᏺ") }, - Range { from: 'ᏻ', to: 'ᏻ', mapping: Mapped("Ᏻ") }, - Range { from: 'ᏼ', to: 'ᏼ', mapping: Mapped("Ᏼ") }, - Range { from: 'ᏽ', to: 'ᏽ', mapping: Mapped("Ᏽ") }, - Range { from: '᏾', to: '᏿', mapping: Disallowed }, - Range { from: '᐀', to: '᐀', mapping: Valid }, - Range { from: 'ᐁ', to: 'ᙬ', mapping: Valid }, - Range { from: '᙭', to: '᙮', mapping: Valid }, - Range { from: 'ᙯ', to: 'ᙶ', mapping: Valid }, - Range { from: 'ᙷ', to: 'ᙿ', mapping: Valid }, - Range { from: ' ', to: ' ', mapping: Disallowed }, - Range { from: 'ᚁ', to: 'ᚚ', mapping: Valid }, - Range { from: '᚛', to: '᚜', mapping: Valid }, - Range { from: '᚝', to: '᚟', mapping: Disallowed }, - Range { from: 'ᚠ', to: 'ᛪ', mapping: Valid }, - Range { from: '᛫', to: 'ᛰ', mapping: Valid }, - Range { from: 'ᛱ', to: 'ᛸ', mapping: Valid }, - Range { from: '᛹', to: '᛿', mapping: Disallowed }, - Range { from: 'ᜀ', to: 'ᜌ', mapping: Valid }, - Range { from: 'ᜍ', to: 'ᜍ', mapping: Disallowed }, - Range { from: 'ᜎ', to: '᜔', mapping: Valid }, - Range { from: '᜕', to: 'ᜟ', mapping: Disallowed }, - Range { from: 'ᜠ', to: '᜴', mapping: Valid }, - Range { from: '᜵', to: '᜶', mapping: Valid }, - Range { from: '᜷', to: '᜿', mapping: Disallowed }, - Range { from: 'ᝀ', to: 'ᝓ', mapping: Valid }, - Range { from: '᝔', to: '᝟', mapping: Disallowed }, - Range { from: 'ᝠ', to: 'ᝬ', mapping: Valid }, - Range { from: '᝭', to: '᝭', mapping: Disallowed }, - Range { from: 'ᝮ', to: 'ᝰ', mapping: Valid }, - Range { from: '᝱', to: '᝱', mapping: Disallowed }, - Range { from: 'ᝲ', to: 'ᝳ', mapping: Valid }, - Range { from: '᝴', to: '᝿', mapping: Disallowed }, - Range { from: 'ក', to: 'ឳ', mapping: Valid }, - Range { from: '឴', to: '឵', mapping: Disallowed }, - Range { from: 'ា', to: '៓', mapping: Valid }, - Range { from: '។', to: '៖', mapping: Valid }, - Range { from: 'ៗ', to: 'ៗ', mapping: Valid }, - Range { from: '៘', to: '៛', mapping: Valid }, - Range { from: 'ៜ', to: 'ៜ', mapping: Valid }, - Range { from: '៝', to: '៝', mapping: Valid }, - Range { from: '៞', to: '៟', mapping: Disallowed }, - Range { from: '០', to: '៩', mapping: Valid }, - Range { from: '៪', to: '៯', mapping: Disallowed }, - Range { from: '៰', to: '៹', mapping: Valid }, - Range { from: '៺', to: '៿', mapping: Disallowed }, - Range { from: '᠀', to: '᠅', mapping: Valid }, - Range { from: '᠆', to: '᠆', mapping: Disallowed }, - Range { from: '᠇', to: '᠊', mapping: Valid }, - Range { from: '᠋', to: '᠍', mapping: Ignored }, - Range { from: '᠎', to: '᠎', mapping: Disallowed }, - Range { from: '᠏', to: '᠏', mapping: Disallowed }, - Range { from: '᠐', to: '᠙', mapping: Valid }, - Range { from: '᠚', to: '᠟', mapping: Disallowed }, - Range { from: 'ᠠ', to: 'ᡷ', mapping: Valid }, - Range { from: 'ᡸ', to: '᡿', mapping: Disallowed }, - Range { from: 'ᢀ', to: 'ᢩ', mapping: Valid }, - Range { from: 'ᢪ', to: 'ᢪ', mapping: Valid }, - Range { from: '᢫', to: '᢯', mapping: Disallowed }, - Range { from: 'ᢰ', to: 'ᣵ', mapping: Valid }, - Range { from: '᣶', to: '᣿', mapping: Disallowed }, - Range { from: 'ᤀ', to: 'ᤜ', mapping: Valid }, - Range { from: 'ᤝ', to: 'ᤞ', mapping: Valid }, - Range { from: '᤟', to: '᤟', mapping: Disallowed }, - Range { from: 'ᤠ', to: 'ᤫ', mapping: Valid }, - Range { from: '᤬', to: '᤯', mapping: Disallowed }, - Range { from: 'ᤰ', to: '᤻', mapping: Valid }, - Range { from: '᤼', to: '᤿', mapping: Disallowed }, - Range { from: '᥀', to: '᥀', mapping: Valid }, - Range { from: '᥁', to: '᥃', mapping: Disallowed }, - Range { from: '᥄', to: '᥅', mapping: Valid }, - Range { from: '᥆', to: 'ᥭ', mapping: Valid }, - Range { from: '᥮', to: '᥯', mapping: Disallowed }, - Range { from: 'ᥰ', to: 'ᥴ', mapping: Valid }, - Range { from: '᥵', to: '᥿', mapping: Disallowed }, - Range { from: 'ᦀ', to: 'ᦩ', mapping: Valid }, - Range { from: 'ᦪ', to: 'ᦫ', mapping: Valid }, - Range { from: '᦬', to: '᦯', mapping: Disallowed }, - Range { from: 'ᦰ', to: 'ᧉ', mapping: Valid }, - Range { from: '᧊', to: '᧏', mapping: Disallowed }, - Range { from: '᧐', to: '᧙', mapping: Valid }, - Range { from: '᧚', to: '᧚', mapping: Valid }, - Range { from: '᧛', to: '᧝', mapping: Disallowed }, - Range { from: '᧞', to: '᧟', mapping: Valid }, - Range { from: '᧠', to: '᧿', mapping: Valid }, - Range { from: 'ᨀ', to: 'ᨛ', mapping: Valid }, - Range { from: '᨜', to: '᨝', mapping: Disallowed }, - Range { from: '᨞', to: '᨟', mapping: Valid }, - Range { from: 'ᨠ', to: 'ᩞ', mapping: Valid }, - Range { from: '᩟', to: '᩟', mapping: Disallowed }, - Range { from: '᩠', to: '᩼', mapping: Valid }, - Range { from: '᩽', to: '᩾', mapping: Disallowed }, - Range { from: '᩿', to: '᪉', mapping: Valid }, - Range { from: '᪊', to: '᪏', mapping: Disallowed }, - Range { from: '᪐', to: '᪙', mapping: Valid }, - Range { from: '᪚', to: '᪟', mapping: Disallowed }, - Range { from: '᪠', to: '᪦', mapping: Valid }, - Range { from: 'ᪧ', to: 'ᪧ', mapping: Valid }, - Range { from: '᪨', to: '᪭', mapping: Valid }, - Range { from: '᪮', to: '᪯', mapping: Disallowed }, - Range { from: '᪰', to: '᪽', mapping: Valid }, - Range { from: '᪾', to: '᪾', mapping: Valid }, - Range { from: 'ᪿ', to: '᫿', mapping: Disallowed }, - Range { from: 'ᬀ', to: 'ᭋ', mapping: Valid }, - Range { from: 'ᭌ', to: '᭏', mapping: Disallowed }, - Range { from: '᭐', to: '᭙', mapping: Valid }, - Range { from: '᭚', to: '᭪', mapping: Valid }, - Range { from: '᭫', to: '᭳', mapping: Valid }, - Range { from: '᭴', to: '᭼', mapping: Valid }, - Range { from: '᭽', to: '᭿', mapping: Disallowed }, - Range { from: 'ᮀ', to: '᮪', mapping: Valid }, - Range { from: '᮫', to: 'ᮭ', mapping: Valid }, - Range { from: 'ᮮ', to: '᮹', mapping: Valid }, - Range { from: 'ᮺ', to: 'ᮿ', mapping: Valid }, - Range { from: 'ᯀ', to: '᯳', mapping: Valid }, - Range { from: '᯴', to: '᯻', mapping: Disallowed }, - Range { from: '᯼', to: '᯿', mapping: Valid }, - Range { from: 'ᰀ', to: '᰷', mapping: Valid }, - Range { from: '᰸', to: '᰺', mapping: Disallowed }, - Range { from: '᰻', to: '᰿', mapping: Valid }, - Range { from: '᱀', to: '᱉', mapping: Valid }, - Range { from: '᱊', to: '᱌', mapping: Disallowed }, - Range { from: 'ᱍ', to: 'ᱽ', mapping: Valid }, - Range { from: '᱾', to: '᱿', mapping: Valid }, - Range { from: 'ᲀ', to: 'ᲀ', mapping: Mapped("в") }, - Range { from: 'ᲁ', to: 'ᲁ', mapping: Mapped("д") }, - Range { from: 'ᲂ', to: 'ᲂ', mapping: Mapped("о") }, - Range { from: 'ᲃ', to: 'ᲃ', mapping: Mapped("с") }, - Range { from: 'ᲄ', to: 'ᲅ', mapping: Mapped("т") }, - Range { from: 'ᲆ', to: 'ᲆ', mapping: Mapped("ъ") }, - Range { from: 'ᲇ', to: 'ᲇ', mapping: Mapped("ѣ") }, - Range { from: 'ᲈ', to: 'ᲈ', mapping: Mapped("ꙋ") }, - Range { from: 'Ᲊ', to: 'Ჿ', mapping: Disallowed }, - Range { from: '᳀', to: '᳇', mapping: Valid }, - Range { from: '᳈', to: '᳏', mapping: Disallowed }, - Range { from: '᳐', to: '᳒', mapping: Valid }, - Range { from: '᳓', to: '᳓', mapping: Valid }, - Range { from: '᳔', to: 'ᳲ', mapping: Valid }, - Range { from: 'ᳳ', to: 'ᳶ', mapping: Valid }, - Range { from: '᳷', to: '᳷', mapping: Disallowed }, - Range { from: '᳸', to: '᳹', mapping: Valid }, - Range { from: 'ᳺ', to: '᳿', mapping: Disallowed }, - Range { from: 'ᴀ', to: 'ᴫ', mapping: Valid }, - Range { from: 'ᴬ', to: 'ᴬ', mapping: Mapped("a") }, - Range { from: 'ᴭ', to: 'ᴭ', mapping: Mapped("æ") }, - Range { from: 'ᴮ', to: 'ᴮ', mapping: Mapped("b") }, - Range { from: 'ᴯ', to: 'ᴯ', mapping: Valid }, - Range { from: 'ᴰ', to: 'ᴰ', mapping: Mapped("d") }, - Range { from: 'ᴱ', to: 'ᴱ', mapping: Mapped("e") }, - Range { from: 'ᴲ', to: 'ᴲ', mapping: Mapped("ǝ") }, - Range { from: 'ᴳ', to: 'ᴳ', mapping: Mapped("g") }, - Range { from: 'ᴴ', to: 'ᴴ', mapping: Mapped("h") }, - Range { from: 'ᴵ', to: 'ᴵ', mapping: Mapped("i") }, - Range { from: 'ᴶ', to: 'ᴶ', mapping: Mapped("j") }, - Range { from: 'ᴷ', to: 'ᴷ', mapping: Mapped("k") }, - Range { from: 'ᴸ', to: 'ᴸ', mapping: Mapped("l") }, - Range { from: 'ᴹ', to: 'ᴹ', mapping: Mapped("m") }, - Range { from: 'ᴺ', to: 'ᴺ', mapping: Mapped("n") }, - Range { from: 'ᴻ', to: 'ᴻ', mapping: Valid }, - Range { from: 'ᴼ', to: 'ᴼ', mapping: Mapped("o") }, - Range { from: 'ᴽ', to: 'ᴽ', mapping: Mapped("ȣ") }, - Range { from: 'ᴾ', to: 'ᴾ', mapping: Mapped("p") }, - Range { from: 'ᴿ', to: 'ᴿ', mapping: Mapped("r") }, - Range { from: 'ᵀ', to: 'ᵀ', mapping: Mapped("t") }, - Range { from: 'ᵁ', to: 'ᵁ', mapping: Mapped("u") }, - Range { from: 'ᵂ', to: 'ᵂ', mapping: Mapped("w") }, - Range { from: 'ᵃ', to: 'ᵃ', mapping: Mapped("a") }, - Range { from: 'ᵄ', to: 'ᵄ', mapping: Mapped("ɐ") }, - Range { from: 'ᵅ', to: 'ᵅ', mapping: Mapped("ɑ") }, - Range { from: 'ᵆ', to: 'ᵆ', mapping: Mapped("ᴂ") }, - Range { from: 'ᵇ', to: 'ᵇ', mapping: Mapped("b") }, - Range { from: 'ᵈ', to: 'ᵈ', mapping: Mapped("d") }, - Range { from: 'ᵉ', to: 'ᵉ', mapping: Mapped("e") }, - Range { from: 'ᵊ', to: 'ᵊ', mapping: Mapped("ə") }, - Range { from: 'ᵋ', to: 'ᵋ', mapping: Mapped("ɛ") }, - Range { from: 'ᵌ', to: 'ᵌ', mapping: Mapped("ɜ") }, - Range { from: 'ᵍ', to: 'ᵍ', mapping: Mapped("g") }, - Range { from: 'ᵎ', to: 'ᵎ', mapping: Valid }, - Range { from: 'ᵏ', to: 'ᵏ', mapping: Mapped("k") }, - Range { from: 'ᵐ', to: 'ᵐ', mapping: Mapped("m") }, - Range { from: 'ᵑ', to: 'ᵑ', mapping: Mapped("ŋ") }, - Range { from: 'ᵒ', to: 'ᵒ', mapping: Mapped("o") }, - Range { from: 'ᵓ', to: 'ᵓ', mapping: Mapped("ɔ") }, - Range { from: 'ᵔ', to: 'ᵔ', mapping: Mapped("ᴖ") }, - Range { from: 'ᵕ', to: 'ᵕ', mapping: Mapped("ᴗ") }, - Range { from: 'ᵖ', to: 'ᵖ', mapping: Mapped("p") }, - Range { from: 'ᵗ', to: 'ᵗ', mapping: Mapped("t") }, - Range { from: 'ᵘ', to: 'ᵘ', mapping: Mapped("u") }, - Range { from: 'ᵙ', to: 'ᵙ', mapping: Mapped("ᴝ") }, - Range { from: 'ᵚ', to: 'ᵚ', mapping: Mapped("ɯ") }, - Range { from: 'ᵛ', to: 'ᵛ', mapping: Mapped("v") }, - Range { from: 'ᵜ', to: 'ᵜ', mapping: Mapped("ᴥ") }, - Range { from: 'ᵝ', to: 'ᵝ', mapping: Mapped("β") }, - Range { from: 'ᵞ', to: 'ᵞ', mapping: Mapped("γ") }, - Range { from: 'ᵟ', to: 'ᵟ', mapping: Mapped("δ") }, - Range { from: 'ᵠ', to: 'ᵠ', mapping: Mapped("φ") }, - Range { from: 'ᵡ', to: 'ᵡ', mapping: Mapped("χ") }, - Range { from: 'ᵢ', to: 'ᵢ', mapping: Mapped("i") }, - Range { from: 'ᵣ', to: 'ᵣ', mapping: Mapped("r") }, - Range { from: 'ᵤ', to: 'ᵤ', mapping: Mapped("u") }, - Range { from: 'ᵥ', to: 'ᵥ', mapping: Mapped("v") }, - Range { from: 'ᵦ', to: 'ᵦ', mapping: Mapped("β") }, - Range { from: 'ᵧ', to: 'ᵧ', mapping: Mapped("γ") }, - Range { from: 'ᵨ', to: 'ᵨ', mapping: Mapped("ρ") }, - Range { from: 'ᵩ', to: 'ᵩ', mapping: Mapped("φ") }, - Range { from: 'ᵪ', to: 'ᵪ', mapping: Mapped("χ") }, - Range { from: 'ᵫ', to: 'ᵫ', mapping: Valid }, - Range { from: 'ᵬ', to: 'ᵷ', mapping: Valid }, - Range { from: 'ᵸ', to: 'ᵸ', mapping: Mapped("н") }, - Range { from: 'ᵹ', to: 'ᶚ', mapping: Valid }, - Range { from: 'ᶛ', to: 'ᶛ', mapping: Mapped("ɒ") }, - Range { from: 'ᶜ', to: 'ᶜ', mapping: Mapped("c") }, - Range { from: 'ᶝ', to: 'ᶝ', mapping: Mapped("ɕ") }, - Range { from: 'ᶞ', to: 'ᶞ', mapping: Mapped("ð") }, - Range { from: 'ᶟ', to: 'ᶟ', mapping: Mapped("ɜ") }, - Range { from: 'ᶠ', to: 'ᶠ', mapping: Mapped("f") }, - Range { from: 'ᶡ', to: 'ᶡ', mapping: Mapped("ɟ") }, - Range { from: 'ᶢ', to: 'ᶢ', mapping: Mapped("ɡ") }, - Range { from: 'ᶣ', to: 'ᶣ', mapping: Mapped("ɥ") }, - Range { from: 'ᶤ', to: 'ᶤ', mapping: Mapped("ɨ") }, - Range { from: 'ᶥ', to: 'ᶥ', mapping: Mapped("ɩ") }, - Range { from: 'ᶦ', to: 'ᶦ', mapping: Mapped("ɪ") }, - Range { from: 'ᶧ', to: 'ᶧ', mapping: Mapped("ᵻ") }, - Range { from: 'ᶨ', to: 'ᶨ', mapping: Mapped("ʝ") }, - Range { from: 'ᶩ', to: 'ᶩ', mapping: Mapped("ɭ") }, - Range { from: 'ᶪ', to: 'ᶪ', mapping: Mapped("ᶅ") }, - Range { from: 'ᶫ', to: 'ᶫ', mapping: Mapped("ʟ") }, - Range { from: 'ᶬ', to: 'ᶬ', mapping: Mapped("ɱ") }, - Range { from: 'ᶭ', to: 'ᶭ', mapping: Mapped("ɰ") }, - Range { from: 'ᶮ', to: 'ᶮ', mapping: Mapped("ɲ") }, - Range { from: 'ᶯ', to: 'ᶯ', mapping: Mapped("ɳ") }, - Range { from: 'ᶰ', to: 'ᶰ', mapping: Mapped("ɴ") }, - Range { from: 'ᶱ', to: 'ᶱ', mapping: Mapped("ɵ") }, - Range { from: 'ᶲ', to: 'ᶲ', mapping: Mapped("ɸ") }, - Range { from: 'ᶳ', to: 'ᶳ', mapping: Mapped("ʂ") }, - Range { from: 'ᶴ', to: 'ᶴ', mapping: Mapped("ʃ") }, - Range { from: 'ᶵ', to: 'ᶵ', mapping: Mapped("ƫ") }, - Range { from: 'ᶶ', to: 'ᶶ', mapping: Mapped("ʉ") }, - Range { from: 'ᶷ', to: 'ᶷ', mapping: Mapped("ʊ") }, - Range { from: 'ᶸ', to: 'ᶸ', mapping: Mapped("ᴜ") }, - Range { from: 'ᶹ', to: 'ᶹ', mapping: Mapped("ʋ") }, - Range { from: 'ᶺ', to: 'ᶺ', mapping: Mapped("ʌ") }, - Range { from: 'ᶻ', to: 'ᶻ', mapping: Mapped("z") }, - Range { from: 'ᶼ', to: 'ᶼ', mapping: Mapped("ʐ") }, - Range { from: 'ᶽ', to: 'ᶽ', mapping: Mapped("ʑ") }, - Range { from: 'ᶾ', to: 'ᶾ', mapping: Mapped("ʒ") }, - Range { from: 'ᶿ', to: 'ᶿ', mapping: Mapped("θ") }, - Range { from: '᷀', to: '᷃', mapping: Valid }, - Range { from: '᷄', to: '᷊', mapping: Valid }, - Range { from: '᷋', to: 'ᷦ', mapping: Valid }, - Range { from: 'ᷧ', to: '᷵', mapping: Valid }, - Range { from: '᷶', to: '᷺', mapping: Disallowed }, - Range { from: '᷻', to: '᷻', mapping: Valid }, - Range { from: '᷼', to: '᷼', mapping: Valid }, - Range { from: '᷽', to: '᷽', mapping: Valid }, - Range { from: '᷾', to: '᷿', mapping: Valid }, - Range { from: 'Ḁ', to: 'Ḁ', mapping: Mapped("ḁ") }, - Range { from: 'ḁ', to: 'ḁ', mapping: Valid }, - Range { from: 'Ḃ', to: 'Ḃ', mapping: Mapped("ḃ") }, - Range { from: 'ḃ', to: 'ḃ', mapping: Valid }, - Range { from: 'Ḅ', to: 'Ḅ', mapping: Mapped("ḅ") }, - Range { from: 'ḅ', to: 'ḅ', mapping: Valid }, - Range { from: 'Ḇ', to: 'Ḇ', mapping: Mapped("ḇ") }, - Range { from: 'ḇ', to: 'ḇ', mapping: Valid }, - Range { from: 'Ḉ', to: 'Ḉ', mapping: Mapped("ḉ") }, - Range { from: 'ḉ', to: 'ḉ', mapping: Valid }, - Range { from: 'Ḋ', to: 'Ḋ', mapping: Mapped("ḋ") }, - Range { from: 'ḋ', to: 'ḋ', mapping: Valid }, - Range { from: 'Ḍ', to: 'Ḍ', mapping: Mapped("ḍ") }, - Range { from: 'ḍ', to: 'ḍ', mapping: Valid }, - Range { from: 'Ḏ', to: 'Ḏ', mapping: Mapped("ḏ") }, - Range { from: 'ḏ', to: 'ḏ', mapping: Valid }, - Range { from: 'Ḑ', to: 'Ḑ', mapping: Mapped("ḑ") }, - Range { from: 'ḑ', to: 'ḑ', mapping: Valid }, - Range { from: 'Ḓ', to: 'Ḓ', mapping: Mapped("ḓ") }, - Range { from: 'ḓ', to: 'ḓ', mapping: Valid }, - Range { from: 'Ḕ', to: 'Ḕ', mapping: Mapped("ḕ") }, - Range { from: 'ḕ', to: 'ḕ', mapping: Valid }, - Range { from: 'Ḗ', to: 'Ḗ', mapping: Mapped("ḗ") }, - Range { from: 'ḗ', to: 'ḗ', mapping: Valid }, - Range { from: 'Ḙ', to: 'Ḙ', mapping: Mapped("ḙ") }, - Range { from: 'ḙ', to: 'ḙ', mapping: Valid }, - Range { from: 'Ḛ', to: 'Ḛ', mapping: Mapped("ḛ") }, - Range { from: 'ḛ', to: 'ḛ', mapping: Valid }, - Range { from: 'Ḝ', to: 'Ḝ', mapping: Mapped("ḝ") }, - Range { from: 'ḝ', to: 'ḝ', mapping: Valid }, - Range { from: 'Ḟ', to: 'Ḟ', mapping: Mapped("ḟ") }, - Range { from: 'ḟ', to: 'ḟ', mapping: Valid }, - Range { from: 'Ḡ', to: 'Ḡ', mapping: Mapped("ḡ") }, - Range { from: 'ḡ', to: 'ḡ', mapping: Valid }, - Range { from: 'Ḣ', to: 'Ḣ', mapping: Mapped("ḣ") }, - Range { from: 'ḣ', to: 'ḣ', mapping: Valid }, - Range { from: 'Ḥ', to: 'Ḥ', mapping: Mapped("ḥ") }, - Range { from: 'ḥ', to: 'ḥ', mapping: Valid }, - Range { from: 'Ḧ', to: 'Ḧ', mapping: Mapped("ḧ") }, - Range { from: 'ḧ', to: 'ḧ', mapping: Valid }, - Range { from: 'Ḩ', to: 'Ḩ', mapping: Mapped("ḩ") }, - Range { from: 'ḩ', to: 'ḩ', mapping: Valid }, - Range { from: 'Ḫ', to: 'Ḫ', mapping: Mapped("ḫ") }, - Range { from: 'ḫ', to: 'ḫ', mapping: Valid }, - Range { from: 'Ḭ', to: 'Ḭ', mapping: Mapped("ḭ") }, - Range { from: 'ḭ', to: 'ḭ', mapping: Valid }, - Range { from: 'Ḯ', to: 'Ḯ', mapping: Mapped("ḯ") }, - Range { from: 'ḯ', to: 'ḯ', mapping: Valid }, - Range { from: 'Ḱ', to: 'Ḱ', mapping: Mapped("ḱ") }, - Range { from: 'ḱ', to: 'ḱ', mapping: Valid }, - Range { from: 'Ḳ', to: 'Ḳ', mapping: Mapped("ḳ") }, - Range { from: 'ḳ', to: 'ḳ', mapping: Valid }, - Range { from: 'Ḵ', to: 'Ḵ', mapping: Mapped("ḵ") }, - Range { from: 'ḵ', to: 'ḵ', mapping: Valid }, - Range { from: 'Ḷ', to: 'Ḷ', mapping: Mapped("ḷ") }, - Range { from: 'ḷ', to: 'ḷ', mapping: Valid }, - Range { from: 'Ḹ', to: 'Ḹ', mapping: Mapped("ḹ") }, - Range { from: 'ḹ', to: 'ḹ', mapping: Valid }, - Range { from: 'Ḻ', to: 'Ḻ', mapping: Mapped("ḻ") }, - Range { from: 'ḻ', to: 'ḻ', mapping: Valid }, - Range { from: 'Ḽ', to: 'Ḽ', mapping: Mapped("ḽ") }, - Range { from: 'ḽ', to: 'ḽ', mapping: Valid }, - Range { from: 'Ḿ', to: 'Ḿ', mapping: Mapped("ḿ") }, - Range { from: 'ḿ', to: 'ḿ', mapping: Valid }, - Range { from: 'Ṁ', to: 'Ṁ', mapping: Mapped("ṁ") }, - Range { from: 'ṁ', to: 'ṁ', mapping: Valid }, - Range { from: 'Ṃ', to: 'Ṃ', mapping: Mapped("ṃ") }, - Range { from: 'ṃ', to: 'ṃ', mapping: Valid }, - Range { from: 'Ṅ', to: 'Ṅ', mapping: Mapped("ṅ") }, - Range { from: 'ṅ', to: 'ṅ', mapping: Valid }, - Range { from: 'Ṇ', to: 'Ṇ', mapping: Mapped("ṇ") }, - Range { from: 'ṇ', to: 'ṇ', mapping: Valid }, - Range { from: 'Ṉ', to: 'Ṉ', mapping: Mapped("ṉ") }, - Range { from: 'ṉ', to: 'ṉ', mapping: Valid }, - Range { from: 'Ṋ', to: 'Ṋ', mapping: Mapped("ṋ") }, - Range { from: 'ṋ', to: 'ṋ', mapping: Valid }, - Range { from: 'Ṍ', to: 'Ṍ', mapping: Mapped("ṍ") }, - Range { from: 'ṍ', to: 'ṍ', mapping: Valid }, - Range { from: 'Ṏ', to: 'Ṏ', mapping: Mapped("ṏ") }, - Range { from: 'ṏ', to: 'ṏ', mapping: Valid }, - Range { from: 'Ṑ', to: 'Ṑ', mapping: Mapped("ṑ") }, - Range { from: 'ṑ', to: 'ṑ', mapping: Valid }, - Range { from: 'Ṓ', to: 'Ṓ', mapping: Mapped("ṓ") }, - Range { from: 'ṓ', to: 'ṓ', mapping: Valid }, - Range { from: 'Ṕ', to: 'Ṕ', mapping: Mapped("ṕ") }, - Range { from: 'ṕ', to: 'ṕ', mapping: Valid }, - Range { from: 'Ṗ', to: 'Ṗ', mapping: Mapped("ṗ") }, - Range { from: 'ṗ', to: 'ṗ', mapping: Valid }, - Range { from: 'Ṙ', to: 'Ṙ', mapping: Mapped("ṙ") }, - Range { from: 'ṙ', to: 'ṙ', mapping: Valid }, - Range { from: 'Ṛ', to: 'Ṛ', mapping: Mapped("ṛ") }, - Range { from: 'ṛ', to: 'ṛ', mapping: Valid }, - Range { from: 'Ṝ', to: 'Ṝ', mapping: Mapped("ṝ") }, - Range { from: 'ṝ', to: 'ṝ', mapping: Valid }, - Range { from: 'Ṟ', to: 'Ṟ', mapping: Mapped("ṟ") }, - Range { from: 'ṟ', to: 'ṟ', mapping: Valid }, - Range { from: 'Ṡ', to: 'Ṡ', mapping: Mapped("ṡ") }, - Range { from: 'ṡ', to: 'ṡ', mapping: Valid }, - Range { from: 'Ṣ', to: 'Ṣ', mapping: Mapped("ṣ") }, - Range { from: 'ṣ', to: 'ṣ', mapping: Valid }, - Range { from: 'Ṥ', to: 'Ṥ', mapping: Mapped("ṥ") }, - Range { from: 'ṥ', to: 'ṥ', mapping: Valid }, - Range { from: 'Ṧ', to: 'Ṧ', mapping: Mapped("ṧ") }, - Range { from: 'ṧ', to: 'ṧ', mapping: Valid }, - Range { from: 'Ṩ', to: 'Ṩ', mapping: Mapped("ṩ") }, - Range { from: 'ṩ', to: 'ṩ', mapping: Valid }, - Range { from: 'Ṫ', to: 'Ṫ', mapping: Mapped("ṫ") }, - Range { from: 'ṫ', to: 'ṫ', mapping: Valid }, - Range { from: 'Ṭ', to: 'Ṭ', mapping: Mapped("ṭ") }, - Range { from: 'ṭ', to: 'ṭ', mapping: Valid }, - Range { from: 'Ṯ', to: 'Ṯ', mapping: Mapped("ṯ") }, - Range { from: 'ṯ', to: 'ṯ', mapping: Valid }, - Range { from: 'Ṱ', to: 'Ṱ', mapping: Mapped("ṱ") }, - Range { from: 'ṱ', to: 'ṱ', mapping: Valid }, - Range { from: 'Ṳ', to: 'Ṳ', mapping: Mapped("ṳ") }, - Range { from: 'ṳ', to: 'ṳ', mapping: Valid }, - Range { from: 'Ṵ', to: 'Ṵ', mapping: Mapped("ṵ") }, - Range { from: 'ṵ', to: 'ṵ', mapping: Valid }, - Range { from: 'Ṷ', to: 'Ṷ', mapping: Mapped("ṷ") }, - Range { from: 'ṷ', to: 'ṷ', mapping: Valid }, - Range { from: 'Ṹ', to: 'Ṹ', mapping: Mapped("ṹ") }, - Range { from: 'ṹ', to: 'ṹ', mapping: Valid }, - Range { from: 'Ṻ', to: 'Ṻ', mapping: Mapped("ṻ") }, - Range { from: 'ṻ', to: 'ṻ', mapping: Valid }, - Range { from: 'Ṽ', to: 'Ṽ', mapping: Mapped("ṽ") }, - Range { from: 'ṽ', to: 'ṽ', mapping: Valid }, - Range { from: 'Ṿ', to: 'Ṿ', mapping: Mapped("ṿ") }, - Range { from: 'ṿ', to: 'ṿ', mapping: Valid }, - Range { from: 'Ẁ', to: 'Ẁ', mapping: Mapped("ẁ") }, - Range { from: 'ẁ', to: 'ẁ', mapping: Valid }, - Range { from: 'Ẃ', to: 'Ẃ', mapping: Mapped("ẃ") }, - Range { from: 'ẃ', to: 'ẃ', mapping: Valid }, - Range { from: 'Ẅ', to: 'Ẅ', mapping: Mapped("ẅ") }, - Range { from: 'ẅ', to: 'ẅ', mapping: Valid }, - Range { from: 'Ẇ', to: 'Ẇ', mapping: Mapped("ẇ") }, - Range { from: 'ẇ', to: 'ẇ', mapping: Valid }, - Range { from: 'Ẉ', to: 'Ẉ', mapping: Mapped("ẉ") }, - Range { from: 'ẉ', to: 'ẉ', mapping: Valid }, - Range { from: 'Ẋ', to: 'Ẋ', mapping: Mapped("ẋ") }, - Range { from: 'ẋ', to: 'ẋ', mapping: Valid }, - Range { from: 'Ẍ', to: 'Ẍ', mapping: Mapped("ẍ") }, - Range { from: 'ẍ', to: 'ẍ', mapping: Valid }, - Range { from: 'Ẏ', to: 'Ẏ', mapping: Mapped("ẏ") }, - Range { from: 'ẏ', to: 'ẏ', mapping: Valid }, - Range { from: 'Ẑ', to: 'Ẑ', mapping: Mapped("ẑ") }, - Range { from: 'ẑ', to: 'ẑ', mapping: Valid }, - Range { from: 'Ẓ', to: 'Ẓ', mapping: Mapped("ẓ") }, - Range { from: 'ẓ', to: 'ẓ', mapping: Valid }, - Range { from: 'Ẕ', to: 'Ẕ', mapping: Mapped("ẕ") }, - Range { from: 'ẕ', to: 'ẙ', mapping: Valid }, - Range { from: 'ẚ', to: 'ẚ', mapping: Mapped("aʾ") }, - Range { from: 'ẛ', to: 'ẛ', mapping: Mapped("ṡ") }, - Range { from: 'ẜ', to: 'ẝ', mapping: Valid }, - Range { from: 'ẞ', to: 'ẞ', mapping: Mapped("ss") }, - Range { from: 'ẟ', to: 'ẟ', mapping: Valid }, - Range { from: 'Ạ', to: 'Ạ', mapping: Mapped("ạ") }, - Range { from: 'ạ', to: 'ạ', mapping: Valid }, - Range { from: 'Ả', to: 'Ả', mapping: Mapped("ả") }, - Range { from: 'ả', to: 'ả', mapping: Valid }, - Range { from: 'Ấ', to: 'Ấ', mapping: Mapped("ấ") }, - Range { from: 'ấ', to: 'ấ', mapping: Valid }, - Range { from: 'Ầ', to: 'Ầ', mapping: Mapped("ầ") }, - Range { from: 'ầ', to: 'ầ', mapping: Valid }, - Range { from: 'Ẩ', to: 'Ẩ', mapping: Mapped("ẩ") }, - Range { from: 'ẩ', to: 'ẩ', mapping: Valid }, - Range { from: 'Ẫ', to: 'Ẫ', mapping: Mapped("ẫ") }, - Range { from: 'ẫ', to: 'ẫ', mapping: Valid }, - Range { from: 'Ậ', to: 'Ậ', mapping: Mapped("ậ") }, - Range { from: 'ậ', to: 'ậ', mapping: Valid }, - Range { from: 'Ắ', to: 'Ắ', mapping: Mapped("ắ") }, - Range { from: 'ắ', to: 'ắ', mapping: Valid }, - Range { from: 'Ằ', to: 'Ằ', mapping: Mapped("ằ") }, - Range { from: 'ằ', to: 'ằ', mapping: Valid }, - Range { from: 'Ẳ', to: 'Ẳ', mapping: Mapped("ẳ") }, - Range { from: 'ẳ', to: 'ẳ', mapping: Valid }, - Range { from: 'Ẵ', to: 'Ẵ', mapping: Mapped("ẵ") }, - Range { from: 'ẵ', to: 'ẵ', mapping: Valid }, - Range { from: 'Ặ', to: 'Ặ', mapping: Mapped("ặ") }, - Range { from: 'ặ', to: 'ặ', mapping: Valid }, - Range { from: 'Ẹ', to: 'Ẹ', mapping: Mapped("ẹ") }, - Range { from: 'ẹ', to: 'ẹ', mapping: Valid }, - Range { from: 'Ẻ', to: 'Ẻ', mapping: Mapped("ẻ") }, - Range { from: 'ẻ', to: 'ẻ', mapping: Valid }, - Range { from: 'Ẽ', to: 'Ẽ', mapping: Mapped("ẽ") }, - Range { from: 'ẽ', to: 'ẽ', mapping: Valid }, - Range { from: 'Ế', to: 'Ế', mapping: Mapped("ế") }, - Range { from: 'ế', to: 'ế', mapping: Valid }, - Range { from: 'Ề', to: 'Ề', mapping: Mapped("ề") }, - Range { from: 'ề', to: 'ề', mapping: Valid }, - Range { from: 'Ể', to: 'Ể', mapping: Mapped("ể") }, - Range { from: 'ể', to: 'ể', mapping: Valid }, - Range { from: 'Ễ', to: 'Ễ', mapping: Mapped("ễ") }, - Range { from: 'ễ', to: 'ễ', mapping: Valid }, - Range { from: 'Ệ', to: 'Ệ', mapping: Mapped("ệ") }, - Range { from: 'ệ', to: 'ệ', mapping: Valid }, - Range { from: 'Ỉ', to: 'Ỉ', mapping: Mapped("ỉ") }, - Range { from: 'ỉ', to: 'ỉ', mapping: Valid }, - Range { from: 'Ị', to: 'Ị', mapping: Mapped("ị") }, - Range { from: 'ị', to: 'ị', mapping: Valid }, - Range { from: 'Ọ', to: 'Ọ', mapping: Mapped("ọ") }, - Range { from: 'ọ', to: 'ọ', mapping: Valid }, - Range { from: 'Ỏ', to: 'Ỏ', mapping: Mapped("ỏ") }, - Range { from: 'ỏ', to: 'ỏ', mapping: Valid }, - Range { from: 'Ố', to: 'Ố', mapping: Mapped("ố") }, - Range { from: 'ố', to: 'ố', mapping: Valid }, - Range { from: 'Ồ', to: 'Ồ', mapping: Mapped("ồ") }, - Range { from: 'ồ', to: 'ồ', mapping: Valid }, - Range { from: 'Ổ', to: 'Ổ', mapping: Mapped("ổ") }, - Range { from: 'ổ', to: 'ổ', mapping: Valid }, - Range { from: 'Ỗ', to: 'Ỗ', mapping: Mapped("ỗ") }, - Range { from: 'ỗ', to: 'ỗ', mapping: Valid }, - Range { from: 'Ộ', to: 'Ộ', mapping: Mapped("ộ") }, - Range { from: 'ộ', to: 'ộ', mapping: Valid }, - Range { from: 'Ớ', to: 'Ớ', mapping: Mapped("ớ") }, - Range { from: 'ớ', to: 'ớ', mapping: Valid }, - Range { from: 'Ờ', to: 'Ờ', mapping: Mapped("ờ") }, - Range { from: 'ờ', to: 'ờ', mapping: Valid }, - Range { from: 'Ở', to: 'Ở', mapping: Mapped("ở") }, - Range { from: 'ở', to: 'ở', mapping: Valid }, - Range { from: 'Ỡ', to: 'Ỡ', mapping: Mapped("ỡ") }, - Range { from: 'ỡ', to: 'ỡ', mapping: Valid }, - Range { from: 'Ợ', to: 'Ợ', mapping: Mapped("ợ") }, - Range { from: 'ợ', to: 'ợ', mapping: Valid }, - Range { from: 'Ụ', to: 'Ụ', mapping: Mapped("ụ") }, - Range { from: 'ụ', to: 'ụ', mapping: Valid }, - Range { from: 'Ủ', to: 'Ủ', mapping: Mapped("ủ") }, - Range { from: 'ủ', to: 'ủ', mapping: Valid }, - Range { from: 'Ứ', to: 'Ứ', mapping: Mapped("ứ") }, - Range { from: 'ứ', to: 'ứ', mapping: Valid }, - Range { from: 'Ừ', to: 'Ừ', mapping: Mapped("ừ") }, - Range { from: 'ừ', to: 'ừ', mapping: Valid }, - Range { from: 'Ử', to: 'Ử', mapping: Mapped("ử") }, - Range { from: 'ử', to: 'ử', mapping: Valid }, - Range { from: 'Ữ', to: 'Ữ', mapping: Mapped("ữ") }, - Range { from: 'ữ', to: 'ữ', mapping: Valid }, - Range { from: 'Ự', to: 'Ự', mapping: Mapped("ự") }, - Range { from: 'ự', to: 'ự', mapping: Valid }, - Range { from: 'Ỳ', to: 'Ỳ', mapping: Mapped("ỳ") }, - Range { from: 'ỳ', to: 'ỳ', mapping: Valid }, - Range { from: 'Ỵ', to: 'Ỵ', mapping: Mapped("ỵ") }, - Range { from: 'ỵ', to: 'ỵ', mapping: Valid }, - Range { from: 'Ỷ', to: 'Ỷ', mapping: Mapped("ỷ") }, - Range { from: 'ỷ', to: 'ỷ', mapping: Valid }, - Range { from: 'Ỹ', to: 'Ỹ', mapping: Mapped("ỹ") }, - Range { from: 'ỹ', to: 'ỹ', mapping: Valid }, - Range { from: 'Ỻ', to: 'Ỻ', mapping: Mapped("ỻ") }, - Range { from: 'ỻ', to: 'ỻ', mapping: Valid }, - Range { from: 'Ỽ', to: 'Ỽ', mapping: Mapped("ỽ") }, - Range { from: 'ỽ', to: 'ỽ', mapping: Valid }, - Range { from: 'Ỿ', to: 'Ỿ', mapping: Mapped("ỿ") }, - Range { from: 'ỿ', to: 'ỿ', mapping: Valid }, - Range { from: 'ἀ', to: 'ἇ', mapping: Valid }, - Range { from: 'Ἀ', to: 'Ἀ', mapping: Mapped("ἀ") }, - Range { from: 'Ἁ', to: 'Ἁ', mapping: Mapped("ἁ") }, - Range { from: 'Ἂ', to: 'Ἂ', mapping: Mapped("ἂ") }, - Range { from: 'Ἃ', to: 'Ἃ', mapping: Mapped("ἃ") }, - Range { from: 'Ἄ', to: 'Ἄ', mapping: Mapped("ἄ") }, - Range { from: 'Ἅ', to: 'Ἅ', mapping: Mapped("ἅ") }, - Range { from: 'Ἆ', to: 'Ἆ', mapping: Mapped("ἆ") }, - Range { from: 'Ἇ', to: 'Ἇ', mapping: Mapped("ἇ") }, - Range { from: 'ἐ', to: 'ἕ', mapping: Valid }, - Range { from: '἖', to: '἗', mapping: Disallowed }, - Range { from: 'Ἐ', to: 'Ἐ', mapping: Mapped("ἐ") }, - Range { from: 'Ἑ', to: 'Ἑ', mapping: Mapped("ἑ") }, - Range { from: 'Ἒ', to: 'Ἒ', mapping: Mapped("ἒ") }, - Range { from: 'Ἓ', to: 'Ἓ', mapping: Mapped("ἓ") }, - Range { from: 'Ἔ', to: 'Ἔ', mapping: Mapped("ἔ") }, - Range { from: 'Ἕ', to: 'Ἕ', mapping: Mapped("ἕ") }, - Range { from: '἞', to: '἟', mapping: Disallowed }, - Range { from: 'ἠ', to: 'ἧ', mapping: Valid }, - Range { from: 'Ἠ', to: 'Ἠ', mapping: Mapped("ἠ") }, - Range { from: 'Ἡ', to: 'Ἡ', mapping: Mapped("ἡ") }, - Range { from: 'Ἢ', to: 'Ἢ', mapping: Mapped("ἢ") }, - Range { from: 'Ἣ', to: 'Ἣ', mapping: Mapped("ἣ") }, - Range { from: 'Ἤ', to: 'Ἤ', mapping: Mapped("ἤ") }, - Range { from: 'Ἥ', to: 'Ἥ', mapping: Mapped("ἥ") }, - Range { from: 'Ἦ', to: 'Ἦ', mapping: Mapped("ἦ") }, - Range { from: 'Ἧ', to: 'Ἧ', mapping: Mapped("ἧ") }, - Range { from: 'ἰ', to: 'ἷ', mapping: Valid }, - Range { from: 'Ἰ', to: 'Ἰ', mapping: Mapped("ἰ") }, - Range { from: 'Ἱ', to: 'Ἱ', mapping: Mapped("ἱ") }, - Range { from: 'Ἲ', to: 'Ἲ', mapping: Mapped("ἲ") }, - Range { from: 'Ἳ', to: 'Ἳ', mapping: Mapped("ἳ") }, - Range { from: 'Ἴ', to: 'Ἴ', mapping: Mapped("ἴ") }, - Range { from: 'Ἵ', to: 'Ἵ', mapping: Mapped("ἵ") }, - Range { from: 'Ἶ', to: 'Ἶ', mapping: Mapped("ἶ") }, - Range { from: 'Ἷ', to: 'Ἷ', mapping: Mapped("ἷ") }, - Range { from: 'ὀ', to: 'ὅ', mapping: Valid }, - Range { from: '὆', to: '὇', mapping: Disallowed }, - Range { from: 'Ὀ', to: 'Ὀ', mapping: Mapped("ὀ") }, - Range { from: 'Ὁ', to: 'Ὁ', mapping: Mapped("ὁ") }, - Range { from: 'Ὂ', to: 'Ὂ', mapping: Mapped("ὂ") }, - Range { from: 'Ὃ', to: 'Ὃ', mapping: Mapped("ὃ") }, - Range { from: 'Ὄ', to: 'Ὄ', mapping: Mapped("ὄ") }, - Range { from: 'Ὅ', to: 'Ὅ', mapping: Mapped("ὅ") }, - Range { from: '὎', to: '὏', mapping: Disallowed }, - Range { from: 'ὐ', to: 'ὗ', mapping: Valid }, - Range { from: '὘', to: '὘', mapping: Disallowed }, - Range { from: 'Ὑ', to: 'Ὑ', mapping: Mapped("ὑ") }, - Range { from: '὚', to: '὚', mapping: Disallowed }, - Range { from: 'Ὓ', to: 'Ὓ', mapping: Mapped("ὓ") }, - Range { from: '὜', to: '὜', mapping: Disallowed }, - Range { from: 'Ὕ', to: 'Ὕ', mapping: Mapped("ὕ") }, - Range { from: '὞', to: '὞', mapping: Disallowed }, - Range { from: 'Ὗ', to: 'Ὗ', mapping: Mapped("ὗ") }, - Range { from: 'ὠ', to: 'ὧ', mapping: Valid }, - Range { from: 'Ὠ', to: 'Ὠ', mapping: Mapped("ὠ") }, - Range { from: 'Ὡ', to: 'Ὡ', mapping: Mapped("ὡ") }, - Range { from: 'Ὢ', to: 'Ὢ', mapping: Mapped("ὢ") }, - Range { from: 'Ὣ', to: 'Ὣ', mapping: Mapped("ὣ") }, - Range { from: 'Ὤ', to: 'Ὤ', mapping: Mapped("ὤ") }, - Range { from: 'Ὥ', to: 'Ὥ', mapping: Mapped("ὥ") }, - Range { from: 'Ὦ', to: 'Ὦ', mapping: Mapped("ὦ") }, - Range { from: 'Ὧ', to: 'Ὧ', mapping: Mapped("ὧ") }, - Range { from: 'ὰ', to: 'ὰ', mapping: Valid }, - Range { from: 'ά', to: 'ά', mapping: Mapped("ά") }, - Range { from: 'ὲ', to: 'ὲ', mapping: Valid }, - Range { from: 'έ', to: 'έ', mapping: Mapped("έ") }, - Range { from: 'ὴ', to: 'ὴ', mapping: Valid }, - Range { from: 'ή', to: 'ή', mapping: Mapped("ή") }, - Range { from: 'ὶ', to: 'ὶ', mapping: Valid }, - Range { from: 'ί', to: 'ί', mapping: Mapped("ί") }, - Range { from: 'ὸ', to: 'ὸ', mapping: Valid }, - Range { from: 'ό', to: 'ό', mapping: Mapped("ό") }, - Range { from: 'ὺ', to: 'ὺ', mapping: Valid }, - Range { from: 'ύ', to: 'ύ', mapping: Mapped("ύ") }, - Range { from: 'ὼ', to: 'ὼ', mapping: Valid }, - Range { from: 'ώ', to: 'ώ', mapping: Mapped("ώ") }, - Range { from: '὾', to: '὿', mapping: Disallowed }, - Range { from: 'ᾀ', to: 'ᾀ', mapping: Mapped("ἀι") }, - Range { from: 'ᾁ', to: 'ᾁ', mapping: Mapped("ἁι") }, - Range { from: 'ᾂ', to: 'ᾂ', mapping: Mapped("ἂι") }, - Range { from: 'ᾃ', to: 'ᾃ', mapping: Mapped("ἃι") }, - Range { from: 'ᾄ', to: 'ᾄ', mapping: Mapped("ἄι") }, - Range { from: 'ᾅ', to: 'ᾅ', mapping: Mapped("ἅι") }, - Range { from: 'ᾆ', to: 'ᾆ', mapping: Mapped("ἆι") }, - Range { from: 'ᾇ', to: 'ᾇ', mapping: Mapped("ἇι") }, - Range { from: 'ᾈ', to: 'ᾈ', mapping: Mapped("ἀι") }, - Range { from: 'ᾉ', to: 'ᾉ', mapping: Mapped("ἁι") }, - Range { from: 'ᾊ', to: 'ᾊ', mapping: Mapped("ἂι") }, - Range { from: 'ᾋ', to: 'ᾋ', mapping: Mapped("ἃι") }, - Range { from: 'ᾌ', to: 'ᾌ', mapping: Mapped("ἄι") }, - Range { from: 'ᾍ', to: 'ᾍ', mapping: Mapped("ἅι") }, - Range { from: 'ᾎ', to: 'ᾎ', mapping: Mapped("ἆι") }, - Range { from: 'ᾏ', to: 'ᾏ', mapping: Mapped("ἇι") }, - Range { from: 'ᾐ', to: 'ᾐ', mapping: Mapped("ἠι") }, - Range { from: 'ᾑ', to: 'ᾑ', mapping: Mapped("ἡι") }, - Range { from: 'ᾒ', to: 'ᾒ', mapping: Mapped("ἢι") }, - Range { from: 'ᾓ', to: 'ᾓ', mapping: Mapped("ἣι") }, - Range { from: 'ᾔ', to: 'ᾔ', mapping: Mapped("ἤι") }, - Range { from: 'ᾕ', to: 'ᾕ', mapping: Mapped("ἥι") }, - Range { from: 'ᾖ', to: 'ᾖ', mapping: Mapped("ἦι") }, - Range { from: 'ᾗ', to: 'ᾗ', mapping: Mapped("ἧι") }, - Range { from: 'ᾘ', to: 'ᾘ', mapping: Mapped("ἠι") }, - Range { from: 'ᾙ', to: 'ᾙ', mapping: Mapped("ἡι") }, - Range { from: 'ᾚ', to: 'ᾚ', mapping: Mapped("ἢι") }, - Range { from: 'ᾛ', to: 'ᾛ', mapping: Mapped("ἣι") }, - Range { from: 'ᾜ', to: 'ᾜ', mapping: Mapped("ἤι") }, - Range { from: 'ᾝ', to: 'ᾝ', mapping: Mapped("ἥι") }, - Range { from: 'ᾞ', to: 'ᾞ', mapping: Mapped("ἦι") }, - Range { from: 'ᾟ', to: 'ᾟ', mapping: Mapped("ἧι") }, - Range { from: 'ᾠ', to: 'ᾠ', mapping: Mapped("ὠι") }, - Range { from: 'ᾡ', to: 'ᾡ', mapping: Mapped("ὡι") }, - Range { from: 'ᾢ', to: 'ᾢ', mapping: Mapped("ὢι") }, - Range { from: 'ᾣ', to: 'ᾣ', mapping: Mapped("ὣι") }, - Range { from: 'ᾤ', to: 'ᾤ', mapping: Mapped("ὤι") }, - Range { from: 'ᾥ', to: 'ᾥ', mapping: Mapped("ὥι") }, - Range { from: 'ᾦ', to: 'ᾦ', mapping: Mapped("ὦι") }, - Range { from: 'ᾧ', to: 'ᾧ', mapping: Mapped("ὧι") }, - Range { from: 'ᾨ', to: 'ᾨ', mapping: Mapped("ὠι") }, - Range { from: 'ᾩ', to: 'ᾩ', mapping: Mapped("ὡι") }, - Range { from: 'ᾪ', to: 'ᾪ', mapping: Mapped("ὢι") }, - Range { from: 'ᾫ', to: 'ᾫ', mapping: Mapped("ὣι") }, - Range { from: 'ᾬ', to: 'ᾬ', mapping: Mapped("ὤι") }, - Range { from: 'ᾭ', to: 'ᾭ', mapping: Mapped("ὥι") }, - Range { from: 'ᾮ', to: 'ᾮ', mapping: Mapped("ὦι") }, - Range { from: 'ᾯ', to: 'ᾯ', mapping: Mapped("ὧι") }, - Range { from: 'ᾰ', to: 'ᾱ', mapping: Valid }, - Range { from: 'ᾲ', to: 'ᾲ', mapping: Mapped("ὰι") }, - Range { from: 'ᾳ', to: 'ᾳ', mapping: Mapped("αι") }, - Range { from: 'ᾴ', to: 'ᾴ', mapping: Mapped("άι") }, - Range { from: '᾵', to: '᾵', mapping: Disallowed }, - Range { from: 'ᾶ', to: 'ᾶ', mapping: Valid }, - Range { from: 'ᾷ', to: 'ᾷ', mapping: Mapped("ᾶι") }, - Range { from: 'Ᾰ', to: 'Ᾰ', mapping: Mapped("ᾰ") }, - Range { from: 'Ᾱ', to: 'Ᾱ', mapping: Mapped("ᾱ") }, - Range { from: 'Ὰ', to: 'Ὰ', mapping: Mapped("ὰ") }, - Range { from: 'Ά', to: 'Ά', mapping: Mapped("ά") }, - Range { from: 'ᾼ', to: 'ᾼ', mapping: Mapped("αι") }, - Range { from: '᾽', to: '᾽', mapping: DisallowedStd3Mapped(" ̓") }, - Range { from: 'ι', to: 'ι', mapping: Mapped("ι") }, - Range { from: '᾿', to: '᾿', mapping: DisallowedStd3Mapped(" ̓") }, - Range { from: '῀', to: '῀', mapping: DisallowedStd3Mapped(" ͂") }, - Range { from: '῁', to: '῁', mapping: DisallowedStd3Mapped(" ̈͂") }, - Range { from: 'ῂ', to: 'ῂ', mapping: Mapped("ὴι") }, - Range { from: 'ῃ', to: 'ῃ', mapping: Mapped("ηι") }, - Range { from: 'ῄ', to: 'ῄ', mapping: Mapped("ήι") }, - Range { from: '῅', to: '῅', mapping: Disallowed }, - Range { from: 'ῆ', to: 'ῆ', mapping: Valid }, - Range { from: 'ῇ', to: 'ῇ', mapping: Mapped("ῆι") }, - Range { from: 'Ὲ', to: 'Ὲ', mapping: Mapped("ὲ") }, - Range { from: 'Έ', to: 'Έ', mapping: Mapped("έ") }, - Range { from: 'Ὴ', to: 'Ὴ', mapping: Mapped("ὴ") }, - Range { from: 'Ή', to: 'Ή', mapping: Mapped("ή") }, - Range { from: 'ῌ', to: 'ῌ', mapping: Mapped("ηι") }, - Range { from: '῍', to: '῍', mapping: DisallowedStd3Mapped(" ̓̀") }, - Range { from: '῎', to: '῎', mapping: DisallowedStd3Mapped(" ̓́") }, - Range { from: '῏', to: '῏', mapping: DisallowedStd3Mapped(" ̓͂") }, - Range { from: 'ῐ', to: 'ῒ', mapping: Valid }, - Range { from: 'ΐ', to: 'ΐ', mapping: Mapped("ΐ") }, - Range { from: '῔', to: '῕', mapping: Disallowed }, - Range { from: 'ῖ', to: 'ῗ', mapping: Valid }, - Range { from: 'Ῐ', to: 'Ῐ', mapping: Mapped("ῐ") }, - Range { from: 'Ῑ', to: 'Ῑ', mapping: Mapped("ῑ") }, - Range { from: 'Ὶ', to: 'Ὶ', mapping: Mapped("ὶ") }, - Range { from: 'Ί', to: 'Ί', mapping: Mapped("ί") }, - Range { from: '῜', to: '῜', mapping: Disallowed }, - Range { from: '῝', to: '῝', mapping: DisallowedStd3Mapped(" ̔̀") }, - Range { from: '῞', to: '῞', mapping: DisallowedStd3Mapped(" ̔́") }, - Range { from: '῟', to: '῟', mapping: DisallowedStd3Mapped(" ̔͂") }, - Range { from: 'ῠ', to: 'ῢ', mapping: Valid }, - Range { from: 'ΰ', to: 'ΰ', mapping: Mapped("ΰ") }, - Range { from: 'ῤ', to: 'ῧ', mapping: Valid }, - Range { from: 'Ῠ', to: 'Ῠ', mapping: Mapped("ῠ") }, - Range { from: 'Ῡ', to: 'Ῡ', mapping: Mapped("ῡ") }, - Range { from: 'Ὺ', to: 'Ὺ', mapping: Mapped("ὺ") }, - Range { from: 'Ύ', to: 'Ύ', mapping: Mapped("ύ") }, - Range { from: 'Ῥ', to: 'Ῥ', mapping: Mapped("ῥ") }, - Range { from: '῭', to: '῭', mapping: DisallowedStd3Mapped(" ̈̀") }, - Range { from: '΅', to: '΅', mapping: DisallowedStd3Mapped(" ̈́") }, - Range { from: '`', to: '`', mapping: DisallowedStd3Mapped("`") }, - Range { from: '῰', to: '῱', mapping: Disallowed }, - Range { from: 'ῲ', to: 'ῲ', mapping: Mapped("ὼι") }, - Range { from: 'ῳ', to: 'ῳ', mapping: Mapped("ωι") }, - Range { from: 'ῴ', to: 'ῴ', mapping: Mapped("ώι") }, - Range { from: '῵', to: '῵', mapping: Disallowed }, - Range { from: 'ῶ', to: 'ῶ', mapping: Valid }, - Range { from: 'ῷ', to: 'ῷ', mapping: Mapped("ῶι") }, - Range { from: 'Ὸ', to: 'Ὸ', mapping: Mapped("ὸ") }, - Range { from: 'Ό', to: 'Ό', mapping: Mapped("ό") }, - Range { from: 'Ὼ', to: 'Ὼ', mapping: Mapped("ὼ") }, - Range { from: 'Ώ', to: 'Ώ', mapping: Mapped("ώ") }, - Range { from: 'ῼ', to: 'ῼ', mapping: Mapped("ωι") }, - Range { from: '´', to: '´', mapping: DisallowedStd3Mapped(" ́") }, - Range { from: '῾', to: '῾', mapping: DisallowedStd3Mapped(" ̔") }, - Range { from: '῿', to: '῿', mapping: Disallowed }, - Range { from: ' ', to: ' ', mapping: DisallowedStd3Mapped(" ") }, - Range { from: '​', to: '​', mapping: Ignored }, - Range { from: '‌', to: '‍', mapping: Deviation("") }, - Range { from: '‎', to: '‏', mapping: Disallowed }, - Range { from: '‐', to: '‐', mapping: Valid }, - Range { from: '‑', to: '‑', mapping: Mapped("‐") }, - Range { from: '‒', to: '‖', mapping: Valid }, - Range { from: '‗', to: '‗', mapping: DisallowedStd3Mapped(" ̳") }, - Range { from: '‘', to: '‣', mapping: Valid }, - Range { from: '․', to: '…', mapping: Disallowed }, - Range { from: '‧', to: '‧', mapping: Valid }, - Range { from: '
', to: '‮', mapping: Disallowed }, - Range { from: ' ', to: ' ', mapping: DisallowedStd3Mapped(" ") }, - Range { from: '‰', to: '′', mapping: Valid }, - Range { from: '″', to: '″', mapping: Mapped("′′") }, - Range { from: '‴', to: '‴', mapping: Mapped("′′′") }, - Range { from: '‵', to: '‵', mapping: Valid }, - Range { from: '‶', to: '‶', mapping: Mapped("‵‵") }, - Range { from: '‷', to: '‷', mapping: Mapped("‵‵‵") }, - Range { from: '‸', to: '※', mapping: Valid }, - Range { from: '‼', to: '‼', mapping: DisallowedStd3Mapped("!!") }, - Range { from: '‽', to: '‽', mapping: Valid }, - Range { from: '‾', to: '‾', mapping: DisallowedStd3Mapped(" ̅") }, - Range { from: '‿', to: '⁆', mapping: Valid }, - Range { from: '⁇', to: '⁇', mapping: DisallowedStd3Mapped("??") }, - Range { from: '⁈', to: '⁈', mapping: DisallowedStd3Mapped("?!") }, - Range { from: '⁉', to: '⁉', mapping: DisallowedStd3Mapped("!?") }, - Range { from: '⁊', to: '⁍', mapping: Valid }, - Range { from: '⁎', to: '⁒', mapping: Valid }, - Range { from: '⁓', to: '⁔', mapping: Valid }, - Range { from: '⁕', to: '⁖', mapping: Valid }, - Range { from: '⁗', to: '⁗', mapping: Mapped("′′′′") }, - Range { from: '⁘', to: '⁞', mapping: Valid }, - Range { from: ' ', to: ' ', mapping: DisallowedStd3Mapped(" ") }, - Range { from: '⁠', to: '⁠', mapping: Ignored }, - Range { from: '⁡', to: '⁣', mapping: Disallowed }, - Range { from: '⁤', to: '⁤', mapping: Ignored }, - Range { from: '⁥', to: '⁥', mapping: Disallowed }, - Range { from: '⁦', to: '⁩', mapping: Disallowed }, - Range { from: '', to: '', mapping: Disallowed }, - Range { from: '⁰', to: '⁰', mapping: Mapped("0") }, - Range { from: 'ⁱ', to: 'ⁱ', mapping: Mapped("i") }, - Range { from: '⁲', to: '⁳', mapping: Disallowed }, - Range { from: '⁴', to: '⁴', mapping: Mapped("4") }, - Range { from: '⁵', to: '⁵', mapping: Mapped("5") }, - Range { from: '⁶', to: '⁶', mapping: Mapped("6") }, - Range { from: '⁷', to: '⁷', mapping: Mapped("7") }, - Range { from: '⁸', to: '⁸', mapping: Mapped("8") }, - Range { from: '⁹', to: '⁹', mapping: Mapped("9") }, - Range { from: '⁺', to: '⁺', mapping: DisallowedStd3Mapped("+") }, - Range { from: '⁻', to: '⁻', mapping: Mapped("−") }, - Range { from: '⁼', to: '⁼', mapping: DisallowedStd3Mapped("=") }, - Range { from: '⁽', to: '⁽', mapping: DisallowedStd3Mapped("(") }, - Range { from: '⁾', to: '⁾', mapping: DisallowedStd3Mapped(")") }, - Range { from: 'ⁿ', to: 'ⁿ', mapping: Mapped("n") }, - Range { from: '₀', to: '₀', mapping: Mapped("0") }, - Range { from: '₁', to: '₁', mapping: Mapped("1") }, - Range { from: '₂', to: '₂', mapping: Mapped("2") }, - Range { from: '₃', to: '₃', mapping: Mapped("3") }, - Range { from: '₄', to: '₄', mapping: Mapped("4") }, - Range { from: '₅', to: '₅', mapping: Mapped("5") }, - Range { from: '₆', to: '₆', mapping: Mapped("6") }, - Range { from: '₇', to: '₇', mapping: Mapped("7") }, - Range { from: '₈', to: '₈', mapping: Mapped("8") }, - Range { from: '₉', to: '₉', mapping: Mapped("9") }, - Range { from: '₊', to: '₊', mapping: DisallowedStd3Mapped("+") }, - Range { from: '₋', to: '₋', mapping: Mapped("−") }, - Range { from: '₌', to: '₌', mapping: DisallowedStd3Mapped("=") }, - Range { from: '₍', to: '₍', mapping: DisallowedStd3Mapped("(") }, - Range { from: '₎', to: '₎', mapping: DisallowedStd3Mapped(")") }, - Range { from: '₏', to: '₏', mapping: Disallowed }, - Range { from: 'ₐ', to: 'ₐ', mapping: Mapped("a") }, - Range { from: 'ₑ', to: 'ₑ', mapping: Mapped("e") }, - Range { from: 'ₒ', to: 'ₒ', mapping: Mapped("o") }, - Range { from: 'ₓ', to: 'ₓ', mapping: Mapped("x") }, - Range { from: 'ₔ', to: 'ₔ', mapping: Mapped("ə") }, - Range { from: 'ₕ', to: 'ₕ', mapping: Mapped("h") }, - Range { from: 'ₖ', to: 'ₖ', mapping: Mapped("k") }, - Range { from: 'ₗ', to: 'ₗ', mapping: Mapped("l") }, - Range { from: 'ₘ', to: 'ₘ', mapping: Mapped("m") }, - Range { from: 'ₙ', to: 'ₙ', mapping: Mapped("n") }, - Range { from: 'ₚ', to: 'ₚ', mapping: Mapped("p") }, - Range { from: 'ₛ', to: 'ₛ', mapping: Mapped("s") }, - Range { from: 'ₜ', to: 'ₜ', mapping: Mapped("t") }, - Range { from: '₝', to: '₟', mapping: Disallowed }, - Range { from: '₠', to: '₧', mapping: Valid }, - Range { from: '₨', to: '₨', mapping: Mapped("rs") }, - Range { from: '₩', to: '₪', mapping: Valid }, - Range { from: '₫', to: '₫', mapping: Valid }, - Range { from: '€', to: '€', mapping: Valid }, - Range { from: '₭', to: '₯', mapping: Valid }, - Range { from: '₰', to: '₱', mapping: Valid }, - Range { from: '₲', to: '₵', mapping: Valid }, - Range { from: '₶', to: '₸', mapping: Valid }, - Range { from: '₹', to: '₹', mapping: Valid }, - Range { from: '₺', to: '₺', mapping: Valid }, - Range { from: '₻', to: '₽', mapping: Valid }, - Range { from: '₾', to: '₾', mapping: Valid }, - Range { from: '₿', to: '⃏', mapping: Disallowed }, - Range { from: '⃐', to: '⃡', mapping: Valid }, - Range { from: '⃢', to: '⃣', mapping: Valid }, - Range { from: '⃤', to: '⃪', mapping: Valid }, - Range { from: '⃫', to: '⃫', mapping: Valid }, - Range { from: '⃬', to: '⃯', mapping: Valid }, - Range { from: '⃰', to: '⃰', mapping: Valid }, - Range { from: '⃱', to: '⃿', mapping: Disallowed }, - Range { from: '℀', to: '℀', mapping: DisallowedStd3Mapped("a/c") }, - Range { from: '℁', to: '℁', mapping: DisallowedStd3Mapped("a/s") }, - Range { from: 'ℂ', to: 'ℂ', mapping: Mapped("c") }, - Range { from: '℃', to: '℃', mapping: Mapped("°c") }, - Range { from: '℄', to: '℄', mapping: Valid }, - Range { from: '℅', to: '℅', mapping: DisallowedStd3Mapped("c/o") }, - Range { from: '℆', to: '℆', mapping: DisallowedStd3Mapped("c/u") }, - Range { from: 'ℇ', to: 'ℇ', mapping: Mapped("ɛ") }, - Range { from: '℈', to: '℈', mapping: Valid }, - Range { from: '℉', to: '℉', mapping: Mapped("°f") }, - Range { from: 'ℊ', to: 'ℊ', mapping: Mapped("g") }, - Range { from: 'ℋ', to: 'ℎ', mapping: Mapped("h") }, - Range { from: 'ℏ', to: 'ℏ', mapping: Mapped("ħ") }, - Range { from: 'ℐ', to: 'ℑ', mapping: Mapped("i") }, - Range { from: 'ℒ', to: 'ℓ', mapping: Mapped("l") }, - Range { from: '℔', to: '℔', mapping: Valid }, - Range { from: 'ℕ', to: 'ℕ', mapping: Mapped("n") }, - Range { from: '№', to: '№', mapping: Mapped("no") }, - Range { from: '℗', to: '℘', mapping: Valid }, - Range { from: 'ℙ', to: 'ℙ', mapping: Mapped("p") }, - Range { from: 'ℚ', to: 'ℚ', mapping: Mapped("q") }, - Range { from: 'ℛ', to: 'ℝ', mapping: Mapped("r") }, - Range { from: '℞', to: '℟', mapping: Valid }, - Range { from: '℠', to: '℠', mapping: Mapped("sm") }, - Range { from: '℡', to: '℡', mapping: Mapped("tel") }, - Range { from: '™', to: '™', mapping: Mapped("tm") }, - Range { from: '℣', to: '℣', mapping: Valid }, - Range { from: 'ℤ', to: 'ℤ', mapping: Mapped("z") }, - Range { from: '℥', to: '℥', mapping: Valid }, - Range { from: 'Ω', to: 'Ω', mapping: Mapped("ω") }, - Range { from: '℧', to: '℧', mapping: Valid }, - Range { from: 'ℨ', to: 'ℨ', mapping: Mapped("z") }, - Range { from: '℩', to: '℩', mapping: Valid }, - Range { from: 'K', to: 'K', mapping: Mapped("k") }, - Range { from: 'Å', to: 'Å', mapping: Mapped("å") }, - Range { from: 'ℬ', to: 'ℬ', mapping: Mapped("b") }, - Range { from: 'ℭ', to: 'ℭ', mapping: Mapped("c") }, - Range { from: '℮', to: '℮', mapping: Valid }, - Range { from: 'ℯ', to: 'ℰ', mapping: Mapped("e") }, - Range { from: 'ℱ', to: 'ℱ', mapping: Mapped("f") }, - Range { from: 'Ⅎ', to: 'Ⅎ', mapping: Disallowed }, - Range { from: 'ℳ', to: 'ℳ', mapping: Mapped("m") }, - Range { from: 'ℴ', to: 'ℴ', mapping: Mapped("o") }, - Range { from: 'ℵ', to: 'ℵ', mapping: Mapped("א") }, - Range { from: 'ℶ', to: 'ℶ', mapping: Mapped("ב") }, - Range { from: 'ℷ', to: 'ℷ', mapping: Mapped("ג") }, - Range { from: 'ℸ', to: 'ℸ', mapping: Mapped("ד") }, - Range { from: 'ℹ', to: 'ℹ', mapping: Mapped("i") }, - Range { from: '℺', to: '℺', mapping: Valid }, - Range { from: '℻', to: '℻', mapping: Mapped("fax") }, - Range { from: 'ℼ', to: 'ℼ', mapping: Mapped("π") }, - Range { from: 'ℽ', to: 'ℾ', mapping: Mapped("γ") }, - Range { from: 'ℿ', to: 'ℿ', mapping: Mapped("π") }, - Range { from: '⅀', to: '⅀', mapping: Mapped("∑") }, - Range { from: '⅁', to: '⅄', mapping: Valid }, - Range { from: 'ⅅ', to: 'ⅆ', mapping: Mapped("d") }, - Range { from: 'ⅇ', to: 'ⅇ', mapping: Mapped("e") }, - Range { from: 'ⅈ', to: 'ⅈ', mapping: Mapped("i") }, - Range { from: 'ⅉ', to: 'ⅉ', mapping: Mapped("j") }, - Range { from: '⅊', to: '⅋', mapping: Valid }, - Range { from: '⅌', to: '⅌', mapping: Valid }, - Range { from: '⅍', to: '⅍', mapping: Valid }, - Range { from: 'ⅎ', to: 'ⅎ', mapping: Valid }, - Range { from: '⅏', to: '⅏', mapping: Valid }, - Range { from: '⅐', to: '⅐', mapping: Mapped("1⁄7") }, - Range { from: '⅑', to: '⅑', mapping: Mapped("1⁄9") }, - Range { from: '⅒', to: '⅒', mapping: Mapped("1⁄10") }, - Range { from: '⅓', to: '⅓', mapping: Mapped("1⁄3") }, - Range { from: '⅔', to: '⅔', mapping: Mapped("2⁄3") }, - Range { from: '⅕', to: '⅕', mapping: Mapped("1⁄5") }, - Range { from: '⅖', to: '⅖', mapping: Mapped("2⁄5") }, - Range { from: '⅗', to: '⅗', mapping: Mapped("3⁄5") }, - Range { from: '⅘', to: '⅘', mapping: Mapped("4⁄5") }, - Range { from: '⅙', to: '⅙', mapping: Mapped("1⁄6") }, - Range { from: '⅚', to: '⅚', mapping: Mapped("5⁄6") }, - Range { from: '⅛', to: '⅛', mapping: Mapped("1⁄8") }, - Range { from: '⅜', to: '⅜', mapping: Mapped("3⁄8") }, - Range { from: '⅝', to: '⅝', mapping: Mapped("5⁄8") }, - Range { from: '⅞', to: '⅞', mapping: Mapped("7⁄8") }, - Range { from: '⅟', to: '⅟', mapping: Mapped("1⁄") }, - Range { from: 'Ⅰ', to: 'Ⅰ', mapping: Mapped("i") }, - Range { from: 'Ⅱ', to: 'Ⅱ', mapping: Mapped("ii") }, - Range { from: 'Ⅲ', to: 'Ⅲ', mapping: Mapped("iii") }, - Range { from: 'Ⅳ', to: 'Ⅳ', mapping: Mapped("iv") }, - Range { from: 'Ⅴ', to: 'Ⅴ', mapping: Mapped("v") }, - Range { from: 'Ⅵ', to: 'Ⅵ', mapping: Mapped("vi") }, - Range { from: 'Ⅶ', to: 'Ⅶ', mapping: Mapped("vii") }, - Range { from: 'Ⅷ', to: 'Ⅷ', mapping: Mapped("viii") }, - Range { from: 'Ⅸ', to: 'Ⅸ', mapping: Mapped("ix") }, - Range { from: 'Ⅹ', to: 'Ⅹ', mapping: Mapped("x") }, - Range { from: 'Ⅺ', to: 'Ⅺ', mapping: Mapped("xi") }, - Range { from: 'Ⅻ', to: 'Ⅻ', mapping: Mapped("xii") }, - Range { from: 'Ⅼ', to: 'Ⅼ', mapping: Mapped("l") }, - Range { from: 'Ⅽ', to: 'Ⅽ', mapping: Mapped("c") }, - Range { from: 'Ⅾ', to: 'Ⅾ', mapping: Mapped("d") }, - Range { from: 'Ⅿ', to: 'Ⅿ', mapping: Mapped("m") }, - Range { from: 'ⅰ', to: 'ⅰ', mapping: Mapped("i") }, - Range { from: 'ⅱ', to: 'ⅱ', mapping: Mapped("ii") }, - Range { from: 'ⅲ', to: 'ⅲ', mapping: Mapped("iii") }, - Range { from: 'ⅳ', to: 'ⅳ', mapping: Mapped("iv") }, - Range { from: 'ⅴ', to: 'ⅴ', mapping: Mapped("v") }, - Range { from: 'ⅵ', to: 'ⅵ', mapping: Mapped("vi") }, - Range { from: 'ⅶ', to: 'ⅶ', mapping: Mapped("vii") }, - Range { from: 'ⅷ', to: 'ⅷ', mapping: Mapped("viii") }, - Range { from: 'ⅸ', to: 'ⅸ', mapping: Mapped("ix") }, - Range { from: 'ⅹ', to: 'ⅹ', mapping: Mapped("x") }, - Range { from: 'ⅺ', to: 'ⅺ', mapping: Mapped("xi") }, - Range { from: 'ⅻ', to: 'ⅻ', mapping: Mapped("xii") }, - Range { from: 'ⅼ', to: 'ⅼ', mapping: Mapped("l") }, - Range { from: 'ⅽ', to: 'ⅽ', mapping: Mapped("c") }, - Range { from: 'ⅾ', to: 'ⅾ', mapping: Mapped("d") }, - Range { from: 'ⅿ', to: 'ⅿ', mapping: Mapped("m") }, - Range { from: 'ↀ', to: 'ↂ', mapping: Valid }, - Range { from: 'Ↄ', to: 'Ↄ', mapping: Disallowed }, - Range { from: 'ↄ', to: 'ↄ', mapping: Valid }, - Range { from: 'ↅ', to: 'ↈ', mapping: Valid }, - Range { from: '↉', to: '↉', mapping: Mapped("0⁄3") }, - Range { from: '↊', to: '↋', mapping: Valid }, - Range { from: '↌', to: '↏', mapping: Disallowed }, - Range { from: '←', to: '⇪', mapping: Valid }, - Range { from: '⇫', to: '⇳', mapping: Valid }, - Range { from: '⇴', to: '⇿', mapping: Valid }, - Range { from: '∀', to: '∫', mapping: Valid }, - Range { from: '∬', to: '∬', mapping: Mapped("∫∫") }, - Range { from: '∭', to: '∭', mapping: Mapped("∫∫∫") }, - Range { from: '∮', to: '∮', mapping: Valid }, - Range { from: '∯', to: '∯', mapping: Mapped("∮∮") }, - Range { from: '∰', to: '∰', mapping: Mapped("∮∮∮") }, - Range { from: '∱', to: '≟', mapping: Valid }, - Range { from: '≠', to: '≠', mapping: DisallowedStd3Valid }, - Range { from: '≡', to: '≭', mapping: Valid }, - Range { from: '≮', to: '≯', mapping: DisallowedStd3Valid }, - Range { from: '≰', to: '⋱', mapping: Valid }, - Range { from: '⋲', to: '⋿', mapping: Valid }, - Range { from: '⌀', to: '⌀', mapping: Valid }, - Range { from: '⌁', to: '⌁', mapping: Valid }, - Range { from: '⌂', to: '⌨', mapping: Valid }, - Range { from: '〈', to: '〈', mapping: Mapped("〈") }, - Range { from: '〉', to: '〉', mapping: Mapped("〉") }, - Range { from: '⌫', to: '⍺', mapping: Valid }, - Range { from: '⍻', to: '⍻', mapping: Valid }, - Range { from: '⍼', to: '⍼', mapping: Valid }, - Range { from: '⍽', to: '⎚', mapping: Valid }, - Range { from: '⎛', to: '⏎', mapping: Valid }, - Range { from: '⏏', to: '⏐', mapping: Valid }, - Range { from: '⏑', to: '⏛', mapping: Valid }, - Range { from: '⏜', to: '⏧', mapping: Valid }, - Range { from: '⏨', to: '⏨', mapping: Valid }, - Range { from: '⏩', to: '⏳', mapping: Valid }, - Range { from: '⏴', to: '⏺', mapping: Valid }, - Range { from: '⏻', to: '⏾', mapping: Valid }, - Range { from: '⏿', to: '⏿', mapping: Disallowed }, - Range { from: '␀', to: '␤', mapping: Valid }, - Range { from: '␥', to: '␦', mapping: Valid }, - Range { from: '␧', to: '␿', mapping: Disallowed }, - Range { from: '⑀', to: '⑊', mapping: Valid }, - Range { from: '⑋', to: '⑟', mapping: Disallowed }, - Range { from: '①', to: '①', mapping: Mapped("1") }, - Range { from: '②', to: '②', mapping: Mapped("2") }, - Range { from: '③', to: '③', mapping: Mapped("3") }, - Range { from: '④', to: '④', mapping: Mapped("4") }, - Range { from: '⑤', to: '⑤', mapping: Mapped("5") }, - Range { from: '⑥', to: '⑥', mapping: Mapped("6") }, - Range { from: '⑦', to: '⑦', mapping: Mapped("7") }, - Range { from: '⑧', to: '⑧', mapping: Mapped("8") }, - Range { from: '⑨', to: '⑨', mapping: Mapped("9") }, - Range { from: '⑩', to: '⑩', mapping: Mapped("10") }, - Range { from: '⑪', to: '⑪', mapping: Mapped("11") }, - Range { from: '⑫', to: '⑫', mapping: Mapped("12") }, - Range { from: '⑬', to: '⑬', mapping: Mapped("13") }, - Range { from: '⑭', to: '⑭', mapping: Mapped("14") }, - Range { from: '⑮', to: '⑮', mapping: Mapped("15") }, - Range { from: '⑯', to: '⑯', mapping: Mapped("16") }, - Range { from: '⑰', to: '⑰', mapping: Mapped("17") }, - Range { from: '⑱', to: '⑱', mapping: Mapped("18") }, - Range { from: '⑲', to: '⑲', mapping: Mapped("19") }, - Range { from: '⑳', to: '⑳', mapping: Mapped("20") }, - Range { from: '⑴', to: '⑴', mapping: DisallowedStd3Mapped("(1)") }, - Range { from: '⑵', to: '⑵', mapping: DisallowedStd3Mapped("(2)") }, - Range { from: '⑶', to: '⑶', mapping: DisallowedStd3Mapped("(3)") }, - Range { from: '⑷', to: '⑷', mapping: DisallowedStd3Mapped("(4)") }, - Range { from: '⑸', to: '⑸', mapping: DisallowedStd3Mapped("(5)") }, - Range { from: '⑹', to: '⑹', mapping: DisallowedStd3Mapped("(6)") }, - Range { from: '⑺', to: '⑺', mapping: DisallowedStd3Mapped("(7)") }, - Range { from: '⑻', to: '⑻', mapping: DisallowedStd3Mapped("(8)") }, - Range { from: '⑼', to: '⑼', mapping: DisallowedStd3Mapped("(9)") }, - Range { from: '⑽', to: '⑽', mapping: DisallowedStd3Mapped("(10)") }, - Range { from: '⑾', to: '⑾', mapping: DisallowedStd3Mapped("(11)") }, - Range { from: '⑿', to: '⑿', mapping: DisallowedStd3Mapped("(12)") }, - Range { from: '⒀', to: '⒀', mapping: DisallowedStd3Mapped("(13)") }, - Range { from: '⒁', to: '⒁', mapping: DisallowedStd3Mapped("(14)") }, - Range { from: '⒂', to: '⒂', mapping: DisallowedStd3Mapped("(15)") }, - Range { from: '⒃', to: '⒃', mapping: DisallowedStd3Mapped("(16)") }, - Range { from: '⒄', to: '⒄', mapping: DisallowedStd3Mapped("(17)") }, - Range { from: '⒅', to: '⒅', mapping: DisallowedStd3Mapped("(18)") }, - Range { from: '⒆', to: '⒆', mapping: DisallowedStd3Mapped("(19)") }, - Range { from: '⒇', to: '⒇', mapping: DisallowedStd3Mapped("(20)") }, - Range { from: '⒈', to: '⒛', mapping: Disallowed }, - Range { from: '⒜', to: '⒜', mapping: DisallowedStd3Mapped("(a)") }, - Range { from: '⒝', to: '⒝', mapping: DisallowedStd3Mapped("(b)") }, - Range { from: '⒞', to: '⒞', mapping: DisallowedStd3Mapped("(c)") }, - Range { from: '⒟', to: '⒟', mapping: DisallowedStd3Mapped("(d)") }, - Range { from: '⒠', to: '⒠', mapping: DisallowedStd3Mapped("(e)") }, - Range { from: '⒡', to: '⒡', mapping: DisallowedStd3Mapped("(f)") }, - Range { from: '⒢', to: '⒢', mapping: DisallowedStd3Mapped("(g)") }, - Range { from: '⒣', to: '⒣', mapping: DisallowedStd3Mapped("(h)") }, - Range { from: '⒤', to: '⒤', mapping: DisallowedStd3Mapped("(i)") }, - Range { from: '⒥', to: '⒥', mapping: DisallowedStd3Mapped("(j)") }, - Range { from: '⒦', to: '⒦', mapping: DisallowedStd3Mapped("(k)") }, - Range { from: '⒧', to: '⒧', mapping: DisallowedStd3Mapped("(l)") }, - Range { from: '⒨', to: '⒨', mapping: DisallowedStd3Mapped("(m)") }, - Range { from: '⒩', to: '⒩', mapping: DisallowedStd3Mapped("(n)") }, - Range { from: '⒪', to: '⒪', mapping: DisallowedStd3Mapped("(o)") }, - Range { from: '⒫', to: '⒫', mapping: DisallowedStd3Mapped("(p)") }, - Range { from: '⒬', to: '⒬', mapping: DisallowedStd3Mapped("(q)") }, - Range { from: '⒭', to: '⒭', mapping: DisallowedStd3Mapped("(r)") }, - Range { from: '⒮', to: '⒮', mapping: DisallowedStd3Mapped("(s)") }, - Range { from: '⒯', to: '⒯', mapping: DisallowedStd3Mapped("(t)") }, - Range { from: '⒰', to: '⒰', mapping: DisallowedStd3Mapped("(u)") }, - Range { from: '⒱', to: '⒱', mapping: DisallowedStd3Mapped("(v)") }, - Range { from: '⒲', to: '⒲', mapping: DisallowedStd3Mapped("(w)") }, - Range { from: '⒳', to: '⒳', mapping: DisallowedStd3Mapped("(x)") }, - Range { from: '⒴', to: '⒴', mapping: DisallowedStd3Mapped("(y)") }, - Range { from: '⒵', to: '⒵', mapping: DisallowedStd3Mapped("(z)") }, - Range { from: 'Ⓐ', to: 'Ⓐ', mapping: Mapped("a") }, - Range { from: 'Ⓑ', to: 'Ⓑ', mapping: Mapped("b") }, - Range { from: 'Ⓒ', to: 'Ⓒ', mapping: Mapped("c") }, - Range { from: 'Ⓓ', to: 'Ⓓ', mapping: Mapped("d") }, - Range { from: 'Ⓔ', to: 'Ⓔ', mapping: Mapped("e") }, - Range { from: 'Ⓕ', to: 'Ⓕ', mapping: Mapped("f") }, - Range { from: 'Ⓖ', to: 'Ⓖ', mapping: Mapped("g") }, - Range { from: 'Ⓗ', to: 'Ⓗ', mapping: Mapped("h") }, - Range { from: 'Ⓘ', to: 'Ⓘ', mapping: Mapped("i") }, - Range { from: 'Ⓙ', to: 'Ⓙ', mapping: Mapped("j") }, - Range { from: 'Ⓚ', to: 'Ⓚ', mapping: Mapped("k") }, - Range { from: 'Ⓛ', to: 'Ⓛ', mapping: Mapped("l") }, - Range { from: 'Ⓜ', to: 'Ⓜ', mapping: Mapped("m") }, - Range { from: 'Ⓝ', to: 'Ⓝ', mapping: Mapped("n") }, - Range { from: 'Ⓞ', to: 'Ⓞ', mapping: Mapped("o") }, - Range { from: 'Ⓟ', to: 'Ⓟ', mapping: Mapped("p") }, - Range { from: 'Ⓠ', to: 'Ⓠ', mapping: Mapped("q") }, - Range { from: 'Ⓡ', to: 'Ⓡ', mapping: Mapped("r") }, - Range { from: 'Ⓢ', to: 'Ⓢ', mapping: Mapped("s") }, - Range { from: 'Ⓣ', to: 'Ⓣ', mapping: Mapped("t") }, - Range { from: 'Ⓤ', to: 'Ⓤ', mapping: Mapped("u") }, - Range { from: 'Ⓥ', to: 'Ⓥ', mapping: Mapped("v") }, - Range { from: 'Ⓦ', to: 'Ⓦ', mapping: Mapped("w") }, - Range { from: 'Ⓧ', to: 'Ⓧ', mapping: Mapped("x") }, - Range { from: 'Ⓨ', to: 'Ⓨ', mapping: Mapped("y") }, - Range { from: 'Ⓩ', to: 'Ⓩ', mapping: Mapped("z") }, - Range { from: 'ⓐ', to: 'ⓐ', mapping: Mapped("a") }, - Range { from: 'ⓑ', to: 'ⓑ', mapping: Mapped("b") }, - Range { from: 'ⓒ', to: 'ⓒ', mapping: Mapped("c") }, - Range { from: 'ⓓ', to: 'ⓓ', mapping: Mapped("d") }, - Range { from: 'ⓔ', to: 'ⓔ', mapping: Mapped("e") }, - Range { from: 'ⓕ', to: 'ⓕ', mapping: Mapped("f") }, - Range { from: 'ⓖ', to: 'ⓖ', mapping: Mapped("g") }, - Range { from: 'ⓗ', to: 'ⓗ', mapping: Mapped("h") }, - Range { from: 'ⓘ', to: 'ⓘ', mapping: Mapped("i") }, - Range { from: 'ⓙ', to: 'ⓙ', mapping: Mapped("j") }, - Range { from: 'ⓚ', to: 'ⓚ', mapping: Mapped("k") }, - Range { from: 'ⓛ', to: 'ⓛ', mapping: Mapped("l") }, - Range { from: 'ⓜ', to: 'ⓜ', mapping: Mapped("m") }, - Range { from: 'ⓝ', to: 'ⓝ', mapping: Mapped("n") }, - Range { from: 'ⓞ', to: 'ⓞ', mapping: Mapped("o") }, - Range { from: 'ⓟ', to: 'ⓟ', mapping: Mapped("p") }, - Range { from: 'ⓠ', to: 'ⓠ', mapping: Mapped("q") }, - Range { from: 'ⓡ', to: 'ⓡ', mapping: Mapped("r") }, - Range { from: 'ⓢ', to: 'ⓢ', mapping: Mapped("s") }, - Range { from: 'ⓣ', to: 'ⓣ', mapping: Mapped("t") }, - Range { from: 'ⓤ', to: 'ⓤ', mapping: Mapped("u") }, - Range { from: 'ⓥ', to: 'ⓥ', mapping: Mapped("v") }, - Range { from: 'ⓦ', to: 'ⓦ', mapping: Mapped("w") }, - Range { from: 'ⓧ', to: 'ⓧ', mapping: Mapped("x") }, - Range { from: 'ⓨ', to: 'ⓨ', mapping: Mapped("y") }, - Range { from: 'ⓩ', to: 'ⓩ', mapping: Mapped("z") }, - Range { from: '⓪', to: '⓪', mapping: Mapped("0") }, - Range { from: '⓫', to: '⓾', mapping: Valid }, - Range { from: '⓿', to: '⓿', mapping: Valid }, - Range { from: '─', to: '▕', mapping: Valid }, - Range { from: '▖', to: '▟', mapping: Valid }, - Range { from: '■', to: '◯', mapping: Valid }, - Range { from: '◰', to: '◷', mapping: Valid }, - Range { from: '◸', to: '◿', mapping: Valid }, - Range { from: '☀', to: '☓', mapping: Valid }, - Range { from: '☔', to: '☕', mapping: Valid }, - Range { from: '☖', to: '☗', mapping: Valid }, - Range { from: '☘', to: '☘', mapping: Valid }, - Range { from: '☙', to: '☙', mapping: Valid }, - Range { from: '☚', to: '♯', mapping: Valid }, - Range { from: '♰', to: '♱', mapping: Valid }, - Range { from: '♲', to: '♽', mapping: Valid }, - Range { from: '♾', to: '♿', mapping: Valid }, - Range { from: '⚀', to: '⚉', mapping: Valid }, - Range { from: '⚊', to: '⚑', mapping: Valid }, - Range { from: '⚒', to: '⚜', mapping: Valid }, - Range { from: '⚝', to: '⚝', mapping: Valid }, - Range { from: '⚞', to: '⚟', mapping: Valid }, - Range { from: '⚠', to: '⚡', mapping: Valid }, - Range { from: '⚢', to: '⚱', mapping: Valid }, - Range { from: '⚲', to: '⚲', mapping: Valid }, - Range { from: '⚳', to: '⚼', mapping: Valid }, - Range { from: '⚽', to: '⚿', mapping: Valid }, - Range { from: '⛀', to: '⛃', mapping: Valid }, - Range { from: '⛄', to: '⛍', mapping: Valid }, - Range { from: '⛎', to: '⛎', mapping: Valid }, - Range { from: '⛏', to: '⛡', mapping: Valid }, - Range { from: '⛢', to: '⛢', mapping: Valid }, - Range { from: '⛣', to: '⛣', mapping: Valid }, - Range { from: '⛤', to: '⛧', mapping: Valid }, - Range { from: '⛨', to: '⛿', mapping: Valid }, - Range { from: '✀', to: '✀', mapping: Valid }, - Range { from: '✁', to: '✄', mapping: Valid }, - Range { from: '✅', to: '✅', mapping: Valid }, - Range { from: '✆', to: '✉', mapping: Valid }, - Range { from: '✊', to: '✋', mapping: Valid }, - Range { from: '✌', to: '✧', mapping: Valid }, - Range { from: '✨', to: '✨', mapping: Valid }, - Range { from: '✩', to: '❋', mapping: Valid }, - Range { from: '❌', to: '❌', mapping: Valid }, - Range { from: '❍', to: '❍', mapping: Valid }, - Range { from: '❎', to: '❎', mapping: Valid }, - Range { from: '❏', to: '❒', mapping: Valid }, - Range { from: '❓', to: '❕', mapping: Valid }, - Range { from: '❖', to: '❖', mapping: Valid }, - Range { from: '❗', to: '❗', mapping: Valid }, - Range { from: '❘', to: '❞', mapping: Valid }, - Range { from: '❟', to: '❠', mapping: Valid }, - Range { from: '❡', to: '❧', mapping: Valid }, - Range { from: '❨', to: '❵', mapping: Valid }, - Range { from: '❶', to: '➔', mapping: Valid }, - Range { from: '➕', to: '➗', mapping: Valid }, - Range { from: '➘', to: '➯', mapping: Valid }, - Range { from: '➰', to: '➰', mapping: Valid }, - Range { from: '➱', to: '➾', mapping: Valid }, - Range { from: '➿', to: '➿', mapping: Valid }, - Range { from: '⟀', to: '⟆', mapping: Valid }, - Range { from: '⟇', to: '⟊', mapping: Valid }, - Range { from: '⟋', to: '⟋', mapping: Valid }, - Range { from: '⟌', to: '⟌', mapping: Valid }, - Range { from: '⟍', to: '⟍', mapping: Valid }, - Range { from: '⟎', to: '⟏', mapping: Valid }, - Range { from: '⟐', to: '⟫', mapping: Valid }, - Range { from: '⟬', to: '⟯', mapping: Valid }, - Range { from: '⟰', to: '⟿', mapping: Valid }, - Range { from: '⠀', to: '⣿', mapping: Valid }, - Range { from: '⤀', to: '⨋', mapping: Valid }, - Range { from: '⨌', to: '⨌', mapping: Mapped("∫∫∫∫") }, - Range { from: '⨍', to: '⩳', mapping: Valid }, - Range { from: '⩴', to: '⩴', mapping: DisallowedStd3Mapped("::=") }, - Range { from: '⩵', to: '⩵', mapping: DisallowedStd3Mapped("==") }, - Range { from: '⩶', to: '⩶', mapping: DisallowedStd3Mapped("===") }, - Range { from: '⩷', to: '⫛', mapping: Valid }, - Range { from: '⫝̸', to: '⫝̸', mapping: Mapped("⫝̸") }, - Range { from: '⫝', to: '⫿', mapping: Valid }, - Range { from: '⬀', to: '⬍', mapping: Valid }, - Range { from: '⬎', to: '⬓', mapping: Valid }, - Range { from: '⬔', to: '⬚', mapping: Valid }, - Range { from: '⬛', to: '⬟', mapping: Valid }, - Range { from: '⬠', to: '⬣', mapping: Valid }, - Range { from: '⬤', to: '⭌', mapping: Valid }, - Range { from: '⭍', to: '⭏', mapping: Valid }, - Range { from: '⭐', to: '⭔', mapping: Valid }, - Range { from: '⭕', to: '⭙', mapping: Valid }, - Range { from: '⭚', to: '⭳', mapping: Valid }, - Range { from: '⭴', to: '⭵', mapping: Disallowed }, - Range { from: '⭶', to: '⮕', mapping: Valid }, - Range { from: '⮖', to: '⮗', mapping: Disallowed }, - Range { from: '⮘', to: '⮹', mapping: Valid }, - Range { from: '⮺', to: '⮼', mapping: Disallowed }, - Range { from: '⮽', to: '⯈', mapping: Valid }, - Range { from: '⯉', to: '⯉', mapping: Disallowed }, - Range { from: '⯊', to: '⯑', mapping: Valid }, - Range { from: '⯒', to: '⯫', mapping: Disallowed }, - Range { from: '⯬', to: '⯯', mapping: Valid }, - Range { from: '⯰', to: '⯿', mapping: Disallowed }, - Range { from: 'Ⰰ', to: 'Ⰰ', mapping: Mapped("ⰰ") }, - Range { from: 'Ⰱ', to: 'Ⰱ', mapping: Mapped("ⰱ") }, - Range { from: 'Ⰲ', to: 'Ⰲ', mapping: Mapped("ⰲ") }, - Range { from: 'Ⰳ', to: 'Ⰳ', mapping: Mapped("ⰳ") }, - Range { from: 'Ⰴ', to: 'Ⰴ', mapping: Mapped("ⰴ") }, - Range { from: 'Ⰵ', to: 'Ⰵ', mapping: Mapped("ⰵ") }, - Range { from: 'Ⰶ', to: 'Ⰶ', mapping: Mapped("ⰶ") }, - Range { from: 'Ⰷ', to: 'Ⰷ', mapping: Mapped("ⰷ") }, - Range { from: 'Ⰸ', to: 'Ⰸ', mapping: Mapped("ⰸ") }, - Range { from: 'Ⰹ', to: 'Ⰹ', mapping: Mapped("ⰹ") }, - Range { from: 'Ⰺ', to: 'Ⰺ', mapping: Mapped("ⰺ") }, - Range { from: 'Ⰻ', to: 'Ⰻ', mapping: Mapped("ⰻ") }, - Range { from: 'Ⰼ', to: 'Ⰼ', mapping: Mapped("ⰼ") }, - Range { from: 'Ⰽ', to: 'Ⰽ', mapping: Mapped("ⰽ") }, - Range { from: 'Ⰾ', to: 'Ⰾ', mapping: Mapped("ⰾ") }, - Range { from: 'Ⰿ', to: 'Ⰿ', mapping: Mapped("ⰿ") }, - Range { from: 'Ⱀ', to: 'Ⱀ', mapping: Mapped("ⱀ") }, - Range { from: 'Ⱁ', to: 'Ⱁ', mapping: Mapped("ⱁ") }, - Range { from: 'Ⱂ', to: 'Ⱂ', mapping: Mapped("ⱂ") }, - Range { from: 'Ⱃ', to: 'Ⱃ', mapping: Mapped("ⱃ") }, - Range { from: 'Ⱄ', to: 'Ⱄ', mapping: Mapped("ⱄ") }, - Range { from: 'Ⱅ', to: 'Ⱅ', mapping: Mapped("ⱅ") }, - Range { from: 'Ⱆ', to: 'Ⱆ', mapping: Mapped("ⱆ") }, - Range { from: 'Ⱇ', to: 'Ⱇ', mapping: Mapped("ⱇ") }, - Range { from: 'Ⱈ', to: 'Ⱈ', mapping: Mapped("ⱈ") }, - Range { from: 'Ⱉ', to: 'Ⱉ', mapping: Mapped("ⱉ") }, - Range { from: 'Ⱊ', to: 'Ⱊ', mapping: Mapped("ⱊ") }, - Range { from: 'Ⱋ', to: 'Ⱋ', mapping: Mapped("ⱋ") }, - Range { from: 'Ⱌ', to: 'Ⱌ', mapping: Mapped("ⱌ") }, - Range { from: 'Ⱍ', to: 'Ⱍ', mapping: Mapped("ⱍ") }, - Range { from: 'Ⱎ', to: 'Ⱎ', mapping: Mapped("ⱎ") }, - Range { from: 'Ⱏ', to: 'Ⱏ', mapping: Mapped("ⱏ") }, - Range { from: 'Ⱐ', to: 'Ⱐ', mapping: Mapped("ⱐ") }, - Range { from: 'Ⱑ', to: 'Ⱑ', mapping: Mapped("ⱑ") }, - Range { from: 'Ⱒ', to: 'Ⱒ', mapping: Mapped("ⱒ") }, - Range { from: 'Ⱓ', to: 'Ⱓ', mapping: Mapped("ⱓ") }, - Range { from: 'Ⱔ', to: 'Ⱔ', mapping: Mapped("ⱔ") }, - Range { from: 'Ⱕ', to: 'Ⱕ', mapping: Mapped("ⱕ") }, - Range { from: 'Ⱖ', to: 'Ⱖ', mapping: Mapped("ⱖ") }, - Range { from: 'Ⱗ', to: 'Ⱗ', mapping: Mapped("ⱗ") }, - Range { from: 'Ⱘ', to: 'Ⱘ', mapping: Mapped("ⱘ") }, - Range { from: 'Ⱙ', to: 'Ⱙ', mapping: Mapped("ⱙ") }, - Range { from: 'Ⱚ', to: 'Ⱚ', mapping: Mapped("ⱚ") }, - Range { from: 'Ⱛ', to: 'Ⱛ', mapping: Mapped("ⱛ") }, - Range { from: 'Ⱜ', to: 'Ⱜ', mapping: Mapped("ⱜ") }, - Range { from: 'Ⱝ', to: 'Ⱝ', mapping: Mapped("ⱝ") }, - Range { from: 'Ⱞ', to: 'Ⱞ', mapping: Mapped("ⱞ") }, - Range { from: 'Ⱟ', to: 'Ⱟ', mapping: Disallowed }, - Range { from: 'ⰰ', to: 'ⱞ', mapping: Valid }, - Range { from: 'ⱟ', to: 'ⱟ', mapping: Disallowed }, - Range { from: 'Ⱡ', to: 'Ⱡ', mapping: Mapped("ⱡ") }, - Range { from: 'ⱡ', to: 'ⱡ', mapping: Valid }, - Range { from: 'Ɫ', to: 'Ɫ', mapping: Mapped("ɫ") }, - Range { from: 'Ᵽ', to: 'Ᵽ', mapping: Mapped("ᵽ") }, - Range { from: 'Ɽ', to: 'Ɽ', mapping: Mapped("ɽ") }, - Range { from: 'ⱥ', to: 'ⱦ', mapping: Valid }, - Range { from: 'Ⱨ', to: 'Ⱨ', mapping: Mapped("ⱨ") }, - Range { from: 'ⱨ', to: 'ⱨ', mapping: Valid }, - Range { from: 'Ⱪ', to: 'Ⱪ', mapping: Mapped("ⱪ") }, - Range { from: 'ⱪ', to: 'ⱪ', mapping: Valid }, - Range { from: 'Ⱬ', to: 'Ⱬ', mapping: Mapped("ⱬ") }, - Range { from: 'ⱬ', to: 'ⱬ', mapping: Valid }, - Range { from: 'Ɑ', to: 'Ɑ', mapping: Mapped("ɑ") }, - Range { from: 'Ɱ', to: 'Ɱ', mapping: Mapped("ɱ") }, - Range { from: 'Ɐ', to: 'Ɐ', mapping: Mapped("ɐ") }, - Range { from: 'Ɒ', to: 'Ɒ', mapping: Mapped("ɒ") }, - Range { from: 'ⱱ', to: 'ⱱ', mapping: Valid }, - Range { from: 'Ⱳ', to: 'Ⱳ', mapping: Mapped("ⱳ") }, - Range { from: 'ⱳ', to: 'ⱳ', mapping: Valid }, - Range { from: 'ⱴ', to: 'ⱴ', mapping: Valid }, - Range { from: 'Ⱶ', to: 'Ⱶ', mapping: Mapped("ⱶ") }, - Range { from: 'ⱶ', to: 'ⱷ', mapping: Valid }, - Range { from: 'ⱸ', to: 'ⱻ', mapping: Valid }, - Range { from: 'ⱼ', to: 'ⱼ', mapping: Mapped("j") }, - Range { from: 'ⱽ', to: 'ⱽ', mapping: Mapped("v") }, - Range { from: 'Ȿ', to: 'Ȿ', mapping: Mapped("ȿ") }, - Range { from: 'Ɀ', to: 'Ɀ', mapping: Mapped("ɀ") }, - Range { from: 'Ⲁ', to: 'Ⲁ', mapping: Mapped("ⲁ") }, - Range { from: 'ⲁ', to: 'ⲁ', mapping: Valid }, - Range { from: 'Ⲃ', to: 'Ⲃ', mapping: Mapped("ⲃ") }, - Range { from: 'ⲃ', to: 'ⲃ', mapping: Valid }, - Range { from: 'Ⲅ', to: 'Ⲅ', mapping: Mapped("ⲅ") }, - Range { from: 'ⲅ', to: 'ⲅ', mapping: Valid }, - Range { from: 'Ⲇ', to: 'Ⲇ', mapping: Mapped("ⲇ") }, - Range { from: 'ⲇ', to: 'ⲇ', mapping: Valid }, - Range { from: 'Ⲉ', to: 'Ⲉ', mapping: Mapped("ⲉ") }, - Range { from: 'ⲉ', to: 'ⲉ', mapping: Valid }, - Range { from: 'Ⲋ', to: 'Ⲋ', mapping: Mapped("ⲋ") }, - Range { from: 'ⲋ', to: 'ⲋ', mapping: Valid }, - Range { from: 'Ⲍ', to: 'Ⲍ', mapping: Mapped("ⲍ") }, - Range { from: 'ⲍ', to: 'ⲍ', mapping: Valid }, - Range { from: 'Ⲏ', to: 'Ⲏ', mapping: Mapped("ⲏ") }, - Range { from: 'ⲏ', to: 'ⲏ', mapping: Valid }, - Range { from: 'Ⲑ', to: 'Ⲑ', mapping: Mapped("ⲑ") }, - Range { from: 'ⲑ', to: 'ⲑ', mapping: Valid }, - Range { from: 'Ⲓ', to: 'Ⲓ', mapping: Mapped("ⲓ") }, - Range { from: 'ⲓ', to: 'ⲓ', mapping: Valid }, - Range { from: 'Ⲕ', to: 'Ⲕ', mapping: Mapped("ⲕ") }, - Range { from: 'ⲕ', to: 'ⲕ', mapping: Valid }, - Range { from: 'Ⲗ', to: 'Ⲗ', mapping: Mapped("ⲗ") }, - Range { from: 'ⲗ', to: 'ⲗ', mapping: Valid }, - Range { from: 'Ⲙ', to: 'Ⲙ', mapping: Mapped("ⲙ") }, - Range { from: 'ⲙ', to: 'ⲙ', mapping: Valid }, - Range { from: 'Ⲛ', to: 'Ⲛ', mapping: Mapped("ⲛ") }, - Range { from: 'ⲛ', to: 'ⲛ', mapping: Valid }, - Range { from: 'Ⲝ', to: 'Ⲝ', mapping: Mapped("ⲝ") }, - Range { from: 'ⲝ', to: 'ⲝ', mapping: Valid }, - Range { from: 'Ⲟ', to: 'Ⲟ', mapping: Mapped("ⲟ") }, - Range { from: 'ⲟ', to: 'ⲟ', mapping: Valid }, - Range { from: 'Ⲡ', to: 'Ⲡ', mapping: Mapped("ⲡ") }, - Range { from: 'ⲡ', to: 'ⲡ', mapping: Valid }, - Range { from: 'Ⲣ', to: 'Ⲣ', mapping: Mapped("ⲣ") }, - Range { from: 'ⲣ', to: 'ⲣ', mapping: Valid }, - Range { from: 'Ⲥ', to: 'Ⲥ', mapping: Mapped("ⲥ") }, - Range { from: 'ⲥ', to: 'ⲥ', mapping: Valid }, - Range { from: 'Ⲧ', to: 'Ⲧ', mapping: Mapped("ⲧ") }, - Range { from: 'ⲧ', to: 'ⲧ', mapping: Valid }, - Range { from: 'Ⲩ', to: 'Ⲩ', mapping: Mapped("ⲩ") }, - Range { from: 'ⲩ', to: 'ⲩ', mapping: Valid }, - Range { from: 'Ⲫ', to: 'Ⲫ', mapping: Mapped("ⲫ") }, - Range { from: 'ⲫ', to: 'ⲫ', mapping: Valid }, - Range { from: 'Ⲭ', to: 'Ⲭ', mapping: Mapped("ⲭ") }, - Range { from: 'ⲭ', to: 'ⲭ', mapping: Valid }, - Range { from: 'Ⲯ', to: 'Ⲯ', mapping: Mapped("ⲯ") }, - Range { from: 'ⲯ', to: 'ⲯ', mapping: Valid }, - Range { from: 'Ⲱ', to: 'Ⲱ', mapping: Mapped("ⲱ") }, - Range { from: 'ⲱ', to: 'ⲱ', mapping: Valid }, - Range { from: 'Ⲳ', to: 'Ⲳ', mapping: Mapped("ⲳ") }, - Range { from: 'ⲳ', to: 'ⲳ', mapping: Valid }, - Range { from: 'Ⲵ', to: 'Ⲵ', mapping: Mapped("ⲵ") }, - Range { from: 'ⲵ', to: 'ⲵ', mapping: Valid }, - Range { from: 'Ⲷ', to: 'Ⲷ', mapping: Mapped("ⲷ") }, - Range { from: 'ⲷ', to: 'ⲷ', mapping: Valid }, - Range { from: 'Ⲹ', to: 'Ⲹ', mapping: Mapped("ⲹ") }, - Range { from: 'ⲹ', to: 'ⲹ', mapping: Valid }, - Range { from: 'Ⲻ', to: 'Ⲻ', mapping: Mapped("ⲻ") }, - Range { from: 'ⲻ', to: 'ⲻ', mapping: Valid }, - Range { from: 'Ⲽ', to: 'Ⲽ', mapping: Mapped("ⲽ") }, - Range { from: 'ⲽ', to: 'ⲽ', mapping: Valid }, - Range { from: 'Ⲿ', to: 'Ⲿ', mapping: Mapped("ⲿ") }, - Range { from: 'ⲿ', to: 'ⲿ', mapping: Valid }, - Range { from: 'Ⳁ', to: 'Ⳁ', mapping: Mapped("ⳁ") }, - Range { from: 'ⳁ', to: 'ⳁ', mapping: Valid }, - Range { from: 'Ⳃ', to: 'Ⳃ', mapping: Mapped("ⳃ") }, - Range { from: 'ⳃ', to: 'ⳃ', mapping: Valid }, - Range { from: 'Ⳅ', to: 'Ⳅ', mapping: Mapped("ⳅ") }, - Range { from: 'ⳅ', to: 'ⳅ', mapping: Valid }, - Range { from: 'Ⳇ', to: 'Ⳇ', mapping: Mapped("ⳇ") }, - Range { from: 'ⳇ', to: 'ⳇ', mapping: Valid }, - Range { from: 'Ⳉ', to: 'Ⳉ', mapping: Mapped("ⳉ") }, - Range { from: 'ⳉ', to: 'ⳉ', mapping: Valid }, - Range { from: 'Ⳋ', to: 'Ⳋ', mapping: Mapped("ⳋ") }, - Range { from: 'ⳋ', to: 'ⳋ', mapping: Valid }, - Range { from: 'Ⳍ', to: 'Ⳍ', mapping: Mapped("ⳍ") }, - Range { from: 'ⳍ', to: 'ⳍ', mapping: Valid }, - Range { from: 'Ⳏ', to: 'Ⳏ', mapping: Mapped("ⳏ") }, - Range { from: 'ⳏ', to: 'ⳏ', mapping: Valid }, - Range { from: 'Ⳑ', to: 'Ⳑ', mapping: Mapped("ⳑ") }, - Range { from: 'ⳑ', to: 'ⳑ', mapping: Valid }, - Range { from: 'Ⳓ', to: 'Ⳓ', mapping: Mapped("ⳓ") }, - Range { from: 'ⳓ', to: 'ⳓ', mapping: Valid }, - Range { from: 'Ⳕ', to: 'Ⳕ', mapping: Mapped("ⳕ") }, - Range { from: 'ⳕ', to: 'ⳕ', mapping: Valid }, - Range { from: 'Ⳗ', to: 'Ⳗ', mapping: Mapped("ⳗ") }, - Range { from: 'ⳗ', to: 'ⳗ', mapping: Valid }, - Range { from: 'Ⳙ', to: 'Ⳙ', mapping: Mapped("ⳙ") }, - Range { from: 'ⳙ', to: 'ⳙ', mapping: Valid }, - Range { from: 'Ⳛ', to: 'Ⳛ', mapping: Mapped("ⳛ") }, - Range { from: 'ⳛ', to: 'ⳛ', mapping: Valid }, - Range { from: 'Ⳝ', to: 'Ⳝ', mapping: Mapped("ⳝ") }, - Range { from: 'ⳝ', to: 'ⳝ', mapping: Valid }, - Range { from: 'Ⳟ', to: 'Ⳟ', mapping: Mapped("ⳟ") }, - Range { from: 'ⳟ', to: 'ⳟ', mapping: Valid }, - Range { from: 'Ⳡ', to: 'Ⳡ', mapping: Mapped("ⳡ") }, - Range { from: 'ⳡ', to: 'ⳡ', mapping: Valid }, - Range { from: 'Ⳣ', to: 'Ⳣ', mapping: Mapped("ⳣ") }, - Range { from: 'ⳣ', to: 'ⳤ', mapping: Valid }, - Range { from: '⳥', to: '⳪', mapping: Valid }, - Range { from: 'Ⳬ', to: 'Ⳬ', mapping: Mapped("ⳬ") }, - Range { from: 'ⳬ', to: 'ⳬ', mapping: Valid }, - Range { from: 'Ⳮ', to: 'Ⳮ', mapping: Mapped("ⳮ") }, - Range { from: 'ⳮ', to: '⳱', mapping: Valid }, - Range { from: 'Ⳳ', to: 'Ⳳ', mapping: Mapped("ⳳ") }, - Range { from: 'ⳳ', to: 'ⳳ', mapping: Valid }, - Range { from: '⳴', to: '⳸', mapping: Disallowed }, - Range { from: '⳹', to: '⳿', mapping: Valid }, - Range { from: 'ⴀ', to: 'ⴥ', mapping: Valid }, - Range { from: '⴦', to: '⴦', mapping: Disallowed }, - Range { from: 'ⴧ', to: 'ⴧ', mapping: Valid }, - Range { from: '⴨', to: '⴬', mapping: Disallowed }, - Range { from: 'ⴭ', to: 'ⴭ', mapping: Valid }, - Range { from: '⴮', to: '⴯', mapping: Disallowed }, - Range { from: 'ⴰ', to: 'ⵥ', mapping: Valid }, - Range { from: 'ⵦ', to: 'ⵧ', mapping: Valid }, - Range { from: '⵨', to: '⵮', mapping: Disallowed }, - Range { from: 'ⵯ', to: 'ⵯ', mapping: Mapped("ⵡ") }, - Range { from: '⵰', to: '⵰', mapping: Valid }, - Range { from: '⵱', to: '⵾', mapping: Disallowed }, - Range { from: '⵿', to: '⵿', mapping: Valid }, - Range { from: 'ⶀ', to: 'ⶖ', mapping: Valid }, - Range { from: '⶗', to: '⶟', mapping: Disallowed }, - Range { from: 'ⶠ', to: 'ⶦ', mapping: Valid }, - Range { from: '⶧', to: '⶧', mapping: Disallowed }, - Range { from: 'ⶨ', to: 'ⶮ', mapping: Valid }, - Range { from: '⶯', to: '⶯', mapping: Disallowed }, - Range { from: 'ⶰ', to: 'ⶶ', mapping: Valid }, - Range { from: '⶷', to: '⶷', mapping: Disallowed }, - Range { from: 'ⶸ', to: 'ⶾ', mapping: Valid }, - Range { from: '⶿', to: '⶿', mapping: Disallowed }, - Range { from: 'ⷀ', to: 'ⷆ', mapping: Valid }, - Range { from: '⷇', to: '⷇', mapping: Disallowed }, - Range { from: 'ⷈ', to: 'ⷎ', mapping: Valid }, - Range { from: '⷏', to: '⷏', mapping: Disallowed }, - Range { from: 'ⷐ', to: 'ⷖ', mapping: Valid }, - Range { from: '⷗', to: '⷗', mapping: Disallowed }, - Range { from: 'ⷘ', to: 'ⷞ', mapping: Valid }, - Range { from: '⷟', to: '⷟', mapping: Disallowed }, - Range { from: 'ⷠ', to: 'ⷿ', mapping: Valid }, - Range { from: '⸀', to: '⸗', mapping: Valid }, - Range { from: '⸘', to: '⸛', mapping: Valid }, - Range { from: '⸜', to: '⸝', mapping: Valid }, - Range { from: '⸞', to: '⸮', mapping: Valid }, - Range { from: 'ⸯ', to: 'ⸯ', mapping: Valid }, - Range { from: '⸰', to: '⸰', mapping: Valid }, - Range { from: '⸱', to: '⸱', mapping: Valid }, - Range { from: '⸲', to: '⸻', mapping: Valid }, - Range { from: '⸼', to: '⹂', mapping: Valid }, - Range { from: '⹃', to: '⹄', mapping: Valid }, - Range { from: '⹅', to: '⹿', mapping: Disallowed }, - Range { from: '⺀', to: '⺙', mapping: Valid }, - Range { from: '⺚', to: '⺚', mapping: Disallowed }, - Range { from: '⺛', to: '⺞', mapping: Valid }, - Range { from: '⺟', to: '⺟', mapping: Mapped("母") }, - Range { from: '⺠', to: '⻲', mapping: Valid }, - Range { from: '⻳', to: '⻳', mapping: Mapped("龟") }, - Range { from: '⻴', to: '⻿', mapping: Disallowed }, - Range { from: '⼀', to: '⼀', mapping: Mapped("一") }, - Range { from: '⼁', to: '⼁', mapping: Mapped("丨") }, - Range { from: '⼂', to: '⼂', mapping: Mapped("丶") }, - Range { from: '⼃', to: '⼃', mapping: Mapped("丿") }, - Range { from: '⼄', to: '⼄', mapping: Mapped("乙") }, - Range { from: '⼅', to: '⼅', mapping: Mapped("亅") }, - Range { from: '⼆', to: '⼆', mapping: Mapped("二") }, - Range { from: '⼇', to: '⼇', mapping: Mapped("亠") }, - Range { from: '⼈', to: '⼈', mapping: Mapped("人") }, - Range { from: '⼉', to: '⼉', mapping: Mapped("儿") }, - Range { from: '⼊', to: '⼊', mapping: Mapped("入") }, - Range { from: '⼋', to: '⼋', mapping: Mapped("八") }, - Range { from: '⼌', to: '⼌', mapping: Mapped("冂") }, - Range { from: '⼍', to: '⼍', mapping: Mapped("冖") }, - Range { from: '⼎', to: '⼎', mapping: Mapped("冫") }, - Range { from: '⼏', to: '⼏', mapping: Mapped("几") }, - Range { from: '⼐', to: '⼐', mapping: Mapped("凵") }, - Range { from: '⼑', to: '⼑', mapping: Mapped("刀") }, - Range { from: '⼒', to: '⼒', mapping: Mapped("力") }, - Range { from: '⼓', to: '⼓', mapping: Mapped("勹") }, - Range { from: '⼔', to: '⼔', mapping: Mapped("匕") }, - Range { from: '⼕', to: '⼕', mapping: Mapped("匚") }, - Range { from: '⼖', to: '⼖', mapping: Mapped("匸") }, - Range { from: '⼗', to: '⼗', mapping: Mapped("十") }, - Range { from: '⼘', to: '⼘', mapping: Mapped("卜") }, - Range { from: '⼙', to: '⼙', mapping: Mapped("卩") }, - Range { from: '⼚', to: '⼚', mapping: Mapped("厂") }, - Range { from: '⼛', to: '⼛', mapping: Mapped("厶") }, - Range { from: '⼜', to: '⼜', mapping: Mapped("又") }, - Range { from: '⼝', to: '⼝', mapping: Mapped("口") }, - Range { from: '⼞', to: '⼞', mapping: Mapped("囗") }, - Range { from: '⼟', to: '⼟', mapping: Mapped("土") }, - Range { from: '⼠', to: '⼠', mapping: Mapped("士") }, - Range { from: '⼡', to: '⼡', mapping: Mapped("夂") }, - Range { from: '⼢', to: '⼢', mapping: Mapped("夊") }, - Range { from: '⼣', to: '⼣', mapping: Mapped("夕") }, - Range { from: '⼤', to: '⼤', mapping: Mapped("大") }, - Range { from: '⼥', to: '⼥', mapping: Mapped("女") }, - Range { from: '⼦', to: '⼦', mapping: Mapped("子") }, - Range { from: '⼧', to: '⼧', mapping: Mapped("宀") }, - Range { from: '⼨', to: '⼨', mapping: Mapped("寸") }, - Range { from: '⼩', to: '⼩', mapping: Mapped("小") }, - Range { from: '⼪', to: '⼪', mapping: Mapped("尢") }, - Range { from: '⼫', to: '⼫', mapping: Mapped("尸") }, - Range { from: '⼬', to: '⼬', mapping: Mapped("屮") }, - Range { from: '⼭', to: '⼭', mapping: Mapped("山") }, - Range { from: '⼮', to: '⼮', mapping: Mapped("巛") }, - Range { from: '⼯', to: '⼯', mapping: Mapped("工") }, - Range { from: '⼰', to: '⼰', mapping: Mapped("己") }, - Range { from: '⼱', to: '⼱', mapping: Mapped("巾") }, - Range { from: '⼲', to: '⼲', mapping: Mapped("干") }, - Range { from: '⼳', to: '⼳', mapping: Mapped("幺") }, - Range { from: '⼴', to: '⼴', mapping: Mapped("广") }, - Range { from: '⼵', to: '⼵', mapping: Mapped("廴") }, - Range { from: '⼶', to: '⼶', mapping: Mapped("廾") }, - Range { from: '⼷', to: '⼷', mapping: Mapped("弋") }, - Range { from: '⼸', to: '⼸', mapping: Mapped("弓") }, - Range { from: '⼹', to: '⼹', mapping: Mapped("彐") }, - Range { from: '⼺', to: '⼺', mapping: Mapped("彡") }, - Range { from: '⼻', to: '⼻', mapping: Mapped("彳") }, - Range { from: '⼼', to: '⼼', mapping: Mapped("心") }, - Range { from: '⼽', to: '⼽', mapping: Mapped("戈") }, - Range { from: '⼾', to: '⼾', mapping: Mapped("戶") }, - Range { from: '⼿', to: '⼿', mapping: Mapped("手") }, - Range { from: '⽀', to: '⽀', mapping: Mapped("支") }, - Range { from: '⽁', to: '⽁', mapping: Mapped("攴") }, - Range { from: '⽂', to: '⽂', mapping: Mapped("文") }, - Range { from: '⽃', to: '⽃', mapping: Mapped("斗") }, - Range { from: '⽄', to: '⽄', mapping: Mapped("斤") }, - Range { from: '⽅', to: '⽅', mapping: Mapped("方") }, - Range { from: '⽆', to: '⽆', mapping: Mapped("无") }, - Range { from: '⽇', to: '⽇', mapping: Mapped("日") }, - Range { from: '⽈', to: '⽈', mapping: Mapped("曰") }, - Range { from: '⽉', to: '⽉', mapping: Mapped("月") }, - Range { from: '⽊', to: '⽊', mapping: Mapped("木") }, - Range { from: '⽋', to: '⽋', mapping: Mapped("欠") }, - Range { from: '⽌', to: '⽌', mapping: Mapped("止") }, - Range { from: '⽍', to: '⽍', mapping: Mapped("歹") }, - Range { from: '⽎', to: '⽎', mapping: Mapped("殳") }, - Range { from: '⽏', to: '⽏', mapping: Mapped("毋") }, - Range { from: '⽐', to: '⽐', mapping: Mapped("比") }, - Range { from: '⽑', to: '⽑', mapping: Mapped("毛") }, - Range { from: '⽒', to: '⽒', mapping: Mapped("氏") }, - Range { from: '⽓', to: '⽓', mapping: Mapped("气") }, - Range { from: '⽔', to: '⽔', mapping: Mapped("水") }, - Range { from: '⽕', to: '⽕', mapping: Mapped("火") }, - Range { from: '⽖', to: '⽖', mapping: Mapped("爪") }, - Range { from: '⽗', to: '⽗', mapping: Mapped("父") }, - Range { from: '⽘', to: '⽘', mapping: Mapped("爻") }, - Range { from: '⽙', to: '⽙', mapping: Mapped("爿") }, - Range { from: '⽚', to: '⽚', mapping: Mapped("片") }, - Range { from: '⽛', to: '⽛', mapping: Mapped("牙") }, - Range { from: '⽜', to: '⽜', mapping: Mapped("牛") }, - Range { from: '⽝', to: '⽝', mapping: Mapped("犬") }, - Range { from: '⽞', to: '⽞', mapping: Mapped("玄") }, - Range { from: '⽟', to: '⽟', mapping: Mapped("玉") }, - Range { from: '⽠', to: '⽠', mapping: Mapped("瓜") }, - Range { from: '⽡', to: '⽡', mapping: Mapped("瓦") }, - Range { from: '⽢', to: '⽢', mapping: Mapped("甘") }, - Range { from: '⽣', to: '⽣', mapping: Mapped("生") }, - Range { from: '⽤', to: '⽤', mapping: Mapped("用") }, - Range { from: '⽥', to: '⽥', mapping: Mapped("田") }, - Range { from: '⽦', to: '⽦', mapping: Mapped("疋") }, - Range { from: '⽧', to: '⽧', mapping: Mapped("疒") }, - Range { from: '⽨', to: '⽨', mapping: Mapped("癶") }, - Range { from: '⽩', to: '⽩', mapping: Mapped("白") }, - Range { from: '⽪', to: '⽪', mapping: Mapped("皮") }, - Range { from: '⽫', to: '⽫', mapping: Mapped("皿") }, - Range { from: '⽬', to: '⽬', mapping: Mapped("目") }, - Range { from: '⽭', to: '⽭', mapping: Mapped("矛") }, - Range { from: '⽮', to: '⽮', mapping: Mapped("矢") }, - Range { from: '⽯', to: '⽯', mapping: Mapped("石") }, - Range { from: '⽰', to: '⽰', mapping: Mapped("示") }, - Range { from: '⽱', to: '⽱', mapping: Mapped("禸") }, - Range { from: '⽲', to: '⽲', mapping: Mapped("禾") }, - Range { from: '⽳', to: '⽳', mapping: Mapped("穴") }, - Range { from: '⽴', to: '⽴', mapping: Mapped("立") }, - Range { from: '⽵', to: '⽵', mapping: Mapped("竹") }, - Range { from: '⽶', to: '⽶', mapping: Mapped("米") }, - Range { from: '⽷', to: '⽷', mapping: Mapped("糸") }, - Range { from: '⽸', to: '⽸', mapping: Mapped("缶") }, - Range { from: '⽹', to: '⽹', mapping: Mapped("网") }, - Range { from: '⽺', to: '⽺', mapping: Mapped("羊") }, - Range { from: '⽻', to: '⽻', mapping: Mapped("羽") }, - Range { from: '⽼', to: '⽼', mapping: Mapped("老") }, - Range { from: '⽽', to: '⽽', mapping: Mapped("而") }, - Range { from: '⽾', to: '⽾', mapping: Mapped("耒") }, - Range { from: '⽿', to: '⽿', mapping: Mapped("耳") }, - Range { from: '⾀', to: '⾀', mapping: Mapped("聿") }, - Range { from: '⾁', to: '⾁', mapping: Mapped("肉") }, - Range { from: '⾂', to: '⾂', mapping: Mapped("臣") }, - Range { from: '⾃', to: '⾃', mapping: Mapped("自") }, - Range { from: '⾄', to: '⾄', mapping: Mapped("至") }, - Range { from: '⾅', to: '⾅', mapping: Mapped("臼") }, - Range { from: '⾆', to: '⾆', mapping: Mapped("舌") }, - Range { from: '⾇', to: '⾇', mapping: Mapped("舛") }, - Range { from: '⾈', to: '⾈', mapping: Mapped("舟") }, - Range { from: '⾉', to: '⾉', mapping: Mapped("艮") }, - Range { from: '⾊', to: '⾊', mapping: Mapped("色") }, - Range { from: '⾋', to: '⾋', mapping: Mapped("艸") }, - Range { from: '⾌', to: '⾌', mapping: Mapped("虍") }, - Range { from: '⾍', to: '⾍', mapping: Mapped("虫") }, - Range { from: '⾎', to: '⾎', mapping: Mapped("血") }, - Range { from: '⾏', to: '⾏', mapping: Mapped("行") }, - Range { from: '⾐', to: '⾐', mapping: Mapped("衣") }, - Range { from: '⾑', to: '⾑', mapping: Mapped("襾") }, - Range { from: '⾒', to: '⾒', mapping: Mapped("見") }, - Range { from: '⾓', to: '⾓', mapping: Mapped("角") }, - Range { from: '⾔', to: '⾔', mapping: Mapped("言") }, - Range { from: '⾕', to: '⾕', mapping: Mapped("谷") }, - Range { from: '⾖', to: '⾖', mapping: Mapped("豆") }, - Range { from: '⾗', to: '⾗', mapping: Mapped("豕") }, - Range { from: '⾘', to: '⾘', mapping: Mapped("豸") }, - Range { from: '⾙', to: '⾙', mapping: Mapped("貝") }, - Range { from: '⾚', to: '⾚', mapping: Mapped("赤") }, - Range { from: '⾛', to: '⾛', mapping: Mapped("走") }, - Range { from: '⾜', to: '⾜', mapping: Mapped("足") }, - Range { from: '⾝', to: '⾝', mapping: Mapped("身") }, - Range { from: '⾞', to: '⾞', mapping: Mapped("車") }, - Range { from: '⾟', to: '⾟', mapping: Mapped("辛") }, - Range { from: '⾠', to: '⾠', mapping: Mapped("辰") }, - Range { from: '⾡', to: '⾡', mapping: Mapped("辵") }, - Range { from: '⾢', to: '⾢', mapping: Mapped("邑") }, - Range { from: '⾣', to: '⾣', mapping: Mapped("酉") }, - Range { from: '⾤', to: '⾤', mapping: Mapped("釆") }, - Range { from: '⾥', to: '⾥', mapping: Mapped("里") }, - Range { from: '⾦', to: '⾦', mapping: Mapped("金") }, - Range { from: '⾧', to: '⾧', mapping: Mapped("長") }, - Range { from: '⾨', to: '⾨', mapping: Mapped("門") }, - Range { from: '⾩', to: '⾩', mapping: Mapped("阜") }, - Range { from: '⾪', to: '⾪', mapping: Mapped("隶") }, - Range { from: '⾫', to: '⾫', mapping: Mapped("隹") }, - Range { from: '⾬', to: '⾬', mapping: Mapped("雨") }, - Range { from: '⾭', to: '⾭', mapping: Mapped("靑") }, - Range { from: '⾮', to: '⾮', mapping: Mapped("非") }, - Range { from: '⾯', to: '⾯', mapping: Mapped("面") }, - Range { from: '⾰', to: '⾰', mapping: Mapped("革") }, - Range { from: '⾱', to: '⾱', mapping: Mapped("韋") }, - Range { from: '⾲', to: '⾲', mapping: Mapped("韭") }, - Range { from: '⾳', to: '⾳', mapping: Mapped("音") }, - Range { from: '⾴', to: '⾴', mapping: Mapped("頁") }, - Range { from: '⾵', to: '⾵', mapping: Mapped("風") }, - Range { from: '⾶', to: '⾶', mapping: Mapped("飛") }, - Range { from: '⾷', to: '⾷', mapping: Mapped("食") }, - Range { from: '⾸', to: '⾸', mapping: Mapped("首") }, - Range { from: '⾹', to: '⾹', mapping: Mapped("香") }, - Range { from: '⾺', to: '⾺', mapping: Mapped("馬") }, - Range { from: '⾻', to: '⾻', mapping: Mapped("骨") }, - Range { from: '⾼', to: '⾼', mapping: Mapped("高") }, - Range { from: '⾽', to: '⾽', mapping: Mapped("髟") }, - Range { from: '⾾', to: '⾾', mapping: Mapped("鬥") }, - Range { from: '⾿', to: '⾿', mapping: Mapped("鬯") }, - Range { from: '⿀', to: '⿀', mapping: Mapped("鬲") }, - Range { from: '⿁', to: '⿁', mapping: Mapped("鬼") }, - Range { from: '⿂', to: '⿂', mapping: Mapped("魚") }, - Range { from: '⿃', to: '⿃', mapping: Mapped("鳥") }, - Range { from: '⿄', to: '⿄', mapping: Mapped("鹵") }, - Range { from: '⿅', to: '⿅', mapping: Mapped("鹿") }, - Range { from: '⿆', to: '⿆', mapping: Mapped("麥") }, - Range { from: '⿇', to: '⿇', mapping: Mapped("麻") }, - Range { from: '⿈', to: '⿈', mapping: Mapped("黃") }, - Range { from: '⿉', to: '⿉', mapping: Mapped("黍") }, - Range { from: '⿊', to: '⿊', mapping: Mapped("黑") }, - Range { from: '⿋', to: '⿋', mapping: Mapped("黹") }, - Range { from: '⿌', to: '⿌', mapping: Mapped("黽") }, - Range { from: '⿍', to: '⿍', mapping: Mapped("鼎") }, - Range { from: '⿎', to: '⿎', mapping: Mapped("鼓") }, - Range { from: '⿏', to: '⿏', mapping: Mapped("鼠") }, - Range { from: '⿐', to: '⿐', mapping: Mapped("鼻") }, - Range { from: '⿑', to: '⿑', mapping: Mapped("齊") }, - Range { from: '⿒', to: '⿒', mapping: Mapped("齒") }, - Range { from: '⿓', to: '⿓', mapping: Mapped("龍") }, - Range { from: '⿔', to: '⿔', mapping: Mapped("龜") }, - Range { from: '⿕', to: '⿕', mapping: Mapped("龠") }, - Range { from: '⿖', to: '⿯', mapping: Disallowed }, - Range { from: '⿰', to: '⿻', mapping: Disallowed }, - Range { from: '⿼', to: '⿿', mapping: Disallowed }, - Range { from: ' ', to: ' ', mapping: DisallowedStd3Mapped(" ") }, - Range { from: '、', to: '、', mapping: Valid }, - Range { from: '。', to: '。', mapping: Mapped(".") }, - Range { from: '〃', to: '〄', mapping: Valid }, - Range { from: '々', to: '〇', mapping: Valid }, - Range { from: '〈', to: '〩', mapping: Valid }, - Range { from: '〪', to: '〭', mapping: Valid }, - Range { from: '〮', to: '〵', mapping: Valid }, - Range { from: '〶', to: '〶', mapping: Mapped("〒") }, - Range { from: '〷', to: '〷', mapping: Valid }, - Range { from: '〸', to: '〸', mapping: Mapped("十") }, - Range { from: '〹', to: '〹', mapping: Mapped("卄") }, - Range { from: '〺', to: '〺', mapping: Mapped("卅") }, - Range { from: '〻', to: '〻', mapping: Valid }, - Range { from: '〼', to: '〼', mapping: Valid }, - Range { from: '〽', to: '〽', mapping: Valid }, - Range { from: '〾', to: '〾', mapping: Valid }, - Range { from: '〿', to: '〿', mapping: Valid }, - Range { from: '぀', to: '぀', mapping: Disallowed }, - Range { from: 'ぁ', to: 'ゔ', mapping: Valid }, - Range { from: 'ゕ', to: 'ゖ', mapping: Valid }, - Range { from: '゗', to: '゘', mapping: Disallowed }, - Range { from: '゙', to: '゚', mapping: Valid }, - Range { from: '゛', to: '゛', mapping: DisallowedStd3Mapped(" ゙") }, - Range { from: '゜', to: '゜', mapping: DisallowedStd3Mapped(" ゚") }, - Range { from: 'ゝ', to: 'ゞ', mapping: Valid }, - Range { from: 'ゟ', to: 'ゟ', mapping: Mapped("より") }, - Range { from: '゠', to: '゠', mapping: Valid }, - Range { from: 'ァ', to: 'ヾ', mapping: Valid }, - Range { from: 'ヿ', to: 'ヿ', mapping: Mapped("コト") }, - Range { from: '㄀', to: '㄄', mapping: Disallowed }, - Range { from: 'ㄅ', to: 'ㄬ', mapping: Valid }, - Range { from: 'ㄭ', to: 'ㄭ', mapping: Valid }, - Range { from: 'ㄮ', to: '㄰', mapping: Disallowed }, - Range { from: 'ㄱ', to: 'ㄱ', mapping: Mapped("ᄀ") }, - Range { from: 'ㄲ', to: 'ㄲ', mapping: Mapped("ᄁ") }, - Range { from: 'ㄳ', to: 'ㄳ', mapping: Mapped("ᆪ") }, - Range { from: 'ㄴ', to: 'ㄴ', mapping: Mapped("ᄂ") }, - Range { from: 'ㄵ', to: 'ㄵ', mapping: Mapped("ᆬ") }, - Range { from: 'ㄶ', to: 'ㄶ', mapping: Mapped("ᆭ") }, - Range { from: 'ㄷ', to: 'ㄷ', mapping: Mapped("ᄃ") }, - Range { from: 'ㄸ', to: 'ㄸ', mapping: Mapped("ᄄ") }, - Range { from: 'ㄹ', to: 'ㄹ', mapping: Mapped("ᄅ") }, - Range { from: 'ㄺ', to: 'ㄺ', mapping: Mapped("ᆰ") }, - Range { from: 'ㄻ', to: 'ㄻ', mapping: Mapped("ᆱ") }, - Range { from: 'ㄼ', to: 'ㄼ', mapping: Mapped("ᆲ") }, - Range { from: 'ㄽ', to: 'ㄽ', mapping: Mapped("ᆳ") }, - Range { from: 'ㄾ', to: 'ㄾ', mapping: Mapped("ᆴ") }, - Range { from: 'ㄿ', to: 'ㄿ', mapping: Mapped("ᆵ") }, - Range { from: 'ㅀ', to: 'ㅀ', mapping: Mapped("ᄚ") }, - Range { from: 'ㅁ', to: 'ㅁ', mapping: Mapped("ᄆ") }, - Range { from: 'ㅂ', to: 'ㅂ', mapping: Mapped("ᄇ") }, - Range { from: 'ㅃ', to: 'ㅃ', mapping: Mapped("ᄈ") }, - Range { from: 'ㅄ', to: 'ㅄ', mapping: Mapped("ᄡ") }, - Range { from: 'ㅅ', to: 'ㅅ', mapping: Mapped("ᄉ") }, - Range { from: 'ㅆ', to: 'ㅆ', mapping: Mapped("ᄊ") }, - Range { from: 'ㅇ', to: 'ㅇ', mapping: Mapped("ᄋ") }, - Range { from: 'ㅈ', to: 'ㅈ', mapping: Mapped("ᄌ") }, - Range { from: 'ㅉ', to: 'ㅉ', mapping: Mapped("ᄍ") }, - Range { from: 'ㅊ', to: 'ㅊ', mapping: Mapped("ᄎ") }, - Range { from: 'ㅋ', to: 'ㅋ', mapping: Mapped("ᄏ") }, - Range { from: 'ㅌ', to: 'ㅌ', mapping: Mapped("ᄐ") }, - Range { from: 'ㅍ', to: 'ㅍ', mapping: Mapped("ᄑ") }, - Range { from: 'ㅎ', to: 'ㅎ', mapping: Mapped("ᄒ") }, - Range { from: 'ㅏ', to: 'ㅏ', mapping: Mapped("ᅡ") }, - Range { from: 'ㅐ', to: 'ㅐ', mapping: Mapped("ᅢ") }, - Range { from: 'ㅑ', to: 'ㅑ', mapping: Mapped("ᅣ") }, - Range { from: 'ㅒ', to: 'ㅒ', mapping: Mapped("ᅤ") }, - Range { from: 'ㅓ', to: 'ㅓ', mapping: Mapped("ᅥ") }, - Range { from: 'ㅔ', to: 'ㅔ', mapping: Mapped("ᅦ") }, - Range { from: 'ㅕ', to: 'ㅕ', mapping: Mapped("ᅧ") }, - Range { from: 'ㅖ', to: 'ㅖ', mapping: Mapped("ᅨ") }, - Range { from: 'ㅗ', to: 'ㅗ', mapping: Mapped("ᅩ") }, - Range { from: 'ㅘ', to: 'ㅘ', mapping: Mapped("ᅪ") }, - Range { from: 'ㅙ', to: 'ㅙ', mapping: Mapped("ᅫ") }, - Range { from: 'ㅚ', to: 'ㅚ', mapping: Mapped("ᅬ") }, - Range { from: 'ㅛ', to: 'ㅛ', mapping: Mapped("ᅭ") }, - Range { from: 'ㅜ', to: 'ㅜ', mapping: Mapped("ᅮ") }, - Range { from: 'ㅝ', to: 'ㅝ', mapping: Mapped("ᅯ") }, - Range { from: 'ㅞ', to: 'ㅞ', mapping: Mapped("ᅰ") }, - Range { from: 'ㅟ', to: 'ㅟ', mapping: Mapped("ᅱ") }, - Range { from: 'ㅠ', to: 'ㅠ', mapping: Mapped("ᅲ") }, - Range { from: 'ㅡ', to: 'ㅡ', mapping: Mapped("ᅳ") }, - Range { from: 'ㅢ', to: 'ㅢ', mapping: Mapped("ᅴ") }, - Range { from: 'ㅣ', to: 'ㅣ', mapping: Mapped("ᅵ") }, - Range { from: 'ㅤ', to: 'ㅤ', mapping: Disallowed }, - Range { from: 'ㅥ', to: 'ㅥ', mapping: Mapped("ᄔ") }, - Range { from: 'ㅦ', to: 'ㅦ', mapping: Mapped("ᄕ") }, - Range { from: 'ㅧ', to: 'ㅧ', mapping: Mapped("ᇇ") }, - Range { from: 'ㅨ', to: 'ㅨ', mapping: Mapped("ᇈ") }, - Range { from: 'ㅩ', to: 'ㅩ', mapping: Mapped("ᇌ") }, - Range { from: 'ㅪ', to: 'ㅪ', mapping: Mapped("ᇎ") }, - Range { from: 'ㅫ', to: 'ㅫ', mapping: Mapped("ᇓ") }, - Range { from: 'ㅬ', to: 'ㅬ', mapping: Mapped("ᇗ") }, - Range { from: 'ㅭ', to: 'ㅭ', mapping: Mapped("ᇙ") }, - Range { from: 'ㅮ', to: 'ㅮ', mapping: Mapped("ᄜ") }, - Range { from: 'ㅯ', to: 'ㅯ', mapping: Mapped("ᇝ") }, - Range { from: 'ㅰ', to: 'ㅰ', mapping: Mapped("ᇟ") }, - Range { from: 'ㅱ', to: 'ㅱ', mapping: Mapped("ᄝ") }, - Range { from: 'ㅲ', to: 'ㅲ', mapping: Mapped("ᄞ") }, - Range { from: 'ㅳ', to: 'ㅳ', mapping: Mapped("ᄠ") }, - Range { from: 'ㅴ', to: 'ㅴ', mapping: Mapped("ᄢ") }, - Range { from: 'ㅵ', to: 'ㅵ', mapping: Mapped("ᄣ") }, - Range { from: 'ㅶ', to: 'ㅶ', mapping: Mapped("ᄧ") }, - Range { from: 'ㅷ', to: 'ㅷ', mapping: Mapped("ᄩ") }, - Range { from: 'ㅸ', to: 'ㅸ', mapping: Mapped("ᄫ") }, - Range { from: 'ㅹ', to: 'ㅹ', mapping: Mapped("ᄬ") }, - Range { from: 'ㅺ', to: 'ㅺ', mapping: Mapped("ᄭ") }, - Range { from: 'ㅻ', to: 'ㅻ', mapping: Mapped("ᄮ") }, - Range { from: 'ㅼ', to: 'ㅼ', mapping: Mapped("ᄯ") }, - Range { from: 'ㅽ', to: 'ㅽ', mapping: Mapped("ᄲ") }, - Range { from: 'ㅾ', to: 'ㅾ', mapping: Mapped("ᄶ") }, - Range { from: 'ㅿ', to: 'ㅿ', mapping: Mapped("ᅀ") }, - Range { from: 'ㆀ', to: 'ㆀ', mapping: Mapped("ᅇ") }, - Range { from: 'ㆁ', to: 'ㆁ', mapping: Mapped("ᅌ") }, - Range { from: 'ㆂ', to: 'ㆂ', mapping: Mapped("ᇱ") }, - Range { from: 'ㆃ', to: 'ㆃ', mapping: Mapped("ᇲ") }, - Range { from: 'ㆄ', to: 'ㆄ', mapping: Mapped("ᅗ") }, - Range { from: 'ㆅ', to: 'ㆅ', mapping: Mapped("ᅘ") }, - Range { from: 'ㆆ', to: 'ㆆ', mapping: Mapped("ᅙ") }, - Range { from: 'ㆇ', to: 'ㆇ', mapping: Mapped("ᆄ") }, - Range { from: 'ㆈ', to: 'ㆈ', mapping: Mapped("ᆅ") }, - Range { from: 'ㆉ', to: 'ㆉ', mapping: Mapped("ᆈ") }, - Range { from: 'ㆊ', to: 'ㆊ', mapping: Mapped("ᆑ") }, - Range { from: 'ㆋ', to: 'ㆋ', mapping: Mapped("ᆒ") }, - Range { from: 'ㆌ', to: 'ㆌ', mapping: Mapped("ᆔ") }, - Range { from: 'ㆍ', to: 'ㆍ', mapping: Mapped("ᆞ") }, - Range { from: 'ㆎ', to: 'ㆎ', mapping: Mapped("ᆡ") }, - Range { from: '㆏', to: '㆏', mapping: Disallowed }, - Range { from: '㆐', to: '㆑', mapping: Valid }, - Range { from: '㆒', to: '㆒', mapping: Mapped("一") }, - Range { from: '㆓', to: '㆓', mapping: Mapped("二") }, - Range { from: '㆔', to: '㆔', mapping: Mapped("三") }, - Range { from: '㆕', to: '㆕', mapping: Mapped("四") }, - Range { from: '㆖', to: '㆖', mapping: Mapped("上") }, - Range { from: '㆗', to: '㆗', mapping: Mapped("中") }, - Range { from: '㆘', to: '㆘', mapping: Mapped("下") }, - Range { from: '㆙', to: '㆙', mapping: Mapped("甲") }, - Range { from: '㆚', to: '㆚', mapping: Mapped("乙") }, - Range { from: '㆛', to: '㆛', mapping: Mapped("丙") }, - Range { from: '㆜', to: '㆜', mapping: Mapped("丁") }, - Range { from: '㆝', to: '㆝', mapping: Mapped("天") }, - Range { from: '㆞', to: '㆞', mapping: Mapped("地") }, - Range { from: '㆟', to: '㆟', mapping: Mapped("人") }, - Range { from: 'ㆠ', to: 'ㆷ', mapping: Valid }, - Range { from: 'ㆸ', to: 'ㆺ', mapping: Valid }, - Range { from: 'ㆻ', to: 'ㆿ', mapping: Disallowed }, - Range { from: '㇀', to: '㇏', mapping: Valid }, - Range { from: '㇐', to: '㇣', mapping: Valid }, - Range { from: '㇤', to: '㇯', mapping: Disallowed }, - Range { from: 'ㇰ', to: 'ㇿ', mapping: Valid }, - Range { from: '㈀', to: '㈀', mapping: DisallowedStd3Mapped("(ᄀ)") }, - Range { from: '㈁', to: '㈁', mapping: DisallowedStd3Mapped("(ᄂ)") }, - Range { from: '㈂', to: '㈂', mapping: DisallowedStd3Mapped("(ᄃ)") }, - Range { from: '㈃', to: '㈃', mapping: DisallowedStd3Mapped("(ᄅ)") }, - Range { from: '㈄', to: '㈄', mapping: DisallowedStd3Mapped("(ᄆ)") }, - Range { from: '㈅', to: '㈅', mapping: DisallowedStd3Mapped("(ᄇ)") }, - Range { from: '㈆', to: '㈆', mapping: DisallowedStd3Mapped("(ᄉ)") }, - Range { from: '㈇', to: '㈇', mapping: DisallowedStd3Mapped("(ᄋ)") }, - Range { from: '㈈', to: '㈈', mapping: DisallowedStd3Mapped("(ᄌ)") }, - Range { from: '㈉', to: '㈉', mapping: DisallowedStd3Mapped("(ᄎ)") }, - Range { from: '㈊', to: '㈊', mapping: DisallowedStd3Mapped("(ᄏ)") }, - Range { from: '㈋', to: '㈋', mapping: DisallowedStd3Mapped("(ᄐ)") }, - Range { from: '㈌', to: '㈌', mapping: DisallowedStd3Mapped("(ᄑ)") }, - Range { from: '㈍', to: '㈍', mapping: DisallowedStd3Mapped("(ᄒ)") }, - Range { from: '㈎', to: '㈎', mapping: DisallowedStd3Mapped("(가)") }, - Range { from: '㈏', to: '㈏', mapping: DisallowedStd3Mapped("(나)") }, - Range { from: '㈐', to: '㈐', mapping: DisallowedStd3Mapped("(다)") }, - Range { from: '㈑', to: '㈑', mapping: DisallowedStd3Mapped("(라)") }, - Range { from: '㈒', to: '㈒', mapping: DisallowedStd3Mapped("(마)") }, - Range { from: '㈓', to: '㈓', mapping: DisallowedStd3Mapped("(바)") }, - Range { from: '㈔', to: '㈔', mapping: DisallowedStd3Mapped("(사)") }, - Range { from: '㈕', to: '㈕', mapping: DisallowedStd3Mapped("(아)") }, - Range { from: '㈖', to: '㈖', mapping: DisallowedStd3Mapped("(자)") }, - Range { from: '㈗', to: '㈗', mapping: DisallowedStd3Mapped("(차)") }, - Range { from: '㈘', to: '㈘', mapping: DisallowedStd3Mapped("(카)") }, - Range { from: '㈙', to: '㈙', mapping: DisallowedStd3Mapped("(타)") }, - Range { from: '㈚', to: '㈚', mapping: DisallowedStd3Mapped("(파)") }, - Range { from: '㈛', to: '㈛', mapping: DisallowedStd3Mapped("(하)") }, - Range { from: '㈜', to: '㈜', mapping: DisallowedStd3Mapped("(주)") }, - Range { from: '㈝', to: '㈝', mapping: DisallowedStd3Mapped("(오전)") }, - Range { from: '㈞', to: '㈞', mapping: DisallowedStd3Mapped("(오후)") }, - Range { from: '㈟', to: '㈟', mapping: Disallowed }, - Range { from: '㈠', to: '㈠', mapping: DisallowedStd3Mapped("(一)") }, - Range { from: '㈡', to: '㈡', mapping: DisallowedStd3Mapped("(二)") }, - Range { from: '㈢', to: '㈢', mapping: DisallowedStd3Mapped("(三)") }, - Range { from: '㈣', to: '㈣', mapping: DisallowedStd3Mapped("(四)") }, - Range { from: '㈤', to: '㈤', mapping: DisallowedStd3Mapped("(五)") }, - Range { from: '㈥', to: '㈥', mapping: DisallowedStd3Mapped("(六)") }, - Range { from: '㈦', to: '㈦', mapping: DisallowedStd3Mapped("(七)") }, - Range { from: '㈧', to: '㈧', mapping: DisallowedStd3Mapped("(八)") }, - Range { from: '㈨', to: '㈨', mapping: DisallowedStd3Mapped("(九)") }, - Range { from: '㈩', to: '㈩', mapping: DisallowedStd3Mapped("(十)") }, - Range { from: '㈪', to: '㈪', mapping: DisallowedStd3Mapped("(月)") }, - Range { from: '㈫', to: '㈫', mapping: DisallowedStd3Mapped("(火)") }, - Range { from: '㈬', to: '㈬', mapping: DisallowedStd3Mapped("(水)") }, - Range { from: '㈭', to: '㈭', mapping: DisallowedStd3Mapped("(木)") }, - Range { from: '㈮', to: '㈮', mapping: DisallowedStd3Mapped("(金)") }, - Range { from: '㈯', to: '㈯', mapping: DisallowedStd3Mapped("(土)") }, - Range { from: '㈰', to: '㈰', mapping: DisallowedStd3Mapped("(日)") }, - Range { from: '㈱', to: '㈱', mapping: DisallowedStd3Mapped("(株)") }, - Range { from: '㈲', to: '㈲', mapping: DisallowedStd3Mapped("(有)") }, - Range { from: '㈳', to: '㈳', mapping: DisallowedStd3Mapped("(社)") }, - Range { from: '㈴', to: '㈴', mapping: DisallowedStd3Mapped("(名)") }, - Range { from: '㈵', to: '㈵', mapping: DisallowedStd3Mapped("(特)") }, - Range { from: '㈶', to: '㈶', mapping: DisallowedStd3Mapped("(財)") }, - Range { from: '㈷', to: '㈷', mapping: DisallowedStd3Mapped("(祝)") }, - Range { from: '㈸', to: '㈸', mapping: DisallowedStd3Mapped("(労)") }, - Range { from: '㈹', to: '㈹', mapping: DisallowedStd3Mapped("(代)") }, - Range { from: '㈺', to: '㈺', mapping: DisallowedStd3Mapped("(呼)") }, - Range { from: '㈻', to: '㈻', mapping: DisallowedStd3Mapped("(学)") }, - Range { from: '㈼', to: '㈼', mapping: DisallowedStd3Mapped("(監)") }, - Range { from: '㈽', to: '㈽', mapping: DisallowedStd3Mapped("(企)") }, - Range { from: '㈾', to: '㈾', mapping: DisallowedStd3Mapped("(資)") }, - Range { from: '㈿', to: '㈿', mapping: DisallowedStd3Mapped("(協)") }, - Range { from: '㉀', to: '㉀', mapping: DisallowedStd3Mapped("(祭)") }, - Range { from: '㉁', to: '㉁', mapping: DisallowedStd3Mapped("(休)") }, - Range { from: '㉂', to: '㉂', mapping: DisallowedStd3Mapped("(自)") }, - Range { from: '㉃', to: '㉃', mapping: DisallowedStd3Mapped("(至)") }, - Range { from: '㉄', to: '㉄', mapping: Mapped("問") }, - Range { from: '㉅', to: '㉅', mapping: Mapped("幼") }, - Range { from: '㉆', to: '㉆', mapping: Mapped("文") }, - Range { from: '㉇', to: '㉇', mapping: Mapped("箏") }, - Range { from: '㉈', to: '㉏', mapping: Valid }, - Range { from: '㉐', to: '㉐', mapping: Mapped("pte") }, - Range { from: '㉑', to: '㉑', mapping: Mapped("21") }, - Range { from: '㉒', to: '㉒', mapping: Mapped("22") }, - Range { from: '㉓', to: '㉓', mapping: Mapped("23") }, - Range { from: '㉔', to: '㉔', mapping: Mapped("24") }, - Range { from: '㉕', to: '㉕', mapping: Mapped("25") }, - Range { from: '㉖', to: '㉖', mapping: Mapped("26") }, - Range { from: '㉗', to: '㉗', mapping: Mapped("27") }, - Range { from: '㉘', to: '㉘', mapping: Mapped("28") }, - Range { from: '㉙', to: '㉙', mapping: Mapped("29") }, - Range { from: '㉚', to: '㉚', mapping: Mapped("30") }, - Range { from: '㉛', to: '㉛', mapping: Mapped("31") }, - Range { from: '㉜', to: '㉜', mapping: Mapped("32") }, - Range { from: '㉝', to: '㉝', mapping: Mapped("33") }, - Range { from: '㉞', to: '㉞', mapping: Mapped("34") }, - Range { from: '㉟', to: '㉟', mapping: Mapped("35") }, - Range { from: '㉠', to: '㉠', mapping: Mapped("ᄀ") }, - Range { from: '㉡', to: '㉡', mapping: Mapped("ᄂ") }, - Range { from: '㉢', to: '㉢', mapping: Mapped("ᄃ") }, - Range { from: '㉣', to: '㉣', mapping: Mapped("ᄅ") }, - Range { from: '㉤', to: '㉤', mapping: Mapped("ᄆ") }, - Range { from: '㉥', to: '㉥', mapping: Mapped("ᄇ") }, - Range { from: '㉦', to: '㉦', mapping: Mapped("ᄉ") }, - Range { from: '㉧', to: '㉧', mapping: Mapped("ᄋ") }, - Range { from: '㉨', to: '㉨', mapping: Mapped("ᄌ") }, - Range { from: '㉩', to: '㉩', mapping: Mapped("ᄎ") }, - Range { from: '㉪', to: '㉪', mapping: Mapped("ᄏ") }, - Range { from: '㉫', to: '㉫', mapping: Mapped("ᄐ") }, - Range { from: '㉬', to: '㉬', mapping: Mapped("ᄑ") }, - Range { from: '㉭', to: '㉭', mapping: Mapped("ᄒ") }, - Range { from: '㉮', to: '㉮', mapping: Mapped("가") }, - Range { from: '㉯', to: '㉯', mapping: Mapped("나") }, - Range { from: '㉰', to: '㉰', mapping: Mapped("다") }, - Range { from: '㉱', to: '㉱', mapping: Mapped("라") }, - Range { from: '㉲', to: '㉲', mapping: Mapped("마") }, - Range { from: '㉳', to: '㉳', mapping: Mapped("바") }, - Range { from: '㉴', to: '㉴', mapping: Mapped("사") }, - Range { from: '㉵', to: '㉵', mapping: Mapped("아") }, - Range { from: '㉶', to: '㉶', mapping: Mapped("자") }, - Range { from: '㉷', to: '㉷', mapping: Mapped("차") }, - Range { from: '㉸', to: '㉸', mapping: Mapped("카") }, - Range { from: '㉹', to: '㉹', mapping: Mapped("타") }, - Range { from: '㉺', to: '㉺', mapping: Mapped("파") }, - Range { from: '㉻', to: '㉻', mapping: Mapped("하") }, - Range { from: '㉼', to: '㉼', mapping: Mapped("참고") }, - Range { from: '㉽', to: '㉽', mapping: Mapped("주의") }, - Range { from: '㉾', to: '㉾', mapping: Mapped("우") }, - Range { from: '㉿', to: '㉿', mapping: Valid }, - Range { from: '㊀', to: '㊀', mapping: Mapped("一") }, - Range { from: '㊁', to: '㊁', mapping: Mapped("二") }, - Range { from: '㊂', to: '㊂', mapping: Mapped("三") }, - Range { from: '㊃', to: '㊃', mapping: Mapped("四") }, - Range { from: '㊄', to: '㊄', mapping: Mapped("五") }, - Range { from: '㊅', to: '㊅', mapping: Mapped("六") }, - Range { from: '㊆', to: '㊆', mapping: Mapped("七") }, - Range { from: '㊇', to: '㊇', mapping: Mapped("八") }, - Range { from: '㊈', to: '㊈', mapping: Mapped("九") }, - Range { from: '㊉', to: '㊉', mapping: Mapped("十") }, - Range { from: '㊊', to: '㊊', mapping: Mapped("月") }, - Range { from: '㊋', to: '㊋', mapping: Mapped("火") }, - Range { from: '㊌', to: '㊌', mapping: Mapped("水") }, - Range { from: '㊍', to: '㊍', mapping: Mapped("木") }, - Range { from: '㊎', to: '㊎', mapping: Mapped("金") }, - Range { from: '㊏', to: '㊏', mapping: Mapped("土") }, - Range { from: '㊐', to: '㊐', mapping: Mapped("日") }, - Range { from: '㊑', to: '㊑', mapping: Mapped("株") }, - Range { from: '㊒', to: '㊒', mapping: Mapped("有") }, - Range { from: '㊓', to: '㊓', mapping: Mapped("社") }, - Range { from: '㊔', to: '㊔', mapping: Mapped("名") }, - Range { from: '㊕', to: '㊕', mapping: Mapped("特") }, - Range { from: '㊖', to: '㊖', mapping: Mapped("財") }, - Range { from: '㊗', to: '㊗', mapping: Mapped("祝") }, - Range { from: '㊘', to: '㊘', mapping: Mapped("労") }, - Range { from: '㊙', to: '㊙', mapping: Mapped("秘") }, - Range { from: '㊚', to: '㊚', mapping: Mapped("男") }, - Range { from: '㊛', to: '㊛', mapping: Mapped("女") }, - Range { from: '㊜', to: '㊜', mapping: Mapped("適") }, - Range { from: '㊝', to: '㊝', mapping: Mapped("優") }, - Range { from: '㊞', to: '㊞', mapping: Mapped("印") }, - Range { from: '㊟', to: '㊟', mapping: Mapped("注") }, - Range { from: '㊠', to: '㊠', mapping: Mapped("項") }, - Range { from: '㊡', to: '㊡', mapping: Mapped("休") }, - Range { from: '㊢', to: '㊢', mapping: Mapped("写") }, - Range { from: '㊣', to: '㊣', mapping: Mapped("正") }, - Range { from: '㊤', to: '㊤', mapping: Mapped("上") }, - Range { from: '㊥', to: '㊥', mapping: Mapped("中") }, - Range { from: '㊦', to: '㊦', mapping: Mapped("下") }, - Range { from: '㊧', to: '㊧', mapping: Mapped("左") }, - Range { from: '㊨', to: '㊨', mapping: Mapped("右") }, - Range { from: '㊩', to: '㊩', mapping: Mapped("医") }, - Range { from: '㊪', to: '㊪', mapping: Mapped("宗") }, - Range { from: '㊫', to: '㊫', mapping: Mapped("学") }, - Range { from: '㊬', to: '㊬', mapping: Mapped("監") }, - Range { from: '㊭', to: '㊭', mapping: Mapped("企") }, - Range { from: '㊮', to: '㊮', mapping: Mapped("資") }, - Range { from: '㊯', to: '㊯', mapping: Mapped("協") }, - Range { from: '㊰', to: '㊰', mapping: Mapped("夜") }, - Range { from: '㊱', to: '㊱', mapping: Mapped("36") }, - Range { from: '㊲', to: '㊲', mapping: Mapped("37") }, - Range { from: '㊳', to: '㊳', mapping: Mapped("38") }, - Range { from: '㊴', to: '㊴', mapping: Mapped("39") }, - Range { from: '㊵', to: '㊵', mapping: Mapped("40") }, - Range { from: '㊶', to: '㊶', mapping: Mapped("41") }, - Range { from: '㊷', to: '㊷', mapping: Mapped("42") }, - Range { from: '㊸', to: '㊸', mapping: Mapped("43") }, - Range { from: '㊹', to: '㊹', mapping: Mapped("44") }, - Range { from: '㊺', to: '㊺', mapping: Mapped("45") }, - Range { from: '㊻', to: '㊻', mapping: Mapped("46") }, - Range { from: '㊼', to: '㊼', mapping: Mapped("47") }, - Range { from: '㊽', to: '㊽', mapping: Mapped("48") }, - Range { from: '㊾', to: '㊾', mapping: Mapped("49") }, - Range { from: '㊿', to: '㊿', mapping: Mapped("50") }, - Range { from: '㋀', to: '㋀', mapping: Mapped("1月") }, - Range { from: '㋁', to: '㋁', mapping: Mapped("2月") }, - Range { from: '㋂', to: '㋂', mapping: Mapped("3月") }, - Range { from: '㋃', to: '㋃', mapping: Mapped("4月") }, - Range { from: '㋄', to: '㋄', mapping: Mapped("5月") }, - Range { from: '㋅', to: '㋅', mapping: Mapped("6月") }, - Range { from: '㋆', to: '㋆', mapping: Mapped("7月") }, - Range { from: '㋇', to: '㋇', mapping: Mapped("8月") }, - Range { from: '㋈', to: '㋈', mapping: Mapped("9月") }, - Range { from: '㋉', to: '㋉', mapping: Mapped("10月") }, - Range { from: '㋊', to: '㋊', mapping: Mapped("11月") }, - Range { from: '㋋', to: '㋋', mapping: Mapped("12月") }, - Range { from: '㋌', to: '㋌', mapping: Mapped("hg") }, - Range { from: '㋍', to: '㋍', mapping: Mapped("erg") }, - Range { from: '㋎', to: '㋎', mapping: Mapped("ev") }, - Range { from: '㋏', to: '㋏', mapping: Mapped("ltd") }, - Range { from: '㋐', to: '㋐', mapping: Mapped("ア") }, - Range { from: '㋑', to: '㋑', mapping: Mapped("イ") }, - Range { from: '㋒', to: '㋒', mapping: Mapped("ウ") }, - Range { from: '㋓', to: '㋓', mapping: Mapped("エ") }, - Range { from: '㋔', to: '㋔', mapping: Mapped("オ") }, - Range { from: '㋕', to: '㋕', mapping: Mapped("カ") }, - Range { from: '㋖', to: '㋖', mapping: Mapped("キ") }, - Range { from: '㋗', to: '㋗', mapping: Mapped("ク") }, - Range { from: '㋘', to: '㋘', mapping: Mapped("ケ") }, - Range { from: '㋙', to: '㋙', mapping: Mapped("コ") }, - Range { from: '㋚', to: '㋚', mapping: Mapped("サ") }, - Range { from: '㋛', to: '㋛', mapping: Mapped("シ") }, - Range { from: '㋜', to: '㋜', mapping: Mapped("ス") }, - Range { from: '㋝', to: '㋝', mapping: Mapped("セ") }, - Range { from: '㋞', to: '㋞', mapping: Mapped("ソ") }, - Range { from: '㋟', to: '㋟', mapping: Mapped("タ") }, - Range { from: '㋠', to: '㋠', mapping: Mapped("チ") }, - Range { from: '㋡', to: '㋡', mapping: Mapped("ツ") }, - Range { from: '㋢', to: '㋢', mapping: Mapped("テ") }, - Range { from: '㋣', to: '㋣', mapping: Mapped("ト") }, - Range { from: '㋤', to: '㋤', mapping: Mapped("ナ") }, - Range { from: '㋥', to: '㋥', mapping: Mapped("ニ") }, - Range { from: '㋦', to: '㋦', mapping: Mapped("ヌ") }, - Range { from: '㋧', to: '㋧', mapping: Mapped("ネ") }, - Range { from: '㋨', to: '㋨', mapping: Mapped("ノ") }, - Range { from: '㋩', to: '㋩', mapping: Mapped("ハ") }, - Range { from: '㋪', to: '㋪', mapping: Mapped("ヒ") }, - Range { from: '㋫', to: '㋫', mapping: Mapped("フ") }, - Range { from: '㋬', to: '㋬', mapping: Mapped("ヘ") }, - Range { from: '㋭', to: '㋭', mapping: Mapped("ホ") }, - Range { from: '㋮', to: '㋮', mapping: Mapped("マ") }, - Range { from: '㋯', to: '㋯', mapping: Mapped("ミ") }, - Range { from: '㋰', to: '㋰', mapping: Mapped("ム") }, - Range { from: '㋱', to: '㋱', mapping: Mapped("メ") }, - Range { from: '㋲', to: '㋲', mapping: Mapped("モ") }, - Range { from: '㋳', to: '㋳', mapping: Mapped("ヤ") }, - Range { from: '㋴', to: '㋴', mapping: Mapped("ユ") }, - Range { from: '㋵', to: '㋵', mapping: Mapped("ヨ") }, - Range { from: '㋶', to: '㋶', mapping: Mapped("ラ") }, - Range { from: '㋷', to: '㋷', mapping: Mapped("リ") }, - Range { from: '㋸', to: '㋸', mapping: Mapped("ル") }, - Range { from: '㋹', to: '㋹', mapping: Mapped("レ") }, - Range { from: '㋺', to: '㋺', mapping: Mapped("ロ") }, - Range { from: '㋻', to: '㋻', mapping: Mapped("ワ") }, - Range { from: '㋼', to: '㋼', mapping: Mapped("ヰ") }, - Range { from: '㋽', to: '㋽', mapping: Mapped("ヱ") }, - Range { from: '㋾', to: '㋾', mapping: Mapped("ヲ") }, - Range { from: '㋿', to: '㋿', mapping: Disallowed }, - Range { from: '㌀', to: '㌀', mapping: Mapped("アパート") }, - Range { from: '㌁', to: '㌁', mapping: Mapped("アルファ") }, - Range { from: '㌂', to: '㌂', mapping: Mapped("アンペア") }, - Range { from: '㌃', to: '㌃', mapping: Mapped("アール") }, - Range { from: '㌄', to: '㌄', mapping: Mapped("イニング") }, - Range { from: '㌅', to: '㌅', mapping: Mapped("インチ") }, - Range { from: '㌆', to: '㌆', mapping: Mapped("ウォン") }, - Range { from: '㌇', to: '㌇', mapping: Mapped("エスクード") }, - Range { from: '㌈', to: '㌈', mapping: Mapped("エーカー") }, - Range { from: '㌉', to: '㌉', mapping: Mapped("オンス") }, - Range { from: '㌊', to: '㌊', mapping: Mapped("オーム") }, - Range { from: '㌋', to: '㌋', mapping: Mapped("カイリ") }, - Range { from: '㌌', to: '㌌', mapping: Mapped("カラット") }, - Range { from: '㌍', to: '㌍', mapping: Mapped("カロリー") }, - Range { from: '㌎', to: '㌎', mapping: Mapped("ガロン") }, - Range { from: '㌏', to: '㌏', mapping: Mapped("ガンマ") }, - Range { from: '㌐', to: '㌐', mapping: Mapped("ギガ") }, - Range { from: '㌑', to: '㌑', mapping: Mapped("ギニー") }, - Range { from: '㌒', to: '㌒', mapping: Mapped("キュリー") }, - Range { from: '㌓', to: '㌓', mapping: Mapped("ギルダー") }, - Range { from: '㌔', to: '㌔', mapping: Mapped("キロ") }, - Range { from: '㌕', to: '㌕', mapping: Mapped("キログラム") }, - Range { from: '㌖', to: '㌖', mapping: Mapped("キロメートル") }, - Range { from: '㌗', to: '㌗', mapping: Mapped("キロワット") }, - Range { from: '㌘', to: '㌘', mapping: Mapped("グラム") }, - Range { from: '㌙', to: '㌙', mapping: Mapped("グラムトン") }, - Range { from: '㌚', to: '㌚', mapping: Mapped("クルゼイロ") }, - Range { from: '㌛', to: '㌛', mapping: Mapped("クローネ") }, - Range { from: '㌜', to: '㌜', mapping: Mapped("ケース") }, - Range { from: '㌝', to: '㌝', mapping: Mapped("コルナ") }, - Range { from: '㌞', to: '㌞', mapping: Mapped("コーポ") }, - Range { from: '㌟', to: '㌟', mapping: Mapped("サイクル") }, - Range { from: '㌠', to: '㌠', mapping: Mapped("サンチーム") }, - Range { from: '㌡', to: '㌡', mapping: Mapped("シリング") }, - Range { from: '㌢', to: '㌢', mapping: Mapped("センチ") }, - Range { from: '㌣', to: '㌣', mapping: Mapped("セント") }, - Range { from: '㌤', to: '㌤', mapping: Mapped("ダース") }, - Range { from: '㌥', to: '㌥', mapping: Mapped("デシ") }, - Range { from: '㌦', to: '㌦', mapping: Mapped("ドル") }, - Range { from: '㌧', to: '㌧', mapping: Mapped("トン") }, - Range { from: '㌨', to: '㌨', mapping: Mapped("ナノ") }, - Range { from: '㌩', to: '㌩', mapping: Mapped("ノット") }, - Range { from: '㌪', to: '㌪', mapping: Mapped("ハイツ") }, - Range { from: '㌫', to: '㌫', mapping: Mapped("パーセント") }, - Range { from: '㌬', to: '㌬', mapping: Mapped("パーツ") }, - Range { from: '㌭', to: '㌭', mapping: Mapped("バーレル") }, - Range { from: '㌮', to: '㌮', mapping: Mapped("ピアストル") }, - Range { from: '㌯', to: '㌯', mapping: Mapped("ピクル") }, - Range { from: '㌰', to: '㌰', mapping: Mapped("ピコ") }, - Range { from: '㌱', to: '㌱', mapping: Mapped("ビル") }, - Range { from: '㌲', to: '㌲', mapping: Mapped("ファラッド") }, - Range { from: '㌳', to: '㌳', mapping: Mapped("フィート") }, - Range { from: '㌴', to: '㌴', mapping: Mapped("ブッシェル") }, - Range { from: '㌵', to: '㌵', mapping: Mapped("フラン") }, - Range { from: '㌶', to: '㌶', mapping: Mapped("ヘクタール") }, - Range { from: '㌷', to: '㌷', mapping: Mapped("ペソ") }, - Range { from: '㌸', to: '㌸', mapping: Mapped("ペニヒ") }, - Range { from: '㌹', to: '㌹', mapping: Mapped("ヘルツ") }, - Range { from: '㌺', to: '㌺', mapping: Mapped("ペンス") }, - Range { from: '㌻', to: '㌻', mapping: Mapped("ページ") }, - Range { from: '㌼', to: '㌼', mapping: Mapped("ベータ") }, - Range { from: '㌽', to: '㌽', mapping: Mapped("ポイント") }, - Range { from: '㌾', to: '㌾', mapping: Mapped("ボルト") }, - Range { from: '㌿', to: '㌿', mapping: Mapped("ホン") }, - Range { from: '㍀', to: '㍀', mapping: Mapped("ポンド") }, - Range { from: '㍁', to: '㍁', mapping: Mapped("ホール") }, - Range { from: '㍂', to: '㍂', mapping: Mapped("ホーン") }, - Range { from: '㍃', to: '㍃', mapping: Mapped("マイクロ") }, - Range { from: '㍄', to: '㍄', mapping: Mapped("マイル") }, - Range { from: '㍅', to: '㍅', mapping: Mapped("マッハ") }, - Range { from: '㍆', to: '㍆', mapping: Mapped("マルク") }, - Range { from: '㍇', to: '㍇', mapping: Mapped("マンション") }, - Range { from: '㍈', to: '㍈', mapping: Mapped("ミクロン") }, - Range { from: '㍉', to: '㍉', mapping: Mapped("ミリ") }, - Range { from: '㍊', to: '㍊', mapping: Mapped("ミリバール") }, - Range { from: '㍋', to: '㍋', mapping: Mapped("メガ") }, - Range { from: '㍌', to: '㍌', mapping: Mapped("メガトン") }, - Range { from: '㍍', to: '㍍', mapping: Mapped("メートル") }, - Range { from: '㍎', to: '㍎', mapping: Mapped("ヤード") }, - Range { from: '㍏', to: '㍏', mapping: Mapped("ヤール") }, - Range { from: '㍐', to: '㍐', mapping: Mapped("ユアン") }, - Range { from: '㍑', to: '㍑', mapping: Mapped("リットル") }, - Range { from: '㍒', to: '㍒', mapping: Mapped("リラ") }, - Range { from: '㍓', to: '㍓', mapping: Mapped("ルピー") }, - Range { from: '㍔', to: '㍔', mapping: Mapped("ルーブル") }, - Range { from: '㍕', to: '㍕', mapping: Mapped("レム") }, - Range { from: '㍖', to: '㍖', mapping: Mapped("レントゲン") }, - Range { from: '㍗', to: '㍗', mapping: Mapped("ワット") }, - Range { from: '㍘', to: '㍘', mapping: Mapped("0点") }, - Range { from: '㍙', to: '㍙', mapping: Mapped("1点") }, - Range { from: '㍚', to: '㍚', mapping: Mapped("2点") }, - Range { from: '㍛', to: '㍛', mapping: Mapped("3点") }, - Range { from: '㍜', to: '㍜', mapping: Mapped("4点") }, - Range { from: '㍝', to: '㍝', mapping: Mapped("5点") }, - Range { from: '㍞', to: '㍞', mapping: Mapped("6点") }, - Range { from: '㍟', to: '㍟', mapping: Mapped("7点") }, - Range { from: '㍠', to: '㍠', mapping: Mapped("8点") }, - Range { from: '㍡', to: '㍡', mapping: Mapped("9点") }, - Range { from: '㍢', to: '㍢', mapping: Mapped("10点") }, - Range { from: '㍣', to: '㍣', mapping: Mapped("11点") }, - Range { from: '㍤', to: '㍤', mapping: Mapped("12点") }, - Range { from: '㍥', to: '㍥', mapping: Mapped("13点") }, - Range { from: '㍦', to: '㍦', mapping: Mapped("14点") }, - Range { from: '㍧', to: '㍧', mapping: Mapped("15点") }, - Range { from: '㍨', to: '㍨', mapping: Mapped("16点") }, - Range { from: '㍩', to: '㍩', mapping: Mapped("17点") }, - Range { from: '㍪', to: '㍪', mapping: Mapped("18点") }, - Range { from: '㍫', to: '㍫', mapping: Mapped("19点") }, - Range { from: '㍬', to: '㍬', mapping: Mapped("20点") }, - Range { from: '㍭', to: '㍭', mapping: Mapped("21点") }, - Range { from: '㍮', to: '㍮', mapping: Mapped("22点") }, - Range { from: '㍯', to: '㍯', mapping: Mapped("23点") }, - Range { from: '㍰', to: '㍰', mapping: Mapped("24点") }, - Range { from: '㍱', to: '㍱', mapping: Mapped("hpa") }, - Range { from: '㍲', to: '㍲', mapping: Mapped("da") }, - Range { from: '㍳', to: '㍳', mapping: Mapped("au") }, - Range { from: '㍴', to: '㍴', mapping: Mapped("bar") }, - Range { from: '㍵', to: '㍵', mapping: Mapped("ov") }, - Range { from: '㍶', to: '㍶', mapping: Mapped("pc") }, - Range { from: '㍷', to: '㍷', mapping: Mapped("dm") }, - Range { from: '㍸', to: '㍸', mapping: Mapped("dm2") }, - Range { from: '㍹', to: '㍹', mapping: Mapped("dm3") }, - Range { from: '㍺', to: '㍺', mapping: Mapped("iu") }, - Range { from: '㍻', to: '㍻', mapping: Mapped("平成") }, - Range { from: '㍼', to: '㍼', mapping: Mapped("昭和") }, - Range { from: '㍽', to: '㍽', mapping: Mapped("大正") }, - Range { from: '㍾', to: '㍾', mapping: Mapped("明治") }, - Range { from: '㍿', to: '㍿', mapping: Mapped("株式会社") }, - Range { from: '㎀', to: '㎀', mapping: Mapped("pa") }, - Range { from: '㎁', to: '㎁', mapping: Mapped("na") }, - Range { from: '㎂', to: '㎂', mapping: Mapped("μa") }, - Range { from: '㎃', to: '㎃', mapping: Mapped("ma") }, - Range { from: '㎄', to: '㎄', mapping: Mapped("ka") }, - Range { from: '㎅', to: '㎅', mapping: Mapped("kb") }, - Range { from: '㎆', to: '㎆', mapping: Mapped("mb") }, - Range { from: '㎇', to: '㎇', mapping: Mapped("gb") }, - Range { from: '㎈', to: '㎈', mapping: Mapped("cal") }, - Range { from: '㎉', to: '㎉', mapping: Mapped("kcal") }, - Range { from: '㎊', to: '㎊', mapping: Mapped("pf") }, - Range { from: '㎋', to: '㎋', mapping: Mapped("nf") }, - Range { from: '㎌', to: '㎌', mapping: Mapped("μf") }, - Range { from: '㎍', to: '㎍', mapping: Mapped("μg") }, - Range { from: '㎎', to: '㎎', mapping: Mapped("mg") }, - Range { from: '㎏', to: '㎏', mapping: Mapped("kg") }, - Range { from: '㎐', to: '㎐', mapping: Mapped("hz") }, - Range { from: '㎑', to: '㎑', mapping: Mapped("khz") }, - Range { from: '㎒', to: '㎒', mapping: Mapped("mhz") }, - Range { from: '㎓', to: '㎓', mapping: Mapped("ghz") }, - Range { from: '㎔', to: '㎔', mapping: Mapped("thz") }, - Range { from: '㎕', to: '㎕', mapping: Mapped("μl") }, - Range { from: '㎖', to: '㎖', mapping: Mapped("ml") }, - Range { from: '㎗', to: '㎗', mapping: Mapped("dl") }, - Range { from: '㎘', to: '㎘', mapping: Mapped("kl") }, - Range { from: '㎙', to: '㎙', mapping: Mapped("fm") }, - Range { from: '㎚', to: '㎚', mapping: Mapped("nm") }, - Range { from: '㎛', to: '㎛', mapping: Mapped("μm") }, - Range { from: '㎜', to: '㎜', mapping: Mapped("mm") }, - Range { from: '㎝', to: '㎝', mapping: Mapped("cm") }, - Range { from: '㎞', to: '㎞', mapping: Mapped("km") }, - Range { from: '㎟', to: '㎟', mapping: Mapped("mm2") }, - Range { from: '㎠', to: '㎠', mapping: Mapped("cm2") }, - Range { from: '㎡', to: '㎡', mapping: Mapped("m2") }, - Range { from: '㎢', to: '㎢', mapping: Mapped("km2") }, - Range { from: '㎣', to: '㎣', mapping: Mapped("mm3") }, - Range { from: '㎤', to: '㎤', mapping: Mapped("cm3") }, - Range { from: '㎥', to: '㎥', mapping: Mapped("m3") }, - Range { from: '㎦', to: '㎦', mapping: Mapped("km3") }, - Range { from: '㎧', to: '㎧', mapping: Mapped("m∕s") }, - Range { from: '㎨', to: '㎨', mapping: Mapped("m∕s2") }, - Range { from: '㎩', to: '㎩', mapping: Mapped("pa") }, - Range { from: '㎪', to: '㎪', mapping: Mapped("kpa") }, - Range { from: '㎫', to: '㎫', mapping: Mapped("mpa") }, - Range { from: '㎬', to: '㎬', mapping: Mapped("gpa") }, - Range { from: '㎭', to: '㎭', mapping: Mapped("rad") }, - Range { from: '㎮', to: '㎮', mapping: Mapped("rad∕s") }, - Range { from: '㎯', to: '㎯', mapping: Mapped("rad∕s2") }, - Range { from: '㎰', to: '㎰', mapping: Mapped("ps") }, - Range { from: '㎱', to: '㎱', mapping: Mapped("ns") }, - Range { from: '㎲', to: '㎲', mapping: Mapped("μs") }, - Range { from: '㎳', to: '㎳', mapping: Mapped("ms") }, - Range { from: '㎴', to: '㎴', mapping: Mapped("pv") }, - Range { from: '㎵', to: '㎵', mapping: Mapped("nv") }, - Range { from: '㎶', to: '㎶', mapping: Mapped("μv") }, - Range { from: '㎷', to: '㎷', mapping: Mapped("mv") }, - Range { from: '㎸', to: '㎸', mapping: Mapped("kv") }, - Range { from: '㎹', to: '㎹', mapping: Mapped("mv") }, - Range { from: '㎺', to: '㎺', mapping: Mapped("pw") }, - Range { from: '㎻', to: '㎻', mapping: Mapped("nw") }, - Range { from: '㎼', to: '㎼', mapping: Mapped("μw") }, - Range { from: '㎽', to: '㎽', mapping: Mapped("mw") }, - Range { from: '㎾', to: '㎾', mapping: Mapped("kw") }, - Range { from: '㎿', to: '㎿', mapping: Mapped("mw") }, - Range { from: '㏀', to: '㏀', mapping: Mapped("kω") }, - Range { from: '㏁', to: '㏁', mapping: Mapped("mω") }, - Range { from: '㏂', to: '㏂', mapping: Disallowed }, - Range { from: '㏃', to: '㏃', mapping: Mapped("bq") }, - Range { from: '㏄', to: '㏄', mapping: Mapped("cc") }, - Range { from: '㏅', to: '㏅', mapping: Mapped("cd") }, - Range { from: '㏆', to: '㏆', mapping: Mapped("c∕kg") }, - Range { from: '㏇', to: '㏇', mapping: Disallowed }, - Range { from: '㏈', to: '㏈', mapping: Mapped("db") }, - Range { from: '㏉', to: '㏉', mapping: Mapped("gy") }, - Range { from: '㏊', to: '㏊', mapping: Mapped("ha") }, - Range { from: '㏋', to: '㏋', mapping: Mapped("hp") }, - Range { from: '㏌', to: '㏌', mapping: Mapped("in") }, - Range { from: '㏍', to: '㏍', mapping: Mapped("kk") }, - Range { from: '㏎', to: '㏎', mapping: Mapped("km") }, - Range { from: '㏏', to: '㏏', mapping: Mapped("kt") }, - Range { from: '㏐', to: '㏐', mapping: Mapped("lm") }, - Range { from: '㏑', to: '㏑', mapping: Mapped("ln") }, - Range { from: '㏒', to: '㏒', mapping: Mapped("log") }, - Range { from: '㏓', to: '㏓', mapping: Mapped("lx") }, - Range { from: '㏔', to: '㏔', mapping: Mapped("mb") }, - Range { from: '㏕', to: '㏕', mapping: Mapped("mil") }, - Range { from: '㏖', to: '㏖', mapping: Mapped("mol") }, - Range { from: '㏗', to: '㏗', mapping: Mapped("ph") }, - Range { from: '㏘', to: '㏘', mapping: Disallowed }, - Range { from: '㏙', to: '㏙', mapping: Mapped("ppm") }, - Range { from: '㏚', to: '㏚', mapping: Mapped("pr") }, - Range { from: '㏛', to: '㏛', mapping: Mapped("sr") }, - Range { from: '㏜', to: '㏜', mapping: Mapped("sv") }, - Range { from: '㏝', to: '㏝', mapping: Mapped("wb") }, - Range { from: '㏞', to: '㏞', mapping: Mapped("v∕m") }, - Range { from: '㏟', to: '㏟', mapping: Mapped("a∕m") }, - Range { from: '㏠', to: '㏠', mapping: Mapped("1日") }, - Range { from: '㏡', to: '㏡', mapping: Mapped("2日") }, - Range { from: '㏢', to: '㏢', mapping: Mapped("3日") }, - Range { from: '㏣', to: '㏣', mapping: Mapped("4日") }, - Range { from: '㏤', to: '㏤', mapping: Mapped("5日") }, - Range { from: '㏥', to: '㏥', mapping: Mapped("6日") }, - Range { from: '㏦', to: '㏦', mapping: Mapped("7日") }, - Range { from: '㏧', to: '㏧', mapping: Mapped("8日") }, - Range { from: '㏨', to: '㏨', mapping: Mapped("9日") }, - Range { from: '㏩', to: '㏩', mapping: Mapped("10日") }, - Range { from: '㏪', to: '㏪', mapping: Mapped("11日") }, - Range { from: '㏫', to: '㏫', mapping: Mapped("12日") }, - Range { from: '㏬', to: '㏬', mapping: Mapped("13日") }, - Range { from: '㏭', to: '㏭', mapping: Mapped("14日") }, - Range { from: '㏮', to: '㏮', mapping: Mapped("15日") }, - Range { from: '㏯', to: '㏯', mapping: Mapped("16日") }, - Range { from: '㏰', to: '㏰', mapping: Mapped("17日") }, - Range { from: '㏱', to: '㏱', mapping: Mapped("18日") }, - Range { from: '㏲', to: '㏲', mapping: Mapped("19日") }, - Range { from: '㏳', to: '㏳', mapping: Mapped("20日") }, - Range { from: '㏴', to: '㏴', mapping: Mapped("21日") }, - Range { from: '㏵', to: '㏵', mapping: Mapped("22日") }, - Range { from: '㏶', to: '㏶', mapping: Mapped("23日") }, - Range { from: '㏷', to: '㏷', mapping: Mapped("24日") }, - Range { from: '㏸', to: '㏸', mapping: Mapped("25日") }, - Range { from: '㏹', to: '㏹', mapping: Mapped("26日") }, - Range { from: '㏺', to: '㏺', mapping: Mapped("27日") }, - Range { from: '㏻', to: '㏻', mapping: Mapped("28日") }, - Range { from: '㏼', to: '㏼', mapping: Mapped("29日") }, - Range { from: '㏽', to: '㏽', mapping: Mapped("30日") }, - Range { from: '㏾', to: '㏾', mapping: Mapped("31日") }, - Range { from: '㏿', to: '㏿', mapping: Mapped("gal") }, - Range { from: '㐀', to: '䶵', mapping: Valid }, - Range { from: '䶶', to: '䶿', mapping: Disallowed }, - Range { from: '䷀', to: '䷿', mapping: Valid }, - Range { from: '一', to: '龥', mapping: Valid }, - Range { from: '龦', to: '龻', mapping: Valid }, - Range { from: '龼', to: '鿃', mapping: Valid }, - Range { from: '鿄', to: '鿋', mapping: Valid }, - Range { from: '鿌', to: '鿌', mapping: Valid }, - Range { from: '鿍', to: '鿕', mapping: Valid }, - Range { from: '鿖', to: '鿿', mapping: Disallowed }, - Range { from: 'ꀀ', to: 'ꒌ', mapping: Valid }, - Range { from: '꒍', to: '꒏', mapping: Disallowed }, - Range { from: '꒐', to: '꒡', mapping: Valid }, - Range { from: '꒢', to: '꒣', mapping: Valid }, - Range { from: '꒤', to: '꒳', mapping: Valid }, - Range { from: '꒴', to: '꒴', mapping: Valid }, - Range { from: '꒵', to: '꓀', mapping: Valid }, - Range { from: '꓁', to: '꓁', mapping: Valid }, - Range { from: '꓂', to: '꓄', mapping: Valid }, - Range { from: '꓅', to: '꓅', mapping: Valid }, - Range { from: '꓆', to: '꓆', mapping: Valid }, - Range { from: '꓇', to: '꓏', mapping: Disallowed }, - Range { from: 'ꓐ', to: 'ꓽ', mapping: Valid }, - Range { from: '꓾', to: '꓿', mapping: Valid }, - Range { from: 'ꔀ', to: 'ꘌ', mapping: Valid }, - Range { from: '꘍', to: '꘏', mapping: Valid }, - Range { from: 'ꘐ', to: 'ꘫ', mapping: Valid }, - Range { from: '꘬', to: '꘿', mapping: Disallowed }, - Range { from: 'Ꙁ', to: 'Ꙁ', mapping: Mapped("ꙁ") }, - Range { from: 'ꙁ', to: 'ꙁ', mapping: Valid }, - Range { from: 'Ꙃ', to: 'Ꙃ', mapping: Mapped("ꙃ") }, - Range { from: 'ꙃ', to: 'ꙃ', mapping: Valid }, - Range { from: 'Ꙅ', to: 'Ꙅ', mapping: Mapped("ꙅ") }, - Range { from: 'ꙅ', to: 'ꙅ', mapping: Valid }, - Range { from: 'Ꙇ', to: 'Ꙇ', mapping: Mapped("ꙇ") }, - Range { from: 'ꙇ', to: 'ꙇ', mapping: Valid }, - Range { from: 'Ꙉ', to: 'Ꙉ', mapping: Mapped("ꙉ") }, - Range { from: 'ꙉ', to: 'ꙉ', mapping: Valid }, - Range { from: 'Ꙋ', to: 'Ꙋ', mapping: Mapped("ꙋ") }, - Range { from: 'ꙋ', to: 'ꙋ', mapping: Valid }, - Range { from: 'Ꙍ', to: 'Ꙍ', mapping: Mapped("ꙍ") }, - Range { from: 'ꙍ', to: 'ꙍ', mapping: Valid }, - Range { from: 'Ꙏ', to: 'Ꙏ', mapping: Mapped("ꙏ") }, - Range { from: 'ꙏ', to: 'ꙏ', mapping: Valid }, - Range { from: 'Ꙑ', to: 'Ꙑ', mapping: Mapped("ꙑ") }, - Range { from: 'ꙑ', to: 'ꙑ', mapping: Valid }, - Range { from: 'Ꙓ', to: 'Ꙓ', mapping: Mapped("ꙓ") }, - Range { from: 'ꙓ', to: 'ꙓ', mapping: Valid }, - Range { from: 'Ꙕ', to: 'Ꙕ', mapping: Mapped("ꙕ") }, - Range { from: 'ꙕ', to: 'ꙕ', mapping: Valid }, - Range { from: 'Ꙗ', to: 'Ꙗ', mapping: Mapped("ꙗ") }, - Range { from: 'ꙗ', to: 'ꙗ', mapping: Valid }, - Range { from: 'Ꙙ', to: 'Ꙙ', mapping: Mapped("ꙙ") }, - Range { from: 'ꙙ', to: 'ꙙ', mapping: Valid }, - Range { from: 'Ꙛ', to: 'Ꙛ', mapping: Mapped("ꙛ") }, - Range { from: 'ꙛ', to: 'ꙛ', mapping: Valid }, - Range { from: 'Ꙝ', to: 'Ꙝ', mapping: Mapped("ꙝ") }, - Range { from: 'ꙝ', to: 'ꙝ', mapping: Valid }, - Range { from: 'Ꙟ', to: 'Ꙟ', mapping: Mapped("ꙟ") }, - Range { from: 'ꙟ', to: 'ꙟ', mapping: Valid }, - Range { from: 'Ꙡ', to: 'Ꙡ', mapping: Mapped("ꙡ") }, - Range { from: 'ꙡ', to: 'ꙡ', mapping: Valid }, - Range { from: 'Ꙣ', to: 'Ꙣ', mapping: Mapped("ꙣ") }, - Range { from: 'ꙣ', to: 'ꙣ', mapping: Valid }, - Range { from: 'Ꙥ', to: 'Ꙥ', mapping: Mapped("ꙥ") }, - Range { from: 'ꙥ', to: 'ꙥ', mapping: Valid }, - Range { from: 'Ꙧ', to: 'Ꙧ', mapping: Mapped("ꙧ") }, - Range { from: 'ꙧ', to: 'ꙧ', mapping: Valid }, - Range { from: 'Ꙩ', to: 'Ꙩ', mapping: Mapped("ꙩ") }, - Range { from: 'ꙩ', to: 'ꙩ', mapping: Valid }, - Range { from: 'Ꙫ', to: 'Ꙫ', mapping: Mapped("ꙫ") }, - Range { from: 'ꙫ', to: 'ꙫ', mapping: Valid }, - Range { from: 'Ꙭ', to: 'Ꙭ', mapping: Mapped("ꙭ") }, - Range { from: 'ꙭ', to: '꙯', mapping: Valid }, - Range { from: '꙰', to: '꙳', mapping: Valid }, - Range { from: 'ꙴ', to: 'ꙻ', mapping: Valid }, - Range { from: '꙼', to: '꙽', mapping: Valid }, - Range { from: '꙾', to: '꙾', mapping: Valid }, - Range { from: 'ꙿ', to: 'ꙿ', mapping: Valid }, - Range { from: 'Ꚁ', to: 'Ꚁ', mapping: Mapped("ꚁ") }, - Range { from: 'ꚁ', to: 'ꚁ', mapping: Valid }, - Range { from: 'Ꚃ', to: 'Ꚃ', mapping: Mapped("ꚃ") }, - Range { from: 'ꚃ', to: 'ꚃ', mapping: Valid }, - Range { from: 'Ꚅ', to: 'Ꚅ', mapping: Mapped("ꚅ") }, - Range { from: 'ꚅ', to: 'ꚅ', mapping: Valid }, - Range { from: 'Ꚇ', to: 'Ꚇ', mapping: Mapped("ꚇ") }, - Range { from: 'ꚇ', to: 'ꚇ', mapping: Valid }, - Range { from: 'Ꚉ', to: 'Ꚉ', mapping: Mapped("ꚉ") }, - Range { from: 'ꚉ', to: 'ꚉ', mapping: Valid }, - Range { from: 'Ꚋ', to: 'Ꚋ', mapping: Mapped("ꚋ") }, - Range { from: 'ꚋ', to: 'ꚋ', mapping: Valid }, - Range { from: 'Ꚍ', to: 'Ꚍ', mapping: Mapped("ꚍ") }, - Range { from: 'ꚍ', to: 'ꚍ', mapping: Valid }, - Range { from: 'Ꚏ', to: 'Ꚏ', mapping: Mapped("ꚏ") }, - Range { from: 'ꚏ', to: 'ꚏ', mapping: Valid }, - Range { from: 'Ꚑ', to: 'Ꚑ', mapping: Mapped("ꚑ") }, - Range { from: 'ꚑ', to: 'ꚑ', mapping: Valid }, - Range { from: 'Ꚓ', to: 'Ꚓ', mapping: Mapped("ꚓ") }, - Range { from: 'ꚓ', to: 'ꚓ', mapping: Valid }, - Range { from: 'Ꚕ', to: 'Ꚕ', mapping: Mapped("ꚕ") }, - Range { from: 'ꚕ', to: 'ꚕ', mapping: Valid }, - Range { from: 'Ꚗ', to: 'Ꚗ', mapping: Mapped("ꚗ") }, - Range { from: 'ꚗ', to: 'ꚗ', mapping: Valid }, - Range { from: 'Ꚙ', to: 'Ꚙ', mapping: Mapped("ꚙ") }, - Range { from: 'ꚙ', to: 'ꚙ', mapping: Valid }, - Range { from: 'Ꚛ', to: 'Ꚛ', mapping: Mapped("ꚛ") }, - Range { from: 'ꚛ', to: 'ꚛ', mapping: Valid }, - Range { from: 'ꚜ', to: 'ꚜ', mapping: Mapped("ъ") }, - Range { from: 'ꚝ', to: 'ꚝ', mapping: Mapped("ь") }, - Range { from: 'ꚞ', to: 'ꚞ', mapping: Valid }, - Range { from: 'ꚟ', to: 'ꚟ', mapping: Valid }, - Range { from: 'ꚠ', to: 'ꛥ', mapping: Valid }, - Range { from: 'ꛦ', to: 'ꛯ', mapping: Valid }, - Range { from: '꛰', to: '꛱', mapping: Valid }, - Range { from: '꛲', to: '꛷', mapping: Valid }, - Range { from: '꛸', to: '꛿', mapping: Disallowed }, - Range { from: '꜀', to: '꜖', mapping: Valid }, - Range { from: 'ꜗ', to: 'ꜚ', mapping: Valid }, - Range { from: 'ꜛ', to: 'ꜟ', mapping: Valid }, - Range { from: '꜠', to: '꜡', mapping: Valid }, - Range { from: 'Ꜣ', to: 'Ꜣ', mapping: Mapped("ꜣ") }, - Range { from: 'ꜣ', to: 'ꜣ', mapping: Valid }, - Range { from: 'Ꜥ', to: 'Ꜥ', mapping: Mapped("ꜥ") }, - Range { from: 'ꜥ', to: 'ꜥ', mapping: Valid }, - Range { from: 'Ꜧ', to: 'Ꜧ', mapping: Mapped("ꜧ") }, - Range { from: 'ꜧ', to: 'ꜧ', mapping: Valid }, - Range { from: 'Ꜩ', to: 'Ꜩ', mapping: Mapped("ꜩ") }, - Range { from: 'ꜩ', to: 'ꜩ', mapping: Valid }, - Range { from: 'Ꜫ', to: 'Ꜫ', mapping: Mapped("ꜫ") }, - Range { from: 'ꜫ', to: 'ꜫ', mapping: Valid }, - Range { from: 'Ꜭ', to: 'Ꜭ', mapping: Mapped("ꜭ") }, - Range { from: 'ꜭ', to: 'ꜭ', mapping: Valid }, - Range { from: 'Ꜯ', to: 'Ꜯ', mapping: Mapped("ꜯ") }, - Range { from: 'ꜯ', to: 'ꜱ', mapping: Valid }, - Range { from: 'Ꜳ', to: 'Ꜳ', mapping: Mapped("ꜳ") }, - Range { from: 'ꜳ', to: 'ꜳ', mapping: Valid }, - Range { from: 'Ꜵ', to: 'Ꜵ', mapping: Mapped("ꜵ") }, - Range { from: 'ꜵ', to: 'ꜵ', mapping: Valid }, - Range { from: 'Ꜷ', to: 'Ꜷ', mapping: Mapped("ꜷ") }, - Range { from: 'ꜷ', to: 'ꜷ', mapping: Valid }, - Range { from: 'Ꜹ', to: 'Ꜹ', mapping: Mapped("ꜹ") }, - Range { from: 'ꜹ', to: 'ꜹ', mapping: Valid }, - Range { from: 'Ꜻ', to: 'Ꜻ', mapping: Mapped("ꜻ") }, - Range { from: 'ꜻ', to: 'ꜻ', mapping: Valid }, - Range { from: 'Ꜽ', to: 'Ꜽ', mapping: Mapped("ꜽ") }, - Range { from: 'ꜽ', to: 'ꜽ', mapping: Valid }, - Range { from: 'Ꜿ', to: 'Ꜿ', mapping: Mapped("ꜿ") }, - Range { from: 'ꜿ', to: 'ꜿ', mapping: Valid }, - Range { from: 'Ꝁ', to: 'Ꝁ', mapping: Mapped("ꝁ") }, - Range { from: 'ꝁ', to: 'ꝁ', mapping: Valid }, - Range { from: 'Ꝃ', to: 'Ꝃ', mapping: Mapped("ꝃ") }, - Range { from: 'ꝃ', to: 'ꝃ', mapping: Valid }, - Range { from: 'Ꝅ', to: 'Ꝅ', mapping: Mapped("ꝅ") }, - Range { from: 'ꝅ', to: 'ꝅ', mapping: Valid }, - Range { from: 'Ꝇ', to: 'Ꝇ', mapping: Mapped("ꝇ") }, - Range { from: 'ꝇ', to: 'ꝇ', mapping: Valid }, - Range { from: 'Ꝉ', to: 'Ꝉ', mapping: Mapped("ꝉ") }, - Range { from: 'ꝉ', to: 'ꝉ', mapping: Valid }, - Range { from: 'Ꝋ', to: 'Ꝋ', mapping: Mapped("ꝋ") }, - Range { from: 'ꝋ', to: 'ꝋ', mapping: Valid }, - Range { from: 'Ꝍ', to: 'Ꝍ', mapping: Mapped("ꝍ") }, - Range { from: 'ꝍ', to: 'ꝍ', mapping: Valid }, - Range { from: 'Ꝏ', to: 'Ꝏ', mapping: Mapped("ꝏ") }, - Range { from: 'ꝏ', to: 'ꝏ', mapping: Valid }, - Range { from: 'Ꝑ', to: 'Ꝑ', mapping: Mapped("ꝑ") }, - Range { from: 'ꝑ', to: 'ꝑ', mapping: Valid }, - Range { from: 'Ꝓ', to: 'Ꝓ', mapping: Mapped("ꝓ") }, - Range { from: 'ꝓ', to: 'ꝓ', mapping: Valid }, - Range { from: 'Ꝕ', to: 'Ꝕ', mapping: Mapped("ꝕ") }, - Range { from: 'ꝕ', to: 'ꝕ', mapping: Valid }, - Range { from: 'Ꝗ', to: 'Ꝗ', mapping: Mapped("ꝗ") }, - Range { from: 'ꝗ', to: 'ꝗ', mapping: Valid }, - Range { from: 'Ꝙ', to: 'Ꝙ', mapping: Mapped("ꝙ") }, - Range { from: 'ꝙ', to: 'ꝙ', mapping: Valid }, - Range { from: 'Ꝛ', to: 'Ꝛ', mapping: Mapped("ꝛ") }, - Range { from: 'ꝛ', to: 'ꝛ', mapping: Valid }, - Range { from: 'Ꝝ', to: 'Ꝝ', mapping: Mapped("ꝝ") }, - Range { from: 'ꝝ', to: 'ꝝ', mapping: Valid }, - Range { from: 'Ꝟ', to: 'Ꝟ', mapping: Mapped("ꝟ") }, - Range { from: 'ꝟ', to: 'ꝟ', mapping: Valid }, - Range { from: 'Ꝡ', to: 'Ꝡ', mapping: Mapped("ꝡ") }, - Range { from: 'ꝡ', to: 'ꝡ', mapping: Valid }, - Range { from: 'Ꝣ', to: 'Ꝣ', mapping: Mapped("ꝣ") }, - Range { from: 'ꝣ', to: 'ꝣ', mapping: Valid }, - Range { from: 'Ꝥ', to: 'Ꝥ', mapping: Mapped("ꝥ") }, - Range { from: 'ꝥ', to: 'ꝥ', mapping: Valid }, - Range { from: 'Ꝧ', to: 'Ꝧ', mapping: Mapped("ꝧ") }, - Range { from: 'ꝧ', to: 'ꝧ', mapping: Valid }, - Range { from: 'Ꝩ', to: 'Ꝩ', mapping: Mapped("ꝩ") }, - Range { from: 'ꝩ', to: 'ꝩ', mapping: Valid }, - Range { from: 'Ꝫ', to: 'Ꝫ', mapping: Mapped("ꝫ") }, - Range { from: 'ꝫ', to: 'ꝫ', mapping: Valid }, - Range { from: 'Ꝭ', to: 'Ꝭ', mapping: Mapped("ꝭ") }, - Range { from: 'ꝭ', to: 'ꝭ', mapping: Valid }, - Range { from: 'Ꝯ', to: 'Ꝯ', mapping: Mapped("ꝯ") }, - Range { from: 'ꝯ', to: 'ꝯ', mapping: Valid }, - Range { from: 'ꝰ', to: 'ꝰ', mapping: Mapped("ꝯ") }, - Range { from: 'ꝱ', to: 'ꝸ', mapping: Valid }, - Range { from: 'Ꝺ', to: 'Ꝺ', mapping: Mapped("ꝺ") }, - Range { from: 'ꝺ', to: 'ꝺ', mapping: Valid }, - Range { from: 'Ꝼ', to: 'Ꝼ', mapping: Mapped("ꝼ") }, - Range { from: 'ꝼ', to: 'ꝼ', mapping: Valid }, - Range { from: 'Ᵹ', to: 'Ᵹ', mapping: Mapped("ᵹ") }, - Range { from: 'Ꝿ', to: 'Ꝿ', mapping: Mapped("ꝿ") }, - Range { from: 'ꝿ', to: 'ꝿ', mapping: Valid }, - Range { from: 'Ꞁ', to: 'Ꞁ', mapping: Mapped("ꞁ") }, - Range { from: 'ꞁ', to: 'ꞁ', mapping: Valid }, - Range { from: 'Ꞃ', to: 'Ꞃ', mapping: Mapped("ꞃ") }, - Range { from: 'ꞃ', to: 'ꞃ', mapping: Valid }, - Range { from: 'Ꞅ', to: 'Ꞅ', mapping: Mapped("ꞅ") }, - Range { from: 'ꞅ', to: 'ꞅ', mapping: Valid }, - Range { from: 'Ꞇ', to: 'Ꞇ', mapping: Mapped("ꞇ") }, - Range { from: 'ꞇ', to: 'ꞈ', mapping: Valid }, - Range { from: '꞉', to: '꞊', mapping: Valid }, - Range { from: 'Ꞌ', to: 'Ꞌ', mapping: Mapped("ꞌ") }, - Range { from: 'ꞌ', to: 'ꞌ', mapping: Valid }, - Range { from: 'Ɥ', to: 'Ɥ', mapping: Mapped("ɥ") }, - Range { from: 'ꞎ', to: 'ꞎ', mapping: Valid }, - Range { from: 'ꞏ', to: 'ꞏ', mapping: Valid }, - Range { from: 'Ꞑ', to: 'Ꞑ', mapping: Mapped("ꞑ") }, - Range { from: 'ꞑ', to: 'ꞑ', mapping: Valid }, - Range { from: 'Ꞓ', to: 'Ꞓ', mapping: Mapped("ꞓ") }, - Range { from: 'ꞓ', to: 'ꞓ', mapping: Valid }, - Range { from: 'ꞔ', to: 'ꞕ', mapping: Valid }, - Range { from: 'Ꞗ', to: 'Ꞗ', mapping: Mapped("ꞗ") }, - Range { from: 'ꞗ', to: 'ꞗ', mapping: Valid }, - Range { from: 'Ꞙ', to: 'Ꞙ', mapping: Mapped("ꞙ") }, - Range { from: 'ꞙ', to: 'ꞙ', mapping: Valid }, - Range { from: 'Ꞛ', to: 'Ꞛ', mapping: Mapped("ꞛ") }, - Range { from: 'ꞛ', to: 'ꞛ', mapping: Valid }, - Range { from: 'Ꞝ', to: 'Ꞝ', mapping: Mapped("ꞝ") }, - Range { from: 'ꞝ', to: 'ꞝ', mapping: Valid }, - Range { from: 'Ꞟ', to: 'Ꞟ', mapping: Mapped("ꞟ") }, - Range { from: 'ꞟ', to: 'ꞟ', mapping: Valid }, - Range { from: 'Ꞡ', to: 'Ꞡ', mapping: Mapped("ꞡ") }, - Range { from: 'ꞡ', to: 'ꞡ', mapping: Valid }, - Range { from: 'Ꞣ', to: 'Ꞣ', mapping: Mapped("ꞣ") }, - Range { from: 'ꞣ', to: 'ꞣ', mapping: Valid }, - Range { from: 'Ꞥ', to: 'Ꞥ', mapping: Mapped("ꞥ") }, - Range { from: 'ꞥ', to: 'ꞥ', mapping: Valid }, - Range { from: 'Ꞧ', to: 'Ꞧ', mapping: Mapped("ꞧ") }, - Range { from: 'ꞧ', to: 'ꞧ', mapping: Valid }, - Range { from: 'Ꞩ', to: 'Ꞩ', mapping: Mapped("ꞩ") }, - Range { from: 'ꞩ', to: 'ꞩ', mapping: Valid }, - Range { from: 'Ɦ', to: 'Ɦ', mapping: Mapped("ɦ") }, - Range { from: 'Ɜ', to: 'Ɜ', mapping: Mapped("ɜ") }, - Range { from: 'Ɡ', to: 'Ɡ', mapping: Mapped("ɡ") }, - Range { from: 'Ɬ', to: 'Ɬ', mapping: Mapped("ɬ") }, - Range { from: 'Ɪ', to: 'Ɪ', mapping: Mapped("ɪ") }, - Range { from: 'ꞯ', to: 'ꞯ', mapping: Disallowed }, - Range { from: 'Ʞ', to: 'Ʞ', mapping: Mapped("ʞ") }, - Range { from: 'Ʇ', to: 'Ʇ', mapping: Mapped("ʇ") }, - Range { from: 'Ʝ', to: 'Ʝ', mapping: Mapped("ʝ") }, - Range { from: 'Ꭓ', to: 'Ꭓ', mapping: Mapped("ꭓ") }, - Range { from: 'Ꞵ', to: 'Ꞵ', mapping: Mapped("ꞵ") }, - Range { from: 'ꞵ', to: 'ꞵ', mapping: Valid }, - Range { from: 'Ꞷ', to: 'Ꞷ', mapping: Mapped("ꞷ") }, - Range { from: 'ꞷ', to: 'ꞷ', mapping: Valid }, - Range { from: 'Ꞹ', to: 'ꟶ', mapping: Disallowed }, - Range { from: 'ꟷ', to: 'ꟷ', mapping: Valid }, - Range { from: 'ꟸ', to: 'ꟸ', mapping: Mapped("ħ") }, - Range { from: 'ꟹ', to: 'ꟹ', mapping: Mapped("œ") }, - Range { from: 'ꟺ', to: 'ꟺ', mapping: Valid }, - Range { from: 'ꟻ', to: 'ꟿ', mapping: Valid }, - Range { from: 'ꠀ', to: 'ꠧ', mapping: Valid }, - Range { from: '꠨', to: '꠫', mapping: Valid }, - Range { from: '꠬', to: '꠯', mapping: Disallowed }, - Range { from: '꠰', to: '꠹', mapping: Valid }, - Range { from: '꠺', to: '꠿', mapping: Disallowed }, - Range { from: 'ꡀ', to: 'ꡳ', mapping: Valid }, - Range { from: '꡴', to: '꡷', mapping: Valid }, - Range { from: '꡸', to: '꡿', mapping: Disallowed }, - Range { from: 'ꢀ', to: '꣄', mapping: Valid }, - Range { from: 'ꣅ', to: 'ꣅ', mapping: Valid }, - Range { from: '꣆', to: '꣍', mapping: Disallowed }, - Range { from: '꣎', to: '꣏', mapping: Valid }, - Range { from: '꣐', to: '꣙', mapping: Valid }, - Range { from: '꣚', to: '꣟', mapping: Disallowed }, - Range { from: '꣠', to: 'ꣷ', mapping: Valid }, - Range { from: '꣸', to: '꣺', mapping: Valid }, - Range { from: 'ꣻ', to: 'ꣻ', mapping: Valid }, - Range { from: '꣼', to: '꣼', mapping: Valid }, - Range { from: 'ꣽ', to: 'ꣽ', mapping: Valid }, - Range { from: 'ꣾ', to: 'ꣿ', mapping: Disallowed }, - Range { from: '꤀', to: '꤭', mapping: Valid }, - Range { from: '꤮', to: '꤯', mapping: Valid }, - Range { from: 'ꤰ', to: '꥓', mapping: Valid }, - Range { from: '꥔', to: '꥞', mapping: Disallowed }, - Range { from: '꥟', to: '꥟', mapping: Valid }, - Range { from: 'ꥠ', to: 'ꥼ', mapping: Valid }, - Range { from: '꥽', to: '꥿', mapping: Disallowed }, - Range { from: 'ꦀ', to: '꧀', mapping: Valid }, - Range { from: '꧁', to: '꧍', mapping: Valid }, - Range { from: '꧎', to: '꧎', mapping: Disallowed }, - Range { from: 'ꧏ', to: '꧙', mapping: Valid }, - Range { from: '꧚', to: '꧝', mapping: Disallowed }, - Range { from: '꧞', to: '꧟', mapping: Valid }, - Range { from: 'ꧠ', to: 'ꧾ', mapping: Valid }, - Range { from: '꧿', to: '꧿', mapping: Disallowed }, - Range { from: 'ꨀ', to: 'ꨶ', mapping: Valid }, - Range { from: '꨷', to: '꨿', mapping: Disallowed }, - Range { from: 'ꩀ', to: 'ꩍ', mapping: Valid }, - Range { from: '꩎', to: '꩏', mapping: Disallowed }, - Range { from: '꩐', to: '꩙', mapping: Valid }, - Range { from: '꩚', to: '꩛', mapping: Disallowed }, - Range { from: '꩜', to: '꩟', mapping: Valid }, - Range { from: 'ꩠ', to: 'ꩶ', mapping: Valid }, - Range { from: '꩷', to: '꩹', mapping: Valid }, - Range { from: 'ꩺ', to: 'ꩻ', mapping: Valid }, - Range { from: 'ꩼ', to: 'ꩿ', mapping: Valid }, - Range { from: 'ꪀ', to: 'ꫂ', mapping: Valid }, - Range { from: '꫃', to: '꫚', mapping: Disallowed }, - Range { from: 'ꫛ', to: 'ꫝ', mapping: Valid }, - Range { from: '꫞', to: '꫟', mapping: Valid }, - Range { from: 'ꫠ', to: 'ꫯ', mapping: Valid }, - Range { from: '꫰', to: '꫱', mapping: Valid }, - Range { from: 'ꫲ', to: '꫶', mapping: Valid }, - Range { from: '꫷', to: '꬀', mapping: Disallowed }, - Range { from: 'ꬁ', to: 'ꬆ', mapping: Valid }, - Range { from: '꬇', to: '꬈', mapping: Disallowed }, - Range { from: 'ꬉ', to: 'ꬎ', mapping: Valid }, - Range { from: '꬏', to: '꬐', mapping: Disallowed }, - Range { from: 'ꬑ', to: 'ꬖ', mapping: Valid }, - Range { from: '꬗', to: '꬟', mapping: Disallowed }, - Range { from: 'ꬠ', to: 'ꬦ', mapping: Valid }, - Range { from: '꬧', to: '꬧', mapping: Disallowed }, - Range { from: 'ꬨ', to: 'ꬮ', mapping: Valid }, - Range { from: '꬯', to: '꬯', mapping: Disallowed }, - Range { from: 'ꬰ', to: 'ꭚ', mapping: Valid }, - Range { from: '꭛', to: '꭛', mapping: Valid }, - Range { from: 'ꭜ', to: 'ꭜ', mapping: Mapped("ꜧ") }, - Range { from: 'ꭝ', to: 'ꭝ', mapping: Mapped("ꬷ") }, - Range { from: 'ꭞ', to: 'ꭞ', mapping: Mapped("ɫ") }, - Range { from: 'ꭟ', to: 'ꭟ', mapping: Mapped("ꭒ") }, - Range { from: 'ꭠ', to: 'ꭣ', mapping: Valid }, - Range { from: 'ꭤ', to: 'ꭥ', mapping: Valid }, - Range { from: 'ꭦ', to: '꭯', mapping: Disallowed }, - Range { from: 'ꭰ', to: 'ꭰ', mapping: Mapped("Ꭰ") }, - Range { from: 'ꭱ', to: 'ꭱ', mapping: Mapped("Ꭱ") }, - Range { from: 'ꭲ', to: 'ꭲ', mapping: Mapped("Ꭲ") }, - Range { from: 'ꭳ', to: 'ꭳ', mapping: Mapped("Ꭳ") }, - Range { from: 'ꭴ', to: 'ꭴ', mapping: Mapped("Ꭴ") }, - Range { from: 'ꭵ', to: 'ꭵ', mapping: Mapped("Ꭵ") }, - Range { from: 'ꭶ', to: 'ꭶ', mapping: Mapped("Ꭶ") }, - Range { from: 'ꭷ', to: 'ꭷ', mapping: Mapped("Ꭷ") }, - Range { from: 'ꭸ', to: 'ꭸ', mapping: Mapped("Ꭸ") }, - Range { from: 'ꭹ', to: 'ꭹ', mapping: Mapped("Ꭹ") }, - Range { from: 'ꭺ', to: 'ꭺ', mapping: Mapped("Ꭺ") }, - Range { from: 'ꭻ', to: 'ꭻ', mapping: Mapped("Ꭻ") }, - Range { from: 'ꭼ', to: 'ꭼ', mapping: Mapped("Ꭼ") }, - Range { from: 'ꭽ', to: 'ꭽ', mapping: Mapped("Ꭽ") }, - Range { from: 'ꭾ', to: 'ꭾ', mapping: Mapped("Ꭾ") }, - Range { from: 'ꭿ', to: 'ꭿ', mapping: Mapped("Ꭿ") }, - Range { from: 'ꮀ', to: 'ꮀ', mapping: Mapped("Ꮀ") }, - Range { from: 'ꮁ', to: 'ꮁ', mapping: Mapped("Ꮁ") }, - Range { from: 'ꮂ', to: 'ꮂ', mapping: Mapped("Ꮂ") }, - Range { from: 'ꮃ', to: 'ꮃ', mapping: Mapped("Ꮃ") }, - Range { from: 'ꮄ', to: 'ꮄ', mapping: Mapped("Ꮄ") }, - Range { from: 'ꮅ', to: 'ꮅ', mapping: Mapped("Ꮅ") }, - Range { from: 'ꮆ', to: 'ꮆ', mapping: Mapped("Ꮆ") }, - Range { from: 'ꮇ', to: 'ꮇ', mapping: Mapped("Ꮇ") }, - Range { from: 'ꮈ', to: 'ꮈ', mapping: Mapped("Ꮈ") }, - Range { from: 'ꮉ', to: 'ꮉ', mapping: Mapped("Ꮉ") }, - Range { from: 'ꮊ', to: 'ꮊ', mapping: Mapped("Ꮊ") }, - Range { from: 'ꮋ', to: 'ꮋ', mapping: Mapped("Ꮋ") }, - Range { from: 'ꮌ', to: 'ꮌ', mapping: Mapped("Ꮌ") }, - Range { from: 'ꮍ', to: 'ꮍ', mapping: Mapped("Ꮍ") }, - Range { from: 'ꮎ', to: 'ꮎ', mapping: Mapped("Ꮎ") }, - Range { from: 'ꮏ', to: 'ꮏ', mapping: Mapped("Ꮏ") }, - Range { from: 'ꮐ', to: 'ꮐ', mapping: Mapped("Ꮐ") }, - Range { from: 'ꮑ', to: 'ꮑ', mapping: Mapped("Ꮑ") }, - Range { from: 'ꮒ', to: 'ꮒ', mapping: Mapped("Ꮒ") }, - Range { from: 'ꮓ', to: 'ꮓ', mapping: Mapped("Ꮓ") }, - Range { from: 'ꮔ', to: 'ꮔ', mapping: Mapped("Ꮔ") }, - Range { from: 'ꮕ', to: 'ꮕ', mapping: Mapped("Ꮕ") }, - Range { from: 'ꮖ', to: 'ꮖ', mapping: Mapped("Ꮖ") }, - Range { from: 'ꮗ', to: 'ꮗ', mapping: Mapped("Ꮗ") }, - Range { from: 'ꮘ', to: 'ꮘ', mapping: Mapped("Ꮘ") }, - Range { from: 'ꮙ', to: 'ꮙ', mapping: Mapped("Ꮙ") }, - Range { from: 'ꮚ', to: 'ꮚ', mapping: Mapped("Ꮚ") }, - Range { from: 'ꮛ', to: 'ꮛ', mapping: Mapped("Ꮛ") }, - Range { from: 'ꮜ', to: 'ꮜ', mapping: Mapped("Ꮜ") }, - Range { from: 'ꮝ', to: 'ꮝ', mapping: Mapped("Ꮝ") }, - Range { from: 'ꮞ', to: 'ꮞ', mapping: Mapped("Ꮞ") }, - Range { from: 'ꮟ', to: 'ꮟ', mapping: Mapped("Ꮟ") }, - Range { from: 'ꮠ', to: 'ꮠ', mapping: Mapped("Ꮠ") }, - Range { from: 'ꮡ', to: 'ꮡ', mapping: Mapped("Ꮡ") }, - Range { from: 'ꮢ', to: 'ꮢ', mapping: Mapped("Ꮢ") }, - Range { from: 'ꮣ', to: 'ꮣ', mapping: Mapped("Ꮣ") }, - Range { from: 'ꮤ', to: 'ꮤ', mapping: Mapped("Ꮤ") }, - Range { from: 'ꮥ', to: 'ꮥ', mapping: Mapped("Ꮥ") }, - Range { from: 'ꮦ', to: 'ꮦ', mapping: Mapped("Ꮦ") }, - Range { from: 'ꮧ', to: 'ꮧ', mapping: Mapped("Ꮧ") }, - Range { from: 'ꮨ', to: 'ꮨ', mapping: Mapped("Ꮨ") }, - Range { from: 'ꮩ', to: 'ꮩ', mapping: Mapped("Ꮩ") }, - Range { from: 'ꮪ', to: 'ꮪ', mapping: Mapped("Ꮪ") }, - Range { from: 'ꮫ', to: 'ꮫ', mapping: Mapped("Ꮫ") }, - Range { from: 'ꮬ', to: 'ꮬ', mapping: Mapped("Ꮬ") }, - Range { from: 'ꮭ', to: 'ꮭ', mapping: Mapped("Ꮭ") }, - Range { from: 'ꮮ', to: 'ꮮ', mapping: Mapped("Ꮮ") }, - Range { from: 'ꮯ', to: 'ꮯ', mapping: Mapped("Ꮯ") }, - Range { from: 'ꮰ', to: 'ꮰ', mapping: Mapped("Ꮰ") }, - Range { from: 'ꮱ', to: 'ꮱ', mapping: Mapped("Ꮱ") }, - Range { from: 'ꮲ', to: 'ꮲ', mapping: Mapped("Ꮲ") }, - Range { from: 'ꮳ', to: 'ꮳ', mapping: Mapped("Ꮳ") }, - Range { from: 'ꮴ', to: 'ꮴ', mapping: Mapped("Ꮴ") }, - Range { from: 'ꮵ', to: 'ꮵ', mapping: Mapped("Ꮵ") }, - Range { from: 'ꮶ', to: 'ꮶ', mapping: Mapped("Ꮶ") }, - Range { from: 'ꮷ', to: 'ꮷ', mapping: Mapped("Ꮷ") }, - Range { from: 'ꮸ', to: 'ꮸ', mapping: Mapped("Ꮸ") }, - Range { from: 'ꮹ', to: 'ꮹ', mapping: Mapped("Ꮹ") }, - Range { from: 'ꮺ', to: 'ꮺ', mapping: Mapped("Ꮺ") }, - Range { from: 'ꮻ', to: 'ꮻ', mapping: Mapped("Ꮻ") }, - Range { from: 'ꮼ', to: 'ꮼ', mapping: Mapped("Ꮼ") }, - Range { from: 'ꮽ', to: 'ꮽ', mapping: Mapped("Ꮽ") }, - Range { from: 'ꮾ', to: 'ꮾ', mapping: Mapped("Ꮾ") }, - Range { from: 'ꮿ', to: 'ꮿ', mapping: Mapped("Ꮿ") }, - Range { from: 'ꯀ', to: 'ꯪ', mapping: Valid }, - Range { from: '꯫', to: '꯫', mapping: Valid }, - Range { from: '꯬', to: '꯭', mapping: Valid }, - Range { from: '꯮', to: '꯯', mapping: Disallowed }, - Range { from: '꯰', to: '꯹', mapping: Valid }, - Range { from: '꯺', to: '꯿', mapping: Disallowed }, - Range { from: '가', to: '힣', mapping: Valid }, - Range { from: '힤', to: '힯', mapping: Disallowed }, - Range { from: 'ힰ', to: 'ퟆ', mapping: Valid }, - Range { from: '퟇', to: '퟊', mapping: Disallowed }, - Range { from: 'ퟋ', to: 'ퟻ', mapping: Valid }, - Range { from: '퟼', to: '퟿', mapping: Disallowed }, - Range { from: '', to: '', mapping: Disallowed }, - Range { from: '豈', to: '豈', mapping: Mapped("豈") }, - Range { from: '更', to: '更', mapping: Mapped("更") }, - Range { from: '車', to: '車', mapping: Mapped("車") }, - Range { from: '賈', to: '賈', mapping: Mapped("賈") }, - Range { from: '滑', to: '滑', mapping: Mapped("滑") }, - Range { from: '串', to: '串', mapping: Mapped("串") }, - Range { from: '句', to: '句', mapping: Mapped("句") }, - Range { from: '龜', to: '龜', mapping: Mapped("龜") }, - Range { from: '契', to: '契', mapping: Mapped("契") }, - Range { from: '金', to: '金', mapping: Mapped("金") }, - Range { from: '喇', to: '喇', mapping: Mapped("喇") }, - Range { from: '奈', to: '奈', mapping: Mapped("奈") }, - Range { from: '懶', to: '懶', mapping: Mapped("懶") }, - Range { from: '癩', to: '癩', mapping: Mapped("癩") }, - Range { from: '羅', to: '羅', mapping: Mapped("羅") }, - Range { from: '蘿', to: '蘿', mapping: Mapped("蘿") }, - Range { from: '螺', to: '螺', mapping: Mapped("螺") }, - Range { from: '裸', to: '裸', mapping: Mapped("裸") }, - Range { from: '邏', to: '邏', mapping: Mapped("邏") }, - Range { from: '樂', to: '樂', mapping: Mapped("樂") }, - Range { from: '洛', to: '洛', mapping: Mapped("洛") }, - Range { from: '烙', to: '烙', mapping: Mapped("烙") }, - Range { from: '珞', to: '珞', mapping: Mapped("珞") }, - Range { from: '落', to: '落', mapping: Mapped("落") }, - Range { from: '酪', to: '酪', mapping: Mapped("酪") }, - Range { from: '駱', to: '駱', mapping: Mapped("駱") }, - Range { from: '亂', to: '亂', mapping: Mapped("亂") }, - Range { from: '卵', to: '卵', mapping: Mapped("卵") }, - Range { from: '欄', to: '欄', mapping: Mapped("欄") }, - Range { from: '爛', to: '爛', mapping: Mapped("爛") }, - Range { from: '蘭', to: '蘭', mapping: Mapped("蘭") }, - Range { from: '鸞', to: '鸞', mapping: Mapped("鸞") }, - Range { from: '嵐', to: '嵐', mapping: Mapped("嵐") }, - Range { from: '濫', to: '濫', mapping: Mapped("濫") }, - Range { from: '藍', to: '藍', mapping: Mapped("藍") }, - Range { from: '襤', to: '襤', mapping: Mapped("襤") }, - Range { from: '拉', to: '拉', mapping: Mapped("拉") }, - Range { from: '臘', to: '臘', mapping: Mapped("臘") }, - Range { from: '蠟', to: '蠟', mapping: Mapped("蠟") }, - Range { from: '廊', to: '廊', mapping: Mapped("廊") }, - Range { from: '朗', to: '朗', mapping: Mapped("朗") }, - Range { from: '浪', to: '浪', mapping: Mapped("浪") }, - Range { from: '狼', to: '狼', mapping: Mapped("狼") }, - Range { from: '郎', to: '郎', mapping: Mapped("郎") }, - Range { from: '來', to: '來', mapping: Mapped("來") }, - Range { from: '冷', to: '冷', mapping: Mapped("冷") }, - Range { from: '勞', to: '勞', mapping: Mapped("勞") }, - Range { from: '擄', to: '擄', mapping: Mapped("擄") }, - Range { from: '櫓', to: '櫓', mapping: Mapped("櫓") }, - Range { from: '爐', to: '爐', mapping: Mapped("爐") }, - Range { from: '盧', to: '盧', mapping: Mapped("盧") }, - Range { from: '老', to: '老', mapping: Mapped("老") }, - Range { from: '蘆', to: '蘆', mapping: Mapped("蘆") }, - Range { from: '虜', to: '虜', mapping: Mapped("虜") }, - Range { from: '路', to: '路', mapping: Mapped("路") }, - Range { from: '露', to: '露', mapping: Mapped("露") }, - Range { from: '魯', to: '魯', mapping: Mapped("魯") }, - Range { from: '鷺', to: '鷺', mapping: Mapped("鷺") }, - Range { from: '碌', to: '碌', mapping: Mapped("碌") }, - Range { from: '祿', to: '祿', mapping: Mapped("祿") }, - Range { from: '綠', to: '綠', mapping: Mapped("綠") }, - Range { from: '菉', to: '菉', mapping: Mapped("菉") }, - Range { from: '錄', to: '錄', mapping: Mapped("錄") }, - Range { from: '鹿', to: '鹿', mapping: Mapped("鹿") }, - Range { from: '論', to: '論', mapping: Mapped("論") }, - Range { from: '壟', to: '壟', mapping: Mapped("壟") }, - Range { from: '弄', to: '弄', mapping: Mapped("弄") }, - Range { from: '籠', to: '籠', mapping: Mapped("籠") }, - Range { from: '聾', to: '聾', mapping: Mapped("聾") }, - Range { from: '牢', to: '牢', mapping: Mapped("牢") }, - Range { from: '磊', to: '磊', mapping: Mapped("磊") }, - Range { from: '賂', to: '賂', mapping: Mapped("賂") }, - Range { from: '雷', to: '雷', mapping: Mapped("雷") }, - Range { from: '壘', to: '壘', mapping: Mapped("壘") }, - Range { from: '屢', to: '屢', mapping: Mapped("屢") }, - Range { from: '樓', to: '樓', mapping: Mapped("樓") }, - Range { from: '淚', to: '淚', mapping: Mapped("淚") }, - Range { from: '漏', to: '漏', mapping: Mapped("漏") }, - Range { from: '累', to: '累', mapping: Mapped("累") }, - Range { from: '縷', to: '縷', mapping: Mapped("縷") }, - Range { from: '陋', to: '陋', mapping: Mapped("陋") }, - Range { from: '勒', to: '勒', mapping: Mapped("勒") }, - Range { from: '肋', to: '肋', mapping: Mapped("肋") }, - Range { from: '凜', to: '凜', mapping: Mapped("凜") }, - Range { from: '凌', to: '凌', mapping: Mapped("凌") }, - Range { from: '稜', to: '稜', mapping: Mapped("稜") }, - Range { from: '綾', to: '綾', mapping: Mapped("綾") }, - Range { from: '菱', to: '菱', mapping: Mapped("菱") }, - Range { from: '陵', to: '陵', mapping: Mapped("陵") }, - Range { from: '讀', to: '讀', mapping: Mapped("讀") }, - Range { from: '拏', to: '拏', mapping: Mapped("拏") }, - Range { from: '樂', to: '樂', mapping: Mapped("樂") }, - Range { from: '諾', to: '諾', mapping: Mapped("諾") }, - Range { from: '丹', to: '丹', mapping: Mapped("丹") }, - Range { from: '寧', to: '寧', mapping: Mapped("寧") }, - Range { from: '怒', to: '怒', mapping: Mapped("怒") }, - Range { from: '率', to: '率', mapping: Mapped("率") }, - Range { from: '異', to: '異', mapping: Mapped("異") }, - Range { from: '北', to: '北', mapping: Mapped("北") }, - Range { from: '磻', to: '磻', mapping: Mapped("磻") }, - Range { from: '便', to: '便', mapping: Mapped("便") }, - Range { from: '復', to: '復', mapping: Mapped("復") }, - Range { from: '不', to: '不', mapping: Mapped("不") }, - Range { from: '泌', to: '泌', mapping: Mapped("泌") }, - Range { from: '數', to: '數', mapping: Mapped("數") }, - Range { from: '索', to: '索', mapping: Mapped("索") }, - Range { from: '參', to: '參', mapping: Mapped("參") }, - Range { from: '塞', to: '塞', mapping: Mapped("塞") }, - Range { from: '省', to: '省', mapping: Mapped("省") }, - Range { from: '葉', to: '葉', mapping: Mapped("葉") }, - Range { from: '說', to: '說', mapping: Mapped("說") }, - Range { from: '殺', to: '殺', mapping: Mapped("殺") }, - Range { from: '辰', to: '辰', mapping: Mapped("辰") }, - Range { from: '沈', to: '沈', mapping: Mapped("沈") }, - Range { from: '拾', to: '拾', mapping: Mapped("拾") }, - Range { from: '若', to: '若', mapping: Mapped("若") }, - Range { from: '掠', to: '掠', mapping: Mapped("掠") }, - Range { from: '略', to: '略', mapping: Mapped("略") }, - Range { from: '亮', to: '亮', mapping: Mapped("亮") }, - Range { from: '兩', to: '兩', mapping: Mapped("兩") }, - Range { from: '凉', to: '凉', mapping: Mapped("凉") }, - Range { from: '梁', to: '梁', mapping: Mapped("梁") }, - Range { from: '糧', to: '糧', mapping: Mapped("糧") }, - Range { from: '良', to: '良', mapping: Mapped("良") }, - Range { from: '諒', to: '諒', mapping: Mapped("諒") }, - Range { from: '量', to: '量', mapping: Mapped("量") }, - Range { from: '勵', to: '勵', mapping: Mapped("勵") }, - Range { from: '呂', to: '呂', mapping: Mapped("呂") }, - Range { from: '女', to: '女', mapping: Mapped("女") }, - Range { from: '廬', to: '廬', mapping: Mapped("廬") }, - Range { from: '旅', to: '旅', mapping: Mapped("旅") }, - Range { from: '濾', to: '濾', mapping: Mapped("濾") }, - Range { from: '礪', to: '礪', mapping: Mapped("礪") }, - Range { from: '閭', to: '閭', mapping: Mapped("閭") }, - Range { from: '驪', to: '驪', mapping: Mapped("驪") }, - Range { from: '麗', to: '麗', mapping: Mapped("麗") }, - Range { from: '黎', to: '黎', mapping: Mapped("黎") }, - Range { from: '力', to: '力', mapping: Mapped("力") }, - Range { from: '曆', to: '曆', mapping: Mapped("曆") }, - Range { from: '歷', to: '歷', mapping: Mapped("歷") }, - Range { from: '轢', to: '轢', mapping: Mapped("轢") }, - Range { from: '年', to: '年', mapping: Mapped("年") }, - Range { from: '憐', to: '憐', mapping: Mapped("憐") }, - Range { from: '戀', to: '戀', mapping: Mapped("戀") }, - Range { from: '撚', to: '撚', mapping: Mapped("撚") }, - Range { from: '漣', to: '漣', mapping: Mapped("漣") }, - Range { from: '煉', to: '煉', mapping: Mapped("煉") }, - Range { from: '璉', to: '璉', mapping: Mapped("璉") }, - Range { from: '秊', to: '秊', mapping: Mapped("秊") }, - Range { from: '練', to: '練', mapping: Mapped("練") }, - Range { from: '聯', to: '聯', mapping: Mapped("聯") }, - Range { from: '輦', to: '輦', mapping: Mapped("輦") }, - Range { from: '蓮', to: '蓮', mapping: Mapped("蓮") }, - Range { from: '連', to: '連', mapping: Mapped("連") }, - Range { from: '鍊', to: '鍊', mapping: Mapped("鍊") }, - Range { from: '列', to: '列', mapping: Mapped("列") }, - Range { from: '劣', to: '劣', mapping: Mapped("劣") }, - Range { from: '咽', to: '咽', mapping: Mapped("咽") }, - Range { from: '烈', to: '烈', mapping: Mapped("烈") }, - Range { from: '裂', to: '裂', mapping: Mapped("裂") }, - Range { from: '說', to: '說', mapping: Mapped("說") }, - Range { from: '廉', to: '廉', mapping: Mapped("廉") }, - Range { from: '念', to: '念', mapping: Mapped("念") }, - Range { from: '捻', to: '捻', mapping: Mapped("捻") }, - Range { from: '殮', to: '殮', mapping: Mapped("殮") }, - Range { from: '簾', to: '簾', mapping: Mapped("簾") }, - Range { from: '獵', to: '獵', mapping: Mapped("獵") }, - Range { from: '令', to: '令', mapping: Mapped("令") }, - Range { from: '囹', to: '囹', mapping: Mapped("囹") }, - Range { from: '寧', to: '寧', mapping: Mapped("寧") }, - Range { from: '嶺', to: '嶺', mapping: Mapped("嶺") }, - Range { from: '怜', to: '怜', mapping: Mapped("怜") }, - Range { from: '玲', to: '玲', mapping: Mapped("玲") }, - Range { from: '瑩', to: '瑩', mapping: Mapped("瑩") }, - Range { from: '羚', to: '羚', mapping: Mapped("羚") }, - Range { from: '聆', to: '聆', mapping: Mapped("聆") }, - Range { from: '鈴', to: '鈴', mapping: Mapped("鈴") }, - Range { from: '零', to: '零', mapping: Mapped("零") }, - Range { from: '靈', to: '靈', mapping: Mapped("靈") }, - Range { from: '領', to: '領', mapping: Mapped("領") }, - Range { from: '例', to: '例', mapping: Mapped("例") }, - Range { from: '禮', to: '禮', mapping: Mapped("禮") }, - Range { from: '醴', to: '醴', mapping: Mapped("醴") }, - Range { from: '隸', to: '隸', mapping: Mapped("隸") }, - Range { from: '惡', to: '惡', mapping: Mapped("惡") }, - Range { from: '了', to: '了', mapping: Mapped("了") }, - Range { from: '僚', to: '僚', mapping: Mapped("僚") }, - Range { from: '寮', to: '寮', mapping: Mapped("寮") }, - Range { from: '尿', to: '尿', mapping: Mapped("尿") }, - Range { from: '料', to: '料', mapping: Mapped("料") }, - Range { from: '樂', to: '樂', mapping: Mapped("樂") }, - Range { from: '燎', to: '燎', mapping: Mapped("燎") }, - Range { from: '療', to: '療', mapping: Mapped("療") }, - Range { from: '蓼', to: '蓼', mapping: Mapped("蓼") }, - Range { from: '遼', to: '遼', mapping: Mapped("遼") }, - Range { from: '龍', to: '龍', mapping: Mapped("龍") }, - Range { from: '暈', to: '暈', mapping: Mapped("暈") }, - Range { from: '阮', to: '阮', mapping: Mapped("阮") }, - Range { from: '劉', to: '劉', mapping: Mapped("劉") }, - Range { from: '杻', to: '杻', mapping: Mapped("杻") }, - Range { from: '柳', to: '柳', mapping: Mapped("柳") }, - Range { from: '流', to: '流', mapping: Mapped("流") }, - Range { from: '溜', to: '溜', mapping: Mapped("溜") }, - Range { from: '琉', to: '琉', mapping: Mapped("琉") }, - Range { from: '留', to: '留', mapping: Mapped("留") }, - Range { from: '硫', to: '硫', mapping: Mapped("硫") }, - Range { from: '紐', to: '紐', mapping: Mapped("紐") }, - Range { from: '類', to: '類', mapping: Mapped("類") }, - Range { from: '六', to: '六', mapping: Mapped("六") }, - Range { from: '戮', to: '戮', mapping: Mapped("戮") }, - Range { from: '陸', to: '陸', mapping: Mapped("陸") }, - Range { from: '倫', to: '倫', mapping: Mapped("倫") }, - Range { from: '崙', to: '崙', mapping: Mapped("崙") }, - Range { from: '淪', to: '淪', mapping: Mapped("淪") }, - Range { from: '輪', to: '輪', mapping: Mapped("輪") }, - Range { from: '律', to: '律', mapping: Mapped("律") }, - Range { from: '慄', to: '慄', mapping: Mapped("慄") }, - Range { from: '栗', to: '栗', mapping: Mapped("栗") }, - Range { from: '率', to: '率', mapping: Mapped("率") }, - Range { from: '隆', to: '隆', mapping: Mapped("隆") }, - Range { from: '利', to: '利', mapping: Mapped("利") }, - Range { from: '吏', to: '吏', mapping: Mapped("吏") }, - Range { from: '履', to: '履', mapping: Mapped("履") }, - Range { from: '易', to: '易', mapping: Mapped("易") }, - Range { from: '李', to: '李', mapping: Mapped("李") }, - Range { from: '梨', to: '梨', mapping: Mapped("梨") }, - Range { from: '泥', to: '泥', mapping: Mapped("泥") }, - Range { from: '理', to: '理', mapping: Mapped("理") }, - Range { from: '痢', to: '痢', mapping: Mapped("痢") }, - Range { from: '罹', to: '罹', mapping: Mapped("罹") }, - Range { from: '裏', to: '裏', mapping: Mapped("裏") }, - Range { from: '裡', to: '裡', mapping: Mapped("裡") }, - Range { from: '里', to: '里', mapping: Mapped("里") }, - Range { from: '離', to: '離', mapping: Mapped("離") }, - Range { from: '匿', to: '匿', mapping: Mapped("匿") }, - Range { from: '溺', to: '溺', mapping: Mapped("溺") }, - Range { from: '吝', to: '吝', mapping: Mapped("吝") }, - Range { from: '燐', to: '燐', mapping: Mapped("燐") }, - Range { from: '璘', to: '璘', mapping: Mapped("璘") }, - Range { from: '藺', to: '藺', mapping: Mapped("藺") }, - Range { from: '隣', to: '隣', mapping: Mapped("隣") }, - Range { from: '鱗', to: '鱗', mapping: Mapped("鱗") }, - Range { from: '麟', to: '麟', mapping: Mapped("麟") }, - Range { from: '林', to: '林', mapping: Mapped("林") }, - Range { from: '淋', to: '淋', mapping: Mapped("淋") }, - Range { from: '臨', to: '臨', mapping: Mapped("臨") }, - Range { from: '立', to: '立', mapping: Mapped("立") }, - Range { from: '笠', to: '笠', mapping: Mapped("笠") }, - Range { from: '粒', to: '粒', mapping: Mapped("粒") }, - Range { from: '狀', to: '狀', mapping: Mapped("狀") }, - Range { from: '炙', to: '炙', mapping: Mapped("炙") }, - Range { from: '識', to: '識', mapping: Mapped("識") }, - Range { from: '什', to: '什', mapping: Mapped("什") }, - Range { from: '茶', to: '茶', mapping: Mapped("茶") }, - Range { from: '刺', to: '刺', mapping: Mapped("刺") }, - Range { from: '切', to: '切', mapping: Mapped("切") }, - Range { from: '度', to: '度', mapping: Mapped("度") }, - Range { from: '拓', to: '拓', mapping: Mapped("拓") }, - Range { from: '糖', to: '糖', mapping: Mapped("糖") }, - Range { from: '宅', to: '宅', mapping: Mapped("宅") }, - Range { from: '洞', to: '洞', mapping: Mapped("洞") }, - Range { from: '暴', to: '暴', mapping: Mapped("暴") }, - Range { from: '輻', to: '輻', mapping: Mapped("輻") }, - Range { from: '行', to: '行', mapping: Mapped("行") }, - Range { from: '降', to: '降', mapping: Mapped("降") }, - Range { from: '見', to: '見', mapping: Mapped("見") }, - Range { from: '廓', to: '廓', mapping: Mapped("廓") }, - Range { from: '兀', to: '兀', mapping: Mapped("兀") }, - Range { from: '嗀', to: '嗀', mapping: Mapped("嗀") }, - Range { from: '﨎', to: '﨏', mapping: Valid }, - Range { from: '塚', to: '塚', mapping: Mapped("塚") }, - Range { from: '﨑', to: '﨑', mapping: Valid }, - Range { from: '晴', to: '晴', mapping: Mapped("晴") }, - Range { from: '﨓', to: '﨔', mapping: Valid }, - Range { from: '凞', to: '凞', mapping: Mapped("凞") }, - Range { from: '猪', to: '猪', mapping: Mapped("猪") }, - Range { from: '益', to: '益', mapping: Mapped("益") }, - Range { from: '礼', to: '礼', mapping: Mapped("礼") }, - Range { from: '神', to: '神', mapping: Mapped("神") }, - Range { from: '祥', to: '祥', mapping: Mapped("祥") }, - Range { from: '福', to: '福', mapping: Mapped("福") }, - Range { from: '靖', to: '靖', mapping: Mapped("靖") }, - Range { from: '精', to: '精', mapping: Mapped("精") }, - Range { from: '羽', to: '羽', mapping: Mapped("羽") }, - Range { from: '﨟', to: '﨟', mapping: Valid }, - Range { from: '蘒', to: '蘒', mapping: Mapped("蘒") }, - Range { from: '﨡', to: '﨡', mapping: Valid }, - Range { from: '諸', to: '諸', mapping: Mapped("諸") }, - Range { from: '﨣', to: '﨤', mapping: Valid }, - Range { from: '逸', to: '逸', mapping: Mapped("逸") }, - Range { from: '都', to: '都', mapping: Mapped("都") }, - Range { from: '﨧', to: '﨩', mapping: Valid }, - Range { from: '飯', to: '飯', mapping: Mapped("飯") }, - Range { from: '飼', to: '飼', mapping: Mapped("飼") }, - Range { from: '館', to: '館', mapping: Mapped("館") }, - Range { from: '鶴', to: '鶴', mapping: Mapped("鶴") }, - Range { from: '郞', to: '郞', mapping: Mapped("郞") }, - Range { from: '隷', to: '隷', mapping: Mapped("隷") }, - Range { from: '侮', to: '侮', mapping: Mapped("侮") }, - Range { from: '僧', to: '僧', mapping: Mapped("僧") }, - Range { from: '免', to: '免', mapping: Mapped("免") }, - Range { from: '勉', to: '勉', mapping: Mapped("勉") }, - Range { from: '勤', to: '勤', mapping: Mapped("勤") }, - Range { from: '卑', to: '卑', mapping: Mapped("卑") }, - Range { from: '喝', to: '喝', mapping: Mapped("喝") }, - Range { from: '嘆', to: '嘆', mapping: Mapped("嘆") }, - Range { from: '器', to: '器', mapping: Mapped("器") }, - Range { from: '塀', to: '塀', mapping: Mapped("塀") }, - Range { from: '墨', to: '墨', mapping: Mapped("墨") }, - Range { from: '層', to: '層', mapping: Mapped("層") }, - Range { from: '屮', to: '屮', mapping: Mapped("屮") }, - Range { from: '悔', to: '悔', mapping: Mapped("悔") }, - Range { from: '慨', to: '慨', mapping: Mapped("慨") }, - Range { from: '憎', to: '憎', mapping: Mapped("憎") }, - Range { from: '懲', to: '懲', mapping: Mapped("懲") }, - Range { from: '敏', to: '敏', mapping: Mapped("敏") }, - Range { from: '既', to: '既', mapping: Mapped("既") }, - Range { from: '暑', to: '暑', mapping: Mapped("暑") }, - Range { from: '梅', to: '梅', mapping: Mapped("梅") }, - Range { from: '海', to: '海', mapping: Mapped("海") }, - Range { from: '渚', to: '渚', mapping: Mapped("渚") }, - Range { from: '漢', to: '漢', mapping: Mapped("漢") }, - Range { from: '煮', to: '煮', mapping: Mapped("煮") }, - Range { from: '爫', to: '爫', mapping: Mapped("爫") }, - Range { from: '琢', to: '琢', mapping: Mapped("琢") }, - Range { from: '碑', to: '碑', mapping: Mapped("碑") }, - Range { from: '社', to: '社', mapping: Mapped("社") }, - Range { from: '祉', to: '祉', mapping: Mapped("祉") }, - Range { from: '祈', to: '祈', mapping: Mapped("祈") }, - Range { from: '祐', to: '祐', mapping: Mapped("祐") }, - Range { from: '祖', to: '祖', mapping: Mapped("祖") }, - Range { from: '祝', to: '祝', mapping: Mapped("祝") }, - Range { from: '禍', to: '禍', mapping: Mapped("禍") }, - Range { from: '禎', to: '禎', mapping: Mapped("禎") }, - Range { from: '穀', to: '穀', mapping: Mapped("穀") }, - Range { from: '突', to: '突', mapping: Mapped("突") }, - Range { from: '節', to: '節', mapping: Mapped("節") }, - Range { from: '練', to: '練', mapping: Mapped("練") }, - Range { from: '縉', to: '縉', mapping: Mapped("縉") }, - Range { from: '繁', to: '繁', mapping: Mapped("繁") }, - Range { from: '署', to: '署', mapping: Mapped("署") }, - Range { from: '者', to: '者', mapping: Mapped("者") }, - Range { from: '臭', to: '臭', mapping: Mapped("臭") }, - Range { from: '艹', to: '艹', mapping: Mapped("艹") }, - Range { from: '著', to: '著', mapping: Mapped("著") }, - Range { from: '褐', to: '褐', mapping: Mapped("褐") }, - Range { from: '視', to: '視', mapping: Mapped("視") }, - Range { from: '謁', to: '謁', mapping: Mapped("謁") }, - Range { from: '謹', to: '謹', mapping: Mapped("謹") }, - Range { from: '賓', to: '賓', mapping: Mapped("賓") }, - Range { from: '贈', to: '贈', mapping: Mapped("贈") }, - Range { from: '辶', to: '辶', mapping: Mapped("辶") }, - Range { from: '逸', to: '逸', mapping: Mapped("逸") }, - Range { from: '難', to: '難', mapping: Mapped("難") }, - Range { from: '響', to: '響', mapping: Mapped("響") }, - Range { from: '頻', to: '頻', mapping: Mapped("頻") }, - Range { from: '恵', to: '恵', mapping: Mapped("恵") }, - Range { from: '𤋮', to: '𤋮', mapping: Mapped("𤋮") }, - Range { from: '舘', to: '舘', mapping: Mapped("舘") }, - Range { from: '﩮', to: '﩯', mapping: Disallowed }, - Range { from: '並', to: '並', mapping: Mapped("並") }, - Range { from: '况', to: '况', mapping: Mapped("况") }, - Range { from: '全', to: '全', mapping: Mapped("全") }, - Range { from: '侀', to: '侀', mapping: Mapped("侀") }, - Range { from: '充', to: '充', mapping: Mapped("充") }, - Range { from: '冀', to: '冀', mapping: Mapped("冀") }, - Range { from: '勇', to: '勇', mapping: Mapped("勇") }, - Range { from: '勺', to: '勺', mapping: Mapped("勺") }, - Range { from: '喝', to: '喝', mapping: Mapped("喝") }, - Range { from: '啕', to: '啕', mapping: Mapped("啕") }, - Range { from: '喙', to: '喙', mapping: Mapped("喙") }, - Range { from: '嗢', to: '嗢', mapping: Mapped("嗢") }, - Range { from: '塚', to: '塚', mapping: Mapped("塚") }, - Range { from: '墳', to: '墳', mapping: Mapped("墳") }, - Range { from: '奄', to: '奄', mapping: Mapped("奄") }, - Range { from: '奔', to: '奔', mapping: Mapped("奔") }, - Range { from: '婢', to: '婢', mapping: Mapped("婢") }, - Range { from: '嬨', to: '嬨', mapping: Mapped("嬨") }, - Range { from: '廒', to: '廒', mapping: Mapped("廒") }, - Range { from: '廙', to: '廙', mapping: Mapped("廙") }, - Range { from: '彩', to: '彩', mapping: Mapped("彩") }, - Range { from: '徭', to: '徭', mapping: Mapped("徭") }, - Range { from: '惘', to: '惘', mapping: Mapped("惘") }, - Range { from: '慎', to: '慎', mapping: Mapped("慎") }, - Range { from: '愈', to: '愈', mapping: Mapped("愈") }, - Range { from: '憎', to: '憎', mapping: Mapped("憎") }, - Range { from: '慠', to: '慠', mapping: Mapped("慠") }, - Range { from: '懲', to: '懲', mapping: Mapped("懲") }, - Range { from: '戴', to: '戴', mapping: Mapped("戴") }, - Range { from: '揄', to: '揄', mapping: Mapped("揄") }, - Range { from: '搜', to: '搜', mapping: Mapped("搜") }, - Range { from: '摒', to: '摒', mapping: Mapped("摒") }, - Range { from: '敖', to: '敖', mapping: Mapped("敖") }, - Range { from: '晴', to: '晴', mapping: Mapped("晴") }, - Range { from: '朗', to: '朗', mapping: Mapped("朗") }, - Range { from: '望', to: '望', mapping: Mapped("望") }, - Range { from: '杖', to: '杖', mapping: Mapped("杖") }, - Range { from: '歹', to: '歹', mapping: Mapped("歹") }, - Range { from: '殺', to: '殺', mapping: Mapped("殺") }, - Range { from: '流', to: '流', mapping: Mapped("流") }, - Range { from: '滛', to: '滛', mapping: Mapped("滛") }, - Range { from: '滋', to: '滋', mapping: Mapped("滋") }, - Range { from: '漢', to: '漢', mapping: Mapped("漢") }, - Range { from: '瀞', to: '瀞', mapping: Mapped("瀞") }, - Range { from: '煮', to: '煮', mapping: Mapped("煮") }, - Range { from: '瞧', to: '瞧', mapping: Mapped("瞧") }, - Range { from: '爵', to: '爵', mapping: Mapped("爵") }, - Range { from: '犯', to: '犯', mapping: Mapped("犯") }, - Range { from: '猪', to: '猪', mapping: Mapped("猪") }, - Range { from: '瑱', to: '瑱', mapping: Mapped("瑱") }, - Range { from: '甆', to: '甆', mapping: Mapped("甆") }, - Range { from: '画', to: '画', mapping: Mapped("画") }, - Range { from: '瘝', to: '瘝', mapping: Mapped("瘝") }, - Range { from: '瘟', to: '瘟', mapping: Mapped("瘟") }, - Range { from: '益', to: '益', mapping: Mapped("益") }, - Range { from: '盛', to: '盛', mapping: Mapped("盛") }, - Range { from: '直', to: '直', mapping: Mapped("直") }, - Range { from: '睊', to: '睊', mapping: Mapped("睊") }, - Range { from: '着', to: '着', mapping: Mapped("着") }, - Range { from: '磌', to: '磌', mapping: Mapped("磌") }, - Range { from: '窱', to: '窱', mapping: Mapped("窱") }, - Range { from: '節', to: '節', mapping: Mapped("節") }, - Range { from: '类', to: '类', mapping: Mapped("类") }, - Range { from: '絛', to: '絛', mapping: Mapped("絛") }, - Range { from: '練', to: '練', mapping: Mapped("練") }, - Range { from: '缾', to: '缾', mapping: Mapped("缾") }, - Range { from: '者', to: '者', mapping: Mapped("者") }, - Range { from: '荒', to: '荒', mapping: Mapped("荒") }, - Range { from: '華', to: '華', mapping: Mapped("華") }, - Range { from: '蝹', to: '蝹', mapping: Mapped("蝹") }, - Range { from: '襁', to: '襁', mapping: Mapped("襁") }, - Range { from: '覆', to: '覆', mapping: Mapped("覆") }, - Range { from: '視', to: '視', mapping: Mapped("視") }, - Range { from: '調', to: '調', mapping: Mapped("調") }, - Range { from: '諸', to: '諸', mapping: Mapped("諸") }, - Range { from: '請', to: '請', mapping: Mapped("請") }, - Range { from: '謁', to: '謁', mapping: Mapped("謁") }, - Range { from: '諾', to: '諾', mapping: Mapped("諾") }, - Range { from: '諭', to: '諭', mapping: Mapped("諭") }, - Range { from: '謹', to: '謹', mapping: Mapped("謹") }, - Range { from: '變', to: '變', mapping: Mapped("變") }, - Range { from: '贈', to: '贈', mapping: Mapped("贈") }, - Range { from: '輸', to: '輸', mapping: Mapped("輸") }, - Range { from: '遲', to: '遲', mapping: Mapped("遲") }, - Range { from: '醙', to: '醙', mapping: Mapped("醙") }, - Range { from: '鉶', to: '鉶', mapping: Mapped("鉶") }, - Range { from: '陼', to: '陼', mapping: Mapped("陼") }, - Range { from: '難', to: '難', mapping: Mapped("難") }, - Range { from: '靖', to: '靖', mapping: Mapped("靖") }, - Range { from: '韛', to: '韛', mapping: Mapped("韛") }, - Range { from: '響', to: '響', mapping: Mapped("響") }, - Range { from: '頋', to: '頋', mapping: Mapped("頋") }, - Range { from: '頻', to: '頻', mapping: Mapped("頻") }, - Range { from: '鬒', to: '鬒', mapping: Mapped("鬒") }, - Range { from: '龜', to: '龜', mapping: Mapped("龜") }, - Range { from: '𢡊', to: '𢡊', mapping: Mapped("𢡊") }, - Range { from: '𢡄', to: '𢡄', mapping: Mapped("𢡄") }, - Range { from: '𣏕', to: '𣏕', mapping: Mapped("𣏕") }, - Range { from: '㮝', to: '㮝', mapping: Mapped("㮝") }, - Range { from: '䀘', to: '䀘', mapping: Mapped("䀘") }, - Range { from: '䀹', to: '䀹', mapping: Mapped("䀹") }, - Range { from: '𥉉', to: '𥉉', mapping: Mapped("𥉉") }, - Range { from: '𥳐', to: '𥳐', mapping: Mapped("𥳐") }, - Range { from: '𧻓', to: '𧻓', mapping: Mapped("𧻓") }, - Range { from: '齃', to: '齃', mapping: Mapped("齃") }, - Range { from: '龎', to: '龎', mapping: Mapped("龎") }, - Range { from: '﫚', to: '﫿', mapping: Disallowed }, - Range { from: 'ff', to: 'ff', mapping: Mapped("ff") }, - Range { from: 'fi', to: 'fi', mapping: Mapped("fi") }, - Range { from: 'fl', to: 'fl', mapping: Mapped("fl") }, - Range { from: 'ffi', to: 'ffi', mapping: Mapped("ffi") }, - Range { from: 'ffl', to: 'ffl', mapping: Mapped("ffl") }, - Range { from: 'ſt', to: 'st', mapping: Mapped("st") }, - Range { from: '﬇', to: '﬒', mapping: Disallowed }, - Range { from: 'ﬓ', to: 'ﬓ', mapping: Mapped("մն") }, - Range { from: 'ﬔ', to: 'ﬔ', mapping: Mapped("մե") }, - Range { from: 'ﬕ', to: 'ﬕ', mapping: Mapped("մի") }, - Range { from: 'ﬖ', to: 'ﬖ', mapping: Mapped("վն") }, - Range { from: 'ﬗ', to: 'ﬗ', mapping: Mapped("մխ") }, - Range { from: '﬘', to: '﬜', mapping: Disallowed }, - Range { from: 'יִ', to: 'יִ', mapping: Mapped("יִ") }, - Range { from: 'ﬞ', to: 'ﬞ', mapping: Valid }, - Range { from: 'ײַ', to: 'ײַ', mapping: Mapped("ײַ") }, - Range { from: 'ﬠ', to: 'ﬠ', mapping: Mapped("ע") }, - Range { from: 'ﬡ', to: 'ﬡ', mapping: Mapped("א") }, - Range { from: 'ﬢ', to: 'ﬢ', mapping: Mapped("ד") }, - Range { from: 'ﬣ', to: 'ﬣ', mapping: Mapped("ה") }, - Range { from: 'ﬤ', to: 'ﬤ', mapping: Mapped("כ") }, - Range { from: 'ﬥ', to: 'ﬥ', mapping: Mapped("ל") }, - Range { from: 'ﬦ', to: 'ﬦ', mapping: Mapped("ם") }, - Range { from: 'ﬧ', to: 'ﬧ', mapping: Mapped("ר") }, - Range { from: 'ﬨ', to: 'ﬨ', mapping: Mapped("ת") }, - Range { from: '﬩', to: '﬩', mapping: DisallowedStd3Mapped("+") }, - Range { from: 'שׁ', to: 'שׁ', mapping: Mapped("שׁ") }, - Range { from: 'שׂ', to: 'שׂ', mapping: Mapped("שׂ") }, - Range { from: 'שּׁ', to: 'שּׁ', mapping: Mapped("שּׁ") }, - Range { from: 'שּׂ', to: 'שּׂ', mapping: Mapped("שּׂ") }, - Range { from: 'אַ', to: 'אַ', mapping: Mapped("אַ") }, - Range { from: 'אָ', to: 'אָ', mapping: Mapped("אָ") }, - Range { from: 'אּ', to: 'אּ', mapping: Mapped("אּ") }, - Range { from: 'בּ', to: 'בּ', mapping: Mapped("בּ") }, - Range { from: 'גּ', to: 'גּ', mapping: Mapped("גּ") }, - Range { from: 'דּ', to: 'דּ', mapping: Mapped("דּ") }, - Range { from: 'הּ', to: 'הּ', mapping: Mapped("הּ") }, - Range { from: 'וּ', to: 'וּ', mapping: Mapped("וּ") }, - Range { from: 'זּ', to: 'זּ', mapping: Mapped("זּ") }, - Range { from: '﬷', to: '﬷', mapping: Disallowed }, - Range { from: 'טּ', to: 'טּ', mapping: Mapped("טּ") }, - Range { from: 'יּ', to: 'יּ', mapping: Mapped("יּ") }, - Range { from: 'ךּ', to: 'ךּ', mapping: Mapped("ךּ") }, - Range { from: 'כּ', to: 'כּ', mapping: Mapped("כּ") }, - Range { from: 'לּ', to: 'לּ', mapping: Mapped("לּ") }, - Range { from: '﬽', to: '﬽', mapping: Disallowed }, - Range { from: 'מּ', to: 'מּ', mapping: Mapped("מּ") }, - Range { from: '﬿', to: '﬿', mapping: Disallowed }, - Range { from: 'נּ', to: 'נּ', mapping: Mapped("נּ") }, - Range { from: 'סּ', to: 'סּ', mapping: Mapped("סּ") }, - Range { from: '﭂', to: '﭂', mapping: Disallowed }, - Range { from: 'ףּ', to: 'ףּ', mapping: Mapped("ףּ") }, - Range { from: 'פּ', to: 'פּ', mapping: Mapped("פּ") }, - Range { from: '﭅', to: '﭅', mapping: Disallowed }, - Range { from: 'צּ', to: 'צּ', mapping: Mapped("צּ") }, - Range { from: 'קּ', to: 'קּ', mapping: Mapped("קּ") }, - Range { from: 'רּ', to: 'רּ', mapping: Mapped("רּ") }, - Range { from: 'שּ', to: 'שּ', mapping: Mapped("שּ") }, - Range { from: 'תּ', to: 'תּ', mapping: Mapped("תּ") }, - Range { from: 'וֹ', to: 'וֹ', mapping: Mapped("וֹ") }, - Range { from: 'בֿ', to: 'בֿ', mapping: Mapped("בֿ") }, - Range { from: 'כֿ', to: 'כֿ', mapping: Mapped("כֿ") }, - Range { from: 'פֿ', to: 'פֿ', mapping: Mapped("פֿ") }, - Range { from: 'ﭏ', to: 'ﭏ', mapping: Mapped("אל") }, - Range { from: 'ﭐ', to: 'ﭑ', mapping: Mapped("ٱ") }, - Range { from: 'ﭒ', to: 'ﭕ', mapping: Mapped("ٻ") }, - Range { from: 'ﭖ', to: 'ﭙ', mapping: Mapped("پ") }, - Range { from: 'ﭚ', to: 'ﭝ', mapping: Mapped("ڀ") }, - Range { from: 'ﭞ', to: 'ﭡ', mapping: Mapped("ٺ") }, - Range { from: 'ﭢ', to: 'ﭥ', mapping: Mapped("ٿ") }, - Range { from: 'ﭦ', to: 'ﭩ', mapping: Mapped("ٹ") }, - Range { from: 'ﭪ', to: 'ﭭ', mapping: Mapped("ڤ") }, - Range { from: 'ﭮ', to: 'ﭱ', mapping: Mapped("ڦ") }, - Range { from: 'ﭲ', to: 'ﭵ', mapping: Mapped("ڄ") }, - Range { from: 'ﭶ', to: 'ﭹ', mapping: Mapped("ڃ") }, - Range { from: 'ﭺ', to: 'ﭽ', mapping: Mapped("چ") }, - Range { from: 'ﭾ', to: 'ﮁ', mapping: Mapped("ڇ") }, - Range { from: 'ﮂ', to: 'ﮃ', mapping: Mapped("ڍ") }, - Range { from: 'ﮄ', to: 'ﮅ', mapping: Mapped("ڌ") }, - Range { from: 'ﮆ', to: 'ﮇ', mapping: Mapped("ڎ") }, - Range { from: 'ﮈ', to: 'ﮉ', mapping: Mapped("ڈ") }, - Range { from: 'ﮊ', to: 'ﮋ', mapping: Mapped("ژ") }, - Range { from: 'ﮌ', to: 'ﮍ', mapping: Mapped("ڑ") }, - Range { from: 'ﮎ', to: 'ﮑ', mapping: Mapped("ک") }, - Range { from: 'ﮒ', to: 'ﮕ', mapping: Mapped("گ") }, - Range { from: 'ﮖ', to: 'ﮙ', mapping: Mapped("ڳ") }, - Range { from: 'ﮚ', to: 'ﮝ', mapping: Mapped("ڱ") }, - Range { from: 'ﮞ', to: 'ﮟ', mapping: Mapped("ں") }, - Range { from: 'ﮠ', to: 'ﮣ', mapping: Mapped("ڻ") }, - Range { from: 'ﮤ', to: 'ﮥ', mapping: Mapped("ۀ") }, - Range { from: 'ﮦ', to: 'ﮩ', mapping: Mapped("ہ") }, - Range { from: 'ﮪ', to: 'ﮭ', mapping: Mapped("ھ") }, - Range { from: 'ﮮ', to: 'ﮯ', mapping: Mapped("ے") }, - Range { from: 'ﮰ', to: 'ﮱ', mapping: Mapped("ۓ") }, - Range { from: '﮲', to: '﯁', mapping: Valid }, - Range { from: '﯂', to: '﯒', mapping: Disallowed }, - Range { from: 'ﯓ', to: 'ﯖ', mapping: Mapped("ڭ") }, - Range { from: 'ﯗ', to: 'ﯘ', mapping: Mapped("ۇ") }, - Range { from: 'ﯙ', to: 'ﯚ', mapping: Mapped("ۆ") }, - Range { from: 'ﯛ', to: 'ﯜ', mapping: Mapped("ۈ") }, - Range { from: 'ﯝ', to: 'ﯝ', mapping: Mapped("ۇٴ") }, - Range { from: 'ﯞ', to: 'ﯟ', mapping: Mapped("ۋ") }, - Range { from: 'ﯠ', to: 'ﯡ', mapping: Mapped("ۅ") }, - Range { from: 'ﯢ', to: 'ﯣ', mapping: Mapped("ۉ") }, - Range { from: 'ﯤ', to: 'ﯧ', mapping: Mapped("ې") }, - Range { from: 'ﯨ', to: 'ﯩ', mapping: Mapped("ى") }, - Range { from: 'ﯪ', to: 'ﯫ', mapping: Mapped("ئا") }, - Range { from: 'ﯬ', to: 'ﯭ', mapping: Mapped("ئە") }, - Range { from: 'ﯮ', to: 'ﯯ', mapping: Mapped("ئو") }, - Range { from: 'ﯰ', to: 'ﯱ', mapping: Mapped("ئۇ") }, - Range { from: 'ﯲ', to: 'ﯳ', mapping: Mapped("ئۆ") }, - Range { from: 'ﯴ', to: 'ﯵ', mapping: Mapped("ئۈ") }, - Range { from: 'ﯶ', to: 'ﯸ', mapping: Mapped("ئې") }, - Range { from: 'ﯹ', to: 'ﯻ', mapping: Mapped("ئى") }, - Range { from: 'ﯼ', to: 'ﯿ', mapping: Mapped("ی") }, - Range { from: 'ﰀ', to: 'ﰀ', mapping: Mapped("ئج") }, - Range { from: 'ﰁ', to: 'ﰁ', mapping: Mapped("ئح") }, - Range { from: 'ﰂ', to: 'ﰂ', mapping: Mapped("ئم") }, - Range { from: 'ﰃ', to: 'ﰃ', mapping: Mapped("ئى") }, - Range { from: 'ﰄ', to: 'ﰄ', mapping: Mapped("ئي") }, - Range { from: 'ﰅ', to: 'ﰅ', mapping: Mapped("بج") }, - Range { from: 'ﰆ', to: 'ﰆ', mapping: Mapped("بح") }, - Range { from: 'ﰇ', to: 'ﰇ', mapping: Mapped("بخ") }, - Range { from: 'ﰈ', to: 'ﰈ', mapping: Mapped("بم") }, - Range { from: 'ﰉ', to: 'ﰉ', mapping: Mapped("بى") }, - Range { from: 'ﰊ', to: 'ﰊ', mapping: Mapped("بي") }, - Range { from: 'ﰋ', to: 'ﰋ', mapping: Mapped("تج") }, - Range { from: 'ﰌ', to: 'ﰌ', mapping: Mapped("تح") }, - Range { from: 'ﰍ', to: 'ﰍ', mapping: Mapped("تخ") }, - Range { from: 'ﰎ', to: 'ﰎ', mapping: Mapped("تم") }, - Range { from: 'ﰏ', to: 'ﰏ', mapping: Mapped("تى") }, - Range { from: 'ﰐ', to: 'ﰐ', mapping: Mapped("تي") }, - Range { from: 'ﰑ', to: 'ﰑ', mapping: Mapped("ثج") }, - Range { from: 'ﰒ', to: 'ﰒ', mapping: Mapped("ثم") }, - Range { from: 'ﰓ', to: 'ﰓ', mapping: Mapped("ثى") }, - Range { from: 'ﰔ', to: 'ﰔ', mapping: Mapped("ثي") }, - Range { from: 'ﰕ', to: 'ﰕ', mapping: Mapped("جح") }, - Range { from: 'ﰖ', to: 'ﰖ', mapping: Mapped("جم") }, - Range { from: 'ﰗ', to: 'ﰗ', mapping: Mapped("حج") }, - Range { from: 'ﰘ', to: 'ﰘ', mapping: Mapped("حم") }, - Range { from: 'ﰙ', to: 'ﰙ', mapping: Mapped("خج") }, - Range { from: 'ﰚ', to: 'ﰚ', mapping: Mapped("خح") }, - Range { from: 'ﰛ', to: 'ﰛ', mapping: Mapped("خم") }, - Range { from: 'ﰜ', to: 'ﰜ', mapping: Mapped("سج") }, - Range { from: 'ﰝ', to: 'ﰝ', mapping: Mapped("سح") }, - Range { from: 'ﰞ', to: 'ﰞ', mapping: Mapped("سخ") }, - Range { from: 'ﰟ', to: 'ﰟ', mapping: Mapped("سم") }, - Range { from: 'ﰠ', to: 'ﰠ', mapping: Mapped("صح") }, - Range { from: 'ﰡ', to: 'ﰡ', mapping: Mapped("صم") }, - Range { from: 'ﰢ', to: 'ﰢ', mapping: Mapped("ضج") }, - Range { from: 'ﰣ', to: 'ﰣ', mapping: Mapped("ضح") }, - Range { from: 'ﰤ', to: 'ﰤ', mapping: Mapped("ضخ") }, - Range { from: 'ﰥ', to: 'ﰥ', mapping: Mapped("ضم") }, - Range { from: 'ﰦ', to: 'ﰦ', mapping: Mapped("طح") }, - Range { from: 'ﰧ', to: 'ﰧ', mapping: Mapped("طم") }, - Range { from: 'ﰨ', to: 'ﰨ', mapping: Mapped("ظم") }, - Range { from: 'ﰩ', to: 'ﰩ', mapping: Mapped("عج") }, - Range { from: 'ﰪ', to: 'ﰪ', mapping: Mapped("عم") }, - Range { from: 'ﰫ', to: 'ﰫ', mapping: Mapped("غج") }, - Range { from: 'ﰬ', to: 'ﰬ', mapping: Mapped("غم") }, - Range { from: 'ﰭ', to: 'ﰭ', mapping: Mapped("فج") }, - Range { from: 'ﰮ', to: 'ﰮ', mapping: Mapped("فح") }, - Range { from: 'ﰯ', to: 'ﰯ', mapping: Mapped("فخ") }, - Range { from: 'ﰰ', to: 'ﰰ', mapping: Mapped("فم") }, - Range { from: 'ﰱ', to: 'ﰱ', mapping: Mapped("فى") }, - Range { from: 'ﰲ', to: 'ﰲ', mapping: Mapped("في") }, - Range { from: 'ﰳ', to: 'ﰳ', mapping: Mapped("قح") }, - Range { from: 'ﰴ', to: 'ﰴ', mapping: Mapped("قم") }, - Range { from: 'ﰵ', to: 'ﰵ', mapping: Mapped("قى") }, - Range { from: 'ﰶ', to: 'ﰶ', mapping: Mapped("قي") }, - Range { from: 'ﰷ', to: 'ﰷ', mapping: Mapped("كا") }, - Range { from: 'ﰸ', to: 'ﰸ', mapping: Mapped("كج") }, - Range { from: 'ﰹ', to: 'ﰹ', mapping: Mapped("كح") }, - Range { from: 'ﰺ', to: 'ﰺ', mapping: Mapped("كخ") }, - Range { from: 'ﰻ', to: 'ﰻ', mapping: Mapped("كل") }, - Range { from: 'ﰼ', to: 'ﰼ', mapping: Mapped("كم") }, - Range { from: 'ﰽ', to: 'ﰽ', mapping: Mapped("كى") }, - Range { from: 'ﰾ', to: 'ﰾ', mapping: Mapped("كي") }, - Range { from: 'ﰿ', to: 'ﰿ', mapping: Mapped("لج") }, - Range { from: 'ﱀ', to: 'ﱀ', mapping: Mapped("لح") }, - Range { from: 'ﱁ', to: 'ﱁ', mapping: Mapped("لخ") }, - Range { from: 'ﱂ', to: 'ﱂ', mapping: Mapped("لم") }, - Range { from: 'ﱃ', to: 'ﱃ', mapping: Mapped("لى") }, - Range { from: 'ﱄ', to: 'ﱄ', mapping: Mapped("لي") }, - Range { from: 'ﱅ', to: 'ﱅ', mapping: Mapped("مج") }, - Range { from: 'ﱆ', to: 'ﱆ', mapping: Mapped("مح") }, - Range { from: 'ﱇ', to: 'ﱇ', mapping: Mapped("مخ") }, - Range { from: 'ﱈ', to: 'ﱈ', mapping: Mapped("مم") }, - Range { from: 'ﱉ', to: 'ﱉ', mapping: Mapped("مى") }, - Range { from: 'ﱊ', to: 'ﱊ', mapping: Mapped("مي") }, - Range { from: 'ﱋ', to: 'ﱋ', mapping: Mapped("نج") }, - Range { from: 'ﱌ', to: 'ﱌ', mapping: Mapped("نح") }, - Range { from: 'ﱍ', to: 'ﱍ', mapping: Mapped("نخ") }, - Range { from: 'ﱎ', to: 'ﱎ', mapping: Mapped("نم") }, - Range { from: 'ﱏ', to: 'ﱏ', mapping: Mapped("نى") }, - Range { from: 'ﱐ', to: 'ﱐ', mapping: Mapped("ني") }, - Range { from: 'ﱑ', to: 'ﱑ', mapping: Mapped("هج") }, - Range { from: 'ﱒ', to: 'ﱒ', mapping: Mapped("هم") }, - Range { from: 'ﱓ', to: 'ﱓ', mapping: Mapped("هى") }, - Range { from: 'ﱔ', to: 'ﱔ', mapping: Mapped("هي") }, - Range { from: 'ﱕ', to: 'ﱕ', mapping: Mapped("يج") }, - Range { from: 'ﱖ', to: 'ﱖ', mapping: Mapped("يح") }, - Range { from: 'ﱗ', to: 'ﱗ', mapping: Mapped("يخ") }, - Range { from: 'ﱘ', to: 'ﱘ', mapping: Mapped("يم") }, - Range { from: 'ﱙ', to: 'ﱙ', mapping: Mapped("يى") }, - Range { from: 'ﱚ', to: 'ﱚ', mapping: Mapped("يي") }, - Range { from: 'ﱛ', to: 'ﱛ', mapping: Mapped("ذٰ") }, - Range { from: 'ﱜ', to: 'ﱜ', mapping: Mapped("رٰ") }, - Range { from: 'ﱝ', to: 'ﱝ', mapping: Mapped("ىٰ") }, - Range { from: 'ﱞ', to: 'ﱞ', mapping: DisallowedStd3Mapped(" ٌّ") }, - Range { from: 'ﱟ', to: 'ﱟ', mapping: DisallowedStd3Mapped(" ٍّ") }, - Range { from: 'ﱠ', to: 'ﱠ', mapping: DisallowedStd3Mapped(" َّ") }, - Range { from: 'ﱡ', to: 'ﱡ', mapping: DisallowedStd3Mapped(" ُّ") }, - Range { from: 'ﱢ', to: 'ﱢ', mapping: DisallowedStd3Mapped(" ِّ") }, - Range { from: 'ﱣ', to: 'ﱣ', mapping: DisallowedStd3Mapped(" ّٰ") }, - Range { from: 'ﱤ', to: 'ﱤ', mapping: Mapped("ئر") }, - Range { from: 'ﱥ', to: 'ﱥ', mapping: Mapped("ئز") }, - Range { from: 'ﱦ', to: 'ﱦ', mapping: Mapped("ئم") }, - Range { from: 'ﱧ', to: 'ﱧ', mapping: Mapped("ئن") }, - Range { from: 'ﱨ', to: 'ﱨ', mapping: Mapped("ئى") }, - Range { from: 'ﱩ', to: 'ﱩ', mapping: Mapped("ئي") }, - Range { from: 'ﱪ', to: 'ﱪ', mapping: Mapped("بر") }, - Range { from: 'ﱫ', to: 'ﱫ', mapping: Mapped("بز") }, - Range { from: 'ﱬ', to: 'ﱬ', mapping: Mapped("بم") }, - Range { from: 'ﱭ', to: 'ﱭ', mapping: Mapped("بن") }, - Range { from: 'ﱮ', to: 'ﱮ', mapping: Mapped("بى") }, - Range { from: 'ﱯ', to: 'ﱯ', mapping: Mapped("بي") }, - Range { from: 'ﱰ', to: 'ﱰ', mapping: Mapped("تر") }, - Range { from: 'ﱱ', to: 'ﱱ', mapping: Mapped("تز") }, - Range { from: 'ﱲ', to: 'ﱲ', mapping: Mapped("تم") }, - Range { from: 'ﱳ', to: 'ﱳ', mapping: Mapped("تن") }, - Range { from: 'ﱴ', to: 'ﱴ', mapping: Mapped("تى") }, - Range { from: 'ﱵ', to: 'ﱵ', mapping: Mapped("تي") }, - Range { from: 'ﱶ', to: 'ﱶ', mapping: Mapped("ثر") }, - Range { from: 'ﱷ', to: 'ﱷ', mapping: Mapped("ثز") }, - Range { from: 'ﱸ', to: 'ﱸ', mapping: Mapped("ثم") }, - Range { from: 'ﱹ', to: 'ﱹ', mapping: Mapped("ثن") }, - Range { from: 'ﱺ', to: 'ﱺ', mapping: Mapped("ثى") }, - Range { from: 'ﱻ', to: 'ﱻ', mapping: Mapped("ثي") }, - Range { from: 'ﱼ', to: 'ﱼ', mapping: Mapped("فى") }, - Range { from: 'ﱽ', to: 'ﱽ', mapping: Mapped("في") }, - Range { from: 'ﱾ', to: 'ﱾ', mapping: Mapped("قى") }, - Range { from: 'ﱿ', to: 'ﱿ', mapping: Mapped("قي") }, - Range { from: 'ﲀ', to: 'ﲀ', mapping: Mapped("كا") }, - Range { from: 'ﲁ', to: 'ﲁ', mapping: Mapped("كل") }, - Range { from: 'ﲂ', to: 'ﲂ', mapping: Mapped("كم") }, - Range { from: 'ﲃ', to: 'ﲃ', mapping: Mapped("كى") }, - Range { from: 'ﲄ', to: 'ﲄ', mapping: Mapped("كي") }, - Range { from: 'ﲅ', to: 'ﲅ', mapping: Mapped("لم") }, - Range { from: 'ﲆ', to: 'ﲆ', mapping: Mapped("لى") }, - Range { from: 'ﲇ', to: 'ﲇ', mapping: Mapped("لي") }, - Range { from: 'ﲈ', to: 'ﲈ', mapping: Mapped("ما") }, - Range { from: 'ﲉ', to: 'ﲉ', mapping: Mapped("مم") }, - Range { from: 'ﲊ', to: 'ﲊ', mapping: Mapped("نر") }, - Range { from: 'ﲋ', to: 'ﲋ', mapping: Mapped("نز") }, - Range { from: 'ﲌ', to: 'ﲌ', mapping: Mapped("نم") }, - Range { from: 'ﲍ', to: 'ﲍ', mapping: Mapped("نن") }, - Range { from: 'ﲎ', to: 'ﲎ', mapping: Mapped("نى") }, - Range { from: 'ﲏ', to: 'ﲏ', mapping: Mapped("ني") }, - Range { from: 'ﲐ', to: 'ﲐ', mapping: Mapped("ىٰ") }, - Range { from: 'ﲑ', to: 'ﲑ', mapping: Mapped("ير") }, - Range { from: 'ﲒ', to: 'ﲒ', mapping: Mapped("يز") }, - Range { from: 'ﲓ', to: 'ﲓ', mapping: Mapped("يم") }, - Range { from: 'ﲔ', to: 'ﲔ', mapping: Mapped("ين") }, - Range { from: 'ﲕ', to: 'ﲕ', mapping: Mapped("يى") }, - Range { from: 'ﲖ', to: 'ﲖ', mapping: Mapped("يي") }, - Range { from: 'ﲗ', to: 'ﲗ', mapping: Mapped("ئج") }, - Range { from: 'ﲘ', to: 'ﲘ', mapping: Mapped("ئح") }, - Range { from: 'ﲙ', to: 'ﲙ', mapping: Mapped("ئخ") }, - Range { from: 'ﲚ', to: 'ﲚ', mapping: Mapped("ئم") }, - Range { from: 'ﲛ', to: 'ﲛ', mapping: Mapped("ئه") }, - Range { from: 'ﲜ', to: 'ﲜ', mapping: Mapped("بج") }, - Range { from: 'ﲝ', to: 'ﲝ', mapping: Mapped("بح") }, - Range { from: 'ﲞ', to: 'ﲞ', mapping: Mapped("بخ") }, - Range { from: 'ﲟ', to: 'ﲟ', mapping: Mapped("بم") }, - Range { from: 'ﲠ', to: 'ﲠ', mapping: Mapped("به") }, - Range { from: 'ﲡ', to: 'ﲡ', mapping: Mapped("تج") }, - Range { from: 'ﲢ', to: 'ﲢ', mapping: Mapped("تح") }, - Range { from: 'ﲣ', to: 'ﲣ', mapping: Mapped("تخ") }, - Range { from: 'ﲤ', to: 'ﲤ', mapping: Mapped("تم") }, - Range { from: 'ﲥ', to: 'ﲥ', mapping: Mapped("ته") }, - Range { from: 'ﲦ', to: 'ﲦ', mapping: Mapped("ثم") }, - Range { from: 'ﲧ', to: 'ﲧ', mapping: Mapped("جح") }, - Range { from: 'ﲨ', to: 'ﲨ', mapping: Mapped("جم") }, - Range { from: 'ﲩ', to: 'ﲩ', mapping: Mapped("حج") }, - Range { from: 'ﲪ', to: 'ﲪ', mapping: Mapped("حم") }, - Range { from: 'ﲫ', to: 'ﲫ', mapping: Mapped("خج") }, - Range { from: 'ﲬ', to: 'ﲬ', mapping: Mapped("خم") }, - Range { from: 'ﲭ', to: 'ﲭ', mapping: Mapped("سج") }, - Range { from: 'ﲮ', to: 'ﲮ', mapping: Mapped("سح") }, - Range { from: 'ﲯ', to: 'ﲯ', mapping: Mapped("سخ") }, - Range { from: 'ﲰ', to: 'ﲰ', mapping: Mapped("سم") }, - Range { from: 'ﲱ', to: 'ﲱ', mapping: Mapped("صح") }, - Range { from: 'ﲲ', to: 'ﲲ', mapping: Mapped("صخ") }, - Range { from: 'ﲳ', to: 'ﲳ', mapping: Mapped("صم") }, - Range { from: 'ﲴ', to: 'ﲴ', mapping: Mapped("ضج") }, - Range { from: 'ﲵ', to: 'ﲵ', mapping: Mapped("ضح") }, - Range { from: 'ﲶ', to: 'ﲶ', mapping: Mapped("ضخ") }, - Range { from: 'ﲷ', to: 'ﲷ', mapping: Mapped("ضم") }, - Range { from: 'ﲸ', to: 'ﲸ', mapping: Mapped("طح") }, - Range { from: 'ﲹ', to: 'ﲹ', mapping: Mapped("ظم") }, - Range { from: 'ﲺ', to: 'ﲺ', mapping: Mapped("عج") }, - Range { from: 'ﲻ', to: 'ﲻ', mapping: Mapped("عم") }, - Range { from: 'ﲼ', to: 'ﲼ', mapping: Mapped("غج") }, - Range { from: 'ﲽ', to: 'ﲽ', mapping: Mapped("غم") }, - Range { from: 'ﲾ', to: 'ﲾ', mapping: Mapped("فج") }, - Range { from: 'ﲿ', to: 'ﲿ', mapping: Mapped("فح") }, - Range { from: 'ﳀ', to: 'ﳀ', mapping: Mapped("فخ") }, - Range { from: 'ﳁ', to: 'ﳁ', mapping: Mapped("فم") }, - Range { from: 'ﳂ', to: 'ﳂ', mapping: Mapped("قح") }, - Range { from: 'ﳃ', to: 'ﳃ', mapping: Mapped("قم") }, - Range { from: 'ﳄ', to: 'ﳄ', mapping: Mapped("كج") }, - Range { from: 'ﳅ', to: 'ﳅ', mapping: Mapped("كح") }, - Range { from: 'ﳆ', to: 'ﳆ', mapping: Mapped("كخ") }, - Range { from: 'ﳇ', to: 'ﳇ', mapping: Mapped("كل") }, - Range { from: 'ﳈ', to: 'ﳈ', mapping: Mapped("كم") }, - Range { from: 'ﳉ', to: 'ﳉ', mapping: Mapped("لج") }, - Range { from: 'ﳊ', to: 'ﳊ', mapping: Mapped("لح") }, - Range { from: 'ﳋ', to: 'ﳋ', mapping: Mapped("لخ") }, - Range { from: 'ﳌ', to: 'ﳌ', mapping: Mapped("لم") }, - Range { from: 'ﳍ', to: 'ﳍ', mapping: Mapped("له") }, - Range { from: 'ﳎ', to: 'ﳎ', mapping: Mapped("مج") }, - Range { from: 'ﳏ', to: 'ﳏ', mapping: Mapped("مح") }, - Range { from: 'ﳐ', to: 'ﳐ', mapping: Mapped("مخ") }, - Range { from: 'ﳑ', to: 'ﳑ', mapping: Mapped("مم") }, - Range { from: 'ﳒ', to: 'ﳒ', mapping: Mapped("نج") }, - Range { from: 'ﳓ', to: 'ﳓ', mapping: Mapped("نح") }, - Range { from: 'ﳔ', to: 'ﳔ', mapping: Mapped("نخ") }, - Range { from: 'ﳕ', to: 'ﳕ', mapping: Mapped("نم") }, - Range { from: 'ﳖ', to: 'ﳖ', mapping: Mapped("نه") }, - Range { from: 'ﳗ', to: 'ﳗ', mapping: Mapped("هج") }, - Range { from: 'ﳘ', to: 'ﳘ', mapping: Mapped("هم") }, - Range { from: 'ﳙ', to: 'ﳙ', mapping: Mapped("هٰ") }, - Range { from: 'ﳚ', to: 'ﳚ', mapping: Mapped("يج") }, - Range { from: 'ﳛ', to: 'ﳛ', mapping: Mapped("يح") }, - Range { from: 'ﳜ', to: 'ﳜ', mapping: Mapped("يخ") }, - Range { from: 'ﳝ', to: 'ﳝ', mapping: Mapped("يم") }, - Range { from: 'ﳞ', to: 'ﳞ', mapping: Mapped("يه") }, - Range { from: 'ﳟ', to: 'ﳟ', mapping: Mapped("ئم") }, - Range { from: 'ﳠ', to: 'ﳠ', mapping: Mapped("ئه") }, - Range { from: 'ﳡ', to: 'ﳡ', mapping: Mapped("بم") }, - Range { from: 'ﳢ', to: 'ﳢ', mapping: Mapped("به") }, - Range { from: 'ﳣ', to: 'ﳣ', mapping: Mapped("تم") }, - Range { from: 'ﳤ', to: 'ﳤ', mapping: Mapped("ته") }, - Range { from: 'ﳥ', to: 'ﳥ', mapping: Mapped("ثم") }, - Range { from: 'ﳦ', to: 'ﳦ', mapping: Mapped("ثه") }, - Range { from: 'ﳧ', to: 'ﳧ', mapping: Mapped("سم") }, - Range { from: 'ﳨ', to: 'ﳨ', mapping: Mapped("سه") }, - Range { from: 'ﳩ', to: 'ﳩ', mapping: Mapped("شم") }, - Range { from: 'ﳪ', to: 'ﳪ', mapping: Mapped("شه") }, - Range { from: 'ﳫ', to: 'ﳫ', mapping: Mapped("كل") }, - Range { from: 'ﳬ', to: 'ﳬ', mapping: Mapped("كم") }, - Range { from: 'ﳭ', to: 'ﳭ', mapping: Mapped("لم") }, - Range { from: 'ﳮ', to: 'ﳮ', mapping: Mapped("نم") }, - Range { from: 'ﳯ', to: 'ﳯ', mapping: Mapped("نه") }, - Range { from: 'ﳰ', to: 'ﳰ', mapping: Mapped("يم") }, - Range { from: 'ﳱ', to: 'ﳱ', mapping: Mapped("يه") }, - Range { from: 'ﳲ', to: 'ﳲ', mapping: Mapped("ـَّ") }, - Range { from: 'ﳳ', to: 'ﳳ', mapping: Mapped("ـُّ") }, - Range { from: 'ﳴ', to: 'ﳴ', mapping: Mapped("ـِّ") }, - Range { from: 'ﳵ', to: 'ﳵ', mapping: Mapped("طى") }, - Range { from: 'ﳶ', to: 'ﳶ', mapping: Mapped("طي") }, - Range { from: 'ﳷ', to: 'ﳷ', mapping: Mapped("عى") }, - Range { from: 'ﳸ', to: 'ﳸ', mapping: Mapped("عي") }, - Range { from: 'ﳹ', to: 'ﳹ', mapping: Mapped("غى") }, - Range { from: 'ﳺ', to: 'ﳺ', mapping: Mapped("غي") }, - Range { from: 'ﳻ', to: 'ﳻ', mapping: Mapped("سى") }, - Range { from: 'ﳼ', to: 'ﳼ', mapping: Mapped("سي") }, - Range { from: 'ﳽ', to: 'ﳽ', mapping: Mapped("شى") }, - Range { from: 'ﳾ', to: 'ﳾ', mapping: Mapped("شي") }, - Range { from: 'ﳿ', to: 'ﳿ', mapping: Mapped("حى") }, - Range { from: 'ﴀ', to: 'ﴀ', mapping: Mapped("حي") }, - Range { from: 'ﴁ', to: 'ﴁ', mapping: Mapped("جى") }, - Range { from: 'ﴂ', to: 'ﴂ', mapping: Mapped("جي") }, - Range { from: 'ﴃ', to: 'ﴃ', mapping: Mapped("خى") }, - Range { from: 'ﴄ', to: 'ﴄ', mapping: Mapped("خي") }, - Range { from: 'ﴅ', to: 'ﴅ', mapping: Mapped("صى") }, - Range { from: 'ﴆ', to: 'ﴆ', mapping: Mapped("صي") }, - Range { from: 'ﴇ', to: 'ﴇ', mapping: Mapped("ضى") }, - Range { from: 'ﴈ', to: 'ﴈ', mapping: Mapped("ضي") }, - Range { from: 'ﴉ', to: 'ﴉ', mapping: Mapped("شج") }, - Range { from: 'ﴊ', to: 'ﴊ', mapping: Mapped("شح") }, - Range { from: 'ﴋ', to: 'ﴋ', mapping: Mapped("شخ") }, - Range { from: 'ﴌ', to: 'ﴌ', mapping: Mapped("شم") }, - Range { from: 'ﴍ', to: 'ﴍ', mapping: Mapped("شر") }, - Range { from: 'ﴎ', to: 'ﴎ', mapping: Mapped("سر") }, - Range { from: 'ﴏ', to: 'ﴏ', mapping: Mapped("صر") }, - Range { from: 'ﴐ', to: 'ﴐ', mapping: Mapped("ضر") }, - Range { from: 'ﴑ', to: 'ﴑ', mapping: Mapped("طى") }, - Range { from: 'ﴒ', to: 'ﴒ', mapping: Mapped("طي") }, - Range { from: 'ﴓ', to: 'ﴓ', mapping: Mapped("عى") }, - Range { from: 'ﴔ', to: 'ﴔ', mapping: Mapped("عي") }, - Range { from: 'ﴕ', to: 'ﴕ', mapping: Mapped("غى") }, - Range { from: 'ﴖ', to: 'ﴖ', mapping: Mapped("غي") }, - Range { from: 'ﴗ', to: 'ﴗ', mapping: Mapped("سى") }, - Range { from: 'ﴘ', to: 'ﴘ', mapping: Mapped("سي") }, - Range { from: 'ﴙ', to: 'ﴙ', mapping: Mapped("شى") }, - Range { from: 'ﴚ', to: 'ﴚ', mapping: Mapped("شي") }, - Range { from: 'ﴛ', to: 'ﴛ', mapping: Mapped("حى") }, - Range { from: 'ﴜ', to: 'ﴜ', mapping: Mapped("حي") }, - Range { from: 'ﴝ', to: 'ﴝ', mapping: Mapped("جى") }, - Range { from: 'ﴞ', to: 'ﴞ', mapping: Mapped("جي") }, - Range { from: 'ﴟ', to: 'ﴟ', mapping: Mapped("خى") }, - Range { from: 'ﴠ', to: 'ﴠ', mapping: Mapped("خي") }, - Range { from: 'ﴡ', to: 'ﴡ', mapping: Mapped("صى") }, - Range { from: 'ﴢ', to: 'ﴢ', mapping: Mapped("صي") }, - Range { from: 'ﴣ', to: 'ﴣ', mapping: Mapped("ضى") }, - Range { from: 'ﴤ', to: 'ﴤ', mapping: Mapped("ضي") }, - Range { from: 'ﴥ', to: 'ﴥ', mapping: Mapped("شج") }, - Range { from: 'ﴦ', to: 'ﴦ', mapping: Mapped("شح") }, - Range { from: 'ﴧ', to: 'ﴧ', mapping: Mapped("شخ") }, - Range { from: 'ﴨ', to: 'ﴨ', mapping: Mapped("شم") }, - Range { from: 'ﴩ', to: 'ﴩ', mapping: Mapped("شر") }, - Range { from: 'ﴪ', to: 'ﴪ', mapping: Mapped("سر") }, - Range { from: 'ﴫ', to: 'ﴫ', mapping: Mapped("صر") }, - Range { from: 'ﴬ', to: 'ﴬ', mapping: Mapped("ضر") }, - Range { from: 'ﴭ', to: 'ﴭ', mapping: Mapped("شج") }, - Range { from: 'ﴮ', to: 'ﴮ', mapping: Mapped("شح") }, - Range { from: 'ﴯ', to: 'ﴯ', mapping: Mapped("شخ") }, - Range { from: 'ﴰ', to: 'ﴰ', mapping: Mapped("شم") }, - Range { from: 'ﴱ', to: 'ﴱ', mapping: Mapped("سه") }, - Range { from: 'ﴲ', to: 'ﴲ', mapping: Mapped("شه") }, - Range { from: 'ﴳ', to: 'ﴳ', mapping: Mapped("طم") }, - Range { from: 'ﴴ', to: 'ﴴ', mapping: Mapped("سج") }, - Range { from: 'ﴵ', to: 'ﴵ', mapping: Mapped("سح") }, - Range { from: 'ﴶ', to: 'ﴶ', mapping: Mapped("سخ") }, - Range { from: 'ﴷ', to: 'ﴷ', mapping: Mapped("شج") }, - Range { from: 'ﴸ', to: 'ﴸ', mapping: Mapped("شح") }, - Range { from: 'ﴹ', to: 'ﴹ', mapping: Mapped("شخ") }, - Range { from: 'ﴺ', to: 'ﴺ', mapping: Mapped("طم") }, - Range { from: 'ﴻ', to: 'ﴻ', mapping: Mapped("ظم") }, - Range { from: 'ﴼ', to: 'ﴽ', mapping: Mapped("اً") }, - Range { from: '﴾', to: '﴿', mapping: Valid }, - Range { from: '﵀', to: '﵏', mapping: Disallowed }, - Range { from: 'ﵐ', to: 'ﵐ', mapping: Mapped("تجم") }, - Range { from: 'ﵑ', to: 'ﵒ', mapping: Mapped("تحج") }, - Range { from: 'ﵓ', to: 'ﵓ', mapping: Mapped("تحم") }, - Range { from: 'ﵔ', to: 'ﵔ', mapping: Mapped("تخم") }, - Range { from: 'ﵕ', to: 'ﵕ', mapping: Mapped("تمج") }, - Range { from: 'ﵖ', to: 'ﵖ', mapping: Mapped("تمح") }, - Range { from: 'ﵗ', to: 'ﵗ', mapping: Mapped("تمخ") }, - Range { from: 'ﵘ', to: 'ﵙ', mapping: Mapped("جمح") }, - Range { from: 'ﵚ', to: 'ﵚ', mapping: Mapped("حمي") }, - Range { from: 'ﵛ', to: 'ﵛ', mapping: Mapped("حمى") }, - Range { from: 'ﵜ', to: 'ﵜ', mapping: Mapped("سحج") }, - Range { from: 'ﵝ', to: 'ﵝ', mapping: Mapped("سجح") }, - Range { from: 'ﵞ', to: 'ﵞ', mapping: Mapped("سجى") }, - Range { from: 'ﵟ', to: 'ﵠ', mapping: Mapped("سمح") }, - Range { from: 'ﵡ', to: 'ﵡ', mapping: Mapped("سمج") }, - Range { from: 'ﵢ', to: 'ﵣ', mapping: Mapped("سمم") }, - Range { from: 'ﵤ', to: 'ﵥ', mapping: Mapped("صحح") }, - Range { from: 'ﵦ', to: 'ﵦ', mapping: Mapped("صمم") }, - Range { from: 'ﵧ', to: 'ﵨ', mapping: Mapped("شحم") }, - Range { from: 'ﵩ', to: 'ﵩ', mapping: Mapped("شجي") }, - Range { from: 'ﵪ', to: 'ﵫ', mapping: Mapped("شمخ") }, - Range { from: 'ﵬ', to: 'ﵭ', mapping: Mapped("شمم") }, - Range { from: 'ﵮ', to: 'ﵮ', mapping: Mapped("ضحى") }, - Range { from: 'ﵯ', to: 'ﵰ', mapping: Mapped("ضخم") }, - Range { from: 'ﵱ', to: 'ﵲ', mapping: Mapped("طمح") }, - Range { from: 'ﵳ', to: 'ﵳ', mapping: Mapped("طمم") }, - Range { from: 'ﵴ', to: 'ﵴ', mapping: Mapped("طمي") }, - Range { from: 'ﵵ', to: 'ﵵ', mapping: Mapped("عجم") }, - Range { from: 'ﵶ', to: 'ﵷ', mapping: Mapped("عمم") }, - Range { from: 'ﵸ', to: 'ﵸ', mapping: Mapped("عمى") }, - Range { from: 'ﵹ', to: 'ﵹ', mapping: Mapped("غمم") }, - Range { from: 'ﵺ', to: 'ﵺ', mapping: Mapped("غمي") }, - Range { from: 'ﵻ', to: 'ﵻ', mapping: Mapped("غمى") }, - Range { from: 'ﵼ', to: 'ﵽ', mapping: Mapped("فخم") }, - Range { from: 'ﵾ', to: 'ﵾ', mapping: Mapped("قمح") }, - Range { from: 'ﵿ', to: 'ﵿ', mapping: Mapped("قمم") }, - Range { from: 'ﶀ', to: 'ﶀ', mapping: Mapped("لحم") }, - Range { from: 'ﶁ', to: 'ﶁ', mapping: Mapped("لحي") }, - Range { from: 'ﶂ', to: 'ﶂ', mapping: Mapped("لحى") }, - Range { from: 'ﶃ', to: 'ﶄ', mapping: Mapped("لجج") }, - Range { from: 'ﶅ', to: 'ﶆ', mapping: Mapped("لخم") }, - Range { from: 'ﶇ', to: 'ﶈ', mapping: Mapped("لمح") }, - Range { from: 'ﶉ', to: 'ﶉ', mapping: Mapped("محج") }, - Range { from: 'ﶊ', to: 'ﶊ', mapping: Mapped("محم") }, - Range { from: 'ﶋ', to: 'ﶋ', mapping: Mapped("محي") }, - Range { from: 'ﶌ', to: 'ﶌ', mapping: Mapped("مجح") }, - Range { from: 'ﶍ', to: 'ﶍ', mapping: Mapped("مجم") }, - Range { from: 'ﶎ', to: 'ﶎ', mapping: Mapped("مخج") }, - Range { from: 'ﶏ', to: 'ﶏ', mapping: Mapped("مخم") }, - Range { from: '﶐', to: '﶑', mapping: Disallowed }, - Range { from: 'ﶒ', to: 'ﶒ', mapping: Mapped("مجخ") }, - Range { from: 'ﶓ', to: 'ﶓ', mapping: Mapped("همج") }, - Range { from: 'ﶔ', to: 'ﶔ', mapping: Mapped("همم") }, - Range { from: 'ﶕ', to: 'ﶕ', mapping: Mapped("نحم") }, - Range { from: 'ﶖ', to: 'ﶖ', mapping: Mapped("نحى") }, - Range { from: 'ﶗ', to: 'ﶘ', mapping: Mapped("نجم") }, - Range { from: 'ﶙ', to: 'ﶙ', mapping: Mapped("نجى") }, - Range { from: 'ﶚ', to: 'ﶚ', mapping: Mapped("نمي") }, - Range { from: 'ﶛ', to: 'ﶛ', mapping: Mapped("نمى") }, - Range { from: 'ﶜ', to: 'ﶝ', mapping: Mapped("يمم") }, - Range { from: 'ﶞ', to: 'ﶞ', mapping: Mapped("بخي") }, - Range { from: 'ﶟ', to: 'ﶟ', mapping: Mapped("تجي") }, - Range { from: 'ﶠ', to: 'ﶠ', mapping: Mapped("تجى") }, - Range { from: 'ﶡ', to: 'ﶡ', mapping: Mapped("تخي") }, - Range { from: 'ﶢ', to: 'ﶢ', mapping: Mapped("تخى") }, - Range { from: 'ﶣ', to: 'ﶣ', mapping: Mapped("تمي") }, - Range { from: 'ﶤ', to: 'ﶤ', mapping: Mapped("تمى") }, - Range { from: 'ﶥ', to: 'ﶥ', mapping: Mapped("جمي") }, - Range { from: 'ﶦ', to: 'ﶦ', mapping: Mapped("جحى") }, - Range { from: 'ﶧ', to: 'ﶧ', mapping: Mapped("جمى") }, - Range { from: 'ﶨ', to: 'ﶨ', mapping: Mapped("سخى") }, - Range { from: 'ﶩ', to: 'ﶩ', mapping: Mapped("صحي") }, - Range { from: 'ﶪ', to: 'ﶪ', mapping: Mapped("شحي") }, - Range { from: 'ﶫ', to: 'ﶫ', mapping: Mapped("ضحي") }, - Range { from: 'ﶬ', to: 'ﶬ', mapping: Mapped("لجي") }, - Range { from: 'ﶭ', to: 'ﶭ', mapping: Mapped("لمي") }, - Range { from: 'ﶮ', to: 'ﶮ', mapping: Mapped("يحي") }, - Range { from: 'ﶯ', to: 'ﶯ', mapping: Mapped("يجي") }, - Range { from: 'ﶰ', to: 'ﶰ', mapping: Mapped("يمي") }, - Range { from: 'ﶱ', to: 'ﶱ', mapping: Mapped("ممي") }, - Range { from: 'ﶲ', to: 'ﶲ', mapping: Mapped("قمي") }, - Range { from: 'ﶳ', to: 'ﶳ', mapping: Mapped("نحي") }, - Range { from: 'ﶴ', to: 'ﶴ', mapping: Mapped("قمح") }, - Range { from: 'ﶵ', to: 'ﶵ', mapping: Mapped("لحم") }, - Range { from: 'ﶶ', to: 'ﶶ', mapping: Mapped("عمي") }, - Range { from: 'ﶷ', to: 'ﶷ', mapping: Mapped("كمي") }, - Range { from: 'ﶸ', to: 'ﶸ', mapping: Mapped("نجح") }, - Range { from: 'ﶹ', to: 'ﶹ', mapping: Mapped("مخي") }, - Range { from: 'ﶺ', to: 'ﶺ', mapping: Mapped("لجم") }, - Range { from: 'ﶻ', to: 'ﶻ', mapping: Mapped("كمم") }, - Range { from: 'ﶼ', to: 'ﶼ', mapping: Mapped("لجم") }, - Range { from: 'ﶽ', to: 'ﶽ', mapping: Mapped("نجح") }, - Range { from: 'ﶾ', to: 'ﶾ', mapping: Mapped("جحي") }, - Range { from: 'ﶿ', to: 'ﶿ', mapping: Mapped("حجي") }, - Range { from: 'ﷀ', to: 'ﷀ', mapping: Mapped("مجي") }, - Range { from: 'ﷁ', to: 'ﷁ', mapping: Mapped("فمي") }, - Range { from: 'ﷂ', to: 'ﷂ', mapping: Mapped("بحي") }, - Range { from: 'ﷃ', to: 'ﷃ', mapping: Mapped("كمم") }, - Range { from: 'ﷄ', to: 'ﷄ', mapping: Mapped("عجم") }, - Range { from: 'ﷅ', to: 'ﷅ', mapping: Mapped("صمم") }, - Range { from: 'ﷆ', to: 'ﷆ', mapping: Mapped("سخي") }, - Range { from: 'ﷇ', to: 'ﷇ', mapping: Mapped("نجي") }, - Range { from: '﷈', to: '﷏', mapping: Disallowed }, - Range { from: '﷐', to: '﷯', mapping: Disallowed }, - Range { from: 'ﷰ', to: 'ﷰ', mapping: Mapped("صلے") }, - Range { from: 'ﷱ', to: 'ﷱ', mapping: Mapped("قلے") }, - Range { from: 'ﷲ', to: 'ﷲ', mapping: Mapped("الله") }, - Range { from: 'ﷳ', to: 'ﷳ', mapping: Mapped("اكبر") }, - Range { from: 'ﷴ', to: 'ﷴ', mapping: Mapped("محمد") }, - Range { from: 'ﷵ', to: 'ﷵ', mapping: Mapped("صلعم") }, - Range { from: 'ﷶ', to: 'ﷶ', mapping: Mapped("رسول") }, - Range { from: 'ﷷ', to: 'ﷷ', mapping: Mapped("عليه") }, - Range { from: 'ﷸ', to: 'ﷸ', mapping: Mapped("وسلم") }, - Range { from: 'ﷹ', to: 'ﷹ', mapping: Mapped("صلى") }, - Range { from: 'ﷺ', to: 'ﷺ', mapping: DisallowedStd3Mapped("صلى الله عليه وسلم") }, - Range { from: 'ﷻ', to: 'ﷻ', mapping: DisallowedStd3Mapped("جل جلاله") }, - Range { from: '﷼', to: '﷼', mapping: Mapped("ریال") }, - Range { from: '﷽', to: '﷽', mapping: Valid }, - Range { from: '﷾', to: '﷿', mapping: Disallowed }, - Range { from: '︀', to: '️', mapping: Ignored }, - Range { from: '︐', to: '︐', mapping: DisallowedStd3Mapped(",") }, - Range { from: '︑', to: '︑', mapping: Mapped("、") }, - Range { from: '︒', to: '︒', mapping: Disallowed }, - Range { from: '︓', to: '︓', mapping: DisallowedStd3Mapped(":") }, - Range { from: '︔', to: '︔', mapping: DisallowedStd3Mapped(";") }, - Range { from: '︕', to: '︕', mapping: DisallowedStd3Mapped("!") }, - Range { from: '︖', to: '︖', mapping: DisallowedStd3Mapped("?") }, - Range { from: '︗', to: '︗', mapping: Mapped("〖") }, - Range { from: '︘', to: '︘', mapping: Mapped("〗") }, - Range { from: '︙', to: '︙', mapping: Disallowed }, - Range { from: '︚', to: '︟', mapping: Disallowed }, - Range { from: '︠', to: '︣', mapping: Valid }, - Range { from: '︤', to: '︦', mapping: Valid }, - Range { from: '︧', to: '︭', mapping: Valid }, - Range { from: '︮', to: '︯', mapping: Valid }, - Range { from: '︰', to: '︰', mapping: Disallowed }, - Range { from: '︱', to: '︱', mapping: Mapped("—") }, - Range { from: '︲', to: '︲', mapping: Mapped("–") }, - Range { from: '︳', to: '︴', mapping: DisallowedStd3Mapped("_") }, - Range { from: '︵', to: '︵', mapping: DisallowedStd3Mapped("(") }, - Range { from: '︶', to: '︶', mapping: DisallowedStd3Mapped(")") }, - Range { from: '︷', to: '︷', mapping: DisallowedStd3Mapped("{") }, - Range { from: '︸', to: '︸', mapping: DisallowedStd3Mapped("}") }, - Range { from: '︹', to: '︹', mapping: Mapped("〔") }, - Range { from: '︺', to: '︺', mapping: Mapped("〕") }, - Range { from: '︻', to: '︻', mapping: Mapped("【") }, - Range { from: '︼', to: '︼', mapping: Mapped("】") }, - Range { from: '︽', to: '︽', mapping: Mapped("《") }, - Range { from: '︾', to: '︾', mapping: Mapped("》") }, - Range { from: '︿', to: '︿', mapping: Mapped("〈") }, - Range { from: '﹀', to: '﹀', mapping: Mapped("〉") }, - Range { from: '﹁', to: '﹁', mapping: Mapped("「") }, - Range { from: '﹂', to: '﹂', mapping: Mapped("」") }, - Range { from: '﹃', to: '﹃', mapping: Mapped("『") }, - Range { from: '﹄', to: '﹄', mapping: Mapped("』") }, - Range { from: '﹅', to: '﹆', mapping: Valid }, - Range { from: '﹇', to: '﹇', mapping: DisallowedStd3Mapped("[") }, - Range { from: '﹈', to: '﹈', mapping: DisallowedStd3Mapped("]") }, - Range { from: '﹉', to: '﹌', mapping: DisallowedStd3Mapped(" ̅") }, - Range { from: '﹍', to: '﹏', mapping: DisallowedStd3Mapped("_") }, - Range { from: '﹐', to: '﹐', mapping: DisallowedStd3Mapped(",") }, - Range { from: '﹑', to: '﹑', mapping: Mapped("、") }, - Range { from: '﹒', to: '﹒', mapping: Disallowed }, - Range { from: '﹓', to: '﹓', mapping: Disallowed }, - Range { from: '﹔', to: '﹔', mapping: DisallowedStd3Mapped(";") }, - Range { from: '﹕', to: '﹕', mapping: DisallowedStd3Mapped(":") }, - Range { from: '﹖', to: '﹖', mapping: DisallowedStd3Mapped("?") }, - Range { from: '﹗', to: '﹗', mapping: DisallowedStd3Mapped("!") }, - Range { from: '﹘', to: '﹘', mapping: Mapped("—") }, - Range { from: '﹙', to: '﹙', mapping: DisallowedStd3Mapped("(") }, - Range { from: '﹚', to: '﹚', mapping: DisallowedStd3Mapped(")") }, - Range { from: '﹛', to: '﹛', mapping: DisallowedStd3Mapped("{") }, - Range { from: '﹜', to: '﹜', mapping: DisallowedStd3Mapped("}") }, - Range { from: '﹝', to: '﹝', mapping: Mapped("〔") }, - Range { from: '﹞', to: '﹞', mapping: Mapped("〕") }, - Range { from: '﹟', to: '﹟', mapping: DisallowedStd3Mapped("#") }, - Range { from: '﹠', to: '﹠', mapping: DisallowedStd3Mapped("&") }, - Range { from: '﹡', to: '﹡', mapping: DisallowedStd3Mapped("*") }, - Range { from: '﹢', to: '﹢', mapping: DisallowedStd3Mapped("+") }, - Range { from: '﹣', to: '﹣', mapping: Mapped("-") }, - Range { from: '﹤', to: '﹤', mapping: DisallowedStd3Mapped("<") }, - Range { from: '﹥', to: '﹥', mapping: DisallowedStd3Mapped(">") }, - Range { from: '﹦', to: '﹦', mapping: DisallowedStd3Mapped("=") }, - Range { from: '﹧', to: '﹧', mapping: Disallowed }, - Range { from: '﹨', to: '﹨', mapping: DisallowedStd3Mapped("\\") }, - Range { from: '﹩', to: '﹩', mapping: DisallowedStd3Mapped("$") }, - Range { from: '﹪', to: '﹪', mapping: DisallowedStd3Mapped("%") }, - Range { from: '﹫', to: '﹫', mapping: DisallowedStd3Mapped("@") }, - Range { from: '﹬', to: '﹯', mapping: Disallowed }, - Range { from: 'ﹰ', to: 'ﹰ', mapping: DisallowedStd3Mapped(" ً") }, - Range { from: 'ﹱ', to: 'ﹱ', mapping: Mapped("ـً") }, - Range { from: 'ﹲ', to: 'ﹲ', mapping: DisallowedStd3Mapped(" ٌ") }, - Range { from: 'ﹳ', to: 'ﹳ', mapping: Valid }, - Range { from: 'ﹴ', to: 'ﹴ', mapping: DisallowedStd3Mapped(" ٍ") }, - Range { from: '﹵', to: '﹵', mapping: Disallowed }, - Range { from: 'ﹶ', to: 'ﹶ', mapping: DisallowedStd3Mapped(" َ") }, - Range { from: 'ﹷ', to: 'ﹷ', mapping: Mapped("ـَ") }, - Range { from: 'ﹸ', to: 'ﹸ', mapping: DisallowedStd3Mapped(" ُ") }, - Range { from: 'ﹹ', to: 'ﹹ', mapping: Mapped("ـُ") }, - Range { from: 'ﹺ', to: 'ﹺ', mapping: DisallowedStd3Mapped(" ِ") }, - Range { from: 'ﹻ', to: 'ﹻ', mapping: Mapped("ـِ") }, - Range { from: 'ﹼ', to: 'ﹼ', mapping: DisallowedStd3Mapped(" ّ") }, - Range { from: 'ﹽ', to: 'ﹽ', mapping: Mapped("ـّ") }, - Range { from: 'ﹾ', to: 'ﹾ', mapping: DisallowedStd3Mapped(" ْ") }, - Range { from: 'ﹿ', to: 'ﹿ', mapping: Mapped("ـْ") }, - Range { from: 'ﺀ', to: 'ﺀ', mapping: Mapped("ء") }, - Range { from: 'ﺁ', to: 'ﺂ', mapping: Mapped("آ") }, - Range { from: 'ﺃ', to: 'ﺄ', mapping: Mapped("أ") }, - Range { from: 'ﺅ', to: 'ﺆ', mapping: Mapped("ؤ") }, - Range { from: 'ﺇ', to: 'ﺈ', mapping: Mapped("إ") }, - Range { from: 'ﺉ', to: 'ﺌ', mapping: Mapped("ئ") }, - Range { from: 'ﺍ', to: 'ﺎ', mapping: Mapped("ا") }, - Range { from: 'ﺏ', to: 'ﺒ', mapping: Mapped("ب") }, - Range { from: 'ﺓ', to: 'ﺔ', mapping: Mapped("ة") }, - Range { from: 'ﺕ', to: 'ﺘ', mapping: Mapped("ت") }, - Range { from: 'ﺙ', to: 'ﺜ', mapping: Mapped("ث") }, - Range { from: 'ﺝ', to: 'ﺠ', mapping: Mapped("ج") }, - Range { from: 'ﺡ', to: 'ﺤ', mapping: Mapped("ح") }, - Range { from: 'ﺥ', to: 'ﺨ', mapping: Mapped("خ") }, - Range { from: 'ﺩ', to: 'ﺪ', mapping: Mapped("د") }, - Range { from: 'ﺫ', to: 'ﺬ', mapping: Mapped("ذ") }, - Range { from: 'ﺭ', to: 'ﺮ', mapping: Mapped("ر") }, - Range { from: 'ﺯ', to: 'ﺰ', mapping: Mapped("ز") }, - Range { from: 'ﺱ', to: 'ﺴ', mapping: Mapped("س") }, - Range { from: 'ﺵ', to: 'ﺸ', mapping: Mapped("ش") }, - Range { from: 'ﺹ', to: 'ﺼ', mapping: Mapped("ص") }, - Range { from: 'ﺽ', to: 'ﻀ', mapping: Mapped("ض") }, - Range { from: 'ﻁ', to: 'ﻄ', mapping: Mapped("ط") }, - Range { from: 'ﻅ', to: 'ﻈ', mapping: Mapped("ظ") }, - Range { from: 'ﻉ', to: 'ﻌ', mapping: Mapped("ع") }, - Range { from: 'ﻍ', to: 'ﻐ', mapping: Mapped("غ") }, - Range { from: 'ﻑ', to: 'ﻔ', mapping: Mapped("ف") }, - Range { from: 'ﻕ', to: 'ﻘ', mapping: Mapped("ق") }, - Range { from: 'ﻙ', to: 'ﻜ', mapping: Mapped("ك") }, - Range { from: 'ﻝ', to: 'ﻠ', mapping: Mapped("ل") }, - Range { from: 'ﻡ', to: 'ﻤ', mapping: Mapped("م") }, - Range { from: 'ﻥ', to: 'ﻨ', mapping: Mapped("ن") }, - Range { from: 'ﻩ', to: 'ﻬ', mapping: Mapped("ه") }, - Range { from: 'ﻭ', to: 'ﻮ', mapping: Mapped("و") }, - Range { from: 'ﻯ', to: 'ﻰ', mapping: Mapped("ى") }, - Range { from: 'ﻱ', to: 'ﻴ', mapping: Mapped("ي") }, - Range { from: 'ﻵ', to: 'ﻶ', mapping: Mapped("لآ") }, - Range { from: 'ﻷ', to: 'ﻸ', mapping: Mapped("لأ") }, - Range { from: 'ﻹ', to: 'ﻺ', mapping: Mapped("لإ") }, - Range { from: 'ﻻ', to: 'ﻼ', mapping: Mapped("لا") }, - Range { from: '﻽', to: '﻾', mapping: Disallowed }, - Range { from: '', to: '', mapping: Ignored }, - Range { from: '＀', to: '＀', mapping: Disallowed }, - Range { from: '!', to: '!', mapping: DisallowedStd3Mapped("!") }, - Range { from: '"', to: '"', mapping: DisallowedStd3Mapped("\"") }, - Range { from: '#', to: '#', mapping: DisallowedStd3Mapped("#") }, - Range { from: '$', to: '$', mapping: DisallowedStd3Mapped("$") }, - Range { from: '%', to: '%', mapping: DisallowedStd3Mapped("%") }, - Range { from: '&', to: '&', mapping: DisallowedStd3Mapped("&") }, - Range { from: ''', to: ''', mapping: DisallowedStd3Mapped("'") }, - Range { from: '(', to: '(', mapping: DisallowedStd3Mapped("(") }, - Range { from: ')', to: ')', mapping: DisallowedStd3Mapped(")") }, - Range { from: '*', to: '*', mapping: DisallowedStd3Mapped("*") }, - Range { from: '+', to: '+', mapping: DisallowedStd3Mapped("+") }, - Range { from: ',', to: ',', mapping: DisallowedStd3Mapped(",") }, - Range { from: '-', to: '-', mapping: Mapped("-") }, - Range { from: '.', to: '.', mapping: Mapped(".") }, - Range { from: '/', to: '/', mapping: DisallowedStd3Mapped("/") }, - Range { from: '0', to: '0', mapping: Mapped("0") }, - Range { from: '1', to: '1', mapping: Mapped("1") }, - Range { from: '2', to: '2', mapping: Mapped("2") }, - Range { from: '3', to: '3', mapping: Mapped("3") }, - Range { from: '4', to: '4', mapping: Mapped("4") }, - Range { from: '5', to: '5', mapping: Mapped("5") }, - Range { from: '6', to: '6', mapping: Mapped("6") }, - Range { from: '7', to: '7', mapping: Mapped("7") }, - Range { from: '8', to: '8', mapping: Mapped("8") }, - Range { from: '9', to: '9', mapping: Mapped("9") }, - Range { from: ':', to: ':', mapping: DisallowedStd3Mapped(":") }, - Range { from: ';', to: ';', mapping: DisallowedStd3Mapped(";") }, - Range { from: '<', to: '<', mapping: DisallowedStd3Mapped("<") }, - Range { from: '=', to: '=', mapping: DisallowedStd3Mapped("=") }, - Range { from: '>', to: '>', mapping: DisallowedStd3Mapped(">") }, - Range { from: '?', to: '?', mapping: DisallowedStd3Mapped("?") }, - Range { from: '@', to: '@', mapping: DisallowedStd3Mapped("@") }, - Range { from: 'A', to: 'A', mapping: Mapped("a") }, - Range { from: 'B', to: 'B', mapping: Mapped("b") }, - Range { from: 'C', to: 'C', mapping: Mapped("c") }, - Range { from: 'D', to: 'D', mapping: Mapped("d") }, - Range { from: 'E', to: 'E', mapping: Mapped("e") }, - Range { from: 'F', to: 'F', mapping: Mapped("f") }, - Range { from: 'G', to: 'G', mapping: Mapped("g") }, - Range { from: 'H', to: 'H', mapping: Mapped("h") }, - Range { from: 'I', to: 'I', mapping: Mapped("i") }, - Range { from: 'J', to: 'J', mapping: Mapped("j") }, - Range { from: 'K', to: 'K', mapping: Mapped("k") }, - Range { from: 'L', to: 'L', mapping: Mapped("l") }, - Range { from: 'M', to: 'M', mapping: Mapped("m") }, - Range { from: 'N', to: 'N', mapping: Mapped("n") }, - Range { from: 'O', to: 'O', mapping: Mapped("o") }, - Range { from: 'P', to: 'P', mapping: Mapped("p") }, - Range { from: 'Q', to: 'Q', mapping: Mapped("q") }, - Range { from: 'R', to: 'R', mapping: Mapped("r") }, - Range { from: 'S', to: 'S', mapping: Mapped("s") }, - Range { from: 'T', to: 'T', mapping: Mapped("t") }, - Range { from: 'U', to: 'U', mapping: Mapped("u") }, - Range { from: 'V', to: 'V', mapping: Mapped("v") }, - Range { from: 'W', to: 'W', mapping: Mapped("w") }, - Range { from: 'X', to: 'X', mapping: Mapped("x") }, - Range { from: 'Y', to: 'Y', mapping: Mapped("y") }, - Range { from: 'Z', to: 'Z', mapping: Mapped("z") }, - Range { from: '[', to: '[', mapping: DisallowedStd3Mapped("[") }, - Range { from: '\', to: '\', mapping: DisallowedStd3Mapped("\\") }, - Range { from: ']', to: ']', mapping: DisallowedStd3Mapped("]") }, - Range { from: '^', to: '^', mapping: DisallowedStd3Mapped("^") }, - Range { from: '_', to: '_', mapping: DisallowedStd3Mapped("_") }, - Range { from: '`', to: '`', mapping: DisallowedStd3Mapped("`") }, - Range { from: 'a', to: 'a', mapping: Mapped("a") }, - Range { from: 'b', to: 'b', mapping: Mapped("b") }, - Range { from: 'c', to: 'c', mapping: Mapped("c") }, - Range { from: 'd', to: 'd', mapping: Mapped("d") }, - Range { from: 'e', to: 'e', mapping: Mapped("e") }, - Range { from: 'f', to: 'f', mapping: Mapped("f") }, - Range { from: 'g', to: 'g', mapping: Mapped("g") }, - Range { from: 'h', to: 'h', mapping: Mapped("h") }, - Range { from: 'i', to: 'i', mapping: Mapped("i") }, - Range { from: 'j', to: 'j', mapping: Mapped("j") }, - Range { from: 'k', to: 'k', mapping: Mapped("k") }, - Range { from: 'l', to: 'l', mapping: Mapped("l") }, - Range { from: 'm', to: 'm', mapping: Mapped("m") }, - Range { from: 'n', to: 'n', mapping: Mapped("n") }, - Range { from: 'o', to: 'o', mapping: Mapped("o") }, - Range { from: 'p', to: 'p', mapping: Mapped("p") }, - Range { from: 'q', to: 'q', mapping: Mapped("q") }, - Range { from: 'r', to: 'r', mapping: Mapped("r") }, - Range { from: 's', to: 's', mapping: Mapped("s") }, - Range { from: 't', to: 't', mapping: Mapped("t") }, - Range { from: 'u', to: 'u', mapping: Mapped("u") }, - Range { from: 'v', to: 'v', mapping: Mapped("v") }, - Range { from: 'w', to: 'w', mapping: Mapped("w") }, - Range { from: 'x', to: 'x', mapping: Mapped("x") }, - Range { from: 'y', to: 'y', mapping: Mapped("y") }, - Range { from: 'z', to: 'z', mapping: Mapped("z") }, - Range { from: '{', to: '{', mapping: DisallowedStd3Mapped("{") }, - Range { from: '|', to: '|', mapping: DisallowedStd3Mapped("|") }, - Range { from: '}', to: '}', mapping: DisallowedStd3Mapped("}") }, - Range { from: '~', to: '~', mapping: DisallowedStd3Mapped("~") }, - Range { from: '⦅', to: '⦅', mapping: Mapped("⦅") }, - Range { from: '⦆', to: '⦆', mapping: Mapped("⦆") }, - Range { from: '。', to: '。', mapping: Mapped(".") }, - Range { from: '「', to: '「', mapping: Mapped("「") }, - Range { from: '」', to: '」', mapping: Mapped("」") }, - Range { from: '、', to: '、', mapping: Mapped("、") }, - Range { from: '・', to: '・', mapping: Mapped("・") }, - Range { from: 'ヲ', to: 'ヲ', mapping: Mapped("ヲ") }, - Range { from: 'ァ', to: 'ァ', mapping: Mapped("ァ") }, - Range { from: 'ィ', to: 'ィ', mapping: Mapped("ィ") }, - Range { from: 'ゥ', to: 'ゥ', mapping: Mapped("ゥ") }, - Range { from: 'ェ', to: 'ェ', mapping: Mapped("ェ") }, - Range { from: 'ォ', to: 'ォ', mapping: Mapped("ォ") }, - Range { from: 'ャ', to: 'ャ', mapping: Mapped("ャ") }, - Range { from: 'ュ', to: 'ュ', mapping: Mapped("ュ") }, - Range { from: 'ョ', to: 'ョ', mapping: Mapped("ョ") }, - Range { from: 'ッ', to: 'ッ', mapping: Mapped("ッ") }, - Range { from: 'ー', to: 'ー', mapping: Mapped("ー") }, - Range { from: 'ア', to: 'ア', mapping: Mapped("ア") }, - Range { from: 'イ', to: 'イ', mapping: Mapped("イ") }, - Range { from: 'ウ', to: 'ウ', mapping: Mapped("ウ") }, - Range { from: 'エ', to: 'エ', mapping: Mapped("エ") }, - Range { from: 'オ', to: 'オ', mapping: Mapped("オ") }, - Range { from: 'カ', to: 'カ', mapping: Mapped("カ") }, - Range { from: 'キ', to: 'キ', mapping: Mapped("キ") }, - Range { from: 'ク', to: 'ク', mapping: Mapped("ク") }, - Range { from: 'ケ', to: 'ケ', mapping: Mapped("ケ") }, - Range { from: 'コ', to: 'コ', mapping: Mapped("コ") }, - Range { from: 'サ', to: 'サ', mapping: Mapped("サ") }, - Range { from: 'シ', to: 'シ', mapping: Mapped("シ") }, - Range { from: 'ス', to: 'ス', mapping: Mapped("ス") }, - Range { from: 'セ', to: 'セ', mapping: Mapped("セ") }, - Range { from: 'ソ', to: 'ソ', mapping: Mapped("ソ") }, - Range { from: 'タ', to: 'タ', mapping: Mapped("タ") }, - Range { from: 'チ', to: 'チ', mapping: Mapped("チ") }, - Range { from: 'ツ', to: 'ツ', mapping: Mapped("ツ") }, - Range { from: 'テ', to: 'テ', mapping: Mapped("テ") }, - Range { from: 'ト', to: 'ト', mapping: Mapped("ト") }, - Range { from: 'ナ', to: 'ナ', mapping: Mapped("ナ") }, - Range { from: 'ニ', to: 'ニ', mapping: Mapped("ニ") }, - Range { from: 'ヌ', to: 'ヌ', mapping: Mapped("ヌ") }, - Range { from: 'ネ', to: 'ネ', mapping: Mapped("ネ") }, - Range { from: 'ノ', to: 'ノ', mapping: Mapped("ノ") }, - Range { from: 'ハ', to: 'ハ', mapping: Mapped("ハ") }, - Range { from: 'ヒ', to: 'ヒ', mapping: Mapped("ヒ") }, - Range { from: 'フ', to: 'フ', mapping: Mapped("フ") }, - Range { from: 'ヘ', to: 'ヘ', mapping: Mapped("ヘ") }, - Range { from: 'ホ', to: 'ホ', mapping: Mapped("ホ") }, - Range { from: 'マ', to: 'マ', mapping: Mapped("マ") }, - Range { from: 'ミ', to: 'ミ', mapping: Mapped("ミ") }, - Range { from: 'ム', to: 'ム', mapping: Mapped("ム") }, - Range { from: 'メ', to: 'メ', mapping: Mapped("メ") }, - Range { from: 'モ', to: 'モ', mapping: Mapped("モ") }, - Range { from: 'ヤ', to: 'ヤ', mapping: Mapped("ヤ") }, - Range { from: 'ユ', to: 'ユ', mapping: Mapped("ユ") }, - Range { from: 'ヨ', to: 'ヨ', mapping: Mapped("ヨ") }, - Range { from: 'ラ', to: 'ラ', mapping: Mapped("ラ") }, - Range { from: 'リ', to: 'リ', mapping: Mapped("リ") }, - Range { from: 'ル', to: 'ル', mapping: Mapped("ル") }, - Range { from: 'レ', to: 'レ', mapping: Mapped("レ") }, - Range { from: 'ロ', to: 'ロ', mapping: Mapped("ロ") }, - Range { from: 'ワ', to: 'ワ', mapping: Mapped("ワ") }, - Range { from: 'ン', to: 'ン', mapping: Mapped("ン") }, - Range { from: '゙', to: '゙', mapping: Mapped("゙") }, - Range { from: '゚', to: '゚', mapping: Mapped("゚") }, - Range { from: 'ᅠ', to: 'ᅠ', mapping: Disallowed }, - Range { from: 'ᄀ', to: 'ᄀ', mapping: Mapped("ᄀ") }, - Range { from: 'ᄁ', to: 'ᄁ', mapping: Mapped("ᄁ") }, - Range { from: 'ᆪ', to: 'ᆪ', mapping: Mapped("ᆪ") }, - Range { from: 'ᄂ', to: 'ᄂ', mapping: Mapped("ᄂ") }, - Range { from: 'ᆬ', to: 'ᆬ', mapping: Mapped("ᆬ") }, - Range { from: 'ᆭ', to: 'ᆭ', mapping: Mapped("ᆭ") }, - Range { from: 'ᄃ', to: 'ᄃ', mapping: Mapped("ᄃ") }, - Range { from: 'ᄄ', to: 'ᄄ', mapping: Mapped("ᄄ") }, - Range { from: 'ᄅ', to: 'ᄅ', mapping: Mapped("ᄅ") }, - Range { from: 'ᆰ', to: 'ᆰ', mapping: Mapped("ᆰ") }, - Range { from: 'ᆱ', to: 'ᆱ', mapping: Mapped("ᆱ") }, - Range { from: 'ᆲ', to: 'ᆲ', mapping: Mapped("ᆲ") }, - Range { from: 'ᆳ', to: 'ᆳ', mapping: Mapped("ᆳ") }, - Range { from: 'ᆴ', to: 'ᆴ', mapping: Mapped("ᆴ") }, - Range { from: 'ᆵ', to: 'ᆵ', mapping: Mapped("ᆵ") }, - Range { from: 'ᄚ', to: 'ᄚ', mapping: Mapped("ᄚ") }, - Range { from: 'ᄆ', to: 'ᄆ', mapping: Mapped("ᄆ") }, - Range { from: 'ᄇ', to: 'ᄇ', mapping: Mapped("ᄇ") }, - Range { from: 'ᄈ', to: 'ᄈ', mapping: Mapped("ᄈ") }, - Range { from: 'ᄡ', to: 'ᄡ', mapping: Mapped("ᄡ") }, - Range { from: 'ᄉ', to: 'ᄉ', mapping: Mapped("ᄉ") }, - Range { from: 'ᄊ', to: 'ᄊ', mapping: Mapped("ᄊ") }, - Range { from: 'ᄋ', to: 'ᄋ', mapping: Mapped("ᄋ") }, - Range { from: 'ᄌ', to: 'ᄌ', mapping: Mapped("ᄌ") }, - Range { from: 'ᄍ', to: 'ᄍ', mapping: Mapped("ᄍ") }, - Range { from: 'ᄎ', to: 'ᄎ', mapping: Mapped("ᄎ") }, - Range { from: 'ᄏ', to: 'ᄏ', mapping: Mapped("ᄏ") }, - Range { from: 'ᄐ', to: 'ᄐ', mapping: Mapped("ᄐ") }, - Range { from: 'ᄑ', to: 'ᄑ', mapping: Mapped("ᄑ") }, - Range { from: 'ᄒ', to: 'ᄒ', mapping: Mapped("ᄒ") }, - Range { from: '﾿', to: '￁', mapping: Disallowed }, - Range { from: 'ᅡ', to: 'ᅡ', mapping: Mapped("ᅡ") }, - Range { from: 'ᅢ', to: 'ᅢ', mapping: Mapped("ᅢ") }, - Range { from: 'ᅣ', to: 'ᅣ', mapping: Mapped("ᅣ") }, - Range { from: 'ᅤ', to: 'ᅤ', mapping: Mapped("ᅤ") }, - Range { from: 'ᅥ', to: 'ᅥ', mapping: Mapped("ᅥ") }, - Range { from: 'ᅦ', to: 'ᅦ', mapping: Mapped("ᅦ") }, - Range { from: '￈', to: '￉', mapping: Disallowed }, - Range { from: 'ᅧ', to: 'ᅧ', mapping: Mapped("ᅧ") }, - Range { from: 'ᅨ', to: 'ᅨ', mapping: Mapped("ᅨ") }, - Range { from: 'ᅩ', to: 'ᅩ', mapping: Mapped("ᅩ") }, - Range { from: 'ᅪ', to: 'ᅪ', mapping: Mapped("ᅪ") }, - Range { from: 'ᅫ', to: 'ᅫ', mapping: Mapped("ᅫ") }, - Range { from: 'ᅬ', to: 'ᅬ', mapping: Mapped("ᅬ") }, - Range { from: '￐', to: '￑', mapping: Disallowed }, - Range { from: 'ᅭ', to: 'ᅭ', mapping: Mapped("ᅭ") }, - Range { from: 'ᅮ', to: 'ᅮ', mapping: Mapped("ᅮ") }, - Range { from: 'ᅯ', to: 'ᅯ', mapping: Mapped("ᅯ") }, - Range { from: 'ᅰ', to: 'ᅰ', mapping: Mapped("ᅰ") }, - Range { from: 'ᅱ', to: 'ᅱ', mapping: Mapped("ᅱ") }, - Range { from: 'ᅲ', to: 'ᅲ', mapping: Mapped("ᅲ") }, - Range { from: '￘', to: '￙', mapping: Disallowed }, - Range { from: 'ᅳ', to: 'ᅳ', mapping: Mapped("ᅳ") }, - Range { from: 'ᅴ', to: 'ᅴ', mapping: Mapped("ᅴ") }, - Range { from: 'ᅵ', to: 'ᅵ', mapping: Mapped("ᅵ") }, - Range { from: '￝', to: '￟', mapping: Disallowed }, - Range { from: '¢', to: '¢', mapping: Mapped("¢") }, - Range { from: '£', to: '£', mapping: Mapped("£") }, - Range { from: '¬', to: '¬', mapping: Mapped("¬") }, - Range { from: ' ̄', to: ' ̄', mapping: DisallowedStd3Mapped(" ̄") }, - Range { from: '¦', to: '¦', mapping: Mapped("¦") }, - Range { from: '¥', to: '¥', mapping: Mapped("¥") }, - Range { from: '₩', to: '₩', mapping: Mapped("₩") }, - Range { from: '￧', to: '￧', mapping: Disallowed }, - Range { from: '│', to: '│', mapping: Mapped("│") }, - Range { from: '←', to: '←', mapping: Mapped("←") }, - Range { from: '↑', to: '↑', mapping: Mapped("↑") }, - Range { from: '→', to: '→', mapping: Mapped("→") }, - Range { from: '↓', to: '↓', mapping: Mapped("↓") }, - Range { from: '■', to: '■', mapping: Mapped("■") }, - Range { from: '○', to: '○', mapping: Mapped("○") }, - Range { from: '￯', to: '￸', mapping: Disallowed }, - Range { from: '', to: '', mapping: Disallowed }, - Range { from: '', to: '', mapping: Disallowed }, - Range { from: '�', to: '�', mapping: Disallowed }, - Range { from: '￾', to: '￿', mapping: Disallowed }, - Range { from: '𐀀', to: '𐀋', mapping: Valid }, - Range { from: '𐀌', to: '𐀌', mapping: Disallowed }, - Range { from: '𐀍', to: '𐀦', mapping: Valid }, - Range { from: '𐀧', to: '𐀧', mapping: Disallowed }, - Range { from: '𐀨', to: '𐀺', mapping: Valid }, - Range { from: '𐀻', to: '𐀻', mapping: Disallowed }, - Range { from: '𐀼', to: '𐀽', mapping: Valid }, - Range { from: '𐀾', to: '𐀾', mapping: Disallowed }, - Range { from: '𐀿', to: '𐁍', mapping: Valid }, - Range { from: '𐁎', to: '𐁏', mapping: Disallowed }, - Range { from: '𐁐', to: '𐁝', mapping: Valid }, - Range { from: '𐁞', to: '𐁿', mapping: Disallowed }, - Range { from: '𐂀', to: '𐃺', mapping: Valid }, - Range { from: '𐃻', to: '𐃿', mapping: Disallowed }, - Range { from: '𐄀', to: '𐄂', mapping: Valid }, - Range { from: '𐄃', to: '𐄆', mapping: Disallowed }, - Range { from: '𐄇', to: '𐄳', mapping: Valid }, - Range { from: '𐄴', to: '𐄶', mapping: Disallowed }, - Range { from: '𐄷', to: '𐄿', mapping: Valid }, - Range { from: '𐅀', to: '𐆊', mapping: Valid }, - Range { from: '𐆋', to: '𐆌', mapping: Valid }, - Range { from: '𐆍', to: '𐆎', mapping: Valid }, - Range { from: '𐆏', to: '𐆏', mapping: Disallowed }, - Range { from: '𐆐', to: '𐆛', mapping: Valid }, - Range { from: '𐆜', to: '𐆟', mapping: Disallowed }, - Range { from: '𐆠', to: '𐆠', mapping: Valid }, - Range { from: '𐆡', to: '𐇏', mapping: Disallowed }, - Range { from: '𐇐', to: '𐇼', mapping: Valid }, - Range { from: '𐇽', to: '𐇽', mapping: Valid }, - Range { from: '𐇾', to: '𐉿', mapping: Disallowed }, - Range { from: '𐊀', to: '𐊜', mapping: Valid }, - Range { from: '𐊝', to: '𐊟', mapping: Disallowed }, - Range { from: '𐊠', to: '𐋐', mapping: Valid }, - Range { from: '𐋑', to: '𐋟', mapping: Disallowed }, - Range { from: '𐋠', to: '𐋠', mapping: Valid }, - Range { from: '𐋡', to: '𐋻', mapping: Valid }, - Range { from: '𐋼', to: '𐋿', mapping: Disallowed }, - Range { from: '𐌀', to: '𐌞', mapping: Valid }, - Range { from: '𐌟', to: '𐌟', mapping: Valid }, - Range { from: '𐌠', to: '𐌣', mapping: Valid }, - Range { from: '𐌤', to: '𐌯', mapping: Disallowed }, - Range { from: '𐌰', to: '𐍀', mapping: Valid }, - Range { from: '𐍁', to: '𐍁', mapping: Valid }, - Range { from: '𐍂', to: '𐍉', mapping: Valid }, - Range { from: '𐍊', to: '𐍊', mapping: Valid }, - Range { from: '𐍋', to: '𐍏', mapping: Disallowed }, - Range { from: '𐍐', to: '𐍺', mapping: Valid }, - Range { from: '𐍻', to: '𐍿', mapping: Disallowed }, - Range { from: '𐎀', to: '𐎝', mapping: Valid }, - Range { from: '𐎞', to: '𐎞', mapping: Disallowed }, - Range { from: '𐎟', to: '𐎟', mapping: Valid }, - Range { from: '𐎠', to: '𐏃', mapping: Valid }, - Range { from: '𐏄', to: '𐏇', mapping: Disallowed }, - Range { from: '𐏈', to: '𐏏', mapping: Valid }, - Range { from: '𐏐', to: '𐏕', mapping: Valid }, - Range { from: '𐏖', to: '𐏿', mapping: Disallowed }, - Range { from: '𐐀', to: '𐐀', mapping: Mapped("𐐨") }, - Range { from: '𐐁', to: '𐐁', mapping: Mapped("𐐩") }, - Range { from: '𐐂', to: '𐐂', mapping: Mapped("𐐪") }, - Range { from: '𐐃', to: '𐐃', mapping: Mapped("𐐫") }, - Range { from: '𐐄', to: '𐐄', mapping: Mapped("𐐬") }, - Range { from: '𐐅', to: '𐐅', mapping: Mapped("𐐭") }, - Range { from: '𐐆', to: '𐐆', mapping: Mapped("𐐮") }, - Range { from: '𐐇', to: '𐐇', mapping: Mapped("𐐯") }, - Range { from: '𐐈', to: '𐐈', mapping: Mapped("𐐰") }, - Range { from: '𐐉', to: '𐐉', mapping: Mapped("𐐱") }, - Range { from: '𐐊', to: '𐐊', mapping: Mapped("𐐲") }, - Range { from: '𐐋', to: '𐐋', mapping: Mapped("𐐳") }, - Range { from: '𐐌', to: '𐐌', mapping: Mapped("𐐴") }, - Range { from: '𐐍', to: '𐐍', mapping: Mapped("𐐵") }, - Range { from: '𐐎', to: '𐐎', mapping: Mapped("𐐶") }, - Range { from: '𐐏', to: '𐐏', mapping: Mapped("𐐷") }, - Range { from: '𐐐', to: '𐐐', mapping: Mapped("𐐸") }, - Range { from: '𐐑', to: '𐐑', mapping: Mapped("𐐹") }, - Range { from: '𐐒', to: '𐐒', mapping: Mapped("𐐺") }, - Range { from: '𐐓', to: '𐐓', mapping: Mapped("𐐻") }, - Range { from: '𐐔', to: '𐐔', mapping: Mapped("𐐼") }, - Range { from: '𐐕', to: '𐐕', mapping: Mapped("𐐽") }, - Range { from: '𐐖', to: '𐐖', mapping: Mapped("𐐾") }, - Range { from: '𐐗', to: '𐐗', mapping: Mapped("𐐿") }, - Range { from: '𐐘', to: '𐐘', mapping: Mapped("𐑀") }, - Range { from: '𐐙', to: '𐐙', mapping: Mapped("𐑁") }, - Range { from: '𐐚', to: '𐐚', mapping: Mapped("𐑂") }, - Range { from: '𐐛', to: '𐐛', mapping: Mapped("𐑃") }, - Range { from: '𐐜', to: '𐐜', mapping: Mapped("𐑄") }, - Range { from: '𐐝', to: '𐐝', mapping: Mapped("𐑅") }, - Range { from: '𐐞', to: '𐐞', mapping: Mapped("𐑆") }, - Range { from: '𐐟', to: '𐐟', mapping: Mapped("𐑇") }, - Range { from: '𐐠', to: '𐐠', mapping: Mapped("𐑈") }, - Range { from: '𐐡', to: '𐐡', mapping: Mapped("𐑉") }, - Range { from: '𐐢', to: '𐐢', mapping: Mapped("𐑊") }, - Range { from: '𐐣', to: '𐐣', mapping: Mapped("𐑋") }, - Range { from: '𐐤', to: '𐐤', mapping: Mapped("𐑌") }, - Range { from: '𐐥', to: '𐐥', mapping: Mapped("𐑍") }, - Range { from: '𐐦', to: '𐐦', mapping: Mapped("𐑎") }, - Range { from: '𐐧', to: '𐐧', mapping: Mapped("𐑏") }, - Range { from: '𐐨', to: '𐑍', mapping: Valid }, - Range { from: '𐑎', to: '𐒝', mapping: Valid }, - Range { from: '𐒞', to: '𐒟', mapping: Disallowed }, - Range { from: '𐒠', to: '𐒩', mapping: Valid }, - Range { from: '𐒪', to: '𐒯', mapping: Disallowed }, - Range { from: '𐒰', to: '𐒰', mapping: Mapped("𐓘") }, - Range { from: '𐒱', to: '𐒱', mapping: Mapped("𐓙") }, - Range { from: '𐒲', to: '𐒲', mapping: Mapped("𐓚") }, - Range { from: '𐒳', to: '𐒳', mapping: Mapped("𐓛") }, - Range { from: '𐒴', to: '𐒴', mapping: Mapped("𐓜") }, - Range { from: '𐒵', to: '𐒵', mapping: Mapped("𐓝") }, - Range { from: '𐒶', to: '𐒶', mapping: Mapped("𐓞") }, - Range { from: '𐒷', to: '𐒷', mapping: Mapped("𐓟") }, - Range { from: '𐒸', to: '𐒸', mapping: Mapped("𐓠") }, - Range { from: '𐒹', to: '𐒹', mapping: Mapped("𐓡") }, - Range { from: '𐒺', to: '𐒺', mapping: Mapped("𐓢") }, - Range { from: '𐒻', to: '𐒻', mapping: Mapped("𐓣") }, - Range { from: '𐒼', to: '𐒼', mapping: Mapped("𐓤") }, - Range { from: '𐒽', to: '𐒽', mapping: Mapped("𐓥") }, - Range { from: '𐒾', to: '𐒾', mapping: Mapped("𐓦") }, - Range { from: '𐒿', to: '𐒿', mapping: Mapped("𐓧") }, - Range { from: '𐓀', to: '𐓀', mapping: Mapped("𐓨") }, - Range { from: '𐓁', to: '𐓁', mapping: Mapped("𐓩") }, - Range { from: '𐓂', to: '𐓂', mapping: Mapped("𐓪") }, - Range { from: '𐓃', to: '𐓃', mapping: Mapped("𐓫") }, - Range { from: '𐓄', to: '𐓄', mapping: Mapped("𐓬") }, - Range { from: '𐓅', to: '𐓅', mapping: Mapped("𐓭") }, - Range { from: '𐓆', to: '𐓆', mapping: Mapped("𐓮") }, - Range { from: '𐓇', to: '𐓇', mapping: Mapped("𐓯") }, - Range { from: '𐓈', to: '𐓈', mapping: Mapped("𐓰") }, - Range { from: '𐓉', to: '𐓉', mapping: Mapped("𐓱") }, - Range { from: '𐓊', to: '𐓊', mapping: Mapped("𐓲") }, - Range { from: '𐓋', to: '𐓋', mapping: Mapped("𐓳") }, - Range { from: '𐓌', to: '𐓌', mapping: Mapped("𐓴") }, - Range { from: '𐓍', to: '𐓍', mapping: Mapped("𐓵") }, - Range { from: '𐓎', to: '𐓎', mapping: Mapped("𐓶") }, - Range { from: '𐓏', to: '𐓏', mapping: Mapped("𐓷") }, - Range { from: '𐓐', to: '𐓐', mapping: Mapped("𐓸") }, - Range { from: '𐓑', to: '𐓑', mapping: Mapped("𐓹") }, - Range { from: '𐓒', to: '𐓒', mapping: Mapped("𐓺") }, - Range { from: '𐓓', to: '𐓓', mapping: Mapped("𐓻") }, - Range { from: '𐓔', to: '𐓗', mapping: Disallowed }, - Range { from: '𐓘', to: '𐓻', mapping: Valid }, - Range { from: '𐓼', to: '𐓿', mapping: Disallowed }, - Range { from: '𐔀', to: '𐔧', mapping: Valid }, - Range { from: '𐔨', to: '𐔯', mapping: Disallowed }, - Range { from: '𐔰', to: '𐕣', mapping: Valid }, - Range { from: '𐕤', to: '𐕮', mapping: Disallowed }, - Range { from: '𐕯', to: '𐕯', mapping: Valid }, - Range { from: '𐕰', to: '𐗿', mapping: Disallowed }, - Range { from: '𐘀', to: '𐜶', mapping: Valid }, - Range { from: '𐜷', to: '𐜿', mapping: Disallowed }, - Range { from: '𐝀', to: '𐝕', mapping: Valid }, - Range { from: '𐝖', to: '𐝟', mapping: Disallowed }, - Range { from: '𐝠', to: '𐝧', mapping: Valid }, - Range { from: '𐝨', to: '𐟿', mapping: Disallowed }, - Range { from: '𐠀', to: '𐠅', mapping: Valid }, - Range { from: '𐠆', to: '𐠇', mapping: Disallowed }, - Range { from: '𐠈', to: '𐠈', mapping: Valid }, - Range { from: '𐠉', to: '𐠉', mapping: Disallowed }, - Range { from: '𐠊', to: '𐠵', mapping: Valid }, - Range { from: '𐠶', to: '𐠶', mapping: Disallowed }, - Range { from: '𐠷', to: '𐠸', mapping: Valid }, - Range { from: '𐠹', to: '𐠻', mapping: Disallowed }, - Range { from: '𐠼', to: '𐠼', mapping: Valid }, - Range { from: '𐠽', to: '𐠾', mapping: Disallowed }, - Range { from: '𐠿', to: '𐠿', mapping: Valid }, - Range { from: '𐡀', to: '𐡕', mapping: Valid }, - Range { from: '𐡖', to: '𐡖', mapping: Disallowed }, - Range { from: '𐡗', to: '𐡟', mapping: Valid }, - Range { from: '𐡠', to: '𐡶', mapping: Valid }, - Range { from: '𐡷', to: '𐡿', mapping: Valid }, - Range { from: '𐢀', to: '𐢞', mapping: Valid }, - Range { from: '𐢟', to: '𐢦', mapping: Disallowed }, - Range { from: '𐢧', to: '𐢯', mapping: Valid }, - Range { from: '𐢰', to: '𐣟', mapping: Disallowed }, - Range { from: '𐣠', to: '𐣲', mapping: Valid }, - Range { from: '𐣳', to: '𐣳', mapping: Disallowed }, - Range { from: '𐣴', to: '𐣵', mapping: Valid }, - Range { from: '𐣶', to: '𐣺', mapping: Disallowed }, - Range { from: '𐣻', to: '𐣿', mapping: Valid }, - Range { from: '𐤀', to: '𐤕', mapping: Valid }, - Range { from: '𐤖', to: '𐤙', mapping: Valid }, - Range { from: '𐤚', to: '𐤛', mapping: Valid }, - Range { from: '𐤜', to: '𐤞', mapping: Disallowed }, - Range { from: '𐤟', to: '𐤟', mapping: Valid }, - Range { from: '𐤠', to: '𐤹', mapping: Valid }, - Range { from: '𐤺', to: '𐤾', mapping: Disallowed }, - Range { from: '𐤿', to: '𐤿', mapping: Valid }, - Range { from: '𐥀', to: '𐥿', mapping: Disallowed }, - Range { from: '𐦀', to: '𐦷', mapping: Valid }, - Range { from: '𐦸', to: '𐦻', mapping: Disallowed }, - Range { from: '𐦼', to: '𐦽', mapping: Valid }, - Range { from: '𐦾', to: '𐦿', mapping: Valid }, - Range { from: '𐧀', to: '𐧏', mapping: Valid }, - Range { from: '𐧐', to: '𐧑', mapping: Disallowed }, - Range { from: '𐧒', to: '𐧿', mapping: Valid }, - Range { from: '𐨀', to: '𐨃', mapping: Valid }, - Range { from: '𐨄', to: '𐨄', mapping: Disallowed }, - Range { from: '𐨅', to: '𐨆', mapping: Valid }, - Range { from: '𐨇', to: '𐨋', mapping: Disallowed }, - Range { from: '𐨌', to: '𐨓', mapping: Valid }, - Range { from: '𐨔', to: '𐨔', mapping: Disallowed }, - Range { from: '𐨕', to: '𐨗', mapping: Valid }, - Range { from: '𐨘', to: '𐨘', mapping: Disallowed }, - Range { from: '𐨙', to: '𐨳', mapping: Valid }, - Range { from: '𐨴', to: '𐨷', mapping: Disallowed }, - Range { from: '𐨸', to: '𐨺', mapping: Valid }, - Range { from: '𐨻', to: '𐨾', mapping: Disallowed }, - Range { from: '𐨿', to: '𐨿', mapping: Valid }, - Range { from: '𐩀', to: '𐩇', mapping: Valid }, - Range { from: '𐩈', to: '𐩏', mapping: Disallowed }, - Range { from: '𐩐', to: '𐩘', mapping: Valid }, - Range { from: '𐩙', to: '𐩟', mapping: Disallowed }, - Range { from: '𐩠', to: '𐩼', mapping: Valid }, - Range { from: '𐩽', to: '𐩿', mapping: Valid }, - Range { from: '𐪀', to: '𐪜', mapping: Valid }, - Range { from: '𐪝', to: '𐪟', mapping: Valid }, - Range { from: '𐪠', to: '𐪿', mapping: Disallowed }, - Range { from: '𐫀', to: '𐫇', mapping: Valid }, - Range { from: '𐫈', to: '𐫈', mapping: Valid }, - Range { from: '𐫉', to: '𐫦', mapping: Valid }, - Range { from: '𐫧', to: '𐫪', mapping: Disallowed }, - Range { from: '𐫫', to: '𐫶', mapping: Valid }, - Range { from: '𐫷', to: '𐫿', mapping: Disallowed }, - Range { from: '𐬀', to: '𐬵', mapping: Valid }, - Range { from: '𐬶', to: '𐬸', mapping: Disallowed }, - Range { from: '𐬹', to: '𐬿', mapping: Valid }, - Range { from: '𐭀', to: '𐭕', mapping: Valid }, - Range { from: '𐭖', to: '𐭗', mapping: Disallowed }, - Range { from: '𐭘', to: '𐭟', mapping: Valid }, - Range { from: '𐭠', to: '𐭲', mapping: Valid }, - Range { from: '𐭳', to: '𐭷', mapping: Disallowed }, - Range { from: '𐭸', to: '𐭿', mapping: Valid }, - Range { from: '𐮀', to: '𐮑', mapping: Valid }, - Range { from: '𐮒', to: '𐮘', mapping: Disallowed }, - Range { from: '𐮙', to: '𐮜', mapping: Valid }, - Range { from: '𐮝', to: '𐮨', mapping: Disallowed }, - Range { from: '𐮩', to: '𐮯', mapping: Valid }, - Range { from: '𐮰', to: '𐯿', mapping: Disallowed }, - Range { from: '𐰀', to: '𐱈', mapping: Valid }, - Range { from: '𐱉', to: '𐱿', mapping: Disallowed }, - Range { from: '𐲀', to: '𐲀', mapping: Mapped("𐳀") }, - Range { from: '𐲁', to: '𐲁', mapping: Mapped("𐳁") }, - Range { from: '𐲂', to: '𐲂', mapping: Mapped("𐳂") }, - Range { from: '𐲃', to: '𐲃', mapping: Mapped("𐳃") }, - Range { from: '𐲄', to: '𐲄', mapping: Mapped("𐳄") }, - Range { from: '𐲅', to: '𐲅', mapping: Mapped("𐳅") }, - Range { from: '𐲆', to: '𐲆', mapping: Mapped("𐳆") }, - Range { from: '𐲇', to: '𐲇', mapping: Mapped("𐳇") }, - Range { from: '𐲈', to: '𐲈', mapping: Mapped("𐳈") }, - Range { from: '𐲉', to: '𐲉', mapping: Mapped("𐳉") }, - Range { from: '𐲊', to: '𐲊', mapping: Mapped("𐳊") }, - Range { from: '𐲋', to: '𐲋', mapping: Mapped("𐳋") }, - Range { from: '𐲌', to: '𐲌', mapping: Mapped("𐳌") }, - Range { from: '𐲍', to: '𐲍', mapping: Mapped("𐳍") }, - Range { from: '𐲎', to: '𐲎', mapping: Mapped("𐳎") }, - Range { from: '𐲏', to: '𐲏', mapping: Mapped("𐳏") }, - Range { from: '𐲐', to: '𐲐', mapping: Mapped("𐳐") }, - Range { from: '𐲑', to: '𐲑', mapping: Mapped("𐳑") }, - Range { from: '𐲒', to: '𐲒', mapping: Mapped("𐳒") }, - Range { from: '𐲓', to: '𐲓', mapping: Mapped("𐳓") }, - Range { from: '𐲔', to: '𐲔', mapping: Mapped("𐳔") }, - Range { from: '𐲕', to: '𐲕', mapping: Mapped("𐳕") }, - Range { from: '𐲖', to: '𐲖', mapping: Mapped("𐳖") }, - Range { from: '𐲗', to: '𐲗', mapping: Mapped("𐳗") }, - Range { from: '𐲘', to: '𐲘', mapping: Mapped("𐳘") }, - Range { from: '𐲙', to: '𐲙', mapping: Mapped("𐳙") }, - Range { from: '𐲚', to: '𐲚', mapping: Mapped("𐳚") }, - Range { from: '𐲛', to: '𐲛', mapping: Mapped("𐳛") }, - Range { from: '𐲜', to: '𐲜', mapping: Mapped("𐳜") }, - Range { from: '𐲝', to: '𐲝', mapping: Mapped("𐳝") }, - Range { from: '𐲞', to: '𐲞', mapping: Mapped("𐳞") }, - Range { from: '𐲟', to: '𐲟', mapping: Mapped("𐳟") }, - Range { from: '𐲠', to: '𐲠', mapping: Mapped("𐳠") }, - Range { from: '𐲡', to: '𐲡', mapping: Mapped("𐳡") }, - Range { from: '𐲢', to: '𐲢', mapping: Mapped("𐳢") }, - Range { from: '𐲣', to: '𐲣', mapping: Mapped("𐳣") }, - Range { from: '𐲤', to: '𐲤', mapping: Mapped("𐳤") }, - Range { from: '𐲥', to: '𐲥', mapping: Mapped("𐳥") }, - Range { from: '𐲦', to: '𐲦', mapping: Mapped("𐳦") }, - Range { from: '𐲧', to: '𐲧', mapping: Mapped("𐳧") }, - Range { from: '𐲨', to: '𐲨', mapping: Mapped("𐳨") }, - Range { from: '𐲩', to: '𐲩', mapping: Mapped("𐳩") }, - Range { from: '𐲪', to: '𐲪', mapping: Mapped("𐳪") }, - Range { from: '𐲫', to: '𐲫', mapping: Mapped("𐳫") }, - Range { from: '𐲬', to: '𐲬', mapping: Mapped("𐳬") }, - Range { from: '𐲭', to: '𐲭', mapping: Mapped("𐳭") }, - Range { from: '𐲮', to: '𐲮', mapping: Mapped("𐳮") }, - Range { from: '𐲯', to: '𐲯', mapping: Mapped("𐳯") }, - Range { from: '𐲰', to: '𐲰', mapping: Mapped("𐳰") }, - Range { from: '𐲱', to: '𐲱', mapping: Mapped("𐳱") }, - Range { from: '𐲲', to: '𐲲', mapping: Mapped("𐳲") }, - Range { from: '𐲳', to: '𐲿', mapping: Disallowed }, - Range { from: '𐳀', to: '𐳲', mapping: Valid }, - Range { from: '𐳳', to: '𐳹', mapping: Disallowed }, - Range { from: '𐳺', to: '𐳿', mapping: Valid }, - Range { from: '𐴀', to: '𐹟', mapping: Disallowed }, - Range { from: '𐹠', to: '𐹾', mapping: Valid }, - Range { from: '𐹿', to: '𐿿', mapping: Disallowed }, - Range { from: '𑀀', to: '𑁆', mapping: Valid }, - Range { from: '𑁇', to: '𑁍', mapping: Valid }, - Range { from: '𑁎', to: '𑁑', mapping: Disallowed }, - Range { from: '𑁒', to: '𑁥', mapping: Valid }, - Range { from: '𑁦', to: '𑁯', mapping: Valid }, - Range { from: '𑁰', to: '𑁾', mapping: Disallowed }, - Range { from: '𑁿', to: '𑁿', mapping: Valid }, - Range { from: '𑂀', to: '𑂺', mapping: Valid }, - Range { from: '𑂻', to: '𑂼', mapping: Valid }, - Range { from: '𑂽', to: '𑂽', mapping: Disallowed }, - Range { from: '𑂾', to: '𑃁', mapping: Valid }, - Range { from: '𑃂', to: '𑃏', mapping: Disallowed }, - Range { from: '𑃐', to: '𑃨', mapping: Valid }, - Range { from: '𑃩', to: '𑃯', mapping: Disallowed }, - Range { from: '𑃰', to: '𑃹', mapping: Valid }, - Range { from: '𑃺', to: '𑃿', mapping: Disallowed }, - Range { from: '𑄀', to: '𑄴', mapping: Valid }, - Range { from: '𑄵', to: '𑄵', mapping: Disallowed }, - Range { from: '𑄶', to: '𑄿', mapping: Valid }, - Range { from: '𑅀', to: '𑅃', mapping: Valid }, - Range { from: '𑅄', to: '𑅏', mapping: Disallowed }, - Range { from: '𑅐', to: '𑅳', mapping: Valid }, - Range { from: '𑅴', to: '𑅵', mapping: Valid }, - Range { from: '𑅶', to: '𑅶', mapping: Valid }, - Range { from: '𑅷', to: '𑅿', mapping: Disallowed }, - Range { from: '𑆀', to: '𑇄', mapping: Valid }, - Range { from: '𑇅', to: '𑇈', mapping: Valid }, - Range { from: '𑇉', to: '𑇉', mapping: Valid }, - Range { from: '𑇊', to: '𑇌', mapping: Valid }, - Range { from: '𑇍', to: '𑇍', mapping: Valid }, - Range { from: '𑇎', to: '𑇏', mapping: Disallowed }, - Range { from: '𑇐', to: '𑇙', mapping: Valid }, - Range { from: '𑇚', to: '𑇚', mapping: Valid }, - Range { from: '𑇛', to: '𑇛', mapping: Valid }, - Range { from: '𑇜', to: '𑇜', mapping: Valid }, - Range { from: '𑇝', to: '𑇟', mapping: Valid }, - Range { from: '𑇠', to: '𑇠', mapping: Disallowed }, - Range { from: '𑇡', to: '𑇴', mapping: Valid }, - Range { from: '𑇵', to: '𑇿', mapping: Disallowed }, - Range { from: '𑈀', to: '𑈑', mapping: Valid }, - Range { from: '𑈒', to: '𑈒', mapping: Disallowed }, - Range { from: '𑈓', to: '𑈷', mapping: Valid }, - Range { from: '𑈸', to: '𑈽', mapping: Valid }, - Range { from: '𑈾', to: '𑈾', mapping: Valid }, - Range { from: '𑈿', to: '𑉿', mapping: Disallowed }, - Range { from: '𑊀', to: '𑊆', mapping: Valid }, - Range { from: '𑊇', to: '𑊇', mapping: Disallowed }, - Range { from: '𑊈', to: '𑊈', mapping: Valid }, - Range { from: '𑊉', to: '𑊉', mapping: Disallowed }, - Range { from: '𑊊', to: '𑊍', mapping: Valid }, - Range { from: '𑊎', to: '𑊎', mapping: Disallowed }, - Range { from: '𑊏', to: '𑊝', mapping: Valid }, - Range { from: '𑊞', to: '𑊞', mapping: Disallowed }, - Range { from: '𑊟', to: '𑊨', mapping: Valid }, - Range { from: '𑊩', to: '𑊩', mapping: Valid }, - Range { from: '𑊪', to: '𑊯', mapping: Disallowed }, - Range { from: '𑊰', to: '𑋪', mapping: Valid }, - Range { from: '𑋫', to: '𑋯', mapping: Disallowed }, - Range { from: '𑋰', to: '𑋹', mapping: Valid }, - Range { from: '𑋺', to: '𑋿', mapping: Disallowed }, - Range { from: '𑌀', to: '𑌀', mapping: Valid }, - Range { from: '𑌁', to: '𑌃', mapping: Valid }, - Range { from: '𑌄', to: '𑌄', mapping: Disallowed }, - Range { from: '𑌅', to: '𑌌', mapping: Valid }, - Range { from: '𑌍', to: '𑌎', mapping: Disallowed }, - Range { from: '𑌏', to: '𑌐', mapping: Valid }, - Range { from: '𑌑', to: '𑌒', mapping: Disallowed }, - Range { from: '𑌓', to: '𑌨', mapping: Valid }, - Range { from: '𑌩', to: '𑌩', mapping: Disallowed }, - Range { from: '𑌪', to: '𑌰', mapping: Valid }, - Range { from: '𑌱', to: '𑌱', mapping: Disallowed }, - Range { from: '𑌲', to: '𑌳', mapping: Valid }, - Range { from: '𑌴', to: '𑌴', mapping: Disallowed }, - Range { from: '𑌵', to: '𑌹', mapping: Valid }, - Range { from: '𑌺', to: '𑌻', mapping: Disallowed }, - Range { from: '𑌼', to: '𑍄', mapping: Valid }, - Range { from: '𑍅', to: '𑍆', mapping: Disallowed }, - Range { from: '𑍇', to: '𑍈', mapping: Valid }, - Range { from: '𑍉', to: '𑍊', mapping: Disallowed }, - Range { from: '𑍋', to: '𑍍', mapping: Valid }, - Range { from: '𑍎', to: '𑍏', mapping: Disallowed }, - Range { from: '𑍐', to: '𑍐', mapping: Valid }, - Range { from: '𑍑', to: '𑍖', mapping: Disallowed }, - Range { from: '𑍗', to: '𑍗', mapping: Valid }, - Range { from: '𑍘', to: '𑍜', mapping: Disallowed }, - Range { from: '𑍝', to: '𑍣', mapping: Valid }, - Range { from: '𑍤', to: '𑍥', mapping: Disallowed }, - Range { from: '𑍦', to: '𑍬', mapping: Valid }, - Range { from: '𑍭', to: '𑍯', mapping: Disallowed }, - Range { from: '𑍰', to: '𑍴', mapping: Valid }, - Range { from: '𑍵', to: '𑏿', mapping: Disallowed }, - Range { from: '𑐀', to: '𑑊', mapping: Valid }, - Range { from: '𑑋', to: '𑑏', mapping: Valid }, - Range { from: '𑑐', to: '𑑙', mapping: Valid }, - Range { from: '𑑚', to: '𑑚', mapping: Disallowed }, - Range { from: '𑑛', to: '𑑛', mapping: Valid }, - Range { from: '𑑜', to: '𑑜', mapping: Disallowed }, - Range { from: '𑑝', to: '𑑝', mapping: Valid }, - Range { from: '𑑞', to: '𑑿', mapping: Disallowed }, - Range { from: '𑒀', to: '𑓅', mapping: Valid }, - Range { from: '𑓆', to: '𑓆', mapping: Valid }, - Range { from: '𑓇', to: '𑓇', mapping: Valid }, - Range { from: '𑓈', to: '𑓏', mapping: Disallowed }, - Range { from: '𑓐', to: '𑓙', mapping: Valid }, - Range { from: '𑓚', to: '𑕿', mapping: Disallowed }, - Range { from: '𑖀', to: '𑖵', mapping: Valid }, - Range { from: '𑖶', to: '𑖷', mapping: Disallowed }, - Range { from: '𑖸', to: '𑗀', mapping: Valid }, - Range { from: '𑗁', to: '𑗉', mapping: Valid }, - Range { from: '𑗊', to: '𑗗', mapping: Valid }, - Range { from: '𑗘', to: '𑗝', mapping: Valid }, - Range { from: '𑗞', to: '𑗿', mapping: Disallowed }, - Range { from: '𑘀', to: '𑙀', mapping: Valid }, - Range { from: '𑙁', to: '𑙃', mapping: Valid }, - Range { from: '𑙄', to: '𑙄', mapping: Valid }, - Range { from: '𑙅', to: '𑙏', mapping: Disallowed }, - Range { from: '𑙐', to: '𑙙', mapping: Valid }, - Range { from: '𑙚', to: '𑙟', mapping: Disallowed }, - Range { from: '𑙠', to: '𑙬', mapping: Valid }, - Range { from: '𑙭', to: '𑙿', mapping: Disallowed }, - Range { from: '𑚀', to: '𑚷', mapping: Valid }, - Range { from: '𑚸', to: '𑚿', mapping: Disallowed }, - Range { from: '𑛀', to: '𑛉', mapping: Valid }, - Range { from: '𑛊', to: '𑛿', mapping: Disallowed }, - Range { from: '𑜀', to: '𑜙', mapping: Valid }, - Range { from: '𑜚', to: '𑜜', mapping: Disallowed }, - Range { from: '𑜝', to: '𑜫', mapping: Valid }, - Range { from: '𑜬', to: '𑜯', mapping: Disallowed }, - Range { from: '𑜰', to: '𑜹', mapping: Valid }, - Range { from: '𑜺', to: '𑜿', mapping: Valid }, - Range { from: '𑝀', to: '𑢟', mapping: Disallowed }, - Range { from: '𑢠', to: '𑢠', mapping: Mapped("𑣀") }, - Range { from: '𑢡', to: '𑢡', mapping: Mapped("𑣁") }, - Range { from: '𑢢', to: '𑢢', mapping: Mapped("𑣂") }, - Range { from: '𑢣', to: '𑢣', mapping: Mapped("𑣃") }, - Range { from: '𑢤', to: '𑢤', mapping: Mapped("𑣄") }, - Range { from: '𑢥', to: '𑢥', mapping: Mapped("𑣅") }, - Range { from: '𑢦', to: '𑢦', mapping: Mapped("𑣆") }, - Range { from: '𑢧', to: '𑢧', mapping: Mapped("𑣇") }, - Range { from: '𑢨', to: '𑢨', mapping: Mapped("𑣈") }, - Range { from: '𑢩', to: '𑢩', mapping: Mapped("𑣉") }, - Range { from: '𑢪', to: '𑢪', mapping: Mapped("𑣊") }, - Range { from: '𑢫', to: '𑢫', mapping: Mapped("𑣋") }, - Range { from: '𑢬', to: '𑢬', mapping: Mapped("𑣌") }, - Range { from: '𑢭', to: '𑢭', mapping: Mapped("𑣍") }, - Range { from: '𑢮', to: '𑢮', mapping: Mapped("𑣎") }, - Range { from: '𑢯', to: '𑢯', mapping: Mapped("𑣏") }, - Range { from: '𑢰', to: '𑢰', mapping: Mapped("𑣐") }, - Range { from: '𑢱', to: '𑢱', mapping: Mapped("𑣑") }, - Range { from: '𑢲', to: '𑢲', mapping: Mapped("𑣒") }, - Range { from: '𑢳', to: '𑢳', mapping: Mapped("𑣓") }, - Range { from: '𑢴', to: '𑢴', mapping: Mapped("𑣔") }, - Range { from: '𑢵', to: '𑢵', mapping: Mapped("𑣕") }, - Range { from: '𑢶', to: '𑢶', mapping: Mapped("𑣖") }, - Range { from: '𑢷', to: '𑢷', mapping: Mapped("𑣗") }, - Range { from: '𑢸', to: '𑢸', mapping: Mapped("𑣘") }, - Range { from: '𑢹', to: '𑢹', mapping: Mapped("𑣙") }, - Range { from: '𑢺', to: '𑢺', mapping: Mapped("𑣚") }, - Range { from: '𑢻', to: '𑢻', mapping: Mapped("𑣛") }, - Range { from: '𑢼', to: '𑢼', mapping: Mapped("𑣜") }, - Range { from: '𑢽', to: '𑢽', mapping: Mapped("𑣝") }, - Range { from: '𑢾', to: '𑢾', mapping: Mapped("𑣞") }, - Range { from: '𑢿', to: '𑢿', mapping: Mapped("𑣟") }, - Range { from: '𑣀', to: '𑣩', mapping: Valid }, - Range { from: '𑣪', to: '𑣲', mapping: Valid }, - Range { from: '𑣳', to: '𑣾', mapping: Disallowed }, - Range { from: '𑣿', to: '𑣿', mapping: Valid }, - Range { from: '𑤀', to: '𑪿', mapping: Disallowed }, - Range { from: '𑫀', to: '𑫸', mapping: Valid }, - Range { from: '𑫹', to: '𑯿', mapping: Disallowed }, - Range { from: '𑰀', to: '𑰈', mapping: Valid }, - Range { from: '𑰉', to: '𑰉', mapping: Disallowed }, - Range { from: '𑰊', to: '𑰶', mapping: Valid }, - Range { from: '𑰷', to: '𑰷', mapping: Disallowed }, - Range { from: '𑰸', to: '𑱀', mapping: Valid }, - Range { from: '𑱁', to: '𑱅', mapping: Valid }, - Range { from: '𑱆', to: '𑱏', mapping: Disallowed }, - Range { from: '𑱐', to: '𑱙', mapping: Valid }, - Range { from: '𑱚', to: '𑱬', mapping: Valid }, - Range { from: '𑱭', to: '𑱯', mapping: Disallowed }, - Range { from: '𑱰', to: '𑱱', mapping: Valid }, - Range { from: '𑱲', to: '𑲏', mapping: Valid }, - Range { from: '𑲐', to: '𑲑', mapping: Disallowed }, - Range { from: '𑲒', to: '𑲧', mapping: Valid }, - Range { from: '𑲨', to: '𑲨', mapping: Disallowed }, - Range { from: '𑲩', to: '𑲶', mapping: Valid }, - Range { from: '𑲷', to: '𑿿', mapping: Disallowed }, - Range { from: '𒀀', to: '𒍮', mapping: Valid }, - Range { from: '𒍯', to: '𒎘', mapping: Valid }, - Range { from: '𒎙', to: '𒎙', mapping: Valid }, - Range { from: '𒎚', to: '𒏿', mapping: Disallowed }, - Range { from: '𒐀', to: '𒑢', mapping: Valid }, - Range { from: '𒑣', to: '𒑮', mapping: Valid }, - Range { from: '𒑯', to: '𒑯', mapping: Disallowed }, - Range { from: '𒑰', to: '𒑳', mapping: Valid }, - Range { from: '𒑴', to: '𒑴', mapping: Valid }, - Range { from: '𒑵', to: '𒑿', mapping: Disallowed }, - Range { from: '𒒀', to: '𒕃', mapping: Valid }, - Range { from: '𒕄', to: '𒿿', mapping: Disallowed }, - Range { from: '𓀀', to: '𓐮', mapping: Valid }, - Range { from: '𓐯', to: '𔏿', mapping: Disallowed }, - Range { from: '𔐀', to: '𔙆', mapping: Valid }, - Range { from: '𔙇', to: '𖟿', mapping: Disallowed }, - Range { from: '𖠀', to: '𖨸', mapping: Valid }, - Range { from: '𖨹', to: '𖨿', mapping: Disallowed }, - Range { from: '𖩀', to: '𖩞', mapping: Valid }, - Range { from: '𖩟', to: '𖩟', mapping: Disallowed }, - Range { from: '𖩠', to: '𖩩', mapping: Valid }, - Range { from: '𖩪', to: '𖩭', mapping: Disallowed }, - Range { from: '𖩮', to: '𖩯', mapping: Valid }, - Range { from: '𖩰', to: '𖫏', mapping: Disallowed }, - Range { from: '𖫐', to: '𖫭', mapping: Valid }, - Range { from: '𖫮', to: '𖫯', mapping: Disallowed }, - Range { from: '𖫰', to: '𖫴', mapping: Valid }, - Range { from: '𖫵', to: '𖫵', mapping: Valid }, - Range { from: '𖫶', to: '𖫿', mapping: Disallowed }, - Range { from: '𖬀', to: '𖬶', mapping: Valid }, - Range { from: '𖬷', to: '𖬿', mapping: Valid }, - Range { from: '𖭀', to: '𖭃', mapping: Valid }, - Range { from: '𖭄', to: '𖭅', mapping: Valid }, - Range { from: '𖭆', to: '𖭏', mapping: Disallowed }, - Range { from: '𖭐', to: '𖭙', mapping: Valid }, - Range { from: '𖭚', to: '𖭚', mapping: Disallowed }, - Range { from: '𖭛', to: '𖭡', mapping: Valid }, - Range { from: '𖭢', to: '𖭢', mapping: Disallowed }, - Range { from: '𖭣', to: '𖭷', mapping: Valid }, - Range { from: '𖭸', to: '𖭼', mapping: Disallowed }, - Range { from: '𖭽', to: '𖮏', mapping: Valid }, - Range { from: '𖮐', to: '𖻿', mapping: Disallowed }, - Range { from: '𖼀', to: '𖽄', mapping: Valid }, - Range { from: '𖽅', to: '𖽏', mapping: Disallowed }, - Range { from: '𖽐', to: '𖽾', mapping: Valid }, - Range { from: '𖽿', to: '𖾎', mapping: Disallowed }, - Range { from: '𖾏', to: '𖾟', mapping: Valid }, - Range { from: '𖾠', to: '𖿟', mapping: Disallowed }, - Range { from: '𖿠', to: '𖿠', mapping: Valid }, - Range { from: '𖿡', to: '𖿿', mapping: Disallowed }, - Range { from: '𗀀', to: '𘟬', mapping: Valid }, - Range { from: '𘟭', to: '𘟿', mapping: Disallowed }, - Range { from: '𘠀', to: '𘫲', mapping: Valid }, - Range { from: '𘫳', to: '𚿿', mapping: Disallowed }, - Range { from: '𛀀', to: '𛀁', mapping: Valid }, - Range { from: '𛀂', to: '𛯿', mapping: Disallowed }, - Range { from: '𛰀', to: '𛱪', mapping: Valid }, - Range { from: '𛱫', to: '𛱯', mapping: Disallowed }, - Range { from: '𛱰', to: '𛱼', mapping: Valid }, - Range { from: '𛱽', to: '𛱿', mapping: Disallowed }, - Range { from: '𛲀', to: '𛲈', mapping: Valid }, - Range { from: '𛲉', to: '𛲏', mapping: Disallowed }, - Range { from: '𛲐', to: '𛲙', mapping: Valid }, - Range { from: '𛲚', to: '𛲛', mapping: Disallowed }, - Range { from: '𛲜', to: '𛲜', mapping: Valid }, - Range { from: '𛲝', to: '𛲞', mapping: Valid }, - Range { from: '𛲟', to: '𛲟', mapping: Valid }, - Range { from: '𛲠', to: '𛲣', mapping: Ignored }, - Range { from: '𛲤', to: '𜿿', mapping: Disallowed }, - Range { from: '𝀀', to: '𝃵', mapping: Valid }, - Range { from: '𝃶', to: '𝃿', mapping: Disallowed }, - Range { from: '𝄀', to: '𝄦', mapping: Valid }, - Range { from: '𝄧', to: '𝄨', mapping: Disallowed }, - Range { from: '𝄩', to: '𝄩', mapping: Valid }, - Range { from: '𝄪', to: '𝅝', mapping: Valid }, - Range { from: '𝅗𝅥', to: '𝅗𝅥', mapping: Mapped("𝅗𝅥") }, - Range { from: '𝅘𝅥', to: '𝅘𝅥', mapping: Mapped("𝅘𝅥") }, - Range { from: '𝅘𝅥𝅮', to: '𝅘𝅥𝅮', mapping: Mapped("𝅘𝅥𝅮") }, - Range { from: '𝅘𝅥𝅯', to: '𝅘𝅥𝅯', mapping: Mapped("𝅘𝅥𝅯") }, - Range { from: '𝅘𝅥𝅰', to: '𝅘𝅥𝅰', mapping: Mapped("𝅘𝅥𝅰") }, - Range { from: '𝅘𝅥𝅱', to: '𝅘𝅥𝅱', mapping: Mapped("𝅘𝅥𝅱") }, - Range { from: '𝅘𝅥𝅲', to: '𝅘𝅥𝅲', mapping: Mapped("𝅘𝅥𝅲") }, - Range { from: '𝅥', to: '𝅲', mapping: Valid }, - Range { from: '𝅳', to: '𝅺', mapping: Disallowed }, - Range { from: '𝅻', to: '𝆺', mapping: Valid }, - Range { from: '𝆹𝅥', to: '𝆹𝅥', mapping: Mapped("𝆹𝅥") }, - Range { from: '𝆺𝅥', to: '𝆺𝅥', mapping: Mapped("𝆺𝅥") }, - Range { from: '𝆹𝅥𝅮', to: '𝆹𝅥𝅮', mapping: Mapped("𝆹𝅥𝅮") }, - Range { from: '𝆺𝅥𝅮', to: '𝆺𝅥𝅮', mapping: Mapped("𝆺𝅥𝅮") }, - Range { from: '𝆹𝅥𝅯', to: '𝆹𝅥𝅯', mapping: Mapped("𝆹𝅥𝅯") }, - Range { from: '𝆺𝅥𝅯', to: '𝆺𝅥𝅯', mapping: Mapped("𝆺𝅥𝅯") }, - Range { from: '𝇁', to: '𝇝', mapping: Valid }, - Range { from: '𝇞', to: '𝇨', mapping: Valid }, - Range { from: '𝇩', to: '𝇿', mapping: Disallowed }, - Range { from: '𝈀', to: '𝉅', mapping: Valid }, - Range { from: '𝉆', to: '𝋿', mapping: Disallowed }, - Range { from: '𝌀', to: '𝍖', mapping: Valid }, - Range { from: '𝍗', to: '𝍟', mapping: Disallowed }, - Range { from: '𝍠', to: '𝍱', mapping: Valid }, - Range { from: '𝍲', to: '𝏿', mapping: Disallowed }, - Range { from: '𝐀', to: '𝐀', mapping: Mapped("a") }, - Range { from: '𝐁', to: '𝐁', mapping: Mapped("b") }, - Range { from: '𝐂', to: '𝐂', mapping: Mapped("c") }, - Range { from: '𝐃', to: '𝐃', mapping: Mapped("d") }, - Range { from: '𝐄', to: '𝐄', mapping: Mapped("e") }, - Range { from: '𝐅', to: '𝐅', mapping: Mapped("f") }, - Range { from: '𝐆', to: '𝐆', mapping: Mapped("g") }, - Range { from: '𝐇', to: '𝐇', mapping: Mapped("h") }, - Range { from: '𝐈', to: '𝐈', mapping: Mapped("i") }, - Range { from: '𝐉', to: '𝐉', mapping: Mapped("j") }, - Range { from: '𝐊', to: '𝐊', mapping: Mapped("k") }, - Range { from: '𝐋', to: '𝐋', mapping: Mapped("l") }, - Range { from: '𝐌', to: '𝐌', mapping: Mapped("m") }, - Range { from: '𝐍', to: '𝐍', mapping: Mapped("n") }, - Range { from: '𝐎', to: '𝐎', mapping: Mapped("o") }, - Range { from: '𝐏', to: '𝐏', mapping: Mapped("p") }, - Range { from: '𝐐', to: '𝐐', mapping: Mapped("q") }, - Range { from: '𝐑', to: '𝐑', mapping: Mapped("r") }, - Range { from: '𝐒', to: '𝐒', mapping: Mapped("s") }, - Range { from: '𝐓', to: '𝐓', mapping: Mapped("t") }, - Range { from: '𝐔', to: '𝐔', mapping: Mapped("u") }, - Range { from: '𝐕', to: '𝐕', mapping: Mapped("v") }, - Range { from: '𝐖', to: '𝐖', mapping: Mapped("w") }, - Range { from: '𝐗', to: '𝐗', mapping: Mapped("x") }, - Range { from: '𝐘', to: '𝐘', mapping: Mapped("y") }, - Range { from: '𝐙', to: '𝐙', mapping: Mapped("z") }, - Range { from: '𝐚', to: '𝐚', mapping: Mapped("a") }, - Range { from: '𝐛', to: '𝐛', mapping: Mapped("b") }, - Range { from: '𝐜', to: '𝐜', mapping: Mapped("c") }, - Range { from: '𝐝', to: '𝐝', mapping: Mapped("d") }, - Range { from: '𝐞', to: '𝐞', mapping: Mapped("e") }, - Range { from: '𝐟', to: '𝐟', mapping: Mapped("f") }, - Range { from: '𝐠', to: '𝐠', mapping: Mapped("g") }, - Range { from: '𝐡', to: '𝐡', mapping: Mapped("h") }, - Range { from: '𝐢', to: '𝐢', mapping: Mapped("i") }, - Range { from: '𝐣', to: '𝐣', mapping: Mapped("j") }, - Range { from: '𝐤', to: '𝐤', mapping: Mapped("k") }, - Range { from: '𝐥', to: '𝐥', mapping: Mapped("l") }, - Range { from: '𝐦', to: '𝐦', mapping: Mapped("m") }, - Range { from: '𝐧', to: '𝐧', mapping: Mapped("n") }, - Range { from: '𝐨', to: '𝐨', mapping: Mapped("o") }, - Range { from: '𝐩', to: '𝐩', mapping: Mapped("p") }, - Range { from: '𝐪', to: '𝐪', mapping: Mapped("q") }, - Range { from: '𝐫', to: '𝐫', mapping: Mapped("r") }, - Range { from: '𝐬', to: '𝐬', mapping: Mapped("s") }, - Range { from: '𝐭', to: '𝐭', mapping: Mapped("t") }, - Range { from: '𝐮', to: '𝐮', mapping: Mapped("u") }, - Range { from: '𝐯', to: '𝐯', mapping: Mapped("v") }, - Range { from: '𝐰', to: '𝐰', mapping: Mapped("w") }, - Range { from: '𝐱', to: '𝐱', mapping: Mapped("x") }, - Range { from: '𝐲', to: '𝐲', mapping: Mapped("y") }, - Range { from: '𝐳', to: '𝐳', mapping: Mapped("z") }, - Range { from: '𝐴', to: '𝐴', mapping: Mapped("a") }, - Range { from: '𝐵', to: '𝐵', mapping: Mapped("b") }, - Range { from: '𝐶', to: '𝐶', mapping: Mapped("c") }, - Range { from: '𝐷', to: '𝐷', mapping: Mapped("d") }, - Range { from: '𝐸', to: '𝐸', mapping: Mapped("e") }, - Range { from: '𝐹', to: '𝐹', mapping: Mapped("f") }, - Range { from: '𝐺', to: '𝐺', mapping: Mapped("g") }, - Range { from: '𝐻', to: '𝐻', mapping: Mapped("h") }, - Range { from: '𝐼', to: '𝐼', mapping: Mapped("i") }, - Range { from: '𝐽', to: '𝐽', mapping: Mapped("j") }, - Range { from: '𝐾', to: '𝐾', mapping: Mapped("k") }, - Range { from: '𝐿', to: '𝐿', mapping: Mapped("l") }, - Range { from: '𝑀', to: '𝑀', mapping: Mapped("m") }, - Range { from: '𝑁', to: '𝑁', mapping: Mapped("n") }, - Range { from: '𝑂', to: '𝑂', mapping: Mapped("o") }, - Range { from: '𝑃', to: '𝑃', mapping: Mapped("p") }, - Range { from: '𝑄', to: '𝑄', mapping: Mapped("q") }, - Range { from: '𝑅', to: '𝑅', mapping: Mapped("r") }, - Range { from: '𝑆', to: '𝑆', mapping: Mapped("s") }, - Range { from: '𝑇', to: '𝑇', mapping: Mapped("t") }, - Range { from: '𝑈', to: '𝑈', mapping: Mapped("u") }, - Range { from: '𝑉', to: '𝑉', mapping: Mapped("v") }, - Range { from: '𝑊', to: '𝑊', mapping: Mapped("w") }, - Range { from: '𝑋', to: '𝑋', mapping: Mapped("x") }, - Range { from: '𝑌', to: '𝑌', mapping: Mapped("y") }, - Range { from: '𝑍', to: '𝑍', mapping: Mapped("z") }, - Range { from: '𝑎', to: '𝑎', mapping: Mapped("a") }, - Range { from: '𝑏', to: '𝑏', mapping: Mapped("b") }, - Range { from: '𝑐', to: '𝑐', mapping: Mapped("c") }, - Range { from: '𝑑', to: '𝑑', mapping: Mapped("d") }, - Range { from: '𝑒', to: '𝑒', mapping: Mapped("e") }, - Range { from: '𝑓', to: '𝑓', mapping: Mapped("f") }, - Range { from: '𝑔', to: '𝑔', mapping: Mapped("g") }, - Range { from: '𝑕', to: '𝑕', mapping: Disallowed }, - Range { from: '𝑖', to: '𝑖', mapping: Mapped("i") }, - Range { from: '𝑗', to: '𝑗', mapping: Mapped("j") }, - Range { from: '𝑘', to: '𝑘', mapping: Mapped("k") }, - Range { from: '𝑙', to: '𝑙', mapping: Mapped("l") }, - Range { from: '𝑚', to: '𝑚', mapping: Mapped("m") }, - Range { from: '𝑛', to: '𝑛', mapping: Mapped("n") }, - Range { from: '𝑜', to: '𝑜', mapping: Mapped("o") }, - Range { from: '𝑝', to: '𝑝', mapping: Mapped("p") }, - Range { from: '𝑞', to: '𝑞', mapping: Mapped("q") }, - Range { from: '𝑟', to: '𝑟', mapping: Mapped("r") }, - Range { from: '𝑠', to: '𝑠', mapping: Mapped("s") }, - Range { from: '𝑡', to: '𝑡', mapping: Mapped("t") }, - Range { from: '𝑢', to: '𝑢', mapping: Mapped("u") }, - Range { from: '𝑣', to: '𝑣', mapping: Mapped("v") }, - Range { from: '𝑤', to: '𝑤', mapping: Mapped("w") }, - Range { from: '𝑥', to: '𝑥', mapping: Mapped("x") }, - Range { from: '𝑦', to: '𝑦', mapping: Mapped("y") }, - Range { from: '𝑧', to: '𝑧', mapping: Mapped("z") }, - Range { from: '𝑨', to: '𝑨', mapping: Mapped("a") }, - Range { from: '𝑩', to: '𝑩', mapping: Mapped("b") }, - Range { from: '𝑪', to: '𝑪', mapping: Mapped("c") }, - Range { from: '𝑫', to: '𝑫', mapping: Mapped("d") }, - Range { from: '𝑬', to: '𝑬', mapping: Mapped("e") }, - Range { from: '𝑭', to: '𝑭', mapping: Mapped("f") }, - Range { from: '𝑮', to: '𝑮', mapping: Mapped("g") }, - Range { from: '𝑯', to: '𝑯', mapping: Mapped("h") }, - Range { from: '𝑰', to: '𝑰', mapping: Mapped("i") }, - Range { from: '𝑱', to: '𝑱', mapping: Mapped("j") }, - Range { from: '𝑲', to: '𝑲', mapping: Mapped("k") }, - Range { from: '𝑳', to: '𝑳', mapping: Mapped("l") }, - Range { from: '𝑴', to: '𝑴', mapping: Mapped("m") }, - Range { from: '𝑵', to: '𝑵', mapping: Mapped("n") }, - Range { from: '𝑶', to: '𝑶', mapping: Mapped("o") }, - Range { from: '𝑷', to: '𝑷', mapping: Mapped("p") }, - Range { from: '𝑸', to: '𝑸', mapping: Mapped("q") }, - Range { from: '𝑹', to: '𝑹', mapping: Mapped("r") }, - Range { from: '𝑺', to: '𝑺', mapping: Mapped("s") }, - Range { from: '𝑻', to: '𝑻', mapping: Mapped("t") }, - Range { from: '𝑼', to: '𝑼', mapping: Mapped("u") }, - Range { from: '𝑽', to: '𝑽', mapping: Mapped("v") }, - Range { from: '𝑾', to: '𝑾', mapping: Mapped("w") }, - Range { from: '𝑿', to: '𝑿', mapping: Mapped("x") }, - Range { from: '𝒀', to: '𝒀', mapping: Mapped("y") }, - Range { from: '𝒁', to: '𝒁', mapping: Mapped("z") }, - Range { from: '𝒂', to: '𝒂', mapping: Mapped("a") }, - Range { from: '𝒃', to: '𝒃', mapping: Mapped("b") }, - Range { from: '𝒄', to: '𝒄', mapping: Mapped("c") }, - Range { from: '𝒅', to: '𝒅', mapping: Mapped("d") }, - Range { from: '𝒆', to: '𝒆', mapping: Mapped("e") }, - Range { from: '𝒇', to: '𝒇', mapping: Mapped("f") }, - Range { from: '𝒈', to: '𝒈', mapping: Mapped("g") }, - Range { from: '𝒉', to: '𝒉', mapping: Mapped("h") }, - Range { from: '𝒊', to: '𝒊', mapping: Mapped("i") }, - Range { from: '𝒋', to: '𝒋', mapping: Mapped("j") }, - Range { from: '𝒌', to: '𝒌', mapping: Mapped("k") }, - Range { from: '𝒍', to: '𝒍', mapping: Mapped("l") }, - Range { from: '𝒎', to: '𝒎', mapping: Mapped("m") }, - Range { from: '𝒏', to: '𝒏', mapping: Mapped("n") }, - Range { from: '𝒐', to: '𝒐', mapping: Mapped("o") }, - Range { from: '𝒑', to: '𝒑', mapping: Mapped("p") }, - Range { from: '𝒒', to: '𝒒', mapping: Mapped("q") }, - Range { from: '𝒓', to: '𝒓', mapping: Mapped("r") }, - Range { from: '𝒔', to: '𝒔', mapping: Mapped("s") }, - Range { from: '𝒕', to: '𝒕', mapping: Mapped("t") }, - Range { from: '𝒖', to: '𝒖', mapping: Mapped("u") }, - Range { from: '𝒗', to: '𝒗', mapping: Mapped("v") }, - Range { from: '𝒘', to: '𝒘', mapping: Mapped("w") }, - Range { from: '𝒙', to: '𝒙', mapping: Mapped("x") }, - Range { from: '𝒚', to: '𝒚', mapping: Mapped("y") }, - Range { from: '𝒛', to: '𝒛', mapping: Mapped("z") }, - Range { from: '𝒜', to: '𝒜', mapping: Mapped("a") }, - Range { from: '𝒝', to: '𝒝', mapping: Disallowed }, - Range { from: '𝒞', to: '𝒞', mapping: Mapped("c") }, - Range { from: '𝒟', to: '𝒟', mapping: Mapped("d") }, - Range { from: '𝒠', to: '𝒡', mapping: Disallowed }, - Range { from: '𝒢', to: '𝒢', mapping: Mapped("g") }, - Range { from: '𝒣', to: '𝒤', mapping: Disallowed }, - Range { from: '𝒥', to: '𝒥', mapping: Mapped("j") }, - Range { from: '𝒦', to: '𝒦', mapping: Mapped("k") }, - Range { from: '𝒧', to: '𝒨', mapping: Disallowed }, - Range { from: '𝒩', to: '𝒩', mapping: Mapped("n") }, - Range { from: '𝒪', to: '𝒪', mapping: Mapped("o") }, - Range { from: '𝒫', to: '𝒫', mapping: Mapped("p") }, - Range { from: '𝒬', to: '𝒬', mapping: Mapped("q") }, - Range { from: '𝒭', to: '𝒭', mapping: Disallowed }, - Range { from: '𝒮', to: '𝒮', mapping: Mapped("s") }, - Range { from: '𝒯', to: '𝒯', mapping: Mapped("t") }, - Range { from: '𝒰', to: '𝒰', mapping: Mapped("u") }, - Range { from: '𝒱', to: '𝒱', mapping: Mapped("v") }, - Range { from: '𝒲', to: '𝒲', mapping: Mapped("w") }, - Range { from: '𝒳', to: '𝒳', mapping: Mapped("x") }, - Range { from: '𝒴', to: '𝒴', mapping: Mapped("y") }, - Range { from: '𝒵', to: '𝒵', mapping: Mapped("z") }, - Range { from: '𝒶', to: '𝒶', mapping: Mapped("a") }, - Range { from: '𝒷', to: '𝒷', mapping: Mapped("b") }, - Range { from: '𝒸', to: '𝒸', mapping: Mapped("c") }, - Range { from: '𝒹', to: '𝒹', mapping: Mapped("d") }, - Range { from: '𝒺', to: '𝒺', mapping: Disallowed }, - Range { from: '𝒻', to: '𝒻', mapping: Mapped("f") }, - Range { from: '𝒼', to: '𝒼', mapping: Disallowed }, - Range { from: '𝒽', to: '𝒽', mapping: Mapped("h") }, - Range { from: '𝒾', to: '𝒾', mapping: Mapped("i") }, - Range { from: '𝒿', to: '𝒿', mapping: Mapped("j") }, - Range { from: '𝓀', to: '𝓀', mapping: Mapped("k") }, - Range { from: '𝓁', to: '𝓁', mapping: Mapped("l") }, - Range { from: '𝓂', to: '𝓂', mapping: Mapped("m") }, - Range { from: '𝓃', to: '𝓃', mapping: Mapped("n") }, - Range { from: '𝓄', to: '𝓄', mapping: Disallowed }, - Range { from: '𝓅', to: '𝓅', mapping: Mapped("p") }, - Range { from: '𝓆', to: '𝓆', mapping: Mapped("q") }, - Range { from: '𝓇', to: '𝓇', mapping: Mapped("r") }, - Range { from: '𝓈', to: '𝓈', mapping: Mapped("s") }, - Range { from: '𝓉', to: '𝓉', mapping: Mapped("t") }, - Range { from: '𝓊', to: '𝓊', mapping: Mapped("u") }, - Range { from: '𝓋', to: '𝓋', mapping: Mapped("v") }, - Range { from: '𝓌', to: '𝓌', mapping: Mapped("w") }, - Range { from: '𝓍', to: '𝓍', mapping: Mapped("x") }, - Range { from: '𝓎', to: '𝓎', mapping: Mapped("y") }, - Range { from: '𝓏', to: '𝓏', mapping: Mapped("z") }, - Range { from: '𝓐', to: '𝓐', mapping: Mapped("a") }, - Range { from: '𝓑', to: '𝓑', mapping: Mapped("b") }, - Range { from: '𝓒', to: '𝓒', mapping: Mapped("c") }, - Range { from: '𝓓', to: '𝓓', mapping: Mapped("d") }, - Range { from: '𝓔', to: '𝓔', mapping: Mapped("e") }, - Range { from: '𝓕', to: '𝓕', mapping: Mapped("f") }, - Range { from: '𝓖', to: '𝓖', mapping: Mapped("g") }, - Range { from: '𝓗', to: '𝓗', mapping: Mapped("h") }, - Range { from: '𝓘', to: '𝓘', mapping: Mapped("i") }, - Range { from: '𝓙', to: '𝓙', mapping: Mapped("j") }, - Range { from: '𝓚', to: '𝓚', mapping: Mapped("k") }, - Range { from: '𝓛', to: '𝓛', mapping: Mapped("l") }, - Range { from: '𝓜', to: '𝓜', mapping: Mapped("m") }, - Range { from: '𝓝', to: '𝓝', mapping: Mapped("n") }, - Range { from: '𝓞', to: '𝓞', mapping: Mapped("o") }, - Range { from: '𝓟', to: '𝓟', mapping: Mapped("p") }, - Range { from: '𝓠', to: '𝓠', mapping: Mapped("q") }, - Range { from: '𝓡', to: '𝓡', mapping: Mapped("r") }, - Range { from: '𝓢', to: '𝓢', mapping: Mapped("s") }, - Range { from: '𝓣', to: '𝓣', mapping: Mapped("t") }, - Range { from: '𝓤', to: '𝓤', mapping: Mapped("u") }, - Range { from: '𝓥', to: '𝓥', mapping: Mapped("v") }, - Range { from: '𝓦', to: '𝓦', mapping: Mapped("w") }, - Range { from: '𝓧', to: '𝓧', mapping: Mapped("x") }, - Range { from: '𝓨', to: '𝓨', mapping: Mapped("y") }, - Range { from: '𝓩', to: '𝓩', mapping: Mapped("z") }, - Range { from: '𝓪', to: '𝓪', mapping: Mapped("a") }, - Range { from: '𝓫', to: '𝓫', mapping: Mapped("b") }, - Range { from: '𝓬', to: '𝓬', mapping: Mapped("c") }, - Range { from: '𝓭', to: '𝓭', mapping: Mapped("d") }, - Range { from: '𝓮', to: '𝓮', mapping: Mapped("e") }, - Range { from: '𝓯', to: '𝓯', mapping: Mapped("f") }, - Range { from: '𝓰', to: '𝓰', mapping: Mapped("g") }, - Range { from: '𝓱', to: '𝓱', mapping: Mapped("h") }, - Range { from: '𝓲', to: '𝓲', mapping: Mapped("i") }, - Range { from: '𝓳', to: '𝓳', mapping: Mapped("j") }, - Range { from: '𝓴', to: '𝓴', mapping: Mapped("k") }, - Range { from: '𝓵', to: '𝓵', mapping: Mapped("l") }, - Range { from: '𝓶', to: '𝓶', mapping: Mapped("m") }, - Range { from: '𝓷', to: '𝓷', mapping: Mapped("n") }, - Range { from: '𝓸', to: '𝓸', mapping: Mapped("o") }, - Range { from: '𝓹', to: '𝓹', mapping: Mapped("p") }, - Range { from: '𝓺', to: '𝓺', mapping: Mapped("q") }, - Range { from: '𝓻', to: '𝓻', mapping: Mapped("r") }, - Range { from: '𝓼', to: '𝓼', mapping: Mapped("s") }, - Range { from: '𝓽', to: '𝓽', mapping: Mapped("t") }, - Range { from: '𝓾', to: '𝓾', mapping: Mapped("u") }, - Range { from: '𝓿', to: '𝓿', mapping: Mapped("v") }, - Range { from: '𝔀', to: '𝔀', mapping: Mapped("w") }, - Range { from: '𝔁', to: '𝔁', mapping: Mapped("x") }, - Range { from: '𝔂', to: '𝔂', mapping: Mapped("y") }, - Range { from: '𝔃', to: '𝔃', mapping: Mapped("z") }, - Range { from: '𝔄', to: '𝔄', mapping: Mapped("a") }, - Range { from: '𝔅', to: '𝔅', mapping: Mapped("b") }, - Range { from: '𝔆', to: '𝔆', mapping: Disallowed }, - Range { from: '𝔇', to: '𝔇', mapping: Mapped("d") }, - Range { from: '𝔈', to: '𝔈', mapping: Mapped("e") }, - Range { from: '𝔉', to: '𝔉', mapping: Mapped("f") }, - Range { from: '𝔊', to: '𝔊', mapping: Mapped("g") }, - Range { from: '𝔋', to: '𝔌', mapping: Disallowed }, - Range { from: '𝔍', to: '𝔍', mapping: Mapped("j") }, - Range { from: '𝔎', to: '𝔎', mapping: Mapped("k") }, - Range { from: '𝔏', to: '𝔏', mapping: Mapped("l") }, - Range { from: '𝔐', to: '𝔐', mapping: Mapped("m") }, - Range { from: '𝔑', to: '𝔑', mapping: Mapped("n") }, - Range { from: '𝔒', to: '𝔒', mapping: Mapped("o") }, - Range { from: '𝔓', to: '𝔓', mapping: Mapped("p") }, - Range { from: '𝔔', to: '𝔔', mapping: Mapped("q") }, - Range { from: '𝔕', to: '𝔕', mapping: Disallowed }, - Range { from: '𝔖', to: '𝔖', mapping: Mapped("s") }, - Range { from: '𝔗', to: '𝔗', mapping: Mapped("t") }, - Range { from: '𝔘', to: '𝔘', mapping: Mapped("u") }, - Range { from: '𝔙', to: '𝔙', mapping: Mapped("v") }, - Range { from: '𝔚', to: '𝔚', mapping: Mapped("w") }, - Range { from: '𝔛', to: '𝔛', mapping: Mapped("x") }, - Range { from: '𝔜', to: '𝔜', mapping: Mapped("y") }, - Range { from: '𝔝', to: '𝔝', mapping: Disallowed }, - Range { from: '𝔞', to: '𝔞', mapping: Mapped("a") }, - Range { from: '𝔟', to: '𝔟', mapping: Mapped("b") }, - Range { from: '𝔠', to: '𝔠', mapping: Mapped("c") }, - Range { from: '𝔡', to: '𝔡', mapping: Mapped("d") }, - Range { from: '𝔢', to: '𝔢', mapping: Mapped("e") }, - Range { from: '𝔣', to: '𝔣', mapping: Mapped("f") }, - Range { from: '𝔤', to: '𝔤', mapping: Mapped("g") }, - Range { from: '𝔥', to: '𝔥', mapping: Mapped("h") }, - Range { from: '𝔦', to: '𝔦', mapping: Mapped("i") }, - Range { from: '𝔧', to: '𝔧', mapping: Mapped("j") }, - Range { from: '𝔨', to: '𝔨', mapping: Mapped("k") }, - Range { from: '𝔩', to: '𝔩', mapping: Mapped("l") }, - Range { from: '𝔪', to: '𝔪', mapping: Mapped("m") }, - Range { from: '𝔫', to: '𝔫', mapping: Mapped("n") }, - Range { from: '𝔬', to: '𝔬', mapping: Mapped("o") }, - Range { from: '𝔭', to: '𝔭', mapping: Mapped("p") }, - Range { from: '𝔮', to: '𝔮', mapping: Mapped("q") }, - Range { from: '𝔯', to: '𝔯', mapping: Mapped("r") }, - Range { from: '𝔰', to: '𝔰', mapping: Mapped("s") }, - Range { from: '𝔱', to: '𝔱', mapping: Mapped("t") }, - Range { from: '𝔲', to: '𝔲', mapping: Mapped("u") }, - Range { from: '𝔳', to: '𝔳', mapping: Mapped("v") }, - Range { from: '𝔴', to: '𝔴', mapping: Mapped("w") }, - Range { from: '𝔵', to: '𝔵', mapping: Mapped("x") }, - Range { from: '𝔶', to: '𝔶', mapping: Mapped("y") }, - Range { from: '𝔷', to: '𝔷', mapping: Mapped("z") }, - Range { from: '𝔸', to: '𝔸', mapping: Mapped("a") }, - Range { from: '𝔹', to: '𝔹', mapping: Mapped("b") }, - Range { from: '𝔺', to: '𝔺', mapping: Disallowed }, - Range { from: '𝔻', to: '𝔻', mapping: Mapped("d") }, - Range { from: '𝔼', to: '𝔼', mapping: Mapped("e") }, - Range { from: '𝔽', to: '𝔽', mapping: Mapped("f") }, - Range { from: '𝔾', to: '𝔾', mapping: Mapped("g") }, - Range { from: '𝔿', to: '𝔿', mapping: Disallowed }, - Range { from: '𝕀', to: '𝕀', mapping: Mapped("i") }, - Range { from: '𝕁', to: '𝕁', mapping: Mapped("j") }, - Range { from: '𝕂', to: '𝕂', mapping: Mapped("k") }, - Range { from: '𝕃', to: '𝕃', mapping: Mapped("l") }, - Range { from: '𝕄', to: '𝕄', mapping: Mapped("m") }, - Range { from: '𝕅', to: '𝕅', mapping: Disallowed }, - Range { from: '𝕆', to: '𝕆', mapping: Mapped("o") }, - Range { from: '𝕇', to: '𝕉', mapping: Disallowed }, - Range { from: '𝕊', to: '𝕊', mapping: Mapped("s") }, - Range { from: '𝕋', to: '𝕋', mapping: Mapped("t") }, - Range { from: '𝕌', to: '𝕌', mapping: Mapped("u") }, - Range { from: '𝕍', to: '𝕍', mapping: Mapped("v") }, - Range { from: '𝕎', to: '𝕎', mapping: Mapped("w") }, - Range { from: '𝕏', to: '𝕏', mapping: Mapped("x") }, - Range { from: '𝕐', to: '𝕐', mapping: Mapped("y") }, - Range { from: '𝕑', to: '𝕑', mapping: Disallowed }, - Range { from: '𝕒', to: '𝕒', mapping: Mapped("a") }, - Range { from: '𝕓', to: '𝕓', mapping: Mapped("b") }, - Range { from: '𝕔', to: '𝕔', mapping: Mapped("c") }, - Range { from: '𝕕', to: '𝕕', mapping: Mapped("d") }, - Range { from: '𝕖', to: '𝕖', mapping: Mapped("e") }, - Range { from: '𝕗', to: '𝕗', mapping: Mapped("f") }, - Range { from: '𝕘', to: '𝕘', mapping: Mapped("g") }, - Range { from: '𝕙', to: '𝕙', mapping: Mapped("h") }, - Range { from: '𝕚', to: '𝕚', mapping: Mapped("i") }, - Range { from: '𝕛', to: '𝕛', mapping: Mapped("j") }, - Range { from: '𝕜', to: '𝕜', mapping: Mapped("k") }, - Range { from: '𝕝', to: '𝕝', mapping: Mapped("l") }, - Range { from: '𝕞', to: '𝕞', mapping: Mapped("m") }, - Range { from: '𝕟', to: '𝕟', mapping: Mapped("n") }, - Range { from: '𝕠', to: '𝕠', mapping: Mapped("o") }, - Range { from: '𝕡', to: '𝕡', mapping: Mapped("p") }, - Range { from: '𝕢', to: '𝕢', mapping: Mapped("q") }, - Range { from: '𝕣', to: '𝕣', mapping: Mapped("r") }, - Range { from: '𝕤', to: '𝕤', mapping: Mapped("s") }, - Range { from: '𝕥', to: '𝕥', mapping: Mapped("t") }, - Range { from: '𝕦', to: '𝕦', mapping: Mapped("u") }, - Range { from: '𝕧', to: '𝕧', mapping: Mapped("v") }, - Range { from: '𝕨', to: '𝕨', mapping: Mapped("w") }, - Range { from: '𝕩', to: '𝕩', mapping: Mapped("x") }, - Range { from: '𝕪', to: '𝕪', mapping: Mapped("y") }, - Range { from: '𝕫', to: '𝕫', mapping: Mapped("z") }, - Range { from: '𝕬', to: '𝕬', mapping: Mapped("a") }, - Range { from: '𝕭', to: '𝕭', mapping: Mapped("b") }, - Range { from: '𝕮', to: '𝕮', mapping: Mapped("c") }, - Range { from: '𝕯', to: '𝕯', mapping: Mapped("d") }, - Range { from: '𝕰', to: '𝕰', mapping: Mapped("e") }, - Range { from: '𝕱', to: '𝕱', mapping: Mapped("f") }, - Range { from: '𝕲', to: '𝕲', mapping: Mapped("g") }, - Range { from: '𝕳', to: '𝕳', mapping: Mapped("h") }, - Range { from: '𝕴', to: '𝕴', mapping: Mapped("i") }, - Range { from: '𝕵', to: '𝕵', mapping: Mapped("j") }, - Range { from: '𝕶', to: '𝕶', mapping: Mapped("k") }, - Range { from: '𝕷', to: '𝕷', mapping: Mapped("l") }, - Range { from: '𝕸', to: '𝕸', mapping: Mapped("m") }, - Range { from: '𝕹', to: '𝕹', mapping: Mapped("n") }, - Range { from: '𝕺', to: '𝕺', mapping: Mapped("o") }, - Range { from: '𝕻', to: '𝕻', mapping: Mapped("p") }, - Range { from: '𝕼', to: '𝕼', mapping: Mapped("q") }, - Range { from: '𝕽', to: '𝕽', mapping: Mapped("r") }, - Range { from: '𝕾', to: '𝕾', mapping: Mapped("s") }, - Range { from: '𝕿', to: '𝕿', mapping: Mapped("t") }, - Range { from: '𝖀', to: '𝖀', mapping: Mapped("u") }, - Range { from: '𝖁', to: '𝖁', mapping: Mapped("v") }, - Range { from: '𝖂', to: '𝖂', mapping: Mapped("w") }, - Range { from: '𝖃', to: '𝖃', mapping: Mapped("x") }, - Range { from: '𝖄', to: '𝖄', mapping: Mapped("y") }, - Range { from: '𝖅', to: '𝖅', mapping: Mapped("z") }, - Range { from: '𝖆', to: '𝖆', mapping: Mapped("a") }, - Range { from: '𝖇', to: '𝖇', mapping: Mapped("b") }, - Range { from: '𝖈', to: '𝖈', mapping: Mapped("c") }, - Range { from: '𝖉', to: '𝖉', mapping: Mapped("d") }, - Range { from: '𝖊', to: '𝖊', mapping: Mapped("e") }, - Range { from: '𝖋', to: '𝖋', mapping: Mapped("f") }, - Range { from: '𝖌', to: '𝖌', mapping: Mapped("g") }, - Range { from: '𝖍', to: '𝖍', mapping: Mapped("h") }, - Range { from: '𝖎', to: '𝖎', mapping: Mapped("i") }, - Range { from: '𝖏', to: '𝖏', mapping: Mapped("j") }, - Range { from: '𝖐', to: '𝖐', mapping: Mapped("k") }, - Range { from: '𝖑', to: '𝖑', mapping: Mapped("l") }, - Range { from: '𝖒', to: '𝖒', mapping: Mapped("m") }, - Range { from: '𝖓', to: '𝖓', mapping: Mapped("n") }, - Range { from: '𝖔', to: '𝖔', mapping: Mapped("o") }, - Range { from: '𝖕', to: '𝖕', mapping: Mapped("p") }, - Range { from: '𝖖', to: '𝖖', mapping: Mapped("q") }, - Range { from: '𝖗', to: '𝖗', mapping: Mapped("r") }, - Range { from: '𝖘', to: '𝖘', mapping: Mapped("s") }, - Range { from: '𝖙', to: '𝖙', mapping: Mapped("t") }, - Range { from: '𝖚', to: '𝖚', mapping: Mapped("u") }, - Range { from: '𝖛', to: '𝖛', mapping: Mapped("v") }, - Range { from: '𝖜', to: '𝖜', mapping: Mapped("w") }, - Range { from: '𝖝', to: '𝖝', mapping: Mapped("x") }, - Range { from: '𝖞', to: '𝖞', mapping: Mapped("y") }, - Range { from: '𝖟', to: '𝖟', mapping: Mapped("z") }, - Range { from: '𝖠', to: '𝖠', mapping: Mapped("a") }, - Range { from: '𝖡', to: '𝖡', mapping: Mapped("b") }, - Range { from: '𝖢', to: '𝖢', mapping: Mapped("c") }, - Range { from: '𝖣', to: '𝖣', mapping: Mapped("d") }, - Range { from: '𝖤', to: '𝖤', mapping: Mapped("e") }, - Range { from: '𝖥', to: '𝖥', mapping: Mapped("f") }, - Range { from: '𝖦', to: '𝖦', mapping: Mapped("g") }, - Range { from: '𝖧', to: '𝖧', mapping: Mapped("h") }, - Range { from: '𝖨', to: '𝖨', mapping: Mapped("i") }, - Range { from: '𝖩', to: '𝖩', mapping: Mapped("j") }, - Range { from: '𝖪', to: '𝖪', mapping: Mapped("k") }, - Range { from: '𝖫', to: '𝖫', mapping: Mapped("l") }, - Range { from: '𝖬', to: '𝖬', mapping: Mapped("m") }, - Range { from: '𝖭', to: '𝖭', mapping: Mapped("n") }, - Range { from: '𝖮', to: '𝖮', mapping: Mapped("o") }, - Range { from: '𝖯', to: '𝖯', mapping: Mapped("p") }, - Range { from: '𝖰', to: '𝖰', mapping: Mapped("q") }, - Range { from: '𝖱', to: '𝖱', mapping: Mapped("r") }, - Range { from: '𝖲', to: '𝖲', mapping: Mapped("s") }, - Range { from: '𝖳', to: '𝖳', mapping: Mapped("t") }, - Range { from: '𝖴', to: '𝖴', mapping: Mapped("u") }, - Range { from: '𝖵', to: '𝖵', mapping: Mapped("v") }, - Range { from: '𝖶', to: '𝖶', mapping: Mapped("w") }, - Range { from: '𝖷', to: '𝖷', mapping: Mapped("x") }, - Range { from: '𝖸', to: '𝖸', mapping: Mapped("y") }, - Range { from: '𝖹', to: '𝖹', mapping: Mapped("z") }, - Range { from: '𝖺', to: '𝖺', mapping: Mapped("a") }, - Range { from: '𝖻', to: '𝖻', mapping: Mapped("b") }, - Range { from: '𝖼', to: '𝖼', mapping: Mapped("c") }, - Range { from: '𝖽', to: '𝖽', mapping: Mapped("d") }, - Range { from: '𝖾', to: '𝖾', mapping: Mapped("e") }, - Range { from: '𝖿', to: '𝖿', mapping: Mapped("f") }, - Range { from: '𝗀', to: '𝗀', mapping: Mapped("g") }, - Range { from: '𝗁', to: '𝗁', mapping: Mapped("h") }, - Range { from: '𝗂', to: '𝗂', mapping: Mapped("i") }, - Range { from: '𝗃', to: '𝗃', mapping: Mapped("j") }, - Range { from: '𝗄', to: '𝗄', mapping: Mapped("k") }, - Range { from: '𝗅', to: '𝗅', mapping: Mapped("l") }, - Range { from: '𝗆', to: '𝗆', mapping: Mapped("m") }, - Range { from: '𝗇', to: '𝗇', mapping: Mapped("n") }, - Range { from: '𝗈', to: '𝗈', mapping: Mapped("o") }, - Range { from: '𝗉', to: '𝗉', mapping: Mapped("p") }, - Range { from: '𝗊', to: '𝗊', mapping: Mapped("q") }, - Range { from: '𝗋', to: '𝗋', mapping: Mapped("r") }, - Range { from: '𝗌', to: '𝗌', mapping: Mapped("s") }, - Range { from: '𝗍', to: '𝗍', mapping: Mapped("t") }, - Range { from: '𝗎', to: '𝗎', mapping: Mapped("u") }, - Range { from: '𝗏', to: '𝗏', mapping: Mapped("v") }, - Range { from: '𝗐', to: '𝗐', mapping: Mapped("w") }, - Range { from: '𝗑', to: '𝗑', mapping: Mapped("x") }, - Range { from: '𝗒', to: '𝗒', mapping: Mapped("y") }, - Range { from: '𝗓', to: '𝗓', mapping: Mapped("z") }, - Range { from: '𝗔', to: '𝗔', mapping: Mapped("a") }, - Range { from: '𝗕', to: '𝗕', mapping: Mapped("b") }, - Range { from: '𝗖', to: '𝗖', mapping: Mapped("c") }, - Range { from: '𝗗', to: '𝗗', mapping: Mapped("d") }, - Range { from: '𝗘', to: '𝗘', mapping: Mapped("e") }, - Range { from: '𝗙', to: '𝗙', mapping: Mapped("f") }, - Range { from: '𝗚', to: '𝗚', mapping: Mapped("g") }, - Range { from: '𝗛', to: '𝗛', mapping: Mapped("h") }, - Range { from: '𝗜', to: '𝗜', mapping: Mapped("i") }, - Range { from: '𝗝', to: '𝗝', mapping: Mapped("j") }, - Range { from: '𝗞', to: '𝗞', mapping: Mapped("k") }, - Range { from: '𝗟', to: '𝗟', mapping: Mapped("l") }, - Range { from: '𝗠', to: '𝗠', mapping: Mapped("m") }, - Range { from: '𝗡', to: '𝗡', mapping: Mapped("n") }, - Range { from: '𝗢', to: '𝗢', mapping: Mapped("o") }, - Range { from: '𝗣', to: '𝗣', mapping: Mapped("p") }, - Range { from: '𝗤', to: '𝗤', mapping: Mapped("q") }, - Range { from: '𝗥', to: '𝗥', mapping: Mapped("r") }, - Range { from: '𝗦', to: '𝗦', mapping: Mapped("s") }, - Range { from: '𝗧', to: '𝗧', mapping: Mapped("t") }, - Range { from: '𝗨', to: '𝗨', mapping: Mapped("u") }, - Range { from: '𝗩', to: '𝗩', mapping: Mapped("v") }, - Range { from: '𝗪', to: '𝗪', mapping: Mapped("w") }, - Range { from: '𝗫', to: '𝗫', mapping: Mapped("x") }, - Range { from: '𝗬', to: '𝗬', mapping: Mapped("y") }, - Range { from: '𝗭', to: '𝗭', mapping: Mapped("z") }, - Range { from: '𝗮', to: '𝗮', mapping: Mapped("a") }, - Range { from: '𝗯', to: '𝗯', mapping: Mapped("b") }, - Range { from: '𝗰', to: '𝗰', mapping: Mapped("c") }, - Range { from: '𝗱', to: '𝗱', mapping: Mapped("d") }, - Range { from: '𝗲', to: '𝗲', mapping: Mapped("e") }, - Range { from: '𝗳', to: '𝗳', mapping: Mapped("f") }, - Range { from: '𝗴', to: '𝗴', mapping: Mapped("g") }, - Range { from: '𝗵', to: '𝗵', mapping: Mapped("h") }, - Range { from: '𝗶', to: '𝗶', mapping: Mapped("i") }, - Range { from: '𝗷', to: '𝗷', mapping: Mapped("j") }, - Range { from: '𝗸', to: '𝗸', mapping: Mapped("k") }, - Range { from: '𝗹', to: '𝗹', mapping: Mapped("l") }, - Range { from: '𝗺', to: '𝗺', mapping: Mapped("m") }, - Range { from: '𝗻', to: '𝗻', mapping: Mapped("n") }, - Range { from: '𝗼', to: '𝗼', mapping: Mapped("o") }, - Range { from: '𝗽', to: '𝗽', mapping: Mapped("p") }, - Range { from: '𝗾', to: '𝗾', mapping: Mapped("q") }, - Range { from: '𝗿', to: '𝗿', mapping: Mapped("r") }, - Range { from: '𝘀', to: '𝘀', mapping: Mapped("s") }, - Range { from: '𝘁', to: '𝘁', mapping: Mapped("t") }, - Range { from: '𝘂', to: '𝘂', mapping: Mapped("u") }, - Range { from: '𝘃', to: '𝘃', mapping: Mapped("v") }, - Range { from: '𝘄', to: '𝘄', mapping: Mapped("w") }, - Range { from: '𝘅', to: '𝘅', mapping: Mapped("x") }, - Range { from: '𝘆', to: '𝘆', mapping: Mapped("y") }, - Range { from: '𝘇', to: '𝘇', mapping: Mapped("z") }, - Range { from: '𝘈', to: '𝘈', mapping: Mapped("a") }, - Range { from: '𝘉', to: '𝘉', mapping: Mapped("b") }, - Range { from: '𝘊', to: '𝘊', mapping: Mapped("c") }, - Range { from: '𝘋', to: '𝘋', mapping: Mapped("d") }, - Range { from: '𝘌', to: '𝘌', mapping: Mapped("e") }, - Range { from: '𝘍', to: '𝘍', mapping: Mapped("f") }, - Range { from: '𝘎', to: '𝘎', mapping: Mapped("g") }, - Range { from: '𝘏', to: '𝘏', mapping: Mapped("h") }, - Range { from: '𝘐', to: '𝘐', mapping: Mapped("i") }, - Range { from: '𝘑', to: '𝘑', mapping: Mapped("j") }, - Range { from: '𝘒', to: '𝘒', mapping: Mapped("k") }, - Range { from: '𝘓', to: '𝘓', mapping: Mapped("l") }, - Range { from: '𝘔', to: '𝘔', mapping: Mapped("m") }, - Range { from: '𝘕', to: '𝘕', mapping: Mapped("n") }, - Range { from: '𝘖', to: '𝘖', mapping: Mapped("o") }, - Range { from: '𝘗', to: '𝘗', mapping: Mapped("p") }, - Range { from: '𝘘', to: '𝘘', mapping: Mapped("q") }, - Range { from: '𝘙', to: '𝘙', mapping: Mapped("r") }, - Range { from: '𝘚', to: '𝘚', mapping: Mapped("s") }, - Range { from: '𝘛', to: '𝘛', mapping: Mapped("t") }, - Range { from: '𝘜', to: '𝘜', mapping: Mapped("u") }, - Range { from: '𝘝', to: '𝘝', mapping: Mapped("v") }, - Range { from: '𝘞', to: '𝘞', mapping: Mapped("w") }, - Range { from: '𝘟', to: '𝘟', mapping: Mapped("x") }, - Range { from: '𝘠', to: '𝘠', mapping: Mapped("y") }, - Range { from: '𝘡', to: '𝘡', mapping: Mapped("z") }, - Range { from: '𝘢', to: '𝘢', mapping: Mapped("a") }, - Range { from: '𝘣', to: '𝘣', mapping: Mapped("b") }, - Range { from: '𝘤', to: '𝘤', mapping: Mapped("c") }, - Range { from: '𝘥', to: '𝘥', mapping: Mapped("d") }, - Range { from: '𝘦', to: '𝘦', mapping: Mapped("e") }, - Range { from: '𝘧', to: '𝘧', mapping: Mapped("f") }, - Range { from: '𝘨', to: '𝘨', mapping: Mapped("g") }, - Range { from: '𝘩', to: '𝘩', mapping: Mapped("h") }, - Range { from: '𝘪', to: '𝘪', mapping: Mapped("i") }, - Range { from: '𝘫', to: '𝘫', mapping: Mapped("j") }, - Range { from: '𝘬', to: '𝘬', mapping: Mapped("k") }, - Range { from: '𝘭', to: '𝘭', mapping: Mapped("l") }, - Range { from: '𝘮', to: '𝘮', mapping: Mapped("m") }, - Range { from: '𝘯', to: '𝘯', mapping: Mapped("n") }, - Range { from: '𝘰', to: '𝘰', mapping: Mapped("o") }, - Range { from: '𝘱', to: '𝘱', mapping: Mapped("p") }, - Range { from: '𝘲', to: '𝘲', mapping: Mapped("q") }, - Range { from: '𝘳', to: '𝘳', mapping: Mapped("r") }, - Range { from: '𝘴', to: '𝘴', mapping: Mapped("s") }, - Range { from: '𝘵', to: '𝘵', mapping: Mapped("t") }, - Range { from: '𝘶', to: '𝘶', mapping: Mapped("u") }, - Range { from: '𝘷', to: '𝘷', mapping: Mapped("v") }, - Range { from: '𝘸', to: '𝘸', mapping: Mapped("w") }, - Range { from: '𝘹', to: '𝘹', mapping: Mapped("x") }, - Range { from: '𝘺', to: '𝘺', mapping: Mapped("y") }, - Range { from: '𝘻', to: '𝘻', mapping: Mapped("z") }, - Range { from: '𝘼', to: '𝘼', mapping: Mapped("a") }, - Range { from: '𝘽', to: '𝘽', mapping: Mapped("b") }, - Range { from: '𝘾', to: '𝘾', mapping: Mapped("c") }, - Range { from: '𝘿', to: '𝘿', mapping: Mapped("d") }, - Range { from: '𝙀', to: '𝙀', mapping: Mapped("e") }, - Range { from: '𝙁', to: '𝙁', mapping: Mapped("f") }, - Range { from: '𝙂', to: '𝙂', mapping: Mapped("g") }, - Range { from: '𝙃', to: '𝙃', mapping: Mapped("h") }, - Range { from: '𝙄', to: '𝙄', mapping: Mapped("i") }, - Range { from: '𝙅', to: '𝙅', mapping: Mapped("j") }, - Range { from: '𝙆', to: '𝙆', mapping: Mapped("k") }, - Range { from: '𝙇', to: '𝙇', mapping: Mapped("l") }, - Range { from: '𝙈', to: '𝙈', mapping: Mapped("m") }, - Range { from: '𝙉', to: '𝙉', mapping: Mapped("n") }, - Range { from: '𝙊', to: '𝙊', mapping: Mapped("o") }, - Range { from: '𝙋', to: '𝙋', mapping: Mapped("p") }, - Range { from: '𝙌', to: '𝙌', mapping: Mapped("q") }, - Range { from: '𝙍', to: '𝙍', mapping: Mapped("r") }, - Range { from: '𝙎', to: '𝙎', mapping: Mapped("s") }, - Range { from: '𝙏', to: '𝙏', mapping: Mapped("t") }, - Range { from: '𝙐', to: '𝙐', mapping: Mapped("u") }, - Range { from: '𝙑', to: '𝙑', mapping: Mapped("v") }, - Range { from: '𝙒', to: '𝙒', mapping: Mapped("w") }, - Range { from: '𝙓', to: '𝙓', mapping: Mapped("x") }, - Range { from: '𝙔', to: '𝙔', mapping: Mapped("y") }, - Range { from: '𝙕', to: '𝙕', mapping: Mapped("z") }, - Range { from: '𝙖', to: '𝙖', mapping: Mapped("a") }, - Range { from: '𝙗', to: '𝙗', mapping: Mapped("b") }, - Range { from: '𝙘', to: '𝙘', mapping: Mapped("c") }, - Range { from: '𝙙', to: '𝙙', mapping: Mapped("d") }, - Range { from: '𝙚', to: '𝙚', mapping: Mapped("e") }, - Range { from: '𝙛', to: '𝙛', mapping: Mapped("f") }, - Range { from: '𝙜', to: '𝙜', mapping: Mapped("g") }, - Range { from: '𝙝', to: '𝙝', mapping: Mapped("h") }, - Range { from: '𝙞', to: '𝙞', mapping: Mapped("i") }, - Range { from: '𝙟', to: '𝙟', mapping: Mapped("j") }, - Range { from: '𝙠', to: '𝙠', mapping: Mapped("k") }, - Range { from: '𝙡', to: '𝙡', mapping: Mapped("l") }, - Range { from: '𝙢', to: '𝙢', mapping: Mapped("m") }, - Range { from: '𝙣', to: '𝙣', mapping: Mapped("n") }, - Range { from: '𝙤', to: '𝙤', mapping: Mapped("o") }, - Range { from: '𝙥', to: '𝙥', mapping: Mapped("p") }, - Range { from: '𝙦', to: '𝙦', mapping: Mapped("q") }, - Range { from: '𝙧', to: '𝙧', mapping: Mapped("r") }, - Range { from: '𝙨', to: '𝙨', mapping: Mapped("s") }, - Range { from: '𝙩', to: '𝙩', mapping: Mapped("t") }, - Range { from: '𝙪', to: '𝙪', mapping: Mapped("u") }, - Range { from: '𝙫', to: '𝙫', mapping: Mapped("v") }, - Range { from: '𝙬', to: '𝙬', mapping: Mapped("w") }, - Range { from: '𝙭', to: '𝙭', mapping: Mapped("x") }, - Range { from: '𝙮', to: '𝙮', mapping: Mapped("y") }, - Range { from: '𝙯', to: '𝙯', mapping: Mapped("z") }, - Range { from: '𝙰', to: '𝙰', mapping: Mapped("a") }, - Range { from: '𝙱', to: '𝙱', mapping: Mapped("b") }, - Range { from: '𝙲', to: '𝙲', mapping: Mapped("c") }, - Range { from: '𝙳', to: '𝙳', mapping: Mapped("d") }, - Range { from: '𝙴', to: '𝙴', mapping: Mapped("e") }, - Range { from: '𝙵', to: '𝙵', mapping: Mapped("f") }, - Range { from: '𝙶', to: '𝙶', mapping: Mapped("g") }, - Range { from: '𝙷', to: '𝙷', mapping: Mapped("h") }, - Range { from: '𝙸', to: '𝙸', mapping: Mapped("i") }, - Range { from: '𝙹', to: '𝙹', mapping: Mapped("j") }, - Range { from: '𝙺', to: '𝙺', mapping: Mapped("k") }, - Range { from: '𝙻', to: '𝙻', mapping: Mapped("l") }, - Range { from: '𝙼', to: '𝙼', mapping: Mapped("m") }, - Range { from: '𝙽', to: '𝙽', mapping: Mapped("n") }, - Range { from: '𝙾', to: '𝙾', mapping: Mapped("o") }, - Range { from: '𝙿', to: '𝙿', mapping: Mapped("p") }, - Range { from: '𝚀', to: '𝚀', mapping: Mapped("q") }, - Range { from: '𝚁', to: '𝚁', mapping: Mapped("r") }, - Range { from: '𝚂', to: '𝚂', mapping: Mapped("s") }, - Range { from: '𝚃', to: '𝚃', mapping: Mapped("t") }, - Range { from: '𝚄', to: '𝚄', mapping: Mapped("u") }, - Range { from: '𝚅', to: '𝚅', mapping: Mapped("v") }, - Range { from: '𝚆', to: '𝚆', mapping: Mapped("w") }, - Range { from: '𝚇', to: '𝚇', mapping: Mapped("x") }, - Range { from: '𝚈', to: '𝚈', mapping: Mapped("y") }, - Range { from: '𝚉', to: '𝚉', mapping: Mapped("z") }, - Range { from: '𝚊', to: '𝚊', mapping: Mapped("a") }, - Range { from: '𝚋', to: '𝚋', mapping: Mapped("b") }, - Range { from: '𝚌', to: '𝚌', mapping: Mapped("c") }, - Range { from: '𝚍', to: '𝚍', mapping: Mapped("d") }, - Range { from: '𝚎', to: '𝚎', mapping: Mapped("e") }, - Range { from: '𝚏', to: '𝚏', mapping: Mapped("f") }, - Range { from: '𝚐', to: '𝚐', mapping: Mapped("g") }, - Range { from: '𝚑', to: '𝚑', mapping: Mapped("h") }, - Range { from: '𝚒', to: '𝚒', mapping: Mapped("i") }, - Range { from: '𝚓', to: '𝚓', mapping: Mapped("j") }, - Range { from: '𝚔', to: '𝚔', mapping: Mapped("k") }, - Range { from: '𝚕', to: '𝚕', mapping: Mapped("l") }, - Range { from: '𝚖', to: '𝚖', mapping: Mapped("m") }, - Range { from: '𝚗', to: '𝚗', mapping: Mapped("n") }, - Range { from: '𝚘', to: '𝚘', mapping: Mapped("o") }, - Range { from: '𝚙', to: '𝚙', mapping: Mapped("p") }, - Range { from: '𝚚', to: '𝚚', mapping: Mapped("q") }, - Range { from: '𝚛', to: '𝚛', mapping: Mapped("r") }, - Range { from: '𝚜', to: '𝚜', mapping: Mapped("s") }, - Range { from: '𝚝', to: '𝚝', mapping: Mapped("t") }, - Range { from: '𝚞', to: '𝚞', mapping: Mapped("u") }, - Range { from: '𝚟', to: '𝚟', mapping: Mapped("v") }, - Range { from: '𝚠', to: '𝚠', mapping: Mapped("w") }, - Range { from: '𝚡', to: '𝚡', mapping: Mapped("x") }, - Range { from: '𝚢', to: '𝚢', mapping: Mapped("y") }, - Range { from: '𝚣', to: '𝚣', mapping: Mapped("z") }, - Range { from: '𝚤', to: '𝚤', mapping: Mapped("ı") }, - Range { from: '𝚥', to: '𝚥', mapping: Mapped("ȷ") }, - Range { from: '𝚦', to: '𝚧', mapping: Disallowed }, - Range { from: '𝚨', to: '𝚨', mapping: Mapped("α") }, - Range { from: '𝚩', to: '𝚩', mapping: Mapped("β") }, - Range { from: '𝚪', to: '𝚪', mapping: Mapped("γ") }, - Range { from: '𝚫', to: '𝚫', mapping: Mapped("δ") }, - Range { from: '𝚬', to: '𝚬', mapping: Mapped("ε") }, - Range { from: '𝚭', to: '𝚭', mapping: Mapped("ζ") }, - Range { from: '𝚮', to: '𝚮', mapping: Mapped("η") }, - Range { from: '𝚯', to: '𝚯', mapping: Mapped("θ") }, - Range { from: '𝚰', to: '𝚰', mapping: Mapped("ι") }, - Range { from: '𝚱', to: '𝚱', mapping: Mapped("κ") }, - Range { from: '𝚲', to: '𝚲', mapping: Mapped("λ") }, - Range { from: '𝚳', to: '𝚳', mapping: Mapped("μ") }, - Range { from: '𝚴', to: '𝚴', mapping: Mapped("ν") }, - Range { from: '𝚵', to: '𝚵', mapping: Mapped("ξ") }, - Range { from: '𝚶', to: '𝚶', mapping: Mapped("ο") }, - Range { from: '𝚷', to: '𝚷', mapping: Mapped("π") }, - Range { from: '𝚸', to: '𝚸', mapping: Mapped("ρ") }, - Range { from: '𝚹', to: '𝚹', mapping: Mapped("θ") }, - Range { from: '𝚺', to: '𝚺', mapping: Mapped("σ") }, - Range { from: '𝚻', to: '𝚻', mapping: Mapped("τ") }, - Range { from: '𝚼', to: '𝚼', mapping: Mapped("υ") }, - Range { from: '𝚽', to: '𝚽', mapping: Mapped("φ") }, - Range { from: '𝚾', to: '𝚾', mapping: Mapped("χ") }, - Range { from: '𝚿', to: '𝚿', mapping: Mapped("ψ") }, - Range { from: '𝛀', to: '𝛀', mapping: Mapped("ω") }, - Range { from: '𝛁', to: '𝛁', mapping: Mapped("∇") }, - Range { from: '𝛂', to: '𝛂', mapping: Mapped("α") }, - Range { from: '𝛃', to: '𝛃', mapping: Mapped("β") }, - Range { from: '𝛄', to: '𝛄', mapping: Mapped("γ") }, - Range { from: '𝛅', to: '𝛅', mapping: Mapped("δ") }, - Range { from: '𝛆', to: '𝛆', mapping: Mapped("ε") }, - Range { from: '𝛇', to: '𝛇', mapping: Mapped("ζ") }, - Range { from: '𝛈', to: '𝛈', mapping: Mapped("η") }, - Range { from: '𝛉', to: '𝛉', mapping: Mapped("θ") }, - Range { from: '𝛊', to: '𝛊', mapping: Mapped("ι") }, - Range { from: '𝛋', to: '𝛋', mapping: Mapped("κ") }, - Range { from: '𝛌', to: '𝛌', mapping: Mapped("λ") }, - Range { from: '𝛍', to: '𝛍', mapping: Mapped("μ") }, - Range { from: '𝛎', to: '𝛎', mapping: Mapped("ν") }, - Range { from: '𝛏', to: '𝛏', mapping: Mapped("ξ") }, - Range { from: '𝛐', to: '𝛐', mapping: Mapped("ο") }, - Range { from: '𝛑', to: '𝛑', mapping: Mapped("π") }, - Range { from: '𝛒', to: '𝛒', mapping: Mapped("ρ") }, - Range { from: '𝛓', to: '𝛔', mapping: Mapped("σ") }, - Range { from: '𝛕', to: '𝛕', mapping: Mapped("τ") }, - Range { from: '𝛖', to: '𝛖', mapping: Mapped("υ") }, - Range { from: '𝛗', to: '𝛗', mapping: Mapped("φ") }, - Range { from: '𝛘', to: '𝛘', mapping: Mapped("χ") }, - Range { from: '𝛙', to: '𝛙', mapping: Mapped("ψ") }, - Range { from: '𝛚', to: '𝛚', mapping: Mapped("ω") }, - Range { from: '𝛛', to: '𝛛', mapping: Mapped("∂") }, - Range { from: '𝛜', to: '𝛜', mapping: Mapped("ε") }, - Range { from: '𝛝', to: '𝛝', mapping: Mapped("θ") }, - Range { from: '𝛞', to: '𝛞', mapping: Mapped("κ") }, - Range { from: '𝛟', to: '𝛟', mapping: Mapped("φ") }, - Range { from: '𝛠', to: '𝛠', mapping: Mapped("ρ") }, - Range { from: '𝛡', to: '𝛡', mapping: Mapped("π") }, - Range { from: '𝛢', to: '𝛢', mapping: Mapped("α") }, - Range { from: '𝛣', to: '𝛣', mapping: Mapped("β") }, - Range { from: '𝛤', to: '𝛤', mapping: Mapped("γ") }, - Range { from: '𝛥', to: '𝛥', mapping: Mapped("δ") }, - Range { from: '𝛦', to: '𝛦', mapping: Mapped("ε") }, - Range { from: '𝛧', to: '𝛧', mapping: Mapped("ζ") }, - Range { from: '𝛨', to: '𝛨', mapping: Mapped("η") }, - Range { from: '𝛩', to: '𝛩', mapping: Mapped("θ") }, - Range { from: '𝛪', to: '𝛪', mapping: Mapped("ι") }, - Range { from: '𝛫', to: '𝛫', mapping: Mapped("κ") }, - Range { from: '𝛬', to: '𝛬', mapping: Mapped("λ") }, - Range { from: '𝛭', to: '𝛭', mapping: Mapped("μ") }, - Range { from: '𝛮', to: '𝛮', mapping: Mapped("ν") }, - Range { from: '𝛯', to: '𝛯', mapping: Mapped("ξ") }, - Range { from: '𝛰', to: '𝛰', mapping: Mapped("ο") }, - Range { from: '𝛱', to: '𝛱', mapping: Mapped("π") }, - Range { from: '𝛲', to: '𝛲', mapping: Mapped("ρ") }, - Range { from: '𝛳', to: '𝛳', mapping: Mapped("θ") }, - Range { from: '𝛴', to: '𝛴', mapping: Mapped("σ") }, - Range { from: '𝛵', to: '𝛵', mapping: Mapped("τ") }, - Range { from: '𝛶', to: '𝛶', mapping: Mapped("υ") }, - Range { from: '𝛷', to: '𝛷', mapping: Mapped("φ") }, - Range { from: '𝛸', to: '𝛸', mapping: Mapped("χ") }, - Range { from: '𝛹', to: '𝛹', mapping: Mapped("ψ") }, - Range { from: '𝛺', to: '𝛺', mapping: Mapped("ω") }, - Range { from: '𝛻', to: '𝛻', mapping: Mapped("∇") }, - Range { from: '𝛼', to: '𝛼', mapping: Mapped("α") }, - Range { from: '𝛽', to: '𝛽', mapping: Mapped("β") }, - Range { from: '𝛾', to: '𝛾', mapping: Mapped("γ") }, - Range { from: '𝛿', to: '𝛿', mapping: Mapped("δ") }, - Range { from: '𝜀', to: '𝜀', mapping: Mapped("ε") }, - Range { from: '𝜁', to: '𝜁', mapping: Mapped("ζ") }, - Range { from: '𝜂', to: '𝜂', mapping: Mapped("η") }, - Range { from: '𝜃', to: '𝜃', mapping: Mapped("θ") }, - Range { from: '𝜄', to: '𝜄', mapping: Mapped("ι") }, - Range { from: '𝜅', to: '𝜅', mapping: Mapped("κ") }, - Range { from: '𝜆', to: '𝜆', mapping: Mapped("λ") }, - Range { from: '𝜇', to: '𝜇', mapping: Mapped("μ") }, - Range { from: '𝜈', to: '𝜈', mapping: Mapped("ν") }, - Range { from: '𝜉', to: '𝜉', mapping: Mapped("ξ") }, - Range { from: '𝜊', to: '𝜊', mapping: Mapped("ο") }, - Range { from: '𝜋', to: '𝜋', mapping: Mapped("π") }, - Range { from: '𝜌', to: '𝜌', mapping: Mapped("ρ") }, - Range { from: '𝜍', to: '𝜎', mapping: Mapped("σ") }, - Range { from: '𝜏', to: '𝜏', mapping: Mapped("τ") }, - Range { from: '𝜐', to: '𝜐', mapping: Mapped("υ") }, - Range { from: '𝜑', to: '𝜑', mapping: Mapped("φ") }, - Range { from: '𝜒', to: '𝜒', mapping: Mapped("χ") }, - Range { from: '𝜓', to: '𝜓', mapping: Mapped("ψ") }, - Range { from: '𝜔', to: '𝜔', mapping: Mapped("ω") }, - Range { from: '𝜕', to: '𝜕', mapping: Mapped("∂") }, - Range { from: '𝜖', to: '𝜖', mapping: Mapped("ε") }, - Range { from: '𝜗', to: '𝜗', mapping: Mapped("θ") }, - Range { from: '𝜘', to: '𝜘', mapping: Mapped("κ") }, - Range { from: '𝜙', to: '𝜙', mapping: Mapped("φ") }, - Range { from: '𝜚', to: '𝜚', mapping: Mapped("ρ") }, - Range { from: '𝜛', to: '𝜛', mapping: Mapped("π") }, - Range { from: '𝜜', to: '𝜜', mapping: Mapped("α") }, - Range { from: '𝜝', to: '𝜝', mapping: Mapped("β") }, - Range { from: '𝜞', to: '𝜞', mapping: Mapped("γ") }, - Range { from: '𝜟', to: '𝜟', mapping: Mapped("δ") }, - Range { from: '𝜠', to: '𝜠', mapping: Mapped("ε") }, - Range { from: '𝜡', to: '𝜡', mapping: Mapped("ζ") }, - Range { from: '𝜢', to: '𝜢', mapping: Mapped("η") }, - Range { from: '𝜣', to: '𝜣', mapping: Mapped("θ") }, - Range { from: '𝜤', to: '𝜤', mapping: Mapped("ι") }, - Range { from: '𝜥', to: '𝜥', mapping: Mapped("κ") }, - Range { from: '𝜦', to: '𝜦', mapping: Mapped("λ") }, - Range { from: '𝜧', to: '𝜧', mapping: Mapped("μ") }, - Range { from: '𝜨', to: '𝜨', mapping: Mapped("ν") }, - Range { from: '𝜩', to: '𝜩', mapping: Mapped("ξ") }, - Range { from: '𝜪', to: '𝜪', mapping: Mapped("ο") }, - Range { from: '𝜫', to: '𝜫', mapping: Mapped("π") }, - Range { from: '𝜬', to: '𝜬', mapping: Mapped("ρ") }, - Range { from: '𝜭', to: '𝜭', mapping: Mapped("θ") }, - Range { from: '𝜮', to: '𝜮', mapping: Mapped("σ") }, - Range { from: '𝜯', to: '𝜯', mapping: Mapped("τ") }, - Range { from: '𝜰', to: '𝜰', mapping: Mapped("υ") }, - Range { from: '𝜱', to: '𝜱', mapping: Mapped("φ") }, - Range { from: '𝜲', to: '𝜲', mapping: Mapped("χ") }, - Range { from: '𝜳', to: '𝜳', mapping: Mapped("ψ") }, - Range { from: '𝜴', to: '𝜴', mapping: Mapped("ω") }, - Range { from: '𝜵', to: '𝜵', mapping: Mapped("∇") }, - Range { from: '𝜶', to: '𝜶', mapping: Mapped("α") }, - Range { from: '𝜷', to: '𝜷', mapping: Mapped("β") }, - Range { from: '𝜸', to: '𝜸', mapping: Mapped("γ") }, - Range { from: '𝜹', to: '𝜹', mapping: Mapped("δ") }, - Range { from: '𝜺', to: '𝜺', mapping: Mapped("ε") }, - Range { from: '𝜻', to: '𝜻', mapping: Mapped("ζ") }, - Range { from: '𝜼', to: '𝜼', mapping: Mapped("η") }, - Range { from: '𝜽', to: '𝜽', mapping: Mapped("θ") }, - Range { from: '𝜾', to: '𝜾', mapping: Mapped("ι") }, - Range { from: '𝜿', to: '𝜿', mapping: Mapped("κ") }, - Range { from: '𝝀', to: '𝝀', mapping: Mapped("λ") }, - Range { from: '𝝁', to: '𝝁', mapping: Mapped("μ") }, - Range { from: '𝝂', to: '𝝂', mapping: Mapped("ν") }, - Range { from: '𝝃', to: '𝝃', mapping: Mapped("ξ") }, - Range { from: '𝝄', to: '𝝄', mapping: Mapped("ο") }, - Range { from: '𝝅', to: '𝝅', mapping: Mapped("π") }, - Range { from: '𝝆', to: '𝝆', mapping: Mapped("ρ") }, - Range { from: '𝝇', to: '𝝈', mapping: Mapped("σ") }, - Range { from: '𝝉', to: '𝝉', mapping: Mapped("τ") }, - Range { from: '𝝊', to: '𝝊', mapping: Mapped("υ") }, - Range { from: '𝝋', to: '𝝋', mapping: Mapped("φ") }, - Range { from: '𝝌', to: '𝝌', mapping: Mapped("χ") }, - Range { from: '𝝍', to: '𝝍', mapping: Mapped("ψ") }, - Range { from: '𝝎', to: '𝝎', mapping: Mapped("ω") }, - Range { from: '𝝏', to: '𝝏', mapping: Mapped("∂") }, - Range { from: '𝝐', to: '𝝐', mapping: Mapped("ε") }, - Range { from: '𝝑', to: '𝝑', mapping: Mapped("θ") }, - Range { from: '𝝒', to: '𝝒', mapping: Mapped("κ") }, - Range { from: '𝝓', to: '𝝓', mapping: Mapped("φ") }, - Range { from: '𝝔', to: '𝝔', mapping: Mapped("ρ") }, - Range { from: '𝝕', to: '𝝕', mapping: Mapped("π") }, - Range { from: '𝝖', to: '𝝖', mapping: Mapped("α") }, - Range { from: '𝝗', to: '𝝗', mapping: Mapped("β") }, - Range { from: '𝝘', to: '𝝘', mapping: Mapped("γ") }, - Range { from: '𝝙', to: '𝝙', mapping: Mapped("δ") }, - Range { from: '𝝚', to: '𝝚', mapping: Mapped("ε") }, - Range { from: '𝝛', to: '𝝛', mapping: Mapped("ζ") }, - Range { from: '𝝜', to: '𝝜', mapping: Mapped("η") }, - Range { from: '𝝝', to: '𝝝', mapping: Mapped("θ") }, - Range { from: '𝝞', to: '𝝞', mapping: Mapped("ι") }, - Range { from: '𝝟', to: '𝝟', mapping: Mapped("κ") }, - Range { from: '𝝠', to: '𝝠', mapping: Mapped("λ") }, - Range { from: '𝝡', to: '𝝡', mapping: Mapped("μ") }, - Range { from: '𝝢', to: '𝝢', mapping: Mapped("ν") }, - Range { from: '𝝣', to: '𝝣', mapping: Mapped("ξ") }, - Range { from: '𝝤', to: '𝝤', mapping: Mapped("ο") }, - Range { from: '𝝥', to: '𝝥', mapping: Mapped("π") }, - Range { from: '𝝦', to: '𝝦', mapping: Mapped("ρ") }, - Range { from: '𝝧', to: '𝝧', mapping: Mapped("θ") }, - Range { from: '𝝨', to: '𝝨', mapping: Mapped("σ") }, - Range { from: '𝝩', to: '𝝩', mapping: Mapped("τ") }, - Range { from: '𝝪', to: '𝝪', mapping: Mapped("υ") }, - Range { from: '𝝫', to: '𝝫', mapping: Mapped("φ") }, - Range { from: '𝝬', to: '𝝬', mapping: Mapped("χ") }, - Range { from: '𝝭', to: '𝝭', mapping: Mapped("ψ") }, - Range { from: '𝝮', to: '𝝮', mapping: Mapped("ω") }, - Range { from: '𝝯', to: '𝝯', mapping: Mapped("∇") }, - Range { from: '𝝰', to: '𝝰', mapping: Mapped("α") }, - Range { from: '𝝱', to: '𝝱', mapping: Mapped("β") }, - Range { from: '𝝲', to: '𝝲', mapping: Mapped("γ") }, - Range { from: '𝝳', to: '𝝳', mapping: Mapped("δ") }, - Range { from: '𝝴', to: '𝝴', mapping: Mapped("ε") }, - Range { from: '𝝵', to: '𝝵', mapping: Mapped("ζ") }, - Range { from: '𝝶', to: '𝝶', mapping: Mapped("η") }, - Range { from: '𝝷', to: '𝝷', mapping: Mapped("θ") }, - Range { from: '𝝸', to: '𝝸', mapping: Mapped("ι") }, - Range { from: '𝝹', to: '𝝹', mapping: Mapped("κ") }, - Range { from: '𝝺', to: '𝝺', mapping: Mapped("λ") }, - Range { from: '𝝻', to: '𝝻', mapping: Mapped("μ") }, - Range { from: '𝝼', to: '𝝼', mapping: Mapped("ν") }, - Range { from: '𝝽', to: '𝝽', mapping: Mapped("ξ") }, - Range { from: '𝝾', to: '𝝾', mapping: Mapped("ο") }, - Range { from: '𝝿', to: '𝝿', mapping: Mapped("π") }, - Range { from: '𝞀', to: '𝞀', mapping: Mapped("ρ") }, - Range { from: '𝞁', to: '𝞂', mapping: Mapped("σ") }, - Range { from: '𝞃', to: '𝞃', mapping: Mapped("τ") }, - Range { from: '𝞄', to: '𝞄', mapping: Mapped("υ") }, - Range { from: '𝞅', to: '𝞅', mapping: Mapped("φ") }, - Range { from: '𝞆', to: '𝞆', mapping: Mapped("χ") }, - Range { from: '𝞇', to: '𝞇', mapping: Mapped("ψ") }, - Range { from: '𝞈', to: '𝞈', mapping: Mapped("ω") }, - Range { from: '𝞉', to: '𝞉', mapping: Mapped("∂") }, - Range { from: '𝞊', to: '𝞊', mapping: Mapped("ε") }, - Range { from: '𝞋', to: '𝞋', mapping: Mapped("θ") }, - Range { from: '𝞌', to: '𝞌', mapping: Mapped("κ") }, - Range { from: '𝞍', to: '𝞍', mapping: Mapped("φ") }, - Range { from: '𝞎', to: '𝞎', mapping: Mapped("ρ") }, - Range { from: '𝞏', to: '𝞏', mapping: Mapped("π") }, - Range { from: '𝞐', to: '𝞐', mapping: Mapped("α") }, - Range { from: '𝞑', to: '𝞑', mapping: Mapped("β") }, - Range { from: '𝞒', to: '𝞒', mapping: Mapped("γ") }, - Range { from: '𝞓', to: '𝞓', mapping: Mapped("δ") }, - Range { from: '𝞔', to: '𝞔', mapping: Mapped("ε") }, - Range { from: '𝞕', to: '𝞕', mapping: Mapped("ζ") }, - Range { from: '𝞖', to: '𝞖', mapping: Mapped("η") }, - Range { from: '𝞗', to: '𝞗', mapping: Mapped("θ") }, - Range { from: '𝞘', to: '𝞘', mapping: Mapped("ι") }, - Range { from: '𝞙', to: '𝞙', mapping: Mapped("κ") }, - Range { from: '𝞚', to: '𝞚', mapping: Mapped("λ") }, - Range { from: '𝞛', to: '𝞛', mapping: Mapped("μ") }, - Range { from: '𝞜', to: '𝞜', mapping: Mapped("ν") }, - Range { from: '𝞝', to: '𝞝', mapping: Mapped("ξ") }, - Range { from: '𝞞', to: '𝞞', mapping: Mapped("ο") }, - Range { from: '𝞟', to: '𝞟', mapping: Mapped("π") }, - Range { from: '𝞠', to: '𝞠', mapping: Mapped("ρ") }, - Range { from: '𝞡', to: '𝞡', mapping: Mapped("θ") }, - Range { from: '𝞢', to: '𝞢', mapping: Mapped("σ") }, - Range { from: '𝞣', to: '𝞣', mapping: Mapped("τ") }, - Range { from: '𝞤', to: '𝞤', mapping: Mapped("υ") }, - Range { from: '𝞥', to: '𝞥', mapping: Mapped("φ") }, - Range { from: '𝞦', to: '𝞦', mapping: Mapped("χ") }, - Range { from: '𝞧', to: '𝞧', mapping: Mapped("ψ") }, - Range { from: '𝞨', to: '𝞨', mapping: Mapped("ω") }, - Range { from: '𝞩', to: '𝞩', mapping: Mapped("∇") }, - Range { from: '𝞪', to: '𝞪', mapping: Mapped("α") }, - Range { from: '𝞫', to: '𝞫', mapping: Mapped("β") }, - Range { from: '𝞬', to: '𝞬', mapping: Mapped("γ") }, - Range { from: '𝞭', to: '𝞭', mapping: Mapped("δ") }, - Range { from: '𝞮', to: '𝞮', mapping: Mapped("ε") }, - Range { from: '𝞯', to: '𝞯', mapping: Mapped("ζ") }, - Range { from: '𝞰', to: '𝞰', mapping: Mapped("η") }, - Range { from: '𝞱', to: '𝞱', mapping: Mapped("θ") }, - Range { from: '𝞲', to: '𝞲', mapping: Mapped("ι") }, - Range { from: '𝞳', to: '𝞳', mapping: Mapped("κ") }, - Range { from: '𝞴', to: '𝞴', mapping: Mapped("λ") }, - Range { from: '𝞵', to: '𝞵', mapping: Mapped("μ") }, - Range { from: '𝞶', to: '𝞶', mapping: Mapped("ν") }, - Range { from: '𝞷', to: '𝞷', mapping: Mapped("ξ") }, - Range { from: '𝞸', to: '𝞸', mapping: Mapped("ο") }, - Range { from: '𝞹', to: '𝞹', mapping: Mapped("π") }, - Range { from: '𝞺', to: '𝞺', mapping: Mapped("ρ") }, - Range { from: '𝞻', to: '𝞼', mapping: Mapped("σ") }, - Range { from: '𝞽', to: '𝞽', mapping: Mapped("τ") }, - Range { from: '𝞾', to: '𝞾', mapping: Mapped("υ") }, - Range { from: '𝞿', to: '𝞿', mapping: Mapped("φ") }, - Range { from: '𝟀', to: '𝟀', mapping: Mapped("χ") }, - Range { from: '𝟁', to: '𝟁', mapping: Mapped("ψ") }, - Range { from: '𝟂', to: '𝟂', mapping: Mapped("ω") }, - Range { from: '𝟃', to: '𝟃', mapping: Mapped("∂") }, - Range { from: '𝟄', to: '𝟄', mapping: Mapped("ε") }, - Range { from: '𝟅', to: '𝟅', mapping: Mapped("θ") }, - Range { from: '𝟆', to: '𝟆', mapping: Mapped("κ") }, - Range { from: '𝟇', to: '𝟇', mapping: Mapped("φ") }, - Range { from: '𝟈', to: '𝟈', mapping: Mapped("ρ") }, - Range { from: '𝟉', to: '𝟉', mapping: Mapped("π") }, - Range { from: '𝟊', to: '𝟋', mapping: Mapped("ϝ") }, - Range { from: '𝟌', to: '𝟍', mapping: Disallowed }, - Range { from: '𝟎', to: '𝟎', mapping: Mapped("0") }, - Range { from: '𝟏', to: '𝟏', mapping: Mapped("1") }, - Range { from: '𝟐', to: '𝟐', mapping: Mapped("2") }, - Range { from: '𝟑', to: '𝟑', mapping: Mapped("3") }, - Range { from: '𝟒', to: '𝟒', mapping: Mapped("4") }, - Range { from: '𝟓', to: '𝟓', mapping: Mapped("5") }, - Range { from: '𝟔', to: '𝟔', mapping: Mapped("6") }, - Range { from: '𝟕', to: '𝟕', mapping: Mapped("7") }, - Range { from: '𝟖', to: '𝟖', mapping: Mapped("8") }, - Range { from: '𝟗', to: '𝟗', mapping: Mapped("9") }, - Range { from: '𝟘', to: '𝟘', mapping: Mapped("0") }, - Range { from: '𝟙', to: '𝟙', mapping: Mapped("1") }, - Range { from: '𝟚', to: '𝟚', mapping: Mapped("2") }, - Range { from: '𝟛', to: '𝟛', mapping: Mapped("3") }, - Range { from: '𝟜', to: '𝟜', mapping: Mapped("4") }, - Range { from: '𝟝', to: '𝟝', mapping: Mapped("5") }, - Range { from: '𝟞', to: '𝟞', mapping: Mapped("6") }, - Range { from: '𝟟', to: '𝟟', mapping: Mapped("7") }, - Range { from: '𝟠', to: '𝟠', mapping: Mapped("8") }, - Range { from: '𝟡', to: '𝟡', mapping: Mapped("9") }, - Range { from: '𝟢', to: '𝟢', mapping: Mapped("0") }, - Range { from: '𝟣', to: '𝟣', mapping: Mapped("1") }, - Range { from: '𝟤', to: '𝟤', mapping: Mapped("2") }, - Range { from: '𝟥', to: '𝟥', mapping: Mapped("3") }, - Range { from: '𝟦', to: '𝟦', mapping: Mapped("4") }, - Range { from: '𝟧', to: '𝟧', mapping: Mapped("5") }, - Range { from: '𝟨', to: '𝟨', mapping: Mapped("6") }, - Range { from: '𝟩', to: '𝟩', mapping: Mapped("7") }, - Range { from: '𝟪', to: '𝟪', mapping: Mapped("8") }, - Range { from: '𝟫', to: '𝟫', mapping: Mapped("9") }, - Range { from: '𝟬', to: '𝟬', mapping: Mapped("0") }, - Range { from: '𝟭', to: '𝟭', mapping: Mapped("1") }, - Range { from: '𝟮', to: '𝟮', mapping: Mapped("2") }, - Range { from: '𝟯', to: '𝟯', mapping: Mapped("3") }, - Range { from: '𝟰', to: '𝟰', mapping: Mapped("4") }, - Range { from: '𝟱', to: '𝟱', mapping: Mapped("5") }, - Range { from: '𝟲', to: '𝟲', mapping: Mapped("6") }, - Range { from: '𝟳', to: '𝟳', mapping: Mapped("7") }, - Range { from: '𝟴', to: '𝟴', mapping: Mapped("8") }, - Range { from: '𝟵', to: '𝟵', mapping: Mapped("9") }, - Range { from: '𝟶', to: '𝟶', mapping: Mapped("0") }, - Range { from: '𝟷', to: '𝟷', mapping: Mapped("1") }, - Range { from: '𝟸', to: '𝟸', mapping: Mapped("2") }, - Range { from: '𝟹', to: '𝟹', mapping: Mapped("3") }, - Range { from: '𝟺', to: '𝟺', mapping: Mapped("4") }, - Range { from: '𝟻', to: '𝟻', mapping: Mapped("5") }, - Range { from: '𝟼', to: '𝟼', mapping: Mapped("6") }, - Range { from: '𝟽', to: '𝟽', mapping: Mapped("7") }, - Range { from: '𝟾', to: '𝟾', mapping: Mapped("8") }, - Range { from: '𝟿', to: '𝟿', mapping: Mapped("9") }, - Range { from: '𝠀', to: '𝧿', mapping: Valid }, - Range { from: '𝨀', to: '𝨶', mapping: Valid }, - Range { from: '𝨷', to: '𝨺', mapping: Valid }, - Range { from: '𝨻', to: '𝩬', mapping: Valid }, - Range { from: '𝩭', to: '𝩴', mapping: Valid }, - Range { from: '𝩵', to: '𝩵', mapping: Valid }, - Range { from: '𝩶', to: '𝪃', mapping: Valid }, - Range { from: '𝪄', to: '𝪄', mapping: Valid }, - Range { from: '𝪅', to: '𝪋', mapping: Valid }, - Range { from: '𝪌', to: '𝪚', mapping: Disallowed }, - Range { from: '𝪛', to: '𝪟', mapping: Valid }, - Range { from: '𝪠', to: '𝪠', mapping: Disallowed }, - Range { from: '𝪡', to: '𝪯', mapping: Valid }, - Range { from: '𝪰', to: '𝿿', mapping: Disallowed }, - Range { from: '𞀀', to: '𞀆', mapping: Valid }, - Range { from: '𞀇', to: '𞀇', mapping: Disallowed }, - Range { from: '𞀈', to: '𞀘', mapping: Valid }, - Range { from: '𞀙', to: '𞀚', mapping: Disallowed }, - Range { from: '𞀛', to: '𞀡', mapping: Valid }, - Range { from: '𞀢', to: '𞀢', mapping: Disallowed }, - Range { from: '𞀣', to: '𞀤', mapping: Valid }, - Range { from: '𞀥', to: '𞀥', mapping: Disallowed }, - Range { from: '𞀦', to: '𞀪', mapping: Valid }, - Range { from: '𞀫', to: '𞟿', mapping: Disallowed }, - Range { from: '𞠀', to: '𞣄', mapping: Valid }, - Range { from: '𞣅', to: '𞣆', mapping: Disallowed }, - Range { from: '𞣇', to: '𞣏', mapping: Valid }, - Range { from: '𞣐', to: '𞣖', mapping: Valid }, - Range { from: '𞣗', to: '𞣿', mapping: Disallowed }, - Range { from: '𞤀', to: '𞤀', mapping: Mapped("𞤢") }, - Range { from: '𞤁', to: '𞤁', mapping: Mapped("𞤣") }, - Range { from: '𞤂', to: '𞤂', mapping: Mapped("𞤤") }, - Range { from: '𞤃', to: '𞤃', mapping: Mapped("𞤥") }, - Range { from: '𞤄', to: '𞤄', mapping: Mapped("𞤦") }, - Range { from: '𞤅', to: '𞤅', mapping: Mapped("𞤧") }, - Range { from: '𞤆', to: '𞤆', mapping: Mapped("𞤨") }, - Range { from: '𞤇', to: '𞤇', mapping: Mapped("𞤩") }, - Range { from: '𞤈', to: '𞤈', mapping: Mapped("𞤪") }, - Range { from: '𞤉', to: '𞤉', mapping: Mapped("𞤫") }, - Range { from: '𞤊', to: '𞤊', mapping: Mapped("𞤬") }, - Range { from: '𞤋', to: '𞤋', mapping: Mapped("𞤭") }, - Range { from: '𞤌', to: '𞤌', mapping: Mapped("𞤮") }, - Range { from: '𞤍', to: '𞤍', mapping: Mapped("𞤯") }, - Range { from: '𞤎', to: '𞤎', mapping: Mapped("𞤰") }, - Range { from: '𞤏', to: '𞤏', mapping: Mapped("𞤱") }, - Range { from: '𞤐', to: '𞤐', mapping: Mapped("𞤲") }, - Range { from: '𞤑', to: '𞤑', mapping: Mapped("𞤳") }, - Range { from: '𞤒', to: '𞤒', mapping: Mapped("𞤴") }, - Range { from: '𞤓', to: '𞤓', mapping: Mapped("𞤵") }, - Range { from: '𞤔', to: '𞤔', mapping: Mapped("𞤶") }, - Range { from: '𞤕', to: '𞤕', mapping: Mapped("𞤷") }, - Range { from: '𞤖', to: '𞤖', mapping: Mapped("𞤸") }, - Range { from: '𞤗', to: '𞤗', mapping: Mapped("𞤹") }, - Range { from: '𞤘', to: '𞤘', mapping: Mapped("𞤺") }, - Range { from: '𞤙', to: '𞤙', mapping: Mapped("𞤻") }, - Range { from: '𞤚', to: '𞤚', mapping: Mapped("𞤼") }, - Range { from: '𞤛', to: '𞤛', mapping: Mapped("𞤽") }, - Range { from: '𞤜', to: '𞤜', mapping: Mapped("𞤾") }, - Range { from: '𞤝', to: '𞤝', mapping: Mapped("𞤿") }, - Range { from: '𞤞', to: '𞤞', mapping: Mapped("𞥀") }, - Range { from: '𞤟', to: '𞤟', mapping: Mapped("𞥁") }, - Range { from: '𞤠', to: '𞤠', mapping: Mapped("𞥂") }, - Range { from: '𞤡', to: '𞤡', mapping: Mapped("𞥃") }, - Range { from: '𞤢', to: '𞥊', mapping: Valid }, - Range { from: '𞥋', to: '𞥏', mapping: Disallowed }, - Range { from: '𞥐', to: '𞥙', mapping: Valid }, - Range { from: '𞥚', to: '𞥝', mapping: Disallowed }, - Range { from: '𞥞', to: '𞥟', mapping: Valid }, - Range { from: '𞥠', to: '𞷿', mapping: Disallowed }, - Range { from: '𞸀', to: '𞸀', mapping: Mapped("ا") }, - Range { from: '𞸁', to: '𞸁', mapping: Mapped("ب") }, - Range { from: '𞸂', to: '𞸂', mapping: Mapped("ج") }, - Range { from: '𞸃', to: '𞸃', mapping: Mapped("د") }, - Range { from: '𞸄', to: '𞸄', mapping: Disallowed }, - Range { from: '𞸅', to: '𞸅', mapping: Mapped("و") }, - Range { from: '𞸆', to: '𞸆', mapping: Mapped("ز") }, - Range { from: '𞸇', to: '𞸇', mapping: Mapped("ح") }, - Range { from: '𞸈', to: '𞸈', mapping: Mapped("ط") }, - Range { from: '𞸉', to: '𞸉', mapping: Mapped("ي") }, - Range { from: '𞸊', to: '𞸊', mapping: Mapped("ك") }, - Range { from: '𞸋', to: '𞸋', mapping: Mapped("ل") }, - Range { from: '𞸌', to: '𞸌', mapping: Mapped("م") }, - Range { from: '𞸍', to: '𞸍', mapping: Mapped("ن") }, - Range { from: '𞸎', to: '𞸎', mapping: Mapped("س") }, - Range { from: '𞸏', to: '𞸏', mapping: Mapped("ع") }, - Range { from: '𞸐', to: '𞸐', mapping: Mapped("ف") }, - Range { from: '𞸑', to: '𞸑', mapping: Mapped("ص") }, - Range { from: '𞸒', to: '𞸒', mapping: Mapped("ق") }, - Range { from: '𞸓', to: '𞸓', mapping: Mapped("ر") }, - Range { from: '𞸔', to: '𞸔', mapping: Mapped("ش") }, - Range { from: '𞸕', to: '𞸕', mapping: Mapped("ت") }, - Range { from: '𞸖', to: '𞸖', mapping: Mapped("ث") }, - Range { from: '𞸗', to: '𞸗', mapping: Mapped("خ") }, - Range { from: '𞸘', to: '𞸘', mapping: Mapped("ذ") }, - Range { from: '𞸙', to: '𞸙', mapping: Mapped("ض") }, - Range { from: '𞸚', to: '𞸚', mapping: Mapped("ظ") }, - Range { from: '𞸛', to: '𞸛', mapping: Mapped("غ") }, - Range { from: '𞸜', to: '𞸜', mapping: Mapped("ٮ") }, - Range { from: '𞸝', to: '𞸝', mapping: Mapped("ں") }, - Range { from: '𞸞', to: '𞸞', mapping: Mapped("ڡ") }, - Range { from: '𞸟', to: '𞸟', mapping: Mapped("ٯ") }, - Range { from: '𞸠', to: '𞸠', mapping: Disallowed }, - Range { from: '𞸡', to: '𞸡', mapping: Mapped("ب") }, - Range { from: '𞸢', to: '𞸢', mapping: Mapped("ج") }, - Range { from: '𞸣', to: '𞸣', mapping: Disallowed }, - Range { from: '𞸤', to: '𞸤', mapping: Mapped("ه") }, - Range { from: '𞸥', to: '𞸦', mapping: Disallowed }, - Range { from: '𞸧', to: '𞸧', mapping: Mapped("ح") }, - Range { from: '𞸨', to: '𞸨', mapping: Disallowed }, - Range { from: '𞸩', to: '𞸩', mapping: Mapped("ي") }, - Range { from: '𞸪', to: '𞸪', mapping: Mapped("ك") }, - Range { from: '𞸫', to: '𞸫', mapping: Mapped("ل") }, - Range { from: '𞸬', to: '𞸬', mapping: Mapped("م") }, - Range { from: '𞸭', to: '𞸭', mapping: Mapped("ن") }, - Range { from: '𞸮', to: '𞸮', mapping: Mapped("س") }, - Range { from: '𞸯', to: '𞸯', mapping: Mapped("ع") }, - Range { from: '𞸰', to: '𞸰', mapping: Mapped("ف") }, - Range { from: '𞸱', to: '𞸱', mapping: Mapped("ص") }, - Range { from: '𞸲', to: '𞸲', mapping: Mapped("ق") }, - Range { from: '𞸳', to: '𞸳', mapping: Disallowed }, - Range { from: '𞸴', to: '𞸴', mapping: Mapped("ش") }, - Range { from: '𞸵', to: '𞸵', mapping: Mapped("ت") }, - Range { from: '𞸶', to: '𞸶', mapping: Mapped("ث") }, - Range { from: '𞸷', to: '𞸷', mapping: Mapped("خ") }, - Range { from: '𞸸', to: '𞸸', mapping: Disallowed }, - Range { from: '𞸹', to: '𞸹', mapping: Mapped("ض") }, - Range { from: '𞸺', to: '𞸺', mapping: Disallowed }, - Range { from: '𞸻', to: '𞸻', mapping: Mapped("غ") }, - Range { from: '𞸼', to: '𞹁', mapping: Disallowed }, - Range { from: '𞹂', to: '𞹂', mapping: Mapped("ج") }, - Range { from: '𞹃', to: '𞹆', mapping: Disallowed }, - Range { from: '𞹇', to: '𞹇', mapping: Mapped("ح") }, - Range { from: '𞹈', to: '𞹈', mapping: Disallowed }, - Range { from: '𞹉', to: '𞹉', mapping: Mapped("ي") }, - Range { from: '𞹊', to: '𞹊', mapping: Disallowed }, - Range { from: '𞹋', to: '𞹋', mapping: Mapped("ل") }, - Range { from: '𞹌', to: '𞹌', mapping: Disallowed }, - Range { from: '𞹍', to: '𞹍', mapping: Mapped("ن") }, - Range { from: '𞹎', to: '𞹎', mapping: Mapped("س") }, - Range { from: '𞹏', to: '𞹏', mapping: Mapped("ع") }, - Range { from: '𞹐', to: '𞹐', mapping: Disallowed }, - Range { from: '𞹑', to: '𞹑', mapping: Mapped("ص") }, - Range { from: '𞹒', to: '𞹒', mapping: Mapped("ق") }, - Range { from: '𞹓', to: '𞹓', mapping: Disallowed }, - Range { from: '𞹔', to: '𞹔', mapping: Mapped("ش") }, - Range { from: '𞹕', to: '𞹖', mapping: Disallowed }, - Range { from: '𞹗', to: '𞹗', mapping: Mapped("خ") }, - Range { from: '𞹘', to: '𞹘', mapping: Disallowed }, - Range { from: '𞹙', to: '𞹙', mapping: Mapped("ض") }, - Range { from: '𞹚', to: '𞹚', mapping: Disallowed }, - Range { from: '𞹛', to: '𞹛', mapping: Mapped("غ") }, - Range { from: '𞹜', to: '𞹜', mapping: Disallowed }, - Range { from: '𞹝', to: '𞹝', mapping: Mapped("ں") }, - Range { from: '𞹞', to: '𞹞', mapping: Disallowed }, - Range { from: '𞹟', to: '𞹟', mapping: Mapped("ٯ") }, - Range { from: '𞹠', to: '𞹠', mapping: Disallowed }, - Range { from: '𞹡', to: '𞹡', mapping: Mapped("ب") }, - Range { from: '𞹢', to: '𞹢', mapping: Mapped("ج") }, - Range { from: '𞹣', to: '𞹣', mapping: Disallowed }, - Range { from: '𞹤', to: '𞹤', mapping: Mapped("ه") }, - Range { from: '𞹥', to: '𞹦', mapping: Disallowed }, - Range { from: '𞹧', to: '𞹧', mapping: Mapped("ح") }, - Range { from: '𞹨', to: '𞹨', mapping: Mapped("ط") }, - Range { from: '𞹩', to: '𞹩', mapping: Mapped("ي") }, - Range { from: '𞹪', to: '𞹪', mapping: Mapped("ك") }, - Range { from: '𞹫', to: '𞹫', mapping: Disallowed }, - Range { from: '𞹬', to: '𞹬', mapping: Mapped("م") }, - Range { from: '𞹭', to: '𞹭', mapping: Mapped("ن") }, - Range { from: '𞹮', to: '𞹮', mapping: Mapped("س") }, - Range { from: '𞹯', to: '𞹯', mapping: Mapped("ع") }, - Range { from: '𞹰', to: '𞹰', mapping: Mapped("ف") }, - Range { from: '𞹱', to: '𞹱', mapping: Mapped("ص") }, - Range { from: '𞹲', to: '𞹲', mapping: Mapped("ق") }, - Range { from: '𞹳', to: '𞹳', mapping: Disallowed }, - Range { from: '𞹴', to: '𞹴', mapping: Mapped("ش") }, - Range { from: '𞹵', to: '𞹵', mapping: Mapped("ت") }, - Range { from: '𞹶', to: '𞹶', mapping: Mapped("ث") }, - Range { from: '𞹷', to: '𞹷', mapping: Mapped("خ") }, - Range { from: '𞹸', to: '𞹸', mapping: Disallowed }, - Range { from: '𞹹', to: '𞹹', mapping: Mapped("ض") }, - Range { from: '𞹺', to: '𞹺', mapping: Mapped("ظ") }, - Range { from: '𞹻', to: '𞹻', mapping: Mapped("غ") }, - Range { from: '𞹼', to: '𞹼', mapping: Mapped("ٮ") }, - Range { from: '𞹽', to: '𞹽', mapping: Disallowed }, - Range { from: '𞹾', to: '𞹾', mapping: Mapped("ڡ") }, - Range { from: '𞹿', to: '𞹿', mapping: Disallowed }, - Range { from: '𞺀', to: '𞺀', mapping: Mapped("ا") }, - Range { from: '𞺁', to: '𞺁', mapping: Mapped("ب") }, - Range { from: '𞺂', to: '𞺂', mapping: Mapped("ج") }, - Range { from: '𞺃', to: '𞺃', mapping: Mapped("د") }, - Range { from: '𞺄', to: '𞺄', mapping: Mapped("ه") }, - Range { from: '𞺅', to: '𞺅', mapping: Mapped("و") }, - Range { from: '𞺆', to: '𞺆', mapping: Mapped("ز") }, - Range { from: '𞺇', to: '𞺇', mapping: Mapped("ح") }, - Range { from: '𞺈', to: '𞺈', mapping: Mapped("ط") }, - Range { from: '𞺉', to: '𞺉', mapping: Mapped("ي") }, - Range { from: '𞺊', to: '𞺊', mapping: Disallowed }, - Range { from: '𞺋', to: '𞺋', mapping: Mapped("ل") }, - Range { from: '𞺌', to: '𞺌', mapping: Mapped("م") }, - Range { from: '𞺍', to: '𞺍', mapping: Mapped("ن") }, - Range { from: '𞺎', to: '𞺎', mapping: Mapped("س") }, - Range { from: '𞺏', to: '𞺏', mapping: Mapped("ع") }, - Range { from: '𞺐', to: '𞺐', mapping: Mapped("ف") }, - Range { from: '𞺑', to: '𞺑', mapping: Mapped("ص") }, - Range { from: '𞺒', to: '𞺒', mapping: Mapped("ق") }, - Range { from: '𞺓', to: '𞺓', mapping: Mapped("ر") }, - Range { from: '𞺔', to: '𞺔', mapping: Mapped("ش") }, - Range { from: '𞺕', to: '𞺕', mapping: Mapped("ت") }, - Range { from: '𞺖', to: '𞺖', mapping: Mapped("ث") }, - Range { from: '𞺗', to: '𞺗', mapping: Mapped("خ") }, - Range { from: '𞺘', to: '𞺘', mapping: Mapped("ذ") }, - Range { from: '𞺙', to: '𞺙', mapping: Mapped("ض") }, - Range { from: '𞺚', to: '𞺚', mapping: Mapped("ظ") }, - Range { from: '𞺛', to: '𞺛', mapping: Mapped("غ") }, - Range { from: '𞺜', to: '𞺠', mapping: Disallowed }, - Range { from: '𞺡', to: '𞺡', mapping: Mapped("ب") }, - Range { from: '𞺢', to: '𞺢', mapping: Mapped("ج") }, - Range { from: '𞺣', to: '𞺣', mapping: Mapped("د") }, - Range { from: '𞺤', to: '𞺤', mapping: Disallowed }, - Range { from: '𞺥', to: '𞺥', mapping: Mapped("و") }, - Range { from: '𞺦', to: '𞺦', mapping: Mapped("ز") }, - Range { from: '𞺧', to: '𞺧', mapping: Mapped("ح") }, - Range { from: '𞺨', to: '𞺨', mapping: Mapped("ط") }, - Range { from: '𞺩', to: '𞺩', mapping: Mapped("ي") }, - Range { from: '𞺪', to: '𞺪', mapping: Disallowed }, - Range { from: '𞺫', to: '𞺫', mapping: Mapped("ل") }, - Range { from: '𞺬', to: '𞺬', mapping: Mapped("م") }, - Range { from: '𞺭', to: '𞺭', mapping: Mapped("ن") }, - Range { from: '𞺮', to: '𞺮', mapping: Mapped("س") }, - Range { from: '𞺯', to: '𞺯', mapping: Mapped("ع") }, - Range { from: '𞺰', to: '𞺰', mapping: Mapped("ف") }, - Range { from: '𞺱', to: '𞺱', mapping: Mapped("ص") }, - Range { from: '𞺲', to: '𞺲', mapping: Mapped("ق") }, - Range { from: '𞺳', to: '𞺳', mapping: Mapped("ر") }, - Range { from: '𞺴', to: '𞺴', mapping: Mapped("ش") }, - Range { from: '𞺵', to: '𞺵', mapping: Mapped("ت") }, - Range { from: '𞺶', to: '𞺶', mapping: Mapped("ث") }, - Range { from: '𞺷', to: '𞺷', mapping: Mapped("خ") }, - Range { from: '𞺸', to: '𞺸', mapping: Mapped("ذ") }, - Range { from: '𞺹', to: '𞺹', mapping: Mapped("ض") }, - Range { from: '𞺺', to: '𞺺', mapping: Mapped("ظ") }, - Range { from: '𞺻', to: '𞺻', mapping: Mapped("غ") }, - Range { from: '𞺼', to: '𞻯', mapping: Disallowed }, - Range { from: '𞻰', to: '𞻱', mapping: Valid }, - Range { from: '𞻲', to: '𞿿', mapping: Disallowed }, - Range { from: '🀀', to: '🀫', mapping: Valid }, - Range { from: '🀬', to: '🀯', mapping: Disallowed }, - Range { from: '🀰', to: '🂓', mapping: Valid }, - Range { from: '🂔', to: '🂟', mapping: Disallowed }, - Range { from: '🂠', to: '🂮', mapping: Valid }, - Range { from: '🂯', to: '🂰', mapping: Disallowed }, - Range { from: '🂱', to: '🂾', mapping: Valid }, - Range { from: '🂿', to: '🂿', mapping: Valid }, - Range { from: '🃀', to: '🃀', mapping: Disallowed }, - Range { from: '🃁', to: '🃏', mapping: Valid }, - Range { from: '🃐', to: '🃐', mapping: Disallowed }, - Range { from: '🃑', to: '🃟', mapping: Valid }, - Range { from: '🃠', to: '🃵', mapping: Valid }, - Range { from: '🃶', to: '🃿', mapping: Disallowed }, - Range { from: '🄀', to: '🄀', mapping: Disallowed }, - Range { from: '🄁', to: '🄁', mapping: DisallowedStd3Mapped("0,") }, - Range { from: '🄂', to: '🄂', mapping: DisallowedStd3Mapped("1,") }, - Range { from: '🄃', to: '🄃', mapping: DisallowedStd3Mapped("2,") }, - Range { from: '🄄', to: '🄄', mapping: DisallowedStd3Mapped("3,") }, - Range { from: '🄅', to: '🄅', mapping: DisallowedStd3Mapped("4,") }, - Range { from: '🄆', to: '🄆', mapping: DisallowedStd3Mapped("5,") }, - Range { from: '🄇', to: '🄇', mapping: DisallowedStd3Mapped("6,") }, - Range { from: '🄈', to: '🄈', mapping: DisallowedStd3Mapped("7,") }, - Range { from: '🄉', to: '🄉', mapping: DisallowedStd3Mapped("8,") }, - Range { from: '🄊', to: '🄊', mapping: DisallowedStd3Mapped("9,") }, - Range { from: '🄋', to: '🄌', mapping: Valid }, - Range { from: '🄍', to: '🄏', mapping: Disallowed }, - Range { from: '🄐', to: '🄐', mapping: DisallowedStd3Mapped("(a)") }, - Range { from: '🄑', to: '🄑', mapping: DisallowedStd3Mapped("(b)") }, - Range { from: '🄒', to: '🄒', mapping: DisallowedStd3Mapped("(c)") }, - Range { from: '🄓', to: '🄓', mapping: DisallowedStd3Mapped("(d)") }, - Range { from: '🄔', to: '🄔', mapping: DisallowedStd3Mapped("(e)") }, - Range { from: '🄕', to: '🄕', mapping: DisallowedStd3Mapped("(f)") }, - Range { from: '🄖', to: '🄖', mapping: DisallowedStd3Mapped("(g)") }, - Range { from: '🄗', to: '🄗', mapping: DisallowedStd3Mapped("(h)") }, - Range { from: '🄘', to: '🄘', mapping: DisallowedStd3Mapped("(i)") }, - Range { from: '🄙', to: '🄙', mapping: DisallowedStd3Mapped("(j)") }, - Range { from: '🄚', to: '🄚', mapping: DisallowedStd3Mapped("(k)") }, - Range { from: '🄛', to: '🄛', mapping: DisallowedStd3Mapped("(l)") }, - Range { from: '🄜', to: '🄜', mapping: DisallowedStd3Mapped("(m)") }, - Range { from: '🄝', to: '🄝', mapping: DisallowedStd3Mapped("(n)") }, - Range { from: '🄞', to: '🄞', mapping: DisallowedStd3Mapped("(o)") }, - Range { from: '🄟', to: '🄟', mapping: DisallowedStd3Mapped("(p)") }, - Range { from: '🄠', to: '🄠', mapping: DisallowedStd3Mapped("(q)") }, - Range { from: '🄡', to: '🄡', mapping: DisallowedStd3Mapped("(r)") }, - Range { from: '🄢', to: '🄢', mapping: DisallowedStd3Mapped("(s)") }, - Range { from: '🄣', to: '🄣', mapping: DisallowedStd3Mapped("(t)") }, - Range { from: '🄤', to: '🄤', mapping: DisallowedStd3Mapped("(u)") }, - Range { from: '🄥', to: '🄥', mapping: DisallowedStd3Mapped("(v)") }, - Range { from: '🄦', to: '🄦', mapping: DisallowedStd3Mapped("(w)") }, - Range { from: '🄧', to: '🄧', mapping: DisallowedStd3Mapped("(x)") }, - Range { from: '🄨', to: '🄨', mapping: DisallowedStd3Mapped("(y)") }, - Range { from: '🄩', to: '🄩', mapping: DisallowedStd3Mapped("(z)") }, - Range { from: '🄪', to: '🄪', mapping: Mapped("〔s〕") }, - Range { from: '🄫', to: '🄫', mapping: Mapped("c") }, - Range { from: '🄬', to: '🄬', mapping: Mapped("r") }, - Range { from: '🄭', to: '🄭', mapping: Mapped("cd") }, - Range { from: '🄮', to: '🄮', mapping: Mapped("wz") }, - Range { from: '🄯', to: '🄯', mapping: Disallowed }, - Range { from: '🄰', to: '🄰', mapping: Mapped("a") }, - Range { from: '🄱', to: '🄱', mapping: Mapped("b") }, - Range { from: '🄲', to: '🄲', mapping: Mapped("c") }, - Range { from: '🄳', to: '🄳', mapping: Mapped("d") }, - Range { from: '🄴', to: '🄴', mapping: Mapped("e") }, - Range { from: '🄵', to: '🄵', mapping: Mapped("f") }, - Range { from: '🄶', to: '🄶', mapping: Mapped("g") }, - Range { from: '🄷', to: '🄷', mapping: Mapped("h") }, - Range { from: '🄸', to: '🄸', mapping: Mapped("i") }, - Range { from: '🄹', to: '🄹', mapping: Mapped("j") }, - Range { from: '🄺', to: '🄺', mapping: Mapped("k") }, - Range { from: '🄻', to: '🄻', mapping: Mapped("l") }, - Range { from: '🄼', to: '🄼', mapping: Mapped("m") }, - Range { from: '🄽', to: '🄽', mapping: Mapped("n") }, - Range { from: '🄾', to: '🄾', mapping: Mapped("o") }, - Range { from: '🄿', to: '🄿', mapping: Mapped("p") }, - Range { from: '🅀', to: '🅀', mapping: Mapped("q") }, - Range { from: '🅁', to: '🅁', mapping: Mapped("r") }, - Range { from: '🅂', to: '🅂', mapping: Mapped("s") }, - Range { from: '🅃', to: '🅃', mapping: Mapped("t") }, - Range { from: '🅄', to: '🅄', mapping: Mapped("u") }, - Range { from: '🅅', to: '🅅', mapping: Mapped("v") }, - Range { from: '🅆', to: '🅆', mapping: Mapped("w") }, - Range { from: '🅇', to: '🅇', mapping: Mapped("x") }, - Range { from: '🅈', to: '🅈', mapping: Mapped("y") }, - Range { from: '🅉', to: '🅉', mapping: Mapped("z") }, - Range { from: '🅊', to: '🅊', mapping: Mapped("hv") }, - Range { from: '🅋', to: '🅋', mapping: Mapped("mv") }, - Range { from: '🅌', to: '🅌', mapping: Mapped("sd") }, - Range { from: '🅍', to: '🅍', mapping: Mapped("ss") }, - Range { from: '🅎', to: '🅎', mapping: Mapped("ppv") }, - Range { from: '🅏', to: '🅏', mapping: Mapped("wc") }, - Range { from: '🅐', to: '🅖', mapping: Valid }, - Range { from: '🅗', to: '🅗', mapping: Valid }, - Range { from: '🅘', to: '🅞', mapping: Valid }, - Range { from: '🅟', to: '🅟', mapping: Valid }, - Range { from: '🅠', to: '🅩', mapping: Valid }, - Range { from: '🅪', to: '🅪', mapping: Mapped("mc") }, - Range { from: '🅫', to: '🅫', mapping: Mapped("md") }, - Range { from: '🅬', to: '🅯', mapping: Disallowed }, - Range { from: '🅰', to: '🅸', mapping: Valid }, - Range { from: '🅹', to: '🅹', mapping: Valid }, - Range { from: '🅺', to: '🅺', mapping: Valid }, - Range { from: '🅻', to: '🅼', mapping: Valid }, - Range { from: '🅽', to: '🅾', mapping: Valid }, - Range { from: '🅿', to: '🅿', mapping: Valid }, - Range { from: '🆀', to: '🆉', mapping: Valid }, - Range { from: '🆊', to: '🆍', mapping: Valid }, - Range { from: '🆎', to: '🆏', mapping: Valid }, - Range { from: '🆐', to: '🆐', mapping: Mapped("dj") }, - Range { from: '🆑', to: '🆚', mapping: Valid }, - Range { from: '🆛', to: '🆬', mapping: Valid }, - Range { from: '🆭', to: '🇥', mapping: Disallowed }, - Range { from: '🇦', to: '🇿', mapping: Valid }, - Range { from: '🈀', to: '🈀', mapping: Mapped("ほか") }, - Range { from: '🈁', to: '🈁', mapping: Mapped("ココ") }, - Range { from: '🈂', to: '🈂', mapping: Mapped("サ") }, - Range { from: '🈃', to: '🈏', mapping: Disallowed }, - Range { from: '🈐', to: '🈐', mapping: Mapped("手") }, - Range { from: '🈑', to: '🈑', mapping: Mapped("字") }, - Range { from: '🈒', to: '🈒', mapping: Mapped("双") }, - Range { from: '🈓', to: '🈓', mapping: Mapped("デ") }, - Range { from: '🈔', to: '🈔', mapping: Mapped("二") }, - Range { from: '🈕', to: '🈕', mapping: Mapped("多") }, - Range { from: '🈖', to: '🈖', mapping: Mapped("解") }, - Range { from: '🈗', to: '🈗', mapping: Mapped("天") }, - Range { from: '🈘', to: '🈘', mapping: Mapped("交") }, - Range { from: '🈙', to: '🈙', mapping: Mapped("映") }, - Range { from: '🈚', to: '🈚', mapping: Mapped("無") }, - Range { from: '🈛', to: '🈛', mapping: Mapped("料") }, - Range { from: '🈜', to: '🈜', mapping: Mapped("前") }, - Range { from: '🈝', to: '🈝', mapping: Mapped("後") }, - Range { from: '🈞', to: '🈞', mapping: Mapped("再") }, - Range { from: '🈟', to: '🈟', mapping: Mapped("新") }, - Range { from: '🈠', to: '🈠', mapping: Mapped("初") }, - Range { from: '🈡', to: '🈡', mapping: Mapped("終") }, - Range { from: '🈢', to: '🈢', mapping: Mapped("生") }, - Range { from: '🈣', to: '🈣', mapping: Mapped("販") }, - Range { from: '🈤', to: '🈤', mapping: Mapped("声") }, - Range { from: '🈥', to: '🈥', mapping: Mapped("吹") }, - Range { from: '🈦', to: '🈦', mapping: Mapped("演") }, - Range { from: '🈧', to: '🈧', mapping: Mapped("投") }, - Range { from: '🈨', to: '🈨', mapping: Mapped("捕") }, - Range { from: '🈩', to: '🈩', mapping: Mapped("一") }, - Range { from: '🈪', to: '🈪', mapping: Mapped("三") }, - Range { from: '🈫', to: '🈫', mapping: Mapped("遊") }, - Range { from: '🈬', to: '🈬', mapping: Mapped("左") }, - Range { from: '🈭', to: '🈭', mapping: Mapped("中") }, - Range { from: '🈮', to: '🈮', mapping: Mapped("右") }, - Range { from: '🈯', to: '🈯', mapping: Mapped("指") }, - Range { from: '🈰', to: '🈰', mapping: Mapped("走") }, - Range { from: '🈱', to: '🈱', mapping: Mapped("打") }, - Range { from: '🈲', to: '🈲', mapping: Mapped("禁") }, - Range { from: '🈳', to: '🈳', mapping: Mapped("空") }, - Range { from: '🈴', to: '🈴', mapping: Mapped("合") }, - Range { from: '🈵', to: '🈵', mapping: Mapped("満") }, - Range { from: '🈶', to: '🈶', mapping: Mapped("有") }, - Range { from: '🈷', to: '🈷', mapping: Mapped("月") }, - Range { from: '🈸', to: '🈸', mapping: Mapped("申") }, - Range { from: '🈹', to: '🈹', mapping: Mapped("割") }, - Range { from: '🈺', to: '🈺', mapping: Mapped("営") }, - Range { from: '🈻', to: '🈻', mapping: Mapped("配") }, - Range { from: '🈼', to: '🈿', mapping: Disallowed }, - Range { from: '🉀', to: '🉀', mapping: Mapped("〔本〕") }, - Range { from: '🉁', to: '🉁', mapping: Mapped("〔三〕") }, - Range { from: '🉂', to: '🉂', mapping: Mapped("〔二〕") }, - Range { from: '🉃', to: '🉃', mapping: Mapped("〔安〕") }, - Range { from: '🉄', to: '🉄', mapping: Mapped("〔点〕") }, - Range { from: '🉅', to: '🉅', mapping: Mapped("〔打〕") }, - Range { from: '🉆', to: '🉆', mapping: Mapped("〔盗〕") }, - Range { from: '🉇', to: '🉇', mapping: Mapped("〔勝〕") }, - Range { from: '🉈', to: '🉈', mapping: Mapped("〔敗〕") }, - Range { from: '🉉', to: '🉏', mapping: Disallowed }, - Range { from: '🉐', to: '🉐', mapping: Mapped("得") }, - Range { from: '🉑', to: '🉑', mapping: Mapped("可") }, - Range { from: '🉒', to: '🋿', mapping: Disallowed }, - Range { from: '🌀', to: '🌠', mapping: Valid }, - Range { from: '🌡', to: '🌬', mapping: Valid }, - Range { from: '🌭', to: '🌯', mapping: Valid }, - Range { from: '🌰', to: '🌵', mapping: Valid }, - Range { from: '🌶', to: '🌶', mapping: Valid }, - Range { from: '🌷', to: '🍼', mapping: Valid }, - Range { from: '🍽', to: '🍽', mapping: Valid }, - Range { from: '🍾', to: '🍿', mapping: Valid }, - Range { from: '🎀', to: '🎓', mapping: Valid }, - Range { from: '🎔', to: '🎟', mapping: Valid }, - Range { from: '🎠', to: '🏄', mapping: Valid }, - Range { from: '🏅', to: '🏅', mapping: Valid }, - Range { from: '🏆', to: '🏊', mapping: Valid }, - Range { from: '🏋', to: '🏎', mapping: Valid }, - Range { from: '🏏', to: '🏓', mapping: Valid }, - Range { from: '🏔', to: '🏟', mapping: Valid }, - Range { from: '🏠', to: '🏰', mapping: Valid }, - Range { from: '🏱', to: '🏷', mapping: Valid }, - Range { from: '🏸', to: '🏿', mapping: Valid }, - Range { from: '🐀', to: '🐾', mapping: Valid }, - Range { from: '🐿', to: '🐿', mapping: Valid }, - Range { from: '👀', to: '👀', mapping: Valid }, - Range { from: '👁', to: '👁', mapping: Valid }, - Range { from: '👂', to: '📷', mapping: Valid }, - Range { from: '📸', to: '📸', mapping: Valid }, - Range { from: '📹', to: '📼', mapping: Valid }, - Range { from: '📽', to: '📾', mapping: Valid }, - Range { from: '📿', to: '📿', mapping: Valid }, - Range { from: '🔀', to: '🔽', mapping: Valid }, - Range { from: '🔾', to: '🔿', mapping: Valid }, - Range { from: '🕀', to: '🕃', mapping: Valid }, - Range { from: '🕄', to: '🕊', mapping: Valid }, - Range { from: '🕋', to: '🕏', mapping: Valid }, - Range { from: '🕐', to: '🕧', mapping: Valid }, - Range { from: '🕨', to: '🕹', mapping: Valid }, - Range { from: '🕺', to: '🕺', mapping: Valid }, - Range { from: '🕻', to: '🖣', mapping: Valid }, - Range { from: '🖤', to: '🖤', mapping: Valid }, - Range { from: '🖥', to: '🗺', mapping: Valid }, - Range { from: '🗻', to: '🗿', mapping: Valid }, - Range { from: '😀', to: '😀', mapping: Valid }, - Range { from: '😁', to: '😐', mapping: Valid }, - Range { from: '😑', to: '😑', mapping: Valid }, - Range { from: '😒', to: '😔', mapping: Valid }, - Range { from: '😕', to: '😕', mapping: Valid }, - Range { from: '😖', to: '😖', mapping: Valid }, - Range { from: '😗', to: '😗', mapping: Valid }, - Range { from: '😘', to: '😘', mapping: Valid }, - Range { from: '😙', to: '😙', mapping: Valid }, - Range { from: '😚', to: '😚', mapping: Valid }, - Range { from: '😛', to: '😛', mapping: Valid }, - Range { from: '😜', to: '😞', mapping: Valid }, - Range { from: '😟', to: '😟', mapping: Valid }, - Range { from: '😠', to: '😥', mapping: Valid }, - Range { from: '😦', to: '😧', mapping: Valid }, - Range { from: '😨', to: '😫', mapping: Valid }, - Range { from: '😬', to: '😬', mapping: Valid }, - Range { from: '😭', to: '😭', mapping: Valid }, - Range { from: '😮', to: '😯', mapping: Valid }, - Range { from: '😰', to: '😳', mapping: Valid }, - Range { from: '😴', to: '😴', mapping: Valid }, - Range { from: '😵', to: '🙀', mapping: Valid }, - Range { from: '🙁', to: '🙂', mapping: Valid }, - Range { from: '🙃', to: '🙄', mapping: Valid }, - Range { from: '🙅', to: '🙏', mapping: Valid }, - Range { from: '🙐', to: '🙿', mapping: Valid }, - Range { from: '🚀', to: '🛅', mapping: Valid }, - Range { from: '🛆', to: '🛏', mapping: Valid }, - Range { from: '🛐', to: '🛐', mapping: Valid }, - Range { from: '🛑', to: '🛒', mapping: Valid }, - Range { from: '🛓', to: '🛟', mapping: Disallowed }, - Range { from: '🛠', to: '🛬', mapping: Valid }, - Range { from: '🛭', to: '🛯', mapping: Disallowed }, - Range { from: '🛰', to: '🛳', mapping: Valid }, - Range { from: '🛴', to: '🛶', mapping: Valid }, - Range { from: '🛷', to: '🛿', mapping: Disallowed }, - Range { from: '🜀', to: '🝳', mapping: Valid }, - Range { from: '🝴', to: '🝿', mapping: Disallowed }, - Range { from: '🞀', to: '🟔', mapping: Valid }, - Range { from: '🟕', to: '🟿', mapping: Disallowed }, - Range { from: '🠀', to: '🠋', mapping: Valid }, - Range { from: '🠌', to: '🠏', mapping: Disallowed }, - Range { from: '🠐', to: '🡇', mapping: Valid }, - Range { from: '🡈', to: '🡏', mapping: Disallowed }, - Range { from: '🡐', to: '🡙', mapping: Valid }, - Range { from: '🡚', to: '🡟', mapping: Disallowed }, - Range { from: '🡠', to: '🢇', mapping: Valid }, - Range { from: '🢈', to: '🢏', mapping: Disallowed }, - Range { from: '🢐', to: '🢭', mapping: Valid }, - Range { from: '🢮', to: '🤏', mapping: Disallowed }, - Range { from: '🤐', to: '🤘', mapping: Valid }, - Range { from: '🤙', to: '🤞', mapping: Valid }, - Range { from: '🤟', to: '🤟', mapping: Disallowed }, - Range { from: '🤠', to: '🤧', mapping: Valid }, - Range { from: '🤨', to: '🤯', mapping: Disallowed }, - Range { from: '🤰', to: '🤰', mapping: Valid }, - Range { from: '🤱', to: '🤲', mapping: Disallowed }, - Range { from: '🤳', to: '🤾', mapping: Valid }, - Range { from: '🤿', to: '🤿', mapping: Disallowed }, - Range { from: '🥀', to: '🥋', mapping: Valid }, - Range { from: '🥌', to: '🥏', mapping: Disallowed }, - Range { from: '🥐', to: '🥞', mapping: Valid }, - Range { from: '🥟', to: '🥿', mapping: Disallowed }, - Range { from: '🦀', to: '🦄', mapping: Valid }, - Range { from: '🦅', to: '🦑', mapping: Valid }, - Range { from: '🦒', to: '🦿', mapping: Disallowed }, - Range { from: '🧀', to: '🧀', mapping: Valid }, - Range { from: '🧁', to: '🿽', mapping: Disallowed }, - Range { from: '🿾', to: '🿿', mapping: Disallowed }, - Range { from: '𠀀', to: '𪛖', mapping: Valid }, - Range { from: '𪛗', to: '𪛿', mapping: Disallowed }, - Range { from: '𪜀', to: '𫜴', mapping: Valid }, - Range { from: '𫜵', to: '𫜿', mapping: Disallowed }, - Range { from: '𫝀', to: '𫠝', mapping: Valid }, - Range { from: '𫠞', to: '𫠟', mapping: Disallowed }, - Range { from: '𫠠', to: '𬺡', mapping: Valid }, - Range { from: '𬺢', to: '𯟿', mapping: Disallowed }, - Range { from: '丽', to: '丽', mapping: Mapped("丽") }, - Range { from: '丸', to: '丸', mapping: Mapped("丸") }, - Range { from: '乁', to: '乁', mapping: Mapped("乁") }, - Range { from: '𠄢', to: '𠄢', mapping: Mapped("𠄢") }, - Range { from: '你', to: '你', mapping: Mapped("你") }, - Range { from: '侮', to: '侮', mapping: Mapped("侮") }, - Range { from: '侻', to: '侻', mapping: Mapped("侻") }, - Range { from: '倂', to: '倂', mapping: Mapped("倂") }, - Range { from: '偺', to: '偺', mapping: Mapped("偺") }, - Range { from: '備', to: '備', mapping: Mapped("備") }, - Range { from: '僧', to: '僧', mapping: Mapped("僧") }, - Range { from: '像', to: '像', mapping: Mapped("像") }, - Range { from: '㒞', to: '㒞', mapping: Mapped("㒞") }, - Range { from: '𠘺', to: '𠘺', mapping: Mapped("𠘺") }, - Range { from: '免', to: '免', mapping: Mapped("免") }, - Range { from: '兔', to: '兔', mapping: Mapped("兔") }, - Range { from: '兤', to: '兤', mapping: Mapped("兤") }, - Range { from: '具', to: '具', mapping: Mapped("具") }, - Range { from: '𠔜', to: '𠔜', mapping: Mapped("𠔜") }, - Range { from: '㒹', to: '㒹', mapping: Mapped("㒹") }, - Range { from: '內', to: '內', mapping: Mapped("內") }, - Range { from: '再', to: '再', mapping: Mapped("再") }, - Range { from: '𠕋', to: '𠕋', mapping: Mapped("𠕋") }, - Range { from: '冗', to: '冗', mapping: Mapped("冗") }, - Range { from: '冤', to: '冤', mapping: Mapped("冤") }, - Range { from: '仌', to: '仌', mapping: Mapped("仌") }, - Range { from: '冬', to: '冬', mapping: Mapped("冬") }, - Range { from: '况', to: '况', mapping: Mapped("况") }, - Range { from: '𩇟', to: '𩇟', mapping: Mapped("𩇟") }, - Range { from: '凵', to: '凵', mapping: Mapped("凵") }, - Range { from: '刃', to: '刃', mapping: Mapped("刃") }, - Range { from: '㓟', to: '㓟', mapping: Mapped("㓟") }, - Range { from: '刻', to: '刻', mapping: Mapped("刻") }, - Range { from: '剆', to: '剆', mapping: Mapped("剆") }, - Range { from: '割', to: '割', mapping: Mapped("割") }, - Range { from: '剷', to: '剷', mapping: Mapped("剷") }, - Range { from: '㔕', to: '㔕', mapping: Mapped("㔕") }, - Range { from: '勇', to: '勇', mapping: Mapped("勇") }, - Range { from: '勉', to: '勉', mapping: Mapped("勉") }, - Range { from: '勤', to: '勤', mapping: Mapped("勤") }, - Range { from: '勺', to: '勺', mapping: Mapped("勺") }, - Range { from: '包', to: '包', mapping: Mapped("包") }, - Range { from: '匆', to: '匆', mapping: Mapped("匆") }, - Range { from: '北', to: '北', mapping: Mapped("北") }, - Range { from: '卉', to: '卉', mapping: Mapped("卉") }, - Range { from: '卑', to: '卑', mapping: Mapped("卑") }, - Range { from: '博', to: '博', mapping: Mapped("博") }, - Range { from: '即', to: '即', mapping: Mapped("即") }, - Range { from: '卽', to: '卽', mapping: Mapped("卽") }, - Range { from: '卿', to: '卿', mapping: Mapped("卿") }, - Range { from: '𠨬', to: '𠨬', mapping: Mapped("𠨬") }, - Range { from: '灰', to: '灰', mapping: Mapped("灰") }, - Range { from: '及', to: '及', mapping: Mapped("及") }, - Range { from: '叟', to: '叟', mapping: Mapped("叟") }, - Range { from: '𠭣', to: '𠭣', mapping: Mapped("𠭣") }, - Range { from: '叫', to: '叫', mapping: Mapped("叫") }, - Range { from: '叱', to: '叱', mapping: Mapped("叱") }, - Range { from: '吆', to: '吆', mapping: Mapped("吆") }, - Range { from: '咞', to: '咞', mapping: Mapped("咞") }, - Range { from: '吸', to: '吸', mapping: Mapped("吸") }, - Range { from: '呈', to: '呈', mapping: Mapped("呈") }, - Range { from: '周', to: '周', mapping: Mapped("周") }, - Range { from: '咢', to: '咢', mapping: Mapped("咢") }, - Range { from: '哶', to: '哶', mapping: Mapped("哶") }, - Range { from: '唐', to: '唐', mapping: Mapped("唐") }, - Range { from: '啓', to: '啓', mapping: Mapped("啓") }, - Range { from: '啣', to: '啣', mapping: Mapped("啣") }, - Range { from: '善', to: '善', mapping: Mapped("善") }, - Range { from: '喙', to: '喙', mapping: Mapped("喙") }, - Range { from: '喫', to: '喫', mapping: Mapped("喫") }, - Range { from: '喳', to: '喳', mapping: Mapped("喳") }, - Range { from: '嗂', to: '嗂', mapping: Mapped("嗂") }, - Range { from: '圖', to: '圖', mapping: Mapped("圖") }, - Range { from: '嘆', to: '嘆', mapping: Mapped("嘆") }, - Range { from: '圗', to: '圗', mapping: Mapped("圗") }, - Range { from: '噑', to: '噑', mapping: Mapped("噑") }, - Range { from: '噴', to: '噴', mapping: Mapped("噴") }, - Range { from: '切', to: '切', mapping: Mapped("切") }, - Range { from: '壮', to: '壮', mapping: Mapped("壮") }, - Range { from: '城', to: '城', mapping: Mapped("城") }, - Range { from: '埴', to: '埴', mapping: Mapped("埴") }, - Range { from: '堍', to: '堍', mapping: Mapped("堍") }, - Range { from: '型', to: '型', mapping: Mapped("型") }, - Range { from: '堲', to: '堲', mapping: Mapped("堲") }, - Range { from: '報', to: '報', mapping: Mapped("報") }, - Range { from: '墬', to: '墬', mapping: Mapped("墬") }, - Range { from: '𡓤', to: '𡓤', mapping: Mapped("𡓤") }, - Range { from: '売', to: '売', mapping: Mapped("売") }, - Range { from: '壷', to: '壷', mapping: Mapped("壷") }, - Range { from: '夆', to: '夆', mapping: Mapped("夆") }, - Range { from: '多', to: '多', mapping: Mapped("多") }, - Range { from: '夢', to: '夢', mapping: Mapped("夢") }, - Range { from: '奢', to: '奢', mapping: Mapped("奢") }, - Range { from: '𡚨', to: '𡚨', mapping: Mapped("𡚨") }, - Range { from: '𡛪', to: '𡛪', mapping: Mapped("𡛪") }, - Range { from: '姬', to: '姬', mapping: Mapped("姬") }, - Range { from: '娛', to: '娛', mapping: Mapped("娛") }, - Range { from: '娧', to: '娧', mapping: Mapped("娧") }, - Range { from: '姘', to: '姘', mapping: Mapped("姘") }, - Range { from: '婦', to: '婦', mapping: Mapped("婦") }, - Range { from: '㛮', to: '㛮', mapping: Mapped("㛮") }, - Range { from: '㛼', to: '㛼', mapping: Disallowed }, - Range { from: '嬈', to: '嬈', mapping: Mapped("嬈") }, - Range { from: '嬾', to: '嬾', mapping: Mapped("嬾") }, - Range { from: '𡧈', to: '𡧈', mapping: Mapped("𡧈") }, - Range { from: '寃', to: '寃', mapping: Mapped("寃") }, - Range { from: '寘', to: '寘', mapping: Mapped("寘") }, - Range { from: '寧', to: '寧', mapping: Mapped("寧") }, - Range { from: '寳', to: '寳', mapping: Mapped("寳") }, - Range { from: '𡬘', to: '𡬘', mapping: Mapped("𡬘") }, - Range { from: '寿', to: '寿', mapping: Mapped("寿") }, - Range { from: '将', to: '将', mapping: Mapped("将") }, - Range { from: '当', to: '当', mapping: Disallowed }, - Range { from: '尢', to: '尢', mapping: Mapped("尢") }, - Range { from: '㞁', to: '㞁', mapping: Mapped("㞁") }, - Range { from: '屠', to: '屠', mapping: Mapped("屠") }, - Range { from: '屮', to: '屮', mapping: Mapped("屮") }, - Range { from: '峀', to: '峀', mapping: Mapped("峀") }, - Range { from: '岍', to: '岍', mapping: Mapped("岍") }, - Range { from: '𡷤', to: '𡷤', mapping: Mapped("𡷤") }, - Range { from: '嵃', to: '嵃', mapping: Mapped("嵃") }, - Range { from: '𡷦', to: '𡷦', mapping: Mapped("𡷦") }, - Range { from: '嵮', to: '嵮', mapping: Mapped("嵮") }, - Range { from: '嵫', to: '嵫', mapping: Mapped("嵫") }, - Range { from: '嵼', to: '嵼', mapping: Mapped("嵼") }, - Range { from: '巡', to: '巡', mapping: Mapped("巡") }, - Range { from: '巢', to: '巢', mapping: Mapped("巢") }, - Range { from: '㠯', to: '㠯', mapping: Mapped("㠯") }, - Range { from: '巽', to: '巽', mapping: Mapped("巽") }, - Range { from: '帨', to: '帨', mapping: Mapped("帨") }, - Range { from: '帽', to: '帽', mapping: Mapped("帽") }, - Range { from: '幩', to: '幩', mapping: Mapped("幩") }, - Range { from: '㡢', to: '㡢', mapping: Mapped("㡢") }, - Range { from: '𢆃', to: '𢆃', mapping: Mapped("𢆃") }, - Range { from: '㡼', to: '㡼', mapping: Mapped("㡼") }, - Range { from: '庰', to: '庰', mapping: Mapped("庰") }, - Range { from: '庳', to: '庳', mapping: Mapped("庳") }, - Range { from: '庶', to: '庶', mapping: Mapped("庶") }, - Range { from: '廊', to: '廊', mapping: Mapped("廊") }, - Range { from: '𪎒', to: '𪎒', mapping: Mapped("𪎒") }, - Range { from: '廾', to: '廾', mapping: Mapped("廾") }, - Range { from: '𢌱', to: '𢌱', mapping: Mapped("𢌱") }, - Range { from: '舁', to: '舁', mapping: Mapped("舁") }, - Range { from: '弢', to: '弢', mapping: Mapped("弢") }, - Range { from: '㣇', to: '㣇', mapping: Mapped("㣇") }, - Range { from: '𣊸', to: '𣊸', mapping: Mapped("𣊸") }, - Range { from: '𦇚', to: '𦇚', mapping: Mapped("𦇚") }, - Range { from: '形', to: '形', mapping: Mapped("形") }, - Range { from: '彫', to: '彫', mapping: Mapped("彫") }, - Range { from: '㣣', to: '㣣', mapping: Mapped("㣣") }, - Range { from: '徚', to: '徚', mapping: Mapped("徚") }, - Range { from: '忍', to: '忍', mapping: Mapped("忍") }, - Range { from: '志', to: '志', mapping: Mapped("志") }, - Range { from: '忹', to: '忹', mapping: Mapped("忹") }, - Range { from: '悁', to: '悁', mapping: Mapped("悁") }, - Range { from: '㤺', to: '㤺', mapping: Mapped("㤺") }, - Range { from: '㤜', to: '㤜', mapping: Mapped("㤜") }, - Range { from: '悔', to: '悔', mapping: Mapped("悔") }, - Range { from: '𢛔', to: '𢛔', mapping: Mapped("𢛔") }, - Range { from: '惇', to: '惇', mapping: Mapped("惇") }, - Range { from: '慈', to: '慈', mapping: Mapped("慈") }, - Range { from: '慌', to: '慌', mapping: Mapped("慌") }, - Range { from: '慎', to: '慎', mapping: Mapped("慎") }, - Range { from: '慌', to: '慌', mapping: Mapped("慌") }, - Range { from: '慺', to: '慺', mapping: Mapped("慺") }, - Range { from: '憎', to: '憎', mapping: Mapped("憎") }, - Range { from: '憲', to: '憲', mapping: Mapped("憲") }, - Range { from: '憤', to: '憤', mapping: Mapped("憤") }, - Range { from: '憯', to: '憯', mapping: Mapped("憯") }, - Range { from: '懞', to: '懞', mapping: Mapped("懞") }, - Range { from: '懲', to: '懲', mapping: Mapped("懲") }, - Range { from: '懶', to: '懶', mapping: Mapped("懶") }, - Range { from: '成', to: '成', mapping: Mapped("成") }, - Range { from: '戛', to: '戛', mapping: Mapped("戛") }, - Range { from: '扝', to: '扝', mapping: Mapped("扝") }, - Range { from: '抱', to: '抱', mapping: Mapped("抱") }, - Range { from: '拔', to: '拔', mapping: Mapped("拔") }, - Range { from: '捐', to: '捐', mapping: Mapped("捐") }, - Range { from: '𢬌', to: '𢬌', mapping: Mapped("𢬌") }, - Range { from: '挽', to: '挽', mapping: Mapped("挽") }, - Range { from: '拼', to: '拼', mapping: Mapped("拼") }, - Range { from: '捨', to: '捨', mapping: Mapped("捨") }, - Range { from: '掃', to: '掃', mapping: Mapped("掃") }, - Range { from: '揤', to: '揤', mapping: Mapped("揤") }, - Range { from: '𢯱', to: '𢯱', mapping: Mapped("𢯱") }, - Range { from: '搢', to: '搢', mapping: Mapped("搢") }, - Range { from: '揅', to: '揅', mapping: Mapped("揅") }, - Range { from: '掩', to: '掩', mapping: Mapped("掩") }, - Range { from: '㨮', to: '㨮', mapping: Mapped("㨮") }, - Range { from: '摩', to: '摩', mapping: Mapped("摩") }, - Range { from: '摾', to: '摾', mapping: Mapped("摾") }, - Range { from: '撝', to: '撝', mapping: Mapped("撝") }, - Range { from: '摷', to: '摷', mapping: Mapped("摷") }, - Range { from: '㩬', to: '㩬', mapping: Mapped("㩬") }, - Range { from: '敏', to: '敏', mapping: Mapped("敏") }, - Range { from: '敬', to: '敬', mapping: Mapped("敬") }, - Range { from: '𣀊', to: '𣀊', mapping: Mapped("𣀊") }, - Range { from: '旣', to: '旣', mapping: Mapped("旣") }, - Range { from: '書', to: '書', mapping: Mapped("書") }, - Range { from: '晉', to: '晉', mapping: Mapped("晉") }, - Range { from: '㬙', to: '㬙', mapping: Mapped("㬙") }, - Range { from: '暑', to: '暑', mapping: Mapped("暑") }, - Range { from: '㬈', to: '㬈', mapping: Mapped("㬈") }, - Range { from: '㫤', to: '㫤', mapping: Mapped("㫤") }, - Range { from: '冒', to: '冒', mapping: Mapped("冒") }, - Range { from: '冕', to: '冕', mapping: Mapped("冕") }, - Range { from: '最', to: '最', mapping: Mapped("最") }, - Range { from: '暜', to: '暜', mapping: Mapped("暜") }, - Range { from: '肭', to: '肭', mapping: Mapped("肭") }, - Range { from: '䏙', to: '䏙', mapping: Mapped("䏙") }, - Range { from: '朗', to: '朗', mapping: Mapped("朗") }, - Range { from: '望', to: '望', mapping: Mapped("望") }, - Range { from: '朡', to: '朡', mapping: Mapped("朡") }, - Range { from: '杞', to: '杞', mapping: Mapped("杞") }, - Range { from: '杓', to: '杓', mapping: Mapped("杓") }, - Range { from: '𣏃', to: '𣏃', mapping: Mapped("𣏃") }, - Range { from: '㭉', to: '㭉', mapping: Mapped("㭉") }, - Range { from: '柺', to: '柺', mapping: Mapped("柺") }, - Range { from: '枅', to: '枅', mapping: Mapped("枅") }, - Range { from: '桒', to: '桒', mapping: Mapped("桒") }, - Range { from: '梅', to: '梅', mapping: Mapped("梅") }, - Range { from: '𣑭', to: '𣑭', mapping: Mapped("𣑭") }, - Range { from: '梎', to: '梎', mapping: Mapped("梎") }, - Range { from: '栟', to: '栟', mapping: Mapped("栟") }, - Range { from: '椔', to: '椔', mapping: Mapped("椔") }, - Range { from: '㮝', to: '㮝', mapping: Mapped("㮝") }, - Range { from: '楂', to: '楂', mapping: Mapped("楂") }, - Range { from: '榣', to: '榣', mapping: Mapped("榣") }, - Range { from: '槪', to: '槪', mapping: Mapped("槪") }, - Range { from: '檨', to: '檨', mapping: Mapped("檨") }, - Range { from: '𣚣', to: '𣚣', mapping: Mapped("𣚣") }, - Range { from: '櫛', to: '櫛', mapping: Mapped("櫛") }, - Range { from: '㰘', to: '㰘', mapping: Mapped("㰘") }, - Range { from: '次', to: '次', mapping: Mapped("次") }, - Range { from: '𣢧', to: '𣢧', mapping: Mapped("𣢧") }, - Range { from: '歔', to: '歔', mapping: Mapped("歔") }, - Range { from: '㱎', to: '㱎', mapping: Mapped("㱎") }, - Range { from: '歲', to: '歲', mapping: Mapped("歲") }, - Range { from: '殟', to: '殟', mapping: Mapped("殟") }, - Range { from: '殺', to: '殺', mapping: Mapped("殺") }, - Range { from: '殻', to: '殻', mapping: Mapped("殻") }, - Range { from: '𣪍', to: '𣪍', mapping: Mapped("𣪍") }, - Range { from: '𡴋', to: '𡴋', mapping: Mapped("𡴋") }, - Range { from: '𣫺', to: '𣫺', mapping: Mapped("𣫺") }, - Range { from: '汎', to: '汎', mapping: Mapped("汎") }, - Range { from: '𣲼', to: '𣲼', mapping: Mapped("𣲼") }, - Range { from: '沿', to: '沿', mapping: Mapped("沿") }, - Range { from: '泍', to: '泍', mapping: Mapped("泍") }, - Range { from: '汧', to: '汧', mapping: Mapped("汧") }, - Range { from: '洖', to: '洖', mapping: Mapped("洖") }, - Range { from: '派', to: '派', mapping: Mapped("派") }, - Range { from: '海', to: '海', mapping: Mapped("海") }, - Range { from: '流', to: '流', mapping: Mapped("流") }, - Range { from: '浩', to: '浩', mapping: Mapped("浩") }, - Range { from: '浸', to: '浸', mapping: Mapped("浸") }, - Range { from: '涅', to: '涅', mapping: Mapped("涅") }, - Range { from: '𣴞', to: '𣴞', mapping: Mapped("𣴞") }, - Range { from: '洴', to: '洴', mapping: Mapped("洴") }, - Range { from: '港', to: '港', mapping: Mapped("港") }, - Range { from: '湮', to: '湮', mapping: Mapped("湮") }, - Range { from: '㴳', to: '㴳', mapping: Mapped("㴳") }, - Range { from: '滋', to: '滋', mapping: Mapped("滋") }, - Range { from: '滇', to: '滇', mapping: Mapped("滇") }, - Range { from: '𣻑', to: '𣻑', mapping: Mapped("𣻑") }, - Range { from: '淹', to: '淹', mapping: Mapped("淹") }, - Range { from: '潮', to: '潮', mapping: Mapped("潮") }, - Range { from: '𣽞', to: '𣽞', mapping: Mapped("𣽞") }, - Range { from: '𣾎', to: '𣾎', mapping: Mapped("𣾎") }, - Range { from: '濆', to: '濆', mapping: Mapped("濆") }, - Range { from: '瀹', to: '瀹', mapping: Mapped("瀹") }, - Range { from: '瀞', to: '瀞', mapping: Mapped("瀞") }, - Range { from: '瀛', to: '瀛', mapping: Mapped("瀛") }, - Range { from: '㶖', to: '㶖', mapping: Mapped("㶖") }, - Range { from: '灊', to: '灊', mapping: Mapped("灊") }, - Range { from: '災', to: '災', mapping: Mapped("災") }, - Range { from: '灷', to: '灷', mapping: Mapped("灷") }, - Range { from: '炭', to: '炭', mapping: Mapped("炭") }, - Range { from: '𠔥', to: '𠔥', mapping: Mapped("𠔥") }, - Range { from: '煅', to: '煅', mapping: Mapped("煅") }, - Range { from: '𤉣', to: '𤉣', mapping: Mapped("𤉣") }, - Range { from: '熜', to: '熜', mapping: Mapped("熜") }, - Range { from: '𤎫', to: '𤎫', mapping: Disallowed }, - Range { from: '爨', to: '爨', mapping: Mapped("爨") }, - Range { from: '爵', to: '爵', mapping: Mapped("爵") }, - Range { from: '牐', to: '牐', mapping: Mapped("牐") }, - Range { from: '𤘈', to: '𤘈', mapping: Mapped("𤘈") }, - Range { from: '犀', to: '犀', mapping: Mapped("犀") }, - Range { from: '犕', to: '犕', mapping: Mapped("犕") }, - Range { from: '𤜵', to: '𤜵', mapping: Mapped("𤜵") }, - Range { from: '𤠔', to: '𤠔', mapping: Mapped("𤠔") }, - Range { from: '獺', to: '獺', mapping: Mapped("獺") }, - Range { from: '王', to: '王', mapping: Mapped("王") }, - Range { from: '㺬', to: '㺬', mapping: Mapped("㺬") }, - Range { from: '玥', to: '玥', mapping: Mapped("玥") }, - Range { from: '㺸', to: '㺸', mapping: Mapped("㺸") }, - Range { from: '瑇', to: '瑇', mapping: Mapped("瑇") }, - Range { from: '瑜', to: '瑜', mapping: Mapped("瑜") }, - Range { from: '瑱', to: '瑱', mapping: Mapped("瑱") }, - Range { from: '璅', to: '璅', mapping: Mapped("璅") }, - Range { from: '瓊', to: '瓊', mapping: Mapped("瓊") }, - Range { from: '㼛', to: '㼛', mapping: Mapped("㼛") }, - Range { from: '甤', to: '甤', mapping: Mapped("甤") }, - Range { from: '𤰶', to: '𤰶', mapping: Mapped("𤰶") }, - Range { from: '甾', to: '甾', mapping: Mapped("甾") }, - Range { from: '𤲒', to: '𤲒', mapping: Mapped("𤲒") }, - Range { from: '異', to: '異', mapping: Mapped("異") }, - Range { from: '𢆟', to: '𢆟', mapping: Mapped("𢆟") }, - Range { from: '瘐', to: '瘐', mapping: Mapped("瘐") }, - Range { from: '𤾡', to: '𤾡', mapping: Mapped("𤾡") }, - Range { from: '𤾸', to: '𤾸', mapping: Mapped("𤾸") }, - Range { from: '𥁄', to: '𥁄', mapping: Mapped("𥁄") }, - Range { from: '㿼', to: '㿼', mapping: Mapped("㿼") }, - Range { from: '䀈', to: '䀈', mapping: Mapped("䀈") }, - Range { from: '直', to: '直', mapping: Mapped("直") }, - Range { from: '𥃳', to: '𥃳', mapping: Mapped("𥃳") }, - Range { from: '𥃲', to: '𥃲', mapping: Mapped("𥃲") }, - Range { from: '𥄙', to: '𥄙', mapping: Mapped("𥄙") }, - Range { from: '𥄳', to: '𥄳', mapping: Mapped("𥄳") }, - Range { from: '眞', to: '眞', mapping: Mapped("眞") }, - Range { from: '真', to: '真', mapping: Mapped("真") }, - Range { from: '睊', to: '睊', mapping: Mapped("睊") }, - Range { from: '䀹', to: '䀹', mapping: Mapped("䀹") }, - Range { from: '瞋', to: '瞋', mapping: Mapped("瞋") }, - Range { from: '䁆', to: '䁆', mapping: Mapped("䁆") }, - Range { from: '䂖', to: '䂖', mapping: Mapped("䂖") }, - Range { from: '𥐝', to: '𥐝', mapping: Mapped("𥐝") }, - Range { from: '硎', to: '硎', mapping: Mapped("硎") }, - Range { from: '碌', to: '碌', mapping: Mapped("碌") }, - Range { from: '磌', to: '磌', mapping: Mapped("磌") }, - Range { from: '䃣', to: '䃣', mapping: Mapped("䃣") }, - Range { from: '𥘦', to: '𥘦', mapping: Mapped("𥘦") }, - Range { from: '祖', to: '祖', mapping: Mapped("祖") }, - Range { from: '𥚚', to: '𥚚', mapping: Mapped("𥚚") }, - Range { from: '𥛅', to: '𥛅', mapping: Mapped("𥛅") }, - Range { from: '福', to: '福', mapping: Mapped("福") }, - Range { from: '秫', to: '秫', mapping: Mapped("秫") }, - Range { from: '䄯', to: '䄯', mapping: Mapped("䄯") }, - Range { from: '穀', to: '穀', mapping: Mapped("穀") }, - Range { from: '穊', to: '穊', mapping: Mapped("穊") }, - Range { from: '穏', to: '穏', mapping: Mapped("穏") }, - Range { from: '𥥼', to: '𥥼', mapping: Mapped("𥥼") }, - Range { from: '𥪧', to: '𥪧', mapping: Mapped("𥪧") }, - Range { from: '竮', to: '竮', mapping: Disallowed }, - Range { from: '䈂', to: '䈂', mapping: Mapped("䈂") }, - Range { from: '𥮫', to: '𥮫', mapping: Mapped("𥮫") }, - Range { from: '篆', to: '篆', mapping: Mapped("篆") }, - Range { from: '築', to: '築', mapping: Mapped("築") }, - Range { from: '䈧', to: '䈧', mapping: Mapped("䈧") }, - Range { from: '𥲀', to: '𥲀', mapping: Mapped("𥲀") }, - Range { from: '糒', to: '糒', mapping: Mapped("糒") }, - Range { from: '䊠', to: '䊠', mapping: Mapped("䊠") }, - Range { from: '糨', to: '糨', mapping: Mapped("糨") }, - Range { from: '糣', to: '糣', mapping: Mapped("糣") }, - Range { from: '紀', to: '紀', mapping: Mapped("紀") }, - Range { from: '𥾆', to: '𥾆', mapping: Mapped("𥾆") }, - Range { from: '絣', to: '絣', mapping: Mapped("絣") }, - Range { from: '䌁', to: '䌁', mapping: Mapped("䌁") }, - Range { from: '緇', to: '緇', mapping: Mapped("緇") }, - Range { from: '縂', to: '縂', mapping: Mapped("縂") }, - Range { from: '繅', to: '繅', mapping: Mapped("繅") }, - Range { from: '䌴', to: '䌴', mapping: Mapped("䌴") }, - Range { from: '𦈨', to: '𦈨', mapping: Mapped("𦈨") }, - Range { from: '𦉇', to: '𦉇', mapping: Mapped("𦉇") }, - Range { from: '䍙', to: '䍙', mapping: Mapped("䍙") }, - Range { from: '𦋙', to: '𦋙', mapping: Mapped("𦋙") }, - Range { from: '罺', to: '罺', mapping: Mapped("罺") }, - Range { from: '𦌾', to: '𦌾', mapping: Mapped("𦌾") }, - Range { from: '羕', to: '羕', mapping: Mapped("羕") }, - Range { from: '翺', to: '翺', mapping: Mapped("翺") }, - Range { from: '者', to: '者', mapping: Mapped("者") }, - Range { from: '𦓚', to: '𦓚', mapping: Mapped("𦓚") }, - Range { from: '𦔣', to: '𦔣', mapping: Mapped("𦔣") }, - Range { from: '聠', to: '聠', mapping: Mapped("聠") }, - Range { from: '𦖨', to: '𦖨', mapping: Mapped("𦖨") }, - Range { from: '聰', to: '聰', mapping: Mapped("聰") }, - Range { from: '𣍟', to: '𣍟', mapping: Mapped("𣍟") }, - Range { from: '䏕', to: '䏕', mapping: Mapped("䏕") }, - Range { from: '育', to: '育', mapping: Mapped("育") }, - Range { from: '脃', to: '脃', mapping: Mapped("脃") }, - Range { from: '䐋', to: '䐋', mapping: Mapped("䐋") }, - Range { from: '脾', to: '脾', mapping: Mapped("脾") }, - Range { from: '媵', to: '媵', mapping: Mapped("媵") }, - Range { from: '𦞧', to: '𦞧', mapping: Mapped("𦞧") }, - Range { from: '𦞵', to: '𦞵', mapping: Mapped("𦞵") }, - Range { from: '𣎓', to: '𣎓', mapping: Mapped("𣎓") }, - Range { from: '𣎜', to: '𣎜', mapping: Mapped("𣎜") }, - Range { from: '舁', to: '舁', mapping: Mapped("舁") }, - Range { from: '舄', to: '舄', mapping: Mapped("舄") }, - Range { from: '辞', to: '辞', mapping: Mapped("辞") }, - Range { from: '䑫', to: '䑫', mapping: Mapped("䑫") }, - Range { from: '芑', to: '芑', mapping: Mapped("芑") }, - Range { from: '芋', to: '芋', mapping: Mapped("芋") }, - Range { from: '芝', to: '芝', mapping: Mapped("芝") }, - Range { from: '劳', to: '劳', mapping: Mapped("劳") }, - Range { from: '花', to: '花', mapping: Mapped("花") }, - Range { from: '芳', to: '芳', mapping: Mapped("芳") }, - Range { from: '芽', to: '芽', mapping: Mapped("芽") }, - Range { from: '苦', to: '苦', mapping: Mapped("苦") }, - Range { from: '𦬼', to: '𦬼', mapping: Mapped("𦬼") }, - Range { from: '若', to: '若', mapping: Mapped("若") }, - Range { from: '茝', to: '茝', mapping: Mapped("茝") }, - Range { from: '荣', to: '荣', mapping: Mapped("荣") }, - Range { from: '莭', to: '莭', mapping: Mapped("莭") }, - Range { from: '茣', to: '茣', mapping: Mapped("茣") }, - Range { from: '莽', to: '莽', mapping: Mapped("莽") }, - Range { from: '菧', to: '菧', mapping: Mapped("菧") }, - Range { from: '著', to: '著', mapping: Mapped("著") }, - Range { from: '荓', to: '荓', mapping: Mapped("荓") }, - Range { from: '菊', to: '菊', mapping: Mapped("菊") }, - Range { from: '菌', to: '菌', mapping: Mapped("菌") }, - Range { from: '菜', to: '菜', mapping: Mapped("菜") }, - Range { from: '𦰶', to: '𦰶', mapping: Mapped("𦰶") }, - Range { from: '𦵫', to: '𦵫', mapping: Mapped("𦵫") }, - Range { from: '𦳕', to: '𦳕', mapping: Mapped("𦳕") }, - Range { from: '䔫', to: '䔫', mapping: Mapped("䔫") }, - Range { from: '蓱', to: '蓱', mapping: Mapped("蓱") }, - Range { from: '蓳', to: '蓳', mapping: Mapped("蓳") }, - Range { from: '蔖', to: '蔖', mapping: Mapped("蔖") }, - Range { from: '𧏊', to: '𧏊', mapping: Mapped("𧏊") }, - Range { from: '蕤', to: '蕤', mapping: Mapped("蕤") }, - Range { from: '𦼬', to: '𦼬', mapping: Mapped("𦼬") }, - Range { from: '䕝', to: '䕝', mapping: Mapped("䕝") }, - Range { from: '䕡', to: '䕡', mapping: Mapped("䕡") }, - Range { from: '𦾱', to: '𦾱', mapping: Mapped("𦾱") }, - Range { from: '𧃒', to: '𧃒', mapping: Mapped("𧃒") }, - Range { from: '䕫', to: '䕫', mapping: Mapped("䕫") }, - Range { from: '虐', to: '虐', mapping: Mapped("虐") }, - Range { from: '虜', to: '虜', mapping: Mapped("虜") }, - Range { from: '虧', to: '虧', mapping: Mapped("虧") }, - Range { from: '虩', to: '虩', mapping: Mapped("虩") }, - Range { from: '蚩', to: '蚩', mapping: Mapped("蚩") }, - Range { from: '蚈', to: '蚈', mapping: Mapped("蚈") }, - Range { from: '蜎', to: '蜎', mapping: Mapped("蜎") }, - Range { from: '蛢', to: '蛢', mapping: Mapped("蛢") }, - Range { from: '蝹', to: '蝹', mapping: Mapped("蝹") }, - Range { from: '蜨', to: '蜨', mapping: Mapped("蜨") }, - Range { from: '蝫', to: '蝫', mapping: Mapped("蝫") }, - Range { from: '螆', to: '螆', mapping: Mapped("螆") }, - Range { from: '䗗', to: '䗗', mapping: Disallowed }, - Range { from: '蟡', to: '蟡', mapping: Mapped("蟡") }, - Range { from: '蠁', to: '蠁', mapping: Mapped("蠁") }, - Range { from: '䗹', to: '䗹', mapping: Mapped("䗹") }, - Range { from: '衠', to: '衠', mapping: Mapped("衠") }, - Range { from: '衣', to: '衣', mapping: Mapped("衣") }, - Range { from: '𧙧', to: '𧙧', mapping: Mapped("𧙧") }, - Range { from: '裗', to: '裗', mapping: Mapped("裗") }, - Range { from: '裞', to: '裞', mapping: Mapped("裞") }, - Range { from: '䘵', to: '䘵', mapping: Mapped("䘵") }, - Range { from: '裺', to: '裺', mapping: Mapped("裺") }, - Range { from: '㒻', to: '㒻', mapping: Mapped("㒻") }, - Range { from: '𧢮', to: '𧢮', mapping: Mapped("𧢮") }, - Range { from: '𧥦', to: '𧥦', mapping: Mapped("𧥦") }, - Range { from: '䚾', to: '䚾', mapping: Mapped("䚾") }, - Range { from: '䛇', to: '䛇', mapping: Mapped("䛇") }, - Range { from: '誠', to: '誠', mapping: Mapped("誠") }, - Range { from: '諭', to: '諭', mapping: Mapped("諭") }, - Range { from: '變', to: '變', mapping: Mapped("變") }, - Range { from: '豕', to: '豕', mapping: Mapped("豕") }, - Range { from: '𧲨', to: '𧲨', mapping: Mapped("𧲨") }, - Range { from: '貫', to: '貫', mapping: Mapped("貫") }, - Range { from: '賁', to: '賁', mapping: Mapped("賁") }, - Range { from: '贛', to: '贛', mapping: Mapped("贛") }, - Range { from: '起', to: '起', mapping: Mapped("起") }, - Range { from: '𧼯', to: '𧼯', mapping: Mapped("𧼯") }, - Range { from: '𠠄', to: '𠠄', mapping: Mapped("𠠄") }, - Range { from: '跋', to: '跋', mapping: Mapped("跋") }, - Range { from: '趼', to: '趼', mapping: Mapped("趼") }, - Range { from: '跰', to: '跰', mapping: Mapped("跰") }, - Range { from: '𠣞', to: '𠣞', mapping: Mapped("𠣞") }, - Range { from: '軔', to: '軔', mapping: Mapped("軔") }, - Range { from: '輸', to: '輸', mapping: Mapped("輸") }, - Range { from: '𨗒', to: '𨗒', mapping: Mapped("𨗒") }, - Range { from: '𨗭', to: '𨗭', mapping: Mapped("𨗭") }, - Range { from: '邔', to: '邔', mapping: Mapped("邔") }, - Range { from: '郱', to: '郱', mapping: Mapped("郱") }, - Range { from: '鄑', to: '鄑', mapping: Mapped("鄑") }, - Range { from: '𨜮', to: '𨜮', mapping: Mapped("𨜮") }, - Range { from: '鄛', to: '鄛', mapping: Mapped("鄛") }, - Range { from: '鈸', to: '鈸', mapping: Mapped("鈸") }, - Range { from: '鋗', to: '鋗', mapping: Mapped("鋗") }, - Range { from: '鋘', to: '鋘', mapping: Mapped("鋘") }, - Range { from: '鉼', to: '鉼', mapping: Mapped("鉼") }, - Range { from: '鏹', to: '鏹', mapping: Mapped("鏹") }, - Range { from: '鐕', to: '鐕', mapping: Mapped("鐕") }, - Range { from: '𨯺', to: '𨯺', mapping: Mapped("𨯺") }, - Range { from: '開', to: '開', mapping: Mapped("開") }, - Range { from: '䦕', to: '䦕', mapping: Mapped("䦕") }, - Range { from: '閷', to: '閷', mapping: Mapped("閷") }, - Range { from: '𨵷', to: '𨵷', mapping: Mapped("𨵷") }, - Range { from: '䧦', to: '䧦', mapping: Mapped("䧦") }, - Range { from: '雃', to: '雃', mapping: Mapped("雃") }, - Range { from: '嶲', to: '嶲', mapping: Mapped("嶲") }, - Range { from: '霣', to: '霣', mapping: Mapped("霣") }, - Range { from: '𩅅', to: '𩅅', mapping: Mapped("𩅅") }, - Range { from: '𩈚', to: '𩈚', mapping: Mapped("𩈚") }, - Range { from: '䩮', to: '䩮', mapping: Mapped("䩮") }, - Range { from: '䩶', to: '䩶', mapping: Mapped("䩶") }, - Range { from: '韠', to: '韠', mapping: Mapped("韠") }, - Range { from: '𩐊', to: '𩐊', mapping: Mapped("𩐊") }, - Range { from: '䪲', to: '䪲', mapping: Mapped("䪲") }, - Range { from: '𩒖', to: '𩒖', mapping: Mapped("𩒖") }, - Range { from: '頋', to: '頋', mapping: Mapped("頋") }, - Range { from: '頩', to: '頩', mapping: Mapped("頩") }, - Range { from: '𩖶', to: '𩖶', mapping: Mapped("𩖶") }, - Range { from: '飢', to: '飢', mapping: Mapped("飢") }, - Range { from: '䬳', to: '䬳', mapping: Mapped("䬳") }, - Range { from: '餩', to: '餩', mapping: Mapped("餩") }, - Range { from: '馧', to: '馧', mapping: Mapped("馧") }, - Range { from: '駂', to: '駂', mapping: Mapped("駂") }, - Range { from: '駾', to: '駾', mapping: Mapped("駾") }, - Range { from: '䯎', to: '䯎', mapping: Mapped("䯎") }, - Range { from: '𩬰', to: '𩬰', mapping: Mapped("𩬰") }, - Range { from: '鬒', to: '鬒', mapping: Mapped("鬒") }, - Range { from: '鱀', to: '鱀', mapping: Mapped("鱀") }, - Range { from: '鳽', to: '鳽', mapping: Mapped("鳽") }, - Range { from: '䳎', to: '䳎', mapping: Mapped("䳎") }, - Range { from: '䳭', to: '䳭', mapping: Mapped("䳭") }, - Range { from: '鵧', to: '鵧', mapping: Mapped("鵧") }, - Range { from: '𪃎', to: '𪃎', mapping: Mapped("𪃎") }, - Range { from: '䳸', to: '䳸', mapping: Mapped("䳸") }, - Range { from: '𪄅', to: '𪄅', mapping: Mapped("𪄅") }, - Range { from: '𪈎', to: '𪈎', mapping: Mapped("𪈎") }, - Range { from: '𪊑', to: '𪊑', mapping: Mapped("𪊑") }, - Range { from: '麻', to: '麻', mapping: Mapped("麻") }, - Range { from: '䵖', to: '䵖', mapping: Mapped("䵖") }, - Range { from: '黹', to: '黹', mapping: Mapped("黹") }, - Range { from: '黾', to: '黾', mapping: Mapped("黾") }, - Range { from: '鼅', to: '鼅', mapping: Mapped("鼅") }, - Range { from: '鼏', to: '鼏', mapping: Mapped("鼏") }, - Range { from: '鼖', to: '鼖', mapping: Mapped("鼖") }, - Range { from: '鼻', to: '鼻', mapping: Mapped("鼻") }, - Range { from: '𪘀', to: '𪘀', mapping: Mapped("𪘀") }, - Range { from: '𯨞', to: '𯿽', mapping: Disallowed }, - Range { from: '𯿾', to: '𯿿', mapping: Disallowed }, - Range { from: '𰀀', to: '𿿽', mapping: Disallowed }, - Range { from: '𿿾', to: '𿿿', mapping: Disallowed }, - Range { from: '񀀀', to: '񏿽', mapping: Disallowed }, - Range { from: '񏿾', to: '񏿿', mapping: Disallowed }, - Range { from: '񐀀', to: '񟿽', mapping: Disallowed }, - Range { from: '񟿾', to: '񟿿', mapping: Disallowed }, - Range { from: '񠀀', to: '񯿽', mapping: Disallowed }, - Range { from: '񯿾', to: '񯿿', mapping: Disallowed }, - Range { from: '񰀀', to: '񿿽', mapping: Disallowed }, - Range { from: '񿿾', to: '񿿿', mapping: Disallowed }, - Range { from: '򀀀', to: '򏿽', mapping: Disallowed }, - Range { from: '򏿾', to: '򏿿', mapping: Disallowed }, - Range { from: '򐀀', to: '򟿽', mapping: Disallowed }, - Range { from: '򟿾', to: '򟿿', mapping: Disallowed }, - Range { from: '򠀀', to: '򯿽', mapping: Disallowed }, - Range { from: '򯿾', to: '򯿿', mapping: Disallowed }, - Range { from: '򰀀', to: '򿿽', mapping: Disallowed }, - Range { from: '򿿾', to: '򿿿', mapping: Disallowed }, - Range { from: '󀀀', to: '󏿽', mapping: Disallowed }, - Range { from: '󏿾', to: '󏿿', mapping: Disallowed }, - Range { from: '󐀀', to: '󟿽', mapping: Disallowed }, - Range { from: '󟿾', to: '󟿿', mapping: Disallowed }, - Range { from: '󠀀', to: '󠀀', mapping: Disallowed }, - Range { from: '󠀁', to: '󠀁', mapping: Disallowed }, - Range { from: '󠀂', to: '󠀟', mapping: Disallowed }, - Range { from: '󠀠', to: '󠁿', mapping: Disallowed }, - Range { from: '󠂀', to: '󠃿', mapping: Disallowed }, - Range { from: '󠄀', to: '󠇯', mapping: Ignored }, - Range { from: '󠇰', to: '󯿽', mapping: Disallowed }, - Range { from: '󯿾', to: '󯿿', mapping: Disallowed }, - Range { from: '󰀀', to: '󿿽', mapping: Disallowed }, - Range { from: '󿿾', to: '󿿿', mapping: Disallowed }, - Range { from: '􀀀', to: '􏿽', mapping: Disallowed }, - Range { from: '􏿾', to: '􏿿', mapping: Disallowed }, + Range { from: '\u{0}', to: '\u{2c}', mapping: DisallowedStd3Valid }, + Range { from: '\u{2d}', to: '\u{2e}', mapping: Valid }, + Range { from: '\u{2f}', to: '\u{2f}', mapping: DisallowedStd3Valid }, + Range { from: '\u{30}', to: '\u{39}', mapping: Valid }, + Range { from: '\u{3a}', to: '\u{40}', mapping: DisallowedStd3Valid }, + Range { from: '\u{41}', to: '\u{41}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{42}', to: '\u{42}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{43}', to: '\u{43}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{44}', to: '\u{44}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{45}', to: '\u{45}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{46}', to: '\u{46}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{47}', to: '\u{47}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{48}', to: '\u{48}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{49}', to: '\u{49}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{4a}', to: '\u{4a}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{4b}', to: '\u{4b}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{4c}', to: '\u{4c}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{4d}', to: '\u{4d}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{4e}', to: '\u{4e}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{4f}', to: '\u{4f}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{50}', to: '\u{50}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{51}', to: '\u{51}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{52}', to: '\u{52}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{53}', to: '\u{53}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{54}', to: '\u{54}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{55}', to: '\u{55}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{56}', to: '\u{56}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{57}', to: '\u{57}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{58}', to: '\u{58}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{59}', to: '\u{59}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{5a}', to: '\u{5a}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{5b}', to: '\u{60}', mapping: DisallowedStd3Valid }, + Range { from: '\u{61}', to: '\u{7a}', mapping: Valid }, + Range { from: '\u{7b}', to: '\u{7f}', mapping: DisallowedStd3Valid }, + Range { from: '\u{80}', to: '\u{9f}', mapping: Disallowed }, + Range { from: '\u{a0}', to: '\u{a0}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 26, byte_len: 1 }) }, + Range { from: '\u{a1}', to: '\u{a7}', mapping: Valid }, + Range { from: '\u{a8}', to: '\u{a8}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 27, byte_len: 3 }) }, + Range { from: '\u{a9}', to: '\u{a9}', mapping: Valid }, + Range { from: '\u{aa}', to: '\u{aa}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{ab}', to: '\u{ac}', mapping: Valid }, + Range { from: '\u{ad}', to: '\u{ad}', mapping: Ignored }, + Range { from: '\u{ae}', to: '\u{ae}', mapping: Valid }, + Range { from: '\u{af}', to: '\u{af}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 30, byte_len: 3 }) }, + Range { from: '\u{b0}', to: '\u{b1}', mapping: Valid }, + Range { from: '\u{b2}', to: '\u{b2}', mapping: Mapped(StringTableSlice { byte_start: 33, byte_len: 1 }) }, + Range { from: '\u{b3}', to: '\u{b3}', mapping: Mapped(StringTableSlice { byte_start: 34, byte_len: 1 }) }, + Range { from: '\u{b4}', to: '\u{b4}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 35, byte_len: 3 }) }, + Range { from: '\u{b5}', to: '\u{b5}', mapping: Mapped(StringTableSlice { byte_start: 38, byte_len: 2 }) }, + Range { from: '\u{b6}', to: '\u{b6}', mapping: Valid }, + Range { from: '\u{b7}', to: '\u{b7}', mapping: Valid }, + Range { from: '\u{b8}', to: '\u{b8}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 40, byte_len: 3 }) }, + Range { from: '\u{b9}', to: '\u{b9}', mapping: Mapped(StringTableSlice { byte_start: 43, byte_len: 1 }) }, + Range { from: '\u{ba}', to: '\u{ba}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{bb}', to: '\u{bb}', mapping: Valid }, + Range { from: '\u{bc}', to: '\u{bc}', mapping: Mapped(StringTableSlice { byte_start: 44, byte_len: 5 }) }, + Range { from: '\u{bd}', to: '\u{bd}', mapping: Mapped(StringTableSlice { byte_start: 49, byte_len: 5 }) }, + Range { from: '\u{be}', to: '\u{be}', mapping: Mapped(StringTableSlice { byte_start: 54, byte_len: 5 }) }, + Range { from: '\u{bf}', to: '\u{bf}', mapping: Valid }, + Range { from: '\u{c0}', to: '\u{c0}', mapping: Mapped(StringTableSlice { byte_start: 59, byte_len: 2 }) }, + Range { from: '\u{c1}', to: '\u{c1}', mapping: Mapped(StringTableSlice { byte_start: 61, byte_len: 2 }) }, + Range { from: '\u{c2}', to: '\u{c2}', mapping: Mapped(StringTableSlice { byte_start: 63, byte_len: 2 }) }, + Range { from: '\u{c3}', to: '\u{c3}', mapping: Mapped(StringTableSlice { byte_start: 65, byte_len: 2 }) }, + Range { from: '\u{c4}', to: '\u{c4}', mapping: Mapped(StringTableSlice { byte_start: 67, byte_len: 2 }) }, + Range { from: '\u{c5}', to: '\u{c5}', mapping: Mapped(StringTableSlice { byte_start: 69, byte_len: 2 }) }, + Range { from: '\u{c6}', to: '\u{c6}', mapping: Mapped(StringTableSlice { byte_start: 71, byte_len: 2 }) }, + Range { from: '\u{c7}', to: '\u{c7}', mapping: Mapped(StringTableSlice { byte_start: 73, byte_len: 2 }) }, + Range { from: '\u{c8}', to: '\u{c8}', mapping: Mapped(StringTableSlice { byte_start: 75, byte_len: 2 }) }, + Range { from: '\u{c9}', to: '\u{c9}', mapping: Mapped(StringTableSlice { byte_start: 77, byte_len: 2 }) }, + Range { from: '\u{ca}', to: '\u{ca}', mapping: Mapped(StringTableSlice { byte_start: 79, byte_len: 2 }) }, + Range { from: '\u{cb}', to: '\u{cb}', mapping: Mapped(StringTableSlice { byte_start: 81, byte_len: 2 }) }, + Range { from: '\u{cc}', to: '\u{cc}', mapping: Mapped(StringTableSlice { byte_start: 83, byte_len: 2 }) }, + Range { from: '\u{cd}', to: '\u{cd}', mapping: Mapped(StringTableSlice { byte_start: 85, byte_len: 2 }) }, + Range { from: '\u{ce}', to: '\u{ce}', mapping: Mapped(StringTableSlice { byte_start: 87, byte_len: 2 }) }, + Range { from: '\u{cf}', to: '\u{cf}', mapping: Mapped(StringTableSlice { byte_start: 89, byte_len: 2 }) }, + Range { from: '\u{d0}', to: '\u{d0}', mapping: Mapped(StringTableSlice { byte_start: 91, byte_len: 2 }) }, + Range { from: '\u{d1}', to: '\u{d1}', mapping: Mapped(StringTableSlice { byte_start: 93, byte_len: 2 }) }, + Range { from: '\u{d2}', to: '\u{d2}', mapping: Mapped(StringTableSlice { byte_start: 95, byte_len: 2 }) }, + Range { from: '\u{d3}', to: '\u{d3}', mapping: Mapped(StringTableSlice { byte_start: 97, byte_len: 2 }) }, + Range { from: '\u{d4}', to: '\u{d4}', mapping: Mapped(StringTableSlice { byte_start: 99, byte_len: 2 }) }, + Range { from: '\u{d5}', to: '\u{d5}', mapping: Mapped(StringTableSlice { byte_start: 101, byte_len: 2 }) }, + Range { from: '\u{d6}', to: '\u{d6}', mapping: Mapped(StringTableSlice { byte_start: 103, byte_len: 2 }) }, + Range { from: '\u{d7}', to: '\u{d7}', mapping: Valid }, + Range { from: '\u{d8}', to: '\u{d8}', mapping: Mapped(StringTableSlice { byte_start: 105, byte_len: 2 }) }, + Range { from: '\u{d9}', to: '\u{d9}', mapping: Mapped(StringTableSlice { byte_start: 107, byte_len: 2 }) }, + Range { from: '\u{da}', to: '\u{da}', mapping: Mapped(StringTableSlice { byte_start: 109, byte_len: 2 }) }, + Range { from: '\u{db}', to: '\u{db}', mapping: Mapped(StringTableSlice { byte_start: 111, byte_len: 2 }) }, + Range { from: '\u{dc}', to: '\u{dc}', mapping: Mapped(StringTableSlice { byte_start: 113, byte_len: 2 }) }, + Range { from: '\u{dd}', to: '\u{dd}', mapping: Mapped(StringTableSlice { byte_start: 115, byte_len: 2 }) }, + Range { from: '\u{de}', to: '\u{de}', mapping: Mapped(StringTableSlice { byte_start: 117, byte_len: 2 }) }, + Range { from: '\u{df}', to: '\u{df}', mapping: Deviation(StringTableSlice { byte_start: 119, byte_len: 2 }) }, + Range { from: '\u{e0}', to: '\u{f6}', mapping: Valid }, + Range { from: '\u{f7}', to: '\u{f7}', mapping: Valid }, + Range { from: '\u{f8}', to: '\u{ff}', mapping: Valid }, + Range { from: '\u{100}', to: '\u{100}', mapping: Mapped(StringTableSlice { byte_start: 121, byte_len: 2 }) }, + Range { from: '\u{101}', to: '\u{101}', mapping: Valid }, + Range { from: '\u{102}', to: '\u{102}', mapping: Mapped(StringTableSlice { byte_start: 123, byte_len: 2 }) }, + Range { from: '\u{103}', to: '\u{103}', mapping: Valid }, + Range { from: '\u{104}', to: '\u{104}', mapping: Mapped(StringTableSlice { byte_start: 125, byte_len: 2 }) }, + Range { from: '\u{105}', to: '\u{105}', mapping: Valid }, + Range { from: '\u{106}', to: '\u{106}', mapping: Mapped(StringTableSlice { byte_start: 127, byte_len: 2 }) }, + Range { from: '\u{107}', to: '\u{107}', mapping: Valid }, + Range { from: '\u{108}', to: '\u{108}', mapping: Mapped(StringTableSlice { byte_start: 129, byte_len: 2 }) }, + Range { from: '\u{109}', to: '\u{109}', mapping: Valid }, + Range { from: '\u{10a}', to: '\u{10a}', mapping: Mapped(StringTableSlice { byte_start: 131, byte_len: 2 }) }, + Range { from: '\u{10b}', to: '\u{10b}', mapping: Valid }, + Range { from: '\u{10c}', to: '\u{10c}', mapping: Mapped(StringTableSlice { byte_start: 133, byte_len: 2 }) }, + Range { from: '\u{10d}', to: '\u{10d}', mapping: Valid }, + Range { from: '\u{10e}', to: '\u{10e}', mapping: Mapped(StringTableSlice { byte_start: 135, byte_len: 2 }) }, + Range { from: '\u{10f}', to: '\u{10f}', mapping: Valid }, + Range { from: '\u{110}', to: '\u{110}', mapping: Mapped(StringTableSlice { byte_start: 137, byte_len: 2 }) }, + Range { from: '\u{111}', to: '\u{111}', mapping: Valid }, + Range { from: '\u{112}', to: '\u{112}', mapping: Mapped(StringTableSlice { byte_start: 139, byte_len: 2 }) }, + Range { from: '\u{113}', to: '\u{113}', mapping: Valid }, + Range { from: '\u{114}', to: '\u{114}', mapping: Mapped(StringTableSlice { byte_start: 141, byte_len: 2 }) }, + Range { from: '\u{115}', to: '\u{115}', mapping: Valid }, + Range { from: '\u{116}', to: '\u{116}', mapping: Mapped(StringTableSlice { byte_start: 143, byte_len: 2 }) }, + Range { from: '\u{117}', to: '\u{117}', mapping: Valid }, + Range { from: '\u{118}', to: '\u{118}', mapping: Mapped(StringTableSlice { byte_start: 145, byte_len: 2 }) }, + Range { from: '\u{119}', to: '\u{119}', mapping: Valid }, + Range { from: '\u{11a}', to: '\u{11a}', mapping: Mapped(StringTableSlice { byte_start: 147, byte_len: 2 }) }, + Range { from: '\u{11b}', to: '\u{11b}', mapping: Valid }, + Range { from: '\u{11c}', to: '\u{11c}', mapping: Mapped(StringTableSlice { byte_start: 149, byte_len: 2 }) }, + Range { from: '\u{11d}', to: '\u{11d}', mapping: Valid }, + Range { from: '\u{11e}', to: '\u{11e}', mapping: Mapped(StringTableSlice { byte_start: 151, byte_len: 2 }) }, + Range { from: '\u{11f}', to: '\u{11f}', mapping: Valid }, + Range { from: '\u{120}', to: '\u{120}', mapping: Mapped(StringTableSlice { byte_start: 153, byte_len: 2 }) }, + Range { from: '\u{121}', to: '\u{121}', mapping: Valid }, + Range { from: '\u{122}', to: '\u{122}', mapping: Mapped(StringTableSlice { byte_start: 155, byte_len: 2 }) }, + Range { from: '\u{123}', to: '\u{123}', mapping: Valid }, + Range { from: '\u{124}', to: '\u{124}', mapping: Mapped(StringTableSlice { byte_start: 157, byte_len: 2 }) }, + Range { from: '\u{125}', to: '\u{125}', mapping: Valid }, + Range { from: '\u{126}', to: '\u{126}', mapping: Mapped(StringTableSlice { byte_start: 159, byte_len: 2 }) }, + Range { from: '\u{127}', to: '\u{127}', mapping: Valid }, + Range { from: '\u{128}', to: '\u{128}', mapping: Mapped(StringTableSlice { byte_start: 161, byte_len: 2 }) }, + Range { from: '\u{129}', to: '\u{129}', mapping: Valid }, + Range { from: '\u{12a}', to: '\u{12a}', mapping: Mapped(StringTableSlice { byte_start: 163, byte_len: 2 }) }, + Range { from: '\u{12b}', to: '\u{12b}', mapping: Valid }, + Range { from: '\u{12c}', to: '\u{12c}', mapping: Mapped(StringTableSlice { byte_start: 165, byte_len: 2 }) }, + Range { from: '\u{12d}', to: '\u{12d}', mapping: Valid }, + Range { from: '\u{12e}', to: '\u{12e}', mapping: Mapped(StringTableSlice { byte_start: 167, byte_len: 2 }) }, + Range { from: '\u{12f}', to: '\u{12f}', mapping: Valid }, + Range { from: '\u{130}', to: '\u{130}', mapping: Mapped(StringTableSlice { byte_start: 169, byte_len: 3 }) }, + Range { from: '\u{131}', to: '\u{131}', mapping: Valid }, + Range { from: '\u{132}', to: '\u{133}', mapping: Mapped(StringTableSlice { byte_start: 172, byte_len: 2 }) }, + Range { from: '\u{134}', to: '\u{134}', mapping: Mapped(StringTableSlice { byte_start: 174, byte_len: 2 }) }, + Range { from: '\u{135}', to: '\u{135}', mapping: Valid }, + Range { from: '\u{136}', to: '\u{136}', mapping: Mapped(StringTableSlice { byte_start: 176, byte_len: 2 }) }, + Range { from: '\u{137}', to: '\u{138}', mapping: Valid }, + Range { from: '\u{139}', to: '\u{139}', mapping: Mapped(StringTableSlice { byte_start: 178, byte_len: 2 }) }, + Range { from: '\u{13a}', to: '\u{13a}', mapping: Valid }, + Range { from: '\u{13b}', to: '\u{13b}', mapping: Mapped(StringTableSlice { byte_start: 180, byte_len: 2 }) }, + Range { from: '\u{13c}', to: '\u{13c}', mapping: Valid }, + Range { from: '\u{13d}', to: '\u{13d}', mapping: Mapped(StringTableSlice { byte_start: 182, byte_len: 2 }) }, + Range { from: '\u{13e}', to: '\u{13e}', mapping: Valid }, + Range { from: '\u{13f}', to: '\u{140}', mapping: Mapped(StringTableSlice { byte_start: 184, byte_len: 3 }) }, + Range { from: '\u{141}', to: '\u{141}', mapping: Mapped(StringTableSlice { byte_start: 187, byte_len: 2 }) }, + Range { from: '\u{142}', to: '\u{142}', mapping: Valid }, + Range { from: '\u{143}', to: '\u{143}', mapping: Mapped(StringTableSlice { byte_start: 189, byte_len: 2 }) }, + Range { from: '\u{144}', to: '\u{144}', mapping: Valid }, + Range { from: '\u{145}', to: '\u{145}', mapping: Mapped(StringTableSlice { byte_start: 191, byte_len: 2 }) }, + Range { from: '\u{146}', to: '\u{146}', mapping: Valid }, + Range { from: '\u{147}', to: '\u{147}', mapping: Mapped(StringTableSlice { byte_start: 193, byte_len: 2 }) }, + Range { from: '\u{148}', to: '\u{148}', mapping: Valid }, + Range { from: '\u{149}', to: '\u{149}', mapping: Mapped(StringTableSlice { byte_start: 195, byte_len: 3 }) }, + Range { from: '\u{14a}', to: '\u{14a}', mapping: Mapped(StringTableSlice { byte_start: 198, byte_len: 2 }) }, + Range { from: '\u{14b}', to: '\u{14b}', mapping: Valid }, + Range { from: '\u{14c}', to: '\u{14c}', mapping: Mapped(StringTableSlice { byte_start: 200, byte_len: 2 }) }, + Range { from: '\u{14d}', to: '\u{14d}', mapping: Valid }, + Range { from: '\u{14e}', to: '\u{14e}', mapping: Mapped(StringTableSlice { byte_start: 202, byte_len: 2 }) }, + Range { from: '\u{14f}', to: '\u{14f}', mapping: Valid }, + Range { from: '\u{150}', to: '\u{150}', mapping: Mapped(StringTableSlice { byte_start: 204, byte_len: 2 }) }, + Range { from: '\u{151}', to: '\u{151}', mapping: Valid }, + Range { from: '\u{152}', to: '\u{152}', mapping: Mapped(StringTableSlice { byte_start: 206, byte_len: 2 }) }, + Range { from: '\u{153}', to: '\u{153}', mapping: Valid }, + Range { from: '\u{154}', to: '\u{154}', mapping: Mapped(StringTableSlice { byte_start: 208, byte_len: 2 }) }, + Range { from: '\u{155}', to: '\u{155}', mapping: Valid }, + Range { from: '\u{156}', to: '\u{156}', mapping: Mapped(StringTableSlice { byte_start: 210, byte_len: 2 }) }, + Range { from: '\u{157}', to: '\u{157}', mapping: Valid }, + Range { from: '\u{158}', to: '\u{158}', mapping: Mapped(StringTableSlice { byte_start: 212, byte_len: 2 }) }, + Range { from: '\u{159}', to: '\u{159}', mapping: Valid }, + Range { from: '\u{15a}', to: '\u{15a}', mapping: Mapped(StringTableSlice { byte_start: 214, byte_len: 2 }) }, + Range { from: '\u{15b}', to: '\u{15b}', mapping: Valid }, + Range { from: '\u{15c}', to: '\u{15c}', mapping: Mapped(StringTableSlice { byte_start: 216, byte_len: 2 }) }, + Range { from: '\u{15d}', to: '\u{15d}', mapping: Valid }, + Range { from: '\u{15e}', to: '\u{15e}', mapping: Mapped(StringTableSlice { byte_start: 218, byte_len: 2 }) }, + Range { from: '\u{15f}', to: '\u{15f}', mapping: Valid }, + Range { from: '\u{160}', to: '\u{160}', mapping: Mapped(StringTableSlice { byte_start: 220, byte_len: 2 }) }, + Range { from: '\u{161}', to: '\u{161}', mapping: Valid }, + Range { from: '\u{162}', to: '\u{162}', mapping: Mapped(StringTableSlice { byte_start: 222, byte_len: 2 }) }, + Range { from: '\u{163}', to: '\u{163}', mapping: Valid }, + Range { from: '\u{164}', to: '\u{164}', mapping: Mapped(StringTableSlice { byte_start: 224, byte_len: 2 }) }, + Range { from: '\u{165}', to: '\u{165}', mapping: Valid }, + Range { from: '\u{166}', to: '\u{166}', mapping: Mapped(StringTableSlice { byte_start: 226, byte_len: 2 }) }, + Range { from: '\u{167}', to: '\u{167}', mapping: Valid }, + Range { from: '\u{168}', to: '\u{168}', mapping: Mapped(StringTableSlice { byte_start: 228, byte_len: 2 }) }, + Range { from: '\u{169}', to: '\u{169}', mapping: Valid }, + Range { from: '\u{16a}', to: '\u{16a}', mapping: Mapped(StringTableSlice { byte_start: 230, byte_len: 2 }) }, + Range { from: '\u{16b}', to: '\u{16b}', mapping: Valid }, + Range { from: '\u{16c}', to: '\u{16c}', mapping: Mapped(StringTableSlice { byte_start: 232, byte_len: 2 }) }, + Range { from: '\u{16d}', to: '\u{16d}', mapping: Valid }, + Range { from: '\u{16e}', to: '\u{16e}', mapping: Mapped(StringTableSlice { byte_start: 234, byte_len: 2 }) }, + Range { from: '\u{16f}', to: '\u{16f}', mapping: Valid }, + Range { from: '\u{170}', to: '\u{170}', mapping: Mapped(StringTableSlice { byte_start: 236, byte_len: 2 }) }, + Range { from: '\u{171}', to: '\u{171}', mapping: Valid }, + Range { from: '\u{172}', to: '\u{172}', mapping: Mapped(StringTableSlice { byte_start: 238, byte_len: 2 }) }, + Range { from: '\u{173}', to: '\u{173}', mapping: Valid }, + Range { from: '\u{174}', to: '\u{174}', mapping: Mapped(StringTableSlice { byte_start: 240, byte_len: 2 }) }, + Range { from: '\u{175}', to: '\u{175}', mapping: Valid }, + Range { from: '\u{176}', to: '\u{176}', mapping: Mapped(StringTableSlice { byte_start: 242, byte_len: 2 }) }, + Range { from: '\u{177}', to: '\u{177}', mapping: Valid }, + Range { from: '\u{178}', to: '\u{178}', mapping: Mapped(StringTableSlice { byte_start: 244, byte_len: 2 }) }, + Range { from: '\u{179}', to: '\u{179}', mapping: Mapped(StringTableSlice { byte_start: 246, byte_len: 2 }) }, + Range { from: '\u{17a}', to: '\u{17a}', mapping: Valid }, + Range { from: '\u{17b}', to: '\u{17b}', mapping: Mapped(StringTableSlice { byte_start: 248, byte_len: 2 }) }, + Range { from: '\u{17c}', to: '\u{17c}', mapping: Valid }, + Range { from: '\u{17d}', to: '\u{17d}', mapping: Mapped(StringTableSlice { byte_start: 250, byte_len: 2 }) }, + Range { from: '\u{17e}', to: '\u{17e}', mapping: Valid }, + Range { from: '\u{17f}', to: '\u{17f}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{180}', to: '\u{180}', mapping: Valid }, + Range { from: '\u{181}', to: '\u{181}', mapping: Mapped(StringTableSlice { byte_start: 252, byte_len: 2 }) }, + Range { from: '\u{182}', to: '\u{182}', mapping: Mapped(StringTableSlice { byte_start: 254, byte_len: 2 }) }, + Range { from: '\u{183}', to: '\u{183}', mapping: Valid }, + Range { from: '\u{184}', to: '\u{184}', mapping: Mapped(StringTableSlice { byte_start: 256, byte_len: 2 }) }, + Range { from: '\u{185}', to: '\u{185}', mapping: Valid }, + Range { from: '\u{186}', to: '\u{186}', mapping: Mapped(StringTableSlice { byte_start: 258, byte_len: 2 }) }, + Range { from: '\u{187}', to: '\u{187}', mapping: Mapped(StringTableSlice { byte_start: 260, byte_len: 2 }) }, + Range { from: '\u{188}', to: '\u{188}', mapping: Valid }, + Range { from: '\u{189}', to: '\u{189}', mapping: Mapped(StringTableSlice { byte_start: 262, byte_len: 2 }) }, + Range { from: '\u{18a}', to: '\u{18a}', mapping: Mapped(StringTableSlice { byte_start: 264, byte_len: 2 }) }, + Range { from: '\u{18b}', to: '\u{18b}', mapping: Mapped(StringTableSlice { byte_start: 266, byte_len: 2 }) }, + Range { from: '\u{18c}', to: '\u{18d}', mapping: Valid }, + Range { from: '\u{18e}', to: '\u{18e}', mapping: Mapped(StringTableSlice { byte_start: 268, byte_len: 2 }) }, + Range { from: '\u{18f}', to: '\u{18f}', mapping: Mapped(StringTableSlice { byte_start: 270, byte_len: 2 }) }, + Range { from: '\u{190}', to: '\u{190}', mapping: Mapped(StringTableSlice { byte_start: 272, byte_len: 2 }) }, + Range { from: '\u{191}', to: '\u{191}', mapping: Mapped(StringTableSlice { byte_start: 274, byte_len: 2 }) }, + Range { from: '\u{192}', to: '\u{192}', mapping: Valid }, + Range { from: '\u{193}', to: '\u{193}', mapping: Mapped(StringTableSlice { byte_start: 276, byte_len: 2 }) }, + Range { from: '\u{194}', to: '\u{194}', mapping: Mapped(StringTableSlice { byte_start: 278, byte_len: 2 }) }, + Range { from: '\u{195}', to: '\u{195}', mapping: Valid }, + Range { from: '\u{196}', to: '\u{196}', mapping: Mapped(StringTableSlice { byte_start: 280, byte_len: 2 }) }, + Range { from: '\u{197}', to: '\u{197}', mapping: Mapped(StringTableSlice { byte_start: 282, byte_len: 2 }) }, + Range { from: '\u{198}', to: '\u{198}', mapping: Mapped(StringTableSlice { byte_start: 284, byte_len: 2 }) }, + Range { from: '\u{199}', to: '\u{19b}', mapping: Valid }, + Range { from: '\u{19c}', to: '\u{19c}', mapping: Mapped(StringTableSlice { byte_start: 286, byte_len: 2 }) }, + Range { from: '\u{19d}', to: '\u{19d}', mapping: Mapped(StringTableSlice { byte_start: 288, byte_len: 2 }) }, + Range { from: '\u{19e}', to: '\u{19e}', mapping: Valid }, + Range { from: '\u{19f}', to: '\u{19f}', mapping: Mapped(StringTableSlice { byte_start: 290, byte_len: 2 }) }, + Range { from: '\u{1a0}', to: '\u{1a0}', mapping: Mapped(StringTableSlice { byte_start: 292, byte_len: 2 }) }, + Range { from: '\u{1a1}', to: '\u{1a1}', mapping: Valid }, + Range { from: '\u{1a2}', to: '\u{1a2}', mapping: Mapped(StringTableSlice { byte_start: 294, byte_len: 2 }) }, + Range { from: '\u{1a3}', to: '\u{1a3}', mapping: Valid }, + Range { from: '\u{1a4}', to: '\u{1a4}', mapping: Mapped(StringTableSlice { byte_start: 296, byte_len: 2 }) }, + Range { from: '\u{1a5}', to: '\u{1a5}', mapping: Valid }, + Range { from: '\u{1a6}', to: '\u{1a6}', mapping: Mapped(StringTableSlice { byte_start: 298, byte_len: 2 }) }, + Range { from: '\u{1a7}', to: '\u{1a7}', mapping: Mapped(StringTableSlice { byte_start: 300, byte_len: 2 }) }, + Range { from: '\u{1a8}', to: '\u{1a8}', mapping: Valid }, + Range { from: '\u{1a9}', to: '\u{1a9}', mapping: Mapped(StringTableSlice { byte_start: 302, byte_len: 2 }) }, + Range { from: '\u{1aa}', to: '\u{1ab}', mapping: Valid }, + Range { from: '\u{1ac}', to: '\u{1ac}', mapping: Mapped(StringTableSlice { byte_start: 304, byte_len: 2 }) }, + Range { from: '\u{1ad}', to: '\u{1ad}', mapping: Valid }, + Range { from: '\u{1ae}', to: '\u{1ae}', mapping: Mapped(StringTableSlice { byte_start: 306, byte_len: 2 }) }, + Range { from: '\u{1af}', to: '\u{1af}', mapping: Mapped(StringTableSlice { byte_start: 308, byte_len: 2 }) }, + Range { from: '\u{1b0}', to: '\u{1b0}', mapping: Valid }, + Range { from: '\u{1b1}', to: '\u{1b1}', mapping: Mapped(StringTableSlice { byte_start: 310, byte_len: 2 }) }, + Range { from: '\u{1b2}', to: '\u{1b2}', mapping: Mapped(StringTableSlice { byte_start: 312, byte_len: 2 }) }, + Range { from: '\u{1b3}', to: '\u{1b3}', mapping: Mapped(StringTableSlice { byte_start: 314, byte_len: 2 }) }, + Range { from: '\u{1b4}', to: '\u{1b4}', mapping: Valid }, + Range { from: '\u{1b5}', to: '\u{1b5}', mapping: Mapped(StringTableSlice { byte_start: 316, byte_len: 2 }) }, + Range { from: '\u{1b6}', to: '\u{1b6}', mapping: Valid }, + Range { from: '\u{1b7}', to: '\u{1b7}', mapping: Mapped(StringTableSlice { byte_start: 318, byte_len: 2 }) }, + Range { from: '\u{1b8}', to: '\u{1b8}', mapping: Mapped(StringTableSlice { byte_start: 320, byte_len: 2 }) }, + Range { from: '\u{1b9}', to: '\u{1bb}', mapping: Valid }, + Range { from: '\u{1bc}', to: '\u{1bc}', mapping: Mapped(StringTableSlice { byte_start: 322, byte_len: 2 }) }, + Range { from: '\u{1bd}', to: '\u{1c3}', mapping: Valid }, + Range { from: '\u{1c4}', to: '\u{1c6}', mapping: Mapped(StringTableSlice { byte_start: 324, byte_len: 3 }) }, + Range { from: '\u{1c7}', to: '\u{1c9}', mapping: Mapped(StringTableSlice { byte_start: 327, byte_len: 2 }) }, + Range { from: '\u{1ca}', to: '\u{1cc}', mapping: Mapped(StringTableSlice { byte_start: 329, byte_len: 2 }) }, + Range { from: '\u{1cd}', to: '\u{1cd}', mapping: Mapped(StringTableSlice { byte_start: 331, byte_len: 2 }) }, + Range { from: '\u{1ce}', to: '\u{1ce}', mapping: Valid }, + Range { from: '\u{1cf}', to: '\u{1cf}', mapping: Mapped(StringTableSlice { byte_start: 333, byte_len: 2 }) }, + Range { from: '\u{1d0}', to: '\u{1d0}', mapping: Valid }, + Range { from: '\u{1d1}', to: '\u{1d1}', mapping: Mapped(StringTableSlice { byte_start: 335, byte_len: 2 }) }, + Range { from: '\u{1d2}', to: '\u{1d2}', mapping: Valid }, + Range { from: '\u{1d3}', to: '\u{1d3}', mapping: Mapped(StringTableSlice { byte_start: 337, byte_len: 2 }) }, + Range { from: '\u{1d4}', to: '\u{1d4}', mapping: Valid }, + Range { from: '\u{1d5}', to: '\u{1d5}', mapping: Mapped(StringTableSlice { byte_start: 339, byte_len: 2 }) }, + Range { from: '\u{1d6}', to: '\u{1d6}', mapping: Valid }, + Range { from: '\u{1d7}', to: '\u{1d7}', mapping: Mapped(StringTableSlice { byte_start: 341, byte_len: 2 }) }, + Range { from: '\u{1d8}', to: '\u{1d8}', mapping: Valid }, + Range { from: '\u{1d9}', to: '\u{1d9}', mapping: Mapped(StringTableSlice { byte_start: 343, byte_len: 2 }) }, + Range { from: '\u{1da}', to: '\u{1da}', mapping: Valid }, + Range { from: '\u{1db}', to: '\u{1db}', mapping: Mapped(StringTableSlice { byte_start: 345, byte_len: 2 }) }, + Range { from: '\u{1dc}', to: '\u{1dd}', mapping: Valid }, + Range { from: '\u{1de}', to: '\u{1de}', mapping: Mapped(StringTableSlice { byte_start: 347, byte_len: 2 }) }, + Range { from: '\u{1df}', to: '\u{1df}', mapping: Valid }, + Range { from: '\u{1e0}', to: '\u{1e0}', mapping: Mapped(StringTableSlice { byte_start: 349, byte_len: 2 }) }, + Range { from: '\u{1e1}', to: '\u{1e1}', mapping: Valid }, + Range { from: '\u{1e2}', to: '\u{1e2}', mapping: Mapped(StringTableSlice { byte_start: 351, byte_len: 2 }) }, + Range { from: '\u{1e3}', to: '\u{1e3}', mapping: Valid }, + Range { from: '\u{1e4}', to: '\u{1e4}', mapping: Mapped(StringTableSlice { byte_start: 353, byte_len: 2 }) }, + Range { from: '\u{1e5}', to: '\u{1e5}', mapping: Valid }, + Range { from: '\u{1e6}', to: '\u{1e6}', mapping: Mapped(StringTableSlice { byte_start: 355, byte_len: 2 }) }, + Range { from: '\u{1e7}', to: '\u{1e7}', mapping: Valid }, + Range { from: '\u{1e8}', to: '\u{1e8}', mapping: Mapped(StringTableSlice { byte_start: 357, byte_len: 2 }) }, + Range { from: '\u{1e9}', to: '\u{1e9}', mapping: Valid }, + Range { from: '\u{1ea}', to: '\u{1ea}', mapping: Mapped(StringTableSlice { byte_start: 359, byte_len: 2 }) }, + Range { from: '\u{1eb}', to: '\u{1eb}', mapping: Valid }, + Range { from: '\u{1ec}', to: '\u{1ec}', mapping: Mapped(StringTableSlice { byte_start: 361, byte_len: 2 }) }, + Range { from: '\u{1ed}', to: '\u{1ed}', mapping: Valid }, + Range { from: '\u{1ee}', to: '\u{1ee}', mapping: Mapped(StringTableSlice { byte_start: 363, byte_len: 2 }) }, + Range { from: '\u{1ef}', to: '\u{1f0}', mapping: Valid }, + Range { from: '\u{1f1}', to: '\u{1f3}', mapping: Mapped(StringTableSlice { byte_start: 365, byte_len: 2 }) }, + Range { from: '\u{1f4}', to: '\u{1f4}', mapping: Mapped(StringTableSlice { byte_start: 367, byte_len: 2 }) }, + Range { from: '\u{1f5}', to: '\u{1f5}', mapping: Valid }, + Range { from: '\u{1f6}', to: '\u{1f6}', mapping: Mapped(StringTableSlice { byte_start: 369, byte_len: 2 }) }, + Range { from: '\u{1f7}', to: '\u{1f7}', mapping: Mapped(StringTableSlice { byte_start: 371, byte_len: 2 }) }, + Range { from: '\u{1f8}', to: '\u{1f8}', mapping: Mapped(StringTableSlice { byte_start: 373, byte_len: 2 }) }, + Range { from: '\u{1f9}', to: '\u{1f9}', mapping: Valid }, + Range { from: '\u{1fa}', to: '\u{1fa}', mapping: Mapped(StringTableSlice { byte_start: 375, byte_len: 2 }) }, + Range { from: '\u{1fb}', to: '\u{1fb}', mapping: Valid }, + Range { from: '\u{1fc}', to: '\u{1fc}', mapping: Mapped(StringTableSlice { byte_start: 377, byte_len: 2 }) }, + Range { from: '\u{1fd}', to: '\u{1fd}', mapping: Valid }, + Range { from: '\u{1fe}', to: '\u{1fe}', mapping: Mapped(StringTableSlice { byte_start: 379, byte_len: 2 }) }, + Range { from: '\u{1ff}', to: '\u{1ff}', mapping: Valid }, + Range { from: '\u{200}', to: '\u{200}', mapping: Mapped(StringTableSlice { byte_start: 381, byte_len: 2 }) }, + Range { from: '\u{201}', to: '\u{201}', mapping: Valid }, + Range { from: '\u{202}', to: '\u{202}', mapping: Mapped(StringTableSlice { byte_start: 383, byte_len: 2 }) }, + Range { from: '\u{203}', to: '\u{203}', mapping: Valid }, + Range { from: '\u{204}', to: '\u{204}', mapping: Mapped(StringTableSlice { byte_start: 385, byte_len: 2 }) }, + Range { from: '\u{205}', to: '\u{205}', mapping: Valid }, + Range { from: '\u{206}', to: '\u{206}', mapping: Mapped(StringTableSlice { byte_start: 387, byte_len: 2 }) }, + Range { from: '\u{207}', to: '\u{207}', mapping: Valid }, + Range { from: '\u{208}', to: '\u{208}', mapping: Mapped(StringTableSlice { byte_start: 389, byte_len: 2 }) }, + Range { from: '\u{209}', to: '\u{209}', mapping: Valid }, + Range { from: '\u{20a}', to: '\u{20a}', mapping: Mapped(StringTableSlice { byte_start: 391, byte_len: 2 }) }, + Range { from: '\u{20b}', to: '\u{20b}', mapping: Valid }, + Range { from: '\u{20c}', to: '\u{20c}', mapping: Mapped(StringTableSlice { byte_start: 393, byte_len: 2 }) }, + Range { from: '\u{20d}', to: '\u{20d}', mapping: Valid }, + Range { from: '\u{20e}', to: '\u{20e}', mapping: Mapped(StringTableSlice { byte_start: 395, byte_len: 2 }) }, + Range { from: '\u{20f}', to: '\u{20f}', mapping: Valid }, + Range { from: '\u{210}', to: '\u{210}', mapping: Mapped(StringTableSlice { byte_start: 397, byte_len: 2 }) }, + Range { from: '\u{211}', to: '\u{211}', mapping: Valid }, + Range { from: '\u{212}', to: '\u{212}', mapping: Mapped(StringTableSlice { byte_start: 399, byte_len: 2 }) }, + Range { from: '\u{213}', to: '\u{213}', mapping: Valid }, + Range { from: '\u{214}', to: '\u{214}', mapping: Mapped(StringTableSlice { byte_start: 401, byte_len: 2 }) }, + Range { from: '\u{215}', to: '\u{215}', mapping: Valid }, + Range { from: '\u{216}', to: '\u{216}', mapping: Mapped(StringTableSlice { byte_start: 403, byte_len: 2 }) }, + Range { from: '\u{217}', to: '\u{217}', mapping: Valid }, + Range { from: '\u{218}', to: '\u{218}', mapping: Mapped(StringTableSlice { byte_start: 405, byte_len: 2 }) }, + Range { from: '\u{219}', to: '\u{219}', mapping: Valid }, + Range { from: '\u{21a}', to: '\u{21a}', mapping: Mapped(StringTableSlice { byte_start: 407, byte_len: 2 }) }, + Range { from: '\u{21b}', to: '\u{21b}', mapping: Valid }, + Range { from: '\u{21c}', to: '\u{21c}', mapping: Mapped(StringTableSlice { byte_start: 409, byte_len: 2 }) }, + Range { from: '\u{21d}', to: '\u{21d}', mapping: Valid }, + Range { from: '\u{21e}', to: '\u{21e}', mapping: Mapped(StringTableSlice { byte_start: 411, byte_len: 2 }) }, + Range { from: '\u{21f}', to: '\u{21f}', mapping: Valid }, + Range { from: '\u{220}', to: '\u{220}', mapping: Mapped(StringTableSlice { byte_start: 413, byte_len: 2 }) }, + Range { from: '\u{221}', to: '\u{221}', mapping: Valid }, + Range { from: '\u{222}', to: '\u{222}', mapping: Mapped(StringTableSlice { byte_start: 415, byte_len: 2 }) }, + Range { from: '\u{223}', to: '\u{223}', mapping: Valid }, + Range { from: '\u{224}', to: '\u{224}', mapping: Mapped(StringTableSlice { byte_start: 417, byte_len: 2 }) }, + Range { from: '\u{225}', to: '\u{225}', mapping: Valid }, + Range { from: '\u{226}', to: '\u{226}', mapping: Mapped(StringTableSlice { byte_start: 419, byte_len: 2 }) }, + Range { from: '\u{227}', to: '\u{227}', mapping: Valid }, + Range { from: '\u{228}', to: '\u{228}', mapping: Mapped(StringTableSlice { byte_start: 421, byte_len: 2 }) }, + Range { from: '\u{229}', to: '\u{229}', mapping: Valid }, + Range { from: '\u{22a}', to: '\u{22a}', mapping: Mapped(StringTableSlice { byte_start: 423, byte_len: 2 }) }, + Range { from: '\u{22b}', to: '\u{22b}', mapping: Valid }, + Range { from: '\u{22c}', to: '\u{22c}', mapping: Mapped(StringTableSlice { byte_start: 425, byte_len: 2 }) }, + Range { from: '\u{22d}', to: '\u{22d}', mapping: Valid }, + Range { from: '\u{22e}', to: '\u{22e}', mapping: Mapped(StringTableSlice { byte_start: 427, byte_len: 2 }) }, + Range { from: '\u{22f}', to: '\u{22f}', mapping: Valid }, + Range { from: '\u{230}', to: '\u{230}', mapping: Mapped(StringTableSlice { byte_start: 429, byte_len: 2 }) }, + Range { from: '\u{231}', to: '\u{231}', mapping: Valid }, + Range { from: '\u{232}', to: '\u{232}', mapping: Mapped(StringTableSlice { byte_start: 431, byte_len: 2 }) }, + Range { from: '\u{233}', to: '\u{233}', mapping: Valid }, + Range { from: '\u{234}', to: '\u{236}', mapping: Valid }, + Range { from: '\u{237}', to: '\u{239}', mapping: Valid }, + Range { from: '\u{23a}', to: '\u{23a}', mapping: Mapped(StringTableSlice { byte_start: 433, byte_len: 3 }) }, + Range { from: '\u{23b}', to: '\u{23b}', mapping: Mapped(StringTableSlice { byte_start: 436, byte_len: 2 }) }, + Range { from: '\u{23c}', to: '\u{23c}', mapping: Valid }, + Range { from: '\u{23d}', to: '\u{23d}', mapping: Mapped(StringTableSlice { byte_start: 438, byte_len: 2 }) }, + Range { from: '\u{23e}', to: '\u{23e}', mapping: Mapped(StringTableSlice { byte_start: 440, byte_len: 3 }) }, + Range { from: '\u{23f}', to: '\u{240}', mapping: Valid }, + Range { from: '\u{241}', to: '\u{241}', mapping: Mapped(StringTableSlice { byte_start: 443, byte_len: 2 }) }, + Range { from: '\u{242}', to: '\u{242}', mapping: Valid }, + Range { from: '\u{243}', to: '\u{243}', mapping: Mapped(StringTableSlice { byte_start: 445, byte_len: 2 }) }, + Range { from: '\u{244}', to: '\u{244}', mapping: Mapped(StringTableSlice { byte_start: 447, byte_len: 2 }) }, + Range { from: '\u{245}', to: '\u{245}', mapping: Mapped(StringTableSlice { byte_start: 449, byte_len: 2 }) }, + Range { from: '\u{246}', to: '\u{246}', mapping: Mapped(StringTableSlice { byte_start: 451, byte_len: 2 }) }, + Range { from: '\u{247}', to: '\u{247}', mapping: Valid }, + Range { from: '\u{248}', to: '\u{248}', mapping: Mapped(StringTableSlice { byte_start: 453, byte_len: 2 }) }, + Range { from: '\u{249}', to: '\u{249}', mapping: Valid }, + Range { from: '\u{24a}', to: '\u{24a}', mapping: Mapped(StringTableSlice { byte_start: 455, byte_len: 2 }) }, + Range { from: '\u{24b}', to: '\u{24b}', mapping: Valid }, + Range { from: '\u{24c}', to: '\u{24c}', mapping: Mapped(StringTableSlice { byte_start: 457, byte_len: 2 }) }, + Range { from: '\u{24d}', to: '\u{24d}', mapping: Valid }, + Range { from: '\u{24e}', to: '\u{24e}', mapping: Mapped(StringTableSlice { byte_start: 459, byte_len: 2 }) }, + Range { from: '\u{24f}', to: '\u{24f}', mapping: Valid }, + Range { from: '\u{250}', to: '\u{2a8}', mapping: Valid }, + Range { from: '\u{2a9}', to: '\u{2ad}', mapping: Valid }, + Range { from: '\u{2ae}', to: '\u{2af}', mapping: Valid }, + Range { from: '\u{2b0}', to: '\u{2b0}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{2b1}', to: '\u{2b1}', mapping: Mapped(StringTableSlice { byte_start: 461, byte_len: 2 }) }, + Range { from: '\u{2b2}', to: '\u{2b2}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{2b3}', to: '\u{2b3}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{2b4}', to: '\u{2b4}', mapping: Mapped(StringTableSlice { byte_start: 463, byte_len: 2 }) }, + Range { from: '\u{2b5}', to: '\u{2b5}', mapping: Mapped(StringTableSlice { byte_start: 465, byte_len: 2 }) }, + Range { from: '\u{2b6}', to: '\u{2b6}', mapping: Mapped(StringTableSlice { byte_start: 467, byte_len: 2 }) }, + Range { from: '\u{2b7}', to: '\u{2b7}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{2b8}', to: '\u{2b8}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{2b9}', to: '\u{2c1}', mapping: Valid }, + Range { from: '\u{2c2}', to: '\u{2c5}', mapping: Valid }, + Range { from: '\u{2c6}', to: '\u{2d1}', mapping: Valid }, + Range { from: '\u{2d2}', to: '\u{2d7}', mapping: Valid }, + Range { from: '\u{2d8}', to: '\u{2d8}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 469, byte_len: 3 }) }, + Range { from: '\u{2d9}', to: '\u{2d9}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 472, byte_len: 3 }) }, + Range { from: '\u{2da}', to: '\u{2da}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 475, byte_len: 3 }) }, + Range { from: '\u{2db}', to: '\u{2db}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 478, byte_len: 3 }) }, + Range { from: '\u{2dc}', to: '\u{2dc}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 481, byte_len: 3 }) }, + Range { from: '\u{2dd}', to: '\u{2dd}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 484, byte_len: 3 }) }, + Range { from: '\u{2de}', to: '\u{2de}', mapping: Valid }, + Range { from: '\u{2df}', to: '\u{2df}', mapping: Valid }, + Range { from: '\u{2e0}', to: '\u{2e0}', mapping: Mapped(StringTableSlice { byte_start: 278, byte_len: 2 }) }, + Range { from: '\u{2e1}', to: '\u{2e1}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{2e2}', to: '\u{2e2}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{2e3}', to: '\u{2e3}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{2e4}', to: '\u{2e4}', mapping: Mapped(StringTableSlice { byte_start: 487, byte_len: 2 }) }, + Range { from: '\u{2e5}', to: '\u{2e9}', mapping: Valid }, + Range { from: '\u{2ea}', to: '\u{2eb}', mapping: Valid }, + Range { from: '\u{2ec}', to: '\u{2ec}', mapping: Valid }, + Range { from: '\u{2ed}', to: '\u{2ed}', mapping: Valid }, + Range { from: '\u{2ee}', to: '\u{2ee}', mapping: Valid }, + Range { from: '\u{2ef}', to: '\u{2ff}', mapping: Valid }, + Range { from: '\u{300}', to: '\u{33f}', mapping: Valid }, + Range { from: '\u{340}', to: '\u{340}', mapping: Mapped(StringTableSlice { byte_start: 489, byte_len: 2 }) }, + Range { from: '\u{341}', to: '\u{341}', mapping: Mapped(StringTableSlice { byte_start: 491, byte_len: 2 }) }, + Range { from: '\u{342}', to: '\u{342}', mapping: Valid }, + Range { from: '\u{343}', to: '\u{343}', mapping: Mapped(StringTableSlice { byte_start: 493, byte_len: 2 }) }, + Range { from: '\u{344}', to: '\u{344}', mapping: Mapped(StringTableSlice { byte_start: 495, byte_len: 4 }) }, + Range { from: '\u{345}', to: '\u{345}', mapping: Mapped(StringTableSlice { byte_start: 499, byte_len: 2 }) }, + Range { from: '\u{346}', to: '\u{34e}', mapping: Valid }, + Range { from: '\u{34f}', to: '\u{34f}', mapping: Ignored }, + Range { from: '\u{350}', to: '\u{357}', mapping: Valid }, + Range { from: '\u{358}', to: '\u{35c}', mapping: Valid }, + Range { from: '\u{35d}', to: '\u{35f}', mapping: Valid }, + Range { from: '\u{360}', to: '\u{361}', mapping: Valid }, + Range { from: '\u{362}', to: '\u{362}', mapping: Valid }, + Range { from: '\u{363}', to: '\u{36f}', mapping: Valid }, + Range { from: '\u{370}', to: '\u{370}', mapping: Mapped(StringTableSlice { byte_start: 501, byte_len: 2 }) }, + Range { from: '\u{371}', to: '\u{371}', mapping: Valid }, + Range { from: '\u{372}', to: '\u{372}', mapping: Mapped(StringTableSlice { byte_start: 503, byte_len: 2 }) }, + Range { from: '\u{373}', to: '\u{373}', mapping: Valid }, + Range { from: '\u{374}', to: '\u{374}', mapping: Mapped(StringTableSlice { byte_start: 505, byte_len: 2 }) }, + Range { from: '\u{375}', to: '\u{375}', mapping: Valid }, + Range { from: '\u{376}', to: '\u{376}', mapping: Mapped(StringTableSlice { byte_start: 507, byte_len: 2 }) }, + Range { from: '\u{377}', to: '\u{377}', mapping: Valid }, + Range { from: '\u{378}', to: '\u{379}', mapping: Disallowed }, + Range { from: '\u{37a}', to: '\u{37a}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 509, byte_len: 3 }) }, + Range { from: '\u{37b}', to: '\u{37d}', mapping: Valid }, + Range { from: '\u{37e}', to: '\u{37e}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 512, byte_len: 1 }) }, + Range { from: '\u{37f}', to: '\u{37f}', mapping: Mapped(StringTableSlice { byte_start: 513, byte_len: 2 }) }, + Range { from: '\u{380}', to: '\u{383}', mapping: Disallowed }, + Range { from: '\u{384}', to: '\u{384}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 35, byte_len: 3 }) }, + Range { from: '\u{385}', to: '\u{385}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 515, byte_len: 5 }) }, + Range { from: '\u{386}', to: '\u{386}', mapping: Mapped(StringTableSlice { byte_start: 520, byte_len: 2 }) }, + Range { from: '\u{387}', to: '\u{387}', mapping: Mapped(StringTableSlice { byte_start: 522, byte_len: 2 }) }, + Range { from: '\u{388}', to: '\u{388}', mapping: Mapped(StringTableSlice { byte_start: 524, byte_len: 2 }) }, + Range { from: '\u{389}', to: '\u{389}', mapping: Mapped(StringTableSlice { byte_start: 526, byte_len: 2 }) }, + Range { from: '\u{38a}', to: '\u{38a}', mapping: Mapped(StringTableSlice { byte_start: 528, byte_len: 2 }) }, + Range { from: '\u{38b}', to: '\u{38b}', mapping: Disallowed }, + Range { from: '\u{38c}', to: '\u{38c}', mapping: Mapped(StringTableSlice { byte_start: 530, byte_len: 2 }) }, + Range { from: '\u{38d}', to: '\u{38d}', mapping: Disallowed }, + Range { from: '\u{38e}', to: '\u{38e}', mapping: Mapped(StringTableSlice { byte_start: 532, byte_len: 2 }) }, + Range { from: '\u{38f}', to: '\u{38f}', mapping: Mapped(StringTableSlice { byte_start: 534, byte_len: 2 }) }, + Range { from: '\u{390}', to: '\u{390}', mapping: Valid }, + Range { from: '\u{391}', to: '\u{391}', mapping: Mapped(StringTableSlice { byte_start: 536, byte_len: 2 }) }, + Range { from: '\u{392}', to: '\u{392}', mapping: Mapped(StringTableSlice { byte_start: 538, byte_len: 2 }) }, + Range { from: '\u{393}', to: '\u{393}', mapping: Mapped(StringTableSlice { byte_start: 540, byte_len: 2 }) }, + Range { from: '\u{394}', to: '\u{394}', mapping: Mapped(StringTableSlice { byte_start: 542, byte_len: 2 }) }, + Range { from: '\u{395}', to: '\u{395}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{396}', to: '\u{396}', mapping: Mapped(StringTableSlice { byte_start: 546, byte_len: 2 }) }, + Range { from: '\u{397}', to: '\u{397}', mapping: Mapped(StringTableSlice { byte_start: 548, byte_len: 2 }) }, + Range { from: '\u{398}', to: '\u{398}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{399}', to: '\u{399}', mapping: Mapped(StringTableSlice { byte_start: 499, byte_len: 2 }) }, + Range { from: '\u{39a}', to: '\u{39a}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{39b}', to: '\u{39b}', mapping: Mapped(StringTableSlice { byte_start: 554, byte_len: 2 }) }, + Range { from: '\u{39c}', to: '\u{39c}', mapping: Mapped(StringTableSlice { byte_start: 38, byte_len: 2 }) }, + Range { from: '\u{39d}', to: '\u{39d}', mapping: Mapped(StringTableSlice { byte_start: 556, byte_len: 2 }) }, + Range { from: '\u{39e}', to: '\u{39e}', mapping: Mapped(StringTableSlice { byte_start: 558, byte_len: 2 }) }, + Range { from: '\u{39f}', to: '\u{39f}', mapping: Mapped(StringTableSlice { byte_start: 560, byte_len: 2 }) }, + Range { from: '\u{3a0}', to: '\u{3a0}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{3a1}', to: '\u{3a1}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{3a2}', to: '\u{3a2}', mapping: Disallowed }, + Range { from: '\u{3a3}', to: '\u{3a3}', mapping: Mapped(StringTableSlice { byte_start: 566, byte_len: 2 }) }, + Range { from: '\u{3a4}', to: '\u{3a4}', mapping: Mapped(StringTableSlice { byte_start: 568, byte_len: 2 }) }, + Range { from: '\u{3a5}', to: '\u{3a5}', mapping: Mapped(StringTableSlice { byte_start: 570, byte_len: 2 }) }, + Range { from: '\u{3a6}', to: '\u{3a6}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{3a7}', to: '\u{3a7}', mapping: Mapped(StringTableSlice { byte_start: 574, byte_len: 2 }) }, + Range { from: '\u{3a8}', to: '\u{3a8}', mapping: Mapped(StringTableSlice { byte_start: 576, byte_len: 2 }) }, + Range { from: '\u{3a9}', to: '\u{3a9}', mapping: Mapped(StringTableSlice { byte_start: 578, byte_len: 2 }) }, + Range { from: '\u{3aa}', to: '\u{3aa}', mapping: Mapped(StringTableSlice { byte_start: 580, byte_len: 2 }) }, + Range { from: '\u{3ab}', to: '\u{3ab}', mapping: Mapped(StringTableSlice { byte_start: 582, byte_len: 2 }) }, + Range { from: '\u{3ac}', to: '\u{3c1}', mapping: Valid }, + Range { from: '\u{3c2}', to: '\u{3c2}', mapping: Deviation(StringTableSlice { byte_start: 566, byte_len: 2 }) }, + Range { from: '\u{3c3}', to: '\u{3ce}', mapping: Valid }, + Range { from: '\u{3cf}', to: '\u{3cf}', mapping: Mapped(StringTableSlice { byte_start: 584, byte_len: 2 }) }, + Range { from: '\u{3d0}', to: '\u{3d0}', mapping: Mapped(StringTableSlice { byte_start: 538, byte_len: 2 }) }, + Range { from: '\u{3d1}', to: '\u{3d1}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{3d2}', to: '\u{3d2}', mapping: Mapped(StringTableSlice { byte_start: 570, byte_len: 2 }) }, + Range { from: '\u{3d3}', to: '\u{3d3}', mapping: Mapped(StringTableSlice { byte_start: 532, byte_len: 2 }) }, + Range { from: '\u{3d4}', to: '\u{3d4}', mapping: Mapped(StringTableSlice { byte_start: 582, byte_len: 2 }) }, + Range { from: '\u{3d5}', to: '\u{3d5}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{3d6}', to: '\u{3d6}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{3d7}', to: '\u{3d7}', mapping: Valid }, + Range { from: '\u{3d8}', to: '\u{3d8}', mapping: Mapped(StringTableSlice { byte_start: 586, byte_len: 2 }) }, + Range { from: '\u{3d9}', to: '\u{3d9}', mapping: Valid }, + Range { from: '\u{3da}', to: '\u{3da}', mapping: Mapped(StringTableSlice { byte_start: 588, byte_len: 2 }) }, + Range { from: '\u{3db}', to: '\u{3db}', mapping: Valid }, + Range { from: '\u{3dc}', to: '\u{3dc}', mapping: Mapped(StringTableSlice { byte_start: 590, byte_len: 2 }) }, + Range { from: '\u{3dd}', to: '\u{3dd}', mapping: Valid }, + Range { from: '\u{3de}', to: '\u{3de}', mapping: Mapped(StringTableSlice { byte_start: 592, byte_len: 2 }) }, + Range { from: '\u{3df}', to: '\u{3df}', mapping: Valid }, + Range { from: '\u{3e0}', to: '\u{3e0}', mapping: Mapped(StringTableSlice { byte_start: 594, byte_len: 2 }) }, + Range { from: '\u{3e1}', to: '\u{3e1}', mapping: Valid }, + Range { from: '\u{3e2}', to: '\u{3e2}', mapping: Mapped(StringTableSlice { byte_start: 596, byte_len: 2 }) }, + Range { from: '\u{3e3}', to: '\u{3e3}', mapping: Valid }, + Range { from: '\u{3e4}', to: '\u{3e4}', mapping: Mapped(StringTableSlice { byte_start: 598, byte_len: 2 }) }, + Range { from: '\u{3e5}', to: '\u{3e5}', mapping: Valid }, + Range { from: '\u{3e6}', to: '\u{3e6}', mapping: Mapped(StringTableSlice { byte_start: 600, byte_len: 2 }) }, + Range { from: '\u{3e7}', to: '\u{3e7}', mapping: Valid }, + Range { from: '\u{3e8}', to: '\u{3e8}', mapping: Mapped(StringTableSlice { byte_start: 602, byte_len: 2 }) }, + Range { from: '\u{3e9}', to: '\u{3e9}', mapping: Valid }, + Range { from: '\u{3ea}', to: '\u{3ea}', mapping: Mapped(StringTableSlice { byte_start: 604, byte_len: 2 }) }, + Range { from: '\u{3eb}', to: '\u{3eb}', mapping: Valid }, + Range { from: '\u{3ec}', to: '\u{3ec}', mapping: Mapped(StringTableSlice { byte_start: 606, byte_len: 2 }) }, + Range { from: '\u{3ed}', to: '\u{3ed}', mapping: Valid }, + Range { from: '\u{3ee}', to: '\u{3ee}', mapping: Mapped(StringTableSlice { byte_start: 608, byte_len: 2 }) }, + Range { from: '\u{3ef}', to: '\u{3ef}', mapping: Valid }, + Range { from: '\u{3f0}', to: '\u{3f0}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{3f1}', to: '\u{3f1}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{3f2}', to: '\u{3f2}', mapping: Mapped(StringTableSlice { byte_start: 566, byte_len: 2 }) }, + Range { from: '\u{3f3}', to: '\u{3f3}', mapping: Valid }, + Range { from: '\u{3f4}', to: '\u{3f4}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{3f5}', to: '\u{3f5}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{3f6}', to: '\u{3f6}', mapping: Valid }, + Range { from: '\u{3f7}', to: '\u{3f7}', mapping: Mapped(StringTableSlice { byte_start: 610, byte_len: 2 }) }, + Range { from: '\u{3f8}', to: '\u{3f8}', mapping: Valid }, + Range { from: '\u{3f9}', to: '\u{3f9}', mapping: Mapped(StringTableSlice { byte_start: 566, byte_len: 2 }) }, + Range { from: '\u{3fa}', to: '\u{3fa}', mapping: Mapped(StringTableSlice { byte_start: 612, byte_len: 2 }) }, + Range { from: '\u{3fb}', to: '\u{3fb}', mapping: Valid }, + Range { from: '\u{3fc}', to: '\u{3fc}', mapping: Valid }, + Range { from: '\u{3fd}', to: '\u{3fd}', mapping: Mapped(StringTableSlice { byte_start: 614, byte_len: 2 }) }, + Range { from: '\u{3fe}', to: '\u{3fe}', mapping: Mapped(StringTableSlice { byte_start: 616, byte_len: 2 }) }, + Range { from: '\u{3ff}', to: '\u{3ff}', mapping: Mapped(StringTableSlice { byte_start: 618, byte_len: 2 }) }, + Range { from: '\u{400}', to: '\u{400}', mapping: Mapped(StringTableSlice { byte_start: 620, byte_len: 2 }) }, + Range { from: '\u{401}', to: '\u{401}', mapping: Mapped(StringTableSlice { byte_start: 622, byte_len: 2 }) }, + Range { from: '\u{402}', to: '\u{402}', mapping: Mapped(StringTableSlice { byte_start: 624, byte_len: 2 }) }, + Range { from: '\u{403}', to: '\u{403}', mapping: Mapped(StringTableSlice { byte_start: 626, byte_len: 2 }) }, + Range { from: '\u{404}', to: '\u{404}', mapping: Mapped(StringTableSlice { byte_start: 628, byte_len: 2 }) }, + Range { from: '\u{405}', to: '\u{405}', mapping: Mapped(StringTableSlice { byte_start: 630, byte_len: 2 }) }, + Range { from: '\u{406}', to: '\u{406}', mapping: Mapped(StringTableSlice { byte_start: 632, byte_len: 2 }) }, + Range { from: '\u{407}', to: '\u{407}', mapping: Mapped(StringTableSlice { byte_start: 634, byte_len: 2 }) }, + Range { from: '\u{408}', to: '\u{408}', mapping: Mapped(StringTableSlice { byte_start: 636, byte_len: 2 }) }, + Range { from: '\u{409}', to: '\u{409}', mapping: Mapped(StringTableSlice { byte_start: 638, byte_len: 2 }) }, + Range { from: '\u{40a}', to: '\u{40a}', mapping: Mapped(StringTableSlice { byte_start: 640, byte_len: 2 }) }, + Range { from: '\u{40b}', to: '\u{40b}', mapping: Mapped(StringTableSlice { byte_start: 642, byte_len: 2 }) }, + Range { from: '\u{40c}', to: '\u{40c}', mapping: Mapped(StringTableSlice { byte_start: 644, byte_len: 2 }) }, + Range { from: '\u{40d}', to: '\u{40d}', mapping: Mapped(StringTableSlice { byte_start: 646, byte_len: 2 }) }, + Range { from: '\u{40e}', to: '\u{40e}', mapping: Mapped(StringTableSlice { byte_start: 648, byte_len: 2 }) }, + Range { from: '\u{40f}', to: '\u{40f}', mapping: Mapped(StringTableSlice { byte_start: 650, byte_len: 2 }) }, + Range { from: '\u{410}', to: '\u{410}', mapping: Mapped(StringTableSlice { byte_start: 652, byte_len: 2 }) }, + Range { from: '\u{411}', to: '\u{411}', mapping: Mapped(StringTableSlice { byte_start: 654, byte_len: 2 }) }, + Range { from: '\u{412}', to: '\u{412}', mapping: Mapped(StringTableSlice { byte_start: 656, byte_len: 2 }) }, + Range { from: '\u{413}', to: '\u{413}', mapping: Mapped(StringTableSlice { byte_start: 658, byte_len: 2 }) }, + Range { from: '\u{414}', to: '\u{414}', mapping: Mapped(StringTableSlice { byte_start: 660, byte_len: 2 }) }, + Range { from: '\u{415}', to: '\u{415}', mapping: Mapped(StringTableSlice { byte_start: 662, byte_len: 2 }) }, + Range { from: '\u{416}', to: '\u{416}', mapping: Mapped(StringTableSlice { byte_start: 664, byte_len: 2 }) }, + Range { from: '\u{417}', to: '\u{417}', mapping: Mapped(StringTableSlice { byte_start: 666, byte_len: 2 }) }, + Range { from: '\u{418}', to: '\u{418}', mapping: Mapped(StringTableSlice { byte_start: 668, byte_len: 2 }) }, + Range { from: '\u{419}', to: '\u{419}', mapping: Mapped(StringTableSlice { byte_start: 670, byte_len: 2 }) }, + Range { from: '\u{41a}', to: '\u{41a}', mapping: Mapped(StringTableSlice { byte_start: 672, byte_len: 2 }) }, + Range { from: '\u{41b}', to: '\u{41b}', mapping: Mapped(StringTableSlice { byte_start: 674, byte_len: 2 }) }, + Range { from: '\u{41c}', to: '\u{41c}', mapping: Mapped(StringTableSlice { byte_start: 676, byte_len: 2 }) }, + Range { from: '\u{41d}', to: '\u{41d}', mapping: Mapped(StringTableSlice { byte_start: 678, byte_len: 2 }) }, + Range { from: '\u{41e}', to: '\u{41e}', mapping: Mapped(StringTableSlice { byte_start: 680, byte_len: 2 }) }, + Range { from: '\u{41f}', to: '\u{41f}', mapping: Mapped(StringTableSlice { byte_start: 682, byte_len: 2 }) }, + Range { from: '\u{420}', to: '\u{420}', mapping: Mapped(StringTableSlice { byte_start: 684, byte_len: 2 }) }, + Range { from: '\u{421}', to: '\u{421}', mapping: Mapped(StringTableSlice { byte_start: 686, byte_len: 2 }) }, + Range { from: '\u{422}', to: '\u{422}', mapping: Mapped(StringTableSlice { byte_start: 688, byte_len: 2 }) }, + Range { from: '\u{423}', to: '\u{423}', mapping: Mapped(StringTableSlice { byte_start: 690, byte_len: 2 }) }, + Range { from: '\u{424}', to: '\u{424}', mapping: Mapped(StringTableSlice { byte_start: 692, byte_len: 2 }) }, + Range { from: '\u{425}', to: '\u{425}', mapping: Mapped(StringTableSlice { byte_start: 694, byte_len: 2 }) }, + Range { from: '\u{426}', to: '\u{426}', mapping: Mapped(StringTableSlice { byte_start: 696, byte_len: 2 }) }, + Range { from: '\u{427}', to: '\u{427}', mapping: Mapped(StringTableSlice { byte_start: 698, byte_len: 2 }) }, + Range { from: '\u{428}', to: '\u{428}', mapping: Mapped(StringTableSlice { byte_start: 700, byte_len: 2 }) }, + Range { from: '\u{429}', to: '\u{429}', mapping: Mapped(StringTableSlice { byte_start: 702, byte_len: 2 }) }, + Range { from: '\u{42a}', to: '\u{42a}', mapping: Mapped(StringTableSlice { byte_start: 704, byte_len: 2 }) }, + Range { from: '\u{42b}', to: '\u{42b}', mapping: Mapped(StringTableSlice { byte_start: 706, byte_len: 2 }) }, + Range { from: '\u{42c}', to: '\u{42c}', mapping: Mapped(StringTableSlice { byte_start: 708, byte_len: 2 }) }, + Range { from: '\u{42d}', to: '\u{42d}', mapping: Mapped(StringTableSlice { byte_start: 710, byte_len: 2 }) }, + Range { from: '\u{42e}', to: '\u{42e}', mapping: Mapped(StringTableSlice { byte_start: 712, byte_len: 2 }) }, + Range { from: '\u{42f}', to: '\u{42f}', mapping: Mapped(StringTableSlice { byte_start: 714, byte_len: 2 }) }, + Range { from: '\u{430}', to: '\u{44f}', mapping: Valid }, + Range { from: '\u{450}', to: '\u{450}', mapping: Valid }, + Range { from: '\u{451}', to: '\u{45c}', mapping: Valid }, + Range { from: '\u{45d}', to: '\u{45d}', mapping: Valid }, + Range { from: '\u{45e}', to: '\u{45f}', mapping: Valid }, + Range { from: '\u{460}', to: '\u{460}', mapping: Mapped(StringTableSlice { byte_start: 716, byte_len: 2 }) }, + Range { from: '\u{461}', to: '\u{461}', mapping: Valid }, + Range { from: '\u{462}', to: '\u{462}', mapping: Mapped(StringTableSlice { byte_start: 718, byte_len: 2 }) }, + Range { from: '\u{463}', to: '\u{463}', mapping: Valid }, + Range { from: '\u{464}', to: '\u{464}', mapping: Mapped(StringTableSlice { byte_start: 720, byte_len: 2 }) }, + Range { from: '\u{465}', to: '\u{465}', mapping: Valid }, + Range { from: '\u{466}', to: '\u{466}', mapping: Mapped(StringTableSlice { byte_start: 722, byte_len: 2 }) }, + Range { from: '\u{467}', to: '\u{467}', mapping: Valid }, + Range { from: '\u{468}', to: '\u{468}', mapping: Mapped(StringTableSlice { byte_start: 724, byte_len: 2 }) }, + Range { from: '\u{469}', to: '\u{469}', mapping: Valid }, + Range { from: '\u{46a}', to: '\u{46a}', mapping: Mapped(StringTableSlice { byte_start: 726, byte_len: 2 }) }, + Range { from: '\u{46b}', to: '\u{46b}', mapping: Valid }, + Range { from: '\u{46c}', to: '\u{46c}', mapping: Mapped(StringTableSlice { byte_start: 728, byte_len: 2 }) }, + Range { from: '\u{46d}', to: '\u{46d}', mapping: Valid }, + Range { from: '\u{46e}', to: '\u{46e}', mapping: Mapped(StringTableSlice { byte_start: 730, byte_len: 2 }) }, + Range { from: '\u{46f}', to: '\u{46f}', mapping: Valid }, + Range { from: '\u{470}', to: '\u{470}', mapping: Mapped(StringTableSlice { byte_start: 732, byte_len: 2 }) }, + Range { from: '\u{471}', to: '\u{471}', mapping: Valid }, + Range { from: '\u{472}', to: '\u{472}', mapping: Mapped(StringTableSlice { byte_start: 734, byte_len: 2 }) }, + Range { from: '\u{473}', to: '\u{473}', mapping: Valid }, + Range { from: '\u{474}', to: '\u{474}', mapping: Mapped(StringTableSlice { byte_start: 736, byte_len: 2 }) }, + Range { from: '\u{475}', to: '\u{475}', mapping: Valid }, + Range { from: '\u{476}', to: '\u{476}', mapping: Mapped(StringTableSlice { byte_start: 738, byte_len: 2 }) }, + Range { from: '\u{477}', to: '\u{477}', mapping: Valid }, + Range { from: '\u{478}', to: '\u{478}', mapping: Mapped(StringTableSlice { byte_start: 740, byte_len: 2 }) }, + Range { from: '\u{479}', to: '\u{479}', mapping: Valid }, + Range { from: '\u{47a}', to: '\u{47a}', mapping: Mapped(StringTableSlice { byte_start: 742, byte_len: 2 }) }, + Range { from: '\u{47b}', to: '\u{47b}', mapping: Valid }, + Range { from: '\u{47c}', to: '\u{47c}', mapping: Mapped(StringTableSlice { byte_start: 744, byte_len: 2 }) }, + Range { from: '\u{47d}', to: '\u{47d}', mapping: Valid }, + Range { from: '\u{47e}', to: '\u{47e}', mapping: Mapped(StringTableSlice { byte_start: 746, byte_len: 2 }) }, + Range { from: '\u{47f}', to: '\u{47f}', mapping: Valid }, + Range { from: '\u{480}', to: '\u{480}', mapping: Mapped(StringTableSlice { byte_start: 748, byte_len: 2 }) }, + Range { from: '\u{481}', to: '\u{481}', mapping: Valid }, + Range { from: '\u{482}', to: '\u{482}', mapping: Valid }, + Range { from: '\u{483}', to: '\u{486}', mapping: Valid }, + Range { from: '\u{487}', to: '\u{487}', mapping: Valid }, + Range { from: '\u{488}', to: '\u{489}', mapping: Valid }, + Range { from: '\u{48a}', to: '\u{48a}', mapping: Mapped(StringTableSlice { byte_start: 750, byte_len: 2 }) }, + Range { from: '\u{48b}', to: '\u{48b}', mapping: Valid }, + Range { from: '\u{48c}', to: '\u{48c}', mapping: Mapped(StringTableSlice { byte_start: 752, byte_len: 2 }) }, + Range { from: '\u{48d}', to: '\u{48d}', mapping: Valid }, + Range { from: '\u{48e}', to: '\u{48e}', mapping: Mapped(StringTableSlice { byte_start: 754, byte_len: 2 }) }, + Range { from: '\u{48f}', to: '\u{48f}', mapping: Valid }, + Range { from: '\u{490}', to: '\u{490}', mapping: Mapped(StringTableSlice { byte_start: 756, byte_len: 2 }) }, + Range { from: '\u{491}', to: '\u{491}', mapping: Valid }, + Range { from: '\u{492}', to: '\u{492}', mapping: Mapped(StringTableSlice { byte_start: 758, byte_len: 2 }) }, + Range { from: '\u{493}', to: '\u{493}', mapping: Valid }, + Range { from: '\u{494}', to: '\u{494}', mapping: Mapped(StringTableSlice { byte_start: 760, byte_len: 2 }) }, + Range { from: '\u{495}', to: '\u{495}', mapping: Valid }, + Range { from: '\u{496}', to: '\u{496}', mapping: Mapped(StringTableSlice { byte_start: 762, byte_len: 2 }) }, + Range { from: '\u{497}', to: '\u{497}', mapping: Valid }, + Range { from: '\u{498}', to: '\u{498}', mapping: Mapped(StringTableSlice { byte_start: 764, byte_len: 2 }) }, + Range { from: '\u{499}', to: '\u{499}', mapping: Valid }, + Range { from: '\u{49a}', to: '\u{49a}', mapping: Mapped(StringTableSlice { byte_start: 766, byte_len: 2 }) }, + Range { from: '\u{49b}', to: '\u{49b}', mapping: Valid }, + Range { from: '\u{49c}', to: '\u{49c}', mapping: Mapped(StringTableSlice { byte_start: 768, byte_len: 2 }) }, + Range { from: '\u{49d}', to: '\u{49d}', mapping: Valid }, + Range { from: '\u{49e}', to: '\u{49e}', mapping: Mapped(StringTableSlice { byte_start: 770, byte_len: 2 }) }, + Range { from: '\u{49f}', to: '\u{49f}', mapping: Valid }, + Range { from: '\u{4a0}', to: '\u{4a0}', mapping: Mapped(StringTableSlice { byte_start: 772, byte_len: 2 }) }, + Range { from: '\u{4a1}', to: '\u{4a1}', mapping: Valid }, + Range { from: '\u{4a2}', to: '\u{4a2}', mapping: Mapped(StringTableSlice { byte_start: 774, byte_len: 2 }) }, + Range { from: '\u{4a3}', to: '\u{4a3}', mapping: Valid }, + Range { from: '\u{4a4}', to: '\u{4a4}', mapping: Mapped(StringTableSlice { byte_start: 776, byte_len: 2 }) }, + Range { from: '\u{4a5}', to: '\u{4a5}', mapping: Valid }, + Range { from: '\u{4a6}', to: '\u{4a6}', mapping: Mapped(StringTableSlice { byte_start: 778, byte_len: 2 }) }, + Range { from: '\u{4a7}', to: '\u{4a7}', mapping: Valid }, + Range { from: '\u{4a8}', to: '\u{4a8}', mapping: Mapped(StringTableSlice { byte_start: 780, byte_len: 2 }) }, + Range { from: '\u{4a9}', to: '\u{4a9}', mapping: Valid }, + Range { from: '\u{4aa}', to: '\u{4aa}', mapping: Mapped(StringTableSlice { byte_start: 782, byte_len: 2 }) }, + Range { from: '\u{4ab}', to: '\u{4ab}', mapping: Valid }, + Range { from: '\u{4ac}', to: '\u{4ac}', mapping: Mapped(StringTableSlice { byte_start: 784, byte_len: 2 }) }, + Range { from: '\u{4ad}', to: '\u{4ad}', mapping: Valid }, + Range { from: '\u{4ae}', to: '\u{4ae}', mapping: Mapped(StringTableSlice { byte_start: 786, byte_len: 2 }) }, + Range { from: '\u{4af}', to: '\u{4af}', mapping: Valid }, + Range { from: '\u{4b0}', to: '\u{4b0}', mapping: Mapped(StringTableSlice { byte_start: 788, byte_len: 2 }) }, + Range { from: '\u{4b1}', to: '\u{4b1}', mapping: Valid }, + Range { from: '\u{4b2}', to: '\u{4b2}', mapping: Mapped(StringTableSlice { byte_start: 790, byte_len: 2 }) }, + Range { from: '\u{4b3}', to: '\u{4b3}', mapping: Valid }, + Range { from: '\u{4b4}', to: '\u{4b4}', mapping: Mapped(StringTableSlice { byte_start: 792, byte_len: 2 }) }, + Range { from: '\u{4b5}', to: '\u{4b5}', mapping: Valid }, + Range { from: '\u{4b6}', to: '\u{4b6}', mapping: Mapped(StringTableSlice { byte_start: 794, byte_len: 2 }) }, + Range { from: '\u{4b7}', to: '\u{4b7}', mapping: Valid }, + Range { from: '\u{4b8}', to: '\u{4b8}', mapping: Mapped(StringTableSlice { byte_start: 796, byte_len: 2 }) }, + Range { from: '\u{4b9}', to: '\u{4b9}', mapping: Valid }, + Range { from: '\u{4ba}', to: '\u{4ba}', mapping: Mapped(StringTableSlice { byte_start: 798, byte_len: 2 }) }, + Range { from: '\u{4bb}', to: '\u{4bb}', mapping: Valid }, + Range { from: '\u{4bc}', to: '\u{4bc}', mapping: Mapped(StringTableSlice { byte_start: 800, byte_len: 2 }) }, + Range { from: '\u{4bd}', to: '\u{4bd}', mapping: Valid }, + Range { from: '\u{4be}', to: '\u{4be}', mapping: Mapped(StringTableSlice { byte_start: 802, byte_len: 2 }) }, + Range { from: '\u{4bf}', to: '\u{4bf}', mapping: Valid }, + Range { from: '\u{4c0}', to: '\u{4c0}', mapping: Disallowed }, + Range { from: '\u{4c1}', to: '\u{4c1}', mapping: Mapped(StringTableSlice { byte_start: 804, byte_len: 2 }) }, + Range { from: '\u{4c2}', to: '\u{4c2}', mapping: Valid }, + Range { from: '\u{4c3}', to: '\u{4c3}', mapping: Mapped(StringTableSlice { byte_start: 806, byte_len: 2 }) }, + Range { from: '\u{4c4}', to: '\u{4c4}', mapping: Valid }, + Range { from: '\u{4c5}', to: '\u{4c5}', mapping: Mapped(StringTableSlice { byte_start: 808, byte_len: 2 }) }, + Range { from: '\u{4c6}', to: '\u{4c6}', mapping: Valid }, + Range { from: '\u{4c7}', to: '\u{4c7}', mapping: Mapped(StringTableSlice { byte_start: 810, byte_len: 2 }) }, + Range { from: '\u{4c8}', to: '\u{4c8}', mapping: Valid }, + Range { from: '\u{4c9}', to: '\u{4c9}', mapping: Mapped(StringTableSlice { byte_start: 812, byte_len: 2 }) }, + Range { from: '\u{4ca}', to: '\u{4ca}', mapping: Valid }, + Range { from: '\u{4cb}', to: '\u{4cb}', mapping: Mapped(StringTableSlice { byte_start: 814, byte_len: 2 }) }, + Range { from: '\u{4cc}', to: '\u{4cc}', mapping: Valid }, + Range { from: '\u{4cd}', to: '\u{4cd}', mapping: Mapped(StringTableSlice { byte_start: 816, byte_len: 2 }) }, + Range { from: '\u{4ce}', to: '\u{4ce}', mapping: Valid }, + Range { from: '\u{4cf}', to: '\u{4cf}', mapping: Valid }, + Range { from: '\u{4d0}', to: '\u{4d0}', mapping: Mapped(StringTableSlice { byte_start: 818, byte_len: 2 }) }, + Range { from: '\u{4d1}', to: '\u{4d1}', mapping: Valid }, + Range { from: '\u{4d2}', to: '\u{4d2}', mapping: Mapped(StringTableSlice { byte_start: 820, byte_len: 2 }) }, + Range { from: '\u{4d3}', to: '\u{4d3}', mapping: Valid }, + Range { from: '\u{4d4}', to: '\u{4d4}', mapping: Mapped(StringTableSlice { byte_start: 822, byte_len: 2 }) }, + Range { from: '\u{4d5}', to: '\u{4d5}', mapping: Valid }, + Range { from: '\u{4d6}', to: '\u{4d6}', mapping: Mapped(StringTableSlice { byte_start: 824, byte_len: 2 }) }, + Range { from: '\u{4d7}', to: '\u{4d7}', mapping: Valid }, + Range { from: '\u{4d8}', to: '\u{4d8}', mapping: Mapped(StringTableSlice { byte_start: 826, byte_len: 2 }) }, + Range { from: '\u{4d9}', to: '\u{4d9}', mapping: Valid }, + Range { from: '\u{4da}', to: '\u{4da}', mapping: Mapped(StringTableSlice { byte_start: 828, byte_len: 2 }) }, + Range { from: '\u{4db}', to: '\u{4db}', mapping: Valid }, + Range { from: '\u{4dc}', to: '\u{4dc}', mapping: Mapped(StringTableSlice { byte_start: 830, byte_len: 2 }) }, + Range { from: '\u{4dd}', to: '\u{4dd}', mapping: Valid }, + Range { from: '\u{4de}', to: '\u{4de}', mapping: Mapped(StringTableSlice { byte_start: 832, byte_len: 2 }) }, + Range { from: '\u{4df}', to: '\u{4df}', mapping: Valid }, + Range { from: '\u{4e0}', to: '\u{4e0}', mapping: Mapped(StringTableSlice { byte_start: 834, byte_len: 2 }) }, + Range { from: '\u{4e1}', to: '\u{4e1}', mapping: Valid }, + Range { from: '\u{4e2}', to: '\u{4e2}', mapping: Mapped(StringTableSlice { byte_start: 836, byte_len: 2 }) }, + Range { from: '\u{4e3}', to: '\u{4e3}', mapping: Valid }, + Range { from: '\u{4e4}', to: '\u{4e4}', mapping: Mapped(StringTableSlice { byte_start: 838, byte_len: 2 }) }, + Range { from: '\u{4e5}', to: '\u{4e5}', mapping: Valid }, + Range { from: '\u{4e6}', to: '\u{4e6}', mapping: Mapped(StringTableSlice { byte_start: 840, byte_len: 2 }) }, + Range { from: '\u{4e7}', to: '\u{4e7}', mapping: Valid }, + Range { from: '\u{4e8}', to: '\u{4e8}', mapping: Mapped(StringTableSlice { byte_start: 842, byte_len: 2 }) }, + Range { from: '\u{4e9}', to: '\u{4e9}', mapping: Valid }, + Range { from: '\u{4ea}', to: '\u{4ea}', mapping: Mapped(StringTableSlice { byte_start: 844, byte_len: 2 }) }, + Range { from: '\u{4eb}', to: '\u{4eb}', mapping: Valid }, + Range { from: '\u{4ec}', to: '\u{4ec}', mapping: Mapped(StringTableSlice { byte_start: 846, byte_len: 2 }) }, + Range { from: '\u{4ed}', to: '\u{4ed}', mapping: Valid }, + Range { from: '\u{4ee}', to: '\u{4ee}', mapping: Mapped(StringTableSlice { byte_start: 848, byte_len: 2 }) }, + Range { from: '\u{4ef}', to: '\u{4ef}', mapping: Valid }, + Range { from: '\u{4f0}', to: '\u{4f0}', mapping: Mapped(StringTableSlice { byte_start: 850, byte_len: 2 }) }, + Range { from: '\u{4f1}', to: '\u{4f1}', mapping: Valid }, + Range { from: '\u{4f2}', to: '\u{4f2}', mapping: Mapped(StringTableSlice { byte_start: 852, byte_len: 2 }) }, + Range { from: '\u{4f3}', to: '\u{4f3}', mapping: Valid }, + Range { from: '\u{4f4}', to: '\u{4f4}', mapping: Mapped(StringTableSlice { byte_start: 854, byte_len: 2 }) }, + Range { from: '\u{4f5}', to: '\u{4f5}', mapping: Valid }, + Range { from: '\u{4f6}', to: '\u{4f6}', mapping: Mapped(StringTableSlice { byte_start: 856, byte_len: 2 }) }, + Range { from: '\u{4f7}', to: '\u{4f7}', mapping: Valid }, + Range { from: '\u{4f8}', to: '\u{4f8}', mapping: Mapped(StringTableSlice { byte_start: 858, byte_len: 2 }) }, + Range { from: '\u{4f9}', to: '\u{4f9}', mapping: Valid }, + Range { from: '\u{4fa}', to: '\u{4fa}', mapping: Mapped(StringTableSlice { byte_start: 860, byte_len: 2 }) }, + Range { from: '\u{4fb}', to: '\u{4fb}', mapping: Valid }, + Range { from: '\u{4fc}', to: '\u{4fc}', mapping: Mapped(StringTableSlice { byte_start: 862, byte_len: 2 }) }, + Range { from: '\u{4fd}', to: '\u{4fd}', mapping: Valid }, + Range { from: '\u{4fe}', to: '\u{4fe}', mapping: Mapped(StringTableSlice { byte_start: 864, byte_len: 2 }) }, + Range { from: '\u{4ff}', to: '\u{4ff}', mapping: Valid }, + Range { from: '\u{500}', to: '\u{500}', mapping: Mapped(StringTableSlice { byte_start: 866, byte_len: 2 }) }, + Range { from: '\u{501}', to: '\u{501}', mapping: Valid }, + Range { from: '\u{502}', to: '\u{502}', mapping: Mapped(StringTableSlice { byte_start: 868, byte_len: 2 }) }, + Range { from: '\u{503}', to: '\u{503}', mapping: Valid }, + Range { from: '\u{504}', to: '\u{504}', mapping: Mapped(StringTableSlice { byte_start: 870, byte_len: 2 }) }, + Range { from: '\u{505}', to: '\u{505}', mapping: Valid }, + Range { from: '\u{506}', to: '\u{506}', mapping: Mapped(StringTableSlice { byte_start: 872, byte_len: 2 }) }, + Range { from: '\u{507}', to: '\u{507}', mapping: Valid }, + Range { from: '\u{508}', to: '\u{508}', mapping: Mapped(StringTableSlice { byte_start: 874, byte_len: 2 }) }, + Range { from: '\u{509}', to: '\u{509}', mapping: Valid }, + Range { from: '\u{50a}', to: '\u{50a}', mapping: Mapped(StringTableSlice { byte_start: 876, byte_len: 2 }) }, + Range { from: '\u{50b}', to: '\u{50b}', mapping: Valid }, + Range { from: '\u{50c}', to: '\u{50c}', mapping: Mapped(StringTableSlice { byte_start: 878, byte_len: 2 }) }, + Range { from: '\u{50d}', to: '\u{50d}', mapping: Valid }, + Range { from: '\u{50e}', to: '\u{50e}', mapping: Mapped(StringTableSlice { byte_start: 880, byte_len: 2 }) }, + Range { from: '\u{50f}', to: '\u{50f}', mapping: Valid }, + Range { from: '\u{510}', to: '\u{510}', mapping: Mapped(StringTableSlice { byte_start: 882, byte_len: 2 }) }, + Range { from: '\u{511}', to: '\u{511}', mapping: Valid }, + Range { from: '\u{512}', to: '\u{512}', mapping: Mapped(StringTableSlice { byte_start: 884, byte_len: 2 }) }, + Range { from: '\u{513}', to: '\u{513}', mapping: Valid }, + Range { from: '\u{514}', to: '\u{514}', mapping: Mapped(StringTableSlice { byte_start: 886, byte_len: 2 }) }, + Range { from: '\u{515}', to: '\u{515}', mapping: Valid }, + Range { from: '\u{516}', to: '\u{516}', mapping: Mapped(StringTableSlice { byte_start: 888, byte_len: 2 }) }, + Range { from: '\u{517}', to: '\u{517}', mapping: Valid }, + Range { from: '\u{518}', to: '\u{518}', mapping: Mapped(StringTableSlice { byte_start: 890, byte_len: 2 }) }, + Range { from: '\u{519}', to: '\u{519}', mapping: Valid }, + Range { from: '\u{51a}', to: '\u{51a}', mapping: Mapped(StringTableSlice { byte_start: 892, byte_len: 2 }) }, + Range { from: '\u{51b}', to: '\u{51b}', mapping: Valid }, + Range { from: '\u{51c}', to: '\u{51c}', mapping: Mapped(StringTableSlice { byte_start: 894, byte_len: 2 }) }, + Range { from: '\u{51d}', to: '\u{51d}', mapping: Valid }, + Range { from: '\u{51e}', to: '\u{51e}', mapping: Mapped(StringTableSlice { byte_start: 896, byte_len: 2 }) }, + Range { from: '\u{51f}', to: '\u{51f}', mapping: Valid }, + Range { from: '\u{520}', to: '\u{520}', mapping: Mapped(StringTableSlice { byte_start: 898, byte_len: 2 }) }, + Range { from: '\u{521}', to: '\u{521}', mapping: Valid }, + Range { from: '\u{522}', to: '\u{522}', mapping: Mapped(StringTableSlice { byte_start: 900, byte_len: 2 }) }, + Range { from: '\u{523}', to: '\u{523}', mapping: Valid }, + Range { from: '\u{524}', to: '\u{524}', mapping: Mapped(StringTableSlice { byte_start: 902, byte_len: 2 }) }, + Range { from: '\u{525}', to: '\u{525}', mapping: Valid }, + Range { from: '\u{526}', to: '\u{526}', mapping: Mapped(StringTableSlice { byte_start: 904, byte_len: 2 }) }, + Range { from: '\u{527}', to: '\u{527}', mapping: Valid }, + Range { from: '\u{528}', to: '\u{528}', mapping: Mapped(StringTableSlice { byte_start: 906, byte_len: 2 }) }, + Range { from: '\u{529}', to: '\u{529}', mapping: Valid }, + Range { from: '\u{52a}', to: '\u{52a}', mapping: Mapped(StringTableSlice { byte_start: 908, byte_len: 2 }) }, + Range { from: '\u{52b}', to: '\u{52b}', mapping: Valid }, + Range { from: '\u{52c}', to: '\u{52c}', mapping: Mapped(StringTableSlice { byte_start: 910, byte_len: 2 }) }, + Range { from: '\u{52d}', to: '\u{52d}', mapping: Valid }, + Range { from: '\u{52e}', to: '\u{52e}', mapping: Mapped(StringTableSlice { byte_start: 912, byte_len: 2 }) }, + Range { from: '\u{52f}', to: '\u{52f}', mapping: Valid }, + Range { from: '\u{530}', to: '\u{530}', mapping: Disallowed }, + Range { from: '\u{531}', to: '\u{531}', mapping: Mapped(StringTableSlice { byte_start: 914, byte_len: 2 }) }, + Range { from: '\u{532}', to: '\u{532}', mapping: Mapped(StringTableSlice { byte_start: 916, byte_len: 2 }) }, + Range { from: '\u{533}', to: '\u{533}', mapping: Mapped(StringTableSlice { byte_start: 918, byte_len: 2 }) }, + Range { from: '\u{534}', to: '\u{534}', mapping: Mapped(StringTableSlice { byte_start: 920, byte_len: 2 }) }, + Range { from: '\u{535}', to: '\u{535}', mapping: Mapped(StringTableSlice { byte_start: 922, byte_len: 2 }) }, + Range { from: '\u{536}', to: '\u{536}', mapping: Mapped(StringTableSlice { byte_start: 924, byte_len: 2 }) }, + Range { from: '\u{537}', to: '\u{537}', mapping: Mapped(StringTableSlice { byte_start: 926, byte_len: 2 }) }, + Range { from: '\u{538}', to: '\u{538}', mapping: Mapped(StringTableSlice { byte_start: 928, byte_len: 2 }) }, + Range { from: '\u{539}', to: '\u{539}', mapping: Mapped(StringTableSlice { byte_start: 930, byte_len: 2 }) }, + Range { from: '\u{53a}', to: '\u{53a}', mapping: Mapped(StringTableSlice { byte_start: 932, byte_len: 2 }) }, + Range { from: '\u{53b}', to: '\u{53b}', mapping: Mapped(StringTableSlice { byte_start: 934, byte_len: 2 }) }, + Range { from: '\u{53c}', to: '\u{53c}', mapping: Mapped(StringTableSlice { byte_start: 936, byte_len: 2 }) }, + Range { from: '\u{53d}', to: '\u{53d}', mapping: Mapped(StringTableSlice { byte_start: 938, byte_len: 2 }) }, + Range { from: '\u{53e}', to: '\u{53e}', mapping: Mapped(StringTableSlice { byte_start: 940, byte_len: 2 }) }, + Range { from: '\u{53f}', to: '\u{53f}', mapping: Mapped(StringTableSlice { byte_start: 942, byte_len: 2 }) }, + Range { from: '\u{540}', to: '\u{540}', mapping: Mapped(StringTableSlice { byte_start: 944, byte_len: 2 }) }, + Range { from: '\u{541}', to: '\u{541}', mapping: Mapped(StringTableSlice { byte_start: 946, byte_len: 2 }) }, + Range { from: '\u{542}', to: '\u{542}', mapping: Mapped(StringTableSlice { byte_start: 948, byte_len: 2 }) }, + Range { from: '\u{543}', to: '\u{543}', mapping: Mapped(StringTableSlice { byte_start: 950, byte_len: 2 }) }, + Range { from: '\u{544}', to: '\u{544}', mapping: Mapped(StringTableSlice { byte_start: 952, byte_len: 2 }) }, + Range { from: '\u{545}', to: '\u{545}', mapping: Mapped(StringTableSlice { byte_start: 954, byte_len: 2 }) }, + Range { from: '\u{546}', to: '\u{546}', mapping: Mapped(StringTableSlice { byte_start: 956, byte_len: 2 }) }, + Range { from: '\u{547}', to: '\u{547}', mapping: Mapped(StringTableSlice { byte_start: 958, byte_len: 2 }) }, + Range { from: '\u{548}', to: '\u{548}', mapping: Mapped(StringTableSlice { byte_start: 960, byte_len: 2 }) }, + Range { from: '\u{549}', to: '\u{549}', mapping: Mapped(StringTableSlice { byte_start: 962, byte_len: 2 }) }, + Range { from: '\u{54a}', to: '\u{54a}', mapping: Mapped(StringTableSlice { byte_start: 964, byte_len: 2 }) }, + Range { from: '\u{54b}', to: '\u{54b}', mapping: Mapped(StringTableSlice { byte_start: 966, byte_len: 2 }) }, + Range { from: '\u{54c}', to: '\u{54c}', mapping: Mapped(StringTableSlice { byte_start: 968, byte_len: 2 }) }, + Range { from: '\u{54d}', to: '\u{54d}', mapping: Mapped(StringTableSlice { byte_start: 970, byte_len: 2 }) }, + Range { from: '\u{54e}', to: '\u{54e}', mapping: Mapped(StringTableSlice { byte_start: 972, byte_len: 2 }) }, + Range { from: '\u{54f}', to: '\u{54f}', mapping: Mapped(StringTableSlice { byte_start: 974, byte_len: 2 }) }, + Range { from: '\u{550}', to: '\u{550}', mapping: Mapped(StringTableSlice { byte_start: 976, byte_len: 2 }) }, + Range { from: '\u{551}', to: '\u{551}', mapping: Mapped(StringTableSlice { byte_start: 978, byte_len: 2 }) }, + Range { from: '\u{552}', to: '\u{552}', mapping: Mapped(StringTableSlice { byte_start: 980, byte_len: 2 }) }, + Range { from: '\u{553}', to: '\u{553}', mapping: Mapped(StringTableSlice { byte_start: 982, byte_len: 2 }) }, + Range { from: '\u{554}', to: '\u{554}', mapping: Mapped(StringTableSlice { byte_start: 984, byte_len: 2 }) }, + Range { from: '\u{555}', to: '\u{555}', mapping: Mapped(StringTableSlice { byte_start: 986, byte_len: 2 }) }, + Range { from: '\u{556}', to: '\u{556}', mapping: Mapped(StringTableSlice { byte_start: 988, byte_len: 2 }) }, + Range { from: '\u{557}', to: '\u{558}', mapping: Disallowed }, + Range { from: '\u{559}', to: '\u{559}', mapping: Valid }, + Range { from: '\u{55a}', to: '\u{55f}', mapping: Valid }, + Range { from: '\u{560}', to: '\u{560}', mapping: Disallowed }, + Range { from: '\u{561}', to: '\u{586}', mapping: Valid }, + Range { from: '\u{587}', to: '\u{587}', mapping: Mapped(StringTableSlice { byte_start: 990, byte_len: 4 }) }, + Range { from: '\u{588}', to: '\u{588}', mapping: Disallowed }, + Range { from: '\u{589}', to: '\u{589}', mapping: Valid }, + Range { from: '\u{58a}', to: '\u{58a}', mapping: Valid }, + Range { from: '\u{58b}', to: '\u{58c}', mapping: Disallowed }, + Range { from: '\u{58d}', to: '\u{58e}', mapping: Valid }, + Range { from: '\u{58f}', to: '\u{58f}', mapping: Valid }, + Range { from: '\u{590}', to: '\u{590}', mapping: Disallowed }, + Range { from: '\u{591}', to: '\u{5a1}', mapping: Valid }, + Range { from: '\u{5a2}', to: '\u{5a2}', mapping: Valid }, + Range { from: '\u{5a3}', to: '\u{5af}', mapping: Valid }, + Range { from: '\u{5b0}', to: '\u{5b9}', mapping: Valid }, + Range { from: '\u{5ba}', to: '\u{5ba}', mapping: Valid }, + Range { from: '\u{5bb}', to: '\u{5bd}', mapping: Valid }, + Range { from: '\u{5be}', to: '\u{5be}', mapping: Valid }, + Range { from: '\u{5bf}', to: '\u{5bf}', mapping: Valid }, + Range { from: '\u{5c0}', to: '\u{5c0}', mapping: Valid }, + Range { from: '\u{5c1}', to: '\u{5c2}', mapping: Valid }, + Range { from: '\u{5c3}', to: '\u{5c3}', mapping: Valid }, + Range { from: '\u{5c4}', to: '\u{5c4}', mapping: Valid }, + Range { from: '\u{5c5}', to: '\u{5c5}', mapping: Valid }, + Range { from: '\u{5c6}', to: '\u{5c6}', mapping: Valid }, + Range { from: '\u{5c7}', to: '\u{5c7}', mapping: Valid }, + Range { from: '\u{5c8}', to: '\u{5cf}', mapping: Disallowed }, + Range { from: '\u{5d0}', to: '\u{5ea}', mapping: Valid }, + Range { from: '\u{5eb}', to: '\u{5ef}', mapping: Disallowed }, + Range { from: '\u{5f0}', to: '\u{5f4}', mapping: Valid }, + Range { from: '\u{5f5}', to: '\u{5ff}', mapping: Disallowed }, + Range { from: '\u{600}', to: '\u{603}', mapping: Disallowed }, + Range { from: '\u{604}', to: '\u{604}', mapping: Disallowed }, + Range { from: '\u{605}', to: '\u{605}', mapping: Disallowed }, + Range { from: '\u{606}', to: '\u{60a}', mapping: Valid }, + Range { from: '\u{60b}', to: '\u{60b}', mapping: Valid }, + Range { from: '\u{60c}', to: '\u{60c}', mapping: Valid }, + Range { from: '\u{60d}', to: '\u{60f}', mapping: Valid }, + Range { from: '\u{610}', to: '\u{615}', mapping: Valid }, + Range { from: '\u{616}', to: '\u{61a}', mapping: Valid }, + Range { from: '\u{61b}', to: '\u{61b}', mapping: Valid }, + Range { from: '\u{61c}', to: '\u{61c}', mapping: Disallowed }, + Range { from: '\u{61d}', to: '\u{61d}', mapping: Disallowed }, + Range { from: '\u{61e}', to: '\u{61e}', mapping: Valid }, + Range { from: '\u{61f}', to: '\u{61f}', mapping: Valid }, + Range { from: '\u{620}', to: '\u{620}', mapping: Valid }, + Range { from: '\u{621}', to: '\u{63a}', mapping: Valid }, + Range { from: '\u{63b}', to: '\u{63f}', mapping: Valid }, + Range { from: '\u{640}', to: '\u{640}', mapping: Valid }, + Range { from: '\u{641}', to: '\u{652}', mapping: Valid }, + Range { from: '\u{653}', to: '\u{655}', mapping: Valid }, + Range { from: '\u{656}', to: '\u{658}', mapping: Valid }, + Range { from: '\u{659}', to: '\u{65e}', mapping: Valid }, + Range { from: '\u{65f}', to: '\u{65f}', mapping: Valid }, + Range { from: '\u{660}', to: '\u{669}', mapping: Valid }, + Range { from: '\u{66a}', to: '\u{66d}', mapping: Valid }, + Range { from: '\u{66e}', to: '\u{66f}', mapping: Valid }, + Range { from: '\u{670}', to: '\u{674}', mapping: Valid }, + Range { from: '\u{675}', to: '\u{675}', mapping: Mapped(StringTableSlice { byte_start: 994, byte_len: 4 }) }, + Range { from: '\u{676}', to: '\u{676}', mapping: Mapped(StringTableSlice { byte_start: 998, byte_len: 4 }) }, + Range { from: '\u{677}', to: '\u{677}', mapping: Mapped(StringTableSlice { byte_start: 1002, byte_len: 4 }) }, + Range { from: '\u{678}', to: '\u{678}', mapping: Mapped(StringTableSlice { byte_start: 1006, byte_len: 4 }) }, + Range { from: '\u{679}', to: '\u{6b7}', mapping: Valid }, + Range { from: '\u{6b8}', to: '\u{6b9}', mapping: Valid }, + Range { from: '\u{6ba}', to: '\u{6be}', mapping: Valid }, + Range { from: '\u{6bf}', to: '\u{6bf}', mapping: Valid }, + Range { from: '\u{6c0}', to: '\u{6ce}', mapping: Valid }, + Range { from: '\u{6cf}', to: '\u{6cf}', mapping: Valid }, + Range { from: '\u{6d0}', to: '\u{6d3}', mapping: Valid }, + Range { from: '\u{6d4}', to: '\u{6d4}', mapping: Valid }, + Range { from: '\u{6d5}', to: '\u{6dc}', mapping: Valid }, + Range { from: '\u{6dd}', to: '\u{6dd}', mapping: Disallowed }, + Range { from: '\u{6de}', to: '\u{6de}', mapping: Valid }, + Range { from: '\u{6df}', to: '\u{6e8}', mapping: Valid }, + Range { from: '\u{6e9}', to: '\u{6e9}', mapping: Valid }, + Range { from: '\u{6ea}', to: '\u{6ed}', mapping: Valid }, + Range { from: '\u{6ee}', to: '\u{6ef}', mapping: Valid }, + Range { from: '\u{6f0}', to: '\u{6f9}', mapping: Valid }, + Range { from: '\u{6fa}', to: '\u{6fe}', mapping: Valid }, + Range { from: '\u{6ff}', to: '\u{6ff}', mapping: Valid }, + Range { from: '\u{700}', to: '\u{70d}', mapping: Valid }, + Range { from: '\u{70e}', to: '\u{70e}', mapping: Disallowed }, + Range { from: '\u{70f}', to: '\u{70f}', mapping: Disallowed }, + Range { from: '\u{710}', to: '\u{72c}', mapping: Valid }, + Range { from: '\u{72d}', to: '\u{72f}', mapping: Valid }, + Range { from: '\u{730}', to: '\u{74a}', mapping: Valid }, + Range { from: '\u{74b}', to: '\u{74c}', mapping: Disallowed }, + Range { from: '\u{74d}', to: '\u{74f}', mapping: Valid }, + Range { from: '\u{750}', to: '\u{76d}', mapping: Valid }, + Range { from: '\u{76e}', to: '\u{77f}', mapping: Valid }, + Range { from: '\u{780}', to: '\u{7b0}', mapping: Valid }, + Range { from: '\u{7b1}', to: '\u{7b1}', mapping: Valid }, + Range { from: '\u{7b2}', to: '\u{7bf}', mapping: Disallowed }, + Range { from: '\u{7c0}', to: '\u{7f5}', mapping: Valid }, + Range { from: '\u{7f6}', to: '\u{7fa}', mapping: Valid }, + Range { from: '\u{7fb}', to: '\u{7ff}', mapping: Disallowed }, + Range { from: '\u{800}', to: '\u{82d}', mapping: Valid }, + Range { from: '\u{82e}', to: '\u{82f}', mapping: Disallowed }, + Range { from: '\u{830}', to: '\u{83e}', mapping: Valid }, + Range { from: '\u{83f}', to: '\u{83f}', mapping: Disallowed }, + Range { from: '\u{840}', to: '\u{85b}', mapping: Valid }, + Range { from: '\u{85c}', to: '\u{85d}', mapping: Disallowed }, + Range { from: '\u{85e}', to: '\u{85e}', mapping: Valid }, + Range { from: '\u{85f}', to: '\u{89f}', mapping: Disallowed }, + Range { from: '\u{8a0}', to: '\u{8a0}', mapping: Valid }, + Range { from: '\u{8a1}', to: '\u{8a1}', mapping: Valid }, + Range { from: '\u{8a2}', to: '\u{8ac}', mapping: Valid }, + Range { from: '\u{8ad}', to: '\u{8b2}', mapping: Valid }, + Range { from: '\u{8b3}', to: '\u{8b4}', mapping: Valid }, + Range { from: '\u{8b5}', to: '\u{8b5}', mapping: Disallowed }, + Range { from: '\u{8b6}', to: '\u{8bd}', mapping: Valid }, + Range { from: '\u{8be}', to: '\u{8d3}', mapping: Disallowed }, + Range { from: '\u{8d4}', to: '\u{8e1}', mapping: Valid }, + Range { from: '\u{8e2}', to: '\u{8e2}', mapping: Disallowed }, + Range { from: '\u{8e3}', to: '\u{8e3}', mapping: Valid }, + Range { from: '\u{8e4}', to: '\u{8fe}', mapping: Valid }, + Range { from: '\u{8ff}', to: '\u{8ff}', mapping: Valid }, + Range { from: '\u{900}', to: '\u{900}', mapping: Valid }, + Range { from: '\u{901}', to: '\u{903}', mapping: Valid }, + Range { from: '\u{904}', to: '\u{904}', mapping: Valid }, + Range { from: '\u{905}', to: '\u{939}', mapping: Valid }, + Range { from: '\u{93a}', to: '\u{93b}', mapping: Valid }, + Range { from: '\u{93c}', to: '\u{94d}', mapping: Valid }, + Range { from: '\u{94e}', to: '\u{94e}', mapping: Valid }, + Range { from: '\u{94f}', to: '\u{94f}', mapping: Valid }, + Range { from: '\u{950}', to: '\u{954}', mapping: Valid }, + Range { from: '\u{955}', to: '\u{955}', mapping: Valid }, + Range { from: '\u{956}', to: '\u{957}', mapping: Valid }, + Range { from: '\u{958}', to: '\u{958}', mapping: Mapped(StringTableSlice { byte_start: 1010, byte_len: 6 }) }, + Range { from: '\u{959}', to: '\u{959}', mapping: Mapped(StringTableSlice { byte_start: 1016, byte_len: 6 }) }, + Range { from: '\u{95a}', to: '\u{95a}', mapping: Mapped(StringTableSlice { byte_start: 1022, byte_len: 6 }) }, + Range { from: '\u{95b}', to: '\u{95b}', mapping: Mapped(StringTableSlice { byte_start: 1028, byte_len: 6 }) }, + Range { from: '\u{95c}', to: '\u{95c}', mapping: Mapped(StringTableSlice { byte_start: 1034, byte_len: 6 }) }, + Range { from: '\u{95d}', to: '\u{95d}', mapping: Mapped(StringTableSlice { byte_start: 1040, byte_len: 6 }) }, + Range { from: '\u{95e}', to: '\u{95e}', mapping: Mapped(StringTableSlice { byte_start: 1046, byte_len: 6 }) }, + Range { from: '\u{95f}', to: '\u{95f}', mapping: Mapped(StringTableSlice { byte_start: 1052, byte_len: 6 }) }, + Range { from: '\u{960}', to: '\u{963}', mapping: Valid }, + Range { from: '\u{964}', to: '\u{965}', mapping: Valid }, + Range { from: '\u{966}', to: '\u{96f}', mapping: Valid }, + Range { from: '\u{970}', to: '\u{970}', mapping: Valid }, + Range { from: '\u{971}', to: '\u{972}', mapping: Valid }, + Range { from: '\u{973}', to: '\u{977}', mapping: Valid }, + Range { from: '\u{978}', to: '\u{978}', mapping: Valid }, + Range { from: '\u{979}', to: '\u{97a}', mapping: Valid }, + Range { from: '\u{97b}', to: '\u{97c}', mapping: Valid }, + Range { from: '\u{97d}', to: '\u{97d}', mapping: Valid }, + Range { from: '\u{97e}', to: '\u{97f}', mapping: Valid }, + Range { from: '\u{980}', to: '\u{980}', mapping: Valid }, + Range { from: '\u{981}', to: '\u{983}', mapping: Valid }, + Range { from: '\u{984}', to: '\u{984}', mapping: Disallowed }, + Range { from: '\u{985}', to: '\u{98c}', mapping: Valid }, + Range { from: '\u{98d}', to: '\u{98e}', mapping: Disallowed }, + Range { from: '\u{98f}', to: '\u{990}', mapping: Valid }, + Range { from: '\u{991}', to: '\u{992}', mapping: Disallowed }, + Range { from: '\u{993}', to: '\u{9a8}', mapping: Valid }, + Range { from: '\u{9a9}', to: '\u{9a9}', mapping: Disallowed }, + Range { from: '\u{9aa}', to: '\u{9b0}', mapping: Valid }, + Range { from: '\u{9b1}', to: '\u{9b1}', mapping: Disallowed }, + Range { from: '\u{9b2}', to: '\u{9b2}', mapping: Valid }, + Range { from: '\u{9b3}', to: '\u{9b5}', mapping: Disallowed }, + Range { from: '\u{9b6}', to: '\u{9b9}', mapping: Valid }, + Range { from: '\u{9ba}', to: '\u{9bb}', mapping: Disallowed }, + Range { from: '\u{9bc}', to: '\u{9bc}', mapping: Valid }, + Range { from: '\u{9bd}', to: '\u{9bd}', mapping: Valid }, + Range { from: '\u{9be}', to: '\u{9c4}', mapping: Valid }, + Range { from: '\u{9c5}', to: '\u{9c6}', mapping: Disallowed }, + Range { from: '\u{9c7}', to: '\u{9c8}', mapping: Valid }, + Range { from: '\u{9c9}', to: '\u{9ca}', mapping: Disallowed }, + Range { from: '\u{9cb}', to: '\u{9cd}', mapping: Valid }, + Range { from: '\u{9ce}', to: '\u{9ce}', mapping: Valid }, + Range { from: '\u{9cf}', to: '\u{9d6}', mapping: Disallowed }, + Range { from: '\u{9d7}', to: '\u{9d7}', mapping: Valid }, + Range { from: '\u{9d8}', to: '\u{9db}', mapping: Disallowed }, + Range { from: '\u{9dc}', to: '\u{9dc}', mapping: Mapped(StringTableSlice { byte_start: 1058, byte_len: 6 }) }, + Range { from: '\u{9dd}', to: '\u{9dd}', mapping: Mapped(StringTableSlice { byte_start: 1064, byte_len: 6 }) }, + Range { from: '\u{9de}', to: '\u{9de}', mapping: Disallowed }, + Range { from: '\u{9df}', to: '\u{9df}', mapping: Mapped(StringTableSlice { byte_start: 1070, byte_len: 6 }) }, + Range { from: '\u{9e0}', to: '\u{9e3}', mapping: Valid }, + Range { from: '\u{9e4}', to: '\u{9e5}', mapping: Disallowed }, + Range { from: '\u{9e6}', to: '\u{9f1}', mapping: Valid }, + Range { from: '\u{9f2}', to: '\u{9fa}', mapping: Valid }, + Range { from: '\u{9fb}', to: '\u{9fb}', mapping: Valid }, + Range { from: '\u{9fc}', to: '\u{a00}', mapping: Disallowed }, + Range { from: '\u{a01}', to: '\u{a01}', mapping: Valid }, + Range { from: '\u{a02}', to: '\u{a02}', mapping: Valid }, + Range { from: '\u{a03}', to: '\u{a03}', mapping: Valid }, + Range { from: '\u{a04}', to: '\u{a04}', mapping: Disallowed }, + Range { from: '\u{a05}', to: '\u{a0a}', mapping: Valid }, + Range { from: '\u{a0b}', to: '\u{a0e}', mapping: Disallowed }, + Range { from: '\u{a0f}', to: '\u{a10}', mapping: Valid }, + Range { from: '\u{a11}', to: '\u{a12}', mapping: Disallowed }, + Range { from: '\u{a13}', to: '\u{a28}', mapping: Valid }, + Range { from: '\u{a29}', to: '\u{a29}', mapping: Disallowed }, + Range { from: '\u{a2a}', to: '\u{a30}', mapping: Valid }, + Range { from: '\u{a31}', to: '\u{a31}', mapping: Disallowed }, + Range { from: '\u{a32}', to: '\u{a32}', mapping: Valid }, + Range { from: '\u{a33}', to: '\u{a33}', mapping: Mapped(StringTableSlice { byte_start: 1076, byte_len: 6 }) }, + Range { from: '\u{a34}', to: '\u{a34}', mapping: Disallowed }, + Range { from: '\u{a35}', to: '\u{a35}', mapping: Valid }, + Range { from: '\u{a36}', to: '\u{a36}', mapping: Mapped(StringTableSlice { byte_start: 1082, byte_len: 6 }) }, + Range { from: '\u{a37}', to: '\u{a37}', mapping: Disallowed }, + Range { from: '\u{a38}', to: '\u{a39}', mapping: Valid }, + Range { from: '\u{a3a}', to: '\u{a3b}', mapping: Disallowed }, + Range { from: '\u{a3c}', to: '\u{a3c}', mapping: Valid }, + Range { from: '\u{a3d}', to: '\u{a3d}', mapping: Disallowed }, + Range { from: '\u{a3e}', to: '\u{a42}', mapping: Valid }, + Range { from: '\u{a43}', to: '\u{a46}', mapping: Disallowed }, + Range { from: '\u{a47}', to: '\u{a48}', mapping: Valid }, + Range { from: '\u{a49}', to: '\u{a4a}', mapping: Disallowed }, + Range { from: '\u{a4b}', to: '\u{a4d}', mapping: Valid }, + Range { from: '\u{a4e}', to: '\u{a50}', mapping: Disallowed }, + Range { from: '\u{a51}', to: '\u{a51}', mapping: Valid }, + Range { from: '\u{a52}', to: '\u{a58}', mapping: Disallowed }, + Range { from: '\u{a59}', to: '\u{a59}', mapping: Mapped(StringTableSlice { byte_start: 1088, byte_len: 6 }) }, + Range { from: '\u{a5a}', to: '\u{a5a}', mapping: Mapped(StringTableSlice { byte_start: 1094, byte_len: 6 }) }, + Range { from: '\u{a5b}', to: '\u{a5b}', mapping: Mapped(StringTableSlice { byte_start: 1100, byte_len: 6 }) }, + Range { from: '\u{a5c}', to: '\u{a5c}', mapping: Valid }, + Range { from: '\u{a5d}', to: '\u{a5d}', mapping: Disallowed }, + Range { from: '\u{a5e}', to: '\u{a5e}', mapping: Mapped(StringTableSlice { byte_start: 1106, byte_len: 6 }) }, + Range { from: '\u{a5f}', to: '\u{a65}', mapping: Disallowed }, + Range { from: '\u{a66}', to: '\u{a74}', mapping: Valid }, + Range { from: '\u{a75}', to: '\u{a75}', mapping: Valid }, + Range { from: '\u{a76}', to: '\u{a80}', mapping: Disallowed }, + Range { from: '\u{a81}', to: '\u{a83}', mapping: Valid }, + Range { from: '\u{a84}', to: '\u{a84}', mapping: Disallowed }, + Range { from: '\u{a85}', to: '\u{a8b}', mapping: Valid }, + Range { from: '\u{a8c}', to: '\u{a8c}', mapping: Valid }, + Range { from: '\u{a8d}', to: '\u{a8d}', mapping: Valid }, + Range { from: '\u{a8e}', to: '\u{a8e}', mapping: Disallowed }, + Range { from: '\u{a8f}', to: '\u{a91}', mapping: Valid }, + Range { from: '\u{a92}', to: '\u{a92}', mapping: Disallowed }, + Range { from: '\u{a93}', to: '\u{aa8}', mapping: Valid }, + Range { from: '\u{aa9}', to: '\u{aa9}', mapping: Disallowed }, + Range { from: '\u{aaa}', to: '\u{ab0}', mapping: Valid }, + Range { from: '\u{ab1}', to: '\u{ab1}', mapping: Disallowed }, + Range { from: '\u{ab2}', to: '\u{ab3}', mapping: Valid }, + Range { from: '\u{ab4}', to: '\u{ab4}', mapping: Disallowed }, + Range { from: '\u{ab5}', to: '\u{ab9}', mapping: Valid }, + Range { from: '\u{aba}', to: '\u{abb}', mapping: Disallowed }, + Range { from: '\u{abc}', to: '\u{ac5}', mapping: Valid }, + Range { from: '\u{ac6}', to: '\u{ac6}', mapping: Disallowed }, + Range { from: '\u{ac7}', to: '\u{ac9}', mapping: Valid }, + Range { from: '\u{aca}', to: '\u{aca}', mapping: Disallowed }, + Range { from: '\u{acb}', to: '\u{acd}', mapping: Valid }, + Range { from: '\u{ace}', to: '\u{acf}', mapping: Disallowed }, + Range { from: '\u{ad0}', to: '\u{ad0}', mapping: Valid }, + Range { from: '\u{ad1}', to: '\u{adf}', mapping: Disallowed }, + Range { from: '\u{ae0}', to: '\u{ae0}', mapping: Valid }, + Range { from: '\u{ae1}', to: '\u{ae3}', mapping: Valid }, + Range { from: '\u{ae4}', to: '\u{ae5}', mapping: Disallowed }, + Range { from: '\u{ae6}', to: '\u{aef}', mapping: Valid }, + Range { from: '\u{af0}', to: '\u{af0}', mapping: Valid }, + Range { from: '\u{af1}', to: '\u{af1}', mapping: Valid }, + Range { from: '\u{af2}', to: '\u{af8}', mapping: Disallowed }, + Range { from: '\u{af9}', to: '\u{af9}', mapping: Valid }, + Range { from: '\u{afa}', to: '\u{b00}', mapping: Disallowed }, + Range { from: '\u{b01}', to: '\u{b03}', mapping: Valid }, + Range { from: '\u{b04}', to: '\u{b04}', mapping: Disallowed }, + Range { from: '\u{b05}', to: '\u{b0c}', mapping: Valid }, + Range { from: '\u{b0d}', to: '\u{b0e}', mapping: Disallowed }, + Range { from: '\u{b0f}', to: '\u{b10}', mapping: Valid }, + Range { from: '\u{b11}', to: '\u{b12}', mapping: Disallowed }, + Range { from: '\u{b13}', to: '\u{b28}', mapping: Valid }, + Range { from: '\u{b29}', to: '\u{b29}', mapping: Disallowed }, + Range { from: '\u{b2a}', to: '\u{b30}', mapping: Valid }, + Range { from: '\u{b31}', to: '\u{b31}', mapping: Disallowed }, + Range { from: '\u{b32}', to: '\u{b33}', mapping: Valid }, + Range { from: '\u{b34}', to: '\u{b34}', mapping: Disallowed }, + Range { from: '\u{b35}', to: '\u{b35}', mapping: Valid }, + Range { from: '\u{b36}', to: '\u{b39}', mapping: Valid }, + Range { from: '\u{b3a}', to: '\u{b3b}', mapping: Disallowed }, + Range { from: '\u{b3c}', to: '\u{b43}', mapping: Valid }, + Range { from: '\u{b44}', to: '\u{b44}', mapping: Valid }, + Range { from: '\u{b45}', to: '\u{b46}', mapping: Disallowed }, + Range { from: '\u{b47}', to: '\u{b48}', mapping: Valid }, + Range { from: '\u{b49}', to: '\u{b4a}', mapping: Disallowed }, + Range { from: '\u{b4b}', to: '\u{b4d}', mapping: Valid }, + Range { from: '\u{b4e}', to: '\u{b55}', mapping: Disallowed }, + Range { from: '\u{b56}', to: '\u{b57}', mapping: Valid }, + Range { from: '\u{b58}', to: '\u{b5b}', mapping: Disallowed }, + Range { from: '\u{b5c}', to: '\u{b5c}', mapping: Mapped(StringTableSlice { byte_start: 1112, byte_len: 6 }) }, + Range { from: '\u{b5d}', to: '\u{b5d}', mapping: Mapped(StringTableSlice { byte_start: 1118, byte_len: 6 }) }, + Range { from: '\u{b5e}', to: '\u{b5e}', mapping: Disallowed }, + Range { from: '\u{b5f}', to: '\u{b61}', mapping: Valid }, + Range { from: '\u{b62}', to: '\u{b63}', mapping: Valid }, + Range { from: '\u{b64}', to: '\u{b65}', mapping: Disallowed }, + Range { from: '\u{b66}', to: '\u{b6f}', mapping: Valid }, + Range { from: '\u{b70}', to: '\u{b70}', mapping: Valid }, + Range { from: '\u{b71}', to: '\u{b71}', mapping: Valid }, + Range { from: '\u{b72}', to: '\u{b77}', mapping: Valid }, + Range { from: '\u{b78}', to: '\u{b81}', mapping: Disallowed }, + Range { from: '\u{b82}', to: '\u{b83}', mapping: Valid }, + Range { from: '\u{b84}', to: '\u{b84}', mapping: Disallowed }, + Range { from: '\u{b85}', to: '\u{b8a}', mapping: Valid }, + Range { from: '\u{b8b}', to: '\u{b8d}', mapping: Disallowed }, + Range { from: '\u{b8e}', to: '\u{b90}', mapping: Valid }, + Range { from: '\u{b91}', to: '\u{b91}', mapping: Disallowed }, + Range { from: '\u{b92}', to: '\u{b95}', mapping: Valid }, + Range { from: '\u{b96}', to: '\u{b98}', mapping: Disallowed }, + Range { from: '\u{b99}', to: '\u{b9a}', mapping: Valid }, + Range { from: '\u{b9b}', to: '\u{b9b}', mapping: Disallowed }, + Range { from: '\u{b9c}', to: '\u{b9c}', mapping: Valid }, + Range { from: '\u{b9d}', to: '\u{b9d}', mapping: Disallowed }, + Range { from: '\u{b9e}', to: '\u{b9f}', mapping: Valid }, + Range { from: '\u{ba0}', to: '\u{ba2}', mapping: Disallowed }, + Range { from: '\u{ba3}', to: '\u{ba4}', mapping: Valid }, + Range { from: '\u{ba5}', to: '\u{ba7}', mapping: Disallowed }, + Range { from: '\u{ba8}', to: '\u{baa}', mapping: Valid }, + Range { from: '\u{bab}', to: '\u{bad}', mapping: Disallowed }, + Range { from: '\u{bae}', to: '\u{bb5}', mapping: Valid }, + Range { from: '\u{bb6}', to: '\u{bb6}', mapping: Valid }, + Range { from: '\u{bb7}', to: '\u{bb9}', mapping: Valid }, + Range { from: '\u{bba}', to: '\u{bbd}', mapping: Disallowed }, + Range { from: '\u{bbe}', to: '\u{bc2}', mapping: Valid }, + Range { from: '\u{bc3}', to: '\u{bc5}', mapping: Disallowed }, + Range { from: '\u{bc6}', to: '\u{bc8}', mapping: Valid }, + Range { from: '\u{bc9}', to: '\u{bc9}', mapping: Disallowed }, + Range { from: '\u{bca}', to: '\u{bcd}', mapping: Valid }, + Range { from: '\u{bce}', to: '\u{bcf}', mapping: Disallowed }, + Range { from: '\u{bd0}', to: '\u{bd0}', mapping: Valid }, + Range { from: '\u{bd1}', to: '\u{bd6}', mapping: Disallowed }, + Range { from: '\u{bd7}', to: '\u{bd7}', mapping: Valid }, + Range { from: '\u{bd8}', to: '\u{be5}', mapping: Disallowed }, + Range { from: '\u{be6}', to: '\u{be6}', mapping: Valid }, + Range { from: '\u{be7}', to: '\u{bef}', mapping: Valid }, + Range { from: '\u{bf0}', to: '\u{bf2}', mapping: Valid }, + Range { from: '\u{bf3}', to: '\u{bfa}', mapping: Valid }, + Range { from: '\u{bfb}', to: '\u{bff}', mapping: Disallowed }, + Range { from: '\u{c00}', to: '\u{c00}', mapping: Valid }, + Range { from: '\u{c01}', to: '\u{c03}', mapping: Valid }, + Range { from: '\u{c04}', to: '\u{c04}', mapping: Disallowed }, + Range { from: '\u{c05}', to: '\u{c0c}', mapping: Valid }, + Range { from: '\u{c0d}', to: '\u{c0d}', mapping: Disallowed }, + Range { from: '\u{c0e}', to: '\u{c10}', mapping: Valid }, + Range { from: '\u{c11}', to: '\u{c11}', mapping: Disallowed }, + Range { from: '\u{c12}', to: '\u{c28}', mapping: Valid }, + Range { from: '\u{c29}', to: '\u{c29}', mapping: Disallowed }, + Range { from: '\u{c2a}', to: '\u{c33}', mapping: Valid }, + Range { from: '\u{c34}', to: '\u{c34}', mapping: Valid }, + Range { from: '\u{c35}', to: '\u{c39}', mapping: Valid }, + Range { from: '\u{c3a}', to: '\u{c3c}', mapping: Disallowed }, + Range { from: '\u{c3d}', to: '\u{c3d}', mapping: Valid }, + Range { from: '\u{c3e}', to: '\u{c44}', mapping: Valid }, + Range { from: '\u{c45}', to: '\u{c45}', mapping: Disallowed }, + Range { from: '\u{c46}', to: '\u{c48}', mapping: Valid }, + Range { from: '\u{c49}', to: '\u{c49}', mapping: Disallowed }, + Range { from: '\u{c4a}', to: '\u{c4d}', mapping: Valid }, + Range { from: '\u{c4e}', to: '\u{c54}', mapping: Disallowed }, + Range { from: '\u{c55}', to: '\u{c56}', mapping: Valid }, + Range { from: '\u{c57}', to: '\u{c57}', mapping: Disallowed }, + Range { from: '\u{c58}', to: '\u{c59}', mapping: Valid }, + Range { from: '\u{c5a}', to: '\u{c5a}', mapping: Valid }, + Range { from: '\u{c5b}', to: '\u{c5f}', mapping: Disallowed }, + Range { from: '\u{c60}', to: '\u{c61}', mapping: Valid }, + Range { from: '\u{c62}', to: '\u{c63}', mapping: Valid }, + Range { from: '\u{c64}', to: '\u{c65}', mapping: Disallowed }, + Range { from: '\u{c66}', to: '\u{c6f}', mapping: Valid }, + Range { from: '\u{c70}', to: '\u{c77}', mapping: Disallowed }, + Range { from: '\u{c78}', to: '\u{c7f}', mapping: Valid }, + Range { from: '\u{c80}', to: '\u{c80}', mapping: Valid }, + Range { from: '\u{c81}', to: '\u{c81}', mapping: Valid }, + Range { from: '\u{c82}', to: '\u{c83}', mapping: Valid }, + Range { from: '\u{c84}', to: '\u{c84}', mapping: Disallowed }, + Range { from: '\u{c85}', to: '\u{c8c}', mapping: Valid }, + Range { from: '\u{c8d}', to: '\u{c8d}', mapping: Disallowed }, + Range { from: '\u{c8e}', to: '\u{c90}', mapping: Valid }, + Range { from: '\u{c91}', to: '\u{c91}', mapping: Disallowed }, + Range { from: '\u{c92}', to: '\u{ca8}', mapping: Valid }, + Range { from: '\u{ca9}', to: '\u{ca9}', mapping: Disallowed }, + Range { from: '\u{caa}', to: '\u{cb3}', mapping: Valid }, + Range { from: '\u{cb4}', to: '\u{cb4}', mapping: Disallowed }, + Range { from: '\u{cb5}', to: '\u{cb9}', mapping: Valid }, + Range { from: '\u{cba}', to: '\u{cbb}', mapping: Disallowed }, + Range { from: '\u{cbc}', to: '\u{cbd}', mapping: Valid }, + Range { from: '\u{cbe}', to: '\u{cc4}', mapping: Valid }, + Range { from: '\u{cc5}', to: '\u{cc5}', mapping: Disallowed }, + Range { from: '\u{cc6}', to: '\u{cc8}', mapping: Valid }, + Range { from: '\u{cc9}', to: '\u{cc9}', mapping: Disallowed }, + Range { from: '\u{cca}', to: '\u{ccd}', mapping: Valid }, + Range { from: '\u{cce}', to: '\u{cd4}', mapping: Disallowed }, + Range { from: '\u{cd5}', to: '\u{cd6}', mapping: Valid }, + Range { from: '\u{cd7}', to: '\u{cdd}', mapping: Disallowed }, + Range { from: '\u{cde}', to: '\u{cde}', mapping: Valid }, + Range { from: '\u{cdf}', to: '\u{cdf}', mapping: Disallowed }, + Range { from: '\u{ce0}', to: '\u{ce1}', mapping: Valid }, + Range { from: '\u{ce2}', to: '\u{ce3}', mapping: Valid }, + Range { from: '\u{ce4}', to: '\u{ce5}', mapping: Disallowed }, + Range { from: '\u{ce6}', to: '\u{cef}', mapping: Valid }, + Range { from: '\u{cf0}', to: '\u{cf0}', mapping: Disallowed }, + Range { from: '\u{cf1}', to: '\u{cf2}', mapping: Valid }, + Range { from: '\u{cf3}', to: '\u{d00}', mapping: Disallowed }, + Range { from: '\u{d01}', to: '\u{d01}', mapping: Valid }, + Range { from: '\u{d02}', to: '\u{d03}', mapping: Valid }, + Range { from: '\u{d04}', to: '\u{d04}', mapping: Disallowed }, + Range { from: '\u{d05}', to: '\u{d0c}', mapping: Valid }, + Range { from: '\u{d0d}', to: '\u{d0d}', mapping: Disallowed }, + Range { from: '\u{d0e}', to: '\u{d10}', mapping: Valid }, + Range { from: '\u{d11}', to: '\u{d11}', mapping: Disallowed }, + Range { from: '\u{d12}', to: '\u{d28}', mapping: Valid }, + Range { from: '\u{d29}', to: '\u{d29}', mapping: Valid }, + Range { from: '\u{d2a}', to: '\u{d39}', mapping: Valid }, + Range { from: '\u{d3a}', to: '\u{d3a}', mapping: Valid }, + Range { from: '\u{d3b}', to: '\u{d3c}', mapping: Disallowed }, + Range { from: '\u{d3d}', to: '\u{d3d}', mapping: Valid }, + Range { from: '\u{d3e}', to: '\u{d43}', mapping: Valid }, + Range { from: '\u{d44}', to: '\u{d44}', mapping: Valid }, + Range { from: '\u{d45}', to: '\u{d45}', mapping: Disallowed }, + Range { from: '\u{d46}', to: '\u{d48}', mapping: Valid }, + Range { from: '\u{d49}', to: '\u{d49}', mapping: Disallowed }, + Range { from: '\u{d4a}', to: '\u{d4d}', mapping: Valid }, + Range { from: '\u{d4e}', to: '\u{d4e}', mapping: Valid }, + Range { from: '\u{d4f}', to: '\u{d4f}', mapping: Valid }, + Range { from: '\u{d50}', to: '\u{d53}', mapping: Disallowed }, + Range { from: '\u{d54}', to: '\u{d56}', mapping: Valid }, + Range { from: '\u{d57}', to: '\u{d57}', mapping: Valid }, + Range { from: '\u{d58}', to: '\u{d5e}', mapping: Valid }, + Range { from: '\u{d5f}', to: '\u{d5f}', mapping: Valid }, + Range { from: '\u{d60}', to: '\u{d61}', mapping: Valid }, + Range { from: '\u{d62}', to: '\u{d63}', mapping: Valid }, + Range { from: '\u{d64}', to: '\u{d65}', mapping: Disallowed }, + Range { from: '\u{d66}', to: '\u{d6f}', mapping: Valid }, + Range { from: '\u{d70}', to: '\u{d75}', mapping: Valid }, + Range { from: '\u{d76}', to: '\u{d78}', mapping: Valid }, + Range { from: '\u{d79}', to: '\u{d79}', mapping: Valid }, + Range { from: '\u{d7a}', to: '\u{d7f}', mapping: Valid }, + Range { from: '\u{d80}', to: '\u{d81}', mapping: Disallowed }, + Range { from: '\u{d82}', to: '\u{d83}', mapping: Valid }, + Range { from: '\u{d84}', to: '\u{d84}', mapping: Disallowed }, + Range { from: '\u{d85}', to: '\u{d96}', mapping: Valid }, + Range { from: '\u{d97}', to: '\u{d99}', mapping: Disallowed }, + Range { from: '\u{d9a}', to: '\u{db1}', mapping: Valid }, + Range { from: '\u{db2}', to: '\u{db2}', mapping: Disallowed }, + Range { from: '\u{db3}', to: '\u{dbb}', mapping: Valid }, + Range { from: '\u{dbc}', to: '\u{dbc}', mapping: Disallowed }, + Range { from: '\u{dbd}', to: '\u{dbd}', mapping: Valid }, + Range { from: '\u{dbe}', to: '\u{dbf}', mapping: Disallowed }, + Range { from: '\u{dc0}', to: '\u{dc6}', mapping: Valid }, + Range { from: '\u{dc7}', to: '\u{dc9}', mapping: Disallowed }, + Range { from: '\u{dca}', to: '\u{dca}', mapping: Valid }, + Range { from: '\u{dcb}', to: '\u{dce}', mapping: Disallowed }, + Range { from: '\u{dcf}', to: '\u{dd4}', mapping: Valid }, + Range { from: '\u{dd5}', to: '\u{dd5}', mapping: Disallowed }, + Range { from: '\u{dd6}', to: '\u{dd6}', mapping: Valid }, + Range { from: '\u{dd7}', to: '\u{dd7}', mapping: Disallowed }, + Range { from: '\u{dd8}', to: '\u{ddf}', mapping: Valid }, + Range { from: '\u{de0}', to: '\u{de5}', mapping: Disallowed }, + Range { from: '\u{de6}', to: '\u{def}', mapping: Valid }, + Range { from: '\u{df0}', to: '\u{df1}', mapping: Disallowed }, + Range { from: '\u{df2}', to: '\u{df3}', mapping: Valid }, + Range { from: '\u{df4}', to: '\u{df4}', mapping: Valid }, + Range { from: '\u{df5}', to: '\u{e00}', mapping: Disallowed }, + Range { from: '\u{e01}', to: '\u{e32}', mapping: Valid }, + Range { from: '\u{e33}', to: '\u{e33}', mapping: Mapped(StringTableSlice { byte_start: 1124, byte_len: 6 }) }, + Range { from: '\u{e34}', to: '\u{e3a}', mapping: Valid }, + Range { from: '\u{e3b}', to: '\u{e3e}', mapping: Disallowed }, + Range { from: '\u{e3f}', to: '\u{e3f}', mapping: Valid }, + Range { from: '\u{e40}', to: '\u{e4e}', mapping: Valid }, + Range { from: '\u{e4f}', to: '\u{e4f}', mapping: Valid }, + Range { from: '\u{e50}', to: '\u{e59}', mapping: Valid }, + Range { from: '\u{e5a}', to: '\u{e5b}', mapping: Valid }, + Range { from: '\u{e5c}', to: '\u{e80}', mapping: Disallowed }, + Range { from: '\u{e81}', to: '\u{e82}', mapping: Valid }, + Range { from: '\u{e83}', to: '\u{e83}', mapping: Disallowed }, + Range { from: '\u{e84}', to: '\u{e84}', mapping: Valid }, + Range { from: '\u{e85}', to: '\u{e86}', mapping: Disallowed }, + Range { from: '\u{e87}', to: '\u{e88}', mapping: Valid }, + Range { from: '\u{e89}', to: '\u{e89}', mapping: Disallowed }, + Range { from: '\u{e8a}', to: '\u{e8a}', mapping: Valid }, + Range { from: '\u{e8b}', to: '\u{e8c}', mapping: Disallowed }, + Range { from: '\u{e8d}', to: '\u{e8d}', mapping: Valid }, + Range { from: '\u{e8e}', to: '\u{e93}', mapping: Disallowed }, + Range { from: '\u{e94}', to: '\u{e97}', mapping: Valid }, + Range { from: '\u{e98}', to: '\u{e98}', mapping: Disallowed }, + Range { from: '\u{e99}', to: '\u{e9f}', mapping: Valid }, + Range { from: '\u{ea0}', to: '\u{ea0}', mapping: Disallowed }, + Range { from: '\u{ea1}', to: '\u{ea3}', mapping: Valid }, + Range { from: '\u{ea4}', to: '\u{ea4}', mapping: Disallowed }, + Range { from: '\u{ea5}', to: '\u{ea5}', mapping: Valid }, + Range { from: '\u{ea6}', to: '\u{ea6}', mapping: Disallowed }, + Range { from: '\u{ea7}', to: '\u{ea7}', mapping: Valid }, + Range { from: '\u{ea8}', to: '\u{ea9}', mapping: Disallowed }, + Range { from: '\u{eaa}', to: '\u{eab}', mapping: Valid }, + Range { from: '\u{eac}', to: '\u{eac}', mapping: Disallowed }, + Range { from: '\u{ead}', to: '\u{eb2}', mapping: Valid }, + Range { from: '\u{eb3}', to: '\u{eb3}', mapping: Mapped(StringTableSlice { byte_start: 1130, byte_len: 6 }) }, + Range { from: '\u{eb4}', to: '\u{eb9}', mapping: Valid }, + Range { from: '\u{eba}', to: '\u{eba}', mapping: Disallowed }, + Range { from: '\u{ebb}', to: '\u{ebd}', mapping: Valid }, + Range { from: '\u{ebe}', to: '\u{ebf}', mapping: Disallowed }, + Range { from: '\u{ec0}', to: '\u{ec4}', mapping: Valid }, + Range { from: '\u{ec5}', to: '\u{ec5}', mapping: Disallowed }, + Range { from: '\u{ec6}', to: '\u{ec6}', mapping: Valid }, + Range { from: '\u{ec7}', to: '\u{ec7}', mapping: Disallowed }, + Range { from: '\u{ec8}', to: '\u{ecd}', mapping: Valid }, + Range { from: '\u{ece}', to: '\u{ecf}', mapping: Disallowed }, + Range { from: '\u{ed0}', to: '\u{ed9}', mapping: Valid }, + Range { from: '\u{eda}', to: '\u{edb}', mapping: Disallowed }, + Range { from: '\u{edc}', to: '\u{edc}', mapping: Mapped(StringTableSlice { byte_start: 1136, byte_len: 6 }) }, + Range { from: '\u{edd}', to: '\u{edd}', mapping: Mapped(StringTableSlice { byte_start: 1142, byte_len: 6 }) }, + Range { from: '\u{ede}', to: '\u{edf}', mapping: Valid }, + Range { from: '\u{ee0}', to: '\u{eff}', mapping: Disallowed }, + Range { from: '\u{f00}', to: '\u{f00}', mapping: Valid }, + Range { from: '\u{f01}', to: '\u{f0a}', mapping: Valid }, + Range { from: '\u{f0b}', to: '\u{f0b}', mapping: Valid }, + Range { from: '\u{f0c}', to: '\u{f0c}', mapping: Mapped(StringTableSlice { byte_start: 1148, byte_len: 3 }) }, + Range { from: '\u{f0d}', to: '\u{f17}', mapping: Valid }, + Range { from: '\u{f18}', to: '\u{f19}', mapping: Valid }, + Range { from: '\u{f1a}', to: '\u{f1f}', mapping: Valid }, + Range { from: '\u{f20}', to: '\u{f29}', mapping: Valid }, + Range { from: '\u{f2a}', to: '\u{f34}', mapping: Valid }, + Range { from: '\u{f35}', to: '\u{f35}', mapping: Valid }, + Range { from: '\u{f36}', to: '\u{f36}', mapping: Valid }, + Range { from: '\u{f37}', to: '\u{f37}', mapping: Valid }, + Range { from: '\u{f38}', to: '\u{f38}', mapping: Valid }, + Range { from: '\u{f39}', to: '\u{f39}', mapping: Valid }, + Range { from: '\u{f3a}', to: '\u{f3d}', mapping: Valid }, + Range { from: '\u{f3e}', to: '\u{f42}', mapping: Valid }, + Range { from: '\u{f43}', to: '\u{f43}', mapping: Mapped(StringTableSlice { byte_start: 1151, byte_len: 6 }) }, + Range { from: '\u{f44}', to: '\u{f47}', mapping: Valid }, + Range { from: '\u{f48}', to: '\u{f48}', mapping: Disallowed }, + Range { from: '\u{f49}', to: '\u{f4c}', mapping: Valid }, + Range { from: '\u{f4d}', to: '\u{f4d}', mapping: Mapped(StringTableSlice { byte_start: 1157, byte_len: 6 }) }, + Range { from: '\u{f4e}', to: '\u{f51}', mapping: Valid }, + Range { from: '\u{f52}', to: '\u{f52}', mapping: Mapped(StringTableSlice { byte_start: 1163, byte_len: 6 }) }, + Range { from: '\u{f53}', to: '\u{f56}', mapping: Valid }, + Range { from: '\u{f57}', to: '\u{f57}', mapping: Mapped(StringTableSlice { byte_start: 1169, byte_len: 6 }) }, + Range { from: '\u{f58}', to: '\u{f5b}', mapping: Valid }, + Range { from: '\u{f5c}', to: '\u{f5c}', mapping: Mapped(StringTableSlice { byte_start: 1175, byte_len: 6 }) }, + Range { from: '\u{f5d}', to: '\u{f68}', mapping: Valid }, + Range { from: '\u{f69}', to: '\u{f69}', mapping: Mapped(StringTableSlice { byte_start: 1181, byte_len: 6 }) }, + Range { from: '\u{f6a}', to: '\u{f6a}', mapping: Valid }, + Range { from: '\u{f6b}', to: '\u{f6c}', mapping: Valid }, + Range { from: '\u{f6d}', to: '\u{f70}', mapping: Disallowed }, + Range { from: '\u{f71}', to: '\u{f72}', mapping: Valid }, + Range { from: '\u{f73}', to: '\u{f73}', mapping: Mapped(StringTableSlice { byte_start: 1187, byte_len: 6 }) }, + Range { from: '\u{f74}', to: '\u{f74}', mapping: Valid }, + Range { from: '\u{f75}', to: '\u{f75}', mapping: Mapped(StringTableSlice { byte_start: 1193, byte_len: 6 }) }, + Range { from: '\u{f76}', to: '\u{f76}', mapping: Mapped(StringTableSlice { byte_start: 1199, byte_len: 6 }) }, + Range { from: '\u{f77}', to: '\u{f77}', mapping: Mapped(StringTableSlice { byte_start: 1205, byte_len: 9 }) }, + Range { from: '\u{f78}', to: '\u{f78}', mapping: Mapped(StringTableSlice { byte_start: 1214, byte_len: 6 }) }, + Range { from: '\u{f79}', to: '\u{f79}', mapping: Mapped(StringTableSlice { byte_start: 1220, byte_len: 9 }) }, + Range { from: '\u{f7a}', to: '\u{f80}', mapping: Valid }, + Range { from: '\u{f81}', to: '\u{f81}', mapping: Mapped(StringTableSlice { byte_start: 1229, byte_len: 6 }) }, + Range { from: '\u{f82}', to: '\u{f84}', mapping: Valid }, + Range { from: '\u{f85}', to: '\u{f85}', mapping: Valid }, + Range { from: '\u{f86}', to: '\u{f8b}', mapping: Valid }, + Range { from: '\u{f8c}', to: '\u{f8f}', mapping: Valid }, + Range { from: '\u{f90}', to: '\u{f92}', mapping: Valid }, + Range { from: '\u{f93}', to: '\u{f93}', mapping: Mapped(StringTableSlice { byte_start: 1235, byte_len: 6 }) }, + Range { from: '\u{f94}', to: '\u{f95}', mapping: Valid }, + Range { from: '\u{f96}', to: '\u{f96}', mapping: Valid }, + Range { from: '\u{f97}', to: '\u{f97}', mapping: Valid }, + Range { from: '\u{f98}', to: '\u{f98}', mapping: Disallowed }, + Range { from: '\u{f99}', to: '\u{f9c}', mapping: Valid }, + Range { from: '\u{f9d}', to: '\u{f9d}', mapping: Mapped(StringTableSlice { byte_start: 1241, byte_len: 6 }) }, + Range { from: '\u{f9e}', to: '\u{fa1}', mapping: Valid }, + Range { from: '\u{fa2}', to: '\u{fa2}', mapping: Mapped(StringTableSlice { byte_start: 1247, byte_len: 6 }) }, + Range { from: '\u{fa3}', to: '\u{fa6}', mapping: Valid }, + Range { from: '\u{fa7}', to: '\u{fa7}', mapping: Mapped(StringTableSlice { byte_start: 1253, byte_len: 6 }) }, + Range { from: '\u{fa8}', to: '\u{fab}', mapping: Valid }, + Range { from: '\u{fac}', to: '\u{fac}', mapping: Mapped(StringTableSlice { byte_start: 1259, byte_len: 6 }) }, + Range { from: '\u{fad}', to: '\u{fad}', mapping: Valid }, + Range { from: '\u{fae}', to: '\u{fb0}', mapping: Valid }, + Range { from: '\u{fb1}', to: '\u{fb7}', mapping: Valid }, + Range { from: '\u{fb8}', to: '\u{fb8}', mapping: Valid }, + Range { from: '\u{fb9}', to: '\u{fb9}', mapping: Mapped(StringTableSlice { byte_start: 1265, byte_len: 6 }) }, + Range { from: '\u{fba}', to: '\u{fbc}', mapping: Valid }, + Range { from: '\u{fbd}', to: '\u{fbd}', mapping: Disallowed }, + Range { from: '\u{fbe}', to: '\u{fc5}', mapping: Valid }, + Range { from: '\u{fc6}', to: '\u{fc6}', mapping: Valid }, + Range { from: '\u{fc7}', to: '\u{fcc}', mapping: Valid }, + Range { from: '\u{fcd}', to: '\u{fcd}', mapping: Disallowed }, + Range { from: '\u{fce}', to: '\u{fce}', mapping: Valid }, + Range { from: '\u{fcf}', to: '\u{fcf}', mapping: Valid }, + Range { from: '\u{fd0}', to: '\u{fd1}', mapping: Valid }, + Range { from: '\u{fd2}', to: '\u{fd4}', mapping: Valid }, + Range { from: '\u{fd5}', to: '\u{fd8}', mapping: Valid }, + Range { from: '\u{fd9}', to: '\u{fda}', mapping: Valid }, + Range { from: '\u{fdb}', to: '\u{fff}', mapping: Disallowed }, + Range { from: '\u{1000}', to: '\u{1021}', mapping: Valid }, + Range { from: '\u{1022}', to: '\u{1022}', mapping: Valid }, + Range { from: '\u{1023}', to: '\u{1027}', mapping: Valid }, + Range { from: '\u{1028}', to: '\u{1028}', mapping: Valid }, + Range { from: '\u{1029}', to: '\u{102a}', mapping: Valid }, + Range { from: '\u{102b}', to: '\u{102b}', mapping: Valid }, + Range { from: '\u{102c}', to: '\u{1032}', mapping: Valid }, + Range { from: '\u{1033}', to: '\u{1035}', mapping: Valid }, + Range { from: '\u{1036}', to: '\u{1039}', mapping: Valid }, + Range { from: '\u{103a}', to: '\u{103f}', mapping: Valid }, + Range { from: '\u{1040}', to: '\u{1049}', mapping: Valid }, + Range { from: '\u{104a}', to: '\u{104f}', mapping: Valid }, + Range { from: '\u{1050}', to: '\u{1059}', mapping: Valid }, + Range { from: '\u{105a}', to: '\u{1099}', mapping: Valid }, + Range { from: '\u{109a}', to: '\u{109d}', mapping: Valid }, + Range { from: '\u{109e}', to: '\u{109f}', mapping: Valid }, + Range { from: '\u{10a0}', to: '\u{10c5}', mapping: Disallowed }, + Range { from: '\u{10c6}', to: '\u{10c6}', mapping: Disallowed }, + Range { from: '\u{10c7}', to: '\u{10c7}', mapping: Mapped(StringTableSlice { byte_start: 1271, byte_len: 3 }) }, + Range { from: '\u{10c8}', to: '\u{10cc}', mapping: Disallowed }, + Range { from: '\u{10cd}', to: '\u{10cd}', mapping: Mapped(StringTableSlice { byte_start: 1274, byte_len: 3 }) }, + Range { from: '\u{10ce}', to: '\u{10cf}', mapping: Disallowed }, + Range { from: '\u{10d0}', to: '\u{10f6}', mapping: Valid }, + Range { from: '\u{10f7}', to: '\u{10f8}', mapping: Valid }, + Range { from: '\u{10f9}', to: '\u{10fa}', mapping: Valid }, + Range { from: '\u{10fb}', to: '\u{10fb}', mapping: Valid }, + Range { from: '\u{10fc}', to: '\u{10fc}', mapping: Mapped(StringTableSlice { byte_start: 1277, byte_len: 3 }) }, + Range { from: '\u{10fd}', to: '\u{10ff}', mapping: Valid }, + Range { from: '\u{1100}', to: '\u{1159}', mapping: Valid }, + Range { from: '\u{115a}', to: '\u{115e}', mapping: Valid }, + Range { from: '\u{115f}', to: '\u{1160}', mapping: Disallowed }, + Range { from: '\u{1161}', to: '\u{11a2}', mapping: Valid }, + Range { from: '\u{11a3}', to: '\u{11a7}', mapping: Valid }, + Range { from: '\u{11a8}', to: '\u{11f9}', mapping: Valid }, + Range { from: '\u{11fa}', to: '\u{11ff}', mapping: Valid }, + Range { from: '\u{1200}', to: '\u{1206}', mapping: Valid }, + Range { from: '\u{1207}', to: '\u{1207}', mapping: Valid }, + Range { from: '\u{1208}', to: '\u{1246}', mapping: Valid }, + Range { from: '\u{1247}', to: '\u{1247}', mapping: Valid }, + Range { from: '\u{1248}', to: '\u{1248}', mapping: Valid }, + Range { from: '\u{1249}', to: '\u{1249}', mapping: Disallowed }, + Range { from: '\u{124a}', to: '\u{124d}', mapping: Valid }, + Range { from: '\u{124e}', to: '\u{124f}', mapping: Disallowed }, + Range { from: '\u{1250}', to: '\u{1256}', mapping: Valid }, + Range { from: '\u{1257}', to: '\u{1257}', mapping: Disallowed }, + Range { from: '\u{1258}', to: '\u{1258}', mapping: Valid }, + Range { from: '\u{1259}', to: '\u{1259}', mapping: Disallowed }, + Range { from: '\u{125a}', to: '\u{125d}', mapping: Valid }, + Range { from: '\u{125e}', to: '\u{125f}', mapping: Disallowed }, + Range { from: '\u{1260}', to: '\u{1286}', mapping: Valid }, + Range { from: '\u{1287}', to: '\u{1287}', mapping: Valid }, + Range { from: '\u{1288}', to: '\u{1288}', mapping: Valid }, + Range { from: '\u{1289}', to: '\u{1289}', mapping: Disallowed }, + Range { from: '\u{128a}', to: '\u{128d}', mapping: Valid }, + Range { from: '\u{128e}', to: '\u{128f}', mapping: Disallowed }, + Range { from: '\u{1290}', to: '\u{12ae}', mapping: Valid }, + Range { from: '\u{12af}', to: '\u{12af}', mapping: Valid }, + Range { from: '\u{12b0}', to: '\u{12b0}', mapping: Valid }, + Range { from: '\u{12b1}', to: '\u{12b1}', mapping: Disallowed }, + Range { from: '\u{12b2}', to: '\u{12b5}', mapping: Valid }, + Range { from: '\u{12b6}', to: '\u{12b7}', mapping: Disallowed }, + Range { from: '\u{12b8}', to: '\u{12be}', mapping: Valid }, + Range { from: '\u{12bf}', to: '\u{12bf}', mapping: Disallowed }, + Range { from: '\u{12c0}', to: '\u{12c0}', mapping: Valid }, + Range { from: '\u{12c1}', to: '\u{12c1}', mapping: Disallowed }, + Range { from: '\u{12c2}', to: '\u{12c5}', mapping: Valid }, + Range { from: '\u{12c6}', to: '\u{12c7}', mapping: Disallowed }, + Range { from: '\u{12c8}', to: '\u{12ce}', mapping: Valid }, + Range { from: '\u{12cf}', to: '\u{12cf}', mapping: Valid }, + Range { from: '\u{12d0}', to: '\u{12d6}', mapping: Valid }, + Range { from: '\u{12d7}', to: '\u{12d7}', mapping: Disallowed }, + Range { from: '\u{12d8}', to: '\u{12ee}', mapping: Valid }, + Range { from: '\u{12ef}', to: '\u{12ef}', mapping: Valid }, + Range { from: '\u{12f0}', to: '\u{130e}', mapping: Valid }, + Range { from: '\u{130f}', to: '\u{130f}', mapping: Valid }, + Range { from: '\u{1310}', to: '\u{1310}', mapping: Valid }, + Range { from: '\u{1311}', to: '\u{1311}', mapping: Disallowed }, + Range { from: '\u{1312}', to: '\u{1315}', mapping: Valid }, + Range { from: '\u{1316}', to: '\u{1317}', mapping: Disallowed }, + Range { from: '\u{1318}', to: '\u{131e}', mapping: Valid }, + Range { from: '\u{131f}', to: '\u{131f}', mapping: Valid }, + Range { from: '\u{1320}', to: '\u{1346}', mapping: Valid }, + Range { from: '\u{1347}', to: '\u{1347}', mapping: Valid }, + Range { from: '\u{1348}', to: '\u{135a}', mapping: Valid }, + Range { from: '\u{135b}', to: '\u{135c}', mapping: Disallowed }, + Range { from: '\u{135d}', to: '\u{135e}', mapping: Valid }, + Range { from: '\u{135f}', to: '\u{135f}', mapping: Valid }, + Range { from: '\u{1360}', to: '\u{1360}', mapping: Valid }, + Range { from: '\u{1361}', to: '\u{137c}', mapping: Valid }, + Range { from: '\u{137d}', to: '\u{137f}', mapping: Disallowed }, + Range { from: '\u{1380}', to: '\u{138f}', mapping: Valid }, + Range { from: '\u{1390}', to: '\u{1399}', mapping: Valid }, + Range { from: '\u{139a}', to: '\u{139f}', mapping: Disallowed }, + Range { from: '\u{13a0}', to: '\u{13f4}', mapping: Valid }, + Range { from: '\u{13f5}', to: '\u{13f5}', mapping: Valid }, + Range { from: '\u{13f6}', to: '\u{13f7}', mapping: Disallowed }, + Range { from: '\u{13f8}', to: '\u{13f8}', mapping: Mapped(StringTableSlice { byte_start: 1280, byte_len: 3 }) }, + Range { from: '\u{13f9}', to: '\u{13f9}', mapping: Mapped(StringTableSlice { byte_start: 1283, byte_len: 3 }) }, + Range { from: '\u{13fa}', to: '\u{13fa}', mapping: Mapped(StringTableSlice { byte_start: 1286, byte_len: 3 }) }, + Range { from: '\u{13fb}', to: '\u{13fb}', mapping: Mapped(StringTableSlice { byte_start: 1289, byte_len: 3 }) }, + Range { from: '\u{13fc}', to: '\u{13fc}', mapping: Mapped(StringTableSlice { byte_start: 1292, byte_len: 3 }) }, + Range { from: '\u{13fd}', to: '\u{13fd}', mapping: Mapped(StringTableSlice { byte_start: 1295, byte_len: 3 }) }, + Range { from: '\u{13fe}', to: '\u{13ff}', mapping: Disallowed }, + Range { from: '\u{1400}', to: '\u{1400}', mapping: Valid }, + Range { from: '\u{1401}', to: '\u{166c}', mapping: Valid }, + Range { from: '\u{166d}', to: '\u{166e}', mapping: Valid }, + Range { from: '\u{166f}', to: '\u{1676}', mapping: Valid }, + Range { from: '\u{1677}', to: '\u{167f}', mapping: Valid }, + Range { from: '\u{1680}', to: '\u{1680}', mapping: Disallowed }, + Range { from: '\u{1681}', to: '\u{169a}', mapping: Valid }, + Range { from: '\u{169b}', to: '\u{169c}', mapping: Valid }, + Range { from: '\u{169d}', to: '\u{169f}', mapping: Disallowed }, + Range { from: '\u{16a0}', to: '\u{16ea}', mapping: Valid }, + Range { from: '\u{16eb}', to: '\u{16f0}', mapping: Valid }, + Range { from: '\u{16f1}', to: '\u{16f8}', mapping: Valid }, + Range { from: '\u{16f9}', to: '\u{16ff}', mapping: Disallowed }, + Range { from: '\u{1700}', to: '\u{170c}', mapping: Valid }, + Range { from: '\u{170d}', to: '\u{170d}', mapping: Disallowed }, + Range { from: '\u{170e}', to: '\u{1714}', mapping: Valid }, + Range { from: '\u{1715}', to: '\u{171f}', mapping: Disallowed }, + Range { from: '\u{1720}', to: '\u{1734}', mapping: Valid }, + Range { from: '\u{1735}', to: '\u{1736}', mapping: Valid }, + Range { from: '\u{1737}', to: '\u{173f}', mapping: Disallowed }, + Range { from: '\u{1740}', to: '\u{1753}', mapping: Valid }, + Range { from: '\u{1754}', to: '\u{175f}', mapping: Disallowed }, + Range { from: '\u{1760}', to: '\u{176c}', mapping: Valid }, + Range { from: '\u{176d}', to: '\u{176d}', mapping: Disallowed }, + Range { from: '\u{176e}', to: '\u{1770}', mapping: Valid }, + Range { from: '\u{1771}', to: '\u{1771}', mapping: Disallowed }, + Range { from: '\u{1772}', to: '\u{1773}', mapping: Valid }, + Range { from: '\u{1774}', to: '\u{177f}', mapping: Disallowed }, + Range { from: '\u{1780}', to: '\u{17b3}', mapping: Valid }, + Range { from: '\u{17b4}', to: '\u{17b5}', mapping: Disallowed }, + Range { from: '\u{17b6}', to: '\u{17d3}', mapping: Valid }, + Range { from: '\u{17d4}', to: '\u{17d6}', mapping: Valid }, + Range { from: '\u{17d7}', to: '\u{17d7}', mapping: Valid }, + Range { from: '\u{17d8}', to: '\u{17db}', mapping: Valid }, + Range { from: '\u{17dc}', to: '\u{17dc}', mapping: Valid }, + Range { from: '\u{17dd}', to: '\u{17dd}', mapping: Valid }, + Range { from: '\u{17de}', to: '\u{17df}', mapping: Disallowed }, + Range { from: '\u{17e0}', to: '\u{17e9}', mapping: Valid }, + Range { from: '\u{17ea}', to: '\u{17ef}', mapping: Disallowed }, + Range { from: '\u{17f0}', to: '\u{17f9}', mapping: Valid }, + Range { from: '\u{17fa}', to: '\u{17ff}', mapping: Disallowed }, + Range { from: '\u{1800}', to: '\u{1805}', mapping: Valid }, + Range { from: '\u{1806}', to: '\u{1806}', mapping: Disallowed }, + Range { from: '\u{1807}', to: '\u{180a}', mapping: Valid }, + Range { from: '\u{180b}', to: '\u{180d}', mapping: Ignored }, + Range { from: '\u{180e}', to: '\u{180e}', mapping: Disallowed }, + Range { from: '\u{180f}', to: '\u{180f}', mapping: Disallowed }, + Range { from: '\u{1810}', to: '\u{1819}', mapping: Valid }, + Range { from: '\u{181a}', to: '\u{181f}', mapping: Disallowed }, + Range { from: '\u{1820}', to: '\u{1877}', mapping: Valid }, + Range { from: '\u{1878}', to: '\u{187f}', mapping: Disallowed }, + Range { from: '\u{1880}', to: '\u{18a9}', mapping: Valid }, + Range { from: '\u{18aa}', to: '\u{18aa}', mapping: Valid }, + Range { from: '\u{18ab}', to: '\u{18af}', mapping: Disallowed }, + Range { from: '\u{18b0}', to: '\u{18f5}', mapping: Valid }, + Range { from: '\u{18f6}', to: '\u{18ff}', mapping: Disallowed }, + Range { from: '\u{1900}', to: '\u{191c}', mapping: Valid }, + Range { from: '\u{191d}', to: '\u{191e}', mapping: Valid }, + Range { from: '\u{191f}', to: '\u{191f}', mapping: Disallowed }, + Range { from: '\u{1920}', to: '\u{192b}', mapping: Valid }, + Range { from: '\u{192c}', to: '\u{192f}', mapping: Disallowed }, + Range { from: '\u{1930}', to: '\u{193b}', mapping: Valid }, + Range { from: '\u{193c}', to: '\u{193f}', mapping: Disallowed }, + Range { from: '\u{1940}', to: '\u{1940}', mapping: Valid }, + Range { from: '\u{1941}', to: '\u{1943}', mapping: Disallowed }, + Range { from: '\u{1944}', to: '\u{1945}', mapping: Valid }, + Range { from: '\u{1946}', to: '\u{196d}', mapping: Valid }, + Range { from: '\u{196e}', to: '\u{196f}', mapping: Disallowed }, + Range { from: '\u{1970}', to: '\u{1974}', mapping: Valid }, + Range { from: '\u{1975}', to: '\u{197f}', mapping: Disallowed }, + Range { from: '\u{1980}', to: '\u{19a9}', mapping: Valid }, + Range { from: '\u{19aa}', to: '\u{19ab}', mapping: Valid }, + Range { from: '\u{19ac}', to: '\u{19af}', mapping: Disallowed }, + Range { from: '\u{19b0}', to: '\u{19c9}', mapping: Valid }, + Range { from: '\u{19ca}', to: '\u{19cf}', mapping: Disallowed }, + Range { from: '\u{19d0}', to: '\u{19d9}', mapping: Valid }, + Range { from: '\u{19da}', to: '\u{19da}', mapping: Valid }, + Range { from: '\u{19db}', to: '\u{19dd}', mapping: Disallowed }, + Range { from: '\u{19de}', to: '\u{19df}', mapping: Valid }, + Range { from: '\u{19e0}', to: '\u{19ff}', mapping: Valid }, + Range { from: '\u{1a00}', to: '\u{1a1b}', mapping: Valid }, + Range { from: '\u{1a1c}', to: '\u{1a1d}', mapping: Disallowed }, + Range { from: '\u{1a1e}', to: '\u{1a1f}', mapping: Valid }, + Range { from: '\u{1a20}', to: '\u{1a5e}', mapping: Valid }, + Range { from: '\u{1a5f}', to: '\u{1a5f}', mapping: Disallowed }, + Range { from: '\u{1a60}', to: '\u{1a7c}', mapping: Valid }, + Range { from: '\u{1a7d}', to: '\u{1a7e}', mapping: Disallowed }, + Range { from: '\u{1a7f}', to: '\u{1a89}', mapping: Valid }, + Range { from: '\u{1a8a}', to: '\u{1a8f}', mapping: Disallowed }, + Range { from: '\u{1a90}', to: '\u{1a99}', mapping: Valid }, + Range { from: '\u{1a9a}', to: '\u{1a9f}', mapping: Disallowed }, + Range { from: '\u{1aa0}', to: '\u{1aa6}', mapping: Valid }, + Range { from: '\u{1aa7}', to: '\u{1aa7}', mapping: Valid }, + Range { from: '\u{1aa8}', to: '\u{1aad}', mapping: Valid }, + Range { from: '\u{1aae}', to: '\u{1aaf}', mapping: Disallowed }, + Range { from: '\u{1ab0}', to: '\u{1abd}', mapping: Valid }, + Range { from: '\u{1abe}', to: '\u{1abe}', mapping: Valid }, + Range { from: '\u{1abf}', to: '\u{1aff}', mapping: Disallowed }, + Range { from: '\u{1b00}', to: '\u{1b4b}', mapping: Valid }, + Range { from: '\u{1b4c}', to: '\u{1b4f}', mapping: Disallowed }, + Range { from: '\u{1b50}', to: '\u{1b59}', mapping: Valid }, + Range { from: '\u{1b5a}', to: '\u{1b6a}', mapping: Valid }, + Range { from: '\u{1b6b}', to: '\u{1b73}', mapping: Valid }, + Range { from: '\u{1b74}', to: '\u{1b7c}', mapping: Valid }, + Range { from: '\u{1b7d}', to: '\u{1b7f}', mapping: Disallowed }, + Range { from: '\u{1b80}', to: '\u{1baa}', mapping: Valid }, + Range { from: '\u{1bab}', to: '\u{1bad}', mapping: Valid }, + Range { from: '\u{1bae}', to: '\u{1bb9}', mapping: Valid }, + Range { from: '\u{1bba}', to: '\u{1bbf}', mapping: Valid }, + Range { from: '\u{1bc0}', to: '\u{1bf3}', mapping: Valid }, + Range { from: '\u{1bf4}', to: '\u{1bfb}', mapping: Disallowed }, + Range { from: '\u{1bfc}', to: '\u{1bff}', mapping: Valid }, + Range { from: '\u{1c00}', to: '\u{1c37}', mapping: Valid }, + Range { from: '\u{1c38}', to: '\u{1c3a}', mapping: Disallowed }, + Range { from: '\u{1c3b}', to: '\u{1c3f}', mapping: Valid }, + Range { from: '\u{1c40}', to: '\u{1c49}', mapping: Valid }, + Range { from: '\u{1c4a}', to: '\u{1c4c}', mapping: Disallowed }, + Range { from: '\u{1c4d}', to: '\u{1c7d}', mapping: Valid }, + Range { from: '\u{1c7e}', to: '\u{1c7f}', mapping: Valid }, + Range { from: '\u{1c80}', to: '\u{1c80}', mapping: Mapped(StringTableSlice { byte_start: 656, byte_len: 2 }) }, + Range { from: '\u{1c81}', to: '\u{1c81}', mapping: Mapped(StringTableSlice { byte_start: 660, byte_len: 2 }) }, + Range { from: '\u{1c82}', to: '\u{1c82}', mapping: Mapped(StringTableSlice { byte_start: 680, byte_len: 2 }) }, + Range { from: '\u{1c83}', to: '\u{1c83}', mapping: Mapped(StringTableSlice { byte_start: 686, byte_len: 2 }) }, + Range { from: '\u{1c84}', to: '\u{1c85}', mapping: Mapped(StringTableSlice { byte_start: 688, byte_len: 2 }) }, + Range { from: '\u{1c86}', to: '\u{1c86}', mapping: Mapped(StringTableSlice { byte_start: 704, byte_len: 2 }) }, + Range { from: '\u{1c87}', to: '\u{1c87}', mapping: Mapped(StringTableSlice { byte_start: 718, byte_len: 2 }) }, + Range { from: '\u{1c88}', to: '\u{1c88}', mapping: Mapped(StringTableSlice { byte_start: 1298, byte_len: 3 }) }, + Range { from: '\u{1c89}', to: '\u{1cbf}', mapping: Disallowed }, + Range { from: '\u{1cc0}', to: '\u{1cc7}', mapping: Valid }, + Range { from: '\u{1cc8}', to: '\u{1ccf}', mapping: Disallowed }, + Range { from: '\u{1cd0}', to: '\u{1cd2}', mapping: Valid }, + Range { from: '\u{1cd3}', to: '\u{1cd3}', mapping: Valid }, + Range { from: '\u{1cd4}', to: '\u{1cf2}', mapping: Valid }, + Range { from: '\u{1cf3}', to: '\u{1cf6}', mapping: Valid }, + Range { from: '\u{1cf7}', to: '\u{1cf7}', mapping: Disallowed }, + Range { from: '\u{1cf8}', to: '\u{1cf9}', mapping: Valid }, + Range { from: '\u{1cfa}', to: '\u{1cff}', mapping: Disallowed }, + Range { from: '\u{1d00}', to: '\u{1d2b}', mapping: Valid }, + Range { from: '\u{1d2c}', to: '\u{1d2c}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d2d}', to: '\u{1d2d}', mapping: Mapped(StringTableSlice { byte_start: 71, byte_len: 2 }) }, + Range { from: '\u{1d2e}', to: '\u{1d2e}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d2f}', to: '\u{1d2f}', mapping: Valid }, + Range { from: '\u{1d30}', to: '\u{1d30}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d31}', to: '\u{1d31}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d32}', to: '\u{1d32}', mapping: Mapped(StringTableSlice { byte_start: 268, byte_len: 2 }) }, + Range { from: '\u{1d33}', to: '\u{1d33}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d34}', to: '\u{1d34}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d35}', to: '\u{1d35}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d36}', to: '\u{1d36}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d37}', to: '\u{1d37}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d38}', to: '\u{1d38}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d39}', to: '\u{1d39}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d3a}', to: '\u{1d3a}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d3b}', to: '\u{1d3b}', mapping: Valid }, + Range { from: '\u{1d3c}', to: '\u{1d3c}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d3d}', to: '\u{1d3d}', mapping: Mapped(StringTableSlice { byte_start: 415, byte_len: 2 }) }, + Range { from: '\u{1d3e}', to: '\u{1d3e}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d3f}', to: '\u{1d3f}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d40}', to: '\u{1d40}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d41}', to: '\u{1d41}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d42}', to: '\u{1d42}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d43}', to: '\u{1d43}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d44}', to: '\u{1d44}', mapping: Mapped(StringTableSlice { byte_start: 1301, byte_len: 2 }) }, + Range { from: '\u{1d45}', to: '\u{1d45}', mapping: Mapped(StringTableSlice { byte_start: 1303, byte_len: 2 }) }, + Range { from: '\u{1d46}', to: '\u{1d46}', mapping: Mapped(StringTableSlice { byte_start: 1305, byte_len: 3 }) }, + Range { from: '\u{1d47}', to: '\u{1d47}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d48}', to: '\u{1d48}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d49}', to: '\u{1d49}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d4a}', to: '\u{1d4a}', mapping: Mapped(StringTableSlice { byte_start: 270, byte_len: 2 }) }, + Range { from: '\u{1d4b}', to: '\u{1d4b}', mapping: Mapped(StringTableSlice { byte_start: 272, byte_len: 2 }) }, + Range { from: '\u{1d4c}', to: '\u{1d4c}', mapping: Mapped(StringTableSlice { byte_start: 1308, byte_len: 2 }) }, + Range { from: '\u{1d4d}', to: '\u{1d4d}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d4e}', to: '\u{1d4e}', mapping: Valid }, + Range { from: '\u{1d4f}', to: '\u{1d4f}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d50}', to: '\u{1d50}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d51}', to: '\u{1d51}', mapping: Mapped(StringTableSlice { byte_start: 198, byte_len: 2 }) }, + Range { from: '\u{1d52}', to: '\u{1d52}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d53}', to: '\u{1d53}', mapping: Mapped(StringTableSlice { byte_start: 258, byte_len: 2 }) }, + Range { from: '\u{1d54}', to: '\u{1d54}', mapping: Mapped(StringTableSlice { byte_start: 1310, byte_len: 3 }) }, + Range { from: '\u{1d55}', to: '\u{1d55}', mapping: Mapped(StringTableSlice { byte_start: 1313, byte_len: 3 }) }, + Range { from: '\u{1d56}', to: '\u{1d56}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d57}', to: '\u{1d57}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d58}', to: '\u{1d58}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d59}', to: '\u{1d59}', mapping: Mapped(StringTableSlice { byte_start: 1316, byte_len: 3 }) }, + Range { from: '\u{1d5a}', to: '\u{1d5a}', mapping: Mapped(StringTableSlice { byte_start: 286, byte_len: 2 }) }, + Range { from: '\u{1d5b}', to: '\u{1d5b}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d5c}', to: '\u{1d5c}', mapping: Mapped(StringTableSlice { byte_start: 1319, byte_len: 3 }) }, + Range { from: '\u{1d5d}', to: '\u{1d5d}', mapping: Mapped(StringTableSlice { byte_start: 538, byte_len: 2 }) }, + Range { from: '\u{1d5e}', to: '\u{1d5e}', mapping: Mapped(StringTableSlice { byte_start: 540, byte_len: 2 }) }, + Range { from: '\u{1d5f}', to: '\u{1d5f}', mapping: Mapped(StringTableSlice { byte_start: 542, byte_len: 2 }) }, + Range { from: '\u{1d60}', to: '\u{1d60}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d61}', to: '\u{1d61}', mapping: Mapped(StringTableSlice { byte_start: 574, byte_len: 2 }) }, + Range { from: '\u{1d62}', to: '\u{1d62}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d63}', to: '\u{1d63}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d64}', to: '\u{1d64}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d65}', to: '\u{1d65}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d66}', to: '\u{1d66}', mapping: Mapped(StringTableSlice { byte_start: 538, byte_len: 2 }) }, + Range { from: '\u{1d67}', to: '\u{1d67}', mapping: Mapped(StringTableSlice { byte_start: 540, byte_len: 2 }) }, + Range { from: '\u{1d68}', to: '\u{1d68}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{1d69}', to: '\u{1d69}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d6a}', to: '\u{1d6a}', mapping: Mapped(StringTableSlice { byte_start: 574, byte_len: 2 }) }, + Range { from: '\u{1d6b}', to: '\u{1d6b}', mapping: Valid }, + Range { from: '\u{1d6c}', to: '\u{1d77}', mapping: Valid }, + Range { from: '\u{1d78}', to: '\u{1d78}', mapping: Mapped(StringTableSlice { byte_start: 678, byte_len: 2 }) }, + Range { from: '\u{1d79}', to: '\u{1d9a}', mapping: Valid }, + Range { from: '\u{1d9b}', to: '\u{1d9b}', mapping: Mapped(StringTableSlice { byte_start: 1322, byte_len: 2 }) }, + Range { from: '\u{1d9c}', to: '\u{1d9c}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d9d}', to: '\u{1d9d}', mapping: Mapped(StringTableSlice { byte_start: 1324, byte_len: 2 }) }, + Range { from: '\u{1d9e}', to: '\u{1d9e}', mapping: Mapped(StringTableSlice { byte_start: 91, byte_len: 2 }) }, + Range { from: '\u{1d9f}', to: '\u{1d9f}', mapping: Mapped(StringTableSlice { byte_start: 1308, byte_len: 2 }) }, + Range { from: '\u{1da0}', to: '\u{1da0}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1da1}', to: '\u{1da1}', mapping: Mapped(StringTableSlice { byte_start: 1326, byte_len: 2 }) }, + Range { from: '\u{1da2}', to: '\u{1da2}', mapping: Mapped(StringTableSlice { byte_start: 1328, byte_len: 2 }) }, + Range { from: '\u{1da3}', to: '\u{1da3}', mapping: Mapped(StringTableSlice { byte_start: 1330, byte_len: 2 }) }, + Range { from: '\u{1da4}', to: '\u{1da4}', mapping: Mapped(StringTableSlice { byte_start: 282, byte_len: 2 }) }, + Range { from: '\u{1da5}', to: '\u{1da5}', mapping: Mapped(StringTableSlice { byte_start: 280, byte_len: 2 }) }, + Range { from: '\u{1da6}', to: '\u{1da6}', mapping: Mapped(StringTableSlice { byte_start: 1332, byte_len: 2 }) }, + Range { from: '\u{1da7}', to: '\u{1da7}', mapping: Mapped(StringTableSlice { byte_start: 1334, byte_len: 3 }) }, + Range { from: '\u{1da8}', to: '\u{1da8}', mapping: Mapped(StringTableSlice { byte_start: 1337, byte_len: 2 }) }, + Range { from: '\u{1da9}', to: '\u{1da9}', mapping: Mapped(StringTableSlice { byte_start: 1339, byte_len: 2 }) }, + Range { from: '\u{1daa}', to: '\u{1daa}', mapping: Mapped(StringTableSlice { byte_start: 1341, byte_len: 3 }) }, + Range { from: '\u{1dab}', to: '\u{1dab}', mapping: Mapped(StringTableSlice { byte_start: 1344, byte_len: 2 }) }, + Range { from: '\u{1dac}', to: '\u{1dac}', mapping: Mapped(StringTableSlice { byte_start: 1346, byte_len: 2 }) }, + Range { from: '\u{1dad}', to: '\u{1dad}', mapping: Mapped(StringTableSlice { byte_start: 1348, byte_len: 2 }) }, + Range { from: '\u{1dae}', to: '\u{1dae}', mapping: Mapped(StringTableSlice { byte_start: 288, byte_len: 2 }) }, + Range { from: '\u{1daf}', to: '\u{1daf}', mapping: Mapped(StringTableSlice { byte_start: 1350, byte_len: 2 }) }, + Range { from: '\u{1db0}', to: '\u{1db0}', mapping: Mapped(StringTableSlice { byte_start: 1352, byte_len: 2 }) }, + Range { from: '\u{1db1}', to: '\u{1db1}', mapping: Mapped(StringTableSlice { byte_start: 290, byte_len: 2 }) }, + Range { from: '\u{1db2}', to: '\u{1db2}', mapping: Mapped(StringTableSlice { byte_start: 1354, byte_len: 2 }) }, + Range { from: '\u{1db3}', to: '\u{1db3}', mapping: Mapped(StringTableSlice { byte_start: 1356, byte_len: 2 }) }, + Range { from: '\u{1db4}', to: '\u{1db4}', mapping: Mapped(StringTableSlice { byte_start: 302, byte_len: 2 }) }, + Range { from: '\u{1db5}', to: '\u{1db5}', mapping: Mapped(StringTableSlice { byte_start: 1358, byte_len: 2 }) }, + Range { from: '\u{1db6}', to: '\u{1db6}', mapping: Mapped(StringTableSlice { byte_start: 447, byte_len: 2 }) }, + Range { from: '\u{1db7}', to: '\u{1db7}', mapping: Mapped(StringTableSlice { byte_start: 310, byte_len: 2 }) }, + Range { from: '\u{1db8}', to: '\u{1db8}', mapping: Mapped(StringTableSlice { byte_start: 1360, byte_len: 3 }) }, + Range { from: '\u{1db9}', to: '\u{1db9}', mapping: Mapped(StringTableSlice { byte_start: 312, byte_len: 2 }) }, + Range { from: '\u{1dba}', to: '\u{1dba}', mapping: Mapped(StringTableSlice { byte_start: 449, byte_len: 2 }) }, + Range { from: '\u{1dbb}', to: '\u{1dbb}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1dbc}', to: '\u{1dbc}', mapping: Mapped(StringTableSlice { byte_start: 1363, byte_len: 2 }) }, + Range { from: '\u{1dbd}', to: '\u{1dbd}', mapping: Mapped(StringTableSlice { byte_start: 1365, byte_len: 2 }) }, + Range { from: '\u{1dbe}', to: '\u{1dbe}', mapping: Mapped(StringTableSlice { byte_start: 318, byte_len: 2 }) }, + Range { from: '\u{1dbf}', to: '\u{1dbf}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1dc0}', to: '\u{1dc3}', mapping: Valid }, + Range { from: '\u{1dc4}', to: '\u{1dca}', mapping: Valid }, + Range { from: '\u{1dcb}', to: '\u{1de6}', mapping: Valid }, + Range { from: '\u{1de7}', to: '\u{1df5}', mapping: Valid }, + Range { from: '\u{1df6}', to: '\u{1dfa}', mapping: Disallowed }, + Range { from: '\u{1dfb}', to: '\u{1dfb}', mapping: Valid }, + Range { from: '\u{1dfc}', to: '\u{1dfc}', mapping: Valid }, + Range { from: '\u{1dfd}', to: '\u{1dfd}', mapping: Valid }, + Range { from: '\u{1dfe}', to: '\u{1dff}', mapping: Valid }, + Range { from: '\u{1e00}', to: '\u{1e00}', mapping: Mapped(StringTableSlice { byte_start: 1367, byte_len: 3 }) }, + Range { from: '\u{1e01}', to: '\u{1e01}', mapping: Valid }, + Range { from: '\u{1e02}', to: '\u{1e02}', mapping: Mapped(StringTableSlice { byte_start: 1370, byte_len: 3 }) }, + Range { from: '\u{1e03}', to: '\u{1e03}', mapping: Valid }, + Range { from: '\u{1e04}', to: '\u{1e04}', mapping: Mapped(StringTableSlice { byte_start: 1373, byte_len: 3 }) }, + Range { from: '\u{1e05}', to: '\u{1e05}', mapping: Valid }, + Range { from: '\u{1e06}', to: '\u{1e06}', mapping: Mapped(StringTableSlice { byte_start: 1376, byte_len: 3 }) }, + Range { from: '\u{1e07}', to: '\u{1e07}', mapping: Valid }, + Range { from: '\u{1e08}', to: '\u{1e08}', mapping: Mapped(StringTableSlice { byte_start: 1379, byte_len: 3 }) }, + Range { from: '\u{1e09}', to: '\u{1e09}', mapping: Valid }, + Range { from: '\u{1e0a}', to: '\u{1e0a}', mapping: Mapped(StringTableSlice { byte_start: 1382, byte_len: 3 }) }, + Range { from: '\u{1e0b}', to: '\u{1e0b}', mapping: Valid }, + Range { from: '\u{1e0c}', to: '\u{1e0c}', mapping: Mapped(StringTableSlice { byte_start: 1385, byte_len: 3 }) }, + Range { from: '\u{1e0d}', to: '\u{1e0d}', mapping: Valid }, + Range { from: '\u{1e0e}', to: '\u{1e0e}', mapping: Mapped(StringTableSlice { byte_start: 1388, byte_len: 3 }) }, + Range { from: '\u{1e0f}', to: '\u{1e0f}', mapping: Valid }, + Range { from: '\u{1e10}', to: '\u{1e10}', mapping: Mapped(StringTableSlice { byte_start: 1391, byte_len: 3 }) }, + Range { from: '\u{1e11}', to: '\u{1e11}', mapping: Valid }, + Range { from: '\u{1e12}', to: '\u{1e12}', mapping: Mapped(StringTableSlice { byte_start: 1394, byte_len: 3 }) }, + Range { from: '\u{1e13}', to: '\u{1e13}', mapping: Valid }, + Range { from: '\u{1e14}', to: '\u{1e14}', mapping: Mapped(StringTableSlice { byte_start: 1397, byte_len: 3 }) }, + Range { from: '\u{1e15}', to: '\u{1e15}', mapping: Valid }, + Range { from: '\u{1e16}', to: '\u{1e16}', mapping: Mapped(StringTableSlice { byte_start: 1400, byte_len: 3 }) }, + Range { from: '\u{1e17}', to: '\u{1e17}', mapping: Valid }, + Range { from: '\u{1e18}', to: '\u{1e18}', mapping: Mapped(StringTableSlice { byte_start: 1403, byte_len: 3 }) }, + Range { from: '\u{1e19}', to: '\u{1e19}', mapping: Valid }, + Range { from: '\u{1e1a}', to: '\u{1e1a}', mapping: Mapped(StringTableSlice { byte_start: 1406, byte_len: 3 }) }, + Range { from: '\u{1e1b}', to: '\u{1e1b}', mapping: Valid }, + Range { from: '\u{1e1c}', to: '\u{1e1c}', mapping: Mapped(StringTableSlice { byte_start: 1409, byte_len: 3 }) }, + Range { from: '\u{1e1d}', to: '\u{1e1d}', mapping: Valid }, + Range { from: '\u{1e1e}', to: '\u{1e1e}', mapping: Mapped(StringTableSlice { byte_start: 1412, byte_len: 3 }) }, + Range { from: '\u{1e1f}', to: '\u{1e1f}', mapping: Valid }, + Range { from: '\u{1e20}', to: '\u{1e20}', mapping: Mapped(StringTableSlice { byte_start: 1415, byte_len: 3 }) }, + Range { from: '\u{1e21}', to: '\u{1e21}', mapping: Valid }, + Range { from: '\u{1e22}', to: '\u{1e22}', mapping: Mapped(StringTableSlice { byte_start: 1418, byte_len: 3 }) }, + Range { from: '\u{1e23}', to: '\u{1e23}', mapping: Valid }, + Range { from: '\u{1e24}', to: '\u{1e24}', mapping: Mapped(StringTableSlice { byte_start: 1421, byte_len: 3 }) }, + Range { from: '\u{1e25}', to: '\u{1e25}', mapping: Valid }, + Range { from: '\u{1e26}', to: '\u{1e26}', mapping: Mapped(StringTableSlice { byte_start: 1424, byte_len: 3 }) }, + Range { from: '\u{1e27}', to: '\u{1e27}', mapping: Valid }, + Range { from: '\u{1e28}', to: '\u{1e28}', mapping: Mapped(StringTableSlice { byte_start: 1427, byte_len: 3 }) }, + Range { from: '\u{1e29}', to: '\u{1e29}', mapping: Valid }, + Range { from: '\u{1e2a}', to: '\u{1e2a}', mapping: Mapped(StringTableSlice { byte_start: 1430, byte_len: 3 }) }, + Range { from: '\u{1e2b}', to: '\u{1e2b}', mapping: Valid }, + Range { from: '\u{1e2c}', to: '\u{1e2c}', mapping: Mapped(StringTableSlice { byte_start: 1433, byte_len: 3 }) }, + Range { from: '\u{1e2d}', to: '\u{1e2d}', mapping: Valid }, + Range { from: '\u{1e2e}', to: '\u{1e2e}', mapping: Mapped(StringTableSlice { byte_start: 1436, byte_len: 3 }) }, + Range { from: '\u{1e2f}', to: '\u{1e2f}', mapping: Valid }, + Range { from: '\u{1e30}', to: '\u{1e30}', mapping: Mapped(StringTableSlice { byte_start: 1439, byte_len: 3 }) }, + Range { from: '\u{1e31}', to: '\u{1e31}', mapping: Valid }, + Range { from: '\u{1e32}', to: '\u{1e32}', mapping: Mapped(StringTableSlice { byte_start: 1442, byte_len: 3 }) }, + Range { from: '\u{1e33}', to: '\u{1e33}', mapping: Valid }, + Range { from: '\u{1e34}', to: '\u{1e34}', mapping: Mapped(StringTableSlice { byte_start: 1445, byte_len: 3 }) }, + Range { from: '\u{1e35}', to: '\u{1e35}', mapping: Valid }, + Range { from: '\u{1e36}', to: '\u{1e36}', mapping: Mapped(StringTableSlice { byte_start: 1448, byte_len: 3 }) }, + Range { from: '\u{1e37}', to: '\u{1e37}', mapping: Valid }, + Range { from: '\u{1e38}', to: '\u{1e38}', mapping: Mapped(StringTableSlice { byte_start: 1451, byte_len: 3 }) }, + Range { from: '\u{1e39}', to: '\u{1e39}', mapping: Valid }, + Range { from: '\u{1e3a}', to: '\u{1e3a}', mapping: Mapped(StringTableSlice { byte_start: 1454, byte_len: 3 }) }, + Range { from: '\u{1e3b}', to: '\u{1e3b}', mapping: Valid }, + Range { from: '\u{1e3c}', to: '\u{1e3c}', mapping: Mapped(StringTableSlice { byte_start: 1457, byte_len: 3 }) }, + Range { from: '\u{1e3d}', to: '\u{1e3d}', mapping: Valid }, + Range { from: '\u{1e3e}', to: '\u{1e3e}', mapping: Mapped(StringTableSlice { byte_start: 1460, byte_len: 3 }) }, + Range { from: '\u{1e3f}', to: '\u{1e3f}', mapping: Valid }, + Range { from: '\u{1e40}', to: '\u{1e40}', mapping: Mapped(StringTableSlice { byte_start: 1463, byte_len: 3 }) }, + Range { from: '\u{1e41}', to: '\u{1e41}', mapping: Valid }, + Range { from: '\u{1e42}', to: '\u{1e42}', mapping: Mapped(StringTableSlice { byte_start: 1466, byte_len: 3 }) }, + Range { from: '\u{1e43}', to: '\u{1e43}', mapping: Valid }, + Range { from: '\u{1e44}', to: '\u{1e44}', mapping: Mapped(StringTableSlice { byte_start: 1469, byte_len: 3 }) }, + Range { from: '\u{1e45}', to: '\u{1e45}', mapping: Valid }, + Range { from: '\u{1e46}', to: '\u{1e46}', mapping: Mapped(StringTableSlice { byte_start: 1472, byte_len: 3 }) }, + Range { from: '\u{1e47}', to: '\u{1e47}', mapping: Valid }, + Range { from: '\u{1e48}', to: '\u{1e48}', mapping: Mapped(StringTableSlice { byte_start: 1475, byte_len: 3 }) }, + Range { from: '\u{1e49}', to: '\u{1e49}', mapping: Valid }, + Range { from: '\u{1e4a}', to: '\u{1e4a}', mapping: Mapped(StringTableSlice { byte_start: 1478, byte_len: 3 }) }, + Range { from: '\u{1e4b}', to: '\u{1e4b}', mapping: Valid }, + Range { from: '\u{1e4c}', to: '\u{1e4c}', mapping: Mapped(StringTableSlice { byte_start: 1481, byte_len: 3 }) }, + Range { from: '\u{1e4d}', to: '\u{1e4d}', mapping: Valid }, + Range { from: '\u{1e4e}', to: '\u{1e4e}', mapping: Mapped(StringTableSlice { byte_start: 1484, byte_len: 3 }) }, + Range { from: '\u{1e4f}', to: '\u{1e4f}', mapping: Valid }, + Range { from: '\u{1e50}', to: '\u{1e50}', mapping: Mapped(StringTableSlice { byte_start: 1487, byte_len: 3 }) }, + Range { from: '\u{1e51}', to: '\u{1e51}', mapping: Valid }, + Range { from: '\u{1e52}', to: '\u{1e52}', mapping: Mapped(StringTableSlice { byte_start: 1490, byte_len: 3 }) }, + Range { from: '\u{1e53}', to: '\u{1e53}', mapping: Valid }, + Range { from: '\u{1e54}', to: '\u{1e54}', mapping: Mapped(StringTableSlice { byte_start: 1493, byte_len: 3 }) }, + Range { from: '\u{1e55}', to: '\u{1e55}', mapping: Valid }, + Range { from: '\u{1e56}', to: '\u{1e56}', mapping: Mapped(StringTableSlice { byte_start: 1496, byte_len: 3 }) }, + Range { from: '\u{1e57}', to: '\u{1e57}', mapping: Valid }, + Range { from: '\u{1e58}', to: '\u{1e58}', mapping: Mapped(StringTableSlice { byte_start: 1499, byte_len: 3 }) }, + Range { from: '\u{1e59}', to: '\u{1e59}', mapping: Valid }, + Range { from: '\u{1e5a}', to: '\u{1e5a}', mapping: Mapped(StringTableSlice { byte_start: 1502, byte_len: 3 }) }, + Range { from: '\u{1e5b}', to: '\u{1e5b}', mapping: Valid }, + Range { from: '\u{1e5c}', to: '\u{1e5c}', mapping: Mapped(StringTableSlice { byte_start: 1505, byte_len: 3 }) }, + Range { from: '\u{1e5d}', to: '\u{1e5d}', mapping: Valid }, + Range { from: '\u{1e5e}', to: '\u{1e5e}', mapping: Mapped(StringTableSlice { byte_start: 1508, byte_len: 3 }) }, + Range { from: '\u{1e5f}', to: '\u{1e5f}', mapping: Valid }, + Range { from: '\u{1e60}', to: '\u{1e60}', mapping: Mapped(StringTableSlice { byte_start: 1511, byte_len: 3 }) }, + Range { from: '\u{1e61}', to: '\u{1e61}', mapping: Valid }, + Range { from: '\u{1e62}', to: '\u{1e62}', mapping: Mapped(StringTableSlice { byte_start: 1514, byte_len: 3 }) }, + Range { from: '\u{1e63}', to: '\u{1e63}', mapping: Valid }, + Range { from: '\u{1e64}', to: '\u{1e64}', mapping: Mapped(StringTableSlice { byte_start: 1517, byte_len: 3 }) }, + Range { from: '\u{1e65}', to: '\u{1e65}', mapping: Valid }, + Range { from: '\u{1e66}', to: '\u{1e66}', mapping: Mapped(StringTableSlice { byte_start: 1520, byte_len: 3 }) }, + Range { from: '\u{1e67}', to: '\u{1e67}', mapping: Valid }, + Range { from: '\u{1e68}', to: '\u{1e68}', mapping: Mapped(StringTableSlice { byte_start: 1523, byte_len: 3 }) }, + Range { from: '\u{1e69}', to: '\u{1e69}', mapping: Valid }, + Range { from: '\u{1e6a}', to: '\u{1e6a}', mapping: Mapped(StringTableSlice { byte_start: 1526, byte_len: 3 }) }, + Range { from: '\u{1e6b}', to: '\u{1e6b}', mapping: Valid }, + Range { from: '\u{1e6c}', to: '\u{1e6c}', mapping: Mapped(StringTableSlice { byte_start: 1529, byte_len: 3 }) }, + Range { from: '\u{1e6d}', to: '\u{1e6d}', mapping: Valid }, + Range { from: '\u{1e6e}', to: '\u{1e6e}', mapping: Mapped(StringTableSlice { byte_start: 1532, byte_len: 3 }) }, + Range { from: '\u{1e6f}', to: '\u{1e6f}', mapping: Valid }, + Range { from: '\u{1e70}', to: '\u{1e70}', mapping: Mapped(StringTableSlice { byte_start: 1535, byte_len: 3 }) }, + Range { from: '\u{1e71}', to: '\u{1e71}', mapping: Valid }, + Range { from: '\u{1e72}', to: '\u{1e72}', mapping: Mapped(StringTableSlice { byte_start: 1538, byte_len: 3 }) }, + Range { from: '\u{1e73}', to: '\u{1e73}', mapping: Valid }, + Range { from: '\u{1e74}', to: '\u{1e74}', mapping: Mapped(StringTableSlice { byte_start: 1541, byte_len: 3 }) }, + Range { from: '\u{1e75}', to: '\u{1e75}', mapping: Valid }, + Range { from: '\u{1e76}', to: '\u{1e76}', mapping: Mapped(StringTableSlice { byte_start: 1544, byte_len: 3 }) }, + Range { from: '\u{1e77}', to: '\u{1e77}', mapping: Valid }, + Range { from: '\u{1e78}', to: '\u{1e78}', mapping: Mapped(StringTableSlice { byte_start: 1547, byte_len: 3 }) }, + Range { from: '\u{1e79}', to: '\u{1e79}', mapping: Valid }, + Range { from: '\u{1e7a}', to: '\u{1e7a}', mapping: Mapped(StringTableSlice { byte_start: 1550, byte_len: 3 }) }, + Range { from: '\u{1e7b}', to: '\u{1e7b}', mapping: Valid }, + Range { from: '\u{1e7c}', to: '\u{1e7c}', mapping: Mapped(StringTableSlice { byte_start: 1553, byte_len: 3 }) }, + Range { from: '\u{1e7d}', to: '\u{1e7d}', mapping: Valid }, + Range { from: '\u{1e7e}', to: '\u{1e7e}', mapping: Mapped(StringTableSlice { byte_start: 1556, byte_len: 3 }) }, + Range { from: '\u{1e7f}', to: '\u{1e7f}', mapping: Valid }, + Range { from: '\u{1e80}', to: '\u{1e80}', mapping: Mapped(StringTableSlice { byte_start: 1559, byte_len: 3 }) }, + Range { from: '\u{1e81}', to: '\u{1e81}', mapping: Valid }, + Range { from: '\u{1e82}', to: '\u{1e82}', mapping: Mapped(StringTableSlice { byte_start: 1562, byte_len: 3 }) }, + Range { from: '\u{1e83}', to: '\u{1e83}', mapping: Valid }, + Range { from: '\u{1e84}', to: '\u{1e84}', mapping: Mapped(StringTableSlice { byte_start: 1565, byte_len: 3 }) }, + Range { from: '\u{1e85}', to: '\u{1e85}', mapping: Valid }, + Range { from: '\u{1e86}', to: '\u{1e86}', mapping: Mapped(StringTableSlice { byte_start: 1568, byte_len: 3 }) }, + Range { from: '\u{1e87}', to: '\u{1e87}', mapping: Valid }, + Range { from: '\u{1e88}', to: '\u{1e88}', mapping: Mapped(StringTableSlice { byte_start: 1571, byte_len: 3 }) }, + Range { from: '\u{1e89}', to: '\u{1e89}', mapping: Valid }, + Range { from: '\u{1e8a}', to: '\u{1e8a}', mapping: Mapped(StringTableSlice { byte_start: 1574, byte_len: 3 }) }, + Range { from: '\u{1e8b}', to: '\u{1e8b}', mapping: Valid }, + Range { from: '\u{1e8c}', to: '\u{1e8c}', mapping: Mapped(StringTableSlice { byte_start: 1577, byte_len: 3 }) }, + Range { from: '\u{1e8d}', to: '\u{1e8d}', mapping: Valid }, + Range { from: '\u{1e8e}', to: '\u{1e8e}', mapping: Mapped(StringTableSlice { byte_start: 1580, byte_len: 3 }) }, + Range { from: '\u{1e8f}', to: '\u{1e8f}', mapping: Valid }, + Range { from: '\u{1e90}', to: '\u{1e90}', mapping: Mapped(StringTableSlice { byte_start: 1583, byte_len: 3 }) }, + Range { from: '\u{1e91}', to: '\u{1e91}', mapping: Valid }, + Range { from: '\u{1e92}', to: '\u{1e92}', mapping: Mapped(StringTableSlice { byte_start: 1586, byte_len: 3 }) }, + Range { from: '\u{1e93}', to: '\u{1e93}', mapping: Valid }, + Range { from: '\u{1e94}', to: '\u{1e94}', mapping: Mapped(StringTableSlice { byte_start: 1589, byte_len: 3 }) }, + Range { from: '\u{1e95}', to: '\u{1e99}', mapping: Valid }, + Range { from: '\u{1e9a}', to: '\u{1e9a}', mapping: Mapped(StringTableSlice { byte_start: 1592, byte_len: 3 }) }, + Range { from: '\u{1e9b}', to: '\u{1e9b}', mapping: Mapped(StringTableSlice { byte_start: 1511, byte_len: 3 }) }, + Range { from: '\u{1e9c}', to: '\u{1e9d}', mapping: Valid }, + Range { from: '\u{1e9e}', to: '\u{1e9e}', mapping: Mapped(StringTableSlice { byte_start: 119, byte_len: 2 }) }, + Range { from: '\u{1e9f}', to: '\u{1e9f}', mapping: Valid }, + Range { from: '\u{1ea0}', to: '\u{1ea0}', mapping: Mapped(StringTableSlice { byte_start: 1595, byte_len: 3 }) }, + Range { from: '\u{1ea1}', to: '\u{1ea1}', mapping: Valid }, + Range { from: '\u{1ea2}', to: '\u{1ea2}', mapping: Mapped(StringTableSlice { byte_start: 1598, byte_len: 3 }) }, + Range { from: '\u{1ea3}', to: '\u{1ea3}', mapping: Valid }, + Range { from: '\u{1ea4}', to: '\u{1ea4}', mapping: Mapped(StringTableSlice { byte_start: 1601, byte_len: 3 }) }, + Range { from: '\u{1ea5}', to: '\u{1ea5}', mapping: Valid }, + Range { from: '\u{1ea6}', to: '\u{1ea6}', mapping: Mapped(StringTableSlice { byte_start: 1604, byte_len: 3 }) }, + Range { from: '\u{1ea7}', to: '\u{1ea7}', mapping: Valid }, + Range { from: '\u{1ea8}', to: '\u{1ea8}', mapping: Mapped(StringTableSlice { byte_start: 1607, byte_len: 3 }) }, + Range { from: '\u{1ea9}', to: '\u{1ea9}', mapping: Valid }, + Range { from: '\u{1eaa}', to: '\u{1eaa}', mapping: Mapped(StringTableSlice { byte_start: 1610, byte_len: 3 }) }, + Range { from: '\u{1eab}', to: '\u{1eab}', mapping: Valid }, + Range { from: '\u{1eac}', to: '\u{1eac}', mapping: Mapped(StringTableSlice { byte_start: 1613, byte_len: 3 }) }, + Range { from: '\u{1ead}', to: '\u{1ead}', mapping: Valid }, + Range { from: '\u{1eae}', to: '\u{1eae}', mapping: Mapped(StringTableSlice { byte_start: 1616, byte_len: 3 }) }, + Range { from: '\u{1eaf}', to: '\u{1eaf}', mapping: Valid }, + Range { from: '\u{1eb0}', to: '\u{1eb0}', mapping: Mapped(StringTableSlice { byte_start: 1619, byte_len: 3 }) }, + Range { from: '\u{1eb1}', to: '\u{1eb1}', mapping: Valid }, + Range { from: '\u{1eb2}', to: '\u{1eb2}', mapping: Mapped(StringTableSlice { byte_start: 1622, byte_len: 3 }) }, + Range { from: '\u{1eb3}', to: '\u{1eb3}', mapping: Valid }, + Range { from: '\u{1eb4}', to: '\u{1eb4}', mapping: Mapped(StringTableSlice { byte_start: 1625, byte_len: 3 }) }, + Range { from: '\u{1eb5}', to: '\u{1eb5}', mapping: Valid }, + Range { from: '\u{1eb6}', to: '\u{1eb6}', mapping: Mapped(StringTableSlice { byte_start: 1628, byte_len: 3 }) }, + Range { from: '\u{1eb7}', to: '\u{1eb7}', mapping: Valid }, + Range { from: '\u{1eb8}', to: '\u{1eb8}', mapping: Mapped(StringTableSlice { byte_start: 1631, byte_len: 3 }) }, + Range { from: '\u{1eb9}', to: '\u{1eb9}', mapping: Valid }, + Range { from: '\u{1eba}', to: '\u{1eba}', mapping: Mapped(StringTableSlice { byte_start: 1634, byte_len: 3 }) }, + Range { from: '\u{1ebb}', to: '\u{1ebb}', mapping: Valid }, + Range { from: '\u{1ebc}', to: '\u{1ebc}', mapping: Mapped(StringTableSlice { byte_start: 1637, byte_len: 3 }) }, + Range { from: '\u{1ebd}', to: '\u{1ebd}', mapping: Valid }, + Range { from: '\u{1ebe}', to: '\u{1ebe}', mapping: Mapped(StringTableSlice { byte_start: 1640, byte_len: 3 }) }, + Range { from: '\u{1ebf}', to: '\u{1ebf}', mapping: Valid }, + Range { from: '\u{1ec0}', to: '\u{1ec0}', mapping: Mapped(StringTableSlice { byte_start: 1643, byte_len: 3 }) }, + Range { from: '\u{1ec1}', to: '\u{1ec1}', mapping: Valid }, + Range { from: '\u{1ec2}', to: '\u{1ec2}', mapping: Mapped(StringTableSlice { byte_start: 1646, byte_len: 3 }) }, + Range { from: '\u{1ec3}', to: '\u{1ec3}', mapping: Valid }, + Range { from: '\u{1ec4}', to: '\u{1ec4}', mapping: Mapped(StringTableSlice { byte_start: 1649, byte_len: 3 }) }, + Range { from: '\u{1ec5}', to: '\u{1ec5}', mapping: Valid }, + Range { from: '\u{1ec6}', to: '\u{1ec6}', mapping: Mapped(StringTableSlice { byte_start: 1652, byte_len: 3 }) }, + Range { from: '\u{1ec7}', to: '\u{1ec7}', mapping: Valid }, + Range { from: '\u{1ec8}', to: '\u{1ec8}', mapping: Mapped(StringTableSlice { byte_start: 1655, byte_len: 3 }) }, + Range { from: '\u{1ec9}', to: '\u{1ec9}', mapping: Valid }, + Range { from: '\u{1eca}', to: '\u{1eca}', mapping: Mapped(StringTableSlice { byte_start: 1658, byte_len: 3 }) }, + Range { from: '\u{1ecb}', to: '\u{1ecb}', mapping: Valid }, + Range { from: '\u{1ecc}', to: '\u{1ecc}', mapping: Mapped(StringTableSlice { byte_start: 1661, byte_len: 3 }) }, + Range { from: '\u{1ecd}', to: '\u{1ecd}', mapping: Valid }, + Range { from: '\u{1ece}', to: '\u{1ece}', mapping: Mapped(StringTableSlice { byte_start: 1664, byte_len: 3 }) }, + Range { from: '\u{1ecf}', to: '\u{1ecf}', mapping: Valid }, + Range { from: '\u{1ed0}', to: '\u{1ed0}', mapping: Mapped(StringTableSlice { byte_start: 1667, byte_len: 3 }) }, + Range { from: '\u{1ed1}', to: '\u{1ed1}', mapping: Valid }, + Range { from: '\u{1ed2}', to: '\u{1ed2}', mapping: Mapped(StringTableSlice { byte_start: 1670, byte_len: 3 }) }, + Range { from: '\u{1ed3}', to: '\u{1ed3}', mapping: Valid }, + Range { from: '\u{1ed4}', to: '\u{1ed4}', mapping: Mapped(StringTableSlice { byte_start: 1673, byte_len: 3 }) }, + Range { from: '\u{1ed5}', to: '\u{1ed5}', mapping: Valid }, + Range { from: '\u{1ed6}', to: '\u{1ed6}', mapping: Mapped(StringTableSlice { byte_start: 1676, byte_len: 3 }) }, + Range { from: '\u{1ed7}', to: '\u{1ed7}', mapping: Valid }, + Range { from: '\u{1ed8}', to: '\u{1ed8}', mapping: Mapped(StringTableSlice { byte_start: 1679, byte_len: 3 }) }, + Range { from: '\u{1ed9}', to: '\u{1ed9}', mapping: Valid }, + Range { from: '\u{1eda}', to: '\u{1eda}', mapping: Mapped(StringTableSlice { byte_start: 1682, byte_len: 3 }) }, + Range { from: '\u{1edb}', to: '\u{1edb}', mapping: Valid }, + Range { from: '\u{1edc}', to: '\u{1edc}', mapping: Mapped(StringTableSlice { byte_start: 1685, byte_len: 3 }) }, + Range { from: '\u{1edd}', to: '\u{1edd}', mapping: Valid }, + Range { from: '\u{1ede}', to: '\u{1ede}', mapping: Mapped(StringTableSlice { byte_start: 1688, byte_len: 3 }) }, + Range { from: '\u{1edf}', to: '\u{1edf}', mapping: Valid }, + Range { from: '\u{1ee0}', to: '\u{1ee0}', mapping: Mapped(StringTableSlice { byte_start: 1691, byte_len: 3 }) }, + Range { from: '\u{1ee1}', to: '\u{1ee1}', mapping: Valid }, + Range { from: '\u{1ee2}', to: '\u{1ee2}', mapping: Mapped(StringTableSlice { byte_start: 1694, byte_len: 3 }) }, + Range { from: '\u{1ee3}', to: '\u{1ee3}', mapping: Valid }, + Range { from: '\u{1ee4}', to: '\u{1ee4}', mapping: Mapped(StringTableSlice { byte_start: 1697, byte_len: 3 }) }, + Range { from: '\u{1ee5}', to: '\u{1ee5}', mapping: Valid }, + Range { from: '\u{1ee6}', to: '\u{1ee6}', mapping: Mapped(StringTableSlice { byte_start: 1700, byte_len: 3 }) }, + Range { from: '\u{1ee7}', to: '\u{1ee7}', mapping: Valid }, + Range { from: '\u{1ee8}', to: '\u{1ee8}', mapping: Mapped(StringTableSlice { byte_start: 1703, byte_len: 3 }) }, + Range { from: '\u{1ee9}', to: '\u{1ee9}', mapping: Valid }, + Range { from: '\u{1eea}', to: '\u{1eea}', mapping: Mapped(StringTableSlice { byte_start: 1706, byte_len: 3 }) }, + Range { from: '\u{1eeb}', to: '\u{1eeb}', mapping: Valid }, + Range { from: '\u{1eec}', to: '\u{1eec}', mapping: Mapped(StringTableSlice { byte_start: 1709, byte_len: 3 }) }, + Range { from: '\u{1eed}', to: '\u{1eed}', mapping: Valid }, + Range { from: '\u{1eee}', to: '\u{1eee}', mapping: Mapped(StringTableSlice { byte_start: 1712, byte_len: 3 }) }, + Range { from: '\u{1eef}', to: '\u{1eef}', mapping: Valid }, + Range { from: '\u{1ef0}', to: '\u{1ef0}', mapping: Mapped(StringTableSlice { byte_start: 1715, byte_len: 3 }) }, + Range { from: '\u{1ef1}', to: '\u{1ef1}', mapping: Valid }, + Range { from: '\u{1ef2}', to: '\u{1ef2}', mapping: Mapped(StringTableSlice { byte_start: 1718, byte_len: 3 }) }, + Range { from: '\u{1ef3}', to: '\u{1ef3}', mapping: Valid }, + Range { from: '\u{1ef4}', to: '\u{1ef4}', mapping: Mapped(StringTableSlice { byte_start: 1721, byte_len: 3 }) }, + Range { from: '\u{1ef5}', to: '\u{1ef5}', mapping: Valid }, + Range { from: '\u{1ef6}', to: '\u{1ef6}', mapping: Mapped(StringTableSlice { byte_start: 1724, byte_len: 3 }) }, + Range { from: '\u{1ef7}', to: '\u{1ef7}', mapping: Valid }, + Range { from: '\u{1ef8}', to: '\u{1ef8}', mapping: Mapped(StringTableSlice { byte_start: 1727, byte_len: 3 }) }, + Range { from: '\u{1ef9}', to: '\u{1ef9}', mapping: Valid }, + Range { from: '\u{1efa}', to: '\u{1efa}', mapping: Mapped(StringTableSlice { byte_start: 1730, byte_len: 3 }) }, + Range { from: '\u{1efb}', to: '\u{1efb}', mapping: Valid }, + Range { from: '\u{1efc}', to: '\u{1efc}', mapping: Mapped(StringTableSlice { byte_start: 1733, byte_len: 3 }) }, + Range { from: '\u{1efd}', to: '\u{1efd}', mapping: Valid }, + Range { from: '\u{1efe}', to: '\u{1efe}', mapping: Mapped(StringTableSlice { byte_start: 1736, byte_len: 3 }) }, + Range { from: '\u{1eff}', to: '\u{1eff}', mapping: Valid }, + Range { from: '\u{1f00}', to: '\u{1f07}', mapping: Valid }, + Range { from: '\u{1f08}', to: '\u{1f08}', mapping: Mapped(StringTableSlice { byte_start: 1739, byte_len: 3 }) }, + Range { from: '\u{1f09}', to: '\u{1f09}', mapping: Mapped(StringTableSlice { byte_start: 1742, byte_len: 3 }) }, + Range { from: '\u{1f0a}', to: '\u{1f0a}', mapping: Mapped(StringTableSlice { byte_start: 1745, byte_len: 3 }) }, + Range { from: '\u{1f0b}', to: '\u{1f0b}', mapping: Mapped(StringTableSlice { byte_start: 1748, byte_len: 3 }) }, + Range { from: '\u{1f0c}', to: '\u{1f0c}', mapping: Mapped(StringTableSlice { byte_start: 1751, byte_len: 3 }) }, + Range { from: '\u{1f0d}', to: '\u{1f0d}', mapping: Mapped(StringTableSlice { byte_start: 1754, byte_len: 3 }) }, + Range { from: '\u{1f0e}', to: '\u{1f0e}', mapping: Mapped(StringTableSlice { byte_start: 1757, byte_len: 3 }) }, + Range { from: '\u{1f0f}', to: '\u{1f0f}', mapping: Mapped(StringTableSlice { byte_start: 1760, byte_len: 3 }) }, + Range { from: '\u{1f10}', to: '\u{1f15}', mapping: Valid }, + Range { from: '\u{1f16}', to: '\u{1f17}', mapping: Disallowed }, + Range { from: '\u{1f18}', to: '\u{1f18}', mapping: Mapped(StringTableSlice { byte_start: 1763, byte_len: 3 }) }, + Range { from: '\u{1f19}', to: '\u{1f19}', mapping: Mapped(StringTableSlice { byte_start: 1766, byte_len: 3 }) }, + Range { from: '\u{1f1a}', to: '\u{1f1a}', mapping: Mapped(StringTableSlice { byte_start: 1769, byte_len: 3 }) }, + Range { from: '\u{1f1b}', to: '\u{1f1b}', mapping: Mapped(StringTableSlice { byte_start: 1772, byte_len: 3 }) }, + Range { from: '\u{1f1c}', to: '\u{1f1c}', mapping: Mapped(StringTableSlice { byte_start: 1775, byte_len: 3 }) }, + Range { from: '\u{1f1d}', to: '\u{1f1d}', mapping: Mapped(StringTableSlice { byte_start: 1778, byte_len: 3 }) }, + Range { from: '\u{1f1e}', to: '\u{1f1f}', mapping: Disallowed }, + Range { from: '\u{1f20}', to: '\u{1f27}', mapping: Valid }, + Range { from: '\u{1f28}', to: '\u{1f28}', mapping: Mapped(StringTableSlice { byte_start: 1781, byte_len: 3 }) }, + Range { from: '\u{1f29}', to: '\u{1f29}', mapping: Mapped(StringTableSlice { byte_start: 1784, byte_len: 3 }) }, + Range { from: '\u{1f2a}', to: '\u{1f2a}', mapping: Mapped(StringTableSlice { byte_start: 1787, byte_len: 3 }) }, + Range { from: '\u{1f2b}', to: '\u{1f2b}', mapping: Mapped(StringTableSlice { byte_start: 1790, byte_len: 3 }) }, + Range { from: '\u{1f2c}', to: '\u{1f2c}', mapping: Mapped(StringTableSlice { byte_start: 1793, byte_len: 3 }) }, + Range { from: '\u{1f2d}', to: '\u{1f2d}', mapping: Mapped(StringTableSlice { byte_start: 1796, byte_len: 3 }) }, + Range { from: '\u{1f2e}', to: '\u{1f2e}', mapping: Mapped(StringTableSlice { byte_start: 1799, byte_len: 3 }) }, + Range { from: '\u{1f2f}', to: '\u{1f2f}', mapping: Mapped(StringTableSlice { byte_start: 1802, byte_len: 3 }) }, + Range { from: '\u{1f30}', to: '\u{1f37}', mapping: Valid }, + Range { from: '\u{1f38}', to: '\u{1f38}', mapping: Mapped(StringTableSlice { byte_start: 1805, byte_len: 3 }) }, + Range { from: '\u{1f39}', to: '\u{1f39}', mapping: Mapped(StringTableSlice { byte_start: 1808, byte_len: 3 }) }, + Range { from: '\u{1f3a}', to: '\u{1f3a}', mapping: Mapped(StringTableSlice { byte_start: 1811, byte_len: 3 }) }, + Range { from: '\u{1f3b}', to: '\u{1f3b}', mapping: Mapped(StringTableSlice { byte_start: 1814, byte_len: 3 }) }, + Range { from: '\u{1f3c}', to: '\u{1f3c}', mapping: Mapped(StringTableSlice { byte_start: 1817, byte_len: 3 }) }, + Range { from: '\u{1f3d}', to: '\u{1f3d}', mapping: Mapped(StringTableSlice { byte_start: 1820, byte_len: 3 }) }, + Range { from: '\u{1f3e}', to: '\u{1f3e}', mapping: Mapped(StringTableSlice { byte_start: 1823, byte_len: 3 }) }, + Range { from: '\u{1f3f}', to: '\u{1f3f}', mapping: Mapped(StringTableSlice { byte_start: 1826, byte_len: 3 }) }, + Range { from: '\u{1f40}', to: '\u{1f45}', mapping: Valid }, + Range { from: '\u{1f46}', to: '\u{1f47}', mapping: Disallowed }, + Range { from: '\u{1f48}', to: '\u{1f48}', mapping: Mapped(StringTableSlice { byte_start: 1829, byte_len: 3 }) }, + Range { from: '\u{1f49}', to: '\u{1f49}', mapping: Mapped(StringTableSlice { byte_start: 1832, byte_len: 3 }) }, + Range { from: '\u{1f4a}', to: '\u{1f4a}', mapping: Mapped(StringTableSlice { byte_start: 1835, byte_len: 3 }) }, + Range { from: '\u{1f4b}', to: '\u{1f4b}', mapping: Mapped(StringTableSlice { byte_start: 1838, byte_len: 3 }) }, + Range { from: '\u{1f4c}', to: '\u{1f4c}', mapping: Mapped(StringTableSlice { byte_start: 1841, byte_len: 3 }) }, + Range { from: '\u{1f4d}', to: '\u{1f4d}', mapping: Mapped(StringTableSlice { byte_start: 1844, byte_len: 3 }) }, + Range { from: '\u{1f4e}', to: '\u{1f4f}', mapping: Disallowed }, + Range { from: '\u{1f50}', to: '\u{1f57}', mapping: Valid }, + Range { from: '\u{1f58}', to: '\u{1f58}', mapping: Disallowed }, + Range { from: '\u{1f59}', to: '\u{1f59}', mapping: Mapped(StringTableSlice { byte_start: 1847, byte_len: 3 }) }, + Range { from: '\u{1f5a}', to: '\u{1f5a}', mapping: Disallowed }, + Range { from: '\u{1f5b}', to: '\u{1f5b}', mapping: Mapped(StringTableSlice { byte_start: 1850, byte_len: 3 }) }, + Range { from: '\u{1f5c}', to: '\u{1f5c}', mapping: Disallowed }, + Range { from: '\u{1f5d}', to: '\u{1f5d}', mapping: Mapped(StringTableSlice { byte_start: 1853, byte_len: 3 }) }, + Range { from: '\u{1f5e}', to: '\u{1f5e}', mapping: Disallowed }, + Range { from: '\u{1f5f}', to: '\u{1f5f}', mapping: Mapped(StringTableSlice { byte_start: 1856, byte_len: 3 }) }, + Range { from: '\u{1f60}', to: '\u{1f67}', mapping: Valid }, + Range { from: '\u{1f68}', to: '\u{1f68}', mapping: Mapped(StringTableSlice { byte_start: 1859, byte_len: 3 }) }, + Range { from: '\u{1f69}', to: '\u{1f69}', mapping: Mapped(StringTableSlice { byte_start: 1862, byte_len: 3 }) }, + Range { from: '\u{1f6a}', to: '\u{1f6a}', mapping: Mapped(StringTableSlice { byte_start: 1865, byte_len: 3 }) }, + Range { from: '\u{1f6b}', to: '\u{1f6b}', mapping: Mapped(StringTableSlice { byte_start: 1868, byte_len: 3 }) }, + Range { from: '\u{1f6c}', to: '\u{1f6c}', mapping: Mapped(StringTableSlice { byte_start: 1871, byte_len: 3 }) }, + Range { from: '\u{1f6d}', to: '\u{1f6d}', mapping: Mapped(StringTableSlice { byte_start: 1874, byte_len: 3 }) }, + Range { from: '\u{1f6e}', to: '\u{1f6e}', mapping: Mapped(StringTableSlice { byte_start: 1877, byte_len: 3 }) }, + Range { from: '\u{1f6f}', to: '\u{1f6f}', mapping: Mapped(StringTableSlice { byte_start: 1880, byte_len: 3 }) }, + Range { from: '\u{1f70}', to: '\u{1f70}', mapping: Valid }, + Range { from: '\u{1f71}', to: '\u{1f71}', mapping: Mapped(StringTableSlice { byte_start: 520, byte_len: 2 }) }, + Range { from: '\u{1f72}', to: '\u{1f72}', mapping: Valid }, + Range { from: '\u{1f73}', to: '\u{1f73}', mapping: Mapped(StringTableSlice { byte_start: 524, byte_len: 2 }) }, + Range { from: '\u{1f74}', to: '\u{1f74}', mapping: Valid }, + Range { from: '\u{1f75}', to: '\u{1f75}', mapping: Mapped(StringTableSlice { byte_start: 526, byte_len: 2 }) }, + Range { from: '\u{1f76}', to: '\u{1f76}', mapping: Valid }, + Range { from: '\u{1f77}', to: '\u{1f77}', mapping: Mapped(StringTableSlice { byte_start: 528, byte_len: 2 }) }, + Range { from: '\u{1f78}', to: '\u{1f78}', mapping: Valid }, + Range { from: '\u{1f79}', to: '\u{1f79}', mapping: Mapped(StringTableSlice { byte_start: 530, byte_len: 2 }) }, + Range { from: '\u{1f7a}', to: '\u{1f7a}', mapping: Valid }, + Range { from: '\u{1f7b}', to: '\u{1f7b}', mapping: Mapped(StringTableSlice { byte_start: 532, byte_len: 2 }) }, + Range { from: '\u{1f7c}', to: '\u{1f7c}', mapping: Valid }, + Range { from: '\u{1f7d}', to: '\u{1f7d}', mapping: Mapped(StringTableSlice { byte_start: 534, byte_len: 2 }) }, + Range { from: '\u{1f7e}', to: '\u{1f7f}', mapping: Disallowed }, + Range { from: '\u{1f80}', to: '\u{1f80}', mapping: Mapped(StringTableSlice { byte_start: 1883, byte_len: 5 }) }, + Range { from: '\u{1f81}', to: '\u{1f81}', mapping: Mapped(StringTableSlice { byte_start: 1888, byte_len: 5 }) }, + Range { from: '\u{1f82}', to: '\u{1f82}', mapping: Mapped(StringTableSlice { byte_start: 1893, byte_len: 5 }) }, + Range { from: '\u{1f83}', to: '\u{1f83}', mapping: Mapped(StringTableSlice { byte_start: 1898, byte_len: 5 }) }, + Range { from: '\u{1f84}', to: '\u{1f84}', mapping: Mapped(StringTableSlice { byte_start: 1903, byte_len: 5 }) }, + Range { from: '\u{1f85}', to: '\u{1f85}', mapping: Mapped(StringTableSlice { byte_start: 1908, byte_len: 5 }) }, + Range { from: '\u{1f86}', to: '\u{1f86}', mapping: Mapped(StringTableSlice { byte_start: 1913, byte_len: 5 }) }, + Range { from: '\u{1f87}', to: '\u{1f87}', mapping: Mapped(StringTableSlice { byte_start: 1918, byte_len: 5 }) }, + Range { from: '\u{1f88}', to: '\u{1f88}', mapping: Mapped(StringTableSlice { byte_start: 1883, byte_len: 5 }) }, + Range { from: '\u{1f89}', to: '\u{1f89}', mapping: Mapped(StringTableSlice { byte_start: 1888, byte_len: 5 }) }, + Range { from: '\u{1f8a}', to: '\u{1f8a}', mapping: Mapped(StringTableSlice { byte_start: 1893, byte_len: 5 }) }, + Range { from: '\u{1f8b}', to: '\u{1f8b}', mapping: Mapped(StringTableSlice { byte_start: 1898, byte_len: 5 }) }, + Range { from: '\u{1f8c}', to: '\u{1f8c}', mapping: Mapped(StringTableSlice { byte_start: 1903, byte_len: 5 }) }, + Range { from: '\u{1f8d}', to: '\u{1f8d}', mapping: Mapped(StringTableSlice { byte_start: 1908, byte_len: 5 }) }, + Range { from: '\u{1f8e}', to: '\u{1f8e}', mapping: Mapped(StringTableSlice { byte_start: 1913, byte_len: 5 }) }, + Range { from: '\u{1f8f}', to: '\u{1f8f}', mapping: Mapped(StringTableSlice { byte_start: 1918, byte_len: 5 }) }, + Range { from: '\u{1f90}', to: '\u{1f90}', mapping: Mapped(StringTableSlice { byte_start: 1923, byte_len: 5 }) }, + Range { from: '\u{1f91}', to: '\u{1f91}', mapping: Mapped(StringTableSlice { byte_start: 1928, byte_len: 5 }) }, + Range { from: '\u{1f92}', to: '\u{1f92}', mapping: Mapped(StringTableSlice { byte_start: 1933, byte_len: 5 }) }, + Range { from: '\u{1f93}', to: '\u{1f93}', mapping: Mapped(StringTableSlice { byte_start: 1938, byte_len: 5 }) }, + Range { from: '\u{1f94}', to: '\u{1f94}', mapping: Mapped(StringTableSlice { byte_start: 1943, byte_len: 5 }) }, + Range { from: '\u{1f95}', to: '\u{1f95}', mapping: Mapped(StringTableSlice { byte_start: 1948, byte_len: 5 }) }, + Range { from: '\u{1f96}', to: '\u{1f96}', mapping: Mapped(StringTableSlice { byte_start: 1953, byte_len: 5 }) }, + Range { from: '\u{1f97}', to: '\u{1f97}', mapping: Mapped(StringTableSlice { byte_start: 1958, byte_len: 5 }) }, + Range { from: '\u{1f98}', to: '\u{1f98}', mapping: Mapped(StringTableSlice { byte_start: 1923, byte_len: 5 }) }, + Range { from: '\u{1f99}', to: '\u{1f99}', mapping: Mapped(StringTableSlice { byte_start: 1928, byte_len: 5 }) }, + Range { from: '\u{1f9a}', to: '\u{1f9a}', mapping: Mapped(StringTableSlice { byte_start: 1933, byte_len: 5 }) }, + Range { from: '\u{1f9b}', to: '\u{1f9b}', mapping: Mapped(StringTableSlice { byte_start: 1938, byte_len: 5 }) }, + Range { from: '\u{1f9c}', to: '\u{1f9c}', mapping: Mapped(StringTableSlice { byte_start: 1943, byte_len: 5 }) }, + Range { from: '\u{1f9d}', to: '\u{1f9d}', mapping: Mapped(StringTableSlice { byte_start: 1948, byte_len: 5 }) }, + Range { from: '\u{1f9e}', to: '\u{1f9e}', mapping: Mapped(StringTableSlice { byte_start: 1953, byte_len: 5 }) }, + Range { from: '\u{1f9f}', to: '\u{1f9f}', mapping: Mapped(StringTableSlice { byte_start: 1958, byte_len: 5 }) }, + Range { from: '\u{1fa0}', to: '\u{1fa0}', mapping: Mapped(StringTableSlice { byte_start: 1963, byte_len: 5 }) }, + Range { from: '\u{1fa1}', to: '\u{1fa1}', mapping: Mapped(StringTableSlice { byte_start: 1968, byte_len: 5 }) }, + Range { from: '\u{1fa2}', to: '\u{1fa2}', mapping: Mapped(StringTableSlice { byte_start: 1973, byte_len: 5 }) }, + Range { from: '\u{1fa3}', to: '\u{1fa3}', mapping: Mapped(StringTableSlice { byte_start: 1978, byte_len: 5 }) }, + Range { from: '\u{1fa4}', to: '\u{1fa4}', mapping: Mapped(StringTableSlice { byte_start: 1983, byte_len: 5 }) }, + Range { from: '\u{1fa5}', to: '\u{1fa5}', mapping: Mapped(StringTableSlice { byte_start: 1988, byte_len: 5 }) }, + Range { from: '\u{1fa6}', to: '\u{1fa6}', mapping: Mapped(StringTableSlice { byte_start: 1993, byte_len: 5 }) }, + Range { from: '\u{1fa7}', to: '\u{1fa7}', mapping: Mapped(StringTableSlice { byte_start: 1998, byte_len: 5 }) }, + Range { from: '\u{1fa8}', to: '\u{1fa8}', mapping: Mapped(StringTableSlice { byte_start: 1963, byte_len: 5 }) }, + Range { from: '\u{1fa9}', to: '\u{1fa9}', mapping: Mapped(StringTableSlice { byte_start: 1968, byte_len: 5 }) }, + Range { from: '\u{1faa}', to: '\u{1faa}', mapping: Mapped(StringTableSlice { byte_start: 1973, byte_len: 5 }) }, + Range { from: '\u{1fab}', to: '\u{1fab}', mapping: Mapped(StringTableSlice { byte_start: 1978, byte_len: 5 }) }, + Range { from: '\u{1fac}', to: '\u{1fac}', mapping: Mapped(StringTableSlice { byte_start: 1983, byte_len: 5 }) }, + Range { from: '\u{1fad}', to: '\u{1fad}', mapping: Mapped(StringTableSlice { byte_start: 1988, byte_len: 5 }) }, + Range { from: '\u{1fae}', to: '\u{1fae}', mapping: Mapped(StringTableSlice { byte_start: 1993, byte_len: 5 }) }, + Range { from: '\u{1faf}', to: '\u{1faf}', mapping: Mapped(StringTableSlice { byte_start: 1998, byte_len: 5 }) }, + Range { from: '\u{1fb0}', to: '\u{1fb1}', mapping: Valid }, + Range { from: '\u{1fb2}', to: '\u{1fb2}', mapping: Mapped(StringTableSlice { byte_start: 2003, byte_len: 5 }) }, + Range { from: '\u{1fb3}', to: '\u{1fb3}', mapping: Mapped(StringTableSlice { byte_start: 2008, byte_len: 4 }) }, + Range { from: '\u{1fb4}', to: '\u{1fb4}', mapping: Mapped(StringTableSlice { byte_start: 2012, byte_len: 4 }) }, + Range { from: '\u{1fb5}', to: '\u{1fb5}', mapping: Disallowed }, + Range { from: '\u{1fb6}', to: '\u{1fb6}', mapping: Valid }, + Range { from: '\u{1fb7}', to: '\u{1fb7}', mapping: Mapped(StringTableSlice { byte_start: 2016, byte_len: 5 }) }, + Range { from: '\u{1fb8}', to: '\u{1fb8}', mapping: Mapped(StringTableSlice { byte_start: 2021, byte_len: 3 }) }, + Range { from: '\u{1fb9}', to: '\u{1fb9}', mapping: Mapped(StringTableSlice { byte_start: 2024, byte_len: 3 }) }, + Range { from: '\u{1fba}', to: '\u{1fba}', mapping: Mapped(StringTableSlice { byte_start: 2027, byte_len: 3 }) }, + Range { from: '\u{1fbb}', to: '\u{1fbb}', mapping: Mapped(StringTableSlice { byte_start: 520, byte_len: 2 }) }, + Range { from: '\u{1fbc}', to: '\u{1fbc}', mapping: Mapped(StringTableSlice { byte_start: 2008, byte_len: 4 }) }, + Range { from: '\u{1fbd}', to: '\u{1fbd}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2030, byte_len: 3 }) }, + Range { from: '\u{1fbe}', to: '\u{1fbe}', mapping: Mapped(StringTableSlice { byte_start: 499, byte_len: 2 }) }, + Range { from: '\u{1fbf}', to: '\u{1fbf}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2030, byte_len: 3 }) }, + Range { from: '\u{1fc0}', to: '\u{1fc0}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2033, byte_len: 3 }) }, + Range { from: '\u{1fc1}', to: '\u{1fc1}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2036, byte_len: 5 }) }, + Range { from: '\u{1fc2}', to: '\u{1fc2}', mapping: Mapped(StringTableSlice { byte_start: 2041, byte_len: 5 }) }, + Range { from: '\u{1fc3}', to: '\u{1fc3}', mapping: Mapped(StringTableSlice { byte_start: 2046, byte_len: 4 }) }, + Range { from: '\u{1fc4}', to: '\u{1fc4}', mapping: Mapped(StringTableSlice { byte_start: 2050, byte_len: 4 }) }, + Range { from: '\u{1fc5}', to: '\u{1fc5}', mapping: Disallowed }, + Range { from: '\u{1fc6}', to: '\u{1fc6}', mapping: Valid }, + Range { from: '\u{1fc7}', to: '\u{1fc7}', mapping: Mapped(StringTableSlice { byte_start: 2054, byte_len: 5 }) }, + Range { from: '\u{1fc8}', to: '\u{1fc8}', mapping: Mapped(StringTableSlice { byte_start: 2059, byte_len: 3 }) }, + Range { from: '\u{1fc9}', to: '\u{1fc9}', mapping: Mapped(StringTableSlice { byte_start: 524, byte_len: 2 }) }, + Range { from: '\u{1fca}', to: '\u{1fca}', mapping: Mapped(StringTableSlice { byte_start: 2062, byte_len: 3 }) }, + Range { from: '\u{1fcb}', to: '\u{1fcb}', mapping: Mapped(StringTableSlice { byte_start: 526, byte_len: 2 }) }, + Range { from: '\u{1fcc}', to: '\u{1fcc}', mapping: Mapped(StringTableSlice { byte_start: 2046, byte_len: 4 }) }, + Range { from: '\u{1fcd}', to: '\u{1fcd}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2065, byte_len: 5 }) }, + Range { from: '\u{1fce}', to: '\u{1fce}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2070, byte_len: 5 }) }, + Range { from: '\u{1fcf}', to: '\u{1fcf}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2075, byte_len: 5 }) }, + Range { from: '\u{1fd0}', to: '\u{1fd2}', mapping: Valid }, + Range { from: '\u{1fd3}', to: '\u{1fd3}', mapping: Mapped(StringTableSlice { byte_start: 2080, byte_len: 2 }) }, + Range { from: '\u{1fd4}', to: '\u{1fd5}', mapping: Disallowed }, + Range { from: '\u{1fd6}', to: '\u{1fd7}', mapping: Valid }, + Range { from: '\u{1fd8}', to: '\u{1fd8}', mapping: Mapped(StringTableSlice { byte_start: 2082, byte_len: 3 }) }, + Range { from: '\u{1fd9}', to: '\u{1fd9}', mapping: Mapped(StringTableSlice { byte_start: 2085, byte_len: 3 }) }, + Range { from: '\u{1fda}', to: '\u{1fda}', mapping: Mapped(StringTableSlice { byte_start: 2088, byte_len: 3 }) }, + Range { from: '\u{1fdb}', to: '\u{1fdb}', mapping: Mapped(StringTableSlice { byte_start: 528, byte_len: 2 }) }, + Range { from: '\u{1fdc}', to: '\u{1fdc}', mapping: Disallowed }, + Range { from: '\u{1fdd}', to: '\u{1fdd}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2091, byte_len: 5 }) }, + Range { from: '\u{1fde}', to: '\u{1fde}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2096, byte_len: 5 }) }, + Range { from: '\u{1fdf}', to: '\u{1fdf}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2101, byte_len: 5 }) }, + Range { from: '\u{1fe0}', to: '\u{1fe2}', mapping: Valid }, + Range { from: '\u{1fe3}', to: '\u{1fe3}', mapping: Mapped(StringTableSlice { byte_start: 2106, byte_len: 2 }) }, + Range { from: '\u{1fe4}', to: '\u{1fe7}', mapping: Valid }, + Range { from: '\u{1fe8}', to: '\u{1fe8}', mapping: Mapped(StringTableSlice { byte_start: 2108, byte_len: 3 }) }, + Range { from: '\u{1fe9}', to: '\u{1fe9}', mapping: Mapped(StringTableSlice { byte_start: 2111, byte_len: 3 }) }, + Range { from: '\u{1fea}', to: '\u{1fea}', mapping: Mapped(StringTableSlice { byte_start: 2114, byte_len: 3 }) }, + Range { from: '\u{1feb}', to: '\u{1feb}', mapping: Mapped(StringTableSlice { byte_start: 532, byte_len: 2 }) }, + Range { from: '\u{1fec}', to: '\u{1fec}', mapping: Mapped(StringTableSlice { byte_start: 2117, byte_len: 3 }) }, + Range { from: '\u{1fed}', to: '\u{1fed}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2120, byte_len: 5 }) }, + Range { from: '\u{1fee}', to: '\u{1fee}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 515, byte_len: 5 }) }, + Range { from: '\u{1fef}', to: '\u{1fef}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2125, byte_len: 1 }) }, + Range { from: '\u{1ff0}', to: '\u{1ff1}', mapping: Disallowed }, + Range { from: '\u{1ff2}', to: '\u{1ff2}', mapping: Mapped(StringTableSlice { byte_start: 2126, byte_len: 5 }) }, + Range { from: '\u{1ff3}', to: '\u{1ff3}', mapping: Mapped(StringTableSlice { byte_start: 2131, byte_len: 4 }) }, + Range { from: '\u{1ff4}', to: '\u{1ff4}', mapping: Mapped(StringTableSlice { byte_start: 2135, byte_len: 4 }) }, + Range { from: '\u{1ff5}', to: '\u{1ff5}', mapping: Disallowed }, + Range { from: '\u{1ff6}', to: '\u{1ff6}', mapping: Valid }, + Range { from: '\u{1ff7}', to: '\u{1ff7}', mapping: Mapped(StringTableSlice { byte_start: 2139, byte_len: 5 }) }, + Range { from: '\u{1ff8}', to: '\u{1ff8}', mapping: Mapped(StringTableSlice { byte_start: 2144, byte_len: 3 }) }, + Range { from: '\u{1ff9}', to: '\u{1ff9}', mapping: Mapped(StringTableSlice { byte_start: 530, byte_len: 2 }) }, + Range { from: '\u{1ffa}', to: '\u{1ffa}', mapping: Mapped(StringTableSlice { byte_start: 2147, byte_len: 3 }) }, + Range { from: '\u{1ffb}', to: '\u{1ffb}', mapping: Mapped(StringTableSlice { byte_start: 534, byte_len: 2 }) }, + Range { from: '\u{1ffc}', to: '\u{1ffc}', mapping: Mapped(StringTableSlice { byte_start: 2131, byte_len: 4 }) }, + Range { from: '\u{1ffd}', to: '\u{1ffd}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 35, byte_len: 3 }) }, + Range { from: '\u{1ffe}', to: '\u{1ffe}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2150, byte_len: 3 }) }, + Range { from: '\u{1fff}', to: '\u{1fff}', mapping: Disallowed }, + Range { from: '\u{2000}', to: '\u{200a}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 26, byte_len: 1 }) }, + Range { from: '\u{200b}', to: '\u{200b}', mapping: Ignored }, + Range { from: '\u{200c}', to: '\u{200d}', mapping: Deviation(StringTableSlice { byte_start: 2153, byte_len: 0 }) }, + Range { from: '\u{200e}', to: '\u{200f}', mapping: Disallowed }, + Range { from: '\u{2010}', to: '\u{2010}', mapping: Valid }, + Range { from: '\u{2011}', to: '\u{2011}', mapping: Mapped(StringTableSlice { byte_start: 2153, byte_len: 3 }) }, + Range { from: '\u{2012}', to: '\u{2016}', mapping: Valid }, + Range { from: '\u{2017}', to: '\u{2017}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2156, byte_len: 3 }) }, + Range { from: '\u{2018}', to: '\u{2023}', mapping: Valid }, + Range { from: '\u{2024}', to: '\u{2026}', mapping: Disallowed }, + Range { from: '\u{2027}', to: '\u{2027}', mapping: Valid }, + Range { from: '\u{2028}', to: '\u{202e}', mapping: Disallowed }, + Range { from: '\u{202f}', to: '\u{202f}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 26, byte_len: 1 }) }, + Range { from: '\u{2030}', to: '\u{2032}', mapping: Valid }, + Range { from: '\u{2033}', to: '\u{2033}', mapping: Mapped(StringTableSlice { byte_start: 2159, byte_len: 6 }) }, + Range { from: '\u{2034}', to: '\u{2034}', mapping: Mapped(StringTableSlice { byte_start: 2165, byte_len: 9 }) }, + Range { from: '\u{2035}', to: '\u{2035}', mapping: Valid }, + Range { from: '\u{2036}', to: '\u{2036}', mapping: Mapped(StringTableSlice { byte_start: 2174, byte_len: 6 }) }, + Range { from: '\u{2037}', to: '\u{2037}', mapping: Mapped(StringTableSlice { byte_start: 2180, byte_len: 9 }) }, + Range { from: '\u{2038}', to: '\u{203b}', mapping: Valid }, + Range { from: '\u{203c}', to: '\u{203c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2189, byte_len: 2 }) }, + Range { from: '\u{203d}', to: '\u{203d}', mapping: Valid }, + Range { from: '\u{203e}', to: '\u{203e}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2191, byte_len: 3 }) }, + Range { from: '\u{203f}', to: '\u{2046}', mapping: Valid }, + Range { from: '\u{2047}', to: '\u{2047}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2194, byte_len: 2 }) }, + Range { from: '\u{2048}', to: '\u{2048}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2196, byte_len: 2 }) }, + Range { from: '\u{2049}', to: '\u{2049}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2198, byte_len: 2 }) }, + Range { from: '\u{204a}', to: '\u{204d}', mapping: Valid }, + Range { from: '\u{204e}', to: '\u{2052}', mapping: Valid }, + Range { from: '\u{2053}', to: '\u{2054}', mapping: Valid }, + Range { from: '\u{2055}', to: '\u{2056}', mapping: Valid }, + Range { from: '\u{2057}', to: '\u{2057}', mapping: Mapped(StringTableSlice { byte_start: 2200, byte_len: 12 }) }, + Range { from: '\u{2058}', to: '\u{205e}', mapping: Valid }, + Range { from: '\u{205f}', to: '\u{205f}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 26, byte_len: 1 }) }, + Range { from: '\u{2060}', to: '\u{2060}', mapping: Ignored }, + Range { from: '\u{2061}', to: '\u{2063}', mapping: Disallowed }, + Range { from: '\u{2064}', to: '\u{2064}', mapping: Ignored }, + Range { from: '\u{2065}', to: '\u{2065}', mapping: Disallowed }, + Range { from: '\u{2066}', to: '\u{2069}', mapping: Disallowed }, + Range { from: '\u{206a}', to: '\u{206f}', mapping: Disallowed }, + Range { from: '\u{2070}', to: '\u{2070}', mapping: Mapped(StringTableSlice { byte_start: 2212, byte_len: 1 }) }, + Range { from: '\u{2071}', to: '\u{2071}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{2072}', to: '\u{2073}', mapping: Disallowed }, + Range { from: '\u{2074}', to: '\u{2074}', mapping: Mapped(StringTableSlice { byte_start: 2213, byte_len: 1 }) }, + Range { from: '\u{2075}', to: '\u{2075}', mapping: Mapped(StringTableSlice { byte_start: 2214, byte_len: 1 }) }, + Range { from: '\u{2076}', to: '\u{2076}', mapping: Mapped(StringTableSlice { byte_start: 2215, byte_len: 1 }) }, + Range { from: '\u{2077}', to: '\u{2077}', mapping: Mapped(StringTableSlice { byte_start: 2216, byte_len: 1 }) }, + Range { from: '\u{2078}', to: '\u{2078}', mapping: Mapped(StringTableSlice { byte_start: 2217, byte_len: 1 }) }, + Range { from: '\u{2079}', to: '\u{2079}', mapping: Mapped(StringTableSlice { byte_start: 2218, byte_len: 1 }) }, + Range { from: '\u{207a}', to: '\u{207a}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2219, byte_len: 1 }) }, + Range { from: '\u{207b}', to: '\u{207b}', mapping: Mapped(StringTableSlice { byte_start: 2220, byte_len: 3 }) }, + Range { from: '\u{207c}', to: '\u{207c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2223, byte_len: 1 }) }, + Range { from: '\u{207d}', to: '\u{207d}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2224, byte_len: 1 }) }, + Range { from: '\u{207e}', to: '\u{207e}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2225, byte_len: 1 }) }, + Range { from: '\u{207f}', to: '\u{207f}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{2080}', to: '\u{2080}', mapping: Mapped(StringTableSlice { byte_start: 2212, byte_len: 1 }) }, + Range { from: '\u{2081}', to: '\u{2081}', mapping: Mapped(StringTableSlice { byte_start: 43, byte_len: 1 }) }, + Range { from: '\u{2082}', to: '\u{2082}', mapping: Mapped(StringTableSlice { byte_start: 33, byte_len: 1 }) }, + Range { from: '\u{2083}', to: '\u{2083}', mapping: Mapped(StringTableSlice { byte_start: 34, byte_len: 1 }) }, + Range { from: '\u{2084}', to: '\u{2084}', mapping: Mapped(StringTableSlice { byte_start: 2213, byte_len: 1 }) }, + Range { from: '\u{2085}', to: '\u{2085}', mapping: Mapped(StringTableSlice { byte_start: 2214, byte_len: 1 }) }, + Range { from: '\u{2086}', to: '\u{2086}', mapping: Mapped(StringTableSlice { byte_start: 2215, byte_len: 1 }) }, + Range { from: '\u{2087}', to: '\u{2087}', mapping: Mapped(StringTableSlice { byte_start: 2216, byte_len: 1 }) }, + Range { from: '\u{2088}', to: '\u{2088}', mapping: Mapped(StringTableSlice { byte_start: 2217, byte_len: 1 }) }, + Range { from: '\u{2089}', to: '\u{2089}', mapping: Mapped(StringTableSlice { byte_start: 2218, byte_len: 1 }) }, + Range { from: '\u{208a}', to: '\u{208a}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2219, byte_len: 1 }) }, + Range { from: '\u{208b}', to: '\u{208b}', mapping: Mapped(StringTableSlice { byte_start: 2220, byte_len: 3 }) }, + Range { from: '\u{208c}', to: '\u{208c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2223, byte_len: 1 }) }, + Range { from: '\u{208d}', to: '\u{208d}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2224, byte_len: 1 }) }, + Range { from: '\u{208e}', to: '\u{208e}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2225, byte_len: 1 }) }, + Range { from: '\u{208f}', to: '\u{208f}', mapping: Disallowed }, + Range { from: '\u{2090}', to: '\u{2090}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{2091}', to: '\u{2091}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{2092}', to: '\u{2092}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{2093}', to: '\u{2093}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{2094}', to: '\u{2094}', mapping: Mapped(StringTableSlice { byte_start: 270, byte_len: 2 }) }, + Range { from: '\u{2095}', to: '\u{2095}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{2096}', to: '\u{2096}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{2097}', to: '\u{2097}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{2098}', to: '\u{2098}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{2099}', to: '\u{2099}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{209a}', to: '\u{209a}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{209b}', to: '\u{209b}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{209c}', to: '\u{209c}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{209d}', to: '\u{209f}', mapping: Disallowed }, + Range { from: '\u{20a0}', to: '\u{20a7}', mapping: Valid }, + Range { from: '\u{20a8}', to: '\u{20a8}', mapping: Mapped(StringTableSlice { byte_start: 2226, byte_len: 2 }) }, + Range { from: '\u{20a9}', to: '\u{20aa}', mapping: Valid }, + Range { from: '\u{20ab}', to: '\u{20ab}', mapping: Valid }, + Range { from: '\u{20ac}', to: '\u{20ac}', mapping: Valid }, + Range { from: '\u{20ad}', to: '\u{20af}', mapping: Valid }, + Range { from: '\u{20b0}', to: '\u{20b1}', mapping: Valid }, + Range { from: '\u{20b2}', to: '\u{20b5}', mapping: Valid }, + Range { from: '\u{20b6}', to: '\u{20b8}', mapping: Valid }, + Range { from: '\u{20b9}', to: '\u{20b9}', mapping: Valid }, + Range { from: '\u{20ba}', to: '\u{20ba}', mapping: Valid }, + Range { from: '\u{20bb}', to: '\u{20bd}', mapping: Valid }, + Range { from: '\u{20be}', to: '\u{20be}', mapping: Valid }, + Range { from: '\u{20bf}', to: '\u{20cf}', mapping: Disallowed }, + Range { from: '\u{20d0}', to: '\u{20e1}', mapping: Valid }, + Range { from: '\u{20e2}', to: '\u{20e3}', mapping: Valid }, + Range { from: '\u{20e4}', to: '\u{20ea}', mapping: Valid }, + Range { from: '\u{20eb}', to: '\u{20eb}', mapping: Valid }, + Range { from: '\u{20ec}', to: '\u{20ef}', mapping: Valid }, + Range { from: '\u{20f0}', to: '\u{20f0}', mapping: Valid }, + Range { from: '\u{20f1}', to: '\u{20ff}', mapping: Disallowed }, + Range { from: '\u{2100}', to: '\u{2100}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2228, byte_len: 3 }) }, + Range { from: '\u{2101}', to: '\u{2101}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2231, byte_len: 3 }) }, + Range { from: '\u{2102}', to: '\u{2102}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{2103}', to: '\u{2103}', mapping: Mapped(StringTableSlice { byte_start: 2234, byte_len: 3 }) }, + Range { from: '\u{2104}', to: '\u{2104}', mapping: Valid }, + Range { from: '\u{2105}', to: '\u{2105}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2237, byte_len: 3 }) }, + Range { from: '\u{2106}', to: '\u{2106}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2240, byte_len: 3 }) }, + Range { from: '\u{2107}', to: '\u{2107}', mapping: Mapped(StringTableSlice { byte_start: 272, byte_len: 2 }) }, + Range { from: '\u{2108}', to: '\u{2108}', mapping: Valid }, + Range { from: '\u{2109}', to: '\u{2109}', mapping: Mapped(StringTableSlice { byte_start: 2243, byte_len: 3 }) }, + Range { from: '\u{210a}', to: '\u{210a}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{210b}', to: '\u{210e}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{210f}', to: '\u{210f}', mapping: Mapped(StringTableSlice { byte_start: 159, byte_len: 2 }) }, + Range { from: '\u{2110}', to: '\u{2111}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{2112}', to: '\u{2113}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{2114}', to: '\u{2114}', mapping: Valid }, + Range { from: '\u{2115}', to: '\u{2115}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{2116}', to: '\u{2116}', mapping: Mapped(StringTableSlice { byte_start: 2246, byte_len: 2 }) }, + Range { from: '\u{2117}', to: '\u{2118}', mapping: Valid }, + Range { from: '\u{2119}', to: '\u{2119}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{211a}', to: '\u{211a}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{211b}', to: '\u{211d}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{211e}', to: '\u{211f}', mapping: Valid }, + Range { from: '\u{2120}', to: '\u{2120}', mapping: Mapped(StringTableSlice { byte_start: 2248, byte_len: 2 }) }, + Range { from: '\u{2121}', to: '\u{2121}', mapping: Mapped(StringTableSlice { byte_start: 2250, byte_len: 3 }) }, + Range { from: '\u{2122}', to: '\u{2122}', mapping: Mapped(StringTableSlice { byte_start: 2253, byte_len: 2 }) }, + Range { from: '\u{2123}', to: '\u{2123}', mapping: Valid }, + Range { from: '\u{2124}', to: '\u{2124}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{2125}', to: '\u{2125}', mapping: Valid }, + Range { from: '\u{2126}', to: '\u{2126}', mapping: Mapped(StringTableSlice { byte_start: 578, byte_len: 2 }) }, + Range { from: '\u{2127}', to: '\u{2127}', mapping: Valid }, + Range { from: '\u{2128}', to: '\u{2128}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{2129}', to: '\u{2129}', mapping: Valid }, + Range { from: '\u{212a}', to: '\u{212a}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{212b}', to: '\u{212b}', mapping: Mapped(StringTableSlice { byte_start: 69, byte_len: 2 }) }, + Range { from: '\u{212c}', to: '\u{212c}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{212d}', to: '\u{212d}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{212e}', to: '\u{212e}', mapping: Valid }, + Range { from: '\u{212f}', to: '\u{2130}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{2131}', to: '\u{2131}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{2132}', to: '\u{2132}', mapping: Disallowed }, + Range { from: '\u{2133}', to: '\u{2133}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{2134}', to: '\u{2134}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{2135}', to: '\u{2135}', mapping: Mapped(StringTableSlice { byte_start: 2255, byte_len: 2 }) }, + Range { from: '\u{2136}', to: '\u{2136}', mapping: Mapped(StringTableSlice { byte_start: 2257, byte_len: 2 }) }, + Range { from: '\u{2137}', to: '\u{2137}', mapping: Mapped(StringTableSlice { byte_start: 2259, byte_len: 2 }) }, + Range { from: '\u{2138}', to: '\u{2138}', mapping: Mapped(StringTableSlice { byte_start: 2261, byte_len: 2 }) }, + Range { from: '\u{2139}', to: '\u{2139}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{213a}', to: '\u{213a}', mapping: Valid }, + Range { from: '\u{213b}', to: '\u{213b}', mapping: Mapped(StringTableSlice { byte_start: 2263, byte_len: 3 }) }, + Range { from: '\u{213c}', to: '\u{213c}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{213d}', to: '\u{213e}', mapping: Mapped(StringTableSlice { byte_start: 540, byte_len: 2 }) }, + Range { from: '\u{213f}', to: '\u{213f}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{2140}', to: '\u{2140}', mapping: Mapped(StringTableSlice { byte_start: 2266, byte_len: 3 }) }, + Range { from: '\u{2141}', to: '\u{2144}', mapping: Valid }, + Range { from: '\u{2145}', to: '\u{2146}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{2147}', to: '\u{2147}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{2148}', to: '\u{2148}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{2149}', to: '\u{2149}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{214a}', to: '\u{214b}', mapping: Valid }, + Range { from: '\u{214c}', to: '\u{214c}', mapping: Valid }, + Range { from: '\u{214d}', to: '\u{214d}', mapping: Valid }, + Range { from: '\u{214e}', to: '\u{214e}', mapping: Valid }, + Range { from: '\u{214f}', to: '\u{214f}', mapping: Valid }, + Range { from: '\u{2150}', to: '\u{2150}', mapping: Mapped(StringTableSlice { byte_start: 2269, byte_len: 5 }) }, + Range { from: '\u{2151}', to: '\u{2151}', mapping: Mapped(StringTableSlice { byte_start: 2274, byte_len: 5 }) }, + Range { from: '\u{2152}', to: '\u{2152}', mapping: Mapped(StringTableSlice { byte_start: 2279, byte_len: 6 }) }, + Range { from: '\u{2153}', to: '\u{2153}', mapping: Mapped(StringTableSlice { byte_start: 2285, byte_len: 5 }) }, + Range { from: '\u{2154}', to: '\u{2154}', mapping: Mapped(StringTableSlice { byte_start: 2290, byte_len: 5 }) }, + Range { from: '\u{2155}', to: '\u{2155}', mapping: Mapped(StringTableSlice { byte_start: 2295, byte_len: 5 }) }, + Range { from: '\u{2156}', to: '\u{2156}', mapping: Mapped(StringTableSlice { byte_start: 2300, byte_len: 5 }) }, + Range { from: '\u{2157}', to: '\u{2157}', mapping: Mapped(StringTableSlice { byte_start: 2305, byte_len: 5 }) }, + Range { from: '\u{2158}', to: '\u{2158}', mapping: Mapped(StringTableSlice { byte_start: 2310, byte_len: 5 }) }, + Range { from: '\u{2159}', to: '\u{2159}', mapping: Mapped(StringTableSlice { byte_start: 2315, byte_len: 5 }) }, + Range { from: '\u{215a}', to: '\u{215a}', mapping: Mapped(StringTableSlice { byte_start: 2320, byte_len: 5 }) }, + Range { from: '\u{215b}', to: '\u{215b}', mapping: Mapped(StringTableSlice { byte_start: 2325, byte_len: 5 }) }, + Range { from: '\u{215c}', to: '\u{215c}', mapping: Mapped(StringTableSlice { byte_start: 2330, byte_len: 5 }) }, + Range { from: '\u{215d}', to: '\u{215d}', mapping: Mapped(StringTableSlice { byte_start: 2335, byte_len: 5 }) }, + Range { from: '\u{215e}', to: '\u{215e}', mapping: Mapped(StringTableSlice { byte_start: 2340, byte_len: 5 }) }, + Range { from: '\u{215f}', to: '\u{215f}', mapping: Mapped(StringTableSlice { byte_start: 2345, byte_len: 4 }) }, + Range { from: '\u{2160}', to: '\u{2160}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{2161}', to: '\u{2161}', mapping: Mapped(StringTableSlice { byte_start: 2349, byte_len: 2 }) }, + Range { from: '\u{2162}', to: '\u{2162}', mapping: Mapped(StringTableSlice { byte_start: 2351, byte_len: 3 }) }, + Range { from: '\u{2163}', to: '\u{2163}', mapping: Mapped(StringTableSlice { byte_start: 2354, byte_len: 2 }) }, + Range { from: '\u{2164}', to: '\u{2164}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{2165}', to: '\u{2165}', mapping: Mapped(StringTableSlice { byte_start: 2356, byte_len: 2 }) }, + Range { from: '\u{2166}', to: '\u{2166}', mapping: Mapped(StringTableSlice { byte_start: 2358, byte_len: 3 }) }, + Range { from: '\u{2167}', to: '\u{2167}', mapping: Mapped(StringTableSlice { byte_start: 2361, byte_len: 4 }) }, + Range { from: '\u{2168}', to: '\u{2168}', mapping: Mapped(StringTableSlice { byte_start: 2365, byte_len: 2 }) }, + Range { from: '\u{2169}', to: '\u{2169}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{216a}', to: '\u{216a}', mapping: Mapped(StringTableSlice { byte_start: 2367, byte_len: 2 }) }, + Range { from: '\u{216b}', to: '\u{216b}', mapping: Mapped(StringTableSlice { byte_start: 2369, byte_len: 3 }) }, + Range { from: '\u{216c}', to: '\u{216c}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{216d}', to: '\u{216d}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{216e}', to: '\u{216e}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{216f}', to: '\u{216f}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{2170}', to: '\u{2170}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{2171}', to: '\u{2171}', mapping: Mapped(StringTableSlice { byte_start: 2349, byte_len: 2 }) }, + Range { from: '\u{2172}', to: '\u{2172}', mapping: Mapped(StringTableSlice { byte_start: 2351, byte_len: 3 }) }, + Range { from: '\u{2173}', to: '\u{2173}', mapping: Mapped(StringTableSlice { byte_start: 2354, byte_len: 2 }) }, + Range { from: '\u{2174}', to: '\u{2174}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{2175}', to: '\u{2175}', mapping: Mapped(StringTableSlice { byte_start: 2356, byte_len: 2 }) }, + Range { from: '\u{2176}', to: '\u{2176}', mapping: Mapped(StringTableSlice { byte_start: 2358, byte_len: 3 }) }, + Range { from: '\u{2177}', to: '\u{2177}', mapping: Mapped(StringTableSlice { byte_start: 2361, byte_len: 4 }) }, + Range { from: '\u{2178}', to: '\u{2178}', mapping: Mapped(StringTableSlice { byte_start: 2365, byte_len: 2 }) }, + Range { from: '\u{2179}', to: '\u{2179}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{217a}', to: '\u{217a}', mapping: Mapped(StringTableSlice { byte_start: 2367, byte_len: 2 }) }, + Range { from: '\u{217b}', to: '\u{217b}', mapping: Mapped(StringTableSlice { byte_start: 2369, byte_len: 3 }) }, + Range { from: '\u{217c}', to: '\u{217c}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{217d}', to: '\u{217d}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{217e}', to: '\u{217e}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{217f}', to: '\u{217f}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{2180}', to: '\u{2182}', mapping: Valid }, + Range { from: '\u{2183}', to: '\u{2183}', mapping: Disallowed }, + Range { from: '\u{2184}', to: '\u{2184}', mapping: Valid }, + Range { from: '\u{2185}', to: '\u{2188}', mapping: Valid }, + Range { from: '\u{2189}', to: '\u{2189}', mapping: Mapped(StringTableSlice { byte_start: 2372, byte_len: 5 }) }, + Range { from: '\u{218a}', to: '\u{218b}', mapping: Valid }, + Range { from: '\u{218c}', to: '\u{218f}', mapping: Disallowed }, + Range { from: '\u{2190}', to: '\u{21ea}', mapping: Valid }, + Range { from: '\u{21eb}', to: '\u{21f3}', mapping: Valid }, + Range { from: '\u{21f4}', to: '\u{21ff}', mapping: Valid }, + Range { from: '\u{2200}', to: '\u{222b}', mapping: Valid }, + Range { from: '\u{222c}', to: '\u{222c}', mapping: Mapped(StringTableSlice { byte_start: 2377, byte_len: 6 }) }, + Range { from: '\u{222d}', to: '\u{222d}', mapping: Mapped(StringTableSlice { byte_start: 2383, byte_len: 9 }) }, + Range { from: '\u{222e}', to: '\u{222e}', mapping: Valid }, + Range { from: '\u{222f}', to: '\u{222f}', mapping: Mapped(StringTableSlice { byte_start: 2392, byte_len: 6 }) }, + Range { from: '\u{2230}', to: '\u{2230}', mapping: Mapped(StringTableSlice { byte_start: 2398, byte_len: 9 }) }, + Range { from: '\u{2231}', to: '\u{225f}', mapping: Valid }, + Range { from: '\u{2260}', to: '\u{2260}', mapping: DisallowedStd3Valid }, + Range { from: '\u{2261}', to: '\u{226d}', mapping: Valid }, + Range { from: '\u{226e}', to: '\u{226f}', mapping: DisallowedStd3Valid }, + Range { from: '\u{2270}', to: '\u{22f1}', mapping: Valid }, + Range { from: '\u{22f2}', to: '\u{22ff}', mapping: Valid }, + Range { from: '\u{2300}', to: '\u{2300}', mapping: Valid }, + Range { from: '\u{2301}', to: '\u{2301}', mapping: Valid }, + Range { from: '\u{2302}', to: '\u{2328}', mapping: Valid }, + Range { from: '\u{2329}', to: '\u{2329}', mapping: Mapped(StringTableSlice { byte_start: 2407, byte_len: 3 }) }, + Range { from: '\u{232a}', to: '\u{232a}', mapping: Mapped(StringTableSlice { byte_start: 2410, byte_len: 3 }) }, + Range { from: '\u{232b}', to: '\u{237a}', mapping: Valid }, + Range { from: '\u{237b}', to: '\u{237b}', mapping: Valid }, + Range { from: '\u{237c}', to: '\u{237c}', mapping: Valid }, + Range { from: '\u{237d}', to: '\u{239a}', mapping: Valid }, + Range { from: '\u{239b}', to: '\u{23ce}', mapping: Valid }, + Range { from: '\u{23cf}', to: '\u{23d0}', mapping: Valid }, + Range { from: '\u{23d1}', to: '\u{23db}', mapping: Valid }, + Range { from: '\u{23dc}', to: '\u{23e7}', mapping: Valid }, + Range { from: '\u{23e8}', to: '\u{23e8}', mapping: Valid }, + Range { from: '\u{23e9}', to: '\u{23f3}', mapping: Valid }, + Range { from: '\u{23f4}', to: '\u{23fa}', mapping: Valid }, + Range { from: '\u{23fb}', to: '\u{23fe}', mapping: Valid }, + Range { from: '\u{23ff}', to: '\u{23ff}', mapping: Disallowed }, + Range { from: '\u{2400}', to: '\u{2424}', mapping: Valid }, + Range { from: '\u{2425}', to: '\u{2426}', mapping: Valid }, + Range { from: '\u{2427}', to: '\u{243f}', mapping: Disallowed }, + Range { from: '\u{2440}', to: '\u{244a}', mapping: Valid }, + Range { from: '\u{244b}', to: '\u{245f}', mapping: Disallowed }, + Range { from: '\u{2460}', to: '\u{2460}', mapping: Mapped(StringTableSlice { byte_start: 43, byte_len: 1 }) }, + Range { from: '\u{2461}', to: '\u{2461}', mapping: Mapped(StringTableSlice { byte_start: 33, byte_len: 1 }) }, + Range { from: '\u{2462}', to: '\u{2462}', mapping: Mapped(StringTableSlice { byte_start: 34, byte_len: 1 }) }, + Range { from: '\u{2463}', to: '\u{2463}', mapping: Mapped(StringTableSlice { byte_start: 2213, byte_len: 1 }) }, + Range { from: '\u{2464}', to: '\u{2464}', mapping: Mapped(StringTableSlice { byte_start: 2214, byte_len: 1 }) }, + Range { from: '\u{2465}', to: '\u{2465}', mapping: Mapped(StringTableSlice { byte_start: 2215, byte_len: 1 }) }, + Range { from: '\u{2466}', to: '\u{2466}', mapping: Mapped(StringTableSlice { byte_start: 2216, byte_len: 1 }) }, + Range { from: '\u{2467}', to: '\u{2467}', mapping: Mapped(StringTableSlice { byte_start: 2217, byte_len: 1 }) }, + Range { from: '\u{2468}', to: '\u{2468}', mapping: Mapped(StringTableSlice { byte_start: 2218, byte_len: 1 }) }, + Range { from: '\u{2469}', to: '\u{2469}', mapping: Mapped(StringTableSlice { byte_start: 2413, byte_len: 2 }) }, + Range { from: '\u{246a}', to: '\u{246a}', mapping: Mapped(StringTableSlice { byte_start: 2415, byte_len: 2 }) }, + Range { from: '\u{246b}', to: '\u{246b}', mapping: Mapped(StringTableSlice { byte_start: 2417, byte_len: 2 }) }, + Range { from: '\u{246c}', to: '\u{246c}', mapping: Mapped(StringTableSlice { byte_start: 2419, byte_len: 2 }) }, + Range { from: '\u{246d}', to: '\u{246d}', mapping: Mapped(StringTableSlice { byte_start: 2421, byte_len: 2 }) }, + Range { from: '\u{246e}', to: '\u{246e}', mapping: Mapped(StringTableSlice { byte_start: 2423, byte_len: 2 }) }, + Range { from: '\u{246f}', to: '\u{246f}', mapping: Mapped(StringTableSlice { byte_start: 2425, byte_len: 2 }) }, + Range { from: '\u{2470}', to: '\u{2470}', mapping: Mapped(StringTableSlice { byte_start: 2427, byte_len: 2 }) }, + Range { from: '\u{2471}', to: '\u{2471}', mapping: Mapped(StringTableSlice { byte_start: 2429, byte_len: 2 }) }, + Range { from: '\u{2472}', to: '\u{2472}', mapping: Mapped(StringTableSlice { byte_start: 2431, byte_len: 2 }) }, + Range { from: '\u{2473}', to: '\u{2473}', mapping: Mapped(StringTableSlice { byte_start: 2433, byte_len: 2 }) }, + Range { from: '\u{2474}', to: '\u{2474}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2435, byte_len: 3 }) }, + Range { from: '\u{2475}', to: '\u{2475}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2438, byte_len: 3 }) }, + Range { from: '\u{2476}', to: '\u{2476}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2441, byte_len: 3 }) }, + Range { from: '\u{2477}', to: '\u{2477}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2444, byte_len: 3 }) }, + Range { from: '\u{2478}', to: '\u{2478}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2447, byte_len: 3 }) }, + Range { from: '\u{2479}', to: '\u{2479}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2450, byte_len: 3 }) }, + Range { from: '\u{247a}', to: '\u{247a}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2453, byte_len: 3 }) }, + Range { from: '\u{247b}', to: '\u{247b}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2456, byte_len: 3 }) }, + Range { from: '\u{247c}', to: '\u{247c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2459, byte_len: 3 }) }, + Range { from: '\u{247d}', to: '\u{247d}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2462, byte_len: 4 }) }, + Range { from: '\u{247e}', to: '\u{247e}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2466, byte_len: 4 }) }, + Range { from: '\u{247f}', to: '\u{247f}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2470, byte_len: 4 }) }, + Range { from: '\u{2480}', to: '\u{2480}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2474, byte_len: 4 }) }, + Range { from: '\u{2481}', to: '\u{2481}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2478, byte_len: 4 }) }, + Range { from: '\u{2482}', to: '\u{2482}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2482, byte_len: 4 }) }, + Range { from: '\u{2483}', to: '\u{2483}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2486, byte_len: 4 }) }, + Range { from: '\u{2484}', to: '\u{2484}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2490, byte_len: 4 }) }, + Range { from: '\u{2485}', to: '\u{2485}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2494, byte_len: 4 }) }, + Range { from: '\u{2486}', to: '\u{2486}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2498, byte_len: 4 }) }, + Range { from: '\u{2487}', to: '\u{2487}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2502, byte_len: 4 }) }, + Range { from: '\u{2488}', to: '\u{249b}', mapping: Disallowed }, + Range { from: '\u{249c}', to: '\u{249c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2506, byte_len: 3 }) }, + Range { from: '\u{249d}', to: '\u{249d}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2509, byte_len: 3 }) }, + Range { from: '\u{249e}', to: '\u{249e}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2512, byte_len: 3 }) }, + Range { from: '\u{249f}', to: '\u{249f}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2515, byte_len: 3 }) }, + Range { from: '\u{24a0}', to: '\u{24a0}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2518, byte_len: 3 }) }, + Range { from: '\u{24a1}', to: '\u{24a1}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2521, byte_len: 3 }) }, + Range { from: '\u{24a2}', to: '\u{24a2}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2524, byte_len: 3 }) }, + Range { from: '\u{24a3}', to: '\u{24a3}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2527, byte_len: 3 }) }, + Range { from: '\u{24a4}', to: '\u{24a4}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2530, byte_len: 3 }) }, + Range { from: '\u{24a5}', to: '\u{24a5}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2533, byte_len: 3 }) }, + Range { from: '\u{24a6}', to: '\u{24a6}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2536, byte_len: 3 }) }, + Range { from: '\u{24a7}', to: '\u{24a7}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2539, byte_len: 3 }) }, + Range { from: '\u{24a8}', to: '\u{24a8}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2542, byte_len: 3 }) }, + Range { from: '\u{24a9}', to: '\u{24a9}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2545, byte_len: 3 }) }, + Range { from: '\u{24aa}', to: '\u{24aa}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2548, byte_len: 3 }) }, + Range { from: '\u{24ab}', to: '\u{24ab}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2551, byte_len: 3 }) }, + Range { from: '\u{24ac}', to: '\u{24ac}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2554, byte_len: 3 }) }, + Range { from: '\u{24ad}', to: '\u{24ad}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2557, byte_len: 3 }) }, + Range { from: '\u{24ae}', to: '\u{24ae}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2560, byte_len: 3 }) }, + Range { from: '\u{24af}', to: '\u{24af}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2563, byte_len: 3 }) }, + Range { from: '\u{24b0}', to: '\u{24b0}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2566, byte_len: 3 }) }, + Range { from: '\u{24b1}', to: '\u{24b1}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2569, byte_len: 3 }) }, + Range { from: '\u{24b2}', to: '\u{24b2}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2572, byte_len: 3 }) }, + Range { from: '\u{24b3}', to: '\u{24b3}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2575, byte_len: 3 }) }, + Range { from: '\u{24b4}', to: '\u{24b4}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2578, byte_len: 3 }) }, + Range { from: '\u{24b5}', to: '\u{24b5}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2581, byte_len: 3 }) }, + Range { from: '\u{24b6}', to: '\u{24b6}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{24b7}', to: '\u{24b7}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{24b8}', to: '\u{24b8}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{24b9}', to: '\u{24b9}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{24ba}', to: '\u{24ba}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{24bb}', to: '\u{24bb}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{24bc}', to: '\u{24bc}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{24bd}', to: '\u{24bd}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{24be}', to: '\u{24be}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{24bf}', to: '\u{24bf}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{24c0}', to: '\u{24c0}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{24c1}', to: '\u{24c1}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{24c2}', to: '\u{24c2}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{24c3}', to: '\u{24c3}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{24c4}', to: '\u{24c4}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{24c5}', to: '\u{24c5}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{24c6}', to: '\u{24c6}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{24c7}', to: '\u{24c7}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{24c8}', to: '\u{24c8}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{24c9}', to: '\u{24c9}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{24ca}', to: '\u{24ca}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{24cb}', to: '\u{24cb}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{24cc}', to: '\u{24cc}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{24cd}', to: '\u{24cd}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{24ce}', to: '\u{24ce}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{24cf}', to: '\u{24cf}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{24d0}', to: '\u{24d0}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{24d1}', to: '\u{24d1}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{24d2}', to: '\u{24d2}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{24d3}', to: '\u{24d3}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{24d4}', to: '\u{24d4}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{24d5}', to: '\u{24d5}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{24d6}', to: '\u{24d6}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{24d7}', to: '\u{24d7}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{24d8}', to: '\u{24d8}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{24d9}', to: '\u{24d9}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{24da}', to: '\u{24da}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{24db}', to: '\u{24db}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{24dc}', to: '\u{24dc}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{24dd}', to: '\u{24dd}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{24de}', to: '\u{24de}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{24df}', to: '\u{24df}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{24e0}', to: '\u{24e0}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{24e1}', to: '\u{24e1}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{24e2}', to: '\u{24e2}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{24e3}', to: '\u{24e3}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{24e4}', to: '\u{24e4}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{24e5}', to: '\u{24e5}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{24e6}', to: '\u{24e6}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{24e7}', to: '\u{24e7}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{24e8}', to: '\u{24e8}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{24e9}', to: '\u{24e9}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{24ea}', to: '\u{24ea}', mapping: Mapped(StringTableSlice { byte_start: 2212, byte_len: 1 }) }, + Range { from: '\u{24eb}', to: '\u{24fe}', mapping: Valid }, + Range { from: '\u{24ff}', to: '\u{24ff}', mapping: Valid }, + Range { from: '\u{2500}', to: '\u{2595}', mapping: Valid }, + Range { from: '\u{2596}', to: '\u{259f}', mapping: Valid }, + Range { from: '\u{25a0}', to: '\u{25ef}', mapping: Valid }, + Range { from: '\u{25f0}', to: '\u{25f7}', mapping: Valid }, + Range { from: '\u{25f8}', to: '\u{25ff}', mapping: Valid }, + Range { from: '\u{2600}', to: '\u{2613}', mapping: Valid }, + Range { from: '\u{2614}', to: '\u{2615}', mapping: Valid }, + Range { from: '\u{2616}', to: '\u{2617}', mapping: Valid }, + Range { from: '\u{2618}', to: '\u{2618}', mapping: Valid }, + Range { from: '\u{2619}', to: '\u{2619}', mapping: Valid }, + Range { from: '\u{261a}', to: '\u{266f}', mapping: Valid }, + Range { from: '\u{2670}', to: '\u{2671}', mapping: Valid }, + Range { from: '\u{2672}', to: '\u{267d}', mapping: Valid }, + Range { from: '\u{267e}', to: '\u{267f}', mapping: Valid }, + Range { from: '\u{2680}', to: '\u{2689}', mapping: Valid }, + Range { from: '\u{268a}', to: '\u{2691}', mapping: Valid }, + Range { from: '\u{2692}', to: '\u{269c}', mapping: Valid }, + Range { from: '\u{269d}', to: '\u{269d}', mapping: Valid }, + Range { from: '\u{269e}', to: '\u{269f}', mapping: Valid }, + Range { from: '\u{26a0}', to: '\u{26a1}', mapping: Valid }, + Range { from: '\u{26a2}', to: '\u{26b1}', mapping: Valid }, + Range { from: '\u{26b2}', to: '\u{26b2}', mapping: Valid }, + Range { from: '\u{26b3}', to: '\u{26bc}', mapping: Valid }, + Range { from: '\u{26bd}', to: '\u{26bf}', mapping: Valid }, + Range { from: '\u{26c0}', to: '\u{26c3}', mapping: Valid }, + Range { from: '\u{26c4}', to: '\u{26cd}', mapping: Valid }, + Range { from: '\u{26ce}', to: '\u{26ce}', mapping: Valid }, + Range { from: '\u{26cf}', to: '\u{26e1}', mapping: Valid }, + Range { from: '\u{26e2}', to: '\u{26e2}', mapping: Valid }, + Range { from: '\u{26e3}', to: '\u{26e3}', mapping: Valid }, + Range { from: '\u{26e4}', to: '\u{26e7}', mapping: Valid }, + Range { from: '\u{26e8}', to: '\u{26ff}', mapping: Valid }, + Range { from: '\u{2700}', to: '\u{2700}', mapping: Valid }, + Range { from: '\u{2701}', to: '\u{2704}', mapping: Valid }, + Range { from: '\u{2705}', to: '\u{2705}', mapping: Valid }, + Range { from: '\u{2706}', to: '\u{2709}', mapping: Valid }, + Range { from: '\u{270a}', to: '\u{270b}', mapping: Valid }, + Range { from: '\u{270c}', to: '\u{2727}', mapping: Valid }, + Range { from: '\u{2728}', to: '\u{2728}', mapping: Valid }, + Range { from: '\u{2729}', to: '\u{274b}', mapping: Valid }, + Range { from: '\u{274c}', to: '\u{274c}', mapping: Valid }, + Range { from: '\u{274d}', to: '\u{274d}', mapping: Valid }, + Range { from: '\u{274e}', to: '\u{274e}', mapping: Valid }, + Range { from: '\u{274f}', to: '\u{2752}', mapping: Valid }, + Range { from: '\u{2753}', to: '\u{2755}', mapping: Valid }, + Range { from: '\u{2756}', to: '\u{2756}', mapping: Valid }, + Range { from: '\u{2757}', to: '\u{2757}', mapping: Valid }, + Range { from: '\u{2758}', to: '\u{275e}', mapping: Valid }, + Range { from: '\u{275f}', to: '\u{2760}', mapping: Valid }, + Range { from: '\u{2761}', to: '\u{2767}', mapping: Valid }, + Range { from: '\u{2768}', to: '\u{2775}', mapping: Valid }, + Range { from: '\u{2776}', to: '\u{2794}', mapping: Valid }, + Range { from: '\u{2795}', to: '\u{2797}', mapping: Valid }, + Range { from: '\u{2798}', to: '\u{27af}', mapping: Valid }, + Range { from: '\u{27b0}', to: '\u{27b0}', mapping: Valid }, + Range { from: '\u{27b1}', to: '\u{27be}', mapping: Valid }, + Range { from: '\u{27bf}', to: '\u{27bf}', mapping: Valid }, + Range { from: '\u{27c0}', to: '\u{27c6}', mapping: Valid }, + Range { from: '\u{27c7}', to: '\u{27ca}', mapping: Valid }, + Range { from: '\u{27cb}', to: '\u{27cb}', mapping: Valid }, + Range { from: '\u{27cc}', to: '\u{27cc}', mapping: Valid }, + Range { from: '\u{27cd}', to: '\u{27cd}', mapping: Valid }, + Range { from: '\u{27ce}', to: '\u{27cf}', mapping: Valid }, + Range { from: '\u{27d0}', to: '\u{27eb}', mapping: Valid }, + Range { from: '\u{27ec}', to: '\u{27ef}', mapping: Valid }, + Range { from: '\u{27f0}', to: '\u{27ff}', mapping: Valid }, + Range { from: '\u{2800}', to: '\u{28ff}', mapping: Valid }, + Range { from: '\u{2900}', to: '\u{2a0b}', mapping: Valid }, + Range { from: '\u{2a0c}', to: '\u{2a0c}', mapping: Mapped(StringTableSlice { byte_start: 2584, byte_len: 12 }) }, + Range { from: '\u{2a0d}', to: '\u{2a73}', mapping: Valid }, + Range { from: '\u{2a74}', to: '\u{2a74}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2596, byte_len: 3 }) }, + Range { from: '\u{2a75}', to: '\u{2a75}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2599, byte_len: 2 }) }, + Range { from: '\u{2a76}', to: '\u{2a76}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2601, byte_len: 3 }) }, + Range { from: '\u{2a77}', to: '\u{2adb}', mapping: Valid }, + Range { from: '\u{2adc}', to: '\u{2adc}', mapping: Mapped(StringTableSlice { byte_start: 2604, byte_len: 5 }) }, + Range { from: '\u{2add}', to: '\u{2aff}', mapping: Valid }, + Range { from: '\u{2b00}', to: '\u{2b0d}', mapping: Valid }, + Range { from: '\u{2b0e}', to: '\u{2b13}', mapping: Valid }, + Range { from: '\u{2b14}', to: '\u{2b1a}', mapping: Valid }, + Range { from: '\u{2b1b}', to: '\u{2b1f}', mapping: Valid }, + Range { from: '\u{2b20}', to: '\u{2b23}', mapping: Valid }, + Range { from: '\u{2b24}', to: '\u{2b4c}', mapping: Valid }, + Range { from: '\u{2b4d}', to: '\u{2b4f}', mapping: Valid }, + Range { from: '\u{2b50}', to: '\u{2b54}', mapping: Valid }, + Range { from: '\u{2b55}', to: '\u{2b59}', mapping: Valid }, + Range { from: '\u{2b5a}', to: '\u{2b73}', mapping: Valid }, + Range { from: '\u{2b74}', to: '\u{2b75}', mapping: Disallowed }, + Range { from: '\u{2b76}', to: '\u{2b95}', mapping: Valid }, + Range { from: '\u{2b96}', to: '\u{2b97}', mapping: Disallowed }, + Range { from: '\u{2b98}', to: '\u{2bb9}', mapping: Valid }, + Range { from: '\u{2bba}', to: '\u{2bbc}', mapping: Disallowed }, + Range { from: '\u{2bbd}', to: '\u{2bc8}', mapping: Valid }, + Range { from: '\u{2bc9}', to: '\u{2bc9}', mapping: Disallowed }, + Range { from: '\u{2bca}', to: '\u{2bd1}', mapping: Valid }, + Range { from: '\u{2bd2}', to: '\u{2beb}', mapping: Disallowed }, + Range { from: '\u{2bec}', to: '\u{2bef}', mapping: Valid }, + Range { from: '\u{2bf0}', to: '\u{2bff}', mapping: Disallowed }, + Range { from: '\u{2c00}', to: '\u{2c00}', mapping: Mapped(StringTableSlice { byte_start: 2609, byte_len: 3 }) }, + Range { from: '\u{2c01}', to: '\u{2c01}', mapping: Mapped(StringTableSlice { byte_start: 2612, byte_len: 3 }) }, + Range { from: '\u{2c02}', to: '\u{2c02}', mapping: Mapped(StringTableSlice { byte_start: 2615, byte_len: 3 }) }, + Range { from: '\u{2c03}', to: '\u{2c03}', mapping: Mapped(StringTableSlice { byte_start: 2618, byte_len: 3 }) }, + Range { from: '\u{2c04}', to: '\u{2c04}', mapping: Mapped(StringTableSlice { byte_start: 2621, byte_len: 3 }) }, + Range { from: '\u{2c05}', to: '\u{2c05}', mapping: Mapped(StringTableSlice { byte_start: 2624, byte_len: 3 }) }, + Range { from: '\u{2c06}', to: '\u{2c06}', mapping: Mapped(StringTableSlice { byte_start: 2627, byte_len: 3 }) }, + Range { from: '\u{2c07}', to: '\u{2c07}', mapping: Mapped(StringTableSlice { byte_start: 2630, byte_len: 3 }) }, + Range { from: '\u{2c08}', to: '\u{2c08}', mapping: Mapped(StringTableSlice { byte_start: 2633, byte_len: 3 }) }, + Range { from: '\u{2c09}', to: '\u{2c09}', mapping: Mapped(StringTableSlice { byte_start: 2636, byte_len: 3 }) }, + Range { from: '\u{2c0a}', to: '\u{2c0a}', mapping: Mapped(StringTableSlice { byte_start: 2639, byte_len: 3 }) }, + Range { from: '\u{2c0b}', to: '\u{2c0b}', mapping: Mapped(StringTableSlice { byte_start: 2642, byte_len: 3 }) }, + Range { from: '\u{2c0c}', to: '\u{2c0c}', mapping: Mapped(StringTableSlice { byte_start: 2645, byte_len: 3 }) }, + Range { from: '\u{2c0d}', to: '\u{2c0d}', mapping: Mapped(StringTableSlice { byte_start: 2648, byte_len: 3 }) }, + Range { from: '\u{2c0e}', to: '\u{2c0e}', mapping: Mapped(StringTableSlice { byte_start: 2651, byte_len: 3 }) }, + Range { from: '\u{2c0f}', to: '\u{2c0f}', mapping: Mapped(StringTableSlice { byte_start: 2654, byte_len: 3 }) }, + Range { from: '\u{2c10}', to: '\u{2c10}', mapping: Mapped(StringTableSlice { byte_start: 2657, byte_len: 3 }) }, + Range { from: '\u{2c11}', to: '\u{2c11}', mapping: Mapped(StringTableSlice { byte_start: 2660, byte_len: 3 }) }, + Range { from: '\u{2c12}', to: '\u{2c12}', mapping: Mapped(StringTableSlice { byte_start: 2663, byte_len: 3 }) }, + Range { from: '\u{2c13}', to: '\u{2c13}', mapping: Mapped(StringTableSlice { byte_start: 2666, byte_len: 3 }) }, + Range { from: '\u{2c14}', to: '\u{2c14}', mapping: Mapped(StringTableSlice { byte_start: 2669, byte_len: 3 }) }, + Range { from: '\u{2c15}', to: '\u{2c15}', mapping: Mapped(StringTableSlice { byte_start: 2672, byte_len: 3 }) }, + Range { from: '\u{2c16}', to: '\u{2c16}', mapping: Mapped(StringTableSlice { byte_start: 2675, byte_len: 3 }) }, + Range { from: '\u{2c17}', to: '\u{2c17}', mapping: Mapped(StringTableSlice { byte_start: 2678, byte_len: 3 }) }, + Range { from: '\u{2c18}', to: '\u{2c18}', mapping: Mapped(StringTableSlice { byte_start: 2681, byte_len: 3 }) }, + Range { from: '\u{2c19}', to: '\u{2c19}', mapping: Mapped(StringTableSlice { byte_start: 2684, byte_len: 3 }) }, + Range { from: '\u{2c1a}', to: '\u{2c1a}', mapping: Mapped(StringTableSlice { byte_start: 2687, byte_len: 3 }) }, + Range { from: '\u{2c1b}', to: '\u{2c1b}', mapping: Mapped(StringTableSlice { byte_start: 2690, byte_len: 3 }) }, + Range { from: '\u{2c1c}', to: '\u{2c1c}', mapping: Mapped(StringTableSlice { byte_start: 2693, byte_len: 3 }) }, + Range { from: '\u{2c1d}', to: '\u{2c1d}', mapping: Mapped(StringTableSlice { byte_start: 2696, byte_len: 3 }) }, + Range { from: '\u{2c1e}', to: '\u{2c1e}', mapping: Mapped(StringTableSlice { byte_start: 2699, byte_len: 3 }) }, + Range { from: '\u{2c1f}', to: '\u{2c1f}', mapping: Mapped(StringTableSlice { byte_start: 2702, byte_len: 3 }) }, + Range { from: '\u{2c20}', to: '\u{2c20}', mapping: Mapped(StringTableSlice { byte_start: 2705, byte_len: 3 }) }, + Range { from: '\u{2c21}', to: '\u{2c21}', mapping: Mapped(StringTableSlice { byte_start: 2708, byte_len: 3 }) }, + Range { from: '\u{2c22}', to: '\u{2c22}', mapping: Mapped(StringTableSlice { byte_start: 2711, byte_len: 3 }) }, + Range { from: '\u{2c23}', to: '\u{2c23}', mapping: Mapped(StringTableSlice { byte_start: 2714, byte_len: 3 }) }, + Range { from: '\u{2c24}', to: '\u{2c24}', mapping: Mapped(StringTableSlice { byte_start: 2717, byte_len: 3 }) }, + Range { from: '\u{2c25}', to: '\u{2c25}', mapping: Mapped(StringTableSlice { byte_start: 2720, byte_len: 3 }) }, + Range { from: '\u{2c26}', to: '\u{2c26}', mapping: Mapped(StringTableSlice { byte_start: 2723, byte_len: 3 }) }, + Range { from: '\u{2c27}', to: '\u{2c27}', mapping: Mapped(StringTableSlice { byte_start: 2726, byte_len: 3 }) }, + Range { from: '\u{2c28}', to: '\u{2c28}', mapping: Mapped(StringTableSlice { byte_start: 2729, byte_len: 3 }) }, + Range { from: '\u{2c29}', to: '\u{2c29}', mapping: Mapped(StringTableSlice { byte_start: 2732, byte_len: 3 }) }, + Range { from: '\u{2c2a}', to: '\u{2c2a}', mapping: Mapped(StringTableSlice { byte_start: 2735, byte_len: 3 }) }, + Range { from: '\u{2c2b}', to: '\u{2c2b}', mapping: Mapped(StringTableSlice { byte_start: 2738, byte_len: 3 }) }, + Range { from: '\u{2c2c}', to: '\u{2c2c}', mapping: Mapped(StringTableSlice { byte_start: 2741, byte_len: 3 }) }, + Range { from: '\u{2c2d}', to: '\u{2c2d}', mapping: Mapped(StringTableSlice { byte_start: 2744, byte_len: 3 }) }, + Range { from: '\u{2c2e}', to: '\u{2c2e}', mapping: Mapped(StringTableSlice { byte_start: 2747, byte_len: 3 }) }, + Range { from: '\u{2c2f}', to: '\u{2c2f}', mapping: Disallowed }, + Range { from: '\u{2c30}', to: '\u{2c5e}', mapping: Valid }, + Range { from: '\u{2c5f}', to: '\u{2c5f}', mapping: Disallowed }, + Range { from: '\u{2c60}', to: '\u{2c60}', mapping: Mapped(StringTableSlice { byte_start: 2750, byte_len: 3 }) }, + Range { from: '\u{2c61}', to: '\u{2c61}', mapping: Valid }, + Range { from: '\u{2c62}', to: '\u{2c62}', mapping: Mapped(StringTableSlice { byte_start: 2753, byte_len: 2 }) }, + Range { from: '\u{2c63}', to: '\u{2c63}', mapping: Mapped(StringTableSlice { byte_start: 2755, byte_len: 3 }) }, + Range { from: '\u{2c64}', to: '\u{2c64}', mapping: Mapped(StringTableSlice { byte_start: 2758, byte_len: 2 }) }, + Range { from: '\u{2c65}', to: '\u{2c66}', mapping: Valid }, + Range { from: '\u{2c67}', to: '\u{2c67}', mapping: Mapped(StringTableSlice { byte_start: 2760, byte_len: 3 }) }, + Range { from: '\u{2c68}', to: '\u{2c68}', mapping: Valid }, + Range { from: '\u{2c69}', to: '\u{2c69}', mapping: Mapped(StringTableSlice { byte_start: 2763, byte_len: 3 }) }, + Range { from: '\u{2c6a}', to: '\u{2c6a}', mapping: Valid }, + Range { from: '\u{2c6b}', to: '\u{2c6b}', mapping: Mapped(StringTableSlice { byte_start: 2766, byte_len: 3 }) }, + Range { from: '\u{2c6c}', to: '\u{2c6c}', mapping: Valid }, + Range { from: '\u{2c6d}', to: '\u{2c6d}', mapping: Mapped(StringTableSlice { byte_start: 1303, byte_len: 2 }) }, + Range { from: '\u{2c6e}', to: '\u{2c6e}', mapping: Mapped(StringTableSlice { byte_start: 1346, byte_len: 2 }) }, + Range { from: '\u{2c6f}', to: '\u{2c6f}', mapping: Mapped(StringTableSlice { byte_start: 1301, byte_len: 2 }) }, + Range { from: '\u{2c70}', to: '\u{2c70}', mapping: Mapped(StringTableSlice { byte_start: 1322, byte_len: 2 }) }, + Range { from: '\u{2c71}', to: '\u{2c71}', mapping: Valid }, + Range { from: '\u{2c72}', to: '\u{2c72}', mapping: Mapped(StringTableSlice { byte_start: 2769, byte_len: 3 }) }, + Range { from: '\u{2c73}', to: '\u{2c73}', mapping: Valid }, + Range { from: '\u{2c74}', to: '\u{2c74}', mapping: Valid }, + Range { from: '\u{2c75}', to: '\u{2c75}', mapping: Mapped(StringTableSlice { byte_start: 2772, byte_len: 3 }) }, + Range { from: '\u{2c76}', to: '\u{2c77}', mapping: Valid }, + Range { from: '\u{2c78}', to: '\u{2c7b}', mapping: Valid }, + Range { from: '\u{2c7c}', to: '\u{2c7c}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{2c7d}', to: '\u{2c7d}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{2c7e}', to: '\u{2c7e}', mapping: Mapped(StringTableSlice { byte_start: 2775, byte_len: 2 }) }, + Range { from: '\u{2c7f}', to: '\u{2c7f}', mapping: Mapped(StringTableSlice { byte_start: 2777, byte_len: 2 }) }, + Range { from: '\u{2c80}', to: '\u{2c80}', mapping: Mapped(StringTableSlice { byte_start: 2779, byte_len: 3 }) }, + Range { from: '\u{2c81}', to: '\u{2c81}', mapping: Valid }, + Range { from: '\u{2c82}', to: '\u{2c82}', mapping: Mapped(StringTableSlice { byte_start: 2782, byte_len: 3 }) }, + Range { from: '\u{2c83}', to: '\u{2c83}', mapping: Valid }, + Range { from: '\u{2c84}', to: '\u{2c84}', mapping: Mapped(StringTableSlice { byte_start: 2785, byte_len: 3 }) }, + Range { from: '\u{2c85}', to: '\u{2c85}', mapping: Valid }, + Range { from: '\u{2c86}', to: '\u{2c86}', mapping: Mapped(StringTableSlice { byte_start: 2788, byte_len: 3 }) }, + Range { from: '\u{2c87}', to: '\u{2c87}', mapping: Valid }, + Range { from: '\u{2c88}', to: '\u{2c88}', mapping: Mapped(StringTableSlice { byte_start: 2791, byte_len: 3 }) }, + Range { from: '\u{2c89}', to: '\u{2c89}', mapping: Valid }, + Range { from: '\u{2c8a}', to: '\u{2c8a}', mapping: Mapped(StringTableSlice { byte_start: 2794, byte_len: 3 }) }, + Range { from: '\u{2c8b}', to: '\u{2c8b}', mapping: Valid }, + Range { from: '\u{2c8c}', to: '\u{2c8c}', mapping: Mapped(StringTableSlice { byte_start: 2797, byte_len: 3 }) }, + Range { from: '\u{2c8d}', to: '\u{2c8d}', mapping: Valid }, + Range { from: '\u{2c8e}', to: '\u{2c8e}', mapping: Mapped(StringTableSlice { byte_start: 2800, byte_len: 3 }) }, + Range { from: '\u{2c8f}', to: '\u{2c8f}', mapping: Valid }, + Range { from: '\u{2c90}', to: '\u{2c90}', mapping: Mapped(StringTableSlice { byte_start: 2803, byte_len: 3 }) }, + Range { from: '\u{2c91}', to: '\u{2c91}', mapping: Valid }, + Range { from: '\u{2c92}', to: '\u{2c92}', mapping: Mapped(StringTableSlice { byte_start: 2806, byte_len: 3 }) }, + Range { from: '\u{2c93}', to: '\u{2c93}', mapping: Valid }, + Range { from: '\u{2c94}', to: '\u{2c94}', mapping: Mapped(StringTableSlice { byte_start: 2809, byte_len: 3 }) }, + Range { from: '\u{2c95}', to: '\u{2c95}', mapping: Valid }, + Range { from: '\u{2c96}', to: '\u{2c96}', mapping: Mapped(StringTableSlice { byte_start: 2812, byte_len: 3 }) }, + Range { from: '\u{2c97}', to: '\u{2c97}', mapping: Valid }, + Range { from: '\u{2c98}', to: '\u{2c98}', mapping: Mapped(StringTableSlice { byte_start: 2815, byte_len: 3 }) }, + Range { from: '\u{2c99}', to: '\u{2c99}', mapping: Valid }, + Range { from: '\u{2c9a}', to: '\u{2c9a}', mapping: Mapped(StringTableSlice { byte_start: 2818, byte_len: 3 }) }, + Range { from: '\u{2c9b}', to: '\u{2c9b}', mapping: Valid }, + Range { from: '\u{2c9c}', to: '\u{2c9c}', mapping: Mapped(StringTableSlice { byte_start: 2821, byte_len: 3 }) }, + Range { from: '\u{2c9d}', to: '\u{2c9d}', mapping: Valid }, + Range { from: '\u{2c9e}', to: '\u{2c9e}', mapping: Mapped(StringTableSlice { byte_start: 2824, byte_len: 3 }) }, + Range { from: '\u{2c9f}', to: '\u{2c9f}', mapping: Valid }, + Range { from: '\u{2ca0}', to: '\u{2ca0}', mapping: Mapped(StringTableSlice { byte_start: 2827, byte_len: 3 }) }, + Range { from: '\u{2ca1}', to: '\u{2ca1}', mapping: Valid }, + Range { from: '\u{2ca2}', to: '\u{2ca2}', mapping: Mapped(StringTableSlice { byte_start: 2830, byte_len: 3 }) }, + Range { from: '\u{2ca3}', to: '\u{2ca3}', mapping: Valid }, + Range { from: '\u{2ca4}', to: '\u{2ca4}', mapping: Mapped(StringTableSlice { byte_start: 2833, byte_len: 3 }) }, + Range { from: '\u{2ca5}', to: '\u{2ca5}', mapping: Valid }, + Range { from: '\u{2ca6}', to: '\u{2ca6}', mapping: Mapped(StringTableSlice { byte_start: 2836, byte_len: 3 }) }, + Range { from: '\u{2ca7}', to: '\u{2ca7}', mapping: Valid }, + Range { from: '\u{2ca8}', to: '\u{2ca8}', mapping: Mapped(StringTableSlice { byte_start: 2839, byte_len: 3 }) }, + Range { from: '\u{2ca9}', to: '\u{2ca9}', mapping: Valid }, + Range { from: '\u{2caa}', to: '\u{2caa}', mapping: Mapped(StringTableSlice { byte_start: 2842, byte_len: 3 }) }, + Range { from: '\u{2cab}', to: '\u{2cab}', mapping: Valid }, + Range { from: '\u{2cac}', to: '\u{2cac}', mapping: Mapped(StringTableSlice { byte_start: 2845, byte_len: 3 }) }, + Range { from: '\u{2cad}', to: '\u{2cad}', mapping: Valid }, + Range { from: '\u{2cae}', to: '\u{2cae}', mapping: Mapped(StringTableSlice { byte_start: 2848, byte_len: 3 }) }, + Range { from: '\u{2caf}', to: '\u{2caf}', mapping: Valid }, + Range { from: '\u{2cb0}', to: '\u{2cb0}', mapping: Mapped(StringTableSlice { byte_start: 2851, byte_len: 3 }) }, + Range { from: '\u{2cb1}', to: '\u{2cb1}', mapping: Valid }, + Range { from: '\u{2cb2}', to: '\u{2cb2}', mapping: Mapped(StringTableSlice { byte_start: 2854, byte_len: 3 }) }, + Range { from: '\u{2cb3}', to: '\u{2cb3}', mapping: Valid }, + Range { from: '\u{2cb4}', to: '\u{2cb4}', mapping: Mapped(StringTableSlice { byte_start: 2857, byte_len: 3 }) }, + Range { from: '\u{2cb5}', to: '\u{2cb5}', mapping: Valid }, + Range { from: '\u{2cb6}', to: '\u{2cb6}', mapping: Mapped(StringTableSlice { byte_start: 2860, byte_len: 3 }) }, + Range { from: '\u{2cb7}', to: '\u{2cb7}', mapping: Valid }, + Range { from: '\u{2cb8}', to: '\u{2cb8}', mapping: Mapped(StringTableSlice { byte_start: 2863, byte_len: 3 }) }, + Range { from: '\u{2cb9}', to: '\u{2cb9}', mapping: Valid }, + Range { from: '\u{2cba}', to: '\u{2cba}', mapping: Mapped(StringTableSlice { byte_start: 2866, byte_len: 3 }) }, + Range { from: '\u{2cbb}', to: '\u{2cbb}', mapping: Valid }, + Range { from: '\u{2cbc}', to: '\u{2cbc}', mapping: Mapped(StringTableSlice { byte_start: 2869, byte_len: 3 }) }, + Range { from: '\u{2cbd}', to: '\u{2cbd}', mapping: Valid }, + Range { from: '\u{2cbe}', to: '\u{2cbe}', mapping: Mapped(StringTableSlice { byte_start: 2872, byte_len: 3 }) }, + Range { from: '\u{2cbf}', to: '\u{2cbf}', mapping: Valid }, + Range { from: '\u{2cc0}', to: '\u{2cc0}', mapping: Mapped(StringTableSlice { byte_start: 2875, byte_len: 3 }) }, + Range { from: '\u{2cc1}', to: '\u{2cc1}', mapping: Valid }, + Range { from: '\u{2cc2}', to: '\u{2cc2}', mapping: Mapped(StringTableSlice { byte_start: 2878, byte_len: 3 }) }, + Range { from: '\u{2cc3}', to: '\u{2cc3}', mapping: Valid }, + Range { from: '\u{2cc4}', to: '\u{2cc4}', mapping: Mapped(StringTableSlice { byte_start: 2881, byte_len: 3 }) }, + Range { from: '\u{2cc5}', to: '\u{2cc5}', mapping: Valid }, + Range { from: '\u{2cc6}', to: '\u{2cc6}', mapping: Mapped(StringTableSlice { byte_start: 2884, byte_len: 3 }) }, + Range { from: '\u{2cc7}', to: '\u{2cc7}', mapping: Valid }, + Range { from: '\u{2cc8}', to: '\u{2cc8}', mapping: Mapped(StringTableSlice { byte_start: 2887, byte_len: 3 }) }, + Range { from: '\u{2cc9}', to: '\u{2cc9}', mapping: Valid }, + Range { from: '\u{2cca}', to: '\u{2cca}', mapping: Mapped(StringTableSlice { byte_start: 2890, byte_len: 3 }) }, + Range { from: '\u{2ccb}', to: '\u{2ccb}', mapping: Valid }, + Range { from: '\u{2ccc}', to: '\u{2ccc}', mapping: Mapped(StringTableSlice { byte_start: 2893, byte_len: 3 }) }, + Range { from: '\u{2ccd}', to: '\u{2ccd}', mapping: Valid }, + Range { from: '\u{2cce}', to: '\u{2cce}', mapping: Mapped(StringTableSlice { byte_start: 2896, byte_len: 3 }) }, + Range { from: '\u{2ccf}', to: '\u{2ccf}', mapping: Valid }, + Range { from: '\u{2cd0}', to: '\u{2cd0}', mapping: Mapped(StringTableSlice { byte_start: 2899, byte_len: 3 }) }, + Range { from: '\u{2cd1}', to: '\u{2cd1}', mapping: Valid }, + Range { from: '\u{2cd2}', to: '\u{2cd2}', mapping: Mapped(StringTableSlice { byte_start: 2902, byte_len: 3 }) }, + Range { from: '\u{2cd3}', to: '\u{2cd3}', mapping: Valid }, + Range { from: '\u{2cd4}', to: '\u{2cd4}', mapping: Mapped(StringTableSlice { byte_start: 2905, byte_len: 3 }) }, + Range { from: '\u{2cd5}', to: '\u{2cd5}', mapping: Valid }, + Range { from: '\u{2cd6}', to: '\u{2cd6}', mapping: Mapped(StringTableSlice { byte_start: 2908, byte_len: 3 }) }, + Range { from: '\u{2cd7}', to: '\u{2cd7}', mapping: Valid }, + Range { from: '\u{2cd8}', to: '\u{2cd8}', mapping: Mapped(StringTableSlice { byte_start: 2911, byte_len: 3 }) }, + Range { from: '\u{2cd9}', to: '\u{2cd9}', mapping: Valid }, + Range { from: '\u{2cda}', to: '\u{2cda}', mapping: Mapped(StringTableSlice { byte_start: 2914, byte_len: 3 }) }, + Range { from: '\u{2cdb}', to: '\u{2cdb}', mapping: Valid }, + Range { from: '\u{2cdc}', to: '\u{2cdc}', mapping: Mapped(StringTableSlice { byte_start: 2917, byte_len: 3 }) }, + Range { from: '\u{2cdd}', to: '\u{2cdd}', mapping: Valid }, + Range { from: '\u{2cde}', to: '\u{2cde}', mapping: Mapped(StringTableSlice { byte_start: 2920, byte_len: 3 }) }, + Range { from: '\u{2cdf}', to: '\u{2cdf}', mapping: Valid }, + Range { from: '\u{2ce0}', to: '\u{2ce0}', mapping: Mapped(StringTableSlice { byte_start: 2923, byte_len: 3 }) }, + Range { from: '\u{2ce1}', to: '\u{2ce1}', mapping: Valid }, + Range { from: '\u{2ce2}', to: '\u{2ce2}', mapping: Mapped(StringTableSlice { byte_start: 2926, byte_len: 3 }) }, + Range { from: '\u{2ce3}', to: '\u{2ce4}', mapping: Valid }, + Range { from: '\u{2ce5}', to: '\u{2cea}', mapping: Valid }, + Range { from: '\u{2ceb}', to: '\u{2ceb}', mapping: Mapped(StringTableSlice { byte_start: 2929, byte_len: 3 }) }, + Range { from: '\u{2cec}', to: '\u{2cec}', mapping: Valid }, + Range { from: '\u{2ced}', to: '\u{2ced}', mapping: Mapped(StringTableSlice { byte_start: 2932, byte_len: 3 }) }, + Range { from: '\u{2cee}', to: '\u{2cf1}', mapping: Valid }, + Range { from: '\u{2cf2}', to: '\u{2cf2}', mapping: Mapped(StringTableSlice { byte_start: 2935, byte_len: 3 }) }, + Range { from: '\u{2cf3}', to: '\u{2cf3}', mapping: Valid }, + Range { from: '\u{2cf4}', to: '\u{2cf8}', mapping: Disallowed }, + Range { from: '\u{2cf9}', to: '\u{2cff}', mapping: Valid }, + Range { from: '\u{2d00}', to: '\u{2d25}', mapping: Valid }, + Range { from: '\u{2d26}', to: '\u{2d26}', mapping: Disallowed }, + Range { from: '\u{2d27}', to: '\u{2d27}', mapping: Valid }, + Range { from: '\u{2d28}', to: '\u{2d2c}', mapping: Disallowed }, + Range { from: '\u{2d2d}', to: '\u{2d2d}', mapping: Valid }, + Range { from: '\u{2d2e}', to: '\u{2d2f}', mapping: Disallowed }, + Range { from: '\u{2d30}', to: '\u{2d65}', mapping: Valid }, + Range { from: '\u{2d66}', to: '\u{2d67}', mapping: Valid }, + Range { from: '\u{2d68}', to: '\u{2d6e}', mapping: Disallowed }, + Range { from: '\u{2d6f}', to: '\u{2d6f}', mapping: Mapped(StringTableSlice { byte_start: 2938, byte_len: 3 }) }, + Range { from: '\u{2d70}', to: '\u{2d70}', mapping: Valid }, + Range { from: '\u{2d71}', to: '\u{2d7e}', mapping: Disallowed }, + Range { from: '\u{2d7f}', to: '\u{2d7f}', mapping: Valid }, + Range { from: '\u{2d80}', to: '\u{2d96}', mapping: Valid }, + Range { from: '\u{2d97}', to: '\u{2d9f}', mapping: Disallowed }, + Range { from: '\u{2da0}', to: '\u{2da6}', mapping: Valid }, + Range { from: '\u{2da7}', to: '\u{2da7}', mapping: Disallowed }, + Range { from: '\u{2da8}', to: '\u{2dae}', mapping: Valid }, + Range { from: '\u{2daf}', to: '\u{2daf}', mapping: Disallowed }, + Range { from: '\u{2db0}', to: '\u{2db6}', mapping: Valid }, + Range { from: '\u{2db7}', to: '\u{2db7}', mapping: Disallowed }, + Range { from: '\u{2db8}', to: '\u{2dbe}', mapping: Valid }, + Range { from: '\u{2dbf}', to: '\u{2dbf}', mapping: Disallowed }, + Range { from: '\u{2dc0}', to: '\u{2dc6}', mapping: Valid }, + Range { from: '\u{2dc7}', to: '\u{2dc7}', mapping: Disallowed }, + Range { from: '\u{2dc8}', to: '\u{2dce}', mapping: Valid }, + Range { from: '\u{2dcf}', to: '\u{2dcf}', mapping: Disallowed }, + Range { from: '\u{2dd0}', to: '\u{2dd6}', mapping: Valid }, + Range { from: '\u{2dd7}', to: '\u{2dd7}', mapping: Disallowed }, + Range { from: '\u{2dd8}', to: '\u{2dde}', mapping: Valid }, + Range { from: '\u{2ddf}', to: '\u{2ddf}', mapping: Disallowed }, + Range { from: '\u{2de0}', to: '\u{2dff}', mapping: Valid }, + Range { from: '\u{2e00}', to: '\u{2e17}', mapping: Valid }, + Range { from: '\u{2e18}', to: '\u{2e1b}', mapping: Valid }, + Range { from: '\u{2e1c}', to: '\u{2e1d}', mapping: Valid }, + Range { from: '\u{2e1e}', to: '\u{2e2e}', mapping: Valid }, + Range { from: '\u{2e2f}', to: '\u{2e2f}', mapping: Valid }, + Range { from: '\u{2e30}', to: '\u{2e30}', mapping: Valid }, + Range { from: '\u{2e31}', to: '\u{2e31}', mapping: Valid }, + Range { from: '\u{2e32}', to: '\u{2e3b}', mapping: Valid }, + Range { from: '\u{2e3c}', to: '\u{2e42}', mapping: Valid }, + Range { from: '\u{2e43}', to: '\u{2e44}', mapping: Valid }, + Range { from: '\u{2e45}', to: '\u{2e7f}', mapping: Disallowed }, + Range { from: '\u{2e80}', to: '\u{2e99}', mapping: Valid }, + Range { from: '\u{2e9a}', to: '\u{2e9a}', mapping: Disallowed }, + Range { from: '\u{2e9b}', to: '\u{2e9e}', mapping: Valid }, + Range { from: '\u{2e9f}', to: '\u{2e9f}', mapping: Mapped(StringTableSlice { byte_start: 2941, byte_len: 3 }) }, + Range { from: '\u{2ea0}', to: '\u{2ef2}', mapping: Valid }, + Range { from: '\u{2ef3}', to: '\u{2ef3}', mapping: Mapped(StringTableSlice { byte_start: 2944, byte_len: 3 }) }, + Range { from: '\u{2ef4}', to: '\u{2eff}', mapping: Disallowed }, + Range { from: '\u{2f00}', to: '\u{2f00}', mapping: Mapped(StringTableSlice { byte_start: 2947, byte_len: 3 }) }, + Range { from: '\u{2f01}', to: '\u{2f01}', mapping: Mapped(StringTableSlice { byte_start: 2950, byte_len: 3 }) }, + Range { from: '\u{2f02}', to: '\u{2f02}', mapping: Mapped(StringTableSlice { byte_start: 2953, byte_len: 3 }) }, + Range { from: '\u{2f03}', to: '\u{2f03}', mapping: Mapped(StringTableSlice { byte_start: 2956, byte_len: 3 }) }, + Range { from: '\u{2f04}', to: '\u{2f04}', mapping: Mapped(StringTableSlice { byte_start: 2959, byte_len: 3 }) }, + Range { from: '\u{2f05}', to: '\u{2f05}', mapping: Mapped(StringTableSlice { byte_start: 2962, byte_len: 3 }) }, + Range { from: '\u{2f06}', to: '\u{2f06}', mapping: Mapped(StringTableSlice { byte_start: 2965, byte_len: 3 }) }, + Range { from: '\u{2f07}', to: '\u{2f07}', mapping: Mapped(StringTableSlice { byte_start: 2968, byte_len: 3 }) }, + Range { from: '\u{2f08}', to: '\u{2f08}', mapping: Mapped(StringTableSlice { byte_start: 2971, byte_len: 3 }) }, + Range { from: '\u{2f09}', to: '\u{2f09}', mapping: Mapped(StringTableSlice { byte_start: 2974, byte_len: 3 }) }, + Range { from: '\u{2f0a}', to: '\u{2f0a}', mapping: Mapped(StringTableSlice { byte_start: 2977, byte_len: 3 }) }, + Range { from: '\u{2f0b}', to: '\u{2f0b}', mapping: Mapped(StringTableSlice { byte_start: 2980, byte_len: 3 }) }, + Range { from: '\u{2f0c}', to: '\u{2f0c}', mapping: Mapped(StringTableSlice { byte_start: 2983, byte_len: 3 }) }, + Range { from: '\u{2f0d}', to: '\u{2f0d}', mapping: Mapped(StringTableSlice { byte_start: 2986, byte_len: 3 }) }, + Range { from: '\u{2f0e}', to: '\u{2f0e}', mapping: Mapped(StringTableSlice { byte_start: 2989, byte_len: 3 }) }, + Range { from: '\u{2f0f}', to: '\u{2f0f}', mapping: Mapped(StringTableSlice { byte_start: 2992, byte_len: 3 }) }, + Range { from: '\u{2f10}', to: '\u{2f10}', mapping: Mapped(StringTableSlice { byte_start: 2995, byte_len: 3 }) }, + Range { from: '\u{2f11}', to: '\u{2f11}', mapping: Mapped(StringTableSlice { byte_start: 2998, byte_len: 3 }) }, + Range { from: '\u{2f12}', to: '\u{2f12}', mapping: Mapped(StringTableSlice { byte_start: 3001, byte_len: 3 }) }, + Range { from: '\u{2f13}', to: '\u{2f13}', mapping: Mapped(StringTableSlice { byte_start: 3004, byte_len: 3 }) }, + Range { from: '\u{2f14}', to: '\u{2f14}', mapping: Mapped(StringTableSlice { byte_start: 3007, byte_len: 3 }) }, + Range { from: '\u{2f15}', to: '\u{2f15}', mapping: Mapped(StringTableSlice { byte_start: 3010, byte_len: 3 }) }, + Range { from: '\u{2f16}', to: '\u{2f16}', mapping: Mapped(StringTableSlice { byte_start: 3013, byte_len: 3 }) }, + Range { from: '\u{2f17}', to: '\u{2f17}', mapping: Mapped(StringTableSlice { byte_start: 3016, byte_len: 3 }) }, + Range { from: '\u{2f18}', to: '\u{2f18}', mapping: Mapped(StringTableSlice { byte_start: 3019, byte_len: 3 }) }, + Range { from: '\u{2f19}', to: '\u{2f19}', mapping: Mapped(StringTableSlice { byte_start: 3022, byte_len: 3 }) }, + Range { from: '\u{2f1a}', to: '\u{2f1a}', mapping: Mapped(StringTableSlice { byte_start: 3025, byte_len: 3 }) }, + Range { from: '\u{2f1b}', to: '\u{2f1b}', mapping: Mapped(StringTableSlice { byte_start: 3028, byte_len: 3 }) }, + Range { from: '\u{2f1c}', to: '\u{2f1c}', mapping: Mapped(StringTableSlice { byte_start: 3031, byte_len: 3 }) }, + Range { from: '\u{2f1d}', to: '\u{2f1d}', mapping: Mapped(StringTableSlice { byte_start: 3034, byte_len: 3 }) }, + Range { from: '\u{2f1e}', to: '\u{2f1e}', mapping: Mapped(StringTableSlice { byte_start: 3037, byte_len: 3 }) }, + Range { from: '\u{2f1f}', to: '\u{2f1f}', mapping: Mapped(StringTableSlice { byte_start: 3040, byte_len: 3 }) }, + Range { from: '\u{2f20}', to: '\u{2f20}', mapping: Mapped(StringTableSlice { byte_start: 3043, byte_len: 3 }) }, + Range { from: '\u{2f21}', to: '\u{2f21}', mapping: Mapped(StringTableSlice { byte_start: 3046, byte_len: 3 }) }, + Range { from: '\u{2f22}', to: '\u{2f22}', mapping: Mapped(StringTableSlice { byte_start: 3049, byte_len: 3 }) }, + Range { from: '\u{2f23}', to: '\u{2f23}', mapping: Mapped(StringTableSlice { byte_start: 3052, byte_len: 3 }) }, + Range { from: '\u{2f24}', to: '\u{2f24}', mapping: Mapped(StringTableSlice { byte_start: 3055, byte_len: 3 }) }, + Range { from: '\u{2f25}', to: '\u{2f25}', mapping: Mapped(StringTableSlice { byte_start: 3058, byte_len: 3 }) }, + Range { from: '\u{2f26}', to: '\u{2f26}', mapping: Mapped(StringTableSlice { byte_start: 3061, byte_len: 3 }) }, + Range { from: '\u{2f27}', to: '\u{2f27}', mapping: Mapped(StringTableSlice { byte_start: 3064, byte_len: 3 }) }, + Range { from: '\u{2f28}', to: '\u{2f28}', mapping: Mapped(StringTableSlice { byte_start: 3067, byte_len: 3 }) }, + Range { from: '\u{2f29}', to: '\u{2f29}', mapping: Mapped(StringTableSlice { byte_start: 3070, byte_len: 3 }) }, + Range { from: '\u{2f2a}', to: '\u{2f2a}', mapping: Mapped(StringTableSlice { byte_start: 3073, byte_len: 3 }) }, + Range { from: '\u{2f2b}', to: '\u{2f2b}', mapping: Mapped(StringTableSlice { byte_start: 3076, byte_len: 3 }) }, + Range { from: '\u{2f2c}', to: '\u{2f2c}', mapping: Mapped(StringTableSlice { byte_start: 3079, byte_len: 3 }) }, + Range { from: '\u{2f2d}', to: '\u{2f2d}', mapping: Mapped(StringTableSlice { byte_start: 3082, byte_len: 3 }) }, + Range { from: '\u{2f2e}', to: '\u{2f2e}', mapping: Mapped(StringTableSlice { byte_start: 3085, byte_len: 3 }) }, + Range { from: '\u{2f2f}', to: '\u{2f2f}', mapping: Mapped(StringTableSlice { byte_start: 3088, byte_len: 3 }) }, + Range { from: '\u{2f30}', to: '\u{2f30}', mapping: Mapped(StringTableSlice { byte_start: 3091, byte_len: 3 }) }, + Range { from: '\u{2f31}', to: '\u{2f31}', mapping: Mapped(StringTableSlice { byte_start: 3094, byte_len: 3 }) }, + Range { from: '\u{2f32}', to: '\u{2f32}', mapping: Mapped(StringTableSlice { byte_start: 3097, byte_len: 3 }) }, + Range { from: '\u{2f33}', to: '\u{2f33}', mapping: Mapped(StringTableSlice { byte_start: 3100, byte_len: 3 }) }, + Range { from: '\u{2f34}', to: '\u{2f34}', mapping: Mapped(StringTableSlice { byte_start: 3103, byte_len: 3 }) }, + Range { from: '\u{2f35}', to: '\u{2f35}', mapping: Mapped(StringTableSlice { byte_start: 3106, byte_len: 3 }) }, + Range { from: '\u{2f36}', to: '\u{2f36}', mapping: Mapped(StringTableSlice { byte_start: 3109, byte_len: 3 }) }, + Range { from: '\u{2f37}', to: '\u{2f37}', mapping: Mapped(StringTableSlice { byte_start: 3112, byte_len: 3 }) }, + Range { from: '\u{2f38}', to: '\u{2f38}', mapping: Mapped(StringTableSlice { byte_start: 3115, byte_len: 3 }) }, + Range { from: '\u{2f39}', to: '\u{2f39}', mapping: Mapped(StringTableSlice { byte_start: 3118, byte_len: 3 }) }, + Range { from: '\u{2f3a}', to: '\u{2f3a}', mapping: Mapped(StringTableSlice { byte_start: 3121, byte_len: 3 }) }, + Range { from: '\u{2f3b}', to: '\u{2f3b}', mapping: Mapped(StringTableSlice { byte_start: 3124, byte_len: 3 }) }, + Range { from: '\u{2f3c}', to: '\u{2f3c}', mapping: Mapped(StringTableSlice { byte_start: 3127, byte_len: 3 }) }, + Range { from: '\u{2f3d}', to: '\u{2f3d}', mapping: Mapped(StringTableSlice { byte_start: 3130, byte_len: 3 }) }, + Range { from: '\u{2f3e}', to: '\u{2f3e}', mapping: Mapped(StringTableSlice { byte_start: 3133, byte_len: 3 }) }, + Range { from: '\u{2f3f}', to: '\u{2f3f}', mapping: Mapped(StringTableSlice { byte_start: 3136, byte_len: 3 }) }, + Range { from: '\u{2f40}', to: '\u{2f40}', mapping: Mapped(StringTableSlice { byte_start: 3139, byte_len: 3 }) }, + Range { from: '\u{2f41}', to: '\u{2f41}', mapping: Mapped(StringTableSlice { byte_start: 3142, byte_len: 3 }) }, + Range { from: '\u{2f42}', to: '\u{2f42}', mapping: Mapped(StringTableSlice { byte_start: 3145, byte_len: 3 }) }, + Range { from: '\u{2f43}', to: '\u{2f43}', mapping: Mapped(StringTableSlice { byte_start: 3148, byte_len: 3 }) }, + Range { from: '\u{2f44}', to: '\u{2f44}', mapping: Mapped(StringTableSlice { byte_start: 3151, byte_len: 3 }) }, + Range { from: '\u{2f45}', to: '\u{2f45}', mapping: Mapped(StringTableSlice { byte_start: 3154, byte_len: 3 }) }, + Range { from: '\u{2f46}', to: '\u{2f46}', mapping: Mapped(StringTableSlice { byte_start: 3157, byte_len: 3 }) }, + Range { from: '\u{2f47}', to: '\u{2f47}', mapping: Mapped(StringTableSlice { byte_start: 3160, byte_len: 3 }) }, + Range { from: '\u{2f48}', to: '\u{2f48}', mapping: Mapped(StringTableSlice { byte_start: 3163, byte_len: 3 }) }, + Range { from: '\u{2f49}', to: '\u{2f49}', mapping: Mapped(StringTableSlice { byte_start: 3166, byte_len: 3 }) }, + Range { from: '\u{2f4a}', to: '\u{2f4a}', mapping: Mapped(StringTableSlice { byte_start: 3169, byte_len: 3 }) }, + Range { from: '\u{2f4b}', to: '\u{2f4b}', mapping: Mapped(StringTableSlice { byte_start: 3172, byte_len: 3 }) }, + Range { from: '\u{2f4c}', to: '\u{2f4c}', mapping: Mapped(StringTableSlice { byte_start: 3175, byte_len: 3 }) }, + Range { from: '\u{2f4d}', to: '\u{2f4d}', mapping: Mapped(StringTableSlice { byte_start: 3178, byte_len: 3 }) }, + Range { from: '\u{2f4e}', to: '\u{2f4e}', mapping: Mapped(StringTableSlice { byte_start: 3181, byte_len: 3 }) }, + Range { from: '\u{2f4f}', to: '\u{2f4f}', mapping: Mapped(StringTableSlice { byte_start: 3184, byte_len: 3 }) }, + Range { from: '\u{2f50}', to: '\u{2f50}', mapping: Mapped(StringTableSlice { byte_start: 3187, byte_len: 3 }) }, + Range { from: '\u{2f51}', to: '\u{2f51}', mapping: Mapped(StringTableSlice { byte_start: 3190, byte_len: 3 }) }, + Range { from: '\u{2f52}', to: '\u{2f52}', mapping: Mapped(StringTableSlice { byte_start: 3193, byte_len: 3 }) }, + Range { from: '\u{2f53}', to: '\u{2f53}', mapping: Mapped(StringTableSlice { byte_start: 3196, byte_len: 3 }) }, + Range { from: '\u{2f54}', to: '\u{2f54}', mapping: Mapped(StringTableSlice { byte_start: 3199, byte_len: 3 }) }, + Range { from: '\u{2f55}', to: '\u{2f55}', mapping: Mapped(StringTableSlice { byte_start: 3202, byte_len: 3 }) }, + Range { from: '\u{2f56}', to: '\u{2f56}', mapping: Mapped(StringTableSlice { byte_start: 3205, byte_len: 3 }) }, + Range { from: '\u{2f57}', to: '\u{2f57}', mapping: Mapped(StringTableSlice { byte_start: 3208, byte_len: 3 }) }, + Range { from: '\u{2f58}', to: '\u{2f58}', mapping: Mapped(StringTableSlice { byte_start: 3211, byte_len: 3 }) }, + Range { from: '\u{2f59}', to: '\u{2f59}', mapping: Mapped(StringTableSlice { byte_start: 3214, byte_len: 3 }) }, + Range { from: '\u{2f5a}', to: '\u{2f5a}', mapping: Mapped(StringTableSlice { byte_start: 3217, byte_len: 3 }) }, + Range { from: '\u{2f5b}', to: '\u{2f5b}', mapping: Mapped(StringTableSlice { byte_start: 3220, byte_len: 3 }) }, + Range { from: '\u{2f5c}', to: '\u{2f5c}', mapping: Mapped(StringTableSlice { byte_start: 3223, byte_len: 3 }) }, + Range { from: '\u{2f5d}', to: '\u{2f5d}', mapping: Mapped(StringTableSlice { byte_start: 3226, byte_len: 3 }) }, + Range { from: '\u{2f5e}', to: '\u{2f5e}', mapping: Mapped(StringTableSlice { byte_start: 3229, byte_len: 3 }) }, + Range { from: '\u{2f5f}', to: '\u{2f5f}', mapping: Mapped(StringTableSlice { byte_start: 3232, byte_len: 3 }) }, + Range { from: '\u{2f60}', to: '\u{2f60}', mapping: Mapped(StringTableSlice { byte_start: 3235, byte_len: 3 }) }, + Range { from: '\u{2f61}', to: '\u{2f61}', mapping: Mapped(StringTableSlice { byte_start: 3238, byte_len: 3 }) }, + Range { from: '\u{2f62}', to: '\u{2f62}', mapping: Mapped(StringTableSlice { byte_start: 3241, byte_len: 3 }) }, + Range { from: '\u{2f63}', to: '\u{2f63}', mapping: Mapped(StringTableSlice { byte_start: 3244, byte_len: 3 }) }, + Range { from: '\u{2f64}', to: '\u{2f64}', mapping: Mapped(StringTableSlice { byte_start: 3247, byte_len: 3 }) }, + Range { from: '\u{2f65}', to: '\u{2f65}', mapping: Mapped(StringTableSlice { byte_start: 3250, byte_len: 3 }) }, + Range { from: '\u{2f66}', to: '\u{2f66}', mapping: Mapped(StringTableSlice { byte_start: 3253, byte_len: 3 }) }, + Range { from: '\u{2f67}', to: '\u{2f67}', mapping: Mapped(StringTableSlice { byte_start: 3256, byte_len: 3 }) }, + Range { from: '\u{2f68}', to: '\u{2f68}', mapping: Mapped(StringTableSlice { byte_start: 3259, byte_len: 3 }) }, + Range { from: '\u{2f69}', to: '\u{2f69}', mapping: Mapped(StringTableSlice { byte_start: 3262, byte_len: 3 }) }, + Range { from: '\u{2f6a}', to: '\u{2f6a}', mapping: Mapped(StringTableSlice { byte_start: 3265, byte_len: 3 }) }, + Range { from: '\u{2f6b}', to: '\u{2f6b}', mapping: Mapped(StringTableSlice { byte_start: 3268, byte_len: 3 }) }, + Range { from: '\u{2f6c}', to: '\u{2f6c}', mapping: Mapped(StringTableSlice { byte_start: 3271, byte_len: 3 }) }, + Range { from: '\u{2f6d}', to: '\u{2f6d}', mapping: Mapped(StringTableSlice { byte_start: 3274, byte_len: 3 }) }, + Range { from: '\u{2f6e}', to: '\u{2f6e}', mapping: Mapped(StringTableSlice { byte_start: 3277, byte_len: 3 }) }, + Range { from: '\u{2f6f}', to: '\u{2f6f}', mapping: Mapped(StringTableSlice { byte_start: 3280, byte_len: 3 }) }, + Range { from: '\u{2f70}', to: '\u{2f70}', mapping: Mapped(StringTableSlice { byte_start: 3283, byte_len: 3 }) }, + Range { from: '\u{2f71}', to: '\u{2f71}', mapping: Mapped(StringTableSlice { byte_start: 3286, byte_len: 3 }) }, + Range { from: '\u{2f72}', to: '\u{2f72}', mapping: Mapped(StringTableSlice { byte_start: 3289, byte_len: 3 }) }, + Range { from: '\u{2f73}', to: '\u{2f73}', mapping: Mapped(StringTableSlice { byte_start: 3292, byte_len: 3 }) }, + Range { from: '\u{2f74}', to: '\u{2f74}', mapping: Mapped(StringTableSlice { byte_start: 3295, byte_len: 3 }) }, + Range { from: '\u{2f75}', to: '\u{2f75}', mapping: Mapped(StringTableSlice { byte_start: 3298, byte_len: 3 }) }, + Range { from: '\u{2f76}', to: '\u{2f76}', mapping: Mapped(StringTableSlice { byte_start: 3301, byte_len: 3 }) }, + Range { from: '\u{2f77}', to: '\u{2f77}', mapping: Mapped(StringTableSlice { byte_start: 3304, byte_len: 3 }) }, + Range { from: '\u{2f78}', to: '\u{2f78}', mapping: Mapped(StringTableSlice { byte_start: 3307, byte_len: 3 }) }, + Range { from: '\u{2f79}', to: '\u{2f79}', mapping: Mapped(StringTableSlice { byte_start: 3310, byte_len: 3 }) }, + Range { from: '\u{2f7a}', to: '\u{2f7a}', mapping: Mapped(StringTableSlice { byte_start: 3313, byte_len: 3 }) }, + Range { from: '\u{2f7b}', to: '\u{2f7b}', mapping: Mapped(StringTableSlice { byte_start: 3316, byte_len: 3 }) }, + Range { from: '\u{2f7c}', to: '\u{2f7c}', mapping: Mapped(StringTableSlice { byte_start: 3319, byte_len: 3 }) }, + Range { from: '\u{2f7d}', to: '\u{2f7d}', mapping: Mapped(StringTableSlice { byte_start: 3322, byte_len: 3 }) }, + Range { from: '\u{2f7e}', to: '\u{2f7e}', mapping: Mapped(StringTableSlice { byte_start: 3325, byte_len: 3 }) }, + Range { from: '\u{2f7f}', to: '\u{2f7f}', mapping: Mapped(StringTableSlice { byte_start: 3328, byte_len: 3 }) }, + Range { from: '\u{2f80}', to: '\u{2f80}', mapping: Mapped(StringTableSlice { byte_start: 3331, byte_len: 3 }) }, + Range { from: '\u{2f81}', to: '\u{2f81}', mapping: Mapped(StringTableSlice { byte_start: 3334, byte_len: 3 }) }, + Range { from: '\u{2f82}', to: '\u{2f82}', mapping: Mapped(StringTableSlice { byte_start: 3337, byte_len: 3 }) }, + Range { from: '\u{2f83}', to: '\u{2f83}', mapping: Mapped(StringTableSlice { byte_start: 3340, byte_len: 3 }) }, + Range { from: '\u{2f84}', to: '\u{2f84}', mapping: Mapped(StringTableSlice { byte_start: 3343, byte_len: 3 }) }, + Range { from: '\u{2f85}', to: '\u{2f85}', mapping: Mapped(StringTableSlice { byte_start: 3346, byte_len: 3 }) }, + Range { from: '\u{2f86}', to: '\u{2f86}', mapping: Mapped(StringTableSlice { byte_start: 3349, byte_len: 3 }) }, + Range { from: '\u{2f87}', to: '\u{2f87}', mapping: Mapped(StringTableSlice { byte_start: 3352, byte_len: 3 }) }, + Range { from: '\u{2f88}', to: '\u{2f88}', mapping: Mapped(StringTableSlice { byte_start: 3355, byte_len: 3 }) }, + Range { from: '\u{2f89}', to: '\u{2f89}', mapping: Mapped(StringTableSlice { byte_start: 3358, byte_len: 3 }) }, + Range { from: '\u{2f8a}', to: '\u{2f8a}', mapping: Mapped(StringTableSlice { byte_start: 3361, byte_len: 3 }) }, + Range { from: '\u{2f8b}', to: '\u{2f8b}', mapping: Mapped(StringTableSlice { byte_start: 3364, byte_len: 3 }) }, + Range { from: '\u{2f8c}', to: '\u{2f8c}', mapping: Mapped(StringTableSlice { byte_start: 3367, byte_len: 3 }) }, + Range { from: '\u{2f8d}', to: '\u{2f8d}', mapping: Mapped(StringTableSlice { byte_start: 3370, byte_len: 3 }) }, + Range { from: '\u{2f8e}', to: '\u{2f8e}', mapping: Mapped(StringTableSlice { byte_start: 3373, byte_len: 3 }) }, + Range { from: '\u{2f8f}', to: '\u{2f8f}', mapping: Mapped(StringTableSlice { byte_start: 3376, byte_len: 3 }) }, + Range { from: '\u{2f90}', to: '\u{2f90}', mapping: Mapped(StringTableSlice { byte_start: 3379, byte_len: 3 }) }, + Range { from: '\u{2f91}', to: '\u{2f91}', mapping: Mapped(StringTableSlice { byte_start: 3382, byte_len: 3 }) }, + Range { from: '\u{2f92}', to: '\u{2f92}', mapping: Mapped(StringTableSlice { byte_start: 3385, byte_len: 3 }) }, + Range { from: '\u{2f93}', to: '\u{2f93}', mapping: Mapped(StringTableSlice { byte_start: 3388, byte_len: 3 }) }, + Range { from: '\u{2f94}', to: '\u{2f94}', mapping: Mapped(StringTableSlice { byte_start: 3391, byte_len: 3 }) }, + Range { from: '\u{2f95}', to: '\u{2f95}', mapping: Mapped(StringTableSlice { byte_start: 3394, byte_len: 3 }) }, + Range { from: '\u{2f96}', to: '\u{2f96}', mapping: Mapped(StringTableSlice { byte_start: 3397, byte_len: 3 }) }, + Range { from: '\u{2f97}', to: '\u{2f97}', mapping: Mapped(StringTableSlice { byte_start: 3400, byte_len: 3 }) }, + Range { from: '\u{2f98}', to: '\u{2f98}', mapping: Mapped(StringTableSlice { byte_start: 3403, byte_len: 3 }) }, + Range { from: '\u{2f99}', to: '\u{2f99}', mapping: Mapped(StringTableSlice { byte_start: 3406, byte_len: 3 }) }, + Range { from: '\u{2f9a}', to: '\u{2f9a}', mapping: Mapped(StringTableSlice { byte_start: 3409, byte_len: 3 }) }, + Range { from: '\u{2f9b}', to: '\u{2f9b}', mapping: Mapped(StringTableSlice { byte_start: 3412, byte_len: 3 }) }, + Range { from: '\u{2f9c}', to: '\u{2f9c}', mapping: Mapped(StringTableSlice { byte_start: 3415, byte_len: 3 }) }, + Range { from: '\u{2f9d}', to: '\u{2f9d}', mapping: Mapped(StringTableSlice { byte_start: 3418, byte_len: 3 }) }, + Range { from: '\u{2f9e}', to: '\u{2f9e}', mapping: Mapped(StringTableSlice { byte_start: 3421, byte_len: 3 }) }, + Range { from: '\u{2f9f}', to: '\u{2f9f}', mapping: Mapped(StringTableSlice { byte_start: 3424, byte_len: 3 }) }, + Range { from: '\u{2fa0}', to: '\u{2fa0}', mapping: Mapped(StringTableSlice { byte_start: 3427, byte_len: 3 }) }, + Range { from: '\u{2fa1}', to: '\u{2fa1}', mapping: Mapped(StringTableSlice { byte_start: 3430, byte_len: 3 }) }, + Range { from: '\u{2fa2}', to: '\u{2fa2}', mapping: Mapped(StringTableSlice { byte_start: 3433, byte_len: 3 }) }, + Range { from: '\u{2fa3}', to: '\u{2fa3}', mapping: Mapped(StringTableSlice { byte_start: 3436, byte_len: 3 }) }, + Range { from: '\u{2fa4}', to: '\u{2fa4}', mapping: Mapped(StringTableSlice { byte_start: 3439, byte_len: 3 }) }, + Range { from: '\u{2fa5}', to: '\u{2fa5}', mapping: Mapped(StringTableSlice { byte_start: 3442, byte_len: 3 }) }, + Range { from: '\u{2fa6}', to: '\u{2fa6}', mapping: Mapped(StringTableSlice { byte_start: 3445, byte_len: 3 }) }, + Range { from: '\u{2fa7}', to: '\u{2fa7}', mapping: Mapped(StringTableSlice { byte_start: 3448, byte_len: 3 }) }, + Range { from: '\u{2fa8}', to: '\u{2fa8}', mapping: Mapped(StringTableSlice { byte_start: 3451, byte_len: 3 }) }, + Range { from: '\u{2fa9}', to: '\u{2fa9}', mapping: Mapped(StringTableSlice { byte_start: 3454, byte_len: 3 }) }, + Range { from: '\u{2faa}', to: '\u{2faa}', mapping: Mapped(StringTableSlice { byte_start: 3457, byte_len: 3 }) }, + Range { from: '\u{2fab}', to: '\u{2fab}', mapping: Mapped(StringTableSlice { byte_start: 3460, byte_len: 3 }) }, + Range { from: '\u{2fac}', to: '\u{2fac}', mapping: Mapped(StringTableSlice { byte_start: 3463, byte_len: 3 }) }, + Range { from: '\u{2fad}', to: '\u{2fad}', mapping: Mapped(StringTableSlice { byte_start: 3466, byte_len: 3 }) }, + Range { from: '\u{2fae}', to: '\u{2fae}', mapping: Mapped(StringTableSlice { byte_start: 3469, byte_len: 3 }) }, + Range { from: '\u{2faf}', to: '\u{2faf}', mapping: Mapped(StringTableSlice { byte_start: 3472, byte_len: 3 }) }, + Range { from: '\u{2fb0}', to: '\u{2fb0}', mapping: Mapped(StringTableSlice { byte_start: 3475, byte_len: 3 }) }, + Range { from: '\u{2fb1}', to: '\u{2fb1}', mapping: Mapped(StringTableSlice { byte_start: 3478, byte_len: 3 }) }, + Range { from: '\u{2fb2}', to: '\u{2fb2}', mapping: Mapped(StringTableSlice { byte_start: 3481, byte_len: 3 }) }, + Range { from: '\u{2fb3}', to: '\u{2fb3}', mapping: Mapped(StringTableSlice { byte_start: 3484, byte_len: 3 }) }, + Range { from: '\u{2fb4}', to: '\u{2fb4}', mapping: Mapped(StringTableSlice { byte_start: 3487, byte_len: 3 }) }, + Range { from: '\u{2fb5}', to: '\u{2fb5}', mapping: Mapped(StringTableSlice { byte_start: 3490, byte_len: 3 }) }, + Range { from: '\u{2fb6}', to: '\u{2fb6}', mapping: Mapped(StringTableSlice { byte_start: 3493, byte_len: 3 }) }, + Range { from: '\u{2fb7}', to: '\u{2fb7}', mapping: Mapped(StringTableSlice { byte_start: 3496, byte_len: 3 }) }, + Range { from: '\u{2fb8}', to: '\u{2fb8}', mapping: Mapped(StringTableSlice { byte_start: 3499, byte_len: 3 }) }, + Range { from: '\u{2fb9}', to: '\u{2fb9}', mapping: Mapped(StringTableSlice { byte_start: 3502, byte_len: 3 }) }, + Range { from: '\u{2fba}', to: '\u{2fba}', mapping: Mapped(StringTableSlice { byte_start: 3505, byte_len: 3 }) }, + Range { from: '\u{2fbb}', to: '\u{2fbb}', mapping: Mapped(StringTableSlice { byte_start: 3508, byte_len: 3 }) }, + Range { from: '\u{2fbc}', to: '\u{2fbc}', mapping: Mapped(StringTableSlice { byte_start: 3511, byte_len: 3 }) }, + Range { from: '\u{2fbd}', to: '\u{2fbd}', mapping: Mapped(StringTableSlice { byte_start: 3514, byte_len: 3 }) }, + Range { from: '\u{2fbe}', to: '\u{2fbe}', mapping: Mapped(StringTableSlice { byte_start: 3517, byte_len: 3 }) }, + Range { from: '\u{2fbf}', to: '\u{2fbf}', mapping: Mapped(StringTableSlice { byte_start: 3520, byte_len: 3 }) }, + Range { from: '\u{2fc0}', to: '\u{2fc0}', mapping: Mapped(StringTableSlice { byte_start: 3523, byte_len: 3 }) }, + Range { from: '\u{2fc1}', to: '\u{2fc1}', mapping: Mapped(StringTableSlice { byte_start: 3526, byte_len: 3 }) }, + Range { from: '\u{2fc2}', to: '\u{2fc2}', mapping: Mapped(StringTableSlice { byte_start: 3529, byte_len: 3 }) }, + Range { from: '\u{2fc3}', to: '\u{2fc3}', mapping: Mapped(StringTableSlice { byte_start: 3532, byte_len: 3 }) }, + Range { from: '\u{2fc4}', to: '\u{2fc4}', mapping: Mapped(StringTableSlice { byte_start: 3535, byte_len: 3 }) }, + Range { from: '\u{2fc5}', to: '\u{2fc5}', mapping: Mapped(StringTableSlice { byte_start: 3538, byte_len: 3 }) }, + Range { from: '\u{2fc6}', to: '\u{2fc6}', mapping: Mapped(StringTableSlice { byte_start: 3541, byte_len: 3 }) }, + Range { from: '\u{2fc7}', to: '\u{2fc7}', mapping: Mapped(StringTableSlice { byte_start: 3544, byte_len: 3 }) }, + Range { from: '\u{2fc8}', to: '\u{2fc8}', mapping: Mapped(StringTableSlice { byte_start: 3547, byte_len: 3 }) }, + Range { from: '\u{2fc9}', to: '\u{2fc9}', mapping: Mapped(StringTableSlice { byte_start: 3550, byte_len: 3 }) }, + Range { from: '\u{2fca}', to: '\u{2fca}', mapping: Mapped(StringTableSlice { byte_start: 3553, byte_len: 3 }) }, + Range { from: '\u{2fcb}', to: '\u{2fcb}', mapping: Mapped(StringTableSlice { byte_start: 3556, byte_len: 3 }) }, + Range { from: '\u{2fcc}', to: '\u{2fcc}', mapping: Mapped(StringTableSlice { byte_start: 3559, byte_len: 3 }) }, + Range { from: '\u{2fcd}', to: '\u{2fcd}', mapping: Mapped(StringTableSlice { byte_start: 3562, byte_len: 3 }) }, + Range { from: '\u{2fce}', to: '\u{2fce}', mapping: Mapped(StringTableSlice { byte_start: 3565, byte_len: 3 }) }, + Range { from: '\u{2fcf}', to: '\u{2fcf}', mapping: Mapped(StringTableSlice { byte_start: 3568, byte_len: 3 }) }, + Range { from: '\u{2fd0}', to: '\u{2fd0}', mapping: Mapped(StringTableSlice { byte_start: 3571, byte_len: 3 }) }, + Range { from: '\u{2fd1}', to: '\u{2fd1}', mapping: Mapped(StringTableSlice { byte_start: 3574, byte_len: 3 }) }, + Range { from: '\u{2fd2}', to: '\u{2fd2}', mapping: Mapped(StringTableSlice { byte_start: 3577, byte_len: 3 }) }, + Range { from: '\u{2fd3}', to: '\u{2fd3}', mapping: Mapped(StringTableSlice { byte_start: 3580, byte_len: 3 }) }, + Range { from: '\u{2fd4}', to: '\u{2fd4}', mapping: Mapped(StringTableSlice { byte_start: 3583, byte_len: 3 }) }, + Range { from: '\u{2fd5}', to: '\u{2fd5}', mapping: Mapped(StringTableSlice { byte_start: 3586, byte_len: 3 }) }, + Range { from: '\u{2fd6}', to: '\u{2fef}', mapping: Disallowed }, + Range { from: '\u{2ff0}', to: '\u{2ffb}', mapping: Disallowed }, + Range { from: '\u{2ffc}', to: '\u{2fff}', mapping: Disallowed }, + Range { from: '\u{3000}', to: '\u{3000}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 26, byte_len: 1 }) }, + Range { from: '\u{3001}', to: '\u{3001}', mapping: Valid }, + Range { from: '\u{3002}', to: '\u{3002}', mapping: Mapped(StringTableSlice { byte_start: 3589, byte_len: 1 }) }, + Range { from: '\u{3003}', to: '\u{3004}', mapping: Valid }, + Range { from: '\u{3005}', to: '\u{3007}', mapping: Valid }, + Range { from: '\u{3008}', to: '\u{3029}', mapping: Valid }, + Range { from: '\u{302a}', to: '\u{302d}', mapping: Valid }, + Range { from: '\u{302e}', to: '\u{3035}', mapping: Valid }, + Range { from: '\u{3036}', to: '\u{3036}', mapping: Mapped(StringTableSlice { byte_start: 3590, byte_len: 3 }) }, + Range { from: '\u{3037}', to: '\u{3037}', mapping: Valid }, + Range { from: '\u{3038}', to: '\u{3038}', mapping: Mapped(StringTableSlice { byte_start: 3016, byte_len: 3 }) }, + Range { from: '\u{3039}', to: '\u{3039}', mapping: Mapped(StringTableSlice { byte_start: 3593, byte_len: 3 }) }, + Range { from: '\u{303a}', to: '\u{303a}', mapping: Mapped(StringTableSlice { byte_start: 3596, byte_len: 3 }) }, + Range { from: '\u{303b}', to: '\u{303b}', mapping: Valid }, + Range { from: '\u{303c}', to: '\u{303c}', mapping: Valid }, + Range { from: '\u{303d}', to: '\u{303d}', mapping: Valid }, + Range { from: '\u{303e}', to: '\u{303e}', mapping: Valid }, + Range { from: '\u{303f}', to: '\u{303f}', mapping: Valid }, + Range { from: '\u{3040}', to: '\u{3040}', mapping: Disallowed }, + Range { from: '\u{3041}', to: '\u{3094}', mapping: Valid }, + Range { from: '\u{3095}', to: '\u{3096}', mapping: Valid }, + Range { from: '\u{3097}', to: '\u{3098}', mapping: Disallowed }, + Range { from: '\u{3099}', to: '\u{309a}', mapping: Valid }, + Range { from: '\u{309b}', to: '\u{309b}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3599, byte_len: 4 }) }, + Range { from: '\u{309c}', to: '\u{309c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3603, byte_len: 4 }) }, + Range { from: '\u{309d}', to: '\u{309e}', mapping: Valid }, + Range { from: '\u{309f}', to: '\u{309f}', mapping: Mapped(StringTableSlice { byte_start: 3607, byte_len: 6 }) }, + Range { from: '\u{30a0}', to: '\u{30a0}', mapping: Valid }, + Range { from: '\u{30a1}', to: '\u{30fe}', mapping: Valid }, + Range { from: '\u{30ff}', to: '\u{30ff}', mapping: Mapped(StringTableSlice { byte_start: 3613, byte_len: 6 }) }, + Range { from: '\u{3100}', to: '\u{3104}', mapping: Disallowed }, + Range { from: '\u{3105}', to: '\u{312c}', mapping: Valid }, + Range { from: '\u{312d}', to: '\u{312d}', mapping: Valid }, + Range { from: '\u{312e}', to: '\u{3130}', mapping: Disallowed }, + Range { from: '\u{3131}', to: '\u{3131}', mapping: Mapped(StringTableSlice { byte_start: 3619, byte_len: 3 }) }, + Range { from: '\u{3132}', to: '\u{3132}', mapping: Mapped(StringTableSlice { byte_start: 3622, byte_len: 3 }) }, + Range { from: '\u{3133}', to: '\u{3133}', mapping: Mapped(StringTableSlice { byte_start: 3625, byte_len: 3 }) }, + Range { from: '\u{3134}', to: '\u{3134}', mapping: Mapped(StringTableSlice { byte_start: 3628, byte_len: 3 }) }, + Range { from: '\u{3135}', to: '\u{3135}', mapping: Mapped(StringTableSlice { byte_start: 3631, byte_len: 3 }) }, + Range { from: '\u{3136}', to: '\u{3136}', mapping: Mapped(StringTableSlice { byte_start: 3634, byte_len: 3 }) }, + Range { from: '\u{3137}', to: '\u{3137}', mapping: Mapped(StringTableSlice { byte_start: 3637, byte_len: 3 }) }, + Range { from: '\u{3138}', to: '\u{3138}', mapping: Mapped(StringTableSlice { byte_start: 3640, byte_len: 3 }) }, + Range { from: '\u{3139}', to: '\u{3139}', mapping: Mapped(StringTableSlice { byte_start: 3643, byte_len: 3 }) }, + Range { from: '\u{313a}', to: '\u{313a}', mapping: Mapped(StringTableSlice { byte_start: 3646, byte_len: 3 }) }, + Range { from: '\u{313b}', to: '\u{313b}', mapping: Mapped(StringTableSlice { byte_start: 3649, byte_len: 3 }) }, + Range { from: '\u{313c}', to: '\u{313c}', mapping: Mapped(StringTableSlice { byte_start: 3652, byte_len: 3 }) }, + Range { from: '\u{313d}', to: '\u{313d}', mapping: Mapped(StringTableSlice { byte_start: 3655, byte_len: 3 }) }, + Range { from: '\u{313e}', to: '\u{313e}', mapping: Mapped(StringTableSlice { byte_start: 3658, byte_len: 3 }) }, + Range { from: '\u{313f}', to: '\u{313f}', mapping: Mapped(StringTableSlice { byte_start: 3661, byte_len: 3 }) }, + Range { from: '\u{3140}', to: '\u{3140}', mapping: Mapped(StringTableSlice { byte_start: 3664, byte_len: 3 }) }, + Range { from: '\u{3141}', to: '\u{3141}', mapping: Mapped(StringTableSlice { byte_start: 3667, byte_len: 3 }) }, + Range { from: '\u{3142}', to: '\u{3142}', mapping: Mapped(StringTableSlice { byte_start: 3670, byte_len: 3 }) }, + Range { from: '\u{3143}', to: '\u{3143}', mapping: Mapped(StringTableSlice { byte_start: 3673, byte_len: 3 }) }, + Range { from: '\u{3144}', to: '\u{3144}', mapping: Mapped(StringTableSlice { byte_start: 3676, byte_len: 3 }) }, + Range { from: '\u{3145}', to: '\u{3145}', mapping: Mapped(StringTableSlice { byte_start: 3679, byte_len: 3 }) }, + Range { from: '\u{3146}', to: '\u{3146}', mapping: Mapped(StringTableSlice { byte_start: 3682, byte_len: 3 }) }, + Range { from: '\u{3147}', to: '\u{3147}', mapping: Mapped(StringTableSlice { byte_start: 3685, byte_len: 3 }) }, + Range { from: '\u{3148}', to: '\u{3148}', mapping: Mapped(StringTableSlice { byte_start: 3688, byte_len: 3 }) }, + Range { from: '\u{3149}', to: '\u{3149}', mapping: Mapped(StringTableSlice { byte_start: 3691, byte_len: 3 }) }, + Range { from: '\u{314a}', to: '\u{314a}', mapping: Mapped(StringTableSlice { byte_start: 3694, byte_len: 3 }) }, + Range { from: '\u{314b}', to: '\u{314b}', mapping: Mapped(StringTableSlice { byte_start: 3697, byte_len: 3 }) }, + Range { from: '\u{314c}', to: '\u{314c}', mapping: Mapped(StringTableSlice { byte_start: 3700, byte_len: 3 }) }, + Range { from: '\u{314d}', to: '\u{314d}', mapping: Mapped(StringTableSlice { byte_start: 3703, byte_len: 3 }) }, + Range { from: '\u{314e}', to: '\u{314e}', mapping: Mapped(StringTableSlice { byte_start: 3706, byte_len: 3 }) }, + Range { from: '\u{314f}', to: '\u{314f}', mapping: Mapped(StringTableSlice { byte_start: 3709, byte_len: 3 }) }, + Range { from: '\u{3150}', to: '\u{3150}', mapping: Mapped(StringTableSlice { byte_start: 3712, byte_len: 3 }) }, + Range { from: '\u{3151}', to: '\u{3151}', mapping: Mapped(StringTableSlice { byte_start: 3715, byte_len: 3 }) }, + Range { from: '\u{3152}', to: '\u{3152}', mapping: Mapped(StringTableSlice { byte_start: 3718, byte_len: 3 }) }, + Range { from: '\u{3153}', to: '\u{3153}', mapping: Mapped(StringTableSlice { byte_start: 3721, byte_len: 3 }) }, + Range { from: '\u{3154}', to: '\u{3154}', mapping: Mapped(StringTableSlice { byte_start: 3724, byte_len: 3 }) }, + Range { from: '\u{3155}', to: '\u{3155}', mapping: Mapped(StringTableSlice { byte_start: 3727, byte_len: 3 }) }, + Range { from: '\u{3156}', to: '\u{3156}', mapping: Mapped(StringTableSlice { byte_start: 3730, byte_len: 3 }) }, + Range { from: '\u{3157}', to: '\u{3157}', mapping: Mapped(StringTableSlice { byte_start: 3733, byte_len: 3 }) }, + Range { from: '\u{3158}', to: '\u{3158}', mapping: Mapped(StringTableSlice { byte_start: 3736, byte_len: 3 }) }, + Range { from: '\u{3159}', to: '\u{3159}', mapping: Mapped(StringTableSlice { byte_start: 3739, byte_len: 3 }) }, + Range { from: '\u{315a}', to: '\u{315a}', mapping: Mapped(StringTableSlice { byte_start: 3742, byte_len: 3 }) }, + Range { from: '\u{315b}', to: '\u{315b}', mapping: Mapped(StringTableSlice { byte_start: 3745, byte_len: 3 }) }, + Range { from: '\u{315c}', to: '\u{315c}', mapping: Mapped(StringTableSlice { byte_start: 3748, byte_len: 3 }) }, + Range { from: '\u{315d}', to: '\u{315d}', mapping: Mapped(StringTableSlice { byte_start: 3751, byte_len: 3 }) }, + Range { from: '\u{315e}', to: '\u{315e}', mapping: Mapped(StringTableSlice { byte_start: 3754, byte_len: 3 }) }, + Range { from: '\u{315f}', to: '\u{315f}', mapping: Mapped(StringTableSlice { byte_start: 3757, byte_len: 3 }) }, + Range { from: '\u{3160}', to: '\u{3160}', mapping: Mapped(StringTableSlice { byte_start: 3760, byte_len: 3 }) }, + Range { from: '\u{3161}', to: '\u{3161}', mapping: Mapped(StringTableSlice { byte_start: 3763, byte_len: 3 }) }, + Range { from: '\u{3162}', to: '\u{3162}', mapping: Mapped(StringTableSlice { byte_start: 3766, byte_len: 3 }) }, + Range { from: '\u{3163}', to: '\u{3163}', mapping: Mapped(StringTableSlice { byte_start: 3769, byte_len: 3 }) }, + Range { from: '\u{3164}', to: '\u{3164}', mapping: Disallowed }, + Range { from: '\u{3165}', to: '\u{3165}', mapping: Mapped(StringTableSlice { byte_start: 3772, byte_len: 3 }) }, + Range { from: '\u{3166}', to: '\u{3166}', mapping: Mapped(StringTableSlice { byte_start: 3775, byte_len: 3 }) }, + Range { from: '\u{3167}', to: '\u{3167}', mapping: Mapped(StringTableSlice { byte_start: 3778, byte_len: 3 }) }, + Range { from: '\u{3168}', to: '\u{3168}', mapping: Mapped(StringTableSlice { byte_start: 3781, byte_len: 3 }) }, + Range { from: '\u{3169}', to: '\u{3169}', mapping: Mapped(StringTableSlice { byte_start: 3784, byte_len: 3 }) }, + Range { from: '\u{316a}', to: '\u{316a}', mapping: Mapped(StringTableSlice { byte_start: 3787, byte_len: 3 }) }, + Range { from: '\u{316b}', to: '\u{316b}', mapping: Mapped(StringTableSlice { byte_start: 3790, byte_len: 3 }) }, + Range { from: '\u{316c}', to: '\u{316c}', mapping: Mapped(StringTableSlice { byte_start: 3793, byte_len: 3 }) }, + Range { from: '\u{316d}', to: '\u{316d}', mapping: Mapped(StringTableSlice { byte_start: 3796, byte_len: 3 }) }, + Range { from: '\u{316e}', to: '\u{316e}', mapping: Mapped(StringTableSlice { byte_start: 3799, byte_len: 3 }) }, + Range { from: '\u{316f}', to: '\u{316f}', mapping: Mapped(StringTableSlice { byte_start: 3802, byte_len: 3 }) }, + Range { from: '\u{3170}', to: '\u{3170}', mapping: Mapped(StringTableSlice { byte_start: 3805, byte_len: 3 }) }, + Range { from: '\u{3171}', to: '\u{3171}', mapping: Mapped(StringTableSlice { byte_start: 3808, byte_len: 3 }) }, + Range { from: '\u{3172}', to: '\u{3172}', mapping: Mapped(StringTableSlice { byte_start: 3811, byte_len: 3 }) }, + Range { from: '\u{3173}', to: '\u{3173}', mapping: Mapped(StringTableSlice { byte_start: 3814, byte_len: 3 }) }, + Range { from: '\u{3174}', to: '\u{3174}', mapping: Mapped(StringTableSlice { byte_start: 3817, byte_len: 3 }) }, + Range { from: '\u{3175}', to: '\u{3175}', mapping: Mapped(StringTableSlice { byte_start: 3820, byte_len: 3 }) }, + Range { from: '\u{3176}', to: '\u{3176}', mapping: Mapped(StringTableSlice { byte_start: 3823, byte_len: 3 }) }, + Range { from: '\u{3177}', to: '\u{3177}', mapping: Mapped(StringTableSlice { byte_start: 3826, byte_len: 3 }) }, + Range { from: '\u{3178}', to: '\u{3178}', mapping: Mapped(StringTableSlice { byte_start: 3829, byte_len: 3 }) }, + Range { from: '\u{3179}', to: '\u{3179}', mapping: Mapped(StringTableSlice { byte_start: 3832, byte_len: 3 }) }, + Range { from: '\u{317a}', to: '\u{317a}', mapping: Mapped(StringTableSlice { byte_start: 3835, byte_len: 3 }) }, + Range { from: '\u{317b}', to: '\u{317b}', mapping: Mapped(StringTableSlice { byte_start: 3838, byte_len: 3 }) }, + Range { from: '\u{317c}', to: '\u{317c}', mapping: Mapped(StringTableSlice { byte_start: 3841, byte_len: 3 }) }, + Range { from: '\u{317d}', to: '\u{317d}', mapping: Mapped(StringTableSlice { byte_start: 3844, byte_len: 3 }) }, + Range { from: '\u{317e}', to: '\u{317e}', mapping: Mapped(StringTableSlice { byte_start: 3847, byte_len: 3 }) }, + Range { from: '\u{317f}', to: '\u{317f}', mapping: Mapped(StringTableSlice { byte_start: 3850, byte_len: 3 }) }, + Range { from: '\u{3180}', to: '\u{3180}', mapping: Mapped(StringTableSlice { byte_start: 3853, byte_len: 3 }) }, + Range { from: '\u{3181}', to: '\u{3181}', mapping: Mapped(StringTableSlice { byte_start: 3856, byte_len: 3 }) }, + Range { from: '\u{3182}', to: '\u{3182}', mapping: Mapped(StringTableSlice { byte_start: 3859, byte_len: 3 }) }, + Range { from: '\u{3183}', to: '\u{3183}', mapping: Mapped(StringTableSlice { byte_start: 3862, byte_len: 3 }) }, + Range { from: '\u{3184}', to: '\u{3184}', mapping: Mapped(StringTableSlice { byte_start: 3865, byte_len: 3 }) }, + Range { from: '\u{3185}', to: '\u{3185}', mapping: Mapped(StringTableSlice { byte_start: 3868, byte_len: 3 }) }, + Range { from: '\u{3186}', to: '\u{3186}', mapping: Mapped(StringTableSlice { byte_start: 3871, byte_len: 3 }) }, + Range { from: '\u{3187}', to: '\u{3187}', mapping: Mapped(StringTableSlice { byte_start: 3874, byte_len: 3 }) }, + Range { from: '\u{3188}', to: '\u{3188}', mapping: Mapped(StringTableSlice { byte_start: 3877, byte_len: 3 }) }, + Range { from: '\u{3189}', to: '\u{3189}', mapping: Mapped(StringTableSlice { byte_start: 3880, byte_len: 3 }) }, + Range { from: '\u{318a}', to: '\u{318a}', mapping: Mapped(StringTableSlice { byte_start: 3883, byte_len: 3 }) }, + Range { from: '\u{318b}', to: '\u{318b}', mapping: Mapped(StringTableSlice { byte_start: 3886, byte_len: 3 }) }, + Range { from: '\u{318c}', to: '\u{318c}', mapping: Mapped(StringTableSlice { byte_start: 3889, byte_len: 3 }) }, + Range { from: '\u{318d}', to: '\u{318d}', mapping: Mapped(StringTableSlice { byte_start: 3892, byte_len: 3 }) }, + Range { from: '\u{318e}', to: '\u{318e}', mapping: Mapped(StringTableSlice { byte_start: 3895, byte_len: 3 }) }, + Range { from: '\u{318f}', to: '\u{318f}', mapping: Disallowed }, + Range { from: '\u{3190}', to: '\u{3191}', mapping: Valid }, + Range { from: '\u{3192}', to: '\u{3192}', mapping: Mapped(StringTableSlice { byte_start: 2947, byte_len: 3 }) }, + Range { from: '\u{3193}', to: '\u{3193}', mapping: Mapped(StringTableSlice { byte_start: 2965, byte_len: 3 }) }, + Range { from: '\u{3194}', to: '\u{3194}', mapping: Mapped(StringTableSlice { byte_start: 3898, byte_len: 3 }) }, + Range { from: '\u{3195}', to: '\u{3195}', mapping: Mapped(StringTableSlice { byte_start: 3901, byte_len: 3 }) }, + Range { from: '\u{3196}', to: '\u{3196}', mapping: Mapped(StringTableSlice { byte_start: 3904, byte_len: 3 }) }, + Range { from: '\u{3197}', to: '\u{3197}', mapping: Mapped(StringTableSlice { byte_start: 3907, byte_len: 3 }) }, + Range { from: '\u{3198}', to: '\u{3198}', mapping: Mapped(StringTableSlice { byte_start: 3910, byte_len: 3 }) }, + Range { from: '\u{3199}', to: '\u{3199}', mapping: Mapped(StringTableSlice { byte_start: 3913, byte_len: 3 }) }, + Range { from: '\u{319a}', to: '\u{319a}', mapping: Mapped(StringTableSlice { byte_start: 2959, byte_len: 3 }) }, + Range { from: '\u{319b}', to: '\u{319b}', mapping: Mapped(StringTableSlice { byte_start: 3916, byte_len: 3 }) }, + Range { from: '\u{319c}', to: '\u{319c}', mapping: Mapped(StringTableSlice { byte_start: 3919, byte_len: 3 }) }, + Range { from: '\u{319d}', to: '\u{319d}', mapping: Mapped(StringTableSlice { byte_start: 3922, byte_len: 3 }) }, + Range { from: '\u{319e}', to: '\u{319e}', mapping: Mapped(StringTableSlice { byte_start: 3925, byte_len: 3 }) }, + Range { from: '\u{319f}', to: '\u{319f}', mapping: Mapped(StringTableSlice { byte_start: 2971, byte_len: 3 }) }, + Range { from: '\u{31a0}', to: '\u{31b7}', mapping: Valid }, + Range { from: '\u{31b8}', to: '\u{31ba}', mapping: Valid }, + Range { from: '\u{31bb}', to: '\u{31bf}', mapping: Disallowed }, + Range { from: '\u{31c0}', to: '\u{31cf}', mapping: Valid }, + Range { from: '\u{31d0}', to: '\u{31e3}', mapping: Valid }, + Range { from: '\u{31e4}', to: '\u{31ef}', mapping: Disallowed }, + Range { from: '\u{31f0}', to: '\u{31ff}', mapping: Valid }, + Range { from: '\u{3200}', to: '\u{3200}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3928, byte_len: 5 }) }, + Range { from: '\u{3201}', to: '\u{3201}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3933, byte_len: 5 }) }, + Range { from: '\u{3202}', to: '\u{3202}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3938, byte_len: 5 }) }, + Range { from: '\u{3203}', to: '\u{3203}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3943, byte_len: 5 }) }, + Range { from: '\u{3204}', to: '\u{3204}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3948, byte_len: 5 }) }, + Range { from: '\u{3205}', to: '\u{3205}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3953, byte_len: 5 }) }, + Range { from: '\u{3206}', to: '\u{3206}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3958, byte_len: 5 }) }, + Range { from: '\u{3207}', to: '\u{3207}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3963, byte_len: 5 }) }, + Range { from: '\u{3208}', to: '\u{3208}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3968, byte_len: 5 }) }, + Range { from: '\u{3209}', to: '\u{3209}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3973, byte_len: 5 }) }, + Range { from: '\u{320a}', to: '\u{320a}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3978, byte_len: 5 }) }, + Range { from: '\u{320b}', to: '\u{320b}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3983, byte_len: 5 }) }, + Range { from: '\u{320c}', to: '\u{320c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3988, byte_len: 5 }) }, + Range { from: '\u{320d}', to: '\u{320d}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3993, byte_len: 5 }) }, + Range { from: '\u{320e}', to: '\u{320e}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 3998, byte_len: 5 }) }, + Range { from: '\u{320f}', to: '\u{320f}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4003, byte_len: 5 }) }, + Range { from: '\u{3210}', to: '\u{3210}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4008, byte_len: 5 }) }, + Range { from: '\u{3211}', to: '\u{3211}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4013, byte_len: 5 }) }, + Range { from: '\u{3212}', to: '\u{3212}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4018, byte_len: 5 }) }, + Range { from: '\u{3213}', to: '\u{3213}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4023, byte_len: 5 }) }, + Range { from: '\u{3214}', to: '\u{3214}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4028, byte_len: 5 }) }, + Range { from: '\u{3215}', to: '\u{3215}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4033, byte_len: 5 }) }, + Range { from: '\u{3216}', to: '\u{3216}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4038, byte_len: 5 }) }, + Range { from: '\u{3217}', to: '\u{3217}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4043, byte_len: 5 }) }, + Range { from: '\u{3218}', to: '\u{3218}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4048, byte_len: 5 }) }, + Range { from: '\u{3219}', to: '\u{3219}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4053, byte_len: 5 }) }, + Range { from: '\u{321a}', to: '\u{321a}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4058, byte_len: 5 }) }, + Range { from: '\u{321b}', to: '\u{321b}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4063, byte_len: 5 }) }, + Range { from: '\u{321c}', to: '\u{321c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4068, byte_len: 5 }) }, + Range { from: '\u{321d}', to: '\u{321d}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4073, byte_len: 8 }) }, + Range { from: '\u{321e}', to: '\u{321e}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4081, byte_len: 8 }) }, + Range { from: '\u{321f}', to: '\u{321f}', mapping: Disallowed }, + Range { from: '\u{3220}', to: '\u{3220}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4089, byte_len: 5 }) }, + Range { from: '\u{3221}', to: '\u{3221}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4094, byte_len: 5 }) }, + Range { from: '\u{3222}', to: '\u{3222}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4099, byte_len: 5 }) }, + Range { from: '\u{3223}', to: '\u{3223}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4104, byte_len: 5 }) }, + Range { from: '\u{3224}', to: '\u{3224}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4109, byte_len: 5 }) }, + Range { from: '\u{3225}', to: '\u{3225}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4114, byte_len: 5 }) }, + Range { from: '\u{3226}', to: '\u{3226}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4119, byte_len: 5 }) }, + Range { from: '\u{3227}', to: '\u{3227}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4124, byte_len: 5 }) }, + Range { from: '\u{3228}', to: '\u{3228}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4129, byte_len: 5 }) }, + Range { from: '\u{3229}', to: '\u{3229}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4134, byte_len: 5 }) }, + Range { from: '\u{322a}', to: '\u{322a}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4139, byte_len: 5 }) }, + Range { from: '\u{322b}', to: '\u{322b}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4144, byte_len: 5 }) }, + Range { from: '\u{322c}', to: '\u{322c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4149, byte_len: 5 }) }, + Range { from: '\u{322d}', to: '\u{322d}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4154, byte_len: 5 }) }, + Range { from: '\u{322e}', to: '\u{322e}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4159, byte_len: 5 }) }, + Range { from: '\u{322f}', to: '\u{322f}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4164, byte_len: 5 }) }, + Range { from: '\u{3230}', to: '\u{3230}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4169, byte_len: 5 }) }, + Range { from: '\u{3231}', to: '\u{3231}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4174, byte_len: 5 }) }, + Range { from: '\u{3232}', to: '\u{3232}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4179, byte_len: 5 }) }, + Range { from: '\u{3233}', to: '\u{3233}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4184, byte_len: 5 }) }, + Range { from: '\u{3234}', to: '\u{3234}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4189, byte_len: 5 }) }, + Range { from: '\u{3235}', to: '\u{3235}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4194, byte_len: 5 }) }, + Range { from: '\u{3236}', to: '\u{3236}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4199, byte_len: 5 }) }, + Range { from: '\u{3237}', to: '\u{3237}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4204, byte_len: 5 }) }, + Range { from: '\u{3238}', to: '\u{3238}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4209, byte_len: 5 }) }, + Range { from: '\u{3239}', to: '\u{3239}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4214, byte_len: 5 }) }, + Range { from: '\u{323a}', to: '\u{323a}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4219, byte_len: 5 }) }, + Range { from: '\u{323b}', to: '\u{323b}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4224, byte_len: 5 }) }, + Range { from: '\u{323c}', to: '\u{323c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4229, byte_len: 5 }) }, + Range { from: '\u{323d}', to: '\u{323d}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4234, byte_len: 5 }) }, + Range { from: '\u{323e}', to: '\u{323e}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4239, byte_len: 5 }) }, + Range { from: '\u{323f}', to: '\u{323f}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4244, byte_len: 5 }) }, + Range { from: '\u{3240}', to: '\u{3240}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4249, byte_len: 5 }) }, + Range { from: '\u{3241}', to: '\u{3241}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4254, byte_len: 5 }) }, + Range { from: '\u{3242}', to: '\u{3242}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4259, byte_len: 5 }) }, + Range { from: '\u{3243}', to: '\u{3243}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 4264, byte_len: 5 }) }, + Range { from: '\u{3244}', to: '\u{3244}', mapping: Mapped(StringTableSlice { byte_start: 4269, byte_len: 3 }) }, + Range { from: '\u{3245}', to: '\u{3245}', mapping: Mapped(StringTableSlice { byte_start: 4272, byte_len: 3 }) }, + Range { from: '\u{3246}', to: '\u{3246}', mapping: Mapped(StringTableSlice { byte_start: 3145, byte_len: 3 }) }, + Range { from: '\u{3247}', to: '\u{3247}', mapping: Mapped(StringTableSlice { byte_start: 4275, byte_len: 3 }) }, + Range { from: '\u{3248}', to: '\u{324f}', mapping: Valid }, + Range { from: '\u{3250}', to: '\u{3250}', mapping: Mapped(StringTableSlice { byte_start: 4278, byte_len: 3 }) }, + Range { from: '\u{3251}', to: '\u{3251}', mapping: Mapped(StringTableSlice { byte_start: 4281, byte_len: 2 }) }, + Range { from: '\u{3252}', to: '\u{3252}', mapping: Mapped(StringTableSlice { byte_start: 4283, byte_len: 2 }) }, + Range { from: '\u{3253}', to: '\u{3253}', mapping: Mapped(StringTableSlice { byte_start: 4285, byte_len: 2 }) }, + Range { from: '\u{3254}', to: '\u{3254}', mapping: Mapped(StringTableSlice { byte_start: 4287, byte_len: 2 }) }, + Range { from: '\u{3255}', to: '\u{3255}', mapping: Mapped(StringTableSlice { byte_start: 4289, byte_len: 2 }) }, + Range { from: '\u{3256}', to: '\u{3256}', mapping: Mapped(StringTableSlice { byte_start: 4291, byte_len: 2 }) }, + Range { from: '\u{3257}', to: '\u{3257}', mapping: Mapped(StringTableSlice { byte_start: 4293, byte_len: 2 }) }, + Range { from: '\u{3258}', to: '\u{3258}', mapping: Mapped(StringTableSlice { byte_start: 4295, byte_len: 2 }) }, + Range { from: '\u{3259}', to: '\u{3259}', mapping: Mapped(StringTableSlice { byte_start: 4297, byte_len: 2 }) }, + Range { from: '\u{325a}', to: '\u{325a}', mapping: Mapped(StringTableSlice { byte_start: 4299, byte_len: 2 }) }, + Range { from: '\u{325b}', to: '\u{325b}', mapping: Mapped(StringTableSlice { byte_start: 4301, byte_len: 2 }) }, + Range { from: '\u{325c}', to: '\u{325c}', mapping: Mapped(StringTableSlice { byte_start: 4303, byte_len: 2 }) }, + Range { from: '\u{325d}', to: '\u{325d}', mapping: Mapped(StringTableSlice { byte_start: 4305, byte_len: 2 }) }, + Range { from: '\u{325e}', to: '\u{325e}', mapping: Mapped(StringTableSlice { byte_start: 4307, byte_len: 2 }) }, + Range { from: '\u{325f}', to: '\u{325f}', mapping: Mapped(StringTableSlice { byte_start: 4309, byte_len: 2 }) }, + Range { from: '\u{3260}', to: '\u{3260}', mapping: Mapped(StringTableSlice { byte_start: 3619, byte_len: 3 }) }, + Range { from: '\u{3261}', to: '\u{3261}', mapping: Mapped(StringTableSlice { byte_start: 3628, byte_len: 3 }) }, + Range { from: '\u{3262}', to: '\u{3262}', mapping: Mapped(StringTableSlice { byte_start: 3637, byte_len: 3 }) }, + Range { from: '\u{3263}', to: '\u{3263}', mapping: Mapped(StringTableSlice { byte_start: 3643, byte_len: 3 }) }, + Range { from: '\u{3264}', to: '\u{3264}', mapping: Mapped(StringTableSlice { byte_start: 3667, byte_len: 3 }) }, + Range { from: '\u{3265}', to: '\u{3265}', mapping: Mapped(StringTableSlice { byte_start: 3670, byte_len: 3 }) }, + Range { from: '\u{3266}', to: '\u{3266}', mapping: Mapped(StringTableSlice { byte_start: 3679, byte_len: 3 }) }, + Range { from: '\u{3267}', to: '\u{3267}', mapping: Mapped(StringTableSlice { byte_start: 3685, byte_len: 3 }) }, + Range { from: '\u{3268}', to: '\u{3268}', mapping: Mapped(StringTableSlice { byte_start: 3688, byte_len: 3 }) }, + Range { from: '\u{3269}', to: '\u{3269}', mapping: Mapped(StringTableSlice { byte_start: 3694, byte_len: 3 }) }, + Range { from: '\u{326a}', to: '\u{326a}', mapping: Mapped(StringTableSlice { byte_start: 3697, byte_len: 3 }) }, + Range { from: '\u{326b}', to: '\u{326b}', mapping: Mapped(StringTableSlice { byte_start: 3700, byte_len: 3 }) }, + Range { from: '\u{326c}', to: '\u{326c}', mapping: Mapped(StringTableSlice { byte_start: 3703, byte_len: 3 }) }, + Range { from: '\u{326d}', to: '\u{326d}', mapping: Mapped(StringTableSlice { byte_start: 3706, byte_len: 3 }) }, + Range { from: '\u{326e}', to: '\u{326e}', mapping: Mapped(StringTableSlice { byte_start: 4311, byte_len: 3 }) }, + Range { from: '\u{326f}', to: '\u{326f}', mapping: Mapped(StringTableSlice { byte_start: 4314, byte_len: 3 }) }, + Range { from: '\u{3270}', to: '\u{3270}', mapping: Mapped(StringTableSlice { byte_start: 4317, byte_len: 3 }) }, + Range { from: '\u{3271}', to: '\u{3271}', mapping: Mapped(StringTableSlice { byte_start: 4320, byte_len: 3 }) }, + Range { from: '\u{3272}', to: '\u{3272}', mapping: Mapped(StringTableSlice { byte_start: 4323, byte_len: 3 }) }, + Range { from: '\u{3273}', to: '\u{3273}', mapping: Mapped(StringTableSlice { byte_start: 4326, byte_len: 3 }) }, + Range { from: '\u{3274}', to: '\u{3274}', mapping: Mapped(StringTableSlice { byte_start: 4329, byte_len: 3 }) }, + Range { from: '\u{3275}', to: '\u{3275}', mapping: Mapped(StringTableSlice { byte_start: 4332, byte_len: 3 }) }, + Range { from: '\u{3276}', to: '\u{3276}', mapping: Mapped(StringTableSlice { byte_start: 4335, byte_len: 3 }) }, + Range { from: '\u{3277}', to: '\u{3277}', mapping: Mapped(StringTableSlice { byte_start: 4338, byte_len: 3 }) }, + Range { from: '\u{3278}', to: '\u{3278}', mapping: Mapped(StringTableSlice { byte_start: 4341, byte_len: 3 }) }, + Range { from: '\u{3279}', to: '\u{3279}', mapping: Mapped(StringTableSlice { byte_start: 4344, byte_len: 3 }) }, + Range { from: '\u{327a}', to: '\u{327a}', mapping: Mapped(StringTableSlice { byte_start: 4347, byte_len: 3 }) }, + Range { from: '\u{327b}', to: '\u{327b}', mapping: Mapped(StringTableSlice { byte_start: 4350, byte_len: 3 }) }, + Range { from: '\u{327c}', to: '\u{327c}', mapping: Mapped(StringTableSlice { byte_start: 4353, byte_len: 6 }) }, + Range { from: '\u{327d}', to: '\u{327d}', mapping: Mapped(StringTableSlice { byte_start: 4359, byte_len: 6 }) }, + Range { from: '\u{327e}', to: '\u{327e}', mapping: Mapped(StringTableSlice { byte_start: 4365, byte_len: 3 }) }, + Range { from: '\u{327f}', to: '\u{327f}', mapping: Valid }, + Range { from: '\u{3280}', to: '\u{3280}', mapping: Mapped(StringTableSlice { byte_start: 2947, byte_len: 3 }) }, + Range { from: '\u{3281}', to: '\u{3281}', mapping: Mapped(StringTableSlice { byte_start: 2965, byte_len: 3 }) }, + Range { from: '\u{3282}', to: '\u{3282}', mapping: Mapped(StringTableSlice { byte_start: 3898, byte_len: 3 }) }, + Range { from: '\u{3283}', to: '\u{3283}', mapping: Mapped(StringTableSlice { byte_start: 3901, byte_len: 3 }) }, + Range { from: '\u{3284}', to: '\u{3284}', mapping: Mapped(StringTableSlice { byte_start: 4368, byte_len: 3 }) }, + Range { from: '\u{3285}', to: '\u{3285}', mapping: Mapped(StringTableSlice { byte_start: 4371, byte_len: 3 }) }, + Range { from: '\u{3286}', to: '\u{3286}', mapping: Mapped(StringTableSlice { byte_start: 4374, byte_len: 3 }) }, + Range { from: '\u{3287}', to: '\u{3287}', mapping: Mapped(StringTableSlice { byte_start: 2980, byte_len: 3 }) }, + Range { from: '\u{3288}', to: '\u{3288}', mapping: Mapped(StringTableSlice { byte_start: 4377, byte_len: 3 }) }, + Range { from: '\u{3289}', to: '\u{3289}', mapping: Mapped(StringTableSlice { byte_start: 3016, byte_len: 3 }) }, + Range { from: '\u{328a}', to: '\u{328a}', mapping: Mapped(StringTableSlice { byte_start: 3166, byte_len: 3 }) }, + Range { from: '\u{328b}', to: '\u{328b}', mapping: Mapped(StringTableSlice { byte_start: 3202, byte_len: 3 }) }, + Range { from: '\u{328c}', to: '\u{328c}', mapping: Mapped(StringTableSlice { byte_start: 3199, byte_len: 3 }) }, + Range { from: '\u{328d}', to: '\u{328d}', mapping: Mapped(StringTableSlice { byte_start: 3169, byte_len: 3 }) }, + Range { from: '\u{328e}', to: '\u{328e}', mapping: Mapped(StringTableSlice { byte_start: 3445, byte_len: 3 }) }, + Range { from: '\u{328f}', to: '\u{328f}', mapping: Mapped(StringTableSlice { byte_start: 3040, byte_len: 3 }) }, + Range { from: '\u{3290}', to: '\u{3290}', mapping: Mapped(StringTableSlice { byte_start: 3160, byte_len: 3 }) }, + Range { from: '\u{3291}', to: '\u{3291}', mapping: Mapped(StringTableSlice { byte_start: 4380, byte_len: 3 }) }, + Range { from: '\u{3292}', to: '\u{3292}', mapping: Mapped(StringTableSlice { byte_start: 4383, byte_len: 3 }) }, + Range { from: '\u{3293}', to: '\u{3293}', mapping: Mapped(StringTableSlice { byte_start: 4386, byte_len: 3 }) }, + Range { from: '\u{3294}', to: '\u{3294}', mapping: Mapped(StringTableSlice { byte_start: 4389, byte_len: 3 }) }, + Range { from: '\u{3295}', to: '\u{3295}', mapping: Mapped(StringTableSlice { byte_start: 4392, byte_len: 3 }) }, + Range { from: '\u{3296}', to: '\u{3296}', mapping: Mapped(StringTableSlice { byte_start: 4395, byte_len: 3 }) }, + Range { from: '\u{3297}', to: '\u{3297}', mapping: Mapped(StringTableSlice { byte_start: 4398, byte_len: 3 }) }, + Range { from: '\u{3298}', to: '\u{3298}', mapping: Mapped(StringTableSlice { byte_start: 4401, byte_len: 3 }) }, + Range { from: '\u{3299}', to: '\u{3299}', mapping: Mapped(StringTableSlice { byte_start: 4404, byte_len: 3 }) }, + Range { from: '\u{329a}', to: '\u{329a}', mapping: Mapped(StringTableSlice { byte_start: 4407, byte_len: 3 }) }, + Range { from: '\u{329b}', to: '\u{329b}', mapping: Mapped(StringTableSlice { byte_start: 3058, byte_len: 3 }) }, + Range { from: '\u{329c}', to: '\u{329c}', mapping: Mapped(StringTableSlice { byte_start: 4410, byte_len: 3 }) }, + Range { from: '\u{329d}', to: '\u{329d}', mapping: Mapped(StringTableSlice { byte_start: 4413, byte_len: 3 }) }, + Range { from: '\u{329e}', to: '\u{329e}', mapping: Mapped(StringTableSlice { byte_start: 4416, byte_len: 3 }) }, + Range { from: '\u{329f}', to: '\u{329f}', mapping: Mapped(StringTableSlice { byte_start: 4419, byte_len: 3 }) }, + Range { from: '\u{32a0}', to: '\u{32a0}', mapping: Mapped(StringTableSlice { byte_start: 4422, byte_len: 3 }) }, + Range { from: '\u{32a1}', to: '\u{32a1}', mapping: Mapped(StringTableSlice { byte_start: 4425, byte_len: 3 }) }, + Range { from: '\u{32a2}', to: '\u{32a2}', mapping: Mapped(StringTableSlice { byte_start: 4428, byte_len: 3 }) }, + Range { from: '\u{32a3}', to: '\u{32a3}', mapping: Mapped(StringTableSlice { byte_start: 4431, byte_len: 3 }) }, + Range { from: '\u{32a4}', to: '\u{32a4}', mapping: Mapped(StringTableSlice { byte_start: 3904, byte_len: 3 }) }, + Range { from: '\u{32a5}', to: '\u{32a5}', mapping: Mapped(StringTableSlice { byte_start: 3907, byte_len: 3 }) }, + Range { from: '\u{32a6}', to: '\u{32a6}', mapping: Mapped(StringTableSlice { byte_start: 3910, byte_len: 3 }) }, + Range { from: '\u{32a7}', to: '\u{32a7}', mapping: Mapped(StringTableSlice { byte_start: 4434, byte_len: 3 }) }, + Range { from: '\u{32a8}', to: '\u{32a8}', mapping: Mapped(StringTableSlice { byte_start: 4437, byte_len: 3 }) }, + Range { from: '\u{32a9}', to: '\u{32a9}', mapping: Mapped(StringTableSlice { byte_start: 4440, byte_len: 3 }) }, + Range { from: '\u{32aa}', to: '\u{32aa}', mapping: Mapped(StringTableSlice { byte_start: 4443, byte_len: 3 }) }, + Range { from: '\u{32ab}', to: '\u{32ab}', mapping: Mapped(StringTableSlice { byte_start: 4446, byte_len: 3 }) }, + Range { from: '\u{32ac}', to: '\u{32ac}', mapping: Mapped(StringTableSlice { byte_start: 4449, byte_len: 3 }) }, + Range { from: '\u{32ad}', to: '\u{32ad}', mapping: Mapped(StringTableSlice { byte_start: 4452, byte_len: 3 }) }, + Range { from: '\u{32ae}', to: '\u{32ae}', mapping: Mapped(StringTableSlice { byte_start: 4455, byte_len: 3 }) }, + Range { from: '\u{32af}', to: '\u{32af}', mapping: Mapped(StringTableSlice { byte_start: 4458, byte_len: 3 }) }, + Range { from: '\u{32b0}', to: '\u{32b0}', mapping: Mapped(StringTableSlice { byte_start: 4461, byte_len: 3 }) }, + Range { from: '\u{32b1}', to: '\u{32b1}', mapping: Mapped(StringTableSlice { byte_start: 4464, byte_len: 2 }) }, + Range { from: '\u{32b2}', to: '\u{32b2}', mapping: Mapped(StringTableSlice { byte_start: 4466, byte_len: 2 }) }, + Range { from: '\u{32b3}', to: '\u{32b3}', mapping: Mapped(StringTableSlice { byte_start: 4468, byte_len: 2 }) }, + Range { from: '\u{32b4}', to: '\u{32b4}', mapping: Mapped(StringTableSlice { byte_start: 4470, byte_len: 2 }) }, + Range { from: '\u{32b5}', to: '\u{32b5}', mapping: Mapped(StringTableSlice { byte_start: 4472, byte_len: 2 }) }, + Range { from: '\u{32b6}', to: '\u{32b6}', mapping: Mapped(StringTableSlice { byte_start: 4474, byte_len: 2 }) }, + Range { from: '\u{32b7}', to: '\u{32b7}', mapping: Mapped(StringTableSlice { byte_start: 4476, byte_len: 2 }) }, + Range { from: '\u{32b8}', to: '\u{32b8}', mapping: Mapped(StringTableSlice { byte_start: 4478, byte_len: 2 }) }, + Range { from: '\u{32b9}', to: '\u{32b9}', mapping: Mapped(StringTableSlice { byte_start: 4480, byte_len: 2 }) }, + Range { from: '\u{32ba}', to: '\u{32ba}', mapping: Mapped(StringTableSlice { byte_start: 4482, byte_len: 2 }) }, + Range { from: '\u{32bb}', to: '\u{32bb}', mapping: Mapped(StringTableSlice { byte_start: 4484, byte_len: 2 }) }, + Range { from: '\u{32bc}', to: '\u{32bc}', mapping: Mapped(StringTableSlice { byte_start: 4486, byte_len: 2 }) }, + Range { from: '\u{32bd}', to: '\u{32bd}', mapping: Mapped(StringTableSlice { byte_start: 4488, byte_len: 2 }) }, + Range { from: '\u{32be}', to: '\u{32be}', mapping: Mapped(StringTableSlice { byte_start: 4490, byte_len: 2 }) }, + Range { from: '\u{32bf}', to: '\u{32bf}', mapping: Mapped(StringTableSlice { byte_start: 4492, byte_len: 2 }) }, + Range { from: '\u{32c0}', to: '\u{32c0}', mapping: Mapped(StringTableSlice { byte_start: 4494, byte_len: 4 }) }, + Range { from: '\u{32c1}', to: '\u{32c1}', mapping: Mapped(StringTableSlice { byte_start: 4498, byte_len: 4 }) }, + Range { from: '\u{32c2}', to: '\u{32c2}', mapping: Mapped(StringTableSlice { byte_start: 4502, byte_len: 4 }) }, + Range { from: '\u{32c3}', to: '\u{32c3}', mapping: Mapped(StringTableSlice { byte_start: 4506, byte_len: 4 }) }, + Range { from: '\u{32c4}', to: '\u{32c4}', mapping: Mapped(StringTableSlice { byte_start: 4510, byte_len: 4 }) }, + Range { from: '\u{32c5}', to: '\u{32c5}', mapping: Mapped(StringTableSlice { byte_start: 4514, byte_len: 4 }) }, + Range { from: '\u{32c6}', to: '\u{32c6}', mapping: Mapped(StringTableSlice { byte_start: 4518, byte_len: 4 }) }, + Range { from: '\u{32c7}', to: '\u{32c7}', mapping: Mapped(StringTableSlice { byte_start: 4522, byte_len: 4 }) }, + Range { from: '\u{32c8}', to: '\u{32c8}', mapping: Mapped(StringTableSlice { byte_start: 4526, byte_len: 4 }) }, + Range { from: '\u{32c9}', to: '\u{32c9}', mapping: Mapped(StringTableSlice { byte_start: 4530, byte_len: 5 }) }, + Range { from: '\u{32ca}', to: '\u{32ca}', mapping: Mapped(StringTableSlice { byte_start: 4535, byte_len: 5 }) }, + Range { from: '\u{32cb}', to: '\u{32cb}', mapping: Mapped(StringTableSlice { byte_start: 4540, byte_len: 5 }) }, + Range { from: '\u{32cc}', to: '\u{32cc}', mapping: Mapped(StringTableSlice { byte_start: 4545, byte_len: 2 }) }, + Range { from: '\u{32cd}', to: '\u{32cd}', mapping: Mapped(StringTableSlice { byte_start: 4547, byte_len: 3 }) }, + Range { from: '\u{32ce}', to: '\u{32ce}', mapping: Mapped(StringTableSlice { byte_start: 4550, byte_len: 2 }) }, + Range { from: '\u{32cf}', to: '\u{32cf}', mapping: Mapped(StringTableSlice { byte_start: 4552, byte_len: 3 }) }, + Range { from: '\u{32d0}', to: '\u{32d0}', mapping: Mapped(StringTableSlice { byte_start: 4555, byte_len: 3 }) }, + Range { from: '\u{32d1}', to: '\u{32d1}', mapping: Mapped(StringTableSlice { byte_start: 4558, byte_len: 3 }) }, + Range { from: '\u{32d2}', to: '\u{32d2}', mapping: Mapped(StringTableSlice { byte_start: 4561, byte_len: 3 }) }, + Range { from: '\u{32d3}', to: '\u{32d3}', mapping: Mapped(StringTableSlice { byte_start: 4564, byte_len: 3 }) }, + Range { from: '\u{32d4}', to: '\u{32d4}', mapping: Mapped(StringTableSlice { byte_start: 4567, byte_len: 3 }) }, + Range { from: '\u{32d5}', to: '\u{32d5}', mapping: Mapped(StringTableSlice { byte_start: 4570, byte_len: 3 }) }, + Range { from: '\u{32d6}', to: '\u{32d6}', mapping: Mapped(StringTableSlice { byte_start: 4573, byte_len: 3 }) }, + Range { from: '\u{32d7}', to: '\u{32d7}', mapping: Mapped(StringTableSlice { byte_start: 4576, byte_len: 3 }) }, + Range { from: '\u{32d8}', to: '\u{32d8}', mapping: Mapped(StringTableSlice { byte_start: 4579, byte_len: 3 }) }, + Range { from: '\u{32d9}', to: '\u{32d9}', mapping: Mapped(StringTableSlice { byte_start: 4582, byte_len: 3 }) }, + Range { from: '\u{32da}', to: '\u{32da}', mapping: Mapped(StringTableSlice { byte_start: 4585, byte_len: 3 }) }, + Range { from: '\u{32db}', to: '\u{32db}', mapping: Mapped(StringTableSlice { byte_start: 4588, byte_len: 3 }) }, + Range { from: '\u{32dc}', to: '\u{32dc}', mapping: Mapped(StringTableSlice { byte_start: 4591, byte_len: 3 }) }, + Range { from: '\u{32dd}', to: '\u{32dd}', mapping: Mapped(StringTableSlice { byte_start: 4594, byte_len: 3 }) }, + Range { from: '\u{32de}', to: '\u{32de}', mapping: Mapped(StringTableSlice { byte_start: 4597, byte_len: 3 }) }, + Range { from: '\u{32df}', to: '\u{32df}', mapping: Mapped(StringTableSlice { byte_start: 4600, byte_len: 3 }) }, + Range { from: '\u{32e0}', to: '\u{32e0}', mapping: Mapped(StringTableSlice { byte_start: 4603, byte_len: 3 }) }, + Range { from: '\u{32e1}', to: '\u{32e1}', mapping: Mapped(StringTableSlice { byte_start: 4606, byte_len: 3 }) }, + Range { from: '\u{32e2}', to: '\u{32e2}', mapping: Mapped(StringTableSlice { byte_start: 4609, byte_len: 3 }) }, + Range { from: '\u{32e3}', to: '\u{32e3}', mapping: Mapped(StringTableSlice { byte_start: 4612, byte_len: 3 }) }, + Range { from: '\u{32e4}', to: '\u{32e4}', mapping: Mapped(StringTableSlice { byte_start: 4615, byte_len: 3 }) }, + Range { from: '\u{32e5}', to: '\u{32e5}', mapping: Mapped(StringTableSlice { byte_start: 4618, byte_len: 3 }) }, + Range { from: '\u{32e6}', to: '\u{32e6}', mapping: Mapped(StringTableSlice { byte_start: 4621, byte_len: 3 }) }, + Range { from: '\u{32e7}', to: '\u{32e7}', mapping: Mapped(StringTableSlice { byte_start: 4624, byte_len: 3 }) }, + Range { from: '\u{32e8}', to: '\u{32e8}', mapping: Mapped(StringTableSlice { byte_start: 4627, byte_len: 3 }) }, + Range { from: '\u{32e9}', to: '\u{32e9}', mapping: Mapped(StringTableSlice { byte_start: 4630, byte_len: 3 }) }, + Range { from: '\u{32ea}', to: '\u{32ea}', mapping: Mapped(StringTableSlice { byte_start: 4633, byte_len: 3 }) }, + Range { from: '\u{32eb}', to: '\u{32eb}', mapping: Mapped(StringTableSlice { byte_start: 4636, byte_len: 3 }) }, + Range { from: '\u{32ec}', to: '\u{32ec}', mapping: Mapped(StringTableSlice { byte_start: 4639, byte_len: 3 }) }, + Range { from: '\u{32ed}', to: '\u{32ed}', mapping: Mapped(StringTableSlice { byte_start: 4642, byte_len: 3 }) }, + Range { from: '\u{32ee}', to: '\u{32ee}', mapping: Mapped(StringTableSlice { byte_start: 4645, byte_len: 3 }) }, + Range { from: '\u{32ef}', to: '\u{32ef}', mapping: Mapped(StringTableSlice { byte_start: 4648, byte_len: 3 }) }, + Range { from: '\u{32f0}', to: '\u{32f0}', mapping: Mapped(StringTableSlice { byte_start: 4651, byte_len: 3 }) }, + Range { from: '\u{32f1}', to: '\u{32f1}', mapping: Mapped(StringTableSlice { byte_start: 4654, byte_len: 3 }) }, + Range { from: '\u{32f2}', to: '\u{32f2}', mapping: Mapped(StringTableSlice { byte_start: 4657, byte_len: 3 }) }, + Range { from: '\u{32f3}', to: '\u{32f3}', mapping: Mapped(StringTableSlice { byte_start: 4660, byte_len: 3 }) }, + Range { from: '\u{32f4}', to: '\u{32f4}', mapping: Mapped(StringTableSlice { byte_start: 4663, byte_len: 3 }) }, + Range { from: '\u{32f5}', to: '\u{32f5}', mapping: Mapped(StringTableSlice { byte_start: 4666, byte_len: 3 }) }, + Range { from: '\u{32f6}', to: '\u{32f6}', mapping: Mapped(StringTableSlice { byte_start: 4669, byte_len: 3 }) }, + Range { from: '\u{32f7}', to: '\u{32f7}', mapping: Mapped(StringTableSlice { byte_start: 4672, byte_len: 3 }) }, + Range { from: '\u{32f8}', to: '\u{32f8}', mapping: Mapped(StringTableSlice { byte_start: 4675, byte_len: 3 }) }, + Range { from: '\u{32f9}', to: '\u{32f9}', mapping: Mapped(StringTableSlice { byte_start: 4678, byte_len: 3 }) }, + Range { from: '\u{32fa}', to: '\u{32fa}', mapping: Mapped(StringTableSlice { byte_start: 4681, byte_len: 3 }) }, + Range { from: '\u{32fb}', to: '\u{32fb}', mapping: Mapped(StringTableSlice { byte_start: 4684, byte_len: 3 }) }, + Range { from: '\u{32fc}', to: '\u{32fc}', mapping: Mapped(StringTableSlice { byte_start: 4687, byte_len: 3 }) }, + Range { from: '\u{32fd}', to: '\u{32fd}', mapping: Mapped(StringTableSlice { byte_start: 4690, byte_len: 3 }) }, + Range { from: '\u{32fe}', to: '\u{32fe}', mapping: Mapped(StringTableSlice { byte_start: 4693, byte_len: 3 }) }, + Range { from: '\u{32ff}', to: '\u{32ff}', mapping: Disallowed }, + Range { from: '\u{3300}', to: '\u{3300}', mapping: Mapped(StringTableSlice { byte_start: 4696, byte_len: 12 }) }, + Range { from: '\u{3301}', to: '\u{3301}', mapping: Mapped(StringTableSlice { byte_start: 4708, byte_len: 12 }) }, + Range { from: '\u{3302}', to: '\u{3302}', mapping: Mapped(StringTableSlice { byte_start: 4720, byte_len: 12 }) }, + Range { from: '\u{3303}', to: '\u{3303}', mapping: Mapped(StringTableSlice { byte_start: 4732, byte_len: 9 }) }, + Range { from: '\u{3304}', to: '\u{3304}', mapping: Mapped(StringTableSlice { byte_start: 4741, byte_len: 12 }) }, + Range { from: '\u{3305}', to: '\u{3305}', mapping: Mapped(StringTableSlice { byte_start: 4753, byte_len: 9 }) }, + Range { from: '\u{3306}', to: '\u{3306}', mapping: Mapped(StringTableSlice { byte_start: 4762, byte_len: 9 }) }, + Range { from: '\u{3307}', to: '\u{3307}', mapping: Mapped(StringTableSlice { byte_start: 4771, byte_len: 15 }) }, + Range { from: '\u{3308}', to: '\u{3308}', mapping: Mapped(StringTableSlice { byte_start: 4786, byte_len: 12 }) }, + Range { from: '\u{3309}', to: '\u{3309}', mapping: Mapped(StringTableSlice { byte_start: 4798, byte_len: 9 }) }, + Range { from: '\u{330a}', to: '\u{330a}', mapping: Mapped(StringTableSlice { byte_start: 4807, byte_len: 9 }) }, + Range { from: '\u{330b}', to: '\u{330b}', mapping: Mapped(StringTableSlice { byte_start: 4816, byte_len: 9 }) }, + Range { from: '\u{330c}', to: '\u{330c}', mapping: Mapped(StringTableSlice { byte_start: 4825, byte_len: 12 }) }, + Range { from: '\u{330d}', to: '\u{330d}', mapping: Mapped(StringTableSlice { byte_start: 4837, byte_len: 12 }) }, + Range { from: '\u{330e}', to: '\u{330e}', mapping: Mapped(StringTableSlice { byte_start: 4849, byte_len: 9 }) }, + Range { from: '\u{330f}', to: '\u{330f}', mapping: Mapped(StringTableSlice { byte_start: 4858, byte_len: 9 }) }, + Range { from: '\u{3310}', to: '\u{3310}', mapping: Mapped(StringTableSlice { byte_start: 4867, byte_len: 6 }) }, + Range { from: '\u{3311}', to: '\u{3311}', mapping: Mapped(StringTableSlice { byte_start: 4873, byte_len: 9 }) }, + Range { from: '\u{3312}', to: '\u{3312}', mapping: Mapped(StringTableSlice { byte_start: 4882, byte_len: 12 }) }, + Range { from: '\u{3313}', to: '\u{3313}', mapping: Mapped(StringTableSlice { byte_start: 4894, byte_len: 12 }) }, + Range { from: '\u{3314}', to: '\u{3314}', mapping: Mapped(StringTableSlice { byte_start: 4906, byte_len: 6 }) }, + Range { from: '\u{3315}', to: '\u{3315}', mapping: Mapped(StringTableSlice { byte_start: 4912, byte_len: 15 }) }, + Range { from: '\u{3316}', to: '\u{3316}', mapping: Mapped(StringTableSlice { byte_start: 4927, byte_len: 18 }) }, + Range { from: '\u{3317}', to: '\u{3317}', mapping: Mapped(StringTableSlice { byte_start: 4945, byte_len: 15 }) }, + Range { from: '\u{3318}', to: '\u{3318}', mapping: Mapped(StringTableSlice { byte_start: 4960, byte_len: 9 }) }, + Range { from: '\u{3319}', to: '\u{3319}', mapping: Mapped(StringTableSlice { byte_start: 4969, byte_len: 15 }) }, + Range { from: '\u{331a}', to: '\u{331a}', mapping: Mapped(StringTableSlice { byte_start: 4984, byte_len: 15 }) }, + Range { from: '\u{331b}', to: '\u{331b}', mapping: Mapped(StringTableSlice { byte_start: 4999, byte_len: 12 }) }, + Range { from: '\u{331c}', to: '\u{331c}', mapping: Mapped(StringTableSlice { byte_start: 5011, byte_len: 9 }) }, + Range { from: '\u{331d}', to: '\u{331d}', mapping: Mapped(StringTableSlice { byte_start: 5020, byte_len: 9 }) }, + Range { from: '\u{331e}', to: '\u{331e}', mapping: Mapped(StringTableSlice { byte_start: 5029, byte_len: 9 }) }, + Range { from: '\u{331f}', to: '\u{331f}', mapping: Mapped(StringTableSlice { byte_start: 5038, byte_len: 12 }) }, + Range { from: '\u{3320}', to: '\u{3320}', mapping: Mapped(StringTableSlice { byte_start: 5050, byte_len: 15 }) }, + Range { from: '\u{3321}', to: '\u{3321}', mapping: Mapped(StringTableSlice { byte_start: 5065, byte_len: 12 }) }, + Range { from: '\u{3322}', to: '\u{3322}', mapping: Mapped(StringTableSlice { byte_start: 5077, byte_len: 9 }) }, + Range { from: '\u{3323}', to: '\u{3323}', mapping: Mapped(StringTableSlice { byte_start: 5086, byte_len: 9 }) }, + Range { from: '\u{3324}', to: '\u{3324}', mapping: Mapped(StringTableSlice { byte_start: 5095, byte_len: 9 }) }, + Range { from: '\u{3325}', to: '\u{3325}', mapping: Mapped(StringTableSlice { byte_start: 5104, byte_len: 6 }) }, + Range { from: '\u{3326}', to: '\u{3326}', mapping: Mapped(StringTableSlice { byte_start: 5110, byte_len: 6 }) }, + Range { from: '\u{3327}', to: '\u{3327}', mapping: Mapped(StringTableSlice { byte_start: 5116, byte_len: 6 }) }, + Range { from: '\u{3328}', to: '\u{3328}', mapping: Mapped(StringTableSlice { byte_start: 5122, byte_len: 6 }) }, + Range { from: '\u{3329}', to: '\u{3329}', mapping: Mapped(StringTableSlice { byte_start: 5128, byte_len: 9 }) }, + Range { from: '\u{332a}', to: '\u{332a}', mapping: Mapped(StringTableSlice { byte_start: 5137, byte_len: 9 }) }, + Range { from: '\u{332b}', to: '\u{332b}', mapping: Mapped(StringTableSlice { byte_start: 5146, byte_len: 15 }) }, + Range { from: '\u{332c}', to: '\u{332c}', mapping: Mapped(StringTableSlice { byte_start: 5161, byte_len: 9 }) }, + Range { from: '\u{332d}', to: '\u{332d}', mapping: Mapped(StringTableSlice { byte_start: 5170, byte_len: 12 }) }, + Range { from: '\u{332e}', to: '\u{332e}', mapping: Mapped(StringTableSlice { byte_start: 5182, byte_len: 15 }) }, + Range { from: '\u{332f}', to: '\u{332f}', mapping: Mapped(StringTableSlice { byte_start: 5197, byte_len: 9 }) }, + Range { from: '\u{3330}', to: '\u{3330}', mapping: Mapped(StringTableSlice { byte_start: 5206, byte_len: 6 }) }, + Range { from: '\u{3331}', to: '\u{3331}', mapping: Mapped(StringTableSlice { byte_start: 5212, byte_len: 6 }) }, + Range { from: '\u{3332}', to: '\u{3332}', mapping: Mapped(StringTableSlice { byte_start: 5218, byte_len: 15 }) }, + Range { from: '\u{3333}', to: '\u{3333}', mapping: Mapped(StringTableSlice { byte_start: 5233, byte_len: 12 }) }, + Range { from: '\u{3334}', to: '\u{3334}', mapping: Mapped(StringTableSlice { byte_start: 5245, byte_len: 15 }) }, + Range { from: '\u{3335}', to: '\u{3335}', mapping: Mapped(StringTableSlice { byte_start: 5260, byte_len: 9 }) }, + Range { from: '\u{3336}', to: '\u{3336}', mapping: Mapped(StringTableSlice { byte_start: 5269, byte_len: 15 }) }, + Range { from: '\u{3337}', to: '\u{3337}', mapping: Mapped(StringTableSlice { byte_start: 5284, byte_len: 6 }) }, + Range { from: '\u{3338}', to: '\u{3338}', mapping: Mapped(StringTableSlice { byte_start: 5290, byte_len: 9 }) }, + Range { from: '\u{3339}', to: '\u{3339}', mapping: Mapped(StringTableSlice { byte_start: 5299, byte_len: 9 }) }, + Range { from: '\u{333a}', to: '\u{333a}', mapping: Mapped(StringTableSlice { byte_start: 5308, byte_len: 9 }) }, + Range { from: '\u{333b}', to: '\u{333b}', mapping: Mapped(StringTableSlice { byte_start: 5317, byte_len: 9 }) }, + Range { from: '\u{333c}', to: '\u{333c}', mapping: Mapped(StringTableSlice { byte_start: 5326, byte_len: 9 }) }, + Range { from: '\u{333d}', to: '\u{333d}', mapping: Mapped(StringTableSlice { byte_start: 5335, byte_len: 12 }) }, + Range { from: '\u{333e}', to: '\u{333e}', mapping: Mapped(StringTableSlice { byte_start: 5347, byte_len: 9 }) }, + Range { from: '\u{333f}', to: '\u{333f}', mapping: Mapped(StringTableSlice { byte_start: 5356, byte_len: 6 }) }, + Range { from: '\u{3340}', to: '\u{3340}', mapping: Mapped(StringTableSlice { byte_start: 5362, byte_len: 9 }) }, + Range { from: '\u{3341}', to: '\u{3341}', mapping: Mapped(StringTableSlice { byte_start: 5371, byte_len: 9 }) }, + Range { from: '\u{3342}', to: '\u{3342}', mapping: Mapped(StringTableSlice { byte_start: 5380, byte_len: 9 }) }, + Range { from: '\u{3343}', to: '\u{3343}', mapping: Mapped(StringTableSlice { byte_start: 5389, byte_len: 12 }) }, + Range { from: '\u{3344}', to: '\u{3344}', mapping: Mapped(StringTableSlice { byte_start: 5401, byte_len: 9 }) }, + Range { from: '\u{3345}', to: '\u{3345}', mapping: Mapped(StringTableSlice { byte_start: 5410, byte_len: 9 }) }, + Range { from: '\u{3346}', to: '\u{3346}', mapping: Mapped(StringTableSlice { byte_start: 5419, byte_len: 9 }) }, + Range { from: '\u{3347}', to: '\u{3347}', mapping: Mapped(StringTableSlice { byte_start: 5428, byte_len: 15 }) }, + Range { from: '\u{3348}', to: '\u{3348}', mapping: Mapped(StringTableSlice { byte_start: 5443, byte_len: 12 }) }, + Range { from: '\u{3349}', to: '\u{3349}', mapping: Mapped(StringTableSlice { byte_start: 5455, byte_len: 6 }) }, + Range { from: '\u{334a}', to: '\u{334a}', mapping: Mapped(StringTableSlice { byte_start: 5461, byte_len: 15 }) }, + Range { from: '\u{334b}', to: '\u{334b}', mapping: Mapped(StringTableSlice { byte_start: 5476, byte_len: 6 }) }, + Range { from: '\u{334c}', to: '\u{334c}', mapping: Mapped(StringTableSlice { byte_start: 5482, byte_len: 12 }) }, + Range { from: '\u{334d}', to: '\u{334d}', mapping: Mapped(StringTableSlice { byte_start: 5494, byte_len: 12 }) }, + Range { from: '\u{334e}', to: '\u{334e}', mapping: Mapped(StringTableSlice { byte_start: 5506, byte_len: 9 }) }, + Range { from: '\u{334f}', to: '\u{334f}', mapping: Mapped(StringTableSlice { byte_start: 5515, byte_len: 9 }) }, + Range { from: '\u{3350}', to: '\u{3350}', mapping: Mapped(StringTableSlice { byte_start: 5524, byte_len: 9 }) }, + Range { from: '\u{3351}', to: '\u{3351}', mapping: Mapped(StringTableSlice { byte_start: 5533, byte_len: 12 }) }, + Range { from: '\u{3352}', to: '\u{3352}', mapping: Mapped(StringTableSlice { byte_start: 5545, byte_len: 6 }) }, + Range { from: '\u{3353}', to: '\u{3353}', mapping: Mapped(StringTableSlice { byte_start: 5551, byte_len: 9 }) }, + Range { from: '\u{3354}', to: '\u{3354}', mapping: Mapped(StringTableSlice { byte_start: 5560, byte_len: 12 }) }, + Range { from: '\u{3355}', to: '\u{3355}', mapping: Mapped(StringTableSlice { byte_start: 5572, byte_len: 6 }) }, + Range { from: '\u{3356}', to: '\u{3356}', mapping: Mapped(StringTableSlice { byte_start: 5578, byte_len: 15 }) }, + Range { from: '\u{3357}', to: '\u{3357}', mapping: Mapped(StringTableSlice { byte_start: 5593, byte_len: 9 }) }, + Range { from: '\u{3358}', to: '\u{3358}', mapping: Mapped(StringTableSlice { byte_start: 5602, byte_len: 4 }) }, + Range { from: '\u{3359}', to: '\u{3359}', mapping: Mapped(StringTableSlice { byte_start: 5606, byte_len: 4 }) }, + Range { from: '\u{335a}', to: '\u{335a}', mapping: Mapped(StringTableSlice { byte_start: 5610, byte_len: 4 }) }, + Range { from: '\u{335b}', to: '\u{335b}', mapping: Mapped(StringTableSlice { byte_start: 5614, byte_len: 4 }) }, + Range { from: '\u{335c}', to: '\u{335c}', mapping: Mapped(StringTableSlice { byte_start: 5618, byte_len: 4 }) }, + Range { from: '\u{335d}', to: '\u{335d}', mapping: Mapped(StringTableSlice { byte_start: 5622, byte_len: 4 }) }, + Range { from: '\u{335e}', to: '\u{335e}', mapping: Mapped(StringTableSlice { byte_start: 5626, byte_len: 4 }) }, + Range { from: '\u{335f}', to: '\u{335f}', mapping: Mapped(StringTableSlice { byte_start: 5630, byte_len: 4 }) }, + Range { from: '\u{3360}', to: '\u{3360}', mapping: Mapped(StringTableSlice { byte_start: 5634, byte_len: 4 }) }, + Range { from: '\u{3361}', to: '\u{3361}', mapping: Mapped(StringTableSlice { byte_start: 5638, byte_len: 4 }) }, + Range { from: '\u{3362}', to: '\u{3362}', mapping: Mapped(StringTableSlice { byte_start: 5642, byte_len: 5 }) }, + Range { from: '\u{3363}', to: '\u{3363}', mapping: Mapped(StringTableSlice { byte_start: 5647, byte_len: 5 }) }, + Range { from: '\u{3364}', to: '\u{3364}', mapping: Mapped(StringTableSlice { byte_start: 5652, byte_len: 5 }) }, + Range { from: '\u{3365}', to: '\u{3365}', mapping: Mapped(StringTableSlice { byte_start: 5657, byte_len: 5 }) }, + Range { from: '\u{3366}', to: '\u{3366}', mapping: Mapped(StringTableSlice { byte_start: 5662, byte_len: 5 }) }, + Range { from: '\u{3367}', to: '\u{3367}', mapping: Mapped(StringTableSlice { byte_start: 5667, byte_len: 5 }) }, + Range { from: '\u{3368}', to: '\u{3368}', mapping: Mapped(StringTableSlice { byte_start: 5672, byte_len: 5 }) }, + Range { from: '\u{3369}', to: '\u{3369}', mapping: Mapped(StringTableSlice { byte_start: 5677, byte_len: 5 }) }, + Range { from: '\u{336a}', to: '\u{336a}', mapping: Mapped(StringTableSlice { byte_start: 5682, byte_len: 5 }) }, + Range { from: '\u{336b}', to: '\u{336b}', mapping: Mapped(StringTableSlice { byte_start: 5687, byte_len: 5 }) }, + Range { from: '\u{336c}', to: '\u{336c}', mapping: Mapped(StringTableSlice { byte_start: 5692, byte_len: 5 }) }, + Range { from: '\u{336d}', to: '\u{336d}', mapping: Mapped(StringTableSlice { byte_start: 5697, byte_len: 5 }) }, + Range { from: '\u{336e}', to: '\u{336e}', mapping: Mapped(StringTableSlice { byte_start: 5702, byte_len: 5 }) }, + Range { from: '\u{336f}', to: '\u{336f}', mapping: Mapped(StringTableSlice { byte_start: 5707, byte_len: 5 }) }, + Range { from: '\u{3370}', to: '\u{3370}', mapping: Mapped(StringTableSlice { byte_start: 5712, byte_len: 5 }) }, + Range { from: '\u{3371}', to: '\u{3371}', mapping: Mapped(StringTableSlice { byte_start: 5717, byte_len: 3 }) }, + Range { from: '\u{3372}', to: '\u{3372}', mapping: Mapped(StringTableSlice { byte_start: 5720, byte_len: 2 }) }, + Range { from: '\u{3373}', to: '\u{3373}', mapping: Mapped(StringTableSlice { byte_start: 5722, byte_len: 2 }) }, + Range { from: '\u{3374}', to: '\u{3374}', mapping: Mapped(StringTableSlice { byte_start: 5724, byte_len: 3 }) }, + Range { from: '\u{3375}', to: '\u{3375}', mapping: Mapped(StringTableSlice { byte_start: 5727, byte_len: 2 }) }, + Range { from: '\u{3376}', to: '\u{3376}', mapping: Mapped(StringTableSlice { byte_start: 5729, byte_len: 2 }) }, + Range { from: '\u{3377}', to: '\u{3377}', mapping: Mapped(StringTableSlice { byte_start: 5731, byte_len: 2 }) }, + Range { from: '\u{3378}', to: '\u{3378}', mapping: Mapped(StringTableSlice { byte_start: 5733, byte_len: 3 }) }, + Range { from: '\u{3379}', to: '\u{3379}', mapping: Mapped(StringTableSlice { byte_start: 5736, byte_len: 3 }) }, + Range { from: '\u{337a}', to: '\u{337a}', mapping: Mapped(StringTableSlice { byte_start: 5739, byte_len: 2 }) }, + Range { from: '\u{337b}', to: '\u{337b}', mapping: Mapped(StringTableSlice { byte_start: 5741, byte_len: 6 }) }, + Range { from: '\u{337c}', to: '\u{337c}', mapping: Mapped(StringTableSlice { byte_start: 5747, byte_len: 6 }) }, + Range { from: '\u{337d}', to: '\u{337d}', mapping: Mapped(StringTableSlice { byte_start: 5753, byte_len: 6 }) }, + Range { from: '\u{337e}', to: '\u{337e}', mapping: Mapped(StringTableSlice { byte_start: 5759, byte_len: 6 }) }, + Range { from: '\u{337f}', to: '\u{337f}', mapping: Mapped(StringTableSlice { byte_start: 5765, byte_len: 12 }) }, + Range { from: '\u{3380}', to: '\u{3380}', mapping: Mapped(StringTableSlice { byte_start: 5777, byte_len: 2 }) }, + Range { from: '\u{3381}', to: '\u{3381}', mapping: Mapped(StringTableSlice { byte_start: 5779, byte_len: 2 }) }, + Range { from: '\u{3382}', to: '\u{3382}', mapping: Mapped(StringTableSlice { byte_start: 5781, byte_len: 3 }) }, + Range { from: '\u{3383}', to: '\u{3383}', mapping: Mapped(StringTableSlice { byte_start: 5784, byte_len: 2 }) }, + Range { from: '\u{3384}', to: '\u{3384}', mapping: Mapped(StringTableSlice { byte_start: 5786, byte_len: 2 }) }, + Range { from: '\u{3385}', to: '\u{3385}', mapping: Mapped(StringTableSlice { byte_start: 5788, byte_len: 2 }) }, + Range { from: '\u{3386}', to: '\u{3386}', mapping: Mapped(StringTableSlice { byte_start: 5790, byte_len: 2 }) }, + Range { from: '\u{3387}', to: '\u{3387}', mapping: Mapped(StringTableSlice { byte_start: 5792, byte_len: 2 }) }, + Range { from: '\u{3388}', to: '\u{3388}', mapping: Mapped(StringTableSlice { byte_start: 5794, byte_len: 3 }) }, + Range { from: '\u{3389}', to: '\u{3389}', mapping: Mapped(StringTableSlice { byte_start: 5797, byte_len: 4 }) }, + Range { from: '\u{338a}', to: '\u{338a}', mapping: Mapped(StringTableSlice { byte_start: 5801, byte_len: 2 }) }, + Range { from: '\u{338b}', to: '\u{338b}', mapping: Mapped(StringTableSlice { byte_start: 5803, byte_len: 2 }) }, + Range { from: '\u{338c}', to: '\u{338c}', mapping: Mapped(StringTableSlice { byte_start: 5805, byte_len: 3 }) }, + Range { from: '\u{338d}', to: '\u{338d}', mapping: Mapped(StringTableSlice { byte_start: 5808, byte_len: 3 }) }, + Range { from: '\u{338e}', to: '\u{338e}', mapping: Mapped(StringTableSlice { byte_start: 5811, byte_len: 2 }) }, + Range { from: '\u{338f}', to: '\u{338f}', mapping: Mapped(StringTableSlice { byte_start: 5813, byte_len: 2 }) }, + Range { from: '\u{3390}', to: '\u{3390}', mapping: Mapped(StringTableSlice { byte_start: 5815, byte_len: 2 }) }, + Range { from: '\u{3391}', to: '\u{3391}', mapping: Mapped(StringTableSlice { byte_start: 5817, byte_len: 3 }) }, + Range { from: '\u{3392}', to: '\u{3392}', mapping: Mapped(StringTableSlice { byte_start: 5820, byte_len: 3 }) }, + Range { from: '\u{3393}', to: '\u{3393}', mapping: Mapped(StringTableSlice { byte_start: 5823, byte_len: 3 }) }, + Range { from: '\u{3394}', to: '\u{3394}', mapping: Mapped(StringTableSlice { byte_start: 5826, byte_len: 3 }) }, + Range { from: '\u{3395}', to: '\u{3395}', mapping: Mapped(StringTableSlice { byte_start: 5829, byte_len: 3 }) }, + Range { from: '\u{3396}', to: '\u{3396}', mapping: Mapped(StringTableSlice { byte_start: 5832, byte_len: 2 }) }, + Range { from: '\u{3397}', to: '\u{3397}', mapping: Mapped(StringTableSlice { byte_start: 5834, byte_len: 2 }) }, + Range { from: '\u{3398}', to: '\u{3398}', mapping: Mapped(StringTableSlice { byte_start: 5836, byte_len: 2 }) }, + Range { from: '\u{3399}', to: '\u{3399}', mapping: Mapped(StringTableSlice { byte_start: 5838, byte_len: 2 }) }, + Range { from: '\u{339a}', to: '\u{339a}', mapping: Mapped(StringTableSlice { byte_start: 5840, byte_len: 2 }) }, + Range { from: '\u{339b}', to: '\u{339b}', mapping: Mapped(StringTableSlice { byte_start: 5842, byte_len: 3 }) }, + Range { from: '\u{339c}', to: '\u{339c}', mapping: Mapped(StringTableSlice { byte_start: 5845, byte_len: 2 }) }, + Range { from: '\u{339d}', to: '\u{339d}', mapping: Mapped(StringTableSlice { byte_start: 5847, byte_len: 2 }) }, + Range { from: '\u{339e}', to: '\u{339e}', mapping: Mapped(StringTableSlice { byte_start: 5849, byte_len: 2 }) }, + Range { from: '\u{339f}', to: '\u{339f}', mapping: Mapped(StringTableSlice { byte_start: 5851, byte_len: 3 }) }, + Range { from: '\u{33a0}', to: '\u{33a0}', mapping: Mapped(StringTableSlice { byte_start: 5854, byte_len: 3 }) }, + Range { from: '\u{33a1}', to: '\u{33a1}', mapping: Mapped(StringTableSlice { byte_start: 5857, byte_len: 2 }) }, + Range { from: '\u{33a2}', to: '\u{33a2}', mapping: Mapped(StringTableSlice { byte_start: 5859, byte_len: 3 }) }, + Range { from: '\u{33a3}', to: '\u{33a3}', mapping: Mapped(StringTableSlice { byte_start: 5862, byte_len: 3 }) }, + Range { from: '\u{33a4}', to: '\u{33a4}', mapping: Mapped(StringTableSlice { byte_start: 5865, byte_len: 3 }) }, + Range { from: '\u{33a5}', to: '\u{33a5}', mapping: Mapped(StringTableSlice { byte_start: 5868, byte_len: 2 }) }, + Range { from: '\u{33a6}', to: '\u{33a6}', mapping: Mapped(StringTableSlice { byte_start: 5870, byte_len: 3 }) }, + Range { from: '\u{33a7}', to: '\u{33a7}', mapping: Mapped(StringTableSlice { byte_start: 5873, byte_len: 5 }) }, + Range { from: '\u{33a8}', to: '\u{33a8}', mapping: Mapped(StringTableSlice { byte_start: 5878, byte_len: 6 }) }, + Range { from: '\u{33a9}', to: '\u{33a9}', mapping: Mapped(StringTableSlice { byte_start: 5777, byte_len: 2 }) }, + Range { from: '\u{33aa}', to: '\u{33aa}', mapping: Mapped(StringTableSlice { byte_start: 5884, byte_len: 3 }) }, + Range { from: '\u{33ab}', to: '\u{33ab}', mapping: Mapped(StringTableSlice { byte_start: 5887, byte_len: 3 }) }, + Range { from: '\u{33ac}', to: '\u{33ac}', mapping: Mapped(StringTableSlice { byte_start: 5890, byte_len: 3 }) }, + Range { from: '\u{33ad}', to: '\u{33ad}', mapping: Mapped(StringTableSlice { byte_start: 5893, byte_len: 3 }) }, + Range { from: '\u{33ae}', to: '\u{33ae}', mapping: Mapped(StringTableSlice { byte_start: 5896, byte_len: 7 }) }, + Range { from: '\u{33af}', to: '\u{33af}', mapping: Mapped(StringTableSlice { byte_start: 5903, byte_len: 8 }) }, + Range { from: '\u{33b0}', to: '\u{33b0}', mapping: Mapped(StringTableSlice { byte_start: 5911, byte_len: 2 }) }, + Range { from: '\u{33b1}', to: '\u{33b1}', mapping: Mapped(StringTableSlice { byte_start: 5913, byte_len: 2 }) }, + Range { from: '\u{33b2}', to: '\u{33b2}', mapping: Mapped(StringTableSlice { byte_start: 5915, byte_len: 3 }) }, + Range { from: '\u{33b3}', to: '\u{33b3}', mapping: Mapped(StringTableSlice { byte_start: 5918, byte_len: 2 }) }, + Range { from: '\u{33b4}', to: '\u{33b4}', mapping: Mapped(StringTableSlice { byte_start: 5920, byte_len: 2 }) }, + Range { from: '\u{33b5}', to: '\u{33b5}', mapping: Mapped(StringTableSlice { byte_start: 5922, byte_len: 2 }) }, + Range { from: '\u{33b6}', to: '\u{33b6}', mapping: Mapped(StringTableSlice { byte_start: 5924, byte_len: 3 }) }, + Range { from: '\u{33b7}', to: '\u{33b7}', mapping: Mapped(StringTableSlice { byte_start: 5927, byte_len: 2 }) }, + Range { from: '\u{33b8}', to: '\u{33b8}', mapping: Mapped(StringTableSlice { byte_start: 5929, byte_len: 2 }) }, + Range { from: '\u{33b9}', to: '\u{33b9}', mapping: Mapped(StringTableSlice { byte_start: 5927, byte_len: 2 }) }, + Range { from: '\u{33ba}', to: '\u{33ba}', mapping: Mapped(StringTableSlice { byte_start: 5931, byte_len: 2 }) }, + Range { from: '\u{33bb}', to: '\u{33bb}', mapping: Mapped(StringTableSlice { byte_start: 5933, byte_len: 2 }) }, + Range { from: '\u{33bc}', to: '\u{33bc}', mapping: Mapped(StringTableSlice { byte_start: 5935, byte_len: 3 }) }, + Range { from: '\u{33bd}', to: '\u{33bd}', mapping: Mapped(StringTableSlice { byte_start: 5938, byte_len: 2 }) }, + Range { from: '\u{33be}', to: '\u{33be}', mapping: Mapped(StringTableSlice { byte_start: 5940, byte_len: 2 }) }, + Range { from: '\u{33bf}', to: '\u{33bf}', mapping: Mapped(StringTableSlice { byte_start: 5938, byte_len: 2 }) }, + Range { from: '\u{33c0}', to: '\u{33c0}', mapping: Mapped(StringTableSlice { byte_start: 5942, byte_len: 3 }) }, + Range { from: '\u{33c1}', to: '\u{33c1}', mapping: Mapped(StringTableSlice { byte_start: 5945, byte_len: 3 }) }, + Range { from: '\u{33c2}', to: '\u{33c2}', mapping: Disallowed }, + Range { from: '\u{33c3}', to: '\u{33c3}', mapping: Mapped(StringTableSlice { byte_start: 5948, byte_len: 2 }) }, + Range { from: '\u{33c4}', to: '\u{33c4}', mapping: Mapped(StringTableSlice { byte_start: 5950, byte_len: 2 }) }, + Range { from: '\u{33c5}', to: '\u{33c5}', mapping: Mapped(StringTableSlice { byte_start: 5952, byte_len: 2 }) }, + Range { from: '\u{33c6}', to: '\u{33c6}', mapping: Mapped(StringTableSlice { byte_start: 5954, byte_len: 6 }) }, + Range { from: '\u{33c7}', to: '\u{33c7}', mapping: Disallowed }, + Range { from: '\u{33c8}', to: '\u{33c8}', mapping: Mapped(StringTableSlice { byte_start: 5960, byte_len: 2 }) }, + Range { from: '\u{33c9}', to: '\u{33c9}', mapping: Mapped(StringTableSlice { byte_start: 5962, byte_len: 2 }) }, + Range { from: '\u{33ca}', to: '\u{33ca}', mapping: Mapped(StringTableSlice { byte_start: 5964, byte_len: 2 }) }, + Range { from: '\u{33cb}', to: '\u{33cb}', mapping: Mapped(StringTableSlice { byte_start: 5966, byte_len: 2 }) }, + Range { from: '\u{33cc}', to: '\u{33cc}', mapping: Mapped(StringTableSlice { byte_start: 5968, byte_len: 2 }) }, + Range { from: '\u{33cd}', to: '\u{33cd}', mapping: Mapped(StringTableSlice { byte_start: 5970, byte_len: 2 }) }, + Range { from: '\u{33ce}', to: '\u{33ce}', mapping: Mapped(StringTableSlice { byte_start: 5849, byte_len: 2 }) }, + Range { from: '\u{33cf}', to: '\u{33cf}', mapping: Mapped(StringTableSlice { byte_start: 5972, byte_len: 2 }) }, + Range { from: '\u{33d0}', to: '\u{33d0}', mapping: Mapped(StringTableSlice { byte_start: 5974, byte_len: 2 }) }, + Range { from: '\u{33d1}', to: '\u{33d1}', mapping: Mapped(StringTableSlice { byte_start: 5976, byte_len: 2 }) }, + Range { from: '\u{33d2}', to: '\u{33d2}', mapping: Mapped(StringTableSlice { byte_start: 5978, byte_len: 3 }) }, + Range { from: '\u{33d3}', to: '\u{33d3}', mapping: Mapped(StringTableSlice { byte_start: 5981, byte_len: 2 }) }, + Range { from: '\u{33d4}', to: '\u{33d4}', mapping: Mapped(StringTableSlice { byte_start: 5790, byte_len: 2 }) }, + Range { from: '\u{33d5}', to: '\u{33d5}', mapping: Mapped(StringTableSlice { byte_start: 5983, byte_len: 3 }) }, + Range { from: '\u{33d6}', to: '\u{33d6}', mapping: Mapped(StringTableSlice { byte_start: 5986, byte_len: 3 }) }, + Range { from: '\u{33d7}', to: '\u{33d7}', mapping: Mapped(StringTableSlice { byte_start: 5989, byte_len: 2 }) }, + Range { from: '\u{33d8}', to: '\u{33d8}', mapping: Disallowed }, + Range { from: '\u{33d9}', to: '\u{33d9}', mapping: Mapped(StringTableSlice { byte_start: 5991, byte_len: 3 }) }, + Range { from: '\u{33da}', to: '\u{33da}', mapping: Mapped(StringTableSlice { byte_start: 5994, byte_len: 2 }) }, + Range { from: '\u{33db}', to: '\u{33db}', mapping: Mapped(StringTableSlice { byte_start: 5996, byte_len: 2 }) }, + Range { from: '\u{33dc}', to: '\u{33dc}', mapping: Mapped(StringTableSlice { byte_start: 5998, byte_len: 2 }) }, + Range { from: '\u{33dd}', to: '\u{33dd}', mapping: Mapped(StringTableSlice { byte_start: 6000, byte_len: 2 }) }, + Range { from: '\u{33de}', to: '\u{33de}', mapping: Mapped(StringTableSlice { byte_start: 6002, byte_len: 5 }) }, + Range { from: '\u{33df}', to: '\u{33df}', mapping: Mapped(StringTableSlice { byte_start: 6007, byte_len: 5 }) }, + Range { from: '\u{33e0}', to: '\u{33e0}', mapping: Mapped(StringTableSlice { byte_start: 6012, byte_len: 4 }) }, + Range { from: '\u{33e1}', to: '\u{33e1}', mapping: Mapped(StringTableSlice { byte_start: 6016, byte_len: 4 }) }, + Range { from: '\u{33e2}', to: '\u{33e2}', mapping: Mapped(StringTableSlice { byte_start: 6020, byte_len: 4 }) }, + Range { from: '\u{33e3}', to: '\u{33e3}', mapping: Mapped(StringTableSlice { byte_start: 6024, byte_len: 4 }) }, + Range { from: '\u{33e4}', to: '\u{33e4}', mapping: Mapped(StringTableSlice { byte_start: 6028, byte_len: 4 }) }, + Range { from: '\u{33e5}', to: '\u{33e5}', mapping: Mapped(StringTableSlice { byte_start: 6032, byte_len: 4 }) }, + Range { from: '\u{33e6}', to: '\u{33e6}', mapping: Mapped(StringTableSlice { byte_start: 6036, byte_len: 4 }) }, + Range { from: '\u{33e7}', to: '\u{33e7}', mapping: Mapped(StringTableSlice { byte_start: 6040, byte_len: 4 }) }, + Range { from: '\u{33e8}', to: '\u{33e8}', mapping: Mapped(StringTableSlice { byte_start: 6044, byte_len: 4 }) }, + Range { from: '\u{33e9}', to: '\u{33e9}', mapping: Mapped(StringTableSlice { byte_start: 6048, byte_len: 5 }) }, + Range { from: '\u{33ea}', to: '\u{33ea}', mapping: Mapped(StringTableSlice { byte_start: 6053, byte_len: 5 }) }, + Range { from: '\u{33eb}', to: '\u{33eb}', mapping: Mapped(StringTableSlice { byte_start: 6058, byte_len: 5 }) }, + Range { from: '\u{33ec}', to: '\u{33ec}', mapping: Mapped(StringTableSlice { byte_start: 6063, byte_len: 5 }) }, + Range { from: '\u{33ed}', to: '\u{33ed}', mapping: Mapped(StringTableSlice { byte_start: 6068, byte_len: 5 }) }, + Range { from: '\u{33ee}', to: '\u{33ee}', mapping: Mapped(StringTableSlice { byte_start: 6073, byte_len: 5 }) }, + Range { from: '\u{33ef}', to: '\u{33ef}', mapping: Mapped(StringTableSlice { byte_start: 6078, byte_len: 5 }) }, + Range { from: '\u{33f0}', to: '\u{33f0}', mapping: Mapped(StringTableSlice { byte_start: 6083, byte_len: 5 }) }, + Range { from: '\u{33f1}', to: '\u{33f1}', mapping: Mapped(StringTableSlice { byte_start: 6088, byte_len: 5 }) }, + Range { from: '\u{33f2}', to: '\u{33f2}', mapping: Mapped(StringTableSlice { byte_start: 6093, byte_len: 5 }) }, + Range { from: '\u{33f3}', to: '\u{33f3}', mapping: Mapped(StringTableSlice { byte_start: 6098, byte_len: 5 }) }, + Range { from: '\u{33f4}', to: '\u{33f4}', mapping: Mapped(StringTableSlice { byte_start: 6103, byte_len: 5 }) }, + Range { from: '\u{33f5}', to: '\u{33f5}', mapping: Mapped(StringTableSlice { byte_start: 6108, byte_len: 5 }) }, + Range { from: '\u{33f6}', to: '\u{33f6}', mapping: Mapped(StringTableSlice { byte_start: 6113, byte_len: 5 }) }, + Range { from: '\u{33f7}', to: '\u{33f7}', mapping: Mapped(StringTableSlice { byte_start: 6118, byte_len: 5 }) }, + Range { from: '\u{33f8}', to: '\u{33f8}', mapping: Mapped(StringTableSlice { byte_start: 6123, byte_len: 5 }) }, + Range { from: '\u{33f9}', to: '\u{33f9}', mapping: Mapped(StringTableSlice { byte_start: 6128, byte_len: 5 }) }, + Range { from: '\u{33fa}', to: '\u{33fa}', mapping: Mapped(StringTableSlice { byte_start: 6133, byte_len: 5 }) }, + Range { from: '\u{33fb}', to: '\u{33fb}', mapping: Mapped(StringTableSlice { byte_start: 6138, byte_len: 5 }) }, + Range { from: '\u{33fc}', to: '\u{33fc}', mapping: Mapped(StringTableSlice { byte_start: 6143, byte_len: 5 }) }, + Range { from: '\u{33fd}', to: '\u{33fd}', mapping: Mapped(StringTableSlice { byte_start: 6148, byte_len: 5 }) }, + Range { from: '\u{33fe}', to: '\u{33fe}', mapping: Mapped(StringTableSlice { byte_start: 6153, byte_len: 5 }) }, + Range { from: '\u{33ff}', to: '\u{33ff}', mapping: Mapped(StringTableSlice { byte_start: 6158, byte_len: 3 }) }, + Range { from: '\u{3400}', to: '\u{4db5}', mapping: Valid }, + Range { from: '\u{4db6}', to: '\u{4dbf}', mapping: Disallowed }, + Range { from: '\u{4dc0}', to: '\u{4dff}', mapping: Valid }, + Range { from: '\u{4e00}', to: '\u{9fa5}', mapping: Valid }, + Range { from: '\u{9fa6}', to: '\u{9fbb}', mapping: Valid }, + Range { from: '\u{9fbc}', to: '\u{9fc3}', mapping: Valid }, + Range { from: '\u{9fc4}', to: '\u{9fcb}', mapping: Valid }, + Range { from: '\u{9fcc}', to: '\u{9fcc}', mapping: Valid }, + Range { from: '\u{9fcd}', to: '\u{9fd5}', mapping: Valid }, + Range { from: '\u{9fd6}', to: '\u{9fff}', mapping: Disallowed }, + Range { from: '\u{a000}', to: '\u{a48c}', mapping: Valid }, + Range { from: '\u{a48d}', to: '\u{a48f}', mapping: Disallowed }, + Range { from: '\u{a490}', to: '\u{a4a1}', mapping: Valid }, + Range { from: '\u{a4a2}', to: '\u{a4a3}', mapping: Valid }, + Range { from: '\u{a4a4}', to: '\u{a4b3}', mapping: Valid }, + Range { from: '\u{a4b4}', to: '\u{a4b4}', mapping: Valid }, + Range { from: '\u{a4b5}', to: '\u{a4c0}', mapping: Valid }, + Range { from: '\u{a4c1}', to: '\u{a4c1}', mapping: Valid }, + Range { from: '\u{a4c2}', to: '\u{a4c4}', mapping: Valid }, + Range { from: '\u{a4c5}', to: '\u{a4c5}', mapping: Valid }, + Range { from: '\u{a4c6}', to: '\u{a4c6}', mapping: Valid }, + Range { from: '\u{a4c7}', to: '\u{a4cf}', mapping: Disallowed }, + Range { from: '\u{a4d0}', to: '\u{a4fd}', mapping: Valid }, + Range { from: '\u{a4fe}', to: '\u{a4ff}', mapping: Valid }, + Range { from: '\u{a500}', to: '\u{a60c}', mapping: Valid }, + Range { from: '\u{a60d}', to: '\u{a60f}', mapping: Valid }, + Range { from: '\u{a610}', to: '\u{a62b}', mapping: Valid }, + Range { from: '\u{a62c}', to: '\u{a63f}', mapping: Disallowed }, + Range { from: '\u{a640}', to: '\u{a640}', mapping: Mapped(StringTableSlice { byte_start: 6161, byte_len: 3 }) }, + Range { from: '\u{a641}', to: '\u{a641}', mapping: Valid }, + Range { from: '\u{a642}', to: '\u{a642}', mapping: Mapped(StringTableSlice { byte_start: 6164, byte_len: 3 }) }, + Range { from: '\u{a643}', to: '\u{a643}', mapping: Valid }, + Range { from: '\u{a644}', to: '\u{a644}', mapping: Mapped(StringTableSlice { byte_start: 6167, byte_len: 3 }) }, + Range { from: '\u{a645}', to: '\u{a645}', mapping: Valid }, + Range { from: '\u{a646}', to: '\u{a646}', mapping: Mapped(StringTableSlice { byte_start: 6170, byte_len: 3 }) }, + Range { from: '\u{a647}', to: '\u{a647}', mapping: Valid }, + Range { from: '\u{a648}', to: '\u{a648}', mapping: Mapped(StringTableSlice { byte_start: 6173, byte_len: 3 }) }, + Range { from: '\u{a649}', to: '\u{a649}', mapping: Valid }, + Range { from: '\u{a64a}', to: '\u{a64a}', mapping: Mapped(StringTableSlice { byte_start: 1298, byte_len: 3 }) }, + Range { from: '\u{a64b}', to: '\u{a64b}', mapping: Valid }, + Range { from: '\u{a64c}', to: '\u{a64c}', mapping: Mapped(StringTableSlice { byte_start: 6176, byte_len: 3 }) }, + Range { from: '\u{a64d}', to: '\u{a64d}', mapping: Valid }, + Range { from: '\u{a64e}', to: '\u{a64e}', mapping: Mapped(StringTableSlice { byte_start: 6179, byte_len: 3 }) }, + Range { from: '\u{a64f}', to: '\u{a64f}', mapping: Valid }, + Range { from: '\u{a650}', to: '\u{a650}', mapping: Mapped(StringTableSlice { byte_start: 6182, byte_len: 3 }) }, + Range { from: '\u{a651}', to: '\u{a651}', mapping: Valid }, + Range { from: '\u{a652}', to: '\u{a652}', mapping: Mapped(StringTableSlice { byte_start: 6185, byte_len: 3 }) }, + Range { from: '\u{a653}', to: '\u{a653}', mapping: Valid }, + Range { from: '\u{a654}', to: '\u{a654}', mapping: Mapped(StringTableSlice { byte_start: 6188, byte_len: 3 }) }, + Range { from: '\u{a655}', to: '\u{a655}', mapping: Valid }, + Range { from: '\u{a656}', to: '\u{a656}', mapping: Mapped(StringTableSlice { byte_start: 6191, byte_len: 3 }) }, + Range { from: '\u{a657}', to: '\u{a657}', mapping: Valid }, + Range { from: '\u{a658}', to: '\u{a658}', mapping: Mapped(StringTableSlice { byte_start: 6194, byte_len: 3 }) }, + Range { from: '\u{a659}', to: '\u{a659}', mapping: Valid }, + Range { from: '\u{a65a}', to: '\u{a65a}', mapping: Mapped(StringTableSlice { byte_start: 6197, byte_len: 3 }) }, + Range { from: '\u{a65b}', to: '\u{a65b}', mapping: Valid }, + Range { from: '\u{a65c}', to: '\u{a65c}', mapping: Mapped(StringTableSlice { byte_start: 6200, byte_len: 3 }) }, + Range { from: '\u{a65d}', to: '\u{a65d}', mapping: Valid }, + Range { from: '\u{a65e}', to: '\u{a65e}', mapping: Mapped(StringTableSlice { byte_start: 6203, byte_len: 3 }) }, + Range { from: '\u{a65f}', to: '\u{a65f}', mapping: Valid }, + Range { from: '\u{a660}', to: '\u{a660}', mapping: Mapped(StringTableSlice { byte_start: 6206, byte_len: 3 }) }, + Range { from: '\u{a661}', to: '\u{a661}', mapping: Valid }, + Range { from: '\u{a662}', to: '\u{a662}', mapping: Mapped(StringTableSlice { byte_start: 6209, byte_len: 3 }) }, + Range { from: '\u{a663}', to: '\u{a663}', mapping: Valid }, + Range { from: '\u{a664}', to: '\u{a664}', mapping: Mapped(StringTableSlice { byte_start: 6212, byte_len: 3 }) }, + Range { from: '\u{a665}', to: '\u{a665}', mapping: Valid }, + Range { from: '\u{a666}', to: '\u{a666}', mapping: Mapped(StringTableSlice { byte_start: 6215, byte_len: 3 }) }, + Range { from: '\u{a667}', to: '\u{a667}', mapping: Valid }, + Range { from: '\u{a668}', to: '\u{a668}', mapping: Mapped(StringTableSlice { byte_start: 6218, byte_len: 3 }) }, + Range { from: '\u{a669}', to: '\u{a669}', mapping: Valid }, + Range { from: '\u{a66a}', to: '\u{a66a}', mapping: Mapped(StringTableSlice { byte_start: 6221, byte_len: 3 }) }, + Range { from: '\u{a66b}', to: '\u{a66b}', mapping: Valid }, + Range { from: '\u{a66c}', to: '\u{a66c}', mapping: Mapped(StringTableSlice { byte_start: 6224, byte_len: 3 }) }, + Range { from: '\u{a66d}', to: '\u{a66f}', mapping: Valid }, + Range { from: '\u{a670}', to: '\u{a673}', mapping: Valid }, + Range { from: '\u{a674}', to: '\u{a67b}', mapping: Valid }, + Range { from: '\u{a67c}', to: '\u{a67d}', mapping: Valid }, + Range { from: '\u{a67e}', to: '\u{a67e}', mapping: Valid }, + Range { from: '\u{a67f}', to: '\u{a67f}', mapping: Valid }, + Range { from: '\u{a680}', to: '\u{a680}', mapping: Mapped(StringTableSlice { byte_start: 6227, byte_len: 3 }) }, + Range { from: '\u{a681}', to: '\u{a681}', mapping: Valid }, + Range { from: '\u{a682}', to: '\u{a682}', mapping: Mapped(StringTableSlice { byte_start: 6230, byte_len: 3 }) }, + Range { from: '\u{a683}', to: '\u{a683}', mapping: Valid }, + Range { from: '\u{a684}', to: '\u{a684}', mapping: Mapped(StringTableSlice { byte_start: 6233, byte_len: 3 }) }, + Range { from: '\u{a685}', to: '\u{a685}', mapping: Valid }, + Range { from: '\u{a686}', to: '\u{a686}', mapping: Mapped(StringTableSlice { byte_start: 6236, byte_len: 3 }) }, + Range { from: '\u{a687}', to: '\u{a687}', mapping: Valid }, + Range { from: '\u{a688}', to: '\u{a688}', mapping: Mapped(StringTableSlice { byte_start: 6239, byte_len: 3 }) }, + Range { from: '\u{a689}', to: '\u{a689}', mapping: Valid }, + Range { from: '\u{a68a}', to: '\u{a68a}', mapping: Mapped(StringTableSlice { byte_start: 6242, byte_len: 3 }) }, + Range { from: '\u{a68b}', to: '\u{a68b}', mapping: Valid }, + Range { from: '\u{a68c}', to: '\u{a68c}', mapping: Mapped(StringTableSlice { byte_start: 6245, byte_len: 3 }) }, + Range { from: '\u{a68d}', to: '\u{a68d}', mapping: Valid }, + Range { from: '\u{a68e}', to: '\u{a68e}', mapping: Mapped(StringTableSlice { byte_start: 6248, byte_len: 3 }) }, + Range { from: '\u{a68f}', to: '\u{a68f}', mapping: Valid }, + Range { from: '\u{a690}', to: '\u{a690}', mapping: Mapped(StringTableSlice { byte_start: 6251, byte_len: 3 }) }, + Range { from: '\u{a691}', to: '\u{a691}', mapping: Valid }, + Range { from: '\u{a692}', to: '\u{a692}', mapping: Mapped(StringTableSlice { byte_start: 6254, byte_len: 3 }) }, + Range { from: '\u{a693}', to: '\u{a693}', mapping: Valid }, + Range { from: '\u{a694}', to: '\u{a694}', mapping: Mapped(StringTableSlice { byte_start: 6257, byte_len: 3 }) }, + Range { from: '\u{a695}', to: '\u{a695}', mapping: Valid }, + Range { from: '\u{a696}', to: '\u{a696}', mapping: Mapped(StringTableSlice { byte_start: 6260, byte_len: 3 }) }, + Range { from: '\u{a697}', to: '\u{a697}', mapping: Valid }, + Range { from: '\u{a698}', to: '\u{a698}', mapping: Mapped(StringTableSlice { byte_start: 6263, byte_len: 3 }) }, + Range { from: '\u{a699}', to: '\u{a699}', mapping: Valid }, + Range { from: '\u{a69a}', to: '\u{a69a}', mapping: Mapped(StringTableSlice { byte_start: 6266, byte_len: 3 }) }, + Range { from: '\u{a69b}', to: '\u{a69b}', mapping: Valid }, + Range { from: '\u{a69c}', to: '\u{a69c}', mapping: Mapped(StringTableSlice { byte_start: 704, byte_len: 2 }) }, + Range { from: '\u{a69d}', to: '\u{a69d}', mapping: Mapped(StringTableSlice { byte_start: 708, byte_len: 2 }) }, + Range { from: '\u{a69e}', to: '\u{a69e}', mapping: Valid }, + Range { from: '\u{a69f}', to: '\u{a69f}', mapping: Valid }, + Range { from: '\u{a6a0}', to: '\u{a6e5}', mapping: Valid }, + Range { from: '\u{a6e6}', to: '\u{a6ef}', mapping: Valid }, + Range { from: '\u{a6f0}', to: '\u{a6f1}', mapping: Valid }, + Range { from: '\u{a6f2}', to: '\u{a6f7}', mapping: Valid }, + Range { from: '\u{a6f8}', to: '\u{a6ff}', mapping: Disallowed }, + Range { from: '\u{a700}', to: '\u{a716}', mapping: Valid }, + Range { from: '\u{a717}', to: '\u{a71a}', mapping: Valid }, + Range { from: '\u{a71b}', to: '\u{a71f}', mapping: Valid }, + Range { from: '\u{a720}', to: '\u{a721}', mapping: Valid }, + Range { from: '\u{a722}', to: '\u{a722}', mapping: Mapped(StringTableSlice { byte_start: 6269, byte_len: 3 }) }, + Range { from: '\u{a723}', to: '\u{a723}', mapping: Valid }, + Range { from: '\u{a724}', to: '\u{a724}', mapping: Mapped(StringTableSlice { byte_start: 6272, byte_len: 3 }) }, + Range { from: '\u{a725}', to: '\u{a725}', mapping: Valid }, + Range { from: '\u{a726}', to: '\u{a726}', mapping: Mapped(StringTableSlice { byte_start: 6275, byte_len: 3 }) }, + Range { from: '\u{a727}', to: '\u{a727}', mapping: Valid }, + Range { from: '\u{a728}', to: '\u{a728}', mapping: Mapped(StringTableSlice { byte_start: 6278, byte_len: 3 }) }, + Range { from: '\u{a729}', to: '\u{a729}', mapping: Valid }, + Range { from: '\u{a72a}', to: '\u{a72a}', mapping: Mapped(StringTableSlice { byte_start: 6281, byte_len: 3 }) }, + Range { from: '\u{a72b}', to: '\u{a72b}', mapping: Valid }, + Range { from: '\u{a72c}', to: '\u{a72c}', mapping: Mapped(StringTableSlice { byte_start: 6284, byte_len: 3 }) }, + Range { from: '\u{a72d}', to: '\u{a72d}', mapping: Valid }, + Range { from: '\u{a72e}', to: '\u{a72e}', mapping: Mapped(StringTableSlice { byte_start: 6287, byte_len: 3 }) }, + Range { from: '\u{a72f}', to: '\u{a731}', mapping: Valid }, + Range { from: '\u{a732}', to: '\u{a732}', mapping: Mapped(StringTableSlice { byte_start: 6290, byte_len: 3 }) }, + Range { from: '\u{a733}', to: '\u{a733}', mapping: Valid }, + Range { from: '\u{a734}', to: '\u{a734}', mapping: Mapped(StringTableSlice { byte_start: 6293, byte_len: 3 }) }, + Range { from: '\u{a735}', to: '\u{a735}', mapping: Valid }, + Range { from: '\u{a736}', to: '\u{a736}', mapping: Mapped(StringTableSlice { byte_start: 6296, byte_len: 3 }) }, + Range { from: '\u{a737}', to: '\u{a737}', mapping: Valid }, + Range { from: '\u{a738}', to: '\u{a738}', mapping: Mapped(StringTableSlice { byte_start: 6299, byte_len: 3 }) }, + Range { from: '\u{a739}', to: '\u{a739}', mapping: Valid }, + Range { from: '\u{a73a}', to: '\u{a73a}', mapping: Mapped(StringTableSlice { byte_start: 6302, byte_len: 3 }) }, + Range { from: '\u{a73b}', to: '\u{a73b}', mapping: Valid }, + Range { from: '\u{a73c}', to: '\u{a73c}', mapping: Mapped(StringTableSlice { byte_start: 6305, byte_len: 3 }) }, + Range { from: '\u{a73d}', to: '\u{a73d}', mapping: Valid }, + Range { from: '\u{a73e}', to: '\u{a73e}', mapping: Mapped(StringTableSlice { byte_start: 6308, byte_len: 3 }) }, + Range { from: '\u{a73f}', to: '\u{a73f}', mapping: Valid }, + Range { from: '\u{a740}', to: '\u{a740}', mapping: Mapped(StringTableSlice { byte_start: 6311, byte_len: 3 }) }, + Range { from: '\u{a741}', to: '\u{a741}', mapping: Valid }, + Range { from: '\u{a742}', to: '\u{a742}', mapping: Mapped(StringTableSlice { byte_start: 6314, byte_len: 3 }) }, + Range { from: '\u{a743}', to: '\u{a743}', mapping: Valid }, + Range { from: '\u{a744}', to: '\u{a744}', mapping: Mapped(StringTableSlice { byte_start: 6317, byte_len: 3 }) }, + Range { from: '\u{a745}', to: '\u{a745}', mapping: Valid }, + Range { from: '\u{a746}', to: '\u{a746}', mapping: Mapped(StringTableSlice { byte_start: 6320, byte_len: 3 }) }, + Range { from: '\u{a747}', to: '\u{a747}', mapping: Valid }, + Range { from: '\u{a748}', to: '\u{a748}', mapping: Mapped(StringTableSlice { byte_start: 6323, byte_len: 3 }) }, + Range { from: '\u{a749}', to: '\u{a749}', mapping: Valid }, + Range { from: '\u{a74a}', to: '\u{a74a}', mapping: Mapped(StringTableSlice { byte_start: 6326, byte_len: 3 }) }, + Range { from: '\u{a74b}', to: '\u{a74b}', mapping: Valid }, + Range { from: '\u{a74c}', to: '\u{a74c}', mapping: Mapped(StringTableSlice { byte_start: 6329, byte_len: 3 }) }, + Range { from: '\u{a74d}', to: '\u{a74d}', mapping: Valid }, + Range { from: '\u{a74e}', to: '\u{a74e}', mapping: Mapped(StringTableSlice { byte_start: 6332, byte_len: 3 }) }, + Range { from: '\u{a74f}', to: '\u{a74f}', mapping: Valid }, + Range { from: '\u{a750}', to: '\u{a750}', mapping: Mapped(StringTableSlice { byte_start: 6335, byte_len: 3 }) }, + Range { from: '\u{a751}', to: '\u{a751}', mapping: Valid }, + Range { from: '\u{a752}', to: '\u{a752}', mapping: Mapped(StringTableSlice { byte_start: 6338, byte_len: 3 }) }, + Range { from: '\u{a753}', to: '\u{a753}', mapping: Valid }, + Range { from: '\u{a754}', to: '\u{a754}', mapping: Mapped(StringTableSlice { byte_start: 6341, byte_len: 3 }) }, + Range { from: '\u{a755}', to: '\u{a755}', mapping: Valid }, + Range { from: '\u{a756}', to: '\u{a756}', mapping: Mapped(StringTableSlice { byte_start: 6344, byte_len: 3 }) }, + Range { from: '\u{a757}', to: '\u{a757}', mapping: Valid }, + Range { from: '\u{a758}', to: '\u{a758}', mapping: Mapped(StringTableSlice { byte_start: 6347, byte_len: 3 }) }, + Range { from: '\u{a759}', to: '\u{a759}', mapping: Valid }, + Range { from: '\u{a75a}', to: '\u{a75a}', mapping: Mapped(StringTableSlice { byte_start: 6350, byte_len: 3 }) }, + Range { from: '\u{a75b}', to: '\u{a75b}', mapping: Valid }, + Range { from: '\u{a75c}', to: '\u{a75c}', mapping: Mapped(StringTableSlice { byte_start: 6353, byte_len: 3 }) }, + Range { from: '\u{a75d}', to: '\u{a75d}', mapping: Valid }, + Range { from: '\u{a75e}', to: '\u{a75e}', mapping: Mapped(StringTableSlice { byte_start: 6356, byte_len: 3 }) }, + Range { from: '\u{a75f}', to: '\u{a75f}', mapping: Valid }, + Range { from: '\u{a760}', to: '\u{a760}', mapping: Mapped(StringTableSlice { byte_start: 6359, byte_len: 3 }) }, + Range { from: '\u{a761}', to: '\u{a761}', mapping: Valid }, + Range { from: '\u{a762}', to: '\u{a762}', mapping: Mapped(StringTableSlice { byte_start: 6362, byte_len: 3 }) }, + Range { from: '\u{a763}', to: '\u{a763}', mapping: Valid }, + Range { from: '\u{a764}', to: '\u{a764}', mapping: Mapped(StringTableSlice { byte_start: 6365, byte_len: 3 }) }, + Range { from: '\u{a765}', to: '\u{a765}', mapping: Valid }, + Range { from: '\u{a766}', to: '\u{a766}', mapping: Mapped(StringTableSlice { byte_start: 6368, byte_len: 3 }) }, + Range { from: '\u{a767}', to: '\u{a767}', mapping: Valid }, + Range { from: '\u{a768}', to: '\u{a768}', mapping: Mapped(StringTableSlice { byte_start: 6371, byte_len: 3 }) }, + Range { from: '\u{a769}', to: '\u{a769}', mapping: Valid }, + Range { from: '\u{a76a}', to: '\u{a76a}', mapping: Mapped(StringTableSlice { byte_start: 6374, byte_len: 3 }) }, + Range { from: '\u{a76b}', to: '\u{a76b}', mapping: Valid }, + Range { from: '\u{a76c}', to: '\u{a76c}', mapping: Mapped(StringTableSlice { byte_start: 6377, byte_len: 3 }) }, + Range { from: '\u{a76d}', to: '\u{a76d}', mapping: Valid }, + Range { from: '\u{a76e}', to: '\u{a76e}', mapping: Mapped(StringTableSlice { byte_start: 6380, byte_len: 3 }) }, + Range { from: '\u{a76f}', to: '\u{a76f}', mapping: Valid }, + Range { from: '\u{a770}', to: '\u{a770}', mapping: Mapped(StringTableSlice { byte_start: 6380, byte_len: 3 }) }, + Range { from: '\u{a771}', to: '\u{a778}', mapping: Valid }, + Range { from: '\u{a779}', to: '\u{a779}', mapping: Mapped(StringTableSlice { byte_start: 6383, byte_len: 3 }) }, + Range { from: '\u{a77a}', to: '\u{a77a}', mapping: Valid }, + Range { from: '\u{a77b}', to: '\u{a77b}', mapping: Mapped(StringTableSlice { byte_start: 6386, byte_len: 3 }) }, + Range { from: '\u{a77c}', to: '\u{a77c}', mapping: Valid }, + Range { from: '\u{a77d}', to: '\u{a77d}', mapping: Mapped(StringTableSlice { byte_start: 6389, byte_len: 3 }) }, + Range { from: '\u{a77e}', to: '\u{a77e}', mapping: Mapped(StringTableSlice { byte_start: 6392, byte_len: 3 }) }, + Range { from: '\u{a77f}', to: '\u{a77f}', mapping: Valid }, + Range { from: '\u{a780}', to: '\u{a780}', mapping: Mapped(StringTableSlice { byte_start: 6395, byte_len: 3 }) }, + Range { from: '\u{a781}', to: '\u{a781}', mapping: Valid }, + Range { from: '\u{a782}', to: '\u{a782}', mapping: Mapped(StringTableSlice { byte_start: 6398, byte_len: 3 }) }, + Range { from: '\u{a783}', to: '\u{a783}', mapping: Valid }, + Range { from: '\u{a784}', to: '\u{a784}', mapping: Mapped(StringTableSlice { byte_start: 6401, byte_len: 3 }) }, + Range { from: '\u{a785}', to: '\u{a785}', mapping: Valid }, + Range { from: '\u{a786}', to: '\u{a786}', mapping: Mapped(StringTableSlice { byte_start: 6404, byte_len: 3 }) }, + Range { from: '\u{a787}', to: '\u{a788}', mapping: Valid }, + Range { from: '\u{a789}', to: '\u{a78a}', mapping: Valid }, + Range { from: '\u{a78b}', to: '\u{a78b}', mapping: Mapped(StringTableSlice { byte_start: 6407, byte_len: 3 }) }, + Range { from: '\u{a78c}', to: '\u{a78c}', mapping: Valid }, + Range { from: '\u{a78d}', to: '\u{a78d}', mapping: Mapped(StringTableSlice { byte_start: 1330, byte_len: 2 }) }, + Range { from: '\u{a78e}', to: '\u{a78e}', mapping: Valid }, + Range { from: '\u{a78f}', to: '\u{a78f}', mapping: Valid }, + Range { from: '\u{a790}', to: '\u{a790}', mapping: Mapped(StringTableSlice { byte_start: 6410, byte_len: 3 }) }, + Range { from: '\u{a791}', to: '\u{a791}', mapping: Valid }, + Range { from: '\u{a792}', to: '\u{a792}', mapping: Mapped(StringTableSlice { byte_start: 6413, byte_len: 3 }) }, + Range { from: '\u{a793}', to: '\u{a793}', mapping: Valid }, + Range { from: '\u{a794}', to: '\u{a795}', mapping: Valid }, + Range { from: '\u{a796}', to: '\u{a796}', mapping: Mapped(StringTableSlice { byte_start: 6416, byte_len: 3 }) }, + Range { from: '\u{a797}', to: '\u{a797}', mapping: Valid }, + Range { from: '\u{a798}', to: '\u{a798}', mapping: Mapped(StringTableSlice { byte_start: 6419, byte_len: 3 }) }, + Range { from: '\u{a799}', to: '\u{a799}', mapping: Valid }, + Range { from: '\u{a79a}', to: '\u{a79a}', mapping: Mapped(StringTableSlice { byte_start: 6422, byte_len: 3 }) }, + Range { from: '\u{a79b}', to: '\u{a79b}', mapping: Valid }, + Range { from: '\u{a79c}', to: '\u{a79c}', mapping: Mapped(StringTableSlice { byte_start: 6425, byte_len: 3 }) }, + Range { from: '\u{a79d}', to: '\u{a79d}', mapping: Valid }, + Range { from: '\u{a79e}', to: '\u{a79e}', mapping: Mapped(StringTableSlice { byte_start: 6428, byte_len: 3 }) }, + Range { from: '\u{a79f}', to: '\u{a79f}', mapping: Valid }, + Range { from: '\u{a7a0}', to: '\u{a7a0}', mapping: Mapped(StringTableSlice { byte_start: 6431, byte_len: 3 }) }, + Range { from: '\u{a7a1}', to: '\u{a7a1}', mapping: Valid }, + Range { from: '\u{a7a2}', to: '\u{a7a2}', mapping: Mapped(StringTableSlice { byte_start: 6434, byte_len: 3 }) }, + Range { from: '\u{a7a3}', to: '\u{a7a3}', mapping: Valid }, + Range { from: '\u{a7a4}', to: '\u{a7a4}', mapping: Mapped(StringTableSlice { byte_start: 6437, byte_len: 3 }) }, + Range { from: '\u{a7a5}', to: '\u{a7a5}', mapping: Valid }, + Range { from: '\u{a7a6}', to: '\u{a7a6}', mapping: Mapped(StringTableSlice { byte_start: 6440, byte_len: 3 }) }, + Range { from: '\u{a7a7}', to: '\u{a7a7}', mapping: Valid }, + Range { from: '\u{a7a8}', to: '\u{a7a8}', mapping: Mapped(StringTableSlice { byte_start: 6443, byte_len: 3 }) }, + Range { from: '\u{a7a9}', to: '\u{a7a9}', mapping: Valid }, + Range { from: '\u{a7aa}', to: '\u{a7aa}', mapping: Mapped(StringTableSlice { byte_start: 461, byte_len: 2 }) }, + Range { from: '\u{a7ab}', to: '\u{a7ab}', mapping: Mapped(StringTableSlice { byte_start: 1308, byte_len: 2 }) }, + Range { from: '\u{a7ac}', to: '\u{a7ac}', mapping: Mapped(StringTableSlice { byte_start: 1328, byte_len: 2 }) }, + Range { from: '\u{a7ad}', to: '\u{a7ad}', mapping: Mapped(StringTableSlice { byte_start: 6446, byte_len: 2 }) }, + Range { from: '\u{a7ae}', to: '\u{a7ae}', mapping: Mapped(StringTableSlice { byte_start: 1332, byte_len: 2 }) }, + Range { from: '\u{a7af}', to: '\u{a7af}', mapping: Disallowed }, + Range { from: '\u{a7b0}', to: '\u{a7b0}', mapping: Mapped(StringTableSlice { byte_start: 6448, byte_len: 2 }) }, + Range { from: '\u{a7b1}', to: '\u{a7b1}', mapping: Mapped(StringTableSlice { byte_start: 6450, byte_len: 2 }) }, + Range { from: '\u{a7b2}', to: '\u{a7b2}', mapping: Mapped(StringTableSlice { byte_start: 1337, byte_len: 2 }) }, + Range { from: '\u{a7b3}', to: '\u{a7b3}', mapping: Mapped(StringTableSlice { byte_start: 6452, byte_len: 3 }) }, + Range { from: '\u{a7b4}', to: '\u{a7b4}', mapping: Mapped(StringTableSlice { byte_start: 6455, byte_len: 3 }) }, + Range { from: '\u{a7b5}', to: '\u{a7b5}', mapping: Valid }, + Range { from: '\u{a7b6}', to: '\u{a7b6}', mapping: Mapped(StringTableSlice { byte_start: 6458, byte_len: 3 }) }, + Range { from: '\u{a7b7}', to: '\u{a7b7}', mapping: Valid }, + Range { from: '\u{a7b8}', to: '\u{a7f6}', mapping: Disallowed }, + Range { from: '\u{a7f7}', to: '\u{a7f7}', mapping: Valid }, + Range { from: '\u{a7f8}', to: '\u{a7f8}', mapping: Mapped(StringTableSlice { byte_start: 159, byte_len: 2 }) }, + Range { from: '\u{a7f9}', to: '\u{a7f9}', mapping: Mapped(StringTableSlice { byte_start: 206, byte_len: 2 }) }, + Range { from: '\u{a7fa}', to: '\u{a7fa}', mapping: Valid }, + Range { from: '\u{a7fb}', to: '\u{a7ff}', mapping: Valid }, + Range { from: '\u{a800}', to: '\u{a827}', mapping: Valid }, + Range { from: '\u{a828}', to: '\u{a82b}', mapping: Valid }, + Range { from: '\u{a82c}', to: '\u{a82f}', mapping: Disallowed }, + Range { from: '\u{a830}', to: '\u{a839}', mapping: Valid }, + Range { from: '\u{a83a}', to: '\u{a83f}', mapping: Disallowed }, + Range { from: '\u{a840}', to: '\u{a873}', mapping: Valid }, + Range { from: '\u{a874}', to: '\u{a877}', mapping: Valid }, + Range { from: '\u{a878}', to: '\u{a87f}', mapping: Disallowed }, + Range { from: '\u{a880}', to: '\u{a8c4}', mapping: Valid }, + Range { from: '\u{a8c5}', to: '\u{a8c5}', mapping: Valid }, + Range { from: '\u{a8c6}', to: '\u{a8cd}', mapping: Disallowed }, + Range { from: '\u{a8ce}', to: '\u{a8cf}', mapping: Valid }, + Range { from: '\u{a8d0}', to: '\u{a8d9}', mapping: Valid }, + Range { from: '\u{a8da}', to: '\u{a8df}', mapping: Disallowed }, + Range { from: '\u{a8e0}', to: '\u{a8f7}', mapping: Valid }, + Range { from: '\u{a8f8}', to: '\u{a8fa}', mapping: Valid }, + Range { from: '\u{a8fb}', to: '\u{a8fb}', mapping: Valid }, + Range { from: '\u{a8fc}', to: '\u{a8fc}', mapping: Valid }, + Range { from: '\u{a8fd}', to: '\u{a8fd}', mapping: Valid }, + Range { from: '\u{a8fe}', to: '\u{a8ff}', mapping: Disallowed }, + Range { from: '\u{a900}', to: '\u{a92d}', mapping: Valid }, + Range { from: '\u{a92e}', to: '\u{a92f}', mapping: Valid }, + Range { from: '\u{a930}', to: '\u{a953}', mapping: Valid }, + Range { from: '\u{a954}', to: '\u{a95e}', mapping: Disallowed }, + Range { from: '\u{a95f}', to: '\u{a95f}', mapping: Valid }, + Range { from: '\u{a960}', to: '\u{a97c}', mapping: Valid }, + Range { from: '\u{a97d}', to: '\u{a97f}', mapping: Disallowed }, + Range { from: '\u{a980}', to: '\u{a9c0}', mapping: Valid }, + Range { from: '\u{a9c1}', to: '\u{a9cd}', mapping: Valid }, + Range { from: '\u{a9ce}', to: '\u{a9ce}', mapping: Disallowed }, + Range { from: '\u{a9cf}', to: '\u{a9d9}', mapping: Valid }, + Range { from: '\u{a9da}', to: '\u{a9dd}', mapping: Disallowed }, + Range { from: '\u{a9de}', to: '\u{a9df}', mapping: Valid }, + Range { from: '\u{a9e0}', to: '\u{a9fe}', mapping: Valid }, + Range { from: '\u{a9ff}', to: '\u{a9ff}', mapping: Disallowed }, + Range { from: '\u{aa00}', to: '\u{aa36}', mapping: Valid }, + Range { from: '\u{aa37}', to: '\u{aa3f}', mapping: Disallowed }, + Range { from: '\u{aa40}', to: '\u{aa4d}', mapping: Valid }, + Range { from: '\u{aa4e}', to: '\u{aa4f}', mapping: Disallowed }, + Range { from: '\u{aa50}', to: '\u{aa59}', mapping: Valid }, + Range { from: '\u{aa5a}', to: '\u{aa5b}', mapping: Disallowed }, + Range { from: '\u{aa5c}', to: '\u{aa5f}', mapping: Valid }, + Range { from: '\u{aa60}', to: '\u{aa76}', mapping: Valid }, + Range { from: '\u{aa77}', to: '\u{aa79}', mapping: Valid }, + Range { from: '\u{aa7a}', to: '\u{aa7b}', mapping: Valid }, + Range { from: '\u{aa7c}', to: '\u{aa7f}', mapping: Valid }, + Range { from: '\u{aa80}', to: '\u{aac2}', mapping: Valid }, + Range { from: '\u{aac3}', to: '\u{aada}', mapping: Disallowed }, + Range { from: '\u{aadb}', to: '\u{aadd}', mapping: Valid }, + Range { from: '\u{aade}', to: '\u{aadf}', mapping: Valid }, + Range { from: '\u{aae0}', to: '\u{aaef}', mapping: Valid }, + Range { from: '\u{aaf0}', to: '\u{aaf1}', mapping: Valid }, + Range { from: '\u{aaf2}', to: '\u{aaf6}', mapping: Valid }, + Range { from: '\u{aaf7}', to: '\u{ab00}', mapping: Disallowed }, + Range { from: '\u{ab01}', to: '\u{ab06}', mapping: Valid }, + Range { from: '\u{ab07}', to: '\u{ab08}', mapping: Disallowed }, + Range { from: '\u{ab09}', to: '\u{ab0e}', mapping: Valid }, + Range { from: '\u{ab0f}', to: '\u{ab10}', mapping: Disallowed }, + Range { from: '\u{ab11}', to: '\u{ab16}', mapping: Valid }, + Range { from: '\u{ab17}', to: '\u{ab1f}', mapping: Disallowed }, + Range { from: '\u{ab20}', to: '\u{ab26}', mapping: Valid }, + Range { from: '\u{ab27}', to: '\u{ab27}', mapping: Disallowed }, + Range { from: '\u{ab28}', to: '\u{ab2e}', mapping: Valid }, + Range { from: '\u{ab2f}', to: '\u{ab2f}', mapping: Disallowed }, + Range { from: '\u{ab30}', to: '\u{ab5a}', mapping: Valid }, + Range { from: '\u{ab5b}', to: '\u{ab5b}', mapping: Valid }, + Range { from: '\u{ab5c}', to: '\u{ab5c}', mapping: Mapped(StringTableSlice { byte_start: 6275, byte_len: 3 }) }, + Range { from: '\u{ab5d}', to: '\u{ab5d}', mapping: Mapped(StringTableSlice { byte_start: 6461, byte_len: 3 }) }, + Range { from: '\u{ab5e}', to: '\u{ab5e}', mapping: Mapped(StringTableSlice { byte_start: 2753, byte_len: 2 }) }, + Range { from: '\u{ab5f}', to: '\u{ab5f}', mapping: Mapped(StringTableSlice { byte_start: 6464, byte_len: 3 }) }, + Range { from: '\u{ab60}', to: '\u{ab63}', mapping: Valid }, + Range { from: '\u{ab64}', to: '\u{ab65}', mapping: Valid }, + Range { from: '\u{ab66}', to: '\u{ab6f}', mapping: Disallowed }, + Range { from: '\u{ab70}', to: '\u{ab70}', mapping: Mapped(StringTableSlice { byte_start: 6467, byte_len: 3 }) }, + Range { from: '\u{ab71}', to: '\u{ab71}', mapping: Mapped(StringTableSlice { byte_start: 6470, byte_len: 3 }) }, + Range { from: '\u{ab72}', to: '\u{ab72}', mapping: Mapped(StringTableSlice { byte_start: 6473, byte_len: 3 }) }, + Range { from: '\u{ab73}', to: '\u{ab73}', mapping: Mapped(StringTableSlice { byte_start: 6476, byte_len: 3 }) }, + Range { from: '\u{ab74}', to: '\u{ab74}', mapping: Mapped(StringTableSlice { byte_start: 6479, byte_len: 3 }) }, + Range { from: '\u{ab75}', to: '\u{ab75}', mapping: Mapped(StringTableSlice { byte_start: 6482, byte_len: 3 }) }, + Range { from: '\u{ab76}', to: '\u{ab76}', mapping: Mapped(StringTableSlice { byte_start: 6485, byte_len: 3 }) }, + Range { from: '\u{ab77}', to: '\u{ab77}', mapping: Mapped(StringTableSlice { byte_start: 6488, byte_len: 3 }) }, + Range { from: '\u{ab78}', to: '\u{ab78}', mapping: Mapped(StringTableSlice { byte_start: 6491, byte_len: 3 }) }, + Range { from: '\u{ab79}', to: '\u{ab79}', mapping: Mapped(StringTableSlice { byte_start: 6494, byte_len: 3 }) }, + Range { from: '\u{ab7a}', to: '\u{ab7a}', mapping: Mapped(StringTableSlice { byte_start: 6497, byte_len: 3 }) }, + Range { from: '\u{ab7b}', to: '\u{ab7b}', mapping: Mapped(StringTableSlice { byte_start: 6500, byte_len: 3 }) }, + Range { from: '\u{ab7c}', to: '\u{ab7c}', mapping: Mapped(StringTableSlice { byte_start: 6503, byte_len: 3 }) }, + Range { from: '\u{ab7d}', to: '\u{ab7d}', mapping: Mapped(StringTableSlice { byte_start: 6506, byte_len: 3 }) }, + Range { from: '\u{ab7e}', to: '\u{ab7e}', mapping: Mapped(StringTableSlice { byte_start: 6509, byte_len: 3 }) }, + Range { from: '\u{ab7f}', to: '\u{ab7f}', mapping: Mapped(StringTableSlice { byte_start: 6512, byte_len: 3 }) }, + Range { from: '\u{ab80}', to: '\u{ab80}', mapping: Mapped(StringTableSlice { byte_start: 6515, byte_len: 3 }) }, + Range { from: '\u{ab81}', to: '\u{ab81}', mapping: Mapped(StringTableSlice { byte_start: 6518, byte_len: 3 }) }, + Range { from: '\u{ab82}', to: '\u{ab82}', mapping: Mapped(StringTableSlice { byte_start: 6521, byte_len: 3 }) }, + Range { from: '\u{ab83}', to: '\u{ab83}', mapping: Mapped(StringTableSlice { byte_start: 6524, byte_len: 3 }) }, + Range { from: '\u{ab84}', to: '\u{ab84}', mapping: Mapped(StringTableSlice { byte_start: 6527, byte_len: 3 }) }, + Range { from: '\u{ab85}', to: '\u{ab85}', mapping: Mapped(StringTableSlice { byte_start: 6530, byte_len: 3 }) }, + Range { from: '\u{ab86}', to: '\u{ab86}', mapping: Mapped(StringTableSlice { byte_start: 6533, byte_len: 3 }) }, + Range { from: '\u{ab87}', to: '\u{ab87}', mapping: Mapped(StringTableSlice { byte_start: 6536, byte_len: 3 }) }, + Range { from: '\u{ab88}', to: '\u{ab88}', mapping: Mapped(StringTableSlice { byte_start: 6539, byte_len: 3 }) }, + Range { from: '\u{ab89}', to: '\u{ab89}', mapping: Mapped(StringTableSlice { byte_start: 6542, byte_len: 3 }) }, + Range { from: '\u{ab8a}', to: '\u{ab8a}', mapping: Mapped(StringTableSlice { byte_start: 6545, byte_len: 3 }) }, + Range { from: '\u{ab8b}', to: '\u{ab8b}', mapping: Mapped(StringTableSlice { byte_start: 6548, byte_len: 3 }) }, + Range { from: '\u{ab8c}', to: '\u{ab8c}', mapping: Mapped(StringTableSlice { byte_start: 6551, byte_len: 3 }) }, + Range { from: '\u{ab8d}', to: '\u{ab8d}', mapping: Mapped(StringTableSlice { byte_start: 6554, byte_len: 3 }) }, + Range { from: '\u{ab8e}', to: '\u{ab8e}', mapping: Mapped(StringTableSlice { byte_start: 6557, byte_len: 3 }) }, + Range { from: '\u{ab8f}', to: '\u{ab8f}', mapping: Mapped(StringTableSlice { byte_start: 6560, byte_len: 3 }) }, + Range { from: '\u{ab90}', to: '\u{ab90}', mapping: Mapped(StringTableSlice { byte_start: 6563, byte_len: 3 }) }, + Range { from: '\u{ab91}', to: '\u{ab91}', mapping: Mapped(StringTableSlice { byte_start: 6566, byte_len: 3 }) }, + Range { from: '\u{ab92}', to: '\u{ab92}', mapping: Mapped(StringTableSlice { byte_start: 6569, byte_len: 3 }) }, + Range { from: '\u{ab93}', to: '\u{ab93}', mapping: Mapped(StringTableSlice { byte_start: 6572, byte_len: 3 }) }, + Range { from: '\u{ab94}', to: '\u{ab94}', mapping: Mapped(StringTableSlice { byte_start: 6575, byte_len: 3 }) }, + Range { from: '\u{ab95}', to: '\u{ab95}', mapping: Mapped(StringTableSlice { byte_start: 6578, byte_len: 3 }) }, + Range { from: '\u{ab96}', to: '\u{ab96}', mapping: Mapped(StringTableSlice { byte_start: 6581, byte_len: 3 }) }, + Range { from: '\u{ab97}', to: '\u{ab97}', mapping: Mapped(StringTableSlice { byte_start: 6584, byte_len: 3 }) }, + Range { from: '\u{ab98}', to: '\u{ab98}', mapping: Mapped(StringTableSlice { byte_start: 6587, byte_len: 3 }) }, + Range { from: '\u{ab99}', to: '\u{ab99}', mapping: Mapped(StringTableSlice { byte_start: 6590, byte_len: 3 }) }, + Range { from: '\u{ab9a}', to: '\u{ab9a}', mapping: Mapped(StringTableSlice { byte_start: 6593, byte_len: 3 }) }, + Range { from: '\u{ab9b}', to: '\u{ab9b}', mapping: Mapped(StringTableSlice { byte_start: 6596, byte_len: 3 }) }, + Range { from: '\u{ab9c}', to: '\u{ab9c}', mapping: Mapped(StringTableSlice { byte_start: 6599, byte_len: 3 }) }, + Range { from: '\u{ab9d}', to: '\u{ab9d}', mapping: Mapped(StringTableSlice { byte_start: 6602, byte_len: 3 }) }, + Range { from: '\u{ab9e}', to: '\u{ab9e}', mapping: Mapped(StringTableSlice { byte_start: 6605, byte_len: 3 }) }, + Range { from: '\u{ab9f}', to: '\u{ab9f}', mapping: Mapped(StringTableSlice { byte_start: 6608, byte_len: 3 }) }, + Range { from: '\u{aba0}', to: '\u{aba0}', mapping: Mapped(StringTableSlice { byte_start: 6611, byte_len: 3 }) }, + Range { from: '\u{aba1}', to: '\u{aba1}', mapping: Mapped(StringTableSlice { byte_start: 6614, byte_len: 3 }) }, + Range { from: '\u{aba2}', to: '\u{aba2}', mapping: Mapped(StringTableSlice { byte_start: 6617, byte_len: 3 }) }, + Range { from: '\u{aba3}', to: '\u{aba3}', mapping: Mapped(StringTableSlice { byte_start: 6620, byte_len: 3 }) }, + Range { from: '\u{aba4}', to: '\u{aba4}', mapping: Mapped(StringTableSlice { byte_start: 6623, byte_len: 3 }) }, + Range { from: '\u{aba5}', to: '\u{aba5}', mapping: Mapped(StringTableSlice { byte_start: 6626, byte_len: 3 }) }, + Range { from: '\u{aba6}', to: '\u{aba6}', mapping: Mapped(StringTableSlice { byte_start: 6629, byte_len: 3 }) }, + Range { from: '\u{aba7}', to: '\u{aba7}', mapping: Mapped(StringTableSlice { byte_start: 6632, byte_len: 3 }) }, + Range { from: '\u{aba8}', to: '\u{aba8}', mapping: Mapped(StringTableSlice { byte_start: 6635, byte_len: 3 }) }, + Range { from: '\u{aba9}', to: '\u{aba9}', mapping: Mapped(StringTableSlice { byte_start: 6638, byte_len: 3 }) }, + Range { from: '\u{abaa}', to: '\u{abaa}', mapping: Mapped(StringTableSlice { byte_start: 6641, byte_len: 3 }) }, + Range { from: '\u{abab}', to: '\u{abab}', mapping: Mapped(StringTableSlice { byte_start: 6644, byte_len: 3 }) }, + Range { from: '\u{abac}', to: '\u{abac}', mapping: Mapped(StringTableSlice { byte_start: 6647, byte_len: 3 }) }, + Range { from: '\u{abad}', to: '\u{abad}', mapping: Mapped(StringTableSlice { byte_start: 6650, byte_len: 3 }) }, + Range { from: '\u{abae}', to: '\u{abae}', mapping: Mapped(StringTableSlice { byte_start: 6653, byte_len: 3 }) }, + Range { from: '\u{abaf}', to: '\u{abaf}', mapping: Mapped(StringTableSlice { byte_start: 6656, byte_len: 3 }) }, + Range { from: '\u{abb0}', to: '\u{abb0}', mapping: Mapped(StringTableSlice { byte_start: 6659, byte_len: 3 }) }, + Range { from: '\u{abb1}', to: '\u{abb1}', mapping: Mapped(StringTableSlice { byte_start: 6662, byte_len: 3 }) }, + Range { from: '\u{abb2}', to: '\u{abb2}', mapping: Mapped(StringTableSlice { byte_start: 6665, byte_len: 3 }) }, + Range { from: '\u{abb3}', to: '\u{abb3}', mapping: Mapped(StringTableSlice { byte_start: 6668, byte_len: 3 }) }, + Range { from: '\u{abb4}', to: '\u{abb4}', mapping: Mapped(StringTableSlice { byte_start: 6671, byte_len: 3 }) }, + Range { from: '\u{abb5}', to: '\u{abb5}', mapping: Mapped(StringTableSlice { byte_start: 6674, byte_len: 3 }) }, + Range { from: '\u{abb6}', to: '\u{abb6}', mapping: Mapped(StringTableSlice { byte_start: 6677, byte_len: 3 }) }, + Range { from: '\u{abb7}', to: '\u{abb7}', mapping: Mapped(StringTableSlice { byte_start: 6680, byte_len: 3 }) }, + Range { from: '\u{abb8}', to: '\u{abb8}', mapping: Mapped(StringTableSlice { byte_start: 6683, byte_len: 3 }) }, + Range { from: '\u{abb9}', to: '\u{abb9}', mapping: Mapped(StringTableSlice { byte_start: 6686, byte_len: 3 }) }, + Range { from: '\u{abba}', to: '\u{abba}', mapping: Mapped(StringTableSlice { byte_start: 6689, byte_len: 3 }) }, + Range { from: '\u{abbb}', to: '\u{abbb}', mapping: Mapped(StringTableSlice { byte_start: 6692, byte_len: 3 }) }, + Range { from: '\u{abbc}', to: '\u{abbc}', mapping: Mapped(StringTableSlice { byte_start: 6695, byte_len: 3 }) }, + Range { from: '\u{abbd}', to: '\u{abbd}', mapping: Mapped(StringTableSlice { byte_start: 6698, byte_len: 3 }) }, + Range { from: '\u{abbe}', to: '\u{abbe}', mapping: Mapped(StringTableSlice { byte_start: 6701, byte_len: 3 }) }, + Range { from: '\u{abbf}', to: '\u{abbf}', mapping: Mapped(StringTableSlice { byte_start: 6704, byte_len: 3 }) }, + Range { from: '\u{abc0}', to: '\u{abea}', mapping: Valid }, + Range { from: '\u{abeb}', to: '\u{abeb}', mapping: Valid }, + Range { from: '\u{abec}', to: '\u{abed}', mapping: Valid }, + Range { from: '\u{abee}', to: '\u{abef}', mapping: Disallowed }, + Range { from: '\u{abf0}', to: '\u{abf9}', mapping: Valid }, + Range { from: '\u{abfa}', to: '\u{abff}', mapping: Disallowed }, + Range { from: '\u{ac00}', to: '\u{d7a3}', mapping: Valid }, + Range { from: '\u{d7a4}', to: '\u{d7af}', mapping: Disallowed }, + Range { from: '\u{d7b0}', to: '\u{d7c6}', mapping: Valid }, + Range { from: '\u{d7c7}', to: '\u{d7ca}', mapping: Disallowed }, + Range { from: '\u{d7cb}', to: '\u{d7fb}', mapping: Valid }, + Range { from: '\u{d7fc}', to: '\u{d7ff}', mapping: Disallowed }, + Range { from: '\u{e000}', to: '\u{f8ff}', mapping: Disallowed }, + Range { from: '\u{f900}', to: '\u{f900}', mapping: Mapped(StringTableSlice { byte_start: 6707, byte_len: 3 }) }, + Range { from: '\u{f901}', to: '\u{f901}', mapping: Mapped(StringTableSlice { byte_start: 6710, byte_len: 3 }) }, + Range { from: '\u{f902}', to: '\u{f902}', mapping: Mapped(StringTableSlice { byte_start: 3421, byte_len: 3 }) }, + Range { from: '\u{f903}', to: '\u{f903}', mapping: Mapped(StringTableSlice { byte_start: 6713, byte_len: 3 }) }, + Range { from: '\u{f904}', to: '\u{f904}', mapping: Mapped(StringTableSlice { byte_start: 6716, byte_len: 3 }) }, + Range { from: '\u{f905}', to: '\u{f905}', mapping: Mapped(StringTableSlice { byte_start: 6719, byte_len: 3 }) }, + Range { from: '\u{f906}', to: '\u{f906}', mapping: Mapped(StringTableSlice { byte_start: 6722, byte_len: 3 }) }, + Range { from: '\u{f907}', to: '\u{f908}', mapping: Mapped(StringTableSlice { byte_start: 3583, byte_len: 3 }) }, + Range { from: '\u{f909}', to: '\u{f909}', mapping: Mapped(StringTableSlice { byte_start: 6725, byte_len: 3 }) }, + Range { from: '\u{f90a}', to: '\u{f90a}', mapping: Mapped(StringTableSlice { byte_start: 3445, byte_len: 3 }) }, + Range { from: '\u{f90b}', to: '\u{f90b}', mapping: Mapped(StringTableSlice { byte_start: 6728, byte_len: 3 }) }, + Range { from: '\u{f90c}', to: '\u{f90c}', mapping: Mapped(StringTableSlice { byte_start: 6731, byte_len: 3 }) }, + Range { from: '\u{f90d}', to: '\u{f90d}', mapping: Mapped(StringTableSlice { byte_start: 6734, byte_len: 3 }) }, + Range { from: '\u{f90e}', to: '\u{f90e}', mapping: Mapped(StringTableSlice { byte_start: 6737, byte_len: 3 }) }, + Range { from: '\u{f90f}', to: '\u{f90f}', mapping: Mapped(StringTableSlice { byte_start: 6740, byte_len: 3 }) }, + Range { from: '\u{f910}', to: '\u{f910}', mapping: Mapped(StringTableSlice { byte_start: 6743, byte_len: 3 }) }, + Range { from: '\u{f911}', to: '\u{f911}', mapping: Mapped(StringTableSlice { byte_start: 6746, byte_len: 3 }) }, + Range { from: '\u{f912}', to: '\u{f912}', mapping: Mapped(StringTableSlice { byte_start: 6749, byte_len: 3 }) }, + Range { from: '\u{f913}', to: '\u{f913}', mapping: Mapped(StringTableSlice { byte_start: 6752, byte_len: 3 }) }, + Range { from: '\u{f914}', to: '\u{f914}', mapping: Mapped(StringTableSlice { byte_start: 6755, byte_len: 3 }) }, + Range { from: '\u{f915}', to: '\u{f915}', mapping: Mapped(StringTableSlice { byte_start: 6758, byte_len: 3 }) }, + Range { from: '\u{f916}', to: '\u{f916}', mapping: Mapped(StringTableSlice { byte_start: 6761, byte_len: 3 }) }, + Range { from: '\u{f917}', to: '\u{f917}', mapping: Mapped(StringTableSlice { byte_start: 6764, byte_len: 3 }) }, + Range { from: '\u{f918}', to: '\u{f918}', mapping: Mapped(StringTableSlice { byte_start: 6767, byte_len: 3 }) }, + Range { from: '\u{f919}', to: '\u{f919}', mapping: Mapped(StringTableSlice { byte_start: 6770, byte_len: 3 }) }, + Range { from: '\u{f91a}', to: '\u{f91a}', mapping: Mapped(StringTableSlice { byte_start: 6773, byte_len: 3 }) }, + Range { from: '\u{f91b}', to: '\u{f91b}', mapping: Mapped(StringTableSlice { byte_start: 6776, byte_len: 3 }) }, + Range { from: '\u{f91c}', to: '\u{f91c}', mapping: Mapped(StringTableSlice { byte_start: 6779, byte_len: 3 }) }, + Range { from: '\u{f91d}', to: '\u{f91d}', mapping: Mapped(StringTableSlice { byte_start: 6782, byte_len: 3 }) }, + Range { from: '\u{f91e}', to: '\u{f91e}', mapping: Mapped(StringTableSlice { byte_start: 6785, byte_len: 3 }) }, + Range { from: '\u{f91f}', to: '\u{f91f}', mapping: Mapped(StringTableSlice { byte_start: 6788, byte_len: 3 }) }, + Range { from: '\u{f920}', to: '\u{f920}', mapping: Mapped(StringTableSlice { byte_start: 6791, byte_len: 3 }) }, + Range { from: '\u{f921}', to: '\u{f921}', mapping: Mapped(StringTableSlice { byte_start: 6794, byte_len: 3 }) }, + Range { from: '\u{f922}', to: '\u{f922}', mapping: Mapped(StringTableSlice { byte_start: 6797, byte_len: 3 }) }, + Range { from: '\u{f923}', to: '\u{f923}', mapping: Mapped(StringTableSlice { byte_start: 6800, byte_len: 3 }) }, + Range { from: '\u{f924}', to: '\u{f924}', mapping: Mapped(StringTableSlice { byte_start: 6803, byte_len: 3 }) }, + Range { from: '\u{f925}', to: '\u{f925}', mapping: Mapped(StringTableSlice { byte_start: 6806, byte_len: 3 }) }, + Range { from: '\u{f926}', to: '\u{f926}', mapping: Mapped(StringTableSlice { byte_start: 6809, byte_len: 3 }) }, + Range { from: '\u{f927}', to: '\u{f927}', mapping: Mapped(StringTableSlice { byte_start: 6812, byte_len: 3 }) }, + Range { from: '\u{f928}', to: '\u{f928}', mapping: Mapped(StringTableSlice { byte_start: 6815, byte_len: 3 }) }, + Range { from: '\u{f929}', to: '\u{f929}', mapping: Mapped(StringTableSlice { byte_start: 6818, byte_len: 3 }) }, + Range { from: '\u{f92a}', to: '\u{f92a}', mapping: Mapped(StringTableSlice { byte_start: 6821, byte_len: 3 }) }, + Range { from: '\u{f92b}', to: '\u{f92b}', mapping: Mapped(StringTableSlice { byte_start: 6824, byte_len: 3 }) }, + Range { from: '\u{f92c}', to: '\u{f92c}', mapping: Mapped(StringTableSlice { byte_start: 6827, byte_len: 3 }) }, + Range { from: '\u{f92d}', to: '\u{f92d}', mapping: Mapped(StringTableSlice { byte_start: 6830, byte_len: 3 }) }, + Range { from: '\u{f92e}', to: '\u{f92e}', mapping: Mapped(StringTableSlice { byte_start: 6833, byte_len: 3 }) }, + Range { from: '\u{f92f}', to: '\u{f92f}', mapping: Mapped(StringTableSlice { byte_start: 6836, byte_len: 3 }) }, + Range { from: '\u{f930}', to: '\u{f930}', mapping: Mapped(StringTableSlice { byte_start: 6839, byte_len: 3 }) }, + Range { from: '\u{f931}', to: '\u{f931}', mapping: Mapped(StringTableSlice { byte_start: 6842, byte_len: 3 }) }, + Range { from: '\u{f932}', to: '\u{f932}', mapping: Mapped(StringTableSlice { byte_start: 6845, byte_len: 3 }) }, + Range { from: '\u{f933}', to: '\u{f933}', mapping: Mapped(StringTableSlice { byte_start: 6848, byte_len: 3 }) }, + Range { from: '\u{f934}', to: '\u{f934}', mapping: Mapped(StringTableSlice { byte_start: 3319, byte_len: 3 }) }, + Range { from: '\u{f935}', to: '\u{f935}', mapping: Mapped(StringTableSlice { byte_start: 6851, byte_len: 3 }) }, + Range { from: '\u{f936}', to: '\u{f936}', mapping: Mapped(StringTableSlice { byte_start: 6854, byte_len: 3 }) }, + Range { from: '\u{f937}', to: '\u{f937}', mapping: Mapped(StringTableSlice { byte_start: 6857, byte_len: 3 }) }, + Range { from: '\u{f938}', to: '\u{f938}', mapping: Mapped(StringTableSlice { byte_start: 6860, byte_len: 3 }) }, + Range { from: '\u{f939}', to: '\u{f939}', mapping: Mapped(StringTableSlice { byte_start: 6863, byte_len: 3 }) }, + Range { from: '\u{f93a}', to: '\u{f93a}', mapping: Mapped(StringTableSlice { byte_start: 6866, byte_len: 3 }) }, + Range { from: '\u{f93b}', to: '\u{f93b}', mapping: Mapped(StringTableSlice { byte_start: 6869, byte_len: 3 }) }, + Range { from: '\u{f93c}', to: '\u{f93c}', mapping: Mapped(StringTableSlice { byte_start: 6872, byte_len: 3 }) }, + Range { from: '\u{f93d}', to: '\u{f93d}', mapping: Mapped(StringTableSlice { byte_start: 6875, byte_len: 3 }) }, + Range { from: '\u{f93e}', to: '\u{f93e}', mapping: Mapped(StringTableSlice { byte_start: 6878, byte_len: 3 }) }, + Range { from: '\u{f93f}', to: '\u{f93f}', mapping: Mapped(StringTableSlice { byte_start: 6881, byte_len: 3 }) }, + Range { from: '\u{f940}', to: '\u{f940}', mapping: Mapped(StringTableSlice { byte_start: 3538, byte_len: 3 }) }, + Range { from: '\u{f941}', to: '\u{f941}', mapping: Mapped(StringTableSlice { byte_start: 6884, byte_len: 3 }) }, + Range { from: '\u{f942}', to: '\u{f942}', mapping: Mapped(StringTableSlice { byte_start: 6887, byte_len: 3 }) }, + Range { from: '\u{f943}', to: '\u{f943}', mapping: Mapped(StringTableSlice { byte_start: 6890, byte_len: 3 }) }, + Range { from: '\u{f944}', to: '\u{f944}', mapping: Mapped(StringTableSlice { byte_start: 6893, byte_len: 3 }) }, + Range { from: '\u{f945}', to: '\u{f945}', mapping: Mapped(StringTableSlice { byte_start: 6896, byte_len: 3 }) }, + Range { from: '\u{f946}', to: '\u{f946}', mapping: Mapped(StringTableSlice { byte_start: 6899, byte_len: 3 }) }, + Range { from: '\u{f947}', to: '\u{f947}', mapping: Mapped(StringTableSlice { byte_start: 6902, byte_len: 3 }) }, + Range { from: '\u{f948}', to: '\u{f948}', mapping: Mapped(StringTableSlice { byte_start: 6905, byte_len: 3 }) }, + Range { from: '\u{f949}', to: '\u{f949}', mapping: Mapped(StringTableSlice { byte_start: 6908, byte_len: 3 }) }, + Range { from: '\u{f94a}', to: '\u{f94a}', mapping: Mapped(StringTableSlice { byte_start: 6911, byte_len: 3 }) }, + Range { from: '\u{f94b}', to: '\u{f94b}', mapping: Mapped(StringTableSlice { byte_start: 6914, byte_len: 3 }) }, + Range { from: '\u{f94c}', to: '\u{f94c}', mapping: Mapped(StringTableSlice { byte_start: 6917, byte_len: 3 }) }, + Range { from: '\u{f94d}', to: '\u{f94d}', mapping: Mapped(StringTableSlice { byte_start: 6920, byte_len: 3 }) }, + Range { from: '\u{f94e}', to: '\u{f94e}', mapping: Mapped(StringTableSlice { byte_start: 6923, byte_len: 3 }) }, + Range { from: '\u{f94f}', to: '\u{f94f}', mapping: Mapped(StringTableSlice { byte_start: 6926, byte_len: 3 }) }, + Range { from: '\u{f950}', to: '\u{f950}', mapping: Mapped(StringTableSlice { byte_start: 6929, byte_len: 3 }) }, + Range { from: '\u{f951}', to: '\u{f951}', mapping: Mapped(StringTableSlice { byte_start: 6932, byte_len: 3 }) }, + Range { from: '\u{f952}', to: '\u{f952}', mapping: Mapped(StringTableSlice { byte_start: 6935, byte_len: 3 }) }, + Range { from: '\u{f953}', to: '\u{f953}', mapping: Mapped(StringTableSlice { byte_start: 6938, byte_len: 3 }) }, + Range { from: '\u{f954}', to: '\u{f954}', mapping: Mapped(StringTableSlice { byte_start: 6941, byte_len: 3 }) }, + Range { from: '\u{f955}', to: '\u{f955}', mapping: Mapped(StringTableSlice { byte_start: 6944, byte_len: 3 }) }, + Range { from: '\u{f956}', to: '\u{f956}', mapping: Mapped(StringTableSlice { byte_start: 6947, byte_len: 3 }) }, + Range { from: '\u{f957}', to: '\u{f957}', mapping: Mapped(StringTableSlice { byte_start: 6950, byte_len: 3 }) }, + Range { from: '\u{f958}', to: '\u{f958}', mapping: Mapped(StringTableSlice { byte_start: 6953, byte_len: 3 }) }, + Range { from: '\u{f959}', to: '\u{f959}', mapping: Mapped(StringTableSlice { byte_start: 6956, byte_len: 3 }) }, + Range { from: '\u{f95a}', to: '\u{f95a}', mapping: Mapped(StringTableSlice { byte_start: 6959, byte_len: 3 }) }, + Range { from: '\u{f95b}', to: '\u{f95b}', mapping: Mapped(StringTableSlice { byte_start: 6962, byte_len: 3 }) }, + Range { from: '\u{f95c}', to: '\u{f95c}', mapping: Mapped(StringTableSlice { byte_start: 6755, byte_len: 3 }) }, + Range { from: '\u{f95d}', to: '\u{f95d}', mapping: Mapped(StringTableSlice { byte_start: 6965, byte_len: 3 }) }, + Range { from: '\u{f95e}', to: '\u{f95e}', mapping: Mapped(StringTableSlice { byte_start: 6968, byte_len: 3 }) }, + Range { from: '\u{f95f}', to: '\u{f95f}', mapping: Mapped(StringTableSlice { byte_start: 6971, byte_len: 3 }) }, + Range { from: '\u{f960}', to: '\u{f960}', mapping: Mapped(StringTableSlice { byte_start: 6974, byte_len: 3 }) }, + Range { from: '\u{f961}', to: '\u{f961}', mapping: Mapped(StringTableSlice { byte_start: 6977, byte_len: 3 }) }, + Range { from: '\u{f962}', to: '\u{f962}', mapping: Mapped(StringTableSlice { byte_start: 6980, byte_len: 3 }) }, + Range { from: '\u{f963}', to: '\u{f963}', mapping: Mapped(StringTableSlice { byte_start: 6983, byte_len: 3 }) }, + Range { from: '\u{f964}', to: '\u{f964}', mapping: Mapped(StringTableSlice { byte_start: 6986, byte_len: 3 }) }, + Range { from: '\u{f965}', to: '\u{f965}', mapping: Mapped(StringTableSlice { byte_start: 6989, byte_len: 3 }) }, + Range { from: '\u{f966}', to: '\u{f966}', mapping: Mapped(StringTableSlice { byte_start: 6992, byte_len: 3 }) }, + Range { from: '\u{f967}', to: '\u{f967}', mapping: Mapped(StringTableSlice { byte_start: 6995, byte_len: 3 }) }, + Range { from: '\u{f968}', to: '\u{f968}', mapping: Mapped(StringTableSlice { byte_start: 6998, byte_len: 3 }) }, + Range { from: '\u{f969}', to: '\u{f969}', mapping: Mapped(StringTableSlice { byte_start: 7001, byte_len: 3 }) }, + Range { from: '\u{f96a}', to: '\u{f96a}', mapping: Mapped(StringTableSlice { byte_start: 7004, byte_len: 3 }) }, + Range { from: '\u{f96b}', to: '\u{f96b}', mapping: Mapped(StringTableSlice { byte_start: 7007, byte_len: 3 }) }, + Range { from: '\u{f96c}', to: '\u{f96c}', mapping: Mapped(StringTableSlice { byte_start: 7010, byte_len: 3 }) }, + Range { from: '\u{f96d}', to: '\u{f96d}', mapping: Mapped(StringTableSlice { byte_start: 7013, byte_len: 3 }) }, + Range { from: '\u{f96e}', to: '\u{f96e}', mapping: Mapped(StringTableSlice { byte_start: 7016, byte_len: 3 }) }, + Range { from: '\u{f96f}', to: '\u{f96f}', mapping: Mapped(StringTableSlice { byte_start: 7019, byte_len: 3 }) }, + Range { from: '\u{f970}', to: '\u{f970}', mapping: Mapped(StringTableSlice { byte_start: 7022, byte_len: 3 }) }, + Range { from: '\u{f971}', to: '\u{f971}', mapping: Mapped(StringTableSlice { byte_start: 3427, byte_len: 3 }) }, + Range { from: '\u{f972}', to: '\u{f972}', mapping: Mapped(StringTableSlice { byte_start: 7025, byte_len: 3 }) }, + Range { from: '\u{f973}', to: '\u{f973}', mapping: Mapped(StringTableSlice { byte_start: 7028, byte_len: 3 }) }, + Range { from: '\u{f974}', to: '\u{f974}', mapping: Mapped(StringTableSlice { byte_start: 7031, byte_len: 3 }) }, + Range { from: '\u{f975}', to: '\u{f975}', mapping: Mapped(StringTableSlice { byte_start: 7034, byte_len: 3 }) }, + Range { from: '\u{f976}', to: '\u{f976}', mapping: Mapped(StringTableSlice { byte_start: 7037, byte_len: 3 }) }, + Range { from: '\u{f977}', to: '\u{f977}', mapping: Mapped(StringTableSlice { byte_start: 7040, byte_len: 3 }) }, + Range { from: '\u{f978}', to: '\u{f978}', mapping: Mapped(StringTableSlice { byte_start: 7043, byte_len: 3 }) }, + Range { from: '\u{f979}', to: '\u{f979}', mapping: Mapped(StringTableSlice { byte_start: 7046, byte_len: 3 }) }, + Range { from: '\u{f97a}', to: '\u{f97a}', mapping: Mapped(StringTableSlice { byte_start: 7049, byte_len: 3 }) }, + Range { from: '\u{f97b}', to: '\u{f97b}', mapping: Mapped(StringTableSlice { byte_start: 7052, byte_len: 3 }) }, + Range { from: '\u{f97c}', to: '\u{f97c}', mapping: Mapped(StringTableSlice { byte_start: 7055, byte_len: 3 }) }, + Range { from: '\u{f97d}', to: '\u{f97d}', mapping: Mapped(StringTableSlice { byte_start: 7058, byte_len: 3 }) }, + Range { from: '\u{f97e}', to: '\u{f97e}', mapping: Mapped(StringTableSlice { byte_start: 7061, byte_len: 3 }) }, + Range { from: '\u{f97f}', to: '\u{f97f}', mapping: Mapped(StringTableSlice { byte_start: 7064, byte_len: 3 }) }, + Range { from: '\u{f980}', to: '\u{f980}', mapping: Mapped(StringTableSlice { byte_start: 7067, byte_len: 3 }) }, + Range { from: '\u{f981}', to: '\u{f981}', mapping: Mapped(StringTableSlice { byte_start: 3058, byte_len: 3 }) }, + Range { from: '\u{f982}', to: '\u{f982}', mapping: Mapped(StringTableSlice { byte_start: 7070, byte_len: 3 }) }, + Range { from: '\u{f983}', to: '\u{f983}', mapping: Mapped(StringTableSlice { byte_start: 7073, byte_len: 3 }) }, + Range { from: '\u{f984}', to: '\u{f984}', mapping: Mapped(StringTableSlice { byte_start: 7076, byte_len: 3 }) }, + Range { from: '\u{f985}', to: '\u{f985}', mapping: Mapped(StringTableSlice { byte_start: 7079, byte_len: 3 }) }, + Range { from: '\u{f986}', to: '\u{f986}', mapping: Mapped(StringTableSlice { byte_start: 7082, byte_len: 3 }) }, + Range { from: '\u{f987}', to: '\u{f987}', mapping: Mapped(StringTableSlice { byte_start: 7085, byte_len: 3 }) }, + Range { from: '\u{f988}', to: '\u{f988}', mapping: Mapped(StringTableSlice { byte_start: 7088, byte_len: 3 }) }, + Range { from: '\u{f989}', to: '\u{f989}', mapping: Mapped(StringTableSlice { byte_start: 7091, byte_len: 3 }) }, + Range { from: '\u{f98a}', to: '\u{f98a}', mapping: Mapped(StringTableSlice { byte_start: 3001, byte_len: 3 }) }, + Range { from: '\u{f98b}', to: '\u{f98b}', mapping: Mapped(StringTableSlice { byte_start: 7094, byte_len: 3 }) }, + Range { from: '\u{f98c}', to: '\u{f98c}', mapping: Mapped(StringTableSlice { byte_start: 7097, byte_len: 3 }) }, + Range { from: '\u{f98d}', to: '\u{f98d}', mapping: Mapped(StringTableSlice { byte_start: 7100, byte_len: 3 }) }, + Range { from: '\u{f98e}', to: '\u{f98e}', mapping: Mapped(StringTableSlice { byte_start: 7103, byte_len: 3 }) }, + Range { from: '\u{f98f}', to: '\u{f98f}', mapping: Mapped(StringTableSlice { byte_start: 7106, byte_len: 3 }) }, + Range { from: '\u{f990}', to: '\u{f990}', mapping: Mapped(StringTableSlice { byte_start: 7109, byte_len: 3 }) }, + Range { from: '\u{f991}', to: '\u{f991}', mapping: Mapped(StringTableSlice { byte_start: 7112, byte_len: 3 }) }, + Range { from: '\u{f992}', to: '\u{f992}', mapping: Mapped(StringTableSlice { byte_start: 7115, byte_len: 3 }) }, + Range { from: '\u{f993}', to: '\u{f993}', mapping: Mapped(StringTableSlice { byte_start: 7118, byte_len: 3 }) }, + Range { from: '\u{f994}', to: '\u{f994}', mapping: Mapped(StringTableSlice { byte_start: 7121, byte_len: 3 }) }, + Range { from: '\u{f995}', to: '\u{f995}', mapping: Mapped(StringTableSlice { byte_start: 7124, byte_len: 3 }) }, + Range { from: '\u{f996}', to: '\u{f996}', mapping: Mapped(StringTableSlice { byte_start: 7127, byte_len: 3 }) }, + Range { from: '\u{f997}', to: '\u{f997}', mapping: Mapped(StringTableSlice { byte_start: 7130, byte_len: 3 }) }, + Range { from: '\u{f998}', to: '\u{f998}', mapping: Mapped(StringTableSlice { byte_start: 7133, byte_len: 3 }) }, + Range { from: '\u{f999}', to: '\u{f999}', mapping: Mapped(StringTableSlice { byte_start: 7136, byte_len: 3 }) }, + Range { from: '\u{f99a}', to: '\u{f99a}', mapping: Mapped(StringTableSlice { byte_start: 7139, byte_len: 3 }) }, + Range { from: '\u{f99b}', to: '\u{f99b}', mapping: Mapped(StringTableSlice { byte_start: 7142, byte_len: 3 }) }, + Range { from: '\u{f99c}', to: '\u{f99c}', mapping: Mapped(StringTableSlice { byte_start: 7145, byte_len: 3 }) }, + Range { from: '\u{f99d}', to: '\u{f99d}', mapping: Mapped(StringTableSlice { byte_start: 7148, byte_len: 3 }) }, + Range { from: '\u{f99e}', to: '\u{f99e}', mapping: Mapped(StringTableSlice { byte_start: 7151, byte_len: 3 }) }, + Range { from: '\u{f99f}', to: '\u{f99f}', mapping: Mapped(StringTableSlice { byte_start: 7154, byte_len: 3 }) }, + Range { from: '\u{f9a0}', to: '\u{f9a0}', mapping: Mapped(StringTableSlice { byte_start: 7157, byte_len: 3 }) }, + Range { from: '\u{f9a1}', to: '\u{f9a1}', mapping: Mapped(StringTableSlice { byte_start: 7019, byte_len: 3 }) }, + Range { from: '\u{f9a2}', to: '\u{f9a2}', mapping: Mapped(StringTableSlice { byte_start: 7160, byte_len: 3 }) }, + Range { from: '\u{f9a3}', to: '\u{f9a3}', mapping: Mapped(StringTableSlice { byte_start: 7163, byte_len: 3 }) }, + Range { from: '\u{f9a4}', to: '\u{f9a4}', mapping: Mapped(StringTableSlice { byte_start: 7166, byte_len: 3 }) }, + Range { from: '\u{f9a5}', to: '\u{f9a5}', mapping: Mapped(StringTableSlice { byte_start: 7169, byte_len: 3 }) }, + Range { from: '\u{f9a6}', to: '\u{f9a6}', mapping: Mapped(StringTableSlice { byte_start: 7172, byte_len: 3 }) }, + Range { from: '\u{f9a7}', to: '\u{f9a7}', mapping: Mapped(StringTableSlice { byte_start: 7175, byte_len: 3 }) }, + Range { from: '\u{f9a8}', to: '\u{f9a8}', mapping: Mapped(StringTableSlice { byte_start: 7178, byte_len: 3 }) }, + Range { from: '\u{f9a9}', to: '\u{f9a9}', mapping: Mapped(StringTableSlice { byte_start: 7181, byte_len: 3 }) }, + Range { from: '\u{f9aa}', to: '\u{f9aa}', mapping: Mapped(StringTableSlice { byte_start: 6971, byte_len: 3 }) }, + Range { from: '\u{f9ab}', to: '\u{f9ab}', mapping: Mapped(StringTableSlice { byte_start: 7184, byte_len: 3 }) }, + Range { from: '\u{f9ac}', to: '\u{f9ac}', mapping: Mapped(StringTableSlice { byte_start: 7187, byte_len: 3 }) }, + Range { from: '\u{f9ad}', to: '\u{f9ad}', mapping: Mapped(StringTableSlice { byte_start: 7190, byte_len: 3 }) }, + Range { from: '\u{f9ae}', to: '\u{f9ae}', mapping: Mapped(StringTableSlice { byte_start: 7193, byte_len: 3 }) }, + Range { from: '\u{f9af}', to: '\u{f9af}', mapping: Mapped(StringTableSlice { byte_start: 7196, byte_len: 3 }) }, + Range { from: '\u{f9b0}', to: '\u{f9b0}', mapping: Mapped(StringTableSlice { byte_start: 7199, byte_len: 3 }) }, + Range { from: '\u{f9b1}', to: '\u{f9b1}', mapping: Mapped(StringTableSlice { byte_start: 7202, byte_len: 3 }) }, + Range { from: '\u{f9b2}', to: '\u{f9b2}', mapping: Mapped(StringTableSlice { byte_start: 7205, byte_len: 3 }) }, + Range { from: '\u{f9b3}', to: '\u{f9b3}', mapping: Mapped(StringTableSlice { byte_start: 7208, byte_len: 3 }) }, + Range { from: '\u{f9b4}', to: '\u{f9b4}', mapping: Mapped(StringTableSlice { byte_start: 7211, byte_len: 3 }) }, + Range { from: '\u{f9b5}', to: '\u{f9b5}', mapping: Mapped(StringTableSlice { byte_start: 7214, byte_len: 3 }) }, + Range { from: '\u{f9b6}', to: '\u{f9b6}', mapping: Mapped(StringTableSlice { byte_start: 7217, byte_len: 3 }) }, + Range { from: '\u{f9b7}', to: '\u{f9b7}', mapping: Mapped(StringTableSlice { byte_start: 7220, byte_len: 3 }) }, + Range { from: '\u{f9b8}', to: '\u{f9b8}', mapping: Mapped(StringTableSlice { byte_start: 7223, byte_len: 3 }) }, + Range { from: '\u{f9b9}', to: '\u{f9b9}', mapping: Mapped(StringTableSlice { byte_start: 7226, byte_len: 3 }) }, + Range { from: '\u{f9ba}', to: '\u{f9ba}', mapping: Mapped(StringTableSlice { byte_start: 7229, byte_len: 3 }) }, + Range { from: '\u{f9bb}', to: '\u{f9bb}', mapping: Mapped(StringTableSlice { byte_start: 7232, byte_len: 3 }) }, + Range { from: '\u{f9bc}', to: '\u{f9bc}', mapping: Mapped(StringTableSlice { byte_start: 7235, byte_len: 3 }) }, + Range { from: '\u{f9bd}', to: '\u{f9bd}', mapping: Mapped(StringTableSlice { byte_start: 7238, byte_len: 3 }) }, + Range { from: '\u{f9be}', to: '\u{f9be}', mapping: Mapped(StringTableSlice { byte_start: 7241, byte_len: 3 }) }, + Range { from: '\u{f9bf}', to: '\u{f9bf}', mapping: Mapped(StringTableSlice { byte_start: 6755, byte_len: 3 }) }, + Range { from: '\u{f9c0}', to: '\u{f9c0}', mapping: Mapped(StringTableSlice { byte_start: 7244, byte_len: 3 }) }, + Range { from: '\u{f9c1}', to: '\u{f9c1}', mapping: Mapped(StringTableSlice { byte_start: 7247, byte_len: 3 }) }, + Range { from: '\u{f9c2}', to: '\u{f9c2}', mapping: Mapped(StringTableSlice { byte_start: 7250, byte_len: 3 }) }, + Range { from: '\u{f9c3}', to: '\u{f9c3}', mapping: Mapped(StringTableSlice { byte_start: 7253, byte_len: 3 }) }, + Range { from: '\u{f9c4}', to: '\u{f9c4}', mapping: Mapped(StringTableSlice { byte_start: 3580, byte_len: 3 }) }, + Range { from: '\u{f9c5}', to: '\u{f9c5}', mapping: Mapped(StringTableSlice { byte_start: 7256, byte_len: 3 }) }, + Range { from: '\u{f9c6}', to: '\u{f9c6}', mapping: Mapped(StringTableSlice { byte_start: 7259, byte_len: 3 }) }, + Range { from: '\u{f9c7}', to: '\u{f9c7}', mapping: Mapped(StringTableSlice { byte_start: 7262, byte_len: 3 }) }, + Range { from: '\u{f9c8}', to: '\u{f9c8}', mapping: Mapped(StringTableSlice { byte_start: 7265, byte_len: 3 }) }, + Range { from: '\u{f9c9}', to: '\u{f9c9}', mapping: Mapped(StringTableSlice { byte_start: 7268, byte_len: 3 }) }, + Range { from: '\u{f9ca}', to: '\u{f9ca}', mapping: Mapped(StringTableSlice { byte_start: 7271, byte_len: 3 }) }, + Range { from: '\u{f9cb}', to: '\u{f9cb}', mapping: Mapped(StringTableSlice { byte_start: 7274, byte_len: 3 }) }, + Range { from: '\u{f9cc}', to: '\u{f9cc}', mapping: Mapped(StringTableSlice { byte_start: 7277, byte_len: 3 }) }, + Range { from: '\u{f9cd}', to: '\u{f9cd}', mapping: Mapped(StringTableSlice { byte_start: 7280, byte_len: 3 }) }, + Range { from: '\u{f9ce}', to: '\u{f9ce}', mapping: Mapped(StringTableSlice { byte_start: 7283, byte_len: 3 }) }, + Range { from: '\u{f9cf}', to: '\u{f9cf}', mapping: Mapped(StringTableSlice { byte_start: 7286, byte_len: 3 }) }, + Range { from: '\u{f9d0}', to: '\u{f9d0}', mapping: Mapped(StringTableSlice { byte_start: 7289, byte_len: 3 }) }, + Range { from: '\u{f9d1}', to: '\u{f9d1}', mapping: Mapped(StringTableSlice { byte_start: 4371, byte_len: 3 }) }, + Range { from: '\u{f9d2}', to: '\u{f9d2}', mapping: Mapped(StringTableSlice { byte_start: 7292, byte_len: 3 }) }, + Range { from: '\u{f9d3}', to: '\u{f9d3}', mapping: Mapped(StringTableSlice { byte_start: 7295, byte_len: 3 }) }, + Range { from: '\u{f9d4}', to: '\u{f9d4}', mapping: Mapped(StringTableSlice { byte_start: 7298, byte_len: 3 }) }, + Range { from: '\u{f9d5}', to: '\u{f9d5}', mapping: Mapped(StringTableSlice { byte_start: 7301, byte_len: 3 }) }, + Range { from: '\u{f9d6}', to: '\u{f9d6}', mapping: Mapped(StringTableSlice { byte_start: 7304, byte_len: 3 }) }, + Range { from: '\u{f9d7}', to: '\u{f9d7}', mapping: Mapped(StringTableSlice { byte_start: 7307, byte_len: 3 }) }, + Range { from: '\u{f9d8}', to: '\u{f9d8}', mapping: Mapped(StringTableSlice { byte_start: 7310, byte_len: 3 }) }, + Range { from: '\u{f9d9}', to: '\u{f9d9}', mapping: Mapped(StringTableSlice { byte_start: 7313, byte_len: 3 }) }, + Range { from: '\u{f9da}', to: '\u{f9da}', mapping: Mapped(StringTableSlice { byte_start: 7316, byte_len: 3 }) }, + Range { from: '\u{f9db}', to: '\u{f9db}', mapping: Mapped(StringTableSlice { byte_start: 6977, byte_len: 3 }) }, + Range { from: '\u{f9dc}', to: '\u{f9dc}', mapping: Mapped(StringTableSlice { byte_start: 7319, byte_len: 3 }) }, + Range { from: '\u{f9dd}', to: '\u{f9dd}', mapping: Mapped(StringTableSlice { byte_start: 7322, byte_len: 3 }) }, + Range { from: '\u{f9de}', to: '\u{f9de}', mapping: Mapped(StringTableSlice { byte_start: 7325, byte_len: 3 }) }, + Range { from: '\u{f9df}', to: '\u{f9df}', mapping: Mapped(StringTableSlice { byte_start: 7328, byte_len: 3 }) }, + Range { from: '\u{f9e0}', to: '\u{f9e0}', mapping: Mapped(StringTableSlice { byte_start: 7331, byte_len: 3 }) }, + Range { from: '\u{f9e1}', to: '\u{f9e1}', mapping: Mapped(StringTableSlice { byte_start: 7334, byte_len: 3 }) }, + Range { from: '\u{f9e2}', to: '\u{f9e2}', mapping: Mapped(StringTableSlice { byte_start: 7337, byte_len: 3 }) }, + Range { from: '\u{f9e3}', to: '\u{f9e3}', mapping: Mapped(StringTableSlice { byte_start: 7340, byte_len: 3 }) }, + Range { from: '\u{f9e4}', to: '\u{f9e4}', mapping: Mapped(StringTableSlice { byte_start: 7343, byte_len: 3 }) }, + Range { from: '\u{f9e5}', to: '\u{f9e5}', mapping: Mapped(StringTableSlice { byte_start: 7346, byte_len: 3 }) }, + Range { from: '\u{f9e6}', to: '\u{f9e6}', mapping: Mapped(StringTableSlice { byte_start: 7349, byte_len: 3 }) }, + Range { from: '\u{f9e7}', to: '\u{f9e7}', mapping: Mapped(StringTableSlice { byte_start: 7352, byte_len: 3 }) }, + Range { from: '\u{f9e8}', to: '\u{f9e8}', mapping: Mapped(StringTableSlice { byte_start: 7355, byte_len: 3 }) }, + Range { from: '\u{f9e9}', to: '\u{f9e9}', mapping: Mapped(StringTableSlice { byte_start: 3442, byte_len: 3 }) }, + Range { from: '\u{f9ea}', to: '\u{f9ea}', mapping: Mapped(StringTableSlice { byte_start: 7358, byte_len: 3 }) }, + Range { from: '\u{f9eb}', to: '\u{f9eb}', mapping: Mapped(StringTableSlice { byte_start: 7361, byte_len: 3 }) }, + Range { from: '\u{f9ec}', to: '\u{f9ec}', mapping: Mapped(StringTableSlice { byte_start: 7364, byte_len: 3 }) }, + Range { from: '\u{f9ed}', to: '\u{f9ed}', mapping: Mapped(StringTableSlice { byte_start: 7367, byte_len: 3 }) }, + Range { from: '\u{f9ee}', to: '\u{f9ee}', mapping: Mapped(StringTableSlice { byte_start: 7370, byte_len: 3 }) }, + Range { from: '\u{f9ef}', to: '\u{f9ef}', mapping: Mapped(StringTableSlice { byte_start: 7373, byte_len: 3 }) }, + Range { from: '\u{f9f0}', to: '\u{f9f0}', mapping: Mapped(StringTableSlice { byte_start: 7376, byte_len: 3 }) }, + Range { from: '\u{f9f1}', to: '\u{f9f1}', mapping: Mapped(StringTableSlice { byte_start: 7379, byte_len: 3 }) }, + Range { from: '\u{f9f2}', to: '\u{f9f2}', mapping: Mapped(StringTableSlice { byte_start: 7382, byte_len: 3 }) }, + Range { from: '\u{f9f3}', to: '\u{f9f3}', mapping: Mapped(StringTableSlice { byte_start: 7385, byte_len: 3 }) }, + Range { from: '\u{f9f4}', to: '\u{f9f4}', mapping: Mapped(StringTableSlice { byte_start: 7388, byte_len: 3 }) }, + Range { from: '\u{f9f5}', to: '\u{f9f5}', mapping: Mapped(StringTableSlice { byte_start: 7391, byte_len: 3 }) }, + Range { from: '\u{f9f6}', to: '\u{f9f6}', mapping: Mapped(StringTableSlice { byte_start: 7394, byte_len: 3 }) }, + Range { from: '\u{f9f7}', to: '\u{f9f7}', mapping: Mapped(StringTableSlice { byte_start: 3295, byte_len: 3 }) }, + Range { from: '\u{f9f8}', to: '\u{f9f8}', mapping: Mapped(StringTableSlice { byte_start: 7397, byte_len: 3 }) }, + Range { from: '\u{f9f9}', to: '\u{f9f9}', mapping: Mapped(StringTableSlice { byte_start: 7400, byte_len: 3 }) }, + Range { from: '\u{f9fa}', to: '\u{f9fa}', mapping: Mapped(StringTableSlice { byte_start: 7403, byte_len: 3 }) }, + Range { from: '\u{f9fb}', to: '\u{f9fb}', mapping: Mapped(StringTableSlice { byte_start: 7406, byte_len: 3 }) }, + Range { from: '\u{f9fc}', to: '\u{f9fc}', mapping: Mapped(StringTableSlice { byte_start: 7409, byte_len: 3 }) }, + Range { from: '\u{f9fd}', to: '\u{f9fd}', mapping: Mapped(StringTableSlice { byte_start: 7412, byte_len: 3 }) }, + Range { from: '\u{f9fe}', to: '\u{f9fe}', mapping: Mapped(StringTableSlice { byte_start: 7415, byte_len: 3 }) }, + Range { from: '\u{f9ff}', to: '\u{f9ff}', mapping: Mapped(StringTableSlice { byte_start: 7418, byte_len: 3 }) }, + Range { from: '\u{fa00}', to: '\u{fa00}', mapping: Mapped(StringTableSlice { byte_start: 7421, byte_len: 3 }) }, + Range { from: '\u{fa01}', to: '\u{fa01}', mapping: Mapped(StringTableSlice { byte_start: 7424, byte_len: 3 }) }, + Range { from: '\u{fa02}', to: '\u{fa02}', mapping: Mapped(StringTableSlice { byte_start: 7427, byte_len: 3 }) }, + Range { from: '\u{fa03}', to: '\u{fa03}', mapping: Mapped(StringTableSlice { byte_start: 7430, byte_len: 3 }) }, + Range { from: '\u{fa04}', to: '\u{fa04}', mapping: Mapped(StringTableSlice { byte_start: 7433, byte_len: 3 }) }, + Range { from: '\u{fa05}', to: '\u{fa05}', mapping: Mapped(StringTableSlice { byte_start: 7436, byte_len: 3 }) }, + Range { from: '\u{fa06}', to: '\u{fa06}', mapping: Mapped(StringTableSlice { byte_start: 7439, byte_len: 3 }) }, + Range { from: '\u{fa07}', to: '\u{fa07}', mapping: Mapped(StringTableSlice { byte_start: 7442, byte_len: 3 }) }, + Range { from: '\u{fa08}', to: '\u{fa08}', mapping: Mapped(StringTableSlice { byte_start: 3376, byte_len: 3 }) }, + Range { from: '\u{fa09}', to: '\u{fa09}', mapping: Mapped(StringTableSlice { byte_start: 7445, byte_len: 3 }) }, + Range { from: '\u{fa0a}', to: '\u{fa0a}', mapping: Mapped(StringTableSlice { byte_start: 3385, byte_len: 3 }) }, + Range { from: '\u{fa0b}', to: '\u{fa0b}', mapping: Mapped(StringTableSlice { byte_start: 7448, byte_len: 3 }) }, + Range { from: '\u{fa0c}', to: '\u{fa0c}', mapping: Mapped(StringTableSlice { byte_start: 7451, byte_len: 3 }) }, + Range { from: '\u{fa0d}', to: '\u{fa0d}', mapping: Mapped(StringTableSlice { byte_start: 7454, byte_len: 3 }) }, + Range { from: '\u{fa0e}', to: '\u{fa0f}', mapping: Valid }, + Range { from: '\u{fa10}', to: '\u{fa10}', mapping: Mapped(StringTableSlice { byte_start: 7457, byte_len: 3 }) }, + Range { from: '\u{fa11}', to: '\u{fa11}', mapping: Valid }, + Range { from: '\u{fa12}', to: '\u{fa12}', mapping: Mapped(StringTableSlice { byte_start: 7460, byte_len: 3 }) }, + Range { from: '\u{fa13}', to: '\u{fa14}', mapping: Valid }, + Range { from: '\u{fa15}', to: '\u{fa15}', mapping: Mapped(StringTableSlice { byte_start: 7463, byte_len: 3 }) }, + Range { from: '\u{fa16}', to: '\u{fa16}', mapping: Mapped(StringTableSlice { byte_start: 7466, byte_len: 3 }) }, + Range { from: '\u{fa17}', to: '\u{fa17}', mapping: Mapped(StringTableSlice { byte_start: 7469, byte_len: 3 }) }, + Range { from: '\u{fa18}', to: '\u{fa18}', mapping: Mapped(StringTableSlice { byte_start: 7472, byte_len: 3 }) }, + Range { from: '\u{fa19}', to: '\u{fa19}', mapping: Mapped(StringTableSlice { byte_start: 7475, byte_len: 3 }) }, + Range { from: '\u{fa1a}', to: '\u{fa1a}', mapping: Mapped(StringTableSlice { byte_start: 7478, byte_len: 3 }) }, + Range { from: '\u{fa1b}', to: '\u{fa1b}', mapping: Mapped(StringTableSlice { byte_start: 7481, byte_len: 3 }) }, + Range { from: '\u{fa1c}', to: '\u{fa1c}', mapping: Mapped(StringTableSlice { byte_start: 7484, byte_len: 3 }) }, + Range { from: '\u{fa1d}', to: '\u{fa1d}', mapping: Mapped(StringTableSlice { byte_start: 7487, byte_len: 3 }) }, + Range { from: '\u{fa1e}', to: '\u{fa1e}', mapping: Mapped(StringTableSlice { byte_start: 3316, byte_len: 3 }) }, + Range { from: '\u{fa1f}', to: '\u{fa1f}', mapping: Valid }, + Range { from: '\u{fa20}', to: '\u{fa20}', mapping: Mapped(StringTableSlice { byte_start: 7490, byte_len: 3 }) }, + Range { from: '\u{fa21}', to: '\u{fa21}', mapping: Valid }, + Range { from: '\u{fa22}', to: '\u{fa22}', mapping: Mapped(StringTableSlice { byte_start: 7493, byte_len: 3 }) }, + Range { from: '\u{fa23}', to: '\u{fa24}', mapping: Valid }, + Range { from: '\u{fa25}', to: '\u{fa25}', mapping: Mapped(StringTableSlice { byte_start: 7496, byte_len: 3 }) }, + Range { from: '\u{fa26}', to: '\u{fa26}', mapping: Mapped(StringTableSlice { byte_start: 7499, byte_len: 3 }) }, + Range { from: '\u{fa27}', to: '\u{fa29}', mapping: Valid }, + Range { from: '\u{fa2a}', to: '\u{fa2a}', mapping: Mapped(StringTableSlice { byte_start: 7502, byte_len: 3 }) }, + Range { from: '\u{fa2b}', to: '\u{fa2b}', mapping: Mapped(StringTableSlice { byte_start: 7505, byte_len: 3 }) }, + Range { from: '\u{fa2c}', to: '\u{fa2c}', mapping: Mapped(StringTableSlice { byte_start: 7508, byte_len: 3 }) }, + Range { from: '\u{fa2d}', to: '\u{fa2d}', mapping: Mapped(StringTableSlice { byte_start: 7511, byte_len: 3 }) }, + Range { from: '\u{fa2e}', to: '\u{fa2e}', mapping: Mapped(StringTableSlice { byte_start: 7514, byte_len: 3 }) }, + Range { from: '\u{fa2f}', to: '\u{fa2f}', mapping: Mapped(StringTableSlice { byte_start: 7517, byte_len: 3 }) }, + Range { from: '\u{fa30}', to: '\u{fa30}', mapping: Mapped(StringTableSlice { byte_start: 7520, byte_len: 3 }) }, + Range { from: '\u{fa31}', to: '\u{fa31}', mapping: Mapped(StringTableSlice { byte_start: 7523, byte_len: 3 }) }, + Range { from: '\u{fa32}', to: '\u{fa32}', mapping: Mapped(StringTableSlice { byte_start: 7526, byte_len: 3 }) }, + Range { from: '\u{fa33}', to: '\u{fa33}', mapping: Mapped(StringTableSlice { byte_start: 7529, byte_len: 3 }) }, + Range { from: '\u{fa34}', to: '\u{fa34}', mapping: Mapped(StringTableSlice { byte_start: 7532, byte_len: 3 }) }, + Range { from: '\u{fa35}', to: '\u{fa35}', mapping: Mapped(StringTableSlice { byte_start: 7535, byte_len: 3 }) }, + Range { from: '\u{fa36}', to: '\u{fa36}', mapping: Mapped(StringTableSlice { byte_start: 7538, byte_len: 3 }) }, + Range { from: '\u{fa37}', to: '\u{fa37}', mapping: Mapped(StringTableSlice { byte_start: 7541, byte_len: 3 }) }, + Range { from: '\u{fa38}', to: '\u{fa38}', mapping: Mapped(StringTableSlice { byte_start: 7544, byte_len: 3 }) }, + Range { from: '\u{fa39}', to: '\u{fa39}', mapping: Mapped(StringTableSlice { byte_start: 7547, byte_len: 3 }) }, + Range { from: '\u{fa3a}', to: '\u{fa3a}', mapping: Mapped(StringTableSlice { byte_start: 7550, byte_len: 3 }) }, + Range { from: '\u{fa3b}', to: '\u{fa3b}', mapping: Mapped(StringTableSlice { byte_start: 7553, byte_len: 3 }) }, + Range { from: '\u{fa3c}', to: '\u{fa3c}', mapping: Mapped(StringTableSlice { byte_start: 3079, byte_len: 3 }) }, + Range { from: '\u{fa3d}', to: '\u{fa3d}', mapping: Mapped(StringTableSlice { byte_start: 7556, byte_len: 3 }) }, + Range { from: '\u{fa3e}', to: '\u{fa3e}', mapping: Mapped(StringTableSlice { byte_start: 7559, byte_len: 3 }) }, + Range { from: '\u{fa3f}', to: '\u{fa3f}', mapping: Mapped(StringTableSlice { byte_start: 7562, byte_len: 3 }) }, + Range { from: '\u{fa40}', to: '\u{fa40}', mapping: Mapped(StringTableSlice { byte_start: 7565, byte_len: 3 }) }, + Range { from: '\u{fa41}', to: '\u{fa41}', mapping: Mapped(StringTableSlice { byte_start: 7568, byte_len: 3 }) }, + Range { from: '\u{fa42}', to: '\u{fa42}', mapping: Mapped(StringTableSlice { byte_start: 7571, byte_len: 3 }) }, + Range { from: '\u{fa43}', to: '\u{fa43}', mapping: Mapped(StringTableSlice { byte_start: 7574, byte_len: 3 }) }, + Range { from: '\u{fa44}', to: '\u{fa44}', mapping: Mapped(StringTableSlice { byte_start: 7577, byte_len: 3 }) }, + Range { from: '\u{fa45}', to: '\u{fa45}', mapping: Mapped(StringTableSlice { byte_start: 7580, byte_len: 3 }) }, + Range { from: '\u{fa46}', to: '\u{fa46}', mapping: Mapped(StringTableSlice { byte_start: 7583, byte_len: 3 }) }, + Range { from: '\u{fa47}', to: '\u{fa47}', mapping: Mapped(StringTableSlice { byte_start: 7586, byte_len: 3 }) }, + Range { from: '\u{fa48}', to: '\u{fa48}', mapping: Mapped(StringTableSlice { byte_start: 7589, byte_len: 3 }) }, + Range { from: '\u{fa49}', to: '\u{fa49}', mapping: Mapped(StringTableSlice { byte_start: 7592, byte_len: 3 }) }, + Range { from: '\u{fa4a}', to: '\u{fa4a}', mapping: Mapped(StringTableSlice { byte_start: 7595, byte_len: 3 }) }, + Range { from: '\u{fa4b}', to: '\u{fa4b}', mapping: Mapped(StringTableSlice { byte_start: 7598, byte_len: 3 }) }, + Range { from: '\u{fa4c}', to: '\u{fa4c}', mapping: Mapped(StringTableSlice { byte_start: 4386, byte_len: 3 }) }, + Range { from: '\u{fa4d}', to: '\u{fa4d}', mapping: Mapped(StringTableSlice { byte_start: 7601, byte_len: 3 }) }, + Range { from: '\u{fa4e}', to: '\u{fa4e}', mapping: Mapped(StringTableSlice { byte_start: 7604, byte_len: 3 }) }, + Range { from: '\u{fa4f}', to: '\u{fa4f}', mapping: Mapped(StringTableSlice { byte_start: 7607, byte_len: 3 }) }, + Range { from: '\u{fa50}', to: '\u{fa50}', mapping: Mapped(StringTableSlice { byte_start: 7610, byte_len: 3 }) }, + Range { from: '\u{fa51}', to: '\u{fa51}', mapping: Mapped(StringTableSlice { byte_start: 4398, byte_len: 3 }) }, + Range { from: '\u{fa52}', to: '\u{fa52}', mapping: Mapped(StringTableSlice { byte_start: 7613, byte_len: 3 }) }, + Range { from: '\u{fa53}', to: '\u{fa53}', mapping: Mapped(StringTableSlice { byte_start: 7616, byte_len: 3 }) }, + Range { from: '\u{fa54}', to: '\u{fa54}', mapping: Mapped(StringTableSlice { byte_start: 7619, byte_len: 3 }) }, + Range { from: '\u{fa55}', to: '\u{fa55}', mapping: Mapped(StringTableSlice { byte_start: 7622, byte_len: 3 }) }, + Range { from: '\u{fa56}', to: '\u{fa56}', mapping: Mapped(StringTableSlice { byte_start: 7625, byte_len: 3 }) }, + Range { from: '\u{fa57}', to: '\u{fa57}', mapping: Mapped(StringTableSlice { byte_start: 7127, byte_len: 3 }) }, + Range { from: '\u{fa58}', to: '\u{fa58}', mapping: Mapped(StringTableSlice { byte_start: 7628, byte_len: 3 }) }, + Range { from: '\u{fa59}', to: '\u{fa59}', mapping: Mapped(StringTableSlice { byte_start: 7631, byte_len: 3 }) }, + Range { from: '\u{fa5a}', to: '\u{fa5a}', mapping: Mapped(StringTableSlice { byte_start: 7634, byte_len: 3 }) }, + Range { from: '\u{fa5b}', to: '\u{fa5b}', mapping: Mapped(StringTableSlice { byte_start: 7637, byte_len: 3 }) }, + Range { from: '\u{fa5c}', to: '\u{fa5c}', mapping: Mapped(StringTableSlice { byte_start: 7640, byte_len: 3 }) }, + Range { from: '\u{fa5d}', to: '\u{fa5e}', mapping: Mapped(StringTableSlice { byte_start: 7643, byte_len: 3 }) }, + Range { from: '\u{fa5f}', to: '\u{fa5f}', mapping: Mapped(StringTableSlice { byte_start: 7646, byte_len: 3 }) }, + Range { from: '\u{fa60}', to: '\u{fa60}', mapping: Mapped(StringTableSlice { byte_start: 7649, byte_len: 3 }) }, + Range { from: '\u{fa61}', to: '\u{fa61}', mapping: Mapped(StringTableSlice { byte_start: 7652, byte_len: 3 }) }, + Range { from: '\u{fa62}', to: '\u{fa62}', mapping: Mapped(StringTableSlice { byte_start: 7655, byte_len: 3 }) }, + Range { from: '\u{fa63}', to: '\u{fa63}', mapping: Mapped(StringTableSlice { byte_start: 7658, byte_len: 3 }) }, + Range { from: '\u{fa64}', to: '\u{fa64}', mapping: Mapped(StringTableSlice { byte_start: 7661, byte_len: 3 }) }, + Range { from: '\u{fa65}', to: '\u{fa65}', mapping: Mapped(StringTableSlice { byte_start: 7664, byte_len: 3 }) }, + Range { from: '\u{fa66}', to: '\u{fa66}', mapping: Mapped(StringTableSlice { byte_start: 7667, byte_len: 3 }) }, + Range { from: '\u{fa67}', to: '\u{fa67}', mapping: Mapped(StringTableSlice { byte_start: 7496, byte_len: 3 }) }, + Range { from: '\u{fa68}', to: '\u{fa68}', mapping: Mapped(StringTableSlice { byte_start: 7670, byte_len: 3 }) }, + Range { from: '\u{fa69}', to: '\u{fa69}', mapping: Mapped(StringTableSlice { byte_start: 7673, byte_len: 3 }) }, + Range { from: '\u{fa6a}', to: '\u{fa6a}', mapping: Mapped(StringTableSlice { byte_start: 7676, byte_len: 3 }) }, + Range { from: '\u{fa6b}', to: '\u{fa6b}', mapping: Mapped(StringTableSlice { byte_start: 7679, byte_len: 3 }) }, + Range { from: '\u{fa6c}', to: '\u{fa6c}', mapping: Mapped(StringTableSlice { byte_start: 7682, byte_len: 4 }) }, + Range { from: '\u{fa6d}', to: '\u{fa6d}', mapping: Mapped(StringTableSlice { byte_start: 7686, byte_len: 3 }) }, + Range { from: '\u{fa6e}', to: '\u{fa6f}', mapping: Disallowed }, + Range { from: '\u{fa70}', to: '\u{fa70}', mapping: Mapped(StringTableSlice { byte_start: 7689, byte_len: 3 }) }, + Range { from: '\u{fa71}', to: '\u{fa71}', mapping: Mapped(StringTableSlice { byte_start: 7692, byte_len: 3 }) }, + Range { from: '\u{fa72}', to: '\u{fa72}', mapping: Mapped(StringTableSlice { byte_start: 7695, byte_len: 3 }) }, + Range { from: '\u{fa73}', to: '\u{fa73}', mapping: Mapped(StringTableSlice { byte_start: 7698, byte_len: 3 }) }, + Range { from: '\u{fa74}', to: '\u{fa74}', mapping: Mapped(StringTableSlice { byte_start: 7701, byte_len: 3 }) }, + Range { from: '\u{fa75}', to: '\u{fa75}', mapping: Mapped(StringTableSlice { byte_start: 7704, byte_len: 3 }) }, + Range { from: '\u{fa76}', to: '\u{fa76}', mapping: Mapped(StringTableSlice { byte_start: 7707, byte_len: 3 }) }, + Range { from: '\u{fa77}', to: '\u{fa77}', mapping: Mapped(StringTableSlice { byte_start: 7710, byte_len: 3 }) }, + Range { from: '\u{fa78}', to: '\u{fa78}', mapping: Mapped(StringTableSlice { byte_start: 7538, byte_len: 3 }) }, + Range { from: '\u{fa79}', to: '\u{fa79}', mapping: Mapped(StringTableSlice { byte_start: 7713, byte_len: 3 }) }, + Range { from: '\u{fa7a}', to: '\u{fa7a}', mapping: Mapped(StringTableSlice { byte_start: 7716, byte_len: 3 }) }, + Range { from: '\u{fa7b}', to: '\u{fa7b}', mapping: Mapped(StringTableSlice { byte_start: 7719, byte_len: 3 }) }, + Range { from: '\u{fa7c}', to: '\u{fa7c}', mapping: Mapped(StringTableSlice { byte_start: 7457, byte_len: 3 }) }, + Range { from: '\u{fa7d}', to: '\u{fa7d}', mapping: Mapped(StringTableSlice { byte_start: 7722, byte_len: 3 }) }, + Range { from: '\u{fa7e}', to: '\u{fa7e}', mapping: Mapped(StringTableSlice { byte_start: 7725, byte_len: 3 }) }, + Range { from: '\u{fa7f}', to: '\u{fa7f}', mapping: Mapped(StringTableSlice { byte_start: 7728, byte_len: 3 }) }, + Range { from: '\u{fa80}', to: '\u{fa80}', mapping: Mapped(StringTableSlice { byte_start: 7731, byte_len: 3 }) }, + Range { from: '\u{fa81}', to: '\u{fa81}', mapping: Mapped(StringTableSlice { byte_start: 7734, byte_len: 3 }) }, + Range { from: '\u{fa82}', to: '\u{fa82}', mapping: Mapped(StringTableSlice { byte_start: 7737, byte_len: 3 }) }, + Range { from: '\u{fa83}', to: '\u{fa83}', mapping: Mapped(StringTableSlice { byte_start: 7740, byte_len: 3 }) }, + Range { from: '\u{fa84}', to: '\u{fa84}', mapping: Mapped(StringTableSlice { byte_start: 7743, byte_len: 3 }) }, + Range { from: '\u{fa85}', to: '\u{fa85}', mapping: Mapped(StringTableSlice { byte_start: 7746, byte_len: 3 }) }, + Range { from: '\u{fa86}', to: '\u{fa86}', mapping: Mapped(StringTableSlice { byte_start: 7749, byte_len: 3 }) }, + Range { from: '\u{fa87}', to: '\u{fa87}', mapping: Mapped(StringTableSlice { byte_start: 7752, byte_len: 3 }) }, + Range { from: '\u{fa88}', to: '\u{fa88}', mapping: Mapped(StringTableSlice { byte_start: 7755, byte_len: 3 }) }, + Range { from: '\u{fa89}', to: '\u{fa89}', mapping: Mapped(StringTableSlice { byte_start: 7562, byte_len: 3 }) }, + Range { from: '\u{fa8a}', to: '\u{fa8a}', mapping: Mapped(StringTableSlice { byte_start: 7758, byte_len: 3 }) }, + Range { from: '\u{fa8b}', to: '\u{fa8b}', mapping: Mapped(StringTableSlice { byte_start: 7565, byte_len: 3 }) }, + Range { from: '\u{fa8c}', to: '\u{fa8c}', mapping: Mapped(StringTableSlice { byte_start: 7761, byte_len: 3 }) }, + Range { from: '\u{fa8d}', to: '\u{fa8d}', mapping: Mapped(StringTableSlice { byte_start: 7764, byte_len: 3 }) }, + Range { from: '\u{fa8e}', to: '\u{fa8e}', mapping: Mapped(StringTableSlice { byte_start: 7767, byte_len: 3 }) }, + Range { from: '\u{fa8f}', to: '\u{fa8f}', mapping: Mapped(StringTableSlice { byte_start: 7770, byte_len: 3 }) }, + Range { from: '\u{fa90}', to: '\u{fa90}', mapping: Mapped(StringTableSlice { byte_start: 7773, byte_len: 3 }) }, + Range { from: '\u{fa91}', to: '\u{fa91}', mapping: Mapped(StringTableSlice { byte_start: 7460, byte_len: 3 }) }, + Range { from: '\u{fa92}', to: '\u{fa92}', mapping: Mapped(StringTableSlice { byte_start: 6818, byte_len: 3 }) }, + Range { from: '\u{fa93}', to: '\u{fa93}', mapping: Mapped(StringTableSlice { byte_start: 7776, byte_len: 3 }) }, + Range { from: '\u{fa94}', to: '\u{fa94}', mapping: Mapped(StringTableSlice { byte_start: 7779, byte_len: 3 }) }, + Range { from: '\u{fa95}', to: '\u{fa95}', mapping: Mapped(StringTableSlice { byte_start: 3178, byte_len: 3 }) }, + Range { from: '\u{fa96}', to: '\u{fa96}', mapping: Mapped(StringTableSlice { byte_start: 7022, byte_len: 3 }) }, + Range { from: '\u{fa97}', to: '\u{fa97}', mapping: Mapped(StringTableSlice { byte_start: 7271, byte_len: 3 }) }, + Range { from: '\u{fa98}', to: '\u{fa98}', mapping: Mapped(StringTableSlice { byte_start: 7782, byte_len: 3 }) }, + Range { from: '\u{fa99}', to: '\u{fa99}', mapping: Mapped(StringTableSlice { byte_start: 7785, byte_len: 3 }) }, + Range { from: '\u{fa9a}', to: '\u{fa9a}', mapping: Mapped(StringTableSlice { byte_start: 7586, byte_len: 3 }) }, + Range { from: '\u{fa9b}', to: '\u{fa9b}', mapping: Mapped(StringTableSlice { byte_start: 7788, byte_len: 3 }) }, + Range { from: '\u{fa9c}', to: '\u{fa9c}', mapping: Mapped(StringTableSlice { byte_start: 7589, byte_len: 3 }) }, + Range { from: '\u{fa9d}', to: '\u{fa9d}', mapping: Mapped(StringTableSlice { byte_start: 7791, byte_len: 3 }) }, + Range { from: '\u{fa9e}', to: '\u{fa9e}', mapping: Mapped(StringTableSlice { byte_start: 7794, byte_len: 3 }) }, + Range { from: '\u{fa9f}', to: '\u{fa9f}', mapping: Mapped(StringTableSlice { byte_start: 7797, byte_len: 3 }) }, + Range { from: '\u{faa0}', to: '\u{faa0}', mapping: Mapped(StringTableSlice { byte_start: 7466, byte_len: 3 }) }, + Range { from: '\u{faa1}', to: '\u{faa1}', mapping: Mapped(StringTableSlice { byte_start: 7800, byte_len: 3 }) }, + Range { from: '\u{faa2}', to: '\u{faa2}', mapping: Mapped(StringTableSlice { byte_start: 7803, byte_len: 3 }) }, + Range { from: '\u{faa3}', to: '\u{faa3}', mapping: Mapped(StringTableSlice { byte_start: 7806, byte_len: 3 }) }, + Range { from: '\u{faa4}', to: '\u{faa4}', mapping: Mapped(StringTableSlice { byte_start: 7809, byte_len: 3 }) }, + Range { from: '\u{faa5}', to: '\u{faa5}', mapping: Mapped(StringTableSlice { byte_start: 7812, byte_len: 3 }) }, + Range { from: '\u{faa6}', to: '\u{faa6}', mapping: Mapped(StringTableSlice { byte_start: 7469, byte_len: 3 }) }, + Range { from: '\u{faa7}', to: '\u{faa7}', mapping: Mapped(StringTableSlice { byte_start: 7815, byte_len: 3 }) }, + Range { from: '\u{faa8}', to: '\u{faa8}', mapping: Mapped(StringTableSlice { byte_start: 7818, byte_len: 3 }) }, + Range { from: '\u{faa9}', to: '\u{faa9}', mapping: Mapped(StringTableSlice { byte_start: 7821, byte_len: 3 }) }, + Range { from: '\u{faaa}', to: '\u{faaa}', mapping: Mapped(StringTableSlice { byte_start: 7824, byte_len: 3 }) }, + Range { from: '\u{faab}', to: '\u{faab}', mapping: Mapped(StringTableSlice { byte_start: 7827, byte_len: 3 }) }, + Range { from: '\u{faac}', to: '\u{faac}', mapping: Mapped(StringTableSlice { byte_start: 7830, byte_len: 3 }) }, + Range { from: '\u{faad}', to: '\u{faad}', mapping: Mapped(StringTableSlice { byte_start: 7625, byte_len: 3 }) }, + Range { from: '\u{faae}', to: '\u{faae}', mapping: Mapped(StringTableSlice { byte_start: 7833, byte_len: 3 }) }, + Range { from: '\u{faaf}', to: '\u{faaf}', mapping: Mapped(StringTableSlice { byte_start: 7836, byte_len: 3 }) }, + Range { from: '\u{fab0}', to: '\u{fab0}', mapping: Mapped(StringTableSlice { byte_start: 7127, byte_len: 3 }) }, + Range { from: '\u{fab1}', to: '\u{fab1}', mapping: Mapped(StringTableSlice { byte_start: 7839, byte_len: 3 }) }, + Range { from: '\u{fab2}', to: '\u{fab2}', mapping: Mapped(StringTableSlice { byte_start: 7637, byte_len: 3 }) }, + Range { from: '\u{fab3}', to: '\u{fab3}', mapping: Mapped(StringTableSlice { byte_start: 7842, byte_len: 3 }) }, + Range { from: '\u{fab4}', to: '\u{fab4}', mapping: Mapped(StringTableSlice { byte_start: 7845, byte_len: 3 }) }, + Range { from: '\u{fab5}', to: '\u{fab5}', mapping: Mapped(StringTableSlice { byte_start: 7848, byte_len: 3 }) }, + Range { from: '\u{fab6}', to: '\u{fab6}', mapping: Mapped(StringTableSlice { byte_start: 7851, byte_len: 3 }) }, + Range { from: '\u{fab7}', to: '\u{fab7}', mapping: Mapped(StringTableSlice { byte_start: 7854, byte_len: 3 }) }, + Range { from: '\u{fab8}', to: '\u{fab8}', mapping: Mapped(StringTableSlice { byte_start: 7652, byte_len: 3 }) }, + Range { from: '\u{fab9}', to: '\u{fab9}', mapping: Mapped(StringTableSlice { byte_start: 7857, byte_len: 3 }) }, + Range { from: '\u{faba}', to: '\u{faba}', mapping: Mapped(StringTableSlice { byte_start: 7493, byte_len: 3 }) }, + Range { from: '\u{fabb}', to: '\u{fabb}', mapping: Mapped(StringTableSlice { byte_start: 7860, byte_len: 3 }) }, + Range { from: '\u{fabc}', to: '\u{fabc}', mapping: Mapped(StringTableSlice { byte_start: 7655, byte_len: 3 }) }, + Range { from: '\u{fabd}', to: '\u{fabd}', mapping: Mapped(StringTableSlice { byte_start: 6965, byte_len: 3 }) }, + Range { from: '\u{fabe}', to: '\u{fabe}', mapping: Mapped(StringTableSlice { byte_start: 7863, byte_len: 3 }) }, + Range { from: '\u{fabf}', to: '\u{fabf}', mapping: Mapped(StringTableSlice { byte_start: 7658, byte_len: 3 }) }, + Range { from: '\u{fac0}', to: '\u{fac0}', mapping: Mapped(StringTableSlice { byte_start: 7866, byte_len: 3 }) }, + Range { from: '\u{fac1}', to: '\u{fac1}', mapping: Mapped(StringTableSlice { byte_start: 7664, byte_len: 3 }) }, + Range { from: '\u{fac2}', to: '\u{fac2}', mapping: Mapped(StringTableSlice { byte_start: 7869, byte_len: 3 }) }, + Range { from: '\u{fac3}', to: '\u{fac3}', mapping: Mapped(StringTableSlice { byte_start: 7872, byte_len: 3 }) }, + Range { from: '\u{fac4}', to: '\u{fac4}', mapping: Mapped(StringTableSlice { byte_start: 7875, byte_len: 3 }) }, + Range { from: '\u{fac5}', to: '\u{fac5}', mapping: Mapped(StringTableSlice { byte_start: 7878, byte_len: 3 }) }, + Range { from: '\u{fac6}', to: '\u{fac6}', mapping: Mapped(StringTableSlice { byte_start: 7881, byte_len: 3 }) }, + Range { from: '\u{fac7}', to: '\u{fac7}', mapping: Mapped(StringTableSlice { byte_start: 7670, byte_len: 3 }) }, + Range { from: '\u{fac8}', to: '\u{fac8}', mapping: Mapped(StringTableSlice { byte_start: 7484, byte_len: 3 }) }, + Range { from: '\u{fac9}', to: '\u{fac9}', mapping: Mapped(StringTableSlice { byte_start: 7884, byte_len: 3 }) }, + Range { from: '\u{faca}', to: '\u{faca}', mapping: Mapped(StringTableSlice { byte_start: 7673, byte_len: 3 }) }, + Range { from: '\u{facb}', to: '\u{facb}', mapping: Mapped(StringTableSlice { byte_start: 7887, byte_len: 3 }) }, + Range { from: '\u{facc}', to: '\u{facc}', mapping: Mapped(StringTableSlice { byte_start: 7676, byte_len: 3 }) }, + Range { from: '\u{facd}', to: '\u{facd}', mapping: Mapped(StringTableSlice { byte_start: 7890, byte_len: 3 }) }, + Range { from: '\u{face}', to: '\u{face}', mapping: Mapped(StringTableSlice { byte_start: 3583, byte_len: 3 }) }, + Range { from: '\u{facf}', to: '\u{facf}', mapping: Mapped(StringTableSlice { byte_start: 7893, byte_len: 4 }) }, + Range { from: '\u{fad0}', to: '\u{fad0}', mapping: Mapped(StringTableSlice { byte_start: 7897, byte_len: 4 }) }, + Range { from: '\u{fad1}', to: '\u{fad1}', mapping: Mapped(StringTableSlice { byte_start: 7901, byte_len: 4 }) }, + Range { from: '\u{fad2}', to: '\u{fad2}', mapping: Mapped(StringTableSlice { byte_start: 7905, byte_len: 3 }) }, + Range { from: '\u{fad3}', to: '\u{fad3}', mapping: Mapped(StringTableSlice { byte_start: 7908, byte_len: 3 }) }, + Range { from: '\u{fad4}', to: '\u{fad4}', mapping: Mapped(StringTableSlice { byte_start: 7911, byte_len: 3 }) }, + Range { from: '\u{fad5}', to: '\u{fad5}', mapping: Mapped(StringTableSlice { byte_start: 7914, byte_len: 4 }) }, + Range { from: '\u{fad6}', to: '\u{fad6}', mapping: Mapped(StringTableSlice { byte_start: 7918, byte_len: 4 }) }, + Range { from: '\u{fad7}', to: '\u{fad7}', mapping: Mapped(StringTableSlice { byte_start: 7922, byte_len: 4 }) }, + Range { from: '\u{fad8}', to: '\u{fad8}', mapping: Mapped(StringTableSlice { byte_start: 7926, byte_len: 3 }) }, + Range { from: '\u{fad9}', to: '\u{fad9}', mapping: Mapped(StringTableSlice { byte_start: 7929, byte_len: 3 }) }, + Range { from: '\u{fada}', to: '\u{faff}', mapping: Disallowed }, + Range { from: '\u{fb00}', to: '\u{fb00}', mapping: Mapped(StringTableSlice { byte_start: 7932, byte_len: 2 }) }, + Range { from: '\u{fb01}', to: '\u{fb01}', mapping: Mapped(StringTableSlice { byte_start: 7934, byte_len: 2 }) }, + Range { from: '\u{fb02}', to: '\u{fb02}', mapping: Mapped(StringTableSlice { byte_start: 7936, byte_len: 2 }) }, + Range { from: '\u{fb03}', to: '\u{fb03}', mapping: Mapped(StringTableSlice { byte_start: 7938, byte_len: 3 }) }, + Range { from: '\u{fb04}', to: '\u{fb04}', mapping: Mapped(StringTableSlice { byte_start: 7941, byte_len: 3 }) }, + Range { from: '\u{fb05}', to: '\u{fb06}', mapping: Mapped(StringTableSlice { byte_start: 7944, byte_len: 2 }) }, + Range { from: '\u{fb07}', to: '\u{fb12}', mapping: Disallowed }, + Range { from: '\u{fb13}', to: '\u{fb13}', mapping: Mapped(StringTableSlice { byte_start: 7946, byte_len: 4 }) }, + Range { from: '\u{fb14}', to: '\u{fb14}', mapping: Mapped(StringTableSlice { byte_start: 7950, byte_len: 4 }) }, + Range { from: '\u{fb15}', to: '\u{fb15}', mapping: Mapped(StringTableSlice { byte_start: 7954, byte_len: 4 }) }, + Range { from: '\u{fb16}', to: '\u{fb16}', mapping: Mapped(StringTableSlice { byte_start: 7958, byte_len: 4 }) }, + Range { from: '\u{fb17}', to: '\u{fb17}', mapping: Mapped(StringTableSlice { byte_start: 7962, byte_len: 4 }) }, + Range { from: '\u{fb18}', to: '\u{fb1c}', mapping: Disallowed }, + Range { from: '\u{fb1d}', to: '\u{fb1d}', mapping: Mapped(StringTableSlice { byte_start: 7966, byte_len: 4 }) }, + Range { from: '\u{fb1e}', to: '\u{fb1e}', mapping: Valid }, + Range { from: '\u{fb1f}', to: '\u{fb1f}', mapping: Mapped(StringTableSlice { byte_start: 7970, byte_len: 4 }) }, + Range { from: '\u{fb20}', to: '\u{fb20}', mapping: Mapped(StringTableSlice { byte_start: 7974, byte_len: 2 }) }, + Range { from: '\u{fb21}', to: '\u{fb21}', mapping: Mapped(StringTableSlice { byte_start: 2255, byte_len: 2 }) }, + Range { from: '\u{fb22}', to: '\u{fb22}', mapping: Mapped(StringTableSlice { byte_start: 2261, byte_len: 2 }) }, + Range { from: '\u{fb23}', to: '\u{fb23}', mapping: Mapped(StringTableSlice { byte_start: 7976, byte_len: 2 }) }, + Range { from: '\u{fb24}', to: '\u{fb24}', mapping: Mapped(StringTableSlice { byte_start: 7978, byte_len: 2 }) }, + Range { from: '\u{fb25}', to: '\u{fb25}', mapping: Mapped(StringTableSlice { byte_start: 7980, byte_len: 2 }) }, + Range { from: '\u{fb26}', to: '\u{fb26}', mapping: Mapped(StringTableSlice { byte_start: 7982, byte_len: 2 }) }, + Range { from: '\u{fb27}', to: '\u{fb27}', mapping: Mapped(StringTableSlice { byte_start: 7984, byte_len: 2 }) }, + Range { from: '\u{fb28}', to: '\u{fb28}', mapping: Mapped(StringTableSlice { byte_start: 7986, byte_len: 2 }) }, + Range { from: '\u{fb29}', to: '\u{fb29}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2219, byte_len: 1 }) }, + Range { from: '\u{fb2a}', to: '\u{fb2a}', mapping: Mapped(StringTableSlice { byte_start: 7988, byte_len: 4 }) }, + Range { from: '\u{fb2b}', to: '\u{fb2b}', mapping: Mapped(StringTableSlice { byte_start: 7992, byte_len: 4 }) }, + Range { from: '\u{fb2c}', to: '\u{fb2c}', mapping: Mapped(StringTableSlice { byte_start: 7996, byte_len: 6 }) }, + Range { from: '\u{fb2d}', to: '\u{fb2d}', mapping: Mapped(StringTableSlice { byte_start: 8002, byte_len: 6 }) }, + Range { from: '\u{fb2e}', to: '\u{fb2e}', mapping: Mapped(StringTableSlice { byte_start: 8008, byte_len: 4 }) }, + Range { from: '\u{fb2f}', to: '\u{fb2f}', mapping: Mapped(StringTableSlice { byte_start: 8012, byte_len: 4 }) }, + Range { from: '\u{fb30}', to: '\u{fb30}', mapping: Mapped(StringTableSlice { byte_start: 8016, byte_len: 4 }) }, + Range { from: '\u{fb31}', to: '\u{fb31}', mapping: Mapped(StringTableSlice { byte_start: 8020, byte_len: 4 }) }, + Range { from: '\u{fb32}', to: '\u{fb32}', mapping: Mapped(StringTableSlice { byte_start: 8024, byte_len: 4 }) }, + Range { from: '\u{fb33}', to: '\u{fb33}', mapping: Mapped(StringTableSlice { byte_start: 8028, byte_len: 4 }) }, + Range { from: '\u{fb34}', to: '\u{fb34}', mapping: Mapped(StringTableSlice { byte_start: 8032, byte_len: 4 }) }, + Range { from: '\u{fb35}', to: '\u{fb35}', mapping: Mapped(StringTableSlice { byte_start: 8036, byte_len: 4 }) }, + Range { from: '\u{fb36}', to: '\u{fb36}', mapping: Mapped(StringTableSlice { byte_start: 8040, byte_len: 4 }) }, + Range { from: '\u{fb37}', to: '\u{fb37}', mapping: Disallowed }, + Range { from: '\u{fb38}', to: '\u{fb38}', mapping: Mapped(StringTableSlice { byte_start: 8044, byte_len: 4 }) }, + Range { from: '\u{fb39}', to: '\u{fb39}', mapping: Mapped(StringTableSlice { byte_start: 8048, byte_len: 4 }) }, + Range { from: '\u{fb3a}', to: '\u{fb3a}', mapping: Mapped(StringTableSlice { byte_start: 8052, byte_len: 4 }) }, + Range { from: '\u{fb3b}', to: '\u{fb3b}', mapping: Mapped(StringTableSlice { byte_start: 8056, byte_len: 4 }) }, + Range { from: '\u{fb3c}', to: '\u{fb3c}', mapping: Mapped(StringTableSlice { byte_start: 8060, byte_len: 4 }) }, + Range { from: '\u{fb3d}', to: '\u{fb3d}', mapping: Disallowed }, + Range { from: '\u{fb3e}', to: '\u{fb3e}', mapping: Mapped(StringTableSlice { byte_start: 8064, byte_len: 4 }) }, + Range { from: '\u{fb3f}', to: '\u{fb3f}', mapping: Disallowed }, + Range { from: '\u{fb40}', to: '\u{fb40}', mapping: Mapped(StringTableSlice { byte_start: 8068, byte_len: 4 }) }, + Range { from: '\u{fb41}', to: '\u{fb41}', mapping: Mapped(StringTableSlice { byte_start: 8072, byte_len: 4 }) }, + Range { from: '\u{fb42}', to: '\u{fb42}', mapping: Disallowed }, + Range { from: '\u{fb43}', to: '\u{fb43}', mapping: Mapped(StringTableSlice { byte_start: 8076, byte_len: 4 }) }, + Range { from: '\u{fb44}', to: '\u{fb44}', mapping: Mapped(StringTableSlice { byte_start: 8080, byte_len: 4 }) }, + Range { from: '\u{fb45}', to: '\u{fb45}', mapping: Disallowed }, + Range { from: '\u{fb46}', to: '\u{fb46}', mapping: Mapped(StringTableSlice { byte_start: 8084, byte_len: 4 }) }, + Range { from: '\u{fb47}', to: '\u{fb47}', mapping: Mapped(StringTableSlice { byte_start: 8088, byte_len: 4 }) }, + Range { from: '\u{fb48}', to: '\u{fb48}', mapping: Mapped(StringTableSlice { byte_start: 8092, byte_len: 4 }) }, + Range { from: '\u{fb49}', to: '\u{fb49}', mapping: Mapped(StringTableSlice { byte_start: 8096, byte_len: 4 }) }, + Range { from: '\u{fb4a}', to: '\u{fb4a}', mapping: Mapped(StringTableSlice { byte_start: 8100, byte_len: 4 }) }, + Range { from: '\u{fb4b}', to: '\u{fb4b}', mapping: Mapped(StringTableSlice { byte_start: 8104, byte_len: 4 }) }, + Range { from: '\u{fb4c}', to: '\u{fb4c}', mapping: Mapped(StringTableSlice { byte_start: 8108, byte_len: 4 }) }, + Range { from: '\u{fb4d}', to: '\u{fb4d}', mapping: Mapped(StringTableSlice { byte_start: 8112, byte_len: 4 }) }, + Range { from: '\u{fb4e}', to: '\u{fb4e}', mapping: Mapped(StringTableSlice { byte_start: 8116, byte_len: 4 }) }, + Range { from: '\u{fb4f}', to: '\u{fb4f}', mapping: Mapped(StringTableSlice { byte_start: 8120, byte_len: 4 }) }, + Range { from: '\u{fb50}', to: '\u{fb51}', mapping: Mapped(StringTableSlice { byte_start: 8124, byte_len: 2 }) }, + Range { from: '\u{fb52}', to: '\u{fb55}', mapping: Mapped(StringTableSlice { byte_start: 8126, byte_len: 2 }) }, + Range { from: '\u{fb56}', to: '\u{fb59}', mapping: Mapped(StringTableSlice { byte_start: 8128, byte_len: 2 }) }, + Range { from: '\u{fb5a}', to: '\u{fb5d}', mapping: Mapped(StringTableSlice { byte_start: 8130, byte_len: 2 }) }, + Range { from: '\u{fb5e}', to: '\u{fb61}', mapping: Mapped(StringTableSlice { byte_start: 8132, byte_len: 2 }) }, + Range { from: '\u{fb62}', to: '\u{fb65}', mapping: Mapped(StringTableSlice { byte_start: 8134, byte_len: 2 }) }, + Range { from: '\u{fb66}', to: '\u{fb69}', mapping: Mapped(StringTableSlice { byte_start: 8136, byte_len: 2 }) }, + Range { from: '\u{fb6a}', to: '\u{fb6d}', mapping: Mapped(StringTableSlice { byte_start: 8138, byte_len: 2 }) }, + Range { from: '\u{fb6e}', to: '\u{fb71}', mapping: Mapped(StringTableSlice { byte_start: 8140, byte_len: 2 }) }, + Range { from: '\u{fb72}', to: '\u{fb75}', mapping: Mapped(StringTableSlice { byte_start: 8142, byte_len: 2 }) }, + Range { from: '\u{fb76}', to: '\u{fb79}', mapping: Mapped(StringTableSlice { byte_start: 8144, byte_len: 2 }) }, + Range { from: '\u{fb7a}', to: '\u{fb7d}', mapping: Mapped(StringTableSlice { byte_start: 8146, byte_len: 2 }) }, + Range { from: '\u{fb7e}', to: '\u{fb81}', mapping: Mapped(StringTableSlice { byte_start: 8148, byte_len: 2 }) }, + Range { from: '\u{fb82}', to: '\u{fb83}', mapping: Mapped(StringTableSlice { byte_start: 8150, byte_len: 2 }) }, + Range { from: '\u{fb84}', to: '\u{fb85}', mapping: Mapped(StringTableSlice { byte_start: 8152, byte_len: 2 }) }, + Range { from: '\u{fb86}', to: '\u{fb87}', mapping: Mapped(StringTableSlice { byte_start: 8154, byte_len: 2 }) }, + Range { from: '\u{fb88}', to: '\u{fb89}', mapping: Mapped(StringTableSlice { byte_start: 8156, byte_len: 2 }) }, + Range { from: '\u{fb8a}', to: '\u{fb8b}', mapping: Mapped(StringTableSlice { byte_start: 8158, byte_len: 2 }) }, + Range { from: '\u{fb8c}', to: '\u{fb8d}', mapping: Mapped(StringTableSlice { byte_start: 8160, byte_len: 2 }) }, + Range { from: '\u{fb8e}', to: '\u{fb91}', mapping: Mapped(StringTableSlice { byte_start: 8162, byte_len: 2 }) }, + Range { from: '\u{fb92}', to: '\u{fb95}', mapping: Mapped(StringTableSlice { byte_start: 8164, byte_len: 2 }) }, + Range { from: '\u{fb96}', to: '\u{fb99}', mapping: Mapped(StringTableSlice { byte_start: 8166, byte_len: 2 }) }, + Range { from: '\u{fb9a}', to: '\u{fb9d}', mapping: Mapped(StringTableSlice { byte_start: 8168, byte_len: 2 }) }, + Range { from: '\u{fb9e}', to: '\u{fb9f}', mapping: Mapped(StringTableSlice { byte_start: 8170, byte_len: 2 }) }, + Range { from: '\u{fba0}', to: '\u{fba3}', mapping: Mapped(StringTableSlice { byte_start: 8172, byte_len: 2 }) }, + Range { from: '\u{fba4}', to: '\u{fba5}', mapping: Mapped(StringTableSlice { byte_start: 8174, byte_len: 2 }) }, + Range { from: '\u{fba6}', to: '\u{fba9}', mapping: Mapped(StringTableSlice { byte_start: 8176, byte_len: 2 }) }, + Range { from: '\u{fbaa}', to: '\u{fbad}', mapping: Mapped(StringTableSlice { byte_start: 8178, byte_len: 2 }) }, + Range { from: '\u{fbae}', to: '\u{fbaf}', mapping: Mapped(StringTableSlice { byte_start: 8180, byte_len: 2 }) }, + Range { from: '\u{fbb0}', to: '\u{fbb1}', mapping: Mapped(StringTableSlice { byte_start: 8182, byte_len: 2 }) }, + Range { from: '\u{fbb2}', to: '\u{fbc1}', mapping: Valid }, + Range { from: '\u{fbc2}', to: '\u{fbd2}', mapping: Disallowed }, + Range { from: '\u{fbd3}', to: '\u{fbd6}', mapping: Mapped(StringTableSlice { byte_start: 8184, byte_len: 2 }) }, + Range { from: '\u{fbd7}', to: '\u{fbd8}', mapping: Mapped(StringTableSlice { byte_start: 8186, byte_len: 2 }) }, + Range { from: '\u{fbd9}', to: '\u{fbda}', mapping: Mapped(StringTableSlice { byte_start: 8188, byte_len: 2 }) }, + Range { from: '\u{fbdb}', to: '\u{fbdc}', mapping: Mapped(StringTableSlice { byte_start: 8190, byte_len: 2 }) }, + Range { from: '\u{fbdd}', to: '\u{fbdd}', mapping: Mapped(StringTableSlice { byte_start: 1002, byte_len: 4 }) }, + Range { from: '\u{fbde}', to: '\u{fbdf}', mapping: Mapped(StringTableSlice { byte_start: 8192, byte_len: 2 }) }, + Range { from: '\u{fbe0}', to: '\u{fbe1}', mapping: Mapped(StringTableSlice { byte_start: 8194, byte_len: 2 }) }, + Range { from: '\u{fbe2}', to: '\u{fbe3}', mapping: Mapped(StringTableSlice { byte_start: 8196, byte_len: 2 }) }, + Range { from: '\u{fbe4}', to: '\u{fbe7}', mapping: Mapped(StringTableSlice { byte_start: 8198, byte_len: 2 }) }, + Range { from: '\u{fbe8}', to: '\u{fbe9}', mapping: Mapped(StringTableSlice { byte_start: 8200, byte_len: 2 }) }, + Range { from: '\u{fbea}', to: '\u{fbeb}', mapping: Mapped(StringTableSlice { byte_start: 8202, byte_len: 4 }) }, + Range { from: '\u{fbec}', to: '\u{fbed}', mapping: Mapped(StringTableSlice { byte_start: 8206, byte_len: 4 }) }, + Range { from: '\u{fbee}', to: '\u{fbef}', mapping: Mapped(StringTableSlice { byte_start: 8210, byte_len: 4 }) }, + Range { from: '\u{fbf0}', to: '\u{fbf1}', mapping: Mapped(StringTableSlice { byte_start: 8214, byte_len: 4 }) }, + Range { from: '\u{fbf2}', to: '\u{fbf3}', mapping: Mapped(StringTableSlice { byte_start: 8218, byte_len: 4 }) }, + Range { from: '\u{fbf4}', to: '\u{fbf5}', mapping: Mapped(StringTableSlice { byte_start: 8222, byte_len: 4 }) }, + Range { from: '\u{fbf6}', to: '\u{fbf8}', mapping: Mapped(StringTableSlice { byte_start: 8226, byte_len: 4 }) }, + Range { from: '\u{fbf9}', to: '\u{fbfb}', mapping: Mapped(StringTableSlice { byte_start: 8230, byte_len: 4 }) }, + Range { from: '\u{fbfc}', to: '\u{fbff}', mapping: Mapped(StringTableSlice { byte_start: 8234, byte_len: 2 }) }, + Range { from: '\u{fc00}', to: '\u{fc00}', mapping: Mapped(StringTableSlice { byte_start: 8236, byte_len: 4 }) }, + Range { from: '\u{fc01}', to: '\u{fc01}', mapping: Mapped(StringTableSlice { byte_start: 8240, byte_len: 4 }) }, + Range { from: '\u{fc02}', to: '\u{fc02}', mapping: Mapped(StringTableSlice { byte_start: 8244, byte_len: 4 }) }, + Range { from: '\u{fc03}', to: '\u{fc03}', mapping: Mapped(StringTableSlice { byte_start: 8230, byte_len: 4 }) }, + Range { from: '\u{fc04}', to: '\u{fc04}', mapping: Mapped(StringTableSlice { byte_start: 8248, byte_len: 4 }) }, + Range { from: '\u{fc05}', to: '\u{fc05}', mapping: Mapped(StringTableSlice { byte_start: 8252, byte_len: 4 }) }, + Range { from: '\u{fc06}', to: '\u{fc06}', mapping: Mapped(StringTableSlice { byte_start: 8256, byte_len: 4 }) }, + Range { from: '\u{fc07}', to: '\u{fc07}', mapping: Mapped(StringTableSlice { byte_start: 8260, byte_len: 4 }) }, + Range { from: '\u{fc08}', to: '\u{fc08}', mapping: Mapped(StringTableSlice { byte_start: 8264, byte_len: 4 }) }, + Range { from: '\u{fc09}', to: '\u{fc09}', mapping: Mapped(StringTableSlice { byte_start: 8268, byte_len: 4 }) }, + Range { from: '\u{fc0a}', to: '\u{fc0a}', mapping: Mapped(StringTableSlice { byte_start: 8272, byte_len: 4 }) }, + Range { from: '\u{fc0b}', to: '\u{fc0b}', mapping: Mapped(StringTableSlice { byte_start: 8276, byte_len: 4 }) }, + Range { from: '\u{fc0c}', to: '\u{fc0c}', mapping: Mapped(StringTableSlice { byte_start: 8280, byte_len: 4 }) }, + Range { from: '\u{fc0d}', to: '\u{fc0d}', mapping: Mapped(StringTableSlice { byte_start: 8284, byte_len: 4 }) }, + Range { from: '\u{fc0e}', to: '\u{fc0e}', mapping: Mapped(StringTableSlice { byte_start: 8288, byte_len: 4 }) }, + Range { from: '\u{fc0f}', to: '\u{fc0f}', mapping: Mapped(StringTableSlice { byte_start: 8292, byte_len: 4 }) }, + Range { from: '\u{fc10}', to: '\u{fc10}', mapping: Mapped(StringTableSlice { byte_start: 8296, byte_len: 4 }) }, + Range { from: '\u{fc11}', to: '\u{fc11}', mapping: Mapped(StringTableSlice { byte_start: 8300, byte_len: 4 }) }, + Range { from: '\u{fc12}', to: '\u{fc12}', mapping: Mapped(StringTableSlice { byte_start: 8304, byte_len: 4 }) }, + Range { from: '\u{fc13}', to: '\u{fc13}', mapping: Mapped(StringTableSlice { byte_start: 8308, byte_len: 4 }) }, + Range { from: '\u{fc14}', to: '\u{fc14}', mapping: Mapped(StringTableSlice { byte_start: 8312, byte_len: 4 }) }, + Range { from: '\u{fc15}', to: '\u{fc15}', mapping: Mapped(StringTableSlice { byte_start: 8316, byte_len: 4 }) }, + Range { from: '\u{fc16}', to: '\u{fc16}', mapping: Mapped(StringTableSlice { byte_start: 8320, byte_len: 4 }) }, + Range { from: '\u{fc17}', to: '\u{fc17}', mapping: Mapped(StringTableSlice { byte_start: 8324, byte_len: 4 }) }, + Range { from: '\u{fc18}', to: '\u{fc18}', mapping: Mapped(StringTableSlice { byte_start: 8328, byte_len: 4 }) }, + Range { from: '\u{fc19}', to: '\u{fc19}', mapping: Mapped(StringTableSlice { byte_start: 8332, byte_len: 4 }) }, + Range { from: '\u{fc1a}', to: '\u{fc1a}', mapping: Mapped(StringTableSlice { byte_start: 8336, byte_len: 4 }) }, + Range { from: '\u{fc1b}', to: '\u{fc1b}', mapping: Mapped(StringTableSlice { byte_start: 8340, byte_len: 4 }) }, + Range { from: '\u{fc1c}', to: '\u{fc1c}', mapping: Mapped(StringTableSlice { byte_start: 8344, byte_len: 4 }) }, + Range { from: '\u{fc1d}', to: '\u{fc1d}', mapping: Mapped(StringTableSlice { byte_start: 8348, byte_len: 4 }) }, + Range { from: '\u{fc1e}', to: '\u{fc1e}', mapping: Mapped(StringTableSlice { byte_start: 8352, byte_len: 4 }) }, + Range { from: '\u{fc1f}', to: '\u{fc1f}', mapping: Mapped(StringTableSlice { byte_start: 8356, byte_len: 4 }) }, + Range { from: '\u{fc20}', to: '\u{fc20}', mapping: Mapped(StringTableSlice { byte_start: 8360, byte_len: 4 }) }, + Range { from: '\u{fc21}', to: '\u{fc21}', mapping: Mapped(StringTableSlice { byte_start: 8364, byte_len: 4 }) }, + Range { from: '\u{fc22}', to: '\u{fc22}', mapping: Mapped(StringTableSlice { byte_start: 8368, byte_len: 4 }) }, + Range { from: '\u{fc23}', to: '\u{fc23}', mapping: Mapped(StringTableSlice { byte_start: 8372, byte_len: 4 }) }, + Range { from: '\u{fc24}', to: '\u{fc24}', mapping: Mapped(StringTableSlice { byte_start: 8376, byte_len: 4 }) }, + Range { from: '\u{fc25}', to: '\u{fc25}', mapping: Mapped(StringTableSlice { byte_start: 8380, byte_len: 4 }) }, + Range { from: '\u{fc26}', to: '\u{fc26}', mapping: Mapped(StringTableSlice { byte_start: 8384, byte_len: 4 }) }, + Range { from: '\u{fc27}', to: '\u{fc27}', mapping: Mapped(StringTableSlice { byte_start: 8388, byte_len: 4 }) }, + Range { from: '\u{fc28}', to: '\u{fc28}', mapping: Mapped(StringTableSlice { byte_start: 8392, byte_len: 4 }) }, + Range { from: '\u{fc29}', to: '\u{fc29}', mapping: Mapped(StringTableSlice { byte_start: 8396, byte_len: 4 }) }, + Range { from: '\u{fc2a}', to: '\u{fc2a}', mapping: Mapped(StringTableSlice { byte_start: 8400, byte_len: 4 }) }, + Range { from: '\u{fc2b}', to: '\u{fc2b}', mapping: Mapped(StringTableSlice { byte_start: 8404, byte_len: 4 }) }, + Range { from: '\u{fc2c}', to: '\u{fc2c}', mapping: Mapped(StringTableSlice { byte_start: 8408, byte_len: 4 }) }, + Range { from: '\u{fc2d}', to: '\u{fc2d}', mapping: Mapped(StringTableSlice { byte_start: 8412, byte_len: 4 }) }, + Range { from: '\u{fc2e}', to: '\u{fc2e}', mapping: Mapped(StringTableSlice { byte_start: 8416, byte_len: 4 }) }, + Range { from: '\u{fc2f}', to: '\u{fc2f}', mapping: Mapped(StringTableSlice { byte_start: 8420, byte_len: 4 }) }, + Range { from: '\u{fc30}', to: '\u{fc30}', mapping: Mapped(StringTableSlice { byte_start: 8424, byte_len: 4 }) }, + Range { from: '\u{fc31}', to: '\u{fc31}', mapping: Mapped(StringTableSlice { byte_start: 8428, byte_len: 4 }) }, + Range { from: '\u{fc32}', to: '\u{fc32}', mapping: Mapped(StringTableSlice { byte_start: 8432, byte_len: 4 }) }, + Range { from: '\u{fc33}', to: '\u{fc33}', mapping: Mapped(StringTableSlice { byte_start: 8436, byte_len: 4 }) }, + Range { from: '\u{fc34}', to: '\u{fc34}', mapping: Mapped(StringTableSlice { byte_start: 8440, byte_len: 4 }) }, + Range { from: '\u{fc35}', to: '\u{fc35}', mapping: Mapped(StringTableSlice { byte_start: 8444, byte_len: 4 }) }, + Range { from: '\u{fc36}', to: '\u{fc36}', mapping: Mapped(StringTableSlice { byte_start: 8448, byte_len: 4 }) }, + Range { from: '\u{fc37}', to: '\u{fc37}', mapping: Mapped(StringTableSlice { byte_start: 8452, byte_len: 4 }) }, + Range { from: '\u{fc38}', to: '\u{fc38}', mapping: Mapped(StringTableSlice { byte_start: 8456, byte_len: 4 }) }, + Range { from: '\u{fc39}', to: '\u{fc39}', mapping: Mapped(StringTableSlice { byte_start: 8460, byte_len: 4 }) }, + Range { from: '\u{fc3a}', to: '\u{fc3a}', mapping: Mapped(StringTableSlice { byte_start: 8464, byte_len: 4 }) }, + Range { from: '\u{fc3b}', to: '\u{fc3b}', mapping: Mapped(StringTableSlice { byte_start: 8468, byte_len: 4 }) }, + Range { from: '\u{fc3c}', to: '\u{fc3c}', mapping: Mapped(StringTableSlice { byte_start: 8472, byte_len: 4 }) }, + Range { from: '\u{fc3d}', to: '\u{fc3d}', mapping: Mapped(StringTableSlice { byte_start: 8476, byte_len: 4 }) }, + Range { from: '\u{fc3e}', to: '\u{fc3e}', mapping: Mapped(StringTableSlice { byte_start: 8480, byte_len: 4 }) }, + Range { from: '\u{fc3f}', to: '\u{fc3f}', mapping: Mapped(StringTableSlice { byte_start: 8484, byte_len: 4 }) }, + Range { from: '\u{fc40}', to: '\u{fc40}', mapping: Mapped(StringTableSlice { byte_start: 8488, byte_len: 4 }) }, + Range { from: '\u{fc41}', to: '\u{fc41}', mapping: Mapped(StringTableSlice { byte_start: 8492, byte_len: 4 }) }, + Range { from: '\u{fc42}', to: '\u{fc42}', mapping: Mapped(StringTableSlice { byte_start: 8496, byte_len: 4 }) }, + Range { from: '\u{fc43}', to: '\u{fc43}', mapping: Mapped(StringTableSlice { byte_start: 8500, byte_len: 4 }) }, + Range { from: '\u{fc44}', to: '\u{fc44}', mapping: Mapped(StringTableSlice { byte_start: 8504, byte_len: 4 }) }, + Range { from: '\u{fc45}', to: '\u{fc45}', mapping: Mapped(StringTableSlice { byte_start: 8508, byte_len: 4 }) }, + Range { from: '\u{fc46}', to: '\u{fc46}', mapping: Mapped(StringTableSlice { byte_start: 8512, byte_len: 4 }) }, + Range { from: '\u{fc47}', to: '\u{fc47}', mapping: Mapped(StringTableSlice { byte_start: 8516, byte_len: 4 }) }, + Range { from: '\u{fc48}', to: '\u{fc48}', mapping: Mapped(StringTableSlice { byte_start: 8520, byte_len: 4 }) }, + Range { from: '\u{fc49}', to: '\u{fc49}', mapping: Mapped(StringTableSlice { byte_start: 8524, byte_len: 4 }) }, + Range { from: '\u{fc4a}', to: '\u{fc4a}', mapping: Mapped(StringTableSlice { byte_start: 8528, byte_len: 4 }) }, + Range { from: '\u{fc4b}', to: '\u{fc4b}', mapping: Mapped(StringTableSlice { byte_start: 8532, byte_len: 4 }) }, + Range { from: '\u{fc4c}', to: '\u{fc4c}', mapping: Mapped(StringTableSlice { byte_start: 8536, byte_len: 4 }) }, + Range { from: '\u{fc4d}', to: '\u{fc4d}', mapping: Mapped(StringTableSlice { byte_start: 8540, byte_len: 4 }) }, + Range { from: '\u{fc4e}', to: '\u{fc4e}', mapping: Mapped(StringTableSlice { byte_start: 8544, byte_len: 4 }) }, + Range { from: '\u{fc4f}', to: '\u{fc4f}', mapping: Mapped(StringTableSlice { byte_start: 8548, byte_len: 4 }) }, + Range { from: '\u{fc50}', to: '\u{fc50}', mapping: Mapped(StringTableSlice { byte_start: 8552, byte_len: 4 }) }, + Range { from: '\u{fc51}', to: '\u{fc51}', mapping: Mapped(StringTableSlice { byte_start: 8556, byte_len: 4 }) }, + Range { from: '\u{fc52}', to: '\u{fc52}', mapping: Mapped(StringTableSlice { byte_start: 8560, byte_len: 4 }) }, + Range { from: '\u{fc53}', to: '\u{fc53}', mapping: Mapped(StringTableSlice { byte_start: 8564, byte_len: 4 }) }, + Range { from: '\u{fc54}', to: '\u{fc54}', mapping: Mapped(StringTableSlice { byte_start: 8568, byte_len: 4 }) }, + Range { from: '\u{fc55}', to: '\u{fc55}', mapping: Mapped(StringTableSlice { byte_start: 8572, byte_len: 4 }) }, + Range { from: '\u{fc56}', to: '\u{fc56}', mapping: Mapped(StringTableSlice { byte_start: 8576, byte_len: 4 }) }, + Range { from: '\u{fc57}', to: '\u{fc57}', mapping: Mapped(StringTableSlice { byte_start: 8580, byte_len: 4 }) }, + Range { from: '\u{fc58}', to: '\u{fc58}', mapping: Mapped(StringTableSlice { byte_start: 8584, byte_len: 4 }) }, + Range { from: '\u{fc59}', to: '\u{fc59}', mapping: Mapped(StringTableSlice { byte_start: 8588, byte_len: 4 }) }, + Range { from: '\u{fc5a}', to: '\u{fc5a}', mapping: Mapped(StringTableSlice { byte_start: 8592, byte_len: 4 }) }, + Range { from: '\u{fc5b}', to: '\u{fc5b}', mapping: Mapped(StringTableSlice { byte_start: 8596, byte_len: 4 }) }, + Range { from: '\u{fc5c}', to: '\u{fc5c}', mapping: Mapped(StringTableSlice { byte_start: 8600, byte_len: 4 }) }, + Range { from: '\u{fc5d}', to: '\u{fc5d}', mapping: Mapped(StringTableSlice { byte_start: 8604, byte_len: 4 }) }, + Range { from: '\u{fc5e}', to: '\u{fc5e}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 8608, byte_len: 5 }) }, + Range { from: '\u{fc5f}', to: '\u{fc5f}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 8613, byte_len: 5 }) }, + Range { from: '\u{fc60}', to: '\u{fc60}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 8618, byte_len: 5 }) }, + Range { from: '\u{fc61}', to: '\u{fc61}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 8623, byte_len: 5 }) }, + Range { from: '\u{fc62}', to: '\u{fc62}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 8628, byte_len: 5 }) }, + Range { from: '\u{fc63}', to: '\u{fc63}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 8633, byte_len: 5 }) }, + Range { from: '\u{fc64}', to: '\u{fc64}', mapping: Mapped(StringTableSlice { byte_start: 8638, byte_len: 4 }) }, + Range { from: '\u{fc65}', to: '\u{fc65}', mapping: Mapped(StringTableSlice { byte_start: 8642, byte_len: 4 }) }, + Range { from: '\u{fc66}', to: '\u{fc66}', mapping: Mapped(StringTableSlice { byte_start: 8244, byte_len: 4 }) }, + Range { from: '\u{fc67}', to: '\u{fc67}', mapping: Mapped(StringTableSlice { byte_start: 8646, byte_len: 4 }) }, + Range { from: '\u{fc68}', to: '\u{fc68}', mapping: Mapped(StringTableSlice { byte_start: 8230, byte_len: 4 }) }, + Range { from: '\u{fc69}', to: '\u{fc69}', mapping: Mapped(StringTableSlice { byte_start: 8248, byte_len: 4 }) }, + Range { from: '\u{fc6a}', to: '\u{fc6a}', mapping: Mapped(StringTableSlice { byte_start: 8650, byte_len: 4 }) }, + Range { from: '\u{fc6b}', to: '\u{fc6b}', mapping: Mapped(StringTableSlice { byte_start: 8654, byte_len: 4 }) }, + Range { from: '\u{fc6c}', to: '\u{fc6c}', mapping: Mapped(StringTableSlice { byte_start: 8264, byte_len: 4 }) }, + Range { from: '\u{fc6d}', to: '\u{fc6d}', mapping: Mapped(StringTableSlice { byte_start: 8658, byte_len: 4 }) }, + Range { from: '\u{fc6e}', to: '\u{fc6e}', mapping: Mapped(StringTableSlice { byte_start: 8268, byte_len: 4 }) }, + Range { from: '\u{fc6f}', to: '\u{fc6f}', mapping: Mapped(StringTableSlice { byte_start: 8272, byte_len: 4 }) }, + Range { from: '\u{fc70}', to: '\u{fc70}', mapping: Mapped(StringTableSlice { byte_start: 8662, byte_len: 4 }) }, + Range { from: '\u{fc71}', to: '\u{fc71}', mapping: Mapped(StringTableSlice { byte_start: 8666, byte_len: 4 }) }, + Range { from: '\u{fc72}', to: '\u{fc72}', mapping: Mapped(StringTableSlice { byte_start: 8288, byte_len: 4 }) }, + Range { from: '\u{fc73}', to: '\u{fc73}', mapping: Mapped(StringTableSlice { byte_start: 8670, byte_len: 4 }) }, + Range { from: '\u{fc74}', to: '\u{fc74}', mapping: Mapped(StringTableSlice { byte_start: 8292, byte_len: 4 }) }, + Range { from: '\u{fc75}', to: '\u{fc75}', mapping: Mapped(StringTableSlice { byte_start: 8296, byte_len: 4 }) }, + Range { from: '\u{fc76}', to: '\u{fc76}', mapping: Mapped(StringTableSlice { byte_start: 8674, byte_len: 4 }) }, + Range { from: '\u{fc77}', to: '\u{fc77}', mapping: Mapped(StringTableSlice { byte_start: 8678, byte_len: 4 }) }, + Range { from: '\u{fc78}', to: '\u{fc78}', mapping: Mapped(StringTableSlice { byte_start: 8304, byte_len: 4 }) }, + Range { from: '\u{fc79}', to: '\u{fc79}', mapping: Mapped(StringTableSlice { byte_start: 8682, byte_len: 4 }) }, + Range { from: '\u{fc7a}', to: '\u{fc7a}', mapping: Mapped(StringTableSlice { byte_start: 8308, byte_len: 4 }) }, + Range { from: '\u{fc7b}', to: '\u{fc7b}', mapping: Mapped(StringTableSlice { byte_start: 8312, byte_len: 4 }) }, + Range { from: '\u{fc7c}', to: '\u{fc7c}', mapping: Mapped(StringTableSlice { byte_start: 8428, byte_len: 4 }) }, + Range { from: '\u{fc7d}', to: '\u{fc7d}', mapping: Mapped(StringTableSlice { byte_start: 8432, byte_len: 4 }) }, + Range { from: '\u{fc7e}', to: '\u{fc7e}', mapping: Mapped(StringTableSlice { byte_start: 8444, byte_len: 4 }) }, + Range { from: '\u{fc7f}', to: '\u{fc7f}', mapping: Mapped(StringTableSlice { byte_start: 8448, byte_len: 4 }) }, + Range { from: '\u{fc80}', to: '\u{fc80}', mapping: Mapped(StringTableSlice { byte_start: 8452, byte_len: 4 }) }, + Range { from: '\u{fc81}', to: '\u{fc81}', mapping: Mapped(StringTableSlice { byte_start: 8468, byte_len: 4 }) }, + Range { from: '\u{fc82}', to: '\u{fc82}', mapping: Mapped(StringTableSlice { byte_start: 8472, byte_len: 4 }) }, + Range { from: '\u{fc83}', to: '\u{fc83}', mapping: Mapped(StringTableSlice { byte_start: 8476, byte_len: 4 }) }, + Range { from: '\u{fc84}', to: '\u{fc84}', mapping: Mapped(StringTableSlice { byte_start: 8480, byte_len: 4 }) }, + Range { from: '\u{fc85}', to: '\u{fc85}', mapping: Mapped(StringTableSlice { byte_start: 8496, byte_len: 4 }) }, + Range { from: '\u{fc86}', to: '\u{fc86}', mapping: Mapped(StringTableSlice { byte_start: 8500, byte_len: 4 }) }, + Range { from: '\u{fc87}', to: '\u{fc87}', mapping: Mapped(StringTableSlice { byte_start: 8504, byte_len: 4 }) }, + Range { from: '\u{fc88}', to: '\u{fc88}', mapping: Mapped(StringTableSlice { byte_start: 8686, byte_len: 4 }) }, + Range { from: '\u{fc89}', to: '\u{fc89}', mapping: Mapped(StringTableSlice { byte_start: 8520, byte_len: 4 }) }, + Range { from: '\u{fc8a}', to: '\u{fc8a}', mapping: Mapped(StringTableSlice { byte_start: 8690, byte_len: 4 }) }, + Range { from: '\u{fc8b}', to: '\u{fc8b}', mapping: Mapped(StringTableSlice { byte_start: 8694, byte_len: 4 }) }, + Range { from: '\u{fc8c}', to: '\u{fc8c}', mapping: Mapped(StringTableSlice { byte_start: 8544, byte_len: 4 }) }, + Range { from: '\u{fc8d}', to: '\u{fc8d}', mapping: Mapped(StringTableSlice { byte_start: 8698, byte_len: 4 }) }, + Range { from: '\u{fc8e}', to: '\u{fc8e}', mapping: Mapped(StringTableSlice { byte_start: 8548, byte_len: 4 }) }, + Range { from: '\u{fc8f}', to: '\u{fc8f}', mapping: Mapped(StringTableSlice { byte_start: 8552, byte_len: 4 }) }, + Range { from: '\u{fc90}', to: '\u{fc90}', mapping: Mapped(StringTableSlice { byte_start: 8604, byte_len: 4 }) }, + Range { from: '\u{fc91}', to: '\u{fc91}', mapping: Mapped(StringTableSlice { byte_start: 8702, byte_len: 4 }) }, + Range { from: '\u{fc92}', to: '\u{fc92}', mapping: Mapped(StringTableSlice { byte_start: 8706, byte_len: 4 }) }, + Range { from: '\u{fc93}', to: '\u{fc93}', mapping: Mapped(StringTableSlice { byte_start: 8584, byte_len: 4 }) }, + Range { from: '\u{fc94}', to: '\u{fc94}', mapping: Mapped(StringTableSlice { byte_start: 8710, byte_len: 4 }) }, + Range { from: '\u{fc95}', to: '\u{fc95}', mapping: Mapped(StringTableSlice { byte_start: 8588, byte_len: 4 }) }, + Range { from: '\u{fc96}', to: '\u{fc96}', mapping: Mapped(StringTableSlice { byte_start: 8592, byte_len: 4 }) }, + Range { from: '\u{fc97}', to: '\u{fc97}', mapping: Mapped(StringTableSlice { byte_start: 8236, byte_len: 4 }) }, + Range { from: '\u{fc98}', to: '\u{fc98}', mapping: Mapped(StringTableSlice { byte_start: 8240, byte_len: 4 }) }, + Range { from: '\u{fc99}', to: '\u{fc99}', mapping: Mapped(StringTableSlice { byte_start: 8714, byte_len: 4 }) }, + Range { from: '\u{fc9a}', to: '\u{fc9a}', mapping: Mapped(StringTableSlice { byte_start: 8244, byte_len: 4 }) }, + Range { from: '\u{fc9b}', to: '\u{fc9b}', mapping: Mapped(StringTableSlice { byte_start: 8718, byte_len: 4 }) }, + Range { from: '\u{fc9c}', to: '\u{fc9c}', mapping: Mapped(StringTableSlice { byte_start: 8252, byte_len: 4 }) }, + Range { from: '\u{fc9d}', to: '\u{fc9d}', mapping: Mapped(StringTableSlice { byte_start: 8256, byte_len: 4 }) }, + Range { from: '\u{fc9e}', to: '\u{fc9e}', mapping: Mapped(StringTableSlice { byte_start: 8260, byte_len: 4 }) }, + Range { from: '\u{fc9f}', to: '\u{fc9f}', mapping: Mapped(StringTableSlice { byte_start: 8264, byte_len: 4 }) }, + Range { from: '\u{fca0}', to: '\u{fca0}', mapping: Mapped(StringTableSlice { byte_start: 8722, byte_len: 4 }) }, + Range { from: '\u{fca1}', to: '\u{fca1}', mapping: Mapped(StringTableSlice { byte_start: 8276, byte_len: 4 }) }, + Range { from: '\u{fca2}', to: '\u{fca2}', mapping: Mapped(StringTableSlice { byte_start: 8280, byte_len: 4 }) }, + Range { from: '\u{fca3}', to: '\u{fca3}', mapping: Mapped(StringTableSlice { byte_start: 8284, byte_len: 4 }) }, + Range { from: '\u{fca4}', to: '\u{fca4}', mapping: Mapped(StringTableSlice { byte_start: 8288, byte_len: 4 }) }, + Range { from: '\u{fca5}', to: '\u{fca5}', mapping: Mapped(StringTableSlice { byte_start: 8726, byte_len: 4 }) }, + Range { from: '\u{fca6}', to: '\u{fca6}', mapping: Mapped(StringTableSlice { byte_start: 8304, byte_len: 4 }) }, + Range { from: '\u{fca7}', to: '\u{fca7}', mapping: Mapped(StringTableSlice { byte_start: 8316, byte_len: 4 }) }, + Range { from: '\u{fca8}', to: '\u{fca8}', mapping: Mapped(StringTableSlice { byte_start: 8320, byte_len: 4 }) }, + Range { from: '\u{fca9}', to: '\u{fca9}', mapping: Mapped(StringTableSlice { byte_start: 8324, byte_len: 4 }) }, + Range { from: '\u{fcaa}', to: '\u{fcaa}', mapping: Mapped(StringTableSlice { byte_start: 8328, byte_len: 4 }) }, + Range { from: '\u{fcab}', to: '\u{fcab}', mapping: Mapped(StringTableSlice { byte_start: 8332, byte_len: 4 }) }, + Range { from: '\u{fcac}', to: '\u{fcac}', mapping: Mapped(StringTableSlice { byte_start: 8340, byte_len: 4 }) }, + Range { from: '\u{fcad}', to: '\u{fcad}', mapping: Mapped(StringTableSlice { byte_start: 8344, byte_len: 4 }) }, + Range { from: '\u{fcae}', to: '\u{fcae}', mapping: Mapped(StringTableSlice { byte_start: 8348, byte_len: 4 }) }, + Range { from: '\u{fcaf}', to: '\u{fcaf}', mapping: Mapped(StringTableSlice { byte_start: 8352, byte_len: 4 }) }, + Range { from: '\u{fcb0}', to: '\u{fcb0}', mapping: Mapped(StringTableSlice { byte_start: 8356, byte_len: 4 }) }, + Range { from: '\u{fcb1}', to: '\u{fcb1}', mapping: Mapped(StringTableSlice { byte_start: 8360, byte_len: 4 }) }, + Range { from: '\u{fcb2}', to: '\u{fcb2}', mapping: Mapped(StringTableSlice { byte_start: 8730, byte_len: 4 }) }, + Range { from: '\u{fcb3}', to: '\u{fcb3}', mapping: Mapped(StringTableSlice { byte_start: 8364, byte_len: 4 }) }, + Range { from: '\u{fcb4}', to: '\u{fcb4}', mapping: Mapped(StringTableSlice { byte_start: 8368, byte_len: 4 }) }, + Range { from: '\u{fcb5}', to: '\u{fcb5}', mapping: Mapped(StringTableSlice { byte_start: 8372, byte_len: 4 }) }, + Range { from: '\u{fcb6}', to: '\u{fcb6}', mapping: Mapped(StringTableSlice { byte_start: 8376, byte_len: 4 }) }, + Range { from: '\u{fcb7}', to: '\u{fcb7}', mapping: Mapped(StringTableSlice { byte_start: 8380, byte_len: 4 }) }, + Range { from: '\u{fcb8}', to: '\u{fcb8}', mapping: Mapped(StringTableSlice { byte_start: 8384, byte_len: 4 }) }, + Range { from: '\u{fcb9}', to: '\u{fcb9}', mapping: Mapped(StringTableSlice { byte_start: 8392, byte_len: 4 }) }, + Range { from: '\u{fcba}', to: '\u{fcba}', mapping: Mapped(StringTableSlice { byte_start: 8396, byte_len: 4 }) }, + Range { from: '\u{fcbb}', to: '\u{fcbb}', mapping: Mapped(StringTableSlice { byte_start: 8400, byte_len: 4 }) }, + Range { from: '\u{fcbc}', to: '\u{fcbc}', mapping: Mapped(StringTableSlice { byte_start: 8404, byte_len: 4 }) }, + Range { from: '\u{fcbd}', to: '\u{fcbd}', mapping: Mapped(StringTableSlice { byte_start: 8408, byte_len: 4 }) }, + Range { from: '\u{fcbe}', to: '\u{fcbe}', mapping: Mapped(StringTableSlice { byte_start: 8412, byte_len: 4 }) }, + Range { from: '\u{fcbf}', to: '\u{fcbf}', mapping: Mapped(StringTableSlice { byte_start: 8416, byte_len: 4 }) }, + Range { from: '\u{fcc0}', to: '\u{fcc0}', mapping: Mapped(StringTableSlice { byte_start: 8420, byte_len: 4 }) }, + Range { from: '\u{fcc1}', to: '\u{fcc1}', mapping: Mapped(StringTableSlice { byte_start: 8424, byte_len: 4 }) }, + Range { from: '\u{fcc2}', to: '\u{fcc2}', mapping: Mapped(StringTableSlice { byte_start: 8436, byte_len: 4 }) }, + Range { from: '\u{fcc3}', to: '\u{fcc3}', mapping: Mapped(StringTableSlice { byte_start: 8440, byte_len: 4 }) }, + Range { from: '\u{fcc4}', to: '\u{fcc4}', mapping: Mapped(StringTableSlice { byte_start: 8456, byte_len: 4 }) }, + Range { from: '\u{fcc5}', to: '\u{fcc5}', mapping: Mapped(StringTableSlice { byte_start: 8460, byte_len: 4 }) }, + Range { from: '\u{fcc6}', to: '\u{fcc6}', mapping: Mapped(StringTableSlice { byte_start: 8464, byte_len: 4 }) }, + Range { from: '\u{fcc7}', to: '\u{fcc7}', mapping: Mapped(StringTableSlice { byte_start: 8468, byte_len: 4 }) }, + Range { from: '\u{fcc8}', to: '\u{fcc8}', mapping: Mapped(StringTableSlice { byte_start: 8472, byte_len: 4 }) }, + Range { from: '\u{fcc9}', to: '\u{fcc9}', mapping: Mapped(StringTableSlice { byte_start: 8484, byte_len: 4 }) }, + Range { from: '\u{fcca}', to: '\u{fcca}', mapping: Mapped(StringTableSlice { byte_start: 8488, byte_len: 4 }) }, + Range { from: '\u{fccb}', to: '\u{fccb}', mapping: Mapped(StringTableSlice { byte_start: 8492, byte_len: 4 }) }, + Range { from: '\u{fccc}', to: '\u{fccc}', mapping: Mapped(StringTableSlice { byte_start: 8496, byte_len: 4 }) }, + Range { from: '\u{fccd}', to: '\u{fccd}', mapping: Mapped(StringTableSlice { byte_start: 8734, byte_len: 4 }) }, + Range { from: '\u{fcce}', to: '\u{fcce}', mapping: Mapped(StringTableSlice { byte_start: 8508, byte_len: 4 }) }, + Range { from: '\u{fccf}', to: '\u{fccf}', mapping: Mapped(StringTableSlice { byte_start: 8512, byte_len: 4 }) }, + Range { from: '\u{fcd0}', to: '\u{fcd0}', mapping: Mapped(StringTableSlice { byte_start: 8516, byte_len: 4 }) }, + Range { from: '\u{fcd1}', to: '\u{fcd1}', mapping: Mapped(StringTableSlice { byte_start: 8520, byte_len: 4 }) }, + Range { from: '\u{fcd2}', to: '\u{fcd2}', mapping: Mapped(StringTableSlice { byte_start: 8532, byte_len: 4 }) }, + Range { from: '\u{fcd3}', to: '\u{fcd3}', mapping: Mapped(StringTableSlice { byte_start: 8536, byte_len: 4 }) }, + Range { from: '\u{fcd4}', to: '\u{fcd4}', mapping: Mapped(StringTableSlice { byte_start: 8540, byte_len: 4 }) }, + Range { from: '\u{fcd5}', to: '\u{fcd5}', mapping: Mapped(StringTableSlice { byte_start: 8544, byte_len: 4 }) }, + Range { from: '\u{fcd6}', to: '\u{fcd6}', mapping: Mapped(StringTableSlice { byte_start: 8738, byte_len: 4 }) }, + Range { from: '\u{fcd7}', to: '\u{fcd7}', mapping: Mapped(StringTableSlice { byte_start: 8556, byte_len: 4 }) }, + Range { from: '\u{fcd8}', to: '\u{fcd8}', mapping: Mapped(StringTableSlice { byte_start: 8560, byte_len: 4 }) }, + Range { from: '\u{fcd9}', to: '\u{fcd9}', mapping: Mapped(StringTableSlice { byte_start: 8742, byte_len: 4 }) }, + Range { from: '\u{fcda}', to: '\u{fcda}', mapping: Mapped(StringTableSlice { byte_start: 8572, byte_len: 4 }) }, + Range { from: '\u{fcdb}', to: '\u{fcdb}', mapping: Mapped(StringTableSlice { byte_start: 8576, byte_len: 4 }) }, + Range { from: '\u{fcdc}', to: '\u{fcdc}', mapping: Mapped(StringTableSlice { byte_start: 8580, byte_len: 4 }) }, + Range { from: '\u{fcdd}', to: '\u{fcdd}', mapping: Mapped(StringTableSlice { byte_start: 8584, byte_len: 4 }) }, + Range { from: '\u{fcde}', to: '\u{fcde}', mapping: Mapped(StringTableSlice { byte_start: 8746, byte_len: 4 }) }, + Range { from: '\u{fcdf}', to: '\u{fcdf}', mapping: Mapped(StringTableSlice { byte_start: 8244, byte_len: 4 }) }, + Range { from: '\u{fce0}', to: '\u{fce0}', mapping: Mapped(StringTableSlice { byte_start: 8718, byte_len: 4 }) }, + Range { from: '\u{fce1}', to: '\u{fce1}', mapping: Mapped(StringTableSlice { byte_start: 8264, byte_len: 4 }) }, + Range { from: '\u{fce2}', to: '\u{fce2}', mapping: Mapped(StringTableSlice { byte_start: 8722, byte_len: 4 }) }, + Range { from: '\u{fce3}', to: '\u{fce3}', mapping: Mapped(StringTableSlice { byte_start: 8288, byte_len: 4 }) }, + Range { from: '\u{fce4}', to: '\u{fce4}', mapping: Mapped(StringTableSlice { byte_start: 8726, byte_len: 4 }) }, + Range { from: '\u{fce5}', to: '\u{fce5}', mapping: Mapped(StringTableSlice { byte_start: 8304, byte_len: 4 }) }, + Range { from: '\u{fce6}', to: '\u{fce6}', mapping: Mapped(StringTableSlice { byte_start: 8750, byte_len: 4 }) }, + Range { from: '\u{fce7}', to: '\u{fce7}', mapping: Mapped(StringTableSlice { byte_start: 8356, byte_len: 4 }) }, + Range { from: '\u{fce8}', to: '\u{fce8}', mapping: Mapped(StringTableSlice { byte_start: 8754, byte_len: 4 }) }, + Range { from: '\u{fce9}', to: '\u{fce9}', mapping: Mapped(StringTableSlice { byte_start: 8758, byte_len: 4 }) }, + Range { from: '\u{fcea}', to: '\u{fcea}', mapping: Mapped(StringTableSlice { byte_start: 8762, byte_len: 4 }) }, + Range { from: '\u{fceb}', to: '\u{fceb}', mapping: Mapped(StringTableSlice { byte_start: 8468, byte_len: 4 }) }, + Range { from: '\u{fcec}', to: '\u{fcec}', mapping: Mapped(StringTableSlice { byte_start: 8472, byte_len: 4 }) }, + Range { from: '\u{fced}', to: '\u{fced}', mapping: Mapped(StringTableSlice { byte_start: 8496, byte_len: 4 }) }, + Range { from: '\u{fcee}', to: '\u{fcee}', mapping: Mapped(StringTableSlice { byte_start: 8544, byte_len: 4 }) }, + Range { from: '\u{fcef}', to: '\u{fcef}', mapping: Mapped(StringTableSlice { byte_start: 8738, byte_len: 4 }) }, + Range { from: '\u{fcf0}', to: '\u{fcf0}', mapping: Mapped(StringTableSlice { byte_start: 8584, byte_len: 4 }) }, + Range { from: '\u{fcf1}', to: '\u{fcf1}', mapping: Mapped(StringTableSlice { byte_start: 8746, byte_len: 4 }) }, + Range { from: '\u{fcf2}', to: '\u{fcf2}', mapping: Mapped(StringTableSlice { byte_start: 8766, byte_len: 6 }) }, + Range { from: '\u{fcf3}', to: '\u{fcf3}', mapping: Mapped(StringTableSlice { byte_start: 8772, byte_len: 6 }) }, + Range { from: '\u{fcf4}', to: '\u{fcf4}', mapping: Mapped(StringTableSlice { byte_start: 8778, byte_len: 6 }) }, + Range { from: '\u{fcf5}', to: '\u{fcf5}', mapping: Mapped(StringTableSlice { byte_start: 8784, byte_len: 4 }) }, + Range { from: '\u{fcf6}', to: '\u{fcf6}', mapping: Mapped(StringTableSlice { byte_start: 8788, byte_len: 4 }) }, + Range { from: '\u{fcf7}', to: '\u{fcf7}', mapping: Mapped(StringTableSlice { byte_start: 8792, byte_len: 4 }) }, + Range { from: '\u{fcf8}', to: '\u{fcf8}', mapping: Mapped(StringTableSlice { byte_start: 8796, byte_len: 4 }) }, + Range { from: '\u{fcf9}', to: '\u{fcf9}', mapping: Mapped(StringTableSlice { byte_start: 8800, byte_len: 4 }) }, + Range { from: '\u{fcfa}', to: '\u{fcfa}', mapping: Mapped(StringTableSlice { byte_start: 8804, byte_len: 4 }) }, + Range { from: '\u{fcfb}', to: '\u{fcfb}', mapping: Mapped(StringTableSlice { byte_start: 8808, byte_len: 4 }) }, + Range { from: '\u{fcfc}', to: '\u{fcfc}', mapping: Mapped(StringTableSlice { byte_start: 8812, byte_len: 4 }) }, + Range { from: '\u{fcfd}', to: '\u{fcfd}', mapping: Mapped(StringTableSlice { byte_start: 8816, byte_len: 4 }) }, + Range { from: '\u{fcfe}', to: '\u{fcfe}', mapping: Mapped(StringTableSlice { byte_start: 8820, byte_len: 4 }) }, + Range { from: '\u{fcff}', to: '\u{fcff}', mapping: Mapped(StringTableSlice { byte_start: 8824, byte_len: 4 }) }, + Range { from: '\u{fd00}', to: '\u{fd00}', mapping: Mapped(StringTableSlice { byte_start: 8828, byte_len: 4 }) }, + Range { from: '\u{fd01}', to: '\u{fd01}', mapping: Mapped(StringTableSlice { byte_start: 8832, byte_len: 4 }) }, + Range { from: '\u{fd02}', to: '\u{fd02}', mapping: Mapped(StringTableSlice { byte_start: 8836, byte_len: 4 }) }, + Range { from: '\u{fd03}', to: '\u{fd03}', mapping: Mapped(StringTableSlice { byte_start: 8840, byte_len: 4 }) }, + Range { from: '\u{fd04}', to: '\u{fd04}', mapping: Mapped(StringTableSlice { byte_start: 8844, byte_len: 4 }) }, + Range { from: '\u{fd05}', to: '\u{fd05}', mapping: Mapped(StringTableSlice { byte_start: 8848, byte_len: 4 }) }, + Range { from: '\u{fd06}', to: '\u{fd06}', mapping: Mapped(StringTableSlice { byte_start: 8852, byte_len: 4 }) }, + Range { from: '\u{fd07}', to: '\u{fd07}', mapping: Mapped(StringTableSlice { byte_start: 8856, byte_len: 4 }) }, + Range { from: '\u{fd08}', to: '\u{fd08}', mapping: Mapped(StringTableSlice { byte_start: 8860, byte_len: 4 }) }, + Range { from: '\u{fd09}', to: '\u{fd09}', mapping: Mapped(StringTableSlice { byte_start: 8864, byte_len: 4 }) }, + Range { from: '\u{fd0a}', to: '\u{fd0a}', mapping: Mapped(StringTableSlice { byte_start: 8868, byte_len: 4 }) }, + Range { from: '\u{fd0b}', to: '\u{fd0b}', mapping: Mapped(StringTableSlice { byte_start: 8872, byte_len: 4 }) }, + Range { from: '\u{fd0c}', to: '\u{fd0c}', mapping: Mapped(StringTableSlice { byte_start: 8758, byte_len: 4 }) }, + Range { from: '\u{fd0d}', to: '\u{fd0d}', mapping: Mapped(StringTableSlice { byte_start: 8876, byte_len: 4 }) }, + Range { from: '\u{fd0e}', to: '\u{fd0e}', mapping: Mapped(StringTableSlice { byte_start: 8880, byte_len: 4 }) }, + Range { from: '\u{fd0f}', to: '\u{fd0f}', mapping: Mapped(StringTableSlice { byte_start: 8884, byte_len: 4 }) }, + Range { from: '\u{fd10}', to: '\u{fd10}', mapping: Mapped(StringTableSlice { byte_start: 8888, byte_len: 4 }) }, + Range { from: '\u{fd11}', to: '\u{fd11}', mapping: Mapped(StringTableSlice { byte_start: 8784, byte_len: 4 }) }, + Range { from: '\u{fd12}', to: '\u{fd12}', mapping: Mapped(StringTableSlice { byte_start: 8788, byte_len: 4 }) }, + Range { from: '\u{fd13}', to: '\u{fd13}', mapping: Mapped(StringTableSlice { byte_start: 8792, byte_len: 4 }) }, + Range { from: '\u{fd14}', to: '\u{fd14}', mapping: Mapped(StringTableSlice { byte_start: 8796, byte_len: 4 }) }, + Range { from: '\u{fd15}', to: '\u{fd15}', mapping: Mapped(StringTableSlice { byte_start: 8800, byte_len: 4 }) }, + Range { from: '\u{fd16}', to: '\u{fd16}', mapping: Mapped(StringTableSlice { byte_start: 8804, byte_len: 4 }) }, + Range { from: '\u{fd17}', to: '\u{fd17}', mapping: Mapped(StringTableSlice { byte_start: 8808, byte_len: 4 }) }, + Range { from: '\u{fd18}', to: '\u{fd18}', mapping: Mapped(StringTableSlice { byte_start: 8812, byte_len: 4 }) }, + Range { from: '\u{fd19}', to: '\u{fd19}', mapping: Mapped(StringTableSlice { byte_start: 8816, byte_len: 4 }) }, + Range { from: '\u{fd1a}', to: '\u{fd1a}', mapping: Mapped(StringTableSlice { byte_start: 8820, byte_len: 4 }) }, + Range { from: '\u{fd1b}', to: '\u{fd1b}', mapping: Mapped(StringTableSlice { byte_start: 8824, byte_len: 4 }) }, + Range { from: '\u{fd1c}', to: '\u{fd1c}', mapping: Mapped(StringTableSlice { byte_start: 8828, byte_len: 4 }) }, + Range { from: '\u{fd1d}', to: '\u{fd1d}', mapping: Mapped(StringTableSlice { byte_start: 8832, byte_len: 4 }) }, + Range { from: '\u{fd1e}', to: '\u{fd1e}', mapping: Mapped(StringTableSlice { byte_start: 8836, byte_len: 4 }) }, + Range { from: '\u{fd1f}', to: '\u{fd1f}', mapping: Mapped(StringTableSlice { byte_start: 8840, byte_len: 4 }) }, + Range { from: '\u{fd20}', to: '\u{fd20}', mapping: Mapped(StringTableSlice { byte_start: 8844, byte_len: 4 }) }, + Range { from: '\u{fd21}', to: '\u{fd21}', mapping: Mapped(StringTableSlice { byte_start: 8848, byte_len: 4 }) }, + Range { from: '\u{fd22}', to: '\u{fd22}', mapping: Mapped(StringTableSlice { byte_start: 8852, byte_len: 4 }) }, + Range { from: '\u{fd23}', to: '\u{fd23}', mapping: Mapped(StringTableSlice { byte_start: 8856, byte_len: 4 }) }, + Range { from: '\u{fd24}', to: '\u{fd24}', mapping: Mapped(StringTableSlice { byte_start: 8860, byte_len: 4 }) }, + Range { from: '\u{fd25}', to: '\u{fd25}', mapping: Mapped(StringTableSlice { byte_start: 8864, byte_len: 4 }) }, + Range { from: '\u{fd26}', to: '\u{fd26}', mapping: Mapped(StringTableSlice { byte_start: 8868, byte_len: 4 }) }, + Range { from: '\u{fd27}', to: '\u{fd27}', mapping: Mapped(StringTableSlice { byte_start: 8872, byte_len: 4 }) }, + Range { from: '\u{fd28}', to: '\u{fd28}', mapping: Mapped(StringTableSlice { byte_start: 8758, byte_len: 4 }) }, + Range { from: '\u{fd29}', to: '\u{fd29}', mapping: Mapped(StringTableSlice { byte_start: 8876, byte_len: 4 }) }, + Range { from: '\u{fd2a}', to: '\u{fd2a}', mapping: Mapped(StringTableSlice { byte_start: 8880, byte_len: 4 }) }, + Range { from: '\u{fd2b}', to: '\u{fd2b}', mapping: Mapped(StringTableSlice { byte_start: 8884, byte_len: 4 }) }, + Range { from: '\u{fd2c}', to: '\u{fd2c}', mapping: Mapped(StringTableSlice { byte_start: 8888, byte_len: 4 }) }, + Range { from: '\u{fd2d}', to: '\u{fd2d}', mapping: Mapped(StringTableSlice { byte_start: 8864, byte_len: 4 }) }, + Range { from: '\u{fd2e}', to: '\u{fd2e}', mapping: Mapped(StringTableSlice { byte_start: 8868, byte_len: 4 }) }, + Range { from: '\u{fd2f}', to: '\u{fd2f}', mapping: Mapped(StringTableSlice { byte_start: 8872, byte_len: 4 }) }, + Range { from: '\u{fd30}', to: '\u{fd30}', mapping: Mapped(StringTableSlice { byte_start: 8758, byte_len: 4 }) }, + Range { from: '\u{fd31}', to: '\u{fd31}', mapping: Mapped(StringTableSlice { byte_start: 8754, byte_len: 4 }) }, + Range { from: '\u{fd32}', to: '\u{fd32}', mapping: Mapped(StringTableSlice { byte_start: 8762, byte_len: 4 }) }, + Range { from: '\u{fd33}', to: '\u{fd33}', mapping: Mapped(StringTableSlice { byte_start: 8388, byte_len: 4 }) }, + Range { from: '\u{fd34}', to: '\u{fd34}', mapping: Mapped(StringTableSlice { byte_start: 8344, byte_len: 4 }) }, + Range { from: '\u{fd35}', to: '\u{fd35}', mapping: Mapped(StringTableSlice { byte_start: 8348, byte_len: 4 }) }, + Range { from: '\u{fd36}', to: '\u{fd36}', mapping: Mapped(StringTableSlice { byte_start: 8352, byte_len: 4 }) }, + Range { from: '\u{fd37}', to: '\u{fd37}', mapping: Mapped(StringTableSlice { byte_start: 8864, byte_len: 4 }) }, + Range { from: '\u{fd38}', to: '\u{fd38}', mapping: Mapped(StringTableSlice { byte_start: 8868, byte_len: 4 }) }, + Range { from: '\u{fd39}', to: '\u{fd39}', mapping: Mapped(StringTableSlice { byte_start: 8872, byte_len: 4 }) }, + Range { from: '\u{fd3a}', to: '\u{fd3a}', mapping: Mapped(StringTableSlice { byte_start: 8388, byte_len: 4 }) }, + Range { from: '\u{fd3b}', to: '\u{fd3b}', mapping: Mapped(StringTableSlice { byte_start: 8392, byte_len: 4 }) }, + Range { from: '\u{fd3c}', to: '\u{fd3d}', mapping: Mapped(StringTableSlice { byte_start: 8892, byte_len: 4 }) }, + Range { from: '\u{fd3e}', to: '\u{fd3f}', mapping: Valid }, + Range { from: '\u{fd40}', to: '\u{fd4f}', mapping: Disallowed }, + Range { from: '\u{fd50}', to: '\u{fd50}', mapping: Mapped(StringTableSlice { byte_start: 8896, byte_len: 6 }) }, + Range { from: '\u{fd51}', to: '\u{fd52}', mapping: Mapped(StringTableSlice { byte_start: 8902, byte_len: 6 }) }, + Range { from: '\u{fd53}', to: '\u{fd53}', mapping: Mapped(StringTableSlice { byte_start: 8908, byte_len: 6 }) }, + Range { from: '\u{fd54}', to: '\u{fd54}', mapping: Mapped(StringTableSlice { byte_start: 8914, byte_len: 6 }) }, + Range { from: '\u{fd55}', to: '\u{fd55}', mapping: Mapped(StringTableSlice { byte_start: 8920, byte_len: 6 }) }, + Range { from: '\u{fd56}', to: '\u{fd56}', mapping: Mapped(StringTableSlice { byte_start: 8926, byte_len: 6 }) }, + Range { from: '\u{fd57}', to: '\u{fd57}', mapping: Mapped(StringTableSlice { byte_start: 8932, byte_len: 6 }) }, + Range { from: '\u{fd58}', to: '\u{fd59}', mapping: Mapped(StringTableSlice { byte_start: 8938, byte_len: 6 }) }, + Range { from: '\u{fd5a}', to: '\u{fd5a}', mapping: Mapped(StringTableSlice { byte_start: 8944, byte_len: 6 }) }, + Range { from: '\u{fd5b}', to: '\u{fd5b}', mapping: Mapped(StringTableSlice { byte_start: 8950, byte_len: 6 }) }, + Range { from: '\u{fd5c}', to: '\u{fd5c}', mapping: Mapped(StringTableSlice { byte_start: 8956, byte_len: 6 }) }, + Range { from: '\u{fd5d}', to: '\u{fd5d}', mapping: Mapped(StringTableSlice { byte_start: 8962, byte_len: 6 }) }, + Range { from: '\u{fd5e}', to: '\u{fd5e}', mapping: Mapped(StringTableSlice { byte_start: 8968, byte_len: 6 }) }, + Range { from: '\u{fd5f}', to: '\u{fd60}', mapping: Mapped(StringTableSlice { byte_start: 8974, byte_len: 6 }) }, + Range { from: '\u{fd61}', to: '\u{fd61}', mapping: Mapped(StringTableSlice { byte_start: 8980, byte_len: 6 }) }, + Range { from: '\u{fd62}', to: '\u{fd63}', mapping: Mapped(StringTableSlice { byte_start: 8986, byte_len: 6 }) }, + Range { from: '\u{fd64}', to: '\u{fd65}', mapping: Mapped(StringTableSlice { byte_start: 8992, byte_len: 6 }) }, + Range { from: '\u{fd66}', to: '\u{fd66}', mapping: Mapped(StringTableSlice { byte_start: 8998, byte_len: 6 }) }, + Range { from: '\u{fd67}', to: '\u{fd68}', mapping: Mapped(StringTableSlice { byte_start: 9004, byte_len: 6 }) }, + Range { from: '\u{fd69}', to: '\u{fd69}', mapping: Mapped(StringTableSlice { byte_start: 9010, byte_len: 6 }) }, + Range { from: '\u{fd6a}', to: '\u{fd6b}', mapping: Mapped(StringTableSlice { byte_start: 9016, byte_len: 6 }) }, + Range { from: '\u{fd6c}', to: '\u{fd6d}', mapping: Mapped(StringTableSlice { byte_start: 9022, byte_len: 6 }) }, + Range { from: '\u{fd6e}', to: '\u{fd6e}', mapping: Mapped(StringTableSlice { byte_start: 9028, byte_len: 6 }) }, + Range { from: '\u{fd6f}', to: '\u{fd70}', mapping: Mapped(StringTableSlice { byte_start: 9034, byte_len: 6 }) }, + Range { from: '\u{fd71}', to: '\u{fd72}', mapping: Mapped(StringTableSlice { byte_start: 9040, byte_len: 6 }) }, + Range { from: '\u{fd73}', to: '\u{fd73}', mapping: Mapped(StringTableSlice { byte_start: 9046, byte_len: 6 }) }, + Range { from: '\u{fd74}', to: '\u{fd74}', mapping: Mapped(StringTableSlice { byte_start: 9052, byte_len: 6 }) }, + Range { from: '\u{fd75}', to: '\u{fd75}', mapping: Mapped(StringTableSlice { byte_start: 9058, byte_len: 6 }) }, + Range { from: '\u{fd76}', to: '\u{fd77}', mapping: Mapped(StringTableSlice { byte_start: 9064, byte_len: 6 }) }, + Range { from: '\u{fd78}', to: '\u{fd78}', mapping: Mapped(StringTableSlice { byte_start: 9070, byte_len: 6 }) }, + Range { from: '\u{fd79}', to: '\u{fd79}', mapping: Mapped(StringTableSlice { byte_start: 9076, byte_len: 6 }) }, + Range { from: '\u{fd7a}', to: '\u{fd7a}', mapping: Mapped(StringTableSlice { byte_start: 9082, byte_len: 6 }) }, + Range { from: '\u{fd7b}', to: '\u{fd7b}', mapping: Mapped(StringTableSlice { byte_start: 9088, byte_len: 6 }) }, + Range { from: '\u{fd7c}', to: '\u{fd7d}', mapping: Mapped(StringTableSlice { byte_start: 9094, byte_len: 6 }) }, + Range { from: '\u{fd7e}', to: '\u{fd7e}', mapping: Mapped(StringTableSlice { byte_start: 9100, byte_len: 6 }) }, + Range { from: '\u{fd7f}', to: '\u{fd7f}', mapping: Mapped(StringTableSlice { byte_start: 9106, byte_len: 6 }) }, + Range { from: '\u{fd80}', to: '\u{fd80}', mapping: Mapped(StringTableSlice { byte_start: 9112, byte_len: 6 }) }, + Range { from: '\u{fd81}', to: '\u{fd81}', mapping: Mapped(StringTableSlice { byte_start: 9118, byte_len: 6 }) }, + Range { from: '\u{fd82}', to: '\u{fd82}', mapping: Mapped(StringTableSlice { byte_start: 9124, byte_len: 6 }) }, + Range { from: '\u{fd83}', to: '\u{fd84}', mapping: Mapped(StringTableSlice { byte_start: 9130, byte_len: 6 }) }, + Range { from: '\u{fd85}', to: '\u{fd86}', mapping: Mapped(StringTableSlice { byte_start: 9136, byte_len: 6 }) }, + Range { from: '\u{fd87}', to: '\u{fd88}', mapping: Mapped(StringTableSlice { byte_start: 9142, byte_len: 6 }) }, + Range { from: '\u{fd89}', to: '\u{fd89}', mapping: Mapped(StringTableSlice { byte_start: 9148, byte_len: 6 }) }, + Range { from: '\u{fd8a}', to: '\u{fd8a}', mapping: Mapped(StringTableSlice { byte_start: 9154, byte_len: 6 }) }, + Range { from: '\u{fd8b}', to: '\u{fd8b}', mapping: Mapped(StringTableSlice { byte_start: 9160, byte_len: 6 }) }, + Range { from: '\u{fd8c}', to: '\u{fd8c}', mapping: Mapped(StringTableSlice { byte_start: 9166, byte_len: 6 }) }, + Range { from: '\u{fd8d}', to: '\u{fd8d}', mapping: Mapped(StringTableSlice { byte_start: 9172, byte_len: 6 }) }, + Range { from: '\u{fd8e}', to: '\u{fd8e}', mapping: Mapped(StringTableSlice { byte_start: 9178, byte_len: 6 }) }, + Range { from: '\u{fd8f}', to: '\u{fd8f}', mapping: Mapped(StringTableSlice { byte_start: 9184, byte_len: 6 }) }, + Range { from: '\u{fd90}', to: '\u{fd91}', mapping: Disallowed }, + Range { from: '\u{fd92}', to: '\u{fd92}', mapping: Mapped(StringTableSlice { byte_start: 9190, byte_len: 6 }) }, + Range { from: '\u{fd93}', to: '\u{fd93}', mapping: Mapped(StringTableSlice { byte_start: 9196, byte_len: 6 }) }, + Range { from: '\u{fd94}', to: '\u{fd94}', mapping: Mapped(StringTableSlice { byte_start: 9202, byte_len: 6 }) }, + Range { from: '\u{fd95}', to: '\u{fd95}', mapping: Mapped(StringTableSlice { byte_start: 9208, byte_len: 6 }) }, + Range { from: '\u{fd96}', to: '\u{fd96}', mapping: Mapped(StringTableSlice { byte_start: 9214, byte_len: 6 }) }, + Range { from: '\u{fd97}', to: '\u{fd98}', mapping: Mapped(StringTableSlice { byte_start: 9220, byte_len: 6 }) }, + Range { from: '\u{fd99}', to: '\u{fd99}', mapping: Mapped(StringTableSlice { byte_start: 9226, byte_len: 6 }) }, + Range { from: '\u{fd9a}', to: '\u{fd9a}', mapping: Mapped(StringTableSlice { byte_start: 9232, byte_len: 6 }) }, + Range { from: '\u{fd9b}', to: '\u{fd9b}', mapping: Mapped(StringTableSlice { byte_start: 9238, byte_len: 6 }) }, + Range { from: '\u{fd9c}', to: '\u{fd9d}', mapping: Mapped(StringTableSlice { byte_start: 9244, byte_len: 6 }) }, + Range { from: '\u{fd9e}', to: '\u{fd9e}', mapping: Mapped(StringTableSlice { byte_start: 9250, byte_len: 6 }) }, + Range { from: '\u{fd9f}', to: '\u{fd9f}', mapping: Mapped(StringTableSlice { byte_start: 9256, byte_len: 6 }) }, + Range { from: '\u{fda0}', to: '\u{fda0}', mapping: Mapped(StringTableSlice { byte_start: 9262, byte_len: 6 }) }, + Range { from: '\u{fda1}', to: '\u{fda1}', mapping: Mapped(StringTableSlice { byte_start: 9268, byte_len: 6 }) }, + Range { from: '\u{fda2}', to: '\u{fda2}', mapping: Mapped(StringTableSlice { byte_start: 9274, byte_len: 6 }) }, + Range { from: '\u{fda3}', to: '\u{fda3}', mapping: Mapped(StringTableSlice { byte_start: 9280, byte_len: 6 }) }, + Range { from: '\u{fda4}', to: '\u{fda4}', mapping: Mapped(StringTableSlice { byte_start: 9286, byte_len: 6 }) }, + Range { from: '\u{fda5}', to: '\u{fda5}', mapping: Mapped(StringTableSlice { byte_start: 9292, byte_len: 6 }) }, + Range { from: '\u{fda6}', to: '\u{fda6}', mapping: Mapped(StringTableSlice { byte_start: 9298, byte_len: 6 }) }, + Range { from: '\u{fda7}', to: '\u{fda7}', mapping: Mapped(StringTableSlice { byte_start: 9304, byte_len: 6 }) }, + Range { from: '\u{fda8}', to: '\u{fda8}', mapping: Mapped(StringTableSlice { byte_start: 9310, byte_len: 6 }) }, + Range { from: '\u{fda9}', to: '\u{fda9}', mapping: Mapped(StringTableSlice { byte_start: 9316, byte_len: 6 }) }, + Range { from: '\u{fdaa}', to: '\u{fdaa}', mapping: Mapped(StringTableSlice { byte_start: 9322, byte_len: 6 }) }, + Range { from: '\u{fdab}', to: '\u{fdab}', mapping: Mapped(StringTableSlice { byte_start: 9328, byte_len: 6 }) }, + Range { from: '\u{fdac}', to: '\u{fdac}', mapping: Mapped(StringTableSlice { byte_start: 9334, byte_len: 6 }) }, + Range { from: '\u{fdad}', to: '\u{fdad}', mapping: Mapped(StringTableSlice { byte_start: 9340, byte_len: 6 }) }, + Range { from: '\u{fdae}', to: '\u{fdae}', mapping: Mapped(StringTableSlice { byte_start: 9346, byte_len: 6 }) }, + Range { from: '\u{fdaf}', to: '\u{fdaf}', mapping: Mapped(StringTableSlice { byte_start: 9352, byte_len: 6 }) }, + Range { from: '\u{fdb0}', to: '\u{fdb0}', mapping: Mapped(StringTableSlice { byte_start: 9358, byte_len: 6 }) }, + Range { from: '\u{fdb1}', to: '\u{fdb1}', mapping: Mapped(StringTableSlice { byte_start: 9364, byte_len: 6 }) }, + Range { from: '\u{fdb2}', to: '\u{fdb2}', mapping: Mapped(StringTableSlice { byte_start: 9370, byte_len: 6 }) }, + Range { from: '\u{fdb3}', to: '\u{fdb3}', mapping: Mapped(StringTableSlice { byte_start: 9376, byte_len: 6 }) }, + Range { from: '\u{fdb4}', to: '\u{fdb4}', mapping: Mapped(StringTableSlice { byte_start: 9100, byte_len: 6 }) }, + Range { from: '\u{fdb5}', to: '\u{fdb5}', mapping: Mapped(StringTableSlice { byte_start: 9112, byte_len: 6 }) }, + Range { from: '\u{fdb6}', to: '\u{fdb6}', mapping: Mapped(StringTableSlice { byte_start: 9382, byte_len: 6 }) }, + Range { from: '\u{fdb7}', to: '\u{fdb7}', mapping: Mapped(StringTableSlice { byte_start: 9388, byte_len: 6 }) }, + Range { from: '\u{fdb8}', to: '\u{fdb8}', mapping: Mapped(StringTableSlice { byte_start: 9394, byte_len: 6 }) }, + Range { from: '\u{fdb9}', to: '\u{fdb9}', mapping: Mapped(StringTableSlice { byte_start: 9400, byte_len: 6 }) }, + Range { from: '\u{fdba}', to: '\u{fdba}', mapping: Mapped(StringTableSlice { byte_start: 9406, byte_len: 6 }) }, + Range { from: '\u{fdbb}', to: '\u{fdbb}', mapping: Mapped(StringTableSlice { byte_start: 9412, byte_len: 6 }) }, + Range { from: '\u{fdbc}', to: '\u{fdbc}', mapping: Mapped(StringTableSlice { byte_start: 9406, byte_len: 6 }) }, + Range { from: '\u{fdbd}', to: '\u{fdbd}', mapping: Mapped(StringTableSlice { byte_start: 9394, byte_len: 6 }) }, + Range { from: '\u{fdbe}', to: '\u{fdbe}', mapping: Mapped(StringTableSlice { byte_start: 9418, byte_len: 6 }) }, + Range { from: '\u{fdbf}', to: '\u{fdbf}', mapping: Mapped(StringTableSlice { byte_start: 9424, byte_len: 6 }) }, + Range { from: '\u{fdc0}', to: '\u{fdc0}', mapping: Mapped(StringTableSlice { byte_start: 9430, byte_len: 6 }) }, + Range { from: '\u{fdc1}', to: '\u{fdc1}', mapping: Mapped(StringTableSlice { byte_start: 9436, byte_len: 6 }) }, + Range { from: '\u{fdc2}', to: '\u{fdc2}', mapping: Mapped(StringTableSlice { byte_start: 9442, byte_len: 6 }) }, + Range { from: '\u{fdc3}', to: '\u{fdc3}', mapping: Mapped(StringTableSlice { byte_start: 9412, byte_len: 6 }) }, + Range { from: '\u{fdc4}', to: '\u{fdc4}', mapping: Mapped(StringTableSlice { byte_start: 9058, byte_len: 6 }) }, + Range { from: '\u{fdc5}', to: '\u{fdc5}', mapping: Mapped(StringTableSlice { byte_start: 8998, byte_len: 6 }) }, + Range { from: '\u{fdc6}', to: '\u{fdc6}', mapping: Mapped(StringTableSlice { byte_start: 9448, byte_len: 6 }) }, + Range { from: '\u{fdc7}', to: '\u{fdc7}', mapping: Mapped(StringTableSlice { byte_start: 9454, byte_len: 6 }) }, + Range { from: '\u{fdc8}', to: '\u{fdcf}', mapping: Disallowed }, + Range { from: '\u{fdd0}', to: '\u{fdef}', mapping: Disallowed }, + Range { from: '\u{fdf0}', to: '\u{fdf0}', mapping: Mapped(StringTableSlice { byte_start: 9460, byte_len: 6 }) }, + Range { from: '\u{fdf1}', to: '\u{fdf1}', mapping: Mapped(StringTableSlice { byte_start: 9466, byte_len: 6 }) }, + Range { from: '\u{fdf2}', to: '\u{fdf2}', mapping: Mapped(StringTableSlice { byte_start: 9472, byte_len: 8 }) }, + Range { from: '\u{fdf3}', to: '\u{fdf3}', mapping: Mapped(StringTableSlice { byte_start: 9480, byte_len: 8 }) }, + Range { from: '\u{fdf4}', to: '\u{fdf4}', mapping: Mapped(StringTableSlice { byte_start: 9488, byte_len: 8 }) }, + Range { from: '\u{fdf5}', to: '\u{fdf5}', mapping: Mapped(StringTableSlice { byte_start: 9496, byte_len: 8 }) }, + Range { from: '\u{fdf6}', to: '\u{fdf6}', mapping: Mapped(StringTableSlice { byte_start: 9504, byte_len: 8 }) }, + Range { from: '\u{fdf7}', to: '\u{fdf7}', mapping: Mapped(StringTableSlice { byte_start: 9512, byte_len: 8 }) }, + Range { from: '\u{fdf8}', to: '\u{fdf8}', mapping: Mapped(StringTableSlice { byte_start: 9520, byte_len: 8 }) }, + Range { from: '\u{fdf9}', to: '\u{fdf9}', mapping: Mapped(StringTableSlice { byte_start: 9528, byte_len: 6 }) }, + Range { from: '\u{fdfa}', to: '\u{fdfa}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9534, byte_len: 33 }) }, + Range { from: '\u{fdfb}', to: '\u{fdfb}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9567, byte_len: 15 }) }, + Range { from: '\u{fdfc}', to: '\u{fdfc}', mapping: Mapped(StringTableSlice { byte_start: 9582, byte_len: 8 }) }, + Range { from: '\u{fdfd}', to: '\u{fdfd}', mapping: Valid }, + Range { from: '\u{fdfe}', to: '\u{fdff}', mapping: Disallowed }, + Range { from: '\u{fe00}', to: '\u{fe0f}', mapping: Ignored }, + Range { from: '\u{fe10}', to: '\u{fe10}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9590, byte_len: 1 }) }, + Range { from: '\u{fe11}', to: '\u{fe11}', mapping: Mapped(StringTableSlice { byte_start: 9591, byte_len: 3 }) }, + Range { from: '\u{fe12}', to: '\u{fe12}', mapping: Disallowed }, + Range { from: '\u{fe13}', to: '\u{fe13}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9594, byte_len: 1 }) }, + Range { from: '\u{fe14}', to: '\u{fe14}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 512, byte_len: 1 }) }, + Range { from: '\u{fe15}', to: '\u{fe15}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9595, byte_len: 1 }) }, + Range { from: '\u{fe16}', to: '\u{fe16}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9596, byte_len: 1 }) }, + Range { from: '\u{fe17}', to: '\u{fe17}', mapping: Mapped(StringTableSlice { byte_start: 9597, byte_len: 3 }) }, + Range { from: '\u{fe18}', to: '\u{fe18}', mapping: Mapped(StringTableSlice { byte_start: 9600, byte_len: 3 }) }, + Range { from: '\u{fe19}', to: '\u{fe19}', mapping: Disallowed }, + Range { from: '\u{fe1a}', to: '\u{fe1f}', mapping: Disallowed }, + Range { from: '\u{fe20}', to: '\u{fe23}', mapping: Valid }, + Range { from: '\u{fe24}', to: '\u{fe26}', mapping: Valid }, + Range { from: '\u{fe27}', to: '\u{fe2d}', mapping: Valid }, + Range { from: '\u{fe2e}', to: '\u{fe2f}', mapping: Valid }, + Range { from: '\u{fe30}', to: '\u{fe30}', mapping: Disallowed }, + Range { from: '\u{fe31}', to: '\u{fe31}', mapping: Mapped(StringTableSlice { byte_start: 9603, byte_len: 3 }) }, + Range { from: '\u{fe32}', to: '\u{fe32}', mapping: Mapped(StringTableSlice { byte_start: 9606, byte_len: 3 }) }, + Range { from: '\u{fe33}', to: '\u{fe34}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9609, byte_len: 1 }) }, + Range { from: '\u{fe35}', to: '\u{fe35}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2224, byte_len: 1 }) }, + Range { from: '\u{fe36}', to: '\u{fe36}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2225, byte_len: 1 }) }, + Range { from: '\u{fe37}', to: '\u{fe37}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9610, byte_len: 1 }) }, + Range { from: '\u{fe38}', to: '\u{fe38}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9611, byte_len: 1 }) }, + Range { from: '\u{fe39}', to: '\u{fe39}', mapping: Mapped(StringTableSlice { byte_start: 9612, byte_len: 3 }) }, + Range { from: '\u{fe3a}', to: '\u{fe3a}', mapping: Mapped(StringTableSlice { byte_start: 9615, byte_len: 3 }) }, + Range { from: '\u{fe3b}', to: '\u{fe3b}', mapping: Mapped(StringTableSlice { byte_start: 9618, byte_len: 3 }) }, + Range { from: '\u{fe3c}', to: '\u{fe3c}', mapping: Mapped(StringTableSlice { byte_start: 9621, byte_len: 3 }) }, + Range { from: '\u{fe3d}', to: '\u{fe3d}', mapping: Mapped(StringTableSlice { byte_start: 9624, byte_len: 3 }) }, + Range { from: '\u{fe3e}', to: '\u{fe3e}', mapping: Mapped(StringTableSlice { byte_start: 9627, byte_len: 3 }) }, + Range { from: '\u{fe3f}', to: '\u{fe3f}', mapping: Mapped(StringTableSlice { byte_start: 2407, byte_len: 3 }) }, + Range { from: '\u{fe40}', to: '\u{fe40}', mapping: Mapped(StringTableSlice { byte_start: 2410, byte_len: 3 }) }, + Range { from: '\u{fe41}', to: '\u{fe41}', mapping: Mapped(StringTableSlice { byte_start: 9630, byte_len: 3 }) }, + Range { from: '\u{fe42}', to: '\u{fe42}', mapping: Mapped(StringTableSlice { byte_start: 9633, byte_len: 3 }) }, + Range { from: '\u{fe43}', to: '\u{fe43}', mapping: Mapped(StringTableSlice { byte_start: 9636, byte_len: 3 }) }, + Range { from: '\u{fe44}', to: '\u{fe44}', mapping: Mapped(StringTableSlice { byte_start: 9639, byte_len: 3 }) }, + Range { from: '\u{fe45}', to: '\u{fe46}', mapping: Valid }, + Range { from: '\u{fe47}', to: '\u{fe47}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9642, byte_len: 1 }) }, + Range { from: '\u{fe48}', to: '\u{fe48}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9643, byte_len: 1 }) }, + Range { from: '\u{fe49}', to: '\u{fe4c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2191, byte_len: 3 }) }, + Range { from: '\u{fe4d}', to: '\u{fe4f}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9609, byte_len: 1 }) }, + Range { from: '\u{fe50}', to: '\u{fe50}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9590, byte_len: 1 }) }, + Range { from: '\u{fe51}', to: '\u{fe51}', mapping: Mapped(StringTableSlice { byte_start: 9591, byte_len: 3 }) }, + Range { from: '\u{fe52}', to: '\u{fe52}', mapping: Disallowed }, + Range { from: '\u{fe53}', to: '\u{fe53}', mapping: Disallowed }, + Range { from: '\u{fe54}', to: '\u{fe54}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 512, byte_len: 1 }) }, + Range { from: '\u{fe55}', to: '\u{fe55}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9594, byte_len: 1 }) }, + Range { from: '\u{fe56}', to: '\u{fe56}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9596, byte_len: 1 }) }, + Range { from: '\u{fe57}', to: '\u{fe57}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9595, byte_len: 1 }) }, + Range { from: '\u{fe58}', to: '\u{fe58}', mapping: Mapped(StringTableSlice { byte_start: 9603, byte_len: 3 }) }, + Range { from: '\u{fe59}', to: '\u{fe59}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2224, byte_len: 1 }) }, + Range { from: '\u{fe5a}', to: '\u{fe5a}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2225, byte_len: 1 }) }, + Range { from: '\u{fe5b}', to: '\u{fe5b}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9610, byte_len: 1 }) }, + Range { from: '\u{fe5c}', to: '\u{fe5c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9611, byte_len: 1 }) }, + Range { from: '\u{fe5d}', to: '\u{fe5d}', mapping: Mapped(StringTableSlice { byte_start: 9612, byte_len: 3 }) }, + Range { from: '\u{fe5e}', to: '\u{fe5e}', mapping: Mapped(StringTableSlice { byte_start: 9615, byte_len: 3 }) }, + Range { from: '\u{fe5f}', to: '\u{fe5f}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9644, byte_len: 1 }) }, + Range { from: '\u{fe60}', to: '\u{fe60}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9645, byte_len: 1 }) }, + Range { from: '\u{fe61}', to: '\u{fe61}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9646, byte_len: 1 }) }, + Range { from: '\u{fe62}', to: '\u{fe62}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2219, byte_len: 1 }) }, + Range { from: '\u{fe63}', to: '\u{fe63}', mapping: Mapped(StringTableSlice { byte_start: 9647, byte_len: 1 }) }, + Range { from: '\u{fe64}', to: '\u{fe64}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9648, byte_len: 1 }) }, + Range { from: '\u{fe65}', to: '\u{fe65}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9649, byte_len: 1 }) }, + Range { from: '\u{fe66}', to: '\u{fe66}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2223, byte_len: 1 }) }, + Range { from: '\u{fe67}', to: '\u{fe67}', mapping: Disallowed }, + Range { from: '\u{fe68}', to: '\u{fe68}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9650, byte_len: 1 }) }, + Range { from: '\u{fe69}', to: '\u{fe69}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9651, byte_len: 1 }) }, + Range { from: '\u{fe6a}', to: '\u{fe6a}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9652, byte_len: 1 }) }, + Range { from: '\u{fe6b}', to: '\u{fe6b}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9653, byte_len: 1 }) }, + Range { from: '\u{fe6c}', to: '\u{fe6f}', mapping: Disallowed }, + Range { from: '\u{fe70}', to: '\u{fe70}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9654, byte_len: 3 }) }, + Range { from: '\u{fe71}', to: '\u{fe71}', mapping: Mapped(StringTableSlice { byte_start: 9657, byte_len: 4 }) }, + Range { from: '\u{fe72}', to: '\u{fe72}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9661, byte_len: 3 }) }, + Range { from: '\u{fe73}', to: '\u{fe73}', mapping: Valid }, + Range { from: '\u{fe74}', to: '\u{fe74}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9664, byte_len: 3 }) }, + Range { from: '\u{fe75}', to: '\u{fe75}', mapping: Disallowed }, + Range { from: '\u{fe76}', to: '\u{fe76}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9667, byte_len: 3 }) }, + Range { from: '\u{fe77}', to: '\u{fe77}', mapping: Mapped(StringTableSlice { byte_start: 9670, byte_len: 4 }) }, + Range { from: '\u{fe78}', to: '\u{fe78}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9674, byte_len: 3 }) }, + Range { from: '\u{fe79}', to: '\u{fe79}', mapping: Mapped(StringTableSlice { byte_start: 9677, byte_len: 4 }) }, + Range { from: '\u{fe7a}', to: '\u{fe7a}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9681, byte_len: 3 }) }, + Range { from: '\u{fe7b}', to: '\u{fe7b}', mapping: Mapped(StringTableSlice { byte_start: 9684, byte_len: 4 }) }, + Range { from: '\u{fe7c}', to: '\u{fe7c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9688, byte_len: 3 }) }, + Range { from: '\u{fe7d}', to: '\u{fe7d}', mapping: Mapped(StringTableSlice { byte_start: 9691, byte_len: 4 }) }, + Range { from: '\u{fe7e}', to: '\u{fe7e}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9695, byte_len: 3 }) }, + Range { from: '\u{fe7f}', to: '\u{fe7f}', mapping: Mapped(StringTableSlice { byte_start: 9698, byte_len: 4 }) }, + Range { from: '\u{fe80}', to: '\u{fe80}', mapping: Mapped(StringTableSlice { byte_start: 9702, byte_len: 2 }) }, + Range { from: '\u{fe81}', to: '\u{fe82}', mapping: Mapped(StringTableSlice { byte_start: 9704, byte_len: 2 }) }, + Range { from: '\u{fe83}', to: '\u{fe84}', mapping: Mapped(StringTableSlice { byte_start: 9706, byte_len: 2 }) }, + Range { from: '\u{fe85}', to: '\u{fe86}', mapping: Mapped(StringTableSlice { byte_start: 9708, byte_len: 2 }) }, + Range { from: '\u{fe87}', to: '\u{fe88}', mapping: Mapped(StringTableSlice { byte_start: 9710, byte_len: 2 }) }, + Range { from: '\u{fe89}', to: '\u{fe8c}', mapping: Mapped(StringTableSlice { byte_start: 9712, byte_len: 2 }) }, + Range { from: '\u{fe8d}', to: '\u{fe8e}', mapping: Mapped(StringTableSlice { byte_start: 9714, byte_len: 2 }) }, + Range { from: '\u{fe8f}', to: '\u{fe92}', mapping: Mapped(StringTableSlice { byte_start: 9716, byte_len: 2 }) }, + Range { from: '\u{fe93}', to: '\u{fe94}', mapping: Mapped(StringTableSlice { byte_start: 9718, byte_len: 2 }) }, + Range { from: '\u{fe95}', to: '\u{fe98}', mapping: Mapped(StringTableSlice { byte_start: 9720, byte_len: 2 }) }, + Range { from: '\u{fe99}', to: '\u{fe9c}', mapping: Mapped(StringTableSlice { byte_start: 9722, byte_len: 2 }) }, + Range { from: '\u{fe9d}', to: '\u{fea0}', mapping: Mapped(StringTableSlice { byte_start: 9724, byte_len: 2 }) }, + Range { from: '\u{fea1}', to: '\u{fea4}', mapping: Mapped(StringTableSlice { byte_start: 9726, byte_len: 2 }) }, + Range { from: '\u{fea5}', to: '\u{fea8}', mapping: Mapped(StringTableSlice { byte_start: 9728, byte_len: 2 }) }, + Range { from: '\u{fea9}', to: '\u{feaa}', mapping: Mapped(StringTableSlice { byte_start: 9730, byte_len: 2 }) }, + Range { from: '\u{feab}', to: '\u{feac}', mapping: Mapped(StringTableSlice { byte_start: 9732, byte_len: 2 }) }, + Range { from: '\u{fead}', to: '\u{feae}', mapping: Mapped(StringTableSlice { byte_start: 9734, byte_len: 2 }) }, + Range { from: '\u{feaf}', to: '\u{feb0}', mapping: Mapped(StringTableSlice { byte_start: 9736, byte_len: 2 }) }, + Range { from: '\u{feb1}', to: '\u{feb4}', mapping: Mapped(StringTableSlice { byte_start: 9738, byte_len: 2 }) }, + Range { from: '\u{feb5}', to: '\u{feb8}', mapping: Mapped(StringTableSlice { byte_start: 9740, byte_len: 2 }) }, + Range { from: '\u{feb9}', to: '\u{febc}', mapping: Mapped(StringTableSlice { byte_start: 9742, byte_len: 2 }) }, + Range { from: '\u{febd}', to: '\u{fec0}', mapping: Mapped(StringTableSlice { byte_start: 9744, byte_len: 2 }) }, + Range { from: '\u{fec1}', to: '\u{fec4}', mapping: Mapped(StringTableSlice { byte_start: 9746, byte_len: 2 }) }, + Range { from: '\u{fec5}', to: '\u{fec8}', mapping: Mapped(StringTableSlice { byte_start: 9748, byte_len: 2 }) }, + Range { from: '\u{fec9}', to: '\u{fecc}', mapping: Mapped(StringTableSlice { byte_start: 9750, byte_len: 2 }) }, + Range { from: '\u{fecd}', to: '\u{fed0}', mapping: Mapped(StringTableSlice { byte_start: 9752, byte_len: 2 }) }, + Range { from: '\u{fed1}', to: '\u{fed4}', mapping: Mapped(StringTableSlice { byte_start: 9754, byte_len: 2 }) }, + Range { from: '\u{fed5}', to: '\u{fed8}', mapping: Mapped(StringTableSlice { byte_start: 9756, byte_len: 2 }) }, + Range { from: '\u{fed9}', to: '\u{fedc}', mapping: Mapped(StringTableSlice { byte_start: 9758, byte_len: 2 }) }, + Range { from: '\u{fedd}', to: '\u{fee0}', mapping: Mapped(StringTableSlice { byte_start: 9760, byte_len: 2 }) }, + Range { from: '\u{fee1}', to: '\u{fee4}', mapping: Mapped(StringTableSlice { byte_start: 9762, byte_len: 2 }) }, + Range { from: '\u{fee5}', to: '\u{fee8}', mapping: Mapped(StringTableSlice { byte_start: 9764, byte_len: 2 }) }, + Range { from: '\u{fee9}', to: '\u{feec}', mapping: Mapped(StringTableSlice { byte_start: 9766, byte_len: 2 }) }, + Range { from: '\u{feed}', to: '\u{feee}', mapping: Mapped(StringTableSlice { byte_start: 9768, byte_len: 2 }) }, + Range { from: '\u{feef}', to: '\u{fef0}', mapping: Mapped(StringTableSlice { byte_start: 8200, byte_len: 2 }) }, + Range { from: '\u{fef1}', to: '\u{fef4}', mapping: Mapped(StringTableSlice { byte_start: 9770, byte_len: 2 }) }, + Range { from: '\u{fef5}', to: '\u{fef6}', mapping: Mapped(StringTableSlice { byte_start: 9772, byte_len: 4 }) }, + Range { from: '\u{fef7}', to: '\u{fef8}', mapping: Mapped(StringTableSlice { byte_start: 9776, byte_len: 4 }) }, + Range { from: '\u{fef9}', to: '\u{fefa}', mapping: Mapped(StringTableSlice { byte_start: 9780, byte_len: 4 }) }, + Range { from: '\u{fefb}', to: '\u{fefc}', mapping: Mapped(StringTableSlice { byte_start: 9784, byte_len: 4 }) }, + Range { from: '\u{fefd}', to: '\u{fefe}', mapping: Disallowed }, + Range { from: '\u{feff}', to: '\u{feff}', mapping: Ignored }, + Range { from: '\u{ff00}', to: '\u{ff00}', mapping: Disallowed }, + Range { from: '\u{ff01}', to: '\u{ff01}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9595, byte_len: 1 }) }, + Range { from: '\u{ff02}', to: '\u{ff02}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9788, byte_len: 1 }) }, + Range { from: '\u{ff03}', to: '\u{ff03}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9644, byte_len: 1 }) }, + Range { from: '\u{ff04}', to: '\u{ff04}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9651, byte_len: 1 }) }, + Range { from: '\u{ff05}', to: '\u{ff05}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9652, byte_len: 1 }) }, + Range { from: '\u{ff06}', to: '\u{ff06}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9645, byte_len: 1 }) }, + Range { from: '\u{ff07}', to: '\u{ff07}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9789, byte_len: 1 }) }, + Range { from: '\u{ff08}', to: '\u{ff08}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2224, byte_len: 1 }) }, + Range { from: '\u{ff09}', to: '\u{ff09}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2225, byte_len: 1 }) }, + Range { from: '\u{ff0a}', to: '\u{ff0a}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9646, byte_len: 1 }) }, + Range { from: '\u{ff0b}', to: '\u{ff0b}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2219, byte_len: 1 }) }, + Range { from: '\u{ff0c}', to: '\u{ff0c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9590, byte_len: 1 }) }, + Range { from: '\u{ff0d}', to: '\u{ff0d}', mapping: Mapped(StringTableSlice { byte_start: 9647, byte_len: 1 }) }, + Range { from: '\u{ff0e}', to: '\u{ff0e}', mapping: Mapped(StringTableSlice { byte_start: 3589, byte_len: 1 }) }, + Range { from: '\u{ff0f}', to: '\u{ff0f}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9790, byte_len: 1 }) }, + Range { from: '\u{ff10}', to: '\u{ff10}', mapping: Mapped(StringTableSlice { byte_start: 2212, byte_len: 1 }) }, + Range { from: '\u{ff11}', to: '\u{ff11}', mapping: Mapped(StringTableSlice { byte_start: 43, byte_len: 1 }) }, + Range { from: '\u{ff12}', to: '\u{ff12}', mapping: Mapped(StringTableSlice { byte_start: 33, byte_len: 1 }) }, + Range { from: '\u{ff13}', to: '\u{ff13}', mapping: Mapped(StringTableSlice { byte_start: 34, byte_len: 1 }) }, + Range { from: '\u{ff14}', to: '\u{ff14}', mapping: Mapped(StringTableSlice { byte_start: 2213, byte_len: 1 }) }, + Range { from: '\u{ff15}', to: '\u{ff15}', mapping: Mapped(StringTableSlice { byte_start: 2214, byte_len: 1 }) }, + Range { from: '\u{ff16}', to: '\u{ff16}', mapping: Mapped(StringTableSlice { byte_start: 2215, byte_len: 1 }) }, + Range { from: '\u{ff17}', to: '\u{ff17}', mapping: Mapped(StringTableSlice { byte_start: 2216, byte_len: 1 }) }, + Range { from: '\u{ff18}', to: '\u{ff18}', mapping: Mapped(StringTableSlice { byte_start: 2217, byte_len: 1 }) }, + Range { from: '\u{ff19}', to: '\u{ff19}', mapping: Mapped(StringTableSlice { byte_start: 2218, byte_len: 1 }) }, + Range { from: '\u{ff1a}', to: '\u{ff1a}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9594, byte_len: 1 }) }, + Range { from: '\u{ff1b}', to: '\u{ff1b}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 512, byte_len: 1 }) }, + Range { from: '\u{ff1c}', to: '\u{ff1c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9648, byte_len: 1 }) }, + Range { from: '\u{ff1d}', to: '\u{ff1d}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2223, byte_len: 1 }) }, + Range { from: '\u{ff1e}', to: '\u{ff1e}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9649, byte_len: 1 }) }, + Range { from: '\u{ff1f}', to: '\u{ff1f}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9596, byte_len: 1 }) }, + Range { from: '\u{ff20}', to: '\u{ff20}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9653, byte_len: 1 }) }, + Range { from: '\u{ff21}', to: '\u{ff21}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{ff22}', to: '\u{ff22}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{ff23}', to: '\u{ff23}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{ff24}', to: '\u{ff24}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{ff25}', to: '\u{ff25}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{ff26}', to: '\u{ff26}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{ff27}', to: '\u{ff27}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{ff28}', to: '\u{ff28}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{ff29}', to: '\u{ff29}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{ff2a}', to: '\u{ff2a}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{ff2b}', to: '\u{ff2b}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{ff2c}', to: '\u{ff2c}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{ff2d}', to: '\u{ff2d}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{ff2e}', to: '\u{ff2e}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{ff2f}', to: '\u{ff2f}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{ff30}', to: '\u{ff30}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{ff31}', to: '\u{ff31}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{ff32}', to: '\u{ff32}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{ff33}', to: '\u{ff33}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{ff34}', to: '\u{ff34}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{ff35}', to: '\u{ff35}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{ff36}', to: '\u{ff36}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{ff37}', to: '\u{ff37}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{ff38}', to: '\u{ff38}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{ff39}', to: '\u{ff39}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{ff3a}', to: '\u{ff3a}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{ff3b}', to: '\u{ff3b}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9642, byte_len: 1 }) }, + Range { from: '\u{ff3c}', to: '\u{ff3c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9650, byte_len: 1 }) }, + Range { from: '\u{ff3d}', to: '\u{ff3d}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9643, byte_len: 1 }) }, + Range { from: '\u{ff3e}', to: '\u{ff3e}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9791, byte_len: 1 }) }, + Range { from: '\u{ff3f}', to: '\u{ff3f}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9609, byte_len: 1 }) }, + Range { from: '\u{ff40}', to: '\u{ff40}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2125, byte_len: 1 }) }, + Range { from: '\u{ff41}', to: '\u{ff41}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{ff42}', to: '\u{ff42}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{ff43}', to: '\u{ff43}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{ff44}', to: '\u{ff44}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{ff45}', to: '\u{ff45}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{ff46}', to: '\u{ff46}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{ff47}', to: '\u{ff47}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{ff48}', to: '\u{ff48}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{ff49}', to: '\u{ff49}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{ff4a}', to: '\u{ff4a}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{ff4b}', to: '\u{ff4b}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{ff4c}', to: '\u{ff4c}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{ff4d}', to: '\u{ff4d}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{ff4e}', to: '\u{ff4e}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{ff4f}', to: '\u{ff4f}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{ff50}', to: '\u{ff50}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{ff51}', to: '\u{ff51}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{ff52}', to: '\u{ff52}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{ff53}', to: '\u{ff53}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{ff54}', to: '\u{ff54}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{ff55}', to: '\u{ff55}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{ff56}', to: '\u{ff56}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{ff57}', to: '\u{ff57}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{ff58}', to: '\u{ff58}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{ff59}', to: '\u{ff59}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{ff5a}', to: '\u{ff5a}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{ff5b}', to: '\u{ff5b}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9610, byte_len: 1 }) }, + Range { from: '\u{ff5c}', to: '\u{ff5c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9792, byte_len: 1 }) }, + Range { from: '\u{ff5d}', to: '\u{ff5d}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9611, byte_len: 1 }) }, + Range { from: '\u{ff5e}', to: '\u{ff5e}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 9793, byte_len: 1 }) }, + Range { from: '\u{ff5f}', to: '\u{ff5f}', mapping: Mapped(StringTableSlice { byte_start: 9794, byte_len: 3 }) }, + Range { from: '\u{ff60}', to: '\u{ff60}', mapping: Mapped(StringTableSlice { byte_start: 9797, byte_len: 3 }) }, + Range { from: '\u{ff61}', to: '\u{ff61}', mapping: Mapped(StringTableSlice { byte_start: 3589, byte_len: 1 }) }, + Range { from: '\u{ff62}', to: '\u{ff62}', mapping: Mapped(StringTableSlice { byte_start: 9630, byte_len: 3 }) }, + Range { from: '\u{ff63}', to: '\u{ff63}', mapping: Mapped(StringTableSlice { byte_start: 9633, byte_len: 3 }) }, + Range { from: '\u{ff64}', to: '\u{ff64}', mapping: Mapped(StringTableSlice { byte_start: 9591, byte_len: 3 }) }, + Range { from: '\u{ff65}', to: '\u{ff65}', mapping: Mapped(StringTableSlice { byte_start: 9800, byte_len: 3 }) }, + Range { from: '\u{ff66}', to: '\u{ff66}', mapping: Mapped(StringTableSlice { byte_start: 4693, byte_len: 3 }) }, + Range { from: '\u{ff67}', to: '\u{ff67}', mapping: Mapped(StringTableSlice { byte_start: 9803, byte_len: 3 }) }, + Range { from: '\u{ff68}', to: '\u{ff68}', mapping: Mapped(StringTableSlice { byte_start: 9806, byte_len: 3 }) }, + Range { from: '\u{ff69}', to: '\u{ff69}', mapping: Mapped(StringTableSlice { byte_start: 9809, byte_len: 3 }) }, + Range { from: '\u{ff6a}', to: '\u{ff6a}', mapping: Mapped(StringTableSlice { byte_start: 9812, byte_len: 3 }) }, + Range { from: '\u{ff6b}', to: '\u{ff6b}', mapping: Mapped(StringTableSlice { byte_start: 9815, byte_len: 3 }) }, + Range { from: '\u{ff6c}', to: '\u{ff6c}', mapping: Mapped(StringTableSlice { byte_start: 9818, byte_len: 3 }) }, + Range { from: '\u{ff6d}', to: '\u{ff6d}', mapping: Mapped(StringTableSlice { byte_start: 9821, byte_len: 3 }) }, + Range { from: '\u{ff6e}', to: '\u{ff6e}', mapping: Mapped(StringTableSlice { byte_start: 9824, byte_len: 3 }) }, + Range { from: '\u{ff6f}', to: '\u{ff6f}', mapping: Mapped(StringTableSlice { byte_start: 9827, byte_len: 3 }) }, + Range { from: '\u{ff70}', to: '\u{ff70}', mapping: Mapped(StringTableSlice { byte_start: 9830, byte_len: 3 }) }, + Range { from: '\u{ff71}', to: '\u{ff71}', mapping: Mapped(StringTableSlice { byte_start: 4555, byte_len: 3 }) }, + Range { from: '\u{ff72}', to: '\u{ff72}', mapping: Mapped(StringTableSlice { byte_start: 4558, byte_len: 3 }) }, + Range { from: '\u{ff73}', to: '\u{ff73}', mapping: Mapped(StringTableSlice { byte_start: 4561, byte_len: 3 }) }, + Range { from: '\u{ff74}', to: '\u{ff74}', mapping: Mapped(StringTableSlice { byte_start: 4564, byte_len: 3 }) }, + Range { from: '\u{ff75}', to: '\u{ff75}', mapping: Mapped(StringTableSlice { byte_start: 4567, byte_len: 3 }) }, + Range { from: '\u{ff76}', to: '\u{ff76}', mapping: Mapped(StringTableSlice { byte_start: 4570, byte_len: 3 }) }, + Range { from: '\u{ff77}', to: '\u{ff77}', mapping: Mapped(StringTableSlice { byte_start: 4573, byte_len: 3 }) }, + Range { from: '\u{ff78}', to: '\u{ff78}', mapping: Mapped(StringTableSlice { byte_start: 4576, byte_len: 3 }) }, + Range { from: '\u{ff79}', to: '\u{ff79}', mapping: Mapped(StringTableSlice { byte_start: 4579, byte_len: 3 }) }, + Range { from: '\u{ff7a}', to: '\u{ff7a}', mapping: Mapped(StringTableSlice { byte_start: 4582, byte_len: 3 }) }, + Range { from: '\u{ff7b}', to: '\u{ff7b}', mapping: Mapped(StringTableSlice { byte_start: 4585, byte_len: 3 }) }, + Range { from: '\u{ff7c}', to: '\u{ff7c}', mapping: Mapped(StringTableSlice { byte_start: 4588, byte_len: 3 }) }, + Range { from: '\u{ff7d}', to: '\u{ff7d}', mapping: Mapped(StringTableSlice { byte_start: 4591, byte_len: 3 }) }, + Range { from: '\u{ff7e}', to: '\u{ff7e}', mapping: Mapped(StringTableSlice { byte_start: 4594, byte_len: 3 }) }, + Range { from: '\u{ff7f}', to: '\u{ff7f}', mapping: Mapped(StringTableSlice { byte_start: 4597, byte_len: 3 }) }, + Range { from: '\u{ff80}', to: '\u{ff80}', mapping: Mapped(StringTableSlice { byte_start: 4600, byte_len: 3 }) }, + Range { from: '\u{ff81}', to: '\u{ff81}', mapping: Mapped(StringTableSlice { byte_start: 4603, byte_len: 3 }) }, + Range { from: '\u{ff82}', to: '\u{ff82}', mapping: Mapped(StringTableSlice { byte_start: 4606, byte_len: 3 }) }, + Range { from: '\u{ff83}', to: '\u{ff83}', mapping: Mapped(StringTableSlice { byte_start: 4609, byte_len: 3 }) }, + Range { from: '\u{ff84}', to: '\u{ff84}', mapping: Mapped(StringTableSlice { byte_start: 4612, byte_len: 3 }) }, + Range { from: '\u{ff85}', to: '\u{ff85}', mapping: Mapped(StringTableSlice { byte_start: 4615, byte_len: 3 }) }, + Range { from: '\u{ff86}', to: '\u{ff86}', mapping: Mapped(StringTableSlice { byte_start: 4618, byte_len: 3 }) }, + Range { from: '\u{ff87}', to: '\u{ff87}', mapping: Mapped(StringTableSlice { byte_start: 4621, byte_len: 3 }) }, + Range { from: '\u{ff88}', to: '\u{ff88}', mapping: Mapped(StringTableSlice { byte_start: 4624, byte_len: 3 }) }, + Range { from: '\u{ff89}', to: '\u{ff89}', mapping: Mapped(StringTableSlice { byte_start: 4627, byte_len: 3 }) }, + Range { from: '\u{ff8a}', to: '\u{ff8a}', mapping: Mapped(StringTableSlice { byte_start: 4630, byte_len: 3 }) }, + Range { from: '\u{ff8b}', to: '\u{ff8b}', mapping: Mapped(StringTableSlice { byte_start: 4633, byte_len: 3 }) }, + Range { from: '\u{ff8c}', to: '\u{ff8c}', mapping: Mapped(StringTableSlice { byte_start: 4636, byte_len: 3 }) }, + Range { from: '\u{ff8d}', to: '\u{ff8d}', mapping: Mapped(StringTableSlice { byte_start: 4639, byte_len: 3 }) }, + Range { from: '\u{ff8e}', to: '\u{ff8e}', mapping: Mapped(StringTableSlice { byte_start: 4642, byte_len: 3 }) }, + Range { from: '\u{ff8f}', to: '\u{ff8f}', mapping: Mapped(StringTableSlice { byte_start: 4645, byte_len: 3 }) }, + Range { from: '\u{ff90}', to: '\u{ff90}', mapping: Mapped(StringTableSlice { byte_start: 4648, byte_len: 3 }) }, + Range { from: '\u{ff91}', to: '\u{ff91}', mapping: Mapped(StringTableSlice { byte_start: 4651, byte_len: 3 }) }, + Range { from: '\u{ff92}', to: '\u{ff92}', mapping: Mapped(StringTableSlice { byte_start: 4654, byte_len: 3 }) }, + Range { from: '\u{ff93}', to: '\u{ff93}', mapping: Mapped(StringTableSlice { byte_start: 4657, byte_len: 3 }) }, + Range { from: '\u{ff94}', to: '\u{ff94}', mapping: Mapped(StringTableSlice { byte_start: 4660, byte_len: 3 }) }, + Range { from: '\u{ff95}', to: '\u{ff95}', mapping: Mapped(StringTableSlice { byte_start: 4663, byte_len: 3 }) }, + Range { from: '\u{ff96}', to: '\u{ff96}', mapping: Mapped(StringTableSlice { byte_start: 4666, byte_len: 3 }) }, + Range { from: '\u{ff97}', to: '\u{ff97}', mapping: Mapped(StringTableSlice { byte_start: 4669, byte_len: 3 }) }, + Range { from: '\u{ff98}', to: '\u{ff98}', mapping: Mapped(StringTableSlice { byte_start: 4672, byte_len: 3 }) }, + Range { from: '\u{ff99}', to: '\u{ff99}', mapping: Mapped(StringTableSlice { byte_start: 4675, byte_len: 3 }) }, + Range { from: '\u{ff9a}', to: '\u{ff9a}', mapping: Mapped(StringTableSlice { byte_start: 4678, byte_len: 3 }) }, + Range { from: '\u{ff9b}', to: '\u{ff9b}', mapping: Mapped(StringTableSlice { byte_start: 4681, byte_len: 3 }) }, + Range { from: '\u{ff9c}', to: '\u{ff9c}', mapping: Mapped(StringTableSlice { byte_start: 4684, byte_len: 3 }) }, + Range { from: '\u{ff9d}', to: '\u{ff9d}', mapping: Mapped(StringTableSlice { byte_start: 9833, byte_len: 3 }) }, + Range { from: '\u{ff9e}', to: '\u{ff9e}', mapping: Mapped(StringTableSlice { byte_start: 9836, byte_len: 3 }) }, + Range { from: '\u{ff9f}', to: '\u{ff9f}', mapping: Mapped(StringTableSlice { byte_start: 9839, byte_len: 3 }) }, + Range { from: '\u{ffa0}', to: '\u{ffa0}', mapping: Disallowed }, + Range { from: '\u{ffa1}', to: '\u{ffa1}', mapping: Mapped(StringTableSlice { byte_start: 3619, byte_len: 3 }) }, + Range { from: '\u{ffa2}', to: '\u{ffa2}', mapping: Mapped(StringTableSlice { byte_start: 3622, byte_len: 3 }) }, + Range { from: '\u{ffa3}', to: '\u{ffa3}', mapping: Mapped(StringTableSlice { byte_start: 3625, byte_len: 3 }) }, + Range { from: '\u{ffa4}', to: '\u{ffa4}', mapping: Mapped(StringTableSlice { byte_start: 3628, byte_len: 3 }) }, + Range { from: '\u{ffa5}', to: '\u{ffa5}', mapping: Mapped(StringTableSlice { byte_start: 3631, byte_len: 3 }) }, + Range { from: '\u{ffa6}', to: '\u{ffa6}', mapping: Mapped(StringTableSlice { byte_start: 3634, byte_len: 3 }) }, + Range { from: '\u{ffa7}', to: '\u{ffa7}', mapping: Mapped(StringTableSlice { byte_start: 3637, byte_len: 3 }) }, + Range { from: '\u{ffa8}', to: '\u{ffa8}', mapping: Mapped(StringTableSlice { byte_start: 3640, byte_len: 3 }) }, + Range { from: '\u{ffa9}', to: '\u{ffa9}', mapping: Mapped(StringTableSlice { byte_start: 3643, byte_len: 3 }) }, + Range { from: '\u{ffaa}', to: '\u{ffaa}', mapping: Mapped(StringTableSlice { byte_start: 3646, byte_len: 3 }) }, + Range { from: '\u{ffab}', to: '\u{ffab}', mapping: Mapped(StringTableSlice { byte_start: 3649, byte_len: 3 }) }, + Range { from: '\u{ffac}', to: '\u{ffac}', mapping: Mapped(StringTableSlice { byte_start: 3652, byte_len: 3 }) }, + Range { from: '\u{ffad}', to: '\u{ffad}', mapping: Mapped(StringTableSlice { byte_start: 3655, byte_len: 3 }) }, + Range { from: '\u{ffae}', to: '\u{ffae}', mapping: Mapped(StringTableSlice { byte_start: 3658, byte_len: 3 }) }, + Range { from: '\u{ffaf}', to: '\u{ffaf}', mapping: Mapped(StringTableSlice { byte_start: 3661, byte_len: 3 }) }, + Range { from: '\u{ffb0}', to: '\u{ffb0}', mapping: Mapped(StringTableSlice { byte_start: 3664, byte_len: 3 }) }, + Range { from: '\u{ffb1}', to: '\u{ffb1}', mapping: Mapped(StringTableSlice { byte_start: 3667, byte_len: 3 }) }, + Range { from: '\u{ffb2}', to: '\u{ffb2}', mapping: Mapped(StringTableSlice { byte_start: 3670, byte_len: 3 }) }, + Range { from: '\u{ffb3}', to: '\u{ffb3}', mapping: Mapped(StringTableSlice { byte_start: 3673, byte_len: 3 }) }, + Range { from: '\u{ffb4}', to: '\u{ffb4}', mapping: Mapped(StringTableSlice { byte_start: 3676, byte_len: 3 }) }, + Range { from: '\u{ffb5}', to: '\u{ffb5}', mapping: Mapped(StringTableSlice { byte_start: 3679, byte_len: 3 }) }, + Range { from: '\u{ffb6}', to: '\u{ffb6}', mapping: Mapped(StringTableSlice { byte_start: 3682, byte_len: 3 }) }, + Range { from: '\u{ffb7}', to: '\u{ffb7}', mapping: Mapped(StringTableSlice { byte_start: 3685, byte_len: 3 }) }, + Range { from: '\u{ffb8}', to: '\u{ffb8}', mapping: Mapped(StringTableSlice { byte_start: 3688, byte_len: 3 }) }, + Range { from: '\u{ffb9}', to: '\u{ffb9}', mapping: Mapped(StringTableSlice { byte_start: 3691, byte_len: 3 }) }, + Range { from: '\u{ffba}', to: '\u{ffba}', mapping: Mapped(StringTableSlice { byte_start: 3694, byte_len: 3 }) }, + Range { from: '\u{ffbb}', to: '\u{ffbb}', mapping: Mapped(StringTableSlice { byte_start: 3697, byte_len: 3 }) }, + Range { from: '\u{ffbc}', to: '\u{ffbc}', mapping: Mapped(StringTableSlice { byte_start: 3700, byte_len: 3 }) }, + Range { from: '\u{ffbd}', to: '\u{ffbd}', mapping: Mapped(StringTableSlice { byte_start: 3703, byte_len: 3 }) }, + Range { from: '\u{ffbe}', to: '\u{ffbe}', mapping: Mapped(StringTableSlice { byte_start: 3706, byte_len: 3 }) }, + Range { from: '\u{ffbf}', to: '\u{ffc1}', mapping: Disallowed }, + Range { from: '\u{ffc2}', to: '\u{ffc2}', mapping: Mapped(StringTableSlice { byte_start: 3709, byte_len: 3 }) }, + Range { from: '\u{ffc3}', to: '\u{ffc3}', mapping: Mapped(StringTableSlice { byte_start: 3712, byte_len: 3 }) }, + Range { from: '\u{ffc4}', to: '\u{ffc4}', mapping: Mapped(StringTableSlice { byte_start: 3715, byte_len: 3 }) }, + Range { from: '\u{ffc5}', to: '\u{ffc5}', mapping: Mapped(StringTableSlice { byte_start: 3718, byte_len: 3 }) }, + Range { from: '\u{ffc6}', to: '\u{ffc6}', mapping: Mapped(StringTableSlice { byte_start: 3721, byte_len: 3 }) }, + Range { from: '\u{ffc7}', to: '\u{ffc7}', mapping: Mapped(StringTableSlice { byte_start: 3724, byte_len: 3 }) }, + Range { from: '\u{ffc8}', to: '\u{ffc9}', mapping: Disallowed }, + Range { from: '\u{ffca}', to: '\u{ffca}', mapping: Mapped(StringTableSlice { byte_start: 3727, byte_len: 3 }) }, + Range { from: '\u{ffcb}', to: '\u{ffcb}', mapping: Mapped(StringTableSlice { byte_start: 3730, byte_len: 3 }) }, + Range { from: '\u{ffcc}', to: '\u{ffcc}', mapping: Mapped(StringTableSlice { byte_start: 3733, byte_len: 3 }) }, + Range { from: '\u{ffcd}', to: '\u{ffcd}', mapping: Mapped(StringTableSlice { byte_start: 3736, byte_len: 3 }) }, + Range { from: '\u{ffce}', to: '\u{ffce}', mapping: Mapped(StringTableSlice { byte_start: 3739, byte_len: 3 }) }, + Range { from: '\u{ffcf}', to: '\u{ffcf}', mapping: Mapped(StringTableSlice { byte_start: 3742, byte_len: 3 }) }, + Range { from: '\u{ffd0}', to: '\u{ffd1}', mapping: Disallowed }, + Range { from: '\u{ffd2}', to: '\u{ffd2}', mapping: Mapped(StringTableSlice { byte_start: 3745, byte_len: 3 }) }, + Range { from: '\u{ffd3}', to: '\u{ffd3}', mapping: Mapped(StringTableSlice { byte_start: 3748, byte_len: 3 }) }, + Range { from: '\u{ffd4}', to: '\u{ffd4}', mapping: Mapped(StringTableSlice { byte_start: 3751, byte_len: 3 }) }, + Range { from: '\u{ffd5}', to: '\u{ffd5}', mapping: Mapped(StringTableSlice { byte_start: 3754, byte_len: 3 }) }, + Range { from: '\u{ffd6}', to: '\u{ffd6}', mapping: Mapped(StringTableSlice { byte_start: 3757, byte_len: 3 }) }, + Range { from: '\u{ffd7}', to: '\u{ffd7}', mapping: Mapped(StringTableSlice { byte_start: 3760, byte_len: 3 }) }, + Range { from: '\u{ffd8}', to: '\u{ffd9}', mapping: Disallowed }, + Range { from: '\u{ffda}', to: '\u{ffda}', mapping: Mapped(StringTableSlice { byte_start: 3763, byte_len: 3 }) }, + Range { from: '\u{ffdb}', to: '\u{ffdb}', mapping: Mapped(StringTableSlice { byte_start: 3766, byte_len: 3 }) }, + Range { from: '\u{ffdc}', to: '\u{ffdc}', mapping: Mapped(StringTableSlice { byte_start: 3769, byte_len: 3 }) }, + Range { from: '\u{ffdd}', to: '\u{ffdf}', mapping: Disallowed }, + Range { from: '\u{ffe0}', to: '\u{ffe0}', mapping: Mapped(StringTableSlice { byte_start: 9842, byte_len: 2 }) }, + Range { from: '\u{ffe1}', to: '\u{ffe1}', mapping: Mapped(StringTableSlice { byte_start: 9844, byte_len: 2 }) }, + Range { from: '\u{ffe2}', to: '\u{ffe2}', mapping: Mapped(StringTableSlice { byte_start: 9846, byte_len: 2 }) }, + Range { from: '\u{ffe3}', to: '\u{ffe3}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 30, byte_len: 3 }) }, + Range { from: '\u{ffe4}', to: '\u{ffe4}', mapping: Mapped(StringTableSlice { byte_start: 9848, byte_len: 2 }) }, + Range { from: '\u{ffe5}', to: '\u{ffe5}', mapping: Mapped(StringTableSlice { byte_start: 9850, byte_len: 2 }) }, + Range { from: '\u{ffe6}', to: '\u{ffe6}', mapping: Mapped(StringTableSlice { byte_start: 9852, byte_len: 3 }) }, + Range { from: '\u{ffe7}', to: '\u{ffe7}', mapping: Disallowed }, + Range { from: '\u{ffe8}', to: '\u{ffe8}', mapping: Mapped(StringTableSlice { byte_start: 9855, byte_len: 3 }) }, + Range { from: '\u{ffe9}', to: '\u{ffe9}', mapping: Mapped(StringTableSlice { byte_start: 9858, byte_len: 3 }) }, + Range { from: '\u{ffea}', to: '\u{ffea}', mapping: Mapped(StringTableSlice { byte_start: 9861, byte_len: 3 }) }, + Range { from: '\u{ffeb}', to: '\u{ffeb}', mapping: Mapped(StringTableSlice { byte_start: 9864, byte_len: 3 }) }, + Range { from: '\u{ffec}', to: '\u{ffec}', mapping: Mapped(StringTableSlice { byte_start: 9867, byte_len: 3 }) }, + Range { from: '\u{ffed}', to: '\u{ffed}', mapping: Mapped(StringTableSlice { byte_start: 9870, byte_len: 3 }) }, + Range { from: '\u{ffee}', to: '\u{ffee}', mapping: Mapped(StringTableSlice { byte_start: 9873, byte_len: 3 }) }, + Range { from: '\u{ffef}', to: '\u{fff8}', mapping: Disallowed }, + Range { from: '\u{fff9}', to: '\u{fffb}', mapping: Disallowed }, + Range { from: '\u{fffc}', to: '\u{fffc}', mapping: Disallowed }, + Range { from: '\u{fffd}', to: '\u{fffd}', mapping: Disallowed }, + Range { from: '\u{fffe}', to: '\u{ffff}', mapping: Disallowed }, + Range { from: '\u{10000}', to: '\u{1000b}', mapping: Valid }, + Range { from: '\u{1000c}', to: '\u{1000c}', mapping: Disallowed }, + Range { from: '\u{1000d}', to: '\u{10026}', mapping: Valid }, + Range { from: '\u{10027}', to: '\u{10027}', mapping: Disallowed }, + Range { from: '\u{10028}', to: '\u{1003a}', mapping: Valid }, + Range { from: '\u{1003b}', to: '\u{1003b}', mapping: Disallowed }, + Range { from: '\u{1003c}', to: '\u{1003d}', mapping: Valid }, + Range { from: '\u{1003e}', to: '\u{1003e}', mapping: Disallowed }, + Range { from: '\u{1003f}', to: '\u{1004d}', mapping: Valid }, + Range { from: '\u{1004e}', to: '\u{1004f}', mapping: Disallowed }, + Range { from: '\u{10050}', to: '\u{1005d}', mapping: Valid }, + Range { from: '\u{1005e}', to: '\u{1007f}', mapping: Disallowed }, + Range { from: '\u{10080}', to: '\u{100fa}', mapping: Valid }, + Range { from: '\u{100fb}', to: '\u{100ff}', mapping: Disallowed }, + Range { from: '\u{10100}', to: '\u{10102}', mapping: Valid }, + Range { from: '\u{10103}', to: '\u{10106}', mapping: Disallowed }, + Range { from: '\u{10107}', to: '\u{10133}', mapping: Valid }, + Range { from: '\u{10134}', to: '\u{10136}', mapping: Disallowed }, + Range { from: '\u{10137}', to: '\u{1013f}', mapping: Valid }, + Range { from: '\u{10140}', to: '\u{1018a}', mapping: Valid }, + Range { from: '\u{1018b}', to: '\u{1018c}', mapping: Valid }, + Range { from: '\u{1018d}', to: '\u{1018e}', mapping: Valid }, + Range { from: '\u{1018f}', to: '\u{1018f}', mapping: Disallowed }, + Range { from: '\u{10190}', to: '\u{1019b}', mapping: Valid }, + Range { from: '\u{1019c}', to: '\u{1019f}', mapping: Disallowed }, + Range { from: '\u{101a0}', to: '\u{101a0}', mapping: Valid }, + Range { from: '\u{101a1}', to: '\u{101cf}', mapping: Disallowed }, + Range { from: '\u{101d0}', to: '\u{101fc}', mapping: Valid }, + Range { from: '\u{101fd}', to: '\u{101fd}', mapping: Valid }, + Range { from: '\u{101fe}', to: '\u{1027f}', mapping: Disallowed }, + Range { from: '\u{10280}', to: '\u{1029c}', mapping: Valid }, + Range { from: '\u{1029d}', to: '\u{1029f}', mapping: Disallowed }, + Range { from: '\u{102a0}', to: '\u{102d0}', mapping: Valid }, + Range { from: '\u{102d1}', to: '\u{102df}', mapping: Disallowed }, + Range { from: '\u{102e0}', to: '\u{102e0}', mapping: Valid }, + Range { from: '\u{102e1}', to: '\u{102fb}', mapping: Valid }, + Range { from: '\u{102fc}', to: '\u{102ff}', mapping: Disallowed }, + Range { from: '\u{10300}', to: '\u{1031e}', mapping: Valid }, + Range { from: '\u{1031f}', to: '\u{1031f}', mapping: Valid }, + Range { from: '\u{10320}', to: '\u{10323}', mapping: Valid }, + Range { from: '\u{10324}', to: '\u{1032f}', mapping: Disallowed }, + Range { from: '\u{10330}', to: '\u{10340}', mapping: Valid }, + Range { from: '\u{10341}', to: '\u{10341}', mapping: Valid }, + Range { from: '\u{10342}', to: '\u{10349}', mapping: Valid }, + Range { from: '\u{1034a}', to: '\u{1034a}', mapping: Valid }, + Range { from: '\u{1034b}', to: '\u{1034f}', mapping: Disallowed }, + Range { from: '\u{10350}', to: '\u{1037a}', mapping: Valid }, + Range { from: '\u{1037b}', to: '\u{1037f}', mapping: Disallowed }, + Range { from: '\u{10380}', to: '\u{1039d}', mapping: Valid }, + Range { from: '\u{1039e}', to: '\u{1039e}', mapping: Disallowed }, + Range { from: '\u{1039f}', to: '\u{1039f}', mapping: Valid }, + Range { from: '\u{103a0}', to: '\u{103c3}', mapping: Valid }, + Range { from: '\u{103c4}', to: '\u{103c7}', mapping: Disallowed }, + Range { from: '\u{103c8}', to: '\u{103cf}', mapping: Valid }, + Range { from: '\u{103d0}', to: '\u{103d5}', mapping: Valid }, + Range { from: '\u{103d6}', to: '\u{103ff}', mapping: Disallowed }, + Range { from: '\u{10400}', to: '\u{10400}', mapping: Mapped(StringTableSlice { byte_start: 9876, byte_len: 4 }) }, + Range { from: '\u{10401}', to: '\u{10401}', mapping: Mapped(StringTableSlice { byte_start: 9880, byte_len: 4 }) }, + Range { from: '\u{10402}', to: '\u{10402}', mapping: Mapped(StringTableSlice { byte_start: 9884, byte_len: 4 }) }, + Range { from: '\u{10403}', to: '\u{10403}', mapping: Mapped(StringTableSlice { byte_start: 9888, byte_len: 4 }) }, + Range { from: '\u{10404}', to: '\u{10404}', mapping: Mapped(StringTableSlice { byte_start: 9892, byte_len: 4 }) }, + Range { from: '\u{10405}', to: '\u{10405}', mapping: Mapped(StringTableSlice { byte_start: 9896, byte_len: 4 }) }, + Range { from: '\u{10406}', to: '\u{10406}', mapping: Mapped(StringTableSlice { byte_start: 9900, byte_len: 4 }) }, + Range { from: '\u{10407}', to: '\u{10407}', mapping: Mapped(StringTableSlice { byte_start: 9904, byte_len: 4 }) }, + Range { from: '\u{10408}', to: '\u{10408}', mapping: Mapped(StringTableSlice { byte_start: 9908, byte_len: 4 }) }, + Range { from: '\u{10409}', to: '\u{10409}', mapping: Mapped(StringTableSlice { byte_start: 9912, byte_len: 4 }) }, + Range { from: '\u{1040a}', to: '\u{1040a}', mapping: Mapped(StringTableSlice { byte_start: 9916, byte_len: 4 }) }, + Range { from: '\u{1040b}', to: '\u{1040b}', mapping: Mapped(StringTableSlice { byte_start: 9920, byte_len: 4 }) }, + Range { from: '\u{1040c}', to: '\u{1040c}', mapping: Mapped(StringTableSlice { byte_start: 9924, byte_len: 4 }) }, + Range { from: '\u{1040d}', to: '\u{1040d}', mapping: Mapped(StringTableSlice { byte_start: 9928, byte_len: 4 }) }, + Range { from: '\u{1040e}', to: '\u{1040e}', mapping: Mapped(StringTableSlice { byte_start: 9932, byte_len: 4 }) }, + Range { from: '\u{1040f}', to: '\u{1040f}', mapping: Mapped(StringTableSlice { byte_start: 9936, byte_len: 4 }) }, + Range { from: '\u{10410}', to: '\u{10410}', mapping: Mapped(StringTableSlice { byte_start: 9940, byte_len: 4 }) }, + Range { from: '\u{10411}', to: '\u{10411}', mapping: Mapped(StringTableSlice { byte_start: 9944, byte_len: 4 }) }, + Range { from: '\u{10412}', to: '\u{10412}', mapping: Mapped(StringTableSlice { byte_start: 9948, byte_len: 4 }) }, + Range { from: '\u{10413}', to: '\u{10413}', mapping: Mapped(StringTableSlice { byte_start: 9952, byte_len: 4 }) }, + Range { from: '\u{10414}', to: '\u{10414}', mapping: Mapped(StringTableSlice { byte_start: 9956, byte_len: 4 }) }, + Range { from: '\u{10415}', to: '\u{10415}', mapping: Mapped(StringTableSlice { byte_start: 9960, byte_len: 4 }) }, + Range { from: '\u{10416}', to: '\u{10416}', mapping: Mapped(StringTableSlice { byte_start: 9964, byte_len: 4 }) }, + Range { from: '\u{10417}', to: '\u{10417}', mapping: Mapped(StringTableSlice { byte_start: 9968, byte_len: 4 }) }, + Range { from: '\u{10418}', to: '\u{10418}', mapping: Mapped(StringTableSlice { byte_start: 9972, byte_len: 4 }) }, + Range { from: '\u{10419}', to: '\u{10419}', mapping: Mapped(StringTableSlice { byte_start: 9976, byte_len: 4 }) }, + Range { from: '\u{1041a}', to: '\u{1041a}', mapping: Mapped(StringTableSlice { byte_start: 9980, byte_len: 4 }) }, + Range { from: '\u{1041b}', to: '\u{1041b}', mapping: Mapped(StringTableSlice { byte_start: 9984, byte_len: 4 }) }, + Range { from: '\u{1041c}', to: '\u{1041c}', mapping: Mapped(StringTableSlice { byte_start: 9988, byte_len: 4 }) }, + Range { from: '\u{1041d}', to: '\u{1041d}', mapping: Mapped(StringTableSlice { byte_start: 9992, byte_len: 4 }) }, + Range { from: '\u{1041e}', to: '\u{1041e}', mapping: Mapped(StringTableSlice { byte_start: 9996, byte_len: 4 }) }, + Range { from: '\u{1041f}', to: '\u{1041f}', mapping: Mapped(StringTableSlice { byte_start: 10000, byte_len: 4 }) }, + Range { from: '\u{10420}', to: '\u{10420}', mapping: Mapped(StringTableSlice { byte_start: 10004, byte_len: 4 }) }, + Range { from: '\u{10421}', to: '\u{10421}', mapping: Mapped(StringTableSlice { byte_start: 10008, byte_len: 4 }) }, + Range { from: '\u{10422}', to: '\u{10422}', mapping: Mapped(StringTableSlice { byte_start: 10012, byte_len: 4 }) }, + Range { from: '\u{10423}', to: '\u{10423}', mapping: Mapped(StringTableSlice { byte_start: 10016, byte_len: 4 }) }, + Range { from: '\u{10424}', to: '\u{10424}', mapping: Mapped(StringTableSlice { byte_start: 10020, byte_len: 4 }) }, + Range { from: '\u{10425}', to: '\u{10425}', mapping: Mapped(StringTableSlice { byte_start: 10024, byte_len: 4 }) }, + Range { from: '\u{10426}', to: '\u{10426}', mapping: Mapped(StringTableSlice { byte_start: 10028, byte_len: 4 }) }, + Range { from: '\u{10427}', to: '\u{10427}', mapping: Mapped(StringTableSlice { byte_start: 10032, byte_len: 4 }) }, + Range { from: '\u{10428}', to: '\u{1044d}', mapping: Valid }, + Range { from: '\u{1044e}', to: '\u{1049d}', mapping: Valid }, + Range { from: '\u{1049e}', to: '\u{1049f}', mapping: Disallowed }, + Range { from: '\u{104a0}', to: '\u{104a9}', mapping: Valid }, + Range { from: '\u{104aa}', to: '\u{104af}', mapping: Disallowed }, + Range { from: '\u{104b0}', to: '\u{104b0}', mapping: Mapped(StringTableSlice { byte_start: 10036, byte_len: 4 }) }, + Range { from: '\u{104b1}', to: '\u{104b1}', mapping: Mapped(StringTableSlice { byte_start: 10040, byte_len: 4 }) }, + Range { from: '\u{104b2}', to: '\u{104b2}', mapping: Mapped(StringTableSlice { byte_start: 10044, byte_len: 4 }) }, + Range { from: '\u{104b3}', to: '\u{104b3}', mapping: Mapped(StringTableSlice { byte_start: 10048, byte_len: 4 }) }, + Range { from: '\u{104b4}', to: '\u{104b4}', mapping: Mapped(StringTableSlice { byte_start: 10052, byte_len: 4 }) }, + Range { from: '\u{104b5}', to: '\u{104b5}', mapping: Mapped(StringTableSlice { byte_start: 10056, byte_len: 4 }) }, + Range { from: '\u{104b6}', to: '\u{104b6}', mapping: Mapped(StringTableSlice { byte_start: 10060, byte_len: 4 }) }, + Range { from: '\u{104b7}', to: '\u{104b7}', mapping: Mapped(StringTableSlice { byte_start: 10064, byte_len: 4 }) }, + Range { from: '\u{104b8}', to: '\u{104b8}', mapping: Mapped(StringTableSlice { byte_start: 10068, byte_len: 4 }) }, + Range { from: '\u{104b9}', to: '\u{104b9}', mapping: Mapped(StringTableSlice { byte_start: 10072, byte_len: 4 }) }, + Range { from: '\u{104ba}', to: '\u{104ba}', mapping: Mapped(StringTableSlice { byte_start: 10076, byte_len: 4 }) }, + Range { from: '\u{104bb}', to: '\u{104bb}', mapping: Mapped(StringTableSlice { byte_start: 10080, byte_len: 4 }) }, + Range { from: '\u{104bc}', to: '\u{104bc}', mapping: Mapped(StringTableSlice { byte_start: 10084, byte_len: 4 }) }, + Range { from: '\u{104bd}', to: '\u{104bd}', mapping: Mapped(StringTableSlice { byte_start: 10088, byte_len: 4 }) }, + Range { from: '\u{104be}', to: '\u{104be}', mapping: Mapped(StringTableSlice { byte_start: 10092, byte_len: 4 }) }, + Range { from: '\u{104bf}', to: '\u{104bf}', mapping: Mapped(StringTableSlice { byte_start: 10096, byte_len: 4 }) }, + Range { from: '\u{104c0}', to: '\u{104c0}', mapping: Mapped(StringTableSlice { byte_start: 10100, byte_len: 4 }) }, + Range { from: '\u{104c1}', to: '\u{104c1}', mapping: Mapped(StringTableSlice { byte_start: 10104, byte_len: 4 }) }, + Range { from: '\u{104c2}', to: '\u{104c2}', mapping: Mapped(StringTableSlice { byte_start: 10108, byte_len: 4 }) }, + Range { from: '\u{104c3}', to: '\u{104c3}', mapping: Mapped(StringTableSlice { byte_start: 10112, byte_len: 4 }) }, + Range { from: '\u{104c4}', to: '\u{104c4}', mapping: Mapped(StringTableSlice { byte_start: 10116, byte_len: 4 }) }, + Range { from: '\u{104c5}', to: '\u{104c5}', mapping: Mapped(StringTableSlice { byte_start: 10120, byte_len: 4 }) }, + Range { from: '\u{104c6}', to: '\u{104c6}', mapping: Mapped(StringTableSlice { byte_start: 10124, byte_len: 4 }) }, + Range { from: '\u{104c7}', to: '\u{104c7}', mapping: Mapped(StringTableSlice { byte_start: 10128, byte_len: 4 }) }, + Range { from: '\u{104c8}', to: '\u{104c8}', mapping: Mapped(StringTableSlice { byte_start: 10132, byte_len: 4 }) }, + Range { from: '\u{104c9}', to: '\u{104c9}', mapping: Mapped(StringTableSlice { byte_start: 10136, byte_len: 4 }) }, + Range { from: '\u{104ca}', to: '\u{104ca}', mapping: Mapped(StringTableSlice { byte_start: 10140, byte_len: 4 }) }, + Range { from: '\u{104cb}', to: '\u{104cb}', mapping: Mapped(StringTableSlice { byte_start: 10144, byte_len: 4 }) }, + Range { from: '\u{104cc}', to: '\u{104cc}', mapping: Mapped(StringTableSlice { byte_start: 10148, byte_len: 4 }) }, + Range { from: '\u{104cd}', to: '\u{104cd}', mapping: Mapped(StringTableSlice { byte_start: 10152, byte_len: 4 }) }, + Range { from: '\u{104ce}', to: '\u{104ce}', mapping: Mapped(StringTableSlice { byte_start: 10156, byte_len: 4 }) }, + Range { from: '\u{104cf}', to: '\u{104cf}', mapping: Mapped(StringTableSlice { byte_start: 10160, byte_len: 4 }) }, + Range { from: '\u{104d0}', to: '\u{104d0}', mapping: Mapped(StringTableSlice { byte_start: 10164, byte_len: 4 }) }, + Range { from: '\u{104d1}', to: '\u{104d1}', mapping: Mapped(StringTableSlice { byte_start: 10168, byte_len: 4 }) }, + Range { from: '\u{104d2}', to: '\u{104d2}', mapping: Mapped(StringTableSlice { byte_start: 10172, byte_len: 4 }) }, + Range { from: '\u{104d3}', to: '\u{104d3}', mapping: Mapped(StringTableSlice { byte_start: 10176, byte_len: 4 }) }, + Range { from: '\u{104d4}', to: '\u{104d7}', mapping: Disallowed }, + Range { from: '\u{104d8}', to: '\u{104fb}', mapping: Valid }, + Range { from: '\u{104fc}', to: '\u{104ff}', mapping: Disallowed }, + Range { from: '\u{10500}', to: '\u{10527}', mapping: Valid }, + Range { from: '\u{10528}', to: '\u{1052f}', mapping: Disallowed }, + Range { from: '\u{10530}', to: '\u{10563}', mapping: Valid }, + Range { from: '\u{10564}', to: '\u{1056e}', mapping: Disallowed }, + Range { from: '\u{1056f}', to: '\u{1056f}', mapping: Valid }, + Range { from: '\u{10570}', to: '\u{105ff}', mapping: Disallowed }, + Range { from: '\u{10600}', to: '\u{10736}', mapping: Valid }, + Range { from: '\u{10737}', to: '\u{1073f}', mapping: Disallowed }, + Range { from: '\u{10740}', to: '\u{10755}', mapping: Valid }, + Range { from: '\u{10756}', to: '\u{1075f}', mapping: Disallowed }, + Range { from: '\u{10760}', to: '\u{10767}', mapping: Valid }, + Range { from: '\u{10768}', to: '\u{107ff}', mapping: Disallowed }, + Range { from: '\u{10800}', to: '\u{10805}', mapping: Valid }, + Range { from: '\u{10806}', to: '\u{10807}', mapping: Disallowed }, + Range { from: '\u{10808}', to: '\u{10808}', mapping: Valid }, + Range { from: '\u{10809}', to: '\u{10809}', mapping: Disallowed }, + Range { from: '\u{1080a}', to: '\u{10835}', mapping: Valid }, + Range { from: '\u{10836}', to: '\u{10836}', mapping: Disallowed }, + Range { from: '\u{10837}', to: '\u{10838}', mapping: Valid }, + Range { from: '\u{10839}', to: '\u{1083b}', mapping: Disallowed }, + Range { from: '\u{1083c}', to: '\u{1083c}', mapping: Valid }, + Range { from: '\u{1083d}', to: '\u{1083e}', mapping: Disallowed }, + Range { from: '\u{1083f}', to: '\u{1083f}', mapping: Valid }, + Range { from: '\u{10840}', to: '\u{10855}', mapping: Valid }, + Range { from: '\u{10856}', to: '\u{10856}', mapping: Disallowed }, + Range { from: '\u{10857}', to: '\u{1085f}', mapping: Valid }, + Range { from: '\u{10860}', to: '\u{10876}', mapping: Valid }, + Range { from: '\u{10877}', to: '\u{1087f}', mapping: Valid }, + Range { from: '\u{10880}', to: '\u{1089e}', mapping: Valid }, + Range { from: '\u{1089f}', to: '\u{108a6}', mapping: Disallowed }, + Range { from: '\u{108a7}', to: '\u{108af}', mapping: Valid }, + Range { from: '\u{108b0}', to: '\u{108df}', mapping: Disallowed }, + Range { from: '\u{108e0}', to: '\u{108f2}', mapping: Valid }, + Range { from: '\u{108f3}', to: '\u{108f3}', mapping: Disallowed }, + Range { from: '\u{108f4}', to: '\u{108f5}', mapping: Valid }, + Range { from: '\u{108f6}', to: '\u{108fa}', mapping: Disallowed }, + Range { from: '\u{108fb}', to: '\u{108ff}', mapping: Valid }, + Range { from: '\u{10900}', to: '\u{10915}', mapping: Valid }, + Range { from: '\u{10916}', to: '\u{10919}', mapping: Valid }, + Range { from: '\u{1091a}', to: '\u{1091b}', mapping: Valid }, + Range { from: '\u{1091c}', to: '\u{1091e}', mapping: Disallowed }, + Range { from: '\u{1091f}', to: '\u{1091f}', mapping: Valid }, + Range { from: '\u{10920}', to: '\u{10939}', mapping: Valid }, + Range { from: '\u{1093a}', to: '\u{1093e}', mapping: Disallowed }, + Range { from: '\u{1093f}', to: '\u{1093f}', mapping: Valid }, + Range { from: '\u{10940}', to: '\u{1097f}', mapping: Disallowed }, + Range { from: '\u{10980}', to: '\u{109b7}', mapping: Valid }, + Range { from: '\u{109b8}', to: '\u{109bb}', mapping: Disallowed }, + Range { from: '\u{109bc}', to: '\u{109bd}', mapping: Valid }, + Range { from: '\u{109be}', to: '\u{109bf}', mapping: Valid }, + Range { from: '\u{109c0}', to: '\u{109cf}', mapping: Valid }, + Range { from: '\u{109d0}', to: '\u{109d1}', mapping: Disallowed }, + Range { from: '\u{109d2}', to: '\u{109ff}', mapping: Valid }, + Range { from: '\u{10a00}', to: '\u{10a03}', mapping: Valid }, + Range { from: '\u{10a04}', to: '\u{10a04}', mapping: Disallowed }, + Range { from: '\u{10a05}', to: '\u{10a06}', mapping: Valid }, + Range { from: '\u{10a07}', to: '\u{10a0b}', mapping: Disallowed }, + Range { from: '\u{10a0c}', to: '\u{10a13}', mapping: Valid }, + Range { from: '\u{10a14}', to: '\u{10a14}', mapping: Disallowed }, + Range { from: '\u{10a15}', to: '\u{10a17}', mapping: Valid }, + Range { from: '\u{10a18}', to: '\u{10a18}', mapping: Disallowed }, + Range { from: '\u{10a19}', to: '\u{10a33}', mapping: Valid }, + Range { from: '\u{10a34}', to: '\u{10a37}', mapping: Disallowed }, + Range { from: '\u{10a38}', to: '\u{10a3a}', mapping: Valid }, + Range { from: '\u{10a3b}', to: '\u{10a3e}', mapping: Disallowed }, + Range { from: '\u{10a3f}', to: '\u{10a3f}', mapping: Valid }, + Range { from: '\u{10a40}', to: '\u{10a47}', mapping: Valid }, + Range { from: '\u{10a48}', to: '\u{10a4f}', mapping: Disallowed }, + Range { from: '\u{10a50}', to: '\u{10a58}', mapping: Valid }, + Range { from: '\u{10a59}', to: '\u{10a5f}', mapping: Disallowed }, + Range { from: '\u{10a60}', to: '\u{10a7c}', mapping: Valid }, + Range { from: '\u{10a7d}', to: '\u{10a7f}', mapping: Valid }, + Range { from: '\u{10a80}', to: '\u{10a9c}', mapping: Valid }, + Range { from: '\u{10a9d}', to: '\u{10a9f}', mapping: Valid }, + Range { from: '\u{10aa0}', to: '\u{10abf}', mapping: Disallowed }, + Range { from: '\u{10ac0}', to: '\u{10ac7}', mapping: Valid }, + Range { from: '\u{10ac8}', to: '\u{10ac8}', mapping: Valid }, + Range { from: '\u{10ac9}', to: '\u{10ae6}', mapping: Valid }, + Range { from: '\u{10ae7}', to: '\u{10aea}', mapping: Disallowed }, + Range { from: '\u{10aeb}', to: '\u{10af6}', mapping: Valid }, + Range { from: '\u{10af7}', to: '\u{10aff}', mapping: Disallowed }, + Range { from: '\u{10b00}', to: '\u{10b35}', mapping: Valid }, + Range { from: '\u{10b36}', to: '\u{10b38}', mapping: Disallowed }, + Range { from: '\u{10b39}', to: '\u{10b3f}', mapping: Valid }, + Range { from: '\u{10b40}', to: '\u{10b55}', mapping: Valid }, + Range { from: '\u{10b56}', to: '\u{10b57}', mapping: Disallowed }, + Range { from: '\u{10b58}', to: '\u{10b5f}', mapping: Valid }, + Range { from: '\u{10b60}', to: '\u{10b72}', mapping: Valid }, + Range { from: '\u{10b73}', to: '\u{10b77}', mapping: Disallowed }, + Range { from: '\u{10b78}', to: '\u{10b7f}', mapping: Valid }, + Range { from: '\u{10b80}', to: '\u{10b91}', mapping: Valid }, + Range { from: '\u{10b92}', to: '\u{10b98}', mapping: Disallowed }, + Range { from: '\u{10b99}', to: '\u{10b9c}', mapping: Valid }, + Range { from: '\u{10b9d}', to: '\u{10ba8}', mapping: Disallowed }, + Range { from: '\u{10ba9}', to: '\u{10baf}', mapping: Valid }, + Range { from: '\u{10bb0}', to: '\u{10bff}', mapping: Disallowed }, + Range { from: '\u{10c00}', to: '\u{10c48}', mapping: Valid }, + Range { from: '\u{10c49}', to: '\u{10c7f}', mapping: Disallowed }, + Range { from: '\u{10c80}', to: '\u{10c80}', mapping: Mapped(StringTableSlice { byte_start: 10180, byte_len: 4 }) }, + Range { from: '\u{10c81}', to: '\u{10c81}', mapping: Mapped(StringTableSlice { byte_start: 10184, byte_len: 4 }) }, + Range { from: '\u{10c82}', to: '\u{10c82}', mapping: Mapped(StringTableSlice { byte_start: 10188, byte_len: 4 }) }, + Range { from: '\u{10c83}', to: '\u{10c83}', mapping: Mapped(StringTableSlice { byte_start: 10192, byte_len: 4 }) }, + Range { from: '\u{10c84}', to: '\u{10c84}', mapping: Mapped(StringTableSlice { byte_start: 10196, byte_len: 4 }) }, + Range { from: '\u{10c85}', to: '\u{10c85}', mapping: Mapped(StringTableSlice { byte_start: 10200, byte_len: 4 }) }, + Range { from: '\u{10c86}', to: '\u{10c86}', mapping: Mapped(StringTableSlice { byte_start: 10204, byte_len: 4 }) }, + Range { from: '\u{10c87}', to: '\u{10c87}', mapping: Mapped(StringTableSlice { byte_start: 10208, byte_len: 4 }) }, + Range { from: '\u{10c88}', to: '\u{10c88}', mapping: Mapped(StringTableSlice { byte_start: 10212, byte_len: 4 }) }, + Range { from: '\u{10c89}', to: '\u{10c89}', mapping: Mapped(StringTableSlice { byte_start: 10216, byte_len: 4 }) }, + Range { from: '\u{10c8a}', to: '\u{10c8a}', mapping: Mapped(StringTableSlice { byte_start: 10220, byte_len: 4 }) }, + Range { from: '\u{10c8b}', to: '\u{10c8b}', mapping: Mapped(StringTableSlice { byte_start: 10224, byte_len: 4 }) }, + Range { from: '\u{10c8c}', to: '\u{10c8c}', mapping: Mapped(StringTableSlice { byte_start: 10228, byte_len: 4 }) }, + Range { from: '\u{10c8d}', to: '\u{10c8d}', mapping: Mapped(StringTableSlice { byte_start: 10232, byte_len: 4 }) }, + Range { from: '\u{10c8e}', to: '\u{10c8e}', mapping: Mapped(StringTableSlice { byte_start: 10236, byte_len: 4 }) }, + Range { from: '\u{10c8f}', to: '\u{10c8f}', mapping: Mapped(StringTableSlice { byte_start: 10240, byte_len: 4 }) }, + Range { from: '\u{10c90}', to: '\u{10c90}', mapping: Mapped(StringTableSlice { byte_start: 10244, byte_len: 4 }) }, + Range { from: '\u{10c91}', to: '\u{10c91}', mapping: Mapped(StringTableSlice { byte_start: 10248, byte_len: 4 }) }, + Range { from: '\u{10c92}', to: '\u{10c92}', mapping: Mapped(StringTableSlice { byte_start: 10252, byte_len: 4 }) }, + Range { from: '\u{10c93}', to: '\u{10c93}', mapping: Mapped(StringTableSlice { byte_start: 10256, byte_len: 4 }) }, + Range { from: '\u{10c94}', to: '\u{10c94}', mapping: Mapped(StringTableSlice { byte_start: 10260, byte_len: 4 }) }, + Range { from: '\u{10c95}', to: '\u{10c95}', mapping: Mapped(StringTableSlice { byte_start: 10264, byte_len: 4 }) }, + Range { from: '\u{10c96}', to: '\u{10c96}', mapping: Mapped(StringTableSlice { byte_start: 10268, byte_len: 4 }) }, + Range { from: '\u{10c97}', to: '\u{10c97}', mapping: Mapped(StringTableSlice { byte_start: 10272, byte_len: 4 }) }, + Range { from: '\u{10c98}', to: '\u{10c98}', mapping: Mapped(StringTableSlice { byte_start: 10276, byte_len: 4 }) }, + Range { from: '\u{10c99}', to: '\u{10c99}', mapping: Mapped(StringTableSlice { byte_start: 10280, byte_len: 4 }) }, + Range { from: '\u{10c9a}', to: '\u{10c9a}', mapping: Mapped(StringTableSlice { byte_start: 10284, byte_len: 4 }) }, + Range { from: '\u{10c9b}', to: '\u{10c9b}', mapping: Mapped(StringTableSlice { byte_start: 10288, byte_len: 4 }) }, + Range { from: '\u{10c9c}', to: '\u{10c9c}', mapping: Mapped(StringTableSlice { byte_start: 10292, byte_len: 4 }) }, + Range { from: '\u{10c9d}', to: '\u{10c9d}', mapping: Mapped(StringTableSlice { byte_start: 10296, byte_len: 4 }) }, + Range { from: '\u{10c9e}', to: '\u{10c9e}', mapping: Mapped(StringTableSlice { byte_start: 10300, byte_len: 4 }) }, + Range { from: '\u{10c9f}', to: '\u{10c9f}', mapping: Mapped(StringTableSlice { byte_start: 10304, byte_len: 4 }) }, + Range { from: '\u{10ca0}', to: '\u{10ca0}', mapping: Mapped(StringTableSlice { byte_start: 10308, byte_len: 4 }) }, + Range { from: '\u{10ca1}', to: '\u{10ca1}', mapping: Mapped(StringTableSlice { byte_start: 10312, byte_len: 4 }) }, + Range { from: '\u{10ca2}', to: '\u{10ca2}', mapping: Mapped(StringTableSlice { byte_start: 10316, byte_len: 4 }) }, + Range { from: '\u{10ca3}', to: '\u{10ca3}', mapping: Mapped(StringTableSlice { byte_start: 10320, byte_len: 4 }) }, + Range { from: '\u{10ca4}', to: '\u{10ca4}', mapping: Mapped(StringTableSlice { byte_start: 10324, byte_len: 4 }) }, + Range { from: '\u{10ca5}', to: '\u{10ca5}', mapping: Mapped(StringTableSlice { byte_start: 10328, byte_len: 4 }) }, + Range { from: '\u{10ca6}', to: '\u{10ca6}', mapping: Mapped(StringTableSlice { byte_start: 10332, byte_len: 4 }) }, + Range { from: '\u{10ca7}', to: '\u{10ca7}', mapping: Mapped(StringTableSlice { byte_start: 10336, byte_len: 4 }) }, + Range { from: '\u{10ca8}', to: '\u{10ca8}', mapping: Mapped(StringTableSlice { byte_start: 10340, byte_len: 4 }) }, + Range { from: '\u{10ca9}', to: '\u{10ca9}', mapping: Mapped(StringTableSlice { byte_start: 10344, byte_len: 4 }) }, + Range { from: '\u{10caa}', to: '\u{10caa}', mapping: Mapped(StringTableSlice { byte_start: 10348, byte_len: 4 }) }, + Range { from: '\u{10cab}', to: '\u{10cab}', mapping: Mapped(StringTableSlice { byte_start: 10352, byte_len: 4 }) }, + Range { from: '\u{10cac}', to: '\u{10cac}', mapping: Mapped(StringTableSlice { byte_start: 10356, byte_len: 4 }) }, + Range { from: '\u{10cad}', to: '\u{10cad}', mapping: Mapped(StringTableSlice { byte_start: 10360, byte_len: 4 }) }, + Range { from: '\u{10cae}', to: '\u{10cae}', mapping: Mapped(StringTableSlice { byte_start: 10364, byte_len: 4 }) }, + Range { from: '\u{10caf}', to: '\u{10caf}', mapping: Mapped(StringTableSlice { byte_start: 10368, byte_len: 4 }) }, + Range { from: '\u{10cb0}', to: '\u{10cb0}', mapping: Mapped(StringTableSlice { byte_start: 10372, byte_len: 4 }) }, + Range { from: '\u{10cb1}', to: '\u{10cb1}', mapping: Mapped(StringTableSlice { byte_start: 10376, byte_len: 4 }) }, + Range { from: '\u{10cb2}', to: '\u{10cb2}', mapping: Mapped(StringTableSlice { byte_start: 10380, byte_len: 4 }) }, + Range { from: '\u{10cb3}', to: '\u{10cbf}', mapping: Disallowed }, + Range { from: '\u{10cc0}', to: '\u{10cf2}', mapping: Valid }, + Range { from: '\u{10cf3}', to: '\u{10cf9}', mapping: Disallowed }, + Range { from: '\u{10cfa}', to: '\u{10cff}', mapping: Valid }, + Range { from: '\u{10d00}', to: '\u{10e5f}', mapping: Disallowed }, + Range { from: '\u{10e60}', to: '\u{10e7e}', mapping: Valid }, + Range { from: '\u{10e7f}', to: '\u{10fff}', mapping: Disallowed }, + Range { from: '\u{11000}', to: '\u{11046}', mapping: Valid }, + Range { from: '\u{11047}', to: '\u{1104d}', mapping: Valid }, + Range { from: '\u{1104e}', to: '\u{11051}', mapping: Disallowed }, + Range { from: '\u{11052}', to: '\u{11065}', mapping: Valid }, + Range { from: '\u{11066}', to: '\u{1106f}', mapping: Valid }, + Range { from: '\u{11070}', to: '\u{1107e}', mapping: Disallowed }, + Range { from: '\u{1107f}', to: '\u{1107f}', mapping: Valid }, + Range { from: '\u{11080}', to: '\u{110ba}', mapping: Valid }, + Range { from: '\u{110bb}', to: '\u{110bc}', mapping: Valid }, + Range { from: '\u{110bd}', to: '\u{110bd}', mapping: Disallowed }, + Range { from: '\u{110be}', to: '\u{110c1}', mapping: Valid }, + Range { from: '\u{110c2}', to: '\u{110cf}', mapping: Disallowed }, + Range { from: '\u{110d0}', to: '\u{110e8}', mapping: Valid }, + Range { from: '\u{110e9}', to: '\u{110ef}', mapping: Disallowed }, + Range { from: '\u{110f0}', to: '\u{110f9}', mapping: Valid }, + Range { from: '\u{110fa}', to: '\u{110ff}', mapping: Disallowed }, + Range { from: '\u{11100}', to: '\u{11134}', mapping: Valid }, + Range { from: '\u{11135}', to: '\u{11135}', mapping: Disallowed }, + Range { from: '\u{11136}', to: '\u{1113f}', mapping: Valid }, + Range { from: '\u{11140}', to: '\u{11143}', mapping: Valid }, + Range { from: '\u{11144}', to: '\u{1114f}', mapping: Disallowed }, + Range { from: '\u{11150}', to: '\u{11173}', mapping: Valid }, + Range { from: '\u{11174}', to: '\u{11175}', mapping: Valid }, + Range { from: '\u{11176}', to: '\u{11176}', mapping: Valid }, + Range { from: '\u{11177}', to: '\u{1117f}', mapping: Disallowed }, + Range { from: '\u{11180}', to: '\u{111c4}', mapping: Valid }, + Range { from: '\u{111c5}', to: '\u{111c8}', mapping: Valid }, + Range { from: '\u{111c9}', to: '\u{111c9}', mapping: Valid }, + Range { from: '\u{111ca}', to: '\u{111cc}', mapping: Valid }, + Range { from: '\u{111cd}', to: '\u{111cd}', mapping: Valid }, + Range { from: '\u{111ce}', to: '\u{111cf}', mapping: Disallowed }, + Range { from: '\u{111d0}', to: '\u{111d9}', mapping: Valid }, + Range { from: '\u{111da}', to: '\u{111da}', mapping: Valid }, + Range { from: '\u{111db}', to: '\u{111db}', mapping: Valid }, + Range { from: '\u{111dc}', to: '\u{111dc}', mapping: Valid }, + Range { from: '\u{111dd}', to: '\u{111df}', mapping: Valid }, + Range { from: '\u{111e0}', to: '\u{111e0}', mapping: Disallowed }, + Range { from: '\u{111e1}', to: '\u{111f4}', mapping: Valid }, + Range { from: '\u{111f5}', to: '\u{111ff}', mapping: Disallowed }, + Range { from: '\u{11200}', to: '\u{11211}', mapping: Valid }, + Range { from: '\u{11212}', to: '\u{11212}', mapping: Disallowed }, + Range { from: '\u{11213}', to: '\u{11237}', mapping: Valid }, + Range { from: '\u{11238}', to: '\u{1123d}', mapping: Valid }, + Range { from: '\u{1123e}', to: '\u{1123e}', mapping: Valid }, + Range { from: '\u{1123f}', to: '\u{1127f}', mapping: Disallowed }, + Range { from: '\u{11280}', to: '\u{11286}', mapping: Valid }, + Range { from: '\u{11287}', to: '\u{11287}', mapping: Disallowed }, + Range { from: '\u{11288}', to: '\u{11288}', mapping: Valid }, + Range { from: '\u{11289}', to: '\u{11289}', mapping: Disallowed }, + Range { from: '\u{1128a}', to: '\u{1128d}', mapping: Valid }, + Range { from: '\u{1128e}', to: '\u{1128e}', mapping: Disallowed }, + Range { from: '\u{1128f}', to: '\u{1129d}', mapping: Valid }, + Range { from: '\u{1129e}', to: '\u{1129e}', mapping: Disallowed }, + Range { from: '\u{1129f}', to: '\u{112a8}', mapping: Valid }, + Range { from: '\u{112a9}', to: '\u{112a9}', mapping: Valid }, + Range { from: '\u{112aa}', to: '\u{112af}', mapping: Disallowed }, + Range { from: '\u{112b0}', to: '\u{112ea}', mapping: Valid }, + Range { from: '\u{112eb}', to: '\u{112ef}', mapping: Disallowed }, + Range { from: '\u{112f0}', to: '\u{112f9}', mapping: Valid }, + Range { from: '\u{112fa}', to: '\u{112ff}', mapping: Disallowed }, + Range { from: '\u{11300}', to: '\u{11300}', mapping: Valid }, + Range { from: '\u{11301}', to: '\u{11303}', mapping: Valid }, + Range { from: '\u{11304}', to: '\u{11304}', mapping: Disallowed }, + Range { from: '\u{11305}', to: '\u{1130c}', mapping: Valid }, + Range { from: '\u{1130d}', to: '\u{1130e}', mapping: Disallowed }, + Range { from: '\u{1130f}', to: '\u{11310}', mapping: Valid }, + Range { from: '\u{11311}', to: '\u{11312}', mapping: Disallowed }, + Range { from: '\u{11313}', to: '\u{11328}', mapping: Valid }, + Range { from: '\u{11329}', to: '\u{11329}', mapping: Disallowed }, + Range { from: '\u{1132a}', to: '\u{11330}', mapping: Valid }, + Range { from: '\u{11331}', to: '\u{11331}', mapping: Disallowed }, + Range { from: '\u{11332}', to: '\u{11333}', mapping: Valid }, + Range { from: '\u{11334}', to: '\u{11334}', mapping: Disallowed }, + Range { from: '\u{11335}', to: '\u{11339}', mapping: Valid }, + Range { from: '\u{1133a}', to: '\u{1133b}', mapping: Disallowed }, + Range { from: '\u{1133c}', to: '\u{11344}', mapping: Valid }, + Range { from: '\u{11345}', to: '\u{11346}', mapping: Disallowed }, + Range { from: '\u{11347}', to: '\u{11348}', mapping: Valid }, + Range { from: '\u{11349}', to: '\u{1134a}', mapping: Disallowed }, + Range { from: '\u{1134b}', to: '\u{1134d}', mapping: Valid }, + Range { from: '\u{1134e}', to: '\u{1134f}', mapping: Disallowed }, + Range { from: '\u{11350}', to: '\u{11350}', mapping: Valid }, + Range { from: '\u{11351}', to: '\u{11356}', mapping: Disallowed }, + Range { from: '\u{11357}', to: '\u{11357}', mapping: Valid }, + Range { from: '\u{11358}', to: '\u{1135c}', mapping: Disallowed }, + Range { from: '\u{1135d}', to: '\u{11363}', mapping: Valid }, + Range { from: '\u{11364}', to: '\u{11365}', mapping: Disallowed }, + Range { from: '\u{11366}', to: '\u{1136c}', mapping: Valid }, + Range { from: '\u{1136d}', to: '\u{1136f}', mapping: Disallowed }, + Range { from: '\u{11370}', to: '\u{11374}', mapping: Valid }, + Range { from: '\u{11375}', to: '\u{113ff}', mapping: Disallowed }, + Range { from: '\u{11400}', to: '\u{1144a}', mapping: Valid }, + Range { from: '\u{1144b}', to: '\u{1144f}', mapping: Valid }, + Range { from: '\u{11450}', to: '\u{11459}', mapping: Valid }, + Range { from: '\u{1145a}', to: '\u{1145a}', mapping: Disallowed }, + Range { from: '\u{1145b}', to: '\u{1145b}', mapping: Valid }, + Range { from: '\u{1145c}', to: '\u{1145c}', mapping: Disallowed }, + Range { from: '\u{1145d}', to: '\u{1145d}', mapping: Valid }, + Range { from: '\u{1145e}', to: '\u{1147f}', mapping: Disallowed }, + Range { from: '\u{11480}', to: '\u{114c5}', mapping: Valid }, + Range { from: '\u{114c6}', to: '\u{114c6}', mapping: Valid }, + Range { from: '\u{114c7}', to: '\u{114c7}', mapping: Valid }, + Range { from: '\u{114c8}', to: '\u{114cf}', mapping: Disallowed }, + Range { from: '\u{114d0}', to: '\u{114d9}', mapping: Valid }, + Range { from: '\u{114da}', to: '\u{1157f}', mapping: Disallowed }, + Range { from: '\u{11580}', to: '\u{115b5}', mapping: Valid }, + Range { from: '\u{115b6}', to: '\u{115b7}', mapping: Disallowed }, + Range { from: '\u{115b8}', to: '\u{115c0}', mapping: Valid }, + Range { from: '\u{115c1}', to: '\u{115c9}', mapping: Valid }, + Range { from: '\u{115ca}', to: '\u{115d7}', mapping: Valid }, + Range { from: '\u{115d8}', to: '\u{115dd}', mapping: Valid }, + Range { from: '\u{115de}', to: '\u{115ff}', mapping: Disallowed }, + Range { from: '\u{11600}', to: '\u{11640}', mapping: Valid }, + Range { from: '\u{11641}', to: '\u{11643}', mapping: Valid }, + Range { from: '\u{11644}', to: '\u{11644}', mapping: Valid }, + Range { from: '\u{11645}', to: '\u{1164f}', mapping: Disallowed }, + Range { from: '\u{11650}', to: '\u{11659}', mapping: Valid }, + Range { from: '\u{1165a}', to: '\u{1165f}', mapping: Disallowed }, + Range { from: '\u{11660}', to: '\u{1166c}', mapping: Valid }, + Range { from: '\u{1166d}', to: '\u{1167f}', mapping: Disallowed }, + Range { from: '\u{11680}', to: '\u{116b7}', mapping: Valid }, + Range { from: '\u{116b8}', to: '\u{116bf}', mapping: Disallowed }, + Range { from: '\u{116c0}', to: '\u{116c9}', mapping: Valid }, + Range { from: '\u{116ca}', to: '\u{116ff}', mapping: Disallowed }, + Range { from: '\u{11700}', to: '\u{11719}', mapping: Valid }, + Range { from: '\u{1171a}', to: '\u{1171c}', mapping: Disallowed }, + Range { from: '\u{1171d}', to: '\u{1172b}', mapping: Valid }, + Range { from: '\u{1172c}', to: '\u{1172f}', mapping: Disallowed }, + Range { from: '\u{11730}', to: '\u{11739}', mapping: Valid }, + Range { from: '\u{1173a}', to: '\u{1173f}', mapping: Valid }, + Range { from: '\u{11740}', to: '\u{1189f}', mapping: Disallowed }, + Range { from: '\u{118a0}', to: '\u{118a0}', mapping: Mapped(StringTableSlice { byte_start: 10384, byte_len: 4 }) }, + Range { from: '\u{118a1}', to: '\u{118a1}', mapping: Mapped(StringTableSlice { byte_start: 10388, byte_len: 4 }) }, + Range { from: '\u{118a2}', to: '\u{118a2}', mapping: Mapped(StringTableSlice { byte_start: 10392, byte_len: 4 }) }, + Range { from: '\u{118a3}', to: '\u{118a3}', mapping: Mapped(StringTableSlice { byte_start: 10396, byte_len: 4 }) }, + Range { from: '\u{118a4}', to: '\u{118a4}', mapping: Mapped(StringTableSlice { byte_start: 10400, byte_len: 4 }) }, + Range { from: '\u{118a5}', to: '\u{118a5}', mapping: Mapped(StringTableSlice { byte_start: 10404, byte_len: 4 }) }, + Range { from: '\u{118a6}', to: '\u{118a6}', mapping: Mapped(StringTableSlice { byte_start: 10408, byte_len: 4 }) }, + Range { from: '\u{118a7}', to: '\u{118a7}', mapping: Mapped(StringTableSlice { byte_start: 10412, byte_len: 4 }) }, + Range { from: '\u{118a8}', to: '\u{118a8}', mapping: Mapped(StringTableSlice { byte_start: 10416, byte_len: 4 }) }, + Range { from: '\u{118a9}', to: '\u{118a9}', mapping: Mapped(StringTableSlice { byte_start: 10420, byte_len: 4 }) }, + Range { from: '\u{118aa}', to: '\u{118aa}', mapping: Mapped(StringTableSlice { byte_start: 10424, byte_len: 4 }) }, + Range { from: '\u{118ab}', to: '\u{118ab}', mapping: Mapped(StringTableSlice { byte_start: 10428, byte_len: 4 }) }, + Range { from: '\u{118ac}', to: '\u{118ac}', mapping: Mapped(StringTableSlice { byte_start: 10432, byte_len: 4 }) }, + Range { from: '\u{118ad}', to: '\u{118ad}', mapping: Mapped(StringTableSlice { byte_start: 10436, byte_len: 4 }) }, + Range { from: '\u{118ae}', to: '\u{118ae}', mapping: Mapped(StringTableSlice { byte_start: 10440, byte_len: 4 }) }, + Range { from: '\u{118af}', to: '\u{118af}', mapping: Mapped(StringTableSlice { byte_start: 10444, byte_len: 4 }) }, + Range { from: '\u{118b0}', to: '\u{118b0}', mapping: Mapped(StringTableSlice { byte_start: 10448, byte_len: 4 }) }, + Range { from: '\u{118b1}', to: '\u{118b1}', mapping: Mapped(StringTableSlice { byte_start: 10452, byte_len: 4 }) }, + Range { from: '\u{118b2}', to: '\u{118b2}', mapping: Mapped(StringTableSlice { byte_start: 10456, byte_len: 4 }) }, + Range { from: '\u{118b3}', to: '\u{118b3}', mapping: Mapped(StringTableSlice { byte_start: 10460, byte_len: 4 }) }, + Range { from: '\u{118b4}', to: '\u{118b4}', mapping: Mapped(StringTableSlice { byte_start: 10464, byte_len: 4 }) }, + Range { from: '\u{118b5}', to: '\u{118b5}', mapping: Mapped(StringTableSlice { byte_start: 10468, byte_len: 4 }) }, + Range { from: '\u{118b6}', to: '\u{118b6}', mapping: Mapped(StringTableSlice { byte_start: 10472, byte_len: 4 }) }, + Range { from: '\u{118b7}', to: '\u{118b7}', mapping: Mapped(StringTableSlice { byte_start: 10476, byte_len: 4 }) }, + Range { from: '\u{118b8}', to: '\u{118b8}', mapping: Mapped(StringTableSlice { byte_start: 10480, byte_len: 4 }) }, + Range { from: '\u{118b9}', to: '\u{118b9}', mapping: Mapped(StringTableSlice { byte_start: 10484, byte_len: 4 }) }, + Range { from: '\u{118ba}', to: '\u{118ba}', mapping: Mapped(StringTableSlice { byte_start: 10488, byte_len: 4 }) }, + Range { from: '\u{118bb}', to: '\u{118bb}', mapping: Mapped(StringTableSlice { byte_start: 10492, byte_len: 4 }) }, + Range { from: '\u{118bc}', to: '\u{118bc}', mapping: Mapped(StringTableSlice { byte_start: 10496, byte_len: 4 }) }, + Range { from: '\u{118bd}', to: '\u{118bd}', mapping: Mapped(StringTableSlice { byte_start: 10500, byte_len: 4 }) }, + Range { from: '\u{118be}', to: '\u{118be}', mapping: Mapped(StringTableSlice { byte_start: 10504, byte_len: 4 }) }, + Range { from: '\u{118bf}', to: '\u{118bf}', mapping: Mapped(StringTableSlice { byte_start: 10508, byte_len: 4 }) }, + Range { from: '\u{118c0}', to: '\u{118e9}', mapping: Valid }, + Range { from: '\u{118ea}', to: '\u{118f2}', mapping: Valid }, + Range { from: '\u{118f3}', to: '\u{118fe}', mapping: Disallowed }, + Range { from: '\u{118ff}', to: '\u{118ff}', mapping: Valid }, + Range { from: '\u{11900}', to: '\u{11abf}', mapping: Disallowed }, + Range { from: '\u{11ac0}', to: '\u{11af8}', mapping: Valid }, + Range { from: '\u{11af9}', to: '\u{11bff}', mapping: Disallowed }, + Range { from: '\u{11c00}', to: '\u{11c08}', mapping: Valid }, + Range { from: '\u{11c09}', to: '\u{11c09}', mapping: Disallowed }, + Range { from: '\u{11c0a}', to: '\u{11c36}', mapping: Valid }, + Range { from: '\u{11c37}', to: '\u{11c37}', mapping: Disallowed }, + Range { from: '\u{11c38}', to: '\u{11c40}', mapping: Valid }, + Range { from: '\u{11c41}', to: '\u{11c45}', mapping: Valid }, + Range { from: '\u{11c46}', to: '\u{11c4f}', mapping: Disallowed }, + Range { from: '\u{11c50}', to: '\u{11c59}', mapping: Valid }, + Range { from: '\u{11c5a}', to: '\u{11c6c}', mapping: Valid }, + Range { from: '\u{11c6d}', to: '\u{11c6f}', mapping: Disallowed }, + Range { from: '\u{11c70}', to: '\u{11c71}', mapping: Valid }, + Range { from: '\u{11c72}', to: '\u{11c8f}', mapping: Valid }, + Range { from: '\u{11c90}', to: '\u{11c91}', mapping: Disallowed }, + Range { from: '\u{11c92}', to: '\u{11ca7}', mapping: Valid }, + Range { from: '\u{11ca8}', to: '\u{11ca8}', mapping: Disallowed }, + Range { from: '\u{11ca9}', to: '\u{11cb6}', mapping: Valid }, + Range { from: '\u{11cb7}', to: '\u{11fff}', mapping: Disallowed }, + Range { from: '\u{12000}', to: '\u{1236e}', mapping: Valid }, + Range { from: '\u{1236f}', to: '\u{12398}', mapping: Valid }, + Range { from: '\u{12399}', to: '\u{12399}', mapping: Valid }, + Range { from: '\u{1239a}', to: '\u{123ff}', mapping: Disallowed }, + Range { from: '\u{12400}', to: '\u{12462}', mapping: Valid }, + Range { from: '\u{12463}', to: '\u{1246e}', mapping: Valid }, + Range { from: '\u{1246f}', to: '\u{1246f}', mapping: Disallowed }, + Range { from: '\u{12470}', to: '\u{12473}', mapping: Valid }, + Range { from: '\u{12474}', to: '\u{12474}', mapping: Valid }, + Range { from: '\u{12475}', to: '\u{1247f}', mapping: Disallowed }, + Range { from: '\u{12480}', to: '\u{12543}', mapping: Valid }, + Range { from: '\u{12544}', to: '\u{12fff}', mapping: Disallowed }, + Range { from: '\u{13000}', to: '\u{1342e}', mapping: Valid }, + Range { from: '\u{1342f}', to: '\u{143ff}', mapping: Disallowed }, + Range { from: '\u{14400}', to: '\u{14646}', mapping: Valid }, + Range { from: '\u{14647}', to: '\u{167ff}', mapping: Disallowed }, + Range { from: '\u{16800}', to: '\u{16a38}', mapping: Valid }, + Range { from: '\u{16a39}', to: '\u{16a3f}', mapping: Disallowed }, + Range { from: '\u{16a40}', to: '\u{16a5e}', mapping: Valid }, + Range { from: '\u{16a5f}', to: '\u{16a5f}', mapping: Disallowed }, + Range { from: '\u{16a60}', to: '\u{16a69}', mapping: Valid }, + Range { from: '\u{16a6a}', to: '\u{16a6d}', mapping: Disallowed }, + Range { from: '\u{16a6e}', to: '\u{16a6f}', mapping: Valid }, + Range { from: '\u{16a70}', to: '\u{16acf}', mapping: Disallowed }, + Range { from: '\u{16ad0}', to: '\u{16aed}', mapping: Valid }, + Range { from: '\u{16aee}', to: '\u{16aef}', mapping: Disallowed }, + Range { from: '\u{16af0}', to: '\u{16af4}', mapping: Valid }, + Range { from: '\u{16af5}', to: '\u{16af5}', mapping: Valid }, + Range { from: '\u{16af6}', to: '\u{16aff}', mapping: Disallowed }, + Range { from: '\u{16b00}', to: '\u{16b36}', mapping: Valid }, + Range { from: '\u{16b37}', to: '\u{16b3f}', mapping: Valid }, + Range { from: '\u{16b40}', to: '\u{16b43}', mapping: Valid }, + Range { from: '\u{16b44}', to: '\u{16b45}', mapping: Valid }, + Range { from: '\u{16b46}', to: '\u{16b4f}', mapping: Disallowed }, + Range { from: '\u{16b50}', to: '\u{16b59}', mapping: Valid }, + Range { from: '\u{16b5a}', to: '\u{16b5a}', mapping: Disallowed }, + Range { from: '\u{16b5b}', to: '\u{16b61}', mapping: Valid }, + Range { from: '\u{16b62}', to: '\u{16b62}', mapping: Disallowed }, + Range { from: '\u{16b63}', to: '\u{16b77}', mapping: Valid }, + Range { from: '\u{16b78}', to: '\u{16b7c}', mapping: Disallowed }, + Range { from: '\u{16b7d}', to: '\u{16b8f}', mapping: Valid }, + Range { from: '\u{16b90}', to: '\u{16eff}', mapping: Disallowed }, + Range { from: '\u{16f00}', to: '\u{16f44}', mapping: Valid }, + Range { from: '\u{16f45}', to: '\u{16f4f}', mapping: Disallowed }, + Range { from: '\u{16f50}', to: '\u{16f7e}', mapping: Valid }, + Range { from: '\u{16f7f}', to: '\u{16f8e}', mapping: Disallowed }, + Range { from: '\u{16f8f}', to: '\u{16f9f}', mapping: Valid }, + Range { from: '\u{16fa0}', to: '\u{16fdf}', mapping: Disallowed }, + Range { from: '\u{16fe0}', to: '\u{16fe0}', mapping: Valid }, + Range { from: '\u{16fe1}', to: '\u{16fff}', mapping: Disallowed }, + Range { from: '\u{17000}', to: '\u{187ec}', mapping: Valid }, + Range { from: '\u{187ed}', to: '\u{187ff}', mapping: Disallowed }, + Range { from: '\u{18800}', to: '\u{18af2}', mapping: Valid }, + Range { from: '\u{18af3}', to: '\u{1afff}', mapping: Disallowed }, + Range { from: '\u{1b000}', to: '\u{1b001}', mapping: Valid }, + Range { from: '\u{1b002}', to: '\u{1bbff}', mapping: Disallowed }, + Range { from: '\u{1bc00}', to: '\u{1bc6a}', mapping: Valid }, + Range { from: '\u{1bc6b}', to: '\u{1bc6f}', mapping: Disallowed }, + Range { from: '\u{1bc70}', to: '\u{1bc7c}', mapping: Valid }, + Range { from: '\u{1bc7d}', to: '\u{1bc7f}', mapping: Disallowed }, + Range { from: '\u{1bc80}', to: '\u{1bc88}', mapping: Valid }, + Range { from: '\u{1bc89}', to: '\u{1bc8f}', mapping: Disallowed }, + Range { from: '\u{1bc90}', to: '\u{1bc99}', mapping: Valid }, + Range { from: '\u{1bc9a}', to: '\u{1bc9b}', mapping: Disallowed }, + Range { from: '\u{1bc9c}', to: '\u{1bc9c}', mapping: Valid }, + Range { from: '\u{1bc9d}', to: '\u{1bc9e}', mapping: Valid }, + Range { from: '\u{1bc9f}', to: '\u{1bc9f}', mapping: Valid }, + Range { from: '\u{1bca0}', to: '\u{1bca3}', mapping: Ignored }, + Range { from: '\u{1bca4}', to: '\u{1cfff}', mapping: Disallowed }, + Range { from: '\u{1d000}', to: '\u{1d0f5}', mapping: Valid }, + Range { from: '\u{1d0f6}', to: '\u{1d0ff}', mapping: Disallowed }, + Range { from: '\u{1d100}', to: '\u{1d126}', mapping: Valid }, + Range { from: '\u{1d127}', to: '\u{1d128}', mapping: Disallowed }, + Range { from: '\u{1d129}', to: '\u{1d129}', mapping: Valid }, + Range { from: '\u{1d12a}', to: '\u{1d15d}', mapping: Valid }, + Range { from: '\u{1d15e}', to: '\u{1d15e}', mapping: Mapped(StringTableSlice { byte_start: 10512, byte_len: 8 }) }, + Range { from: '\u{1d15f}', to: '\u{1d15f}', mapping: Mapped(StringTableSlice { byte_start: 10520, byte_len: 8 }) }, + Range { from: '\u{1d160}', to: '\u{1d160}', mapping: Mapped(StringTableSlice { byte_start: 10528, byte_len: 12 }) }, + Range { from: '\u{1d161}', to: '\u{1d161}', mapping: Mapped(StringTableSlice { byte_start: 10540, byte_len: 12 }) }, + Range { from: '\u{1d162}', to: '\u{1d162}', mapping: Mapped(StringTableSlice { byte_start: 10552, byte_len: 12 }) }, + Range { from: '\u{1d163}', to: '\u{1d163}', mapping: Mapped(StringTableSlice { byte_start: 10564, byte_len: 12 }) }, + Range { from: '\u{1d164}', to: '\u{1d164}', mapping: Mapped(StringTableSlice { byte_start: 10576, byte_len: 12 }) }, + Range { from: '\u{1d165}', to: '\u{1d172}', mapping: Valid }, + Range { from: '\u{1d173}', to: '\u{1d17a}', mapping: Disallowed }, + Range { from: '\u{1d17b}', to: '\u{1d1ba}', mapping: Valid }, + Range { from: '\u{1d1bb}', to: '\u{1d1bb}', mapping: Mapped(StringTableSlice { byte_start: 10588, byte_len: 8 }) }, + Range { from: '\u{1d1bc}', to: '\u{1d1bc}', mapping: Mapped(StringTableSlice { byte_start: 10596, byte_len: 8 }) }, + Range { from: '\u{1d1bd}', to: '\u{1d1bd}', mapping: Mapped(StringTableSlice { byte_start: 10604, byte_len: 12 }) }, + Range { from: '\u{1d1be}', to: '\u{1d1be}', mapping: Mapped(StringTableSlice { byte_start: 10616, byte_len: 12 }) }, + Range { from: '\u{1d1bf}', to: '\u{1d1bf}', mapping: Mapped(StringTableSlice { byte_start: 10628, byte_len: 12 }) }, + Range { from: '\u{1d1c0}', to: '\u{1d1c0}', mapping: Mapped(StringTableSlice { byte_start: 10640, byte_len: 12 }) }, + Range { from: '\u{1d1c1}', to: '\u{1d1dd}', mapping: Valid }, + Range { from: '\u{1d1de}', to: '\u{1d1e8}', mapping: Valid }, + Range { from: '\u{1d1e9}', to: '\u{1d1ff}', mapping: Disallowed }, + Range { from: '\u{1d200}', to: '\u{1d245}', mapping: Valid }, + Range { from: '\u{1d246}', to: '\u{1d2ff}', mapping: Disallowed }, + Range { from: '\u{1d300}', to: '\u{1d356}', mapping: Valid }, + Range { from: '\u{1d357}', to: '\u{1d35f}', mapping: Disallowed }, + Range { from: '\u{1d360}', to: '\u{1d371}', mapping: Valid }, + Range { from: '\u{1d372}', to: '\u{1d3ff}', mapping: Disallowed }, + Range { from: '\u{1d400}', to: '\u{1d400}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d401}', to: '\u{1d401}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d402}', to: '\u{1d402}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d403}', to: '\u{1d403}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d404}', to: '\u{1d404}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d405}', to: '\u{1d405}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d406}', to: '\u{1d406}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d407}', to: '\u{1d407}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d408}', to: '\u{1d408}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d409}', to: '\u{1d409}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d40a}', to: '\u{1d40a}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d40b}', to: '\u{1d40b}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d40c}', to: '\u{1d40c}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d40d}', to: '\u{1d40d}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d40e}', to: '\u{1d40e}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d40f}', to: '\u{1d40f}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d410}', to: '\u{1d410}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d411}', to: '\u{1d411}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d412}', to: '\u{1d412}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d413}', to: '\u{1d413}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d414}', to: '\u{1d414}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d415}', to: '\u{1d415}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d416}', to: '\u{1d416}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d417}', to: '\u{1d417}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d418}', to: '\u{1d418}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d419}', to: '\u{1d419}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d41a}', to: '\u{1d41a}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d41b}', to: '\u{1d41b}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d41c}', to: '\u{1d41c}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d41d}', to: '\u{1d41d}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d41e}', to: '\u{1d41e}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d41f}', to: '\u{1d41f}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d420}', to: '\u{1d420}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d421}', to: '\u{1d421}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d422}', to: '\u{1d422}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d423}', to: '\u{1d423}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d424}', to: '\u{1d424}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d425}', to: '\u{1d425}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d426}', to: '\u{1d426}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d427}', to: '\u{1d427}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d428}', to: '\u{1d428}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d429}', to: '\u{1d429}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d42a}', to: '\u{1d42a}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d42b}', to: '\u{1d42b}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d42c}', to: '\u{1d42c}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d42d}', to: '\u{1d42d}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d42e}', to: '\u{1d42e}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d42f}', to: '\u{1d42f}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d430}', to: '\u{1d430}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d431}', to: '\u{1d431}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d432}', to: '\u{1d432}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d433}', to: '\u{1d433}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d434}', to: '\u{1d434}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d435}', to: '\u{1d435}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d436}', to: '\u{1d436}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d437}', to: '\u{1d437}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d438}', to: '\u{1d438}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d439}', to: '\u{1d439}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d43a}', to: '\u{1d43a}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d43b}', to: '\u{1d43b}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d43c}', to: '\u{1d43c}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d43d}', to: '\u{1d43d}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d43e}', to: '\u{1d43e}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d43f}', to: '\u{1d43f}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d440}', to: '\u{1d440}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d441}', to: '\u{1d441}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d442}', to: '\u{1d442}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d443}', to: '\u{1d443}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d444}', to: '\u{1d444}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d445}', to: '\u{1d445}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d446}', to: '\u{1d446}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d447}', to: '\u{1d447}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d448}', to: '\u{1d448}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d449}', to: '\u{1d449}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d44a}', to: '\u{1d44a}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d44b}', to: '\u{1d44b}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d44c}', to: '\u{1d44c}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d44d}', to: '\u{1d44d}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d44e}', to: '\u{1d44e}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d44f}', to: '\u{1d44f}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d450}', to: '\u{1d450}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d451}', to: '\u{1d451}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d452}', to: '\u{1d452}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d453}', to: '\u{1d453}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d454}', to: '\u{1d454}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d455}', to: '\u{1d455}', mapping: Disallowed }, + Range { from: '\u{1d456}', to: '\u{1d456}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d457}', to: '\u{1d457}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d458}', to: '\u{1d458}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d459}', to: '\u{1d459}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d45a}', to: '\u{1d45a}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d45b}', to: '\u{1d45b}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d45c}', to: '\u{1d45c}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d45d}', to: '\u{1d45d}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d45e}', to: '\u{1d45e}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d45f}', to: '\u{1d45f}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d460}', to: '\u{1d460}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d461}', to: '\u{1d461}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d462}', to: '\u{1d462}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d463}', to: '\u{1d463}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d464}', to: '\u{1d464}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d465}', to: '\u{1d465}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d466}', to: '\u{1d466}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d467}', to: '\u{1d467}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d468}', to: '\u{1d468}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d469}', to: '\u{1d469}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d46a}', to: '\u{1d46a}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d46b}', to: '\u{1d46b}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d46c}', to: '\u{1d46c}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d46d}', to: '\u{1d46d}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d46e}', to: '\u{1d46e}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d46f}', to: '\u{1d46f}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d470}', to: '\u{1d470}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d471}', to: '\u{1d471}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d472}', to: '\u{1d472}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d473}', to: '\u{1d473}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d474}', to: '\u{1d474}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d475}', to: '\u{1d475}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d476}', to: '\u{1d476}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d477}', to: '\u{1d477}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d478}', to: '\u{1d478}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d479}', to: '\u{1d479}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d47a}', to: '\u{1d47a}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d47b}', to: '\u{1d47b}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d47c}', to: '\u{1d47c}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d47d}', to: '\u{1d47d}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d47e}', to: '\u{1d47e}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d47f}', to: '\u{1d47f}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d480}', to: '\u{1d480}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d481}', to: '\u{1d481}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d482}', to: '\u{1d482}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d483}', to: '\u{1d483}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d484}', to: '\u{1d484}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d485}', to: '\u{1d485}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d486}', to: '\u{1d486}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d487}', to: '\u{1d487}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d488}', to: '\u{1d488}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d489}', to: '\u{1d489}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d48a}', to: '\u{1d48a}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d48b}', to: '\u{1d48b}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d48c}', to: '\u{1d48c}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d48d}', to: '\u{1d48d}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d48e}', to: '\u{1d48e}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d48f}', to: '\u{1d48f}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d490}', to: '\u{1d490}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d491}', to: '\u{1d491}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d492}', to: '\u{1d492}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d493}', to: '\u{1d493}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d494}', to: '\u{1d494}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d495}', to: '\u{1d495}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d496}', to: '\u{1d496}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d497}', to: '\u{1d497}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d498}', to: '\u{1d498}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d499}', to: '\u{1d499}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d49a}', to: '\u{1d49a}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d49b}', to: '\u{1d49b}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d49c}', to: '\u{1d49c}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d49d}', to: '\u{1d49d}', mapping: Disallowed }, + Range { from: '\u{1d49e}', to: '\u{1d49e}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d49f}', to: '\u{1d49f}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d4a0}', to: '\u{1d4a1}', mapping: Disallowed }, + Range { from: '\u{1d4a2}', to: '\u{1d4a2}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d4a3}', to: '\u{1d4a4}', mapping: Disallowed }, + Range { from: '\u{1d4a5}', to: '\u{1d4a5}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d4a6}', to: '\u{1d4a6}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d4a7}', to: '\u{1d4a8}', mapping: Disallowed }, + Range { from: '\u{1d4a9}', to: '\u{1d4a9}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d4aa}', to: '\u{1d4aa}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d4ab}', to: '\u{1d4ab}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d4ac}', to: '\u{1d4ac}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d4ad}', to: '\u{1d4ad}', mapping: Disallowed }, + Range { from: '\u{1d4ae}', to: '\u{1d4ae}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d4af}', to: '\u{1d4af}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d4b0}', to: '\u{1d4b0}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d4b1}', to: '\u{1d4b1}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d4b2}', to: '\u{1d4b2}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d4b3}', to: '\u{1d4b3}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d4b4}', to: '\u{1d4b4}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d4b5}', to: '\u{1d4b5}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d4b6}', to: '\u{1d4b6}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d4b7}', to: '\u{1d4b7}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d4b8}', to: '\u{1d4b8}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d4b9}', to: '\u{1d4b9}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d4ba}', to: '\u{1d4ba}', mapping: Disallowed }, + Range { from: '\u{1d4bb}', to: '\u{1d4bb}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d4bc}', to: '\u{1d4bc}', mapping: Disallowed }, + Range { from: '\u{1d4bd}', to: '\u{1d4bd}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d4be}', to: '\u{1d4be}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d4bf}', to: '\u{1d4bf}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d4c0}', to: '\u{1d4c0}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d4c1}', to: '\u{1d4c1}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d4c2}', to: '\u{1d4c2}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d4c3}', to: '\u{1d4c3}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d4c4}', to: '\u{1d4c4}', mapping: Disallowed }, + Range { from: '\u{1d4c5}', to: '\u{1d4c5}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d4c6}', to: '\u{1d4c6}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d4c7}', to: '\u{1d4c7}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d4c8}', to: '\u{1d4c8}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d4c9}', to: '\u{1d4c9}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d4ca}', to: '\u{1d4ca}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d4cb}', to: '\u{1d4cb}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d4cc}', to: '\u{1d4cc}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d4cd}', to: '\u{1d4cd}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d4ce}', to: '\u{1d4ce}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d4cf}', to: '\u{1d4cf}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d4d0}', to: '\u{1d4d0}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d4d1}', to: '\u{1d4d1}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d4d2}', to: '\u{1d4d2}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d4d3}', to: '\u{1d4d3}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d4d4}', to: '\u{1d4d4}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d4d5}', to: '\u{1d4d5}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d4d6}', to: '\u{1d4d6}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d4d7}', to: '\u{1d4d7}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d4d8}', to: '\u{1d4d8}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d4d9}', to: '\u{1d4d9}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d4da}', to: '\u{1d4da}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d4db}', to: '\u{1d4db}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d4dc}', to: '\u{1d4dc}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d4dd}', to: '\u{1d4dd}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d4de}', to: '\u{1d4de}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d4df}', to: '\u{1d4df}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d4e0}', to: '\u{1d4e0}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d4e1}', to: '\u{1d4e1}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d4e2}', to: '\u{1d4e2}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d4e3}', to: '\u{1d4e3}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d4e4}', to: '\u{1d4e4}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d4e5}', to: '\u{1d4e5}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d4e6}', to: '\u{1d4e6}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d4e7}', to: '\u{1d4e7}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d4e8}', to: '\u{1d4e8}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d4e9}', to: '\u{1d4e9}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d4ea}', to: '\u{1d4ea}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d4eb}', to: '\u{1d4eb}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d4ec}', to: '\u{1d4ec}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d4ed}', to: '\u{1d4ed}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d4ee}', to: '\u{1d4ee}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d4ef}', to: '\u{1d4ef}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d4f0}', to: '\u{1d4f0}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d4f1}', to: '\u{1d4f1}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d4f2}', to: '\u{1d4f2}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d4f3}', to: '\u{1d4f3}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d4f4}', to: '\u{1d4f4}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d4f5}', to: '\u{1d4f5}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d4f6}', to: '\u{1d4f6}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d4f7}', to: '\u{1d4f7}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d4f8}', to: '\u{1d4f8}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d4f9}', to: '\u{1d4f9}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d4fa}', to: '\u{1d4fa}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d4fb}', to: '\u{1d4fb}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d4fc}', to: '\u{1d4fc}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d4fd}', to: '\u{1d4fd}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d4fe}', to: '\u{1d4fe}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d4ff}', to: '\u{1d4ff}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d500}', to: '\u{1d500}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d501}', to: '\u{1d501}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d502}', to: '\u{1d502}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d503}', to: '\u{1d503}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d504}', to: '\u{1d504}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d505}', to: '\u{1d505}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d506}', to: '\u{1d506}', mapping: Disallowed }, + Range { from: '\u{1d507}', to: '\u{1d507}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d508}', to: '\u{1d508}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d509}', to: '\u{1d509}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d50a}', to: '\u{1d50a}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d50b}', to: '\u{1d50c}', mapping: Disallowed }, + Range { from: '\u{1d50d}', to: '\u{1d50d}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d50e}', to: '\u{1d50e}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d50f}', to: '\u{1d50f}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d510}', to: '\u{1d510}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d511}', to: '\u{1d511}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d512}', to: '\u{1d512}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d513}', to: '\u{1d513}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d514}', to: '\u{1d514}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d515}', to: '\u{1d515}', mapping: Disallowed }, + Range { from: '\u{1d516}', to: '\u{1d516}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d517}', to: '\u{1d517}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d518}', to: '\u{1d518}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d519}', to: '\u{1d519}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d51a}', to: '\u{1d51a}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d51b}', to: '\u{1d51b}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d51c}', to: '\u{1d51c}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d51d}', to: '\u{1d51d}', mapping: Disallowed }, + Range { from: '\u{1d51e}', to: '\u{1d51e}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d51f}', to: '\u{1d51f}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d520}', to: '\u{1d520}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d521}', to: '\u{1d521}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d522}', to: '\u{1d522}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d523}', to: '\u{1d523}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d524}', to: '\u{1d524}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d525}', to: '\u{1d525}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d526}', to: '\u{1d526}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d527}', to: '\u{1d527}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d528}', to: '\u{1d528}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d529}', to: '\u{1d529}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d52a}', to: '\u{1d52a}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d52b}', to: '\u{1d52b}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d52c}', to: '\u{1d52c}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d52d}', to: '\u{1d52d}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d52e}', to: '\u{1d52e}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d52f}', to: '\u{1d52f}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d530}', to: '\u{1d530}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d531}', to: '\u{1d531}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d532}', to: '\u{1d532}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d533}', to: '\u{1d533}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d534}', to: '\u{1d534}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d535}', to: '\u{1d535}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d536}', to: '\u{1d536}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d537}', to: '\u{1d537}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d538}', to: '\u{1d538}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d539}', to: '\u{1d539}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d53a}', to: '\u{1d53a}', mapping: Disallowed }, + Range { from: '\u{1d53b}', to: '\u{1d53b}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d53c}', to: '\u{1d53c}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d53d}', to: '\u{1d53d}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d53e}', to: '\u{1d53e}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d53f}', to: '\u{1d53f}', mapping: Disallowed }, + Range { from: '\u{1d540}', to: '\u{1d540}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d541}', to: '\u{1d541}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d542}', to: '\u{1d542}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d543}', to: '\u{1d543}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d544}', to: '\u{1d544}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d545}', to: '\u{1d545}', mapping: Disallowed }, + Range { from: '\u{1d546}', to: '\u{1d546}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d547}', to: '\u{1d549}', mapping: Disallowed }, + Range { from: '\u{1d54a}', to: '\u{1d54a}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d54b}', to: '\u{1d54b}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d54c}', to: '\u{1d54c}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d54d}', to: '\u{1d54d}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d54e}', to: '\u{1d54e}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d54f}', to: '\u{1d54f}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d550}', to: '\u{1d550}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d551}', to: '\u{1d551}', mapping: Disallowed }, + Range { from: '\u{1d552}', to: '\u{1d552}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d553}', to: '\u{1d553}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d554}', to: '\u{1d554}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d555}', to: '\u{1d555}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d556}', to: '\u{1d556}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d557}', to: '\u{1d557}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d558}', to: '\u{1d558}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d559}', to: '\u{1d559}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d55a}', to: '\u{1d55a}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d55b}', to: '\u{1d55b}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d55c}', to: '\u{1d55c}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d55d}', to: '\u{1d55d}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d55e}', to: '\u{1d55e}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d55f}', to: '\u{1d55f}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d560}', to: '\u{1d560}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d561}', to: '\u{1d561}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d562}', to: '\u{1d562}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d563}', to: '\u{1d563}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d564}', to: '\u{1d564}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d565}', to: '\u{1d565}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d566}', to: '\u{1d566}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d567}', to: '\u{1d567}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d568}', to: '\u{1d568}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d569}', to: '\u{1d569}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d56a}', to: '\u{1d56a}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d56b}', to: '\u{1d56b}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d56c}', to: '\u{1d56c}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d56d}', to: '\u{1d56d}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d56e}', to: '\u{1d56e}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d56f}', to: '\u{1d56f}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d570}', to: '\u{1d570}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d571}', to: '\u{1d571}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d572}', to: '\u{1d572}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d573}', to: '\u{1d573}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d574}', to: '\u{1d574}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d575}', to: '\u{1d575}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d576}', to: '\u{1d576}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d577}', to: '\u{1d577}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d578}', to: '\u{1d578}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d579}', to: '\u{1d579}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d57a}', to: '\u{1d57a}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d57b}', to: '\u{1d57b}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d57c}', to: '\u{1d57c}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d57d}', to: '\u{1d57d}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d57e}', to: '\u{1d57e}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d57f}', to: '\u{1d57f}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d580}', to: '\u{1d580}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d581}', to: '\u{1d581}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d582}', to: '\u{1d582}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d583}', to: '\u{1d583}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d584}', to: '\u{1d584}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d585}', to: '\u{1d585}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d586}', to: '\u{1d586}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d587}', to: '\u{1d587}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d588}', to: '\u{1d588}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d589}', to: '\u{1d589}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d58a}', to: '\u{1d58a}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d58b}', to: '\u{1d58b}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d58c}', to: '\u{1d58c}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d58d}', to: '\u{1d58d}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d58e}', to: '\u{1d58e}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d58f}', to: '\u{1d58f}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d590}', to: '\u{1d590}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d591}', to: '\u{1d591}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d592}', to: '\u{1d592}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d593}', to: '\u{1d593}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d594}', to: '\u{1d594}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d595}', to: '\u{1d595}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d596}', to: '\u{1d596}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d597}', to: '\u{1d597}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d598}', to: '\u{1d598}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d599}', to: '\u{1d599}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d59a}', to: '\u{1d59a}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d59b}', to: '\u{1d59b}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d59c}', to: '\u{1d59c}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d59d}', to: '\u{1d59d}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d59e}', to: '\u{1d59e}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d59f}', to: '\u{1d59f}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d5a0}', to: '\u{1d5a0}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d5a1}', to: '\u{1d5a1}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d5a2}', to: '\u{1d5a2}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d5a3}', to: '\u{1d5a3}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d5a4}', to: '\u{1d5a4}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d5a5}', to: '\u{1d5a5}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d5a6}', to: '\u{1d5a6}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d5a7}', to: '\u{1d5a7}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d5a8}', to: '\u{1d5a8}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d5a9}', to: '\u{1d5a9}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d5aa}', to: '\u{1d5aa}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d5ab}', to: '\u{1d5ab}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d5ac}', to: '\u{1d5ac}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d5ad}', to: '\u{1d5ad}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d5ae}', to: '\u{1d5ae}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d5af}', to: '\u{1d5af}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d5b0}', to: '\u{1d5b0}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d5b1}', to: '\u{1d5b1}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d5b2}', to: '\u{1d5b2}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d5b3}', to: '\u{1d5b3}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d5b4}', to: '\u{1d5b4}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d5b5}', to: '\u{1d5b5}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d5b6}', to: '\u{1d5b6}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d5b7}', to: '\u{1d5b7}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d5b8}', to: '\u{1d5b8}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d5b9}', to: '\u{1d5b9}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d5ba}', to: '\u{1d5ba}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d5bb}', to: '\u{1d5bb}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d5bc}', to: '\u{1d5bc}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d5bd}', to: '\u{1d5bd}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d5be}', to: '\u{1d5be}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d5bf}', to: '\u{1d5bf}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d5c0}', to: '\u{1d5c0}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d5c1}', to: '\u{1d5c1}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d5c2}', to: '\u{1d5c2}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d5c3}', to: '\u{1d5c3}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d5c4}', to: '\u{1d5c4}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d5c5}', to: '\u{1d5c5}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d5c6}', to: '\u{1d5c6}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d5c7}', to: '\u{1d5c7}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d5c8}', to: '\u{1d5c8}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d5c9}', to: '\u{1d5c9}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d5ca}', to: '\u{1d5ca}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d5cb}', to: '\u{1d5cb}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d5cc}', to: '\u{1d5cc}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d5cd}', to: '\u{1d5cd}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d5ce}', to: '\u{1d5ce}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d5cf}', to: '\u{1d5cf}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d5d0}', to: '\u{1d5d0}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d5d1}', to: '\u{1d5d1}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d5d2}', to: '\u{1d5d2}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d5d3}', to: '\u{1d5d3}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d5d4}', to: '\u{1d5d4}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d5d5}', to: '\u{1d5d5}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d5d6}', to: '\u{1d5d6}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d5d7}', to: '\u{1d5d7}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d5d8}', to: '\u{1d5d8}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d5d9}', to: '\u{1d5d9}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d5da}', to: '\u{1d5da}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d5db}', to: '\u{1d5db}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d5dc}', to: '\u{1d5dc}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d5dd}', to: '\u{1d5dd}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d5de}', to: '\u{1d5de}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d5df}', to: '\u{1d5df}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d5e0}', to: '\u{1d5e0}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d5e1}', to: '\u{1d5e1}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d5e2}', to: '\u{1d5e2}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d5e3}', to: '\u{1d5e3}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d5e4}', to: '\u{1d5e4}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d5e5}', to: '\u{1d5e5}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d5e6}', to: '\u{1d5e6}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d5e7}', to: '\u{1d5e7}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d5e8}', to: '\u{1d5e8}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d5e9}', to: '\u{1d5e9}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d5ea}', to: '\u{1d5ea}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d5eb}', to: '\u{1d5eb}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d5ec}', to: '\u{1d5ec}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d5ed}', to: '\u{1d5ed}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d5ee}', to: '\u{1d5ee}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d5ef}', to: '\u{1d5ef}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d5f0}', to: '\u{1d5f0}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d5f1}', to: '\u{1d5f1}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d5f2}', to: '\u{1d5f2}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d5f3}', to: '\u{1d5f3}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d5f4}', to: '\u{1d5f4}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d5f5}', to: '\u{1d5f5}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d5f6}', to: '\u{1d5f6}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d5f7}', to: '\u{1d5f7}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d5f8}', to: '\u{1d5f8}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d5f9}', to: '\u{1d5f9}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d5fa}', to: '\u{1d5fa}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d5fb}', to: '\u{1d5fb}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d5fc}', to: '\u{1d5fc}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d5fd}', to: '\u{1d5fd}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d5fe}', to: '\u{1d5fe}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d5ff}', to: '\u{1d5ff}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d600}', to: '\u{1d600}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d601}', to: '\u{1d601}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d602}', to: '\u{1d602}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d603}', to: '\u{1d603}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d604}', to: '\u{1d604}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d605}', to: '\u{1d605}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d606}', to: '\u{1d606}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d607}', to: '\u{1d607}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d608}', to: '\u{1d608}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d609}', to: '\u{1d609}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d60a}', to: '\u{1d60a}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d60b}', to: '\u{1d60b}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d60c}', to: '\u{1d60c}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d60d}', to: '\u{1d60d}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d60e}', to: '\u{1d60e}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d60f}', to: '\u{1d60f}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d610}', to: '\u{1d610}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d611}', to: '\u{1d611}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d612}', to: '\u{1d612}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d613}', to: '\u{1d613}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d614}', to: '\u{1d614}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d615}', to: '\u{1d615}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d616}', to: '\u{1d616}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d617}', to: '\u{1d617}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d618}', to: '\u{1d618}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d619}', to: '\u{1d619}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d61a}', to: '\u{1d61a}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d61b}', to: '\u{1d61b}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d61c}', to: '\u{1d61c}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d61d}', to: '\u{1d61d}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d61e}', to: '\u{1d61e}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d61f}', to: '\u{1d61f}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d620}', to: '\u{1d620}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d621}', to: '\u{1d621}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d622}', to: '\u{1d622}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d623}', to: '\u{1d623}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d624}', to: '\u{1d624}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d625}', to: '\u{1d625}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d626}', to: '\u{1d626}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d627}', to: '\u{1d627}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d628}', to: '\u{1d628}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d629}', to: '\u{1d629}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d62a}', to: '\u{1d62a}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d62b}', to: '\u{1d62b}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d62c}', to: '\u{1d62c}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d62d}', to: '\u{1d62d}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d62e}', to: '\u{1d62e}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d62f}', to: '\u{1d62f}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d630}', to: '\u{1d630}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d631}', to: '\u{1d631}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d632}', to: '\u{1d632}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d633}', to: '\u{1d633}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d634}', to: '\u{1d634}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d635}', to: '\u{1d635}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d636}', to: '\u{1d636}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d637}', to: '\u{1d637}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d638}', to: '\u{1d638}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d639}', to: '\u{1d639}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d63a}', to: '\u{1d63a}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d63b}', to: '\u{1d63b}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d63c}', to: '\u{1d63c}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d63d}', to: '\u{1d63d}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d63e}', to: '\u{1d63e}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d63f}', to: '\u{1d63f}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d640}', to: '\u{1d640}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d641}', to: '\u{1d641}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d642}', to: '\u{1d642}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d643}', to: '\u{1d643}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d644}', to: '\u{1d644}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d645}', to: '\u{1d645}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d646}', to: '\u{1d646}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d647}', to: '\u{1d647}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d648}', to: '\u{1d648}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d649}', to: '\u{1d649}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d64a}', to: '\u{1d64a}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d64b}', to: '\u{1d64b}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d64c}', to: '\u{1d64c}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d64d}', to: '\u{1d64d}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d64e}', to: '\u{1d64e}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d64f}', to: '\u{1d64f}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d650}', to: '\u{1d650}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d651}', to: '\u{1d651}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d652}', to: '\u{1d652}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d653}', to: '\u{1d653}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d654}', to: '\u{1d654}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d655}', to: '\u{1d655}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d656}', to: '\u{1d656}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d657}', to: '\u{1d657}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d658}', to: '\u{1d658}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d659}', to: '\u{1d659}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d65a}', to: '\u{1d65a}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d65b}', to: '\u{1d65b}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d65c}', to: '\u{1d65c}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d65d}', to: '\u{1d65d}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d65e}', to: '\u{1d65e}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d65f}', to: '\u{1d65f}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d660}', to: '\u{1d660}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d661}', to: '\u{1d661}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d662}', to: '\u{1d662}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d663}', to: '\u{1d663}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d664}', to: '\u{1d664}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d665}', to: '\u{1d665}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d666}', to: '\u{1d666}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d667}', to: '\u{1d667}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d668}', to: '\u{1d668}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d669}', to: '\u{1d669}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d66a}', to: '\u{1d66a}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d66b}', to: '\u{1d66b}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d66c}', to: '\u{1d66c}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d66d}', to: '\u{1d66d}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d66e}', to: '\u{1d66e}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d66f}', to: '\u{1d66f}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d670}', to: '\u{1d670}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d671}', to: '\u{1d671}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d672}', to: '\u{1d672}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d673}', to: '\u{1d673}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d674}', to: '\u{1d674}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d675}', to: '\u{1d675}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d676}', to: '\u{1d676}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d677}', to: '\u{1d677}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d678}', to: '\u{1d678}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d679}', to: '\u{1d679}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d67a}', to: '\u{1d67a}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d67b}', to: '\u{1d67b}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d67c}', to: '\u{1d67c}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d67d}', to: '\u{1d67d}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d67e}', to: '\u{1d67e}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d67f}', to: '\u{1d67f}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d680}', to: '\u{1d680}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d681}', to: '\u{1d681}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d682}', to: '\u{1d682}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d683}', to: '\u{1d683}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d684}', to: '\u{1d684}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d685}', to: '\u{1d685}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d686}', to: '\u{1d686}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d687}', to: '\u{1d687}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d688}', to: '\u{1d688}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d689}', to: '\u{1d689}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d68a}', to: '\u{1d68a}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1d68b}', to: '\u{1d68b}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1d68c}', to: '\u{1d68c}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1d68d}', to: '\u{1d68d}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1d68e}', to: '\u{1d68e}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1d68f}', to: '\u{1d68f}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1d690}', to: '\u{1d690}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1d691}', to: '\u{1d691}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1d692}', to: '\u{1d692}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1d693}', to: '\u{1d693}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1d694}', to: '\u{1d694}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1d695}', to: '\u{1d695}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1d696}', to: '\u{1d696}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1d697}', to: '\u{1d697}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1d698}', to: '\u{1d698}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1d699}', to: '\u{1d699}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1d69a}', to: '\u{1d69a}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1d69b}', to: '\u{1d69b}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1d69c}', to: '\u{1d69c}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1d69d}', to: '\u{1d69d}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1d69e}', to: '\u{1d69e}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1d69f}', to: '\u{1d69f}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1d6a0}', to: '\u{1d6a0}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1d6a1}', to: '\u{1d6a1}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1d6a2}', to: '\u{1d6a2}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1d6a3}', to: '\u{1d6a3}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1d6a4}', to: '\u{1d6a4}', mapping: Mapped(StringTableSlice { byte_start: 10652, byte_len: 2 }) }, + Range { from: '\u{1d6a5}', to: '\u{1d6a5}', mapping: Mapped(StringTableSlice { byte_start: 10654, byte_len: 2 }) }, + Range { from: '\u{1d6a6}', to: '\u{1d6a7}', mapping: Disallowed }, + Range { from: '\u{1d6a8}', to: '\u{1d6a8}', mapping: Mapped(StringTableSlice { byte_start: 536, byte_len: 2 }) }, + Range { from: '\u{1d6a9}', to: '\u{1d6a9}', mapping: Mapped(StringTableSlice { byte_start: 538, byte_len: 2 }) }, + Range { from: '\u{1d6aa}', to: '\u{1d6aa}', mapping: Mapped(StringTableSlice { byte_start: 540, byte_len: 2 }) }, + Range { from: '\u{1d6ab}', to: '\u{1d6ab}', mapping: Mapped(StringTableSlice { byte_start: 542, byte_len: 2 }) }, + Range { from: '\u{1d6ac}', to: '\u{1d6ac}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{1d6ad}', to: '\u{1d6ad}', mapping: Mapped(StringTableSlice { byte_start: 546, byte_len: 2 }) }, + Range { from: '\u{1d6ae}', to: '\u{1d6ae}', mapping: Mapped(StringTableSlice { byte_start: 548, byte_len: 2 }) }, + Range { from: '\u{1d6af}', to: '\u{1d6af}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d6b0}', to: '\u{1d6b0}', mapping: Mapped(StringTableSlice { byte_start: 499, byte_len: 2 }) }, + Range { from: '\u{1d6b1}', to: '\u{1d6b1}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{1d6b2}', to: '\u{1d6b2}', mapping: Mapped(StringTableSlice { byte_start: 554, byte_len: 2 }) }, + Range { from: '\u{1d6b3}', to: '\u{1d6b3}', mapping: Mapped(StringTableSlice { byte_start: 38, byte_len: 2 }) }, + Range { from: '\u{1d6b4}', to: '\u{1d6b4}', mapping: Mapped(StringTableSlice { byte_start: 556, byte_len: 2 }) }, + Range { from: '\u{1d6b5}', to: '\u{1d6b5}', mapping: Mapped(StringTableSlice { byte_start: 558, byte_len: 2 }) }, + Range { from: '\u{1d6b6}', to: '\u{1d6b6}', mapping: Mapped(StringTableSlice { byte_start: 560, byte_len: 2 }) }, + Range { from: '\u{1d6b7}', to: '\u{1d6b7}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{1d6b8}', to: '\u{1d6b8}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{1d6b9}', to: '\u{1d6b9}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d6ba}', to: '\u{1d6ba}', mapping: Mapped(StringTableSlice { byte_start: 566, byte_len: 2 }) }, + Range { from: '\u{1d6bb}', to: '\u{1d6bb}', mapping: Mapped(StringTableSlice { byte_start: 568, byte_len: 2 }) }, + Range { from: '\u{1d6bc}', to: '\u{1d6bc}', mapping: Mapped(StringTableSlice { byte_start: 570, byte_len: 2 }) }, + Range { from: '\u{1d6bd}', to: '\u{1d6bd}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d6be}', to: '\u{1d6be}', mapping: Mapped(StringTableSlice { byte_start: 574, byte_len: 2 }) }, + Range { from: '\u{1d6bf}', to: '\u{1d6bf}', mapping: Mapped(StringTableSlice { byte_start: 576, byte_len: 2 }) }, + Range { from: '\u{1d6c0}', to: '\u{1d6c0}', mapping: Mapped(StringTableSlice { byte_start: 578, byte_len: 2 }) }, + Range { from: '\u{1d6c1}', to: '\u{1d6c1}', mapping: Mapped(StringTableSlice { byte_start: 10656, byte_len: 3 }) }, + Range { from: '\u{1d6c2}', to: '\u{1d6c2}', mapping: Mapped(StringTableSlice { byte_start: 536, byte_len: 2 }) }, + Range { from: '\u{1d6c3}', to: '\u{1d6c3}', mapping: Mapped(StringTableSlice { byte_start: 538, byte_len: 2 }) }, + Range { from: '\u{1d6c4}', to: '\u{1d6c4}', mapping: Mapped(StringTableSlice { byte_start: 540, byte_len: 2 }) }, + Range { from: '\u{1d6c5}', to: '\u{1d6c5}', mapping: Mapped(StringTableSlice { byte_start: 542, byte_len: 2 }) }, + Range { from: '\u{1d6c6}', to: '\u{1d6c6}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{1d6c7}', to: '\u{1d6c7}', mapping: Mapped(StringTableSlice { byte_start: 546, byte_len: 2 }) }, + Range { from: '\u{1d6c8}', to: '\u{1d6c8}', mapping: Mapped(StringTableSlice { byte_start: 548, byte_len: 2 }) }, + Range { from: '\u{1d6c9}', to: '\u{1d6c9}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d6ca}', to: '\u{1d6ca}', mapping: Mapped(StringTableSlice { byte_start: 499, byte_len: 2 }) }, + Range { from: '\u{1d6cb}', to: '\u{1d6cb}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{1d6cc}', to: '\u{1d6cc}', mapping: Mapped(StringTableSlice { byte_start: 554, byte_len: 2 }) }, + Range { from: '\u{1d6cd}', to: '\u{1d6cd}', mapping: Mapped(StringTableSlice { byte_start: 38, byte_len: 2 }) }, + Range { from: '\u{1d6ce}', to: '\u{1d6ce}', mapping: Mapped(StringTableSlice { byte_start: 556, byte_len: 2 }) }, + Range { from: '\u{1d6cf}', to: '\u{1d6cf}', mapping: Mapped(StringTableSlice { byte_start: 558, byte_len: 2 }) }, + Range { from: '\u{1d6d0}', to: '\u{1d6d0}', mapping: Mapped(StringTableSlice { byte_start: 560, byte_len: 2 }) }, + Range { from: '\u{1d6d1}', to: '\u{1d6d1}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{1d6d2}', to: '\u{1d6d2}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{1d6d3}', to: '\u{1d6d4}', mapping: Mapped(StringTableSlice { byte_start: 566, byte_len: 2 }) }, + Range { from: '\u{1d6d5}', to: '\u{1d6d5}', mapping: Mapped(StringTableSlice { byte_start: 568, byte_len: 2 }) }, + Range { from: '\u{1d6d6}', to: '\u{1d6d6}', mapping: Mapped(StringTableSlice { byte_start: 570, byte_len: 2 }) }, + Range { from: '\u{1d6d7}', to: '\u{1d6d7}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d6d8}', to: '\u{1d6d8}', mapping: Mapped(StringTableSlice { byte_start: 574, byte_len: 2 }) }, + Range { from: '\u{1d6d9}', to: '\u{1d6d9}', mapping: Mapped(StringTableSlice { byte_start: 576, byte_len: 2 }) }, + Range { from: '\u{1d6da}', to: '\u{1d6da}', mapping: Mapped(StringTableSlice { byte_start: 578, byte_len: 2 }) }, + Range { from: '\u{1d6db}', to: '\u{1d6db}', mapping: Mapped(StringTableSlice { byte_start: 10659, byte_len: 3 }) }, + Range { from: '\u{1d6dc}', to: '\u{1d6dc}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{1d6dd}', to: '\u{1d6dd}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d6de}', to: '\u{1d6de}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{1d6df}', to: '\u{1d6df}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d6e0}', to: '\u{1d6e0}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{1d6e1}', to: '\u{1d6e1}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{1d6e2}', to: '\u{1d6e2}', mapping: Mapped(StringTableSlice { byte_start: 536, byte_len: 2 }) }, + Range { from: '\u{1d6e3}', to: '\u{1d6e3}', mapping: Mapped(StringTableSlice { byte_start: 538, byte_len: 2 }) }, + Range { from: '\u{1d6e4}', to: '\u{1d6e4}', mapping: Mapped(StringTableSlice { byte_start: 540, byte_len: 2 }) }, + Range { from: '\u{1d6e5}', to: '\u{1d6e5}', mapping: Mapped(StringTableSlice { byte_start: 542, byte_len: 2 }) }, + Range { from: '\u{1d6e6}', to: '\u{1d6e6}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{1d6e7}', to: '\u{1d6e7}', mapping: Mapped(StringTableSlice { byte_start: 546, byte_len: 2 }) }, + Range { from: '\u{1d6e8}', to: '\u{1d6e8}', mapping: Mapped(StringTableSlice { byte_start: 548, byte_len: 2 }) }, + Range { from: '\u{1d6e9}', to: '\u{1d6e9}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d6ea}', to: '\u{1d6ea}', mapping: Mapped(StringTableSlice { byte_start: 499, byte_len: 2 }) }, + Range { from: '\u{1d6eb}', to: '\u{1d6eb}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{1d6ec}', to: '\u{1d6ec}', mapping: Mapped(StringTableSlice { byte_start: 554, byte_len: 2 }) }, + Range { from: '\u{1d6ed}', to: '\u{1d6ed}', mapping: Mapped(StringTableSlice { byte_start: 38, byte_len: 2 }) }, + Range { from: '\u{1d6ee}', to: '\u{1d6ee}', mapping: Mapped(StringTableSlice { byte_start: 556, byte_len: 2 }) }, + Range { from: '\u{1d6ef}', to: '\u{1d6ef}', mapping: Mapped(StringTableSlice { byte_start: 558, byte_len: 2 }) }, + Range { from: '\u{1d6f0}', to: '\u{1d6f0}', mapping: Mapped(StringTableSlice { byte_start: 560, byte_len: 2 }) }, + Range { from: '\u{1d6f1}', to: '\u{1d6f1}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{1d6f2}', to: '\u{1d6f2}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{1d6f3}', to: '\u{1d6f3}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d6f4}', to: '\u{1d6f4}', mapping: Mapped(StringTableSlice { byte_start: 566, byte_len: 2 }) }, + Range { from: '\u{1d6f5}', to: '\u{1d6f5}', mapping: Mapped(StringTableSlice { byte_start: 568, byte_len: 2 }) }, + Range { from: '\u{1d6f6}', to: '\u{1d6f6}', mapping: Mapped(StringTableSlice { byte_start: 570, byte_len: 2 }) }, + Range { from: '\u{1d6f7}', to: '\u{1d6f7}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d6f8}', to: '\u{1d6f8}', mapping: Mapped(StringTableSlice { byte_start: 574, byte_len: 2 }) }, + Range { from: '\u{1d6f9}', to: '\u{1d6f9}', mapping: Mapped(StringTableSlice { byte_start: 576, byte_len: 2 }) }, + Range { from: '\u{1d6fa}', to: '\u{1d6fa}', mapping: Mapped(StringTableSlice { byte_start: 578, byte_len: 2 }) }, + Range { from: '\u{1d6fb}', to: '\u{1d6fb}', mapping: Mapped(StringTableSlice { byte_start: 10656, byte_len: 3 }) }, + Range { from: '\u{1d6fc}', to: '\u{1d6fc}', mapping: Mapped(StringTableSlice { byte_start: 536, byte_len: 2 }) }, + Range { from: '\u{1d6fd}', to: '\u{1d6fd}', mapping: Mapped(StringTableSlice { byte_start: 538, byte_len: 2 }) }, + Range { from: '\u{1d6fe}', to: '\u{1d6fe}', mapping: Mapped(StringTableSlice { byte_start: 540, byte_len: 2 }) }, + Range { from: '\u{1d6ff}', to: '\u{1d6ff}', mapping: Mapped(StringTableSlice { byte_start: 542, byte_len: 2 }) }, + Range { from: '\u{1d700}', to: '\u{1d700}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{1d701}', to: '\u{1d701}', mapping: Mapped(StringTableSlice { byte_start: 546, byte_len: 2 }) }, + Range { from: '\u{1d702}', to: '\u{1d702}', mapping: Mapped(StringTableSlice { byte_start: 548, byte_len: 2 }) }, + Range { from: '\u{1d703}', to: '\u{1d703}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d704}', to: '\u{1d704}', mapping: Mapped(StringTableSlice { byte_start: 499, byte_len: 2 }) }, + Range { from: '\u{1d705}', to: '\u{1d705}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{1d706}', to: '\u{1d706}', mapping: Mapped(StringTableSlice { byte_start: 554, byte_len: 2 }) }, + Range { from: '\u{1d707}', to: '\u{1d707}', mapping: Mapped(StringTableSlice { byte_start: 38, byte_len: 2 }) }, + Range { from: '\u{1d708}', to: '\u{1d708}', mapping: Mapped(StringTableSlice { byte_start: 556, byte_len: 2 }) }, + Range { from: '\u{1d709}', to: '\u{1d709}', mapping: Mapped(StringTableSlice { byte_start: 558, byte_len: 2 }) }, + Range { from: '\u{1d70a}', to: '\u{1d70a}', mapping: Mapped(StringTableSlice { byte_start: 560, byte_len: 2 }) }, + Range { from: '\u{1d70b}', to: '\u{1d70b}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{1d70c}', to: '\u{1d70c}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{1d70d}', to: '\u{1d70e}', mapping: Mapped(StringTableSlice { byte_start: 566, byte_len: 2 }) }, + Range { from: '\u{1d70f}', to: '\u{1d70f}', mapping: Mapped(StringTableSlice { byte_start: 568, byte_len: 2 }) }, + Range { from: '\u{1d710}', to: '\u{1d710}', mapping: Mapped(StringTableSlice { byte_start: 570, byte_len: 2 }) }, + Range { from: '\u{1d711}', to: '\u{1d711}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d712}', to: '\u{1d712}', mapping: Mapped(StringTableSlice { byte_start: 574, byte_len: 2 }) }, + Range { from: '\u{1d713}', to: '\u{1d713}', mapping: Mapped(StringTableSlice { byte_start: 576, byte_len: 2 }) }, + Range { from: '\u{1d714}', to: '\u{1d714}', mapping: Mapped(StringTableSlice { byte_start: 578, byte_len: 2 }) }, + Range { from: '\u{1d715}', to: '\u{1d715}', mapping: Mapped(StringTableSlice { byte_start: 10659, byte_len: 3 }) }, + Range { from: '\u{1d716}', to: '\u{1d716}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{1d717}', to: '\u{1d717}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d718}', to: '\u{1d718}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{1d719}', to: '\u{1d719}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d71a}', to: '\u{1d71a}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{1d71b}', to: '\u{1d71b}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{1d71c}', to: '\u{1d71c}', mapping: Mapped(StringTableSlice { byte_start: 536, byte_len: 2 }) }, + Range { from: '\u{1d71d}', to: '\u{1d71d}', mapping: Mapped(StringTableSlice { byte_start: 538, byte_len: 2 }) }, + Range { from: '\u{1d71e}', to: '\u{1d71e}', mapping: Mapped(StringTableSlice { byte_start: 540, byte_len: 2 }) }, + Range { from: '\u{1d71f}', to: '\u{1d71f}', mapping: Mapped(StringTableSlice { byte_start: 542, byte_len: 2 }) }, + Range { from: '\u{1d720}', to: '\u{1d720}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{1d721}', to: '\u{1d721}', mapping: Mapped(StringTableSlice { byte_start: 546, byte_len: 2 }) }, + Range { from: '\u{1d722}', to: '\u{1d722}', mapping: Mapped(StringTableSlice { byte_start: 548, byte_len: 2 }) }, + Range { from: '\u{1d723}', to: '\u{1d723}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d724}', to: '\u{1d724}', mapping: Mapped(StringTableSlice { byte_start: 499, byte_len: 2 }) }, + Range { from: '\u{1d725}', to: '\u{1d725}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{1d726}', to: '\u{1d726}', mapping: Mapped(StringTableSlice { byte_start: 554, byte_len: 2 }) }, + Range { from: '\u{1d727}', to: '\u{1d727}', mapping: Mapped(StringTableSlice { byte_start: 38, byte_len: 2 }) }, + Range { from: '\u{1d728}', to: '\u{1d728}', mapping: Mapped(StringTableSlice { byte_start: 556, byte_len: 2 }) }, + Range { from: '\u{1d729}', to: '\u{1d729}', mapping: Mapped(StringTableSlice { byte_start: 558, byte_len: 2 }) }, + Range { from: '\u{1d72a}', to: '\u{1d72a}', mapping: Mapped(StringTableSlice { byte_start: 560, byte_len: 2 }) }, + Range { from: '\u{1d72b}', to: '\u{1d72b}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{1d72c}', to: '\u{1d72c}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{1d72d}', to: '\u{1d72d}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d72e}', to: '\u{1d72e}', mapping: Mapped(StringTableSlice { byte_start: 566, byte_len: 2 }) }, + Range { from: '\u{1d72f}', to: '\u{1d72f}', mapping: Mapped(StringTableSlice { byte_start: 568, byte_len: 2 }) }, + Range { from: '\u{1d730}', to: '\u{1d730}', mapping: Mapped(StringTableSlice { byte_start: 570, byte_len: 2 }) }, + Range { from: '\u{1d731}', to: '\u{1d731}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d732}', to: '\u{1d732}', mapping: Mapped(StringTableSlice { byte_start: 574, byte_len: 2 }) }, + Range { from: '\u{1d733}', to: '\u{1d733}', mapping: Mapped(StringTableSlice { byte_start: 576, byte_len: 2 }) }, + Range { from: '\u{1d734}', to: '\u{1d734}', mapping: Mapped(StringTableSlice { byte_start: 578, byte_len: 2 }) }, + Range { from: '\u{1d735}', to: '\u{1d735}', mapping: Mapped(StringTableSlice { byte_start: 10656, byte_len: 3 }) }, + Range { from: '\u{1d736}', to: '\u{1d736}', mapping: Mapped(StringTableSlice { byte_start: 536, byte_len: 2 }) }, + Range { from: '\u{1d737}', to: '\u{1d737}', mapping: Mapped(StringTableSlice { byte_start: 538, byte_len: 2 }) }, + Range { from: '\u{1d738}', to: '\u{1d738}', mapping: Mapped(StringTableSlice { byte_start: 540, byte_len: 2 }) }, + Range { from: '\u{1d739}', to: '\u{1d739}', mapping: Mapped(StringTableSlice { byte_start: 542, byte_len: 2 }) }, + Range { from: '\u{1d73a}', to: '\u{1d73a}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{1d73b}', to: '\u{1d73b}', mapping: Mapped(StringTableSlice { byte_start: 546, byte_len: 2 }) }, + Range { from: '\u{1d73c}', to: '\u{1d73c}', mapping: Mapped(StringTableSlice { byte_start: 548, byte_len: 2 }) }, + Range { from: '\u{1d73d}', to: '\u{1d73d}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d73e}', to: '\u{1d73e}', mapping: Mapped(StringTableSlice { byte_start: 499, byte_len: 2 }) }, + Range { from: '\u{1d73f}', to: '\u{1d73f}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{1d740}', to: '\u{1d740}', mapping: Mapped(StringTableSlice { byte_start: 554, byte_len: 2 }) }, + Range { from: '\u{1d741}', to: '\u{1d741}', mapping: Mapped(StringTableSlice { byte_start: 38, byte_len: 2 }) }, + Range { from: '\u{1d742}', to: '\u{1d742}', mapping: Mapped(StringTableSlice { byte_start: 556, byte_len: 2 }) }, + Range { from: '\u{1d743}', to: '\u{1d743}', mapping: Mapped(StringTableSlice { byte_start: 558, byte_len: 2 }) }, + Range { from: '\u{1d744}', to: '\u{1d744}', mapping: Mapped(StringTableSlice { byte_start: 560, byte_len: 2 }) }, + Range { from: '\u{1d745}', to: '\u{1d745}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{1d746}', to: '\u{1d746}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{1d747}', to: '\u{1d748}', mapping: Mapped(StringTableSlice { byte_start: 566, byte_len: 2 }) }, + Range { from: '\u{1d749}', to: '\u{1d749}', mapping: Mapped(StringTableSlice { byte_start: 568, byte_len: 2 }) }, + Range { from: '\u{1d74a}', to: '\u{1d74a}', mapping: Mapped(StringTableSlice { byte_start: 570, byte_len: 2 }) }, + Range { from: '\u{1d74b}', to: '\u{1d74b}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d74c}', to: '\u{1d74c}', mapping: Mapped(StringTableSlice { byte_start: 574, byte_len: 2 }) }, + Range { from: '\u{1d74d}', to: '\u{1d74d}', mapping: Mapped(StringTableSlice { byte_start: 576, byte_len: 2 }) }, + Range { from: '\u{1d74e}', to: '\u{1d74e}', mapping: Mapped(StringTableSlice { byte_start: 578, byte_len: 2 }) }, + Range { from: '\u{1d74f}', to: '\u{1d74f}', mapping: Mapped(StringTableSlice { byte_start: 10659, byte_len: 3 }) }, + Range { from: '\u{1d750}', to: '\u{1d750}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{1d751}', to: '\u{1d751}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d752}', to: '\u{1d752}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{1d753}', to: '\u{1d753}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d754}', to: '\u{1d754}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{1d755}', to: '\u{1d755}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{1d756}', to: '\u{1d756}', mapping: Mapped(StringTableSlice { byte_start: 536, byte_len: 2 }) }, + Range { from: '\u{1d757}', to: '\u{1d757}', mapping: Mapped(StringTableSlice { byte_start: 538, byte_len: 2 }) }, + Range { from: '\u{1d758}', to: '\u{1d758}', mapping: Mapped(StringTableSlice { byte_start: 540, byte_len: 2 }) }, + Range { from: '\u{1d759}', to: '\u{1d759}', mapping: Mapped(StringTableSlice { byte_start: 542, byte_len: 2 }) }, + Range { from: '\u{1d75a}', to: '\u{1d75a}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{1d75b}', to: '\u{1d75b}', mapping: Mapped(StringTableSlice { byte_start: 546, byte_len: 2 }) }, + Range { from: '\u{1d75c}', to: '\u{1d75c}', mapping: Mapped(StringTableSlice { byte_start: 548, byte_len: 2 }) }, + Range { from: '\u{1d75d}', to: '\u{1d75d}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d75e}', to: '\u{1d75e}', mapping: Mapped(StringTableSlice { byte_start: 499, byte_len: 2 }) }, + Range { from: '\u{1d75f}', to: '\u{1d75f}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{1d760}', to: '\u{1d760}', mapping: Mapped(StringTableSlice { byte_start: 554, byte_len: 2 }) }, + Range { from: '\u{1d761}', to: '\u{1d761}', mapping: Mapped(StringTableSlice { byte_start: 38, byte_len: 2 }) }, + Range { from: '\u{1d762}', to: '\u{1d762}', mapping: Mapped(StringTableSlice { byte_start: 556, byte_len: 2 }) }, + Range { from: '\u{1d763}', to: '\u{1d763}', mapping: Mapped(StringTableSlice { byte_start: 558, byte_len: 2 }) }, + Range { from: '\u{1d764}', to: '\u{1d764}', mapping: Mapped(StringTableSlice { byte_start: 560, byte_len: 2 }) }, + Range { from: '\u{1d765}', to: '\u{1d765}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{1d766}', to: '\u{1d766}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{1d767}', to: '\u{1d767}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d768}', to: '\u{1d768}', mapping: Mapped(StringTableSlice { byte_start: 566, byte_len: 2 }) }, + Range { from: '\u{1d769}', to: '\u{1d769}', mapping: Mapped(StringTableSlice { byte_start: 568, byte_len: 2 }) }, + Range { from: '\u{1d76a}', to: '\u{1d76a}', mapping: Mapped(StringTableSlice { byte_start: 570, byte_len: 2 }) }, + Range { from: '\u{1d76b}', to: '\u{1d76b}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d76c}', to: '\u{1d76c}', mapping: Mapped(StringTableSlice { byte_start: 574, byte_len: 2 }) }, + Range { from: '\u{1d76d}', to: '\u{1d76d}', mapping: Mapped(StringTableSlice { byte_start: 576, byte_len: 2 }) }, + Range { from: '\u{1d76e}', to: '\u{1d76e}', mapping: Mapped(StringTableSlice { byte_start: 578, byte_len: 2 }) }, + Range { from: '\u{1d76f}', to: '\u{1d76f}', mapping: Mapped(StringTableSlice { byte_start: 10656, byte_len: 3 }) }, + Range { from: '\u{1d770}', to: '\u{1d770}', mapping: Mapped(StringTableSlice { byte_start: 536, byte_len: 2 }) }, + Range { from: '\u{1d771}', to: '\u{1d771}', mapping: Mapped(StringTableSlice { byte_start: 538, byte_len: 2 }) }, + Range { from: '\u{1d772}', to: '\u{1d772}', mapping: Mapped(StringTableSlice { byte_start: 540, byte_len: 2 }) }, + Range { from: '\u{1d773}', to: '\u{1d773}', mapping: Mapped(StringTableSlice { byte_start: 542, byte_len: 2 }) }, + Range { from: '\u{1d774}', to: '\u{1d774}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{1d775}', to: '\u{1d775}', mapping: Mapped(StringTableSlice { byte_start: 546, byte_len: 2 }) }, + Range { from: '\u{1d776}', to: '\u{1d776}', mapping: Mapped(StringTableSlice { byte_start: 548, byte_len: 2 }) }, + Range { from: '\u{1d777}', to: '\u{1d777}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d778}', to: '\u{1d778}', mapping: Mapped(StringTableSlice { byte_start: 499, byte_len: 2 }) }, + Range { from: '\u{1d779}', to: '\u{1d779}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{1d77a}', to: '\u{1d77a}', mapping: Mapped(StringTableSlice { byte_start: 554, byte_len: 2 }) }, + Range { from: '\u{1d77b}', to: '\u{1d77b}', mapping: Mapped(StringTableSlice { byte_start: 38, byte_len: 2 }) }, + Range { from: '\u{1d77c}', to: '\u{1d77c}', mapping: Mapped(StringTableSlice { byte_start: 556, byte_len: 2 }) }, + Range { from: '\u{1d77d}', to: '\u{1d77d}', mapping: Mapped(StringTableSlice { byte_start: 558, byte_len: 2 }) }, + Range { from: '\u{1d77e}', to: '\u{1d77e}', mapping: Mapped(StringTableSlice { byte_start: 560, byte_len: 2 }) }, + Range { from: '\u{1d77f}', to: '\u{1d77f}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{1d780}', to: '\u{1d780}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{1d781}', to: '\u{1d782}', mapping: Mapped(StringTableSlice { byte_start: 566, byte_len: 2 }) }, + Range { from: '\u{1d783}', to: '\u{1d783}', mapping: Mapped(StringTableSlice { byte_start: 568, byte_len: 2 }) }, + Range { from: '\u{1d784}', to: '\u{1d784}', mapping: Mapped(StringTableSlice { byte_start: 570, byte_len: 2 }) }, + Range { from: '\u{1d785}', to: '\u{1d785}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d786}', to: '\u{1d786}', mapping: Mapped(StringTableSlice { byte_start: 574, byte_len: 2 }) }, + Range { from: '\u{1d787}', to: '\u{1d787}', mapping: Mapped(StringTableSlice { byte_start: 576, byte_len: 2 }) }, + Range { from: '\u{1d788}', to: '\u{1d788}', mapping: Mapped(StringTableSlice { byte_start: 578, byte_len: 2 }) }, + Range { from: '\u{1d789}', to: '\u{1d789}', mapping: Mapped(StringTableSlice { byte_start: 10659, byte_len: 3 }) }, + Range { from: '\u{1d78a}', to: '\u{1d78a}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{1d78b}', to: '\u{1d78b}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d78c}', to: '\u{1d78c}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{1d78d}', to: '\u{1d78d}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d78e}', to: '\u{1d78e}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{1d78f}', to: '\u{1d78f}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{1d790}', to: '\u{1d790}', mapping: Mapped(StringTableSlice { byte_start: 536, byte_len: 2 }) }, + Range { from: '\u{1d791}', to: '\u{1d791}', mapping: Mapped(StringTableSlice { byte_start: 538, byte_len: 2 }) }, + Range { from: '\u{1d792}', to: '\u{1d792}', mapping: Mapped(StringTableSlice { byte_start: 540, byte_len: 2 }) }, + Range { from: '\u{1d793}', to: '\u{1d793}', mapping: Mapped(StringTableSlice { byte_start: 542, byte_len: 2 }) }, + Range { from: '\u{1d794}', to: '\u{1d794}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{1d795}', to: '\u{1d795}', mapping: Mapped(StringTableSlice { byte_start: 546, byte_len: 2 }) }, + Range { from: '\u{1d796}', to: '\u{1d796}', mapping: Mapped(StringTableSlice { byte_start: 548, byte_len: 2 }) }, + Range { from: '\u{1d797}', to: '\u{1d797}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d798}', to: '\u{1d798}', mapping: Mapped(StringTableSlice { byte_start: 499, byte_len: 2 }) }, + Range { from: '\u{1d799}', to: '\u{1d799}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{1d79a}', to: '\u{1d79a}', mapping: Mapped(StringTableSlice { byte_start: 554, byte_len: 2 }) }, + Range { from: '\u{1d79b}', to: '\u{1d79b}', mapping: Mapped(StringTableSlice { byte_start: 38, byte_len: 2 }) }, + Range { from: '\u{1d79c}', to: '\u{1d79c}', mapping: Mapped(StringTableSlice { byte_start: 556, byte_len: 2 }) }, + Range { from: '\u{1d79d}', to: '\u{1d79d}', mapping: Mapped(StringTableSlice { byte_start: 558, byte_len: 2 }) }, + Range { from: '\u{1d79e}', to: '\u{1d79e}', mapping: Mapped(StringTableSlice { byte_start: 560, byte_len: 2 }) }, + Range { from: '\u{1d79f}', to: '\u{1d79f}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{1d7a0}', to: '\u{1d7a0}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{1d7a1}', to: '\u{1d7a1}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d7a2}', to: '\u{1d7a2}', mapping: Mapped(StringTableSlice { byte_start: 566, byte_len: 2 }) }, + Range { from: '\u{1d7a3}', to: '\u{1d7a3}', mapping: Mapped(StringTableSlice { byte_start: 568, byte_len: 2 }) }, + Range { from: '\u{1d7a4}', to: '\u{1d7a4}', mapping: Mapped(StringTableSlice { byte_start: 570, byte_len: 2 }) }, + Range { from: '\u{1d7a5}', to: '\u{1d7a5}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d7a6}', to: '\u{1d7a6}', mapping: Mapped(StringTableSlice { byte_start: 574, byte_len: 2 }) }, + Range { from: '\u{1d7a7}', to: '\u{1d7a7}', mapping: Mapped(StringTableSlice { byte_start: 576, byte_len: 2 }) }, + Range { from: '\u{1d7a8}', to: '\u{1d7a8}', mapping: Mapped(StringTableSlice { byte_start: 578, byte_len: 2 }) }, + Range { from: '\u{1d7a9}', to: '\u{1d7a9}', mapping: Mapped(StringTableSlice { byte_start: 10656, byte_len: 3 }) }, + Range { from: '\u{1d7aa}', to: '\u{1d7aa}', mapping: Mapped(StringTableSlice { byte_start: 536, byte_len: 2 }) }, + Range { from: '\u{1d7ab}', to: '\u{1d7ab}', mapping: Mapped(StringTableSlice { byte_start: 538, byte_len: 2 }) }, + Range { from: '\u{1d7ac}', to: '\u{1d7ac}', mapping: Mapped(StringTableSlice { byte_start: 540, byte_len: 2 }) }, + Range { from: '\u{1d7ad}', to: '\u{1d7ad}', mapping: Mapped(StringTableSlice { byte_start: 542, byte_len: 2 }) }, + Range { from: '\u{1d7ae}', to: '\u{1d7ae}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{1d7af}', to: '\u{1d7af}', mapping: Mapped(StringTableSlice { byte_start: 546, byte_len: 2 }) }, + Range { from: '\u{1d7b0}', to: '\u{1d7b0}', mapping: Mapped(StringTableSlice { byte_start: 548, byte_len: 2 }) }, + Range { from: '\u{1d7b1}', to: '\u{1d7b1}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d7b2}', to: '\u{1d7b2}', mapping: Mapped(StringTableSlice { byte_start: 499, byte_len: 2 }) }, + Range { from: '\u{1d7b3}', to: '\u{1d7b3}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{1d7b4}', to: '\u{1d7b4}', mapping: Mapped(StringTableSlice { byte_start: 554, byte_len: 2 }) }, + Range { from: '\u{1d7b5}', to: '\u{1d7b5}', mapping: Mapped(StringTableSlice { byte_start: 38, byte_len: 2 }) }, + Range { from: '\u{1d7b6}', to: '\u{1d7b6}', mapping: Mapped(StringTableSlice { byte_start: 556, byte_len: 2 }) }, + Range { from: '\u{1d7b7}', to: '\u{1d7b7}', mapping: Mapped(StringTableSlice { byte_start: 558, byte_len: 2 }) }, + Range { from: '\u{1d7b8}', to: '\u{1d7b8}', mapping: Mapped(StringTableSlice { byte_start: 560, byte_len: 2 }) }, + Range { from: '\u{1d7b9}', to: '\u{1d7b9}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{1d7ba}', to: '\u{1d7ba}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{1d7bb}', to: '\u{1d7bc}', mapping: Mapped(StringTableSlice { byte_start: 566, byte_len: 2 }) }, + Range { from: '\u{1d7bd}', to: '\u{1d7bd}', mapping: Mapped(StringTableSlice { byte_start: 568, byte_len: 2 }) }, + Range { from: '\u{1d7be}', to: '\u{1d7be}', mapping: Mapped(StringTableSlice { byte_start: 570, byte_len: 2 }) }, + Range { from: '\u{1d7bf}', to: '\u{1d7bf}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d7c0}', to: '\u{1d7c0}', mapping: Mapped(StringTableSlice { byte_start: 574, byte_len: 2 }) }, + Range { from: '\u{1d7c1}', to: '\u{1d7c1}', mapping: Mapped(StringTableSlice { byte_start: 576, byte_len: 2 }) }, + Range { from: '\u{1d7c2}', to: '\u{1d7c2}', mapping: Mapped(StringTableSlice { byte_start: 578, byte_len: 2 }) }, + Range { from: '\u{1d7c3}', to: '\u{1d7c3}', mapping: Mapped(StringTableSlice { byte_start: 10659, byte_len: 3 }) }, + Range { from: '\u{1d7c4}', to: '\u{1d7c4}', mapping: Mapped(StringTableSlice { byte_start: 544, byte_len: 2 }) }, + Range { from: '\u{1d7c5}', to: '\u{1d7c5}', mapping: Mapped(StringTableSlice { byte_start: 550, byte_len: 2 }) }, + Range { from: '\u{1d7c6}', to: '\u{1d7c6}', mapping: Mapped(StringTableSlice { byte_start: 552, byte_len: 2 }) }, + Range { from: '\u{1d7c7}', to: '\u{1d7c7}', mapping: Mapped(StringTableSlice { byte_start: 572, byte_len: 2 }) }, + Range { from: '\u{1d7c8}', to: '\u{1d7c8}', mapping: Mapped(StringTableSlice { byte_start: 564, byte_len: 2 }) }, + Range { from: '\u{1d7c9}', to: '\u{1d7c9}', mapping: Mapped(StringTableSlice { byte_start: 562, byte_len: 2 }) }, + Range { from: '\u{1d7ca}', to: '\u{1d7cb}', mapping: Mapped(StringTableSlice { byte_start: 590, byte_len: 2 }) }, + Range { from: '\u{1d7cc}', to: '\u{1d7cd}', mapping: Disallowed }, + Range { from: '\u{1d7ce}', to: '\u{1d7ce}', mapping: Mapped(StringTableSlice { byte_start: 2212, byte_len: 1 }) }, + Range { from: '\u{1d7cf}', to: '\u{1d7cf}', mapping: Mapped(StringTableSlice { byte_start: 43, byte_len: 1 }) }, + Range { from: '\u{1d7d0}', to: '\u{1d7d0}', mapping: Mapped(StringTableSlice { byte_start: 33, byte_len: 1 }) }, + Range { from: '\u{1d7d1}', to: '\u{1d7d1}', mapping: Mapped(StringTableSlice { byte_start: 34, byte_len: 1 }) }, + Range { from: '\u{1d7d2}', to: '\u{1d7d2}', mapping: Mapped(StringTableSlice { byte_start: 2213, byte_len: 1 }) }, + Range { from: '\u{1d7d3}', to: '\u{1d7d3}', mapping: Mapped(StringTableSlice { byte_start: 2214, byte_len: 1 }) }, + Range { from: '\u{1d7d4}', to: '\u{1d7d4}', mapping: Mapped(StringTableSlice { byte_start: 2215, byte_len: 1 }) }, + Range { from: '\u{1d7d5}', to: '\u{1d7d5}', mapping: Mapped(StringTableSlice { byte_start: 2216, byte_len: 1 }) }, + Range { from: '\u{1d7d6}', to: '\u{1d7d6}', mapping: Mapped(StringTableSlice { byte_start: 2217, byte_len: 1 }) }, + Range { from: '\u{1d7d7}', to: '\u{1d7d7}', mapping: Mapped(StringTableSlice { byte_start: 2218, byte_len: 1 }) }, + Range { from: '\u{1d7d8}', to: '\u{1d7d8}', mapping: Mapped(StringTableSlice { byte_start: 2212, byte_len: 1 }) }, + Range { from: '\u{1d7d9}', to: '\u{1d7d9}', mapping: Mapped(StringTableSlice { byte_start: 43, byte_len: 1 }) }, + Range { from: '\u{1d7da}', to: '\u{1d7da}', mapping: Mapped(StringTableSlice { byte_start: 33, byte_len: 1 }) }, + Range { from: '\u{1d7db}', to: '\u{1d7db}', mapping: Mapped(StringTableSlice { byte_start: 34, byte_len: 1 }) }, + Range { from: '\u{1d7dc}', to: '\u{1d7dc}', mapping: Mapped(StringTableSlice { byte_start: 2213, byte_len: 1 }) }, + Range { from: '\u{1d7dd}', to: '\u{1d7dd}', mapping: Mapped(StringTableSlice { byte_start: 2214, byte_len: 1 }) }, + Range { from: '\u{1d7de}', to: '\u{1d7de}', mapping: Mapped(StringTableSlice { byte_start: 2215, byte_len: 1 }) }, + Range { from: '\u{1d7df}', to: '\u{1d7df}', mapping: Mapped(StringTableSlice { byte_start: 2216, byte_len: 1 }) }, + Range { from: '\u{1d7e0}', to: '\u{1d7e0}', mapping: Mapped(StringTableSlice { byte_start: 2217, byte_len: 1 }) }, + Range { from: '\u{1d7e1}', to: '\u{1d7e1}', mapping: Mapped(StringTableSlice { byte_start: 2218, byte_len: 1 }) }, + Range { from: '\u{1d7e2}', to: '\u{1d7e2}', mapping: Mapped(StringTableSlice { byte_start: 2212, byte_len: 1 }) }, + Range { from: '\u{1d7e3}', to: '\u{1d7e3}', mapping: Mapped(StringTableSlice { byte_start: 43, byte_len: 1 }) }, + Range { from: '\u{1d7e4}', to: '\u{1d7e4}', mapping: Mapped(StringTableSlice { byte_start: 33, byte_len: 1 }) }, + Range { from: '\u{1d7e5}', to: '\u{1d7e5}', mapping: Mapped(StringTableSlice { byte_start: 34, byte_len: 1 }) }, + Range { from: '\u{1d7e6}', to: '\u{1d7e6}', mapping: Mapped(StringTableSlice { byte_start: 2213, byte_len: 1 }) }, + Range { from: '\u{1d7e7}', to: '\u{1d7e7}', mapping: Mapped(StringTableSlice { byte_start: 2214, byte_len: 1 }) }, + Range { from: '\u{1d7e8}', to: '\u{1d7e8}', mapping: Mapped(StringTableSlice { byte_start: 2215, byte_len: 1 }) }, + Range { from: '\u{1d7e9}', to: '\u{1d7e9}', mapping: Mapped(StringTableSlice { byte_start: 2216, byte_len: 1 }) }, + Range { from: '\u{1d7ea}', to: '\u{1d7ea}', mapping: Mapped(StringTableSlice { byte_start: 2217, byte_len: 1 }) }, + Range { from: '\u{1d7eb}', to: '\u{1d7eb}', mapping: Mapped(StringTableSlice { byte_start: 2218, byte_len: 1 }) }, + Range { from: '\u{1d7ec}', to: '\u{1d7ec}', mapping: Mapped(StringTableSlice { byte_start: 2212, byte_len: 1 }) }, + Range { from: '\u{1d7ed}', to: '\u{1d7ed}', mapping: Mapped(StringTableSlice { byte_start: 43, byte_len: 1 }) }, + Range { from: '\u{1d7ee}', to: '\u{1d7ee}', mapping: Mapped(StringTableSlice { byte_start: 33, byte_len: 1 }) }, + Range { from: '\u{1d7ef}', to: '\u{1d7ef}', mapping: Mapped(StringTableSlice { byte_start: 34, byte_len: 1 }) }, + Range { from: '\u{1d7f0}', to: '\u{1d7f0}', mapping: Mapped(StringTableSlice { byte_start: 2213, byte_len: 1 }) }, + Range { from: '\u{1d7f1}', to: '\u{1d7f1}', mapping: Mapped(StringTableSlice { byte_start: 2214, byte_len: 1 }) }, + Range { from: '\u{1d7f2}', to: '\u{1d7f2}', mapping: Mapped(StringTableSlice { byte_start: 2215, byte_len: 1 }) }, + Range { from: '\u{1d7f3}', to: '\u{1d7f3}', mapping: Mapped(StringTableSlice { byte_start: 2216, byte_len: 1 }) }, + Range { from: '\u{1d7f4}', to: '\u{1d7f4}', mapping: Mapped(StringTableSlice { byte_start: 2217, byte_len: 1 }) }, + Range { from: '\u{1d7f5}', to: '\u{1d7f5}', mapping: Mapped(StringTableSlice { byte_start: 2218, byte_len: 1 }) }, + Range { from: '\u{1d7f6}', to: '\u{1d7f6}', mapping: Mapped(StringTableSlice { byte_start: 2212, byte_len: 1 }) }, + Range { from: '\u{1d7f7}', to: '\u{1d7f7}', mapping: Mapped(StringTableSlice { byte_start: 43, byte_len: 1 }) }, + Range { from: '\u{1d7f8}', to: '\u{1d7f8}', mapping: Mapped(StringTableSlice { byte_start: 33, byte_len: 1 }) }, + Range { from: '\u{1d7f9}', to: '\u{1d7f9}', mapping: Mapped(StringTableSlice { byte_start: 34, byte_len: 1 }) }, + Range { from: '\u{1d7fa}', to: '\u{1d7fa}', mapping: Mapped(StringTableSlice { byte_start: 2213, byte_len: 1 }) }, + Range { from: '\u{1d7fb}', to: '\u{1d7fb}', mapping: Mapped(StringTableSlice { byte_start: 2214, byte_len: 1 }) }, + Range { from: '\u{1d7fc}', to: '\u{1d7fc}', mapping: Mapped(StringTableSlice { byte_start: 2215, byte_len: 1 }) }, + Range { from: '\u{1d7fd}', to: '\u{1d7fd}', mapping: Mapped(StringTableSlice { byte_start: 2216, byte_len: 1 }) }, + Range { from: '\u{1d7fe}', to: '\u{1d7fe}', mapping: Mapped(StringTableSlice { byte_start: 2217, byte_len: 1 }) }, + Range { from: '\u{1d7ff}', to: '\u{1d7ff}', mapping: Mapped(StringTableSlice { byte_start: 2218, byte_len: 1 }) }, + Range { from: '\u{1d800}', to: '\u{1d9ff}', mapping: Valid }, + Range { from: '\u{1da00}', to: '\u{1da36}', mapping: Valid }, + Range { from: '\u{1da37}', to: '\u{1da3a}', mapping: Valid }, + Range { from: '\u{1da3b}', to: '\u{1da6c}', mapping: Valid }, + Range { from: '\u{1da6d}', to: '\u{1da74}', mapping: Valid }, + Range { from: '\u{1da75}', to: '\u{1da75}', mapping: Valid }, + Range { from: '\u{1da76}', to: '\u{1da83}', mapping: Valid }, + Range { from: '\u{1da84}', to: '\u{1da84}', mapping: Valid }, + Range { from: '\u{1da85}', to: '\u{1da8b}', mapping: Valid }, + Range { from: '\u{1da8c}', to: '\u{1da9a}', mapping: Disallowed }, + Range { from: '\u{1da9b}', to: '\u{1da9f}', mapping: Valid }, + Range { from: '\u{1daa0}', to: '\u{1daa0}', mapping: Disallowed }, + Range { from: '\u{1daa1}', to: '\u{1daaf}', mapping: Valid }, + Range { from: '\u{1dab0}', to: '\u{1dfff}', mapping: Disallowed }, + Range { from: '\u{1e000}', to: '\u{1e006}', mapping: Valid }, + Range { from: '\u{1e007}', to: '\u{1e007}', mapping: Disallowed }, + Range { from: '\u{1e008}', to: '\u{1e018}', mapping: Valid }, + Range { from: '\u{1e019}', to: '\u{1e01a}', mapping: Disallowed }, + Range { from: '\u{1e01b}', to: '\u{1e021}', mapping: Valid }, + Range { from: '\u{1e022}', to: '\u{1e022}', mapping: Disallowed }, + Range { from: '\u{1e023}', to: '\u{1e024}', mapping: Valid }, + Range { from: '\u{1e025}', to: '\u{1e025}', mapping: Disallowed }, + Range { from: '\u{1e026}', to: '\u{1e02a}', mapping: Valid }, + Range { from: '\u{1e02b}', to: '\u{1e7ff}', mapping: Disallowed }, + Range { from: '\u{1e800}', to: '\u{1e8c4}', mapping: Valid }, + Range { from: '\u{1e8c5}', to: '\u{1e8c6}', mapping: Disallowed }, + Range { from: '\u{1e8c7}', to: '\u{1e8cf}', mapping: Valid }, + Range { from: '\u{1e8d0}', to: '\u{1e8d6}', mapping: Valid }, + Range { from: '\u{1e8d7}', to: '\u{1e8ff}', mapping: Disallowed }, + Range { from: '\u{1e900}', to: '\u{1e900}', mapping: Mapped(StringTableSlice { byte_start: 10662, byte_len: 4 }) }, + Range { from: '\u{1e901}', to: '\u{1e901}', mapping: Mapped(StringTableSlice { byte_start: 10666, byte_len: 4 }) }, + Range { from: '\u{1e902}', to: '\u{1e902}', mapping: Mapped(StringTableSlice { byte_start: 10670, byte_len: 4 }) }, + Range { from: '\u{1e903}', to: '\u{1e903}', mapping: Mapped(StringTableSlice { byte_start: 10674, byte_len: 4 }) }, + Range { from: '\u{1e904}', to: '\u{1e904}', mapping: Mapped(StringTableSlice { byte_start: 10678, byte_len: 4 }) }, + Range { from: '\u{1e905}', to: '\u{1e905}', mapping: Mapped(StringTableSlice { byte_start: 10682, byte_len: 4 }) }, + Range { from: '\u{1e906}', to: '\u{1e906}', mapping: Mapped(StringTableSlice { byte_start: 10686, byte_len: 4 }) }, + Range { from: '\u{1e907}', to: '\u{1e907}', mapping: Mapped(StringTableSlice { byte_start: 10690, byte_len: 4 }) }, + Range { from: '\u{1e908}', to: '\u{1e908}', mapping: Mapped(StringTableSlice { byte_start: 10694, byte_len: 4 }) }, + Range { from: '\u{1e909}', to: '\u{1e909}', mapping: Mapped(StringTableSlice { byte_start: 10698, byte_len: 4 }) }, + Range { from: '\u{1e90a}', to: '\u{1e90a}', mapping: Mapped(StringTableSlice { byte_start: 10702, byte_len: 4 }) }, + Range { from: '\u{1e90b}', to: '\u{1e90b}', mapping: Mapped(StringTableSlice { byte_start: 10706, byte_len: 4 }) }, + Range { from: '\u{1e90c}', to: '\u{1e90c}', mapping: Mapped(StringTableSlice { byte_start: 10710, byte_len: 4 }) }, + Range { from: '\u{1e90d}', to: '\u{1e90d}', mapping: Mapped(StringTableSlice { byte_start: 10714, byte_len: 4 }) }, + Range { from: '\u{1e90e}', to: '\u{1e90e}', mapping: Mapped(StringTableSlice { byte_start: 10718, byte_len: 4 }) }, + Range { from: '\u{1e90f}', to: '\u{1e90f}', mapping: Mapped(StringTableSlice { byte_start: 10722, byte_len: 4 }) }, + Range { from: '\u{1e910}', to: '\u{1e910}', mapping: Mapped(StringTableSlice { byte_start: 10726, byte_len: 4 }) }, + Range { from: '\u{1e911}', to: '\u{1e911}', mapping: Mapped(StringTableSlice { byte_start: 10730, byte_len: 4 }) }, + Range { from: '\u{1e912}', to: '\u{1e912}', mapping: Mapped(StringTableSlice { byte_start: 10734, byte_len: 4 }) }, + Range { from: '\u{1e913}', to: '\u{1e913}', mapping: Mapped(StringTableSlice { byte_start: 10738, byte_len: 4 }) }, + Range { from: '\u{1e914}', to: '\u{1e914}', mapping: Mapped(StringTableSlice { byte_start: 10742, byte_len: 4 }) }, + Range { from: '\u{1e915}', to: '\u{1e915}', mapping: Mapped(StringTableSlice { byte_start: 10746, byte_len: 4 }) }, + Range { from: '\u{1e916}', to: '\u{1e916}', mapping: Mapped(StringTableSlice { byte_start: 10750, byte_len: 4 }) }, + Range { from: '\u{1e917}', to: '\u{1e917}', mapping: Mapped(StringTableSlice { byte_start: 10754, byte_len: 4 }) }, + Range { from: '\u{1e918}', to: '\u{1e918}', mapping: Mapped(StringTableSlice { byte_start: 10758, byte_len: 4 }) }, + Range { from: '\u{1e919}', to: '\u{1e919}', mapping: Mapped(StringTableSlice { byte_start: 10762, byte_len: 4 }) }, + Range { from: '\u{1e91a}', to: '\u{1e91a}', mapping: Mapped(StringTableSlice { byte_start: 10766, byte_len: 4 }) }, + Range { from: '\u{1e91b}', to: '\u{1e91b}', mapping: Mapped(StringTableSlice { byte_start: 10770, byte_len: 4 }) }, + Range { from: '\u{1e91c}', to: '\u{1e91c}', mapping: Mapped(StringTableSlice { byte_start: 10774, byte_len: 4 }) }, + Range { from: '\u{1e91d}', to: '\u{1e91d}', mapping: Mapped(StringTableSlice { byte_start: 10778, byte_len: 4 }) }, + Range { from: '\u{1e91e}', to: '\u{1e91e}', mapping: Mapped(StringTableSlice { byte_start: 10782, byte_len: 4 }) }, + Range { from: '\u{1e91f}', to: '\u{1e91f}', mapping: Mapped(StringTableSlice { byte_start: 10786, byte_len: 4 }) }, + Range { from: '\u{1e920}', to: '\u{1e920}', mapping: Mapped(StringTableSlice { byte_start: 10790, byte_len: 4 }) }, + Range { from: '\u{1e921}', to: '\u{1e921}', mapping: Mapped(StringTableSlice { byte_start: 10794, byte_len: 4 }) }, + Range { from: '\u{1e922}', to: '\u{1e94a}', mapping: Valid }, + Range { from: '\u{1e94b}', to: '\u{1e94f}', mapping: Disallowed }, + Range { from: '\u{1e950}', to: '\u{1e959}', mapping: Valid }, + Range { from: '\u{1e95a}', to: '\u{1e95d}', mapping: Disallowed }, + Range { from: '\u{1e95e}', to: '\u{1e95f}', mapping: Valid }, + Range { from: '\u{1e960}', to: '\u{1edff}', mapping: Disallowed }, + Range { from: '\u{1ee00}', to: '\u{1ee00}', mapping: Mapped(StringTableSlice { byte_start: 9714, byte_len: 2 }) }, + Range { from: '\u{1ee01}', to: '\u{1ee01}', mapping: Mapped(StringTableSlice { byte_start: 9716, byte_len: 2 }) }, + Range { from: '\u{1ee02}', to: '\u{1ee02}', mapping: Mapped(StringTableSlice { byte_start: 9724, byte_len: 2 }) }, + Range { from: '\u{1ee03}', to: '\u{1ee03}', mapping: Mapped(StringTableSlice { byte_start: 9730, byte_len: 2 }) }, + Range { from: '\u{1ee04}', to: '\u{1ee04}', mapping: Disallowed }, + Range { from: '\u{1ee05}', to: '\u{1ee05}', mapping: Mapped(StringTableSlice { byte_start: 9768, byte_len: 2 }) }, + Range { from: '\u{1ee06}', to: '\u{1ee06}', mapping: Mapped(StringTableSlice { byte_start: 9736, byte_len: 2 }) }, + Range { from: '\u{1ee07}', to: '\u{1ee07}', mapping: Mapped(StringTableSlice { byte_start: 9726, byte_len: 2 }) }, + Range { from: '\u{1ee08}', to: '\u{1ee08}', mapping: Mapped(StringTableSlice { byte_start: 9746, byte_len: 2 }) }, + Range { from: '\u{1ee09}', to: '\u{1ee09}', mapping: Mapped(StringTableSlice { byte_start: 9770, byte_len: 2 }) }, + Range { from: '\u{1ee0a}', to: '\u{1ee0a}', mapping: Mapped(StringTableSlice { byte_start: 9758, byte_len: 2 }) }, + Range { from: '\u{1ee0b}', to: '\u{1ee0b}', mapping: Mapped(StringTableSlice { byte_start: 9760, byte_len: 2 }) }, + Range { from: '\u{1ee0c}', to: '\u{1ee0c}', mapping: Mapped(StringTableSlice { byte_start: 9762, byte_len: 2 }) }, + Range { from: '\u{1ee0d}', to: '\u{1ee0d}', mapping: Mapped(StringTableSlice { byte_start: 9764, byte_len: 2 }) }, + Range { from: '\u{1ee0e}', to: '\u{1ee0e}', mapping: Mapped(StringTableSlice { byte_start: 9738, byte_len: 2 }) }, + Range { from: '\u{1ee0f}', to: '\u{1ee0f}', mapping: Mapped(StringTableSlice { byte_start: 9750, byte_len: 2 }) }, + Range { from: '\u{1ee10}', to: '\u{1ee10}', mapping: Mapped(StringTableSlice { byte_start: 9754, byte_len: 2 }) }, + Range { from: '\u{1ee11}', to: '\u{1ee11}', mapping: Mapped(StringTableSlice { byte_start: 9742, byte_len: 2 }) }, + Range { from: '\u{1ee12}', to: '\u{1ee12}', mapping: Mapped(StringTableSlice { byte_start: 9756, byte_len: 2 }) }, + Range { from: '\u{1ee13}', to: '\u{1ee13}', mapping: Mapped(StringTableSlice { byte_start: 9734, byte_len: 2 }) }, + Range { from: '\u{1ee14}', to: '\u{1ee14}', mapping: Mapped(StringTableSlice { byte_start: 9740, byte_len: 2 }) }, + Range { from: '\u{1ee15}', to: '\u{1ee15}', mapping: Mapped(StringTableSlice { byte_start: 9720, byte_len: 2 }) }, + Range { from: '\u{1ee16}', to: '\u{1ee16}', mapping: Mapped(StringTableSlice { byte_start: 9722, byte_len: 2 }) }, + Range { from: '\u{1ee17}', to: '\u{1ee17}', mapping: Mapped(StringTableSlice { byte_start: 9728, byte_len: 2 }) }, + Range { from: '\u{1ee18}', to: '\u{1ee18}', mapping: Mapped(StringTableSlice { byte_start: 9732, byte_len: 2 }) }, + Range { from: '\u{1ee19}', to: '\u{1ee19}', mapping: Mapped(StringTableSlice { byte_start: 9744, byte_len: 2 }) }, + Range { from: '\u{1ee1a}', to: '\u{1ee1a}', mapping: Mapped(StringTableSlice { byte_start: 9748, byte_len: 2 }) }, + Range { from: '\u{1ee1b}', to: '\u{1ee1b}', mapping: Mapped(StringTableSlice { byte_start: 9752, byte_len: 2 }) }, + Range { from: '\u{1ee1c}', to: '\u{1ee1c}', mapping: Mapped(StringTableSlice { byte_start: 10798, byte_len: 2 }) }, + Range { from: '\u{1ee1d}', to: '\u{1ee1d}', mapping: Mapped(StringTableSlice { byte_start: 8170, byte_len: 2 }) }, + Range { from: '\u{1ee1e}', to: '\u{1ee1e}', mapping: Mapped(StringTableSlice { byte_start: 10800, byte_len: 2 }) }, + Range { from: '\u{1ee1f}', to: '\u{1ee1f}', mapping: Mapped(StringTableSlice { byte_start: 10802, byte_len: 2 }) }, + Range { from: '\u{1ee20}', to: '\u{1ee20}', mapping: Disallowed }, + Range { from: '\u{1ee21}', to: '\u{1ee21}', mapping: Mapped(StringTableSlice { byte_start: 9716, byte_len: 2 }) }, + Range { from: '\u{1ee22}', to: '\u{1ee22}', mapping: Mapped(StringTableSlice { byte_start: 9724, byte_len: 2 }) }, + Range { from: '\u{1ee23}', to: '\u{1ee23}', mapping: Disallowed }, + Range { from: '\u{1ee24}', to: '\u{1ee24}', mapping: Mapped(StringTableSlice { byte_start: 9766, byte_len: 2 }) }, + Range { from: '\u{1ee25}', to: '\u{1ee26}', mapping: Disallowed }, + Range { from: '\u{1ee27}', to: '\u{1ee27}', mapping: Mapped(StringTableSlice { byte_start: 9726, byte_len: 2 }) }, + Range { from: '\u{1ee28}', to: '\u{1ee28}', mapping: Disallowed }, + Range { from: '\u{1ee29}', to: '\u{1ee29}', mapping: Mapped(StringTableSlice { byte_start: 9770, byte_len: 2 }) }, + Range { from: '\u{1ee2a}', to: '\u{1ee2a}', mapping: Mapped(StringTableSlice { byte_start: 9758, byte_len: 2 }) }, + Range { from: '\u{1ee2b}', to: '\u{1ee2b}', mapping: Mapped(StringTableSlice { byte_start: 9760, byte_len: 2 }) }, + Range { from: '\u{1ee2c}', to: '\u{1ee2c}', mapping: Mapped(StringTableSlice { byte_start: 9762, byte_len: 2 }) }, + Range { from: '\u{1ee2d}', to: '\u{1ee2d}', mapping: Mapped(StringTableSlice { byte_start: 9764, byte_len: 2 }) }, + Range { from: '\u{1ee2e}', to: '\u{1ee2e}', mapping: Mapped(StringTableSlice { byte_start: 9738, byte_len: 2 }) }, + Range { from: '\u{1ee2f}', to: '\u{1ee2f}', mapping: Mapped(StringTableSlice { byte_start: 9750, byte_len: 2 }) }, + Range { from: '\u{1ee30}', to: '\u{1ee30}', mapping: Mapped(StringTableSlice { byte_start: 9754, byte_len: 2 }) }, + Range { from: '\u{1ee31}', to: '\u{1ee31}', mapping: Mapped(StringTableSlice { byte_start: 9742, byte_len: 2 }) }, + Range { from: '\u{1ee32}', to: '\u{1ee32}', mapping: Mapped(StringTableSlice { byte_start: 9756, byte_len: 2 }) }, + Range { from: '\u{1ee33}', to: '\u{1ee33}', mapping: Disallowed }, + Range { from: '\u{1ee34}', to: '\u{1ee34}', mapping: Mapped(StringTableSlice { byte_start: 9740, byte_len: 2 }) }, + Range { from: '\u{1ee35}', to: '\u{1ee35}', mapping: Mapped(StringTableSlice { byte_start: 9720, byte_len: 2 }) }, + Range { from: '\u{1ee36}', to: '\u{1ee36}', mapping: Mapped(StringTableSlice { byte_start: 9722, byte_len: 2 }) }, + Range { from: '\u{1ee37}', to: '\u{1ee37}', mapping: Mapped(StringTableSlice { byte_start: 9728, byte_len: 2 }) }, + Range { from: '\u{1ee38}', to: '\u{1ee38}', mapping: Disallowed }, + Range { from: '\u{1ee39}', to: '\u{1ee39}', mapping: Mapped(StringTableSlice { byte_start: 9744, byte_len: 2 }) }, + Range { from: '\u{1ee3a}', to: '\u{1ee3a}', mapping: Disallowed }, + Range { from: '\u{1ee3b}', to: '\u{1ee3b}', mapping: Mapped(StringTableSlice { byte_start: 9752, byte_len: 2 }) }, + Range { from: '\u{1ee3c}', to: '\u{1ee41}', mapping: Disallowed }, + Range { from: '\u{1ee42}', to: '\u{1ee42}', mapping: Mapped(StringTableSlice { byte_start: 9724, byte_len: 2 }) }, + Range { from: '\u{1ee43}', to: '\u{1ee46}', mapping: Disallowed }, + Range { from: '\u{1ee47}', to: '\u{1ee47}', mapping: Mapped(StringTableSlice { byte_start: 9726, byte_len: 2 }) }, + Range { from: '\u{1ee48}', to: '\u{1ee48}', mapping: Disallowed }, + Range { from: '\u{1ee49}', to: '\u{1ee49}', mapping: Mapped(StringTableSlice { byte_start: 9770, byte_len: 2 }) }, + Range { from: '\u{1ee4a}', to: '\u{1ee4a}', mapping: Disallowed }, + Range { from: '\u{1ee4b}', to: '\u{1ee4b}', mapping: Mapped(StringTableSlice { byte_start: 9760, byte_len: 2 }) }, + Range { from: '\u{1ee4c}', to: '\u{1ee4c}', mapping: Disallowed }, + Range { from: '\u{1ee4d}', to: '\u{1ee4d}', mapping: Mapped(StringTableSlice { byte_start: 9764, byte_len: 2 }) }, + Range { from: '\u{1ee4e}', to: '\u{1ee4e}', mapping: Mapped(StringTableSlice { byte_start: 9738, byte_len: 2 }) }, + Range { from: '\u{1ee4f}', to: '\u{1ee4f}', mapping: Mapped(StringTableSlice { byte_start: 9750, byte_len: 2 }) }, + Range { from: '\u{1ee50}', to: '\u{1ee50}', mapping: Disallowed }, + Range { from: '\u{1ee51}', to: '\u{1ee51}', mapping: Mapped(StringTableSlice { byte_start: 9742, byte_len: 2 }) }, + Range { from: '\u{1ee52}', to: '\u{1ee52}', mapping: Mapped(StringTableSlice { byte_start: 9756, byte_len: 2 }) }, + Range { from: '\u{1ee53}', to: '\u{1ee53}', mapping: Disallowed }, + Range { from: '\u{1ee54}', to: '\u{1ee54}', mapping: Mapped(StringTableSlice { byte_start: 9740, byte_len: 2 }) }, + Range { from: '\u{1ee55}', to: '\u{1ee56}', mapping: Disallowed }, + Range { from: '\u{1ee57}', to: '\u{1ee57}', mapping: Mapped(StringTableSlice { byte_start: 9728, byte_len: 2 }) }, + Range { from: '\u{1ee58}', to: '\u{1ee58}', mapping: Disallowed }, + Range { from: '\u{1ee59}', to: '\u{1ee59}', mapping: Mapped(StringTableSlice { byte_start: 9744, byte_len: 2 }) }, + Range { from: '\u{1ee5a}', to: '\u{1ee5a}', mapping: Disallowed }, + Range { from: '\u{1ee5b}', to: '\u{1ee5b}', mapping: Mapped(StringTableSlice { byte_start: 9752, byte_len: 2 }) }, + Range { from: '\u{1ee5c}', to: '\u{1ee5c}', mapping: Disallowed }, + Range { from: '\u{1ee5d}', to: '\u{1ee5d}', mapping: Mapped(StringTableSlice { byte_start: 8170, byte_len: 2 }) }, + Range { from: '\u{1ee5e}', to: '\u{1ee5e}', mapping: Disallowed }, + Range { from: '\u{1ee5f}', to: '\u{1ee5f}', mapping: Mapped(StringTableSlice { byte_start: 10802, byte_len: 2 }) }, + Range { from: '\u{1ee60}', to: '\u{1ee60}', mapping: Disallowed }, + Range { from: '\u{1ee61}', to: '\u{1ee61}', mapping: Mapped(StringTableSlice { byte_start: 9716, byte_len: 2 }) }, + Range { from: '\u{1ee62}', to: '\u{1ee62}', mapping: Mapped(StringTableSlice { byte_start: 9724, byte_len: 2 }) }, + Range { from: '\u{1ee63}', to: '\u{1ee63}', mapping: Disallowed }, + Range { from: '\u{1ee64}', to: '\u{1ee64}', mapping: Mapped(StringTableSlice { byte_start: 9766, byte_len: 2 }) }, + Range { from: '\u{1ee65}', to: '\u{1ee66}', mapping: Disallowed }, + Range { from: '\u{1ee67}', to: '\u{1ee67}', mapping: Mapped(StringTableSlice { byte_start: 9726, byte_len: 2 }) }, + Range { from: '\u{1ee68}', to: '\u{1ee68}', mapping: Mapped(StringTableSlice { byte_start: 9746, byte_len: 2 }) }, + Range { from: '\u{1ee69}', to: '\u{1ee69}', mapping: Mapped(StringTableSlice { byte_start: 9770, byte_len: 2 }) }, + Range { from: '\u{1ee6a}', to: '\u{1ee6a}', mapping: Mapped(StringTableSlice { byte_start: 9758, byte_len: 2 }) }, + Range { from: '\u{1ee6b}', to: '\u{1ee6b}', mapping: Disallowed }, + Range { from: '\u{1ee6c}', to: '\u{1ee6c}', mapping: Mapped(StringTableSlice { byte_start: 9762, byte_len: 2 }) }, + Range { from: '\u{1ee6d}', to: '\u{1ee6d}', mapping: Mapped(StringTableSlice { byte_start: 9764, byte_len: 2 }) }, + Range { from: '\u{1ee6e}', to: '\u{1ee6e}', mapping: Mapped(StringTableSlice { byte_start: 9738, byte_len: 2 }) }, + Range { from: '\u{1ee6f}', to: '\u{1ee6f}', mapping: Mapped(StringTableSlice { byte_start: 9750, byte_len: 2 }) }, + Range { from: '\u{1ee70}', to: '\u{1ee70}', mapping: Mapped(StringTableSlice { byte_start: 9754, byte_len: 2 }) }, + Range { from: '\u{1ee71}', to: '\u{1ee71}', mapping: Mapped(StringTableSlice { byte_start: 9742, byte_len: 2 }) }, + Range { from: '\u{1ee72}', to: '\u{1ee72}', mapping: Mapped(StringTableSlice { byte_start: 9756, byte_len: 2 }) }, + Range { from: '\u{1ee73}', to: '\u{1ee73}', mapping: Disallowed }, + Range { from: '\u{1ee74}', to: '\u{1ee74}', mapping: Mapped(StringTableSlice { byte_start: 9740, byte_len: 2 }) }, + Range { from: '\u{1ee75}', to: '\u{1ee75}', mapping: Mapped(StringTableSlice { byte_start: 9720, byte_len: 2 }) }, + Range { from: '\u{1ee76}', to: '\u{1ee76}', mapping: Mapped(StringTableSlice { byte_start: 9722, byte_len: 2 }) }, + Range { from: '\u{1ee77}', to: '\u{1ee77}', mapping: Mapped(StringTableSlice { byte_start: 9728, byte_len: 2 }) }, + Range { from: '\u{1ee78}', to: '\u{1ee78}', mapping: Disallowed }, + Range { from: '\u{1ee79}', to: '\u{1ee79}', mapping: Mapped(StringTableSlice { byte_start: 9744, byte_len: 2 }) }, + Range { from: '\u{1ee7a}', to: '\u{1ee7a}', mapping: Mapped(StringTableSlice { byte_start: 9748, byte_len: 2 }) }, + Range { from: '\u{1ee7b}', to: '\u{1ee7b}', mapping: Mapped(StringTableSlice { byte_start: 9752, byte_len: 2 }) }, + Range { from: '\u{1ee7c}', to: '\u{1ee7c}', mapping: Mapped(StringTableSlice { byte_start: 10798, byte_len: 2 }) }, + Range { from: '\u{1ee7d}', to: '\u{1ee7d}', mapping: Disallowed }, + Range { from: '\u{1ee7e}', to: '\u{1ee7e}', mapping: Mapped(StringTableSlice { byte_start: 10800, byte_len: 2 }) }, + Range { from: '\u{1ee7f}', to: '\u{1ee7f}', mapping: Disallowed }, + Range { from: '\u{1ee80}', to: '\u{1ee80}', mapping: Mapped(StringTableSlice { byte_start: 9714, byte_len: 2 }) }, + Range { from: '\u{1ee81}', to: '\u{1ee81}', mapping: Mapped(StringTableSlice { byte_start: 9716, byte_len: 2 }) }, + Range { from: '\u{1ee82}', to: '\u{1ee82}', mapping: Mapped(StringTableSlice { byte_start: 9724, byte_len: 2 }) }, + Range { from: '\u{1ee83}', to: '\u{1ee83}', mapping: Mapped(StringTableSlice { byte_start: 9730, byte_len: 2 }) }, + Range { from: '\u{1ee84}', to: '\u{1ee84}', mapping: Mapped(StringTableSlice { byte_start: 9766, byte_len: 2 }) }, + Range { from: '\u{1ee85}', to: '\u{1ee85}', mapping: Mapped(StringTableSlice { byte_start: 9768, byte_len: 2 }) }, + Range { from: '\u{1ee86}', to: '\u{1ee86}', mapping: Mapped(StringTableSlice { byte_start: 9736, byte_len: 2 }) }, + Range { from: '\u{1ee87}', to: '\u{1ee87}', mapping: Mapped(StringTableSlice { byte_start: 9726, byte_len: 2 }) }, + Range { from: '\u{1ee88}', to: '\u{1ee88}', mapping: Mapped(StringTableSlice { byte_start: 9746, byte_len: 2 }) }, + Range { from: '\u{1ee89}', to: '\u{1ee89}', mapping: Mapped(StringTableSlice { byte_start: 9770, byte_len: 2 }) }, + Range { from: '\u{1ee8a}', to: '\u{1ee8a}', mapping: Disallowed }, + Range { from: '\u{1ee8b}', to: '\u{1ee8b}', mapping: Mapped(StringTableSlice { byte_start: 9760, byte_len: 2 }) }, + Range { from: '\u{1ee8c}', to: '\u{1ee8c}', mapping: Mapped(StringTableSlice { byte_start: 9762, byte_len: 2 }) }, + Range { from: '\u{1ee8d}', to: '\u{1ee8d}', mapping: Mapped(StringTableSlice { byte_start: 9764, byte_len: 2 }) }, + Range { from: '\u{1ee8e}', to: '\u{1ee8e}', mapping: Mapped(StringTableSlice { byte_start: 9738, byte_len: 2 }) }, + Range { from: '\u{1ee8f}', to: '\u{1ee8f}', mapping: Mapped(StringTableSlice { byte_start: 9750, byte_len: 2 }) }, + Range { from: '\u{1ee90}', to: '\u{1ee90}', mapping: Mapped(StringTableSlice { byte_start: 9754, byte_len: 2 }) }, + Range { from: '\u{1ee91}', to: '\u{1ee91}', mapping: Mapped(StringTableSlice { byte_start: 9742, byte_len: 2 }) }, + Range { from: '\u{1ee92}', to: '\u{1ee92}', mapping: Mapped(StringTableSlice { byte_start: 9756, byte_len: 2 }) }, + Range { from: '\u{1ee93}', to: '\u{1ee93}', mapping: Mapped(StringTableSlice { byte_start: 9734, byte_len: 2 }) }, + Range { from: '\u{1ee94}', to: '\u{1ee94}', mapping: Mapped(StringTableSlice { byte_start: 9740, byte_len: 2 }) }, + Range { from: '\u{1ee95}', to: '\u{1ee95}', mapping: Mapped(StringTableSlice { byte_start: 9720, byte_len: 2 }) }, + Range { from: '\u{1ee96}', to: '\u{1ee96}', mapping: Mapped(StringTableSlice { byte_start: 9722, byte_len: 2 }) }, + Range { from: '\u{1ee97}', to: '\u{1ee97}', mapping: Mapped(StringTableSlice { byte_start: 9728, byte_len: 2 }) }, + Range { from: '\u{1ee98}', to: '\u{1ee98}', mapping: Mapped(StringTableSlice { byte_start: 9732, byte_len: 2 }) }, + Range { from: '\u{1ee99}', to: '\u{1ee99}', mapping: Mapped(StringTableSlice { byte_start: 9744, byte_len: 2 }) }, + Range { from: '\u{1ee9a}', to: '\u{1ee9a}', mapping: Mapped(StringTableSlice { byte_start: 9748, byte_len: 2 }) }, + Range { from: '\u{1ee9b}', to: '\u{1ee9b}', mapping: Mapped(StringTableSlice { byte_start: 9752, byte_len: 2 }) }, + Range { from: '\u{1ee9c}', to: '\u{1eea0}', mapping: Disallowed }, + Range { from: '\u{1eea1}', to: '\u{1eea1}', mapping: Mapped(StringTableSlice { byte_start: 9716, byte_len: 2 }) }, + Range { from: '\u{1eea2}', to: '\u{1eea2}', mapping: Mapped(StringTableSlice { byte_start: 9724, byte_len: 2 }) }, + Range { from: '\u{1eea3}', to: '\u{1eea3}', mapping: Mapped(StringTableSlice { byte_start: 9730, byte_len: 2 }) }, + Range { from: '\u{1eea4}', to: '\u{1eea4}', mapping: Disallowed }, + Range { from: '\u{1eea5}', to: '\u{1eea5}', mapping: Mapped(StringTableSlice { byte_start: 9768, byte_len: 2 }) }, + Range { from: '\u{1eea6}', to: '\u{1eea6}', mapping: Mapped(StringTableSlice { byte_start: 9736, byte_len: 2 }) }, + Range { from: '\u{1eea7}', to: '\u{1eea7}', mapping: Mapped(StringTableSlice { byte_start: 9726, byte_len: 2 }) }, + Range { from: '\u{1eea8}', to: '\u{1eea8}', mapping: Mapped(StringTableSlice { byte_start: 9746, byte_len: 2 }) }, + Range { from: '\u{1eea9}', to: '\u{1eea9}', mapping: Mapped(StringTableSlice { byte_start: 9770, byte_len: 2 }) }, + Range { from: '\u{1eeaa}', to: '\u{1eeaa}', mapping: Disallowed }, + Range { from: '\u{1eeab}', to: '\u{1eeab}', mapping: Mapped(StringTableSlice { byte_start: 9760, byte_len: 2 }) }, + Range { from: '\u{1eeac}', to: '\u{1eeac}', mapping: Mapped(StringTableSlice { byte_start: 9762, byte_len: 2 }) }, + Range { from: '\u{1eead}', to: '\u{1eead}', mapping: Mapped(StringTableSlice { byte_start: 9764, byte_len: 2 }) }, + Range { from: '\u{1eeae}', to: '\u{1eeae}', mapping: Mapped(StringTableSlice { byte_start: 9738, byte_len: 2 }) }, + Range { from: '\u{1eeaf}', to: '\u{1eeaf}', mapping: Mapped(StringTableSlice { byte_start: 9750, byte_len: 2 }) }, + Range { from: '\u{1eeb0}', to: '\u{1eeb0}', mapping: Mapped(StringTableSlice { byte_start: 9754, byte_len: 2 }) }, + Range { from: '\u{1eeb1}', to: '\u{1eeb1}', mapping: Mapped(StringTableSlice { byte_start: 9742, byte_len: 2 }) }, + Range { from: '\u{1eeb2}', to: '\u{1eeb2}', mapping: Mapped(StringTableSlice { byte_start: 9756, byte_len: 2 }) }, + Range { from: '\u{1eeb3}', to: '\u{1eeb3}', mapping: Mapped(StringTableSlice { byte_start: 9734, byte_len: 2 }) }, + Range { from: '\u{1eeb4}', to: '\u{1eeb4}', mapping: Mapped(StringTableSlice { byte_start: 9740, byte_len: 2 }) }, + Range { from: '\u{1eeb5}', to: '\u{1eeb5}', mapping: Mapped(StringTableSlice { byte_start: 9720, byte_len: 2 }) }, + Range { from: '\u{1eeb6}', to: '\u{1eeb6}', mapping: Mapped(StringTableSlice { byte_start: 9722, byte_len: 2 }) }, + Range { from: '\u{1eeb7}', to: '\u{1eeb7}', mapping: Mapped(StringTableSlice { byte_start: 9728, byte_len: 2 }) }, + Range { from: '\u{1eeb8}', to: '\u{1eeb8}', mapping: Mapped(StringTableSlice { byte_start: 9732, byte_len: 2 }) }, + Range { from: '\u{1eeb9}', to: '\u{1eeb9}', mapping: Mapped(StringTableSlice { byte_start: 9744, byte_len: 2 }) }, + Range { from: '\u{1eeba}', to: '\u{1eeba}', mapping: Mapped(StringTableSlice { byte_start: 9748, byte_len: 2 }) }, + Range { from: '\u{1eebb}', to: '\u{1eebb}', mapping: Mapped(StringTableSlice { byte_start: 9752, byte_len: 2 }) }, + Range { from: '\u{1eebc}', to: '\u{1eeef}', mapping: Disallowed }, + Range { from: '\u{1eef0}', to: '\u{1eef1}', mapping: Valid }, + Range { from: '\u{1eef2}', to: '\u{1efff}', mapping: Disallowed }, + Range { from: '\u{1f000}', to: '\u{1f02b}', mapping: Valid }, + Range { from: '\u{1f02c}', to: '\u{1f02f}', mapping: Disallowed }, + Range { from: '\u{1f030}', to: '\u{1f093}', mapping: Valid }, + Range { from: '\u{1f094}', to: '\u{1f09f}', mapping: Disallowed }, + Range { from: '\u{1f0a0}', to: '\u{1f0ae}', mapping: Valid }, + Range { from: '\u{1f0af}', to: '\u{1f0b0}', mapping: Disallowed }, + Range { from: '\u{1f0b1}', to: '\u{1f0be}', mapping: Valid }, + Range { from: '\u{1f0bf}', to: '\u{1f0bf}', mapping: Valid }, + Range { from: '\u{1f0c0}', to: '\u{1f0c0}', mapping: Disallowed }, + Range { from: '\u{1f0c1}', to: '\u{1f0cf}', mapping: Valid }, + Range { from: '\u{1f0d0}', to: '\u{1f0d0}', mapping: Disallowed }, + Range { from: '\u{1f0d1}', to: '\u{1f0df}', mapping: Valid }, + Range { from: '\u{1f0e0}', to: '\u{1f0f5}', mapping: Valid }, + Range { from: '\u{1f0f6}', to: '\u{1f0ff}', mapping: Disallowed }, + Range { from: '\u{1f100}', to: '\u{1f100}', mapping: Disallowed }, + Range { from: '\u{1f101}', to: '\u{1f101}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 10804, byte_len: 2 }) }, + Range { from: '\u{1f102}', to: '\u{1f102}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 10806, byte_len: 2 }) }, + Range { from: '\u{1f103}', to: '\u{1f103}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 10808, byte_len: 2 }) }, + Range { from: '\u{1f104}', to: '\u{1f104}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 10810, byte_len: 2 }) }, + Range { from: '\u{1f105}', to: '\u{1f105}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 10812, byte_len: 2 }) }, + Range { from: '\u{1f106}', to: '\u{1f106}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 10814, byte_len: 2 }) }, + Range { from: '\u{1f107}', to: '\u{1f107}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 10816, byte_len: 2 }) }, + Range { from: '\u{1f108}', to: '\u{1f108}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 10818, byte_len: 2 }) }, + Range { from: '\u{1f109}', to: '\u{1f109}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 10820, byte_len: 2 }) }, + Range { from: '\u{1f10a}', to: '\u{1f10a}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 10822, byte_len: 2 }) }, + Range { from: '\u{1f10b}', to: '\u{1f10c}', mapping: Valid }, + Range { from: '\u{1f10d}', to: '\u{1f10f}', mapping: Disallowed }, + Range { from: '\u{1f110}', to: '\u{1f110}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2506, byte_len: 3 }) }, + Range { from: '\u{1f111}', to: '\u{1f111}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2509, byte_len: 3 }) }, + Range { from: '\u{1f112}', to: '\u{1f112}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2512, byte_len: 3 }) }, + Range { from: '\u{1f113}', to: '\u{1f113}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2515, byte_len: 3 }) }, + Range { from: '\u{1f114}', to: '\u{1f114}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2518, byte_len: 3 }) }, + Range { from: '\u{1f115}', to: '\u{1f115}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2521, byte_len: 3 }) }, + Range { from: '\u{1f116}', to: '\u{1f116}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2524, byte_len: 3 }) }, + Range { from: '\u{1f117}', to: '\u{1f117}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2527, byte_len: 3 }) }, + Range { from: '\u{1f118}', to: '\u{1f118}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2530, byte_len: 3 }) }, + Range { from: '\u{1f119}', to: '\u{1f119}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2533, byte_len: 3 }) }, + Range { from: '\u{1f11a}', to: '\u{1f11a}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2536, byte_len: 3 }) }, + Range { from: '\u{1f11b}', to: '\u{1f11b}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2539, byte_len: 3 }) }, + Range { from: '\u{1f11c}', to: '\u{1f11c}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2542, byte_len: 3 }) }, + Range { from: '\u{1f11d}', to: '\u{1f11d}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2545, byte_len: 3 }) }, + Range { from: '\u{1f11e}', to: '\u{1f11e}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2548, byte_len: 3 }) }, + Range { from: '\u{1f11f}', to: '\u{1f11f}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2551, byte_len: 3 }) }, + Range { from: '\u{1f120}', to: '\u{1f120}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2554, byte_len: 3 }) }, + Range { from: '\u{1f121}', to: '\u{1f121}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2557, byte_len: 3 }) }, + Range { from: '\u{1f122}', to: '\u{1f122}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2560, byte_len: 3 }) }, + Range { from: '\u{1f123}', to: '\u{1f123}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2563, byte_len: 3 }) }, + Range { from: '\u{1f124}', to: '\u{1f124}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2566, byte_len: 3 }) }, + Range { from: '\u{1f125}', to: '\u{1f125}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2569, byte_len: 3 }) }, + Range { from: '\u{1f126}', to: '\u{1f126}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2572, byte_len: 3 }) }, + Range { from: '\u{1f127}', to: '\u{1f127}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2575, byte_len: 3 }) }, + Range { from: '\u{1f128}', to: '\u{1f128}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2578, byte_len: 3 }) }, + Range { from: '\u{1f129}', to: '\u{1f129}', mapping: DisallowedStd3Mapped(StringTableSlice { byte_start: 2581, byte_len: 3 }) }, + Range { from: '\u{1f12a}', to: '\u{1f12a}', mapping: Mapped(StringTableSlice { byte_start: 10824, byte_len: 7 }) }, + Range { from: '\u{1f12b}', to: '\u{1f12b}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1f12c}', to: '\u{1f12c}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1f12d}', to: '\u{1f12d}', mapping: Mapped(StringTableSlice { byte_start: 5952, byte_len: 2 }) }, + Range { from: '\u{1f12e}', to: '\u{1f12e}', mapping: Mapped(StringTableSlice { byte_start: 10831, byte_len: 2 }) }, + Range { from: '\u{1f12f}', to: '\u{1f12f}', mapping: Disallowed }, + Range { from: '\u{1f130}', to: '\u{1f130}', mapping: Mapped(StringTableSlice { byte_start: 0, byte_len: 1 }) }, + Range { from: '\u{1f131}', to: '\u{1f131}', mapping: Mapped(StringTableSlice { byte_start: 1, byte_len: 1 }) }, + Range { from: '\u{1f132}', to: '\u{1f132}', mapping: Mapped(StringTableSlice { byte_start: 2, byte_len: 1 }) }, + Range { from: '\u{1f133}', to: '\u{1f133}', mapping: Mapped(StringTableSlice { byte_start: 3, byte_len: 1 }) }, + Range { from: '\u{1f134}', to: '\u{1f134}', mapping: Mapped(StringTableSlice { byte_start: 4, byte_len: 1 }) }, + Range { from: '\u{1f135}', to: '\u{1f135}', mapping: Mapped(StringTableSlice { byte_start: 5, byte_len: 1 }) }, + Range { from: '\u{1f136}', to: '\u{1f136}', mapping: Mapped(StringTableSlice { byte_start: 6, byte_len: 1 }) }, + Range { from: '\u{1f137}', to: '\u{1f137}', mapping: Mapped(StringTableSlice { byte_start: 7, byte_len: 1 }) }, + Range { from: '\u{1f138}', to: '\u{1f138}', mapping: Mapped(StringTableSlice { byte_start: 8, byte_len: 1 }) }, + Range { from: '\u{1f139}', to: '\u{1f139}', mapping: Mapped(StringTableSlice { byte_start: 9, byte_len: 1 }) }, + Range { from: '\u{1f13a}', to: '\u{1f13a}', mapping: Mapped(StringTableSlice { byte_start: 10, byte_len: 1 }) }, + Range { from: '\u{1f13b}', to: '\u{1f13b}', mapping: Mapped(StringTableSlice { byte_start: 11, byte_len: 1 }) }, + Range { from: '\u{1f13c}', to: '\u{1f13c}', mapping: Mapped(StringTableSlice { byte_start: 12, byte_len: 1 }) }, + Range { from: '\u{1f13d}', to: '\u{1f13d}', mapping: Mapped(StringTableSlice { byte_start: 13, byte_len: 1 }) }, + Range { from: '\u{1f13e}', to: '\u{1f13e}', mapping: Mapped(StringTableSlice { byte_start: 14, byte_len: 1 }) }, + Range { from: '\u{1f13f}', to: '\u{1f13f}', mapping: Mapped(StringTableSlice { byte_start: 15, byte_len: 1 }) }, + Range { from: '\u{1f140}', to: '\u{1f140}', mapping: Mapped(StringTableSlice { byte_start: 16, byte_len: 1 }) }, + Range { from: '\u{1f141}', to: '\u{1f141}', mapping: Mapped(StringTableSlice { byte_start: 17, byte_len: 1 }) }, + Range { from: '\u{1f142}', to: '\u{1f142}', mapping: Mapped(StringTableSlice { byte_start: 18, byte_len: 1 }) }, + Range { from: '\u{1f143}', to: '\u{1f143}', mapping: Mapped(StringTableSlice { byte_start: 19, byte_len: 1 }) }, + Range { from: '\u{1f144}', to: '\u{1f144}', mapping: Mapped(StringTableSlice { byte_start: 20, byte_len: 1 }) }, + Range { from: '\u{1f145}', to: '\u{1f145}', mapping: Mapped(StringTableSlice { byte_start: 21, byte_len: 1 }) }, + Range { from: '\u{1f146}', to: '\u{1f146}', mapping: Mapped(StringTableSlice { byte_start: 22, byte_len: 1 }) }, + Range { from: '\u{1f147}', to: '\u{1f147}', mapping: Mapped(StringTableSlice { byte_start: 23, byte_len: 1 }) }, + Range { from: '\u{1f148}', to: '\u{1f148}', mapping: Mapped(StringTableSlice { byte_start: 24, byte_len: 1 }) }, + Range { from: '\u{1f149}', to: '\u{1f149}', mapping: Mapped(StringTableSlice { byte_start: 25, byte_len: 1 }) }, + Range { from: '\u{1f14a}', to: '\u{1f14a}', mapping: Mapped(StringTableSlice { byte_start: 10833, byte_len: 2 }) }, + Range { from: '\u{1f14b}', to: '\u{1f14b}', mapping: Mapped(StringTableSlice { byte_start: 5927, byte_len: 2 }) }, + Range { from: '\u{1f14c}', to: '\u{1f14c}', mapping: Mapped(StringTableSlice { byte_start: 10835, byte_len: 2 }) }, + Range { from: '\u{1f14d}', to: '\u{1f14d}', mapping: Mapped(StringTableSlice { byte_start: 119, byte_len: 2 }) }, + Range { from: '\u{1f14e}', to: '\u{1f14e}', mapping: Mapped(StringTableSlice { byte_start: 10837, byte_len: 3 }) }, + Range { from: '\u{1f14f}', to: '\u{1f14f}', mapping: Mapped(StringTableSlice { byte_start: 10840, byte_len: 2 }) }, + Range { from: '\u{1f150}', to: '\u{1f156}', mapping: Valid }, + Range { from: '\u{1f157}', to: '\u{1f157}', mapping: Valid }, + Range { from: '\u{1f158}', to: '\u{1f15e}', mapping: Valid }, + Range { from: '\u{1f15f}', to: '\u{1f15f}', mapping: Valid }, + Range { from: '\u{1f160}', to: '\u{1f169}', mapping: Valid }, + Range { from: '\u{1f16a}', to: '\u{1f16a}', mapping: Mapped(StringTableSlice { byte_start: 10842, byte_len: 2 }) }, + Range { from: '\u{1f16b}', to: '\u{1f16b}', mapping: Mapped(StringTableSlice { byte_start: 10844, byte_len: 2 }) }, + Range { from: '\u{1f16c}', to: '\u{1f16f}', mapping: Disallowed }, + Range { from: '\u{1f170}', to: '\u{1f178}', mapping: Valid }, + Range { from: '\u{1f179}', to: '\u{1f179}', mapping: Valid }, + Range { from: '\u{1f17a}', to: '\u{1f17a}', mapping: Valid }, + Range { from: '\u{1f17b}', to: '\u{1f17c}', mapping: Valid }, + Range { from: '\u{1f17d}', to: '\u{1f17e}', mapping: Valid }, + Range { from: '\u{1f17f}', to: '\u{1f17f}', mapping: Valid }, + Range { from: '\u{1f180}', to: '\u{1f189}', mapping: Valid }, + Range { from: '\u{1f18a}', to: '\u{1f18d}', mapping: Valid }, + Range { from: '\u{1f18e}', to: '\u{1f18f}', mapping: Valid }, + Range { from: '\u{1f190}', to: '\u{1f190}', mapping: Mapped(StringTableSlice { byte_start: 10846, byte_len: 2 }) }, + Range { from: '\u{1f191}', to: '\u{1f19a}', mapping: Valid }, + Range { from: '\u{1f19b}', to: '\u{1f1ac}', mapping: Valid }, + Range { from: '\u{1f1ad}', to: '\u{1f1e5}', mapping: Disallowed }, + Range { from: '\u{1f1e6}', to: '\u{1f1ff}', mapping: Valid }, + Range { from: '\u{1f200}', to: '\u{1f200}', mapping: Mapped(StringTableSlice { byte_start: 10848, byte_len: 6 }) }, + Range { from: '\u{1f201}', to: '\u{1f201}', mapping: Mapped(StringTableSlice { byte_start: 10854, byte_len: 6 }) }, + Range { from: '\u{1f202}', to: '\u{1f202}', mapping: Mapped(StringTableSlice { byte_start: 4585, byte_len: 3 }) }, + Range { from: '\u{1f203}', to: '\u{1f20f}', mapping: Disallowed }, + Range { from: '\u{1f210}', to: '\u{1f210}', mapping: Mapped(StringTableSlice { byte_start: 3136, byte_len: 3 }) }, + Range { from: '\u{1f211}', to: '\u{1f211}', mapping: Mapped(StringTableSlice { byte_start: 10860, byte_len: 3 }) }, + Range { from: '\u{1f212}', to: '\u{1f212}', mapping: Mapped(StringTableSlice { byte_start: 10863, byte_len: 3 }) }, + Range { from: '\u{1f213}', to: '\u{1f213}', mapping: Mapped(StringTableSlice { byte_start: 10866, byte_len: 3 }) }, + Range { from: '\u{1f214}', to: '\u{1f214}', mapping: Mapped(StringTableSlice { byte_start: 2965, byte_len: 3 }) }, + Range { from: '\u{1f215}', to: '\u{1f215}', mapping: Mapped(StringTableSlice { byte_start: 10869, byte_len: 3 }) }, + Range { from: '\u{1f216}', to: '\u{1f216}', mapping: Mapped(StringTableSlice { byte_start: 10872, byte_len: 3 }) }, + Range { from: '\u{1f217}', to: '\u{1f217}', mapping: Mapped(StringTableSlice { byte_start: 3922, byte_len: 3 }) }, + Range { from: '\u{1f218}', to: '\u{1f218}', mapping: Mapped(StringTableSlice { byte_start: 10875, byte_len: 3 }) }, + Range { from: '\u{1f219}', to: '\u{1f219}', mapping: Mapped(StringTableSlice { byte_start: 10878, byte_len: 3 }) }, + Range { from: '\u{1f21a}', to: '\u{1f21a}', mapping: Mapped(StringTableSlice { byte_start: 10881, byte_len: 3 }) }, + Range { from: '\u{1f21b}', to: '\u{1f21b}', mapping: Mapped(StringTableSlice { byte_start: 7241, byte_len: 3 }) }, + Range { from: '\u{1f21c}', to: '\u{1f21c}', mapping: Mapped(StringTableSlice { byte_start: 10884, byte_len: 3 }) }, + Range { from: '\u{1f21d}', to: '\u{1f21d}', mapping: Mapped(StringTableSlice { byte_start: 10887, byte_len: 3 }) }, + Range { from: '\u{1f21e}', to: '\u{1f21e}', mapping: Mapped(StringTableSlice { byte_start: 10890, byte_len: 3 }) }, + Range { from: '\u{1f21f}', to: '\u{1f21f}', mapping: Mapped(StringTableSlice { byte_start: 10893, byte_len: 3 }) }, + Range { from: '\u{1f220}', to: '\u{1f220}', mapping: Mapped(StringTableSlice { byte_start: 10896, byte_len: 3 }) }, + Range { from: '\u{1f221}', to: '\u{1f221}', mapping: Mapped(StringTableSlice { byte_start: 10899, byte_len: 3 }) }, + Range { from: '\u{1f222}', to: '\u{1f222}', mapping: Mapped(StringTableSlice { byte_start: 3244, byte_len: 3 }) }, + Range { from: '\u{1f223}', to: '\u{1f223}', mapping: Mapped(StringTableSlice { byte_start: 10902, byte_len: 3 }) }, + Range { from: '\u{1f224}', to: '\u{1f224}', mapping: Mapped(StringTableSlice { byte_start: 10905, byte_len: 3 }) }, + Range { from: '\u{1f225}', to: '\u{1f225}', mapping: Mapped(StringTableSlice { byte_start: 10908, byte_len: 3 }) }, + Range { from: '\u{1f226}', to: '\u{1f226}', mapping: Mapped(StringTableSlice { byte_start: 10911, byte_len: 3 }) }, + Range { from: '\u{1f227}', to: '\u{1f227}', mapping: Mapped(StringTableSlice { byte_start: 10914, byte_len: 3 }) }, + Range { from: '\u{1f228}', to: '\u{1f228}', mapping: Mapped(StringTableSlice { byte_start: 10917, byte_len: 3 }) }, + Range { from: '\u{1f229}', to: '\u{1f229}', mapping: Mapped(StringTableSlice { byte_start: 2947, byte_len: 3 }) }, + Range { from: '\u{1f22a}', to: '\u{1f22a}', mapping: Mapped(StringTableSlice { byte_start: 3898, byte_len: 3 }) }, + Range { from: '\u{1f22b}', to: '\u{1f22b}', mapping: Mapped(StringTableSlice { byte_start: 10920, byte_len: 3 }) }, + Range { from: '\u{1f22c}', to: '\u{1f22c}', mapping: Mapped(StringTableSlice { byte_start: 4434, byte_len: 3 }) }, + Range { from: '\u{1f22d}', to: '\u{1f22d}', mapping: Mapped(StringTableSlice { byte_start: 3907, byte_len: 3 }) }, + Range { from: '\u{1f22e}', to: '\u{1f22e}', mapping: Mapped(StringTableSlice { byte_start: 4437, byte_len: 3 }) }, + Range { from: '\u{1f22f}', to: '\u{1f22f}', mapping: Mapped(StringTableSlice { byte_start: 10923, byte_len: 3 }) }, + Range { from: '\u{1f230}', to: '\u{1f230}', mapping: Mapped(StringTableSlice { byte_start: 3412, byte_len: 3 }) }, + Range { from: '\u{1f231}', to: '\u{1f231}', mapping: Mapped(StringTableSlice { byte_start: 10926, byte_len: 3 }) }, + Range { from: '\u{1f232}', to: '\u{1f232}', mapping: Mapped(StringTableSlice { byte_start: 10929, byte_len: 3 }) }, + Range { from: '\u{1f233}', to: '\u{1f233}', mapping: Mapped(StringTableSlice { byte_start: 10932, byte_len: 3 }) }, + Range { from: '\u{1f234}', to: '\u{1f234}', mapping: Mapped(StringTableSlice { byte_start: 10935, byte_len: 3 }) }, + Range { from: '\u{1f235}', to: '\u{1f235}', mapping: Mapped(StringTableSlice { byte_start: 10938, byte_len: 3 }) }, + Range { from: '\u{1f236}', to: '\u{1f236}', mapping: Mapped(StringTableSlice { byte_start: 4383, byte_len: 3 }) }, + Range { from: '\u{1f237}', to: '\u{1f237}', mapping: Mapped(StringTableSlice { byte_start: 3166, byte_len: 3 }) }, + Range { from: '\u{1f238}', to: '\u{1f238}', mapping: Mapped(StringTableSlice { byte_start: 10941, byte_len: 3 }) }, + Range { from: '\u{1f239}', to: '\u{1f239}', mapping: Mapped(StringTableSlice { byte_start: 10944, byte_len: 3 }) }, + Range { from: '\u{1f23a}', to: '\u{1f23a}', mapping: Mapped(StringTableSlice { byte_start: 10947, byte_len: 3 }) }, + Range { from: '\u{1f23b}', to: '\u{1f23b}', mapping: Mapped(StringTableSlice { byte_start: 10950, byte_len: 3 }) }, + Range { from: '\u{1f23c}', to: '\u{1f23f}', mapping: Disallowed }, + Range { from: '\u{1f240}', to: '\u{1f240}', mapping: Mapped(StringTableSlice { byte_start: 10953, byte_len: 9 }) }, + Range { from: '\u{1f241}', to: '\u{1f241}', mapping: Mapped(StringTableSlice { byte_start: 10962, byte_len: 9 }) }, + Range { from: '\u{1f242}', to: '\u{1f242}', mapping: Mapped(StringTableSlice { byte_start: 10971, byte_len: 9 }) }, + Range { from: '\u{1f243}', to: '\u{1f243}', mapping: Mapped(StringTableSlice { byte_start: 10980, byte_len: 9 }) }, + Range { from: '\u{1f244}', to: '\u{1f244}', mapping: Mapped(StringTableSlice { byte_start: 10989, byte_len: 9 }) }, + Range { from: '\u{1f245}', to: '\u{1f245}', mapping: Mapped(StringTableSlice { byte_start: 10998, byte_len: 9 }) }, + Range { from: '\u{1f246}', to: '\u{1f246}', mapping: Mapped(StringTableSlice { byte_start: 11007, byte_len: 9 }) }, + Range { from: '\u{1f247}', to: '\u{1f247}', mapping: Mapped(StringTableSlice { byte_start: 11016, byte_len: 9 }) }, + Range { from: '\u{1f248}', to: '\u{1f248}', mapping: Mapped(StringTableSlice { byte_start: 11025, byte_len: 9 }) }, + Range { from: '\u{1f249}', to: '\u{1f24f}', mapping: Disallowed }, + Range { from: '\u{1f250}', to: '\u{1f250}', mapping: Mapped(StringTableSlice { byte_start: 11034, byte_len: 3 }) }, + Range { from: '\u{1f251}', to: '\u{1f251}', mapping: Mapped(StringTableSlice { byte_start: 11037, byte_len: 3 }) }, + Range { from: '\u{1f252}', to: '\u{1f2ff}', mapping: Disallowed }, + Range { from: '\u{1f300}', to: '\u{1f320}', mapping: Valid }, + Range { from: '\u{1f321}', to: '\u{1f32c}', mapping: Valid }, + Range { from: '\u{1f32d}', to: '\u{1f32f}', mapping: Valid }, + Range { from: '\u{1f330}', to: '\u{1f335}', mapping: Valid }, + Range { from: '\u{1f336}', to: '\u{1f336}', mapping: Valid }, + Range { from: '\u{1f337}', to: '\u{1f37c}', mapping: Valid }, + Range { from: '\u{1f37d}', to: '\u{1f37d}', mapping: Valid }, + Range { from: '\u{1f37e}', to: '\u{1f37f}', mapping: Valid }, + Range { from: '\u{1f380}', to: '\u{1f393}', mapping: Valid }, + Range { from: '\u{1f394}', to: '\u{1f39f}', mapping: Valid }, + Range { from: '\u{1f3a0}', to: '\u{1f3c4}', mapping: Valid }, + Range { from: '\u{1f3c5}', to: '\u{1f3c5}', mapping: Valid }, + Range { from: '\u{1f3c6}', to: '\u{1f3ca}', mapping: Valid }, + Range { from: '\u{1f3cb}', to: '\u{1f3ce}', mapping: Valid }, + Range { from: '\u{1f3cf}', to: '\u{1f3d3}', mapping: Valid }, + Range { from: '\u{1f3d4}', to: '\u{1f3df}', mapping: Valid }, + Range { from: '\u{1f3e0}', to: '\u{1f3f0}', mapping: Valid }, + Range { from: '\u{1f3f1}', to: '\u{1f3f7}', mapping: Valid }, + Range { from: '\u{1f3f8}', to: '\u{1f3ff}', mapping: Valid }, + Range { from: '\u{1f400}', to: '\u{1f43e}', mapping: Valid }, + Range { from: '\u{1f43f}', to: '\u{1f43f}', mapping: Valid }, + Range { from: '\u{1f440}', to: '\u{1f440}', mapping: Valid }, + Range { from: '\u{1f441}', to: '\u{1f441}', mapping: Valid }, + Range { from: '\u{1f442}', to: '\u{1f4f7}', mapping: Valid }, + Range { from: '\u{1f4f8}', to: '\u{1f4f8}', mapping: Valid }, + Range { from: '\u{1f4f9}', to: '\u{1f4fc}', mapping: Valid }, + Range { from: '\u{1f4fd}', to: '\u{1f4fe}', mapping: Valid }, + Range { from: '\u{1f4ff}', to: '\u{1f4ff}', mapping: Valid }, + Range { from: '\u{1f500}', to: '\u{1f53d}', mapping: Valid }, + Range { from: '\u{1f53e}', to: '\u{1f53f}', mapping: Valid }, + Range { from: '\u{1f540}', to: '\u{1f543}', mapping: Valid }, + Range { from: '\u{1f544}', to: '\u{1f54a}', mapping: Valid }, + Range { from: '\u{1f54b}', to: '\u{1f54f}', mapping: Valid }, + Range { from: '\u{1f550}', to: '\u{1f567}', mapping: Valid }, + Range { from: '\u{1f568}', to: '\u{1f579}', mapping: Valid }, + Range { from: '\u{1f57a}', to: '\u{1f57a}', mapping: Valid }, + Range { from: '\u{1f57b}', to: '\u{1f5a3}', mapping: Valid }, + Range { from: '\u{1f5a4}', to: '\u{1f5a4}', mapping: Valid }, + Range { from: '\u{1f5a5}', to: '\u{1f5fa}', mapping: Valid }, + Range { from: '\u{1f5fb}', to: '\u{1f5ff}', mapping: Valid }, + Range { from: '\u{1f600}', to: '\u{1f600}', mapping: Valid }, + Range { from: '\u{1f601}', to: '\u{1f610}', mapping: Valid }, + Range { from: '\u{1f611}', to: '\u{1f611}', mapping: Valid }, + Range { from: '\u{1f612}', to: '\u{1f614}', mapping: Valid }, + Range { from: '\u{1f615}', to: '\u{1f615}', mapping: Valid }, + Range { from: '\u{1f616}', to: '\u{1f616}', mapping: Valid }, + Range { from: '\u{1f617}', to: '\u{1f617}', mapping: Valid }, + Range { from: '\u{1f618}', to: '\u{1f618}', mapping: Valid }, + Range { from: '\u{1f619}', to: '\u{1f619}', mapping: Valid }, + Range { from: '\u{1f61a}', to: '\u{1f61a}', mapping: Valid }, + Range { from: '\u{1f61b}', to: '\u{1f61b}', mapping: Valid }, + Range { from: '\u{1f61c}', to: '\u{1f61e}', mapping: Valid }, + Range { from: '\u{1f61f}', to: '\u{1f61f}', mapping: Valid }, + Range { from: '\u{1f620}', to: '\u{1f625}', mapping: Valid }, + Range { from: '\u{1f626}', to: '\u{1f627}', mapping: Valid }, + Range { from: '\u{1f628}', to: '\u{1f62b}', mapping: Valid }, + Range { from: '\u{1f62c}', to: '\u{1f62c}', mapping: Valid }, + Range { from: '\u{1f62d}', to: '\u{1f62d}', mapping: Valid }, + Range { from: '\u{1f62e}', to: '\u{1f62f}', mapping: Valid }, + Range { from: '\u{1f630}', to: '\u{1f633}', mapping: Valid }, + Range { from: '\u{1f634}', to: '\u{1f634}', mapping: Valid }, + Range { from: '\u{1f635}', to: '\u{1f640}', mapping: Valid }, + Range { from: '\u{1f641}', to: '\u{1f642}', mapping: Valid }, + Range { from: '\u{1f643}', to: '\u{1f644}', mapping: Valid }, + Range { from: '\u{1f645}', to: '\u{1f64f}', mapping: Valid }, + Range { from: '\u{1f650}', to: '\u{1f67f}', mapping: Valid }, + Range { from: '\u{1f680}', to: '\u{1f6c5}', mapping: Valid }, + Range { from: '\u{1f6c6}', to: '\u{1f6cf}', mapping: Valid }, + Range { from: '\u{1f6d0}', to: '\u{1f6d0}', mapping: Valid }, + Range { from: '\u{1f6d1}', to: '\u{1f6d2}', mapping: Valid }, + Range { from: '\u{1f6d3}', to: '\u{1f6df}', mapping: Disallowed }, + Range { from: '\u{1f6e0}', to: '\u{1f6ec}', mapping: Valid }, + Range { from: '\u{1f6ed}', to: '\u{1f6ef}', mapping: Disallowed }, + Range { from: '\u{1f6f0}', to: '\u{1f6f3}', mapping: Valid }, + Range { from: '\u{1f6f4}', to: '\u{1f6f6}', mapping: Valid }, + Range { from: '\u{1f6f7}', to: '\u{1f6ff}', mapping: Disallowed }, + Range { from: '\u{1f700}', to: '\u{1f773}', mapping: Valid }, + Range { from: '\u{1f774}', to: '\u{1f77f}', mapping: Disallowed }, + Range { from: '\u{1f780}', to: '\u{1f7d4}', mapping: Valid }, + Range { from: '\u{1f7d5}', to: '\u{1f7ff}', mapping: Disallowed }, + Range { from: '\u{1f800}', to: '\u{1f80b}', mapping: Valid }, + Range { from: '\u{1f80c}', to: '\u{1f80f}', mapping: Disallowed }, + Range { from: '\u{1f810}', to: '\u{1f847}', mapping: Valid }, + Range { from: '\u{1f848}', to: '\u{1f84f}', mapping: Disallowed }, + Range { from: '\u{1f850}', to: '\u{1f859}', mapping: Valid }, + Range { from: '\u{1f85a}', to: '\u{1f85f}', mapping: Disallowed }, + Range { from: '\u{1f860}', to: '\u{1f887}', mapping: Valid }, + Range { from: '\u{1f888}', to: '\u{1f88f}', mapping: Disallowed }, + Range { from: '\u{1f890}', to: '\u{1f8ad}', mapping: Valid }, + Range { from: '\u{1f8ae}', to: '\u{1f90f}', mapping: Disallowed }, + Range { from: '\u{1f910}', to: '\u{1f918}', mapping: Valid }, + Range { from: '\u{1f919}', to: '\u{1f91e}', mapping: Valid }, + Range { from: '\u{1f91f}', to: '\u{1f91f}', mapping: Disallowed }, + Range { from: '\u{1f920}', to: '\u{1f927}', mapping: Valid }, + Range { from: '\u{1f928}', to: '\u{1f92f}', mapping: Disallowed }, + Range { from: '\u{1f930}', to: '\u{1f930}', mapping: Valid }, + Range { from: '\u{1f931}', to: '\u{1f932}', mapping: Disallowed }, + Range { from: '\u{1f933}', to: '\u{1f93e}', mapping: Valid }, + Range { from: '\u{1f93f}', to: '\u{1f93f}', mapping: Disallowed }, + Range { from: '\u{1f940}', to: '\u{1f94b}', mapping: Valid }, + Range { from: '\u{1f94c}', to: '\u{1f94f}', mapping: Disallowed }, + Range { from: '\u{1f950}', to: '\u{1f95e}', mapping: Valid }, + Range { from: '\u{1f95f}', to: '\u{1f97f}', mapping: Disallowed }, + Range { from: '\u{1f980}', to: '\u{1f984}', mapping: Valid }, + Range { from: '\u{1f985}', to: '\u{1f991}', mapping: Valid }, + Range { from: '\u{1f992}', to: '\u{1f9bf}', mapping: Disallowed }, + Range { from: '\u{1f9c0}', to: '\u{1f9c0}', mapping: Valid }, + Range { from: '\u{1f9c1}', to: '\u{1fffd}', mapping: Disallowed }, + Range { from: '\u{1fffe}', to: '\u{1ffff}', mapping: Disallowed }, + Range { from: '\u{20000}', to: '\u{2a6d6}', mapping: Valid }, + Range { from: '\u{2a6d7}', to: '\u{2a6ff}', mapping: Disallowed }, + Range { from: '\u{2a700}', to: '\u{2b734}', mapping: Valid }, + Range { from: '\u{2b735}', to: '\u{2b73f}', mapping: Disallowed }, + Range { from: '\u{2b740}', to: '\u{2b81d}', mapping: Valid }, + Range { from: '\u{2b81e}', to: '\u{2b81f}', mapping: Disallowed }, + Range { from: '\u{2b820}', to: '\u{2cea1}', mapping: Valid }, + Range { from: '\u{2cea2}', to: '\u{2f7ff}', mapping: Disallowed }, + Range { from: '\u{2f800}', to: '\u{2f800}', mapping: Mapped(StringTableSlice { byte_start: 11040, byte_len: 3 }) }, + Range { from: '\u{2f801}', to: '\u{2f801}', mapping: Mapped(StringTableSlice { byte_start: 11043, byte_len: 3 }) }, + Range { from: '\u{2f802}', to: '\u{2f802}', mapping: Mapped(StringTableSlice { byte_start: 11046, byte_len: 3 }) }, + Range { from: '\u{2f803}', to: '\u{2f803}', mapping: Mapped(StringTableSlice { byte_start: 11049, byte_len: 4 }) }, + Range { from: '\u{2f804}', to: '\u{2f804}', mapping: Mapped(StringTableSlice { byte_start: 11053, byte_len: 3 }) }, + Range { from: '\u{2f805}', to: '\u{2f805}', mapping: Mapped(StringTableSlice { byte_start: 7520, byte_len: 3 }) }, + Range { from: '\u{2f806}', to: '\u{2f806}', mapping: Mapped(StringTableSlice { byte_start: 11056, byte_len: 3 }) }, + Range { from: '\u{2f807}', to: '\u{2f807}', mapping: Mapped(StringTableSlice { byte_start: 11059, byte_len: 3 }) }, + Range { from: '\u{2f808}', to: '\u{2f808}', mapping: Mapped(StringTableSlice { byte_start: 11062, byte_len: 3 }) }, + Range { from: '\u{2f809}', to: '\u{2f809}', mapping: Mapped(StringTableSlice { byte_start: 11065, byte_len: 3 }) }, + Range { from: '\u{2f80a}', to: '\u{2f80a}', mapping: Mapped(StringTableSlice { byte_start: 7523, byte_len: 3 }) }, + Range { from: '\u{2f80b}', to: '\u{2f80b}', mapping: Mapped(StringTableSlice { byte_start: 11068, byte_len: 3 }) }, + Range { from: '\u{2f80c}', to: '\u{2f80c}', mapping: Mapped(StringTableSlice { byte_start: 11071, byte_len: 3 }) }, + Range { from: '\u{2f80d}', to: '\u{2f80d}', mapping: Mapped(StringTableSlice { byte_start: 11074, byte_len: 4 }) }, + Range { from: '\u{2f80e}', to: '\u{2f80e}', mapping: Mapped(StringTableSlice { byte_start: 7526, byte_len: 3 }) }, + Range { from: '\u{2f80f}', to: '\u{2f80f}', mapping: Mapped(StringTableSlice { byte_start: 11078, byte_len: 3 }) }, + Range { from: '\u{2f810}', to: '\u{2f810}', mapping: Mapped(StringTableSlice { byte_start: 11081, byte_len: 3 }) }, + Range { from: '\u{2f811}', to: '\u{2f811}', mapping: Mapped(StringTableSlice { byte_start: 11084, byte_len: 3 }) }, + Range { from: '\u{2f812}', to: '\u{2f812}', mapping: Mapped(StringTableSlice { byte_start: 11087, byte_len: 4 }) }, + Range { from: '\u{2f813}', to: '\u{2f813}', mapping: Mapped(StringTableSlice { byte_start: 11091, byte_len: 3 }) }, + Range { from: '\u{2f814}', to: '\u{2f814}', mapping: Mapped(StringTableSlice { byte_start: 11094, byte_len: 3 }) }, + Range { from: '\u{2f815}', to: '\u{2f815}', mapping: Mapped(StringTableSlice { byte_start: 10890, byte_len: 3 }) }, + Range { from: '\u{2f816}', to: '\u{2f816}', mapping: Mapped(StringTableSlice { byte_start: 11097, byte_len: 4 }) }, + Range { from: '\u{2f817}', to: '\u{2f817}', mapping: Mapped(StringTableSlice { byte_start: 11101, byte_len: 3 }) }, + Range { from: '\u{2f818}', to: '\u{2f818}', mapping: Mapped(StringTableSlice { byte_start: 11104, byte_len: 3 }) }, + Range { from: '\u{2f819}', to: '\u{2f819}', mapping: Mapped(StringTableSlice { byte_start: 11107, byte_len: 3 }) }, + Range { from: '\u{2f81a}', to: '\u{2f81a}', mapping: Mapped(StringTableSlice { byte_start: 11110, byte_len: 3 }) }, + Range { from: '\u{2f81b}', to: '\u{2f81b}', mapping: Mapped(StringTableSlice { byte_start: 7692, byte_len: 3 }) }, + Range { from: '\u{2f81c}', to: '\u{2f81c}', mapping: Mapped(StringTableSlice { byte_start: 11113, byte_len: 4 }) }, + Range { from: '\u{2f81d}', to: '\u{2f81d}', mapping: Mapped(StringTableSlice { byte_start: 2995, byte_len: 3 }) }, + Range { from: '\u{2f81e}', to: '\u{2f81e}', mapping: Mapped(StringTableSlice { byte_start: 11117, byte_len: 3 }) }, + Range { from: '\u{2f81f}', to: '\u{2f81f}', mapping: Mapped(StringTableSlice { byte_start: 11120, byte_len: 3 }) }, + Range { from: '\u{2f820}', to: '\u{2f820}', mapping: Mapped(StringTableSlice { byte_start: 11123, byte_len: 3 }) }, + Range { from: '\u{2f821}', to: '\u{2f821}', mapping: Mapped(StringTableSlice { byte_start: 11126, byte_len: 3 }) }, + Range { from: '\u{2f822}', to: '\u{2f822}', mapping: Mapped(StringTableSlice { byte_start: 10944, byte_len: 3 }) }, + Range { from: '\u{2f823}', to: '\u{2f823}', mapping: Mapped(StringTableSlice { byte_start: 11129, byte_len: 3 }) }, + Range { from: '\u{2f824}', to: '\u{2f824}', mapping: Mapped(StringTableSlice { byte_start: 11132, byte_len: 3 }) }, + Range { from: '\u{2f825}', to: '\u{2f825}', mapping: Mapped(StringTableSlice { byte_start: 7707, byte_len: 3 }) }, + Range { from: '\u{2f826}', to: '\u{2f826}', mapping: Mapped(StringTableSlice { byte_start: 7529, byte_len: 3 }) }, + Range { from: '\u{2f827}', to: '\u{2f827}', mapping: Mapped(StringTableSlice { byte_start: 7532, byte_len: 3 }) }, + Range { from: '\u{2f828}', to: '\u{2f828}', mapping: Mapped(StringTableSlice { byte_start: 7710, byte_len: 3 }) }, + Range { from: '\u{2f829}', to: '\u{2f829}', mapping: Mapped(StringTableSlice { byte_start: 11135, byte_len: 3 }) }, + Range { from: '\u{2f82a}', to: '\u{2f82a}', mapping: Mapped(StringTableSlice { byte_start: 11138, byte_len: 3 }) }, + Range { from: '\u{2f82b}', to: '\u{2f82b}', mapping: Mapped(StringTableSlice { byte_start: 6983, byte_len: 3 }) }, + Range { from: '\u{2f82c}', to: '\u{2f82c}', mapping: Mapped(StringTableSlice { byte_start: 11141, byte_len: 3 }) }, + Range { from: '\u{2f82d}', to: '\u{2f82d}', mapping: Mapped(StringTableSlice { byte_start: 7535, byte_len: 3 }) }, + Range { from: '\u{2f82e}', to: '\u{2f82e}', mapping: Mapped(StringTableSlice { byte_start: 11144, byte_len: 3 }) }, + Range { from: '\u{2f82f}', to: '\u{2f82f}', mapping: Mapped(StringTableSlice { byte_start: 11147, byte_len: 3 }) }, + Range { from: '\u{2f830}', to: '\u{2f830}', mapping: Mapped(StringTableSlice { byte_start: 11150, byte_len: 3 }) }, + Range { from: '\u{2f831}', to: '\u{2f833}', mapping: Mapped(StringTableSlice { byte_start: 11153, byte_len: 3 }) }, + Range { from: '\u{2f834}', to: '\u{2f834}', mapping: Mapped(StringTableSlice { byte_start: 11156, byte_len: 4 }) }, + Range { from: '\u{2f835}', to: '\u{2f835}', mapping: Mapped(StringTableSlice { byte_start: 11160, byte_len: 3 }) }, + Range { from: '\u{2f836}', to: '\u{2f836}', mapping: Mapped(StringTableSlice { byte_start: 11163, byte_len: 3 }) }, + Range { from: '\u{2f837}', to: '\u{2f837}', mapping: Mapped(StringTableSlice { byte_start: 11166, byte_len: 3 }) }, + Range { from: '\u{2f838}', to: '\u{2f838}', mapping: Mapped(StringTableSlice { byte_start: 11169, byte_len: 4 }) }, + Range { from: '\u{2f839}', to: '\u{2f839}', mapping: Mapped(StringTableSlice { byte_start: 11173, byte_len: 3 }) }, + Range { from: '\u{2f83a}', to: '\u{2f83a}', mapping: Mapped(StringTableSlice { byte_start: 11176, byte_len: 3 }) }, + Range { from: '\u{2f83b}', to: '\u{2f83b}', mapping: Mapped(StringTableSlice { byte_start: 11179, byte_len: 3 }) }, + Range { from: '\u{2f83c}', to: '\u{2f83c}', mapping: Mapped(StringTableSlice { byte_start: 11182, byte_len: 3 }) }, + Range { from: '\u{2f83d}', to: '\u{2f83d}', mapping: Mapped(StringTableSlice { byte_start: 11185, byte_len: 3 }) }, + Range { from: '\u{2f83e}', to: '\u{2f83e}', mapping: Mapped(StringTableSlice { byte_start: 11188, byte_len: 3 }) }, + Range { from: '\u{2f83f}', to: '\u{2f83f}', mapping: Mapped(StringTableSlice { byte_start: 11191, byte_len: 3 }) }, + Range { from: '\u{2f840}', to: '\u{2f840}', mapping: Mapped(StringTableSlice { byte_start: 11194, byte_len: 3 }) }, + Range { from: '\u{2f841}', to: '\u{2f841}', mapping: Mapped(StringTableSlice { byte_start: 11197, byte_len: 3 }) }, + Range { from: '\u{2f842}', to: '\u{2f842}', mapping: Mapped(StringTableSlice { byte_start: 11200, byte_len: 3 }) }, + Range { from: '\u{2f843}', to: '\u{2f843}', mapping: Mapped(StringTableSlice { byte_start: 11203, byte_len: 3 }) }, + Range { from: '\u{2f844}', to: '\u{2f844}', mapping: Mapped(StringTableSlice { byte_start: 11206, byte_len: 3 }) }, + Range { from: '\u{2f845}', to: '\u{2f846}', mapping: Mapped(StringTableSlice { byte_start: 11209, byte_len: 3 }) }, + Range { from: '\u{2f847}', to: '\u{2f847}', mapping: Mapped(StringTableSlice { byte_start: 7716, byte_len: 3 }) }, + Range { from: '\u{2f848}', to: '\u{2f848}', mapping: Mapped(StringTableSlice { byte_start: 11212, byte_len: 3 }) }, + Range { from: '\u{2f849}', to: '\u{2f849}', mapping: Mapped(StringTableSlice { byte_start: 11215, byte_len: 3 }) }, + Range { from: '\u{2f84a}', to: '\u{2f84a}', mapping: Mapped(StringTableSlice { byte_start: 11218, byte_len: 3 }) }, + Range { from: '\u{2f84b}', to: '\u{2f84b}', mapping: Mapped(StringTableSlice { byte_start: 11221, byte_len: 3 }) }, + Range { from: '\u{2f84c}', to: '\u{2f84c}', mapping: Mapped(StringTableSlice { byte_start: 7541, byte_len: 3 }) }, + Range { from: '\u{2f84d}', to: '\u{2f84d}', mapping: Mapped(StringTableSlice { byte_start: 11224, byte_len: 3 }) }, + Range { from: '\u{2f84e}', to: '\u{2f84e}', mapping: Mapped(StringTableSlice { byte_start: 11227, byte_len: 3 }) }, + Range { from: '\u{2f84f}', to: '\u{2f84f}', mapping: Mapped(StringTableSlice { byte_start: 11230, byte_len: 3 }) }, + Range { from: '\u{2f850}', to: '\u{2f850}', mapping: Mapped(StringTableSlice { byte_start: 7421, byte_len: 3 }) }, + Range { from: '\u{2f851}', to: '\u{2f851}', mapping: Mapped(StringTableSlice { byte_start: 11233, byte_len: 3 }) }, + Range { from: '\u{2f852}', to: '\u{2f852}', mapping: Mapped(StringTableSlice { byte_start: 11236, byte_len: 3 }) }, + Range { from: '\u{2f853}', to: '\u{2f853}', mapping: Mapped(StringTableSlice { byte_start: 11239, byte_len: 3 }) }, + Range { from: '\u{2f854}', to: '\u{2f854}', mapping: Mapped(StringTableSlice { byte_start: 11242, byte_len: 3 }) }, + Range { from: '\u{2f855}', to: '\u{2f855}', mapping: Mapped(StringTableSlice { byte_start: 11245, byte_len: 3 }) }, + Range { from: '\u{2f856}', to: '\u{2f856}', mapping: Mapped(StringTableSlice { byte_start: 11248, byte_len: 3 }) }, + Range { from: '\u{2f857}', to: '\u{2f857}', mapping: Mapped(StringTableSlice { byte_start: 11251, byte_len: 3 }) }, + Range { from: '\u{2f858}', to: '\u{2f858}', mapping: Mapped(StringTableSlice { byte_start: 11254, byte_len: 3 }) }, + Range { from: '\u{2f859}', to: '\u{2f859}', mapping: Mapped(StringTableSlice { byte_start: 11257, byte_len: 4 }) }, + Range { from: '\u{2f85a}', to: '\u{2f85a}', mapping: Mapped(StringTableSlice { byte_start: 11261, byte_len: 3 }) }, + Range { from: '\u{2f85b}', to: '\u{2f85b}', mapping: Mapped(StringTableSlice { byte_start: 11264, byte_len: 3 }) }, + Range { from: '\u{2f85c}', to: '\u{2f85c}', mapping: Mapped(StringTableSlice { byte_start: 11267, byte_len: 3 }) }, + Range { from: '\u{2f85d}', to: '\u{2f85d}', mapping: Mapped(StringTableSlice { byte_start: 10869, byte_len: 3 }) }, + Range { from: '\u{2f85e}', to: '\u{2f85e}', mapping: Mapped(StringTableSlice { byte_start: 11270, byte_len: 3 }) }, + Range { from: '\u{2f85f}', to: '\u{2f85f}', mapping: Mapped(StringTableSlice { byte_start: 11273, byte_len: 3 }) }, + Range { from: '\u{2f860}', to: '\u{2f860}', mapping: Mapped(StringTableSlice { byte_start: 11276, byte_len: 4 }) }, + Range { from: '\u{2f861}', to: '\u{2f861}', mapping: Mapped(StringTableSlice { byte_start: 11280, byte_len: 4 }) }, + Range { from: '\u{2f862}', to: '\u{2f862}', mapping: Mapped(StringTableSlice { byte_start: 11284, byte_len: 3 }) }, + Range { from: '\u{2f863}', to: '\u{2f863}', mapping: Mapped(StringTableSlice { byte_start: 11287, byte_len: 3 }) }, + Range { from: '\u{2f864}', to: '\u{2f864}', mapping: Mapped(StringTableSlice { byte_start: 11290, byte_len: 3 }) }, + Range { from: '\u{2f865}', to: '\u{2f865}', mapping: Mapped(StringTableSlice { byte_start: 11293, byte_len: 3 }) }, + Range { from: '\u{2f866}', to: '\u{2f866}', mapping: Mapped(StringTableSlice { byte_start: 11296, byte_len: 3 }) }, + Range { from: '\u{2f867}', to: '\u{2f867}', mapping: Mapped(StringTableSlice { byte_start: 11299, byte_len: 3 }) }, + Range { from: '\u{2f868}', to: '\u{2f868}', mapping: Disallowed }, + Range { from: '\u{2f869}', to: '\u{2f869}', mapping: Mapped(StringTableSlice { byte_start: 11302, byte_len: 3 }) }, + Range { from: '\u{2f86a}', to: '\u{2f86b}', mapping: Mapped(StringTableSlice { byte_start: 11305, byte_len: 3 }) }, + Range { from: '\u{2f86c}', to: '\u{2f86c}', mapping: Mapped(StringTableSlice { byte_start: 11308, byte_len: 4 }) }, + Range { from: '\u{2f86d}', to: '\u{2f86d}', mapping: Mapped(StringTableSlice { byte_start: 11312, byte_len: 3 }) }, + Range { from: '\u{2f86e}', to: '\u{2f86e}', mapping: Mapped(StringTableSlice { byte_start: 11315, byte_len: 3 }) }, + Range { from: '\u{2f86f}', to: '\u{2f86f}', mapping: Mapped(StringTableSlice { byte_start: 6971, byte_len: 3 }) }, + Range { from: '\u{2f870}', to: '\u{2f870}', mapping: Mapped(StringTableSlice { byte_start: 11318, byte_len: 3 }) }, + Range { from: '\u{2f871}', to: '\u{2f871}', mapping: Mapped(StringTableSlice { byte_start: 11321, byte_len: 4 }) }, + Range { from: '\u{2f872}', to: '\u{2f872}', mapping: Mapped(StringTableSlice { byte_start: 11325, byte_len: 3 }) }, + Range { from: '\u{2f873}', to: '\u{2f873}', mapping: Mapped(StringTableSlice { byte_start: 11328, byte_len: 3 }) }, + Range { from: '\u{2f874}', to: '\u{2f874}', mapping: Disallowed }, + Range { from: '\u{2f875}', to: '\u{2f875}', mapping: Mapped(StringTableSlice { byte_start: 3073, byte_len: 3 }) }, + Range { from: '\u{2f876}', to: '\u{2f876}', mapping: Mapped(StringTableSlice { byte_start: 11331, byte_len: 3 }) }, + Range { from: '\u{2f877}', to: '\u{2f877}', mapping: Mapped(StringTableSlice { byte_start: 11334, byte_len: 3 }) }, + Range { from: '\u{2f878}', to: '\u{2f878}', mapping: Mapped(StringTableSlice { byte_start: 3079, byte_len: 3 }) }, + Range { from: '\u{2f879}', to: '\u{2f879}', mapping: Mapped(StringTableSlice { byte_start: 11337, byte_len: 3 }) }, + Range { from: '\u{2f87a}', to: '\u{2f87a}', mapping: Mapped(StringTableSlice { byte_start: 11340, byte_len: 3 }) }, + Range { from: '\u{2f87b}', to: '\u{2f87b}', mapping: Mapped(StringTableSlice { byte_start: 11343, byte_len: 4 }) }, + Range { from: '\u{2f87c}', to: '\u{2f87c}', mapping: Mapped(StringTableSlice { byte_start: 11347, byte_len: 3 }) }, + Range { from: '\u{2f87d}', to: '\u{2f87d}', mapping: Mapped(StringTableSlice { byte_start: 11350, byte_len: 4 }) }, + Range { from: '\u{2f87e}', to: '\u{2f87e}', mapping: Mapped(StringTableSlice { byte_start: 11354, byte_len: 3 }) }, + Range { from: '\u{2f87f}', to: '\u{2f87f}', mapping: Mapped(StringTableSlice { byte_start: 11357, byte_len: 3 }) }, + Range { from: '\u{2f880}', to: '\u{2f880}', mapping: Mapped(StringTableSlice { byte_start: 11360, byte_len: 3 }) }, + Range { from: '\u{2f881}', to: '\u{2f881}', mapping: Mapped(StringTableSlice { byte_start: 11363, byte_len: 3 }) }, + Range { from: '\u{2f882}', to: '\u{2f882}', mapping: Mapped(StringTableSlice { byte_start: 11366, byte_len: 3 }) }, + Range { from: '\u{2f883}', to: '\u{2f883}', mapping: Mapped(StringTableSlice { byte_start: 11369, byte_len: 3 }) }, + Range { from: '\u{2f884}', to: '\u{2f884}', mapping: Mapped(StringTableSlice { byte_start: 11372, byte_len: 3 }) }, + Range { from: '\u{2f885}', to: '\u{2f885}', mapping: Mapped(StringTableSlice { byte_start: 11375, byte_len: 3 }) }, + Range { from: '\u{2f886}', to: '\u{2f886}', mapping: Mapped(StringTableSlice { byte_start: 11378, byte_len: 3 }) }, + Range { from: '\u{2f887}', to: '\u{2f887}', mapping: Mapped(StringTableSlice { byte_start: 11381, byte_len: 3 }) }, + Range { from: '\u{2f888}', to: '\u{2f888}', mapping: Mapped(StringTableSlice { byte_start: 11384, byte_len: 3 }) }, + Range { from: '\u{2f889}', to: '\u{2f889}', mapping: Mapped(StringTableSlice { byte_start: 11387, byte_len: 4 }) }, + Range { from: '\u{2f88a}', to: '\u{2f88a}', mapping: Mapped(StringTableSlice { byte_start: 11391, byte_len: 3 }) }, + Range { from: '\u{2f88b}', to: '\u{2f88b}', mapping: Mapped(StringTableSlice { byte_start: 11394, byte_len: 3 }) }, + Range { from: '\u{2f88c}', to: '\u{2f88c}', mapping: Mapped(StringTableSlice { byte_start: 11397, byte_len: 3 }) }, + Range { from: '\u{2f88d}', to: '\u{2f88d}', mapping: Mapped(StringTableSlice { byte_start: 11400, byte_len: 3 }) }, + Range { from: '\u{2f88e}', to: '\u{2f88e}', mapping: Mapped(StringTableSlice { byte_start: 6815, byte_len: 3 }) }, + Range { from: '\u{2f88f}', to: '\u{2f88f}', mapping: Mapped(StringTableSlice { byte_start: 11403, byte_len: 4 }) }, + Range { from: '\u{2f890}', to: '\u{2f890}', mapping: Mapped(StringTableSlice { byte_start: 3109, byte_len: 3 }) }, + Range { from: '\u{2f891}', to: '\u{2f892}', mapping: Mapped(StringTableSlice { byte_start: 11407, byte_len: 4 }) }, + Range { from: '\u{2f893}', to: '\u{2f893}', mapping: Mapped(StringTableSlice { byte_start: 11411, byte_len: 3 }) }, + Range { from: '\u{2f894}', to: '\u{2f895}', mapping: Mapped(StringTableSlice { byte_start: 11414, byte_len: 3 }) }, + Range { from: '\u{2f896}', to: '\u{2f896}', mapping: Mapped(StringTableSlice { byte_start: 11417, byte_len: 3 }) }, + Range { from: '\u{2f897}', to: '\u{2f897}', mapping: Mapped(StringTableSlice { byte_start: 11420, byte_len: 4 }) }, + Range { from: '\u{2f898}', to: '\u{2f898}', mapping: Mapped(StringTableSlice { byte_start: 11424, byte_len: 4 }) }, + Range { from: '\u{2f899}', to: '\u{2f899}', mapping: Mapped(StringTableSlice { byte_start: 11428, byte_len: 3 }) }, + Range { from: '\u{2f89a}', to: '\u{2f89a}', mapping: Mapped(StringTableSlice { byte_start: 11431, byte_len: 3 }) }, + Range { from: '\u{2f89b}', to: '\u{2f89b}', mapping: Mapped(StringTableSlice { byte_start: 11434, byte_len: 3 }) }, + Range { from: '\u{2f89c}', to: '\u{2f89c}', mapping: Mapped(StringTableSlice { byte_start: 11437, byte_len: 3 }) }, + Range { from: '\u{2f89d}', to: '\u{2f89d}', mapping: Mapped(StringTableSlice { byte_start: 11440, byte_len: 3 }) }, + Range { from: '\u{2f89e}', to: '\u{2f89e}', mapping: Mapped(StringTableSlice { byte_start: 11443, byte_len: 3 }) }, + Range { from: '\u{2f89f}', to: '\u{2f89f}', mapping: Mapped(StringTableSlice { byte_start: 11446, byte_len: 3 }) }, + Range { from: '\u{2f8a0}', to: '\u{2f8a0}', mapping: Mapped(StringTableSlice { byte_start: 11449, byte_len: 3 }) }, + Range { from: '\u{2f8a1}', to: '\u{2f8a1}', mapping: Mapped(StringTableSlice { byte_start: 11452, byte_len: 3 }) }, + Range { from: '\u{2f8a2}', to: '\u{2f8a2}', mapping: Mapped(StringTableSlice { byte_start: 11455, byte_len: 3 }) }, + Range { from: '\u{2f8a3}', to: '\u{2f8a3}', mapping: Mapped(StringTableSlice { byte_start: 7556, byte_len: 3 }) }, + Range { from: '\u{2f8a4}', to: '\u{2f8a4}', mapping: Mapped(StringTableSlice { byte_start: 11458, byte_len: 4 }) }, + Range { from: '\u{2f8a5}', to: '\u{2f8a5}', mapping: Mapped(StringTableSlice { byte_start: 11462, byte_len: 3 }) }, + Range { from: '\u{2f8a6}', to: '\u{2f8a6}', mapping: Mapped(StringTableSlice { byte_start: 11465, byte_len: 3 }) }, + Range { from: '\u{2f8a7}', to: '\u{2f8a7}', mapping: Mapped(StringTableSlice { byte_start: 11468, byte_len: 3 }) }, + Range { from: '\u{2f8a8}', to: '\u{2f8a8}', mapping: Mapped(StringTableSlice { byte_start: 7752, byte_len: 3 }) }, + Range { from: '\u{2f8a9}', to: '\u{2f8a9}', mapping: Mapped(StringTableSlice { byte_start: 11468, byte_len: 3 }) }, + Range { from: '\u{2f8aa}', to: '\u{2f8aa}', mapping: Mapped(StringTableSlice { byte_start: 11471, byte_len: 3 }) }, + Range { from: '\u{2f8ab}', to: '\u{2f8ab}', mapping: Mapped(StringTableSlice { byte_start: 7562, byte_len: 3 }) }, + Range { from: '\u{2f8ac}', to: '\u{2f8ac}', mapping: Mapped(StringTableSlice { byte_start: 11474, byte_len: 3 }) }, + Range { from: '\u{2f8ad}', to: '\u{2f8ad}', mapping: Mapped(StringTableSlice { byte_start: 11477, byte_len: 3 }) }, + Range { from: '\u{2f8ae}', to: '\u{2f8ae}', mapping: Mapped(StringTableSlice { byte_start: 11480, byte_len: 3 }) }, + Range { from: '\u{2f8af}', to: '\u{2f8af}', mapping: Mapped(StringTableSlice { byte_start: 11483, byte_len: 3 }) }, + Range { from: '\u{2f8b0}', to: '\u{2f8b0}', mapping: Mapped(StringTableSlice { byte_start: 7565, byte_len: 3 }) }, + Range { from: '\u{2f8b1}', to: '\u{2f8b1}', mapping: Mapped(StringTableSlice { byte_start: 6734, byte_len: 3 }) }, + Range { from: '\u{2f8b2}', to: '\u{2f8b2}', mapping: Mapped(StringTableSlice { byte_start: 11486, byte_len: 3 }) }, + Range { from: '\u{2f8b3}', to: '\u{2f8b3}', mapping: Mapped(StringTableSlice { byte_start: 11489, byte_len: 3 }) }, + Range { from: '\u{2f8b4}', to: '\u{2f8b4}', mapping: Mapped(StringTableSlice { byte_start: 11492, byte_len: 3 }) }, + Range { from: '\u{2f8b5}', to: '\u{2f8b5}', mapping: Mapped(StringTableSlice { byte_start: 11495, byte_len: 3 }) }, + Range { from: '\u{2f8b6}', to: '\u{2f8b6}', mapping: Mapped(StringTableSlice { byte_start: 11498, byte_len: 3 }) }, + Range { from: '\u{2f8b7}', to: '\u{2f8b7}', mapping: Mapped(StringTableSlice { byte_start: 11501, byte_len: 3 }) }, + Range { from: '\u{2f8b8}', to: '\u{2f8b8}', mapping: Mapped(StringTableSlice { byte_start: 11504, byte_len: 4 }) }, + Range { from: '\u{2f8b9}', to: '\u{2f8b9}', mapping: Mapped(StringTableSlice { byte_start: 11508, byte_len: 3 }) }, + Range { from: '\u{2f8ba}', to: '\u{2f8ba}', mapping: Mapped(StringTableSlice { byte_start: 11511, byte_len: 3 }) }, + Range { from: '\u{2f8bb}', to: '\u{2f8bb}', mapping: Mapped(StringTableSlice { byte_start: 11514, byte_len: 3 }) }, + Range { from: '\u{2f8bc}', to: '\u{2f8bc}', mapping: Mapped(StringTableSlice { byte_start: 11517, byte_len: 3 }) }, + Range { from: '\u{2f8bd}', to: '\u{2f8bd}', mapping: Mapped(StringTableSlice { byte_start: 11520, byte_len: 3 }) }, + Range { from: '\u{2f8be}', to: '\u{2f8be}', mapping: Mapped(StringTableSlice { byte_start: 11523, byte_len: 4 }) }, + Range { from: '\u{2f8bf}', to: '\u{2f8bf}', mapping: Mapped(StringTableSlice { byte_start: 11527, byte_len: 3 }) }, + Range { from: '\u{2f8c0}', to: '\u{2f8c0}', mapping: Mapped(StringTableSlice { byte_start: 11530, byte_len: 3 }) }, + Range { from: '\u{2f8c1}', to: '\u{2f8c1}', mapping: Mapped(StringTableSlice { byte_start: 11533, byte_len: 3 }) }, + Range { from: '\u{2f8c2}', to: '\u{2f8c2}', mapping: Mapped(StringTableSlice { byte_start: 11536, byte_len: 3 }) }, + Range { from: '\u{2f8c3}', to: '\u{2f8c3}', mapping: Mapped(StringTableSlice { byte_start: 11539, byte_len: 3 }) }, + Range { from: '\u{2f8c4}', to: '\u{2f8c4}', mapping: Mapped(StringTableSlice { byte_start: 11542, byte_len: 3 }) }, + Range { from: '\u{2f8c5}', to: '\u{2f8c5}', mapping: Mapped(StringTableSlice { byte_start: 11545, byte_len: 3 }) }, + Range { from: '\u{2f8c6}', to: '\u{2f8c6}', mapping: Mapped(StringTableSlice { byte_start: 11548, byte_len: 3 }) }, + Range { from: '\u{2f8c7}', to: '\u{2f8c7}', mapping: Mapped(StringTableSlice { byte_start: 11551, byte_len: 3 }) }, + Range { from: '\u{2f8c8}', to: '\u{2f8c8}', mapping: Mapped(StringTableSlice { byte_start: 7568, byte_len: 3 }) }, + Range { from: '\u{2f8c9}', to: '\u{2f8c9}', mapping: Mapped(StringTableSlice { byte_start: 11554, byte_len: 3 }) }, + Range { from: '\u{2f8ca}', to: '\u{2f8ca}', mapping: Mapped(StringTableSlice { byte_start: 11557, byte_len: 4 }) }, + Range { from: '\u{2f8cb}', to: '\u{2f8cb}', mapping: Mapped(StringTableSlice { byte_start: 11561, byte_len: 3 }) }, + Range { from: '\u{2f8cc}', to: '\u{2f8cc}', mapping: Mapped(StringTableSlice { byte_start: 11564, byte_len: 3 }) }, + Range { from: '\u{2f8cd}', to: '\u{2f8cd}', mapping: Mapped(StringTableSlice { byte_start: 11567, byte_len: 3 }) }, + Range { from: '\u{2f8ce}', to: '\u{2f8ce}', mapping: Mapped(StringTableSlice { byte_start: 11570, byte_len: 3 }) }, + Range { from: '\u{2f8cf}', to: '\u{2f8cf}', mapping: Mapped(StringTableSlice { byte_start: 7574, byte_len: 3 }) }, + Range { from: '\u{2f8d0}', to: '\u{2f8d0}', mapping: Mapped(StringTableSlice { byte_start: 11573, byte_len: 3 }) }, + Range { from: '\u{2f8d1}', to: '\u{2f8d1}', mapping: Mapped(StringTableSlice { byte_start: 11576, byte_len: 3 }) }, + Range { from: '\u{2f8d2}', to: '\u{2f8d2}', mapping: Mapped(StringTableSlice { byte_start: 11579, byte_len: 3 }) }, + Range { from: '\u{2f8d3}', to: '\u{2f8d3}', mapping: Mapped(StringTableSlice { byte_start: 11582, byte_len: 3 }) }, + Range { from: '\u{2f8d4}', to: '\u{2f8d4}', mapping: Mapped(StringTableSlice { byte_start: 11585, byte_len: 3 }) }, + Range { from: '\u{2f8d5}', to: '\u{2f8d5}', mapping: Mapped(StringTableSlice { byte_start: 11588, byte_len: 3 }) }, + Range { from: '\u{2f8d6}', to: '\u{2f8d6}', mapping: Mapped(StringTableSlice { byte_start: 11591, byte_len: 3 }) }, + Range { from: '\u{2f8d7}', to: '\u{2f8d7}', mapping: Mapped(StringTableSlice { byte_start: 11594, byte_len: 3 }) }, + Range { from: '\u{2f8d8}', to: '\u{2f8d8}', mapping: Mapped(StringTableSlice { byte_start: 6818, byte_len: 3 }) }, + Range { from: '\u{2f8d9}', to: '\u{2f8d9}', mapping: Mapped(StringTableSlice { byte_start: 7776, byte_len: 3 }) }, + Range { from: '\u{2f8da}', to: '\u{2f8da}', mapping: Mapped(StringTableSlice { byte_start: 11597, byte_len: 3 }) }, + Range { from: '\u{2f8db}', to: '\u{2f8db}', mapping: Mapped(StringTableSlice { byte_start: 11600, byte_len: 3 }) }, + Range { from: '\u{2f8dc}', to: '\u{2f8dc}', mapping: Mapped(StringTableSlice { byte_start: 11603, byte_len: 3 }) }, + Range { from: '\u{2f8dd}', to: '\u{2f8dd}', mapping: Mapped(StringTableSlice { byte_start: 11606, byte_len: 4 }) }, + Range { from: '\u{2f8de}', to: '\u{2f8de}', mapping: Mapped(StringTableSlice { byte_start: 11610, byte_len: 3 }) }, + Range { from: '\u{2f8df}', to: '\u{2f8df}', mapping: Mapped(StringTableSlice { byte_start: 11613, byte_len: 3 }) }, + Range { from: '\u{2f8e0}', to: '\u{2f8e0}', mapping: Mapped(StringTableSlice { byte_start: 11616, byte_len: 3 }) }, + Range { from: '\u{2f8e1}', to: '\u{2f8e1}', mapping: Mapped(StringTableSlice { byte_start: 11619, byte_len: 3 }) }, + Range { from: '\u{2f8e2}', to: '\u{2f8e2}', mapping: Mapped(StringTableSlice { byte_start: 7577, byte_len: 3 }) }, + Range { from: '\u{2f8e3}', to: '\u{2f8e3}', mapping: Mapped(StringTableSlice { byte_start: 11622, byte_len: 4 }) }, + Range { from: '\u{2f8e4}', to: '\u{2f8e4}', mapping: Mapped(StringTableSlice { byte_start: 11626, byte_len: 3 }) }, + Range { from: '\u{2f8e5}', to: '\u{2f8e5}', mapping: Mapped(StringTableSlice { byte_start: 11629, byte_len: 3 }) }, + Range { from: '\u{2f8e6}', to: '\u{2f8e6}', mapping: Mapped(StringTableSlice { byte_start: 11632, byte_len: 3 }) }, + Range { from: '\u{2f8e7}', to: '\u{2f8e7}', mapping: Mapped(StringTableSlice { byte_start: 7905, byte_len: 3 }) }, + Range { from: '\u{2f8e8}', to: '\u{2f8e8}', mapping: Mapped(StringTableSlice { byte_start: 11635, byte_len: 3 }) }, + Range { from: '\u{2f8e9}', to: '\u{2f8e9}', mapping: Mapped(StringTableSlice { byte_start: 11638, byte_len: 3 }) }, + Range { from: '\u{2f8ea}', to: '\u{2f8ea}', mapping: Mapped(StringTableSlice { byte_start: 11641, byte_len: 3 }) }, + Range { from: '\u{2f8eb}', to: '\u{2f8eb}', mapping: Mapped(StringTableSlice { byte_start: 11644, byte_len: 3 }) }, + Range { from: '\u{2f8ec}', to: '\u{2f8ec}', mapping: Mapped(StringTableSlice { byte_start: 11647, byte_len: 4 }) }, + Range { from: '\u{2f8ed}', to: '\u{2f8ed}', mapping: Mapped(StringTableSlice { byte_start: 11651, byte_len: 3 }) }, + Range { from: '\u{2f8ee}', to: '\u{2f8ee}', mapping: Mapped(StringTableSlice { byte_start: 11654, byte_len: 3 }) }, + Range { from: '\u{2f8ef}', to: '\u{2f8ef}', mapping: Mapped(StringTableSlice { byte_start: 11657, byte_len: 3 }) }, + Range { from: '\u{2f8f0}', to: '\u{2f8f0}', mapping: Mapped(StringTableSlice { byte_start: 11660, byte_len: 4 }) }, + Range { from: '\u{2f8f1}', to: '\u{2f8f1}', mapping: Mapped(StringTableSlice { byte_start: 11664, byte_len: 3 }) }, + Range { from: '\u{2f8f2}', to: '\u{2f8f2}', mapping: Mapped(StringTableSlice { byte_start: 11667, byte_len: 3 }) }, + Range { from: '\u{2f8f3}', to: '\u{2f8f3}', mapping: Mapped(StringTableSlice { byte_start: 11670, byte_len: 3 }) }, + Range { from: '\u{2f8f4}', to: '\u{2f8f4}', mapping: Mapped(StringTableSlice { byte_start: 11673, byte_len: 3 }) }, + Range { from: '\u{2f8f5}', to: '\u{2f8f5}', mapping: Mapped(StringTableSlice { byte_start: 7022, byte_len: 3 }) }, + Range { from: '\u{2f8f6}', to: '\u{2f8f6}', mapping: Mapped(StringTableSlice { byte_start: 11676, byte_len: 3 }) }, + Range { from: '\u{2f8f7}', to: '\u{2f8f7}', mapping: Mapped(StringTableSlice { byte_start: 11679, byte_len: 4 }) }, + Range { from: '\u{2f8f8}', to: '\u{2f8f8}', mapping: Mapped(StringTableSlice { byte_start: 11683, byte_len: 4 }) }, + Range { from: '\u{2f8f9}', to: '\u{2f8f9}', mapping: Mapped(StringTableSlice { byte_start: 11687, byte_len: 4 }) }, + Range { from: '\u{2f8fa}', to: '\u{2f8fa}', mapping: Mapped(StringTableSlice { byte_start: 11691, byte_len: 3 }) }, + Range { from: '\u{2f8fb}', to: '\u{2f8fb}', mapping: Mapped(StringTableSlice { byte_start: 11694, byte_len: 4 }) }, + Range { from: '\u{2f8fc}', to: '\u{2f8fc}', mapping: Mapped(StringTableSlice { byte_start: 11698, byte_len: 3 }) }, + Range { from: '\u{2f8fd}', to: '\u{2f8fd}', mapping: Mapped(StringTableSlice { byte_start: 11701, byte_len: 3 }) }, + Range { from: '\u{2f8fe}', to: '\u{2f8fe}', mapping: Mapped(StringTableSlice { byte_start: 11704, byte_len: 3 }) }, + Range { from: '\u{2f8ff}', to: '\u{2f8ff}', mapping: Mapped(StringTableSlice { byte_start: 11707, byte_len: 3 }) }, + Range { from: '\u{2f900}', to: '\u{2f900}', mapping: Mapped(StringTableSlice { byte_start: 11710, byte_len: 3 }) }, + Range { from: '\u{2f901}', to: '\u{2f901}', mapping: Mapped(StringTableSlice { byte_start: 7580, byte_len: 3 }) }, + Range { from: '\u{2f902}', to: '\u{2f902}', mapping: Mapped(StringTableSlice { byte_start: 7271, byte_len: 3 }) }, + Range { from: '\u{2f903}', to: '\u{2f903}', mapping: Mapped(StringTableSlice { byte_start: 11713, byte_len: 3 }) }, + Range { from: '\u{2f904}', to: '\u{2f904}', mapping: Mapped(StringTableSlice { byte_start: 11716, byte_len: 3 }) }, + Range { from: '\u{2f905}', to: '\u{2f905}', mapping: Mapped(StringTableSlice { byte_start: 11719, byte_len: 3 }) }, + Range { from: '\u{2f906}', to: '\u{2f906}', mapping: Mapped(StringTableSlice { byte_start: 11722, byte_len: 4 }) }, + Range { from: '\u{2f907}', to: '\u{2f907}', mapping: Mapped(StringTableSlice { byte_start: 11726, byte_len: 3 }) }, + Range { from: '\u{2f908}', to: '\u{2f908}', mapping: Mapped(StringTableSlice { byte_start: 11729, byte_len: 3 }) }, + Range { from: '\u{2f909}', to: '\u{2f909}', mapping: Mapped(StringTableSlice { byte_start: 11732, byte_len: 3 }) }, + Range { from: '\u{2f90a}', to: '\u{2f90a}', mapping: Mapped(StringTableSlice { byte_start: 11735, byte_len: 3 }) }, + Range { from: '\u{2f90b}', to: '\u{2f90b}', mapping: Mapped(StringTableSlice { byte_start: 7785, byte_len: 3 }) }, + Range { from: '\u{2f90c}', to: '\u{2f90c}', mapping: Mapped(StringTableSlice { byte_start: 11738, byte_len: 3 }) }, + Range { from: '\u{2f90d}', to: '\u{2f90d}', mapping: Mapped(StringTableSlice { byte_start: 11741, byte_len: 4 }) }, + Range { from: '\u{2f90e}', to: '\u{2f90e}', mapping: Mapped(StringTableSlice { byte_start: 11745, byte_len: 3 }) }, + Range { from: '\u{2f90f}', to: '\u{2f90f}', mapping: Mapped(StringTableSlice { byte_start: 11748, byte_len: 3 }) }, + Range { from: '\u{2f910}', to: '\u{2f910}', mapping: Mapped(StringTableSlice { byte_start: 11751, byte_len: 4 }) }, + Range { from: '\u{2f911}', to: '\u{2f911}', mapping: Mapped(StringTableSlice { byte_start: 11755, byte_len: 4 }) }, + Range { from: '\u{2f912}', to: '\u{2f912}', mapping: Mapped(StringTableSlice { byte_start: 11759, byte_len: 3 }) }, + Range { from: '\u{2f913}', to: '\u{2f913}', mapping: Mapped(StringTableSlice { byte_start: 11762, byte_len: 3 }) }, + Range { from: '\u{2f914}', to: '\u{2f914}', mapping: Mapped(StringTableSlice { byte_start: 7788, byte_len: 3 }) }, + Range { from: '\u{2f915}', to: '\u{2f915}', mapping: Mapped(StringTableSlice { byte_start: 11765, byte_len: 3 }) }, + Range { from: '\u{2f916}', to: '\u{2f916}', mapping: Mapped(StringTableSlice { byte_start: 11768, byte_len: 3 }) }, + Range { from: '\u{2f917}', to: '\u{2f917}', mapping: Mapped(StringTableSlice { byte_start: 11771, byte_len: 3 }) }, + Range { from: '\u{2f918}', to: '\u{2f918}', mapping: Mapped(StringTableSlice { byte_start: 11774, byte_len: 3 }) }, + Range { from: '\u{2f919}', to: '\u{2f919}', mapping: Mapped(StringTableSlice { byte_start: 11777, byte_len: 3 }) }, + Range { from: '\u{2f91a}', to: '\u{2f91a}', mapping: Mapped(StringTableSlice { byte_start: 11780, byte_len: 3 }) }, + Range { from: '\u{2f91b}', to: '\u{2f91b}', mapping: Mapped(StringTableSlice { byte_start: 11783, byte_len: 4 }) }, + Range { from: '\u{2f91c}', to: '\u{2f91c}', mapping: Mapped(StringTableSlice { byte_start: 11787, byte_len: 3 }) }, + Range { from: '\u{2f91d}', to: '\u{2f91d}', mapping: Mapped(StringTableSlice { byte_start: 11790, byte_len: 4 }) }, + Range { from: '\u{2f91e}', to: '\u{2f91e}', mapping: Mapped(StringTableSlice { byte_start: 11794, byte_len: 3 }) }, + Range { from: '\u{2f91f}', to: '\u{2f91f}', mapping: Disallowed }, + Range { from: '\u{2f920}', to: '\u{2f920}', mapping: Mapped(StringTableSlice { byte_start: 11797, byte_len: 3 }) }, + Range { from: '\u{2f921}', to: '\u{2f921}', mapping: Mapped(StringTableSlice { byte_start: 7794, byte_len: 3 }) }, + Range { from: '\u{2f922}', to: '\u{2f922}', mapping: Mapped(StringTableSlice { byte_start: 11800, byte_len: 3 }) }, + Range { from: '\u{2f923}', to: '\u{2f923}', mapping: Mapped(StringTableSlice { byte_start: 11803, byte_len: 4 }) }, + Range { from: '\u{2f924}', to: '\u{2f924}', mapping: Mapped(StringTableSlice { byte_start: 11807, byte_len: 3 }) }, + Range { from: '\u{2f925}', to: '\u{2f925}', mapping: Mapped(StringTableSlice { byte_start: 11810, byte_len: 3 }) }, + Range { from: '\u{2f926}', to: '\u{2f926}', mapping: Mapped(StringTableSlice { byte_start: 11813, byte_len: 4 }) }, + Range { from: '\u{2f927}', to: '\u{2f927}', mapping: Mapped(StringTableSlice { byte_start: 11817, byte_len: 4 }) }, + Range { from: '\u{2f928}', to: '\u{2f928}', mapping: Mapped(StringTableSlice { byte_start: 11821, byte_len: 3 }) }, + Range { from: '\u{2f929}', to: '\u{2f929}', mapping: Mapped(StringTableSlice { byte_start: 11824, byte_len: 3 }) }, + Range { from: '\u{2f92a}', to: '\u{2f92a}', mapping: Mapped(StringTableSlice { byte_start: 11827, byte_len: 3 }) }, + Range { from: '\u{2f92b}', to: '\u{2f92b}', mapping: Mapped(StringTableSlice { byte_start: 11830, byte_len: 3 }) }, + Range { from: '\u{2f92c}', to: '\u{2f92d}', mapping: Mapped(StringTableSlice { byte_start: 11833, byte_len: 3 }) }, + Range { from: '\u{2f92e}', to: '\u{2f92e}', mapping: Mapped(StringTableSlice { byte_start: 11836, byte_len: 3 }) }, + Range { from: '\u{2f92f}', to: '\u{2f92f}', mapping: Mapped(StringTableSlice { byte_start: 11839, byte_len: 3 }) }, + Range { from: '\u{2f930}', to: '\u{2f930}', mapping: Mapped(StringTableSlice { byte_start: 7800, byte_len: 3 }) }, + Range { from: '\u{2f931}', to: '\u{2f931}', mapping: Mapped(StringTableSlice { byte_start: 11842, byte_len: 3 }) }, + Range { from: '\u{2f932}', to: '\u{2f932}', mapping: Mapped(StringTableSlice { byte_start: 11845, byte_len: 3 }) }, + Range { from: '\u{2f933}', to: '\u{2f933}', mapping: Mapped(StringTableSlice { byte_start: 11848, byte_len: 3 }) }, + Range { from: '\u{2f934}', to: '\u{2f934}', mapping: Mapped(StringTableSlice { byte_start: 11851, byte_len: 3 }) }, + Range { from: '\u{2f935}', to: '\u{2f935}', mapping: Mapped(StringTableSlice { byte_start: 11854, byte_len: 4 }) }, + Range { from: '\u{2f936}', to: '\u{2f936}', mapping: Mapped(StringTableSlice { byte_start: 11858, byte_len: 3 }) }, + Range { from: '\u{2f937}', to: '\u{2f937}', mapping: Mapped(StringTableSlice { byte_start: 11861, byte_len: 4 }) }, + Range { from: '\u{2f938}', to: '\u{2f938}', mapping: Mapped(StringTableSlice { byte_start: 6980, byte_len: 3 }) }, + Range { from: '\u{2f939}', to: '\u{2f939}', mapping: Mapped(StringTableSlice { byte_start: 11865, byte_len: 4 }) }, + Range { from: '\u{2f93a}', to: '\u{2f93a}', mapping: Mapped(StringTableSlice { byte_start: 11869, byte_len: 3 }) }, + Range { from: '\u{2f93b}', to: '\u{2f93b}', mapping: Mapped(StringTableSlice { byte_start: 11872, byte_len: 4 }) }, + Range { from: '\u{2f93c}', to: '\u{2f93c}', mapping: Mapped(StringTableSlice { byte_start: 11876, byte_len: 4 }) }, + Range { from: '\u{2f93d}', to: '\u{2f93d}', mapping: Mapped(StringTableSlice { byte_start: 11880, byte_len: 4 }) }, + Range { from: '\u{2f93e}', to: '\u{2f93e}', mapping: Mapped(StringTableSlice { byte_start: 11884, byte_len: 3 }) }, + Range { from: '\u{2f93f}', to: '\u{2f93f}', mapping: Mapped(StringTableSlice { byte_start: 11887, byte_len: 3 }) }, + Range { from: '\u{2f940}', to: '\u{2f940}', mapping: Mapped(StringTableSlice { byte_start: 7818, byte_len: 3 }) }, + Range { from: '\u{2f941}', to: '\u{2f941}', mapping: Mapped(StringTableSlice { byte_start: 11890, byte_len: 4 }) }, + Range { from: '\u{2f942}', to: '\u{2f942}', mapping: Mapped(StringTableSlice { byte_start: 11894, byte_len: 4 }) }, + Range { from: '\u{2f943}', to: '\u{2f943}', mapping: Mapped(StringTableSlice { byte_start: 11898, byte_len: 4 }) }, + Range { from: '\u{2f944}', to: '\u{2f944}', mapping: Mapped(StringTableSlice { byte_start: 11902, byte_len: 4 }) }, + Range { from: '\u{2f945}', to: '\u{2f945}', mapping: Mapped(StringTableSlice { byte_start: 11906, byte_len: 3 }) }, + Range { from: '\u{2f946}', to: '\u{2f947}', mapping: Mapped(StringTableSlice { byte_start: 11909, byte_len: 3 }) }, + Range { from: '\u{2f948}', to: '\u{2f948}', mapping: Mapped(StringTableSlice { byte_start: 7821, byte_len: 3 }) }, + Range { from: '\u{2f949}', to: '\u{2f949}', mapping: Mapped(StringTableSlice { byte_start: 7911, byte_len: 3 }) }, + Range { from: '\u{2f94a}', to: '\u{2f94a}', mapping: Mapped(StringTableSlice { byte_start: 11912, byte_len: 3 }) }, + Range { from: '\u{2f94b}', to: '\u{2f94b}', mapping: Mapped(StringTableSlice { byte_start: 11915, byte_len: 3 }) }, + Range { from: '\u{2f94c}', to: '\u{2f94c}', mapping: Mapped(StringTableSlice { byte_start: 11918, byte_len: 3 }) }, + Range { from: '\u{2f94d}', to: '\u{2f94d}', mapping: Mapped(StringTableSlice { byte_start: 11921, byte_len: 4 }) }, + Range { from: '\u{2f94e}', to: '\u{2f94e}', mapping: Mapped(StringTableSlice { byte_start: 11925, byte_len: 3 }) }, + Range { from: '\u{2f94f}', to: '\u{2f94f}', mapping: Mapped(StringTableSlice { byte_start: 6869, byte_len: 3 }) }, + Range { from: '\u{2f950}', to: '\u{2f950}', mapping: Mapped(StringTableSlice { byte_start: 7827, byte_len: 3 }) }, + Range { from: '\u{2f951}', to: '\u{2f951}', mapping: Mapped(StringTableSlice { byte_start: 11928, byte_len: 3 }) }, + Range { from: '\u{2f952}', to: '\u{2f952}', mapping: Mapped(StringTableSlice { byte_start: 11931, byte_len: 4 }) }, + Range { from: '\u{2f953}', to: '\u{2f953}', mapping: Mapped(StringTableSlice { byte_start: 7610, byte_len: 3 }) }, + Range { from: '\u{2f954}', to: '\u{2f954}', mapping: Mapped(StringTableSlice { byte_start: 11935, byte_len: 4 }) }, + Range { from: '\u{2f955}', to: '\u{2f955}', mapping: Mapped(StringTableSlice { byte_start: 11939, byte_len: 4 }) }, + Range { from: '\u{2f956}', to: '\u{2f956}', mapping: Mapped(StringTableSlice { byte_start: 7481, byte_len: 3 }) }, + Range { from: '\u{2f957}', to: '\u{2f957}', mapping: Mapped(StringTableSlice { byte_start: 11943, byte_len: 3 }) }, + Range { from: '\u{2f958}', to: '\u{2f958}', mapping: Mapped(StringTableSlice { byte_start: 11946, byte_len: 3 }) }, + Range { from: '\u{2f959}', to: '\u{2f959}', mapping: Mapped(StringTableSlice { byte_start: 7619, byte_len: 3 }) }, + Range { from: '\u{2f95a}', to: '\u{2f95a}', mapping: Mapped(StringTableSlice { byte_start: 11949, byte_len: 3 }) }, + Range { from: '\u{2f95b}', to: '\u{2f95b}', mapping: Mapped(StringTableSlice { byte_start: 11952, byte_len: 3 }) }, + Range { from: '\u{2f95c}', to: '\u{2f95c}', mapping: Mapped(StringTableSlice { byte_start: 11955, byte_len: 4 }) }, + Range { from: '\u{2f95d}', to: '\u{2f95e}', mapping: Mapped(StringTableSlice { byte_start: 11959, byte_len: 4 }) }, + Range { from: '\u{2f95f}', to: '\u{2f95f}', mapping: Disallowed }, + Range { from: '\u{2f960}', to: '\u{2f960}', mapping: Mapped(StringTableSlice { byte_start: 11963, byte_len: 3 }) }, + Range { from: '\u{2f961}', to: '\u{2f961}', mapping: Mapped(StringTableSlice { byte_start: 11966, byte_len: 4 }) }, + Range { from: '\u{2f962}', to: '\u{2f962}', mapping: Mapped(StringTableSlice { byte_start: 11970, byte_len: 3 }) }, + Range { from: '\u{2f963}', to: '\u{2f963}', mapping: Mapped(StringTableSlice { byte_start: 11973, byte_len: 3 }) }, + Range { from: '\u{2f964}', to: '\u{2f964}', mapping: Mapped(StringTableSlice { byte_start: 11976, byte_len: 3 }) }, + Range { from: '\u{2f965}', to: '\u{2f965}', mapping: Mapped(StringTableSlice { byte_start: 11979, byte_len: 4 }) }, + Range { from: '\u{2f966}', to: '\u{2f966}', mapping: Mapped(StringTableSlice { byte_start: 11983, byte_len: 3 }) }, + Range { from: '\u{2f967}', to: '\u{2f967}', mapping: Mapped(StringTableSlice { byte_start: 11986, byte_len: 3 }) }, + Range { from: '\u{2f968}', to: '\u{2f968}', mapping: Mapped(StringTableSlice { byte_start: 11989, byte_len: 3 }) }, + Range { from: '\u{2f969}', to: '\u{2f969}', mapping: Mapped(StringTableSlice { byte_start: 11992, byte_len: 3 }) }, + Range { from: '\u{2f96a}', to: '\u{2f96a}', mapping: Mapped(StringTableSlice { byte_start: 11995, byte_len: 3 }) }, + Range { from: '\u{2f96b}', to: '\u{2f96b}', mapping: Mapped(StringTableSlice { byte_start: 11998, byte_len: 4 }) }, + Range { from: '\u{2f96c}', to: '\u{2f96c}', mapping: Mapped(StringTableSlice { byte_start: 12002, byte_len: 3 }) }, + Range { from: '\u{2f96d}', to: '\u{2f96d}', mapping: Mapped(StringTableSlice { byte_start: 12005, byte_len: 3 }) }, + Range { from: '\u{2f96e}', to: '\u{2f96e}', mapping: Mapped(StringTableSlice { byte_start: 12008, byte_len: 3 }) }, + Range { from: '\u{2f96f}', to: '\u{2f96f}', mapping: Mapped(StringTableSlice { byte_start: 12011, byte_len: 3 }) }, + Range { from: '\u{2f970}', to: '\u{2f970}', mapping: Mapped(StringTableSlice { byte_start: 12014, byte_len: 3 }) }, + Range { from: '\u{2f971}', to: '\u{2f971}', mapping: Mapped(StringTableSlice { byte_start: 12017, byte_len: 3 }) }, + Range { from: '\u{2f972}', to: '\u{2f972}', mapping: Mapped(StringTableSlice { byte_start: 12020, byte_len: 4 }) }, + Range { from: '\u{2f973}', to: '\u{2f973}', mapping: Mapped(StringTableSlice { byte_start: 12024, byte_len: 4 }) }, + Range { from: '\u{2f974}', to: '\u{2f974}', mapping: Mapped(StringTableSlice { byte_start: 12028, byte_len: 3 }) }, + Range { from: '\u{2f975}', to: '\u{2f975}', mapping: Mapped(StringTableSlice { byte_start: 12031, byte_len: 4 }) }, + Range { from: '\u{2f976}', to: '\u{2f976}', mapping: Mapped(StringTableSlice { byte_start: 12035, byte_len: 3 }) }, + Range { from: '\u{2f977}', to: '\u{2f977}', mapping: Mapped(StringTableSlice { byte_start: 12038, byte_len: 4 }) }, + Range { from: '\u{2f978}', to: '\u{2f978}', mapping: Mapped(StringTableSlice { byte_start: 12042, byte_len: 3 }) }, + Range { from: '\u{2f979}', to: '\u{2f979}', mapping: Mapped(StringTableSlice { byte_start: 12045, byte_len: 3 }) }, + Range { from: '\u{2f97a}', to: '\u{2f97a}', mapping: Mapped(StringTableSlice { byte_start: 7637, byte_len: 3 }) }, + Range { from: '\u{2f97b}', to: '\u{2f97b}', mapping: Mapped(StringTableSlice { byte_start: 12048, byte_len: 4 }) }, + Range { from: '\u{2f97c}', to: '\u{2f97c}', mapping: Mapped(StringTableSlice { byte_start: 12052, byte_len: 4 }) }, + Range { from: '\u{2f97d}', to: '\u{2f97d}', mapping: Mapped(StringTableSlice { byte_start: 12056, byte_len: 3 }) }, + Range { from: '\u{2f97e}', to: '\u{2f97e}', mapping: Mapped(StringTableSlice { byte_start: 12059, byte_len: 4 }) }, + Range { from: '\u{2f97f}', to: '\u{2f97f}', mapping: Mapped(StringTableSlice { byte_start: 12063, byte_len: 3 }) }, + Range { from: '\u{2f980}', to: '\u{2f980}', mapping: Mapped(StringTableSlice { byte_start: 12066, byte_len: 4 }) }, + Range { from: '\u{2f981}', to: '\u{2f981}', mapping: Mapped(StringTableSlice { byte_start: 12070, byte_len: 3 }) }, + Range { from: '\u{2f982}', to: '\u{2f982}', mapping: Mapped(StringTableSlice { byte_start: 12073, byte_len: 3 }) }, + Range { from: '\u{2f983}', to: '\u{2f983}', mapping: Mapped(StringTableSlice { byte_start: 12076, byte_len: 3 }) }, + Range { from: '\u{2f984}', to: '\u{2f984}', mapping: Mapped(StringTableSlice { byte_start: 12079, byte_len: 3 }) }, + Range { from: '\u{2f985}', to: '\u{2f985}', mapping: Mapped(StringTableSlice { byte_start: 12082, byte_len: 3 }) }, + Range { from: '\u{2f986}', to: '\u{2f986}', mapping: Mapped(StringTableSlice { byte_start: 12085, byte_len: 3 }) }, + Range { from: '\u{2f987}', to: '\u{2f987}', mapping: Mapped(StringTableSlice { byte_start: 12088, byte_len: 4 }) }, + Range { from: '\u{2f988}', to: '\u{2f988}', mapping: Mapped(StringTableSlice { byte_start: 12092, byte_len: 4 }) }, + Range { from: '\u{2f989}', to: '\u{2f989}', mapping: Mapped(StringTableSlice { byte_start: 12096, byte_len: 4 }) }, + Range { from: '\u{2f98a}', to: '\u{2f98a}', mapping: Mapped(StringTableSlice { byte_start: 12100, byte_len: 4 }) }, + Range { from: '\u{2f98b}', to: '\u{2f98b}', mapping: Mapped(StringTableSlice { byte_start: 11411, byte_len: 3 }) }, + Range { from: '\u{2f98c}', to: '\u{2f98c}', mapping: Mapped(StringTableSlice { byte_start: 12104, byte_len: 3 }) }, + Range { from: '\u{2f98d}', to: '\u{2f98d}', mapping: Mapped(StringTableSlice { byte_start: 12107, byte_len: 3 }) }, + Range { from: '\u{2f98e}', to: '\u{2f98e}', mapping: Mapped(StringTableSlice { byte_start: 12110, byte_len: 3 }) }, + Range { from: '\u{2f98f}', to: '\u{2f98f}', mapping: Mapped(StringTableSlice { byte_start: 12113, byte_len: 3 }) }, + Range { from: '\u{2f990}', to: '\u{2f990}', mapping: Mapped(StringTableSlice { byte_start: 12116, byte_len: 3 }) }, + Range { from: '\u{2f991}', to: '\u{2f991}', mapping: Mapped(StringTableSlice { byte_start: 12119, byte_len: 3 }) }, + Range { from: '\u{2f992}', to: '\u{2f992}', mapping: Mapped(StringTableSlice { byte_start: 12122, byte_len: 3 }) }, + Range { from: '\u{2f993}', to: '\u{2f993}', mapping: Mapped(StringTableSlice { byte_start: 12125, byte_len: 3 }) }, + Range { from: '\u{2f994}', to: '\u{2f994}', mapping: Mapped(StringTableSlice { byte_start: 12128, byte_len: 3 }) }, + Range { from: '\u{2f995}', to: '\u{2f995}', mapping: Mapped(StringTableSlice { byte_start: 12131, byte_len: 3 }) }, + Range { from: '\u{2f996}', to: '\u{2f996}', mapping: Mapped(StringTableSlice { byte_start: 12134, byte_len: 3 }) }, + Range { from: '\u{2f997}', to: '\u{2f997}', mapping: Mapped(StringTableSlice { byte_start: 12137, byte_len: 4 }) }, + Range { from: '\u{2f998}', to: '\u{2f998}', mapping: Mapped(StringTableSlice { byte_start: 7031, byte_len: 3 }) }, + Range { from: '\u{2f999}', to: '\u{2f999}', mapping: Mapped(StringTableSlice { byte_start: 12141, byte_len: 3 }) }, + Range { from: '\u{2f99a}', to: '\u{2f99a}', mapping: Mapped(StringTableSlice { byte_start: 12144, byte_len: 3 }) }, + Range { from: '\u{2f99b}', to: '\u{2f99b}', mapping: Mapped(StringTableSlice { byte_start: 12147, byte_len: 3 }) }, + Range { from: '\u{2f99c}', to: '\u{2f99c}', mapping: Mapped(StringTableSlice { byte_start: 12150, byte_len: 3 }) }, + Range { from: '\u{2f99d}', to: '\u{2f99d}', mapping: Mapped(StringTableSlice { byte_start: 12153, byte_len: 3 }) }, + Range { from: '\u{2f99e}', to: '\u{2f99e}', mapping: Mapped(StringTableSlice { byte_start: 12156, byte_len: 3 }) }, + Range { from: '\u{2f99f}', to: '\u{2f99f}', mapping: Mapped(StringTableSlice { byte_start: 7646, byte_len: 3 }) }, + Range { from: '\u{2f9a0}', to: '\u{2f9a0}', mapping: Mapped(StringTableSlice { byte_start: 12159, byte_len: 3 }) }, + Range { from: '\u{2f9a1}', to: '\u{2f9a1}', mapping: Mapped(StringTableSlice { byte_start: 12162, byte_len: 3 }) }, + Range { from: '\u{2f9a2}', to: '\u{2f9a2}', mapping: Mapped(StringTableSlice { byte_start: 12165, byte_len: 3 }) }, + Range { from: '\u{2f9a3}', to: '\u{2f9a3}', mapping: Mapped(StringTableSlice { byte_start: 12168, byte_len: 3 }) }, + Range { from: '\u{2f9a4}', to: '\u{2f9a4}', mapping: Mapped(StringTableSlice { byte_start: 12171, byte_len: 4 }) }, + Range { from: '\u{2f9a5}', to: '\u{2f9a5}', mapping: Mapped(StringTableSlice { byte_start: 12175, byte_len: 4 }) }, + Range { from: '\u{2f9a6}', to: '\u{2f9a6}', mapping: Mapped(StringTableSlice { byte_start: 12179, byte_len: 4 }) }, + Range { from: '\u{2f9a7}', to: '\u{2f9a7}', mapping: Mapped(StringTableSlice { byte_start: 12183, byte_len: 3 }) }, + Range { from: '\u{2f9a8}', to: '\u{2f9a8}', mapping: Mapped(StringTableSlice { byte_start: 12186, byte_len: 3 }) }, + Range { from: '\u{2f9a9}', to: '\u{2f9a9}', mapping: Mapped(StringTableSlice { byte_start: 12189, byte_len: 3 }) }, + Range { from: '\u{2f9aa}', to: '\u{2f9aa}', mapping: Mapped(StringTableSlice { byte_start: 12192, byte_len: 3 }) }, + Range { from: '\u{2f9ab}', to: '\u{2f9ab}', mapping: Mapped(StringTableSlice { byte_start: 12195, byte_len: 4 }) }, + Range { from: '\u{2f9ac}', to: '\u{2f9ac}', mapping: Mapped(StringTableSlice { byte_start: 12199, byte_len: 3 }) }, + Range { from: '\u{2f9ad}', to: '\u{2f9ad}', mapping: Mapped(StringTableSlice { byte_start: 12202, byte_len: 4 }) }, + Range { from: '\u{2f9ae}', to: '\u{2f9ae}', mapping: Mapped(StringTableSlice { byte_start: 12206, byte_len: 3 }) }, + Range { from: '\u{2f9af}', to: '\u{2f9af}', mapping: Mapped(StringTableSlice { byte_start: 12209, byte_len: 3 }) }, + Range { from: '\u{2f9b0}', to: '\u{2f9b0}', mapping: Mapped(StringTableSlice { byte_start: 12212, byte_len: 4 }) }, + Range { from: '\u{2f9b1}', to: '\u{2f9b1}', mapping: Mapped(StringTableSlice { byte_start: 12216, byte_len: 4 }) }, + Range { from: '\u{2f9b2}', to: '\u{2f9b2}', mapping: Mapped(StringTableSlice { byte_start: 12220, byte_len: 3 }) }, + Range { from: '\u{2f9b3}', to: '\u{2f9b3}', mapping: Mapped(StringTableSlice { byte_start: 12223, byte_len: 3 }) }, + Range { from: '\u{2f9b4}', to: '\u{2f9b4}', mapping: Mapped(StringTableSlice { byte_start: 6854, byte_len: 3 }) }, + Range { from: '\u{2f9b5}', to: '\u{2f9b5}', mapping: Mapped(StringTableSlice { byte_start: 12226, byte_len: 3 }) }, + Range { from: '\u{2f9b6}', to: '\u{2f9b6}', mapping: Mapped(StringTableSlice { byte_start: 12229, byte_len: 3 }) }, + Range { from: '\u{2f9b7}', to: '\u{2f9b7}', mapping: Mapped(StringTableSlice { byte_start: 12232, byte_len: 3 }) }, + Range { from: '\u{2f9b8}', to: '\u{2f9b8}', mapping: Mapped(StringTableSlice { byte_start: 12235, byte_len: 3 }) }, + Range { from: '\u{2f9b9}', to: '\u{2f9b9}', mapping: Mapped(StringTableSlice { byte_start: 12238, byte_len: 3 }) }, + Range { from: '\u{2f9ba}', to: '\u{2f9ba}', mapping: Mapped(StringTableSlice { byte_start: 12241, byte_len: 3 }) }, + Range { from: '\u{2f9bb}', to: '\u{2f9bb}', mapping: Mapped(StringTableSlice { byte_start: 7848, byte_len: 3 }) }, + Range { from: '\u{2f9bc}', to: '\u{2f9bc}', mapping: Mapped(StringTableSlice { byte_start: 12244, byte_len: 3 }) }, + Range { from: '\u{2f9bd}', to: '\u{2f9bd}', mapping: Mapped(StringTableSlice { byte_start: 12247, byte_len: 3 }) }, + Range { from: '\u{2f9be}', to: '\u{2f9be}', mapping: Mapped(StringTableSlice { byte_start: 12250, byte_len: 3 }) }, + Range { from: '\u{2f9bf}', to: '\u{2f9bf}', mapping: Disallowed }, + Range { from: '\u{2f9c0}', to: '\u{2f9c0}', mapping: Mapped(StringTableSlice { byte_start: 12253, byte_len: 3 }) }, + Range { from: '\u{2f9c1}', to: '\u{2f9c1}', mapping: Mapped(StringTableSlice { byte_start: 12256, byte_len: 3 }) }, + Range { from: '\u{2f9c2}', to: '\u{2f9c2}', mapping: Mapped(StringTableSlice { byte_start: 12259, byte_len: 3 }) }, + Range { from: '\u{2f9c3}', to: '\u{2f9c3}', mapping: Mapped(StringTableSlice { byte_start: 12262, byte_len: 3 }) }, + Range { from: '\u{2f9c4}', to: '\u{2f9c4}', mapping: Mapped(StringTableSlice { byte_start: 3379, byte_len: 3 }) }, + Range { from: '\u{2f9c5}', to: '\u{2f9c5}', mapping: Mapped(StringTableSlice { byte_start: 12265, byte_len: 4 }) }, + Range { from: '\u{2f9c6}', to: '\u{2f9c6}', mapping: Mapped(StringTableSlice { byte_start: 12269, byte_len: 3 }) }, + Range { from: '\u{2f9c7}', to: '\u{2f9c7}', mapping: Mapped(StringTableSlice { byte_start: 12272, byte_len: 3 }) }, + Range { from: '\u{2f9c8}', to: '\u{2f9c8}', mapping: Mapped(StringTableSlice { byte_start: 12275, byte_len: 3 }) }, + Range { from: '\u{2f9c9}', to: '\u{2f9c9}', mapping: Mapped(StringTableSlice { byte_start: 12278, byte_len: 3 }) }, + Range { from: '\u{2f9ca}', to: '\u{2f9ca}', mapping: Mapped(StringTableSlice { byte_start: 12281, byte_len: 3 }) }, + Range { from: '\u{2f9cb}', to: '\u{2f9cb}', mapping: Mapped(StringTableSlice { byte_start: 12284, byte_len: 4 }) }, + Range { from: '\u{2f9cc}', to: '\u{2f9cc}', mapping: Mapped(StringTableSlice { byte_start: 12288, byte_len: 4 }) }, + Range { from: '\u{2f9cd}', to: '\u{2f9cd}', mapping: Mapped(StringTableSlice { byte_start: 12292, byte_len: 3 }) }, + Range { from: '\u{2f9ce}', to: '\u{2f9ce}', mapping: Mapped(StringTableSlice { byte_start: 12295, byte_len: 3 }) }, + Range { from: '\u{2f9cf}', to: '\u{2f9cf}', mapping: Mapped(StringTableSlice { byte_start: 12298, byte_len: 3 }) }, + Range { from: '\u{2f9d0}', to: '\u{2f9d0}', mapping: Mapped(StringTableSlice { byte_start: 7863, byte_len: 3 }) }, + Range { from: '\u{2f9d1}', to: '\u{2f9d1}', mapping: Mapped(StringTableSlice { byte_start: 7866, byte_len: 3 }) }, + Range { from: '\u{2f9d2}', to: '\u{2f9d2}', mapping: Mapped(StringTableSlice { byte_start: 3400, byte_len: 3 }) }, + Range { from: '\u{2f9d3}', to: '\u{2f9d3}', mapping: Mapped(StringTableSlice { byte_start: 12301, byte_len: 4 }) }, + Range { from: '\u{2f9d4}', to: '\u{2f9d4}', mapping: Mapped(StringTableSlice { byte_start: 12305, byte_len: 3 }) }, + Range { from: '\u{2f9d5}', to: '\u{2f9d5}', mapping: Mapped(StringTableSlice { byte_start: 12308, byte_len: 3 }) }, + Range { from: '\u{2f9d6}', to: '\u{2f9d6}', mapping: Mapped(StringTableSlice { byte_start: 12311, byte_len: 3 }) }, + Range { from: '\u{2f9d7}', to: '\u{2f9d7}', mapping: Mapped(StringTableSlice { byte_start: 12314, byte_len: 3 }) }, + Range { from: '\u{2f9d8}', to: '\u{2f9d8}', mapping: Mapped(StringTableSlice { byte_start: 12317, byte_len: 4 }) }, + Range { from: '\u{2f9d9}', to: '\u{2f9d9}', mapping: Mapped(StringTableSlice { byte_start: 12321, byte_len: 4 }) }, + Range { from: '\u{2f9da}', to: '\u{2f9da}', mapping: Mapped(StringTableSlice { byte_start: 12325, byte_len: 3 }) }, + Range { from: '\u{2f9db}', to: '\u{2f9db}', mapping: Mapped(StringTableSlice { byte_start: 12328, byte_len: 3 }) }, + Range { from: '\u{2f9dc}', to: '\u{2f9dc}', mapping: Mapped(StringTableSlice { byte_start: 12331, byte_len: 3 }) }, + Range { from: '\u{2f9dd}', to: '\u{2f9dd}', mapping: Mapped(StringTableSlice { byte_start: 12334, byte_len: 4 }) }, + Range { from: '\u{2f9de}', to: '\u{2f9de}', mapping: Mapped(StringTableSlice { byte_start: 12338, byte_len: 3 }) }, + Range { from: '\u{2f9df}', to: '\u{2f9df}', mapping: Mapped(StringTableSlice { byte_start: 7869, byte_len: 3 }) }, + Range { from: '\u{2f9e0}', to: '\u{2f9e0}', mapping: Mapped(StringTableSlice { byte_start: 12341, byte_len: 4 }) }, + Range { from: '\u{2f9e1}', to: '\u{2f9e1}', mapping: Mapped(StringTableSlice { byte_start: 12345, byte_len: 4 }) }, + Range { from: '\u{2f9e2}', to: '\u{2f9e2}', mapping: Mapped(StringTableSlice { byte_start: 12349, byte_len: 3 }) }, + Range { from: '\u{2f9e3}', to: '\u{2f9e3}', mapping: Mapped(StringTableSlice { byte_start: 12352, byte_len: 3 }) }, + Range { from: '\u{2f9e4}', to: '\u{2f9e4}', mapping: Mapped(StringTableSlice { byte_start: 12355, byte_len: 3 }) }, + Range { from: '\u{2f9e5}', to: '\u{2f9e5}', mapping: Mapped(StringTableSlice { byte_start: 12358, byte_len: 4 }) }, + Range { from: '\u{2f9e6}', to: '\u{2f9e6}', mapping: Mapped(StringTableSlice { byte_start: 12362, byte_len: 3 }) }, + Range { from: '\u{2f9e7}', to: '\u{2f9e7}', mapping: Mapped(StringTableSlice { byte_start: 12365, byte_len: 3 }) }, + Range { from: '\u{2f9e8}', to: '\u{2f9e8}', mapping: Mapped(StringTableSlice { byte_start: 12368, byte_len: 3 }) }, + Range { from: '\u{2f9e9}', to: '\u{2f9e9}', mapping: Mapped(StringTableSlice { byte_start: 12371, byte_len: 3 }) }, + Range { from: '\u{2f9ea}', to: '\u{2f9ea}', mapping: Mapped(StringTableSlice { byte_start: 12374, byte_len: 3 }) }, + Range { from: '\u{2f9eb}', to: '\u{2f9eb}', mapping: Mapped(StringTableSlice { byte_start: 12377, byte_len: 3 }) }, + Range { from: '\u{2f9ec}', to: '\u{2f9ec}', mapping: Mapped(StringTableSlice { byte_start: 12380, byte_len: 3 }) }, + Range { from: '\u{2f9ed}', to: '\u{2f9ed}', mapping: Mapped(StringTableSlice { byte_start: 12383, byte_len: 4 }) }, + Range { from: '\u{2f9ee}', to: '\u{2f9ee}', mapping: Mapped(StringTableSlice { byte_start: 12387, byte_len: 3 }) }, + Range { from: '\u{2f9ef}', to: '\u{2f9ef}', mapping: Mapped(StringTableSlice { byte_start: 12390, byte_len: 3 }) }, + Range { from: '\u{2f9f0}', to: '\u{2f9f0}', mapping: Mapped(StringTableSlice { byte_start: 12393, byte_len: 3 }) }, + Range { from: '\u{2f9f1}', to: '\u{2f9f1}', mapping: Mapped(StringTableSlice { byte_start: 12396, byte_len: 4 }) }, + Range { from: '\u{2f9f2}', to: '\u{2f9f2}', mapping: Mapped(StringTableSlice { byte_start: 12400, byte_len: 3 }) }, + Range { from: '\u{2f9f3}', to: '\u{2f9f3}', mapping: Mapped(StringTableSlice { byte_start: 12403, byte_len: 3 }) }, + Range { from: '\u{2f9f4}', to: '\u{2f9f4}', mapping: Mapped(StringTableSlice { byte_start: 12406, byte_len: 3 }) }, + Range { from: '\u{2f9f5}', to: '\u{2f9f5}', mapping: Mapped(StringTableSlice { byte_start: 12409, byte_len: 3 }) }, + Range { from: '\u{2f9f6}', to: '\u{2f9f6}', mapping: Mapped(StringTableSlice { byte_start: 12412, byte_len: 4 }) }, + Range { from: '\u{2f9f7}', to: '\u{2f9f7}', mapping: Mapped(StringTableSlice { byte_start: 12416, byte_len: 4 }) }, + Range { from: '\u{2f9f8}', to: '\u{2f9f8}', mapping: Mapped(StringTableSlice { byte_start: 12420, byte_len: 3 }) }, + Range { from: '\u{2f9f9}', to: '\u{2f9f9}', mapping: Mapped(StringTableSlice { byte_start: 12423, byte_len: 3 }) }, + Range { from: '\u{2f9fa}', to: '\u{2f9fa}', mapping: Mapped(StringTableSlice { byte_start: 12426, byte_len: 3 }) }, + Range { from: '\u{2f9fb}', to: '\u{2f9fb}', mapping: Mapped(StringTableSlice { byte_start: 12429, byte_len: 4 }) }, + Range { from: '\u{2f9fc}', to: '\u{2f9fc}', mapping: Mapped(StringTableSlice { byte_start: 12433, byte_len: 3 }) }, + Range { from: '\u{2f9fd}', to: '\u{2f9fd}', mapping: Mapped(StringTableSlice { byte_start: 12436, byte_len: 4 }) }, + Range { from: '\u{2f9fe}', to: '\u{2f9ff}', mapping: Mapped(StringTableSlice { byte_start: 7887, byte_len: 3 }) }, + Range { from: '\u{2fa00}', to: '\u{2fa00}', mapping: Mapped(StringTableSlice { byte_start: 12440, byte_len: 3 }) }, + Range { from: '\u{2fa01}', to: '\u{2fa01}', mapping: Mapped(StringTableSlice { byte_start: 12443, byte_len: 4 }) }, + Range { from: '\u{2fa02}', to: '\u{2fa02}', mapping: Mapped(StringTableSlice { byte_start: 12447, byte_len: 3 }) }, + Range { from: '\u{2fa03}', to: '\u{2fa03}', mapping: Mapped(StringTableSlice { byte_start: 12450, byte_len: 3 }) }, + Range { from: '\u{2fa04}', to: '\u{2fa04}', mapping: Mapped(StringTableSlice { byte_start: 12453, byte_len: 3 }) }, + Range { from: '\u{2fa05}', to: '\u{2fa05}', mapping: Mapped(StringTableSlice { byte_start: 12456, byte_len: 3 }) }, + Range { from: '\u{2fa06}', to: '\u{2fa06}', mapping: Mapped(StringTableSlice { byte_start: 12459, byte_len: 3 }) }, + Range { from: '\u{2fa07}', to: '\u{2fa07}', mapping: Mapped(StringTableSlice { byte_start: 12462, byte_len: 3 }) }, + Range { from: '\u{2fa08}', to: '\u{2fa08}', mapping: Mapped(StringTableSlice { byte_start: 12465, byte_len: 3 }) }, + Range { from: '\u{2fa09}', to: '\u{2fa09}', mapping: Mapped(StringTableSlice { byte_start: 12468, byte_len: 4 }) }, + Range { from: '\u{2fa0a}', to: '\u{2fa0a}', mapping: Mapped(StringTableSlice { byte_start: 7890, byte_len: 3 }) }, + Range { from: '\u{2fa0b}', to: '\u{2fa0b}', mapping: Mapped(StringTableSlice { byte_start: 12472, byte_len: 3 }) }, + Range { from: '\u{2fa0c}', to: '\u{2fa0c}', mapping: Mapped(StringTableSlice { byte_start: 12475, byte_len: 3 }) }, + Range { from: '\u{2fa0d}', to: '\u{2fa0d}', mapping: Mapped(StringTableSlice { byte_start: 12478, byte_len: 3 }) }, + Range { from: '\u{2fa0e}', to: '\u{2fa0e}', mapping: Mapped(StringTableSlice { byte_start: 12481, byte_len: 3 }) }, + Range { from: '\u{2fa0f}', to: '\u{2fa0f}', mapping: Mapped(StringTableSlice { byte_start: 12484, byte_len: 3 }) }, + Range { from: '\u{2fa10}', to: '\u{2fa10}', mapping: Mapped(StringTableSlice { byte_start: 12487, byte_len: 4 }) }, + Range { from: '\u{2fa11}', to: '\u{2fa11}', mapping: Mapped(StringTableSlice { byte_start: 12491, byte_len: 3 }) }, + Range { from: '\u{2fa12}', to: '\u{2fa12}', mapping: Mapped(StringTableSlice { byte_start: 12494, byte_len: 4 }) }, + Range { from: '\u{2fa13}', to: '\u{2fa13}', mapping: Mapped(StringTableSlice { byte_start: 12498, byte_len: 4 }) }, + Range { from: '\u{2fa14}', to: '\u{2fa14}', mapping: Mapped(StringTableSlice { byte_start: 12502, byte_len: 4 }) }, + Range { from: '\u{2fa15}', to: '\u{2fa15}', mapping: Mapped(StringTableSlice { byte_start: 3544, byte_len: 3 }) }, + Range { from: '\u{2fa16}', to: '\u{2fa16}', mapping: Mapped(StringTableSlice { byte_start: 12506, byte_len: 3 }) }, + Range { from: '\u{2fa17}', to: '\u{2fa17}', mapping: Mapped(StringTableSlice { byte_start: 3556, byte_len: 3 }) }, + Range { from: '\u{2fa18}', to: '\u{2fa18}', mapping: Mapped(StringTableSlice { byte_start: 12509, byte_len: 3 }) }, + Range { from: '\u{2fa19}', to: '\u{2fa19}', mapping: Mapped(StringTableSlice { byte_start: 12512, byte_len: 3 }) }, + Range { from: '\u{2fa1a}', to: '\u{2fa1a}', mapping: Mapped(StringTableSlice { byte_start: 12515, byte_len: 3 }) }, + Range { from: '\u{2fa1b}', to: '\u{2fa1b}', mapping: Mapped(StringTableSlice { byte_start: 12518, byte_len: 3 }) }, + Range { from: '\u{2fa1c}', to: '\u{2fa1c}', mapping: Mapped(StringTableSlice { byte_start: 3571, byte_len: 3 }) }, + Range { from: '\u{2fa1d}', to: '\u{2fa1d}', mapping: Mapped(StringTableSlice { byte_start: 12521, byte_len: 4 }) }, + Range { from: '\u{2fa1e}', to: '\u{2fffd}', mapping: Disallowed }, + Range { from: '\u{2fffe}', to: '\u{2ffff}', mapping: Disallowed }, + Range { from: '\u{30000}', to: '\u{3fffd}', mapping: Disallowed }, + Range { from: '\u{3fffe}', to: '\u{3ffff}', mapping: Disallowed }, + Range { from: '\u{40000}', to: '\u{4fffd}', mapping: Disallowed }, + Range { from: '\u{4fffe}', to: '\u{4ffff}', mapping: Disallowed }, + Range { from: '\u{50000}', to: '\u{5fffd}', mapping: Disallowed }, + Range { from: '\u{5fffe}', to: '\u{5ffff}', mapping: Disallowed }, + Range { from: '\u{60000}', to: '\u{6fffd}', mapping: Disallowed }, + Range { from: '\u{6fffe}', to: '\u{6ffff}', mapping: Disallowed }, + Range { from: '\u{70000}', to: '\u{7fffd}', mapping: Disallowed }, + Range { from: '\u{7fffe}', to: '\u{7ffff}', mapping: Disallowed }, + Range { from: '\u{80000}', to: '\u{8fffd}', mapping: Disallowed }, + Range { from: '\u{8fffe}', to: '\u{8ffff}', mapping: Disallowed }, + Range { from: '\u{90000}', to: '\u{9fffd}', mapping: Disallowed }, + Range { from: '\u{9fffe}', to: '\u{9ffff}', mapping: Disallowed }, + Range { from: '\u{a0000}', to: '\u{afffd}', mapping: Disallowed }, + Range { from: '\u{afffe}', to: '\u{affff}', mapping: Disallowed }, + Range { from: '\u{b0000}', to: '\u{bfffd}', mapping: Disallowed }, + Range { from: '\u{bfffe}', to: '\u{bffff}', mapping: Disallowed }, + Range { from: '\u{c0000}', to: '\u{cfffd}', mapping: Disallowed }, + Range { from: '\u{cfffe}', to: '\u{cffff}', mapping: Disallowed }, + Range { from: '\u{d0000}', to: '\u{dfffd}', mapping: Disallowed }, + Range { from: '\u{dfffe}', to: '\u{dffff}', mapping: Disallowed }, + Range { from: '\u{e0000}', to: '\u{e0000}', mapping: Disallowed }, + Range { from: '\u{e0001}', to: '\u{e0001}', mapping: Disallowed }, + Range { from: '\u{e0002}', to: '\u{e001f}', mapping: Disallowed }, + Range { from: '\u{e0020}', to: '\u{e007f}', mapping: Disallowed }, + Range { from: '\u{e0080}', to: '\u{e00ff}', mapping: Disallowed }, + Range { from: '\u{e0100}', to: '\u{e01ef}', mapping: Ignored }, + Range { from: '\u{e01f0}', to: '\u{efffd}', mapping: Disallowed }, + Range { from: '\u{efffe}', to: '\u{effff}', mapping: Disallowed }, + Range { from: '\u{f0000}', to: '\u{ffffd}', mapping: Disallowed }, + Range { from: '\u{ffffe}', to: '\u{fffff}', mapping: Disallowed }, + Range { from: '\u{100000}', to: '\u{10fffd}', mapping: Disallowed }, + Range { from: '\u{10fffe}', to: '\u{10ffff}', mapping: Disallowed }, ]; + +static STRING_TABLE: &'static str = "\u{61}\ + \u{62}\ + \u{63}\ + \u{64}\ + \u{65}\ + \u{66}\ + \u{67}\ + \u{68}\ + \u{69}\ + \u{6a}\ + \u{6b}\ + \u{6c}\ + \u{6d}\ + \u{6e}\ + \u{6f}\ + \u{70}\ + \u{71}\ + \u{72}\ + \u{73}\ + \u{74}\ + \u{75}\ + \u{76}\ + \u{77}\ + \u{78}\ + \u{79}\ + \u{7a}\ + \u{20}\ + \u{20}\ + \u{308}\ + \u{20}\ + \u{304}\ + \u{32}\ + \u{33}\ + \u{20}\ + \u{301}\ + \u{3bc}\ + \u{20}\ + \u{327}\ + \u{31}\ + \u{31}\ + \u{2044}\ + \u{34}\ + \u{31}\ + \u{2044}\ + \u{32}\ + \u{33}\ + \u{2044}\ + \u{34}\ + \u{e0}\ + \u{e1}\ + \u{e2}\ + \u{e3}\ + \u{e4}\ + \u{e5}\ + \u{e6}\ + \u{e7}\ + \u{e8}\ + \u{e9}\ + \u{ea}\ + \u{eb}\ + \u{ec}\ + \u{ed}\ + \u{ee}\ + \u{ef}\ + \u{f0}\ + \u{f1}\ + \u{f2}\ + \u{f3}\ + \u{f4}\ + \u{f5}\ + \u{f6}\ + \u{f8}\ + \u{f9}\ + \u{fa}\ + \u{fb}\ + \u{fc}\ + \u{fd}\ + \u{fe}\ + \u{73}\ + \u{73}\ + \u{101}\ + \u{103}\ + \u{105}\ + \u{107}\ + \u{109}\ + \u{10b}\ + \u{10d}\ + \u{10f}\ + \u{111}\ + \u{113}\ + \u{115}\ + \u{117}\ + \u{119}\ + \u{11b}\ + \u{11d}\ + \u{11f}\ + \u{121}\ + \u{123}\ + \u{125}\ + \u{127}\ + \u{129}\ + \u{12b}\ + \u{12d}\ + \u{12f}\ + \u{69}\ + \u{307}\ + \u{69}\ + \u{6a}\ + \u{135}\ + \u{137}\ + \u{13a}\ + \u{13c}\ + \u{13e}\ + \u{6c}\ + \u{b7}\ + \u{142}\ + \u{144}\ + \u{146}\ + \u{148}\ + \u{2bc}\ + \u{6e}\ + \u{14b}\ + \u{14d}\ + \u{14f}\ + \u{151}\ + \u{153}\ + \u{155}\ + \u{157}\ + \u{159}\ + \u{15b}\ + \u{15d}\ + \u{15f}\ + \u{161}\ + \u{163}\ + \u{165}\ + \u{167}\ + \u{169}\ + \u{16b}\ + \u{16d}\ + \u{16f}\ + \u{171}\ + \u{173}\ + \u{175}\ + \u{177}\ + \u{ff}\ + \u{17a}\ + \u{17c}\ + \u{17e}\ + \u{253}\ + \u{183}\ + \u{185}\ + \u{254}\ + \u{188}\ + \u{256}\ + \u{257}\ + \u{18c}\ + \u{1dd}\ + \u{259}\ + \u{25b}\ + \u{192}\ + \u{260}\ + \u{263}\ + \u{269}\ + \u{268}\ + \u{199}\ + \u{26f}\ + \u{272}\ + \u{275}\ + \u{1a1}\ + \u{1a3}\ + \u{1a5}\ + \u{280}\ + \u{1a8}\ + \u{283}\ + \u{1ad}\ + \u{288}\ + \u{1b0}\ + \u{28a}\ + \u{28b}\ + \u{1b4}\ + \u{1b6}\ + \u{292}\ + \u{1b9}\ + \u{1bd}\ + \u{64}\ + \u{17e}\ + \u{6c}\ + \u{6a}\ + \u{6e}\ + \u{6a}\ + \u{1ce}\ + \u{1d0}\ + \u{1d2}\ + \u{1d4}\ + \u{1d6}\ + \u{1d8}\ + \u{1da}\ + \u{1dc}\ + \u{1df}\ + \u{1e1}\ + \u{1e3}\ + \u{1e5}\ + \u{1e7}\ + \u{1e9}\ + \u{1eb}\ + \u{1ed}\ + \u{1ef}\ + \u{64}\ + \u{7a}\ + \u{1f5}\ + \u{195}\ + \u{1bf}\ + \u{1f9}\ + \u{1fb}\ + \u{1fd}\ + \u{1ff}\ + \u{201}\ + \u{203}\ + \u{205}\ + \u{207}\ + \u{209}\ + \u{20b}\ + \u{20d}\ + \u{20f}\ + \u{211}\ + \u{213}\ + \u{215}\ + \u{217}\ + \u{219}\ + \u{21b}\ + \u{21d}\ + \u{21f}\ + \u{19e}\ + \u{223}\ + \u{225}\ + \u{227}\ + \u{229}\ + \u{22b}\ + \u{22d}\ + \u{22f}\ + \u{231}\ + \u{233}\ + \u{2c65}\ + \u{23c}\ + \u{19a}\ + \u{2c66}\ + \u{242}\ + \u{180}\ + \u{289}\ + \u{28c}\ + \u{247}\ + \u{249}\ + \u{24b}\ + \u{24d}\ + \u{24f}\ + \u{266}\ + \u{279}\ + \u{27b}\ + \u{281}\ + \u{20}\ + \u{306}\ + \u{20}\ + \u{307}\ + \u{20}\ + \u{30a}\ + \u{20}\ + \u{328}\ + \u{20}\ + \u{303}\ + \u{20}\ + \u{30b}\ + \u{295}\ + \u{300}\ + \u{301}\ + \u{313}\ + \u{308}\ + \u{301}\ + \u{3b9}\ + \u{371}\ + \u{373}\ + \u{2b9}\ + \u{377}\ + \u{20}\ + \u{3b9}\ + \u{3b}\ + \u{3f3}\ + \u{20}\ + \u{308}\ + \u{301}\ + \u{3ac}\ + \u{b7}\ + \u{3ad}\ + \u{3ae}\ + \u{3af}\ + \u{3cc}\ + \u{3cd}\ + \u{3ce}\ + \u{3b1}\ + \u{3b2}\ + \u{3b3}\ + \u{3b4}\ + \u{3b5}\ + \u{3b6}\ + \u{3b7}\ + \u{3b8}\ + \u{3ba}\ + \u{3bb}\ + \u{3bd}\ + \u{3be}\ + \u{3bf}\ + \u{3c0}\ + \u{3c1}\ + \u{3c3}\ + \u{3c4}\ + \u{3c5}\ + \u{3c6}\ + \u{3c7}\ + \u{3c8}\ + \u{3c9}\ + \u{3ca}\ + \u{3cb}\ + \u{3d7}\ + \u{3d9}\ + \u{3db}\ + \u{3dd}\ + \u{3df}\ + \u{3e1}\ + \u{3e3}\ + \u{3e5}\ + \u{3e7}\ + \u{3e9}\ + \u{3eb}\ + \u{3ed}\ + \u{3ef}\ + \u{3f8}\ + \u{3fb}\ + \u{37b}\ + \u{37c}\ + \u{37d}\ + \u{450}\ + \u{451}\ + \u{452}\ + \u{453}\ + \u{454}\ + \u{455}\ + \u{456}\ + \u{457}\ + \u{458}\ + \u{459}\ + \u{45a}\ + \u{45b}\ + \u{45c}\ + \u{45d}\ + \u{45e}\ + \u{45f}\ + \u{430}\ + \u{431}\ + \u{432}\ + \u{433}\ + \u{434}\ + \u{435}\ + \u{436}\ + \u{437}\ + \u{438}\ + \u{439}\ + \u{43a}\ + \u{43b}\ + \u{43c}\ + \u{43d}\ + \u{43e}\ + \u{43f}\ + \u{440}\ + \u{441}\ + \u{442}\ + \u{443}\ + \u{444}\ + \u{445}\ + \u{446}\ + \u{447}\ + \u{448}\ + \u{449}\ + \u{44a}\ + \u{44b}\ + \u{44c}\ + \u{44d}\ + \u{44e}\ + \u{44f}\ + \u{461}\ + \u{463}\ + \u{465}\ + \u{467}\ + \u{469}\ + \u{46b}\ + \u{46d}\ + \u{46f}\ + \u{471}\ + \u{473}\ + \u{475}\ + \u{477}\ + \u{479}\ + \u{47b}\ + \u{47d}\ + \u{47f}\ + \u{481}\ + \u{48b}\ + \u{48d}\ + \u{48f}\ + \u{491}\ + \u{493}\ + \u{495}\ + \u{497}\ + \u{499}\ + \u{49b}\ + \u{49d}\ + \u{49f}\ + \u{4a1}\ + \u{4a3}\ + \u{4a5}\ + \u{4a7}\ + \u{4a9}\ + \u{4ab}\ + \u{4ad}\ + \u{4af}\ + \u{4b1}\ + \u{4b3}\ + \u{4b5}\ + \u{4b7}\ + \u{4b9}\ + \u{4bb}\ + \u{4bd}\ + \u{4bf}\ + \u{4c2}\ + \u{4c4}\ + \u{4c6}\ + \u{4c8}\ + \u{4ca}\ + \u{4cc}\ + \u{4ce}\ + \u{4d1}\ + \u{4d3}\ + \u{4d5}\ + \u{4d7}\ + \u{4d9}\ + \u{4db}\ + \u{4dd}\ + \u{4df}\ + \u{4e1}\ + \u{4e3}\ + \u{4e5}\ + \u{4e7}\ + \u{4e9}\ + \u{4eb}\ + \u{4ed}\ + \u{4ef}\ + \u{4f1}\ + \u{4f3}\ + \u{4f5}\ + \u{4f7}\ + \u{4f9}\ + \u{4fb}\ + \u{4fd}\ + \u{4ff}\ + \u{501}\ + \u{503}\ + \u{505}\ + \u{507}\ + \u{509}\ + \u{50b}\ + \u{50d}\ + \u{50f}\ + \u{511}\ + \u{513}\ + \u{515}\ + \u{517}\ + \u{519}\ + \u{51b}\ + \u{51d}\ + \u{51f}\ + \u{521}\ + \u{523}\ + \u{525}\ + \u{527}\ + \u{529}\ + \u{52b}\ + \u{52d}\ + \u{52f}\ + \u{561}\ + \u{562}\ + \u{563}\ + \u{564}\ + \u{565}\ + \u{566}\ + \u{567}\ + \u{568}\ + \u{569}\ + \u{56a}\ + \u{56b}\ + \u{56c}\ + \u{56d}\ + \u{56e}\ + \u{56f}\ + \u{570}\ + \u{571}\ + \u{572}\ + \u{573}\ + \u{574}\ + \u{575}\ + \u{576}\ + \u{577}\ + \u{578}\ + \u{579}\ + \u{57a}\ + \u{57b}\ + \u{57c}\ + \u{57d}\ + \u{57e}\ + \u{57f}\ + \u{580}\ + \u{581}\ + \u{582}\ + \u{583}\ + \u{584}\ + \u{585}\ + \u{586}\ + \u{565}\ + \u{582}\ + \u{627}\ + \u{674}\ + \u{648}\ + \u{674}\ + \u{6c7}\ + \u{674}\ + \u{64a}\ + \u{674}\ + \u{915}\ + \u{93c}\ + \u{916}\ + \u{93c}\ + \u{917}\ + \u{93c}\ + \u{91c}\ + \u{93c}\ + \u{921}\ + \u{93c}\ + \u{922}\ + \u{93c}\ + \u{92b}\ + \u{93c}\ + \u{92f}\ + \u{93c}\ + \u{9a1}\ + \u{9bc}\ + \u{9a2}\ + \u{9bc}\ + \u{9af}\ + \u{9bc}\ + \u{a32}\ + \u{a3c}\ + \u{a38}\ + \u{a3c}\ + \u{a16}\ + \u{a3c}\ + \u{a17}\ + \u{a3c}\ + \u{a1c}\ + \u{a3c}\ + \u{a2b}\ + \u{a3c}\ + \u{b21}\ + \u{b3c}\ + \u{b22}\ + \u{b3c}\ + \u{e4d}\ + \u{e32}\ + \u{ecd}\ + \u{eb2}\ + \u{eab}\ + \u{e99}\ + \u{eab}\ + \u{ea1}\ + \u{f0b}\ + \u{f42}\ + \u{fb7}\ + \u{f4c}\ + \u{fb7}\ + \u{f51}\ + \u{fb7}\ + \u{f56}\ + \u{fb7}\ + \u{f5b}\ + \u{fb7}\ + \u{f40}\ + \u{fb5}\ + \u{f71}\ + \u{f72}\ + \u{f71}\ + \u{f74}\ + \u{fb2}\ + \u{f80}\ + \u{fb2}\ + \u{f71}\ + \u{f80}\ + \u{fb3}\ + \u{f80}\ + \u{fb3}\ + \u{f71}\ + \u{f80}\ + \u{f71}\ + \u{f80}\ + \u{f92}\ + \u{fb7}\ + \u{f9c}\ + \u{fb7}\ + \u{fa1}\ + \u{fb7}\ + \u{fa6}\ + \u{fb7}\ + \u{fab}\ + \u{fb7}\ + \u{f90}\ + \u{fb5}\ + \u{2d27}\ + \u{2d2d}\ + \u{10dc}\ + \u{13f0}\ + \u{13f1}\ + \u{13f2}\ + \u{13f3}\ + \u{13f4}\ + \u{13f5}\ + \u{a64b}\ + \u{250}\ + \u{251}\ + \u{1d02}\ + \u{25c}\ + \u{1d16}\ + \u{1d17}\ + \u{1d1d}\ + \u{1d25}\ + \u{252}\ + \u{255}\ + \u{25f}\ + \u{261}\ + \u{265}\ + \u{26a}\ + \u{1d7b}\ + \u{29d}\ + \u{26d}\ + \u{1d85}\ + \u{29f}\ + \u{271}\ + \u{270}\ + \u{273}\ + \u{274}\ + \u{278}\ + \u{282}\ + \u{1ab}\ + \u{1d1c}\ + \u{290}\ + \u{291}\ + \u{1e01}\ + \u{1e03}\ + \u{1e05}\ + \u{1e07}\ + \u{1e09}\ + \u{1e0b}\ + \u{1e0d}\ + \u{1e0f}\ + \u{1e11}\ + \u{1e13}\ + \u{1e15}\ + \u{1e17}\ + \u{1e19}\ + \u{1e1b}\ + \u{1e1d}\ + \u{1e1f}\ + \u{1e21}\ + \u{1e23}\ + \u{1e25}\ + \u{1e27}\ + \u{1e29}\ + \u{1e2b}\ + \u{1e2d}\ + \u{1e2f}\ + \u{1e31}\ + \u{1e33}\ + \u{1e35}\ + \u{1e37}\ + \u{1e39}\ + \u{1e3b}\ + \u{1e3d}\ + \u{1e3f}\ + \u{1e41}\ + \u{1e43}\ + \u{1e45}\ + \u{1e47}\ + \u{1e49}\ + \u{1e4b}\ + \u{1e4d}\ + \u{1e4f}\ + \u{1e51}\ + \u{1e53}\ + \u{1e55}\ + \u{1e57}\ + \u{1e59}\ + \u{1e5b}\ + \u{1e5d}\ + \u{1e5f}\ + \u{1e61}\ + \u{1e63}\ + \u{1e65}\ + \u{1e67}\ + \u{1e69}\ + \u{1e6b}\ + \u{1e6d}\ + \u{1e6f}\ + \u{1e71}\ + \u{1e73}\ + \u{1e75}\ + \u{1e77}\ + \u{1e79}\ + \u{1e7b}\ + \u{1e7d}\ + \u{1e7f}\ + \u{1e81}\ + \u{1e83}\ + \u{1e85}\ + \u{1e87}\ + \u{1e89}\ + \u{1e8b}\ + \u{1e8d}\ + \u{1e8f}\ + \u{1e91}\ + \u{1e93}\ + \u{1e95}\ + \u{61}\ + \u{2be}\ + \u{1ea1}\ + \u{1ea3}\ + \u{1ea5}\ + \u{1ea7}\ + \u{1ea9}\ + \u{1eab}\ + \u{1ead}\ + \u{1eaf}\ + \u{1eb1}\ + \u{1eb3}\ + \u{1eb5}\ + \u{1eb7}\ + \u{1eb9}\ + \u{1ebb}\ + \u{1ebd}\ + \u{1ebf}\ + \u{1ec1}\ + \u{1ec3}\ + \u{1ec5}\ + \u{1ec7}\ + \u{1ec9}\ + \u{1ecb}\ + \u{1ecd}\ + \u{1ecf}\ + \u{1ed1}\ + \u{1ed3}\ + \u{1ed5}\ + \u{1ed7}\ + \u{1ed9}\ + \u{1edb}\ + \u{1edd}\ + \u{1edf}\ + \u{1ee1}\ + \u{1ee3}\ + \u{1ee5}\ + \u{1ee7}\ + \u{1ee9}\ + \u{1eeb}\ + \u{1eed}\ + \u{1eef}\ + \u{1ef1}\ + \u{1ef3}\ + \u{1ef5}\ + \u{1ef7}\ + \u{1ef9}\ + \u{1efb}\ + \u{1efd}\ + \u{1eff}\ + \u{1f00}\ + \u{1f01}\ + \u{1f02}\ + \u{1f03}\ + \u{1f04}\ + \u{1f05}\ + \u{1f06}\ + \u{1f07}\ + \u{1f10}\ + \u{1f11}\ + \u{1f12}\ + \u{1f13}\ + \u{1f14}\ + \u{1f15}\ + \u{1f20}\ + \u{1f21}\ + \u{1f22}\ + \u{1f23}\ + \u{1f24}\ + \u{1f25}\ + \u{1f26}\ + \u{1f27}\ + \u{1f30}\ + \u{1f31}\ + \u{1f32}\ + \u{1f33}\ + \u{1f34}\ + \u{1f35}\ + \u{1f36}\ + \u{1f37}\ + \u{1f40}\ + \u{1f41}\ + \u{1f42}\ + \u{1f43}\ + \u{1f44}\ + \u{1f45}\ + \u{1f51}\ + \u{1f53}\ + \u{1f55}\ + \u{1f57}\ + \u{1f60}\ + \u{1f61}\ + \u{1f62}\ + \u{1f63}\ + \u{1f64}\ + \u{1f65}\ + \u{1f66}\ + \u{1f67}\ + \u{1f00}\ + \u{3b9}\ + \u{1f01}\ + \u{3b9}\ + \u{1f02}\ + \u{3b9}\ + \u{1f03}\ + \u{3b9}\ + \u{1f04}\ + \u{3b9}\ + \u{1f05}\ + \u{3b9}\ + \u{1f06}\ + \u{3b9}\ + \u{1f07}\ + \u{3b9}\ + \u{1f20}\ + \u{3b9}\ + \u{1f21}\ + \u{3b9}\ + \u{1f22}\ + \u{3b9}\ + \u{1f23}\ + \u{3b9}\ + \u{1f24}\ + \u{3b9}\ + \u{1f25}\ + \u{3b9}\ + \u{1f26}\ + \u{3b9}\ + \u{1f27}\ + \u{3b9}\ + \u{1f60}\ + \u{3b9}\ + \u{1f61}\ + \u{3b9}\ + \u{1f62}\ + \u{3b9}\ + \u{1f63}\ + \u{3b9}\ + \u{1f64}\ + \u{3b9}\ + \u{1f65}\ + \u{3b9}\ + \u{1f66}\ + \u{3b9}\ + \u{1f67}\ + \u{3b9}\ + \u{1f70}\ + \u{3b9}\ + \u{3b1}\ + \u{3b9}\ + \u{3ac}\ + \u{3b9}\ + \u{1fb6}\ + \u{3b9}\ + \u{1fb0}\ + \u{1fb1}\ + \u{1f70}\ + \u{20}\ + \u{313}\ + \u{20}\ + \u{342}\ + \u{20}\ + \u{308}\ + \u{342}\ + \u{1f74}\ + \u{3b9}\ + \u{3b7}\ + \u{3b9}\ + \u{3ae}\ + \u{3b9}\ + \u{1fc6}\ + \u{3b9}\ + \u{1f72}\ + \u{1f74}\ + \u{20}\ + \u{313}\ + \u{300}\ + \u{20}\ + \u{313}\ + \u{301}\ + \u{20}\ + \u{313}\ + \u{342}\ + \u{390}\ + \u{1fd0}\ + \u{1fd1}\ + \u{1f76}\ + \u{20}\ + \u{314}\ + \u{300}\ + \u{20}\ + \u{314}\ + \u{301}\ + \u{20}\ + \u{314}\ + \u{342}\ + \u{3b0}\ + \u{1fe0}\ + \u{1fe1}\ + \u{1f7a}\ + \u{1fe5}\ + \u{20}\ + \u{308}\ + \u{300}\ + \u{60}\ + \u{1f7c}\ + \u{3b9}\ + \u{3c9}\ + \u{3b9}\ + \u{3ce}\ + \u{3b9}\ + \u{1ff6}\ + \u{3b9}\ + \u{1f78}\ + \u{1f7c}\ + \u{20}\ + \u{314}\ + \u{2010}\ + \u{20}\ + \u{333}\ + \u{2032}\ + \u{2032}\ + \u{2032}\ + \u{2032}\ + \u{2032}\ + \u{2035}\ + \u{2035}\ + \u{2035}\ + \u{2035}\ + \u{2035}\ + \u{21}\ + \u{21}\ + \u{20}\ + \u{305}\ + \u{3f}\ + \u{3f}\ + \u{3f}\ + \u{21}\ + \u{21}\ + \u{3f}\ + \u{2032}\ + \u{2032}\ + \u{2032}\ + \u{2032}\ + \u{30}\ + \u{34}\ + \u{35}\ + \u{36}\ + \u{37}\ + \u{38}\ + \u{39}\ + \u{2b}\ + \u{2212}\ + \u{3d}\ + \u{28}\ + \u{29}\ + \u{72}\ + \u{73}\ + \u{61}\ + \u{2f}\ + \u{63}\ + \u{61}\ + \u{2f}\ + \u{73}\ + \u{b0}\ + \u{63}\ + \u{63}\ + \u{2f}\ + \u{6f}\ + \u{63}\ + \u{2f}\ + \u{75}\ + \u{b0}\ + \u{66}\ + \u{6e}\ + \u{6f}\ + \u{73}\ + \u{6d}\ + \u{74}\ + \u{65}\ + \u{6c}\ + \u{74}\ + \u{6d}\ + \u{5d0}\ + \u{5d1}\ + \u{5d2}\ + \u{5d3}\ + \u{66}\ + \u{61}\ + \u{78}\ + \u{2211}\ + \u{31}\ + \u{2044}\ + \u{37}\ + \u{31}\ + \u{2044}\ + \u{39}\ + \u{31}\ + \u{2044}\ + \u{31}\ + \u{30}\ + \u{31}\ + \u{2044}\ + \u{33}\ + \u{32}\ + \u{2044}\ + \u{33}\ + \u{31}\ + \u{2044}\ + \u{35}\ + \u{32}\ + \u{2044}\ + \u{35}\ + \u{33}\ + \u{2044}\ + \u{35}\ + \u{34}\ + \u{2044}\ + \u{35}\ + \u{31}\ + \u{2044}\ + \u{36}\ + \u{35}\ + \u{2044}\ + \u{36}\ + \u{31}\ + \u{2044}\ + \u{38}\ + \u{33}\ + \u{2044}\ + \u{38}\ + \u{35}\ + \u{2044}\ + \u{38}\ + \u{37}\ + \u{2044}\ + \u{38}\ + \u{31}\ + \u{2044}\ + \u{69}\ + \u{69}\ + \u{69}\ + \u{69}\ + \u{69}\ + \u{69}\ + \u{76}\ + \u{76}\ + \u{69}\ + \u{76}\ + \u{69}\ + \u{69}\ + \u{76}\ + \u{69}\ + \u{69}\ + \u{69}\ + \u{69}\ + \u{78}\ + \u{78}\ + \u{69}\ + \u{78}\ + \u{69}\ + \u{69}\ + \u{30}\ + \u{2044}\ + \u{33}\ + \u{222b}\ + \u{222b}\ + \u{222b}\ + \u{222b}\ + \u{222b}\ + \u{222e}\ + \u{222e}\ + \u{222e}\ + \u{222e}\ + \u{222e}\ + \u{3008}\ + \u{3009}\ + \u{31}\ + \u{30}\ + \u{31}\ + \u{31}\ + \u{31}\ + \u{32}\ + \u{31}\ + \u{33}\ + \u{31}\ + \u{34}\ + \u{31}\ + \u{35}\ + \u{31}\ + \u{36}\ + \u{31}\ + \u{37}\ + \u{31}\ + \u{38}\ + \u{31}\ + \u{39}\ + \u{32}\ + \u{30}\ + \u{28}\ + \u{31}\ + \u{29}\ + \u{28}\ + \u{32}\ + \u{29}\ + \u{28}\ + \u{33}\ + \u{29}\ + \u{28}\ + \u{34}\ + \u{29}\ + \u{28}\ + \u{35}\ + \u{29}\ + \u{28}\ + \u{36}\ + \u{29}\ + \u{28}\ + \u{37}\ + \u{29}\ + \u{28}\ + \u{38}\ + \u{29}\ + \u{28}\ + \u{39}\ + \u{29}\ + \u{28}\ + \u{31}\ + \u{30}\ + \u{29}\ + \u{28}\ + \u{31}\ + \u{31}\ + \u{29}\ + \u{28}\ + \u{31}\ + \u{32}\ + \u{29}\ + \u{28}\ + \u{31}\ + \u{33}\ + \u{29}\ + \u{28}\ + \u{31}\ + \u{34}\ + \u{29}\ + \u{28}\ + \u{31}\ + \u{35}\ + \u{29}\ + \u{28}\ + \u{31}\ + \u{36}\ + \u{29}\ + \u{28}\ + \u{31}\ + \u{37}\ + \u{29}\ + \u{28}\ + \u{31}\ + \u{38}\ + \u{29}\ + \u{28}\ + \u{31}\ + \u{39}\ + \u{29}\ + \u{28}\ + \u{32}\ + \u{30}\ + \u{29}\ + \u{28}\ + \u{61}\ + \u{29}\ + \u{28}\ + \u{62}\ + \u{29}\ + \u{28}\ + \u{63}\ + \u{29}\ + \u{28}\ + \u{64}\ + \u{29}\ + \u{28}\ + \u{65}\ + \u{29}\ + \u{28}\ + \u{66}\ + \u{29}\ + \u{28}\ + \u{67}\ + \u{29}\ + \u{28}\ + \u{68}\ + \u{29}\ + \u{28}\ + \u{69}\ + \u{29}\ + \u{28}\ + \u{6a}\ + \u{29}\ + \u{28}\ + \u{6b}\ + \u{29}\ + \u{28}\ + \u{6c}\ + \u{29}\ + \u{28}\ + \u{6d}\ + \u{29}\ + \u{28}\ + \u{6e}\ + \u{29}\ + \u{28}\ + \u{6f}\ + \u{29}\ + \u{28}\ + \u{70}\ + \u{29}\ + \u{28}\ + \u{71}\ + \u{29}\ + \u{28}\ + \u{72}\ + \u{29}\ + \u{28}\ + \u{73}\ + \u{29}\ + \u{28}\ + \u{74}\ + \u{29}\ + \u{28}\ + \u{75}\ + \u{29}\ + \u{28}\ + \u{76}\ + \u{29}\ + \u{28}\ + \u{77}\ + \u{29}\ + \u{28}\ + \u{78}\ + \u{29}\ + \u{28}\ + \u{79}\ + \u{29}\ + \u{28}\ + \u{7a}\ + \u{29}\ + \u{222b}\ + \u{222b}\ + \u{222b}\ + \u{222b}\ + \u{3a}\ + \u{3a}\ + \u{3d}\ + \u{3d}\ + \u{3d}\ + \u{3d}\ + \u{3d}\ + \u{3d}\ + \u{2add}\ + \u{338}\ + \u{2c30}\ + \u{2c31}\ + \u{2c32}\ + \u{2c33}\ + \u{2c34}\ + \u{2c35}\ + \u{2c36}\ + \u{2c37}\ + \u{2c38}\ + \u{2c39}\ + \u{2c3a}\ + \u{2c3b}\ + \u{2c3c}\ + \u{2c3d}\ + \u{2c3e}\ + \u{2c3f}\ + \u{2c40}\ + \u{2c41}\ + \u{2c42}\ + \u{2c43}\ + \u{2c44}\ + \u{2c45}\ + \u{2c46}\ + \u{2c47}\ + \u{2c48}\ + \u{2c49}\ + \u{2c4a}\ + \u{2c4b}\ + \u{2c4c}\ + \u{2c4d}\ + \u{2c4e}\ + \u{2c4f}\ + \u{2c50}\ + \u{2c51}\ + \u{2c52}\ + \u{2c53}\ + \u{2c54}\ + \u{2c55}\ + \u{2c56}\ + \u{2c57}\ + \u{2c58}\ + \u{2c59}\ + \u{2c5a}\ + \u{2c5b}\ + \u{2c5c}\ + \u{2c5d}\ + \u{2c5e}\ + \u{2c61}\ + \u{26b}\ + \u{1d7d}\ + \u{27d}\ + \u{2c68}\ + \u{2c6a}\ + \u{2c6c}\ + \u{2c73}\ + \u{2c76}\ + \u{23f}\ + \u{240}\ + \u{2c81}\ + \u{2c83}\ + \u{2c85}\ + \u{2c87}\ + \u{2c89}\ + \u{2c8b}\ + \u{2c8d}\ + \u{2c8f}\ + \u{2c91}\ + \u{2c93}\ + \u{2c95}\ + \u{2c97}\ + \u{2c99}\ + \u{2c9b}\ + \u{2c9d}\ + \u{2c9f}\ + \u{2ca1}\ + \u{2ca3}\ + \u{2ca5}\ + \u{2ca7}\ + \u{2ca9}\ + \u{2cab}\ + \u{2cad}\ + \u{2caf}\ + \u{2cb1}\ + \u{2cb3}\ + \u{2cb5}\ + \u{2cb7}\ + \u{2cb9}\ + \u{2cbb}\ + \u{2cbd}\ + \u{2cbf}\ + \u{2cc1}\ + \u{2cc3}\ + \u{2cc5}\ + \u{2cc7}\ + \u{2cc9}\ + \u{2ccb}\ + \u{2ccd}\ + \u{2ccf}\ + \u{2cd1}\ + \u{2cd3}\ + \u{2cd5}\ + \u{2cd7}\ + \u{2cd9}\ + \u{2cdb}\ + \u{2cdd}\ + \u{2cdf}\ + \u{2ce1}\ + \u{2ce3}\ + \u{2cec}\ + \u{2cee}\ + \u{2cf3}\ + \u{2d61}\ + \u{6bcd}\ + \u{9f9f}\ + \u{4e00}\ + \u{4e28}\ + \u{4e36}\ + \u{4e3f}\ + \u{4e59}\ + \u{4e85}\ + \u{4e8c}\ + \u{4ea0}\ + \u{4eba}\ + \u{513f}\ + \u{5165}\ + \u{516b}\ + \u{5182}\ + \u{5196}\ + \u{51ab}\ + \u{51e0}\ + \u{51f5}\ + \u{5200}\ + \u{529b}\ + \u{52f9}\ + \u{5315}\ + \u{531a}\ + \u{5338}\ + \u{5341}\ + \u{535c}\ + \u{5369}\ + \u{5382}\ + \u{53b6}\ + \u{53c8}\ + \u{53e3}\ + \u{56d7}\ + \u{571f}\ + \u{58eb}\ + \u{5902}\ + \u{590a}\ + \u{5915}\ + \u{5927}\ + \u{5973}\ + \u{5b50}\ + \u{5b80}\ + \u{5bf8}\ + \u{5c0f}\ + \u{5c22}\ + \u{5c38}\ + \u{5c6e}\ + \u{5c71}\ + \u{5ddb}\ + \u{5de5}\ + \u{5df1}\ + \u{5dfe}\ + \u{5e72}\ + \u{5e7a}\ + \u{5e7f}\ + \u{5ef4}\ + \u{5efe}\ + \u{5f0b}\ + \u{5f13}\ + \u{5f50}\ + \u{5f61}\ + \u{5f73}\ + \u{5fc3}\ + \u{6208}\ + \u{6236}\ + \u{624b}\ + \u{652f}\ + \u{6534}\ + \u{6587}\ + \u{6597}\ + \u{65a4}\ + \u{65b9}\ + \u{65e0}\ + \u{65e5}\ + \u{66f0}\ + \u{6708}\ + \u{6728}\ + \u{6b20}\ + \u{6b62}\ + \u{6b79}\ + \u{6bb3}\ + \u{6bcb}\ + \u{6bd4}\ + \u{6bdb}\ + \u{6c0f}\ + \u{6c14}\ + \u{6c34}\ + \u{706b}\ + \u{722a}\ + \u{7236}\ + \u{723b}\ + \u{723f}\ + \u{7247}\ + \u{7259}\ + \u{725b}\ + \u{72ac}\ + \u{7384}\ + \u{7389}\ + \u{74dc}\ + \u{74e6}\ + \u{7518}\ + \u{751f}\ + \u{7528}\ + \u{7530}\ + \u{758b}\ + \u{7592}\ + \u{7676}\ + \u{767d}\ + \u{76ae}\ + \u{76bf}\ + \u{76ee}\ + \u{77db}\ + \u{77e2}\ + \u{77f3}\ + \u{793a}\ + \u{79b8}\ + \u{79be}\ + \u{7a74}\ + \u{7acb}\ + \u{7af9}\ + \u{7c73}\ + \u{7cf8}\ + \u{7f36}\ + \u{7f51}\ + \u{7f8a}\ + \u{7fbd}\ + \u{8001}\ + \u{800c}\ + \u{8012}\ + \u{8033}\ + \u{807f}\ + \u{8089}\ + \u{81e3}\ + \u{81ea}\ + \u{81f3}\ + \u{81fc}\ + \u{820c}\ + \u{821b}\ + \u{821f}\ + \u{826e}\ + \u{8272}\ + \u{8278}\ + \u{864d}\ + \u{866b}\ + \u{8840}\ + \u{884c}\ + \u{8863}\ + \u{897e}\ + \u{898b}\ + \u{89d2}\ + \u{8a00}\ + \u{8c37}\ + \u{8c46}\ + \u{8c55}\ + \u{8c78}\ + \u{8c9d}\ + \u{8d64}\ + \u{8d70}\ + \u{8db3}\ + \u{8eab}\ + \u{8eca}\ + \u{8f9b}\ + \u{8fb0}\ + \u{8fb5}\ + \u{9091}\ + \u{9149}\ + \u{91c6}\ + \u{91cc}\ + \u{91d1}\ + \u{9577}\ + \u{9580}\ + \u{961c}\ + \u{96b6}\ + \u{96b9}\ + \u{96e8}\ + \u{9751}\ + \u{975e}\ + \u{9762}\ + \u{9769}\ + \u{97cb}\ + \u{97ed}\ + \u{97f3}\ + \u{9801}\ + \u{98a8}\ + \u{98db}\ + \u{98df}\ + \u{9996}\ + \u{9999}\ + \u{99ac}\ + \u{9aa8}\ + \u{9ad8}\ + \u{9adf}\ + \u{9b25}\ + \u{9b2f}\ + \u{9b32}\ + \u{9b3c}\ + \u{9b5a}\ + \u{9ce5}\ + \u{9e75}\ + \u{9e7f}\ + \u{9ea5}\ + \u{9ebb}\ + \u{9ec3}\ + \u{9ecd}\ + \u{9ed1}\ + \u{9ef9}\ + \u{9efd}\ + \u{9f0e}\ + \u{9f13}\ + \u{9f20}\ + \u{9f3b}\ + \u{9f4a}\ + \u{9f52}\ + \u{9f8d}\ + \u{9f9c}\ + \u{9fa0}\ + \u{2e}\ + \u{3012}\ + \u{5344}\ + \u{5345}\ + \u{20}\ + \u{3099}\ + \u{20}\ + \u{309a}\ + \u{3088}\ + \u{308a}\ + \u{30b3}\ + \u{30c8}\ + \u{1100}\ + \u{1101}\ + \u{11aa}\ + \u{1102}\ + \u{11ac}\ + \u{11ad}\ + \u{1103}\ + \u{1104}\ + \u{1105}\ + \u{11b0}\ + \u{11b1}\ + \u{11b2}\ + \u{11b3}\ + \u{11b4}\ + \u{11b5}\ + \u{111a}\ + \u{1106}\ + \u{1107}\ + \u{1108}\ + \u{1121}\ + \u{1109}\ + \u{110a}\ + \u{110b}\ + \u{110c}\ + \u{110d}\ + \u{110e}\ + \u{110f}\ + \u{1110}\ + \u{1111}\ + \u{1112}\ + \u{1161}\ + \u{1162}\ + \u{1163}\ + \u{1164}\ + \u{1165}\ + \u{1166}\ + \u{1167}\ + \u{1168}\ + \u{1169}\ + \u{116a}\ + \u{116b}\ + \u{116c}\ + \u{116d}\ + \u{116e}\ + \u{116f}\ + \u{1170}\ + \u{1171}\ + \u{1172}\ + \u{1173}\ + \u{1174}\ + \u{1175}\ + \u{1114}\ + \u{1115}\ + \u{11c7}\ + \u{11c8}\ + \u{11cc}\ + \u{11ce}\ + \u{11d3}\ + \u{11d7}\ + \u{11d9}\ + \u{111c}\ + \u{11dd}\ + \u{11df}\ + \u{111d}\ + \u{111e}\ + \u{1120}\ + \u{1122}\ + \u{1123}\ + \u{1127}\ + \u{1129}\ + \u{112b}\ + \u{112c}\ + \u{112d}\ + \u{112e}\ + \u{112f}\ + \u{1132}\ + \u{1136}\ + \u{1140}\ + \u{1147}\ + \u{114c}\ + \u{11f1}\ + \u{11f2}\ + \u{1157}\ + \u{1158}\ + \u{1159}\ + \u{1184}\ + \u{1185}\ + \u{1188}\ + \u{1191}\ + \u{1192}\ + \u{1194}\ + \u{119e}\ + \u{11a1}\ + \u{4e09}\ + \u{56db}\ + \u{4e0a}\ + \u{4e2d}\ + \u{4e0b}\ + \u{7532}\ + \u{4e19}\ + \u{4e01}\ + \u{5929}\ + \u{5730}\ + \u{28}\ + \u{1100}\ + \u{29}\ + \u{28}\ + \u{1102}\ + \u{29}\ + \u{28}\ + \u{1103}\ + \u{29}\ + \u{28}\ + \u{1105}\ + \u{29}\ + \u{28}\ + \u{1106}\ + \u{29}\ + \u{28}\ + \u{1107}\ + \u{29}\ + \u{28}\ + \u{1109}\ + \u{29}\ + \u{28}\ + \u{110b}\ + \u{29}\ + \u{28}\ + \u{110c}\ + \u{29}\ + \u{28}\ + \u{110e}\ + \u{29}\ + \u{28}\ + \u{110f}\ + \u{29}\ + \u{28}\ + \u{1110}\ + \u{29}\ + \u{28}\ + \u{1111}\ + \u{29}\ + \u{28}\ + \u{1112}\ + \u{29}\ + \u{28}\ + \u{ac00}\ + \u{29}\ + \u{28}\ + \u{b098}\ + \u{29}\ + \u{28}\ + \u{b2e4}\ + \u{29}\ + \u{28}\ + \u{b77c}\ + \u{29}\ + \u{28}\ + \u{b9c8}\ + \u{29}\ + \u{28}\ + \u{bc14}\ + \u{29}\ + \u{28}\ + \u{c0ac}\ + \u{29}\ + \u{28}\ + \u{c544}\ + \u{29}\ + \u{28}\ + \u{c790}\ + \u{29}\ + \u{28}\ + \u{cc28}\ + \u{29}\ + \u{28}\ + \u{ce74}\ + \u{29}\ + \u{28}\ + \u{d0c0}\ + \u{29}\ + \u{28}\ + \u{d30c}\ + \u{29}\ + \u{28}\ + \u{d558}\ + \u{29}\ + \u{28}\ + \u{c8fc}\ + \u{29}\ + \u{28}\ + \u{c624}\ + \u{c804}\ + \u{29}\ + \u{28}\ + \u{c624}\ + \u{d6c4}\ + \u{29}\ + \u{28}\ + \u{4e00}\ + \u{29}\ + \u{28}\ + \u{4e8c}\ + \u{29}\ + \u{28}\ + \u{4e09}\ + \u{29}\ + \u{28}\ + \u{56db}\ + \u{29}\ + \u{28}\ + \u{4e94}\ + \u{29}\ + \u{28}\ + \u{516d}\ + \u{29}\ + \u{28}\ + \u{4e03}\ + \u{29}\ + \u{28}\ + \u{516b}\ + \u{29}\ + \u{28}\ + \u{4e5d}\ + \u{29}\ + \u{28}\ + \u{5341}\ + \u{29}\ + \u{28}\ + \u{6708}\ + \u{29}\ + \u{28}\ + \u{706b}\ + \u{29}\ + \u{28}\ + \u{6c34}\ + \u{29}\ + \u{28}\ + \u{6728}\ + \u{29}\ + \u{28}\ + \u{91d1}\ + \u{29}\ + \u{28}\ + \u{571f}\ + \u{29}\ + \u{28}\ + \u{65e5}\ + \u{29}\ + \u{28}\ + \u{682a}\ + \u{29}\ + \u{28}\ + \u{6709}\ + \u{29}\ + \u{28}\ + \u{793e}\ + \u{29}\ + \u{28}\ + \u{540d}\ + \u{29}\ + \u{28}\ + \u{7279}\ + \u{29}\ + \u{28}\ + \u{8ca1}\ + \u{29}\ + \u{28}\ + \u{795d}\ + \u{29}\ + \u{28}\ + \u{52b4}\ + \u{29}\ + \u{28}\ + \u{4ee3}\ + \u{29}\ + \u{28}\ + \u{547c}\ + \u{29}\ + \u{28}\ + \u{5b66}\ + \u{29}\ + \u{28}\ + \u{76e3}\ + \u{29}\ + \u{28}\ + \u{4f01}\ + \u{29}\ + \u{28}\ + \u{8cc7}\ + \u{29}\ + \u{28}\ + \u{5354}\ + \u{29}\ + \u{28}\ + \u{796d}\ + \u{29}\ + \u{28}\ + \u{4f11}\ + \u{29}\ + \u{28}\ + \u{81ea}\ + \u{29}\ + \u{28}\ + \u{81f3}\ + \u{29}\ + \u{554f}\ + \u{5e7c}\ + \u{7b8f}\ + \u{70}\ + \u{74}\ + \u{65}\ + \u{32}\ + \u{31}\ + \u{32}\ + \u{32}\ + \u{32}\ + \u{33}\ + \u{32}\ + \u{34}\ + \u{32}\ + \u{35}\ + \u{32}\ + \u{36}\ + \u{32}\ + \u{37}\ + \u{32}\ + \u{38}\ + \u{32}\ + \u{39}\ + \u{33}\ + \u{30}\ + \u{33}\ + \u{31}\ + \u{33}\ + \u{32}\ + \u{33}\ + \u{33}\ + \u{33}\ + \u{34}\ + \u{33}\ + \u{35}\ + \u{ac00}\ + \u{b098}\ + \u{b2e4}\ + \u{b77c}\ + \u{b9c8}\ + \u{bc14}\ + \u{c0ac}\ + \u{c544}\ + \u{c790}\ + \u{cc28}\ + \u{ce74}\ + \u{d0c0}\ + \u{d30c}\ + \u{d558}\ + \u{cc38}\ + \u{ace0}\ + \u{c8fc}\ + \u{c758}\ + \u{c6b0}\ + \u{4e94}\ + \u{516d}\ + \u{4e03}\ + \u{4e5d}\ + \u{682a}\ + \u{6709}\ + \u{793e}\ + \u{540d}\ + \u{7279}\ + \u{8ca1}\ + \u{795d}\ + \u{52b4}\ + \u{79d8}\ + \u{7537}\ + \u{9069}\ + \u{512a}\ + \u{5370}\ + \u{6ce8}\ + \u{9805}\ + \u{4f11}\ + \u{5199}\ + \u{6b63}\ + \u{5de6}\ + \u{53f3}\ + \u{533b}\ + \u{5b97}\ + \u{5b66}\ + \u{76e3}\ + \u{4f01}\ + \u{8cc7}\ + \u{5354}\ + \u{591c}\ + \u{33}\ + \u{36}\ + \u{33}\ + \u{37}\ + \u{33}\ + \u{38}\ + \u{33}\ + \u{39}\ + \u{34}\ + \u{30}\ + \u{34}\ + \u{31}\ + \u{34}\ + \u{32}\ + \u{34}\ + \u{33}\ + \u{34}\ + \u{34}\ + \u{34}\ + \u{35}\ + \u{34}\ + \u{36}\ + \u{34}\ + \u{37}\ + \u{34}\ + \u{38}\ + \u{34}\ + \u{39}\ + \u{35}\ + \u{30}\ + \u{31}\ + \u{6708}\ + \u{32}\ + \u{6708}\ + \u{33}\ + \u{6708}\ + \u{34}\ + \u{6708}\ + \u{35}\ + \u{6708}\ + \u{36}\ + \u{6708}\ + \u{37}\ + \u{6708}\ + \u{38}\ + \u{6708}\ + \u{39}\ + \u{6708}\ + \u{31}\ + \u{30}\ + \u{6708}\ + \u{31}\ + \u{31}\ + \u{6708}\ + \u{31}\ + \u{32}\ + \u{6708}\ + \u{68}\ + \u{67}\ + \u{65}\ + \u{72}\ + \u{67}\ + \u{65}\ + \u{76}\ + \u{6c}\ + \u{74}\ + \u{64}\ + \u{30a2}\ + \u{30a4}\ + \u{30a6}\ + \u{30a8}\ + \u{30aa}\ + \u{30ab}\ + \u{30ad}\ + \u{30af}\ + \u{30b1}\ + \u{30b3}\ + \u{30b5}\ + \u{30b7}\ + \u{30b9}\ + \u{30bb}\ + \u{30bd}\ + \u{30bf}\ + \u{30c1}\ + \u{30c4}\ + \u{30c6}\ + \u{30c8}\ + \u{30ca}\ + \u{30cb}\ + \u{30cc}\ + \u{30cd}\ + \u{30ce}\ + \u{30cf}\ + \u{30d2}\ + \u{30d5}\ + \u{30d8}\ + \u{30db}\ + \u{30de}\ + \u{30df}\ + \u{30e0}\ + \u{30e1}\ + \u{30e2}\ + \u{30e4}\ + \u{30e6}\ + \u{30e8}\ + \u{30e9}\ + \u{30ea}\ + \u{30eb}\ + \u{30ec}\ + \u{30ed}\ + \u{30ef}\ + \u{30f0}\ + \u{30f1}\ + \u{30f2}\ + \u{30a2}\ + \u{30d1}\ + \u{30fc}\ + \u{30c8}\ + \u{30a2}\ + \u{30eb}\ + \u{30d5}\ + \u{30a1}\ + \u{30a2}\ + \u{30f3}\ + \u{30da}\ + \u{30a2}\ + \u{30a2}\ + \u{30fc}\ + \u{30eb}\ + \u{30a4}\ + \u{30cb}\ + \u{30f3}\ + \u{30b0}\ + \u{30a4}\ + \u{30f3}\ + \u{30c1}\ + \u{30a6}\ + \u{30a9}\ + \u{30f3}\ + \u{30a8}\ + \u{30b9}\ + \u{30af}\ + \u{30fc}\ + \u{30c9}\ + \u{30a8}\ + \u{30fc}\ + \u{30ab}\ + \u{30fc}\ + \u{30aa}\ + \u{30f3}\ + \u{30b9}\ + \u{30aa}\ + \u{30fc}\ + \u{30e0}\ + \u{30ab}\ + \u{30a4}\ + \u{30ea}\ + \u{30ab}\ + \u{30e9}\ + \u{30c3}\ + \u{30c8}\ + \u{30ab}\ + \u{30ed}\ + \u{30ea}\ + \u{30fc}\ + \u{30ac}\ + \u{30ed}\ + \u{30f3}\ + \u{30ac}\ + \u{30f3}\ + \u{30de}\ + \u{30ae}\ + \u{30ac}\ + \u{30ae}\ + \u{30cb}\ + \u{30fc}\ + \u{30ad}\ + \u{30e5}\ + \u{30ea}\ + \u{30fc}\ + \u{30ae}\ + \u{30eb}\ + \u{30c0}\ + \u{30fc}\ + \u{30ad}\ + \u{30ed}\ + \u{30ad}\ + \u{30ed}\ + \u{30b0}\ + \u{30e9}\ + \u{30e0}\ + \u{30ad}\ + \u{30ed}\ + \u{30e1}\ + \u{30fc}\ + \u{30c8}\ + \u{30eb}\ + \u{30ad}\ + \u{30ed}\ + \u{30ef}\ + \u{30c3}\ + \u{30c8}\ + \u{30b0}\ + \u{30e9}\ + \u{30e0}\ + \u{30b0}\ + \u{30e9}\ + \u{30e0}\ + \u{30c8}\ + \u{30f3}\ + \u{30af}\ + \u{30eb}\ + \u{30bc}\ + \u{30a4}\ + \u{30ed}\ + \u{30af}\ + \u{30ed}\ + \u{30fc}\ + \u{30cd}\ + \u{30b1}\ + \u{30fc}\ + \u{30b9}\ + \u{30b3}\ + \u{30eb}\ + \u{30ca}\ + \u{30b3}\ + \u{30fc}\ + \u{30dd}\ + \u{30b5}\ + \u{30a4}\ + \u{30af}\ + \u{30eb}\ + \u{30b5}\ + \u{30f3}\ + \u{30c1}\ + \u{30fc}\ + \u{30e0}\ + \u{30b7}\ + \u{30ea}\ + \u{30f3}\ + \u{30b0}\ + \u{30bb}\ + \u{30f3}\ + \u{30c1}\ + \u{30bb}\ + \u{30f3}\ + \u{30c8}\ + \u{30c0}\ + \u{30fc}\ + \u{30b9}\ + \u{30c7}\ + \u{30b7}\ + \u{30c9}\ + \u{30eb}\ + \u{30c8}\ + \u{30f3}\ + \u{30ca}\ + \u{30ce}\ + \u{30ce}\ + \u{30c3}\ + \u{30c8}\ + \u{30cf}\ + \u{30a4}\ + \u{30c4}\ + \u{30d1}\ + \u{30fc}\ + \u{30bb}\ + \u{30f3}\ + \u{30c8}\ + \u{30d1}\ + \u{30fc}\ + \u{30c4}\ + \u{30d0}\ + \u{30fc}\ + \u{30ec}\ + \u{30eb}\ + \u{30d4}\ + \u{30a2}\ + \u{30b9}\ + \u{30c8}\ + \u{30eb}\ + \u{30d4}\ + \u{30af}\ + \u{30eb}\ + \u{30d4}\ + \u{30b3}\ + \u{30d3}\ + \u{30eb}\ + \u{30d5}\ + \u{30a1}\ + \u{30e9}\ + \u{30c3}\ + \u{30c9}\ + \u{30d5}\ + \u{30a3}\ + \u{30fc}\ + \u{30c8}\ + \u{30d6}\ + \u{30c3}\ + \u{30b7}\ + \u{30a7}\ + \u{30eb}\ + \u{30d5}\ + \u{30e9}\ + \u{30f3}\ + \u{30d8}\ + \u{30af}\ + \u{30bf}\ + \u{30fc}\ + \u{30eb}\ + \u{30da}\ + \u{30bd}\ + \u{30da}\ + \u{30cb}\ + \u{30d2}\ + \u{30d8}\ + \u{30eb}\ + \u{30c4}\ + \u{30da}\ + \u{30f3}\ + \u{30b9}\ + \u{30da}\ + \u{30fc}\ + \u{30b8}\ + \u{30d9}\ + \u{30fc}\ + \u{30bf}\ + \u{30dd}\ + \u{30a4}\ + \u{30f3}\ + \u{30c8}\ + \u{30dc}\ + \u{30eb}\ + \u{30c8}\ + \u{30db}\ + \u{30f3}\ + \u{30dd}\ + \u{30f3}\ + \u{30c9}\ + \u{30db}\ + \u{30fc}\ + \u{30eb}\ + \u{30db}\ + \u{30fc}\ + \u{30f3}\ + \u{30de}\ + \u{30a4}\ + \u{30af}\ + \u{30ed}\ + \u{30de}\ + \u{30a4}\ + \u{30eb}\ + \u{30de}\ + \u{30c3}\ + \u{30cf}\ + \u{30de}\ + \u{30eb}\ + \u{30af}\ + \u{30de}\ + \u{30f3}\ + \u{30b7}\ + \u{30e7}\ + \u{30f3}\ + \u{30df}\ + \u{30af}\ + \u{30ed}\ + \u{30f3}\ + \u{30df}\ + \u{30ea}\ + \u{30df}\ + \u{30ea}\ + \u{30d0}\ + \u{30fc}\ + \u{30eb}\ + \u{30e1}\ + \u{30ac}\ + \u{30e1}\ + \u{30ac}\ + \u{30c8}\ + \u{30f3}\ + \u{30e1}\ + \u{30fc}\ + \u{30c8}\ + \u{30eb}\ + \u{30e4}\ + \u{30fc}\ + \u{30c9}\ + \u{30e4}\ + \u{30fc}\ + \u{30eb}\ + \u{30e6}\ + \u{30a2}\ + \u{30f3}\ + \u{30ea}\ + \u{30c3}\ + \u{30c8}\ + \u{30eb}\ + \u{30ea}\ + \u{30e9}\ + \u{30eb}\ + \u{30d4}\ + \u{30fc}\ + \u{30eb}\ + \u{30fc}\ + \u{30d6}\ + \u{30eb}\ + \u{30ec}\ + \u{30e0}\ + \u{30ec}\ + \u{30f3}\ + \u{30c8}\ + \u{30b2}\ + \u{30f3}\ + \u{30ef}\ + \u{30c3}\ + \u{30c8}\ + \u{30}\ + \u{70b9}\ + \u{31}\ + \u{70b9}\ + \u{32}\ + \u{70b9}\ + \u{33}\ + \u{70b9}\ + \u{34}\ + \u{70b9}\ + \u{35}\ + \u{70b9}\ + \u{36}\ + \u{70b9}\ + \u{37}\ + \u{70b9}\ + \u{38}\ + \u{70b9}\ + \u{39}\ + \u{70b9}\ + \u{31}\ + \u{30}\ + \u{70b9}\ + \u{31}\ + \u{31}\ + \u{70b9}\ + \u{31}\ + \u{32}\ + \u{70b9}\ + \u{31}\ + \u{33}\ + \u{70b9}\ + \u{31}\ + \u{34}\ + \u{70b9}\ + \u{31}\ + \u{35}\ + \u{70b9}\ + \u{31}\ + \u{36}\ + \u{70b9}\ + \u{31}\ + \u{37}\ + \u{70b9}\ + \u{31}\ + \u{38}\ + \u{70b9}\ + \u{31}\ + \u{39}\ + \u{70b9}\ + \u{32}\ + \u{30}\ + \u{70b9}\ + \u{32}\ + \u{31}\ + \u{70b9}\ + \u{32}\ + \u{32}\ + \u{70b9}\ + \u{32}\ + \u{33}\ + \u{70b9}\ + \u{32}\ + \u{34}\ + \u{70b9}\ + \u{68}\ + \u{70}\ + \u{61}\ + \u{64}\ + \u{61}\ + \u{61}\ + \u{75}\ + \u{62}\ + \u{61}\ + \u{72}\ + \u{6f}\ + \u{76}\ + \u{70}\ + \u{63}\ + \u{64}\ + \u{6d}\ + \u{64}\ + \u{6d}\ + \u{32}\ + \u{64}\ + \u{6d}\ + \u{33}\ + \u{69}\ + \u{75}\ + \u{5e73}\ + \u{6210}\ + \u{662d}\ + \u{548c}\ + \u{5927}\ + \u{6b63}\ + \u{660e}\ + \u{6cbb}\ + \u{682a}\ + \u{5f0f}\ + \u{4f1a}\ + \u{793e}\ + \u{70}\ + \u{61}\ + \u{6e}\ + \u{61}\ + \u{3bc}\ + \u{61}\ + \u{6d}\ + \u{61}\ + \u{6b}\ + \u{61}\ + \u{6b}\ + \u{62}\ + \u{6d}\ + \u{62}\ + \u{67}\ + \u{62}\ + \u{63}\ + \u{61}\ + \u{6c}\ + \u{6b}\ + \u{63}\ + \u{61}\ + \u{6c}\ + \u{70}\ + \u{66}\ + \u{6e}\ + \u{66}\ + \u{3bc}\ + \u{66}\ + \u{3bc}\ + \u{67}\ + \u{6d}\ + \u{67}\ + \u{6b}\ + \u{67}\ + \u{68}\ + \u{7a}\ + \u{6b}\ + \u{68}\ + \u{7a}\ + \u{6d}\ + \u{68}\ + \u{7a}\ + \u{67}\ + \u{68}\ + \u{7a}\ + \u{74}\ + \u{68}\ + \u{7a}\ + \u{3bc}\ + \u{6c}\ + \u{6d}\ + \u{6c}\ + \u{64}\ + \u{6c}\ + \u{6b}\ + \u{6c}\ + \u{66}\ + \u{6d}\ + \u{6e}\ + \u{6d}\ + \u{3bc}\ + \u{6d}\ + \u{6d}\ + \u{6d}\ + \u{63}\ + \u{6d}\ + \u{6b}\ + \u{6d}\ + \u{6d}\ + \u{6d}\ + \u{32}\ + \u{63}\ + \u{6d}\ + \u{32}\ + \u{6d}\ + \u{32}\ + \u{6b}\ + \u{6d}\ + \u{32}\ + \u{6d}\ + \u{6d}\ + \u{33}\ + \u{63}\ + \u{6d}\ + \u{33}\ + \u{6d}\ + \u{33}\ + \u{6b}\ + \u{6d}\ + \u{33}\ + \u{6d}\ + \u{2215}\ + \u{73}\ + \u{6d}\ + \u{2215}\ + \u{73}\ + \u{32}\ + \u{6b}\ + \u{70}\ + \u{61}\ + \u{6d}\ + \u{70}\ + \u{61}\ + \u{67}\ + \u{70}\ + \u{61}\ + \u{72}\ + \u{61}\ + \u{64}\ + \u{72}\ + \u{61}\ + \u{64}\ + \u{2215}\ + \u{73}\ + \u{72}\ + \u{61}\ + \u{64}\ + \u{2215}\ + \u{73}\ + \u{32}\ + \u{70}\ + \u{73}\ + \u{6e}\ + \u{73}\ + \u{3bc}\ + \u{73}\ + \u{6d}\ + \u{73}\ + \u{70}\ + \u{76}\ + \u{6e}\ + \u{76}\ + \u{3bc}\ + \u{76}\ + \u{6d}\ + \u{76}\ + \u{6b}\ + \u{76}\ + \u{70}\ + \u{77}\ + \u{6e}\ + \u{77}\ + \u{3bc}\ + \u{77}\ + \u{6d}\ + \u{77}\ + \u{6b}\ + \u{77}\ + \u{6b}\ + \u{3c9}\ + \u{6d}\ + \u{3c9}\ + \u{62}\ + \u{71}\ + \u{63}\ + \u{63}\ + \u{63}\ + \u{64}\ + \u{63}\ + \u{2215}\ + \u{6b}\ + \u{67}\ + \u{64}\ + \u{62}\ + \u{67}\ + \u{79}\ + \u{68}\ + \u{61}\ + \u{68}\ + \u{70}\ + \u{69}\ + \u{6e}\ + \u{6b}\ + \u{6b}\ + \u{6b}\ + \u{74}\ + \u{6c}\ + \u{6d}\ + \u{6c}\ + \u{6e}\ + \u{6c}\ + \u{6f}\ + \u{67}\ + \u{6c}\ + \u{78}\ + \u{6d}\ + \u{69}\ + \u{6c}\ + \u{6d}\ + \u{6f}\ + \u{6c}\ + \u{70}\ + \u{68}\ + \u{70}\ + \u{70}\ + \u{6d}\ + \u{70}\ + \u{72}\ + \u{73}\ + \u{72}\ + \u{73}\ + \u{76}\ + \u{77}\ + \u{62}\ + \u{76}\ + \u{2215}\ + \u{6d}\ + \u{61}\ + \u{2215}\ + \u{6d}\ + \u{31}\ + \u{65e5}\ + \u{32}\ + \u{65e5}\ + \u{33}\ + \u{65e5}\ + \u{34}\ + \u{65e5}\ + \u{35}\ + \u{65e5}\ + \u{36}\ + \u{65e5}\ + \u{37}\ + \u{65e5}\ + \u{38}\ + \u{65e5}\ + \u{39}\ + \u{65e5}\ + \u{31}\ + \u{30}\ + \u{65e5}\ + \u{31}\ + \u{31}\ + \u{65e5}\ + \u{31}\ + \u{32}\ + \u{65e5}\ + \u{31}\ + \u{33}\ + \u{65e5}\ + \u{31}\ + \u{34}\ + \u{65e5}\ + \u{31}\ + \u{35}\ + \u{65e5}\ + \u{31}\ + \u{36}\ + \u{65e5}\ + \u{31}\ + \u{37}\ + \u{65e5}\ + \u{31}\ + \u{38}\ + \u{65e5}\ + \u{31}\ + \u{39}\ + \u{65e5}\ + \u{32}\ + \u{30}\ + \u{65e5}\ + \u{32}\ + \u{31}\ + \u{65e5}\ + \u{32}\ + \u{32}\ + \u{65e5}\ + \u{32}\ + \u{33}\ + \u{65e5}\ + \u{32}\ + \u{34}\ + \u{65e5}\ + \u{32}\ + \u{35}\ + \u{65e5}\ + \u{32}\ + \u{36}\ + \u{65e5}\ + \u{32}\ + \u{37}\ + \u{65e5}\ + \u{32}\ + \u{38}\ + \u{65e5}\ + \u{32}\ + \u{39}\ + \u{65e5}\ + \u{33}\ + \u{30}\ + \u{65e5}\ + \u{33}\ + \u{31}\ + \u{65e5}\ + \u{67}\ + \u{61}\ + \u{6c}\ + \u{a641}\ + \u{a643}\ + \u{a645}\ + \u{a647}\ + \u{a649}\ + \u{a64d}\ + \u{a64f}\ + \u{a651}\ + \u{a653}\ + \u{a655}\ + \u{a657}\ + \u{a659}\ + \u{a65b}\ + \u{a65d}\ + \u{a65f}\ + \u{a661}\ + \u{a663}\ + \u{a665}\ + \u{a667}\ + \u{a669}\ + \u{a66b}\ + \u{a66d}\ + \u{a681}\ + \u{a683}\ + \u{a685}\ + \u{a687}\ + \u{a689}\ + \u{a68b}\ + \u{a68d}\ + \u{a68f}\ + \u{a691}\ + \u{a693}\ + \u{a695}\ + \u{a697}\ + \u{a699}\ + \u{a69b}\ + \u{a723}\ + \u{a725}\ + \u{a727}\ + \u{a729}\ + \u{a72b}\ + \u{a72d}\ + \u{a72f}\ + \u{a733}\ + \u{a735}\ + \u{a737}\ + \u{a739}\ + \u{a73b}\ + \u{a73d}\ + \u{a73f}\ + \u{a741}\ + \u{a743}\ + \u{a745}\ + \u{a747}\ + \u{a749}\ + \u{a74b}\ + \u{a74d}\ + \u{a74f}\ + \u{a751}\ + \u{a753}\ + \u{a755}\ + \u{a757}\ + \u{a759}\ + \u{a75b}\ + \u{a75d}\ + \u{a75f}\ + \u{a761}\ + \u{a763}\ + \u{a765}\ + \u{a767}\ + \u{a769}\ + \u{a76b}\ + \u{a76d}\ + \u{a76f}\ + \u{a77a}\ + \u{a77c}\ + \u{1d79}\ + \u{a77f}\ + \u{a781}\ + \u{a783}\ + \u{a785}\ + \u{a787}\ + \u{a78c}\ + \u{a791}\ + \u{a793}\ + \u{a797}\ + \u{a799}\ + \u{a79b}\ + \u{a79d}\ + \u{a79f}\ + \u{a7a1}\ + \u{a7a3}\ + \u{a7a5}\ + \u{a7a7}\ + \u{a7a9}\ + \u{26c}\ + \u{29e}\ + \u{287}\ + \u{ab53}\ + \u{a7b5}\ + \u{a7b7}\ + \u{ab37}\ + \u{ab52}\ + \u{13a0}\ + \u{13a1}\ + \u{13a2}\ + \u{13a3}\ + \u{13a4}\ + \u{13a5}\ + \u{13a6}\ + \u{13a7}\ + \u{13a8}\ + \u{13a9}\ + \u{13aa}\ + \u{13ab}\ + \u{13ac}\ + \u{13ad}\ + \u{13ae}\ + \u{13af}\ + \u{13b0}\ + \u{13b1}\ + \u{13b2}\ + \u{13b3}\ + \u{13b4}\ + \u{13b5}\ + \u{13b6}\ + \u{13b7}\ + \u{13b8}\ + \u{13b9}\ + \u{13ba}\ + \u{13bb}\ + \u{13bc}\ + \u{13bd}\ + \u{13be}\ + \u{13bf}\ + \u{13c0}\ + \u{13c1}\ + \u{13c2}\ + \u{13c3}\ + \u{13c4}\ + \u{13c5}\ + \u{13c6}\ + \u{13c7}\ + \u{13c8}\ + \u{13c9}\ + \u{13ca}\ + \u{13cb}\ + \u{13cc}\ + \u{13cd}\ + \u{13ce}\ + \u{13cf}\ + \u{13d0}\ + \u{13d1}\ + \u{13d2}\ + \u{13d3}\ + \u{13d4}\ + \u{13d5}\ + \u{13d6}\ + \u{13d7}\ + \u{13d8}\ + \u{13d9}\ + \u{13da}\ + \u{13db}\ + \u{13dc}\ + \u{13dd}\ + \u{13de}\ + \u{13df}\ + \u{13e0}\ + \u{13e1}\ + \u{13e2}\ + \u{13e3}\ + \u{13e4}\ + \u{13e5}\ + \u{13e6}\ + \u{13e7}\ + \u{13e8}\ + \u{13e9}\ + \u{13ea}\ + \u{13eb}\ + \u{13ec}\ + \u{13ed}\ + \u{13ee}\ + \u{13ef}\ + \u{8c48}\ + \u{66f4}\ + \u{8cc8}\ + \u{6ed1}\ + \u{4e32}\ + \u{53e5}\ + \u{5951}\ + \u{5587}\ + \u{5948}\ + \u{61f6}\ + \u{7669}\ + \u{7f85}\ + \u{863f}\ + \u{87ba}\ + \u{88f8}\ + \u{908f}\ + \u{6a02}\ + \u{6d1b}\ + \u{70d9}\ + \u{73de}\ + \u{843d}\ + \u{916a}\ + \u{99f1}\ + \u{4e82}\ + \u{5375}\ + \u{6b04}\ + \u{721b}\ + \u{862d}\ + \u{9e1e}\ + \u{5d50}\ + \u{6feb}\ + \u{85cd}\ + \u{8964}\ + \u{62c9}\ + \u{81d8}\ + \u{881f}\ + \u{5eca}\ + \u{6717}\ + \u{6d6a}\ + \u{72fc}\ + \u{90ce}\ + \u{4f86}\ + \u{51b7}\ + \u{52de}\ + \u{64c4}\ + \u{6ad3}\ + \u{7210}\ + \u{76e7}\ + \u{8606}\ + \u{865c}\ + \u{8def}\ + \u{9732}\ + \u{9b6f}\ + \u{9dfa}\ + \u{788c}\ + \u{797f}\ + \u{7da0}\ + \u{83c9}\ + \u{9304}\ + \u{8ad6}\ + \u{58df}\ + \u{5f04}\ + \u{7c60}\ + \u{807e}\ + \u{7262}\ + \u{78ca}\ + \u{8cc2}\ + \u{96f7}\ + \u{58d8}\ + \u{5c62}\ + \u{6a13}\ + \u{6dda}\ + \u{6f0f}\ + \u{7d2f}\ + \u{7e37}\ + \u{964b}\ + \u{52d2}\ + \u{808b}\ + \u{51dc}\ + \u{51cc}\ + \u{7a1c}\ + \u{7dbe}\ + \u{83f1}\ + \u{9675}\ + \u{8b80}\ + \u{62cf}\ + \u{8afe}\ + \u{4e39}\ + \u{5be7}\ + \u{6012}\ + \u{7387}\ + \u{7570}\ + \u{5317}\ + \u{78fb}\ + \u{4fbf}\ + \u{5fa9}\ + \u{4e0d}\ + \u{6ccc}\ + \u{6578}\ + \u{7d22}\ + \u{53c3}\ + \u{585e}\ + \u{7701}\ + \u{8449}\ + \u{8aaa}\ + \u{6bba}\ + \u{6c88}\ + \u{62fe}\ + \u{82e5}\ + \u{63a0}\ + \u{7565}\ + \u{4eae}\ + \u{5169}\ + \u{51c9}\ + \u{6881}\ + \u{7ce7}\ + \u{826f}\ + \u{8ad2}\ + \u{91cf}\ + \u{52f5}\ + \u{5442}\ + \u{5eec}\ + \u{65c5}\ + \u{6ffe}\ + \u{792a}\ + \u{95ad}\ + \u{9a6a}\ + \u{9e97}\ + \u{9ece}\ + \u{66c6}\ + \u{6b77}\ + \u{8f62}\ + \u{5e74}\ + \u{6190}\ + \u{6200}\ + \u{649a}\ + \u{6f23}\ + \u{7149}\ + \u{7489}\ + \u{79ca}\ + \u{7df4}\ + \u{806f}\ + \u{8f26}\ + \u{84ee}\ + \u{9023}\ + \u{934a}\ + \u{5217}\ + \u{52a3}\ + \u{54bd}\ + \u{70c8}\ + \u{88c2}\ + \u{5ec9}\ + \u{5ff5}\ + \u{637b}\ + \u{6bae}\ + \u{7c3e}\ + \u{7375}\ + \u{4ee4}\ + \u{56f9}\ + \u{5dba}\ + \u{601c}\ + \u{73b2}\ + \u{7469}\ + \u{7f9a}\ + \u{8046}\ + \u{9234}\ + \u{96f6}\ + \u{9748}\ + \u{9818}\ + \u{4f8b}\ + \u{79ae}\ + \u{91b4}\ + \u{96b8}\ + \u{60e1}\ + \u{4e86}\ + \u{50da}\ + \u{5bee}\ + \u{5c3f}\ + \u{6599}\ + \u{71ce}\ + \u{7642}\ + \u{84fc}\ + \u{907c}\ + \u{6688}\ + \u{962e}\ + \u{5289}\ + \u{677b}\ + \u{67f3}\ + \u{6d41}\ + \u{6e9c}\ + \u{7409}\ + \u{7559}\ + \u{786b}\ + \u{7d10}\ + \u{985e}\ + \u{622e}\ + \u{9678}\ + \u{502b}\ + \u{5d19}\ + \u{6dea}\ + \u{8f2a}\ + \u{5f8b}\ + \u{6144}\ + \u{6817}\ + \u{9686}\ + \u{5229}\ + \u{540f}\ + \u{5c65}\ + \u{6613}\ + \u{674e}\ + \u{68a8}\ + \u{6ce5}\ + \u{7406}\ + \u{75e2}\ + \u{7f79}\ + \u{88cf}\ + \u{88e1}\ + \u{96e2}\ + \u{533f}\ + \u{6eba}\ + \u{541d}\ + \u{71d0}\ + \u{7498}\ + \u{85fa}\ + \u{96a3}\ + \u{9c57}\ + \u{9e9f}\ + \u{6797}\ + \u{6dcb}\ + \u{81e8}\ + \u{7b20}\ + \u{7c92}\ + \u{72c0}\ + \u{7099}\ + \u{8b58}\ + \u{4ec0}\ + \u{8336}\ + \u{523a}\ + \u{5207}\ + \u{5ea6}\ + \u{62d3}\ + \u{7cd6}\ + \u{5b85}\ + \u{6d1e}\ + \u{66b4}\ + \u{8f3b}\ + \u{964d}\ + \u{5ed3}\ + \u{5140}\ + \u{55c0}\ + \u{585a}\ + \u{6674}\ + \u{51de}\ + \u{732a}\ + \u{76ca}\ + \u{793c}\ + \u{795e}\ + \u{7965}\ + \u{798f}\ + \u{9756}\ + \u{7cbe}\ + \u{8612}\ + \u{8af8}\ + \u{9038}\ + \u{90fd}\ + \u{98ef}\ + \u{98fc}\ + \u{9928}\ + \u{9db4}\ + \u{90de}\ + \u{96b7}\ + \u{4fae}\ + \u{50e7}\ + \u{514d}\ + \u{52c9}\ + \u{52e4}\ + \u{5351}\ + \u{559d}\ + \u{5606}\ + \u{5668}\ + \u{5840}\ + \u{58a8}\ + \u{5c64}\ + \u{6094}\ + \u{6168}\ + \u{618e}\ + \u{61f2}\ + \u{654f}\ + \u{65e2}\ + \u{6691}\ + \u{6885}\ + \u{6d77}\ + \u{6e1a}\ + \u{6f22}\ + \u{716e}\ + \u{722b}\ + \u{7422}\ + \u{7891}\ + \u{7949}\ + \u{7948}\ + \u{7950}\ + \u{7956}\ + \u{798d}\ + \u{798e}\ + \u{7a40}\ + \u{7a81}\ + \u{7bc0}\ + \u{7e09}\ + \u{7e41}\ + \u{7f72}\ + \u{8005}\ + \u{81ed}\ + \u{8279}\ + \u{8457}\ + \u{8910}\ + \u{8996}\ + \u{8b01}\ + \u{8b39}\ + \u{8cd3}\ + \u{8d08}\ + \u{8fb6}\ + \u{96e3}\ + \u{97ff}\ + \u{983b}\ + \u{6075}\ + \u{242ee}\ + \u{8218}\ + \u{4e26}\ + \u{51b5}\ + \u{5168}\ + \u{4f80}\ + \u{5145}\ + \u{5180}\ + \u{52c7}\ + \u{52fa}\ + \u{5555}\ + \u{5599}\ + \u{55e2}\ + \u{58b3}\ + \u{5944}\ + \u{5954}\ + \u{5a62}\ + \u{5b28}\ + \u{5ed2}\ + \u{5ed9}\ + \u{5f69}\ + \u{5fad}\ + \u{60d8}\ + \u{614e}\ + \u{6108}\ + \u{6160}\ + \u{6234}\ + \u{63c4}\ + \u{641c}\ + \u{6452}\ + \u{6556}\ + \u{671b}\ + \u{6756}\ + \u{6edb}\ + \u{6ecb}\ + \u{701e}\ + \u{77a7}\ + \u{7235}\ + \u{72af}\ + \u{7471}\ + \u{7506}\ + \u{753b}\ + \u{761d}\ + \u{761f}\ + \u{76db}\ + \u{76f4}\ + \u{774a}\ + \u{7740}\ + \u{78cc}\ + \u{7ab1}\ + \u{7c7b}\ + \u{7d5b}\ + \u{7f3e}\ + \u{8352}\ + \u{83ef}\ + \u{8779}\ + \u{8941}\ + \u{8986}\ + \u{8abf}\ + \u{8acb}\ + \u{8aed}\ + \u{8b8a}\ + \u{8f38}\ + \u{9072}\ + \u{9199}\ + \u{9276}\ + \u{967c}\ + \u{97db}\ + \u{980b}\ + \u{9b12}\ + \u{2284a}\ + \u{22844}\ + \u{233d5}\ + \u{3b9d}\ + \u{4018}\ + \u{4039}\ + \u{25249}\ + \u{25cd0}\ + \u{27ed3}\ + \u{9f43}\ + \u{9f8e}\ + \u{66}\ + \u{66}\ + \u{66}\ + \u{69}\ + \u{66}\ + \u{6c}\ + \u{66}\ + \u{66}\ + \u{69}\ + \u{66}\ + \u{66}\ + \u{6c}\ + \u{73}\ + \u{74}\ + \u{574}\ + \u{576}\ + \u{574}\ + \u{565}\ + \u{574}\ + \u{56b}\ + \u{57e}\ + \u{576}\ + \u{574}\ + \u{56d}\ + \u{5d9}\ + \u{5b4}\ + \u{5f2}\ + \u{5b7}\ + \u{5e2}\ + \u{5d4}\ + \u{5db}\ + \u{5dc}\ + \u{5dd}\ + \u{5e8}\ + \u{5ea}\ + \u{5e9}\ + \u{5c1}\ + \u{5e9}\ + \u{5c2}\ + \u{5e9}\ + \u{5bc}\ + \u{5c1}\ + \u{5e9}\ + \u{5bc}\ + \u{5c2}\ + \u{5d0}\ + \u{5b7}\ + \u{5d0}\ + \u{5b8}\ + \u{5d0}\ + \u{5bc}\ + \u{5d1}\ + \u{5bc}\ + \u{5d2}\ + \u{5bc}\ + \u{5d3}\ + \u{5bc}\ + \u{5d4}\ + \u{5bc}\ + \u{5d5}\ + \u{5bc}\ + \u{5d6}\ + \u{5bc}\ + \u{5d8}\ + \u{5bc}\ + \u{5d9}\ + \u{5bc}\ + \u{5da}\ + \u{5bc}\ + \u{5db}\ + \u{5bc}\ + \u{5dc}\ + \u{5bc}\ + \u{5de}\ + \u{5bc}\ + \u{5e0}\ + \u{5bc}\ + \u{5e1}\ + \u{5bc}\ + \u{5e3}\ + \u{5bc}\ + \u{5e4}\ + \u{5bc}\ + \u{5e6}\ + \u{5bc}\ + \u{5e7}\ + \u{5bc}\ + \u{5e8}\ + \u{5bc}\ + \u{5e9}\ + \u{5bc}\ + \u{5ea}\ + \u{5bc}\ + \u{5d5}\ + \u{5b9}\ + \u{5d1}\ + \u{5bf}\ + \u{5db}\ + \u{5bf}\ + \u{5e4}\ + \u{5bf}\ + \u{5d0}\ + \u{5dc}\ + \u{671}\ + \u{67b}\ + \u{67e}\ + \u{680}\ + \u{67a}\ + \u{67f}\ + \u{679}\ + \u{6a4}\ + \u{6a6}\ + \u{684}\ + \u{683}\ + \u{686}\ + \u{687}\ + \u{68d}\ + \u{68c}\ + \u{68e}\ + \u{688}\ + \u{698}\ + \u{691}\ + \u{6a9}\ + \u{6af}\ + \u{6b3}\ + \u{6b1}\ + \u{6ba}\ + \u{6bb}\ + \u{6c0}\ + \u{6c1}\ + \u{6be}\ + \u{6d2}\ + \u{6d3}\ + \u{6ad}\ + \u{6c7}\ + \u{6c6}\ + \u{6c8}\ + \u{6cb}\ + \u{6c5}\ + \u{6c9}\ + \u{6d0}\ + \u{649}\ + \u{626}\ + \u{627}\ + \u{626}\ + \u{6d5}\ + \u{626}\ + \u{648}\ + \u{626}\ + \u{6c7}\ + \u{626}\ + \u{6c6}\ + \u{626}\ + \u{6c8}\ + \u{626}\ + \u{6d0}\ + \u{626}\ + \u{649}\ + \u{6cc}\ + \u{626}\ + \u{62c}\ + \u{626}\ + \u{62d}\ + \u{626}\ + \u{645}\ + \u{626}\ + \u{64a}\ + \u{628}\ + \u{62c}\ + \u{628}\ + \u{62d}\ + \u{628}\ + \u{62e}\ + \u{628}\ + \u{645}\ + \u{628}\ + \u{649}\ + \u{628}\ + \u{64a}\ + \u{62a}\ + \u{62c}\ + \u{62a}\ + \u{62d}\ + \u{62a}\ + \u{62e}\ + \u{62a}\ + \u{645}\ + \u{62a}\ + \u{649}\ + \u{62a}\ + \u{64a}\ + \u{62b}\ + \u{62c}\ + \u{62b}\ + \u{645}\ + \u{62b}\ + \u{649}\ + \u{62b}\ + \u{64a}\ + \u{62c}\ + \u{62d}\ + \u{62c}\ + \u{645}\ + \u{62d}\ + \u{62c}\ + \u{62d}\ + \u{645}\ + \u{62e}\ + \u{62c}\ + \u{62e}\ + \u{62d}\ + \u{62e}\ + \u{645}\ + \u{633}\ + \u{62c}\ + \u{633}\ + \u{62d}\ + \u{633}\ + \u{62e}\ + \u{633}\ + \u{645}\ + \u{635}\ + \u{62d}\ + \u{635}\ + \u{645}\ + \u{636}\ + \u{62c}\ + \u{636}\ + \u{62d}\ + \u{636}\ + \u{62e}\ + \u{636}\ + \u{645}\ + \u{637}\ + \u{62d}\ + \u{637}\ + \u{645}\ + \u{638}\ + \u{645}\ + \u{639}\ + \u{62c}\ + \u{639}\ + \u{645}\ + \u{63a}\ + \u{62c}\ + \u{63a}\ + \u{645}\ + \u{641}\ + \u{62c}\ + \u{641}\ + \u{62d}\ + \u{641}\ + \u{62e}\ + \u{641}\ + \u{645}\ + \u{641}\ + \u{649}\ + \u{641}\ + \u{64a}\ + \u{642}\ + \u{62d}\ + \u{642}\ + \u{645}\ + \u{642}\ + \u{649}\ + \u{642}\ + \u{64a}\ + \u{643}\ + \u{627}\ + \u{643}\ + \u{62c}\ + \u{643}\ + \u{62d}\ + \u{643}\ + \u{62e}\ + \u{643}\ + \u{644}\ + \u{643}\ + \u{645}\ + \u{643}\ + \u{649}\ + \u{643}\ + \u{64a}\ + \u{644}\ + \u{62c}\ + \u{644}\ + \u{62d}\ + \u{644}\ + \u{62e}\ + \u{644}\ + \u{645}\ + \u{644}\ + \u{649}\ + \u{644}\ + \u{64a}\ + \u{645}\ + \u{62c}\ + \u{645}\ + \u{62d}\ + \u{645}\ + \u{62e}\ + \u{645}\ + \u{645}\ + \u{645}\ + \u{649}\ + \u{645}\ + \u{64a}\ + \u{646}\ + \u{62c}\ + \u{646}\ + \u{62d}\ + \u{646}\ + \u{62e}\ + \u{646}\ + \u{645}\ + \u{646}\ + \u{649}\ + \u{646}\ + \u{64a}\ + \u{647}\ + \u{62c}\ + \u{647}\ + \u{645}\ + \u{647}\ + \u{649}\ + \u{647}\ + \u{64a}\ + \u{64a}\ + \u{62c}\ + \u{64a}\ + \u{62d}\ + \u{64a}\ + \u{62e}\ + \u{64a}\ + \u{645}\ + \u{64a}\ + \u{649}\ + \u{64a}\ + \u{64a}\ + \u{630}\ + \u{670}\ + \u{631}\ + \u{670}\ + \u{649}\ + \u{670}\ + \u{20}\ + \u{64c}\ + \u{651}\ + \u{20}\ + \u{64d}\ + \u{651}\ + \u{20}\ + \u{64e}\ + \u{651}\ + \u{20}\ + \u{64f}\ + \u{651}\ + \u{20}\ + \u{650}\ + \u{651}\ + \u{20}\ + \u{651}\ + \u{670}\ + \u{626}\ + \u{631}\ + \u{626}\ + \u{632}\ + \u{626}\ + \u{646}\ + \u{628}\ + \u{631}\ + \u{628}\ + \u{632}\ + \u{628}\ + \u{646}\ + \u{62a}\ + \u{631}\ + \u{62a}\ + \u{632}\ + \u{62a}\ + \u{646}\ + \u{62b}\ + \u{631}\ + \u{62b}\ + \u{632}\ + \u{62b}\ + \u{646}\ + \u{645}\ + \u{627}\ + \u{646}\ + \u{631}\ + \u{646}\ + \u{632}\ + \u{646}\ + \u{646}\ + \u{64a}\ + \u{631}\ + \u{64a}\ + \u{632}\ + \u{64a}\ + \u{646}\ + \u{626}\ + \u{62e}\ + \u{626}\ + \u{647}\ + \u{628}\ + \u{647}\ + \u{62a}\ + \u{647}\ + \u{635}\ + \u{62e}\ + \u{644}\ + \u{647}\ + \u{646}\ + \u{647}\ + \u{647}\ + \u{670}\ + \u{64a}\ + \u{647}\ + \u{62b}\ + \u{647}\ + \u{633}\ + \u{647}\ + \u{634}\ + \u{645}\ + \u{634}\ + \u{647}\ + \u{640}\ + \u{64e}\ + \u{651}\ + \u{640}\ + \u{64f}\ + \u{651}\ + \u{640}\ + \u{650}\ + \u{651}\ + \u{637}\ + \u{649}\ + \u{637}\ + \u{64a}\ + \u{639}\ + \u{649}\ + \u{639}\ + \u{64a}\ + \u{63a}\ + \u{649}\ + \u{63a}\ + \u{64a}\ + \u{633}\ + \u{649}\ + \u{633}\ + \u{64a}\ + \u{634}\ + \u{649}\ + \u{634}\ + \u{64a}\ + \u{62d}\ + \u{649}\ + \u{62d}\ + \u{64a}\ + \u{62c}\ + \u{649}\ + \u{62c}\ + \u{64a}\ + \u{62e}\ + \u{649}\ + \u{62e}\ + \u{64a}\ + \u{635}\ + \u{649}\ + \u{635}\ + \u{64a}\ + \u{636}\ + \u{649}\ + \u{636}\ + \u{64a}\ + \u{634}\ + \u{62c}\ + \u{634}\ + \u{62d}\ + \u{634}\ + \u{62e}\ + \u{634}\ + \u{631}\ + \u{633}\ + \u{631}\ + \u{635}\ + \u{631}\ + \u{636}\ + \u{631}\ + \u{627}\ + \u{64b}\ + \u{62a}\ + \u{62c}\ + \u{645}\ + \u{62a}\ + \u{62d}\ + \u{62c}\ + \u{62a}\ + \u{62d}\ + \u{645}\ + \u{62a}\ + \u{62e}\ + \u{645}\ + \u{62a}\ + \u{645}\ + \u{62c}\ + \u{62a}\ + \u{645}\ + \u{62d}\ + \u{62a}\ + \u{645}\ + \u{62e}\ + \u{62c}\ + \u{645}\ + \u{62d}\ + \u{62d}\ + \u{645}\ + \u{64a}\ + \u{62d}\ + \u{645}\ + \u{649}\ + \u{633}\ + \u{62d}\ + \u{62c}\ + \u{633}\ + \u{62c}\ + \u{62d}\ + \u{633}\ + \u{62c}\ + \u{649}\ + \u{633}\ + \u{645}\ + \u{62d}\ + \u{633}\ + \u{645}\ + \u{62c}\ + \u{633}\ + \u{645}\ + \u{645}\ + \u{635}\ + \u{62d}\ + \u{62d}\ + \u{635}\ + \u{645}\ + \u{645}\ + \u{634}\ + \u{62d}\ + \u{645}\ + \u{634}\ + \u{62c}\ + \u{64a}\ + \u{634}\ + \u{645}\ + \u{62e}\ + \u{634}\ + \u{645}\ + \u{645}\ + \u{636}\ + \u{62d}\ + \u{649}\ + \u{636}\ + \u{62e}\ + \u{645}\ + \u{637}\ + \u{645}\ + \u{62d}\ + \u{637}\ + \u{645}\ + \u{645}\ + \u{637}\ + \u{645}\ + \u{64a}\ + \u{639}\ + \u{62c}\ + \u{645}\ + \u{639}\ + \u{645}\ + \u{645}\ + \u{639}\ + \u{645}\ + \u{649}\ + \u{63a}\ + \u{645}\ + \u{645}\ + \u{63a}\ + \u{645}\ + \u{64a}\ + \u{63a}\ + \u{645}\ + \u{649}\ + \u{641}\ + \u{62e}\ + \u{645}\ + \u{642}\ + \u{645}\ + \u{62d}\ + \u{642}\ + \u{645}\ + \u{645}\ + \u{644}\ + \u{62d}\ + \u{645}\ + \u{644}\ + \u{62d}\ + \u{64a}\ + \u{644}\ + \u{62d}\ + \u{649}\ + \u{644}\ + \u{62c}\ + \u{62c}\ + \u{644}\ + \u{62e}\ + \u{645}\ + \u{644}\ + \u{645}\ + \u{62d}\ + \u{645}\ + \u{62d}\ + \u{62c}\ + \u{645}\ + \u{62d}\ + \u{645}\ + \u{645}\ + \u{62d}\ + \u{64a}\ + \u{645}\ + \u{62c}\ + \u{62d}\ + \u{645}\ + \u{62c}\ + \u{645}\ + \u{645}\ + \u{62e}\ + \u{62c}\ + \u{645}\ + \u{62e}\ + \u{645}\ + \u{645}\ + \u{62c}\ + \u{62e}\ + \u{647}\ + \u{645}\ + \u{62c}\ + \u{647}\ + \u{645}\ + \u{645}\ + \u{646}\ + \u{62d}\ + \u{645}\ + \u{646}\ + \u{62d}\ + \u{649}\ + \u{646}\ + \u{62c}\ + \u{645}\ + \u{646}\ + \u{62c}\ + \u{649}\ + \u{646}\ + \u{645}\ + \u{64a}\ + \u{646}\ + \u{645}\ + \u{649}\ + \u{64a}\ + \u{645}\ + \u{645}\ + \u{628}\ + \u{62e}\ + \u{64a}\ + \u{62a}\ + \u{62c}\ + \u{64a}\ + \u{62a}\ + \u{62c}\ + \u{649}\ + \u{62a}\ + \u{62e}\ + \u{64a}\ + \u{62a}\ + \u{62e}\ + \u{649}\ + \u{62a}\ + \u{645}\ + \u{64a}\ + \u{62a}\ + \u{645}\ + \u{649}\ + \u{62c}\ + \u{645}\ + \u{64a}\ + \u{62c}\ + \u{62d}\ + \u{649}\ + \u{62c}\ + \u{645}\ + \u{649}\ + \u{633}\ + \u{62e}\ + \u{649}\ + \u{635}\ + \u{62d}\ + \u{64a}\ + \u{634}\ + \u{62d}\ + \u{64a}\ + \u{636}\ + \u{62d}\ + \u{64a}\ + \u{644}\ + \u{62c}\ + \u{64a}\ + \u{644}\ + \u{645}\ + \u{64a}\ + \u{64a}\ + \u{62d}\ + \u{64a}\ + \u{64a}\ + \u{62c}\ + \u{64a}\ + \u{64a}\ + \u{645}\ + \u{64a}\ + \u{645}\ + \u{645}\ + \u{64a}\ + \u{642}\ + \u{645}\ + \u{64a}\ + \u{646}\ + \u{62d}\ + \u{64a}\ + \u{639}\ + \u{645}\ + \u{64a}\ + \u{643}\ + \u{645}\ + \u{64a}\ + \u{646}\ + \u{62c}\ + \u{62d}\ + \u{645}\ + \u{62e}\ + \u{64a}\ + \u{644}\ + \u{62c}\ + \u{645}\ + \u{643}\ + \u{645}\ + \u{645}\ + \u{62c}\ + \u{62d}\ + \u{64a}\ + \u{62d}\ + \u{62c}\ + \u{64a}\ + \u{645}\ + \u{62c}\ + \u{64a}\ + \u{641}\ + \u{645}\ + \u{64a}\ + \u{628}\ + \u{62d}\ + \u{64a}\ + \u{633}\ + \u{62e}\ + \u{64a}\ + \u{646}\ + \u{62c}\ + \u{64a}\ + \u{635}\ + \u{644}\ + \u{6d2}\ + \u{642}\ + \u{644}\ + \u{6d2}\ + \u{627}\ + \u{644}\ + \u{644}\ + \u{647}\ + \u{627}\ + \u{643}\ + \u{628}\ + \u{631}\ + \u{645}\ + \u{62d}\ + \u{645}\ + \u{62f}\ + \u{635}\ + \u{644}\ + \u{639}\ + \u{645}\ + \u{631}\ + \u{633}\ + \u{648}\ + \u{644}\ + \u{639}\ + \u{644}\ + \u{64a}\ + \u{647}\ + \u{648}\ + \u{633}\ + \u{644}\ + \u{645}\ + \u{635}\ + \u{644}\ + \u{649}\ + \u{635}\ + \u{644}\ + \u{649}\ + \u{20}\ + \u{627}\ + \u{644}\ + \u{644}\ + \u{647}\ + \u{20}\ + \u{639}\ + \u{644}\ + \u{64a}\ + \u{647}\ + \u{20}\ + \u{648}\ + \u{633}\ + \u{644}\ + \u{645}\ + \u{62c}\ + \u{644}\ + \u{20}\ + \u{62c}\ + \u{644}\ + \u{627}\ + \u{644}\ + \u{647}\ + \u{631}\ + \u{6cc}\ + \u{627}\ + \u{644}\ + \u{2c}\ + \u{3001}\ + \u{3a}\ + \u{21}\ + \u{3f}\ + \u{3016}\ + \u{3017}\ + \u{2014}\ + \u{2013}\ + \u{5f}\ + \u{7b}\ + \u{7d}\ + \u{3014}\ + \u{3015}\ + \u{3010}\ + \u{3011}\ + \u{300a}\ + \u{300b}\ + \u{300c}\ + \u{300d}\ + \u{300e}\ + \u{300f}\ + \u{5b}\ + \u{5d}\ + \u{23}\ + \u{26}\ + \u{2a}\ + \u{2d}\ + \u{3c}\ + \u{3e}\ + \u{5c}\ + \u{24}\ + \u{25}\ + \u{40}\ + \u{20}\ + \u{64b}\ + \u{640}\ + \u{64b}\ + \u{20}\ + \u{64c}\ + \u{20}\ + \u{64d}\ + \u{20}\ + \u{64e}\ + \u{640}\ + \u{64e}\ + \u{20}\ + \u{64f}\ + \u{640}\ + \u{64f}\ + \u{20}\ + \u{650}\ + \u{640}\ + \u{650}\ + \u{20}\ + \u{651}\ + \u{640}\ + \u{651}\ + \u{20}\ + \u{652}\ + \u{640}\ + \u{652}\ + \u{621}\ + \u{622}\ + \u{623}\ + \u{624}\ + \u{625}\ + \u{626}\ + \u{627}\ + \u{628}\ + \u{629}\ + \u{62a}\ + \u{62b}\ + \u{62c}\ + \u{62d}\ + \u{62e}\ + \u{62f}\ + \u{630}\ + \u{631}\ + \u{632}\ + \u{633}\ + \u{634}\ + \u{635}\ + \u{636}\ + \u{637}\ + \u{638}\ + \u{639}\ + \u{63a}\ + \u{641}\ + \u{642}\ + \u{643}\ + \u{644}\ + \u{645}\ + \u{646}\ + \u{647}\ + \u{648}\ + \u{64a}\ + \u{644}\ + \u{622}\ + \u{644}\ + \u{623}\ + \u{644}\ + \u{625}\ + \u{644}\ + \u{627}\ + \u{22}\ + \u{27}\ + \u{2f}\ + \u{5e}\ + \u{7c}\ + \u{7e}\ + \u{2985}\ + \u{2986}\ + \u{30fb}\ + \u{30a1}\ + \u{30a3}\ + \u{30a5}\ + \u{30a7}\ + \u{30a9}\ + \u{30e3}\ + \u{30e5}\ + \u{30e7}\ + \u{30c3}\ + \u{30fc}\ + \u{30f3}\ + \u{3099}\ + \u{309a}\ + \u{a2}\ + \u{a3}\ + \u{ac}\ + \u{a6}\ + \u{a5}\ + \u{20a9}\ + \u{2502}\ + \u{2190}\ + \u{2191}\ + \u{2192}\ + \u{2193}\ + \u{25a0}\ + \u{25cb}\ + \u{10428}\ + \u{10429}\ + \u{1042a}\ + \u{1042b}\ + \u{1042c}\ + \u{1042d}\ + \u{1042e}\ + \u{1042f}\ + \u{10430}\ + \u{10431}\ + \u{10432}\ + \u{10433}\ + \u{10434}\ + \u{10435}\ + \u{10436}\ + \u{10437}\ + \u{10438}\ + \u{10439}\ + \u{1043a}\ + \u{1043b}\ + \u{1043c}\ + \u{1043d}\ + \u{1043e}\ + \u{1043f}\ + \u{10440}\ + \u{10441}\ + \u{10442}\ + \u{10443}\ + \u{10444}\ + \u{10445}\ + \u{10446}\ + \u{10447}\ + \u{10448}\ + \u{10449}\ + \u{1044a}\ + \u{1044b}\ + \u{1044c}\ + \u{1044d}\ + \u{1044e}\ + \u{1044f}\ + \u{104d8}\ + \u{104d9}\ + \u{104da}\ + \u{104db}\ + \u{104dc}\ + \u{104dd}\ + \u{104de}\ + \u{104df}\ + \u{104e0}\ + \u{104e1}\ + \u{104e2}\ + \u{104e3}\ + \u{104e4}\ + \u{104e5}\ + \u{104e6}\ + \u{104e7}\ + \u{104e8}\ + \u{104e9}\ + \u{104ea}\ + \u{104eb}\ + \u{104ec}\ + \u{104ed}\ + \u{104ee}\ + \u{104ef}\ + \u{104f0}\ + \u{104f1}\ + \u{104f2}\ + \u{104f3}\ + \u{104f4}\ + \u{104f5}\ + \u{104f6}\ + \u{104f7}\ + \u{104f8}\ + \u{104f9}\ + \u{104fa}\ + \u{104fb}\ + \u{10cc0}\ + \u{10cc1}\ + \u{10cc2}\ + \u{10cc3}\ + \u{10cc4}\ + \u{10cc5}\ + \u{10cc6}\ + \u{10cc7}\ + \u{10cc8}\ + \u{10cc9}\ + \u{10cca}\ + \u{10ccb}\ + \u{10ccc}\ + \u{10ccd}\ + \u{10cce}\ + \u{10ccf}\ + \u{10cd0}\ + \u{10cd1}\ + \u{10cd2}\ + \u{10cd3}\ + \u{10cd4}\ + \u{10cd5}\ + \u{10cd6}\ + \u{10cd7}\ + \u{10cd8}\ + \u{10cd9}\ + \u{10cda}\ + \u{10cdb}\ + \u{10cdc}\ + \u{10cdd}\ + \u{10cde}\ + \u{10cdf}\ + \u{10ce0}\ + \u{10ce1}\ + \u{10ce2}\ + \u{10ce3}\ + \u{10ce4}\ + \u{10ce5}\ + \u{10ce6}\ + \u{10ce7}\ + \u{10ce8}\ + \u{10ce9}\ + \u{10cea}\ + \u{10ceb}\ + \u{10cec}\ + \u{10ced}\ + \u{10cee}\ + \u{10cef}\ + \u{10cf0}\ + \u{10cf1}\ + \u{10cf2}\ + \u{118c0}\ + \u{118c1}\ + \u{118c2}\ + \u{118c3}\ + \u{118c4}\ + \u{118c5}\ + \u{118c6}\ + \u{118c7}\ + \u{118c8}\ + \u{118c9}\ + \u{118ca}\ + \u{118cb}\ + \u{118cc}\ + \u{118cd}\ + \u{118ce}\ + \u{118cf}\ + \u{118d0}\ + \u{118d1}\ + \u{118d2}\ + \u{118d3}\ + \u{118d4}\ + \u{118d5}\ + \u{118d6}\ + \u{118d7}\ + \u{118d8}\ + \u{118d9}\ + \u{118da}\ + \u{118db}\ + \u{118dc}\ + \u{118dd}\ + \u{118de}\ + \u{118df}\ + \u{1d157}\ + \u{1d165}\ + \u{1d158}\ + \u{1d165}\ + \u{1d158}\ + \u{1d165}\ + \u{1d16e}\ + \u{1d158}\ + \u{1d165}\ + \u{1d16f}\ + \u{1d158}\ + \u{1d165}\ + \u{1d170}\ + \u{1d158}\ + \u{1d165}\ + \u{1d171}\ + \u{1d158}\ + \u{1d165}\ + \u{1d172}\ + \u{1d1b9}\ + \u{1d165}\ + \u{1d1ba}\ + \u{1d165}\ + \u{1d1b9}\ + \u{1d165}\ + \u{1d16e}\ + \u{1d1ba}\ + \u{1d165}\ + \u{1d16e}\ + \u{1d1b9}\ + \u{1d165}\ + \u{1d16f}\ + \u{1d1ba}\ + \u{1d165}\ + \u{1d16f}\ + \u{131}\ + \u{237}\ + \u{2207}\ + \u{2202}\ + \u{1e922}\ + \u{1e923}\ + \u{1e924}\ + \u{1e925}\ + \u{1e926}\ + \u{1e927}\ + \u{1e928}\ + \u{1e929}\ + \u{1e92a}\ + \u{1e92b}\ + \u{1e92c}\ + \u{1e92d}\ + \u{1e92e}\ + \u{1e92f}\ + \u{1e930}\ + \u{1e931}\ + \u{1e932}\ + \u{1e933}\ + \u{1e934}\ + \u{1e935}\ + \u{1e936}\ + \u{1e937}\ + \u{1e938}\ + \u{1e939}\ + \u{1e93a}\ + \u{1e93b}\ + \u{1e93c}\ + \u{1e93d}\ + \u{1e93e}\ + \u{1e93f}\ + \u{1e940}\ + \u{1e941}\ + \u{1e942}\ + \u{1e943}\ + \u{66e}\ + \u{6a1}\ + \u{66f}\ + \u{30}\ + \u{2c}\ + \u{31}\ + \u{2c}\ + \u{32}\ + \u{2c}\ + \u{33}\ + \u{2c}\ + \u{34}\ + \u{2c}\ + \u{35}\ + \u{2c}\ + \u{36}\ + \u{2c}\ + \u{37}\ + \u{2c}\ + \u{38}\ + \u{2c}\ + \u{39}\ + \u{2c}\ + \u{3014}\ + \u{73}\ + \u{3015}\ + \u{77}\ + \u{7a}\ + \u{68}\ + \u{76}\ + \u{73}\ + \u{64}\ + \u{70}\ + \u{70}\ + \u{76}\ + \u{77}\ + \u{63}\ + \u{6d}\ + \u{63}\ + \u{6d}\ + \u{64}\ + \u{64}\ + \u{6a}\ + \u{307b}\ + \u{304b}\ + \u{30b3}\ + \u{30b3}\ + \u{5b57}\ + \u{53cc}\ + \u{30c7}\ + \u{591a}\ + \u{89e3}\ + \u{4ea4}\ + \u{6620}\ + \u{7121}\ + \u{524d}\ + \u{5f8c}\ + \u{518d}\ + \u{65b0}\ + \u{521d}\ + \u{7d42}\ + \u{8ca9}\ + \u{58f0}\ + \u{5439}\ + \u{6f14}\ + \u{6295}\ + \u{6355}\ + \u{904a}\ + \u{6307}\ + \u{6253}\ + \u{7981}\ + \u{7a7a}\ + \u{5408}\ + \u{6e80}\ + \u{7533}\ + \u{5272}\ + \u{55b6}\ + \u{914d}\ + \u{3014}\ + \u{672c}\ + \u{3015}\ + \u{3014}\ + \u{4e09}\ + \u{3015}\ + \u{3014}\ + \u{4e8c}\ + \u{3015}\ + \u{3014}\ + \u{5b89}\ + \u{3015}\ + \u{3014}\ + \u{70b9}\ + \u{3015}\ + \u{3014}\ + \u{6253}\ + \u{3015}\ + \u{3014}\ + \u{76d7}\ + \u{3015}\ + \u{3014}\ + \u{52dd}\ + \u{3015}\ + \u{3014}\ + \u{6557}\ + \u{3015}\ + \u{5f97}\ + \u{53ef}\ + \u{4e3d}\ + \u{4e38}\ + \u{4e41}\ + \u{20122}\ + \u{4f60}\ + \u{4fbb}\ + \u{5002}\ + \u{507a}\ + \u{5099}\ + \u{50cf}\ + \u{349e}\ + \u{2063a}\ + \u{5154}\ + \u{5164}\ + \u{5177}\ + \u{2051c}\ + \u{34b9}\ + \u{5167}\ + \u{2054b}\ + \u{5197}\ + \u{51a4}\ + \u{4ecc}\ + \u{51ac}\ + \u{291df}\ + \u{5203}\ + \u{34df}\ + \u{523b}\ + \u{5246}\ + \u{5277}\ + \u{3515}\ + \u{5305}\ + \u{5306}\ + \u{5349}\ + \u{535a}\ + \u{5373}\ + \u{537d}\ + \u{537f}\ + \u{20a2c}\ + \u{7070}\ + \u{53ca}\ + \u{53df}\ + \u{20b63}\ + \u{53eb}\ + \u{53f1}\ + \u{5406}\ + \u{549e}\ + \u{5438}\ + \u{5448}\ + \u{5468}\ + \u{54a2}\ + \u{54f6}\ + \u{5510}\ + \u{5553}\ + \u{5563}\ + \u{5584}\ + \u{55ab}\ + \u{55b3}\ + \u{55c2}\ + \u{5716}\ + \u{5717}\ + \u{5651}\ + \u{5674}\ + \u{58ee}\ + \u{57ce}\ + \u{57f4}\ + \u{580d}\ + \u{578b}\ + \u{5832}\ + \u{5831}\ + \u{58ac}\ + \u{214e4}\ + \u{58f2}\ + \u{58f7}\ + \u{5906}\ + \u{5922}\ + \u{5962}\ + \u{216a8}\ + \u{216ea}\ + \u{59ec}\ + \u{5a1b}\ + \u{5a27}\ + \u{59d8}\ + \u{5a66}\ + \u{36ee}\ + \u{5b08}\ + \u{5b3e}\ + \u{219c8}\ + \u{5bc3}\ + \u{5bd8}\ + \u{5bf3}\ + \u{21b18}\ + \u{5bff}\ + \u{5c06}\ + \u{3781}\ + \u{5c60}\ + \u{5cc0}\ + \u{5c8d}\ + \u{21de4}\ + \u{5d43}\ + \u{21de6}\ + \u{5d6e}\ + \u{5d6b}\ + \u{5d7c}\ + \u{5de1}\ + \u{5de2}\ + \u{382f}\ + \u{5dfd}\ + \u{5e28}\ + \u{5e3d}\ + \u{5e69}\ + \u{3862}\ + \u{22183}\ + \u{387c}\ + \u{5eb0}\ + \u{5eb3}\ + \u{5eb6}\ + \u{2a392}\ + \u{22331}\ + \u{8201}\ + \u{5f22}\ + \u{38c7}\ + \u{232b8}\ + \u{261da}\ + \u{5f62}\ + \u{5f6b}\ + \u{38e3}\ + \u{5f9a}\ + \u{5fcd}\ + \u{5fd7}\ + \u{5ff9}\ + \u{6081}\ + \u{393a}\ + \u{391c}\ + \u{226d4}\ + \u{60c7}\ + \u{6148}\ + \u{614c}\ + \u{617a}\ + \u{61b2}\ + \u{61a4}\ + \u{61af}\ + \u{61de}\ + \u{6210}\ + \u{621b}\ + \u{625d}\ + \u{62b1}\ + \u{62d4}\ + \u{6350}\ + \u{22b0c}\ + \u{633d}\ + \u{62fc}\ + \u{6368}\ + \u{6383}\ + \u{63e4}\ + \u{22bf1}\ + \u{6422}\ + \u{63c5}\ + \u{63a9}\ + \u{3a2e}\ + \u{6469}\ + \u{647e}\ + \u{649d}\ + \u{6477}\ + \u{3a6c}\ + \u{656c}\ + \u{2300a}\ + \u{65e3}\ + \u{66f8}\ + \u{6649}\ + \u{3b19}\ + \u{3b08}\ + \u{3ae4}\ + \u{5192}\ + \u{5195}\ + \u{6700}\ + \u{669c}\ + \u{80ad}\ + \u{43d9}\ + \u{6721}\ + \u{675e}\ + \u{6753}\ + \u{233c3}\ + \u{3b49}\ + \u{67fa}\ + \u{6785}\ + \u{6852}\ + \u{2346d}\ + \u{688e}\ + \u{681f}\ + \u{6914}\ + \u{6942}\ + \u{69a3}\ + \u{69ea}\ + \u{6aa8}\ + \u{236a3}\ + \u{6adb}\ + \u{3c18}\ + \u{6b21}\ + \u{238a7}\ + \u{6b54}\ + \u{3c4e}\ + \u{6b72}\ + \u{6b9f}\ + \u{6bbb}\ + \u{23a8d}\ + \u{21d0b}\ + \u{23afa}\ + \u{6c4e}\ + \u{23cbc}\ + \u{6cbf}\ + \u{6ccd}\ + \u{6c67}\ + \u{6d16}\ + \u{6d3e}\ + \u{6d69}\ + \u{6d78}\ + \u{6d85}\ + \u{23d1e}\ + \u{6d34}\ + \u{6e2f}\ + \u{6e6e}\ + \u{3d33}\ + \u{6ec7}\ + \u{23ed1}\ + \u{6df9}\ + \u{6f6e}\ + \u{23f5e}\ + \u{23f8e}\ + \u{6fc6}\ + \u{7039}\ + \u{701b}\ + \u{3d96}\ + \u{704a}\ + \u{707d}\ + \u{7077}\ + \u{70ad}\ + \u{20525}\ + \u{7145}\ + \u{24263}\ + \u{719c}\ + \u{7228}\ + \u{7250}\ + \u{24608}\ + \u{7280}\ + \u{7295}\ + \u{24735}\ + \u{24814}\ + \u{737a}\ + \u{738b}\ + \u{3eac}\ + \u{73a5}\ + \u{3eb8}\ + \u{7447}\ + \u{745c}\ + \u{7485}\ + \u{74ca}\ + \u{3f1b}\ + \u{7524}\ + \u{24c36}\ + \u{753e}\ + \u{24c92}\ + \u{2219f}\ + \u{7610}\ + \u{24fa1}\ + \u{24fb8}\ + \u{25044}\ + \u{3ffc}\ + \u{4008}\ + \u{250f3}\ + \u{250f2}\ + \u{25119}\ + \u{25133}\ + \u{771e}\ + \u{771f}\ + \u{778b}\ + \u{4046}\ + \u{4096}\ + \u{2541d}\ + \u{784e}\ + \u{40e3}\ + \u{25626}\ + \u{2569a}\ + \u{256c5}\ + \u{79eb}\ + \u{412f}\ + \u{7a4a}\ + \u{7a4f}\ + \u{2597c}\ + \u{25aa7}\ + \u{4202}\ + \u{25bab}\ + \u{7bc6}\ + \u{7bc9}\ + \u{4227}\ + \u{25c80}\ + \u{7cd2}\ + \u{42a0}\ + \u{7ce8}\ + \u{7ce3}\ + \u{7d00}\ + \u{25f86}\ + \u{7d63}\ + \u{4301}\ + \u{7dc7}\ + \u{7e02}\ + \u{7e45}\ + \u{4334}\ + \u{26228}\ + \u{26247}\ + \u{4359}\ + \u{262d9}\ + \u{7f7a}\ + \u{2633e}\ + \u{7f95}\ + \u{7ffa}\ + \u{264da}\ + \u{26523}\ + \u{8060}\ + \u{265a8}\ + \u{8070}\ + \u{2335f}\ + \u{43d5}\ + \u{80b2}\ + \u{8103}\ + \u{440b}\ + \u{813e}\ + \u{5ab5}\ + \u{267a7}\ + \u{267b5}\ + \u{23393}\ + \u{2339c}\ + \u{8204}\ + \u{8f9e}\ + \u{446b}\ + \u{8291}\ + \u{828b}\ + \u{829d}\ + \u{52b3}\ + \u{82b1}\ + \u{82b3}\ + \u{82bd}\ + \u{82e6}\ + \u{26b3c}\ + \u{831d}\ + \u{8363}\ + \u{83ad}\ + \u{8323}\ + \u{83bd}\ + \u{83e7}\ + \u{8353}\ + \u{83ca}\ + \u{83cc}\ + \u{83dc}\ + \u{26c36}\ + \u{26d6b}\ + \u{26cd5}\ + \u{452b}\ + \u{84f1}\ + \u{84f3}\ + \u{8516}\ + \u{273ca}\ + \u{8564}\ + \u{26f2c}\ + \u{455d}\ + \u{4561}\ + \u{26fb1}\ + \u{270d2}\ + \u{456b}\ + \u{8650}\ + \u{8667}\ + \u{8669}\ + \u{86a9}\ + \u{8688}\ + \u{870e}\ + \u{86e2}\ + \u{8728}\ + \u{876b}\ + \u{8786}\ + \u{87e1}\ + \u{8801}\ + \u{45f9}\ + \u{8860}\ + \u{27667}\ + \u{88d7}\ + \u{88de}\ + \u{4635}\ + \u{88fa}\ + \u{34bb}\ + \u{278ae}\ + \u{27966}\ + \u{46be}\ + \u{46c7}\ + \u{8aa0}\ + \u{27ca8}\ + \u{8cab}\ + \u{8cc1}\ + \u{8d1b}\ + \u{8d77}\ + \u{27f2f}\ + \u{20804}\ + \u{8dcb}\ + \u{8dbc}\ + \u{8df0}\ + \u{208de}\ + \u{8ed4}\ + \u{285d2}\ + \u{285ed}\ + \u{9094}\ + \u{90f1}\ + \u{9111}\ + \u{2872e}\ + \u{911b}\ + \u{9238}\ + \u{92d7}\ + \u{92d8}\ + \u{927c}\ + \u{93f9}\ + \u{9415}\ + \u{28bfa}\ + \u{958b}\ + \u{4995}\ + \u{95b7}\ + \u{28d77}\ + \u{49e6}\ + \u{96c3}\ + \u{5db2}\ + \u{9723}\ + \u{29145}\ + \u{2921a}\ + \u{4a6e}\ + \u{4a76}\ + \u{97e0}\ + \u{2940a}\ + \u{4ab2}\ + \u{29496}\ + \u{9829}\ + \u{295b6}\ + \u{98e2}\ + \u{4b33}\ + \u{9929}\ + \u{99a7}\ + \u{99c2}\ + \u{99fe}\ + \u{4bce}\ + \u{29b30}\ + \u{9c40}\ + \u{9cfd}\ + \u{4cce}\ + \u{4ced}\ + \u{9d67}\ + \u{2a0ce}\ + \u{4cf8}\ + \u{2a105}\ + \u{2a20e}\ + \u{2a291}\ + \u{4d56}\ + \u{9efe}\ + \u{9f05}\ + \u{9f0f}\ + \u{9f16}\ + \u{2a600}";