-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlexer_hack.ml
3835 lines (3496 loc) · 171 KB
/
lexer_hack.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# 1 "lexer_hack.mll"
(**
* Copyright (c) 2014, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the "hack" directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*)
open Utils
(*****************************************************************************)
(* Comments accumulator. *)
(*****************************************************************************)
let (comment_list: (Pos.t * string) list ref) = ref []
(*****************************************************************************)
(* Fixmes accumulators *)
(*****************************************************************************)
let (fixmes: Pos.t IMap.t IMap.t ref) = ref IMap.empty
let add_fixme err_nbr pos =
let line, _, _ = Pos.info_pos pos in
let line_value =
match IMap.get line !fixmes with
| None -> IMap.empty
| Some x -> x
in
fixmes := IMap.add line (IMap.add err_nbr pos line_value) !fixmes;
()
(*****************************************************************************)
(* The type for tokens. Some of them don't represent "real" tokens coming
* from the buffer. For example Terror can be used to tag an error, or Tyield
* doesn't really correspond to a string, it's just there to encode the
* priority.
*)
(*****************************************************************************)
type token =
| Tlvar
| Tint
| Tfloat
| Tat
| Tclose_php
| Tword
| Tbacktick
| Tphp
| Thh
| Tlp
| Trp
| Tsc
| Tcolon
| Tcolcol
| Tcomma
| Teq
| Tbareq
| Tpluseq
| Tstareq
| Tslasheq
| Tdoteq
| Tminuseq
| Tpercenteq
| Txoreq
| Tampeq
| Tlshifteq
| Trshifteq
| Teqeq
| Teqeqeq
| Tdiff
| Tdiff2
| Tbar
| Tbarbar
| Tampamp
| Tplus
| Tminus
| Tstar
| Tstarstar
| Tslash
| Tbslash
| Txor
| Tlcb
| Trcb
| Tlb
| Trb
| Tdot
| Tlte
| Tlt
| Tgt
| Tgte
| Tltlt
| Tgtgt
| Tsarrow
| Tnsarrow
| Tarrow
| Tlambda
| Tem
| Tqm
| Tamp
| Ttild
| Tincr
| Tdecr
| Tunderscore
| Trequired
| Tellipsis
| Tdollar
| Tpercent
| Teof
| Tquote
| Tdquote
| Tunsafe
| Tunsafeexpr
| Tfallthrough
| Theredoc
| Txhpname
| Tref
| Tspace
| Topen_comment
| Tclose_comment
| Tline_comment
| Topen_xhp_comment
| Tclose_xhp_comment
(* Fake tokens *)
| Tyield
| Tawait
| Timport
| Teval
| Tprint
| Tinstanceof
| Tnew
| Tclone
| Telseif
| Telse
| Tendif
| Tcast
| Terror
| Tnewline
| Tany
(*****************************************************************************)
(* Backtracking. *)
(*****************************************************************************)
let yyback n lexbuf =
Lexing.(
lexbuf.lex_curr_pos <- lexbuf.lex_curr_pos - n;
let currp = lexbuf.lex_curr_p in
lexbuf.lex_curr_p <-
{ currp with pos_cnum = currp.pos_cnum - n }
)
let back lb =
let n = Lexing.lexeme_end lb - Lexing.lexeme_start lb in
yyback n lb
(*****************************************************************************)
(* Pretty printer (pretty?) *)
(*****************************************************************************)
let token_to_string = function
| Tat -> "@"
| Tbacktick -> "`"
| Tlp -> "("
| Trp -> ")"
| Tsc -> ";"
| Tcolon -> ":"
| Tcolcol -> "::"
| Tcomma -> ","
| Teq -> "="
| Tbareq -> "|="
| Tpluseq -> "+="
| Tstareq -> "*="
| Tslasheq -> "/="
| Tdoteq -> ".="
| Tminuseq -> "-="
| Tpercenteq -> "%="
| Txoreq -> "^="
| Tampeq -> "&="
| Tlshifteq -> "<<="
| Trshifteq -> ">>="
| Teqeq -> "=="
| Teqeqeq -> "==="
| Tdiff -> "!="
| Tdiff2 -> "!=="
| Tbar -> "|"
| Tbarbar -> "||"
| Tampamp -> "&&"
| Tplus -> "+"
| Tminus -> "-"
| Tstar -> "*"
| Tstarstar -> "**"
| Tslash -> "/"
| Tbslash -> "\\"
| Txor -> "^"
| Tlcb -> "{"
| Trcb -> "}"
| Tlb -> "["
| Trb -> "]"
| Tdot -> "."
| Tlte -> "<="
| Tlt -> "<"
| Tgt -> ">"
| Tgte -> ">="
| Tltlt -> "<<"
| Tgtgt -> ">>"
| Tsarrow -> "=>"
| Tnsarrow -> "?->"
| Tarrow -> "->"
| Tlambda -> "==>"
| Tem -> "!"
| Tqm -> "?"
| Tamp -> "&"
| Ttild -> "~"
| Tincr -> "++"
| Tdecr -> "--"
| Tunderscore -> "_"
| Tellipsis -> "..."
| Tdollar -> "$"
| Tpercent -> "%"
| Tquote -> "'"
| Tdquote -> "\""
| Tclose_php -> "?>"
| Tlvar -> "lvar"
| Tint -> "int"
| Tfloat -> "float"
| Tword -> "word"
| Tphp -> "php"
| Thh -> "hh"
| Trequired -> "required"
| Teof -> "eof"
| Tyield -> "yield"
| Tawait -> "await"
| Timport -> "import"
| Teval -> "eval"
| Tprint -> "print"
| Tinstanceof -> "instanceof"
| Tnew -> "new"
| Tclone -> "clone"
| Telseif -> "elseif"
| Telse -> "else"
| Tendif -> "endif"
| Tcast -> "cast"
| Tref -> "ref"
| Theredoc -> "heredoc"
| Txhpname -> "xhpname"
| Terror -> "error"
| Tunsafe -> "unsafe"
| Tunsafeexpr -> "unsafeexpr"
| Tfallthrough -> "fallthrough"
| Tnewline -> "newline"
| Tany -> "any"
| Tspace -> "space"
| Topen_comment -> "open_comment"
| Tclose_comment -> "close_comment"
| Tline_comment -> "line_comment"
| Topen_xhp_comment -> "open_xhp_comment"
| Tclose_xhp_comment -> "close_xhp_comment"
# 266 "lexer_hack.ml"
let __ocaml_lex_tables = {
Lexing.lex_base =
"\000\000\176\255\177\255\185\255\200\255\201\255\202\255\203\255\
\066\000\067\000\092\000\070\000\071\000\088\000\093\000\091\000\
\075\000\076\000\230\255\081\000\233\255\234\255\235\255\238\255\
\103\000\192\000\014\001\072\001\095\000\027\000\149\001\182\000\
\163\001\082\000\247\255\248\255\249\255\104\000\254\255\135\000\
\225\255\212\001\214\001\083\000\078\000\221\001\075\000\094\000\
\090\000\092\000\067\000\094\000\076\000\086\000\112\000\253\255\
\100\000\126\000\124\000\138\000\150\000\160\000\252\255\185\000\
\174\000\226\001\170\000\189\000\185\000\216\000\020\001\212\000\
\240\000\233\000\000\001\247\000\251\000\246\000\005\001\005\001\
\068\001\198\255\124\001\047\001\219\255\246\255\001\001\006\001\
\051\001\237\255\236\255\217\001\008\002\030\002\064\002\117\001\
\086\002\124\002\159\001\152\002\162\002\184\002\040\002\194\002\
\204\002\216\002\226\002\236\002\122\001\224\255\246\002\012\003\
\022\003\032\003\180\255\095\001\109\001\112\001\126\001\123\001\
\139\001\141\001\181\255\180\001\242\255\191\255\045\003\123\003\
\198\003\231\255\192\255\186\001\189\255\216\255\212\255\228\255\
\184\255\227\255\207\255\226\255\183\255\190\255\223\255\222\255\
\221\255\211\255\220\255\195\255\182\001\218\255\184\001\214\255\
\056\004\247\255\114\004\216\004\038\005\096\005\250\255\207\001\
\243\001\254\255\255\255\251\255\252\255\171\005\249\005\071\006\
\149\006\207\006\029\007\107\007\185\007\007\008\085\008\198\008\
\245\255\020\009\102\009\160\009\248\255\249\255\250\255\251\255\
\252\255\217\001\254\255\255\255\206\001\212\001\246\255\238\009\
\060\010\174\010\241\255\252\010\078\011\136\011\243\255\245\255\
\246\255\247\255\248\255\237\001\253\255\012\002\255\255\250\255\
\039\002\187\001\091\002\168\001\208\001\212\001\199\001\211\001\
\220\001\252\255\214\011\036\012\117\012\251\255\252\255\192\012\
\021\013\079\013\254\255\255\255\157\013\235\013\056\002\252\255\
\243\001\254\255\255\255\253\255\137\002\251\255\252\255\253\255\
\093\002\255\255\093\014\251\255\022\004\059\014\253\255\072\004\
\255\255\046\004\243\001\067\014\132\014\246\001\247\003\251\255\
\252\255\251\001\255\255\077\004\254\255\228\004\138\002\253\255\
\254\255\255\255\246\003\252\255\000\002\254\255\255\255\240\001\
\253\255\146\014\247\255\248\255\249\255\007\002\253\255\230\004\
\255\255\251\255\252\255\170\014\253\255\253\014\106\015\164\015\
\255\255\242\015\064\016\074\009\251\255\252\255\253\255\254\255\
\255\255\186\002\253\255\254\255\255\255\177\016\241\255\255\016\
\081\017\062\004\156\017\245\255\212\017\241\001\248\255\249\255\
\250\255\251\255\252\255\253\255\254\255\255\255\247\255\031\018\
\200\004\021\002\164\017\106\018\024\002\144\018\222\018\080\019\
\245\255\246\001\250\255\080\002\253\255\201\008\255\255\251\255\
\252\255\219\001\226\001\253\001\203\008\060\002\208\008\248\255\
\252\001\210\008\077\002\215\008\198\010\025\002\029\002\021\002\
\247\255\024\004\252\255\253\255\254\255\255\255\234\004\252\255\
\253\255\254\255\255\255\076\019\254\255\151\019\164\014\251\255\
\083\002\253\255\254\255\180\010\185\010\190\010\252\255\049\020\
\181\255\182\255\187\255\201\255\202\255\203\255\204\255\207\255\
\071\002\083\002\121\002\096\002\097\002\047\003\041\004\126\003\
\106\002\099\002\232\255\104\002\235\255\236\255\237\255\240\255\
\111\020\209\020\031\021\213\004\245\255\113\012\068\019\108\021\
\244\002\249\255\250\255\251\255\183\008\254\255\206\010\050\013\
\182\014\227\255\252\255\253\255\199\255\202\002\110\002\221\255\
\248\255\060\002\062\002\056\002\239\255\238\255\167\014\140\016\
\228\019\199\020\150\002\118\021\181\021\004\003\077\015\141\021\
\192\017\087\015\150\016\129\018\046\019\238\019\250\019\174\002\
\226\255\204\021\241\021\015\020\186\020\183\255\200\002\244\255\
\193\255\002\022\080\022\155\022\233\255\194\255\042\003\191\255\
\218\255\214\255\230\255\186\255\229\255\209\255\228\255\185\255\
\192\255\225\255\224\255\223\255\213\255\222\255\196\255\249\002\
\220\255\044\003\216\255\013\023\240\255\061\003\091\023\173\023\
\231\023\060\003\247\255\094\003\249\255\250\255\251\255\106\003\
\254\255\028\015\205\016\255\255\243\017\125\003\136\003\242\255\
\244\255\246\255\245\255\053\024\131\024\120\003\241\255";
Lexing.lex_backtrk =
"\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\067\000\059\000\069\000\050\000\051\000\046\000\047\000\045\000\
\042\000\026\000\255\255\023\000\255\255\255\255\255\255\255\255\
\016\000\014\000\014\000\014\000\068\000\012\000\056\000\010\000\
\010\000\058\000\255\255\255\255\255\255\049\000\255\255\000\000\
\255\255\005\000\004\000\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\076\000\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\077\000\255\255\255\255\061\000\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\011\000\255\255\010\000\255\255\
\255\255\010\000\010\000\255\255\011\000\255\255\011\000\255\255\
\011\000\255\255\011\000\255\255\255\255\255\255\011\000\255\255\
\011\000\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\014\000\
\015\000\255\255\255\255\038\000\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\062\000\255\255\040\000\255\255\
\255\255\255\255\008\000\006\000\006\000\006\000\255\255\008\000\
\002\000\255\255\255\255\255\255\255\255\006\000\006\000\255\255\
\006\000\255\255\255\255\006\000\006\000\007\000\007\000\255\255\
\255\255\008\000\008\000\008\000\255\255\255\255\255\255\255\255\
\255\255\002\000\255\255\255\255\255\255\255\255\255\255\255\255\
\008\000\255\255\255\255\013\000\013\000\013\000\255\255\255\255\
\255\255\255\255\255\255\011\000\255\255\001\000\255\255\255\255\
\004\000\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\013\000\255\255\255\255\255\255\002\000\
\002\000\002\000\255\255\255\255\255\255\002\000\255\255\255\255\
\003\000\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\001\000\255\255\255\255\255\255\003\000\003\000\255\255\001\000\
\255\255\003\000\255\255\255\255\003\000\003\000\255\255\255\255\
\255\255\004\000\255\255\002\000\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\003\000\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\008\000\255\255\001\000\
\255\255\255\255\255\255\255\255\255\255\001\000\001\000\001\000\
\255\255\255\255\001\000\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\012\000\
\012\000\011\000\011\000\255\255\009\000\014\000\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\013\000\
\011\000\255\255\255\255\011\000\011\000\255\255\012\000\255\255\
\255\255\010\000\255\255\010\000\255\255\001\000\255\255\255\255\
\255\255\255\255\255\255\255\255\006\000\255\255\255\255\255\255\
\255\255\009\000\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\000\000\255\255\255\255\
\004\000\255\255\255\255\004\000\000\000\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\065\000\058\000\067\000\049\000\050\000\044\000\045\000\043\000\
\040\000\024\000\255\255\021\000\255\255\255\255\255\255\255\255\
\014\000\012\000\012\000\066\000\255\255\055\000\008\000\008\000\
\057\000\255\255\255\255\255\255\047\000\255\255\074\000\000\000\
\255\255\255\255\255\255\255\255\255\255\255\255\060\000\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\009\000\
\255\255\008\000\255\255\255\255\008\000\008\000\255\255\009\000\
\255\255\009\000\255\255\009\000\255\255\009\000\255\255\255\255\
\255\255\009\000\255\255\009\000\255\255\255\255\255\255\255\255\
\255\255\255\255\012\000\013\000\255\255\255\255\036\000\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\038\000\255\255\255\255\255\255\015\000\012\000\012\000\
\012\000\015\000\255\255\007\000\255\255\255\255\255\255\003\000\
\255\255\015\000\002\000\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\012\000\255\255\255\255";
Lexing.lex_default =
"\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\000\000\255\255\000\000\000\000\000\000\000\000\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\000\000\000\000\000\000\255\255\000\000\255\255\
\000\000\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\000\000\
\255\255\255\255\255\255\255\255\255\255\255\255\000\000\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\070\000\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\080\000\000\000\255\255\255\255\000\000\000\000\255\255\255\255\
\255\255\000\000\000\000\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\000\000\255\255\255\255\
\255\255\255\255\000\000\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\000\000\255\255\000\000\000\000\255\255\255\255\
\255\255\000\000\000\000\255\255\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\255\255\000\000\255\255\000\000\
\153\000\000\000\255\255\255\255\255\255\255\255\000\000\255\255\
\255\255\000\000\000\000\000\000\000\000\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\176\000\
\000\000\255\255\255\255\255\255\000\000\000\000\000\000\000\000\
\000\000\255\255\000\000\000\000\255\255\255\255\000\000\255\255\
\255\255\194\000\000\000\255\255\255\255\255\255\000\000\000\000\
\000\000\000\000\000\000\255\255\000\000\255\255\000\000\000\000\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\000\000\255\255\255\255\221\000\000\000\000\000\255\255\
\255\255\255\255\000\000\000\000\255\255\255\255\231\000\000\000\
\255\255\000\000\000\000\000\000\237\000\000\000\000\000\000\000\
\255\255\000\000\243\000\000\000\255\255\255\255\000\000\255\255\
\000\000\255\255\255\255\255\255\255\255\255\255\255\000\000\000\
\000\000\255\255\000\000\255\255\000\000\255\255\007\001\000\000\
\000\000\000\000\011\001\000\000\255\255\000\000\000\000\255\255\
\000\000\018\001\000\000\000\000\000\000\255\255\000\000\255\255\
\000\000\000\000\000\000\028\001\000\000\255\255\255\255\255\255\
\000\000\255\255\255\255\036\001\000\000\000\000\000\000\000\000\
\000\000\042\001\000\000\000\000\000\000\046\001\000\000\255\255\
\255\255\255\255\255\255\000\000\255\255\255\255\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\072\001\
\000\000\255\255\000\000\255\255\000\000\255\255\000\000\000\000\
\000\000\255\255\255\255\255\255\255\255\255\255\255\255\000\000\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\000\000\098\001\000\000\000\000\000\000\000\000\103\001\000\000\
\000\000\000\000\000\000\108\001\000\000\255\255\111\001\000\000\
\255\255\000\000\000\000\255\255\255\255\255\255\000\000\120\001\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\000\000\255\255\000\000\000\000\000\000\000\000\
\255\255\255\255\255\255\255\255\000\000\255\255\255\255\255\255\
\255\255\000\000\000\000\000\000\255\255\000\000\255\255\255\255\
\255\255\000\000\000\000\000\000\000\000\255\255\255\255\000\000\
\000\000\255\255\255\255\255\255\000\000\000\000\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\
\000\000\255\255\255\255\255\255\255\255\000\000\255\255\000\000\
\000\000\255\255\255\255\255\255\000\000\000\000\255\255\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\
\000\000\255\255\000\000\228\001\000\000\255\255\255\255\255\255\
\255\255\255\255\000\000\255\255\000\000\000\000\000\000\255\255\
\000\000\255\255\255\255\000\000\255\255\255\255\255\255\000\000\
\000\000\000\000\000\000\255\255\255\255\255\255\000\000";
Lexing.lex_trans =
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\039\000\038\000\000\000\039\000\039\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\039\000\008\000\035\000\036\000\024\000\012\000\010\000\034\000\
\022\000\021\000\014\000\015\000\018\000\013\000\030\000\037\000\
\032\000\031\000\031\000\031\000\031\000\031\000\031\000\031\000\
\031\000\031\000\019\000\020\000\033\000\017\000\009\000\028\000\
\029\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\
\025\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\
\025\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\
\025\000\025\000\025\000\005\000\027\000\004\000\011\000\025\000\
\023\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\007\000\016\000\006\000\003\000\150\000\
\147\000\148\000\145\000\144\000\143\000\140\000\136\000\138\000\
\135\000\131\000\130\000\129\000\123\000\115\000\083\000\081\000\
\039\000\082\000\042\000\039\000\039\000\142\000\141\000\041\000\
\137\000\146\000\139\000\056\000\046\000\124\000\047\000\048\000\
\049\000\050\000\051\000\052\000\053\000\040\000\054\000\039\000\
\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\
\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\
\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\
\128\000\128\000\055\000\057\000\058\000\059\000\128\000\134\000\
\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\
\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\
\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\
\128\000\128\000\060\000\061\000\092\000\062\000\031\000\031\000\
\031\000\031\000\031\000\031\000\031\000\031\000\031\000\031\000\
\025\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\
\025\000\025\000\071\000\091\000\066\000\067\000\068\000\069\000\
\002\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\
\025\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\
\025\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\
\025\000\025\000\025\000\091\000\027\000\070\000\255\255\025\000\
\072\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\126\000\073\000\074\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\075\000\076\000\077\000\078\000\079\000\080\000\255\255\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\090\000\027\000\085\000\084\000\026\000\088\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\
\025\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\
\025\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\
\025\000\025\000\025\000\089\000\027\000\098\000\098\000\025\000\
\114\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\108\000\116\000\110\000\110\000\110\000\
\110\000\110\000\110\000\110\000\110\000\110\000\110\000\098\000\
\098\000\092\000\109\000\094\000\094\000\094\000\094\000\094\000\
\094\000\094\000\094\000\093\000\093\000\065\000\117\000\045\000\
\065\000\065\000\045\000\045\000\086\000\118\000\045\000\119\000\
\091\000\045\000\045\000\065\000\087\000\120\000\065\000\065\000\
\121\000\122\000\125\000\149\000\065\000\151\000\045\000\133\000\
\132\000\164\000\188\000\189\000\160\000\045\000\163\000\160\000\
\160\000\190\000\065\000\211\000\107\000\095\000\107\000\212\000\
\091\000\106\000\106\000\106\000\106\000\106\000\106\000\106\000\
\106\000\106\000\106\000\160\000\255\255\205\000\213\000\208\000\
\205\000\205\000\063\000\096\000\207\000\214\000\043\000\215\000\
\216\000\217\000\235\000\253\000\253\000\043\000\253\000\253\000\
\063\000\064\000\003\001\044\000\205\000\015\001\016\001\062\001\
\210\000\026\001\044\000\210\000\210\000\081\001\025\001\064\000\
\100\000\100\000\100\000\100\000\100\000\100\000\100\000\100\000\
\100\000\100\000\233\000\083\001\255\255\068\001\068\001\210\000\
\068\001\068\001\088\001\082\001\092\000\099\000\093\000\093\000\
\093\000\093\000\093\000\093\000\093\000\093\000\093\000\093\000\
\102\000\102\000\102\000\102\000\102\000\102\000\102\000\102\000\
\102\000\102\000\232\000\091\000\210\000\084\001\240\000\210\000\
\210\000\240\000\240\000\087\001\089\001\099\000\092\000\209\000\
\094\000\094\000\094\000\094\000\094\000\094\000\094\000\094\000\
\093\000\093\000\079\001\210\000\092\001\240\000\094\001\080\001\
\095\001\096\001\118\001\091\000\225\001\091\000\097\000\097\000\
\097\000\097\000\097\000\097\000\097\000\097\000\097\000\097\000\
\222\001\223\001\240\000\239\000\008\001\240\000\240\000\097\000\
\097\000\097\000\097\000\097\000\097\000\219\001\218\001\220\001\
\206\001\205\001\204\001\209\000\173\001\091\000\171\001\210\001\
\172\001\240\000\168\001\167\001\097\000\097\000\097\000\097\000\
\097\000\097\000\097\000\097\000\097\000\097\000\221\001\097\000\
\097\000\097\000\097\000\097\000\097\000\097\000\097\000\097\000\
\097\000\097\000\097\000\105\000\043\001\105\000\181\001\181\001\
\104\000\104\000\104\000\104\000\104\000\104\000\104\000\104\000\
\104\000\104\000\100\000\100\000\100\000\100\000\100\000\100\000\
\100\000\100\000\100\000\100\000\197\001\097\000\097\000\097\000\
\097\000\097\000\097\000\103\000\238\000\103\000\209\001\101\000\
\102\000\102\000\102\000\102\000\102\000\102\000\102\000\102\000\
\102\000\102\000\102\000\102\000\102\000\102\000\102\000\102\000\
\102\000\102\000\102\000\102\000\104\000\104\000\104\000\104\000\
\104\000\104\000\104\000\104\000\104\000\104\000\200\001\101\000\
\104\000\104\000\104\000\104\000\104\000\104\000\104\000\104\000\
\104\000\104\000\106\000\106\000\106\000\106\000\106\000\106\000\
\106\000\106\000\106\000\106\000\106\000\106\000\106\000\106\000\
\106\000\106\000\106\000\106\000\106\000\106\000\110\000\110\000\
\110\000\110\000\110\000\110\000\110\000\110\000\110\000\110\000\
\166\001\164\001\169\001\165\001\181\001\181\001\224\001\113\000\
\234\000\113\000\170\001\111\000\112\000\112\000\112\000\112\000\
\112\000\112\000\112\000\112\000\112\000\112\000\112\000\112\000\
\112\000\112\000\112\000\112\000\112\000\112\000\112\000\112\000\
\112\000\112\000\112\000\112\000\112\000\112\000\112\000\112\000\
\112\000\112\000\126\000\111\000\215\001\127\000\127\000\127\000\
\127\000\127\000\127\000\127\000\127\000\127\000\127\000\208\001\
\207\001\226\001\253\001\250\001\217\001\216\001\127\000\127\000\
\127\000\127\000\127\000\127\000\127\000\127\000\127\000\127\000\
\127\000\127\000\127\000\127\000\127\000\127\000\127\000\127\000\
\127\000\127\000\127\000\127\000\127\000\127\000\127\000\127\000\
\249\001\241\000\009\001\245\001\127\000\248\001\127\000\127\000\
\127\000\127\000\127\000\127\000\127\000\127\000\127\000\127\000\
\127\000\127\000\127\000\127\000\127\000\127\000\127\000\127\000\
\127\000\127\000\127\000\127\000\127\000\127\000\127\000\127\000\
\126\000\211\001\246\001\127\000\127\000\127\000\127\000\127\000\
\127\000\127\000\127\000\127\000\127\000\247\001\254\001\000\000\
\000\000\000\000\044\001\212\001\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\000\000\027\000\
\000\000\000\000\026\000\000\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\
\026\000\026\000\026\000\026\000\026\000\026\000\128\000\128\000\
\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\
\013\001\000\001\000\000\000\000\000\000\000\000\000\000\128\000\
\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\
\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\
\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\
\128\000\001\001\100\001\012\001\000\000\128\000\000\000\128\000\
\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\
\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\
\128\000\128\000\128\000\128\000\128\000\128\000\128\000\128\000\
\128\000\160\000\161\000\000\000\160\000\160\000\244\000\244\000\
\244\000\244\000\244\000\244\000\244\000\244\000\244\000\244\000\
\000\000\247\000\000\000\213\001\247\000\247\000\005\001\004\001\
\160\000\005\001\005\001\158\000\000\000\154\000\249\000\249\000\
\249\000\249\000\249\000\249\000\249\000\249\000\214\001\159\000\
\247\000\000\000\000\000\000\000\000\000\005\001\049\001\049\001\
\049\001\049\001\049\001\049\001\049\001\049\001\049\001\049\001\
\000\000\155\000\155\000\155\000\155\000\155\000\155\000\155\000\
\155\000\155\000\155\000\155\000\155\000\155\000\155\000\155\000\
\155\000\155\000\155\000\155\000\155\000\155\000\155\000\155\000\
\155\000\155\000\155\000\000\000\157\000\099\001\000\000\155\000\
\000\000\156\000\156\000\156\000\156\000\156\000\156\000\156\000\
\156\000\156\000\156\000\156\000\156\000\156\000\156\000\156\000\
\156\000\156\000\156\000\156\000\156\000\156\000\156\000\156\000\
\156\000\156\000\156\000\174\000\174\000\174\000\174\000\174\000\
\174\000\174\000\174\000\174\000\174\000\174\000\174\000\174\000\
\174\000\174\000\174\000\174\000\174\000\174\000\174\000\174\000\
\174\000\174\000\174\000\174\000\174\000\000\000\000\000\000\000\
\000\000\174\000\000\000\174\000\174\000\174\000\174\000\174\000\
\174\000\174\000\174\000\174\000\174\000\174\000\174\000\174\000\
\174\000\174\000\174\000\174\000\174\000\174\000\174\000\174\000\
\174\000\174\000\174\000\174\000\174\000\005\001\004\001\023\001\
\005\001\005\001\023\001\023\001\105\001\000\000\014\001\002\001\
\064\001\064\001\064\001\064\001\064\001\064\001\064\001\064\001\
\000\000\000\000\198\001\000\000\005\001\169\000\023\001\000\000\
\155\000\155\000\155\000\155\000\155\000\155\000\155\000\155\000\
\155\000\155\000\169\000\199\001\000\000\000\000\000\000\000\000\
\101\001\155\000\155\000\155\000\155\000\155\000\155\000\155\000\
\155\000\155\000\155\000\155\000\155\000\155\000\155\000\155\000\
\155\000\155\000\155\000\155\000\155\000\155\000\155\000\155\000\
\155\000\155\000\155\000\000\000\157\000\000\000\000\000\155\000\
\162\000\156\000\156\000\156\000\156\000\156\000\156\000\156\000\
\156\000\156\000\156\000\156\000\156\000\156\000\156\000\156\000\
\156\000\156\000\156\000\156\000\156\000\156\000\156\000\156\000\
\156\000\156\000\156\000\170\000\000\000\000\000\156\000\156\000\
\156\000\156\000\156\000\156\000\156\000\156\000\156\000\156\000\
\169\000\000\000\000\000\000\000\000\000\104\001\000\000\156\000\
\156\000\156\000\156\000\156\000\156\000\156\000\156\000\156\000\
\156\000\156\000\156\000\156\000\156\000\156\000\156\000\156\000\
\156\000\156\000\156\000\156\000\156\000\156\000\156\000\156\000\
\156\000\000\000\157\000\000\000\000\000\156\000\000\000\156\000\
\156\000\156\000\156\000\156\000\156\000\156\000\156\000\156\000\
\156\000\156\000\156\000\156\000\156\000\156\000\156\000\156\000\
\156\000\156\000\156\000\156\000\156\000\156\000\156\000\156\000\
\156\000\165\000\165\000\165\000\165\000\165\000\165\000\165\000\
\165\000\165\000\165\000\165\000\165\000\165\000\165\000\165\000\
\165\000\165\000\165\000\165\000\165\000\165\000\165\000\165\000\
\165\000\165\000\165\000\000\000\157\000\000\000\000\000\165\000\
\000\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\165\000\165\000\165\000\165\000\165\000\
\165\000\165\000\165\000\165\000\165\000\000\000\000\000\000\000\
\000\000\000\000\106\001\000\000\165\000\165\000\165\000\165\000\
\165\000\165\000\165\000\165\000\165\000\165\000\165\000\165\000\
\165\000\165\000\165\000\165\000\165\000\165\000\165\000\165\000\
\165\000\165\000\165\000\165\000\165\000\165\000\000\000\157\000\
\000\000\000\000\165\000\000\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\166\000\166\000\166\000\167\000\000\000\
\000\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\000\000\000\000\000\000\000\000\000\000\
\000\000\000\000\166\000\166\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\166\000\000\000\157\000\000\000\000\000\
\166\000\000\000\166\000\166\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\166\000\167\000\000\000\000\000\168\000\
\168\000\168\000\168\000\168\000\168\000\168\000\168\000\168\000\
\168\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\168\000\168\000\168\000\168\000\168\000\168\000\168\000\168\000\
\168\000\168\000\168\000\168\000\168\000\168\000\168\000\168\000\
\168\000\168\000\168\000\168\000\168\000\168\000\168\000\168\000\
\168\000\168\000\000\000\000\000\000\000\000\000\168\000\000\000\
\168\000\168\000\168\000\168\000\168\000\168\000\168\000\168\000\
\168\000\168\000\168\000\168\000\168\000\168\000\168\000\168\000\
\168\000\168\000\168\000\168\000\168\000\168\000\168\000\168\000\
\168\000\168\000\167\000\000\000\000\000\168\000\168\000\168\000\
\168\000\168\000\168\000\168\000\168\000\168\000\168\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\166\000\166\000\
\166\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\
\000\000\157\000\000\000\000\000\166\000\000\000\166\000\166\000\
\166\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\
\166\000\166\000\166\000\166\000\166\000\166\000\166\000\166\000\
\173\000\173\000\173\000\173\000\173\000\173\000\173\000\173\000\
\173\000\173\000\173\000\173\000\173\000\173\000\173\000\173\000\
\173\000\173\000\173\000\173\000\173\000\173\000\173\000\173\000\
\173\000\173\000\000\000\000\000\000\000\000\000\173\000\000\000\
\173\000\173\000\173\000\173\000\173\000\173\000\173\000\173\000\
\173\000\173\000\173\000\173\000\173\000\173\000\173\000\173\000\
\173\000\173\000\173\000\173\000\173\000\173\000\173\000\173\000\
\173\000\173\000\167\000\000\000\000\000\168\000\168\000\168\000\
\168\000\168\000\168\000\168\000\168\000\168\000\168\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\171\000\171\000\
\171\000\171\000\171\000\171\000\171\000\171\000\171\000\171\000\
\171\000\171\000\171\000\171\000\171\000\171\000\171\000\171\000\
\171\000\171\000\171\000\171\000\171\000\171\000\171\000\171\000\
\000\000\000\000\000\000\000\000\171\000\000\000\171\000\171\000\
\171\000\171\000\171\000\171\000\171\000\171\000\171\000\171\000\
\171\000\171\000\171\000\171\000\171\000\171\000\171\000\171\000\
\171\000\171\000\171\000\171\000\171\000\171\000\171\000\171\000\
\170\000\000\000\000\000\171\000\171\000\171\000\171\000\171\000\
\171\000\171\000\171\000\171\000\171\000\169\000\000\000\000\000\
\000\000\000\000\000\000\000\000\172\000\172\000\172\000\172\000\
\172\000\172\000\172\000\172\000\172\000\172\000\172\000\172\000\
\172\000\172\000\172\000\172\000\172\000\172\000\172\000\172\000\
\172\000\172\000\172\000\172\000\172\000\172\000\000\000\157\000\
\000\000\000\000\172\000\000\000\172\000\172\000\172\000\172\000\
\172\000\172\000\172\000\172\000\172\000\172\000\172\000\172\000\
\172\000\172\000\172\000\172\000\172\000\172\000\172\000\172\000\
\172\000\172\000\172\000\172\000\172\000\172\000\170\000\000\000\
\000\000\172\000\172\000\172\000\172\000\172\000\172\000\172\000\
\172\000\172\000\172\000\169\000\000\000\000\000\000\000\000\000\
\000\000\000\000\172\000\172\000\172\000\172\000\172\000\172\000\
\172\000\172\000\172\000\172\000\172\000\172\000\172\000\172\000\
\172\000\172\000\172\000\172\000\172\000\172\000\172\000\172\000\
\172\000\172\000\172\000\172\000\000\000\157\000\000\000\000\000\
\172\000\000\000\172\000\172\000\172\000\172\000\172\000\172\000\
\172\000\172\000\172\000\172\000\172\000\172\000\172\000\172\000\
\172\000\172\000\172\000\172\000\172\000\172\000\172\000\172\000\
\172\000\172\000\172\000\172\000\169\000\000\000\000\000\173\000\
\173\000\173\000\173\000\173\000\173\000\173\000\173\000\173\000\
\173\000\169\000\000\000\000\000\000\000\000\000\000\000\000\000\
\173\000\173\000\173\000\173\000\173\000\173\000\173\000\173\000\
\173\000\173\000\173\000\173\000\173\000\173\000\173\000\173\000\
\173\000\173\000\173\000\173\000\173\000\173\000\173\000\173\000\
\173\000\173\000\000\000\000\000\000\000\000\000\173\000\000\000\
\173\000\173\000\173\000\173\000\173\000\173\000\173\000\173\000\
\173\000\173\000\173\000\173\000\173\000\173\000\173\000\173\000\
\173\000\173\000\173\000\173\000\173\000\173\000\173\000\173\000\
\173\000\173\000\169\000\000\000\000\000\174\000\174\000\174\000\
\174\000\174\000\174\000\174\000\174\000\174\000\174\000\169\000\
\000\000\000\000\000\000\000\000\000\000\000\000\174\000\174\000\
\174\000\174\000\174\000\174\000\174\000\174\000\174\000\174\000\
\174\000\174\000\174\000\174\000\174\000\174\000\174\000\174\000\
\174\000\174\000\174\000\174\000\174\000\174\000\174\000\174\000\
\000\000\000\000\000\000\000\000\174\000\000\000\174\000\174\000\
\174\000\174\000\174\000\174\000\174\000\174\000\174\000\174\000\
\174\000\174\000\174\000\174\000\174\000\174\000\174\000\174\000\
\174\000\174\000\174\000\174\000\174\000\174\000\174\000\174\000\
\186\000\000\000\077\001\000\000\086\001\077\001\077\001\086\001\
\086\001\086\001\000\000\091\001\086\001\086\001\091\001\091\001\
\091\001\163\001\000\000\091\001\091\001\000\000\162\001\000\000\
\180\000\077\001\000\000\086\001\000\000\000\000\000\000\000\000\
\086\001\000\000\091\001\000\000\161\001\181\000\000\000\091\001\
\000\000\000\000\085\001\000\000\000\000\000\000\000\000\085\001\
\000\000\090\001\185\000\000\000\184\000\000\000\090\001\177\000\
\177\000\177\000\177\000\177\000\177\000\177\000\177\000\177\000\
\177\000\177\000\177\000\177\000\177\000\177\000\177\000\177\000\
\177\000\177\000\177\000\177\000\177\000\177\000\177\000\177\000\
\177\000\000\000\179\000\000\000\000\000\177\000\000\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\183\000\000\000\182\000\177\000\177\000\177\000\177\000\
\177\000\177\000\177\000\177\000\177\000\177\000\000\000\000\000\
\000\000\000\000\000\000\000\000\039\001\177\000\177\000\177\000\
\177\000\177\000\177\000\177\000\177\000\177\000\177\000\177\000\
\177\000\177\000\177\000\177\000\177\000\177\000\177\000\177\000\
\177\000\177\000\177\000\177\000\177\000\177\000\177\000\000\000\
\179\000\037\001\000\000\177\000\000\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\000\000\
\000\000\000\000\000\000\191\000\000\000\000\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\000\000\000\000\000\000\000\000\000\000\000\000\038\001\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\000\000\179\000\000\000\000\000\178\000\187\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\177\000\177\000\177\000\177\000\177\000\177\000\177\000\
\177\000\177\000\177\000\177\000\177\000\177\000\177\000\177\000\
\177\000\177\000\177\000\177\000\177\000\177\000\177\000\177\000\
\177\000\177\000\177\000\000\000\179\000\000\000\000\000\177\000\
\000\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\178\000\178\000\191\000\000\000\000\000\192\000\192\000\
\192\000\192\000\192\000\192\000\192\000\192\000\192\000\192\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\192\000\
\192\000\192\000\192\000\192\000\192\000\192\000\192\000\192\000\
\192\000\192\000\192\000\192\000\192\000\192\000\192\000\192\000\
\192\000\192\000\192\000\192\000\192\000\192\000\192\000\192\000\
\192\000\000\000\040\001\000\000\000\000\192\000\000\000\192\000\
\192\000\192\000\192\000\192\000\192\000\192\000\192\000\192\000\
\192\000\192\000\192\000\192\000\192\000\192\000\192\000\192\000\
\192\000\192\000\192\000\192\000\192\000\192\000\192\000\192\000\
\192\000\191\000\000\000\000\000\192\000\192\000\192\000\192\000\
\192\000\192\000\192\000\192\000\192\000\192\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\000\000\
\179\000\000\000\000\000\178\000\000\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\178\000\
\178\000\178\000\178\000\178\000\178\000\178\000\178\000\205\000\
\204\000\000\000\205\000\205\000\000\000\117\001\114\001\000\000\
\117\001\117\001\117\001\114\001\000\000\117\001\117\001\117\001\
\114\001\000\000\117\001\117\001\000\000\000\000\205\000\092\001\
\198\000\000\000\092\001\092\001\117\001\000\000\000\000\160\001\
\157\001\117\001\160\001\160\001\000\000\203\000\117\001\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\092\001\000\000\
\000\000\000\000\202\000\000\000\201\000\000\000\160\001\195\000\
\195\000\195\000\195\000\195\000\195\000\195\000\195\000\195\000\
\195\000\195\000\195\000\195\000\195\000\195\000\195\000\195\000\
\195\000\195\000\195\000\195\000\195\000\195\000\195\000\195\000\
\195\000\000\000\197\000\000\000\000\000\195\000\000\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\200\000\093\001\199\000\195\000\195\000\195\000\195\000\
\195\000\195\000\195\000\195\000\195\000\195\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\195\000\195\000\195\000\
\195\000\195\000\195\000\195\000\195\000\195\000\195\000\195\000\
\195\000\195\000\195\000\195\000\195\000\195\000\195\000\195\000\
\195\000\195\000\195\000\195\000\195\000\195\000\195\000\000\000\
\197\000\000\000\000\000\195\000\000\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\000\000\
\000\000\000\000\000\000\218\000\000\000\000\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\000\000\197\000\000\000\000\000\196\000\206\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\195\000\195\000\195\000\195\000\195\000\195\000\195\000\
\195\000\195\000\195\000\195\000\195\000\195\000\195\000\195\000\
\195\000\195\000\195\000\195\000\195\000\195\000\195\000\195\000\
\195\000\195\000\195\000\000\000\197\000\000\000\000\000\195\000\
\000\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\196\000\196\000\218\000\000\000\000\000\219\000\219\000\
\219\000\219\000\219\000\219\000\219\000\219\000\219\000\219\000\
\000\000\000\000\000\000\000\000\000\000\000\000\000\000\219\000\
\219\000\219\000\219\000\219\000\219\000\219\000\219\000\219\000\
\219\000\219\000\219\000\219\000\219\000\219\000\219\000\219\000\
\219\000\219\000\219\000\219\000\219\000\219\000\219\000\219\000\
\219\000\000\000\000\000\000\000\000\000\219\000\000\000\219\000\
\219\000\219\000\219\000\219\000\219\000\219\000\219\000\219\000\
\219\000\219\000\219\000\219\000\219\000\219\000\219\000\219\000\
\219\000\219\000\219\000\219\000\219\000\219\000\219\000\219\000\
\219\000\218\000\000\000\000\000\219\000\219\000\219\000\219\000\
\219\000\219\000\219\000\219\000\219\000\219\000\000\000\000\000\
\000\000\000\000\000\000\000\000\000\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\226\000\
\197\000\000\000\000\000\196\000\000\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\196\000\
\196\000\196\000\196\000\196\000\196\000\196\000\196\000\191\001\
\000\000\193\001\193\001\193\001\193\001\193\001\193\001\193\001\
\193\001\193\001\193\001\000\000\000\000\000\000\192\001\000\000\
\222\000\000\000\000\000\000\000\000\000\000\000\223\000\223\000\
\223\000\223\000\223\000\223\000\223\000\223\000\223\000\223\000\
\223\000\223\000\223\000\223\000\223\000\223\000\223\000\223\000\
\223\000\223\000\223\000\223\000\223\000\223\000\223\000\223\000\
\000\000\225\000\000\000\000\000\223\000\000\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\223\000\223\000\223\000\223\000\223\000\223\000\223\000\223\000\
\223\000\223\000\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\223\000\223\000\223\000\223\000\223\000\223\000\223\000\
\223\000\223\000\223\000\223\000\223\000\223\000\223\000\223\000\
\223\000\223\000\223\000\223\000\223\000\223\000\223\000\223\000\
\223\000\223\000\223\000\000\000\225\000\000\000\000\000\223\000\
\000\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\160\001\157\001\000\000\160\001\160\001\
\000\000\000\000\228\000\000\000\000\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\000\000\
\000\000\000\000\160\001\000\000\000\000\000\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\000\000\225\000\000\000\000\000\224\000\227\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\223\000\223\000\223\000\223\000\223\000\223\000\223\000\223\000\
\223\000\223\000\223\000\223\000\223\000\223\000\223\000\223\000\
\223\000\223\000\223\000\223\000\223\000\223\000\223\000\223\000\
\223\000\223\000\000\000\225\000\000\000\000\000\223\000\000\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\224\000\224\000\228\000\000\000\000\000\229\000\229\000\229\000\
\229\000\229\000\229\000\229\000\229\000\229\000\229\000\000\000\
\000\000\000\000\000\000\000\000\000\000\000\000\229\000\229\000\
\229\000\229\000\229\000\229\000\229\000\229\000\229\000\229\000\
\229\000\229\000\229\000\229\000\229\000\229\000\229\000\229\000\
\229\000\229\000\229\000\229\000\229\000\229\000\229\000\229\000\
\000\000\000\000\000\000\000\000\229\000\000\000\229\000\229\000\
\229\000\229\000\229\000\229\000\229\000\229\000\229\000\229\000\
\229\000\229\000\229\000\229\000\229\000\229\000\229\000\229\000\
\229\000\229\000\229\000\229\000\229\000\229\000\229\000\229\000\
\228\000\000\000\000\000\229\000\229\000\229\000\229\000\229\000\
\229\000\229\000\229\000\229\000\229\000\000\000\000\000\000\000\
\000\000\000\000\000\000\000\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\000\000\225\000\
\000\000\000\000\224\000\000\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\224\000\224\000\
\224\000\224\000\224\000\224\000\224\000\224\000\247\000\246\000\
\000\000\247\000\247\000\249\000\249\000\249\000\249\000\249\000\
\249\000\249\000\249\000\252\000\252\000\252\000\252\000\252\000\
\252\000\252\000\252\000\252\000\252\000\247\000\000\000\000\000\
\000\000\000\000\000\000\000\000\252\000\252\000\252\000\252\000\
\252\000\252\000\000\000\000\000\000\000\245\000\244\000\244\000\
\244\000\244\000\244\000\244\000\244\000\244\000\244\000\000\000\
\000\000\000\000\000\000\023\001\022\001\250\000\023\001\023\001\
\000\000\000\000\000\000\000\000\252\000\252\000\252\000\252\000\
\252\000\252\000\000\000\000\000\000\000\116\001\114\001\000\000\
\115\001\115\001\023\001\251\000\252\000\252\000\252\000\252\000\
\252\000\252\000\252\000\252\000\252\000\252\000\019\001\160\001\
\157\001\021\001\160\001\160\001\116\001\252\000\252\000\252\000\
\252\000\252\000\252\000\000\000\000\000\000\000\112\001\000\000\
\020\001\000\000\190\001\000\000\190\001\000\000\160\001\189\001\
\189\001\189\001\189\001\189\001\189\001\189\001\189\001\189\001\
\189\001\000\000\000\000\000\000\000\000\252\000\252\000\252\000\
\252\000\252\000\252\000\029\001\029\001\029\001\029\001\029\001\
\029\001\029\001\029\001\029\001\029\001\029\001\029\001\029\001\
\029\001\029\001\029\001\029\001\029\001\029\001\029\001\029\001\
\029\001\029\001\029\001\029\001\029\001\000\000\031\001\000\000\
\000\000\029\001\000\000\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\244\001\240\001\000\000\
\244\001\244\001\000\000\000\000\000\000\029\001\029\001\029\001\
\029\001\029\001\029\001\029\001\029\001\029\001\029\001\000\000\
\000\000\000\000\000\000\000\000\244\001\000\000\029\001\029\001\
\029\001\029\001\029\001\029\001\029\001\029\001\029\001\029\001\
\029\001\029\001\029\001\029\001\029\001\029\001\029\001\029\001\
\029\001\029\001\029\001\029\001\029\001\029\001\029\001\029\001\
\000\000\031\001\000\000\000\000\029\001\248\000\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\188\001\000\000\188\001\000\000\000\000\187\001\187\001\187\001\
\187\001\187\001\187\001\187\001\187\001\187\001\187\001\185\001\
\185\001\185\001\185\001\185\001\185\001\185\001\185\001\185\001\
\185\001\000\000\024\001\000\000\000\000\000\000\000\000\033\001\
\000\000\000\000\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\113\001\000\000\000\000\000\000\
\000\000\000\000\032\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\000\000\031\001\000\000\
\000\000\030\001\000\000\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\029\001\029\001\029\001\
\029\001\029\001\029\001\029\001\029\001\029\001\029\001\029\001\
\029\001\029\001\029\001\029\001\029\001\029\001\029\001\029\001\
\029\001\029\001\029\001\029\001\029\001\029\001\029\001\000\000\
\031\001\000\000\000\000\029\001\000\000\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\030\001\030\001\033\001\
\000\000\000\000\034\001\034\001\034\001\034\001\034\001\034\001\
\034\001\034\001\034\001\034\001\000\000\000\000\000\000\000\000\
\000\000\000\000\000\000\034\001\034\001\034\001\034\001\034\001\
\034\001\034\001\034\001\034\001\034\001\034\001\034\001\034\001\
\034\001\034\001\034\001\034\001\034\001\034\001\034\001\034\001\
\034\001\034\001\034\001\034\001\034\001\000\000\000\000\000\000\
\000\000\034\001\000\000\034\001\034\001\034\001\034\001\034\001\
\034\001\034\001\034\001\034\001\034\001\034\001\034\001\034\001\
\034\001\034\001\034\001\034\001\034\001\034\001\034\001\034\001\
\034\001\034\001\034\001\034\001\034\001\033\001\000\000\000\000\
\034\001\034\001\034\001\034\001\034\001\034\001\034\001\034\001\
\034\001\034\001\000\000\000\000\000\000\000\000\000\000\000\000\
\000\000\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\000\000\031\001\000\000\000\000\030\001\
\000\000\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\030\001\030\001\030\001\030\001\030\001\
\030\001\030\001\030\001\060\001\183\001\183\001\183\001\183\001\
\183\001\183\001\183\001\183\001\183\001\183\001\185\001\185\001\
\185\001\185\001\185\001\185\001\185\001\185\001\185\001\185\001\