-
Notifications
You must be signed in to change notification settings - Fork 10
/
eval_y.c
8638 lines (7700 loc) · 299 KB
/
eval_y.c
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
/* A Bison parser, made by GNU Bison 3.8. */
/* Bison implementation for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,
Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* C LALR(1) parser skeleton written by Richard Stallman, by
simplifying the original so-called "semantic" parser. */
/* DO NOT RELY ON FEATURES THAT ARE NOT DOCUMENTED in the manual,
especially those whose name start with YY_ or yy_. They are
private implementation details that can be changed or removed. */
/* All symbols defined below should begin with yy or YY, to avoid
infringing on user name space. This should be done even for local
variables, as they might otherwise be expanded by user macros.
There are some unavoidable exceptions within include files to
define necessary library symbols; they are noted "INFRINGES ON
USER NAME SPACE" below. */
/* Identify Bison output, and Bison version. */
#define YYBISON 30800
/* Bison version string. */
#define YYBISON_VERSION "3.8"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
/* Pure parsers. */
#define YYPURE 2
/* Push parsers. */
#define YYPUSH 0
/* Pull parsers. */
#define YYPULL 1
/* Substitute the type names. */
#define YYSTYPE FITS_PARSER_YYSTYPE
/* Substitute the variable and function names. */
#define yyparse fits_parser_yyparse
#define yylex fits_parser_yylex
#define yyerror fits_parser_yyerror
#define yydebug fits_parser_yydebug
#define yynerrs fits_parser_yynerrs
/* First part of user prologue. */
#line 16 "eval.y"
/* This file is one of 3 files containing code which parses an */
/* arithmetic expression and evaluates it in the context of an input */
/* FITS file table extension. The CFITSIO lexical parser is divided */
/* into the following 3 parts/files: the CFITSIO "front-end", */
/* eval_f.c, contains the interface between the user/CFITSIO and the */
/* real core of the parser; the FLEX interpreter, eval_l.c, takes the */
/* input string and parses it into tokens and identifies the FITS */
/* information required to evaluate the expression (ie, keywords and */
/* columns); and, the BISON grammar and evaluation routines, eval_y.c, */
/* receives the FLEX output and determines and performs the actual */
/* operations. The files eval_l.c and eval_y.c are produced from */
/* running flex and bison on the files eval.l and eval.y, respectively. */
/* (flex and bison are available from any GNU archive: see www.gnu.org) */
/* */
/* The grammar rules, rather than evaluating the expression in situ, */
/* builds a tree, or Nodal, structure mapping out the order of */
/* operations and expression dependencies. This "compilation" process */
/* allows for much faster processing of multiple rows. This technique */
/* was developed by Uwe Lammers of the XMM Science Analysis System, */
/* although the CFITSIO implementation is entirely code original. */
/* */
/* */
/* Modification History: */
/* */
/* Kent Blackburn c1992 Original parser code developed for the */
/* FTOOLS software package, in particular, */
/* the fselect task. */
/* Kent Blackburn c1995 BIT column support added */
/* Peter D Wilson Feb 1998 Vector column support added */
/* Peter D Wilson May 1998 Ported to CFITSIO library. User */
/* interface routines written, in essence */
/* making fselect, fcalc, and maketime */
/* capabilities available to all tools */
/* via single function calls. */
/* Peter D Wilson Jun 1998 Major rewrite of parser core, so as to */
/* create a run-time evaluation tree, */
/* inspired by the work of Uwe Lammers, */
/* resulting in a speed increase of */
/* 10-100 times. */
/* Peter D Wilson Jul 1998 gtifilter(a,b,c,d) function added */
/* Peter D Wilson Aug 1998 regfilter(a,b,c,d) function added */
/* Peter D Wilson Jul 1999 Make parser fitsfile-independent, */
/* allowing a purely vector-based usage */
/* Craig B Markwardt Jun 2004 Add MEDIAN() function */
/* Craig B Markwardt Jun 2004 Add SUM(), and MIN/MAX() for bit arrays */
/* Craig B Markwardt Jun 2004 Allow subscripting of nX bit arrays */
/* Craig B Markwardt Jun 2004 Implement statistical functions */
/* NVALID(), AVERAGE(), and STDDEV() */
/* for integer and floating point vectors */
/* Craig B Markwardt Jun 2004 Use NULL values for range errors instead*/
/* of throwing a parse error */
/* Craig B Markwardt Oct 2004 Add ACCUM() and SEQDIFF() functions */
/* Craig B Markwardt Feb 2005 Add ANGSEP() function */
/* Craig B Markwardt Aug 2005 CIRCLE, BOX, ELLIPSE, NEAR and REGFILTER*/
/* functions now accept vector arguments */
/* Craig B Markwardt Sum 2006 Add RANDOMN() and RANDOMP() functions */
/* Craig B Markwardt Mar 2007 Allow arguments to RANDOM and RANDOMN to*/
/* determine the output dimensions */
/* Craig B Markwardt Aug 2009 Add substring STRMID() and string search*/
/* STRSTR() functions; more overflow checks*/
/* Craig B Markwardt Dec 2019 Add bit/hex/oct literal strings and */
/* bitwise operatiosn between integers */
/* Craig B Markwardt Mar 2021 Add SETNULL() function */
/* */
/************************************************************************/
#define APPROX 1.0e-7
#include "eval_defs.h"
#include "region.h"
#include <time.h>
#include <stdlib.h>
#ifndef alloca
#define alloca malloc
#endif
/* Random number generators for various distributions */
#include "simplerng.h"
/* Shrink the initial stack depth to keep local data <32K (mac limit) */
/* yacc will allocate more space if needed, though. */
#define YYINITDEPTH 100
/***************************************************************/
/* Replace Bison's BACKUP macro with one that fixes a bug -- */
/* must update state after popping the stack -- and allows */
/* popping multiple terms at one time. */
/***************************************************************/
#define YYNEWBACKUP(token, value) \
do \
if (yychar == YYEMPTY ) \
{ yychar = (token); \
memcpy( &yylval, &(value), sizeof(value) ); \
yychar1 = YYTRANSLATE (yychar); \
while (yylen--) YYPOPSTACK; \
yystate = *yyssp; \
goto yybackup; \
} \
else \
{ yyerror ("syntax error: cannot back up"); YYERROR; } \
while (0)
/***************************************************************/
/* Useful macros for accessing/testing Nodes */
/***************************************************************/
#define TEST(a) if( (a)<0 ) YYERROR
#define SIZE(a) lParse->Nodes[ a ].value.nelem
#define TYPE(a) lParse->Nodes[ a ].type
#define OPER(a) lParse->Nodes[ a ].operation
#define PROMOTE(a,b) if( TYPE(a) > TYPE(b) ) \
b = New_Unary( lParse, TYPE(a), 0, b ); \
else if( TYPE(a) < TYPE(b) ) \
a = New_Unary( lParse, TYPE(b), 0, a );
/***** Internal functions *****/
#ifdef __cplusplus
extern "C" {
#endif
static int Alloc_Node ( ParseData * );
static void Free_Last_Node( ParseData * );
static void Evaluate_Node ( ParseData *, int thisNode );
static int New_Const ( ParseData *, int returnType, void *value, long len );
static int New_Column( ParseData *, int ColNum );
static int New_Offset( ParseData *, int ColNum, int offset );
static int New_Unary ( ParseData *, int returnType, int Op, int Node1 );
static int New_BinOp ( ParseData *, int returnType, int Node1, int Op, int Node2 );
static int New_Func ( ParseData *, int returnType, funcOp Op, int nNodes,
int Node1, int Node2, int Node3, int Node4,
int Node5, int Node6, int Node7 );
static int New_FuncSize( ParseData *, int returnType, funcOp Op, int nNodes,
int Node1, int Node2, int Node3, int Node4,
int Node5, int Node6, int Node7, int Size);
static int New_Deref ( ParseData *, int Var, int nDim,
int Dim1, int Dim2, int Dim3, int Dim4, int Dim5 );
static int New_GTI ( ParseData *, funcOp Op, char *fname, int Node1, int Node2, char *start, char *stop );
static int New_REG ( ParseData *, char *fname, int NodeX, int NodeY, char *colNames );
static int New_Vector( ParseData *, int subNode );
static int Close_Vec ( ParseData *, int vecNode );
static int New_Array( ParseData *, int valueNode, int dimNode );
static int Locate_Col( ParseData *, Node *this );
static int Test_Dims ( ParseData *, int Node1, int Node2 );
static void Copy_Dims ( ParseData *, int Node1, int Node2 );
static void Allocate_Ptrs( ParseData *, Node *this );
static void Do_Unary ( ParseData *, Node *this );
static void Do_Offset ( ParseData *, Node *this );
static void Do_BinOp_bit ( ParseData *, Node *this );
static void Do_BinOp_str ( ParseData *, Node *this );
static void Do_BinOp_log ( ParseData *, Node *this );
static void Do_BinOp_lng ( ParseData *, Node *this );
static void Do_BinOp_dbl ( ParseData *, Node *this );
static void Do_Func ( ParseData *, Node *this );
static void Do_Deref ( ParseData *, Node *this );
static void Do_GTI ( ParseData *, Node *this );
static void Do_GTI_Over ( ParseData *, Node *this );
static void Do_REG ( ParseData *, Node *this );
static void Do_Vector ( ParseData *, Node *this );
static void Do_Array ( ParseData *, Node *this );
static long Search_GTI ( double evtTime, long nGTI, double *start,
double *stop, int ordered, long *nextGTI );
static double GTI_Over(double evtStart, double evtStop,
long nGTI, double *start, double *stop,
long *gtiout);
static char saobox (double xcen, double ycen, double xwid, double ywid,
double rot, double xcol, double ycol);
static char ellipse(double xcen, double ycen, double xrad, double yrad,
double rot, double xcol, double ycol);
static char circle (double xcen, double ycen, double rad,
double xcol, double ycol);
static char bnear (double x, double y, double tolerance);
static char bitcmp (char *bitstrm1, char *bitstrm2);
static char bitlgte(char *bits1, int oper, char *bits2);
static void bitand(char *result, char *bitstrm1, char *bitstrm2);
static void bitor (char *result, char *bitstrm1, char *bitstrm2);
static void bitnot(char *result, char *bits);
static int cstrmid(ParseData *lParse, char *dest_str, int dest_len,
char *src_str, int src_len, int pos);
static void yyerror(yyscan_t scanner, ParseData *lParse, char *s);
#ifdef __cplusplus
}
#endif
#line 273 "eval_y.c"
# ifndef YY_CAST
# ifdef __cplusplus
# define YY_CAST(Type, Val) static_cast<Type> (Val)
# define YY_REINTERPRET_CAST(Type, Val) reinterpret_cast<Type> (Val)
# else
# define YY_CAST(Type, Val) ((Type) (Val))
# define YY_REINTERPRET_CAST(Type, Val) ((Type) (Val))
# endif
# endif
# ifndef YY_NULLPTR
# if defined __cplusplus
# if 201103L <= __cplusplus
# define YY_NULLPTR nullptr
# else
# define YY_NULLPTR 0
# endif
# else
# define YY_NULLPTR ((void*)0)
# endif
# endif
#include "eval_tab.h"
/* Symbol kind. */
enum yysymbol_kind_t
{
YYSYMBOL_YYEMPTY = -2,
YYSYMBOL_YYEOF = 0, /* "end of file" */
YYSYMBOL_YYerror = 1, /* error */
YYSYMBOL_YYUNDEF = 2, /* "invalid token" */
YYSYMBOL_BOOLEAN = 3, /* BOOLEAN */
YYSYMBOL_LONG = 4, /* LONG */
YYSYMBOL_DOUBLE = 5, /* DOUBLE */
YYSYMBOL_STRING = 6, /* STRING */
YYSYMBOL_BITSTR = 7, /* BITSTR */
YYSYMBOL_FUNCTION = 8, /* FUNCTION */
YYSYMBOL_BFUNCTION = 9, /* BFUNCTION */
YYSYMBOL_IFUNCTION = 10, /* IFUNCTION */
YYSYMBOL_GTIFILTER = 11, /* GTIFILTER */
YYSYMBOL_GTIOVERLAP = 12, /* GTIOVERLAP */
YYSYMBOL_GTIFIND = 13, /* GTIFIND */
YYSYMBOL_REGFILTER = 14, /* REGFILTER */
YYSYMBOL_COLUMN = 15, /* COLUMN */
YYSYMBOL_BCOLUMN = 16, /* BCOLUMN */
YYSYMBOL_SCOLUMN = 17, /* SCOLUMN */
YYSYMBOL_BITCOL = 18, /* BITCOL */
YYSYMBOL_ROWREF = 19, /* ROWREF */
YYSYMBOL_NULLREF = 20, /* NULLREF */
YYSYMBOL_SNULLREF = 21, /* SNULLREF */
YYSYMBOL_22_ = 22, /* ',' */
YYSYMBOL_23_ = 23, /* '=' */
YYSYMBOL_24_ = 24, /* ':' */
YYSYMBOL_25_ = 25, /* '{' */
YYSYMBOL_26_ = 26, /* '}' */
YYSYMBOL_27_ = 27, /* '?' */
YYSYMBOL_OR = 28, /* OR */
YYSYMBOL_AND = 29, /* AND */
YYSYMBOL_EQ = 30, /* EQ */
YYSYMBOL_NE = 31, /* NE */
YYSYMBOL_32_ = 32, /* '~' */
YYSYMBOL_GT = 33, /* GT */
YYSYMBOL_LT = 34, /* LT */
YYSYMBOL_LTE = 35, /* LTE */
YYSYMBOL_GTE = 36, /* GTE */
YYSYMBOL_37_ = 37, /* '+' */
YYSYMBOL_38_ = 38, /* '-' */
YYSYMBOL_39_ = 39, /* '%' */
YYSYMBOL_40_ = 40, /* '*' */
YYSYMBOL_41_ = 41, /* '/' */
YYSYMBOL_42_ = 42, /* '|' */
YYSYMBOL_43_ = 43, /* '&' */
YYSYMBOL_XOR = 44, /* XOR */
YYSYMBOL_POWER = 45, /* POWER */
YYSYMBOL_NOT = 46, /* NOT */
YYSYMBOL_INTCAST = 47, /* INTCAST */
YYSYMBOL_FLTCAST = 48, /* FLTCAST */
YYSYMBOL_UMINUS = 49, /* UMINUS */
YYSYMBOL_50_ = 50, /* '[' */
YYSYMBOL_ACCUM = 51, /* ACCUM */
YYSYMBOL_DIFF = 52, /* DIFF */
YYSYMBOL_53_n_ = 53, /* '\n' */
YYSYMBOL_54_ = 54, /* ']' */
YYSYMBOL_55_ = 55, /* '(' */
YYSYMBOL_56_ = 56, /* ')' */
YYSYMBOL_YYACCEPT = 57, /* $accept */
YYSYMBOL_lines = 58, /* lines */
YYSYMBOL_line = 59, /* line */
YYSYMBOL_bvector = 60, /* bvector */
YYSYMBOL_vector = 61, /* vector */
YYSYMBOL_expr = 62, /* expr */
YYSYMBOL_bexpr = 63, /* bexpr */
YYSYMBOL_bits = 64, /* bits */
YYSYMBOL_sexpr = 65 /* sexpr */
};
typedef enum yysymbol_kind_t yysymbol_kind_t;
#ifdef short
# undef short
#endif
/* On compilers that do not define __PTRDIFF_MAX__ etc., make sure
<limits.h> and (if available) <stdint.h> are included
so that the code can choose integer types of a good width. */
#ifndef __PTRDIFF_MAX__
# include <limits.h> /* INFRINGES ON USER NAME SPACE */
# if defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
# include <stdint.h> /* INFRINGES ON USER NAME SPACE */
# define YY_STDINT_H
# endif
#endif
/* Narrow types that promote to a signed type and that can represent a
signed or unsigned integer of at least N bits. In tables they can
save space and decrease cache pressure. Promoting to a signed type
helps avoid bugs in integer arithmetic. */
#ifdef __INT_LEAST8_MAX__
typedef __INT_LEAST8_TYPE__ yytype_int8;
#elif defined YY_STDINT_H
typedef int_least8_t yytype_int8;
#else
typedef signed char yytype_int8;
#endif
#ifdef __INT_LEAST16_MAX__
typedef __INT_LEAST16_TYPE__ yytype_int16;
#elif defined YY_STDINT_H
typedef int_least16_t yytype_int16;
#else
typedef short yytype_int16;
#endif
/* Work around bug in HP-UX 11.23, which defines these macros
incorrectly for preprocessor constants. This workaround can likely
be removed in 2023, as HPE has promised support for HP-UX 11.23
(aka HP-UX 11i v2) only through the end of 2022; see Table 2 of
<https://h20195.www2.hpe.com/V2/getpdf.aspx/4AA4-7673ENW.pdf>. */
#ifdef __hpux
# undef UINT_LEAST8_MAX
# undef UINT_LEAST16_MAX
# define UINT_LEAST8_MAX 255
# define UINT_LEAST16_MAX 65535
#endif
#if defined __UINT_LEAST8_MAX__ && __UINT_LEAST8_MAX__ <= __INT_MAX__
typedef __UINT_LEAST8_TYPE__ yytype_uint8;
#elif (!defined __UINT_LEAST8_MAX__ && defined YY_STDINT_H \
&& UINT_LEAST8_MAX <= INT_MAX)
typedef uint_least8_t yytype_uint8;
#elif !defined __UINT_LEAST8_MAX__ && UCHAR_MAX <= INT_MAX
typedef unsigned char yytype_uint8;
#else
typedef short yytype_uint8;
#endif
#if defined __UINT_LEAST16_MAX__ && __UINT_LEAST16_MAX__ <= __INT_MAX__
typedef __UINT_LEAST16_TYPE__ yytype_uint16;
#elif (!defined __UINT_LEAST16_MAX__ && defined YY_STDINT_H \
&& UINT_LEAST16_MAX <= INT_MAX)
typedef uint_least16_t yytype_uint16;
#elif !defined __UINT_LEAST16_MAX__ && USHRT_MAX <= INT_MAX
typedef unsigned short yytype_uint16;
#else
typedef int yytype_uint16;
#endif
#ifndef YYPTRDIFF_T
# if defined __PTRDIFF_TYPE__ && defined __PTRDIFF_MAX__
# define YYPTRDIFF_T __PTRDIFF_TYPE__
# define YYPTRDIFF_MAXIMUM __PTRDIFF_MAX__
# elif defined PTRDIFF_MAX
# ifndef ptrdiff_t
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# endif
# define YYPTRDIFF_T ptrdiff_t
# define YYPTRDIFF_MAXIMUM PTRDIFF_MAX
# else
# define YYPTRDIFF_T long
# define YYPTRDIFF_MAXIMUM LONG_MAX
# endif
#endif
#ifndef YYSIZE_T
# ifdef __SIZE_TYPE__
# define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
# define YYSIZE_T size_t
# elif defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# define YYSIZE_T size_t
# else
# define YYSIZE_T unsigned
# endif
#endif
#define YYSIZE_MAXIMUM \
YY_CAST (YYPTRDIFF_T, \
(YYPTRDIFF_MAXIMUM < YY_CAST (YYSIZE_T, -1) \
? YYPTRDIFF_MAXIMUM \
: YY_CAST (YYSIZE_T, -1)))
#define YYSIZEOF(X) YY_CAST (YYPTRDIFF_T, sizeof (X))
/* Stored state numbers (used for stacks). */
typedef yytype_int16 yy_state_t;
/* State numbers in computations. */
typedef int yy_state_fast_t;
#ifndef YY_
# if defined YYENABLE_NLS && YYENABLE_NLS
# if ENABLE_NLS
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
# define YY_(Msgid) dgettext ("bison-runtime", Msgid)
# endif
# endif
# ifndef YY_
# define YY_(Msgid) Msgid
# endif
#endif
#ifndef YY_ATTRIBUTE_PURE
# if defined __GNUC__ && 2 < __GNUC__ + (96 <= __GNUC_MINOR__)
# define YY_ATTRIBUTE_PURE __attribute__ ((__pure__))
# else
# define YY_ATTRIBUTE_PURE
# endif
#endif
#ifndef YY_ATTRIBUTE_UNUSED
# if defined __GNUC__ && 2 < __GNUC__ + (7 <= __GNUC_MINOR__)
# define YY_ATTRIBUTE_UNUSED __attribute__ ((__unused__))
# else
# define YY_ATTRIBUTE_UNUSED
# endif
#endif
/* Suppress unused-variable warnings by "using" E. */
#if ! defined lint || defined __GNUC__
# define YY_USE(E) ((void) (E))
#else
# define YY_USE(E) /* empty */
#endif
/* Suppress an incorrect diagnostic about yylval being uninitialized. */
#if defined __GNUC__ && ! defined __ICC && 406 <= __GNUC__ * 100 + __GNUC_MINOR__
# if __GNUC__ * 100 + __GNUC_MINOR__ < 407
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")
# else
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"") \
_Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
# endif
# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
_Pragma ("GCC diagnostic pop")
#else
# define YY_INITIAL_VALUE(Value) Value
#endif
#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_END
#endif
#ifndef YY_INITIAL_VALUE
# define YY_INITIAL_VALUE(Value) /* Nothing. */
#endif
#if defined __cplusplus && defined __GNUC__ && ! defined __ICC && 6 <= __GNUC__
# define YY_IGNORE_USELESS_CAST_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuseless-cast\"")
# define YY_IGNORE_USELESS_CAST_END \
_Pragma ("GCC diagnostic pop")
#endif
#ifndef YY_IGNORE_USELESS_CAST_BEGIN
# define YY_IGNORE_USELESS_CAST_BEGIN
# define YY_IGNORE_USELESS_CAST_END
#endif
#define YY_ASSERT(E) ((void) (0 && (E)))
#if !defined yyoverflow
/* The parser invokes alloca or malloc; define the necessary symbols. */
# ifdef YYSTACK_USE_ALLOCA
# if YYSTACK_USE_ALLOCA
# ifdef __GNUC__
# define YYSTACK_ALLOC __builtin_alloca
# elif defined __BUILTIN_VA_ARG_INCR
# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
# elif defined _AIX
# define YYSTACK_ALLOC __alloca
# elif defined _MSC_VER
# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
# define alloca _alloca
# else
# define YYSTACK_ALLOC alloca
# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
/* Use EXIT_SUCCESS as a witness for stdlib.h. */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# endif
# endif
# endif
# ifdef YYSTACK_ALLOC
/* Pacify GCC's 'empty if-body' warning. */
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
# ifndef YYSTACK_ALLOC_MAXIMUM
/* The OS might guarantee only one guard page at the bottom of the stack,
and a page size can be as small as 4096 bytes. So we cannot safely
invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
to allow for a few compiler-allocated temporary stack slots. */
# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
# endif
# else
# define YYSTACK_ALLOC YYMALLOC
# define YYSTACK_FREE YYFREE
# ifndef YYSTACK_ALLOC_MAXIMUM
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
# endif
# if (defined __cplusplus && ! defined EXIT_SUCCESS \
&& ! ((defined YYMALLOC || defined malloc) \
&& (defined YYFREE || defined free)))
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# ifndef YYMALLOC
# define YYMALLOC malloc
# if ! defined malloc && ! defined EXIT_SUCCESS
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# ifndef YYFREE
# define YYFREE free
# if ! defined free && ! defined EXIT_SUCCESS
void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# endif
#endif /* !defined yyoverflow */
#if (! defined yyoverflow \
&& (! defined __cplusplus \
|| (defined FITS_PARSER_YYSTYPE_IS_TRIVIAL && FITS_PARSER_YYSTYPE_IS_TRIVIAL)))
/* A type that is properly aligned for any stack member. */
union yyalloc
{
yy_state_t yyss_alloc;
YYSTYPE yyvs_alloc;
};
/* The size of the maximum gap between one aligned stack and the next. */
# define YYSTACK_GAP_MAXIMUM (YYSIZEOF (union yyalloc) - 1)
/* The size of an array large to enough to hold all stacks, each with
N elements. */
# define YYSTACK_BYTES(N) \
((N) * (YYSIZEOF (yy_state_t) + YYSIZEOF (YYSTYPE)) \
+ YYSTACK_GAP_MAXIMUM)
# define YYCOPY_NEEDED 1
/* Relocate STACK from its old location to the new one. The
local variables YYSIZE and YYSTACKSIZE give the old and new number of
elements in the stack, and YYPTR gives the new location of the
stack. Advance YYPTR to a properly aligned location for the next
stack. */
# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
do \
{ \
YYPTRDIFF_T yynewbytes; \
YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
Stack = &yyptr->Stack_alloc; \
yynewbytes = yystacksize * YYSIZEOF (*Stack) + YYSTACK_GAP_MAXIMUM; \
yyptr += yynewbytes / YYSIZEOF (*yyptr); \
} \
while (0)
#endif
#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
/* Copy COUNT objects from SRC to DST. The source and destination do
not overlap. */
# ifndef YYCOPY
# if defined __GNUC__ && 1 < __GNUC__
# define YYCOPY(Dst, Src, Count) \
__builtin_memcpy (Dst, Src, YY_CAST (YYSIZE_T, (Count)) * sizeof (*(Src)))
# else
# define YYCOPY(Dst, Src, Count) \
do \
{ \
YYPTRDIFF_T yyi; \
for (yyi = 0; yyi < (Count); yyi++) \
(Dst)[yyi] = (Src)[yyi]; \
} \
while (0)
# endif
# endif
#endif /* !YYCOPY_NEEDED */
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 2
/* YYLAST -- Last index in YYTABLE. */
#define YYLAST 1776
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 57
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS 9
/* YYNRULES -- Number of rules. */
#define YYNRULES 135
/* YYNSTATES -- Number of states. */
#define YYNSTATES 322
/* YYMAXUTOK -- Last valid token kind. */
#define YYMAXUTOK 292
/* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM
as returned by yylex, with out-of-bounds checking. */
#define YYTRANSLATE(YYX) \
(0 <= (YYX) && (YYX) <= YYMAXUTOK \
? YY_CAST (yysymbol_kind_t, yytranslate[YYX]) \
: YYSYMBOL_YYUNDEF)
/* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
as returned by yylex. */
static const yytype_int8 yytranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
53, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 39, 43, 2,
55, 56, 40, 37, 22, 38, 2, 41, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 24, 2,
2, 23, 2, 27, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 50, 2, 54, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 25, 42, 26, 32, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 28, 29, 30,
31, 33, 34, 35, 36, 44, 45, 46, 47, 48,
49, 51, 52
};
#if FITS_PARSER_YYDEBUG
/* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
static const yytype_int16 yyrline[] =
{
0, 266, 266, 267, 270, 271, 277, 283, 289, 295,
298, 300, 313, 315, 328, 339, 353, 357, 361, 365,
367, 376, 379, 382, 391, 393, 395, 397, 399, 401,
404, 408, 410, 412, 414, 423, 425, 427, 430, 433,
436, 439, 442, 451, 460, 469, 472, 474, 476, 478,
482, 486, 505, 524, 543, 554, 568, 617, 629, 660,
774, 782, 885, 911, 914, 918, 920, 922, 924, 926,
928, 930, 932, 934, 938, 940, 942, 951, 954, 957,
960, 963, 966, 969, 972, 975, 978, 981, 984, 987,
990, 993, 996, 999, 1002, 1005, 1008, 1010, 1012, 1014,
1017, 1024, 1041, 1054, 1067, 1078, 1094, 1118, 1146, 1183,
1187, 1191, 1194, 1200, 1204, 1208, 1211, 1216, 1220, 1223,
1227, 1229, 1231, 1233, 1235, 1237, 1239, 1243, 1246, 1248,
1257, 1259, 1261, 1270, 1289, 1308
};
#endif
/** Accessing symbol of state STATE. */
#define YY_ACCESSING_SYMBOL(State) YY_CAST (yysymbol_kind_t, yystos[State])
#if FITS_PARSER_YYDEBUG || 0
/* The user-facing name of the symbol whose (internal) number is
YYSYMBOL. No bounds checking. */
static const char *yysymbol_name (yysymbol_kind_t yysymbol) YY_ATTRIBUTE_UNUSED;
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
static const char *const yytname[] =
{
"\"end of file\"", "error", "\"invalid token\"", "BOOLEAN", "LONG",
"DOUBLE", "STRING", "BITSTR", "FUNCTION", "BFUNCTION", "IFUNCTION",
"GTIFILTER", "GTIOVERLAP", "GTIFIND", "REGFILTER", "COLUMN", "BCOLUMN",
"SCOLUMN", "BITCOL", "ROWREF", "NULLREF", "SNULLREF", "','", "'='",
"':'", "'{'", "'}'", "'?'", "OR", "AND", "EQ", "NE", "'~'", "GT", "LT",
"LTE", "GTE", "'+'", "'-'", "'%'", "'*'", "'/'", "'|'", "'&'", "XOR",
"POWER", "NOT", "INTCAST", "FLTCAST", "UMINUS", "'['", "ACCUM", "DIFF",
"'\\n'", "']'", "'('", "')'", "$accept", "lines", "line", "bvector",
"vector", "expr", "bexpr", "bits", "sexpr", YY_NULLPTR
};
static const char *
yysymbol_name (yysymbol_kind_t yysymbol)
{
return yytname[yysymbol];
}
#endif
#define YYPACT_NINF (-41)
#define yypact_value_is_default(Yyn) \
((Yyn) == YYPACT_NINF)
#define YYTABLE_NINF (-1)
#define yytable_value_is_error(Yyn) \
0
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
static const yytype_int16 yypact[] =
{
-41, 316, -41, -40, -41, -41, -41, -41, -41, 369,
423, 423, -5, 15, -4, 27, 36, 38, 40, 41,
-41, -41, -41, 423, 423, 423, 423, 423, 423, -41,
423, -41, -7, 10, 1226, 81, 1646, 83, -41, -41,
450, 116, 309, 12, 479, 185, 152, 222, 1593, 1673,
1675, -19, -41, 13, -18, -41, 6, 423, 423, 423,
423, 1593, 1673, 1684, 17, 17, 19, 24, 17, 19,
17, 19, 710, 1253, 1611, 365, 423, -41, 423, -41,
423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
423, 423, 423, 423, 423, 423, 423, 423, -41, 423,
423, 423, 423, 423, 423, 423, -41, -2, -2, -2,
-2, -2, -2, -2, -2, -2, 423, -41, 423, 423,
423, 423, 423, 423, 423, -41, 423, -41, 423, -41,
-41, 423, -41, 423, -41, -41, -41, 423, 423, -41,
423, 423, -41, 423, -41, 1455, 1478, 1501, 1524, -41,
-41, -41, -41, 1593, 1673, 1593, 1673, 1547, 1712, 1712,
1712, 1726, 1726, 1726, 1726, 368, 368, 368, 28, 19,
28, 5, 5, 5, 5, 851, 1570, 425, 260, 128,
-20, 14, 14, 28, 876, -2, -2, -25, -25, -25,
-25, -25, -25, -36, 24, 24, 901, 140, 140, 39,
39, 39, 39, -41, 508, 738, 1258, 1288, 1629, 1312,
1638, 537, 1336, 566, 1360, -41, -41, -41, -41, 423,
423, -41, 423, 423, 423, 423, -41, 24, 189, 423,
-41, 423, -41, -41, -41, 423, -41, 423, -41, 93,
-41, 423, 94, -41, 423, 1694, 926, 1694, 1673, 1694,
1673, 1684, 951, 976, 1384, 766, 595, 79, 624, 80,
653, 423, -41, 423, -41, 423, -41, 423, -41, 423,
-41, 100, 101, -41, 117, 118, -41, 1001, 1026, 1051,
794, 1408, 72, 111, 85, 99, 423, -41, 423, -41,
423, -41, -41, 423, -41, 129, -41, -41, 1076, 1101,
1126, 682, 104, 423, -41, 423, -41, 423, -41, 423,
-41, -41, 1151, 1176, 1201, 1432, -41, -41, -41, 423,
822, -41
};
/* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
Performed when YYTABLE does not specify something else to do. Zero
means the default is an error. */
static const yytype_uint8 yydefact[] =
{
2, 0, 1, 0, 74, 31, 32, 127, 18, 0,
0, 0, 0, 0, 0, 0, 33, 75, 128, 19,
35, 36, 130, 0, 0, 0, 0, 0, 0, 4,
0, 3, 0, 0, 0, 0, 0, 0, 9, 54,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 109, 0, 0, 113, 0, 0, 0, 0,
0, 12, 10, 0, 46, 47, 125, 29, 70, 71,
72, 73, 0, 0, 0, 0, 0, 17, 0, 16,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 5, 0,
0, 0, 0, 0, 0, 0, 6, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 8, 0, 0,
0, 0, 0, 0, 0, 7, 0, 59, 0, 55,
58, 0, 57, 0, 102, 103, 104, 0, 0, 110,
0, 0, 114, 0, 117, 0, 0, 0, 0, 48,
126, 30, 131, 15, 11, 13, 14, 0, 88, 89,
87, 83, 84, 86, 85, 38, 39, 37, 40, 49,
41, 43, 42, 44, 45, 0, 0, 0, 0, 97,
96, 98, 99, 50, 0, 0, 0, 77, 78, 81,
79, 80, 82, 23, 22, 21, 0, 90, 91, 92,
94, 95, 93, 132, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 34, 76, 129, 20, 0,
0, 65, 0, 0, 0, 0, 120, 29, 0, 0,
24, 0, 61, 56, 105, 0, 134, 0, 60, 0,
111, 0, 0, 115, 0, 100, 0, 51, 53, 52,
101, 133, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 66, 0, 121, 0, 25, 0, 135, 0,
106, 0, 0, 63, 0, 0, 118, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 67, 0, 122,
0, 26, 62, 0, 112, 0, 116, 119, 0, 0,
0, 0, 0, 0, 68, 0, 123, 0, 27, 0,
107, 64, 0, 0, 0, 0, 69, 124, 28, 0,
0, 108
};
/* YYPGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] =
{
-41, -41, -41, -41, -41, -1, 170, 96, 30
};
/* YYDEFGOTO[NTERM-NUM]. */
static const yytype_int8 yydefgoto[] =
{
0, 1, 31, 32, 33, 48, 49, 46, 63
};
/* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
positive, shift that token. If negative, reduce the rule whose
number is the opposite. If YYTABLE_NINF, syntax error. */
static const yytype_int16 yytable[] =
{
34, 51, 54, 138, 141, 8, 114, 115, 40, 44,
102, 103, 113, 38, 116, 76, 19, 114, 115, 77,
104, 53, 61, 64, 65, 116, 68, 70, 143, 72,
105, 37, 78, 56, 131, 140, 79, 139, 142, 43,
47, 50, 118, 119, 185, 120, 121, 122, 123, 124,
96, 52, 55, 186, 104, 97, 145, 146, 147, 148,
75, 57, 144, 58, 105, 59, 60, 97, 132, 105,
93, 94, 95, 96, 116, 153, 124, 155, 97, 157,
158, 159, 160, 161, 162, 163, 164, 165, 166, 167,
168, 170, 171, 172, 173, 174, 175, 36, 176, 257,
259, 271, 274, 183, 184, 42, 282, 283, 99, 100,
101, 102, 103, 118, 119, 196, 120, 121, 122, 123,
124, 104, 67, 284, 285, 204, 74, 205, 294, 178,
207, 105, 209, 295, 106, 302, 125, 211, 128, 212,
213, 296, 214, 99, 100, 101, 102, 103, 197, 198,
199, 200, 201, 202, 203, 297, 104, 101, 102, 103,
311, 208, 0, 0, 0, 0, 105, 210, 104, 0,
0, 35, 129, 120, 121, 122, 123, 124, 105, 41,
45, 0, 107, 108, 0, 109, 110, 111, 112, 113,
0, 0, 0, 62, 114, 115, 66, 69, 71, 0,
73, 0, 116, 187, 188, 189, 190, 191, 192, 193,
194, 195, 99, 100, 101, 102, 103, 0, 245, 246,
0, 247, 249, 0, 252, 104, 113, 0, 253, 0,
254, 114, 115, 0, 255, 105, 256, 0, 0, 116,
258, 135, 0, 260, 0, 151, 154, 0, 156, 0,
0, 0, 118, 119, 251, 120, 121, 122, 123, 124,
277, 169, 278, 0, 279, 0, 280, 0, 281, 177,
179, 180, 181, 182, 0, 0, 0, 0, 136, 0,
0, 227, 228, 0, 224, 298, 0, 299, 0, 300,
118, 119, 301, 120, 121, 122, 123, 124, 206, 0,
0, 0, 312, 0, 313, 0, 314, 0, 315, 0,
0, 0, 0, 0, 0, 0, 2, 3, 320, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 0, 107,
108, 23, 109, 110, 111, 112, 113, 0, 0, 0,
0, 114, 115, 24, 25, 0, 0, 0, 0, 116,
0, 0, 26, 27, 28, 130, 0, 0, 0, 29,
0, 30, 4, 5, 6, 7, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 0, 248, 250, 23, 118, 119, 0, 120, 121,
122, 123, 124, 0, 0, 0, 24, 25, 91, 92,
93, 94, 95, 96, 0, 26, 27, 28, 97, 0,
0, 152, 0, 0, 30, 39, 4, 5, 6, 7,
8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 0, 0, 0, 23, 223,
0, 0, 99, 100, 101, 102, 103, 0, 0, 0,
24, 25, 0, 0, 0, 104, 0, 0, 0, 26,
27, 28, 126, 80, 0, 105, 0, 0, 30, 0,
81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
91, 92, 93, 94, 95, 96, 0, 0, 0, 0,
97, 133, 80, 0, 0, 0, 127, 0, 0, 81,
82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
92, 93, 94, 95, 96, 0, 0, 0, 0, 97,
231, 80, 0, 0, 0, 134, 0, 0, 81, 82,
83, 84, 85, 86, 87, 88, 89, 90, 91, 92,
93, 94, 95, 96, 0, 0, 0, 0, 97, 239,
80, 0, 0, 0, 232, 0, 0, 81, 82, 83,
84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
94, 95, 96, 0, 0, 0, 0, 97, 242, 80,
0, 0, 0, 240, 0, 0, 81, 82, 83, 84,
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
95, 96, 0, 0, 0, 0, 97, 269, 80, 0,
0, 0, 243, 0, 0, 81, 82, 83, 84, 85,
86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
96, 0, 0, 0, 0, 97, 272, 80, 0, 0,
0, 270, 0, 0, 81, 82, 83, 84, 85, 86,
87, 88, 89, 90, 91, 92, 93, 94, 95, 96,
0, 0, 0, 0, 97, 275, 80, 0, 0, 0,
273, 0, 0, 81, 82, 83, 84, 85, 86, 87,
88, 89, 90, 91, 92, 93, 94, 95, 96, 0,
0, 0, 0, 97, 309, 80, 0, 0, 0, 276,
0, 0, 81, 82, 83, 84, 85, 86, 87, 88,
89, 90, 91, 92, 93, 94, 95, 96, 0, 0,
0, 0, 97, 80, 0, 0, 0, 0, 310, 0,
81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
91, 92, 93, 94, 95, 96, 0, 0, 0, 0,
97, 80, 0, 0, 0, 0, 149, 0, 81, 82,
83, 84, 85, 86, 87, 88, 89, 90, 91, 92,
93, 94, 95, 96, 0, 0, 0, 0, 97, 80,
0, 0, 0, 0, 233, 0, 81, 82, 83, 84,
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
95, 96, 0, 0, 0, 0, 97, 80, 0, 0,
0, 0, 268, 0, 81, 82, 83, 84, 85, 86,
87, 88, 89, 90, 91, 92, 93, 94, 95, 96,
0, 0, 0, 0, 97, 80, 0, 0, 0, 0,
292, 0, 81, 82, 83, 84, 85, 86, 87, 88,
89, 90, 91, 92, 93, 94, 95, 96, 0, 0,
0, 0, 97, 220, 80, 0, 0, 0, 321, 0,
0, 81, 82, 83, 84, 85, 86, 87, 88, 89,
90, 91, 92, 93, 94, 95, 96, 0, 225, 80,
0, 97, 0, 0, 0, 221, 81, 82, 83, 84,
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
95, 96, 0, 229, 80, 0, 97, 0, 0, 0,