From patchwork Wed Jun 25 12:10:38 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pravin Satpute X-Patchwork-Id: 1713 Received: (qmail 28539 invoked by alias); 25 Jun 2014 12:10:59 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 28521 invoked by uid 89); 25 Jun 2014 12:10:58 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx6-phx2.redhat.com Date: Wed, 25 Jun 2014 08:10:38 -0400 (EDT) From: Pravin Satpute To: "Joseph S. Myers" Cc: libc-alpha@sourceware.org, "Carlos O'Donell" Message-ID: <848135243.32328887.1403698238071.JavaMail.zimbra@redhat.com> In-Reply-To: References: <53A5DCA3.4010108@redhat.com> <1227269003.32244068.1403684984863.JavaMail.zimbra@redhat.com> Subject: Re: [PATCH] [BZ 14094] Update locale data to Unicode 7.0.0 MIME-Version: 1.0 Version 3 ----- Original Message ----- From: "Joseph S. Myers" To: "Pravin Satpute" Cc: libc-alpha@sourceware.org, "Carlos O'Donell" Sent: Wednesday, June 25, 2014 4:36:55 PM Subject: Re: [PATCH] [BZ 14094] Update locale data to Unicode 7.0.0 On Wed, 25 Jun 2014, Pravin Satpute wrote: >> These classes now disable in gen-unicode-ctype.c and also moved this >> file to scripts/ >If you move and change a file at the same time, you should use "git diff >-M" so the changes to the file are shown, rather than separate deletion >and addition of the file. But I don't think moving to scripts/ is a good >idea. I think scripts/ should be for scripts relating to glibc as a >whole, and something specific to a particular subdirectory should go in >that subdirectory - so the new scripts should go in localedata/, and the >existing file stay there. Agree, now all scripts related to localedata in localedata folder. Might be while committing we can create one more folder in localedata/scripts and add all these script there. Regards, Pravin Satpute From 1d29dca0b280c68ffe5ccf19310c8a5bf2e52c06 Mon Sep 17 00:00:00 2001 From: Pravin Satpute Date: Wed, 25 Jun 2014 17:18:45 +0530 Subject: [PATCH] Resolves BZ #14094 #14010 --- ChangeLog | 4 + localedata/ChangeLog | 17 + localedata/ctype-compatibility.py | 213 +++ localedata/ctype-gen.sh | 29 + localedata/gen-unicode-ctype-dcp.py | 98 ++ localedata/gen-unicode-ctype.c | 17 +- localedata/locales/i18n | 2822 +++++++++++++++++++---------------- 7 files changed, 1918 insertions(+), 1282 deletions(-) create mode 100755 localedata/ctype-compatibility.py create mode 100755 localedata/ctype-gen.sh create mode 100755 localedata/gen-unicode-ctype-dcp.py diff --git a/ChangeLog b/ChangeLog index d151410..896f5cb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-06-24 Pravin Satpute + + * include/stdc-predef.h: Updated for latest ISO/IEC 10646 amendment. + 2014-06-25 Joseph Myers * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMENSAT): diff --git a/localedata/ChangeLog b/localedata/ChangeLog index 9dd3cf2..bea9c4d 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,3 +1,20 @@ +2014-06-25 Pravin Satpute + [BZ #14094 #14010] + * locales/i18n: Updated to Unicode 7.0.0 + + * scripts/gen-unicode-ctype.c: Disabled upper, lower + alpha and outdigit classes. + + * scripts/ctype-gen.sh: Shell script to generate LC_CTYPE for + new Unicode version. + + * scripts/gen-unicode-ctype-dcp.py: New script for + generating locales/i18n upper, lower and alpha ctype from + DerivedCoreProperties.txt + + * scripts/ctype-compatibility.py: Script for testing + testing backward compatibility of LC_CTYPE locales/i18n. + 2014-06-20 Stefan Liebler * Makefile (LOCALES): Add en_GB.UTF-8. diff --git a/localedata/ctype-compatibility.py b/localedata/ctype-compatibility.py new file mode 100755 index 0000000..553339d --- /dev/null +++ b/localedata/ctype-compatibility.py @@ -0,0 +1,213 @@ +#!/usr/bin/python +# -*- coding: UTF-8 -i*- +# Copyright (C) 2014 Free Software Foundation, Inc. +# This file is part of the GNU C Library. +# Contributed by Pravin Satpute , 2014. +# +# The GNU C Library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# The GNU C Library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with the GNU C Library; if not, see +# . + +# This script is useful for checking backward compatibility of newly +# generated LC_CTYPE file from gen-unicode-ctype.c and gen-unicode-ctype-dcp.py +# USAGE: python check-backcompatibility.py existing_ctype_file new_ctype_file +# Existing LC_CTYPE file /usr/share/i18n/locale/i18n and new generated 'unicode-ctype' + +import os +import sys + +class ctype: + def __init__(self): + self.upper, self.lower, self.alpha, self.digit, self.space, self.cntrl, self.punct, \ + self.graph, self.printc, self.xdigit, self.blank, self.combining, self.combining3 \ + = [], [], [], [], [], [], [], [], [], [], [], [], [] + +"""Captures Unicode values from character class and add +to ctype struct +""" +def extract_class_and_unichars(filename, struct_ctype): + ipfile = open(filename) + flines = ipfile.readlines() + linecount = len(flines) + i = 0 + for l in flines: + w = l.split() + if len(w) > 1: + if l.split()[0] == "upper": +# print "found uppper", i + process_chars(i+1, struct_ctype.upper, flines) + if l.split()[0] == "lower": + process_chars(i+1, struct_ctype.lower, flines) + if l.split()[0] == "alpha": + process_chars(i+1, struct_ctype.alpha, flines) + if l.split()[0] == "digit": + process_chars(i+1, struct_ctype.digit, flines) + if l.split()[0] == "space": + process_chars(i+1, struct_ctype.space, flines) + if l.split()[0] == "cntrl": + process_chars(i+1, struct_ctype.cntrl, flines) + if l.split()[0] == "punct": + process_chars(i+1, struct_ctype.punct, flines) + if l.split()[0] == "graph": + process_chars(i+1, struct_ctype.graph, flines) + if l.split()[0] == "print": + process_chars(i+1, struct_ctype.printc, flines) + if l.split()[0] == "xdigit": + process_chars(i+1, struct_ctype.xdigit, flines) + if l.split()[0] == "blank": + process_chars(i+1, struct_ctype.blank, flines) + if l.split()[1] == "\"combining\";": +# print "combining" + process_chars(i+1, struct_ctype.combining, flines) + if l.split()[1] == "\"combining_level3\";": +# print "combining_level3" + process_chars(i+1, struct_ctype.combining3, flines) + + i = i+1 +# print "alpha chars group", struct_ctype.alpha + + +"""Breaks each line of i18n and unicode file into Unicode blocks +Separated by ";" and extract Unicode values and add into Struct +""" +def process_chars(line_no, list_name, flines): + for x in range(line_no, len(flines)): +# print x + if len(flines[x].split()) < 1: + break + if flines[x].split()[0] == "%": + continue + + else: +# Break line into Unicode value range + l = flines[x].strip().split(";") + if l[len(l)-1] != "/": + list_lenght = len(l)+1 + else: + list_lenght = len(l) + for i in range (0, list_lenght-1): + individual_word = l[i].split("..") +# print individual_word +# For blocks of characters in ".." + if len(individual_word ) == 1: +# print individual_word[0] + uni_char = individual_word[0][2:len(individual_word[0])-1] + hex_uni_char = hex(int(uni_char,16)) + list_name.append(hex_uni_char) +# For blocks of characters in ".." + if len(individual_word ) == 2: +# print individual_word + uni_char1 = individual_word[0][2:len(individual_word[0])-1] + uni_char2 = individual_word[1][2:len(individual_word[0])-1] +# print int(uni_char1,16), hex(int(uni_char1,16)) + count = 0 + for i in range (int(uni_char1,16), int(uni_char2,16)+1): + list_name.append(hex(int(uni_char1,16)+count)) + count = count + 1 +# For blocks of characters in "..(2).." + if len(individual_word ) == 3: +# print individual_word + uni_char1 = individual_word[0][2:len(individual_word[0])-1] + uni_char2 = individual_word[2][2:len(individual_word[0])-1] +# print int(uni_char1,16), hex(int(uni_char1,16)) +# print int(uni_char2,16), hex(int(uni_char2,16)) + count = 0 + for i in range (int(uni_char1,16), int(uni_char2,16)+1,2): + list_name.append(hex(int(uni_char1,16)+count)) + count = count + 2 +# This condition specifically added for file generated by gen-unicode-ctype.c +# it does not break char group by line + l = flines[x].strip().split(";") + if l[len(l)-1] != "/": + break + +# Compared values added in stuct +def compare_list(old_list, new_list): + for property, value in vars(old_list).iteritems(): + exec("prop = %s %s" % ("new_list.",property)) + print "%s: %d chars in old ctype and %d chars in new ctype" % (property, len(value), len(prop)) + report(value, prop) + +# Report values to stdout +def report(old_list, new_list): + missing_chars = list(set(old_list)-set(old_list).intersection(set(new_list))) + print "Missing %d characters of old ctype in new ctype \n " % len(missing_chars), sorted(missing_chars) + print "\n****************************************************" + + +# This function compares TOLOWER, TOUPPER and TOTITLE pairs of i18n and unicode file +def check_pairs(file_old, file_new): + ipfile = open(file_old) + flines = ipfile.readlines() + linecount = len(flines) + i = 0 + for l in flines: + w = l.split() + if len(w) > 1: + if l.split()[0] == "toupper": + pair_name = "toupper" + print "Processing for TOUPPER pair group" + process_pairs(i+1, flines, file_new, pair_name) + print "Completed processing for TOUPPER pair group" + if l.split()[0] == "tolower": + pair_name = "tolower" + print "Processing for TOLOWER pair group" + process_pairs(i+1, flines, file_new, pair_name) + print "Completed processing for TOLOWER pair group" + if l.split()[1] == "\"totitle\";": + pair_name = "totitle" + print "Processing for TOTITLE pair group" + process_pairs(i+1, flines, file_new, pair_name) + print "Completed processing for TOTITLE pair group" + i = i + 1 + + +""" Split the i18n file line into Unicode pairs and check into +unicode files +""" +def process_pairs(line_no, flines, file_new, pair_name): + f = open(file_new).read() + for x in range(line_no, len(flines)): + if len(flines[x].split()) < 1: + break + if flines[x].split()[0] == "%": + continue + + else: +# Break line into pairs, separated by ; + l = flines[x].strip().split(";") + if l[len(l)-1] != "/": + list_lenght = len(l)+1 + else: + list_lenght = len(l) + for i in range (0, list_lenght-1): + if l[i] not in f: + print "%s not present in %s pair new ctype" % (l[i], pair_name) +# Groups are not separated by line in unicode file + l = flines[x].strip().split(";") + if l[len(l)-1] != "/": + break + + +if __name__ == "__main__": + if len(sys.argv) < 3: + print "USAGE: python check_backcompatibility existing_ctype_file new_ctype_file " + else: + file_i18n = sys.argv[1] + file_unicode = sys.argv[2] + ext_ctype = ctype() + new_ctype = ctype() + extract_class_and_unichars(file_i18n, ext_ctype) + extract_class_and_unichars(file_unicode, new_ctype) + compare_list(ext_ctype, new_ctype) + check_pairs(file_i18n, file_unicode) diff --git a/localedata/ctype-gen.sh b/localedata/ctype-gen.sh new file mode 100755 index 0000000..99d9ba8 --- /dev/null +++ b/localedata/ctype-gen.sh @@ -0,0 +1,29 @@ +#!/bin/bash +# Script to generate new ctype using gen-unicode-ctype.c and +# gen-unicode-ctype-dcp.py +# Copyright (C) 2014 Free Software Foundation, Inc. +# This file is part of the GNU C Library. +# Contributed by Pravin Satpute , 2014. +# +# The GNU C Library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# The GNU C Library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with the GNU C Library; if not, see +# . + +if [ $# -eq 0 ]; then + echo "USAGE: ./ctype-gen.sh UnicodeData.txt DerivedCoreProperties.txt VERSION" + exit 1 +fi +gcc -o gen-unicode-ctype.out gen-unicode-ctype.c +./gen-unicode-ctype.out $1 $3 +python gen-unicode-ctype-dcp.py $2 +rm -rf unicode diff --git a/localedata/gen-unicode-ctype-dcp.py b/localedata/gen-unicode-ctype-dcp.py new file mode 100755 index 0000000..eb1f2e1 --- /dev/null +++ b/localedata/gen-unicode-ctype-dcp.py @@ -0,0 +1,98 @@ +#!/usr/bin/python +# -*- coding: UTF-8 -i*- +# Copyright (C) 2014 Free Software Foundation, Inc. +# This file is part of the GNU C Library. +# Contributed by Pravin Satpute , 2014. +# +# The GNU C Library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# The GNU C Library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with the GNU C Library; if not, see +# . + +# This script generates alpha, upper and lower ctype from +# DerivedCoreProperties.txt file of UCD and add it to "unicode" file generated +# by gen-unicode-ctype.c +# USAGE: python gen-unicode-ctype-dcp.py DerivedCoreProperties.txt + +import os +import sys + +def process_dcp(dcp_file, outfile): + ipfile = open(dcp_file) + flines = ipfile.readlines() + linecount = len(flines) + i = 0 + for l in flines: + w = l.split() + if len(w) > 3: + if (l.split()[3] == "Uppercase") and (l.split()[2] == "Property:"): +# print "uppercase @ ", i + outfile.write("upper \\\n") + write_class(i+3, outfile, flines) + + if (l.split()[3] == "Lowercase") and (l.split()[2] == "Property:"): +# print "lowercase @ ", i + outfile.write("lower \\\n") + write_class(i+3, outfile, flines) + + if (l.split()[3] == "Alphabetic") and (l.split()[2] == "Property:"): +# print "alphabetic @ ", i + outfile.write("alpha \\\n") + write_class(i+3, outfile, flines) + i = i+1 + ipfile.close() + +def write_class(line_no, outfile, flines): + nline_count = 0 + outfile.write(" ") + for x in range(line_no, len(flines)): +# next time counter to write "\n" to file + if nline_count > 6: + outfile.write("/\n ") + nline_count = 0 + if len(flines[x].split()) < 1: + continue + if flines[x].split()[1] == "Total": +# print x + break + if len(flines[x].split()[0].split(".."))==1: +# print flines[x].split()[0].split("..") + outfile.write( ";") + nline_count = nline_count + 1 + else: +# print flines[x].split()[0].split("..") + outfile.write( "..;") + if len(flines[x].split()[0].split("..")[0]) > 4: + nline_count = nline_count + 3 + else: + nline_count = nline_count + 2 + outfile.write("\n") + +if __name__ == "__main__": + if len(sys.argv) < 2: + print "USAGE: python gen-unicode-ctype-dcp.py DerivedCoreProperties.txt" + else: + dcp_file = sys.argv[1] + outfile=open("unicode-ctype","w") + unicode_file=open("unicode") + flines = unicode_file.readlines() + i = 0 + for l in flines: + outfile.write(l) + i = i+1 + if l == "LC_CTYPE\n": + break + process_dcp(dcp_file, outfile) + for x in range(i,len(flines)): + outfile.write(flines[x]) + outfile.close() + unicode_file.close() diff --git a/localedata/gen-unicode-ctype.c b/localedata/gen-unicode-ctype.c index 0c001b2..6dfb95f 100644 --- a/localedata/gen-unicode-ctype.c +++ b/localedata/gen-unicode-ctype.c @@ -634,7 +634,7 @@ output_tables (const char *filename, const char *version) fprintf (stream, "LC_IDENTIFICATION\n"); fprintf (stream, "title \"Unicode %s FDCC-set\"\n", version); - fprintf (stream, "source \"UnicodeData.txt, PropList.txt\"\n"); + fprintf (stream, "source \"UnicodeData.txt, PropList.txt, DerivedCoreProperties.txt\"\n"); fprintf (stream, "address \"\"\n"); fprintf (stream, "contact \"\"\n"); fprintf (stream, "email \"bug-glibc-locales@gnu.org\"\n"); @@ -740,11 +740,18 @@ output_tables (const char *filename, const char *version) } fprintf (stream, "LC_CTYPE\n"); - output_charclass (stream, "upper", is_upper); - output_charclass (stream, "lower", is_lower); - output_charclass (stream, "alpha", is_alpha); + /* upper, lower and alpha classes are no more required. DerivedCoreProperties.txt + file providing ready to use classification for above classed. We are generating these classes + using gen-unicode-ctype-dcp.py script from DerivedCoreProperties.txt. + */ +// output_charclass (stream, "upper", is_upper); +// output_charclass (stream, "lower", is_lower); +// output_charclass (stream, "alpha", is_alpha); output_charclass (stream, "digit", is_digit); - output_charclass (stream, "outdigit", is_outdigit); + /* The "outdigit" information is by default "0" to "9". We don't have to + provide it here since localedef will fill in the bits and it would + prevent locales copy-ing this file define their own values. */ +// output_charclass (stream, "outdigit", is_outdigit); output_charclass (stream, "blank", is_blank); output_charclass (stream, "space", is_space); output_charclass (stream, "cntrl", is_cntrl); diff --git a/localedata/locales/i18n b/localedata/locales/i18n index 4f8b9e1..89092db 100644 --- a/localedata/locales/i18n +++ b/localedata/locales/i18n @@ -12,7 +12,7 @@ fax "" language "" territory "" revision "" -date "2008-04-13" +date "2014-06-24" % category "i18n:2000";LC_IDENTIFICATION category "i18n:2000";LC_CTYPE @@ -30,734 +30,757 @@ END LC_IDENTIFICATION LC_CTYPE % The following is the 14652 i18n fdcc-set LC_CTYPE category. -% It covers Unicode version 5.0.0. +% It covers Unicode version 7.0.0. % The character classes and mapping tables were automatically generated -% using the gen-unicode-ctype.c program. +% using the ctype-gen.sh script. -% The "upper" class reflects the uppercase characters of class "alpha" -upper / -% BASIC LATIN/ - ..;/ -% LATIN-1 SUPPLEMENT/ - ..;..;/ -% LATIN EXTENDED-A/ - ..(2)..;/ - ..(2)..;/ - ..(2)..;/ - ..(2)..;/ -% LATIN EXTENDED-B/ - ;..(2)..;;/ - ..;..;;;/ - ..;;;;/ - ..(2)..;/ - ;;;;;;..;/ - ;;;;;;;;/ - ;;/ - ..(2)..;/ - ..(2)..;/ - ;;;..;..(2)..;/ - ..(2)..;/ - ;;;;/ - ;..;;;;;/ -% BASIC GREEK/ - ;;;/ - ;..;;;;..;/ - ..;..(2)..;/ -% GREEK SYMBOLS AND COPTIC/ - ..(2)..;;/ - ;..;..;/ -% CYRILLIC/ - ..;..(2)..;/ - ;..(2)..;;..(2)..;/ - ..(2)..;/ -% CYRILLIC SUPPLEMENT/ - ..(2)..;/ -% ARMENIAN/ - ..;/ -% GEORGIAN/ -% is not addressed as the letters does not have a uppercase/lowercase relation/ -% well, there are three georgian blocks defined; one caseless (the one usually/ -% used), one defined as uppercase and one as lowercase. defining the uppercase one here/ - ..;/ -% LATIN EXTENDED ADDITIONAL/ - ..(2)..;/ - ..(2)..;;/ - ..(2)..;/ -% GREEK EXTENDED/ - ..;..;..;..;/ - ..;..(2)..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ -% LETTERLIKE SYMBOLS/ - ;..;/ - ;/ -% NUMBER FORMS/ - ..;/ - ;/ -% ENCLOSED ALPHANUMERICS/ - ..;/ -% GLAGOLITIC/ - ..;/ -% LATIN EXTENDED-C/ - ;..;..(2)..;..;/ - ;;;/ -% COPTIC/ - ..(2)..;/ -% CYRILLIC SUPPLEMENT 2/ - ..(2)..;..(2)..;..(2)..;/ -% LATIN EXTENDED-D/ - ..(2)..;..(2)..;..(2)..;/ - ..(2)..;/ -% HALFWIDTH AND FULLWIDTH FORMS/ - ..;/ -% DESERET/ - .. - -% The "lower" class reflects the lowercase characters of class "alpha" -lower / -% BASIC LATIN/ - ..;/ -% LATIN-1 SUPPLEMENT/ - ;..;..;/ -% LATIN EXTENDED-A/ - ..(2)..;..(2)..;/ - ..(2)..;..(2)..;;/ -% LATIN EXTENDED-B/ - ;;;;;;;/ - ;;;;;;;;/ - ;;;;;;;;/ - ;;;..(2)..;/ - ..(2)..;;;;..(2)..;/ - ..(2)..;..(2)..;/ - ;;..(2)..;/ -% IPA EXTENSIONS/ - ;;;;;;;;;/ - ;;;;;;;;..;/ - ;/ -% COMBINING DIACRITICAL MARKS/ - ;/ -% BASIC GREEK/ - ;;;/ - ..;/ - ..;..;/ -% GREEK SYMBOLS AND COPTIC/ - ;;;;..(2)..;..;/ - ;;;/ -% CYRILLIC/ - ..;..(2)..;/ - ;..(2)..;..(2)..;/ - ;/ - ..(2)..;/ -% ARMENIAN/ - ..;/ -% PHONETIC EXTENSIONS/ - ;/ -% LATIN EXTENDED ADDITIONAL/ - ..(2)..;..;;..(2)..;/ -% GREEK EXTENDED/ - ..;..;..;..;/ - ..;..(2)..;..;..;/ - ..;..;..;;;/ - ;;;;;;;;/ - ;/ -% LETTERLIKE SYMBOLS/ - ;/ -% NUMBER FORMS/ - ..;;/ -% ENCLOSED ALPHANUMERICS/ - ..;/ -% GLAGOLITIC/ - ..;/ -% LATIN EXTENDED-C/ - ;;..(2)..;;;;/ - ..;/ -% COPTIC/ - ..(2)..;/ -% GEORGIAN SUPPLEMENT/ -% well, there are three georgian blocks defined; one caseless (the one usually/ -% used), one defined as uppercase and one as lowercase. defining the lowercase one here/ - ..;/ -% CYRILLIC SUPPLEMENT 2/ - ..(2)..;..(2)..;..(2)..;/ -% LATIN EXTENDED-D/ - ..(2)..;;..(2)..;..;/ - ..(2)..;..(2)..;;/ -% HALFWIDTH AND FULLWIDTH FORMS/ - ..;/ -% DESERET/ - .. - -% The "alpha" class of the "i18n" FDCC-set is reflecting -% the recommendations in TR 10176 annex A -alpha / -% BASIC LATIN/ - ..;..;/ -% LATIN-1 SUPPLEMENT/ - ;;;..;..;/ - ..;/ -% LATIN EXTENDED-A/ - ..;/ -% LATIN EXTENDED-B/ - ..;/ -% IPA EXTENSIONS/ - ..;/ -% SPACING MODIFIER LETTERS/ - ..;..;..;/ - ;/ -% COMBINING DIACRITICAL MARKS/ - ;/ -% BASIC GREEK/ - ..;..;..;;/ - ..;;..;/ - ..;/ -% GREEK SYMBOLS AND COPTIC/ - ..;..;/ -% CYRILLIC/ - ..;..;/ -% CYRILLIC SUPPLEMENT/ - ..;/ -% ARMENIAN/ - ..;;..;/ -% HEBREW/ - ..;..;/ -% ARABIC/ - ..;..;..;/ - ;..;..;..;;/ -% SYRIAC/ - ;..;..;/ -% ARABIC SUPPLEMENT/ - ..;/ -% THAANA/ - ..;;/ -% NKO/ - ..;..;;/ -% - All Matras of Indic and Sinhala are moved from punct to alpha class/ -% - Added Unicode 5.1 charctares of Indic scripts/ -% DEVANAGARI/ - ..;..;/ - ..;..;/ - ;;;..;/ -% TABLE 18 BENGALI/ - ..;..;;;..;/ - ..;;..;..;/ - ;;..;;/ - ;;..;..;/ -% GURMUKHI/ - ..;..;;;..;/ - ..;;;;;;;/ - ;..;;;..;;/ - ..;;..;/ -% GUJARATI/ - ..;/ - ..;..;..;/ - ..;;;..;..;/ - ..;..;/ - ;..;;/ -% ORIYA/ - ..;..;;;..;/ - ..;;;..;..;/ - ..;..;..;;;/ - ..;;;/ -% TAMIL/ - ;;..;..;..;;/ - ;;;;;;..;/ - ..;..;..;..;/ - ;;..;/ -% TELUGU/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ -% KANNADA/ - ..;..;..;..;/ - ..;..;..;..;..;/ - ..;;..;;;/ -% MALAYALAM/ - ..;..;..;..;/ - ..;..;/ - ..;..;;/ - ..;..;/ -% SINHALA/ - ..;..;..;..;;/ - ..;;/ - ..;;..;..;/ -% THAI/ - ..;..;..;..;/ -% LAO/ - ..;;..;;;/ - ..;..;..;;;/ - ..;..;..;;/ - ..;;..;/ -% TIBETAN/ - ;..;..;..;/ -% MYANMAR/ - ..;..;..;;;/ - ;..;..;;/ -% GEORGIAN/ - ..;..;;/ -% HANGUL JAMO/ - ..;..;..;/ -% ETHIOPIC/ - ..;..;/ - ..;;..;..;/ - ..;..;..;/ - ..;;..;..;/ - ..;/ - ..;..;/ -% ETHIOPIC EXTENDED/ - ..;/ -% CHEROKEE/ - ..;/ -% UNIFIED CANADIAN ABORIGINAL SYLLABICS/ - ..;..;/ -% OGHAM/ - ..;/ -% RUNIC/ - ..;..;/ -% TAGALOG/ - ..;..;/ -% HANUNOO/ - ..;/ -% BUHID/ - ..;/ -% TAGBANWA/ - ..;..;/ -% KHMER/ - ..;;;/ -% MONGOLIAN/ - ..;..;;/ -% LIMBU/ - ..;..;/ -% TAI LE/ - ..;..;/ -% NEW TAI LUE/ - ..;..;..;/ -% BUGINESE/ - ..;/ -% BALINESE/ - ..;..;..;/ -% SUNDANESE/ - ..;..;/ -% LEPCHA/ - ..;..;/ -% OL CHIKI/ - ..;/ -% PHONETIC EXTENSIONS/ - ..;/ -% LATIN EXTENDED ADDITIONAL/ - ..;..;/ -% GREEK EXTENDED/ - ..;..;..;..;/ - ..;;;;..;/ - ..;..;;..;/ - ..;..;..;..;/ - ..;..;/ -% SUPERSCRIPTS AND SUBSCRIPTS/ - ;;..;/ -% LETTERLIKE SYMBOLS/ - ;;..;;..;;/ - ;..;..;/ - ..;..;;/ -% NUMBER FORMS/ - ..;/ -% ENCLOSED ALPHANUMERICS/ - ..;/ -% GLAGOLITIC/ - ..;..;/ -% LATIN EXTENDED-C/ - ..;..;/ -% COPTIC/ - ..;/ -% GEORGIAN SUPPLEMENT/ - ..;/ -% TIFINAGH/ - ..;;/ -% ETHIOPIC EXTENDED/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;/ -% CJK SYMBOLS AND PUNCTUATION/ - ..;..;..;..;/ -% HIRAGANA/ - ..;..;/ -% KATAKANA/ - ..;..;/ -% BOPOMOFO/ - ..;/ -% HANGUL COMPATIBILITY JAMO/ - ..;/ -% BOPOMOFO EXTENDED/ - ..;/ -% KATAKANA PHONETIC EXTENSIONS/ - ..;/ -% CJK UNIFIED IDEOGRAPHS EXTENSION/ - ..;/ -% CJK UNIFIED IDEOGRAPHS/ - ..;/ -% YI SYLLABLES/ - ..;/ -% VAI SYLLABLES/ - ..;..;..;/ -% CYRILLIC SUPPLEMENT 2/ - ..;..;..;/ -% LATIN EXTENDED-D/ - ..;..;..;/ -% SYLOTI NEGRI/ - ;;..;..;..;/ -% PHAGS PA/ - ..;/ -% SAURASHTRA/ - ..;/ -% KAYAH LI/ - ..;/ -% REJANG/ - ..;/ -% CHAM/ - ..;..;..;/ -% HANGUL SYLLABLES/ - ..;/ -% CJK COMPATIBILITY IDEOGRAPHS/ - ..;..;/ - ..;/ -% ALPHABETIC PRESENTATION FORMS/ - ..;..;;..;/ - ..;..;;;;;/ - ;..;/ -% ARABIC PRESENTATION FORMS-A/ - ..;..;..;..;/ - ..;/ -% ARABIC PRESENTATION FORMS-B/ - ..;..;/ -% HALFWIDTH AND FULLWIDTH FORMS/ - ..;..;..;..;/ - ..;..;..;/ -% LINEAR B SYLLABARY/ - ..;..;/ - ..;..;/ - ..;..;/ -% LINEAR B IDEOGRAMS/ - ..;/ -% ANCIENT GREEK NUMBERS/ - ..;/ -% LYCIAN/ - ..;/ -% CARIAN/ - ..;/ -% OLD ITALIC/ - ..;/ -% GOTHIC/ - ..;/ -% UGARITIC/ - ..;/ -% OLD PERSIAN/ - ..;..;/ - ..;/ -% DESERET/ - ..;/ -% SHAVIAN/ - ..;/ -% OSMANYA/ - ..;..;/ -% CYPRIOT SYLLABARY/ - ..;;..;/ - ..;;;/ -% PHOENICIAN/ - ..;;..;/ -% KHAROSHTI/ - ..;..;/ -% CUNEIFORM/ - ..;/ -% CUNEIFORM NUMBERS AND PONCTUATION/ - ..;/ -% BYZANTINE MUSICAL SYMBOLS/ -% MATHEMATICAL ALPHANUMERIC SYMBOLS/ - ..;..;/ - ..;;..;/ - ..;..;;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ -% CJK UNIFIED IDEOGRAPHS EXTENSION/ - ..;/ -% CJK COMPATIBILITY IDEOGRAPHS SUPPLEMENT/ - ..;/ -% The non-ASCII number characters are included here because ISO C 99 / -% forbids us to classify them as digits; however, they behave more like / -% alphanumeric than like punctuation. / -% ARABIC/ - ..;..;/ -% DEVANAGARI/ - ..;/ -% BENGALI/ - ..;/ -% GURMUKHI/ - ..;/ -% GUJARATI/ - ..;/ -% ORIYA/ - ..;/ -% TAMIL/ - ..;/ -% TELUGU/ - ..;..;/ -% KANNADA/ - ..;/ -% MALAYALAM/ - ..;..;/ -% THAI/ - ..;/ -% LAO/ - ..;/ -% TIBETAN/ - ..;/ -% MYANMAR/ - ..;/ -% KHMER/ - ..;/ -% MONGOLIAN/ - ..;/ -% SUNDANESE/ - ..;/ -% LEPCHA/ - ..;/ -% OL CHIKI/ - ..;/ -% VAI/ - ..;/ -% SAURASHTRA/ - ..;/ -% KAYAH LI/ - ..;/ -% CHAM/ - ..;/ -% HALFWIDTH AND FULLWIDTH FORMS/ - .. - -% The "digit" class must only contain the BASIC LATIN digits, says ISO C 99 -% (sections 7.25.2.1.5 and 5.2.1). +alpha \ + ..;..;;;;/ + ..;..;..;;/ + ..;..;..;;/ + ..;..;..;..;/ + ;;;..;;..;/ + ;..;;;..;/ + ;..;..;..;/ + ..;..;;..;/ + ..;;..;..;/ + ;..;..;..;/ + ..;;..;..;/ + ..;..;;..;/ + ;..;..;..;/ + ..;;..;..;/ + ;;;..;..;/ + ..;..;;..;/ + ..;;..;..;/ + ;..;;..;;/ + ..;..;..;..;/ + ..;;..;;;/ + ;..;..;..;/ + ..;;..;..;/ + ..;;..;;..;/ + ..;..;..;..;/ + ;..;;..;..;/ + ..;..;;;..;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ;..;;..;..;/ + ;..;;..;..;/ + ..;..;..;..;/ + ;..;..;..;/ + ;..;;..;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ;;;;..;..;/ + ..;;;..;..;/ + ..;;;;..;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;;..;..;/ + ..;;;;..;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ..;;..;..;/ + ..;..;..;..;/ + ;;;..;;..;/ + ..;;..;;..;/ + ..;..;;..;/ + ..;..;..;;/ + ..;..;..;..;/ + ;;..;..;..;/ + ..;..;..;..;/ + ;..;..;..;/ + ;..;..;..;/ + ;..;..;..;/ + ;;..;;..;/ + ;;..;..;..;/ + ;;..;..;;/ + ..;..;..;;/ + ..;;;..;;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;;..;..;/ + ;..;..;..;/ + ..;..;;;..;/ + ..;..;..;..;/ + ;..;..;;;/ + ;..;;;..;/ + ;..;..;..;/ + ;..;..;..;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;;..;..;/ + ;..;;;..;/ + ;..;..;;;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;;..;/ + ;;;..;;;/ + ..;..;..;..;/ + ;..;;..;;/ + ..;;;..;;/ + ;..;..;;..;/ + ;..;..;..;/ + ..;..;..;;/ + ..;..;;;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;;..;/ + ..;..;..;..;/ + ..;..;..;;/ + ;;..;..;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ;;..;;;..;/ + ;..;;;;..;/ + ..;..;;..;/ + ..;;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;;;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ..;..;..;;/ + ;;;..;..;/ + ..;;;..;..;/ + ;..;..;;..;/ + ..;..;..;..;/ + ..;..;;..;/ + ..;..;..;;/ + ..;..;..;;/ + ..;;..;..;/ + ;..;..;..;/ + ..;;..;;..;/ + ..;..;;..;/ + ;..;..;..;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;;..;..;/ + ..;..;;..;/ + ..;;..;..;/ + ..;..;;..;/ + ;..;;..;..;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;;;..;;/ + ..;;..;;;/ + ..;..;..;..;/ + ;;;..;;..;/ + ;..;..;;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;;..;..;/ + ..;..;..;..;/ + ..;..;;;..;/ + ..;..;;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;;/ + ..;;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;;..;/ + ..;;..;/ + ..;..;..;/ + ..;..;..;/ + ;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;;;;..;/ + ..;;..;/ + ..;..;..;/ + ..;..;..;/ + ..;;..;/ + ..;;..;/ + ;..;..;/ + ..;;..;/ + ;..;..;/ + ..;..;..;/ + ;;..;;..;/ + ..;;..;/ + ..;..;..;/ + ..;..;..;/ + ;..;;..;/ + ..;..;;/ + ..;..;..;/ + ..;..;;/ + ;..;..;/ + ;..;;..;/ + ..;..;..;/ + ..;;..;/ + ..;..;..;/ + ;;;;..;/ + ;;;..;..;/ + ..;;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ;..;..;/ + ..;..;..;/ + ..;..;;/ + ..;..;..;/ + ;..;..;/ + ..;;..;/ + ..;..;..;/ + ..;..;..;/ + ..;;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;;;..;/ + ..;;;;;/ + ;;..;..;/ + ;;;;;;..;/ + ;..;..;/ + ..;..;;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + +lower \ + ..;;;;..;/ + ..;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;..;;;;;/ + ;;;..;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;..;;;;/ + ..;;;..;;/ + ;;;;..;;/ + ;;;..;..;/ + ;;;;;;;/ + ;;;..;;;/ + ;;;;;;..;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;..;;..;/ + ;;;;;..;/ + ..;..;..;..;/ + ;;;;;..;/ + ;..;..;..;/ + ;;;;;;;/ + ;;;;..;;/ + ;..;..;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;..;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;..;/ + ..;..;..;;/ + ..;..;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;..;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;;..;/ + ..;..;..;..;/ + ..;..;;;..;/ + ;..;;;;;/ + ..;..;;..;/ + ;..;..;;..;/ + ;;;;..;..;/ + ..;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;..;;;;/ + ..;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;..;/ + ;;;;;;..;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;..;;/ + ;;;;;;;/ + ;;..;;;;/ + ;;;;;;;/ + ..;;..;..;/ + ..;..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;;/ + +upper \ + ..;..;..;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;..;;;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ;;..;;;..;/ + ..;;..;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ..;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;..;..;/ + ;..;;;;;/ + ;;;;;..;/ + ;..;..;..;/ + ;..;;;;;/ + ;;;;;;;/ + ;;;..;..;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;..;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;..;..;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;..;/ + ..;..;..;..;/ + ;;;;..;..;/ + ..;..;..;..;/ + ;;..;..;;/ + ..;;;;..;/ + ..;..;;..;/ + ;..;..;;..;/ + ;;;..;;;/ + ..;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;..;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;..;..;/ + ..;..;..;/ + ..;..;..;/ + ;..;;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;..;/ + ..;..;;/ + ..;..;..;/ + digit / .. - % The "outdigit" information is by default "0" to "9". We don't have to % provide it here since localedef will fill in the bits and it would % prevent locales copy-ing this file define their own values. -% outdigit .. - -space / -% ISO/IEC 6429/ - ..;/ -% BASIC LATIN/ - ;/ -% OGHAM/ - ;/ -% MONGOL/ - ;/ -% GENERAL PUNCTUATION/ - ..;..;;;;/ -% CJK SYMBOLS AND PUNCTUATION, HIRAGANA/ +%outdigit / +% .. +blank / + ;;;..;..;;/ - +space / + ..;;;..;..;/ + ..;; cntrl / - ..;..;/ -% Treat the Line/Paragraph Separators as control characters, like Line Feed./ - ; - + ..;..;.. punct / ..;..;..;..;/ ..;..;..;..;/ - ;;..;..;..;/ - ..;..;..;;/ - ..;;;..;..;/ - ..;..;..;..;/ - ..;..;..;/ - ..;..;;;..;/ - ..;..;..;;;/ - ..;..;..;..;/ - ;;/ - ;/ - ;;;..;;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;;;/ - ;..;..;/ + ;;..;..;..;/ + ;..;..;;;/ + ..;;;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ;;..;..;..;/ + ..;;;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;..;;..;;/ + ..;..;..;;/ + ..;..;..;;/ + ..;..;..;;/ + ..;;..;;..;/ + ..;..;..;..;/ + ..;;..;..;/ + ..;..;..;;/ + ..;;..;..;/ + ..;;..;..;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;;..;..;;/ + ..;;..;;..;/ + ..;;;;;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;;..;..;;/ ..;..;..;..;/ ..;..;..;..;/ - ..;;..;..;;/ + ..;;..;..;;/ ..;..;;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;/ - ..;..;;..;/ - ..;..;..;..;/ - ;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ;..;..;;;;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;;..;;/ - ..;..;..;..;/ - ..;;..;..;/ - ..;..;/ - ..;..;..;/ + ..;..;;..;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;;..;..;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;..;;;;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;;;..;..;/ ..;..;..;..;/ ..;..;..;..;/ ..;..;;;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;/ - ..;;;;..;/ - ..;;;..;..;/ - ..;..;;..;;/ - ..;..;/ - ..;;;..;/ - ..;..;..;..;/ - ..;..;;..;/ - ..;..;..;..;/ - ..;..;..;/ - ..;..;/ - ..;..;;/ - ;..;;/ - ..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;;..;..;/ + ..;..;;;;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;;..;/ + ..;..;;..;;/ + ..;..;..;..;/ + ;..;..;..;;/ + ..;..;..;;/ + ..;..;;;..;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;..;..;/ + ..;..;/ + ..;..;/ + ..;;..;/ + ..;..;/ + ..;;;;/ + ..;..;/ + ..;..;;/ + ;..;..;/ ..;..;/ ..;..;/ - ..;..;/ + ..;..;;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;;/ + ..;..;/ + ..;..;;/ + ..;..;/ + ..;;..;/ + ..;..;/ + ..;;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ ..;..;/ ..;..;/ ..;;;;;/ ;;;;;;/ - ;..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;;/ + ..;..;/ ..;.. - +xdigit / + ..;..;.. graph / - ..;..;..;/ - ..;;..;..;/ - ..;..;..;/ - ..;..;..;..;/ - ..;..;..;/ - ..;..;..;/ - ..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;..;..;..;/ ..;..;;..;/ ..;..;..;;/ - ..;..;..;..;/ + ..;..;..;..;/ ..;..;..;..;/ ..;..;..;;/ ..;..;..;;/ - ..;/ - ;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ;..;..;;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;;..;/ - ..;..;..;..;/ - ..;..;;;..;/ - ..;..;..;..;/ - ..;..;..;..;/ + ..;;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;..;..;;;/ + ..;..;..;..;/ + ..;..;..;..;/ ..;..;..;..;/ - ..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;;..;/ - ..;..;..;..;/ - ..;/ - ..;;..;;..;/ - ;..;..;..;/ - ..;..;;..;;/ - ;..;..;..;;/ - ;..;..;..;/ - ..;;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;;;/ - ..;..;/ - ..;..;..;..;/ - ..;..;;..;/ - ..;..;..;..;/ - ..;;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;/ - ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;;..;;..;/ + ..;..;..;..;/ + ..;;..;;;/ + ..;..;..;;;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ..;..;..;;;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;..;;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ ..;..;..;..;/ ;;;..;..;/ ..;..;..;..;/ ..;..;;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;;..;;/ - ..;..;..;..;/ - ..;;..;..;/ - ..;/ - ..;..;..;..;/ - ..;..;..;;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ;..;..;..;/ - ..;..;..;..;/ - ..;..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ;;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;;..;..;/ + ..;..;..;..;/ + ..;..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ ..;..;/ ..;..;/ - ..;;..;/ - ..;;;/ - ..;;..;/ + ..;..;;/ + ..;..;/ + ..;..;;/ + ..;..;;/ + ..;..;/ + ..;..;/ + ..;;..;/ + ..;..;/ ..;..;/ ..;..;/ ..;..;/ - ..;..;/ - ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ ..;..;/ ..;..;/ ..;..;/ @@ -770,109 +793,128 @@ graph / ..;..;;/ ..;..;/ ..;..;/ - ..;..;/ - ..;..;;/ + ..;..;/ + ..;..;/ + ..;;;/ + ..;..;;/ + ;;;;;/ + ..;..;;/ + ;;;;;/ + ..;;..;/ + ..;..;/ + ..;;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;;/ ..;..;/ ..;.. - print / - ..;..;..;/ - ..;;..;..;/ - ..;..;..;/ - ..;..;..;..;/ - ..;..;..;/ - ..;..;..;/ - ..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;..;..;..;/ ..;..;;..;/ ..;..;..;;/ - ..;..;..;..;/ + ..;..;..;..;/ ..;..;..;..;/ ..;..;..;;/ ..;..;..;;/ - ..;/ - ;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ;..;..;;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;;..;/ - ..;..;..;..;/ - ..;..;;;..;/ - ..;..;..;..;/ - ..;..;..;..;/ + ..;;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;..;..;;;/ + ..;..;..;..;/ + ..;..;..;..;/ ..;..;..;..;/ - ..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;;..;/ - ..;..;..;..;/ - ..;/ - ..;;..;;..;/ - ;..;..;..;/ - ..;..;;..;;/ - ;..;..;..;;/ - ;..;..;..;/ - ..;;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;;;/ - ..;..;/ - ..;..;..;..;/ - ..;..;;..;/ - ..;..;..;..;/ - ..;;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;;..;;..;/ + ..;..;..;..;/ + ..;;..;;;/ + ..;..;..;;;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;..;..;..;/ + ..;..;..;;;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;..;;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ ..;..;..;..;/ ..;..;..;..;/ - ..;..;..;..;/ - ..;..;;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ;;;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ;..;;..;..;/ - ..;..;..;;/ - ..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;/ - ..;..;..;/ - ..;..;..;..;/ - ;..;..;..;/ - ..;/ - ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;;;/ + ;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;;;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ ..;..;..;;/ - ..;..;..;..;/ + ..;..;..;..;/ ..;..;..;..;/ - ..;..;..;..;/ + ..;..;..;..;/ ..;..;;..;/ ..;..;..;..;/ ..;..;..;/ @@ -880,47 +922,222 @@ print / ..;..;/ ..;..;/ ..;..;/ - ..;..;/ - ..;..;/ + ..;..;/ + ..;;..;/ ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;;..;/ + ..;..;/ ..;;..;/ - ..;;;/ - ..;;..;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;;..;/ - ..;..;;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;;/ - ..;..;/ - ..;..;/ - ..;..;/ - ..;..;;/ + ..;;..;/ + ..;..;/ + ..;..;;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;;/ + ..;..;/ + ..;;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;;/ + ;..;..;/ + ;;;;;;/ + ..;..;;/ + ;;;;;/ + ..;;..;/ + ..;..;/ + ..;;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;;/ ..;..;/ ..;.. - -% The "xdigit" class must only contain the BASIC LATIN digits and A-F, a-f, -% says ISO C 99 (sections 7.25.2.1.12 and 6.4.4.1). -xdigit / - ..;..;.. - -blank / - ;;;;..;..;/ - ; - +class "combining"; / + ..;..;..;;/ + ..;..;;..;/ + ..;;..;..;/ + ..;..;;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;;..;..;/ + ..;;..;..;;/ + ..;..;..;;/ + ..;;..;;..;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;..;;..;/ + ..;..;;..;/ + ..;..;..;..;/ + ..;..;;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ;..;..;;..;/ + ;..;..;;..;/ + ..;;..;..;/ + ..;..;;;;/ + ..;..;..;..;/ + ..;;..;..;/ + ..;..;..;..;/ + ..;;..;..;/ + ..;..;..;..;/ + ..;;..;;..;/ + ..;..;..;..;/ + ..;..;;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;;..;..;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;..;;..;;/ + ;;..;..;..;/ + ..;..;..;..;/ + ..;;..;;..;/ + ..;;..;..;/ + ..;;..;..;/ + ..;..;;..;/ + ..;;;..;/ + ..;..;/ + ..;..;;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;;..;/ + ..;..;/ + ..;..;;/ + ..;..;/ + ..;;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;.. +class "combining_level3"; / + ..;;..;..;;/ + ..;;..;..;;/ + ;..;..;..;/ + ..;..;..;..;/ + ..;;..;..;/ + ..;;..;..;;/ + ..;..;..;;/ + ..;;..;;..;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;..;;..;/ + ..;..;;..;/ + ..;..;..;..;/ + ..;..;;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ;..;..;;..;/ + ;..;..;;..;/ + ..;;..;..;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ..;..;..;..;/ + ;..;..;..;/ + ..;..;..;;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;..;;;;/ + ..;..;..;..;/ + ..;..;..;;/ + ..;;..;..;/ + ..;..;..;..;/ + ;..;..;/ + ..;;;;;/ + ..;..;/ + ..;..;/ + ..;;..;/ + ..;..;/ + ..;..;;/ + ..;..;/ + ..;;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + ..;..;/ + .. toupper / (,);(,);(,);(,);/ (,);(,);(,);(,);/ @@ -971,18 +1188,19 @@ toupper / (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);/ - (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ @@ -992,47 +1210,49 @@ toupper / (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ @@ -1042,38 +1262,38 @@ toupper / (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ @@ -1122,20 +1342,20 @@ toupper / (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ - (,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ @@ -1145,13 +1365,37 @@ toupper / (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ (,);(,);/ (,);(,);/ (,);(,);/ @@ -1171,8 +1415,23 @@ toupper / (,);(,);/ (,);(,);/ (,);(,);/ - (,);(,) - + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,) tolower / (,);(,);(,);(,);/ (,);(,);(,);(,);/ @@ -1231,7 +1490,7 @@ tolower / (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ - (,);(,);(,);/ + (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ @@ -1239,149 +1498,151 @@ tolower / (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ @@ -1394,34 +1655,75 @@ tolower / (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,);(,);/ - (,) - + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,) map "totitle"; / (,);(,);(,);(,);/ (,);(,);(,);(,);/ @@ -1472,15 +1774,19 @@ map "totitle"; / (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ (,);(,);(,);(,);/ - (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ @@ -1490,47 +1796,49 @@ map "totitle"; / (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ @@ -1540,37 +1848,38 @@ map "totitle"; / (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ @@ -1619,19 +1928,20 @@ map "totitle"; / (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ @@ -1641,13 +1951,37 @@ map "totitle"; / (,);(,);(,);(,);/ (,);(,);(,);(,);/ (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);(,);/ - (,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ + (,);(,);(,);(,);/ (,);(,);/ (,);(,);/ (,);(,);/ @@ -1667,89 +2001,23 @@ map "totitle"; / (,);(,);/ (,);(,);/ (,);(,);/ - (,);(,) - -% The "combining" class reflects ISO/IEC 10646-1 annex B.1 -% That is, all combining characters (level 2+3). -class "combining"; / - ..;..;..;..;/ - ;..;..;;..;/ - ..;;..;..;/ - ..;..;;..;/ - ..;..;..;;/ - ..;..;..;..;/ - ;..;..;..;;/ - ..;..;;..;/ - ..;..;;..;/ - ;..;/ - ;..;..;..;/ - ..;..;;..;/ - ..;..;..;;/ - ..;..;..;;;/ - ..;..;..;..;/ - ..;..;..;;/ - ..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ;..;..;;..;/ - ;..;..;;..;/ - ..;;..;..;/ - ..;..;;;;/ - ..;..;..;..;/ - ..;;..;/ - ..;..;..;..;/ - ..;..;;/ - ;..;..;/ - ..;..;..;;/ - ..;;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;;;;;/ - ;..;;..;..;/ - ..;..;/ - ..;..;;/ - ..;..;/ - ..;..;/ - ..;..;/ - .. - -% The "combining_level3" class reflects ISO/IEC 10646-1 annex B.2 -% That is, combining characters of level 3. -class "combining_level3"; / - ..;;..;..;;/ - ..;;..;;;;/ - ..;..;;..;/ - ..;..;;..;/ - ..;..;;..;/ - ..;;..;..;/ - ..;;..;;..;/ - ;/ - ..;..;..;..;/ - ..;;..;..;/ - ..;..;;..;/ - ..;..;;;..;/ - ..;..;..;..;/ - ..;/ - ..;;..;..;/ - ..;..;..;..;/ - ..;..;..;;/ - ..;/ - ..;;..;;..;/ - ..;;..;..;;/ - ..;..;..;..;/ - ..;;..;..;/ - ..;..;..;..;/ - ..;/ - ..;..;;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;..;..;/ - ..;..;;;;/ - ..;;..;..;/ - ..;;;;;/ - ..;.. + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,);/ + (,);(,) translit_start -- 1.9.3