wikitext 1.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ext/parser.c +149 -45
- data/ext/token.c +1 -0
- data/ext/token.h +1 -0
- data/ext/wikitext_ragel.c +1718 -1947
- data/lib/wikitext/version.rb +17 -0
- data/spec/autolinking_spec.rb +462 -0
- data/spec/integration_spec.rb +1 -1
- data/spec/pre_spec.rb +77 -18
- data/spec/regressions_spec.rb +703 -1
- metadata +3 -2
data/ext/token.c
CHANGED
data/ext/token.h
CHANGED
data/ext/wikitext_ragel.c
CHANGED
@@ -32,13 +32,13 @@
|
|
32
32
|
|
33
33
|
|
34
34
|
#line 35 "wikitext_ragel.c"
|
35
|
-
static const int wikitext_start =
|
36
|
-
static const int wikitext_first_final =
|
35
|
+
static const int wikitext_start = 94;
|
36
|
+
static const int wikitext_first_final = 94;
|
37
37
|
static const int wikitext_error = 0;
|
38
38
|
|
39
|
-
static const int wikitext_en_main =
|
39
|
+
static const int wikitext_en_main = 94;
|
40
40
|
|
41
|
-
#line
|
41
|
+
#line 455 "wikitext_ragel.rl"
|
42
42
|
|
43
43
|
|
44
44
|
// for now we use the scanner as a tokenizer that returns one token at a time, just like ANTLR
|
@@ -88,7 +88,7 @@ void next_token(token_t *out, token_t *last_token, char *p, char *pe)
|
|
88
88
|
te = 0;
|
89
89
|
act = 0;
|
90
90
|
}
|
91
|
-
#line
|
91
|
+
#line 497 "wikitext_ragel.rl"
|
92
92
|
|
93
93
|
#line 94 "wikitext_ragel.c"
|
94
94
|
{
|
@@ -102,13 +102,13 @@ tr0:
|
|
102
102
|
out->code_point = ((uint32_t)(*(p - 1)) & 0x1f) << 6 |
|
103
103
|
(*p & 0x3f);
|
104
104
|
}
|
105
|
-
#line
|
105
|
+
#line 446 "wikitext_ragel.rl"
|
106
106
|
{te = p+1;{
|
107
107
|
EMIT(DEFAULT);
|
108
108
|
out->column_stop = out->column_start + 1;
|
109
|
-
{p++; cs =
|
109
|
+
{p++; cs = 94; goto _out;}
|
110
110
|
}}
|
111
|
-
goto
|
111
|
+
goto st94;
|
112
112
|
tr3:
|
113
113
|
#line 52 "wikitext_ragel.rl"
|
114
114
|
{
|
@@ -116,13 +116,13 @@ tr3:
|
|
116
116
|
((uint32_t)(*(p - 1)) & 0x3f) << 6 |
|
117
117
|
(*p & 0x3f);
|
118
118
|
}
|
119
|
-
#line
|
119
|
+
#line 446 "wikitext_ragel.rl"
|
120
120
|
{te = p+1;{
|
121
121
|
EMIT(DEFAULT);
|
122
122
|
out->column_stop = out->column_start + 1;
|
123
|
-
{p++; cs =
|
123
|
+
{p++; cs = 94; goto _out;}
|
124
124
|
}}
|
125
|
-
goto
|
125
|
+
goto st94;
|
126
126
|
tr6:
|
127
127
|
#line 59 "wikitext_ragel.rl"
|
128
128
|
{
|
@@ -131,186 +131,224 @@ tr6:
|
|
131
131
|
((uint32_t)(*(p - 1)) & 0x3f) << 6 |
|
132
132
|
(*p & 0x3f);
|
133
133
|
}
|
134
|
-
#line
|
134
|
+
#line 446 "wikitext_ragel.rl"
|
135
135
|
{te = p+1;{
|
136
136
|
EMIT(DEFAULT);
|
137
137
|
out->column_stop = out->column_start + 1;
|
138
|
-
{p++; cs =
|
138
|
+
{p++; cs = 94; goto _out;}
|
139
139
|
}}
|
140
|
-
goto
|
140
|
+
goto st94;
|
141
141
|
tr7:
|
142
142
|
#line 359 "wikitext_ragel.rl"
|
143
143
|
{{p = ((te))-1;}{
|
144
144
|
EMIT(AMP);
|
145
|
-
{p++; cs =
|
145
|
+
{p++; cs = 94; goto _out;}
|
146
146
|
}}
|
147
|
-
goto
|
147
|
+
goto st94;
|
148
148
|
tr10:
|
149
149
|
#line 347 "wikitext_ragel.rl"
|
150
150
|
{te = p+1;{
|
151
151
|
EMIT(DECIMAL_ENTITY);
|
152
|
-
{p++; cs =
|
152
|
+
{p++; cs = 94; goto _out;}
|
153
153
|
}}
|
154
|
-
goto
|
154
|
+
goto st94;
|
155
155
|
tr12:
|
156
156
|
#line 341 "wikitext_ragel.rl"
|
157
157
|
{te = p+1;{
|
158
158
|
EMIT(HEX_ENTITY);
|
159
|
-
{p++; cs =
|
159
|
+
{p++; cs = 94; goto _out;}
|
160
160
|
}}
|
161
|
-
goto
|
161
|
+
goto st94;
|
162
162
|
tr14:
|
163
163
|
#line 335 "wikitext_ragel.rl"
|
164
164
|
{te = p+1;{
|
165
165
|
EMIT(NAMED_ENTITY);
|
166
|
-
{p++; cs =
|
166
|
+
{p++; cs = 94; goto _out;}
|
167
167
|
}}
|
168
|
-
goto
|
168
|
+
goto st94;
|
169
169
|
tr18:
|
170
170
|
#line 329 "wikitext_ragel.rl"
|
171
171
|
{te = p+1;{
|
172
172
|
EMIT(AMP_ENTITY);
|
173
|
-
{p++; cs =
|
173
|
+
{p++; cs = 94; goto _out;}
|
174
174
|
}}
|
175
|
-
goto
|
175
|
+
goto st94;
|
176
176
|
tr22:
|
177
177
|
#line 323 "wikitext_ragel.rl"
|
178
178
|
{te = p+1;{
|
179
179
|
EMIT(QUOT_ENTITY);
|
180
|
-
{p++; cs =
|
180
|
+
{p++; cs = 94; goto _out;}
|
181
181
|
}}
|
182
|
-
goto
|
182
|
+
goto st94;
|
183
183
|
tr23:
|
184
|
+
#line 1 "wikitext_ragel.rl"
|
185
|
+
{ switch( act ) {
|
186
|
+
case 20:
|
187
|
+
{{p = ((te))-1;}
|
188
|
+
EMIT(URI);
|
189
|
+
{p++; cs = 94; goto _out;}
|
190
|
+
}
|
191
|
+
break;
|
192
|
+
case 21:
|
193
|
+
{{p = ((te))-1;}
|
194
|
+
EMIT(MAIL);
|
195
|
+
{p++; cs = 94; goto _out;}
|
196
|
+
}
|
197
|
+
break;
|
198
|
+
case 41:
|
199
|
+
{{p = ((te))-1;}
|
200
|
+
EMIT(SPECIAL_URI_CHARS);
|
201
|
+
{p++; cs = 94; goto _out;}
|
202
|
+
}
|
203
|
+
break;
|
204
|
+
case 42:
|
205
|
+
{{p = ((te))-1;}
|
206
|
+
EMIT(PRINTABLE);
|
207
|
+
{p++; cs = 94; goto _out;}
|
208
|
+
}
|
209
|
+
break;
|
210
|
+
default: break;
|
211
|
+
}
|
212
|
+
}
|
213
|
+
goto st94;
|
214
|
+
tr30:
|
184
215
|
#line 365 "wikitext_ragel.rl"
|
185
216
|
{{p = ((te))-1;}{
|
186
217
|
EMIT(LESS);
|
187
|
-
{p++; cs =
|
218
|
+
{p++; cs = 94; goto _out;}
|
188
219
|
}}
|
189
|
-
goto
|
190
|
-
|
220
|
+
goto st94;
|
221
|
+
tr46:
|
191
222
|
#line 110 "wikitext_ragel.rl"
|
192
223
|
{te = p+1;{
|
193
224
|
EMIT(BLOCKQUOTE_END);
|
194
|
-
{p++; cs =
|
225
|
+
{p++; cs = 94; goto _out;}
|
195
226
|
}}
|
196
|
-
goto
|
197
|
-
|
227
|
+
goto st94;
|
228
|
+
tr48:
|
198
229
|
#line 152 "wikitext_ragel.rl"
|
199
230
|
{te = p+1;{
|
200
231
|
EMIT(EM_END);
|
201
|
-
{p++; cs =
|
232
|
+
{p++; cs = 94; goto _out;}
|
202
233
|
}}
|
203
|
-
goto
|
204
|
-
|
234
|
+
goto st94;
|
235
|
+
tr54:
|
205
236
|
#line 86 "wikitext_ragel.rl"
|
206
237
|
{te = p+1;{
|
207
238
|
EMIT(NO_WIKI_END);
|
208
|
-
{p++; cs =
|
239
|
+
{p++; cs = 94; goto _out;}
|
209
240
|
}}
|
210
|
-
goto
|
211
|
-
|
241
|
+
goto st94;
|
242
|
+
tr57:
|
212
243
|
#line 98 "wikitext_ragel.rl"
|
213
244
|
{te = p+1;{
|
214
245
|
EMIT(PRE_END);
|
215
|
-
{p++; cs =
|
246
|
+
{p++; cs = 94; goto _out;}
|
216
247
|
}}
|
217
|
-
goto
|
218
|
-
|
248
|
+
goto st94;
|
249
|
+
tr63:
|
219
250
|
#line 140 "wikitext_ragel.rl"
|
220
251
|
{te = p+1;{
|
221
252
|
EMIT(STRONG_END);
|
222
|
-
{p++; cs =
|
253
|
+
{p++; cs = 94; goto _out;}
|
223
254
|
}}
|
224
|
-
goto
|
225
|
-
|
255
|
+
goto st94;
|
256
|
+
tr65:
|
226
257
|
#line 170 "wikitext_ragel.rl"
|
227
258
|
{te = p+1;{
|
228
259
|
EMIT(TT_END);
|
229
|
-
{p++; cs =
|
260
|
+
{p++; cs = 94; goto _out;}
|
230
261
|
}}
|
231
|
-
goto
|
232
|
-
|
262
|
+
goto st94;
|
263
|
+
tr75:
|
233
264
|
#line 104 "wikitext_ragel.rl"
|
234
265
|
{te = p+1;{
|
235
266
|
EMIT(BLOCKQUOTE_START);
|
236
|
-
{p++; cs =
|
267
|
+
{p++; cs = 94; goto _out;}
|
237
268
|
}}
|
238
|
-
goto
|
239
|
-
|
269
|
+
goto st94;
|
270
|
+
tr77:
|
240
271
|
#line 146 "wikitext_ragel.rl"
|
241
272
|
{te = p+1;{
|
242
273
|
EMIT(EM_START);
|
243
|
-
{p++; cs =
|
274
|
+
{p++; cs = 94; goto _out;}
|
244
275
|
}}
|
245
|
-
goto
|
246
|
-
|
276
|
+
goto st94;
|
277
|
+
tr83:
|
247
278
|
#line 80 "wikitext_ragel.rl"
|
248
279
|
{te = p+1;{
|
249
280
|
EMIT(NO_WIKI_START);
|
250
|
-
{p++; cs =
|
281
|
+
{p++; cs = 94; goto _out;}
|
251
282
|
}}
|
252
|
-
goto
|
253
|
-
|
283
|
+
goto st94;
|
284
|
+
tr86:
|
254
285
|
#line 92 "wikitext_ragel.rl"
|
255
286
|
{te = p+1;{
|
256
287
|
EMIT(PRE_START);
|
257
|
-
{p++; cs =
|
288
|
+
{p++; cs = 94; goto _out;}
|
258
289
|
}}
|
259
|
-
goto
|
260
|
-
|
290
|
+
goto st94;
|
291
|
+
tr92:
|
261
292
|
#line 134 "wikitext_ragel.rl"
|
262
293
|
{te = p+1;{
|
263
294
|
EMIT(STRONG_START);
|
264
|
-
{p++; cs =
|
295
|
+
{p++; cs = 94; goto _out;}
|
265
296
|
}}
|
266
|
-
goto
|
267
|
-
|
297
|
+
goto st94;
|
298
|
+
tr94:
|
268
299
|
#line 164 "wikitext_ragel.rl"
|
269
300
|
{te = p+1;{
|
270
301
|
EMIT(TT_START);
|
271
|
-
{p++; cs =
|
302
|
+
{p++; cs = 94; goto _out;}
|
272
303
|
}}
|
273
|
-
goto
|
274
|
-
|
304
|
+
goto st94;
|
305
|
+
tr95:
|
306
|
+
#line 426 "wikitext_ragel.rl"
|
307
|
+
{{p = ((te))-1;}{
|
308
|
+
EMIT(PRINTABLE);
|
309
|
+
{p++; cs = 94; goto _out;}
|
310
|
+
}}
|
311
|
+
goto st94;
|
312
|
+
tr99:
|
275
313
|
#line 281 "wikitext_ragel.rl"
|
276
314
|
{{p = ((te))-1;}{
|
277
315
|
EMIT(URI);
|
278
|
-
{p++; cs =
|
316
|
+
{p++; cs = 94; goto _out;}
|
279
317
|
}}
|
280
|
-
goto
|
281
|
-
|
318
|
+
goto st94;
|
319
|
+
tr110:
|
282
320
|
#line 41 "wikitext_ragel.rl"
|
283
321
|
{
|
284
322
|
out->code_point = *p & 0x7f;
|
285
323
|
}
|
286
|
-
#line
|
324
|
+
#line 446 "wikitext_ragel.rl"
|
287
325
|
{te = p+1;{
|
288
326
|
EMIT(DEFAULT);
|
289
327
|
out->column_stop = out->column_start + 1;
|
290
|
-
{p++; cs =
|
328
|
+
{p++; cs = 94; goto _out;}
|
291
329
|
}}
|
292
|
-
goto
|
293
|
-
|
330
|
+
goto st94;
|
331
|
+
tr111:
|
294
332
|
#line 401 "wikitext_ragel.rl"
|
295
333
|
{te = p+1;{
|
296
334
|
EMIT(CRLF);
|
297
335
|
out->column_stop = 1;
|
298
336
|
out->line_stop++;
|
299
|
-
{p++; cs =
|
337
|
+
{p++; cs = 94; goto _out;}
|
300
338
|
}}
|
301
339
|
#line 41 "wikitext_ragel.rl"
|
302
340
|
{
|
303
341
|
out->code_point = *p & 0x7f;
|
304
342
|
}
|
305
|
-
goto
|
306
|
-
|
343
|
+
goto st94;
|
344
|
+
tr115:
|
307
345
|
#line 353 "wikitext_ragel.rl"
|
308
346
|
{te = p+1;{
|
309
347
|
EMIT(QUOT);
|
310
|
-
{p++; cs =
|
348
|
+
{p++; cs = 94; goto _out;}
|
311
349
|
}}
|
312
|
-
goto
|
313
|
-
|
350
|
+
goto st94;
|
351
|
+
tr116:
|
314
352
|
#line 202 "wikitext_ragel.rl"
|
315
353
|
{te = p+1;{
|
316
354
|
if (out->column_start == 1 ||
|
@@ -321,10 +359,10 @@ tr100:
|
|
321
359
|
EMIT(OL);
|
322
360
|
else
|
323
361
|
EMIT(PRINTABLE);
|
324
|
-
{p++; cs =
|
362
|
+
{p++; cs = 94; goto _out;}
|
325
363
|
}}
|
326
|
-
goto
|
327
|
-
|
364
|
+
goto st94;
|
365
|
+
tr120:
|
328
366
|
#line 215 "wikitext_ragel.rl"
|
329
367
|
{te = p+1;{
|
330
368
|
if (out->column_start == 1 ||
|
@@ -335,42 +373,42 @@ tr103:
|
|
335
373
|
EMIT(UL);
|
336
374
|
else
|
337
375
|
EMIT(PRINTABLE);
|
338
|
-
{p++; cs =
|
376
|
+
{p++; cs = 94; goto _out;}
|
339
377
|
}}
|
340
|
-
goto
|
341
|
-
|
378
|
+
goto st94;
|
379
|
+
tr132:
|
342
380
|
#line 158 "wikitext_ragel.rl"
|
343
381
|
{te = p+1;{
|
344
382
|
EMIT(TT);
|
345
|
-
{p++; cs =
|
383
|
+
{p++; cs = 94; goto _out;}
|
346
384
|
}}
|
347
|
-
goto
|
348
|
-
|
385
|
+
goto st94;
|
386
|
+
tr134:
|
349
387
|
#line 305 "wikitext_ragel.rl"
|
350
388
|
{te = p+1;{
|
351
389
|
EMIT(SEPARATOR);
|
352
|
-
{p++; cs =
|
390
|
+
{p++; cs = 94; goto _out;}
|
353
391
|
}}
|
354
|
-
goto
|
355
|
-
|
392
|
+
goto st94;
|
393
|
+
tr136:
|
356
394
|
#line 401 "wikitext_ragel.rl"
|
357
395
|
{te = p;p--;{
|
358
396
|
EMIT(CRLF);
|
359
397
|
out->column_stop = 1;
|
360
398
|
out->line_stop++;
|
361
|
-
{p++; cs =
|
399
|
+
{p++; cs = 94; goto _out;}
|
362
400
|
}}
|
363
|
-
goto
|
364
|
-
|
401
|
+
goto st94;
|
402
|
+
tr137:
|
365
403
|
#line 401 "wikitext_ragel.rl"
|
366
404
|
{te = p+1;{
|
367
405
|
EMIT(CRLF);
|
368
406
|
out->column_stop = 1;
|
369
407
|
out->line_stop++;
|
370
|
-
{p++; cs =
|
408
|
+
{p++; cs = 94; goto _out;}
|
371
409
|
}}
|
372
|
-
goto
|
373
|
-
|
410
|
+
goto st94;
|
411
|
+
tr138:
|
374
412
|
#line 190 "wikitext_ragel.rl"
|
375
413
|
{te = p;p--;{
|
376
414
|
if (out->column_start == 1 || last_token_type == BLOCKQUOTE)
|
@@ -380,24 +418,31 @@ tr120:
|
|
380
418
|
}
|
381
419
|
else
|
382
420
|
EMIT(SPACE);
|
383
|
-
{p++; cs =
|
421
|
+
{p++; cs = 94; goto _out;}
|
384
422
|
}}
|
385
|
-
goto
|
386
|
-
|
423
|
+
goto st94;
|
424
|
+
tr140:
|
387
425
|
#line 414 "wikitext_ragel.rl"
|
426
|
+
{te = p;p--;{
|
427
|
+
EMIT(SPECIAL_URI_CHARS);
|
428
|
+
{p++; cs = 94; goto _out;}
|
429
|
+
}}
|
430
|
+
goto st94;
|
431
|
+
tr141:
|
432
|
+
#line 426 "wikitext_ragel.rl"
|
388
433
|
{te = p;p--;{
|
389
434
|
EMIT(PRINTABLE);
|
390
|
-
{p++; cs =
|
435
|
+
{p++; cs = 94; goto _out;}
|
391
436
|
}}
|
392
|
-
goto
|
393
|
-
|
437
|
+
goto st94;
|
438
|
+
tr142:
|
394
439
|
#line 359 "wikitext_ragel.rl"
|
395
440
|
{te = p;p--;{
|
396
441
|
EMIT(AMP);
|
397
|
-
{p++; cs =
|
442
|
+
{p++; cs = 94; goto _out;}
|
398
443
|
}}
|
399
|
-
goto
|
400
|
-
|
444
|
+
goto st94;
|
445
|
+
tr146:
|
401
446
|
#line 116 "wikitext_ragel.rl"
|
402
447
|
{te = p;p--;{
|
403
448
|
if (DISTANCE() == 5)
|
@@ -413,10 +458,10 @@ tr127:
|
|
413
458
|
EMIT(EM);
|
414
459
|
else
|
415
460
|
EMIT(PRINTABLE);
|
416
|
-
{p++; cs =
|
461
|
+
{p++; cs = 94; goto _out;}
|
417
462
|
}}
|
418
|
-
goto
|
419
|
-
|
463
|
+
goto st94;
|
464
|
+
tr150:
|
420
465
|
#line 116 "wikitext_ragel.rl"
|
421
466
|
{te = p+1;{
|
422
467
|
if (DISTANCE() == 5)
|
@@ -432,49 +477,24 @@ tr131:
|
|
432
477
|
EMIT(EM);
|
433
478
|
else
|
434
479
|
EMIT(PRINTABLE);
|
435
|
-
{p++; cs =
|
480
|
+
{p++; cs = 94; goto _out;}
|
436
481
|
}}
|
437
|
-
goto
|
438
|
-
|
439
|
-
#line 1 "wikitext_ragel.rl"
|
440
|
-
{ switch( act ) {
|
441
|
-
case 20:
|
442
|
-
{{p = ((te))-1;}
|
443
|
-
EMIT(URI);
|
444
|
-
{p++; cs = 80; goto _out;}
|
445
|
-
}
|
446
|
-
break;
|
447
|
-
case 21:
|
448
|
-
{{p = ((te))-1;}
|
449
|
-
EMIT(MAIL);
|
450
|
-
{p++; cs = 80; goto _out;}
|
451
|
-
}
|
452
|
-
break;
|
453
|
-
case 41:
|
454
|
-
{{p = ((te))-1;}
|
455
|
-
EMIT(PRINTABLE);
|
456
|
-
{p++; cs = 80; goto _out;}
|
457
|
-
}
|
458
|
-
break;
|
459
|
-
default: break;
|
460
|
-
}
|
461
|
-
}
|
462
|
-
goto st80;
|
463
|
-
tr138:
|
482
|
+
goto st94;
|
483
|
+
tr152:
|
464
484
|
#line 287 "wikitext_ragel.rl"
|
465
485
|
{te = p;p--;{
|
466
486
|
EMIT(MAIL);
|
467
|
-
{p++; cs =
|
487
|
+
{p++; cs = 94; goto _out;}
|
468
488
|
}}
|
469
|
-
goto
|
470
|
-
|
489
|
+
goto st94;
|
490
|
+
tr157:
|
471
491
|
#line 365 "wikitext_ragel.rl"
|
472
492
|
{te = p;p--;{
|
473
493
|
EMIT(LESS);
|
474
|
-
{p++; cs =
|
494
|
+
{p++; cs = 94; goto _out;}
|
475
495
|
}}
|
476
|
-
goto
|
477
|
-
|
496
|
+
goto st94;
|
497
|
+
tr165:
|
478
498
|
#line 228 "wikitext_ragel.rl"
|
479
499
|
{te = p;p--;{
|
480
500
|
if (out->column_start == 1 || last_token_type == BLOCKQUOTE || last_token_type == BLOCKQUOTE_START)
|
@@ -525,10 +545,10 @@ tr150:
|
|
525
545
|
REWIND();
|
526
546
|
EMIT(PRINTABLE);
|
527
547
|
}
|
528
|
-
{p++; cs =
|
548
|
+
{p++; cs = 94; goto _out;}
|
529
549
|
}}
|
530
|
-
goto
|
531
|
-
|
550
|
+
goto st94;
|
551
|
+
tr167:
|
532
552
|
#line 177 "wikitext_ragel.rl"
|
533
553
|
{te = p;p--;{
|
534
554
|
if (out->column_start == 1 || last_token_type == BLOCKQUOTE)
|
@@ -538,10 +558,10 @@ tr152:
|
|
538
558
|
REWIND();
|
539
559
|
EMIT(GREATER);
|
540
560
|
}
|
541
|
-
{p++; cs =
|
561
|
+
{p++; cs = 94; goto _out;}
|
542
562
|
}}
|
543
|
-
goto
|
544
|
-
|
563
|
+
goto st94;
|
564
|
+
tr168:
|
545
565
|
#line 177 "wikitext_ragel.rl"
|
546
566
|
{te = p+1;{
|
547
567
|
if (out->column_start == 1 || last_token_type == BLOCKQUOTE)
|
@@ -551,112 +571,117 @@ tr153:
|
|
551
571
|
REWIND();
|
552
572
|
EMIT(GREATER);
|
553
573
|
}
|
554
|
-
{p++; cs =
|
574
|
+
{p++; cs = 94; goto _out;}
|
555
575
|
}}
|
556
|
-
goto
|
557
|
-
|
576
|
+
goto st94;
|
577
|
+
tr172:
|
558
578
|
#line 281 "wikitext_ragel.rl"
|
559
579
|
{te = p;p--;{
|
560
580
|
EMIT(URI);
|
561
|
-
{p++; cs =
|
581
|
+
{p++; cs = 94; goto _out;}
|
562
582
|
}}
|
563
|
-
goto
|
564
|
-
|
583
|
+
goto st94;
|
584
|
+
tr186:
|
565
585
|
#line 311 "wikitext_ragel.rl"
|
566
586
|
{te = p;p--;{
|
567
587
|
EMIT(EXT_LINK_START);
|
568
|
-
{p++; cs =
|
588
|
+
{p++; cs = 94; goto _out;}
|
569
589
|
}}
|
570
|
-
goto
|
571
|
-
|
590
|
+
goto st94;
|
591
|
+
tr187:
|
572
592
|
#line 293 "wikitext_ragel.rl"
|
573
593
|
{te = p+1;{
|
574
594
|
EMIT(LINK_START);
|
575
|
-
{p++; cs =
|
595
|
+
{p++; cs = 94; goto _out;}
|
576
596
|
}}
|
577
|
-
goto
|
578
|
-
|
597
|
+
goto st94;
|
598
|
+
tr188:
|
579
599
|
#line 317 "wikitext_ragel.rl"
|
580
600
|
{te = p;p--;{
|
581
601
|
EMIT(EXT_LINK_END);
|
582
|
-
{p++; cs =
|
602
|
+
{p++; cs = 94; goto _out;}
|
583
603
|
}}
|
584
|
-
goto
|
585
|
-
|
604
|
+
goto st94;
|
605
|
+
tr189:
|
586
606
|
#line 299 "wikitext_ragel.rl"
|
587
607
|
{te = p+1;{
|
588
608
|
EMIT(LINK_END);
|
589
|
-
{p++; cs =
|
609
|
+
{p++; cs = 94; goto _out;}
|
590
610
|
}}
|
591
|
-
goto
|
592
|
-
|
611
|
+
goto st94;
|
612
|
+
tr190:
|
593
613
|
#line 389 "wikitext_ragel.rl"
|
594
614
|
{te = p;p--;{
|
595
615
|
EMIT(LEFT_CURLY);
|
596
|
-
{p++; cs =
|
616
|
+
{p++; cs = 94; goto _out;}
|
597
617
|
}}
|
598
|
-
goto
|
599
|
-
|
618
|
+
goto st94;
|
619
|
+
tr191:
|
600
620
|
#line 377 "wikitext_ragel.rl"
|
601
621
|
{te = p+1;{
|
602
622
|
EMIT(IMG_START);
|
603
|
-
{p++; cs =
|
623
|
+
{p++; cs = 94; goto _out;}
|
604
624
|
}}
|
605
|
-
goto
|
606
|
-
|
625
|
+
goto st94;
|
626
|
+
tr192:
|
607
627
|
#line 395 "wikitext_ragel.rl"
|
608
628
|
{te = p;p--;{
|
609
629
|
EMIT(RIGHT_CURLY);
|
610
|
-
{p++; cs =
|
630
|
+
{p++; cs = 94; goto _out;}
|
611
631
|
}}
|
612
|
-
goto
|
613
|
-
|
632
|
+
goto st94;
|
633
|
+
tr193:
|
614
634
|
#line 383 "wikitext_ragel.rl"
|
615
635
|
{te = p+1;{
|
616
636
|
EMIT(IMG_END);
|
617
|
-
{p++; cs =
|
637
|
+
{p++; cs = 94; goto _out;}
|
618
638
|
}}
|
619
|
-
goto
|
620
|
-
|
639
|
+
goto st94;
|
640
|
+
st94:
|
621
641
|
#line 1 "wikitext_ragel.rl"
|
622
642
|
{ts = 0;}
|
623
643
|
if ( ++p == pe )
|
624
|
-
goto
|
625
|
-
case
|
644
|
+
goto _test_eof94;
|
645
|
+
case 94:
|
626
646
|
#line 1 "wikitext_ragel.rl"
|
627
647
|
{ts = p;}
|
628
|
-
#line
|
629
|
-
switch( (*p) ) {
|
630
|
-
case 10: goto
|
631
|
-
case 13: goto
|
632
|
-
case 32: goto
|
633
|
-
case
|
634
|
-
case
|
635
|
-
case
|
636
|
-
case
|
637
|
-
case
|
638
|
-
case
|
639
|
-
case
|
640
|
-
case
|
641
|
-
case
|
642
|
-
case
|
643
|
-
case
|
644
|
-
case
|
645
|
-
case
|
646
|
-
case
|
647
|
-
case
|
648
|
-
case
|
649
|
-
case
|
650
|
-
case
|
651
|
-
case
|
652
|
-
case
|
653
|
-
case
|
654
|
-
case
|
655
|
-
case
|
656
|
-
case
|
657
|
-
case
|
658
|
-
case
|
659
|
-
case
|
648
|
+
#line 649 "wikitext_ragel.c"
|
649
|
+
switch( (*p) ) {
|
650
|
+
case 10: goto tr111;
|
651
|
+
case 13: goto tr112;
|
652
|
+
case 32: goto tr113;
|
653
|
+
case 33: goto st97;
|
654
|
+
case 34: goto tr115;
|
655
|
+
case 35: goto tr116;
|
656
|
+
case 38: goto tr118;
|
657
|
+
case 39: goto st100;
|
658
|
+
case 41: goto st97;
|
659
|
+
case 42: goto tr120;
|
660
|
+
case 44: goto st97;
|
661
|
+
case 45: goto tr121;
|
662
|
+
case 46: goto tr122;
|
663
|
+
case 60: goto tr123;
|
664
|
+
case 61: goto tr124;
|
665
|
+
case 62: goto tr125;
|
666
|
+
case 64: goto st98;
|
667
|
+
case 70: goto tr126;
|
668
|
+
case 72: goto tr127;
|
669
|
+
case 77: goto tr128;
|
670
|
+
case 83: goto tr129;
|
671
|
+
case 91: goto st136;
|
672
|
+
case 92: goto st98;
|
673
|
+
case 93: goto st137;
|
674
|
+
case 94: goto st98;
|
675
|
+
case 96: goto tr132;
|
676
|
+
case 102: goto tr126;
|
677
|
+
case 104: goto tr127;
|
678
|
+
case 109: goto tr128;
|
679
|
+
case 115: goto tr129;
|
680
|
+
case 123: goto st138;
|
681
|
+
case 124: goto tr134;
|
682
|
+
case 125: goto st139;
|
683
|
+
case 126: goto st98;
|
684
|
+
case 127: goto tr110;
|
660
685
|
}
|
661
686
|
if ( (*p) < 1 ) {
|
662
687
|
if ( (*p) < -32 ) {
|
@@ -668,19 +693,19 @@ case 80:
|
|
668
693
|
} else
|
669
694
|
goto st2;
|
670
695
|
} else if ( (*p) > 31 ) {
|
671
|
-
if ( (*p) <
|
672
|
-
if (
|
673
|
-
goto
|
696
|
+
if ( (*p) < 48 ) {
|
697
|
+
if ( 36 <= (*p) && (*p) <= 47 )
|
698
|
+
goto st98;
|
674
699
|
} else if ( (*p) > 57 ) {
|
675
|
-
if ( (*p) >
|
700
|
+
if ( (*p) > 63 ) {
|
676
701
|
if ( 65 <= (*p) && (*p) <= 122 )
|
677
|
-
goto
|
702
|
+
goto tr121;
|
678
703
|
} else if ( (*p) >= 58 )
|
679
|
-
goto
|
704
|
+
goto st97;
|
680
705
|
} else
|
681
|
-
goto
|
706
|
+
goto tr121;
|
682
707
|
} else
|
683
|
-
goto
|
708
|
+
goto tr110;
|
684
709
|
goto st0;
|
685
710
|
st0:
|
686
711
|
cs = 0;
|
@@ -727,70 +752,83 @@ case 6:
|
|
727
752
|
if ( (*p) <= -65 )
|
728
753
|
goto tr6;
|
729
754
|
goto st0;
|
730
|
-
|
755
|
+
tr112:
|
731
756
|
#line 41 "wikitext_ragel.rl"
|
732
757
|
{
|
733
758
|
out->code_point = *p & 0x7f;
|
734
759
|
}
|
735
|
-
goto
|
736
|
-
|
760
|
+
goto st95;
|
761
|
+
st95:
|
737
762
|
if ( ++p == pe )
|
738
|
-
goto
|
739
|
-
case
|
740
|
-
#line
|
763
|
+
goto _test_eof95;
|
764
|
+
case 95:
|
765
|
+
#line 766 "wikitext_ragel.c"
|
741
766
|
if ( (*p) == 10 )
|
742
|
-
goto
|
743
|
-
goto
|
744
|
-
|
767
|
+
goto tr137;
|
768
|
+
goto tr136;
|
769
|
+
tr113:
|
745
770
|
#line 36 "wikitext_ragel.rl"
|
746
771
|
{
|
747
772
|
MARK();
|
748
773
|
}
|
749
|
-
goto
|
750
|
-
|
774
|
+
goto st96;
|
775
|
+
st96:
|
751
776
|
if ( ++p == pe )
|
752
|
-
goto
|
753
|
-
case
|
754
|
-
#line
|
777
|
+
goto _test_eof96;
|
778
|
+
case 96:
|
779
|
+
#line 780 "wikitext_ragel.c"
|
755
780
|
if ( (*p) == 32 )
|
756
|
-
goto
|
757
|
-
goto
|
758
|
-
|
781
|
+
goto st96;
|
782
|
+
goto tr138;
|
783
|
+
st97:
|
759
784
|
if ( ++p == pe )
|
760
|
-
goto
|
761
|
-
case
|
785
|
+
goto _test_eof97;
|
786
|
+
case 97:
|
787
|
+
switch( (*p) ) {
|
788
|
+
case 33: goto st97;
|
789
|
+
case 41: goto st97;
|
790
|
+
case 44: goto st97;
|
791
|
+
case 46: goto st97;
|
792
|
+
case 63: goto st97;
|
793
|
+
}
|
794
|
+
if ( 58 <= (*p) && (*p) <= 59 )
|
795
|
+
goto st97;
|
796
|
+
goto tr140;
|
797
|
+
st98:
|
798
|
+
if ( ++p == pe )
|
799
|
+
goto _test_eof98;
|
800
|
+
case 98:
|
762
801
|
switch( (*p) ) {
|
763
|
-
case
|
764
|
-
case
|
765
|
-
case
|
802
|
+
case 40: goto st98;
|
803
|
+
case 43: goto st98;
|
804
|
+
case 45: goto st98;
|
805
|
+
case 92: goto st98;
|
806
|
+
case 126: goto st98;
|
766
807
|
}
|
767
|
-
if ( (*p) <
|
808
|
+
if ( (*p) < 64 ) {
|
768
809
|
if ( (*p) > 37 ) {
|
769
|
-
if (
|
770
|
-
goto
|
810
|
+
if ( 47 <= (*p) && (*p) <= 57 )
|
811
|
+
goto st98;
|
771
812
|
} else if ( (*p) >= 36 )
|
772
|
-
goto
|
773
|
-
} else if ( (*p) >
|
774
|
-
if ( (*p)
|
775
|
-
if ( 63 <= (*p) && (*p) <= 90 )
|
776
|
-
goto st83;
|
777
|
-
} else if ( (*p) > 95 ) {
|
813
|
+
goto st98;
|
814
|
+
} else if ( (*p) > 90 ) {
|
815
|
+
if ( (*p) > 95 ) {
|
778
816
|
if ( 97 <= (*p) && (*p) <= 122 )
|
779
|
-
goto
|
780
|
-
} else
|
781
|
-
goto
|
817
|
+
goto st98;
|
818
|
+
} else if ( (*p) >= 94 )
|
819
|
+
goto st98;
|
782
820
|
} else
|
783
|
-
goto
|
784
|
-
goto
|
785
|
-
|
821
|
+
goto st98;
|
822
|
+
goto tr141;
|
823
|
+
tr118:
|
786
824
|
#line 1 "wikitext_ragel.rl"
|
787
825
|
{te = p+1;}
|
788
|
-
goto
|
789
|
-
|
826
|
+
goto st99;
|
827
|
+
st99:
|
790
828
|
if ( ++p == pe )
|
791
|
-
goto
|
792
|
-
case
|
793
|
-
#line
|
829
|
+
goto _test_eof99;
|
830
|
+
case 99:
|
831
|
+
#line 832 "wikitext_ragel.c"
|
794
832
|
switch( (*p) ) {
|
795
833
|
case 35: goto st7;
|
796
834
|
case 97: goto st13;
|
@@ -801,7 +839,7 @@ case 84:
|
|
801
839
|
goto st11;
|
802
840
|
} else if ( (*p) >= 65 )
|
803
841
|
goto st11;
|
804
|
-
goto
|
842
|
+
goto tr142;
|
805
843
|
st7:
|
806
844
|
if ( ++p == pe )
|
807
845
|
goto _test_eof7;
|
@@ -989,437 +1027,383 @@ case 19:
|
|
989
1027
|
} else
|
990
1028
|
goto st11;
|
991
1029
|
goto tr7;
|
992
|
-
|
1030
|
+
st100:
|
993
1031
|
if ( ++p == pe )
|
994
|
-
goto
|
995
|
-
case
|
1032
|
+
goto _test_eof100;
|
1033
|
+
case 100:
|
996
1034
|
if ( (*p) == 39 )
|
997
|
-
goto
|
998
|
-
goto
|
999
|
-
|
1035
|
+
goto st101;
|
1036
|
+
goto tr146;
|
1037
|
+
st101:
|
1000
1038
|
if ( ++p == pe )
|
1001
|
-
goto
|
1002
|
-
case
|
1039
|
+
goto _test_eof101;
|
1040
|
+
case 101:
|
1003
1041
|
if ( (*p) == 39 )
|
1004
|
-
goto
|
1005
|
-
goto
|
1006
|
-
|
1042
|
+
goto st102;
|
1043
|
+
goto tr146;
|
1044
|
+
st102:
|
1007
1045
|
if ( ++p == pe )
|
1008
|
-
goto
|
1009
|
-
case
|
1046
|
+
goto _test_eof102;
|
1047
|
+
case 102:
|
1010
1048
|
if ( (*p) == 39 )
|
1011
|
-
goto
|
1012
|
-
goto
|
1013
|
-
|
1049
|
+
goto st103;
|
1050
|
+
goto tr146;
|
1051
|
+
st103:
|
1014
1052
|
if ( ++p == pe )
|
1015
|
-
goto
|
1016
|
-
case
|
1053
|
+
goto _test_eof103;
|
1054
|
+
case 103:
|
1017
1055
|
if ( (*p) == 39 )
|
1018
|
-
goto
|
1019
|
-
goto
|
1020
|
-
|
1056
|
+
goto tr150;
|
1057
|
+
goto tr146;
|
1058
|
+
tr121:
|
1059
|
+
#line 1 "wikitext_ragel.rl"
|
1060
|
+
{te = p+1;}
|
1061
|
+
#line 426 "wikitext_ragel.rl"
|
1062
|
+
{act = 42;}
|
1063
|
+
goto st104;
|
1064
|
+
st104:
|
1021
1065
|
if ( ++p == pe )
|
1022
|
-
goto
|
1023
|
-
case
|
1024
|
-
|
1025
|
-
|
1026
|
-
case
|
1027
|
-
case
|
1028
|
-
case
|
1029
|
-
case
|
1030
|
-
case
|
1031
|
-
case
|
1032
|
-
case
|
1066
|
+
goto _test_eof104;
|
1067
|
+
case 104:
|
1068
|
+
#line 1069 "wikitext_ragel.c"
|
1069
|
+
switch( (*p) ) {
|
1070
|
+
case 40: goto st98;
|
1071
|
+
case 43: goto st98;
|
1072
|
+
case 46: goto st20;
|
1073
|
+
case 47: goto st98;
|
1074
|
+
case 64: goto st109;
|
1075
|
+
case 92: goto st98;
|
1076
|
+
case 94: goto st98;
|
1077
|
+
case 95: goto tr121;
|
1078
|
+
case 126: goto st98;
|
1033
1079
|
}
|
1034
1080
|
if ( (*p) < 45 ) {
|
1035
|
-
if ( (*p)
|
1036
|
-
|
1037
|
-
goto st83;
|
1038
|
-
} else if ( (*p) > 41 ) {
|
1039
|
-
if ( 43 <= (*p) && (*p) <= 44 )
|
1040
|
-
goto st83;
|
1041
|
-
} else
|
1042
|
-
goto st83;
|
1081
|
+
if ( 36 <= (*p) && (*p) <= 37 )
|
1082
|
+
goto st98;
|
1043
1083
|
} else if ( (*p) > 57 ) {
|
1044
|
-
if ( (*p)
|
1045
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
1046
|
-
goto st83;
|
1047
|
-
} else if ( (*p) > 90 ) {
|
1084
|
+
if ( (*p) > 90 ) {
|
1048
1085
|
if ( 97 <= (*p) && (*p) <= 122 )
|
1049
|
-
goto
|
1050
|
-
} else
|
1051
|
-
goto
|
1086
|
+
goto tr121;
|
1087
|
+
} else if ( (*p) >= 65 )
|
1088
|
+
goto tr121;
|
1052
1089
|
} else
|
1053
|
-
goto
|
1054
|
-
goto
|
1055
|
-
|
1090
|
+
goto tr121;
|
1091
|
+
goto tr141;
|
1092
|
+
st20:
|
1056
1093
|
if ( ++p == pe )
|
1057
|
-
goto
|
1058
|
-
case
|
1094
|
+
goto _test_eof20;
|
1095
|
+
case 20:
|
1059
1096
|
switch( (*p) ) {
|
1060
|
-
case
|
1061
|
-
case
|
1062
|
-
case 126: goto st83;
|
1097
|
+
case 64: goto st21;
|
1098
|
+
case 95: goto st20;
|
1063
1099
|
}
|
1064
|
-
if ( (*p) <
|
1065
|
-
if ( (*p)
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
if ( (*p)
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
goto st83;
|
1074
|
-
} else
|
1075
|
-
goto st83;
|
1076
|
-
} else if ( (*p) > 59 ) {
|
1077
|
-
if ( (*p) < 65 ) {
|
1078
|
-
if ( 63 <= (*p) && (*p) <= 64 )
|
1079
|
-
goto st83;
|
1080
|
-
} else if ( (*p) > 90 ) {
|
1081
|
-
if ( (*p) > 95 ) {
|
1082
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1083
|
-
goto tr133;
|
1084
|
-
} else if ( (*p) >= 94 )
|
1085
|
-
goto st83;
|
1086
|
-
} else
|
1087
|
-
goto tr133;
|
1100
|
+
if ( (*p) < 48 ) {
|
1101
|
+
if ( 45 <= (*p) && (*p) <= 46 )
|
1102
|
+
goto st20;
|
1103
|
+
} else if ( (*p) > 57 ) {
|
1104
|
+
if ( (*p) > 90 ) {
|
1105
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
1106
|
+
goto st20;
|
1107
|
+
} else if ( (*p) >= 65 )
|
1108
|
+
goto st20;
|
1088
1109
|
} else
|
1089
|
-
goto
|
1090
|
-
goto
|
1091
|
-
|
1092
|
-
#line 1 "wikitext_ragel.rl"
|
1093
|
-
{te = p+1;}
|
1094
|
-
#line 414 "wikitext_ragel.rl"
|
1095
|
-
{act = 41;}
|
1096
|
-
goto st91;
|
1097
|
-
tr141:
|
1098
|
-
#line 1 "wikitext_ragel.rl"
|
1099
|
-
{te = p+1;}
|
1100
|
-
#line 287 "wikitext_ragel.rl"
|
1101
|
-
{act = 21;}
|
1102
|
-
goto st91;
|
1103
|
-
st91:
|
1110
|
+
goto st20;
|
1111
|
+
goto tr23;
|
1112
|
+
st21:
|
1104
1113
|
if ( ++p == pe )
|
1105
|
-
goto
|
1106
|
-
case
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
}
|
1114
|
-
if ( (*p) < 58 ) {
|
1115
|
-
if ( (*p) < 40 ) {
|
1116
|
-
if ( 36 <= (*p) && (*p) <= 37 )
|
1117
|
-
goto st83;
|
1118
|
-
} else if ( (*p) > 41 ) {
|
1119
|
-
if ( (*p) > 47 ) {
|
1120
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1121
|
-
goto tr133;
|
1122
|
-
} else if ( (*p) >= 43 )
|
1123
|
-
goto st83;
|
1124
|
-
} else
|
1125
|
-
goto st83;
|
1126
|
-
} else if ( (*p) > 59 ) {
|
1127
|
-
if ( (*p) < 65 ) {
|
1128
|
-
if ( 63 <= (*p) && (*p) <= 64 )
|
1129
|
-
goto st83;
|
1130
|
-
} else if ( (*p) > 90 ) {
|
1131
|
-
if ( (*p) > 95 ) {
|
1132
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1133
|
-
goto tr133;
|
1134
|
-
} else if ( (*p) >= 94 )
|
1135
|
-
goto st83;
|
1136
|
-
} else
|
1137
|
-
goto tr133;
|
1114
|
+
goto _test_eof21;
|
1115
|
+
case 21:
|
1116
|
+
if ( (*p) < 65 ) {
|
1117
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1118
|
+
goto st22;
|
1119
|
+
} else if ( (*p) > 90 ) {
|
1120
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
1121
|
+
goto st22;
|
1138
1122
|
} else
|
1139
|
-
goto
|
1140
|
-
goto
|
1141
|
-
|
1123
|
+
goto st22;
|
1124
|
+
goto tr23;
|
1125
|
+
st22:
|
1142
1126
|
if ( ++p == pe )
|
1143
|
-
goto
|
1144
|
-
case
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1150
|
-
if ( (*p)
|
1151
|
-
if ( (*p)
|
1152
|
-
|
1153
|
-
goto st83;
|
1154
|
-
} else if ( (*p) > 41 ) {
|
1155
|
-
if ( (*p) > 47 ) {
|
1156
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1157
|
-
goto tr133;
|
1158
|
-
} else if ( (*p) >= 43 )
|
1159
|
-
goto st83;
|
1160
|
-
} else
|
1161
|
-
goto st83;
|
1162
|
-
} else if ( (*p) > 59 ) {
|
1163
|
-
if ( (*p) < 65 ) {
|
1164
|
-
if ( 63 <= (*p) && (*p) <= 64 )
|
1165
|
-
goto st83;
|
1166
|
-
} else if ( (*p) > 90 ) {
|
1167
|
-
if ( (*p) > 95 ) {
|
1168
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1169
|
-
goto st93;
|
1170
|
-
} else if ( (*p) >= 94 )
|
1171
|
-
goto st83;
|
1172
|
-
} else
|
1173
|
-
goto st93;
|
1127
|
+
goto _test_eof22;
|
1128
|
+
case 22:
|
1129
|
+
if ( (*p) == 46 )
|
1130
|
+
goto st23;
|
1131
|
+
if ( (*p) < 65 ) {
|
1132
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1133
|
+
goto st22;
|
1134
|
+
} else if ( (*p) > 90 ) {
|
1135
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
1136
|
+
goto st22;
|
1174
1137
|
} else
|
1175
|
-
goto
|
1176
|
-
goto
|
1177
|
-
|
1138
|
+
goto st22;
|
1139
|
+
goto tr23;
|
1140
|
+
st23:
|
1178
1141
|
if ( ++p == pe )
|
1179
|
-
goto
|
1180
|
-
case
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
if ( (*p) < 58 ) {
|
1188
|
-
if ( (*p) < 40 ) {
|
1189
|
-
if ( 36 <= (*p) && (*p) <= 37 )
|
1190
|
-
goto st83;
|
1191
|
-
} else if ( (*p) > 41 ) {
|
1192
|
-
if ( (*p) > 47 ) {
|
1193
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1194
|
-
goto tr133;
|
1195
|
-
} else if ( (*p) >= 43 )
|
1196
|
-
goto st83;
|
1197
|
-
} else
|
1198
|
-
goto st83;
|
1199
|
-
} else if ( (*p) > 59 ) {
|
1200
|
-
if ( (*p) < 65 ) {
|
1201
|
-
if ( 63 <= (*p) && (*p) <= 64 )
|
1202
|
-
goto st83;
|
1203
|
-
} else if ( (*p) > 90 ) {
|
1204
|
-
if ( (*p) > 95 ) {
|
1205
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1206
|
-
goto st94;
|
1207
|
-
} else if ( (*p) >= 94 )
|
1208
|
-
goto st83;
|
1209
|
-
} else
|
1210
|
-
goto st94;
|
1142
|
+
goto _test_eof23;
|
1143
|
+
case 23:
|
1144
|
+
if ( (*p) < 65 ) {
|
1145
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1146
|
+
goto st22;
|
1147
|
+
} else if ( (*p) > 90 ) {
|
1148
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
1149
|
+
goto st24;
|
1211
1150
|
} else
|
1212
|
-
goto
|
1213
|
-
goto
|
1214
|
-
|
1151
|
+
goto st24;
|
1152
|
+
goto tr23;
|
1153
|
+
st24:
|
1215
1154
|
if ( ++p == pe )
|
1216
|
-
goto
|
1217
|
-
case
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
}
|
1224
|
-
|
1225
|
-
|
1226
|
-
if ( 36 <= (*p) && (*p) <= 37 )
|
1227
|
-
goto st83;
|
1228
|
-
} else if ( (*p) > 41 ) {
|
1229
|
-
if ( (*p) > 47 ) {
|
1230
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1231
|
-
goto tr133;
|
1232
|
-
} else if ( (*p) >= 43 )
|
1233
|
-
goto st83;
|
1234
|
-
} else
|
1235
|
-
goto st83;
|
1236
|
-
} else if ( (*p) > 59 ) {
|
1237
|
-
if ( (*p) < 65 ) {
|
1238
|
-
if ( 63 <= (*p) && (*p) <= 64 )
|
1239
|
-
goto st83;
|
1240
|
-
} else if ( (*p) > 90 ) {
|
1241
|
-
if ( (*p) > 95 ) {
|
1242
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1243
|
-
goto st95;
|
1244
|
-
} else if ( (*p) >= 94 )
|
1245
|
-
goto st83;
|
1246
|
-
} else
|
1247
|
-
goto st95;
|
1155
|
+
goto _test_eof24;
|
1156
|
+
case 24:
|
1157
|
+
if ( (*p) == 46 )
|
1158
|
+
goto st23;
|
1159
|
+
if ( (*p) < 65 ) {
|
1160
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1161
|
+
goto st22;
|
1162
|
+
} else if ( (*p) > 90 ) {
|
1163
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
1164
|
+
goto tr29;
|
1248
1165
|
} else
|
1249
|
-
goto
|
1250
|
-
goto
|
1251
|
-
|
1166
|
+
goto tr29;
|
1167
|
+
goto tr23;
|
1168
|
+
tr29:
|
1169
|
+
#line 1 "wikitext_ragel.rl"
|
1170
|
+
{te = p+1;}
|
1171
|
+
#line 287 "wikitext_ragel.rl"
|
1172
|
+
{act = 21;}
|
1173
|
+
goto st105;
|
1174
|
+
st105:
|
1252
1175
|
if ( ++p == pe )
|
1253
|
-
goto
|
1254
|
-
case
|
1255
|
-
|
1256
|
-
|
1257
|
-
|
1258
|
-
|
1259
|
-
|
1260
|
-
|
1261
|
-
if ( (*p)
|
1262
|
-
if ( (*p)
|
1263
|
-
|
1264
|
-
goto st83;
|
1265
|
-
} else if ( (*p) > 41 ) {
|
1266
|
-
if ( (*p) > 47 ) {
|
1267
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1268
|
-
goto tr133;
|
1269
|
-
} else if ( (*p) >= 43 )
|
1270
|
-
goto st83;
|
1271
|
-
} else
|
1272
|
-
goto st83;
|
1273
|
-
} else if ( (*p) > 59 ) {
|
1274
|
-
if ( (*p) < 65 ) {
|
1275
|
-
if ( 63 <= (*p) && (*p) <= 64 )
|
1276
|
-
goto st83;
|
1277
|
-
} else if ( (*p) > 90 ) {
|
1278
|
-
if ( (*p) > 95 ) {
|
1279
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1280
|
-
goto st96;
|
1281
|
-
} else if ( (*p) >= 94 )
|
1282
|
-
goto st83;
|
1283
|
-
} else
|
1284
|
-
goto st96;
|
1176
|
+
goto _test_eof105;
|
1177
|
+
case 105:
|
1178
|
+
#line 1179 "wikitext_ragel.c"
|
1179
|
+
if ( (*p) == 46 )
|
1180
|
+
goto st23;
|
1181
|
+
if ( (*p) < 65 ) {
|
1182
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1183
|
+
goto st22;
|
1184
|
+
} else if ( (*p) > 90 ) {
|
1185
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
1186
|
+
goto tr153;
|
1285
1187
|
} else
|
1286
|
-
goto
|
1287
|
-
goto
|
1288
|
-
|
1188
|
+
goto tr153;
|
1189
|
+
goto tr152;
|
1190
|
+
tr153:
|
1191
|
+
#line 1 "wikitext_ragel.rl"
|
1192
|
+
{te = p+1;}
|
1193
|
+
#line 287 "wikitext_ragel.rl"
|
1194
|
+
{act = 21;}
|
1195
|
+
goto st106;
|
1196
|
+
st106:
|
1289
1197
|
if ( ++p == pe )
|
1290
|
-
goto
|
1291
|
-
case
|
1292
|
-
|
1293
|
-
|
1294
|
-
|
1295
|
-
|
1296
|
-
|
1297
|
-
|
1298
|
-
if ( (*p)
|
1299
|
-
if ( (*p)
|
1300
|
-
|
1301
|
-
goto st83;
|
1302
|
-
} else if ( (*p) > 41 ) {
|
1303
|
-
if ( (*p) > 47 ) {
|
1304
|
-
if ( 48 <= (*p) && (*p) <= 57 )
|
1305
|
-
goto tr133;
|
1306
|
-
} else if ( (*p) >= 43 )
|
1307
|
-
goto st83;
|
1308
|
-
} else
|
1309
|
-
goto st83;
|
1310
|
-
} else if ( (*p) > 59 ) {
|
1311
|
-
if ( (*p) < 65 ) {
|
1312
|
-
if ( 63 <= (*p) && (*p) <= 64 )
|
1313
|
-
goto st83;
|
1314
|
-
} else if ( (*p) > 90 ) {
|
1315
|
-
if ( (*p) > 95 ) {
|
1316
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
1317
|
-
goto tr141;
|
1318
|
-
} else if ( (*p) >= 94 )
|
1319
|
-
goto st83;
|
1320
|
-
} else
|
1321
|
-
goto tr141;
|
1198
|
+
goto _test_eof106;
|
1199
|
+
case 106:
|
1200
|
+
#line 1201 "wikitext_ragel.c"
|
1201
|
+
if ( (*p) == 46 )
|
1202
|
+
goto st23;
|
1203
|
+
if ( (*p) < 65 ) {
|
1204
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1205
|
+
goto st22;
|
1206
|
+
} else if ( (*p) > 90 ) {
|
1207
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
1208
|
+
goto tr154;
|
1322
1209
|
} else
|
1323
|
-
goto
|
1324
|
-
goto
|
1325
|
-
|
1210
|
+
goto tr154;
|
1211
|
+
goto tr152;
|
1212
|
+
tr154:
|
1326
1213
|
#line 1 "wikitext_ragel.rl"
|
1327
1214
|
{te = p+1;}
|
1328
|
-
|
1329
|
-
|
1215
|
+
#line 287 "wikitext_ragel.rl"
|
1216
|
+
{act = 21;}
|
1217
|
+
goto st107;
|
1218
|
+
st107:
|
1330
1219
|
if ( ++p == pe )
|
1331
|
-
goto
|
1332
|
-
case
|
1333
|
-
#line
|
1334
|
-
|
1335
|
-
|
1336
|
-
|
1337
|
-
|
1338
|
-
|
1339
|
-
|
1340
|
-
|
1341
|
-
|
1342
|
-
|
1343
|
-
|
1344
|
-
|
1345
|
-
|
1346
|
-
|
1347
|
-
|
1348
|
-
|
1349
|
-
|
1350
|
-
|
1220
|
+
goto _test_eof107;
|
1221
|
+
case 107:
|
1222
|
+
#line 1223 "wikitext_ragel.c"
|
1223
|
+
if ( (*p) == 46 )
|
1224
|
+
goto st23;
|
1225
|
+
if ( (*p) < 65 ) {
|
1226
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1227
|
+
goto st22;
|
1228
|
+
} else if ( (*p) > 90 ) {
|
1229
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
1230
|
+
goto tr155;
|
1231
|
+
} else
|
1232
|
+
goto tr155;
|
1233
|
+
goto tr152;
|
1234
|
+
tr155:
|
1235
|
+
#line 1 "wikitext_ragel.rl"
|
1236
|
+
{te = p+1;}
|
1237
|
+
#line 287 "wikitext_ragel.rl"
|
1238
|
+
{act = 21;}
|
1239
|
+
goto st108;
|
1240
|
+
st108:
|
1351
1241
|
if ( ++p == pe )
|
1352
|
-
goto
|
1353
|
-
case
|
1354
|
-
|
1355
|
-
|
1356
|
-
|
1357
|
-
|
1358
|
-
|
1359
|
-
|
1360
|
-
|
1361
|
-
|
1362
|
-
|
1363
|
-
|
1364
|
-
|
1365
|
-
|
1366
|
-
|
1367
|
-
}
|
1368
|
-
goto tr23;
|
1369
|
-
st21:
|
1242
|
+
goto _test_eof108;
|
1243
|
+
case 108:
|
1244
|
+
#line 1245 "wikitext_ragel.c"
|
1245
|
+
if ( (*p) == 46 )
|
1246
|
+
goto st23;
|
1247
|
+
if ( (*p) < 65 ) {
|
1248
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1249
|
+
goto st22;
|
1250
|
+
} else if ( (*p) > 90 ) {
|
1251
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
1252
|
+
goto st22;
|
1253
|
+
} else
|
1254
|
+
goto st22;
|
1255
|
+
goto tr152;
|
1256
|
+
st109:
|
1370
1257
|
if ( ++p == pe )
|
1371
|
-
goto
|
1372
|
-
case
|
1258
|
+
goto _test_eof109;
|
1259
|
+
case 109:
|
1373
1260
|
switch( (*p) ) {
|
1374
|
-
case
|
1375
|
-
case
|
1261
|
+
case 40: goto st98;
|
1262
|
+
case 43: goto st98;
|
1263
|
+
case 45: goto st98;
|
1264
|
+
case 47: goto st98;
|
1265
|
+
case 64: goto st98;
|
1266
|
+
case 92: goto st98;
|
1267
|
+
case 126: goto st98;
|
1376
1268
|
}
|
1377
|
-
|
1378
|
-
|
1269
|
+
if ( (*p) < 65 ) {
|
1270
|
+
if ( (*p) > 37 ) {
|
1271
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1272
|
+
goto tr156;
|
1273
|
+
} else if ( (*p) >= 36 )
|
1274
|
+
goto st98;
|
1275
|
+
} else if ( (*p) > 90 ) {
|
1276
|
+
if ( (*p) > 95 ) {
|
1277
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
1278
|
+
goto tr156;
|
1279
|
+
} else if ( (*p) >= 94 )
|
1280
|
+
goto st98;
|
1281
|
+
} else
|
1282
|
+
goto tr156;
|
1283
|
+
goto tr141;
|
1284
|
+
tr156:
|
1285
|
+
#line 1 "wikitext_ragel.rl"
|
1286
|
+
{te = p+1;}
|
1287
|
+
#line 426 "wikitext_ragel.rl"
|
1288
|
+
{act = 42;}
|
1289
|
+
goto st110;
|
1290
|
+
st110:
|
1379
1291
|
if ( ++p == pe )
|
1380
|
-
goto
|
1381
|
-
case
|
1292
|
+
goto _test_eof110;
|
1293
|
+
case 110:
|
1294
|
+
#line 1295 "wikitext_ragel.c"
|
1382
1295
|
switch( (*p) ) {
|
1383
|
-
case
|
1384
|
-
case
|
1296
|
+
case 40: goto st98;
|
1297
|
+
case 43: goto st98;
|
1298
|
+
case 46: goto st23;
|
1299
|
+
case 64: goto st98;
|
1300
|
+
case 92: goto st98;
|
1301
|
+
case 126: goto st98;
|
1385
1302
|
}
|
1386
|
-
|
1387
|
-
|
1303
|
+
if ( (*p) < 48 ) {
|
1304
|
+
if ( (*p) > 37 ) {
|
1305
|
+
if ( 45 <= (*p) && (*p) <= 47 )
|
1306
|
+
goto st98;
|
1307
|
+
} else if ( (*p) >= 36 )
|
1308
|
+
goto st98;
|
1309
|
+
} else if ( (*p) > 57 ) {
|
1310
|
+
if ( (*p) < 94 ) {
|
1311
|
+
if ( 65 <= (*p) && (*p) <= 90 )
|
1312
|
+
goto tr156;
|
1313
|
+
} else if ( (*p) > 95 ) {
|
1314
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
1315
|
+
goto tr156;
|
1316
|
+
} else
|
1317
|
+
goto st98;
|
1318
|
+
} else
|
1319
|
+
goto tr156;
|
1320
|
+
goto tr141;
|
1321
|
+
tr122:
|
1322
|
+
#line 1 "wikitext_ragel.rl"
|
1323
|
+
{te = p+1;}
|
1324
|
+
#line 414 "wikitext_ragel.rl"
|
1325
|
+
{act = 41;}
|
1326
|
+
goto st111;
|
1327
|
+
st111:
|
1388
1328
|
if ( ++p == pe )
|
1389
|
-
goto
|
1390
|
-
case
|
1329
|
+
goto _test_eof111;
|
1330
|
+
case 111:
|
1331
|
+
#line 1332 "wikitext_ragel.c"
|
1391
1332
|
switch( (*p) ) {
|
1392
|
-
case
|
1393
|
-
case
|
1333
|
+
case 33: goto st97;
|
1334
|
+
case 41: goto st97;
|
1335
|
+
case 44: goto st97;
|
1336
|
+
case 45: goto st20;
|
1337
|
+
case 46: goto tr122;
|
1338
|
+
case 63: goto st97;
|
1339
|
+
case 64: goto st21;
|
1340
|
+
case 95: goto st20;
|
1394
1341
|
}
|
1395
|
-
|
1396
|
-
|
1342
|
+
if ( (*p) < 58 ) {
|
1343
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
1344
|
+
goto st20;
|
1345
|
+
} else if ( (*p) > 59 ) {
|
1346
|
+
if ( (*p) > 90 ) {
|
1347
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
1348
|
+
goto st20;
|
1349
|
+
} else if ( (*p) >= 65 )
|
1350
|
+
goto st20;
|
1351
|
+
} else
|
1352
|
+
goto st97;
|
1353
|
+
goto tr140;
|
1354
|
+
tr123:
|
1355
|
+
#line 1 "wikitext_ragel.rl"
|
1356
|
+
{te = p+1;}
|
1357
|
+
goto st112;
|
1358
|
+
st112:
|
1397
1359
|
if ( ++p == pe )
|
1398
|
-
goto
|
1399
|
-
case
|
1400
|
-
|
1401
|
-
|
1402
|
-
case
|
1403
|
-
|
1404
|
-
|
1360
|
+
goto _test_eof112;
|
1361
|
+
case 112:
|
1362
|
+
#line 1363 "wikitext_ragel.c"
|
1363
|
+
switch( (*p) ) {
|
1364
|
+
case 47: goto st25;
|
1365
|
+
case 66: goto st55;
|
1366
|
+
case 69: goto st65;
|
1367
|
+
case 78: goto st67;
|
1368
|
+
case 80: goto st73;
|
1369
|
+
case 83: goto st76;
|
1370
|
+
case 84: goto st82;
|
1371
|
+
case 98: goto st55;
|
1372
|
+
case 101: goto st65;
|
1373
|
+
case 110: goto st67;
|
1374
|
+
case 112: goto st73;
|
1375
|
+
case 115: goto st76;
|
1376
|
+
case 116: goto st82;
|
1377
|
+
}
|
1378
|
+
goto tr157;
|
1405
1379
|
st25:
|
1406
1380
|
if ( ++p == pe )
|
1407
1381
|
goto _test_eof25;
|
1408
1382
|
case 25:
|
1409
1383
|
switch( (*p) ) {
|
1410
|
-
case
|
1411
|
-
case
|
1412
|
-
|
1413
|
-
|
1384
|
+
case 66: goto st26;
|
1385
|
+
case 69: goto st36;
|
1386
|
+
case 78: goto st38;
|
1387
|
+
case 80: goto st44;
|
1388
|
+
case 83: goto st47;
|
1389
|
+
case 84: goto st53;
|
1390
|
+
case 98: goto st26;
|
1391
|
+
case 101: goto st36;
|
1392
|
+
case 110: goto st38;
|
1393
|
+
case 112: goto st44;
|
1394
|
+
case 115: goto st47;
|
1395
|
+
case 116: goto st53;
|
1396
|
+
}
|
1397
|
+
goto tr30;
|
1414
1398
|
st26:
|
1415
1399
|
if ( ++p == pe )
|
1416
1400
|
goto _test_eof26;
|
1417
1401
|
case 26:
|
1418
1402
|
switch( (*p) ) {
|
1419
|
-
case
|
1420
|
-
case
|
1403
|
+
case 76: goto st27;
|
1404
|
+
case 108: goto st27;
|
1421
1405
|
}
|
1422
|
-
goto
|
1406
|
+
goto tr30;
|
1423
1407
|
st27:
|
1424
1408
|
if ( ++p == pe )
|
1425
1409
|
goto _test_eof27;
|
@@ -1428,247 +1412,247 @@ case 27:
|
|
1428
1412
|
case 79: goto st28;
|
1429
1413
|
case 111: goto st28;
|
1430
1414
|
}
|
1431
|
-
goto
|
1415
|
+
goto tr30;
|
1432
1416
|
st28:
|
1433
1417
|
if ( ++p == pe )
|
1434
1418
|
goto _test_eof28;
|
1435
1419
|
case 28:
|
1436
1420
|
switch( (*p) ) {
|
1437
|
-
case
|
1438
|
-
case
|
1421
|
+
case 67: goto st29;
|
1422
|
+
case 99: goto st29;
|
1439
1423
|
}
|
1440
|
-
goto
|
1424
|
+
goto tr30;
|
1441
1425
|
st29:
|
1442
1426
|
if ( ++p == pe )
|
1443
1427
|
goto _test_eof29;
|
1444
1428
|
case 29:
|
1445
1429
|
switch( (*p) ) {
|
1446
|
-
case
|
1447
|
-
case
|
1430
|
+
case 75: goto st30;
|
1431
|
+
case 107: goto st30;
|
1448
1432
|
}
|
1449
|
-
goto
|
1433
|
+
goto tr30;
|
1450
1434
|
st30:
|
1451
1435
|
if ( ++p == pe )
|
1452
1436
|
goto _test_eof30;
|
1453
1437
|
case 30:
|
1454
|
-
|
1455
|
-
goto
|
1456
|
-
|
1438
|
+
switch( (*p) ) {
|
1439
|
+
case 81: goto st31;
|
1440
|
+
case 113: goto st31;
|
1441
|
+
}
|
1442
|
+
goto tr30;
|
1457
1443
|
st31:
|
1458
1444
|
if ( ++p == pe )
|
1459
1445
|
goto _test_eof31;
|
1460
1446
|
case 31:
|
1461
1447
|
switch( (*p) ) {
|
1462
|
-
case
|
1463
|
-
case
|
1448
|
+
case 85: goto st32;
|
1449
|
+
case 117: goto st32;
|
1464
1450
|
}
|
1465
|
-
goto
|
1451
|
+
goto tr30;
|
1466
1452
|
st32:
|
1467
1453
|
if ( ++p == pe )
|
1468
1454
|
goto _test_eof32;
|
1469
1455
|
case 32:
|
1470
|
-
|
1471
|
-
goto
|
1472
|
-
|
1456
|
+
switch( (*p) ) {
|
1457
|
+
case 79: goto st33;
|
1458
|
+
case 111: goto st33;
|
1459
|
+
}
|
1460
|
+
goto tr30;
|
1473
1461
|
st33:
|
1474
1462
|
if ( ++p == pe )
|
1475
1463
|
goto _test_eof33;
|
1476
1464
|
case 33:
|
1477
1465
|
switch( (*p) ) {
|
1478
|
-
case
|
1479
|
-
case
|
1466
|
+
case 84: goto st34;
|
1467
|
+
case 116: goto st34;
|
1480
1468
|
}
|
1481
|
-
goto
|
1469
|
+
goto tr30;
|
1482
1470
|
st34:
|
1483
1471
|
if ( ++p == pe )
|
1484
1472
|
goto _test_eof34;
|
1485
1473
|
case 34:
|
1486
1474
|
switch( (*p) ) {
|
1487
|
-
case
|
1488
|
-
case
|
1475
|
+
case 69: goto st35;
|
1476
|
+
case 101: goto st35;
|
1489
1477
|
}
|
1490
|
-
goto
|
1478
|
+
goto tr30;
|
1491
1479
|
st35:
|
1492
1480
|
if ( ++p == pe )
|
1493
1481
|
goto _test_eof35;
|
1494
1482
|
case 35:
|
1495
|
-
|
1496
|
-
|
1497
|
-
|
1498
|
-
}
|
1499
|
-
goto tr23;
|
1483
|
+
if ( (*p) == 62 )
|
1484
|
+
goto tr46;
|
1485
|
+
goto tr30;
|
1500
1486
|
st36:
|
1501
1487
|
if ( ++p == pe )
|
1502
1488
|
goto _test_eof36;
|
1503
1489
|
case 36:
|
1504
1490
|
switch( (*p) ) {
|
1505
|
-
case
|
1506
|
-
case
|
1491
|
+
case 77: goto st37;
|
1492
|
+
case 109: goto st37;
|
1507
1493
|
}
|
1508
|
-
goto
|
1494
|
+
goto tr30;
|
1509
1495
|
st37:
|
1510
1496
|
if ( ++p == pe )
|
1511
1497
|
goto _test_eof37;
|
1512
1498
|
case 37:
|
1513
|
-
|
1514
|
-
|
1515
|
-
|
1516
|
-
}
|
1517
|
-
goto tr23;
|
1499
|
+
if ( (*p) == 62 )
|
1500
|
+
goto tr48;
|
1501
|
+
goto tr30;
|
1518
1502
|
st38:
|
1519
1503
|
if ( ++p == pe )
|
1520
1504
|
goto _test_eof38;
|
1521
1505
|
case 38:
|
1522
|
-
|
1523
|
-
goto
|
1524
|
-
|
1506
|
+
switch( (*p) ) {
|
1507
|
+
case 79: goto st39;
|
1508
|
+
case 111: goto st39;
|
1509
|
+
}
|
1510
|
+
goto tr30;
|
1525
1511
|
st39:
|
1526
1512
|
if ( ++p == pe )
|
1527
1513
|
goto _test_eof39;
|
1528
1514
|
case 39:
|
1529
1515
|
switch( (*p) ) {
|
1530
|
-
case
|
1531
|
-
case
|
1516
|
+
case 87: goto st40;
|
1517
|
+
case 119: goto st40;
|
1532
1518
|
}
|
1533
|
-
goto
|
1519
|
+
goto tr30;
|
1534
1520
|
st40:
|
1535
1521
|
if ( ++p == pe )
|
1536
1522
|
goto _test_eof40;
|
1537
1523
|
case 40:
|
1538
1524
|
switch( (*p) ) {
|
1539
|
-
case
|
1540
|
-
case
|
1525
|
+
case 73: goto st41;
|
1526
|
+
case 105: goto st41;
|
1541
1527
|
}
|
1542
|
-
goto
|
1528
|
+
goto tr30;
|
1543
1529
|
st41:
|
1544
1530
|
if ( ++p == pe )
|
1545
1531
|
goto _test_eof41;
|
1546
1532
|
case 41:
|
1547
|
-
|
1548
|
-
goto
|
1549
|
-
|
1533
|
+
switch( (*p) ) {
|
1534
|
+
case 75: goto st42;
|
1535
|
+
case 107: goto st42;
|
1536
|
+
}
|
1537
|
+
goto tr30;
|
1550
1538
|
st42:
|
1551
1539
|
if ( ++p == pe )
|
1552
1540
|
goto _test_eof42;
|
1553
1541
|
case 42:
|
1554
1542
|
switch( (*p) ) {
|
1555
|
-
case
|
1556
|
-
case
|
1543
|
+
case 73: goto st43;
|
1544
|
+
case 105: goto st43;
|
1557
1545
|
}
|
1558
|
-
goto
|
1546
|
+
goto tr30;
|
1559
1547
|
st43:
|
1560
1548
|
if ( ++p == pe )
|
1561
1549
|
goto _test_eof43;
|
1562
1550
|
case 43:
|
1563
|
-
|
1564
|
-
|
1565
|
-
|
1566
|
-
}
|
1567
|
-
goto tr23;
|
1551
|
+
if ( (*p) == 62 )
|
1552
|
+
goto tr54;
|
1553
|
+
goto tr30;
|
1568
1554
|
st44:
|
1569
1555
|
if ( ++p == pe )
|
1570
1556
|
goto _test_eof44;
|
1571
1557
|
case 44:
|
1572
1558
|
switch( (*p) ) {
|
1573
|
-
case
|
1574
|
-
case
|
1559
|
+
case 82: goto st45;
|
1560
|
+
case 114: goto st45;
|
1575
1561
|
}
|
1576
|
-
goto
|
1562
|
+
goto tr30;
|
1577
1563
|
st45:
|
1578
1564
|
if ( ++p == pe )
|
1579
1565
|
goto _test_eof45;
|
1580
1566
|
case 45:
|
1581
1567
|
switch( (*p) ) {
|
1582
|
-
case
|
1583
|
-
case
|
1568
|
+
case 69: goto st46;
|
1569
|
+
case 101: goto st46;
|
1584
1570
|
}
|
1585
|
-
goto
|
1571
|
+
goto tr30;
|
1586
1572
|
st46:
|
1587
1573
|
if ( ++p == pe )
|
1588
1574
|
goto _test_eof46;
|
1589
1575
|
case 46:
|
1590
|
-
|
1591
|
-
|
1592
|
-
|
1593
|
-
}
|
1594
|
-
goto tr23;
|
1576
|
+
if ( (*p) == 62 )
|
1577
|
+
goto tr57;
|
1578
|
+
goto tr30;
|
1595
1579
|
st47:
|
1596
1580
|
if ( ++p == pe )
|
1597
1581
|
goto _test_eof47;
|
1598
1582
|
case 47:
|
1599
|
-
|
1600
|
-
goto
|
1601
|
-
|
1583
|
+
switch( (*p) ) {
|
1584
|
+
case 84: goto st48;
|
1585
|
+
case 116: goto st48;
|
1586
|
+
}
|
1587
|
+
goto tr30;
|
1602
1588
|
st48:
|
1603
1589
|
if ( ++p == pe )
|
1604
1590
|
goto _test_eof48;
|
1605
1591
|
case 48:
|
1606
1592
|
switch( (*p) ) {
|
1607
|
-
case
|
1608
|
-
case
|
1593
|
+
case 82: goto st49;
|
1594
|
+
case 114: goto st49;
|
1609
1595
|
}
|
1610
|
-
goto
|
1596
|
+
goto tr30;
|
1611
1597
|
st49:
|
1612
1598
|
if ( ++p == pe )
|
1613
1599
|
goto _test_eof49;
|
1614
1600
|
case 49:
|
1615
|
-
|
1616
|
-
goto
|
1617
|
-
|
1601
|
+
switch( (*p) ) {
|
1602
|
+
case 79: goto st50;
|
1603
|
+
case 111: goto st50;
|
1604
|
+
}
|
1605
|
+
goto tr30;
|
1618
1606
|
st50:
|
1619
1607
|
if ( ++p == pe )
|
1620
1608
|
goto _test_eof50;
|
1621
1609
|
case 50:
|
1622
1610
|
switch( (*p) ) {
|
1623
|
-
case
|
1624
|
-
case
|
1611
|
+
case 78: goto st51;
|
1612
|
+
case 110: goto st51;
|
1625
1613
|
}
|
1626
|
-
goto
|
1614
|
+
goto tr30;
|
1627
1615
|
st51:
|
1628
1616
|
if ( ++p == pe )
|
1629
1617
|
goto _test_eof51;
|
1630
1618
|
case 51:
|
1631
1619
|
switch( (*p) ) {
|
1632
|
-
case
|
1633
|
-
case
|
1620
|
+
case 71: goto st52;
|
1621
|
+
case 103: goto st52;
|
1634
1622
|
}
|
1635
|
-
goto
|
1623
|
+
goto tr30;
|
1636
1624
|
st52:
|
1637
1625
|
if ( ++p == pe )
|
1638
1626
|
goto _test_eof52;
|
1639
1627
|
case 52:
|
1640
|
-
|
1641
|
-
|
1642
|
-
|
1643
|
-
}
|
1644
|
-
goto tr23;
|
1628
|
+
if ( (*p) == 62 )
|
1629
|
+
goto tr63;
|
1630
|
+
goto tr30;
|
1645
1631
|
st53:
|
1646
1632
|
if ( ++p == pe )
|
1647
1633
|
goto _test_eof53;
|
1648
1634
|
case 53:
|
1649
1635
|
switch( (*p) ) {
|
1650
|
-
case
|
1651
|
-
case
|
1636
|
+
case 84: goto st54;
|
1637
|
+
case 116: goto st54;
|
1652
1638
|
}
|
1653
|
-
goto
|
1639
|
+
goto tr30;
|
1654
1640
|
st54:
|
1655
1641
|
if ( ++p == pe )
|
1656
1642
|
goto _test_eof54;
|
1657
1643
|
case 54:
|
1658
|
-
|
1659
|
-
|
1660
|
-
|
1661
|
-
}
|
1662
|
-
goto tr23;
|
1644
|
+
if ( (*p) == 62 )
|
1645
|
+
goto tr65;
|
1646
|
+
goto tr30;
|
1663
1647
|
st55:
|
1664
1648
|
if ( ++p == pe )
|
1665
1649
|
goto _test_eof55;
|
1666
1650
|
case 55:
|
1667
1651
|
switch( (*p) ) {
|
1668
|
-
case
|
1669
|
-
case
|
1652
|
+
case 76: goto st56;
|
1653
|
+
case 108: goto st56;
|
1670
1654
|
}
|
1671
|
-
goto
|
1655
|
+
goto tr30;
|
1672
1656
|
st56:
|
1673
1657
|
if ( ++p == pe )
|
1674
1658
|
goto _test_eof56;
|
@@ -1677,1357 +1661,1133 @@ case 56:
|
|
1677
1661
|
case 79: goto st57;
|
1678
1662
|
case 111: goto st57;
|
1679
1663
|
}
|
1680
|
-
goto
|
1664
|
+
goto tr30;
|
1681
1665
|
st57:
|
1682
1666
|
if ( ++p == pe )
|
1683
1667
|
goto _test_eof57;
|
1684
1668
|
case 57:
|
1685
1669
|
switch( (*p) ) {
|
1686
|
-
case
|
1687
|
-
case
|
1670
|
+
case 67: goto st58;
|
1671
|
+
case 99: goto st58;
|
1688
1672
|
}
|
1689
|
-
goto
|
1673
|
+
goto tr30;
|
1690
1674
|
st58:
|
1691
1675
|
if ( ++p == pe )
|
1692
1676
|
goto _test_eof58;
|
1693
1677
|
case 58:
|
1694
1678
|
switch( (*p) ) {
|
1695
|
-
case
|
1696
|
-
case
|
1679
|
+
case 75: goto st59;
|
1680
|
+
case 107: goto st59;
|
1697
1681
|
}
|
1698
|
-
goto
|
1682
|
+
goto tr30;
|
1699
1683
|
st59:
|
1700
1684
|
if ( ++p == pe )
|
1701
1685
|
goto _test_eof59;
|
1702
1686
|
case 59:
|
1703
|
-
|
1704
|
-
goto
|
1705
|
-
|
1687
|
+
switch( (*p) ) {
|
1688
|
+
case 81: goto st60;
|
1689
|
+
case 113: goto st60;
|
1690
|
+
}
|
1691
|
+
goto tr30;
|
1706
1692
|
st60:
|
1707
1693
|
if ( ++p == pe )
|
1708
1694
|
goto _test_eof60;
|
1709
1695
|
case 60:
|
1710
1696
|
switch( (*p) ) {
|
1711
|
-
case
|
1712
|
-
case
|
1697
|
+
case 85: goto st61;
|
1698
|
+
case 117: goto st61;
|
1713
1699
|
}
|
1714
|
-
goto
|
1700
|
+
goto tr30;
|
1715
1701
|
st61:
|
1716
1702
|
if ( ++p == pe )
|
1717
1703
|
goto _test_eof61;
|
1718
1704
|
case 61:
|
1719
|
-
|
1720
|
-
goto
|
1721
|
-
|
1705
|
+
switch( (*p) ) {
|
1706
|
+
case 79: goto st62;
|
1707
|
+
case 111: goto st62;
|
1708
|
+
}
|
1709
|
+
goto tr30;
|
1722
1710
|
st62:
|
1723
1711
|
if ( ++p == pe )
|
1724
1712
|
goto _test_eof62;
|
1725
1713
|
case 62:
|
1726
1714
|
switch( (*p) ) {
|
1727
|
-
case
|
1728
|
-
case
|
1715
|
+
case 84: goto st63;
|
1716
|
+
case 116: goto st63;
|
1729
1717
|
}
|
1730
|
-
goto
|
1718
|
+
goto tr30;
|
1731
1719
|
st63:
|
1732
1720
|
if ( ++p == pe )
|
1733
1721
|
goto _test_eof63;
|
1734
1722
|
case 63:
|
1735
1723
|
switch( (*p) ) {
|
1736
|
-
case
|
1737
|
-
case
|
1724
|
+
case 69: goto st64;
|
1725
|
+
case 101: goto st64;
|
1738
1726
|
}
|
1739
|
-
goto
|
1727
|
+
goto tr30;
|
1740
1728
|
st64:
|
1741
1729
|
if ( ++p == pe )
|
1742
1730
|
goto _test_eof64;
|
1743
1731
|
case 64:
|
1744
|
-
|
1745
|
-
|
1746
|
-
|
1747
|
-
}
|
1748
|
-
goto tr23;
|
1732
|
+
if ( (*p) == 62 )
|
1733
|
+
goto tr75;
|
1734
|
+
goto tr30;
|
1749
1735
|
st65:
|
1750
1736
|
if ( ++p == pe )
|
1751
1737
|
goto _test_eof65;
|
1752
1738
|
case 65:
|
1753
1739
|
switch( (*p) ) {
|
1754
|
-
case
|
1755
|
-
case
|
1740
|
+
case 77: goto st66;
|
1741
|
+
case 109: goto st66;
|
1756
1742
|
}
|
1757
|
-
goto
|
1743
|
+
goto tr30;
|
1758
1744
|
st66:
|
1759
1745
|
if ( ++p == pe )
|
1760
1746
|
goto _test_eof66;
|
1761
1747
|
case 66:
|
1762
|
-
|
1763
|
-
|
1764
|
-
|
1765
|
-
}
|
1766
|
-
goto tr23;
|
1748
|
+
if ( (*p) == 62 )
|
1749
|
+
goto tr77;
|
1750
|
+
goto tr30;
|
1767
1751
|
st67:
|
1768
1752
|
if ( ++p == pe )
|
1769
1753
|
goto _test_eof67;
|
1770
1754
|
case 67:
|
1771
|
-
|
1772
|
-
goto
|
1773
|
-
|
1755
|
+
switch( (*p) ) {
|
1756
|
+
case 79: goto st68;
|
1757
|
+
case 111: goto st68;
|
1758
|
+
}
|
1759
|
+
goto tr30;
|
1774
1760
|
st68:
|
1775
1761
|
if ( ++p == pe )
|
1776
1762
|
goto _test_eof68;
|
1777
1763
|
case 68:
|
1778
1764
|
switch( (*p) ) {
|
1779
|
-
case
|
1780
|
-
case
|
1765
|
+
case 87: goto st69;
|
1766
|
+
case 119: goto st69;
|
1781
1767
|
}
|
1782
|
-
goto
|
1768
|
+
goto tr30;
|
1783
1769
|
st69:
|
1784
1770
|
if ( ++p == pe )
|
1785
1771
|
goto _test_eof69;
|
1786
1772
|
case 69:
|
1787
1773
|
switch( (*p) ) {
|
1788
|
-
case
|
1789
|
-
case
|
1774
|
+
case 73: goto st70;
|
1775
|
+
case 105: goto st70;
|
1790
1776
|
}
|
1791
|
-
goto
|
1777
|
+
goto tr30;
|
1792
1778
|
st70:
|
1793
1779
|
if ( ++p == pe )
|
1794
1780
|
goto _test_eof70;
|
1795
1781
|
case 70:
|
1796
|
-
|
1797
|
-
goto
|
1798
|
-
|
1782
|
+
switch( (*p) ) {
|
1783
|
+
case 75: goto st71;
|
1784
|
+
case 107: goto st71;
|
1785
|
+
}
|
1786
|
+
goto tr30;
|
1799
1787
|
st71:
|
1800
1788
|
if ( ++p == pe )
|
1801
1789
|
goto _test_eof71;
|
1802
1790
|
case 71:
|
1803
1791
|
switch( (*p) ) {
|
1804
|
-
case
|
1805
|
-
case
|
1792
|
+
case 73: goto st72;
|
1793
|
+
case 105: goto st72;
|
1806
1794
|
}
|
1807
|
-
goto
|
1795
|
+
goto tr30;
|
1808
1796
|
st72:
|
1809
1797
|
if ( ++p == pe )
|
1810
1798
|
goto _test_eof72;
|
1811
1799
|
case 72:
|
1812
|
-
|
1813
|
-
|
1814
|
-
|
1815
|
-
}
|
1816
|
-
goto tr23;
|
1800
|
+
if ( (*p) == 62 )
|
1801
|
+
goto tr83;
|
1802
|
+
goto tr30;
|
1817
1803
|
st73:
|
1818
1804
|
if ( ++p == pe )
|
1819
1805
|
goto _test_eof73;
|
1820
1806
|
case 73:
|
1821
1807
|
switch( (*p) ) {
|
1822
|
-
case
|
1823
|
-
case
|
1808
|
+
case 82: goto st74;
|
1809
|
+
case 114: goto st74;
|
1824
1810
|
}
|
1825
|
-
goto
|
1811
|
+
goto tr30;
|
1826
1812
|
st74:
|
1827
1813
|
if ( ++p == pe )
|
1828
1814
|
goto _test_eof74;
|
1829
1815
|
case 74:
|
1830
1816
|
switch( (*p) ) {
|
1831
|
-
case
|
1832
|
-
case
|
1817
|
+
case 69: goto st75;
|
1818
|
+
case 101: goto st75;
|
1833
1819
|
}
|
1834
|
-
goto
|
1820
|
+
goto tr30;
|
1835
1821
|
st75:
|
1836
1822
|
if ( ++p == pe )
|
1837
1823
|
goto _test_eof75;
|
1838
1824
|
case 75:
|
1839
|
-
|
1840
|
-
|
1841
|
-
|
1842
|
-
}
|
1843
|
-
goto tr23;
|
1825
|
+
if ( (*p) == 62 )
|
1826
|
+
goto tr86;
|
1827
|
+
goto tr30;
|
1844
1828
|
st76:
|
1845
1829
|
if ( ++p == pe )
|
1846
1830
|
goto _test_eof76;
|
1847
1831
|
case 76:
|
1848
|
-
|
1849
|
-
goto
|
1850
|
-
|
1832
|
+
switch( (*p) ) {
|
1833
|
+
case 84: goto st77;
|
1834
|
+
case 116: goto st77;
|
1835
|
+
}
|
1836
|
+
goto tr30;
|
1851
1837
|
st77:
|
1852
1838
|
if ( ++p == pe )
|
1853
1839
|
goto _test_eof77;
|
1854
1840
|
case 77:
|
1855
1841
|
switch( (*p) ) {
|
1856
|
-
case
|
1857
|
-
case
|
1842
|
+
case 82: goto st78;
|
1843
|
+
case 114: goto st78;
|
1858
1844
|
}
|
1859
|
-
goto
|
1845
|
+
goto tr30;
|
1860
1846
|
st78:
|
1861
1847
|
if ( ++p == pe )
|
1862
1848
|
goto _test_eof78;
|
1863
1849
|
case 78:
|
1850
|
+
switch( (*p) ) {
|
1851
|
+
case 79: goto st79;
|
1852
|
+
case 111: goto st79;
|
1853
|
+
}
|
1854
|
+
goto tr30;
|
1855
|
+
st79:
|
1856
|
+
if ( ++p == pe )
|
1857
|
+
goto _test_eof79;
|
1858
|
+
case 79:
|
1859
|
+
switch( (*p) ) {
|
1860
|
+
case 78: goto st80;
|
1861
|
+
case 110: goto st80;
|
1862
|
+
}
|
1863
|
+
goto tr30;
|
1864
|
+
st80:
|
1865
|
+
if ( ++p == pe )
|
1866
|
+
goto _test_eof80;
|
1867
|
+
case 80:
|
1868
|
+
switch( (*p) ) {
|
1869
|
+
case 71: goto st81;
|
1870
|
+
case 103: goto st81;
|
1871
|
+
}
|
1872
|
+
goto tr30;
|
1873
|
+
st81:
|
1874
|
+
if ( ++p == pe )
|
1875
|
+
goto _test_eof81;
|
1876
|
+
case 81:
|
1864
1877
|
if ( (*p) == 62 )
|
1865
|
-
goto
|
1866
|
-
goto
|
1867
|
-
|
1878
|
+
goto tr92;
|
1879
|
+
goto tr30;
|
1880
|
+
st82:
|
1881
|
+
if ( ++p == pe )
|
1882
|
+
goto _test_eof82;
|
1883
|
+
case 82:
|
1884
|
+
switch( (*p) ) {
|
1885
|
+
case 84: goto st83;
|
1886
|
+
case 116: goto st83;
|
1887
|
+
}
|
1888
|
+
goto tr30;
|
1889
|
+
st83:
|
1890
|
+
if ( ++p == pe )
|
1891
|
+
goto _test_eof83;
|
1892
|
+
case 83:
|
1893
|
+
if ( (*p) == 62 )
|
1894
|
+
goto tr94;
|
1895
|
+
goto tr30;
|
1896
|
+
tr124:
|
1868
1897
|
#line 36 "wikitext_ragel.rl"
|
1869
1898
|
{
|
1870
1899
|
MARK();
|
1871
1900
|
}
|
1872
|
-
goto
|
1873
|
-
|
1901
|
+
goto st113;
|
1902
|
+
st113:
|
1874
1903
|
if ( ++p == pe )
|
1875
|
-
goto
|
1876
|
-
case
|
1877
|
-
#line
|
1904
|
+
goto _test_eof113;
|
1905
|
+
case 113:
|
1906
|
+
#line 1907 "wikitext_ragel.c"
|
1878
1907
|
switch( (*p) ) {
|
1879
|
-
case 32: goto
|
1880
|
-
case 61: goto
|
1908
|
+
case 32: goto st114;
|
1909
|
+
case 61: goto tr124;
|
1881
1910
|
}
|
1882
|
-
goto
|
1883
|
-
|
1911
|
+
goto tr165;
|
1912
|
+
st114:
|
1884
1913
|
if ( ++p == pe )
|
1885
|
-
goto
|
1886
|
-
case
|
1914
|
+
goto _test_eof114;
|
1915
|
+
case 114:
|
1887
1916
|
if ( (*p) == 32 )
|
1888
|
-
goto
|
1889
|
-
goto
|
1890
|
-
|
1917
|
+
goto st114;
|
1918
|
+
goto tr165;
|
1919
|
+
tr125:
|
1891
1920
|
#line 36 "wikitext_ragel.rl"
|
1892
1921
|
{
|
1893
1922
|
MARK();
|
1894
1923
|
}
|
1895
|
-
goto
|
1896
|
-
|
1924
|
+
goto st115;
|
1925
|
+
st115:
|
1897
1926
|
if ( ++p == pe )
|
1898
|
-
goto
|
1899
|
-
case
|
1900
|
-
#line
|
1927
|
+
goto _test_eof115;
|
1928
|
+
case 115:
|
1929
|
+
#line 1930 "wikitext_ragel.c"
|
1901
1930
|
if ( (*p) == 32 )
|
1902
|
-
goto
|
1903
|
-
goto
|
1904
|
-
|
1931
|
+
goto tr168;
|
1932
|
+
goto tr167;
|
1933
|
+
tr126:
|
1934
|
+
#line 1 "wikitext_ragel.rl"
|
1935
|
+
{te = p+1;}
|
1936
|
+
#line 426 "wikitext_ragel.rl"
|
1937
|
+
{act = 42;}
|
1938
|
+
goto st116;
|
1939
|
+
st116:
|
1905
1940
|
if ( ++p == pe )
|
1906
|
-
goto
|
1907
|
-
case
|
1908
|
-
|
1909
|
-
|
1910
|
-
case
|
1911
|
-
case
|
1912
|
-
case
|
1913
|
-
case
|
1914
|
-
case
|
1915
|
-
case
|
1916
|
-
case
|
1917
|
-
case
|
1918
|
-
case
|
1941
|
+
goto _test_eof116;
|
1942
|
+
case 116:
|
1943
|
+
#line 1944 "wikitext_ragel.c"
|
1944
|
+
switch( (*p) ) {
|
1945
|
+
case 40: goto st98;
|
1946
|
+
case 43: goto st98;
|
1947
|
+
case 46: goto st20;
|
1948
|
+
case 47: goto st98;
|
1949
|
+
case 64: goto st109;
|
1950
|
+
case 84: goto tr169;
|
1951
|
+
case 92: goto st98;
|
1952
|
+
case 94: goto st98;
|
1953
|
+
case 95: goto tr121;
|
1954
|
+
case 116: goto tr169;
|
1955
|
+
case 126: goto st98;
|
1919
1956
|
}
|
1920
1957
|
if ( (*p) < 45 ) {
|
1921
|
-
if ( (*p)
|
1922
|
-
|
1923
|
-
goto st83;
|
1924
|
-
} else if ( (*p) > 41 ) {
|
1925
|
-
if ( 43 <= (*p) && (*p) <= 44 )
|
1926
|
-
goto st83;
|
1927
|
-
} else
|
1928
|
-
goto st83;
|
1958
|
+
if ( 36 <= (*p) && (*p) <= 37 )
|
1959
|
+
goto st98;
|
1929
1960
|
} else if ( (*p) > 57 ) {
|
1930
|
-
if ( (*p)
|
1931
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
1932
|
-
goto st83;
|
1933
|
-
} else if ( (*p) > 90 ) {
|
1961
|
+
if ( (*p) > 90 ) {
|
1934
1962
|
if ( 97 <= (*p) && (*p) <= 122 )
|
1935
|
-
goto
|
1936
|
-
} else
|
1937
|
-
goto
|
1963
|
+
goto tr121;
|
1964
|
+
} else if ( (*p) >= 65 )
|
1965
|
+
goto tr121;
|
1938
1966
|
} else
|
1939
|
-
goto
|
1940
|
-
goto
|
1941
|
-
|
1967
|
+
goto tr121;
|
1968
|
+
goto tr141;
|
1969
|
+
tr169:
|
1970
|
+
#line 1 "wikitext_ragel.rl"
|
1971
|
+
{te = p+1;}
|
1972
|
+
#line 426 "wikitext_ragel.rl"
|
1973
|
+
{act = 42;}
|
1974
|
+
goto st117;
|
1975
|
+
st117:
|
1942
1976
|
if ( ++p == pe )
|
1943
|
-
goto
|
1944
|
-
case
|
1945
|
-
|
1946
|
-
|
1947
|
-
case
|
1948
|
-
case
|
1949
|
-
case
|
1950
|
-
case
|
1951
|
-
case
|
1952
|
-
case
|
1953
|
-
case
|
1954
|
-
case
|
1955
|
-
case
|
1977
|
+
goto _test_eof117;
|
1978
|
+
case 117:
|
1979
|
+
#line 1980 "wikitext_ragel.c"
|
1980
|
+
switch( (*p) ) {
|
1981
|
+
case 40: goto st98;
|
1982
|
+
case 43: goto st98;
|
1983
|
+
case 46: goto st20;
|
1984
|
+
case 47: goto st98;
|
1985
|
+
case 64: goto st109;
|
1986
|
+
case 80: goto tr170;
|
1987
|
+
case 92: goto st98;
|
1988
|
+
case 94: goto st98;
|
1989
|
+
case 95: goto tr121;
|
1990
|
+
case 112: goto tr170;
|
1991
|
+
case 126: goto st98;
|
1956
1992
|
}
|
1957
1993
|
if ( (*p) < 45 ) {
|
1958
|
-
if ( (*p)
|
1959
|
-
|
1960
|
-
goto st83;
|
1961
|
-
} else if ( (*p) > 41 ) {
|
1962
|
-
if ( 43 <= (*p) && (*p) <= 44 )
|
1963
|
-
goto st83;
|
1964
|
-
} else
|
1965
|
-
goto st83;
|
1994
|
+
if ( 36 <= (*p) && (*p) <= 37 )
|
1995
|
+
goto st98;
|
1966
1996
|
} else if ( (*p) > 57 ) {
|
1967
|
-
if ( (*p)
|
1968
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
1969
|
-
goto st83;
|
1970
|
-
} else if ( (*p) > 90 ) {
|
1997
|
+
if ( (*p) > 90 ) {
|
1971
1998
|
if ( 97 <= (*p) && (*p) <= 122 )
|
1972
|
-
goto
|
1973
|
-
} else
|
1974
|
-
goto
|
1999
|
+
goto tr121;
|
2000
|
+
} else if ( (*p) >= 65 )
|
2001
|
+
goto tr121;
|
1975
2002
|
} else
|
1976
|
-
goto
|
1977
|
-
goto
|
1978
|
-
|
2003
|
+
goto tr121;
|
2004
|
+
goto tr141;
|
2005
|
+
tr170:
|
2006
|
+
#line 1 "wikitext_ragel.rl"
|
2007
|
+
{te = p+1;}
|
2008
|
+
#line 426 "wikitext_ragel.rl"
|
2009
|
+
{act = 42;}
|
2010
|
+
goto st118;
|
2011
|
+
st118:
|
1979
2012
|
if ( ++p == pe )
|
1980
|
-
goto
|
1981
|
-
case
|
1982
|
-
|
1983
|
-
|
1984
|
-
case
|
1985
|
-
case
|
1986
|
-
case
|
1987
|
-
case
|
1988
|
-
case
|
1989
|
-
case
|
1990
|
-
case
|
1991
|
-
case
|
1992
|
-
case
|
2013
|
+
goto _test_eof118;
|
2014
|
+
case 118:
|
2015
|
+
#line 2016 "wikitext_ragel.c"
|
2016
|
+
switch( (*p) ) {
|
2017
|
+
case 40: goto st98;
|
2018
|
+
case 43: goto st98;
|
2019
|
+
case 46: goto st20;
|
2020
|
+
case 47: goto st98;
|
2021
|
+
case 58: goto st84;
|
2022
|
+
case 64: goto st109;
|
2023
|
+
case 92: goto st98;
|
2024
|
+
case 94: goto st98;
|
2025
|
+
case 95: goto tr121;
|
2026
|
+
case 126: goto st98;
|
1993
2027
|
}
|
1994
|
-
if ( (*p) <
|
1995
|
-
if ( (*p)
|
1996
|
-
|
1997
|
-
|
1998
|
-
|
1999
|
-
goto st83;
|
2000
|
-
} else if ( (*p) > 44 ) {
|
2001
|
-
if ( (*p) < 65 ) {
|
2002
|
-
if ( 45 <= (*p) && (*p) <= 57 )
|
2003
|
-
goto st89;
|
2004
|
-
} else if ( (*p) > 90 ) {
|
2028
|
+
if ( (*p) < 45 ) {
|
2029
|
+
if ( 36 <= (*p) && (*p) <= 37 )
|
2030
|
+
goto st98;
|
2031
|
+
} else if ( (*p) > 57 ) {
|
2032
|
+
if ( (*p) > 90 ) {
|
2005
2033
|
if ( 97 <= (*p) && (*p) <= 122 )
|
2006
|
-
goto
|
2007
|
-
} else
|
2008
|
-
goto
|
2034
|
+
goto tr121;
|
2035
|
+
} else if ( (*p) >= 65 )
|
2036
|
+
goto tr121;
|
2009
2037
|
} else
|
2010
|
-
goto
|
2011
|
-
goto
|
2012
|
-
|
2038
|
+
goto tr121;
|
2039
|
+
goto tr141;
|
2040
|
+
st84:
|
2013
2041
|
if ( ++p == pe )
|
2014
|
-
goto
|
2015
|
-
case
|
2016
|
-
|
2017
|
-
|
2018
|
-
|
2019
|
-
|
2020
|
-
case 126: goto st83;
|
2021
|
-
}
|
2022
|
-
if ( (*p) < 43 ) {
|
2023
|
-
if ( (*p) > 37 ) {
|
2024
|
-
if ( 40 <= (*p) && (*p) <= 41 )
|
2025
|
-
goto st83;
|
2026
|
-
} else if ( (*p) >= 36 )
|
2027
|
-
goto st83;
|
2028
|
-
} else if ( (*p) > 59 ) {
|
2029
|
-
if ( (*p) < 94 ) {
|
2030
|
-
if ( 63 <= (*p) && (*p) <= 90 )
|
2031
|
-
goto st83;
|
2032
|
-
} else if ( (*p) > 95 ) {
|
2033
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2034
|
-
goto st83;
|
2035
|
-
} else
|
2036
|
-
goto st83;
|
2037
|
-
} else
|
2038
|
-
goto st83;
|
2039
|
-
goto tr122;
|
2040
|
-
st105:
|
2042
|
+
goto _test_eof84;
|
2043
|
+
case 84:
|
2044
|
+
if ( (*p) == 47 )
|
2045
|
+
goto st85;
|
2046
|
+
goto tr95;
|
2047
|
+
st85:
|
2041
2048
|
if ( ++p == pe )
|
2042
|
-
goto
|
2043
|
-
case
|
2044
|
-
|
2045
|
-
|
2046
|
-
|
2047
|
-
|
2048
|
-
case 126: goto st83;
|
2049
|
-
}
|
2050
|
-
if ( (*p) < 43 ) {
|
2051
|
-
if ( (*p) > 37 ) {
|
2052
|
-
if ( 40 <= (*p) && (*p) <= 41 )
|
2053
|
-
goto st83;
|
2054
|
-
} else if ( (*p) >= 36 )
|
2055
|
-
goto st83;
|
2056
|
-
} else if ( (*p) > 59 ) {
|
2057
|
-
if ( (*p) < 94 ) {
|
2058
|
-
if ( 63 <= (*p) && (*p) <= 90 )
|
2059
|
-
goto st83;
|
2060
|
-
} else if ( (*p) > 95 ) {
|
2061
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2062
|
-
goto st83;
|
2063
|
-
} else
|
2064
|
-
goto st83;
|
2065
|
-
} else
|
2066
|
-
goto st83;
|
2067
|
-
goto tr122;
|
2068
|
-
st106:
|
2049
|
+
goto _test_eof85;
|
2050
|
+
case 85:
|
2051
|
+
if ( (*p) == 47 )
|
2052
|
+
goto st86;
|
2053
|
+
goto tr95;
|
2054
|
+
st86:
|
2069
2055
|
if ( ++p == pe )
|
2070
|
-
goto
|
2071
|
-
case
|
2056
|
+
goto _test_eof86;
|
2057
|
+
case 86:
|
2072
2058
|
switch( (*p) ) {
|
2073
|
-
case
|
2074
|
-
case
|
2075
|
-
case
|
2076
|
-
case
|
2077
|
-
|
2078
|
-
|
2079
|
-
|
2080
|
-
|
2081
|
-
|
2082
|
-
|
2083
|
-
|
2084
|
-
case 126: goto tr159;
|
2085
|
-
}
|
2086
|
-
if ( (*p) < 43 ) {
|
2087
|
-
if ( (*p) > 37 ) {
|
2088
|
-
if ( 38 <= (*p) && (*p) <= 42 )
|
2089
|
-
goto tr90;
|
2090
|
-
} else if ( (*p) >= 36 )
|
2091
|
-
goto tr159;
|
2059
|
+
case 45: goto tr98;
|
2060
|
+
case 61: goto tr98;
|
2061
|
+
case 95: goto tr98;
|
2062
|
+
case 126: goto tr98;
|
2063
|
+
}
|
2064
|
+
if ( (*p) < 47 ) {
|
2065
|
+
if ( (*p) > 40 ) {
|
2066
|
+
if ( 42 <= (*p) && (*p) <= 43 )
|
2067
|
+
goto tr98;
|
2068
|
+
} else if ( (*p) >= 35 )
|
2069
|
+
goto tr98;
|
2092
2070
|
} else if ( (*p) > 57 ) {
|
2093
|
-
if ( (*p)
|
2094
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
2095
|
-
goto st83;
|
2096
|
-
} else if ( (*p) > 90 ) {
|
2071
|
+
if ( (*p) > 90 ) {
|
2097
2072
|
if ( 97 <= (*p) && (*p) <= 122 )
|
2098
|
-
goto
|
2099
|
-
} else
|
2100
|
-
goto
|
2073
|
+
goto tr98;
|
2074
|
+
} else if ( (*p) >= 64 )
|
2075
|
+
goto tr98;
|
2101
2076
|
} else
|
2102
|
-
goto
|
2103
|
-
goto
|
2104
|
-
|
2077
|
+
goto tr98;
|
2078
|
+
goto tr95;
|
2079
|
+
tr98:
|
2105
2080
|
#line 1 "wikitext_ragel.rl"
|
2106
2081
|
{te = p+1;}
|
2107
|
-
goto
|
2108
|
-
|
2082
|
+
goto st119;
|
2083
|
+
st119:
|
2109
2084
|
if ( ++p == pe )
|
2110
|
-
goto
|
2111
|
-
case
|
2112
|
-
#line
|
2085
|
+
goto _test_eof119;
|
2086
|
+
case 119:
|
2087
|
+
#line 2088 "wikitext_ragel.c"
|
2113
2088
|
switch( (*p) ) {
|
2114
|
-
case 33: goto
|
2115
|
-
case 41: goto
|
2116
|
-
case 44: goto
|
2117
|
-
case 46: goto
|
2118
|
-
case 61: goto
|
2119
|
-
case 63: goto
|
2120
|
-
case 95: goto
|
2121
|
-
case 126: goto
|
2089
|
+
case 33: goto st87;
|
2090
|
+
case 41: goto st87;
|
2091
|
+
case 44: goto st87;
|
2092
|
+
case 46: goto st87;
|
2093
|
+
case 61: goto tr98;
|
2094
|
+
case 63: goto st87;
|
2095
|
+
case 95: goto tr98;
|
2096
|
+
case 126: goto tr98;
|
2122
2097
|
}
|
2123
2098
|
if ( (*p) < 58 ) {
|
2124
2099
|
if ( 35 <= (*p) && (*p) <= 57 )
|
2125
|
-
goto
|
2100
|
+
goto tr98;
|
2126
2101
|
} else if ( (*p) > 59 ) {
|
2127
2102
|
if ( (*p) > 90 ) {
|
2128
2103
|
if ( 97 <= (*p) && (*p) <= 122 )
|
2129
|
-
goto
|
2104
|
+
goto tr98;
|
2130
2105
|
} else if ( (*p) >= 64 )
|
2131
|
-
goto
|
2106
|
+
goto tr98;
|
2132
2107
|
} else
|
2133
|
-
goto
|
2134
|
-
goto
|
2135
|
-
|
2108
|
+
goto st87;
|
2109
|
+
goto tr172;
|
2110
|
+
st87:
|
2136
2111
|
if ( ++p == pe )
|
2137
|
-
goto
|
2138
|
-
case
|
2112
|
+
goto _test_eof87;
|
2113
|
+
case 87:
|
2139
2114
|
switch( (*p) ) {
|
2140
|
-
case 33: goto
|
2141
|
-
case 41: goto
|
2142
|
-
case 44: goto
|
2143
|
-
case 46: goto
|
2144
|
-
case 61: goto
|
2145
|
-
case 63: goto
|
2146
|
-
case 95: goto
|
2147
|
-
case 126: goto
|
2115
|
+
case 33: goto st87;
|
2116
|
+
case 41: goto st87;
|
2117
|
+
case 44: goto st87;
|
2118
|
+
case 46: goto st87;
|
2119
|
+
case 61: goto tr98;
|
2120
|
+
case 63: goto st87;
|
2121
|
+
case 95: goto tr98;
|
2122
|
+
case 126: goto tr98;
|
2148
2123
|
}
|
2149
2124
|
if ( (*p) < 58 ) {
|
2150
2125
|
if ( 35 <= (*p) && (*p) <= 57 )
|
2151
|
-
goto
|
2126
|
+
goto tr98;
|
2152
2127
|
} else if ( (*p) > 59 ) {
|
2153
2128
|
if ( (*p) > 90 ) {
|
2154
2129
|
if ( 97 <= (*p) && (*p) <= 122 )
|
2155
|
-
goto
|
2130
|
+
goto tr98;
|
2156
2131
|
} else if ( (*p) >= 64 )
|
2157
|
-
goto
|
2132
|
+
goto tr98;
|
2158
2133
|
} else
|
2159
|
-
goto
|
2160
|
-
goto
|
2161
|
-
|
2162
|
-
#line 1 "wikitext_ragel.rl"
|
2163
|
-
{te = p+1;}
|
2164
|
-
#line 414 "wikitext_ragel.rl"
|
2165
|
-
{act = 41;}
|
2166
|
-
goto st108;
|
2167
|
-
tr159:
|
2134
|
+
goto st87;
|
2135
|
+
goto tr99;
|
2136
|
+
tr127:
|
2168
2137
|
#line 1 "wikitext_ragel.rl"
|
2169
2138
|
{te = p+1;}
|
2170
|
-
#line
|
2171
|
-
{act =
|
2172
|
-
goto
|
2173
|
-
st108:
|
2174
|
-
if ( ++p == pe )
|
2175
|
-
goto _test_eof108;
|
2176
|
-
case 108:
|
2177
|
-
#line 2178 "wikitext_ragel.c"
|
2178
|
-
switch( (*p) ) {
|
2179
|
-
case 33: goto tr161;
|
2180
|
-
case 35: goto tr90;
|
2181
|
-
case 40: goto tr159;
|
2182
|
-
case 41: goto tr161;
|
2183
|
-
case 44: goto tr161;
|
2184
|
-
case 46: goto tr161;
|
2185
|
-
case 61: goto tr90;
|
2186
|
-
case 63: goto tr161;
|
2187
|
-
case 92: goto st83;
|
2188
|
-
case 94: goto st83;
|
2189
|
-
case 95: goto tr159;
|
2190
|
-
case 126: goto tr159;
|
2191
|
-
}
|
2192
|
-
if ( (*p) < 43 ) {
|
2193
|
-
if ( (*p) > 37 ) {
|
2194
|
-
if ( 38 <= (*p) && (*p) <= 42 )
|
2195
|
-
goto tr90;
|
2196
|
-
} else if ( (*p) >= 36 )
|
2197
|
-
goto tr159;
|
2198
|
-
} else if ( (*p) > 57 ) {
|
2199
|
-
if ( (*p) < 64 ) {
|
2200
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
2201
|
-
goto tr161;
|
2202
|
-
} else if ( (*p) > 90 ) {
|
2203
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2204
|
-
goto tr159;
|
2205
|
-
} else
|
2206
|
-
goto tr159;
|
2207
|
-
} else
|
2208
|
-
goto tr159;
|
2209
|
-
goto tr134;
|
2210
|
-
st109:
|
2211
|
-
if ( ++p == pe )
|
2212
|
-
goto _test_eof109;
|
2213
|
-
case 109:
|
2214
|
-
switch( (*p) ) {
|
2215
|
-
case 33: goto st83;
|
2216
|
-
case 47: goto st83;
|
2217
|
-
case 63: goto st83;
|
2218
|
-
case 64: goto st90;
|
2219
|
-
case 84: goto st110;
|
2220
|
-
case 92: goto st83;
|
2221
|
-
case 94: goto st83;
|
2222
|
-
case 95: goto st89;
|
2223
|
-
case 116: goto st110;
|
2224
|
-
case 126: goto st83;
|
2225
|
-
}
|
2226
|
-
if ( (*p) < 45 ) {
|
2227
|
-
if ( (*p) < 40 ) {
|
2228
|
-
if ( 36 <= (*p) && (*p) <= 37 )
|
2229
|
-
goto st83;
|
2230
|
-
} else if ( (*p) > 41 ) {
|
2231
|
-
if ( 43 <= (*p) && (*p) <= 44 )
|
2232
|
-
goto st83;
|
2233
|
-
} else
|
2234
|
-
goto st83;
|
2235
|
-
} else if ( (*p) > 57 ) {
|
2236
|
-
if ( (*p) < 65 ) {
|
2237
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
2238
|
-
goto st83;
|
2239
|
-
} else if ( (*p) > 90 ) {
|
2240
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2241
|
-
goto st89;
|
2242
|
-
} else
|
2243
|
-
goto st89;
|
2244
|
-
} else
|
2245
|
-
goto st89;
|
2246
|
-
goto tr122;
|
2247
|
-
st110:
|
2248
|
-
if ( ++p == pe )
|
2249
|
-
goto _test_eof110;
|
2250
|
-
case 110:
|
2251
|
-
switch( (*p) ) {
|
2252
|
-
case 33: goto st83;
|
2253
|
-
case 47: goto st83;
|
2254
|
-
case 63: goto st83;
|
2255
|
-
case 64: goto st90;
|
2256
|
-
case 84: goto st111;
|
2257
|
-
case 92: goto st83;
|
2258
|
-
case 94: goto st83;
|
2259
|
-
case 95: goto st89;
|
2260
|
-
case 116: goto st111;
|
2261
|
-
case 126: goto st83;
|
2262
|
-
}
|
2263
|
-
if ( (*p) < 45 ) {
|
2264
|
-
if ( (*p) < 40 ) {
|
2265
|
-
if ( 36 <= (*p) && (*p) <= 37 )
|
2266
|
-
goto st83;
|
2267
|
-
} else if ( (*p) > 41 ) {
|
2268
|
-
if ( 43 <= (*p) && (*p) <= 44 )
|
2269
|
-
goto st83;
|
2270
|
-
} else
|
2271
|
-
goto st83;
|
2272
|
-
} else if ( (*p) > 57 ) {
|
2273
|
-
if ( (*p) < 65 ) {
|
2274
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
2275
|
-
goto st83;
|
2276
|
-
} else if ( (*p) > 90 ) {
|
2277
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2278
|
-
goto st89;
|
2279
|
-
} else
|
2280
|
-
goto st89;
|
2281
|
-
} else
|
2282
|
-
goto st89;
|
2283
|
-
goto tr122;
|
2284
|
-
st111:
|
2285
|
-
if ( ++p == pe )
|
2286
|
-
goto _test_eof111;
|
2287
|
-
case 111:
|
2288
|
-
switch( (*p) ) {
|
2289
|
-
case 33: goto st83;
|
2290
|
-
case 47: goto st83;
|
2291
|
-
case 63: goto st83;
|
2292
|
-
case 64: goto st90;
|
2293
|
-
case 80: goto st112;
|
2294
|
-
case 92: goto st83;
|
2295
|
-
case 94: goto st83;
|
2296
|
-
case 95: goto st89;
|
2297
|
-
case 112: goto st112;
|
2298
|
-
case 126: goto st83;
|
2299
|
-
}
|
2300
|
-
if ( (*p) < 45 ) {
|
2301
|
-
if ( (*p) < 40 ) {
|
2302
|
-
if ( 36 <= (*p) && (*p) <= 37 )
|
2303
|
-
goto st83;
|
2304
|
-
} else if ( (*p) > 41 ) {
|
2305
|
-
if ( 43 <= (*p) && (*p) <= 44 )
|
2306
|
-
goto st83;
|
2307
|
-
} else
|
2308
|
-
goto st83;
|
2309
|
-
} else if ( (*p) > 57 ) {
|
2310
|
-
if ( (*p) < 65 ) {
|
2311
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
2312
|
-
goto st83;
|
2313
|
-
} else if ( (*p) > 90 ) {
|
2314
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2315
|
-
goto st89;
|
2316
|
-
} else
|
2317
|
-
goto st89;
|
2318
|
-
} else
|
2319
|
-
goto st89;
|
2320
|
-
goto tr122;
|
2321
|
-
st112:
|
2322
|
-
if ( ++p == pe )
|
2323
|
-
goto _test_eof112;
|
2324
|
-
case 112:
|
2325
|
-
switch( (*p) ) {
|
2326
|
-
case 33: goto st83;
|
2327
|
-
case 47: goto st83;
|
2328
|
-
case 58: goto st104;
|
2329
|
-
case 59: goto st83;
|
2330
|
-
case 63: goto st83;
|
2331
|
-
case 64: goto st90;
|
2332
|
-
case 83: goto st103;
|
2333
|
-
case 92: goto st83;
|
2334
|
-
case 94: goto st83;
|
2335
|
-
case 95: goto st89;
|
2336
|
-
case 115: goto st103;
|
2337
|
-
case 126: goto st83;
|
2338
|
-
}
|
2339
|
-
if ( (*p) < 43 ) {
|
2340
|
-
if ( (*p) > 37 ) {
|
2341
|
-
if ( 40 <= (*p) && (*p) <= 41 )
|
2342
|
-
goto st83;
|
2343
|
-
} else if ( (*p) >= 36 )
|
2344
|
-
goto st83;
|
2345
|
-
} else if ( (*p) > 44 ) {
|
2346
|
-
if ( (*p) < 65 ) {
|
2347
|
-
if ( 45 <= (*p) && (*p) <= 57 )
|
2348
|
-
goto st89;
|
2349
|
-
} else if ( (*p) > 90 ) {
|
2350
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2351
|
-
goto st89;
|
2352
|
-
} else
|
2353
|
-
goto st89;
|
2354
|
-
} else
|
2355
|
-
goto st83;
|
2356
|
-
goto tr122;
|
2357
|
-
st113:
|
2358
|
-
if ( ++p == pe )
|
2359
|
-
goto _test_eof113;
|
2360
|
-
case 113:
|
2361
|
-
switch( (*p) ) {
|
2362
|
-
case 33: goto st83;
|
2363
|
-
case 47: goto st83;
|
2364
|
-
case 63: goto st83;
|
2365
|
-
case 64: goto st90;
|
2366
|
-
case 65: goto st114;
|
2367
|
-
case 92: goto st83;
|
2368
|
-
case 94: goto st83;
|
2369
|
-
case 95: goto st89;
|
2370
|
-
case 97: goto st114;
|
2371
|
-
case 126: goto st83;
|
2372
|
-
}
|
2373
|
-
if ( (*p) < 45 ) {
|
2374
|
-
if ( (*p) < 40 ) {
|
2375
|
-
if ( 36 <= (*p) && (*p) <= 37 )
|
2376
|
-
goto st83;
|
2377
|
-
} else if ( (*p) > 41 ) {
|
2378
|
-
if ( 43 <= (*p) && (*p) <= 44 )
|
2379
|
-
goto st83;
|
2380
|
-
} else
|
2381
|
-
goto st83;
|
2382
|
-
} else if ( (*p) > 57 ) {
|
2383
|
-
if ( (*p) < 66 ) {
|
2384
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
2385
|
-
goto st83;
|
2386
|
-
} else if ( (*p) > 90 ) {
|
2387
|
-
if ( 98 <= (*p) && (*p) <= 122 )
|
2388
|
-
goto st89;
|
2389
|
-
} else
|
2390
|
-
goto st89;
|
2391
|
-
} else
|
2392
|
-
goto st89;
|
2393
|
-
goto tr122;
|
2394
|
-
st114:
|
2395
|
-
if ( ++p == pe )
|
2396
|
-
goto _test_eof114;
|
2397
|
-
case 114:
|
2398
|
-
switch( (*p) ) {
|
2399
|
-
case 33: goto st83;
|
2400
|
-
case 47: goto st83;
|
2401
|
-
case 63: goto st83;
|
2402
|
-
case 64: goto st90;
|
2403
|
-
case 73: goto st115;
|
2404
|
-
case 92: goto st83;
|
2405
|
-
case 94: goto st83;
|
2406
|
-
case 95: goto st89;
|
2407
|
-
case 105: goto st115;
|
2408
|
-
case 126: goto st83;
|
2409
|
-
}
|
2410
|
-
if ( (*p) < 45 ) {
|
2411
|
-
if ( (*p) < 40 ) {
|
2412
|
-
if ( 36 <= (*p) && (*p) <= 37 )
|
2413
|
-
goto st83;
|
2414
|
-
} else if ( (*p) > 41 ) {
|
2415
|
-
if ( 43 <= (*p) && (*p) <= 44 )
|
2416
|
-
goto st83;
|
2417
|
-
} else
|
2418
|
-
goto st83;
|
2419
|
-
} else if ( (*p) > 57 ) {
|
2420
|
-
if ( (*p) < 65 ) {
|
2421
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
2422
|
-
goto st83;
|
2423
|
-
} else if ( (*p) > 90 ) {
|
2424
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2425
|
-
goto st89;
|
2426
|
-
} else
|
2427
|
-
goto st89;
|
2428
|
-
} else
|
2429
|
-
goto st89;
|
2430
|
-
goto tr122;
|
2431
|
-
st115:
|
2432
|
-
if ( ++p == pe )
|
2433
|
-
goto _test_eof115;
|
2434
|
-
case 115:
|
2435
|
-
switch( (*p) ) {
|
2436
|
-
case 33: goto st83;
|
2437
|
-
case 47: goto st83;
|
2438
|
-
case 63: goto st83;
|
2439
|
-
case 64: goto st90;
|
2440
|
-
case 76: goto st116;
|
2441
|
-
case 92: goto st83;
|
2442
|
-
case 94: goto st83;
|
2443
|
-
case 95: goto st89;
|
2444
|
-
case 108: goto st116;
|
2445
|
-
case 126: goto st83;
|
2446
|
-
}
|
2447
|
-
if ( (*p) < 45 ) {
|
2448
|
-
if ( (*p) < 40 ) {
|
2449
|
-
if ( 36 <= (*p) && (*p) <= 37 )
|
2450
|
-
goto st83;
|
2451
|
-
} else if ( (*p) > 41 ) {
|
2452
|
-
if ( 43 <= (*p) && (*p) <= 44 )
|
2453
|
-
goto st83;
|
2454
|
-
} else
|
2455
|
-
goto st83;
|
2456
|
-
} else if ( (*p) > 57 ) {
|
2457
|
-
if ( (*p) < 65 ) {
|
2458
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
2459
|
-
goto st83;
|
2460
|
-
} else if ( (*p) > 90 ) {
|
2461
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2462
|
-
goto st89;
|
2463
|
-
} else
|
2464
|
-
goto st89;
|
2465
|
-
} else
|
2466
|
-
goto st89;
|
2467
|
-
goto tr122;
|
2468
|
-
st116:
|
2469
|
-
if ( ++p == pe )
|
2470
|
-
goto _test_eof116;
|
2471
|
-
case 116:
|
2472
|
-
switch( (*p) ) {
|
2473
|
-
case 33: goto st83;
|
2474
|
-
case 47: goto st83;
|
2475
|
-
case 63: goto st83;
|
2476
|
-
case 64: goto st90;
|
2477
|
-
case 84: goto st117;
|
2478
|
-
case 92: goto st83;
|
2479
|
-
case 94: goto st83;
|
2480
|
-
case 95: goto st89;
|
2481
|
-
case 116: goto st117;
|
2482
|
-
case 126: goto st83;
|
2483
|
-
}
|
2484
|
-
if ( (*p) < 45 ) {
|
2485
|
-
if ( (*p) < 40 ) {
|
2486
|
-
if ( 36 <= (*p) && (*p) <= 37 )
|
2487
|
-
goto st83;
|
2488
|
-
} else if ( (*p) > 41 ) {
|
2489
|
-
if ( 43 <= (*p) && (*p) <= 44 )
|
2490
|
-
goto st83;
|
2491
|
-
} else
|
2492
|
-
goto st83;
|
2493
|
-
} else if ( (*p) > 57 ) {
|
2494
|
-
if ( (*p) < 65 ) {
|
2495
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
2496
|
-
goto st83;
|
2497
|
-
} else if ( (*p) > 90 ) {
|
2498
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2499
|
-
goto st89;
|
2500
|
-
} else
|
2501
|
-
goto st89;
|
2502
|
-
} else
|
2503
|
-
goto st89;
|
2504
|
-
goto tr122;
|
2505
|
-
st117:
|
2506
|
-
if ( ++p == pe )
|
2507
|
-
goto _test_eof117;
|
2508
|
-
case 117:
|
2509
|
-
switch( (*p) ) {
|
2510
|
-
case 33: goto st83;
|
2511
|
-
case 47: goto st83;
|
2512
|
-
case 63: goto st83;
|
2513
|
-
case 64: goto st90;
|
2514
|
-
case 79: goto st118;
|
2515
|
-
case 92: goto st83;
|
2516
|
-
case 94: goto st83;
|
2517
|
-
case 95: goto st89;
|
2518
|
-
case 111: goto st118;
|
2519
|
-
case 126: goto st83;
|
2520
|
-
}
|
2521
|
-
if ( (*p) < 45 ) {
|
2522
|
-
if ( (*p) < 40 ) {
|
2523
|
-
if ( 36 <= (*p) && (*p) <= 37 )
|
2524
|
-
goto st83;
|
2525
|
-
} else if ( (*p) > 41 ) {
|
2526
|
-
if ( 43 <= (*p) && (*p) <= 44 )
|
2527
|
-
goto st83;
|
2528
|
-
} else
|
2529
|
-
goto st83;
|
2530
|
-
} else if ( (*p) > 57 ) {
|
2531
|
-
if ( (*p) < 65 ) {
|
2532
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
2533
|
-
goto st83;
|
2534
|
-
} else if ( (*p) > 90 ) {
|
2535
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2536
|
-
goto st89;
|
2537
|
-
} else
|
2538
|
-
goto st89;
|
2539
|
-
} else
|
2540
|
-
goto st89;
|
2541
|
-
goto tr122;
|
2542
|
-
st118:
|
2543
|
-
if ( ++p == pe )
|
2544
|
-
goto _test_eof118;
|
2545
|
-
case 118:
|
2546
|
-
switch( (*p) ) {
|
2547
|
-
case 33: goto st83;
|
2548
|
-
case 47: goto st83;
|
2549
|
-
case 58: goto st119;
|
2550
|
-
case 59: goto st83;
|
2551
|
-
case 63: goto st83;
|
2552
|
-
case 64: goto st90;
|
2553
|
-
case 92: goto st83;
|
2554
|
-
case 94: goto st83;
|
2555
|
-
case 95: goto st89;
|
2556
|
-
case 126: goto st83;
|
2557
|
-
}
|
2558
|
-
if ( (*p) < 43 ) {
|
2559
|
-
if ( (*p) > 37 ) {
|
2560
|
-
if ( 40 <= (*p) && (*p) <= 41 )
|
2561
|
-
goto st83;
|
2562
|
-
} else if ( (*p) >= 36 )
|
2563
|
-
goto st83;
|
2564
|
-
} else if ( (*p) > 44 ) {
|
2565
|
-
if ( (*p) < 65 ) {
|
2566
|
-
if ( 45 <= (*p) && (*p) <= 57 )
|
2567
|
-
goto st89;
|
2568
|
-
} else if ( (*p) > 90 ) {
|
2569
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2570
|
-
goto st89;
|
2571
|
-
} else
|
2572
|
-
goto st89;
|
2573
|
-
} else
|
2574
|
-
goto st83;
|
2575
|
-
goto tr122;
|
2576
|
-
st119:
|
2577
|
-
if ( ++p == pe )
|
2578
|
-
goto _test_eof119;
|
2579
|
-
case 119:
|
2580
|
-
switch( (*p) ) {
|
2581
|
-
case 33: goto st83;
|
2582
|
-
case 47: goto st83;
|
2583
|
-
case 92: goto st83;
|
2584
|
-
case 94: goto st83;
|
2585
|
-
case 95: goto st120;
|
2586
|
-
case 126: goto st83;
|
2587
|
-
}
|
2588
|
-
if ( (*p) < 45 ) {
|
2589
|
-
if ( (*p) < 40 ) {
|
2590
|
-
if ( 36 <= (*p) && (*p) <= 37 )
|
2591
|
-
goto st83;
|
2592
|
-
} else if ( (*p) > 41 ) {
|
2593
|
-
if ( 43 <= (*p) && (*p) <= 44 )
|
2594
|
-
goto st83;
|
2595
|
-
} else
|
2596
|
-
goto st83;
|
2597
|
-
} else if ( (*p) > 57 ) {
|
2598
|
-
if ( (*p) < 63 ) {
|
2599
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
2600
|
-
goto st83;
|
2601
|
-
} else if ( (*p) > 64 ) {
|
2602
|
-
if ( (*p) > 90 ) {
|
2603
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2604
|
-
goto st120;
|
2605
|
-
} else if ( (*p) >= 65 )
|
2606
|
-
goto st120;
|
2607
|
-
} else
|
2608
|
-
goto st83;
|
2609
|
-
} else
|
2610
|
-
goto st120;
|
2611
|
-
goto tr122;
|
2139
|
+
#line 426 "wikitext_ragel.rl"
|
2140
|
+
{act = 42;}
|
2141
|
+
goto st120;
|
2612
2142
|
st120:
|
2613
2143
|
if ( ++p == pe )
|
2614
2144
|
goto _test_eof120;
|
2615
2145
|
case 120:
|
2616
|
-
|
2617
|
-
|
2618
|
-
case
|
2619
|
-
case
|
2620
|
-
case
|
2621
|
-
case
|
2622
|
-
case
|
2623
|
-
case
|
2624
|
-
case
|
2146
|
+
#line 2147 "wikitext_ragel.c"
|
2147
|
+
switch( (*p) ) {
|
2148
|
+
case 40: goto st98;
|
2149
|
+
case 43: goto st98;
|
2150
|
+
case 46: goto st20;
|
2151
|
+
case 47: goto st98;
|
2152
|
+
case 64: goto st109;
|
2153
|
+
case 84: goto tr173;
|
2154
|
+
case 92: goto st98;
|
2155
|
+
case 94: goto st98;
|
2156
|
+
case 95: goto tr121;
|
2157
|
+
case 116: goto tr173;
|
2158
|
+
case 126: goto st98;
|
2625
2159
|
}
|
2626
2160
|
if ( (*p) < 45 ) {
|
2627
|
-
if ( (*p)
|
2628
|
-
|
2629
|
-
goto st83;
|
2630
|
-
} else if ( (*p) > 41 ) {
|
2631
|
-
if ( 43 <= (*p) && (*p) <= 44 )
|
2632
|
-
goto st83;
|
2633
|
-
} else
|
2634
|
-
goto st83;
|
2161
|
+
if ( 36 <= (*p) && (*p) <= 37 )
|
2162
|
+
goto st98;
|
2635
2163
|
} else if ( (*p) > 57 ) {
|
2636
|
-
if ( (*p)
|
2637
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
2638
|
-
goto st83;
|
2639
|
-
} else if ( (*p) > 90 ) {
|
2164
|
+
if ( (*p) > 90 ) {
|
2640
2165
|
if ( 97 <= (*p) && (*p) <= 122 )
|
2641
|
-
goto
|
2642
|
-
} else
|
2643
|
-
goto
|
2166
|
+
goto tr121;
|
2167
|
+
} else if ( (*p) >= 65 )
|
2168
|
+
goto tr121;
|
2644
2169
|
} else
|
2645
|
-
goto
|
2646
|
-
goto
|
2170
|
+
goto tr121;
|
2171
|
+
goto tr141;
|
2172
|
+
tr173:
|
2173
|
+
#line 1 "wikitext_ragel.rl"
|
2174
|
+
{te = p+1;}
|
2175
|
+
#line 426 "wikitext_ragel.rl"
|
2176
|
+
{act = 42;}
|
2177
|
+
goto st121;
|
2647
2178
|
st121:
|
2648
2179
|
if ( ++p == pe )
|
2649
2180
|
goto _test_eof121;
|
2650
2181
|
case 121:
|
2651
|
-
|
2652
|
-
|
2653
|
-
case
|
2654
|
-
case
|
2182
|
+
#line 2183 "wikitext_ragel.c"
|
2183
|
+
switch( (*p) ) {
|
2184
|
+
case 40: goto st98;
|
2185
|
+
case 43: goto st98;
|
2186
|
+
case 46: goto st20;
|
2187
|
+
case 47: goto st98;
|
2188
|
+
case 64: goto st109;
|
2189
|
+
case 84: goto tr174;
|
2190
|
+
case 92: goto st98;
|
2191
|
+
case 94: goto st98;
|
2192
|
+
case 95: goto tr121;
|
2193
|
+
case 116: goto tr174;
|
2194
|
+
case 126: goto st98;
|
2655
2195
|
}
|
2656
|
-
if ( (*p) <
|
2657
|
-
if ( (*p)
|
2658
|
-
|
2659
|
-
|
2660
|
-
|
2661
|
-
if ( (*p)
|
2662
|
-
|
2663
|
-
|
2664
|
-
|
2665
|
-
goto st83;
|
2666
|
-
} else
|
2667
|
-
goto st83;
|
2668
|
-
} else if ( (*p) > 59 ) {
|
2669
|
-
if ( (*p) < 65 ) {
|
2670
|
-
if ( 63 <= (*p) && (*p) <= 64 )
|
2671
|
-
goto st83;
|
2672
|
-
} else if ( (*p) > 90 ) {
|
2673
|
-
if ( (*p) > 95 ) {
|
2674
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2675
|
-
goto tr173;
|
2676
|
-
} else if ( (*p) >= 94 )
|
2677
|
-
goto st83;
|
2678
|
-
} else
|
2679
|
-
goto tr173;
|
2196
|
+
if ( (*p) < 45 ) {
|
2197
|
+
if ( 36 <= (*p) && (*p) <= 37 )
|
2198
|
+
goto st98;
|
2199
|
+
} else if ( (*p) > 57 ) {
|
2200
|
+
if ( (*p) > 90 ) {
|
2201
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2202
|
+
goto tr121;
|
2203
|
+
} else if ( (*p) >= 65 )
|
2204
|
+
goto tr121;
|
2680
2205
|
} else
|
2681
|
-
goto
|
2682
|
-
goto
|
2683
|
-
|
2206
|
+
goto tr121;
|
2207
|
+
goto tr141;
|
2208
|
+
tr174:
|
2684
2209
|
#line 1 "wikitext_ragel.rl"
|
2685
2210
|
{te = p+1;}
|
2686
|
-
#line
|
2687
|
-
{act =
|
2688
|
-
goto st122;
|
2689
|
-
tr179:
|
2690
|
-
#line 1 "wikitext_ragel.rl"
|
2691
|
-
{te = p+1;}
|
2692
|
-
#line 281 "wikitext_ragel.rl"
|
2693
|
-
{act = 20;}
|
2211
|
+
#line 426 "wikitext_ragel.rl"
|
2212
|
+
{act = 42;}
|
2694
2213
|
goto st122;
|
2695
2214
|
st122:
|
2696
2215
|
if ( ++p == pe )
|
2697
2216
|
goto _test_eof122;
|
2698
2217
|
case 122:
|
2699
|
-
#line
|
2700
|
-
switch( (*p) ) {
|
2701
|
-
case
|
2702
|
-
case
|
2703
|
-
case
|
2704
|
-
case
|
2218
|
+
#line 2219 "wikitext_ragel.c"
|
2219
|
+
switch( (*p) ) {
|
2220
|
+
case 40: goto st98;
|
2221
|
+
case 43: goto st98;
|
2222
|
+
case 46: goto st20;
|
2223
|
+
case 47: goto st98;
|
2224
|
+
case 64: goto st109;
|
2225
|
+
case 80: goto tr175;
|
2226
|
+
case 92: goto st98;
|
2227
|
+
case 94: goto st98;
|
2228
|
+
case 95: goto tr121;
|
2229
|
+
case 112: goto tr175;
|
2230
|
+
case 126: goto st98;
|
2705
2231
|
}
|
2706
|
-
if ( (*p) <
|
2707
|
-
if ( (*p)
|
2708
|
-
|
2709
|
-
|
2710
|
-
|
2711
|
-
if ( (*p)
|
2712
|
-
|
2713
|
-
|
2714
|
-
|
2715
|
-
goto st83;
|
2716
|
-
} else
|
2717
|
-
goto st83;
|
2718
|
-
} else if ( (*p) > 59 ) {
|
2719
|
-
if ( (*p) < 65 ) {
|
2720
|
-
if ( 63 <= (*p) && (*p) <= 64 )
|
2721
|
-
goto st83;
|
2722
|
-
} else if ( (*p) > 90 ) {
|
2723
|
-
if ( (*p) > 95 ) {
|
2724
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2725
|
-
goto tr173;
|
2726
|
-
} else if ( (*p) >= 94 )
|
2727
|
-
goto st83;
|
2728
|
-
} else
|
2729
|
-
goto tr173;
|
2232
|
+
if ( (*p) < 45 ) {
|
2233
|
+
if ( 36 <= (*p) && (*p) <= 37 )
|
2234
|
+
goto st98;
|
2235
|
+
} else if ( (*p) > 57 ) {
|
2236
|
+
if ( (*p) > 90 ) {
|
2237
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2238
|
+
goto tr121;
|
2239
|
+
} else if ( (*p) >= 65 )
|
2240
|
+
goto tr121;
|
2730
2241
|
} else
|
2731
|
-
goto
|
2732
|
-
goto
|
2242
|
+
goto tr121;
|
2243
|
+
goto tr141;
|
2244
|
+
tr175:
|
2245
|
+
#line 1 "wikitext_ragel.rl"
|
2246
|
+
{te = p+1;}
|
2247
|
+
#line 426 "wikitext_ragel.rl"
|
2248
|
+
{act = 42;}
|
2249
|
+
goto st123;
|
2733
2250
|
st123:
|
2734
2251
|
if ( ++p == pe )
|
2735
2252
|
goto _test_eof123;
|
2736
2253
|
case 123:
|
2737
|
-
|
2738
|
-
|
2739
|
-
case
|
2740
|
-
case
|
2254
|
+
#line 2255 "wikitext_ragel.c"
|
2255
|
+
switch( (*p) ) {
|
2256
|
+
case 40: goto st98;
|
2257
|
+
case 43: goto st98;
|
2258
|
+
case 46: goto st20;
|
2259
|
+
case 47: goto st98;
|
2260
|
+
case 58: goto st84;
|
2261
|
+
case 64: goto st109;
|
2262
|
+
case 83: goto tr170;
|
2263
|
+
case 92: goto st98;
|
2264
|
+
case 94: goto st98;
|
2265
|
+
case 95: goto tr121;
|
2266
|
+
case 115: goto tr170;
|
2267
|
+
case 126: goto st98;
|
2741
2268
|
}
|
2742
|
-
if ( (*p) <
|
2743
|
-
if ( (*p)
|
2744
|
-
|
2745
|
-
|
2746
|
-
|
2747
|
-
if ( (*p)
|
2748
|
-
|
2749
|
-
|
2750
|
-
|
2751
|
-
goto st83;
|
2752
|
-
} else
|
2753
|
-
goto st83;
|
2754
|
-
} else if ( (*p) > 59 ) {
|
2755
|
-
if ( (*p) < 65 ) {
|
2756
|
-
if ( 63 <= (*p) && (*p) <= 64 )
|
2757
|
-
goto st83;
|
2758
|
-
} else if ( (*p) > 90 ) {
|
2759
|
-
if ( (*p) > 95 ) {
|
2760
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2761
|
-
goto st124;
|
2762
|
-
} else if ( (*p) >= 94 )
|
2763
|
-
goto st83;
|
2764
|
-
} else
|
2765
|
-
goto st124;
|
2269
|
+
if ( (*p) < 45 ) {
|
2270
|
+
if ( 36 <= (*p) && (*p) <= 37 )
|
2271
|
+
goto st98;
|
2272
|
+
} else if ( (*p) > 57 ) {
|
2273
|
+
if ( (*p) > 90 ) {
|
2274
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2275
|
+
goto tr121;
|
2276
|
+
} else if ( (*p) >= 65 )
|
2277
|
+
goto tr121;
|
2766
2278
|
} else
|
2767
|
-
goto
|
2768
|
-
goto
|
2279
|
+
goto tr121;
|
2280
|
+
goto tr141;
|
2281
|
+
tr128:
|
2282
|
+
#line 1 "wikitext_ragel.rl"
|
2283
|
+
{te = p+1;}
|
2284
|
+
#line 426 "wikitext_ragel.rl"
|
2285
|
+
{act = 42;}
|
2286
|
+
goto st124;
|
2769
2287
|
st124:
|
2770
2288
|
if ( ++p == pe )
|
2771
2289
|
goto _test_eof124;
|
2772
2290
|
case 124:
|
2773
|
-
|
2774
|
-
|
2775
|
-
case
|
2776
|
-
case
|
2777
|
-
case
|
2291
|
+
#line 2292 "wikitext_ragel.c"
|
2292
|
+
switch( (*p) ) {
|
2293
|
+
case 40: goto st98;
|
2294
|
+
case 43: goto st98;
|
2295
|
+
case 46: goto st20;
|
2296
|
+
case 47: goto st98;
|
2297
|
+
case 64: goto st109;
|
2298
|
+
case 65: goto tr176;
|
2299
|
+
case 92: goto st98;
|
2300
|
+
case 94: goto st98;
|
2301
|
+
case 95: goto tr121;
|
2302
|
+
case 97: goto tr176;
|
2303
|
+
case 126: goto st98;
|
2778
2304
|
}
|
2779
|
-
if ( (*p) <
|
2780
|
-
if ( (*p)
|
2781
|
-
|
2782
|
-
|
2783
|
-
|
2784
|
-
if ( (*p)
|
2785
|
-
|
2786
|
-
|
2787
|
-
|
2788
|
-
goto st83;
|
2789
|
-
} else
|
2790
|
-
goto st83;
|
2791
|
-
} else if ( (*p) > 59 ) {
|
2792
|
-
if ( (*p) < 65 ) {
|
2793
|
-
if ( 63 <= (*p) && (*p) <= 64 )
|
2794
|
-
goto st83;
|
2795
|
-
} else if ( (*p) > 90 ) {
|
2796
|
-
if ( (*p) > 95 ) {
|
2797
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2798
|
-
goto st125;
|
2799
|
-
} else if ( (*p) >= 94 )
|
2800
|
-
goto st83;
|
2801
|
-
} else
|
2802
|
-
goto st125;
|
2305
|
+
if ( (*p) < 45 ) {
|
2306
|
+
if ( 36 <= (*p) && (*p) <= 37 )
|
2307
|
+
goto st98;
|
2308
|
+
} else if ( (*p) > 57 ) {
|
2309
|
+
if ( (*p) > 90 ) {
|
2310
|
+
if ( 98 <= (*p) && (*p) <= 122 )
|
2311
|
+
goto tr121;
|
2312
|
+
} else if ( (*p) >= 66 )
|
2313
|
+
goto tr121;
|
2803
2314
|
} else
|
2804
|
-
goto
|
2805
|
-
goto
|
2315
|
+
goto tr121;
|
2316
|
+
goto tr141;
|
2317
|
+
tr176:
|
2318
|
+
#line 1 "wikitext_ragel.rl"
|
2319
|
+
{te = p+1;}
|
2320
|
+
#line 426 "wikitext_ragel.rl"
|
2321
|
+
{act = 42;}
|
2322
|
+
goto st125;
|
2806
2323
|
st125:
|
2807
2324
|
if ( ++p == pe )
|
2808
2325
|
goto _test_eof125;
|
2809
2326
|
case 125:
|
2810
|
-
|
2811
|
-
|
2812
|
-
case
|
2813
|
-
case
|
2814
|
-
case
|
2327
|
+
#line 2328 "wikitext_ragel.c"
|
2328
|
+
switch( (*p) ) {
|
2329
|
+
case 40: goto st98;
|
2330
|
+
case 43: goto st98;
|
2331
|
+
case 46: goto st20;
|
2332
|
+
case 47: goto st98;
|
2333
|
+
case 64: goto st109;
|
2334
|
+
case 73: goto tr177;
|
2335
|
+
case 92: goto st98;
|
2336
|
+
case 94: goto st98;
|
2337
|
+
case 95: goto tr121;
|
2338
|
+
case 105: goto tr177;
|
2339
|
+
case 126: goto st98;
|
2815
2340
|
}
|
2816
|
-
if ( (*p) <
|
2817
|
-
if ( (*p)
|
2818
|
-
|
2819
|
-
|
2820
|
-
|
2821
|
-
if ( (*p)
|
2822
|
-
|
2823
|
-
|
2824
|
-
|
2825
|
-
goto st83;
|
2826
|
-
} else
|
2827
|
-
goto st83;
|
2828
|
-
} else if ( (*p) > 59 ) {
|
2829
|
-
if ( (*p) < 65 ) {
|
2830
|
-
if ( 63 <= (*p) && (*p) <= 64 )
|
2831
|
-
goto st83;
|
2832
|
-
} else if ( (*p) > 90 ) {
|
2833
|
-
if ( (*p) > 95 ) {
|
2834
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2835
|
-
goto st126;
|
2836
|
-
} else if ( (*p) >= 94 )
|
2837
|
-
goto st83;
|
2838
|
-
} else
|
2839
|
-
goto st126;
|
2341
|
+
if ( (*p) < 45 ) {
|
2342
|
+
if ( 36 <= (*p) && (*p) <= 37 )
|
2343
|
+
goto st98;
|
2344
|
+
} else if ( (*p) > 57 ) {
|
2345
|
+
if ( (*p) > 90 ) {
|
2346
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2347
|
+
goto tr121;
|
2348
|
+
} else if ( (*p) >= 65 )
|
2349
|
+
goto tr121;
|
2840
2350
|
} else
|
2841
|
-
goto
|
2842
|
-
goto
|
2351
|
+
goto tr121;
|
2352
|
+
goto tr141;
|
2353
|
+
tr177:
|
2354
|
+
#line 1 "wikitext_ragel.rl"
|
2355
|
+
{te = p+1;}
|
2356
|
+
#line 426 "wikitext_ragel.rl"
|
2357
|
+
{act = 42;}
|
2358
|
+
goto st126;
|
2843
2359
|
st126:
|
2844
2360
|
if ( ++p == pe )
|
2845
2361
|
goto _test_eof126;
|
2846
2362
|
case 126:
|
2847
|
-
|
2848
|
-
|
2849
|
-
case
|
2850
|
-
case
|
2851
|
-
case
|
2363
|
+
#line 2364 "wikitext_ragel.c"
|
2364
|
+
switch( (*p) ) {
|
2365
|
+
case 40: goto st98;
|
2366
|
+
case 43: goto st98;
|
2367
|
+
case 46: goto st20;
|
2368
|
+
case 47: goto st98;
|
2369
|
+
case 64: goto st109;
|
2370
|
+
case 76: goto tr178;
|
2371
|
+
case 92: goto st98;
|
2372
|
+
case 94: goto st98;
|
2373
|
+
case 95: goto tr121;
|
2374
|
+
case 108: goto tr178;
|
2375
|
+
case 126: goto st98;
|
2852
2376
|
}
|
2853
|
-
if ( (*p) <
|
2854
|
-
if ( (*p)
|
2855
|
-
|
2856
|
-
|
2857
|
-
|
2858
|
-
if ( (*p)
|
2859
|
-
|
2860
|
-
|
2861
|
-
|
2862
|
-
goto st83;
|
2863
|
-
} else
|
2864
|
-
goto st83;
|
2865
|
-
} else if ( (*p) > 59 ) {
|
2866
|
-
if ( (*p) < 65 ) {
|
2867
|
-
if ( 63 <= (*p) && (*p) <= 64 )
|
2868
|
-
goto st83;
|
2869
|
-
} else if ( (*p) > 90 ) {
|
2870
|
-
if ( (*p) > 95 ) {
|
2871
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2872
|
-
goto st127;
|
2873
|
-
} else if ( (*p) >= 94 )
|
2874
|
-
goto st83;
|
2875
|
-
} else
|
2876
|
-
goto st127;
|
2377
|
+
if ( (*p) < 45 ) {
|
2378
|
+
if ( 36 <= (*p) && (*p) <= 37 )
|
2379
|
+
goto st98;
|
2380
|
+
} else if ( (*p) > 57 ) {
|
2381
|
+
if ( (*p) > 90 ) {
|
2382
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2383
|
+
goto tr121;
|
2384
|
+
} else if ( (*p) >= 65 )
|
2385
|
+
goto tr121;
|
2877
2386
|
} else
|
2878
|
-
goto
|
2879
|
-
goto
|
2387
|
+
goto tr121;
|
2388
|
+
goto tr141;
|
2389
|
+
tr178:
|
2390
|
+
#line 1 "wikitext_ragel.rl"
|
2391
|
+
{te = p+1;}
|
2392
|
+
#line 426 "wikitext_ragel.rl"
|
2393
|
+
{act = 42;}
|
2394
|
+
goto st127;
|
2880
2395
|
st127:
|
2881
2396
|
if ( ++p == pe )
|
2882
2397
|
goto _test_eof127;
|
2883
2398
|
case 127:
|
2884
|
-
|
2885
|
-
|
2886
|
-
case
|
2887
|
-
case
|
2888
|
-
case
|
2399
|
+
#line 2400 "wikitext_ragel.c"
|
2400
|
+
switch( (*p) ) {
|
2401
|
+
case 40: goto st98;
|
2402
|
+
case 43: goto st98;
|
2403
|
+
case 46: goto st20;
|
2404
|
+
case 47: goto st98;
|
2405
|
+
case 64: goto st109;
|
2406
|
+
case 84: goto tr179;
|
2407
|
+
case 92: goto st98;
|
2408
|
+
case 94: goto st98;
|
2409
|
+
case 95: goto tr121;
|
2410
|
+
case 116: goto tr179;
|
2411
|
+
case 126: goto st98;
|
2889
2412
|
}
|
2890
|
-
if ( (*p) <
|
2891
|
-
if ( (*p)
|
2892
|
-
|
2893
|
-
|
2894
|
-
|
2895
|
-
if ( (*p)
|
2896
|
-
|
2897
|
-
|
2898
|
-
|
2899
|
-
goto st83;
|
2900
|
-
} else
|
2901
|
-
goto st83;
|
2902
|
-
} else if ( (*p) > 59 ) {
|
2903
|
-
if ( (*p) < 65 ) {
|
2904
|
-
if ( 63 <= (*p) && (*p) <= 64 )
|
2905
|
-
goto st83;
|
2906
|
-
} else if ( (*p) > 90 ) {
|
2907
|
-
if ( (*p) > 95 ) {
|
2908
|
-
if ( 97 <= (*p) && (*p) <= 122 )
|
2909
|
-
goto tr179;
|
2910
|
-
} else if ( (*p) >= 94 )
|
2911
|
-
goto st83;
|
2912
|
-
} else
|
2913
|
-
goto tr179;
|
2413
|
+
if ( (*p) < 45 ) {
|
2414
|
+
if ( 36 <= (*p) && (*p) <= 37 )
|
2415
|
+
goto st98;
|
2416
|
+
} else if ( (*p) > 57 ) {
|
2417
|
+
if ( (*p) > 90 ) {
|
2418
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2419
|
+
goto tr121;
|
2420
|
+
} else if ( (*p) >= 65 )
|
2421
|
+
goto tr121;
|
2914
2422
|
} else
|
2915
|
-
goto
|
2916
|
-
goto
|
2423
|
+
goto tr121;
|
2424
|
+
goto tr141;
|
2425
|
+
tr179:
|
2426
|
+
#line 1 "wikitext_ragel.rl"
|
2427
|
+
{te = p+1;}
|
2428
|
+
#line 426 "wikitext_ragel.rl"
|
2429
|
+
{act = 42;}
|
2430
|
+
goto st128;
|
2917
2431
|
st128:
|
2918
2432
|
if ( ++p == pe )
|
2919
2433
|
goto _test_eof128;
|
2920
2434
|
case 128:
|
2921
|
-
|
2922
|
-
|
2923
|
-
case
|
2924
|
-
case
|
2925
|
-
case
|
2926
|
-
case
|
2927
|
-
case
|
2928
|
-
case
|
2929
|
-
case
|
2930
|
-
case
|
2931
|
-
case
|
2435
|
+
#line 2436 "wikitext_ragel.c"
|
2436
|
+
switch( (*p) ) {
|
2437
|
+
case 40: goto st98;
|
2438
|
+
case 43: goto st98;
|
2439
|
+
case 46: goto st20;
|
2440
|
+
case 47: goto st98;
|
2441
|
+
case 64: goto st109;
|
2442
|
+
case 79: goto tr180;
|
2443
|
+
case 92: goto st98;
|
2444
|
+
case 94: goto st98;
|
2445
|
+
case 95: goto tr121;
|
2446
|
+
case 111: goto tr180;
|
2447
|
+
case 126: goto st98;
|
2932
2448
|
}
|
2933
2449
|
if ( (*p) < 45 ) {
|
2934
|
-
if ( (*p)
|
2935
|
-
|
2936
|
-
goto st83;
|
2937
|
-
} else if ( (*p) > 41 ) {
|
2938
|
-
if ( 43 <= (*p) && (*p) <= 44 )
|
2939
|
-
goto st83;
|
2940
|
-
} else
|
2941
|
-
goto st83;
|
2450
|
+
if ( 36 <= (*p) && (*p) <= 37 )
|
2451
|
+
goto st98;
|
2942
2452
|
} else if ( (*p) > 57 ) {
|
2943
|
-
if ( (*p)
|
2944
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
2945
|
-
goto st83;
|
2946
|
-
} else if ( (*p) > 90 ) {
|
2453
|
+
if ( (*p) > 90 ) {
|
2947
2454
|
if ( 97 <= (*p) && (*p) <= 122 )
|
2948
|
-
goto
|
2949
|
-
} else
|
2950
|
-
goto
|
2455
|
+
goto tr121;
|
2456
|
+
} else if ( (*p) >= 65 )
|
2457
|
+
goto tr121;
|
2951
2458
|
} else
|
2952
|
-
goto
|
2953
|
-
goto
|
2459
|
+
goto tr121;
|
2460
|
+
goto tr141;
|
2461
|
+
tr180:
|
2462
|
+
#line 1 "wikitext_ragel.rl"
|
2463
|
+
{te = p+1;}
|
2464
|
+
#line 426 "wikitext_ragel.rl"
|
2465
|
+
{act = 42;}
|
2466
|
+
goto st129;
|
2954
2467
|
st129:
|
2955
2468
|
if ( ++p == pe )
|
2956
2469
|
goto _test_eof129;
|
2957
2470
|
case 129:
|
2471
|
+
#line 2472 "wikitext_ragel.c"
|
2472
|
+
switch( (*p) ) {
|
2473
|
+
case 40: goto st98;
|
2474
|
+
case 43: goto st98;
|
2475
|
+
case 46: goto st20;
|
2476
|
+
case 47: goto st98;
|
2477
|
+
case 58: goto st88;
|
2478
|
+
case 64: goto st109;
|
2479
|
+
case 92: goto st98;
|
2480
|
+
case 94: goto st98;
|
2481
|
+
case 95: goto tr121;
|
2482
|
+
case 126: goto st98;
|
2483
|
+
}
|
2484
|
+
if ( (*p) < 45 ) {
|
2485
|
+
if ( 36 <= (*p) && (*p) <= 37 )
|
2486
|
+
goto st98;
|
2487
|
+
} else if ( (*p) > 57 ) {
|
2488
|
+
if ( (*p) > 90 ) {
|
2489
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2490
|
+
goto tr121;
|
2491
|
+
} else if ( (*p) >= 65 )
|
2492
|
+
goto tr121;
|
2493
|
+
} else
|
2494
|
+
goto tr121;
|
2495
|
+
goto tr141;
|
2496
|
+
st88:
|
2497
|
+
if ( ++p == pe )
|
2498
|
+
goto _test_eof88;
|
2499
|
+
case 88:
|
2500
|
+
if ( (*p) == 95 )
|
2501
|
+
goto st89;
|
2502
|
+
if ( (*p) < 48 ) {
|
2503
|
+
if ( 45 <= (*p) && (*p) <= 46 )
|
2504
|
+
goto st89;
|
2505
|
+
} else if ( (*p) > 57 ) {
|
2506
|
+
if ( (*p) > 90 ) {
|
2507
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2508
|
+
goto st89;
|
2509
|
+
} else if ( (*p) >= 65 )
|
2510
|
+
goto st89;
|
2511
|
+
} else
|
2512
|
+
goto st89;
|
2513
|
+
goto tr95;
|
2514
|
+
st89:
|
2515
|
+
if ( ++p == pe )
|
2516
|
+
goto _test_eof89;
|
2517
|
+
case 89:
|
2958
2518
|
switch( (*p) ) {
|
2959
|
-
case 33: goto st83;
|
2960
|
-
case 47: goto st83;
|
2961
|
-
case 63: goto st83;
|
2962
2519
|
case 64: goto st90;
|
2963
|
-
case 78: goto st103;
|
2964
|
-
case 92: goto st83;
|
2965
|
-
case 94: goto st83;
|
2966
2520
|
case 95: goto st89;
|
2967
|
-
case 110: goto st103;
|
2968
|
-
case 126: goto st83;
|
2969
2521
|
}
|
2970
|
-
if ( (*p) <
|
2971
|
-
if ( (*p)
|
2972
|
-
|
2973
|
-
goto st83;
|
2974
|
-
} else if ( (*p) > 41 ) {
|
2975
|
-
if ( 43 <= (*p) && (*p) <= 44 )
|
2976
|
-
goto st83;
|
2977
|
-
} else
|
2978
|
-
goto st83;
|
2522
|
+
if ( (*p) < 48 ) {
|
2523
|
+
if ( 45 <= (*p) && (*p) <= 46 )
|
2524
|
+
goto st89;
|
2979
2525
|
} else if ( (*p) > 57 ) {
|
2980
|
-
if ( (*p)
|
2981
|
-
if ( 58 <= (*p) && (*p) <= 59 )
|
2982
|
-
goto st83;
|
2983
|
-
} else if ( (*p) > 90 ) {
|
2526
|
+
if ( (*p) > 90 ) {
|
2984
2527
|
if ( 97 <= (*p) && (*p) <= 122 )
|
2985
2528
|
goto st89;
|
2986
|
-
} else
|
2529
|
+
} else if ( (*p) >= 65 )
|
2987
2530
|
goto st89;
|
2988
2531
|
} else
|
2989
2532
|
goto st89;
|
2990
|
-
goto
|
2533
|
+
goto tr95;
|
2534
|
+
st90:
|
2535
|
+
if ( ++p == pe )
|
2536
|
+
goto _test_eof90;
|
2537
|
+
case 90:
|
2538
|
+
if ( (*p) < 65 ) {
|
2539
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
2540
|
+
goto st91;
|
2541
|
+
} else if ( (*p) > 90 ) {
|
2542
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2543
|
+
goto st91;
|
2544
|
+
} else
|
2545
|
+
goto st91;
|
2546
|
+
goto tr95;
|
2547
|
+
st91:
|
2548
|
+
if ( ++p == pe )
|
2549
|
+
goto _test_eof91;
|
2550
|
+
case 91:
|
2551
|
+
if ( (*p) == 46 )
|
2552
|
+
goto st92;
|
2553
|
+
if ( (*p) < 65 ) {
|
2554
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
2555
|
+
goto st91;
|
2556
|
+
} else if ( (*p) > 90 ) {
|
2557
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2558
|
+
goto st91;
|
2559
|
+
} else
|
2560
|
+
goto st91;
|
2561
|
+
goto tr23;
|
2562
|
+
st92:
|
2563
|
+
if ( ++p == pe )
|
2564
|
+
goto _test_eof92;
|
2565
|
+
case 92:
|
2566
|
+
if ( (*p) < 65 ) {
|
2567
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
2568
|
+
goto st91;
|
2569
|
+
} else if ( (*p) > 90 ) {
|
2570
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2571
|
+
goto st93;
|
2572
|
+
} else
|
2573
|
+
goto st93;
|
2574
|
+
goto tr23;
|
2575
|
+
st93:
|
2576
|
+
if ( ++p == pe )
|
2577
|
+
goto _test_eof93;
|
2578
|
+
case 93:
|
2579
|
+
if ( (*p) == 46 )
|
2580
|
+
goto st92;
|
2581
|
+
if ( (*p) < 65 ) {
|
2582
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
2583
|
+
goto st91;
|
2584
|
+
} else if ( (*p) > 90 ) {
|
2585
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2586
|
+
goto tr106;
|
2587
|
+
} else
|
2588
|
+
goto tr106;
|
2589
|
+
goto tr23;
|
2590
|
+
tr106:
|
2591
|
+
#line 1 "wikitext_ragel.rl"
|
2592
|
+
{te = p+1;}
|
2593
|
+
#line 281 "wikitext_ragel.rl"
|
2594
|
+
{act = 20;}
|
2595
|
+
goto st130;
|
2991
2596
|
st130:
|
2992
2597
|
if ( ++p == pe )
|
2993
2598
|
goto _test_eof130;
|
2994
2599
|
case 130:
|
2995
|
-
|
2600
|
+
#line 2601 "wikitext_ragel.c"
|
2601
|
+
if ( (*p) == 46 )
|
2602
|
+
goto st92;
|
2603
|
+
if ( (*p) < 65 ) {
|
2604
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
2605
|
+
goto st91;
|
2606
|
+
} else if ( (*p) > 90 ) {
|
2607
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2608
|
+
goto tr182;
|
2609
|
+
} else
|
2996
2610
|
goto tr182;
|
2997
|
-
goto
|
2611
|
+
goto tr172;
|
2612
|
+
tr182:
|
2613
|
+
#line 1 "wikitext_ragel.rl"
|
2614
|
+
{te = p+1;}
|
2615
|
+
#line 281 "wikitext_ragel.rl"
|
2616
|
+
{act = 20;}
|
2617
|
+
goto st131;
|
2998
2618
|
st131:
|
2999
2619
|
if ( ++p == pe )
|
3000
2620
|
goto _test_eof131;
|
3001
2621
|
case 131:
|
3002
|
-
|
3003
|
-
|
3004
|
-
|
2622
|
+
#line 2623 "wikitext_ragel.c"
|
2623
|
+
if ( (*p) == 46 )
|
2624
|
+
goto st92;
|
2625
|
+
if ( (*p) < 65 ) {
|
2626
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
2627
|
+
goto st91;
|
2628
|
+
} else if ( (*p) > 90 ) {
|
2629
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2630
|
+
goto tr183;
|
2631
|
+
} else
|
2632
|
+
goto tr183;
|
2633
|
+
goto tr172;
|
2634
|
+
tr183:
|
2635
|
+
#line 1 "wikitext_ragel.rl"
|
2636
|
+
{te = p+1;}
|
2637
|
+
#line 281 "wikitext_ragel.rl"
|
2638
|
+
{act = 20;}
|
2639
|
+
goto st132;
|
3005
2640
|
st132:
|
3006
2641
|
if ( ++p == pe )
|
3007
2642
|
goto _test_eof132;
|
3008
2643
|
case 132:
|
3009
|
-
|
3010
|
-
|
3011
|
-
|
2644
|
+
#line 2645 "wikitext_ragel.c"
|
2645
|
+
if ( (*p) == 46 )
|
2646
|
+
goto st92;
|
2647
|
+
if ( (*p) < 65 ) {
|
2648
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
2649
|
+
goto st91;
|
2650
|
+
} else if ( (*p) > 90 ) {
|
2651
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2652
|
+
goto tr184;
|
2653
|
+
} else
|
2654
|
+
goto tr184;
|
2655
|
+
goto tr172;
|
2656
|
+
tr184:
|
2657
|
+
#line 1 "wikitext_ragel.rl"
|
2658
|
+
{te = p+1;}
|
2659
|
+
#line 281 "wikitext_ragel.rl"
|
2660
|
+
{act = 20;}
|
2661
|
+
goto st133;
|
3012
2662
|
st133:
|
3013
2663
|
if ( ++p == pe )
|
3014
2664
|
goto _test_eof133;
|
3015
2665
|
case 133:
|
2666
|
+
#line 2667 "wikitext_ragel.c"
|
2667
|
+
if ( (*p) == 46 )
|
2668
|
+
goto st92;
|
2669
|
+
if ( (*p) < 65 ) {
|
2670
|
+
if ( 48 <= (*p) && (*p) <= 57 )
|
2671
|
+
goto st91;
|
2672
|
+
} else if ( (*p) > 90 ) {
|
2673
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2674
|
+
goto st91;
|
2675
|
+
} else
|
2676
|
+
goto st91;
|
2677
|
+
goto tr172;
|
2678
|
+
tr129:
|
2679
|
+
#line 1 "wikitext_ragel.rl"
|
2680
|
+
{te = p+1;}
|
2681
|
+
#line 426 "wikitext_ragel.rl"
|
2682
|
+
{act = 42;}
|
2683
|
+
goto st134;
|
2684
|
+
st134:
|
2685
|
+
if ( ++p == pe )
|
2686
|
+
goto _test_eof134;
|
2687
|
+
case 134:
|
2688
|
+
#line 2689 "wikitext_ragel.c"
|
2689
|
+
switch( (*p) ) {
|
2690
|
+
case 40: goto st98;
|
2691
|
+
case 43: goto st98;
|
2692
|
+
case 46: goto st20;
|
2693
|
+
case 47: goto st98;
|
2694
|
+
case 64: goto st109;
|
2695
|
+
case 86: goto tr185;
|
2696
|
+
case 92: goto st98;
|
2697
|
+
case 94: goto st98;
|
2698
|
+
case 95: goto tr121;
|
2699
|
+
case 118: goto tr185;
|
2700
|
+
case 126: goto st98;
|
2701
|
+
}
|
2702
|
+
if ( (*p) < 45 ) {
|
2703
|
+
if ( 36 <= (*p) && (*p) <= 37 )
|
2704
|
+
goto st98;
|
2705
|
+
} else if ( (*p) > 57 ) {
|
2706
|
+
if ( (*p) > 90 ) {
|
2707
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2708
|
+
goto tr121;
|
2709
|
+
} else if ( (*p) >= 65 )
|
2710
|
+
goto tr121;
|
2711
|
+
} else
|
2712
|
+
goto tr121;
|
2713
|
+
goto tr141;
|
2714
|
+
tr185:
|
2715
|
+
#line 1 "wikitext_ragel.rl"
|
2716
|
+
{te = p+1;}
|
2717
|
+
#line 426 "wikitext_ragel.rl"
|
2718
|
+
{act = 42;}
|
2719
|
+
goto st135;
|
2720
|
+
st135:
|
2721
|
+
if ( ++p == pe )
|
2722
|
+
goto _test_eof135;
|
2723
|
+
case 135:
|
2724
|
+
#line 2725 "wikitext_ragel.c"
|
2725
|
+
switch( (*p) ) {
|
2726
|
+
case 40: goto st98;
|
2727
|
+
case 43: goto st98;
|
2728
|
+
case 46: goto st20;
|
2729
|
+
case 47: goto st98;
|
2730
|
+
case 64: goto st109;
|
2731
|
+
case 78: goto tr170;
|
2732
|
+
case 92: goto st98;
|
2733
|
+
case 94: goto st98;
|
2734
|
+
case 95: goto tr121;
|
2735
|
+
case 110: goto tr170;
|
2736
|
+
case 126: goto st98;
|
2737
|
+
}
|
2738
|
+
if ( (*p) < 45 ) {
|
2739
|
+
if ( 36 <= (*p) && (*p) <= 37 )
|
2740
|
+
goto st98;
|
2741
|
+
} else if ( (*p) > 57 ) {
|
2742
|
+
if ( (*p) > 90 ) {
|
2743
|
+
if ( 97 <= (*p) && (*p) <= 122 )
|
2744
|
+
goto tr121;
|
2745
|
+
} else if ( (*p) >= 65 )
|
2746
|
+
goto tr121;
|
2747
|
+
} else
|
2748
|
+
goto tr121;
|
2749
|
+
goto tr141;
|
2750
|
+
st136:
|
2751
|
+
if ( ++p == pe )
|
2752
|
+
goto _test_eof136;
|
2753
|
+
case 136:
|
2754
|
+
if ( (*p) == 91 )
|
2755
|
+
goto tr187;
|
2756
|
+
goto tr186;
|
2757
|
+
st137:
|
2758
|
+
if ( ++p == pe )
|
2759
|
+
goto _test_eof137;
|
2760
|
+
case 137:
|
2761
|
+
if ( (*p) == 93 )
|
2762
|
+
goto tr189;
|
2763
|
+
goto tr188;
|
2764
|
+
st138:
|
2765
|
+
if ( ++p == pe )
|
2766
|
+
goto _test_eof138;
|
2767
|
+
case 138:
|
2768
|
+
if ( (*p) == 123 )
|
2769
|
+
goto tr191;
|
2770
|
+
goto tr190;
|
2771
|
+
st139:
|
2772
|
+
if ( ++p == pe )
|
2773
|
+
goto _test_eof139;
|
2774
|
+
case 139:
|
3016
2775
|
if ( (*p) == 125 )
|
3017
|
-
goto
|
3018
|
-
goto
|
2776
|
+
goto tr193;
|
2777
|
+
goto tr192;
|
3019
2778
|
}
|
3020
|
-
|
2779
|
+
_test_eof94: cs = 94; goto _test_eof;
|
3021
2780
|
_test_eof1: cs = 1; goto _test_eof;
|
3022
2781
|
_test_eof2: cs = 2; goto _test_eof;
|
3023
2782
|
_test_eof3: cs = 3; goto _test_eof;
|
3024
2783
|
_test_eof4: cs = 4; goto _test_eof;
|
3025
2784
|
_test_eof5: cs = 5; goto _test_eof;
|
3026
2785
|
_test_eof6: cs = 6; goto _test_eof;
|
3027
|
-
|
3028
|
-
|
3029
|
-
|
3030
|
-
|
2786
|
+
_test_eof95: cs = 95; goto _test_eof;
|
2787
|
+
_test_eof96: cs = 96; goto _test_eof;
|
2788
|
+
_test_eof97: cs = 97; goto _test_eof;
|
2789
|
+
_test_eof98: cs = 98; goto _test_eof;
|
2790
|
+
_test_eof99: cs = 99; goto _test_eof;
|
3031
2791
|
_test_eof7: cs = 7; goto _test_eof;
|
3032
2792
|
_test_eof8: cs = 8; goto _test_eof;
|
3033
2793
|
_test_eof9: cs = 9; goto _test_eof;
|
@@ -3041,24 +2801,24 @@ case 133:
|
|
3041
2801
|
_test_eof17: cs = 17; goto _test_eof;
|
3042
2802
|
_test_eof18: cs = 18; goto _test_eof;
|
3043
2803
|
_test_eof19: cs = 19; goto _test_eof;
|
3044
|
-
|
3045
|
-
|
3046
|
-
|
3047
|
-
|
3048
|
-
|
3049
|
-
_test_eof90: cs = 90; goto _test_eof;
|
3050
|
-
_test_eof91: cs = 91; goto _test_eof;
|
3051
|
-
_test_eof92: cs = 92; goto _test_eof;
|
3052
|
-
_test_eof93: cs = 93; goto _test_eof;
|
3053
|
-
_test_eof94: cs = 94; goto _test_eof;
|
3054
|
-
_test_eof95: cs = 95; goto _test_eof;
|
3055
|
-
_test_eof96: cs = 96; goto _test_eof;
|
3056
|
-
_test_eof97: cs = 97; goto _test_eof;
|
2804
|
+
_test_eof100: cs = 100; goto _test_eof;
|
2805
|
+
_test_eof101: cs = 101; goto _test_eof;
|
2806
|
+
_test_eof102: cs = 102; goto _test_eof;
|
2807
|
+
_test_eof103: cs = 103; goto _test_eof;
|
2808
|
+
_test_eof104: cs = 104; goto _test_eof;
|
3057
2809
|
_test_eof20: cs = 20; goto _test_eof;
|
3058
2810
|
_test_eof21: cs = 21; goto _test_eof;
|
3059
2811
|
_test_eof22: cs = 22; goto _test_eof;
|
3060
2812
|
_test_eof23: cs = 23; goto _test_eof;
|
3061
2813
|
_test_eof24: cs = 24; goto _test_eof;
|
2814
|
+
_test_eof105: cs = 105; goto _test_eof;
|
2815
|
+
_test_eof106: cs = 106; goto _test_eof;
|
2816
|
+
_test_eof107: cs = 107; goto _test_eof;
|
2817
|
+
_test_eof108: cs = 108; goto _test_eof;
|
2818
|
+
_test_eof109: cs = 109; goto _test_eof;
|
2819
|
+
_test_eof110: cs = 110; goto _test_eof;
|
2820
|
+
_test_eof111: cs = 111; goto _test_eof;
|
2821
|
+
_test_eof112: cs = 112; goto _test_eof;
|
3062
2822
|
_test_eof25: cs = 25; goto _test_eof;
|
3063
2823
|
_test_eof26: cs = 26; goto _test_eof;
|
3064
2824
|
_test_eof27: cs = 27; goto _test_eof;
|
@@ -3113,29 +2873,22 @@ case 133:
|
|
3113
2873
|
_test_eof76: cs = 76; goto _test_eof;
|
3114
2874
|
_test_eof77: cs = 77; goto _test_eof;
|
3115
2875
|
_test_eof78: cs = 78; goto _test_eof;
|
3116
|
-
_test_eof98: cs = 98; goto _test_eof;
|
3117
|
-
_test_eof99: cs = 99; goto _test_eof;
|
3118
|
-
_test_eof100: cs = 100; goto _test_eof;
|
3119
|
-
_test_eof101: cs = 101; goto _test_eof;
|
3120
|
-
_test_eof102: cs = 102; goto _test_eof;
|
3121
|
-
_test_eof103: cs = 103; goto _test_eof;
|
3122
|
-
_test_eof104: cs = 104; goto _test_eof;
|
3123
|
-
_test_eof105: cs = 105; goto _test_eof;
|
3124
|
-
_test_eof106: cs = 106; goto _test_eof;
|
3125
|
-
_test_eof107: cs = 107; goto _test_eof;
|
3126
2876
|
_test_eof79: cs = 79; goto _test_eof;
|
3127
|
-
|
3128
|
-
|
3129
|
-
|
3130
|
-
|
3131
|
-
_test_eof112: cs = 112; goto _test_eof;
|
2877
|
+
_test_eof80: cs = 80; goto _test_eof;
|
2878
|
+
_test_eof81: cs = 81; goto _test_eof;
|
2879
|
+
_test_eof82: cs = 82; goto _test_eof;
|
2880
|
+
_test_eof83: cs = 83; goto _test_eof;
|
3132
2881
|
_test_eof113: cs = 113; goto _test_eof;
|
3133
2882
|
_test_eof114: cs = 114; goto _test_eof;
|
3134
2883
|
_test_eof115: cs = 115; goto _test_eof;
|
3135
2884
|
_test_eof116: cs = 116; goto _test_eof;
|
3136
2885
|
_test_eof117: cs = 117; goto _test_eof;
|
3137
2886
|
_test_eof118: cs = 118; goto _test_eof;
|
2887
|
+
_test_eof84: cs = 84; goto _test_eof;
|
2888
|
+
_test_eof85: cs = 85; goto _test_eof;
|
2889
|
+
_test_eof86: cs = 86; goto _test_eof;
|
3138
2890
|
_test_eof119: cs = 119; goto _test_eof;
|
2891
|
+
_test_eof87: cs = 87; goto _test_eof;
|
3139
2892
|
_test_eof120: cs = 120; goto _test_eof;
|
3140
2893
|
_test_eof121: cs = 121; goto _test_eof;
|
3141
2894
|
_test_eof122: cs = 122; goto _test_eof;
|
@@ -3146,19 +2899,32 @@ case 133:
|
|
3146
2899
|
_test_eof127: cs = 127; goto _test_eof;
|
3147
2900
|
_test_eof128: cs = 128; goto _test_eof;
|
3148
2901
|
_test_eof129: cs = 129; goto _test_eof;
|
2902
|
+
_test_eof88: cs = 88; goto _test_eof;
|
2903
|
+
_test_eof89: cs = 89; goto _test_eof;
|
2904
|
+
_test_eof90: cs = 90; goto _test_eof;
|
2905
|
+
_test_eof91: cs = 91; goto _test_eof;
|
2906
|
+
_test_eof92: cs = 92; goto _test_eof;
|
2907
|
+
_test_eof93: cs = 93; goto _test_eof;
|
3149
2908
|
_test_eof130: cs = 130; goto _test_eof;
|
3150
2909
|
_test_eof131: cs = 131; goto _test_eof;
|
3151
2910
|
_test_eof132: cs = 132; goto _test_eof;
|
3152
2911
|
_test_eof133: cs = 133; goto _test_eof;
|
2912
|
+
_test_eof134: cs = 134; goto _test_eof;
|
2913
|
+
_test_eof135: cs = 135; goto _test_eof;
|
2914
|
+
_test_eof136: cs = 136; goto _test_eof;
|
2915
|
+
_test_eof137: cs = 137; goto _test_eof;
|
2916
|
+
_test_eof138: cs = 138; goto _test_eof;
|
2917
|
+
_test_eof139: cs = 139; goto _test_eof;
|
3153
2918
|
|
3154
2919
|
_test_eof: {}
|
3155
2920
|
if ( p == eof )
|
3156
2921
|
{
|
3157
2922
|
switch ( cs ) {
|
3158
|
-
case
|
3159
|
-
case
|
3160
|
-
case
|
3161
|
-
case
|
2923
|
+
case 95: goto tr136;
|
2924
|
+
case 96: goto tr138;
|
2925
|
+
case 97: goto tr140;
|
2926
|
+
case 98: goto tr141;
|
2927
|
+
case 99: goto tr142;
|
3162
2928
|
case 7: goto tr7;
|
3163
2929
|
case 8: goto tr7;
|
3164
2930
|
case 9: goto tr7;
|
@@ -3172,121 +2938,126 @@ case 133:
|
|
3172
2938
|
case 17: goto tr7;
|
3173
2939
|
case 18: goto tr7;
|
3174
2940
|
case 19: goto tr7;
|
3175
|
-
case
|
3176
|
-
case
|
3177
|
-
case
|
3178
|
-
case
|
3179
|
-
case
|
3180
|
-
case 90: goto tr122;
|
3181
|
-
case 91: goto tr134;
|
3182
|
-
case 92: goto tr122;
|
3183
|
-
case 93: goto tr122;
|
3184
|
-
case 94: goto tr138;
|
3185
|
-
case 95: goto tr138;
|
3186
|
-
case 96: goto tr138;
|
3187
|
-
case 97: goto tr142;
|
2941
|
+
case 100: goto tr146;
|
2942
|
+
case 101: goto tr146;
|
2943
|
+
case 102: goto tr146;
|
2944
|
+
case 103: goto tr146;
|
2945
|
+
case 104: goto tr141;
|
3188
2946
|
case 20: goto tr23;
|
3189
2947
|
case 21: goto tr23;
|
3190
2948
|
case 22: goto tr23;
|
3191
2949
|
case 23: goto tr23;
|
3192
2950
|
case 24: goto tr23;
|
3193
|
-
case
|
3194
|
-
case
|
3195
|
-
case
|
3196
|
-
case
|
3197
|
-
case
|
3198
|
-
case
|
3199
|
-
case
|
3200
|
-
case
|
3201
|
-
case
|
3202
|
-
case
|
3203
|
-
case
|
3204
|
-
case
|
3205
|
-
case
|
3206
|
-
case
|
3207
|
-
case
|
3208
|
-
case
|
3209
|
-
case
|
3210
|
-
case
|
3211
|
-
case
|
3212
|
-
case
|
3213
|
-
case
|
3214
|
-
case
|
3215
|
-
case
|
3216
|
-
case
|
3217
|
-
case
|
3218
|
-
case
|
3219
|
-
case
|
3220
|
-
case
|
3221
|
-
case
|
3222
|
-
case
|
3223
|
-
case
|
3224
|
-
case
|
3225
|
-
case
|
3226
|
-
case
|
3227
|
-
case
|
3228
|
-
case
|
3229
|
-
case
|
3230
|
-
case
|
3231
|
-
case
|
3232
|
-
case
|
3233
|
-
case
|
3234
|
-
case
|
3235
|
-
case
|
3236
|
-
case
|
3237
|
-
case
|
3238
|
-
case
|
3239
|
-
case
|
3240
|
-
case
|
3241
|
-
case
|
3242
|
-
case
|
3243
|
-
case
|
3244
|
-
case
|
3245
|
-
case
|
3246
|
-
case
|
3247
|
-
case
|
3248
|
-
case
|
3249
|
-
case
|
3250
|
-
case
|
3251
|
-
case
|
3252
|
-
case
|
3253
|
-
case
|
3254
|
-
case
|
3255
|
-
case
|
3256
|
-
case
|
3257
|
-
case
|
3258
|
-
case
|
3259
|
-
case
|
3260
|
-
case
|
3261
|
-
case
|
3262
|
-
case
|
3263
|
-
case
|
3264
|
-
case
|
3265
|
-
case
|
3266
|
-
case
|
3267
|
-
case
|
3268
|
-
case
|
3269
|
-
case 119: goto
|
3270
|
-
case
|
3271
|
-
case
|
3272
|
-
case
|
3273
|
-
case
|
3274
|
-
case
|
3275
|
-
case
|
3276
|
-
case
|
3277
|
-
case
|
3278
|
-
case
|
3279
|
-
case
|
3280
|
-
case
|
3281
|
-
case
|
3282
|
-
case
|
3283
|
-
case
|
2951
|
+
case 105: goto tr152;
|
2952
|
+
case 106: goto tr152;
|
2953
|
+
case 107: goto tr152;
|
2954
|
+
case 108: goto tr152;
|
2955
|
+
case 109: goto tr141;
|
2956
|
+
case 110: goto tr141;
|
2957
|
+
case 111: goto tr140;
|
2958
|
+
case 112: goto tr157;
|
2959
|
+
case 25: goto tr30;
|
2960
|
+
case 26: goto tr30;
|
2961
|
+
case 27: goto tr30;
|
2962
|
+
case 28: goto tr30;
|
2963
|
+
case 29: goto tr30;
|
2964
|
+
case 30: goto tr30;
|
2965
|
+
case 31: goto tr30;
|
2966
|
+
case 32: goto tr30;
|
2967
|
+
case 33: goto tr30;
|
2968
|
+
case 34: goto tr30;
|
2969
|
+
case 35: goto tr30;
|
2970
|
+
case 36: goto tr30;
|
2971
|
+
case 37: goto tr30;
|
2972
|
+
case 38: goto tr30;
|
2973
|
+
case 39: goto tr30;
|
2974
|
+
case 40: goto tr30;
|
2975
|
+
case 41: goto tr30;
|
2976
|
+
case 42: goto tr30;
|
2977
|
+
case 43: goto tr30;
|
2978
|
+
case 44: goto tr30;
|
2979
|
+
case 45: goto tr30;
|
2980
|
+
case 46: goto tr30;
|
2981
|
+
case 47: goto tr30;
|
2982
|
+
case 48: goto tr30;
|
2983
|
+
case 49: goto tr30;
|
2984
|
+
case 50: goto tr30;
|
2985
|
+
case 51: goto tr30;
|
2986
|
+
case 52: goto tr30;
|
2987
|
+
case 53: goto tr30;
|
2988
|
+
case 54: goto tr30;
|
2989
|
+
case 55: goto tr30;
|
2990
|
+
case 56: goto tr30;
|
2991
|
+
case 57: goto tr30;
|
2992
|
+
case 58: goto tr30;
|
2993
|
+
case 59: goto tr30;
|
2994
|
+
case 60: goto tr30;
|
2995
|
+
case 61: goto tr30;
|
2996
|
+
case 62: goto tr30;
|
2997
|
+
case 63: goto tr30;
|
2998
|
+
case 64: goto tr30;
|
2999
|
+
case 65: goto tr30;
|
3000
|
+
case 66: goto tr30;
|
3001
|
+
case 67: goto tr30;
|
3002
|
+
case 68: goto tr30;
|
3003
|
+
case 69: goto tr30;
|
3004
|
+
case 70: goto tr30;
|
3005
|
+
case 71: goto tr30;
|
3006
|
+
case 72: goto tr30;
|
3007
|
+
case 73: goto tr30;
|
3008
|
+
case 74: goto tr30;
|
3009
|
+
case 75: goto tr30;
|
3010
|
+
case 76: goto tr30;
|
3011
|
+
case 77: goto tr30;
|
3012
|
+
case 78: goto tr30;
|
3013
|
+
case 79: goto tr30;
|
3014
|
+
case 80: goto tr30;
|
3015
|
+
case 81: goto tr30;
|
3016
|
+
case 82: goto tr30;
|
3017
|
+
case 83: goto tr30;
|
3018
|
+
case 113: goto tr165;
|
3019
|
+
case 114: goto tr165;
|
3020
|
+
case 115: goto tr167;
|
3021
|
+
case 116: goto tr141;
|
3022
|
+
case 117: goto tr141;
|
3023
|
+
case 118: goto tr141;
|
3024
|
+
case 84: goto tr95;
|
3025
|
+
case 85: goto tr95;
|
3026
|
+
case 86: goto tr95;
|
3027
|
+
case 119: goto tr172;
|
3028
|
+
case 87: goto tr99;
|
3029
|
+
case 120: goto tr141;
|
3030
|
+
case 121: goto tr141;
|
3031
|
+
case 122: goto tr141;
|
3032
|
+
case 123: goto tr141;
|
3033
|
+
case 124: goto tr141;
|
3034
|
+
case 125: goto tr141;
|
3035
|
+
case 126: goto tr141;
|
3036
|
+
case 127: goto tr141;
|
3037
|
+
case 128: goto tr141;
|
3038
|
+
case 129: goto tr141;
|
3039
|
+
case 88: goto tr95;
|
3040
|
+
case 89: goto tr95;
|
3041
|
+
case 90: goto tr95;
|
3042
|
+
case 91: goto tr23;
|
3043
|
+
case 92: goto tr23;
|
3044
|
+
case 93: goto tr23;
|
3045
|
+
case 130: goto tr172;
|
3046
|
+
case 131: goto tr172;
|
3047
|
+
case 132: goto tr172;
|
3048
|
+
case 133: goto tr172;
|
3049
|
+
case 134: goto tr141;
|
3050
|
+
case 135: goto tr141;
|
3051
|
+
case 136: goto tr186;
|
3052
|
+
case 137: goto tr188;
|
3053
|
+
case 138: goto tr190;
|
3054
|
+
case 139: goto tr192;
|
3284
3055
|
}
|
3285
3056
|
}
|
3286
3057
|
|
3287
3058
|
_out: {}
|
3288
3059
|
}
|
3289
|
-
#line
|
3060
|
+
#line 498 "wikitext_ragel.rl"
|
3290
3061
|
if (cs == wikitext_error)
|
3291
3062
|
rb_raise(eWikitextParserError, "failed before finding a token");
|
3292
3063
|
else if (out->type == NO_TOKEN)
|