xref: /PHP-7.4/ext/pcre/pcre2lib/pcre2_tables.c (revision 9f2d0395)
1 /*************************************************
2 *      Perl-Compatible Regular Expressions       *
3 *************************************************/
4 
5 /* PCRE is a library of functions to support regular expressions whose syntax
6 and semantics are as close as possible to those of the Perl 5 language.
7 
8                        Written by Philip Hazel
9      Original API code Copyright (c) 1997-2012 University of Cambridge
10           New API code Copyright (c) 2016-2019 University of Cambridge
11 
12 -----------------------------------------------------------------------------
13 Redistribution and use in source and binary forms, with or without
14 modification, are permitted provided that the following conditions are met:
15 
16     * Redistributions of source code must retain the above copyright notice,
17       this list of conditions and the following disclaimer.
18 
19     * Redistributions in binary form must reproduce the above copyright
20       notice, this list of conditions and the following disclaimer in the
21       documentation and/or other materials provided with the distribution.
22 
23     * Neither the name of the University of Cambridge nor the names of its
24       contributors may be used to endorse or promote products derived from
25       this software without specific prior written permission.
26 
27 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
28 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
31 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 POSSIBILITY OF SUCH DAMAGE.
38 -----------------------------------------------------------------------------
39 */
40 
41 /* This module contains some fixed tables that are used by more than one of the
42 PCRE2 code modules. The tables are also #included by the pcre2test program,
43 which uses macros to change their names from _pcre2_xxx to xxxx, thereby
44 avoiding name clashes with the library. In this case, PCRE2_PCRE2TEST is
45 defined. */
46 
47 #ifndef PCRE2_PCRE2TEST           /* We're compiling the library */
48 #ifdef HAVE_CONFIG_H
49 #include "config.h"
50 #endif
51 #include "pcre2_internal.h"
52 #endif /* PCRE2_PCRE2TEST */
53 
54 
55 /* Table of sizes for the fixed-length opcodes. It's defined in a macro so that
56 the definition is next to the definition of the opcodes in pcre2_internal.h.
57 This is mode-dependent, so is skipped when this file is included by pcre2test. */
58 
59 #ifndef PCRE2_PCRE2TEST
60 const uint8_t PRIV(OP_lengths)[] = { OP_LENGTHS };
61 #endif
62 
63 /* Tables of horizontal and vertical whitespace characters, suitable for
64 adding to classes. */
65 
66 const uint32_t PRIV(hspace_list)[] = { HSPACE_LIST };
67 const uint32_t PRIV(vspace_list)[] = { VSPACE_LIST };
68 
69 /* These tables are the pairs of delimiters that are valid for callout string
70 arguments. For each starting delimiter there must be a matching ending
71 delimiter, which in fact is different only for bracket-like delimiters. */
72 
73 const uint32_t PRIV(callout_start_delims)[] = {
74   CHAR_GRAVE_ACCENT, CHAR_APOSTROPHE, CHAR_QUOTATION_MARK,
75   CHAR_CIRCUMFLEX_ACCENT, CHAR_PERCENT_SIGN, CHAR_NUMBER_SIGN,
76   CHAR_DOLLAR_SIGN, CHAR_LEFT_CURLY_BRACKET, 0 };
77 
78 const uint32_t PRIV(callout_end_delims[]) = {
79   CHAR_GRAVE_ACCENT, CHAR_APOSTROPHE, CHAR_QUOTATION_MARK,
80   CHAR_CIRCUMFLEX_ACCENT, CHAR_PERCENT_SIGN, CHAR_NUMBER_SIGN,
81   CHAR_DOLLAR_SIGN, CHAR_RIGHT_CURLY_BRACKET, 0 };
82 
83 
84 /*************************************************
85 *           Tables for UTF-8 support             *
86 *************************************************/
87 
88 /* These tables are required by pcre2test in 16- or 32-bit mode, as well
89 as for the library in 8-bit mode, because pcre2test uses UTF-8 internally for
90 handling wide characters. */
91 
92 #if defined PCRE2_PCRE2TEST || \
93    (defined SUPPORT_UNICODE && \
94     defined PCRE2_CODE_UNIT_WIDTH && \
95     PCRE2_CODE_UNIT_WIDTH == 8)
96 
97 /* These are the breakpoints for different numbers of bytes in a UTF-8
98 character. */
99 
100 const int PRIV(utf8_table1)[] =
101   { 0x7f, 0x7ff, 0xffff, 0x1fffff, 0x3ffffff, 0x7fffffff};
102 
103 const int PRIV(utf8_table1_size) = sizeof(PRIV(utf8_table1)) / sizeof(int);
104 
105 /* These are the indicator bits and the mask for the data bits to set in the
106 first byte of a character, indexed by the number of additional bytes. */
107 
108 const int PRIV(utf8_table2)[] = { 0,    0xc0, 0xe0, 0xf0, 0xf8, 0xfc};
109 const int PRIV(utf8_table3)[] = { 0xff, 0x1f, 0x0f, 0x07, 0x03, 0x01};
110 
111 /* Table of the number of extra bytes, indexed by the first byte masked with
112 0x3f. The highest number for a valid UTF-8 first byte is in fact 0x3d. */
113 
114 const uint8_t PRIV(utf8_table4)[] = {
115   1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
116   1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
117   2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
118   3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5 };
119 
120 #endif /* UTF-8 support needed */
121 
122 
123 #ifdef SUPPORT_UNICODE
124 
125 /* Table to translate from particular type value to the general value. */
126 
127 const uint32_t PRIV(ucp_gentype)[] = {
128   ucp_C, ucp_C, ucp_C, ucp_C, ucp_C,  /* Cc, Cf, Cn, Co, Cs */
129   ucp_L, ucp_L, ucp_L, ucp_L, ucp_L,  /* Ll, Lu, Lm, Lo, Lt */
130   ucp_M, ucp_M, ucp_M,                /* Mc, Me, Mn */
131   ucp_N, ucp_N, ucp_N,                /* Nd, Nl, No */
132   ucp_P, ucp_P, ucp_P, ucp_P, ucp_P,  /* Pc, Pd, Pe, Pf, Pi */
133   ucp_P, ucp_P,                       /* Ps, Po */
134   ucp_S, ucp_S, ucp_S, ucp_S,         /* Sc, Sk, Sm, So */
135   ucp_Z, ucp_Z, ucp_Z                 /* Zl, Zp, Zs */
136 };
137 
138 /* This table encodes the rules for finding the end of an extended grapheme
139 cluster. Every code point has a grapheme break property which is one of the
140 ucp_gbXX values defined in pcre2_ucp.h. These changed between Unicode versions
141 10 and 11. The 2-dimensional table is indexed by the properties of two adjacent
142 code points. The left property selects a word from the table, and the right
143 property selects a bit from that word like this:
144 
145   PRIV(ucp_gbtable)[left-property] & (1u << right-property)
146 
147 The value is non-zero if a grapheme break is NOT permitted between the relevant
148 two code points. The breaking rules are as follows:
149 
150 1. Break at the start and end of text (pretty obviously).
151 
152 2. Do not break between a CR and LF; otherwise, break before and after
153    controls.
154 
155 3. Do not break Hangul syllable sequences, the rules for which are:
156 
157     L may be followed by L, V, LV or LVT
158     LV or V may be followed by V or T
159     LVT or T may be followed by T
160 
161 4. Do not break before extending characters or zero-width-joiner (ZWJ).
162 
163 The following rules are only for extended grapheme clusters (but that's what we
164 are implementing).
165 
166 5. Do not break before SpacingMarks.
167 
168 6. Do not break after Prepend characters.
169 
170 7. Do not break within emoji modifier sequences or emoji zwj sequences. That
171    is, do not break between characters with the Extended_Pictographic property.
172    Extend and ZWJ characters are allowed between the characters; this cannot be
173    represented in this table, the code has to deal with it.
174 
175 8. Do not break within emoji flag sequences. That is, do not break between
176    regional indicator (RI) symbols if there are an odd number of RI characters
177    before the break point. This table encodes "join RI characters"; the code
178    has to deal with checking for previous adjoining RIs.
179 
180 9. Otherwise, break everywhere.
181 */
182 
183 #define ESZ (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark)|(1<<ucp_gbZWJ)
184 
185 const uint32_t PRIV(ucp_gbtable)[] = {
186    (1u<<ucp_gbLF),                                      /*  0 CR */
187    0,                                                   /*  1 LF */
188    0,                                                   /*  2 Control */
189    ESZ,                                                 /*  3 Extend */
190    ESZ|(1u<<ucp_gbPrepend)|                             /*  4 Prepend */
191        (1u<<ucp_gbL)|(1u<<ucp_gbV)|(1u<<ucp_gbT)|
192        (1u<<ucp_gbLV)|(1u<<ucp_gbLVT)|(1u<<ucp_gbOther)|
193        (1u<<ucp_gbRegionalIndicator),
194    ESZ,                                                 /*  5 SpacingMark */
195    ESZ|(1u<<ucp_gbL)|(1u<<ucp_gbV)|(1u<<ucp_gbLV)|      /*  6 L */
196        (1u<<ucp_gbLVT),
197    ESZ|(1u<<ucp_gbV)|(1u<<ucp_gbT),                     /*  7 V */
198    ESZ|(1u<<ucp_gbT),                                   /*  8 T */
199    ESZ|(1u<<ucp_gbV)|(1u<<ucp_gbT),                     /*  9 LV */
200    ESZ|(1u<<ucp_gbT),                                   /* 10 LVT */
201    (1u<<ucp_gbRegionalIndicator),                       /* 11 RegionalIndicator */
202    ESZ,                                                 /* 12 Other */
203    ESZ,                                                 /* 13 ZWJ */
204    ESZ|(1u<<ucp_gbExtended_Pictographic)                /* 14 Extended Pictographic */
205 };
206 
207 #undef ESZ
208 
209 #ifdef SUPPORT_JIT
210 /* This table reverses PRIV(ucp_gentype). We can save the cost
211 of a memory load. */
212 
213 const int PRIV(ucp_typerange)[] = {
214   ucp_Cc, ucp_Cs,
215   ucp_Ll, ucp_Lu,
216   ucp_Mc, ucp_Mn,
217   ucp_Nd, ucp_No,
218   ucp_Pc, ucp_Ps,
219   ucp_Sc, ucp_So,
220   ucp_Zl, ucp_Zs,
221 };
222 #endif /* SUPPORT_JIT */
223 
224 /* The PRIV(utt)[] table below translates Unicode property names into type and
225 code values. It is searched by binary chop, so must be in collating sequence of
226 name. Originally, the table contained pointers to the name strings in the first
227 field of each entry. However, that leads to a large number of relocations when
228 a shared library is dynamically loaded. A significant reduction is made by
229 putting all the names into a single, large string and then using offsets in the
230 table itself. Maintenance is more error-prone, but frequent changes to this
231 data are unlikely.
232 
233 July 2008: There is now a script called maint/GenerateUtt.py that can be used
234 to generate this data automatically instead of maintaining it by hand.
235 
236 The script was updated in March 2009 to generate a new EBCDIC-compliant
237 version. Like all other character and string literals that are compared against
238 the regular expression pattern, we must use STR_ macros instead of literal
239 strings to make sure that UTF-8 support works on EBCDIC platforms. */
240 
241 #define STRING_Adlam0 STR_A STR_d STR_l STR_a STR_m "\0"
242 #define STRING_Ahom0 STR_A STR_h STR_o STR_m "\0"
243 #define STRING_Anatolian_Hieroglyphs0 STR_A STR_n STR_a STR_t STR_o STR_l STR_i STR_a STR_n STR_UNDERSCORE STR_H STR_i STR_e STR_r STR_o STR_g STR_l STR_y STR_p STR_h STR_s "\0"
244 #define STRING_Any0 STR_A STR_n STR_y "\0"
245 #define STRING_Arabic0 STR_A STR_r STR_a STR_b STR_i STR_c "\0"
246 #define STRING_Armenian0 STR_A STR_r STR_m STR_e STR_n STR_i STR_a STR_n "\0"
247 #define STRING_Avestan0 STR_A STR_v STR_e STR_s STR_t STR_a STR_n "\0"
248 #define STRING_Balinese0 STR_B STR_a STR_l STR_i STR_n STR_e STR_s STR_e "\0"
249 #define STRING_Bamum0 STR_B STR_a STR_m STR_u STR_m "\0"
250 #define STRING_Bassa_Vah0 STR_B STR_a STR_s STR_s STR_a STR_UNDERSCORE STR_V STR_a STR_h "\0"
251 #define STRING_Batak0 STR_B STR_a STR_t STR_a STR_k "\0"
252 #define STRING_Bengali0 STR_B STR_e STR_n STR_g STR_a STR_l STR_i "\0"
253 #define STRING_Bhaiksuki0 STR_B STR_h STR_a STR_i STR_k STR_s STR_u STR_k STR_i "\0"
254 #define STRING_Bopomofo0 STR_B STR_o STR_p STR_o STR_m STR_o STR_f STR_o "\0"
255 #define STRING_Brahmi0 STR_B STR_r STR_a STR_h STR_m STR_i "\0"
256 #define STRING_Braille0 STR_B STR_r STR_a STR_i STR_l STR_l STR_e "\0"
257 #define STRING_Buginese0 STR_B STR_u STR_g STR_i STR_n STR_e STR_s STR_e "\0"
258 #define STRING_Buhid0 STR_B STR_u STR_h STR_i STR_d "\0"
259 #define STRING_C0 STR_C "\0"
260 #define STRING_Canadian_Aboriginal0 STR_C STR_a STR_n STR_a STR_d STR_i STR_a STR_n STR_UNDERSCORE STR_A STR_b STR_o STR_r STR_i STR_g STR_i STR_n STR_a STR_l "\0"
261 #define STRING_Carian0 STR_C STR_a STR_r STR_i STR_a STR_n "\0"
262 #define STRING_Caucasian_Albanian0 STR_C STR_a STR_u STR_c STR_a STR_s STR_i STR_a STR_n STR_UNDERSCORE STR_A STR_l STR_b STR_a STR_n STR_i STR_a STR_n "\0"
263 #define STRING_Cc0 STR_C STR_c "\0"
264 #define STRING_Cf0 STR_C STR_f "\0"
265 #define STRING_Chakma0 STR_C STR_h STR_a STR_k STR_m STR_a "\0"
266 #define STRING_Cham0 STR_C STR_h STR_a STR_m "\0"
267 #define STRING_Cherokee0 STR_C STR_h STR_e STR_r STR_o STR_k STR_e STR_e "\0"
268 #define STRING_Chorasmian0 STR_C STR_h STR_o STR_r STR_a STR_s STR_m STR_i STR_a STR_n "\0"
269 #define STRING_Cn0 STR_C STR_n "\0"
270 #define STRING_Co0 STR_C STR_o "\0"
271 #define STRING_Common0 STR_C STR_o STR_m STR_m STR_o STR_n "\0"
272 #define STRING_Coptic0 STR_C STR_o STR_p STR_t STR_i STR_c "\0"
273 #define STRING_Cs0 STR_C STR_s "\0"
274 #define STRING_Cuneiform0 STR_C STR_u STR_n STR_e STR_i STR_f STR_o STR_r STR_m "\0"
275 #define STRING_Cypriot0 STR_C STR_y STR_p STR_r STR_i STR_o STR_t "\0"
276 #define STRING_Cyrillic0 STR_C STR_y STR_r STR_i STR_l STR_l STR_i STR_c "\0"
277 #define STRING_Deseret0 STR_D STR_e STR_s STR_e STR_r STR_e STR_t "\0"
278 #define STRING_Devanagari0 STR_D STR_e STR_v STR_a STR_n STR_a STR_g STR_a STR_r STR_i "\0"
279 #define STRING_Dives_Akuru0 STR_D STR_i STR_v STR_e STR_s STR_UNDERSCORE STR_A STR_k STR_u STR_r STR_u "\0"
280 #define STRING_Dogra0 STR_D STR_o STR_g STR_r STR_a "\0"
281 #define STRING_Duployan0 STR_D STR_u STR_p STR_l STR_o STR_y STR_a STR_n "\0"
282 #define STRING_Egyptian_Hieroglyphs0 STR_E STR_g STR_y STR_p STR_t STR_i STR_a STR_n STR_UNDERSCORE STR_H STR_i STR_e STR_r STR_o STR_g STR_l STR_y STR_p STR_h STR_s "\0"
283 #define STRING_Elbasan0 STR_E STR_l STR_b STR_a STR_s STR_a STR_n "\0"
284 #define STRING_Elymaic0 STR_E STR_l STR_y STR_m STR_a STR_i STR_c "\0"
285 #define STRING_Ethiopic0 STR_E STR_t STR_h STR_i STR_o STR_p STR_i STR_c "\0"
286 #define STRING_Georgian0 STR_G STR_e STR_o STR_r STR_g STR_i STR_a STR_n "\0"
287 #define STRING_Glagolitic0 STR_G STR_l STR_a STR_g STR_o STR_l STR_i STR_t STR_i STR_c "\0"
288 #define STRING_Gothic0 STR_G STR_o STR_t STR_h STR_i STR_c "\0"
289 #define STRING_Grantha0 STR_G STR_r STR_a STR_n STR_t STR_h STR_a "\0"
290 #define STRING_Greek0 STR_G STR_r STR_e STR_e STR_k "\0"
291 #define STRING_Gujarati0 STR_G STR_u STR_j STR_a STR_r STR_a STR_t STR_i "\0"
292 #define STRING_Gunjala_Gondi0 STR_G STR_u STR_n STR_j STR_a STR_l STR_a STR_UNDERSCORE STR_G STR_o STR_n STR_d STR_i "\0"
293 #define STRING_Gurmukhi0 STR_G STR_u STR_r STR_m STR_u STR_k STR_h STR_i "\0"
294 #define STRING_Han0 STR_H STR_a STR_n "\0"
295 #define STRING_Hangul0 STR_H STR_a STR_n STR_g STR_u STR_l "\0"
296 #define STRING_Hanifi_Rohingya0 STR_H STR_a STR_n STR_i STR_f STR_i STR_UNDERSCORE STR_R STR_o STR_h STR_i STR_n STR_g STR_y STR_a "\0"
297 #define STRING_Hanunoo0 STR_H STR_a STR_n STR_u STR_n STR_o STR_o "\0"
298 #define STRING_Hatran0 STR_H STR_a STR_t STR_r STR_a STR_n "\0"
299 #define STRING_Hebrew0 STR_H STR_e STR_b STR_r STR_e STR_w "\0"
300 #define STRING_Hiragana0 STR_H STR_i STR_r STR_a STR_g STR_a STR_n STR_a "\0"
301 #define STRING_Imperial_Aramaic0 STR_I STR_m STR_p STR_e STR_r STR_i STR_a STR_l STR_UNDERSCORE STR_A STR_r STR_a STR_m STR_a STR_i STR_c "\0"
302 #define STRING_Inherited0 STR_I STR_n STR_h STR_e STR_r STR_i STR_t STR_e STR_d "\0"
303 #define STRING_Inscriptional_Pahlavi0 STR_I STR_n STR_s STR_c STR_r STR_i STR_p STR_t STR_i STR_o STR_n STR_a STR_l STR_UNDERSCORE STR_P STR_a STR_h STR_l STR_a STR_v STR_i "\0"
304 #define STRING_Inscriptional_Parthian0 STR_I STR_n STR_s STR_c STR_r STR_i STR_p STR_t STR_i STR_o STR_n STR_a STR_l STR_UNDERSCORE STR_P STR_a STR_r STR_t STR_h STR_i STR_a STR_n "\0"
305 #define STRING_Javanese0 STR_J STR_a STR_v STR_a STR_n STR_e STR_s STR_e "\0"
306 #define STRING_Kaithi0 STR_K STR_a STR_i STR_t STR_h STR_i "\0"
307 #define STRING_Kannada0 STR_K STR_a STR_n STR_n STR_a STR_d STR_a "\0"
308 #define STRING_Katakana0 STR_K STR_a STR_t STR_a STR_k STR_a STR_n STR_a "\0"
309 #define STRING_Kayah_Li0 STR_K STR_a STR_y STR_a STR_h STR_UNDERSCORE STR_L STR_i "\0"
310 #define STRING_Kharoshthi0 STR_K STR_h STR_a STR_r STR_o STR_s STR_h STR_t STR_h STR_i "\0"
311 #define STRING_Khitan_Small_Script0 STR_K STR_h STR_i STR_t STR_a STR_n STR_UNDERSCORE STR_S STR_m STR_a STR_l STR_l STR_UNDERSCORE STR_S STR_c STR_r STR_i STR_p STR_t "\0"
312 #define STRING_Khmer0 STR_K STR_h STR_m STR_e STR_r "\0"
313 #define STRING_Khojki0 STR_K STR_h STR_o STR_j STR_k STR_i "\0"
314 #define STRING_Khudawadi0 STR_K STR_h STR_u STR_d STR_a STR_w STR_a STR_d STR_i "\0"
315 #define STRING_L0 STR_L "\0"
316 #define STRING_L_AMPERSAND0 STR_L STR_AMPERSAND "\0"
317 #define STRING_Lao0 STR_L STR_a STR_o "\0"
318 #define STRING_Latin0 STR_L STR_a STR_t STR_i STR_n "\0"
319 #define STRING_Lepcha0 STR_L STR_e STR_p STR_c STR_h STR_a "\0"
320 #define STRING_Limbu0 STR_L STR_i STR_m STR_b STR_u "\0"
321 #define STRING_Linear_A0 STR_L STR_i STR_n STR_e STR_a STR_r STR_UNDERSCORE STR_A "\0"
322 #define STRING_Linear_B0 STR_L STR_i STR_n STR_e STR_a STR_r STR_UNDERSCORE STR_B "\0"
323 #define STRING_Lisu0 STR_L STR_i STR_s STR_u "\0"
324 #define STRING_Ll0 STR_L STR_l "\0"
325 #define STRING_Lm0 STR_L STR_m "\0"
326 #define STRING_Lo0 STR_L STR_o "\0"
327 #define STRING_Lt0 STR_L STR_t "\0"
328 #define STRING_Lu0 STR_L STR_u "\0"
329 #define STRING_Lycian0 STR_L STR_y STR_c STR_i STR_a STR_n "\0"
330 #define STRING_Lydian0 STR_L STR_y STR_d STR_i STR_a STR_n "\0"
331 #define STRING_M0 STR_M "\0"
332 #define STRING_Mahajani0 STR_M STR_a STR_h STR_a STR_j STR_a STR_n STR_i "\0"
333 #define STRING_Makasar0 STR_M STR_a STR_k STR_a STR_s STR_a STR_r "\0"
334 #define STRING_Malayalam0 STR_M STR_a STR_l STR_a STR_y STR_a STR_l STR_a STR_m "\0"
335 #define STRING_Mandaic0 STR_M STR_a STR_n STR_d STR_a STR_i STR_c "\0"
336 #define STRING_Manichaean0 STR_M STR_a STR_n STR_i STR_c STR_h STR_a STR_e STR_a STR_n "\0"
337 #define STRING_Marchen0 STR_M STR_a STR_r STR_c STR_h STR_e STR_n "\0"
338 #define STRING_Masaram_Gondi0 STR_M STR_a STR_s STR_a STR_r STR_a STR_m STR_UNDERSCORE STR_G STR_o STR_n STR_d STR_i "\0"
339 #define STRING_Mc0 STR_M STR_c "\0"
340 #define STRING_Me0 STR_M STR_e "\0"
341 #define STRING_Medefaidrin0 STR_M STR_e STR_d STR_e STR_f STR_a STR_i STR_d STR_r STR_i STR_n "\0"
342 #define STRING_Meetei_Mayek0 STR_M STR_e STR_e STR_t STR_e STR_i STR_UNDERSCORE STR_M STR_a STR_y STR_e STR_k "\0"
343 #define STRING_Mende_Kikakui0 STR_M STR_e STR_n STR_d STR_e STR_UNDERSCORE STR_K STR_i STR_k STR_a STR_k STR_u STR_i "\0"
344 #define STRING_Meroitic_Cursive0 STR_M STR_e STR_r STR_o STR_i STR_t STR_i STR_c STR_UNDERSCORE STR_C STR_u STR_r STR_s STR_i STR_v STR_e "\0"
345 #define STRING_Meroitic_Hieroglyphs0 STR_M STR_e STR_r STR_o STR_i STR_t STR_i STR_c STR_UNDERSCORE STR_H STR_i STR_e STR_r STR_o STR_g STR_l STR_y STR_p STR_h STR_s "\0"
346 #define STRING_Miao0 STR_M STR_i STR_a STR_o "\0"
347 #define STRING_Mn0 STR_M STR_n "\0"
348 #define STRING_Modi0 STR_M STR_o STR_d STR_i "\0"
349 #define STRING_Mongolian0 STR_M STR_o STR_n STR_g STR_o STR_l STR_i STR_a STR_n "\0"
350 #define STRING_Mro0 STR_M STR_r STR_o "\0"
351 #define STRING_Multani0 STR_M STR_u STR_l STR_t STR_a STR_n STR_i "\0"
352 #define STRING_Myanmar0 STR_M STR_y STR_a STR_n STR_m STR_a STR_r "\0"
353 #define STRING_N0 STR_N "\0"
354 #define STRING_Nabataean0 STR_N STR_a STR_b STR_a STR_t STR_a STR_e STR_a STR_n "\0"
355 #define STRING_Nandinagari0 STR_N STR_a STR_n STR_d STR_i STR_n STR_a STR_g STR_a STR_r STR_i "\0"
356 #define STRING_Nd0 STR_N STR_d "\0"
357 #define STRING_New_Tai_Lue0 STR_N STR_e STR_w STR_UNDERSCORE STR_T STR_a STR_i STR_UNDERSCORE STR_L STR_u STR_e "\0"
358 #define STRING_Newa0 STR_N STR_e STR_w STR_a "\0"
359 #define STRING_Nko0 STR_N STR_k STR_o "\0"
360 #define STRING_Nl0 STR_N STR_l "\0"
361 #define STRING_No0 STR_N STR_o "\0"
362 #define STRING_Nushu0 STR_N STR_u STR_s STR_h STR_u "\0"
363 #define STRING_Nyiakeng_Puachue_Hmong0 STR_N STR_y STR_i STR_a STR_k STR_e STR_n STR_g STR_UNDERSCORE STR_P STR_u STR_a STR_c STR_h STR_u STR_e STR_UNDERSCORE STR_H STR_m STR_o STR_n STR_g "\0"
364 #define STRING_Ogham0 STR_O STR_g STR_h STR_a STR_m "\0"
365 #define STRING_Ol_Chiki0 STR_O STR_l STR_UNDERSCORE STR_C STR_h STR_i STR_k STR_i "\0"
366 #define STRING_Old_Hungarian0 STR_O STR_l STR_d STR_UNDERSCORE STR_H STR_u STR_n STR_g STR_a STR_r STR_i STR_a STR_n "\0"
367 #define STRING_Old_Italic0 STR_O STR_l STR_d STR_UNDERSCORE STR_I STR_t STR_a STR_l STR_i STR_c "\0"
368 #define STRING_Old_North_Arabian0 STR_O STR_l STR_d STR_UNDERSCORE STR_N STR_o STR_r STR_t STR_h STR_UNDERSCORE STR_A STR_r STR_a STR_b STR_i STR_a STR_n "\0"
369 #define STRING_Old_Permic0 STR_O STR_l STR_d STR_UNDERSCORE STR_P STR_e STR_r STR_m STR_i STR_c "\0"
370 #define STRING_Old_Persian0 STR_O STR_l STR_d STR_UNDERSCORE STR_P STR_e STR_r STR_s STR_i STR_a STR_n "\0"
371 #define STRING_Old_Sogdian0 STR_O STR_l STR_d STR_UNDERSCORE STR_S STR_o STR_g STR_d STR_i STR_a STR_n "\0"
372 #define STRING_Old_South_Arabian0 STR_O STR_l STR_d STR_UNDERSCORE STR_S STR_o STR_u STR_t STR_h STR_UNDERSCORE STR_A STR_r STR_a STR_b STR_i STR_a STR_n "\0"
373 #define STRING_Old_Turkic0 STR_O STR_l STR_d STR_UNDERSCORE STR_T STR_u STR_r STR_k STR_i STR_c "\0"
374 #define STRING_Oriya0 STR_O STR_r STR_i STR_y STR_a "\0"
375 #define STRING_Osage0 STR_O STR_s STR_a STR_g STR_e "\0"
376 #define STRING_Osmanya0 STR_O STR_s STR_m STR_a STR_n STR_y STR_a "\0"
377 #define STRING_P0 STR_P "\0"
378 #define STRING_Pahawh_Hmong0 STR_P STR_a STR_h STR_a STR_w STR_h STR_UNDERSCORE STR_H STR_m STR_o STR_n STR_g "\0"
379 #define STRING_Palmyrene0 STR_P STR_a STR_l STR_m STR_y STR_r STR_e STR_n STR_e "\0"
380 #define STRING_Pau_Cin_Hau0 STR_P STR_a STR_u STR_UNDERSCORE STR_C STR_i STR_n STR_UNDERSCORE STR_H STR_a STR_u "\0"
381 #define STRING_Pc0 STR_P STR_c "\0"
382 #define STRING_Pd0 STR_P STR_d "\0"
383 #define STRING_Pe0 STR_P STR_e "\0"
384 #define STRING_Pf0 STR_P STR_f "\0"
385 #define STRING_Phags_Pa0 STR_P STR_h STR_a STR_g STR_s STR_UNDERSCORE STR_P STR_a "\0"
386 #define STRING_Phoenician0 STR_P STR_h STR_o STR_e STR_n STR_i STR_c STR_i STR_a STR_n "\0"
387 #define STRING_Pi0 STR_P STR_i "\0"
388 #define STRING_Po0 STR_P STR_o "\0"
389 #define STRING_Ps0 STR_P STR_s "\0"
390 #define STRING_Psalter_Pahlavi0 STR_P STR_s STR_a STR_l STR_t STR_e STR_r STR_UNDERSCORE STR_P STR_a STR_h STR_l STR_a STR_v STR_i "\0"
391 #define STRING_Rejang0 STR_R STR_e STR_j STR_a STR_n STR_g "\0"
392 #define STRING_Runic0 STR_R STR_u STR_n STR_i STR_c "\0"
393 #define STRING_S0 STR_S "\0"
394 #define STRING_Samaritan0 STR_S STR_a STR_m STR_a STR_r STR_i STR_t STR_a STR_n "\0"
395 #define STRING_Saurashtra0 STR_S STR_a STR_u STR_r STR_a STR_s STR_h STR_t STR_r STR_a "\0"
396 #define STRING_Sc0 STR_S STR_c "\0"
397 #define STRING_Sharada0 STR_S STR_h STR_a STR_r STR_a STR_d STR_a "\0"
398 #define STRING_Shavian0 STR_S STR_h STR_a STR_v STR_i STR_a STR_n "\0"
399 #define STRING_Siddham0 STR_S STR_i STR_d STR_d STR_h STR_a STR_m "\0"
400 #define STRING_SignWriting0 STR_S STR_i STR_g STR_n STR_W STR_r STR_i STR_t STR_i STR_n STR_g "\0"
401 #define STRING_Sinhala0 STR_S STR_i STR_n STR_h STR_a STR_l STR_a "\0"
402 #define STRING_Sk0 STR_S STR_k "\0"
403 #define STRING_Sm0 STR_S STR_m "\0"
404 #define STRING_So0 STR_S STR_o "\0"
405 #define STRING_Sogdian0 STR_S STR_o STR_g STR_d STR_i STR_a STR_n "\0"
406 #define STRING_Sora_Sompeng0 STR_S STR_o STR_r STR_a STR_UNDERSCORE STR_S STR_o STR_m STR_p STR_e STR_n STR_g "\0"
407 #define STRING_Soyombo0 STR_S STR_o STR_y STR_o STR_m STR_b STR_o "\0"
408 #define STRING_Sundanese0 STR_S STR_u STR_n STR_d STR_a STR_n STR_e STR_s STR_e "\0"
409 #define STRING_Syloti_Nagri0 STR_S STR_y STR_l STR_o STR_t STR_i STR_UNDERSCORE STR_N STR_a STR_g STR_r STR_i "\0"
410 #define STRING_Syriac0 STR_S STR_y STR_r STR_i STR_a STR_c "\0"
411 #define STRING_Tagalog0 STR_T STR_a STR_g STR_a STR_l STR_o STR_g "\0"
412 #define STRING_Tagbanwa0 STR_T STR_a STR_g STR_b STR_a STR_n STR_w STR_a "\0"
413 #define STRING_Tai_Le0 STR_T STR_a STR_i STR_UNDERSCORE STR_L STR_e "\0"
414 #define STRING_Tai_Tham0 STR_T STR_a STR_i STR_UNDERSCORE STR_T STR_h STR_a STR_m "\0"
415 #define STRING_Tai_Viet0 STR_T STR_a STR_i STR_UNDERSCORE STR_V STR_i STR_e STR_t "\0"
416 #define STRING_Takri0 STR_T STR_a STR_k STR_r STR_i "\0"
417 #define STRING_Tamil0 STR_T STR_a STR_m STR_i STR_l "\0"
418 #define STRING_Tangut0 STR_T STR_a STR_n STR_g STR_u STR_t "\0"
419 #define STRING_Telugu0 STR_T STR_e STR_l STR_u STR_g STR_u "\0"
420 #define STRING_Thaana0 STR_T STR_h STR_a STR_a STR_n STR_a "\0"
421 #define STRING_Thai0 STR_T STR_h STR_a STR_i "\0"
422 #define STRING_Tibetan0 STR_T STR_i STR_b STR_e STR_t STR_a STR_n "\0"
423 #define STRING_Tifinagh0 STR_T STR_i STR_f STR_i STR_n STR_a STR_g STR_h "\0"
424 #define STRING_Tirhuta0 STR_T STR_i STR_r STR_h STR_u STR_t STR_a "\0"
425 #define STRING_Ugaritic0 STR_U STR_g STR_a STR_r STR_i STR_t STR_i STR_c "\0"
426 #define STRING_Unknown0 STR_U STR_n STR_k STR_n STR_o STR_w STR_n "\0"
427 #define STRING_Vai0 STR_V STR_a STR_i "\0"
428 #define STRING_Wancho0 STR_W STR_a STR_n STR_c STR_h STR_o "\0"
429 #define STRING_Warang_Citi0 STR_W STR_a STR_r STR_a STR_n STR_g STR_UNDERSCORE STR_C STR_i STR_t STR_i "\0"
430 #define STRING_Xan0 STR_X STR_a STR_n "\0"
431 #define STRING_Xps0 STR_X STR_p STR_s "\0"
432 #define STRING_Xsp0 STR_X STR_s STR_p "\0"
433 #define STRING_Xuc0 STR_X STR_u STR_c "\0"
434 #define STRING_Xwd0 STR_X STR_w STR_d "\0"
435 #define STRING_Yezidi0 STR_Y STR_e STR_z STR_i STR_d STR_i "\0"
436 #define STRING_Yi0 STR_Y STR_i "\0"
437 #define STRING_Z0 STR_Z "\0"
438 #define STRING_Zanabazar_Square0 STR_Z STR_a STR_n STR_a STR_b STR_a STR_z STR_a STR_r STR_UNDERSCORE STR_S STR_q STR_u STR_a STR_r STR_e "\0"
439 #define STRING_Zl0 STR_Z STR_l "\0"
440 #define STRING_Zp0 STR_Z STR_p "\0"
441 #define STRING_Zs0 STR_Z STR_s "\0"
442 
443 const char PRIV(utt_names)[] =
444   STRING_Adlam0
445   STRING_Ahom0
446   STRING_Anatolian_Hieroglyphs0
447   STRING_Any0
448   STRING_Arabic0
449   STRING_Armenian0
450   STRING_Avestan0
451   STRING_Balinese0
452   STRING_Bamum0
453   STRING_Bassa_Vah0
454   STRING_Batak0
455   STRING_Bengali0
456   STRING_Bhaiksuki0
457   STRING_Bopomofo0
458   STRING_Brahmi0
459   STRING_Braille0
460   STRING_Buginese0
461   STRING_Buhid0
462   STRING_C0
463   STRING_Canadian_Aboriginal0
464   STRING_Carian0
465   STRING_Caucasian_Albanian0
466   STRING_Cc0
467   STRING_Cf0
468   STRING_Chakma0
469   STRING_Cham0
470   STRING_Cherokee0
471   STRING_Chorasmian0
472   STRING_Cn0
473   STRING_Co0
474   STRING_Common0
475   STRING_Coptic0
476   STRING_Cs0
477   STRING_Cuneiform0
478   STRING_Cypriot0
479   STRING_Cyrillic0
480   STRING_Deseret0
481   STRING_Devanagari0
482   STRING_Dives_Akuru0
483   STRING_Dogra0
484   STRING_Duployan0
485   STRING_Egyptian_Hieroglyphs0
486   STRING_Elbasan0
487   STRING_Elymaic0
488   STRING_Ethiopic0
489   STRING_Georgian0
490   STRING_Glagolitic0
491   STRING_Gothic0
492   STRING_Grantha0
493   STRING_Greek0
494   STRING_Gujarati0
495   STRING_Gunjala_Gondi0
496   STRING_Gurmukhi0
497   STRING_Han0
498   STRING_Hangul0
499   STRING_Hanifi_Rohingya0
500   STRING_Hanunoo0
501   STRING_Hatran0
502   STRING_Hebrew0
503   STRING_Hiragana0
504   STRING_Imperial_Aramaic0
505   STRING_Inherited0
506   STRING_Inscriptional_Pahlavi0
507   STRING_Inscriptional_Parthian0
508   STRING_Javanese0
509   STRING_Kaithi0
510   STRING_Kannada0
511   STRING_Katakana0
512   STRING_Kayah_Li0
513   STRING_Kharoshthi0
514   STRING_Khitan_Small_Script0
515   STRING_Khmer0
516   STRING_Khojki0
517   STRING_Khudawadi0
518   STRING_L0
519   STRING_L_AMPERSAND0
520   STRING_Lao0
521   STRING_Latin0
522   STRING_Lepcha0
523   STRING_Limbu0
524   STRING_Linear_A0
525   STRING_Linear_B0
526   STRING_Lisu0
527   STRING_Ll0
528   STRING_Lm0
529   STRING_Lo0
530   STRING_Lt0
531   STRING_Lu0
532   STRING_Lycian0
533   STRING_Lydian0
534   STRING_M0
535   STRING_Mahajani0
536   STRING_Makasar0
537   STRING_Malayalam0
538   STRING_Mandaic0
539   STRING_Manichaean0
540   STRING_Marchen0
541   STRING_Masaram_Gondi0
542   STRING_Mc0
543   STRING_Me0
544   STRING_Medefaidrin0
545   STRING_Meetei_Mayek0
546   STRING_Mende_Kikakui0
547   STRING_Meroitic_Cursive0
548   STRING_Meroitic_Hieroglyphs0
549   STRING_Miao0
550   STRING_Mn0
551   STRING_Modi0
552   STRING_Mongolian0
553   STRING_Mro0
554   STRING_Multani0
555   STRING_Myanmar0
556   STRING_N0
557   STRING_Nabataean0
558   STRING_Nandinagari0
559   STRING_Nd0
560   STRING_New_Tai_Lue0
561   STRING_Newa0
562   STRING_Nko0
563   STRING_Nl0
564   STRING_No0
565   STRING_Nushu0
566   STRING_Nyiakeng_Puachue_Hmong0
567   STRING_Ogham0
568   STRING_Ol_Chiki0
569   STRING_Old_Hungarian0
570   STRING_Old_Italic0
571   STRING_Old_North_Arabian0
572   STRING_Old_Permic0
573   STRING_Old_Persian0
574   STRING_Old_Sogdian0
575   STRING_Old_South_Arabian0
576   STRING_Old_Turkic0
577   STRING_Oriya0
578   STRING_Osage0
579   STRING_Osmanya0
580   STRING_P0
581   STRING_Pahawh_Hmong0
582   STRING_Palmyrene0
583   STRING_Pau_Cin_Hau0
584   STRING_Pc0
585   STRING_Pd0
586   STRING_Pe0
587   STRING_Pf0
588   STRING_Phags_Pa0
589   STRING_Phoenician0
590   STRING_Pi0
591   STRING_Po0
592   STRING_Ps0
593   STRING_Psalter_Pahlavi0
594   STRING_Rejang0
595   STRING_Runic0
596   STRING_S0
597   STRING_Samaritan0
598   STRING_Saurashtra0
599   STRING_Sc0
600   STRING_Sharada0
601   STRING_Shavian0
602   STRING_Siddham0
603   STRING_SignWriting0
604   STRING_Sinhala0
605   STRING_Sk0
606   STRING_Sm0
607   STRING_So0
608   STRING_Sogdian0
609   STRING_Sora_Sompeng0
610   STRING_Soyombo0
611   STRING_Sundanese0
612   STRING_Syloti_Nagri0
613   STRING_Syriac0
614   STRING_Tagalog0
615   STRING_Tagbanwa0
616   STRING_Tai_Le0
617   STRING_Tai_Tham0
618   STRING_Tai_Viet0
619   STRING_Takri0
620   STRING_Tamil0
621   STRING_Tangut0
622   STRING_Telugu0
623   STRING_Thaana0
624   STRING_Thai0
625   STRING_Tibetan0
626   STRING_Tifinagh0
627   STRING_Tirhuta0
628   STRING_Ugaritic0
629   STRING_Unknown0
630   STRING_Vai0
631   STRING_Wancho0
632   STRING_Warang_Citi0
633   STRING_Xan0
634   STRING_Xps0
635   STRING_Xsp0
636   STRING_Xuc0
637   STRING_Xwd0
638   STRING_Yezidi0
639   STRING_Yi0
640   STRING_Z0
641   STRING_Zanabazar_Square0
642   STRING_Zl0
643   STRING_Zp0
644   STRING_Zs0;
645 
646 const ucp_type_table PRIV(utt)[] = {
647   {   0, PT_SC, ucp_Adlam },
648   {   6, PT_SC, ucp_Ahom },
649   {  11, PT_SC, ucp_Anatolian_Hieroglyphs },
650   {  33, PT_ANY, 0 },
651   {  37, PT_SC, ucp_Arabic },
652   {  44, PT_SC, ucp_Armenian },
653   {  53, PT_SC, ucp_Avestan },
654   {  61, PT_SC, ucp_Balinese },
655   {  70, PT_SC, ucp_Bamum },
656   {  76, PT_SC, ucp_Bassa_Vah },
657   {  86, PT_SC, ucp_Batak },
658   {  92, PT_SC, ucp_Bengali },
659   { 100, PT_SC, ucp_Bhaiksuki },
660   { 110, PT_SC, ucp_Bopomofo },
661   { 119, PT_SC, ucp_Brahmi },
662   { 126, PT_SC, ucp_Braille },
663   { 134, PT_SC, ucp_Buginese },
664   { 143, PT_SC, ucp_Buhid },
665   { 149, PT_GC, ucp_C },
666   { 151, PT_SC, ucp_Canadian_Aboriginal },
667   { 171, PT_SC, ucp_Carian },
668   { 178, PT_SC, ucp_Caucasian_Albanian },
669   { 197, PT_PC, ucp_Cc },
670   { 200, PT_PC, ucp_Cf },
671   { 203, PT_SC, ucp_Chakma },
672   { 210, PT_SC, ucp_Cham },
673   { 215, PT_SC, ucp_Cherokee },
674   { 224, PT_SC, ucp_Chorasmian },
675   { 235, PT_PC, ucp_Cn },
676   { 238, PT_PC, ucp_Co },
677   { 241, PT_SC, ucp_Common },
678   { 248, PT_SC, ucp_Coptic },
679   { 255, PT_PC, ucp_Cs },
680   { 258, PT_SC, ucp_Cuneiform },
681   { 268, PT_SC, ucp_Cypriot },
682   { 276, PT_SC, ucp_Cyrillic },
683   { 285, PT_SC, ucp_Deseret },
684   { 293, PT_SC, ucp_Devanagari },
685   { 304, PT_SC, ucp_Dives_Akuru },
686   { 316, PT_SC, ucp_Dogra },
687   { 322, PT_SC, ucp_Duployan },
688   { 331, PT_SC, ucp_Egyptian_Hieroglyphs },
689   { 352, PT_SC, ucp_Elbasan },
690   { 360, PT_SC, ucp_Elymaic },
691   { 368, PT_SC, ucp_Ethiopic },
692   { 377, PT_SC, ucp_Georgian },
693   { 386, PT_SC, ucp_Glagolitic },
694   { 397, PT_SC, ucp_Gothic },
695   { 404, PT_SC, ucp_Grantha },
696   { 412, PT_SC, ucp_Greek },
697   { 418, PT_SC, ucp_Gujarati },
698   { 427, PT_SC, ucp_Gunjala_Gondi },
699   { 441, PT_SC, ucp_Gurmukhi },
700   { 450, PT_SC, ucp_Han },
701   { 454, PT_SC, ucp_Hangul },
702   { 461, PT_SC, ucp_Hanifi_Rohingya },
703   { 477, PT_SC, ucp_Hanunoo },
704   { 485, PT_SC, ucp_Hatran },
705   { 492, PT_SC, ucp_Hebrew },
706   { 499, PT_SC, ucp_Hiragana },
707   { 508, PT_SC, ucp_Imperial_Aramaic },
708   { 525, PT_SC, ucp_Inherited },
709   { 535, PT_SC, ucp_Inscriptional_Pahlavi },
710   { 557, PT_SC, ucp_Inscriptional_Parthian },
711   { 580, PT_SC, ucp_Javanese },
712   { 589, PT_SC, ucp_Kaithi },
713   { 596, PT_SC, ucp_Kannada },
714   { 604, PT_SC, ucp_Katakana },
715   { 613, PT_SC, ucp_Kayah_Li },
716   { 622, PT_SC, ucp_Kharoshthi },
717   { 633, PT_SC, ucp_Khitan_Small_Script },
718   { 653, PT_SC, ucp_Khmer },
719   { 659, PT_SC, ucp_Khojki },
720   { 666, PT_SC, ucp_Khudawadi },
721   { 676, PT_GC, ucp_L },
722   { 678, PT_LAMP, 0 },
723   { 681, PT_SC, ucp_Lao },
724   { 685, PT_SC, ucp_Latin },
725   { 691, PT_SC, ucp_Lepcha },
726   { 698, PT_SC, ucp_Limbu },
727   { 704, PT_SC, ucp_Linear_A },
728   { 713, PT_SC, ucp_Linear_B },
729   { 722, PT_SC, ucp_Lisu },
730   { 727, PT_PC, ucp_Ll },
731   { 730, PT_PC, ucp_Lm },
732   { 733, PT_PC, ucp_Lo },
733   { 736, PT_PC, ucp_Lt },
734   { 739, PT_PC, ucp_Lu },
735   { 742, PT_SC, ucp_Lycian },
736   { 749, PT_SC, ucp_Lydian },
737   { 756, PT_GC, ucp_M },
738   { 758, PT_SC, ucp_Mahajani },
739   { 767, PT_SC, ucp_Makasar },
740   { 775, PT_SC, ucp_Malayalam },
741   { 785, PT_SC, ucp_Mandaic },
742   { 793, PT_SC, ucp_Manichaean },
743   { 804, PT_SC, ucp_Marchen },
744   { 812, PT_SC, ucp_Masaram_Gondi },
745   { 826, PT_PC, ucp_Mc },
746   { 829, PT_PC, ucp_Me },
747   { 832, PT_SC, ucp_Medefaidrin },
748   { 844, PT_SC, ucp_Meetei_Mayek },
749   { 857, PT_SC, ucp_Mende_Kikakui },
750   { 871, PT_SC, ucp_Meroitic_Cursive },
751   { 888, PT_SC, ucp_Meroitic_Hieroglyphs },
752   { 909, PT_SC, ucp_Miao },
753   { 914, PT_PC, ucp_Mn },
754   { 917, PT_SC, ucp_Modi },
755   { 922, PT_SC, ucp_Mongolian },
756   { 932, PT_SC, ucp_Mro },
757   { 936, PT_SC, ucp_Multani },
758   { 944, PT_SC, ucp_Myanmar },
759   { 952, PT_GC, ucp_N },
760   { 954, PT_SC, ucp_Nabataean },
761   { 964, PT_SC, ucp_Nandinagari },
762   { 976, PT_PC, ucp_Nd },
763   { 979, PT_SC, ucp_New_Tai_Lue },
764   { 991, PT_SC, ucp_Newa },
765   { 996, PT_SC, ucp_Nko },
766   { 1000, PT_PC, ucp_Nl },
767   { 1003, PT_PC, ucp_No },
768   { 1006, PT_SC, ucp_Nushu },
769   { 1012, PT_SC, ucp_Nyiakeng_Puachue_Hmong },
770   { 1035, PT_SC, ucp_Ogham },
771   { 1041, PT_SC, ucp_Ol_Chiki },
772   { 1050, PT_SC, ucp_Old_Hungarian },
773   { 1064, PT_SC, ucp_Old_Italic },
774   { 1075, PT_SC, ucp_Old_North_Arabian },
775   { 1093, PT_SC, ucp_Old_Permic },
776   { 1104, PT_SC, ucp_Old_Persian },
777   { 1116, PT_SC, ucp_Old_Sogdian },
778   { 1128, PT_SC, ucp_Old_South_Arabian },
779   { 1146, PT_SC, ucp_Old_Turkic },
780   { 1157, PT_SC, ucp_Oriya },
781   { 1163, PT_SC, ucp_Osage },
782   { 1169, PT_SC, ucp_Osmanya },
783   { 1177, PT_GC, ucp_P },
784   { 1179, PT_SC, ucp_Pahawh_Hmong },
785   { 1192, PT_SC, ucp_Palmyrene },
786   { 1202, PT_SC, ucp_Pau_Cin_Hau },
787   { 1214, PT_PC, ucp_Pc },
788   { 1217, PT_PC, ucp_Pd },
789   { 1220, PT_PC, ucp_Pe },
790   { 1223, PT_PC, ucp_Pf },
791   { 1226, PT_SC, ucp_Phags_Pa },
792   { 1235, PT_SC, ucp_Phoenician },
793   { 1246, PT_PC, ucp_Pi },
794   { 1249, PT_PC, ucp_Po },
795   { 1252, PT_PC, ucp_Ps },
796   { 1255, PT_SC, ucp_Psalter_Pahlavi },
797   { 1271, PT_SC, ucp_Rejang },
798   { 1278, PT_SC, ucp_Runic },
799   { 1284, PT_GC, ucp_S },
800   { 1286, PT_SC, ucp_Samaritan },
801   { 1296, PT_SC, ucp_Saurashtra },
802   { 1307, PT_PC, ucp_Sc },
803   { 1310, PT_SC, ucp_Sharada },
804   { 1318, PT_SC, ucp_Shavian },
805   { 1326, PT_SC, ucp_Siddham },
806   { 1334, PT_SC, ucp_SignWriting },
807   { 1346, PT_SC, ucp_Sinhala },
808   { 1354, PT_PC, ucp_Sk },
809   { 1357, PT_PC, ucp_Sm },
810   { 1360, PT_PC, ucp_So },
811   { 1363, PT_SC, ucp_Sogdian },
812   { 1371, PT_SC, ucp_Sora_Sompeng },
813   { 1384, PT_SC, ucp_Soyombo },
814   { 1392, PT_SC, ucp_Sundanese },
815   { 1402, PT_SC, ucp_Syloti_Nagri },
816   { 1415, PT_SC, ucp_Syriac },
817   { 1422, PT_SC, ucp_Tagalog },
818   { 1430, PT_SC, ucp_Tagbanwa },
819   { 1439, PT_SC, ucp_Tai_Le },
820   { 1446, PT_SC, ucp_Tai_Tham },
821   { 1455, PT_SC, ucp_Tai_Viet },
822   { 1464, PT_SC, ucp_Takri },
823   { 1470, PT_SC, ucp_Tamil },
824   { 1476, PT_SC, ucp_Tangut },
825   { 1483, PT_SC, ucp_Telugu },
826   { 1490, PT_SC, ucp_Thaana },
827   { 1497, PT_SC, ucp_Thai },
828   { 1502, PT_SC, ucp_Tibetan },
829   { 1510, PT_SC, ucp_Tifinagh },
830   { 1519, PT_SC, ucp_Tirhuta },
831   { 1527, PT_SC, ucp_Ugaritic },
832   { 1536, PT_SC, ucp_Unknown },
833   { 1544, PT_SC, ucp_Vai },
834   { 1548, PT_SC, ucp_Wancho },
835   { 1555, PT_SC, ucp_Warang_Citi },
836   { 1567, PT_ALNUM, 0 },
837   { 1571, PT_PXSPACE, 0 },
838   { 1575, PT_SPACE, 0 },
839   { 1579, PT_UCNC, 0 },
840   { 1583, PT_WORD, 0 },
841   { 1587, PT_SC, ucp_Yezidi },
842   { 1594, PT_SC, ucp_Yi },
843   { 1597, PT_GC, ucp_Z },
844   { 1599, PT_SC, ucp_Zanabazar_Square },
845   { 1616, PT_PC, ucp_Zl },
846   { 1619, PT_PC, ucp_Zp },
847   { 1622, PT_PC, ucp_Zs }
848 };
849 
850 const size_t PRIV(utt_size) = sizeof(PRIV(utt)) / sizeof(ucp_type_table);
851 
852 #endif /* SUPPORT_UNICODE */
853 
854 /* End of pcre2_tables.c */
855