/[svn]/linuxsampler/trunk/src/network/lscpscanner.cpp
ViewVC logotype

Annotation of /linuxsampler/trunk/src/network/lscpscanner.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 210 - (hide annotations) (download)
Sat Jul 24 12:33:49 2004 UTC (19 years, 9 months ago) by schoenebeck
File size: 103773 byte(s)
* implemented "SET ECHO" LSCP command

1 schoenebeck 35
2     #line 3 "lex.yy.c"
3    
4     #define YY_INT_ALIGNED short int
5    
6     /* A lexical scanner generated by flex */
7    
8     #define FLEX_SCANNER
9     #define YY_FLEX_MAJOR_VERSION 2
10     #define YY_FLEX_MINOR_VERSION 5
11     #define YY_FLEX_SUBMINOR_VERSION 31
12     #if YY_FLEX_SUBMINOR_VERSION > 0
13     #define FLEX_BETA
14     #endif
15    
16     /* First, we deal with platform-specific or compiler-specific issues. */
17    
18     /* begin standard C headers. */
19     #include <stdio.h>
20     #include <string.h>
21     #include <errno.h>
22     #include <stdlib.h>
23    
24     /* end standard C headers. */
25    
26     /* flex integer type definitions */
27    
28     #ifndef FLEXINT_H
29     #define FLEXINT_H
30    
31     /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
32    
33     #if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
34     #include <inttypes.h>
35     typedef int8_t flex_int8_t;
36     typedef uint8_t flex_uint8_t;
37     typedef int16_t flex_int16_t;
38     typedef uint16_t flex_uint16_t;
39     typedef int32_t flex_int32_t;
40     typedef uint32_t flex_uint32_t;
41     #else
42     typedef signed char flex_int8_t;
43     typedef short int flex_int16_t;
44     typedef int flex_int32_t;
45     typedef unsigned char flex_uint8_t;
46     typedef unsigned short int flex_uint16_t;
47     typedef unsigned int flex_uint32_t;
48     #endif /* ! C99 */
49    
50     /* Limits of integral types. */
51     #ifndef INT8_MIN
52     #define INT8_MIN (-128)
53     #endif
54     #ifndef INT16_MIN
55     #define INT16_MIN (-32767-1)
56     #endif
57     #ifndef INT32_MIN
58     #define INT32_MIN (-2147483647-1)
59     #endif
60     #ifndef INT8_MAX
61     #define INT8_MAX (127)
62     #endif
63     #ifndef INT16_MAX
64     #define INT16_MAX (32767)
65     #endif
66     #ifndef INT32_MAX
67     #define INT32_MAX (2147483647)
68     #endif
69     #ifndef UINT8_MAX
70     #define UINT8_MAX (255U)
71     #endif
72     #ifndef UINT16_MAX
73     #define UINT16_MAX (65535U)
74     #endif
75     #ifndef UINT32_MAX
76     #define UINT32_MAX (4294967295U)
77     #endif
78    
79     #endif /* ! FLEXINT_H */
80    
81     #ifdef __cplusplus
82    
83     /* The "const" storage-class-modifier is valid. */
84     #define YY_USE_CONST
85    
86     #else /* ! __cplusplus */
87    
88     #if __STDC__
89    
90     #define YY_USE_CONST
91    
92     #endif /* __STDC__ */
93     #endif /* ! __cplusplus */
94    
95     #ifdef YY_USE_CONST
96     #define yyconst const
97     #else
98     #define yyconst
99     #endif
100    
101     /* Returned upon end-of-file. */
102     #define YY_NULL 0
103    
104     /* Promotes a possibly negative, possibly signed char to an unsigned
105     * integer for use as an array index. If the signed char is negative,
106     * we want to instead treat it as an 8-bit unsigned char, hence the
107     * double cast.
108     */
109     #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
110    
111     /* An opaque pointer. */
112     #ifndef YY_TYPEDEF_YY_SCANNER_T
113     #define YY_TYPEDEF_YY_SCANNER_T
114     typedef void* yyscan_t;
115     #endif
116    
117     /* For convenience, these vars (plus the bison vars far below)
118     are macros in the reentrant scanner. */
119     #define yyin yyg->yyin_r
120     #define yyout yyg->yyout_r
121     #define yyextra yyg->yyextra_r
122     #define yyleng yyg->yyleng_r
123     #define yytext yyg->yytext_r
124     #define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno)
125     #define yycolumn (YY_CURRENT_BUFFER_LVALUE->yy_bs_column)
126     #define yy_flex_debug yyg->yy_flex_debug_r
127    
128     int yylex_init (yyscan_t* scanner);
129    
130     /* Enter a start condition. This macro really ought to take a parameter,
131     * but we do it the disgusting crufty way forced on us by the ()-less
132     * definition of BEGIN.
133     */
134     #define BEGIN yyg->yy_start = 1 + 2 *
135    
136     /* Translate the current start state into a value that can be later handed
137     * to BEGIN to return to the state. The YYSTATE alias is for lex
138     * compatibility.
139     */
140     #define YY_START ((yyg->yy_start - 1) / 2)
141     #define YYSTATE YY_START
142    
143     /* Action number for EOF rule of a given start state. */
144     #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
145    
146     /* Special action meaning "start processing a new file". */
147     #define YY_NEW_FILE yyrestart(yyin ,yyscanner )
148    
149     #define YY_END_OF_BUFFER_CHAR 0
150    
151     /* Size of default input buffer. */
152     #ifndef YY_BUF_SIZE
153     #define YY_BUF_SIZE 16384
154     #endif
155    
156     #ifndef YY_TYPEDEF_YY_BUFFER_STATE
157     #define YY_TYPEDEF_YY_BUFFER_STATE
158     typedef struct yy_buffer_state *YY_BUFFER_STATE;
159     #endif
160    
161     #define EOB_ACT_CONTINUE_SCAN 0
162     #define EOB_ACT_END_OF_FILE 1
163     #define EOB_ACT_LAST_MATCH 2
164    
165     #define YY_LESS_LINENO(n)
166    
167     /* Return all but the first "n" matched characters back to the input stream. */
168     #define yyless(n) \
169     do \
170     { \
171     /* Undo effects of setting up yytext. */ \
172     int yyless_macro_arg = (n); \
173     YY_LESS_LINENO(yyless_macro_arg);\
174     *yy_cp = yyg->yy_hold_char; \
175     YY_RESTORE_YY_MORE_OFFSET \
176     yyg->yy_c_buf_p = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
177     YY_DO_BEFORE_ACTION; /* set up yytext again */ \
178     } \
179     while ( 0 )
180    
181     #define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner )
182    
183     /* The following is because we cannot portably get our hands on size_t
184     * (without autoconf's help, which isn't available because we want
185     * flex-generated scanners to compile on their own).
186     */
187    
188     #ifndef YY_TYPEDEF_YY_SIZE_T
189     #define YY_TYPEDEF_YY_SIZE_T
190     typedef unsigned int yy_size_t;
191     #endif
192    
193     #ifndef YY_STRUCT_YY_BUFFER_STATE
194     #define YY_STRUCT_YY_BUFFER_STATE
195     struct yy_buffer_state
196     {
197     FILE *yy_input_file;
198    
199     char *yy_ch_buf; /* input buffer */
200     char *yy_buf_pos; /* current position in input buffer */
201    
202     /* Size of input buffer in bytes, not including room for EOB
203     * characters.
204     */
205     yy_size_t yy_buf_size;
206    
207     /* Number of characters read into yy_ch_buf, not including EOB
208     * characters.
209     */
210     int yy_n_chars;
211    
212     /* Whether we "own" the buffer - i.e., we know we created it,
213     * and can realloc() it to grow it, and should free() it to
214     * delete it.
215     */
216     int yy_is_our_buffer;
217    
218     /* Whether this is an "interactive" input source; if so, and
219     * if we're using stdio for input, then we want to use getc()
220     * instead of fread(), to make sure we stop fetching input after
221     * each newline.
222     */
223     int yy_is_interactive;
224    
225     /* Whether we're considered to be at the beginning of a line.
226     * If so, '^' rules will be active on the next match, otherwise
227     * not.
228     */
229     int yy_at_bol;
230    
231     int yy_bs_lineno; /**< The line count. */
232     int yy_bs_column; /**< The column count. */
233    
234     /* Whether to try to fill the input buffer when we reach the
235     * end of it.
236     */
237     int yy_fill_buffer;
238    
239     int yy_buffer_status;
240    
241     #define YY_BUFFER_NEW 0
242     #define YY_BUFFER_NORMAL 1
243     /* When an EOF's been seen but there's still some text to process
244     * then we mark the buffer as YY_EOF_PENDING, to indicate that we
245     * shouldn't try reading from the input source any more. We might
246     * still have a bunch of tokens to match, though, because of
247     * possible backing-up.
248     *
249     * When we actually see the EOF, we change the status to "new"
250     * (via yyrestart()), so that the user can continue scanning by
251     * just pointing yyin at a new input file.
252     */
253     #define YY_BUFFER_EOF_PENDING 2
254    
255     };
256     #endif /* !YY_STRUCT_YY_BUFFER_STATE */
257    
258     /* We provide macros for accessing buffer states in case in the
259     * future we want to put the buffer states in a more general
260     * "scanner state".
261     *
262     * Returns the top of the stack, or NULL.
263     */
264     #define YY_CURRENT_BUFFER ( yyg->yy_buffer_stack \
265     ? yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] \
266     : NULL)
267    
268     /* Same as previous macro, but useful when we know that the buffer stack is not
269     * NULL or when we need an lvalue. For internal use only.
270     */
271     #define YY_CURRENT_BUFFER_LVALUE yyg->yy_buffer_stack[yyg->yy_buffer_stack_top]
272    
273     void yyrestart (FILE *input_file ,yyscan_t yyscanner );
274     void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner );
275     YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ,yyscan_t yyscanner );
276     void yy_delete_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner );
277     void yy_flush_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner );
278     void yypush_buffer_state (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner );
279     void yypop_buffer_state (yyscan_t yyscanner );
280    
281     static void yyensure_buffer_stack (yyscan_t yyscanner );
282     static void yy_load_buffer_state (yyscan_t yyscanner );
283     static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ,yyscan_t yyscanner );
284    
285     #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ,yyscanner)
286    
287     YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner );
288     YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ,yyscan_t yyscanner );
289     YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len ,yyscan_t yyscanner );
290    
291     void *yyalloc (yy_size_t ,yyscan_t yyscanner );
292     void *yyrealloc (void *,yy_size_t ,yyscan_t yyscanner );
293     void yyfree (void * ,yyscan_t yyscanner );
294    
295     #define yy_new_buffer yy_create_buffer
296    
297     #define yy_set_interactive(is_interactive) \
298     { \
299     if ( ! YY_CURRENT_BUFFER ){ \
300     yyensure_buffer_stack (yyscanner); \
301     YY_CURRENT_BUFFER_LVALUE = \
302     yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
303     } \
304     YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
305     }
306    
307     #define yy_set_bol(at_bol) \
308     { \
309     if ( ! YY_CURRENT_BUFFER ){\
310     yyensure_buffer_stack (yyscanner); \
311     YY_CURRENT_BUFFER_LVALUE = \
312     yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
313     } \
314     YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
315     }
316    
317     #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
318    
319     /* Begin user sect3 */
320    
321 schoenebeck 111 typedef unsigned char YY_CHAR;
322 schoenebeck 35
323 schoenebeck 111 typedef yyconst struct yy_trans_info *yy_state_type;
324 schoenebeck 35
325     #define yytext_ptr yytext_r
326    
327 schoenebeck 111 static yy_state_type yy_get_previous_state (yyscan_t yyscanner );
328     static yy_state_type yy_try_NUL_trans (yy_state_type current_state ,yyscan_t yyscanner);
329     static int yy_get_next_buffer (yyscan_t yyscanner );
330     static void yy_fatal_error (yyconst char msg[] ,yyscan_t yyscanner );
331 schoenebeck 35
332 schoenebeck 111 /* Done after the current pattern has been matched and before the
333     * corresponding action - sets up yytext.
334     */
335     #define YY_DO_BEFORE_ACTION \
336     yyg->yytext_ptr = yy_bp; \
337     yyleng = (size_t) (yy_cp - yy_bp); \
338     yyg->yy_hold_char = *yy_cp; \
339     *yy_cp = '\0'; \
340     yyg->yy_c_buf_p = yy_cp;
341 schoenebeck 35
342 schoenebeck 210 #define YY_NUM_RULES 67
343     #define YY_END_OF_BUFFER 68
344 schoenebeck 111 struct yy_trans_info
345     {
346     flex_int16_t yy_verify;
347     flex_int16_t yy_nxt;
348     };
349 schoenebeck 210 static yyconst struct yy_trans_info yy_transition[3749] =
350 schoenebeck 35 {
351 schoenebeck 210 { 0, 0 }, { 0,3493 }, { 0, 0 }, { 0,3491 }, { 1,1032 },
352 senkov 135 { 2,1032 }, { 3,1032 }, { 4,1032 }, { 5,1032 }, { 6,1032 },
353     { 7,1032 }, { 8,1032 }, { 9,1032 }, { 10,1034 }, { 11,1032 },
354     { 12,1032 }, { 13,1036 }, { 14,1032 }, { 15,1032 }, { 16,1032 },
355     { 17,1032 }, { 18,1032 }, { 19,1032 }, { 20,1032 }, { 21,1032 },
356     { 22,1032 }, { 23,1032 }, { 24,1032 }, { 25,1032 }, { 26,1032 },
357     { 27,1032 }, { 28,1032 }, { 29,1032 }, { 30,1032 }, { 31,1032 },
358     { 32,1038 }, { 33,1032 }, { 34,1032 }, { 35,1040 }, { 36,1032 },
359     { 37,1032 }, { 38,1032 }, { 39,1042 }, { 40,1032 }, { 41,1032 },
360     { 42,1032 }, { 43,1044 }, { 44,1032 }, { 45,1044 }, { 46,1032 },
361 schoenebeck 35
362 senkov 135 { 47,1032 }, { 48,1056 }, { 49,1068 }, { 50,1068 }, { 51,1068 },
363     { 52,1068 }, { 53,1068 }, { 54,1068 }, { 55,1068 }, { 56,1068 },
364     { 57,1068 }, { 58,1032 }, { 59,1032 }, { 60,1032 }, { 61,1046 },
365     { 62,1032 }, { 63,1032 }, { 64,1032 }, { 65,1058 }, { 66,1060 },
366     { 67,1064 }, { 68,1066 }, { 69,1070 }, { 70,1032 }, { 71,1072 },
367     { 72,1032 }, { 73,1074 }, { 74,1032 }, { 75,1032 }, { 76,1077 },
368     { 77,1080 }, { 78,1082 }, { 79,1032 }, { 80,1085 }, { 81,1087 },
369     { 82,1089 }, { 83,1091 }, { 84,1032 }, { 85,1128 }, { 86,1130 },
370     { 87,1032 }, { 88,1032 }, { 89,1032 }, { 90,1032 }, { 91,1032 },
371     { 92,1032 }, { 93,1032 }, { 94,1032 }, { 95,1032 }, { 96,1032 },
372 schoenebeck 35
373 senkov 135 { 97,1032 }, { 98,1032 }, { 99,1032 }, { 100,1032 }, { 101,1032 },
374     { 102,1032 }, { 103,1032 }, { 104,1032 }, { 105,1032 }, { 106,1032 },
375     { 107,1032 }, { 108,1032 }, { 109,1032 }, { 110,1032 }, { 111,1032 },
376     { 112,1032 }, { 113,1032 }, { 114,1032 }, { 115,1032 }, { 116,1032 },
377     { 117,1032 }, { 118,1032 }, { 119,1032 }, { 120,1032 }, { 121,1032 },
378     { 122,1032 }, { 123,1032 }, { 124,1032 }, { 125,1032 }, { 126,1032 },
379     { 127,1032 }, { 128,1032 }, { 129,1032 }, { 130,1032 }, { 131,1032 },
380     { 132,1032 }, { 133,1032 }, { 134,1032 }, { 135,1032 }, { 136,1032 },
381     { 137,1032 }, { 138,1032 }, { 139,1032 }, { 140,1032 }, { 141,1032 },
382     { 142,1032 }, { 143,1032 }, { 144,1032 }, { 145,1032 }, { 146,1032 },
383 schoenebeck 35
384 senkov 135 { 147,1032 }, { 148,1032 }, { 149,1032 }, { 150,1032 }, { 151,1032 },
385     { 152,1032 }, { 153,1032 }, { 154,1032 }, { 155,1032 }, { 156,1032 },
386     { 157,1032 }, { 158,1032 }, { 159,1032 }, { 160,1032 }, { 161,1032 },
387     { 162,1032 }, { 163,1032 }, { 164,1032 }, { 165,1032 }, { 166,1032 },
388     { 167,1032 }, { 168,1032 }, { 169,1032 }, { 170,1032 }, { 171,1032 },
389     { 172,1032 }, { 173,1032 }, { 174,1032 }, { 175,1032 }, { 176,1032 },
390     { 177,1032 }, { 178,1032 }, { 179,1032 }, { 180,1032 }, { 181,1032 },
391     { 182,1032 }, { 183,1032 }, { 184,1032 }, { 185,1032 }, { 186,1032 },
392     { 187,1032 }, { 188,1032 }, { 189,1032 }, { 190,1032 }, { 191,1032 },
393     { 192,1032 }, { 193,1032 }, { 194,1032 }, { 195,1032 }, { 196,1032 },
394 schoenebeck 35
395 senkov 135 { 197,1032 }, { 198,1032 }, { 199,1032 }, { 200,1032 }, { 201,1032 },
396     { 202,1032 }, { 203,1032 }, { 204,1032 }, { 205,1032 }, { 206,1032 },
397     { 207,1032 }, { 208,1032 }, { 209,1032 }, { 210,1032 }, { 211,1032 },
398     { 212,1032 }, { 213,1032 }, { 214,1032 }, { 215,1032 }, { 216,1032 },
399     { 217,1032 }, { 218,1032 }, { 219,1032 }, { 220,1032 }, { 221,1032 },
400     { 222,1032 }, { 223,1032 }, { 224,1032 }, { 225,1032 }, { 226,1032 },
401     { 227,1032 }, { 228,1032 }, { 229,1032 }, { 230,1032 }, { 231,1032 },
402     { 232,1032 }, { 233,1032 }, { 234,1032 }, { 235,1032 }, { 236,1032 },
403     { 237,1032 }, { 238,1032 }, { 239,1032 }, { 240,1032 }, { 241,1032 },
404     { 242,1032 }, { 243,1032 }, { 244,1032 }, { 245,1032 }, { 246,1032 },
405 schoenebeck 35
406 senkov 135 { 247,1032 }, { 248,1032 }, { 249,1032 }, { 250,1032 }, { 251,1032 },
407     { 252,1032 }, { 253,1032 }, { 254,1032 }, { 255,1032 }, { 256,1032 },
408 schoenebeck 210 { 0, 0 }, { 0,3233 }, { 1, 774 }, { 2, 774 }, { 3, 774 },
409 senkov 135 { 4, 774 }, { 5, 774 }, { 6, 774 }, { 7, 774 }, { 8, 774 },
410     { 9, 774 }, { 10, 776 }, { 11, 774 }, { 12, 774 }, { 13, 778 },
411     { 14, 774 }, { 15, 774 }, { 16, 774 }, { 17, 774 }, { 18, 774 },
412     { 19, 774 }, { 20, 774 }, { 21, 774 }, { 22, 774 }, { 23, 774 },
413     { 24, 774 }, { 25, 774 }, { 26, 774 }, { 27, 774 }, { 28, 774 },
414     { 29, 774 }, { 30, 774 }, { 31, 774 }, { 32, 780 }, { 33, 774 },
415     { 34, 774 }, { 35, 782 }, { 36, 774 }, { 37, 774 }, { 38, 774 },
416 schoenebeck 35
417 senkov 135 { 39, 784 }, { 40, 774 }, { 41, 774 }, { 42, 774 }, { 43, 786 },
418     { 44, 774 }, { 45, 786 }, { 46, 774 }, { 47, 774 }, { 48, 798 },
419     { 49, 810 }, { 50, 810 }, { 51, 810 }, { 52, 810 }, { 53, 810 },
420     { 54, 810 }, { 55, 810 }, { 56, 810 }, { 57, 810 }, { 58, 774 },
421     { 59, 774 }, { 60, 774 }, { 61, 788 }, { 62, 774 }, { 63, 774 },
422     { 64, 774 }, { 65, 800 }, { 66, 802 }, { 67, 806 }, { 68, 808 },
423     { 69, 812 }, { 70, 774 }, { 71, 814 }, { 72, 774 }, { 73, 816 },
424     { 74, 774 }, { 75, 774 }, { 76, 819 }, { 77, 822 }, { 78, 824 },
425     { 79, 774 }, { 80, 827 }, { 81, 829 }, { 82, 831 }, { 83, 833 },
426     { 84, 774 }, { 85, 870 }, { 86, 872 }, { 87, 774 }, { 88, 774 },
427 schoenebeck 35
428 senkov 135 { 89, 774 }, { 90, 774 }, { 91, 774 }, { 92, 774 }, { 93, 774 },
429     { 94, 774 }, { 95, 774 }, { 96, 774 }, { 97, 774 }, { 98, 774 },
430     { 99, 774 }, { 100, 774 }, { 101, 774 }, { 102, 774 }, { 103, 774 },
431     { 104, 774 }, { 105, 774 }, { 106, 774 }, { 107, 774 }, { 108, 774 },
432     { 109, 774 }, { 110, 774 }, { 111, 774 }, { 112, 774 }, { 113, 774 },
433     { 114, 774 }, { 115, 774 }, { 116, 774 }, { 117, 774 }, { 118, 774 },
434     { 119, 774 }, { 120, 774 }, { 121, 774 }, { 122, 774 }, { 123, 774 },
435     { 124, 774 }, { 125, 774 }, { 126, 774 }, { 127, 774 }, { 128, 774 },
436     { 129, 774 }, { 130, 774 }, { 131, 774 }, { 132, 774 }, { 133, 774 },
437     { 134, 774 }, { 135, 774 }, { 136, 774 }, { 137, 774 }, { 138, 774 },
438 schoenebeck 35
439 senkov 135 { 139, 774 }, { 140, 774 }, { 141, 774 }, { 142, 774 }, { 143, 774 },
440     { 144, 774 }, { 145, 774 }, { 146, 774 }, { 147, 774 }, { 148, 774 },
441     { 149, 774 }, { 150, 774 }, { 151, 774 }, { 152, 774 }, { 153, 774 },
442     { 154, 774 }, { 155, 774 }, { 156, 774 }, { 157, 774 }, { 158, 774 },
443     { 159, 774 }, { 160, 774 }, { 161, 774 }, { 162, 774 }, { 163, 774 },
444     { 164, 774 }, { 165, 774 }, { 166, 774 }, { 167, 774 }, { 168, 774 },
445     { 169, 774 }, { 170, 774 }, { 171, 774 }, { 172, 774 }, { 173, 774 },
446     { 174, 774 }, { 175, 774 }, { 176, 774 }, { 177, 774 }, { 178, 774 },
447     { 179, 774 }, { 180, 774 }, { 181, 774 }, { 182, 774 }, { 183, 774 },
448     { 184, 774 }, { 185, 774 }, { 186, 774 }, { 187, 774 }, { 188, 774 },
449 schoenebeck 35
450 senkov 135 { 189, 774 }, { 190, 774 }, { 191, 774 }, { 192, 774 }, { 193, 774 },
451     { 194, 774 }, { 195, 774 }, { 196, 774 }, { 197, 774 }, { 198, 774 },
452     { 199, 774 }, { 200, 774 }, { 201, 774 }, { 202, 774 }, { 203, 774 },
453     { 204, 774 }, { 205, 774 }, { 206, 774 }, { 207, 774 }, { 208, 774 },
454     { 209, 774 }, { 210, 774 }, { 211, 774 }, { 212, 774 }, { 213, 774 },
455     { 214, 774 }, { 215, 774 }, { 216, 774 }, { 217, 774 }, { 218, 774 },
456     { 219, 774 }, { 220, 774 }, { 221, 774 }, { 222, 774 }, { 223, 774 },
457     { 224, 774 }, { 225, 774 }, { 226, 774 }, { 227, 774 }, { 228, 774 },
458     { 229, 774 }, { 230, 774 }, { 231, 774 }, { 232, 774 }, { 233, 774 },
459     { 234, 774 }, { 235, 774 }, { 236, 774 }, { 237, 774 }, { 238, 774 },
460 schoenebeck 35
461 senkov 135 { 239, 774 }, { 240, 774 }, { 241, 774 }, { 242, 774 }, { 243, 774 },
462     { 244, 774 }, { 245, 774 }, { 246, 774 }, { 247, 774 }, { 248, 774 },
463     { 249, 774 }, { 250, 774 }, { 251, 774 }, { 252, 774 }, { 253, 774 },
464 schoenebeck 210 { 254, 774 }, { 255, 774 }, { 256, 774 }, { 0, 0 }, { 0,2975 },
465 senkov 135 { 1, 695 }, { 2, 695 }, { 3, 695 }, { 4, 695 }, { 5, 695 },
466     { 6, 695 }, { 7, 695 }, { 8, 695 }, { 9, 695 }, { 10, 695 },
467     { 11, 695 }, { 12, 695 }, { 13, 695 }, { 14, 695 }, { 15, 695 },
468     { 16, 695 }, { 17, 695 }, { 18, 695 }, { 19, 695 }, { 20, 695 },
469     { 21, 695 }, { 22, 695 }, { 23, 695 }, { 24, 695 }, { 25, 695 },
470     { 26, 695 }, { 27, 695 }, { 28, 695 }, { 29, 695 }, { 30, 695 },
471    
472     { 31, 695 }, { 32, 695 }, { 33, 695 }, { 34, 695 }, { 35, 695 },
473     { 36, 695 }, { 37, 695 }, { 38, 695 }, { 39, 616 }, { 40, 695 },
474     { 41, 695 }, { 42, 695 }, { 43, 695 }, { 44, 695 }, { 45, 695 },
475     { 46, 695 }, { 47, 695 }, { 48, 695 }, { 49, 695 }, { 50, 695 },
476     { 51, 695 }, { 52, 695 }, { 53, 695 }, { 54, 695 }, { 55, 695 },
477     { 56, 695 }, { 57, 695 }, { 58, 695 }, { 59, 695 }, { 60, 695 },
478     { 61, 695 }, { 62, 695 }, { 63, 695 }, { 64, 695 }, { 65, 695 },
479     { 66, 695 }, { 67, 695 }, { 68, 695 }, { 69, 695 }, { 70, 695 },
480     { 71, 695 }, { 72, 695 }, { 73, 695 }, { 74, 695 }, { 75, 695 },
481     { 76, 695 }, { 77, 695 }, { 78, 695 }, { 79, 695 }, { 80, 695 },
482    
483     { 81, 695 }, { 82, 695 }, { 83, 695 }, { 84, 695 }, { 85, 695 },
484     { 86, 695 }, { 87, 695 }, { 88, 695 }, { 89, 695 }, { 90, 695 },
485     { 91, 695 }, { 92, 953 }, { 93, 695 }, { 94, 695 }, { 95, 695 },
486     { 96, 695 }, { 97, 695 }, { 98, 695 }, { 99, 695 }, { 100, 695 },
487     { 101, 695 }, { 102, 695 }, { 103, 695 }, { 104, 695 }, { 105, 695 },
488     { 106, 695 }, { 107, 695 }, { 108, 695 }, { 109, 695 }, { 110, 695 },
489     { 111, 695 }, { 112, 695 }, { 113, 695 }, { 114, 695 }, { 115, 695 },
490     { 116, 695 }, { 117, 695 }, { 118, 695 }, { 119, 695 }, { 120, 695 },
491     { 121, 695 }, { 122, 695 }, { 123, 695 }, { 124, 695 }, { 125, 695 },
492     { 126, 695 }, { 127, 695 }, { 128, 695 }, { 129, 695 }, { 130, 695 },
493    
494     { 131, 695 }, { 132, 695 }, { 133, 695 }, { 134, 695 }, { 135, 695 },
495     { 136, 695 }, { 137, 695 }, { 138, 695 }, { 139, 695 }, { 140, 695 },
496     { 141, 695 }, { 142, 695 }, { 143, 695 }, { 144, 695 }, { 145, 695 },
497     { 146, 695 }, { 147, 695 }, { 148, 695 }, { 149, 695 }, { 150, 695 },
498     { 151, 695 }, { 152, 695 }, { 153, 695 }, { 154, 695 }, { 155, 695 },
499     { 156, 695 }, { 157, 695 }, { 158, 695 }, { 159, 695 }, { 160, 695 },
500     { 161, 695 }, { 162, 695 }, { 163, 695 }, { 164, 695 }, { 165, 695 },
501     { 166, 695 }, { 167, 695 }, { 168, 695 }, { 169, 695 }, { 170, 695 },
502     { 171, 695 }, { 172, 695 }, { 173, 695 }, { 174, 695 }, { 175, 695 },
503     { 176, 695 }, { 177, 695 }, { 178, 695 }, { 179, 695 }, { 180, 695 },
504    
505     { 181, 695 }, { 182, 695 }, { 183, 695 }, { 184, 695 }, { 185, 695 },
506     { 186, 695 }, { 187, 695 }, { 188, 695 }, { 189, 695 }, { 190, 695 },
507     { 191, 695 }, { 192, 695 }, { 193, 695 }, { 194, 695 }, { 195, 695 },
508     { 196, 695 }, { 197, 695 }, { 198, 695 }, { 199, 695 }, { 200, 695 },
509     { 201, 695 }, { 202, 695 }, { 203, 695 }, { 204, 695 }, { 205, 695 },
510     { 206, 695 }, { 207, 695 }, { 208, 695 }, { 209, 695 }, { 210, 695 },
511     { 211, 695 }, { 212, 695 }, { 213, 695 }, { 214, 695 }, { 215, 695 },
512     { 216, 695 }, { 217, 695 }, { 218, 695 }, { 219, 695 }, { 220, 695 },
513     { 221, 695 }, { 222, 695 }, { 223, 695 }, { 224, 695 }, { 225, 695 },
514     { 226, 695 }, { 227, 695 }, { 228, 695 }, { 229, 695 }, { 230, 695 },
515    
516     { 231, 695 }, { 232, 695 }, { 233, 695 }, { 234, 695 }, { 235, 695 },
517     { 236, 695 }, { 237, 695 }, { 238, 695 }, { 239, 695 }, { 240, 695 },
518     { 241, 695 }, { 242, 695 }, { 243, 695 }, { 244, 695 }, { 245, 695 },
519     { 246, 695 }, { 247, 695 }, { 248, 695 }, { 249, 695 }, { 250, 695 },
520     { 251, 695 }, { 252, 695 }, { 253, 695 }, { 254, 695 }, { 255, 695 },
521 schoenebeck 210 { 256, 695 }, { 0, 0 }, { 0,2717 }, { 1, 437 }, { 2, 437 },
522 senkov 135 { 3, 437 }, { 4, 437 }, { 5, 437 }, { 6, 437 }, { 7, 437 },
523     { 8, 437 }, { 9, 437 }, { 10, 437 }, { 11, 437 }, { 12, 437 },
524     { 13, 437 }, { 14, 437 }, { 15, 437 }, { 16, 437 }, { 17, 437 },
525     { 18, 437 }, { 19, 437 }, { 20, 437 }, { 21, 437 }, { 22, 437 },
526    
527     { 23, 437 }, { 24, 437 }, { 25, 437 }, { 26, 437 }, { 27, 437 },
528     { 28, 437 }, { 29, 437 }, { 30, 437 }, { 31, 437 }, { 32, 437 },
529     { 33, 437 }, { 34, 437 }, { 35, 437 }, { 36, 437 }, { 37, 437 },
530     { 38, 437 }, { 39, 358 }, { 40, 437 }, { 41, 437 }, { 42, 437 },
531     { 43, 437 }, { 44, 437 }, { 45, 437 }, { 46, 437 }, { 47, 437 },
532     { 48, 437 }, { 49, 437 }, { 50, 437 }, { 51, 437 }, { 52, 437 },
533     { 53, 437 }, { 54, 437 }, { 55, 437 }, { 56, 437 }, { 57, 437 },
534     { 58, 437 }, { 59, 437 }, { 60, 437 }, { 61, 437 }, { 62, 437 },
535     { 63, 437 }, { 64, 437 }, { 65, 437 }, { 66, 437 }, { 67, 437 },
536     { 68, 437 }, { 69, 437 }, { 70, 437 }, { 71, 437 }, { 72, 437 },
537    
538     { 73, 437 }, { 74, 437 }, { 75, 437 }, { 76, 437 }, { 77, 437 },
539     { 78, 437 }, { 79, 437 }, { 80, 437 }, { 81, 437 }, { 82, 437 },
540     { 83, 437 }, { 84, 437 }, { 85, 437 }, { 86, 437 }, { 87, 437 },
541     { 88, 437 }, { 89, 437 }, { 90, 437 }, { 91, 437 }, { 92, 695 },
542     { 93, 437 }, { 94, 437 }, { 95, 437 }, { 96, 437 }, { 97, 437 },
543     { 98, 437 }, { 99, 437 }, { 100, 437 }, { 101, 437 }, { 102, 437 },
544     { 103, 437 }, { 104, 437 }, { 105, 437 }, { 106, 437 }, { 107, 437 },
545     { 108, 437 }, { 109, 437 }, { 110, 437 }, { 111, 437 }, { 112, 437 },
546     { 113, 437 }, { 114, 437 }, { 115, 437 }, { 116, 437 }, { 117, 437 },
547     { 118, 437 }, { 119, 437 }, { 120, 437 }, { 121, 437 }, { 122, 437 },
548    
549     { 123, 437 }, { 124, 437 }, { 125, 437 }, { 126, 437 }, { 127, 437 },
550     { 128, 437 }, { 129, 437 }, { 130, 437 }, { 131, 437 }, { 132, 437 },
551     { 133, 437 }, { 134, 437 }, { 135, 437 }, { 136, 437 }, { 137, 437 },
552     { 138, 437 }, { 139, 437 }, { 140, 437 }, { 141, 437 }, { 142, 437 },
553     { 143, 437 }, { 144, 437 }, { 145, 437 }, { 146, 437 }, { 147, 437 },
554     { 148, 437 }, { 149, 437 }, { 150, 437 }, { 151, 437 }, { 152, 437 },
555     { 153, 437 }, { 154, 437 }, { 155, 437 }, { 156, 437 }, { 157, 437 },
556     { 158, 437 }, { 159, 437 }, { 160, 437 }, { 161, 437 }, { 162, 437 },
557     { 163, 437 }, { 164, 437 }, { 165, 437 }, { 166, 437 }, { 167, 437 },
558     { 168, 437 }, { 169, 437 }, { 170, 437 }, { 171, 437 }, { 172, 437 },
559    
560     { 173, 437 }, { 174, 437 }, { 175, 437 }, { 176, 437 }, { 177, 437 },
561     { 178, 437 }, { 179, 437 }, { 180, 437 }, { 181, 437 }, { 182, 437 },
562     { 183, 437 }, { 184, 437 }, { 185, 437 }, { 186, 437 }, { 187, 437 },
563     { 188, 437 }, { 189, 437 }, { 190, 437 }, { 191, 437 }, { 192, 437 },
564     { 193, 437 }, { 194, 437 }, { 195, 437 }, { 196, 437 }, { 197, 437 },
565     { 198, 437 }, { 199, 437 }, { 200, 437 }, { 201, 437 }, { 202, 437 },
566     { 203, 437 }, { 204, 437 }, { 205, 437 }, { 206, 437 }, { 207, 437 },
567     { 208, 437 }, { 209, 437 }, { 210, 437 }, { 211, 437 }, { 212, 437 },
568     { 213, 437 }, { 214, 437 }, { 215, 437 }, { 216, 437 }, { 217, 437 },
569     { 218, 437 }, { 219, 437 }, { 220, 437 }, { 221, 437 }, { 222, 437 },
570    
571     { 223, 437 }, { 224, 437 }, { 225, 437 }, { 226, 437 }, { 227, 437 },
572     { 228, 437 }, { 229, 437 }, { 230, 437 }, { 231, 437 }, { 232, 437 },
573     { 233, 437 }, { 234, 437 }, { 235, 437 }, { 236, 437 }, { 237, 437 },
574     { 238, 437 }, { 239, 437 }, { 240, 437 }, { 241, 437 }, { 242, 437 },
575     { 243, 437 }, { 244, 437 }, { 245, 437 }, { 246, 437 }, { 247, 437 },
576     { 248, 437 }, { 249, 437 }, { 250, 437 }, { 251, 437 }, { 252, 437 },
577 schoenebeck 210 { 253, 437 }, { 254, 437 }, { 255, 437 }, { 256, 437 }, { 0, 66 },
578     { 0,2459 }, { 0, 2 }, { 0,2457 }, { 0, 3 }, { 0,2455 },
579     { 0, 1 }, { 0,2453 }, { 0, 4 }, { 0,2451 }, { 0, 56 },
580     { 0,2449 }, { 0, 66 }, { 0,2447 }, { 0, 5 }, { 0,2445 },
581 senkov 135
582 schoenebeck 111 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
583 schoenebeck 210 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 55 }, { 0,2435 },
584     { 0, 66 }, { 0,2433 }, { 0, 66 }, { 0,2431 }, { 0, 0 },
585     { 0, 0 }, { 0, 66 }, { 0,2427 }, { 0, 66 }, { 0,2425 },
586     { 0, 55 }, { 0,2423 }, { 0, 66 }, { 0,2421 }, { 0, 66 },
587     { 0,2419 }, { 0, 66 }, { 0,2417 }, { 0, 0 }, { 0, 66 },
588     { 0,2414 }, { 0, 0 }, { 0, 66 }, { 0,2411 }, { 0, 66 },
589     { 0,2409 }, { 0, 0 }, { 0, 66 }, { 0,2406 }, { 0, 66 },
590     { 0,2404 }, { 0, 66 }, { 0,2402 }, { 0, 66 }, { 0,2400 },
591 senkov 135 { 48, 683 }, { 49, 683 }, { 50, 683 }, { 51, 683 }, { 52, 683 },
592 schoenebeck 35
593 senkov 135 { 53, 683 }, { 54, 683 }, { 55, 683 }, { 56, 683 }, { 57, 683 },
594     { 46, 681 }, { 0, 0 }, { 48, 671 }, { 49, 671 }, { 50, 671 },
595     { 51, 671 }, { 52, 671 }, { 53, 671 }, { 54, 671 }, { 55, 671 },
596     { 56, 671 }, { 57, 671 }, { 46, 669 }, { 0, 0 }, { 48, 681 },
597     { 49, 681 }, { 50, 681 }, { 51, 681 }, { 52, 681 }, { 53, 681 },
598     { 54, 681 }, { 55, 681 }, { 56, 681 }, { 57, 681 }, { 68, 76 },
599 schoenebeck 210 { 0, 66 }, { 0,2363 }, { 0, 66 }, { 0,2361 }, { 0, 65 },
600     { 0,2359 }, { 0, 0 }, { 0,2357 }, { 69, 681 }, { 72, 679 },
601     { 67, 681 }, { 0, 0 }, { 0,2352 }, { 0, 0 }, { 69, 683 },
602 senkov 135 { 0, 0 }, { 85, 81 }, { 86, 127 }, { 85, 679 }, { 82, 681 },
603 schoenebeck 35
604 schoenebeck 210 { 0, 0 }, { 78, 683 }, { 89, 681 }, { 73, 682 }, { 0, 0 },
605     { 78, 683 }, { 73, 683 }, { 69, 683 }, { 0, 0 }, { 79, 684 },
606     { 0, 0 }, { 69, 722 }, { 0, 0 }, { 69, 722 }, { 79, 683 },
607 senkov 135 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
608     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
609 schoenebeck 210 { 85, 684 }, { 0, 0 }, { 0, 0 }, { 84, 725 }, { 85, 727 },
610 senkov 135 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
611 schoenebeck 210 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0,2306 }, { 0, 0 },
612 senkov 135 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
613     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
614 schoenebeck 35
615 senkov 135 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
616 schoenebeck 210 { 68, 724 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 78, 692 },
617     { 68, 734 }, { 0, 0 }, { 79, 699 }, { 0, 57 }, { 0,2280 },
618 senkov 135 { 1, 696 }, { 2, 696 }, { 3, 696 }, { 4, 696 }, { 5, 696 },
619     { 6, 696 }, { 7, 696 }, { 8, 696 }, { 9, 696 }, { 10, 696 },
620     { 11, 696 }, { 12, 696 }, { 13, 696 }, { 14, 696 }, { 15, 696 },
621     { 16, 696 }, { 17, 696 }, { 18, 696 }, { 19, 696 }, { 20, 696 },
622     { 21, 696 }, { 22, 696 }, { 23, 696 }, { 24, 696 }, { 25, 696 },
623     { 26, 696 }, { 27, 696 }, { 28, 696 }, { 29, 696 }, { 30, 696 },
624     { 31, 696 }, { 32, 696 }, { 33, 696 }, { 34, 696 }, { 35, 696 },
625    
626     { 36, 696 }, { 37, 696 }, { 38, 696 }, { 65, 982 }, { 40, 696 },
627     { 41, 696 }, { 42, 696 }, { 43, 696 }, { 44, 696 }, { 45, 696 },
628     { 46, 696 }, { 47, 696 }, { 48, 696 }, { 49, 696 }, { 50, 696 },
629     { 51, 696 }, { 52, 696 }, { 53, 696 }, { 54, 696 }, { 55, 696 },
630     { 56, 696 }, { 57, 696 }, { 58, 696 }, { 59, 696 }, { 60, 696 },
631     { 61, 696 }, { 62, 696 }, { 63, 696 }, { 64, 696 }, { 65, 696 },
632     { 66, 696 }, { 67, 696 }, { 68, 696 }, { 69, 696 }, { 70, 696 },
633     { 71, 696 }, { 72, 696 }, { 73, 696 }, { 74, 696 }, { 75, 696 },
634     { 76, 696 }, { 77, 696 }, { 78, 696 }, { 79, 696 }, { 80, 696 },
635     { 81, 696 }, { 82, 696 }, { 83, 696 }, { 84, 696 }, { 85, 696 },
636    
637     { 86, 696 }, { 87, 696 }, { 88, 696 }, { 89, 696 }, { 90, 696 },
638     { 91, 696 }, { 0, 0 }, { 93, 696 }, { 94, 696 }, { 95, 696 },
639     { 96, 696 }, { 97, 696 }, { 98, 696 }, { 99, 696 }, { 100, 696 },
640     { 101, 696 }, { 102, 696 }, { 103, 696 }, { 104, 696 }, { 105, 696 },
641     { 106, 696 }, { 107, 696 }, { 108, 696 }, { 109, 696 }, { 110, 696 },
642     { 111, 696 }, { 112, 696 }, { 113, 696 }, { 114, 696 }, { 115, 696 },
643     { 116, 696 }, { 117, 696 }, { 118, 696 }, { 119, 696 }, { 120, 696 },
644     { 121, 696 }, { 122, 696 }, { 123, 696 }, { 124, 696 }, { 125, 696 },
645     { 126, 696 }, { 127, 696 }, { 128, 696 }, { 129, 696 }, { 130, 696 },
646     { 131, 696 }, { 132, 696 }, { 133, 696 }, { 134, 696 }, { 135, 696 },
647    
648     { 136, 696 }, { 137, 696 }, { 138, 696 }, { 139, 696 }, { 140, 696 },
649     { 141, 696 }, { 142, 696 }, { 143, 696 }, { 144, 696 }, { 145, 696 },
650     { 146, 696 }, { 147, 696 }, { 148, 696 }, { 149, 696 }, { 150, 696 },
651     { 151, 696 }, { 152, 696 }, { 153, 696 }, { 154, 696 }, { 155, 696 },
652     { 156, 696 }, { 157, 696 }, { 158, 696 }, { 159, 696 }, { 160, 696 },
653     { 161, 696 }, { 162, 696 }, { 163, 696 }, { 164, 696 }, { 165, 696 },
654     { 166, 696 }, { 167, 696 }, { 168, 696 }, { 169, 696 }, { 170, 696 },
655     { 171, 696 }, { 172, 696 }, { 173, 696 }, { 174, 696 }, { 175, 696 },
656     { 176, 696 }, { 177, 696 }, { 178, 696 }, { 179, 696 }, { 180, 696 },
657     { 181, 696 }, { 182, 696 }, { 183, 696 }, { 184, 696 }, { 185, 696 },
658    
659     { 186, 696 }, { 187, 696 }, { 188, 696 }, { 189, 696 }, { 190, 696 },
660     { 191, 696 }, { 192, 696 }, { 193, 696 }, { 194, 696 }, { 195, 696 },
661     { 196, 696 }, { 197, 696 }, { 198, 696 }, { 199, 696 }, { 200, 696 },
662     { 201, 696 }, { 202, 696 }, { 203, 696 }, { 204, 696 }, { 205, 696 },
663     { 206, 696 }, { 207, 696 }, { 208, 696 }, { 209, 696 }, { 210, 696 },
664     { 211, 696 }, { 212, 696 }, { 213, 696 }, { 214, 696 }, { 215, 696 },
665     { 216, 696 }, { 217, 696 }, { 218, 696 }, { 219, 696 }, { 220, 696 },
666     { 221, 696 }, { 222, 696 }, { 223, 696 }, { 224, 696 }, { 225, 696 },
667     { 226, 696 }, { 227, 696 }, { 228, 696 }, { 229, 696 }, { 230, 696 },
668     { 231, 696 }, { 232, 696 }, { 233, 696 }, { 234, 696 }, { 235, 696 },
669    
670     { 236, 696 }, { 237, 696 }, { 238, 696 }, { 239, 696 }, { 240, 696 },
671     { 241, 696 }, { 242, 696 }, { 243, 696 }, { 244, 696 }, { 245, 696 },
672     { 246, 696 }, { 247, 696 }, { 248, 696 }, { 249, 696 }, { 250, 696 },
673     { 251, 696 }, { 252, 696 }, { 253, 696 }, { 254, 696 }, { 255, 696 },
674 schoenebeck 210 { 256, 696 }, { 0, 67 }, { 0,2022 }, { 1, 364 }, { 2, 364 },
675     { 3, 364 }, { 4, 364 }, { 5, 364 }, { 6, 364 }, { 7, 364 },
676     { 8, 364 }, { 9, 364 }, { 10, 364 }, { 11, 364 }, { 12, 364 },
677     { 13, 364 }, { 14, 364 }, { 15, 364 }, { 16, 364 }, { 17, 364 },
678     { 18, 364 }, { 19, 364 }, { 20, 364 }, { 21, 364 }, { 22, 364 },
679     { 23, 364 }, { 24, 364 }, { 25, 364 }, { 26, 364 }, { 27, 364 },
680 senkov 135
681 schoenebeck 210 { 28, 364 }, { 29, 364 }, { 30, 364 }, { 31, 364 }, { 32, 364 },
682     { 33, 364 }, { 34, 366 }, { 35, 364 }, { 36, 364 }, { 37, 364 },
683     { 38, 364 }, { 39, 368 }, { 40, 364 }, { 41, 364 }, { 42, 364 },
684     { 43, 364 }, { 44, 364 }, { 45, 364 }, { 46, 364 }, { 47, 364 },
685     { 48, 364 }, { 49, 364 }, { 50, 364 }, { 51, 364 }, { 52, 364 },
686     { 53, 364 }, { 54, 364 }, { 55, 364 }, { 56, 364 }, { 57, 364 },
687     { 58, 364 }, { 59, 364 }, { 60, 364 }, { 61, 364 }, { 62, 364 },
688     { 63, 364 }, { 64, 364 }, { 65, 364 }, { 66, 364 }, { 67, 364 },
689     { 68, 364 }, { 69, 364 }, { 70, 364 }, { 71, 364 }, { 72, 364 },
690     { 73, 364 }, { 74, 364 }, { 75, 364 }, { 76, 364 }, { 77, 364 },
691 senkov 135
692 schoenebeck 210 { 78, 364 }, { 79, 364 }, { 80, 364 }, { 81, 364 }, { 82, 364 },
693     { 83, 364 }, { 84, 364 }, { 85, 364 }, { 86, 364 }, { 87, 364 },
694     { 88, 364 }, { 89, 364 }, { 90, 364 }, { 91, 364 }, { 92, 379 },
695     { 93, 364 }, { 94, 364 }, { 95, 364 }, { 96, 364 }, { 97, 364 },
696     { 98, 364 }, { 99, 364 }, { 100, 364 }, { 101, 364 }, { 102, 364 },
697     { 103, 364 }, { 104, 364 }, { 105, 364 }, { 106, 364 }, { 107, 364 },
698     { 108, 364 }, { 109, 364 }, { 110, 383 }, { 111, 364 }, { 112, 364 },
699     { 113, 364 }, { 114, 385 }, { 115, 364 }, { 116, 387 }, { 117, 364 },
700     { 118, 364 }, { 119, 364 }, { 120, 364 }, { 121, 364 }, { 122, 364 },
701     { 123, 364 }, { 124, 364 }, { 125, 364 }, { 126, 364 }, { 127, 364 },
702 senkov 135
703 schoenebeck 210 { 128, 364 }, { 129, 364 }, { 130, 364 }, { 131, 364 }, { 132, 364 },
704     { 133, 364 }, { 134, 364 }, { 135, 364 }, { 136, 364 }, { 137, 364 },
705     { 138, 364 }, { 139, 364 }, { 140, 364 }, { 141, 364 }, { 142, 364 },
706     { 143, 364 }, { 144, 364 }, { 145, 364 }, { 146, 364 }, { 147, 364 },
707     { 148, 364 }, { 149, 364 }, { 150, 364 }, { 151, 364 }, { 152, 364 },
708     { 153, 364 }, { 154, 364 }, { 155, 364 }, { 156, 364 }, { 157, 364 },
709     { 158, 364 }, { 159, 364 }, { 160, 364 }, { 161, 364 }, { 162, 364 },
710     { 163, 364 }, { 164, 364 }, { 165, 364 }, { 166, 364 }, { 167, 364 },
711     { 168, 364 }, { 169, 364 }, { 170, 364 }, { 171, 364 }, { 172, 364 },
712     { 173, 364 }, { 174, 364 }, { 175, 364 }, { 176, 364 }, { 177, 364 },
713 senkov 135
714 schoenebeck 210 { 178, 364 }, { 179, 364 }, { 180, 364 }, { 181, 364 }, { 182, 364 },
715     { 183, 364 }, { 184, 364 }, { 185, 364 }, { 186, 364 }, { 187, 364 },
716     { 188, 364 }, { 189, 364 }, { 190, 364 }, { 191, 364 }, { 192, 364 },
717     { 193, 364 }, { 194, 364 }, { 195, 364 }, { 196, 364 }, { 197, 364 },
718     { 198, 364 }, { 199, 364 }, { 200, 364 }, { 201, 364 }, { 202, 364 },
719     { 203, 364 }, { 204, 364 }, { 205, 364 }, { 206, 364 }, { 207, 364 },
720     { 208, 364 }, { 209, 364 }, { 210, 364 }, { 211, 364 }, { 212, 364 },
721     { 213, 364 }, { 214, 364 }, { 215, 364 }, { 216, 364 }, { 217, 364 },
722     { 218, 364 }, { 219, 364 }, { 220, 364 }, { 221, 364 }, { 222, 364 },
723     { 223, 364 }, { 224, 364 }, { 225, 364 }, { 226, 364 }, { 227, 364 },
724 senkov 135
725 schoenebeck 210 { 228, 364 }, { 229, 364 }, { 230, 364 }, { 231, 364 }, { 232, 364 },
726     { 233, 364 }, { 234, 364 }, { 235, 364 }, { 236, 364 }, { 237, 364 },
727     { 238, 364 }, { 239, 364 }, { 240, 364 }, { 241, 364 }, { 242, 364 },
728     { 243, 364 }, { 244, 364 }, { 245, 364 }, { 246, 364 }, { 247, 364 },
729     { 248, 364 }, { 249, 364 }, { 250, 364 }, { 251, 364 }, { 252, 364 },
730     { 253, 364 }, { 254, 364 }, { 255, 364 }, { 256, 364 }, { 0, 0 },
731     { 0,1764 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
732 senkov 135 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
733 schoenebeck 210 { 0,1754 }, { 0, 0 }, { 0,1752 }, { 0, 0 }, { 0,1750 },
734     { 0, 0 }, { 0,1748 }, { 0, 0 }, { 0,1746 }, { 0, 0 },
735 senkov 135
736 schoenebeck 210 { 0,1744 }, { 0, 55 }, { 0,1742 }, { 0, 0 }, { 0,1740 },
737     { 0, 0 }, { 0,1738 }, { 0, 0 }, { 0,1736 }, { 0, 0 },
738     { 0,1734 }, { 0, 0 }, { 0,1732 }, { 0, 0 }, { 0,1730 },
739     { 0, 0 }, { 0,1728 }, { 0, 0 }, { 0,1726 }, { 0, 0 },
740     { 0, 0 }, { 0,1723 }, { 0, 0 }, { 0, 0 }, { 0,1720 },
741     { 0, 0 }, { 46, 10 }, { 0, 0 }, { 48, 0 }, { 49, 0 },
742 senkov 135 { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 },
743     { 55, 0 }, { 56, 0 }, { 57, 0 }, { 48, 428 }, { 49, 428 },
744     { 50, 428 }, { 51, 428 }, { 52, 428 }, { 53, 428 }, { 54, 428 },
745     { 55, 428 }, { 56, 428 }, { 57, 428 }, { 46, -12 }, { 0, 0 },
746    
747 schoenebeck 111 { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 }, { 52, 0 },
748     { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 }, { 57, 0 },
749 schoenebeck 210 { 0, 0 }, { 65, 431 }, { 70, 430 }, { 0, 0 }, { 0,1680 },
750     { 0, 0 }, { 0,1678 }, { 69, 432 }, { 0, 0 }, { 0,1675 },
751     { 0, 0 }, { 0,1673 }, { 0, 0 }, { 0,1671 }, { 0, 0 },
752     { 0, 0 }, { 72, 430 }, { 71, 430 }, { 84, 431 }, { 65, 432 },
753     { 70, 430 }, { 0, 0 }, { 0,1662 }, { 83, 432 }, { 68, 432 },
754     { 0, 64 }, { 0,1658 }, { 0, 62 }, { 0,1656 }, { 0, 63 },
755     { 0,1654 }, { 0, 0 }, { 84, 430 }, { 83, 432 }, { 0, 0 },
756     { 83, 432 }, { 78, 434 }, { 73, 434 }, { 0, 0 }, { 83, 434 },
757 schoenebeck 35
758 schoenebeck 210 { 0, 61 }, { 0,1643 }, { 84, 436 }, { 82, 435 }, { 0, 58 },
759     { 0,1639 }, { 0, 59 }, { 0,1637 }, { 0, 60 }, { 0,1635 },
760     { 0, 7 }, { 0,1633 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
761 senkov 135 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
762     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
763 schoenebeck 210 { 0, 0 }, { 0,1618 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
764 senkov 135 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
765 schoenebeck 210 { 0, 0 }, { 0, 0 }, { 66, 408 }, { 0, 0 }, { 0, 0 },
766     { 0, 0 }, { 77, 396 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
767     { 0, 0 }, { 0, 0 }, { 83, 398 }, { 0, 0 }, { 0, 0 },
768 schoenebeck 35
769 schoenebeck 210 { 84, 398 }, { 82, 408 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
770     { 73, 401 }, { 83, 408 }, { 0, 0 }, { 76, 403 }, { 0, 57 },
771     { 0,1584 }, { 1, 0 }, { 2, 0 }, { 3, 0 }, { 4, 0 },
772 senkov 135 { 5, 0 }, { 6, 0 }, { 7, 0 }, { 8, 0 }, { 9, 0 },
773     { 10, 0 }, { 11, 0 }, { 12, 0 }, { 13, 0 }, { 14, 0 },
774     { 15, 0 }, { 16, 0 }, { 17, 0 }, { 18, 0 }, { 19, 0 },
775     { 20, 0 }, { 21, 0 }, { 22, 0 }, { 23, 0 }, { 24, 0 },
776     { 25, 0 }, { 26, 0 }, { 27, 0 }, { 28, 0 }, { 29, 0 },
777     { 30, 0 }, { 31, 0 }, { 32, 0 }, { 33, 0 }, { 34, 0 },
778 schoenebeck 210 { 35, 0 }, { 36, 0 }, { 37, 0 }, { 38, 0 }, { 73, 362 },
779 schoenebeck 35
780 senkov 135 { 40, 0 }, { 41, 0 }, { 42, 0 }, { 43, 0 }, { 44, 0 },
781     { 45, 0 }, { 46, 0 }, { 47, 0 }, { 48, 0 }, { 49, 0 },
782     { 50, 0 }, { 51, 0 }, { 52, 0 }, { 53, 0 }, { 54, 0 },
783     { 55, 0 }, { 56, 0 }, { 57, 0 }, { 58, 0 }, { 59, 0 },
784     { 60, 0 }, { 61, 0 }, { 62, 0 }, { 63, 0 }, { 64, 0 },
785     { 65, 0 }, { 66, 0 }, { 67, 0 }, { 68, 0 }, { 69, 0 },
786     { 70, 0 }, { 71, 0 }, { 72, 0 }, { 73, 0 }, { 74, 0 },
787     { 75, 0 }, { 76, 0 }, { 77, 0 }, { 78, 0 }, { 79, 0 },
788     { 80, 0 }, { 81, 0 }, { 82, 0 }, { 83, 0 }, { 84, 0 },
789     { 85, 0 }, { 86, 0 }, { 87, 0 }, { 88, 0 }, { 89, 0 },
790 schoenebeck 35
791 senkov 135 { 90, 0 }, { 91, 0 }, { 0, 0 }, { 93, 0 }, { 94, 0 },
792     { 95, 0 }, { 96, 0 }, { 97, 0 }, { 98, 0 }, { 99, 0 },
793     { 100, 0 }, { 101, 0 }, { 102, 0 }, { 103, 0 }, { 104, 0 },
794     { 105, 0 }, { 106, 0 }, { 107, 0 }, { 108, 0 }, { 109, 0 },
795     { 110, 0 }, { 111, 0 }, { 112, 0 }, { 113, 0 }, { 114, 0 },
796     { 115, 0 }, { 116, 0 }, { 117, 0 }, { 118, 0 }, { 119, 0 },
797     { 120, 0 }, { 121, 0 }, { 122, 0 }, { 123, 0 }, { 124, 0 },
798     { 125, 0 }, { 126, 0 }, { 127, 0 }, { 128, 0 }, { 129, 0 },
799     { 130, 0 }, { 131, 0 }, { 132, 0 }, { 133, 0 }, { 134, 0 },
800     { 135, 0 }, { 136, 0 }, { 137, 0 }, { 138, 0 }, { 139, 0 },
801 schoenebeck 123
802 senkov 135 { 140, 0 }, { 141, 0 }, { 142, 0 }, { 143, 0 }, { 144, 0 },
803     { 145, 0 }, { 146, 0 }, { 147, 0 }, { 148, 0 }, { 149, 0 },
804     { 150, 0 }, { 151, 0 }, { 152, 0 }, { 153, 0 }, { 154, 0 },
805     { 155, 0 }, { 156, 0 }, { 157, 0 }, { 158, 0 }, { 159, 0 },
806     { 160, 0 }, { 161, 0 }, { 162, 0 }, { 163, 0 }, { 164, 0 },
807     { 165, 0 }, { 166, 0 }, { 167, 0 }, { 168, 0 }, { 169, 0 },
808     { 170, 0 }, { 171, 0 }, { 172, 0 }, { 173, 0 }, { 174, 0 },
809     { 175, 0 }, { 176, 0 }, { 177, 0 }, { 178, 0 }, { 179, 0 },
810     { 180, 0 }, { 181, 0 }, { 182, 0 }, { 183, 0 }, { 184, 0 },
811     { 185, 0 }, { 186, 0 }, { 187, 0 }, { 188, 0 }, { 189, 0 },
812 schoenebeck 123
813 senkov 135 { 190, 0 }, { 191, 0 }, { 192, 0 }, { 193, 0 }, { 194, 0 },
814     { 195, 0 }, { 196, 0 }, { 197, 0 }, { 198, 0 }, { 199, 0 },
815     { 200, 0 }, { 201, 0 }, { 202, 0 }, { 203, 0 }, { 204, 0 },
816     { 205, 0 }, { 206, 0 }, { 207, 0 }, { 208, 0 }, { 209, 0 },
817     { 210, 0 }, { 211, 0 }, { 212, 0 }, { 213, 0 }, { 214, 0 },
818     { 215, 0 }, { 216, 0 }, { 217, 0 }, { 218, 0 }, { 219, 0 },
819     { 220, 0 }, { 221, 0 }, { 222, 0 }, { 223, 0 }, { 224, 0 },
820     { 225, 0 }, { 226, 0 }, { 227, 0 }, { 228, 0 }, { 229, 0 },
821     { 230, 0 }, { 231, 0 }, { 232, 0 }, { 233, 0 }, { 234, 0 },
822     { 235, 0 }, { 236, 0 }, { 237, 0 }, { 238, 0 }, { 239, 0 },
823 schoenebeck 123
824 senkov 135 { 240, 0 }, { 241, 0 }, { 242, 0 }, { 243, 0 }, { 244, 0 },
825     { 245, 0 }, { 246, 0 }, { 247, 0 }, { 248, 0 }, { 249, 0 },
826     { 250, 0 }, { 251, 0 }, { 252, 0 }, { 253, 0 }, { 254, 0 },
827 schoenebeck 210 { 255, 0 }, { 256, 0 }, { 0, 6 }, { 0,1326 }, { 0, 0 },
828     { 0,1324 }, { 0, 0 }, { 0,1322 }, { 0, 0 }, { 0, 0 },
829     { 0,1319 }, { 0, 0 }, { 0,1317 }, { 0, 0 }, { 0, 0 },
830 senkov 155 { 0,1314 }, { 0, 0 }, { 0,1312 }, { 0, 0 }, { 0,1310 },
831 schoenebeck 210 { 0, 0 }, { 0,1308 }, { 0, 8 }, { 0,1306 }, { 0, 0 },
832 senkov 155 { 0,1304 }, { 0, 0 }, { 0,1302 }, { 0, 0 }, { 0,1300 },
833     { 0, 0 }, { 0,1298 }, { 0, 0 }, { 0,1296 }, { 0, 0 },
834 schoenebeck 210
835     { 0,1294 }, { 0, 0 }, { 0,1292 }, { 0, 0 }, { 0,1290 },
836     { 0, 0 }, { 0,1288 }, { 0, 0 }, { 0,1286 }, { 0, 0 },
837     { 0,1284 }, { 0, 0 }, { 0,1282 }, { 0, 15 }, { 0,1280 },
838 senkov 141 { 0, 0 }, { 48, 0 }, { 49, 0 }, { 50, 0 }, { 51, 0 },
839 senkov 135 { 52, 0 }, { 53, 0 }, { 54, 0 }, { 55, 0 }, { 56, 0 },
840 schoenebeck 210 { 57, 0 }, { 0, 0 }, { 0,1267 }, { 0, 0 }, { 0,1265 },
841     { 0, 0 }, { 0,1263 }, { 0, 0 }, { 0,1261 }, { 0, 0 },
842     { 0,1259 }, { 0, 0 }, { 0, 0 }, { 0,1256 }, { 0, 0 },
843     { 0, 0 }, { 0, 0 }, { 70, 77 }, { 73, 77 }, { 69, 76 },
844     { 65, 77 }, { 0, 0 }, { 0,1247 }, { 0, 0 }, { 0,1245 },
845 schoenebeck 123
846 schoenebeck 210 { 0, 0 }, { 0,1243 }, { 0, 0 }, { 0,1241 }, { 0, 0 },
847     { 78, 76 }, { 0, 0 }, { 0,1237 }, { 0, 0 }, { 73, 94 },
848     { 0, 0 }, { 0,1233 }, { 0, 0 }, { 79, 91 }, { 68, 95 },
849     { 0, 0 }, { 84, 79 }, { 67, 99 }, { 0, 0 }, { 79, 93 },
850     { 0, 0 }, { 73, 96 }, { 0, 0 }, { 67, 100 }, { 0, 53 },
851     { 0,1219 }, { 84, 93 }, { 73, 100 }, { 84, 93 }, { 0, 0 },
852     { 0,1214 }, { 69, 102 }, { 0, 23 }, { 0,1211 }, { 0, 0 },
853     { 0,1209 }, { 0, 11 }, { 0,1207 }, { 0, 0 }, { 79, 100 },
854     { 0, 12 }, { 0,1203 }, { 84, 100 }, { 0, 0 }, { 0,1200 },
855     { 0, 0 }, { 69, 95 }, { 95, 100 }, { 0, 0 }, { 0,1195 },
856 schoenebeck 35
857 schoenebeck 210 { 67, 97 }, { 0, 0 }, { 0,1192 }, { 0, 0 }, { 0,1190 },
858     { 0, 0 }, { 0,1188 }, { 0, 54 }, { 0,1186 }, { 0, 0 },
859     { 0,1184 }, { 0, 0 }, { 83, 96 }, { 0, 0 }, { 0,1180 },
860     { 0, 0 }, { 85, 96 }, { 79, 98 }, { 69, 91 }, { 0, 0 },
861     { 85, 98 }, { 0, 0 }, { 0,1172 }, { 76, 91 }, { 0, 0 },
862     { 0,1169 }, { 0, 0 }, { 0,1167 }, { 0, 0 }, { 0, 0 },
863     { 0,1164 }, { 78, 94 }, { 0, 0 }, { 0,1161 }, { 83, 94 },
864     { 0, 0 }, { 0,1158 }, { 0, 0 }, { 0,1156 }, { 0, 0 },
865     { 0,1154 }, { 84, 92 }, { 0, 0 }, { 82, 90 }, { 0, 49 },
866     { 0,1149 }, { 0, 0 }, { 0,1147 }, { 0, 0 }, { 0,1145 },
867 schoenebeck 35
868 schoenebeck 210 { 0, 0 }, { 0,1143 }, { 0, 0 }, { 0, 0 }, { 0,1140 },
869     { 0, 0 }, { 0,1138 }, { 0, 0 }, { 78, 74 }, { 0, 0 },
870     { 0,1134 }, { 0, 0 }, { 0,1132 }, { 0, 0 }, { 0,1130 },
871     { 0, 0 }, { 0,1128 }, { 82, 71 }, { 69, 63 }, { 0, 0 },
872     { 0,1124 }, { 0, 0 }, { 0, 0 }, { 0,1121 }, { 70, 62 },
873     { 69, 64 }, { 0, 51 }, { 0,1117 }, { 0, 0 }, { 77, 62 },
874     { 0, 0 }, { 0,1113 }, { 0, 0 }, { 0,1111 }, { 0, 0 },
875     { 0,1109 }, { 0, 0 }, { 65, 59 }, { 0, 0 }, { 95, 66 },
876     { 0, 0 }, { 0,1103 }, { 67, 58 }, { 66, 58 }, { 0, 0 },
877     { 0,1099 }, { 86, 63 }, { 0, 0 }, { 84, 63 }, { 69, 61 },
878 schoenebeck 35
879 schoenebeck 210 { 0, 0 }, { 0,1093 }, { 0, 0 }, { 65, 67 }, { 0, 0 },
880     { 0,1089 }, { 0, 0 }, { 0,1087 }, { 0, 0 }, { 0,1085 },
881     { 77, 62 }, { 0, 9 }, { 0,1082 }, { 0, 0 }, { 0,1080 },
882     { 0, 0 }, { 69, 62 }, { 0, 0 }, { 69, 63 }, { 0, 28 },
883     { 0,1074 }, { 0, 0 }, { 82, 67 }, { 69, 66 }, { 0, 0 },
884     { 0, 0 }, { 0, 0 }, { 0,1067 }, { 0, 0 }, { 0,1065 },
885     { 79, 63 }, { 95, 65 }, { 0, 0 }, { 73, 69 }, { 0, 0 },
886     { 0,1059 }, { 0, 0 }, { 0,1057 }, { 76, 73 }, { 73, 79 },
887     { 0, 0 }, { 85, 71 }, { 69, 77 }, { 79, 73 }, { 0, 0 },
888     { 0,1049 }, { 0, 0 }, { 0,1047 }, { 78, 77 }, { 0, 14 },
889 schoenebeck 35
890 schoenebeck 210 { 0,1044 }, { 0, 0 }, { 0,1042 }, { 0, 0 }, { 0,1040 },
891     { 0, 0 }, { 0,1038 }, { 0, 0 }, { 77, 71 }, { 0, 0 },
892     { 0, 0 }, { 0,1033 }, { 0, 48 }, { 0,1031 }, { 69, 68 },
893     { 82, 71 }, { 0, 0 }, { 0,1027 }, { 83, 71 }, { 0, 0 },
894     { 0,1024 }, { 66, 65 }, { 0, 0 }, { 0,1021 }, { 0, 18 },
895     { 0,1019 }, { 0, 10 }, { 0,1017 }, { 0, 0 }, { 0,1015 },
896     { 79, 66 }, { 0, 0 }, { 0,1012 }, { 0, 0 }, { 0,1010 },
897     { 76, 66 }, { 95, 70 }, { 0, 0 }, { 0,1006 }, { 0, 0 },
898     { 0,1004 }, { 0, 0 }, { 0,1002 }, { 0, 0 }, { 0,1000 },
899     { 0, 0 }, { 0, 0 }, { 0, 997 }, { 0, 0 }, { 0, 995 },
900 schoenebeck 35
901 schoenebeck 210 { 0, 0 }, { 0, 993 }, { 95, 66 }, { 89, 63 }, { 77, 52 },
902     { 68, 51 }, { 0, 0 }, { 78, 53 }, { 0, 0 }, { 0, 985 },
903     { 0, 0 }, { 76, 49 }, { 67, 45 }, { 0, 0 }, { 0, 980 },
904     { 0, 0 }, { 0, 978 }, { 0, 22 }, { 0, 976 }, { 0, 0 },
905     { 0, 974 }, { 0, 0 }, { 0, 972 }, { 67, 43 }, { 0, 0 },
906     { 0, 969 }, { 0, 0 }, { 73, 43 }, { 67, 40 }, { 0, 0 },
907     { 0, 964 }, { 84, 45 }, { 0, 0 }, { 0, 961 }, { 0, 0 },
908     { 0, 0 }, { 0, 0 }, { 0, 957 }, { 0, 0 }, { 0, 955 },
909     { 0, 0 }, { 0, 953 }, { 0, 0 }, { 70, 43 }, { 0, 0 },
910     { 0, 0 }, { 76, 44 }, { 95, 42 }, { 69, 41 }, { 65, 41 },
911 schoenebeck 35
912 schoenebeck 210 { 0, 0 }, { 0, 943 }, { 85, 42 }, { 65, 42 }, { 0, 0 },
913     { 65, 43 }, { 0, 0 }, { 65, 45 }, { 83, 43 }, { 0, 0 },
914     { 0, 934 }, { 67, 45 }, { 80, 40 }, { 66, 44 }, { 0, 0 },
915     { 0, 0 }, { 0, 928 }, { 0, 0 }, { 0, 926 }, { 0, 0 },
916     { 0, 0 }, { 0, 923 }, { 0, 0 }, { 0, 921 }, { 0, 0 },
917     { 0, 919 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 915 },
918     { 79, 59 }, { 82, 52 }, { 0, 0 }, { 69, 54 }, { 0, 13 },
919     { 0, 909 }, { 0, 0 }, { 0, 907 }, { 0, 0 }, { 73, 55 },
920     { 0, 0 }, { 0, 0 }, { 0, 902 }, { 84, 57 }, { 0, 0 },
921     { 0, 899 }, { 0, 16 }, { 0, 897 }, { 78, 53 }, { 0, 0 },
922 schoenebeck 35
923 schoenebeck 210 { 0, 894 }, { 0, 0 }, { 0, 0 }, { 78, 54 }, { 0, 0 },
924     { 0, 889 }, { 76, 55 }, { 85, 53 }, { 71, 55 }, { 0, 0 },
925     { 69, 56 }, { 0, 0 }, { 0, 882 }, { 0, 0 }, { 0, 0 },
926     { 0, 0 }, { 0, 878 }, { 84, 54 }, { 79, 56 }, { 0, 0 },
927     { 0, 874 }, { 0, 27 }, { 0, 872 }, { 0, 0 }, { 73, 49 },
928     { 0, 47 }, { 0, 868 }, { 0, 0 }, { 0, 866 }, { 0, 0 },
929     { 0, 864 }, { 0, 50 }, { 0, 862 }, { 0, 0 }, { 0, 860 },
930     { 0, 0 }, { 0, 858 }, { 0, 0 }, { 0, 856 }, { 0, 0 },
931     { 0, 854 }, { 0, 0 }, { 0, 852 }, { 0, 0 }, { 0, 0 },
932     { 85, 45 }, { 80, 46 }, { 76, 49 }, { 69, 49 }, { 0, 0 },
933 schoenebeck 35
934 schoenebeck 210 { 0, 844 }, { 0, 0 }, { 0, 842 }, { 0, 24 }, { 0, 840 },
935     { 0, 0 }, { 0, 0 }, { 84, 49 }, { 0, 0 }, { 84, 51 },
936     { 73, 43 }, { 69, 40 }, { 0, 0 }, { 95, 48 }, { 0, 0 },
937     { 0, 829 }, { 66, 36 }, { 0, 0 }, { 0, 826 }, { 0, 0 },
938     { 0, 824 }, { 0, 0 }, { 0, 822 }, { 0, 17 }, { 0, 820 },
939     { 0, 26 }, { 0, 818 }, { 0, 0 }, { 0, 816 }, { 0, 0 },
940     { 85, 39 }, { 65, 26 }, { 0, 0 }, { 78, 33 }, { 0, 0 },
941     { 69, 34 }, { 0, 0 }, { 0, 807 }, { 0, 0 }, { 0, 805 },
942     { 0, 0 }, { 0, 803 }, { 0, 0 }, { 77, 36 }, { 0, 0 },
943     { 0, 799 }, { 76, 34 }, { 85, 28 }, { 0, 0 }, { 0, 795 },
944 schoenebeck 35
945 schoenebeck 210 { 0, 0 }, { 0, 793 }, { 0, 0 }, { 0, 791 }, { 0, 0 },
946     { 69, 38 }, { 0, 0 }, { 79, 40 }, { 0, 0 }, { 79, 40 },
947     { 0, 0 }, { 0, 783 }, { 78, 38 }, { 0, 19 }, { 0, 780 },
948     { 0, 25 }, { 0, 778 }, { 0, 0 }, { 0, 776 }, { 0, 0 },
949     { 0, 774 }, { 95, 39 }, { 84, 38 }, { 0, 0 }, { 84, 38 },
950     { 73, 39 }, { 0, 0 }, { 85, 45 }, { 78, 39 }, { 0, 0 },
951     { 0, 764 }, { 0, 0 }, { 67, 30 }, { 68, 34 }, { 0, 0 },
952     { 0, 759 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 755 },
953     { 0, 0 }, { 0, 753 }, { 0, 0 }, { 0, 751 }, { 0, 0 },
954     { 80, 36 }, { 0, 0 }, { 0, 747 }, { 78, 44 }, { 84, 38 },
955 senkov 135
956 schoenebeck 210 { 0, 0 }, { 0, 743 }, { 0, 0 }, { 85, 43 }, { 0, 0 },
957     { 68, 33 }, { 84, 44 }, { 0, 52 }, { 0, 736 }, { 68, 44 },
958     { 71, 41 }, { 0, 0 }, { 0, 732 }, { 0, 0 }, { 0, 730 },
959     { 0, 0 }, { 0, 728 }, { 72, 44 }, { 69, 42 }, { 0, 0 },
960     { 0, 724 }, { 0, 0 }, { 0, 722 }, { 95, 40 }, { 0, 0 },
961     { 0, 719 }, { 0, 0 }, { 0, 0 }, { 0, 716 }, { 0, 0 },
962     { 79, 46 }, { 82, 44 }, { 0, 0 }, { 0, 0 }, { 0, 710 },
963     { 67, 44 }, { 68, 46 }, { 0, 0 }, { 0, 706 }, { 0, 0 },
964     { 0, 0 }, { 0, 703 }, { 89, 48 }, { 73, 50 }, { 83, 47 },
965     { 0, 0 }, { 0, 698 }, { 0, 0 }, { 0, 696 }, { 0, 0 },
966 senkov 135
967 schoenebeck 210 { 0, 694 }, { 0, 0 }, { 84, 48 }, { 73, 42 }, { 65, 39 },
968     { 0, 0 }, { 0, 688 }, { 0, 0 }, { 73, 40 }, { 0, 0 },
969     { 0, 684 }, { 0, 0 }, { 0, 682 }, { 0, 0 }, { 0, 680 },
970     { 0, 0 }, { 73, 45 }, { 0, 0 }, { 0, 676 }, { 0, 0 },
971     { 0, 674 }, { 0, 0 }, { 0, 672 }, { 0, 0 }, { 0, 670 },
972     { 0, 44 }, { 0, 668 }, { 86, 43 }, { 0, 0 }, { 82, 44 },
973     { 0, 0 }, { 80, 45 }, { 0, 0 }, { 69, 36 }, { 72, 36 },
974     { 0, 46 }, { 0, 658 }, { 0, 0 }, { 0, 656 }, { 0, 0 },
975     { 0, 654 }, { 0, 0 }, { 0, 652 }, { 0, 0 }, { 0, 0 },
976     { 0, 649 }, { 82, 42 }, { 0, 0 }, { 0, 646 }, { 79, 42 },
977 senkov 135
978 schoenebeck 210 { 78, 42 }, { 0, 0 }, { 0, 642 }, { 0, 0 }, { 0, 640 },
979     { 89, 44 }, { 78, 42 }, { 73, 38 }, { 0, 0 }, { 0, 0 },
980     { 0, 634 }, { 0, 0 }, { 0, 632 }, { 65, 40 }, { 0, 0 },
981     { 69, 40 }, { 0, 0 }, { 0, 627 }, { 0, 0 }, { 0, 0 },
982     { 95, 43 }, { 0, 0 }, { 0, 622 }, { 0, 0 }, { 86, 36 },
983     { 84, 35 }, { 0, 0 }, { 0, 617 }, { 0, 0 }, { 73, 36 },
984     { 0, 0 }, { 0, 613 }, { 0, 0 }, { 69, 38 }, { 0, 0 },
985     { 0, 609 }, { 86, 40 }, { 0, 36 }, { 0, 606 }, { 67, 40 },
986     { 80, 35 }, { 73, 36 }, { 0, 0 }, { 69, 43 }, { 0, 0 },
987     { 0, 599 }, { 0, 20 }, { 0, 597 }, { 78, 40 }, { 0, 0 },
988 senkov 135
989 schoenebeck 210 { 0, 0 }, { 0, 593 }, { 0, 0 }, { 0, 591 }, { 0, 41 },
990     { 0, 589 }, { 0, 0 }, { 95, 36 }, { 0, 43 }, { 0, 585 },
991     { 0, 0 }, { 0, 583 }, { 0, 0 }, { 73, 41 }, { 69, 43 },
992     { 0, 0 }, { 78, 39 }, { 0, 0 }, { 0, 576 }, { 0, 0 },
993     { 0, 574 }, { 95, 46 }, { 0, 0 }, { 0, 571 }, { 0, 0 },
994     { 0, 569 }, { 0, 0 }, { 79, 47 }, { 86, 43 }, { 69, 43 },
995     { 0, 0 }, { 69, 43 }, { 78, 47 }, { 0, 0 }, { 0, 560 },
996     { 83, 45 }, { 0, 45 }, { 0, 557 }, { 0, 40 }, { 0, 555 },
997     { 0, 0 }, { 0, 553 }, { 0, 0 }, { 0, 551 }, { 0, 0 },
998     { 0, 549 }, { 0, 0 }, { 0, 0 }, { 67, 39 }, { 82, 42 },
999 senkov 135
1000 schoenebeck 210 { 0, 0 }, { 0, 0 }, { 80, 39 }, { 0, 0 }, { 69, 38 },
1001     { 78, 41 }, { 0, 0 }, { 0, 537 }, { 0, 31 }, { 0, 535 },
1002     { 0, 33 }, { 0, 533 }, { 0, 0 }, { 0, 531 }, { 0, 0 },
1003     { 0, 529 }, { 0, 0 }, { 0, 527 }, { 0, 0 }, { 0, 525 },
1004     { 0, 0 }, { 0, 523 }, { 0, 35 }, { 0, 521 }, { 0, 30 },
1005     { 0, 519 }, { 65, 34 }, { 0, 0 }, { 0, 516 }, { 76, 34 },
1006     { 85, 30 }, { 80, 33 }, { 0, 0 }, { 0, 511 }, { 0, 0 },
1007     { 0, 509 }, { 0, 0 }, { 69, 39 }, { 83, 34 }, { 69, 39 },
1008 senkov 155 { 0, 0 }, { 0, 503 }, { 0, 0 }, { 0, 501 }, { 0, 0 },
1009 schoenebeck 210 { 0, 499 }, { 0, 0 }, { 0, 497 }, { 0, 0 }, { 0, 495 },
1010 senkov 155
1011 schoenebeck 210 { 95, 36 }, { 0, 0 }, { 0, 492 }, { 0, 0 }, { 95, 34 },
1012     { 82, 38 }, { 0, 0 }, { 0, 487 }, { 0, 0 }, { 84, 38 },
1013     { 0, 0 }, { 0, 483 }, { 0, 0 }, { 0, 481 }, { 0, 0 },
1014     { 0, 479 }, { 0, 0 }, { 0, 477 }, { 0, 0 }, { 85, 31 },
1015     { 0, 0 }, { 80, 26 }, { 0, 0 }, { 80, 26 }, { 0, 0 },
1016     { 0, 469 }, { 0, 0 }, { 82, 26 }, { 0, 0 }, { 0, 0 },
1017     { 0, 0 }, { 0, 463 }, { 65, 26 }, { 76, 16 }, { 65, 26 },
1018     { 0, 0 }, { 65, 26 }, { 0, 0 }, { 0, 456 }, { 0, 0 },
1019     { 0, 454 }, { 0, 0 }, { 83, 16 }, { 80, 22 }, { 0, 0 },
1020     { 0, 449 }, { 0, 0 }, { 0, 447 }, { 0, 0 }, { 84, 26 },
1021 senkov 155
1022 schoenebeck 210 { 0, 0 }, { 0, 443 }, { 0, 0 }, { 0, 441 }, { 95, 19 },
1023     { 0, 0 }, { 95, 22 }, { 0, 0 }, { 80, 24 }, { 0, 0 },
1024     { 0, 434 }, { 0, 0 }, { 0, 0 }, { 80, 24 }, { 0, 0 },
1025     { 0, 429 }, { 0, 0 }, { 65, 36 }, { 95, 26 }, { 0, 0 },
1026     { 85, 26 }, { 0, 0 }, { 65, 33 }, { 0, 0 }, { 77, 28 },
1027     { 82, 22 }, { 0, 0 }, { 82, 22 }, { 0, 0 }, { 80, 32 },
1028     { 65, 36 }, { 68, 34 }, { 65, 36 }, { 0, 0 }, { 0, 410 },
1029     { 0, 0 }, { 95, 22 }, { 0, 0 }, { 0, 406 }, { 0, 0 },
1030     { 0, 404 }, { 0, 0 }, { 0, 402 }, { 0, 0 }, { 69, 35 },
1031     { 84, 34 }, { 65, 34 }, { 0, 0 }, { 0, 396 }, { 0, 0 },
1032 senkov 155
1033 schoenebeck 210 { 0, 394 }, { 0, 0 }, { 0, 392 }, { 0, 0 }, { 0, 0 },
1034     { 0, 389 }, { 0, 0 }, { 0, 387 }, { 0, 0 }, { 0, 385 },
1035     { 0, 0 }, { 0, 383 }, { 0, 0 }, { 0, 381 }, { 0, 0 },
1036     { 0, 0 }, { 0, 378 }, { 0, 0 }, { 0, 376 }, { 0, 0 },
1037     { 82, 46 }, { 0, 0 }, { 82, 48 }, { 0, 0 }, { 0, 370 },
1038     { 0, 0 }, { 0, 368 }, { 0, 0 }, { 77, 47 }, { 82, 45 },
1039     { 77, 47 }, { 0, 0 }, { 0, 362 }, { 0, 0 }, { 0, 0 },
1040     { 0, 359 }, { 0, 0 }, { 0, 357 }, { 0, 0 }, { 0, 355 },
1041     { 95, 45 }, { 0, 0 }, { 0, 352 }, { 0, 0 }, { 84, 42 },
1042     { 0, 0 }, { 0, 348 }, { 82, 40 }, { 0, 0 }, { 65, 23 },
1043 senkov 155
1044 schoenebeck 210 { 0, 39 }, { 0, 343 }, { 0, 0 }, { 65, 21 }, { 0, 0 },
1045     { 0, 339 }, { 0, 0 }, { 0, 337 }, { 68, 21 }, { 0, 0 },
1046     { 0, 334 }, { 0, 0 }, { 0, 332 }, { 0, 0 }, { 0, 330 },
1047     { 73, 21 }, { 0, 0 }, { 69, 18 }, { 0, 0 }, { 69, 18 },
1048     { 65, 21 }, { 69, 22 }, { 0, 0 }, { 0, 321 }, { 0, 0 },
1049     { 0, 319 }, { 0, 0 }, { 0, 317 }, { 0, 0 }, { 0, 0 },
1050     { 0, 314 }, { 0, 0 }, { 0, 312 }, { 0, 0 }, { 77, 25 },
1051     { 0, 0 }, { 77, 26 }, { 0, 0 }, { 0, 0 }, { 0, 305 },
1052     { 0, 0 }, { 0, 303 }, { 0, 0 }, { 82, 26 }, { 0, 38 },
1053     { 0, 299 }, { 0, 42 }, { 0, 297 }, { 0, 0 }, { 86, 26 },
1054    
1055     { 84, 26 }, { 69, 25 }, { 84, 28 }, { 77, 29 }, { 69, 25 },
1056     { 0, 0 }, { 82, 27 }, { 0, 0 }, { 69, 25 }, { 0, 0 },
1057     { 73, 25 }, { 69, 31 }, { 0, 0 }, { 0, 281 }, { 0, 0 },
1058     { 69, 29 }, { 0, 0 }, { 0, 277 }, { 0, 0 }, { 0, 275 },
1059     { 0, 0 }, { 0, 273 }, { 0, 37 }, { 0, 271 }, { 69, 22 },
1060 senkov 155 { 0, 0 }, { 0, 268 }, { 0, 29 }, { 0, 266 }, { 0, 32 },
1061     { 0, 264 }, { 0, 0 }, { 0, 262 }, { 0, 34 }, { 0, 260 },
1062 schoenebeck 210 { 0, 21 }, { 0, 258 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1063     { 0, 0 }, { 84, 23 }, { 0, 0 }, { 0, 0 }, { 84, 22 },
1064     { 0, 0 }, { 82, 27 }, { 0, 0 }, { 86, 27 }, { 69, 37 },
1065 senkov 155
1066 schoenebeck 210 { 0, 0 }, { 69, 37 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1067     { 82, 22 }, { 0, 0 }, { 82, 22 }, { 69, 32 }, { 0, 0 },
1068     { 0, 0 }, { 84, 36 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1069 schoenebeck 111 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1070 schoenebeck 210 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 83, 32 },
1071 schoenebeck 111 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1072 schoenebeck 210 { 0, 0 }, { 0, 0 }, { 69, 13 }, { 0, 0 }, { 0, 0 },
1073 senkov 155 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1074     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1075 schoenebeck 210 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 82, 11 },
1076 schoenebeck 35
1077 schoenebeck 210 { 0, 0 }, { 82, 11 }, { 0, 0 }, { 82, 11 }, { 0, 0 },
1078 senkov 155 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 82, 8 }, { 0, 0 },
1079 schoenebeck 111 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1080 senkov 155 { 83, 4 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1081 schoenebeck 111 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1082     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1083     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1084     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1085 schoenebeck 210 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1086     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1087 schoenebeck 35
1088 schoenebeck 111 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1089     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1090     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1091     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1092     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1093     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1094     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1095     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1096     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1097     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1098 schoenebeck 35
1099 schoenebeck 111 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1100     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1101     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1102     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1103     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1104     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1105     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1106     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1107     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1108     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1109 schoenebeck 35
1110 schoenebeck 111 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1111     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1112     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1113     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1114     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1115     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1116     { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1117 schoenebeck 123 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
1118 schoenebeck 210 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 257, 68 }, { 1, 0 },
1119 senkov 155 };
1120 schoenebeck 123
1121 senkov 135 static yyconst struct yy_trans_info *yy_start_state_list[5] =
1122 schoenebeck 35 {
1123 schoenebeck 111 &yy_transition[1],
1124     &yy_transition[3],
1125     &yy_transition[261],
1126 senkov 135 &yy_transition[519],
1127     &yy_transition[777],
1128 schoenebeck 35 } ;
1129    
1130     /* The intent behind this definition is that it'll catch
1131     * any uses of REJECT which flex missed.
1132     */
1133     #define REJECT reject_used_but_not_detected
1134     #define yymore() yymore_used_but_not_detected
1135     #define YY_MORE_ADJ 0
1136     #define YY_RESTORE_YY_MORE_OFFSET
1137     #line 1 "lscp.l"
1138     /***************************************************************************
1139     * *
1140     * LinuxSampler - modular, streaming capable sampler *
1141     * *
1142 schoenebeck 61 * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck *
1143 schoenebeck 35 * *
1144     * This program is free software; you can redistribute it and/or modify *
1145     * it under the terms of the GNU General Public License as published by *
1146     * the Free Software Foundation; either version 2 of the License, or *
1147     * (at your option) any later version. *
1148     * *
1149     * This program is distributed in the hope that it will be useful, *
1150     * but WITHOUT ANY WARRANTY; without even the implied warranty of *
1151     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
1152     * GNU General Public License for more details. *
1153     * *
1154     * You should have received a copy of the GNU General Public License *
1155     * along with this program; if not, write to the Free Software *
1156     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
1157     * MA 02111-1307 USA *
1158     ***************************************************************************/
1159 schoenebeck 210 /* Note: don't forget to run 'make parser' after you changed this file, */
1160     /* otherwise the parser will not be regenerated! */
1161     #line 27 "lscp.l"
1162 schoenebeck 35
1163     #include "lscpparser.h"
1164     #include "lscpsymbols.h"
1165    
1166    
1167 schoenebeck 210 #line 1168 "lex.yy.c"
1168 schoenebeck 35
1169     #define INITIAL 0
1170 senkov 135 #define INSTRING 1
1171 schoenebeck 35
1172 schoenebeck 209 #ifndef YY_NO_UNISTD_H
1173 schoenebeck 35 /* Special case for "unistd.h", since it is non-ANSI. We include it way
1174     * down here because we want the user's section 1 to have been scanned first.
1175     * The user has a chance to override it with an option.
1176     */
1177     #include <unistd.h>
1178 schoenebeck 209 #endif
1179 schoenebeck 35
1180     #ifndef YY_EXTRA_TYPE
1181     #define YY_EXTRA_TYPE void *
1182     #endif
1183    
1184     /* Holds the entire state of the reentrant scanner. */
1185     struct yyguts_t
1186     {
1187    
1188     /* User-defined. Not touched by flex. */
1189     YY_EXTRA_TYPE yyextra_r;
1190    
1191     /* The rest are the same as the globals declared in the non-reentrant scanner. */
1192     FILE *yyin_r, *yyout_r;
1193     size_t yy_buffer_stack_top; /**< index of top of stack. */
1194     size_t yy_buffer_stack_max; /**< capacity of stack. */
1195     YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */
1196     char yy_hold_char;
1197     int yy_n_chars;
1198     int yyleng_r;
1199     char *yy_c_buf_p;
1200     int yy_init;
1201     int yy_start;
1202     int yy_did_buffer_switch_on_eof;
1203     int yy_start_stack_ptr;
1204     int yy_start_stack_depth;
1205     int *yy_start_stack;
1206     yy_state_type yy_last_accepting_state;
1207     char* yy_last_accepting_cpos;
1208    
1209     int yylineno_r;
1210     int yy_flex_debug_r;
1211    
1212     char *yytext_r;
1213     int yy_more_flag;
1214     int yy_more_len;
1215    
1216     }; /* end struct yyguts_t */
1217    
1218     /* Accessor methods to globals.
1219     These are made visible to non-reentrant scanners for convenience. */
1220    
1221     int yylex_destroy (yyscan_t yyscanner );
1222    
1223     int yyget_debug (yyscan_t yyscanner );
1224    
1225     void yyset_debug (int debug_flag ,yyscan_t yyscanner );
1226    
1227     YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner );
1228    
1229     void yyset_extra (YY_EXTRA_TYPE user_defined ,yyscan_t yyscanner );
1230    
1231     FILE *yyget_in (yyscan_t yyscanner );
1232    
1233     void yyset_in (FILE * in_str ,yyscan_t yyscanner );
1234    
1235     FILE *yyget_out (yyscan_t yyscanner );
1236    
1237     void yyset_out (FILE * out_str ,yyscan_t yyscanner );
1238    
1239     int yyget_leng (yyscan_t yyscanner );
1240    
1241     char *yyget_text (yyscan_t yyscanner );
1242    
1243     int yyget_lineno (yyscan_t yyscanner );
1244    
1245     void yyset_lineno (int line_number ,yyscan_t yyscanner );
1246    
1247     /* Macros after this point can all be overridden by user definitions in
1248     * section 1.
1249     */
1250    
1251     #ifndef YY_SKIP_YYWRAP
1252     #ifdef __cplusplus
1253     extern "C" int yywrap (yyscan_t yyscanner );
1254     #else
1255     extern int yywrap (yyscan_t yyscanner );
1256     #endif
1257     #endif
1258    
1259     static void yyunput (int c,char *buf_ptr ,yyscan_t yyscanner);
1260    
1261     #ifndef yytext_ptr
1262     static void yy_flex_strncpy (char *,yyconst char *,int ,yyscan_t yyscanner);
1263     #endif
1264    
1265     #ifdef YY_NEED_STRLEN
1266     static int yy_flex_strlen (yyconst char * ,yyscan_t yyscanner);
1267     #endif
1268    
1269     #ifndef YY_NO_INPUT
1270    
1271     #ifdef __cplusplus
1272     static int yyinput (yyscan_t yyscanner );
1273     #else
1274     static int input (yyscan_t yyscanner );
1275     #endif
1276    
1277     #endif
1278    
1279     /* Amount of stuff to slurp up with each read. */
1280     #ifndef YY_READ_BUF_SIZE
1281     #define YY_READ_BUF_SIZE 8192
1282     #endif
1283    
1284     /* Copy whatever the last rule matched to the standard output. */
1285     #ifndef ECHO
1286     /* This used to be an fputs(), but since the string might contain NUL's,
1287     * we now use fwrite().
1288     */
1289     #define ECHO (void) fwrite( yytext, yyleng, 1, yyout )
1290     #endif
1291    
1292     /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
1293     * is returned in "result".
1294     */
1295     #ifndef YY_INPUT
1296     #define YY_INPUT(buf,result,max_size) \
1297     errno=0; \
1298     while ( (result = read( fileno(yyin), (char *) buf, max_size )) < 0 ) \
1299     { \
1300     if( errno != EINTR) \
1301     { \
1302     YY_FATAL_ERROR( "input in flex scanner failed" ); \
1303     break; \
1304     } \
1305     errno=0; \
1306     clearerr(yyin); \
1307     }\
1308     \
1309    
1310     #endif
1311    
1312     /* No semi-colon after return; correct usage is to write "yyterminate();" -
1313     * we don't want an extra ';' after the "return" because that will cause
1314     * some compilers to complain about unreachable statements.
1315     */
1316     #ifndef yyterminate
1317     #define yyterminate() return YY_NULL
1318     #endif
1319    
1320     /* Number of entries by which start-condition stack grows. */
1321     #ifndef YY_START_STACK_INCR
1322     #define YY_START_STACK_INCR 25
1323     #endif
1324    
1325     /* Report a fatal error. */
1326     #ifndef YY_FATAL_ERROR
1327     #define YY_FATAL_ERROR(msg) yy_fatal_error( msg , yyscanner)
1328     #endif
1329    
1330     /* end tables serialization structures and prototypes */
1331    
1332     /* Default declaration of generated scanner - a define so the user can
1333     * easily add parameters.
1334     */
1335     #ifndef YY_DECL
1336     #define YY_DECL_IS_OURS 1
1337    
1338     extern int yylex (yyscan_t yyscanner);
1339    
1340     #define YY_DECL int yylex (yyscan_t yyscanner)
1341     #endif /* !YY_DECL */
1342    
1343     /* Code executed at the beginning of each rule, after yytext and yyleng
1344     * have been set up.
1345     */
1346     #ifndef YY_USER_ACTION
1347     #define YY_USER_ACTION
1348     #endif
1349    
1350     /* Code executed at the end of each rule. */
1351     #ifndef YY_BREAK
1352     #define YY_BREAK break;
1353     #endif
1354    
1355     #define YY_RULE_SETUP \
1356     YY_USER_ACTION
1357    
1358     /** The main scanner function which does all the work.
1359     */
1360     YY_DECL
1361     {
1362     register yy_state_type yy_current_state;
1363     register char *yy_cp, *yy_bp;
1364     register int yy_act;
1365     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
1366    
1367 schoenebeck 210 #line 39 "lscp.l"
1368 schoenebeck 35
1369    
1370 schoenebeck 210 #line 1371 "lex.yy.c"
1371 schoenebeck 35
1372     if ( yyg->yy_init )
1373     {
1374     yyg->yy_init = 0;
1375    
1376     #ifdef YY_USER_INIT
1377     YY_USER_INIT;
1378     #endif
1379    
1380     if ( ! yyg->yy_start )
1381     yyg->yy_start = 1; /* first start state */
1382    
1383     if ( ! yyin )
1384     yyin = stdin;
1385    
1386     if ( ! yyout )
1387     yyout = stdout;
1388    
1389     if ( ! YY_CURRENT_BUFFER ) {
1390     yyensure_buffer_stack (yyscanner);
1391     YY_CURRENT_BUFFER_LVALUE =
1392     yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner);
1393     }
1394    
1395     yy_load_buffer_state(yyscanner );
1396     }
1397    
1398     while ( 1 ) /* loops until end-of-file is reached */
1399     {
1400     yy_cp = yyg->yy_c_buf_p;
1401    
1402     /* Support of yytext. */
1403     *yy_cp = yyg->yy_hold_char;
1404    
1405     /* yy_bp points to the position in yy_ch_buf of the start of
1406     * the current run.
1407     */
1408     yy_bp = yy_cp;
1409    
1410 schoenebeck 111 yy_current_state = yy_start_state_list[yyg->yy_start];
1411 schoenebeck 35 yy_match:
1412 schoenebeck 111 {
1413     register yyconst struct yy_trans_info *yy_trans_info;
1414    
1415     register YY_CHAR yy_c;
1416    
1417     for ( yy_c = YY_SC_TO_UI(*yy_cp);
1418     (yy_trans_info = &yy_current_state[(unsigned int) yy_c])->
1419     yy_verify == yy_c;
1420     yy_c = YY_SC_TO_UI(*++yy_cp) )
1421 schoenebeck 35 {
1422 schoenebeck 111 yy_current_state += yy_trans_info->yy_nxt;
1423    
1424     if ( yy_current_state[-1].yy_nxt )
1425 schoenebeck 35 {
1426     yyg->yy_last_accepting_state = yy_current_state;
1427     yyg->yy_last_accepting_cpos = yy_cp;
1428     }
1429     }
1430 schoenebeck 111 }
1431 schoenebeck 35
1432     yy_find_action:
1433 schoenebeck 111 yy_act = yy_current_state[-1].yy_nxt;
1434 schoenebeck 35
1435     YY_DO_BEFORE_ACTION;
1436    
1437     do_action: /* This label is used only to access EOF actions. */
1438    
1439     switch ( yy_act )
1440     { /* beginning of action switch */
1441     case 0: /* must back up */
1442     /* undo the effects of YY_DO_BEFORE_ACTION */
1443     *yy_cp = yyg->yy_hold_char;
1444     yy_cp = yyg->yy_last_accepting_cpos + 1;
1445     yy_current_state = yyg->yy_last_accepting_state;
1446     goto yy_find_action;
1447    
1448     case 1:
1449     YY_RULE_SETUP
1450 schoenebeck 210 #line 41 "lscp.l"
1451 schoenebeck 35 { return SP; }
1452     YY_BREAK
1453     case 2:
1454     /* rule 2 can match eol */
1455     YY_RULE_SETUP
1456 schoenebeck 210 #line 42 "lscp.l"
1457 schoenebeck 35 { return LF; }
1458     YY_BREAK
1459     case 3:
1460     YY_RULE_SETUP
1461 schoenebeck 210 #line 43 "lscp.l"
1462 schoenebeck 35 { return CR; }
1463     YY_BREAK
1464     case 4:
1465     YY_RULE_SETUP
1466 schoenebeck 210 #line 44 "lscp.l"
1467 schoenebeck 111 { return HASH; }
1468 schoenebeck 35 YY_BREAK
1469     case 5:
1470     YY_RULE_SETUP
1471 schoenebeck 210 #line 45 "lscp.l"
1472 schoenebeck 123 { return EQ; }
1473 schoenebeck 35 YY_BREAK
1474     case 6:
1475     YY_RULE_SETUP
1476 schoenebeck 210 #line 46 "lscp.l"
1477 schoenebeck 123 { yylval->Dotnum = atof(yytext); return DOTNUM; }
1478 schoenebeck 35 YY_BREAK
1479     case 7:
1480     YY_RULE_SETUP
1481 schoenebeck 210 #line 47 "lscp.l"
1482 schoenebeck 123 { return ADD; }
1483 schoenebeck 35 YY_BREAK
1484     case 8:
1485     YY_RULE_SETUP
1486 schoenebeck 210 #line 48 "lscp.l"
1487 schoenebeck 123 { return GET; }
1488 schoenebeck 35 YY_BREAK
1489     case 9:
1490     YY_RULE_SETUP
1491 schoenebeck 210 #line 49 "lscp.l"
1492 schoenebeck 123 { return CREATE; }
1493 schoenebeck 35 YY_BREAK
1494     case 10:
1495     YY_RULE_SETUP
1496 schoenebeck 210 #line 50 "lscp.l"
1497 schoenebeck 123 { return DESTROY; }
1498 schoenebeck 35 YY_BREAK
1499     case 11:
1500     YY_RULE_SETUP
1501 schoenebeck 210 #line 51 "lscp.l"
1502 schoenebeck 123 { return LIST; }
1503 schoenebeck 35 YY_BREAK
1504     case 12:
1505     YY_RULE_SETUP
1506 schoenebeck 210 #line 52 "lscp.l"
1507 schoenebeck 123 { return LOAD; }
1508 schoenebeck 35 YY_BREAK
1509     case 13:
1510     YY_RULE_SETUP
1511 schoenebeck 210 #line 53 "lscp.l"
1512 senkov 141 { return NON_MODAL; }
1513 schoenebeck 35 YY_BREAK
1514     case 14:
1515     YY_RULE_SETUP
1516 schoenebeck 210 #line 54 "lscp.l"
1517 senkov 135 { return REMOVE; }
1518 schoenebeck 35 YY_BREAK
1519     case 15:
1520     YY_RULE_SETUP
1521 schoenebeck 210 #line 55 "lscp.l"
1522 senkov 135 { return SET; }
1523 schoenebeck 35 YY_BREAK
1524     case 16:
1525     YY_RULE_SETUP
1526 schoenebeck 210 #line 56 "lscp.l"
1527 senkov 135 { return SUBSCRIBE; }
1528 schoenebeck 35 YY_BREAK
1529     case 17:
1530     YY_RULE_SETUP
1531 schoenebeck 210 #line 57 "lscp.l"
1532 senkov 135 { return UNSUBSCRIBE; }
1533 schoenebeck 35 YY_BREAK
1534     case 18:
1535     YY_RULE_SETUP
1536 schoenebeck 210 #line 58 "lscp.l"
1537 senkov 135 { return CHANNEL; }
1538 schoenebeck 35 YY_BREAK
1539     case 19:
1540     YY_RULE_SETUP
1541 schoenebeck 210 #line 59 "lscp.l"
1542 senkov 135 { return NOTIFICATION; }
1543 schoenebeck 35 YY_BREAK
1544     case 20:
1545     YY_RULE_SETUP
1546 schoenebeck 210 #line 60 "lscp.l"
1547 senkov 135 { return AVAILABLE_ENGINES; }
1548 schoenebeck 35 YY_BREAK
1549     case 21:
1550     YY_RULE_SETUP
1551 schoenebeck 210 #line 61 "lscp.l"
1552 senkov 135 { return AVAILABLE_AUDIO_OUTPUT_DRIVERS; }
1553 schoenebeck 35 YY_BREAK
1554     case 22:
1555     YY_RULE_SETUP
1556 schoenebeck 210 #line 62 "lscp.l"
1557 senkov 135 { return CHANNELS; }
1558 schoenebeck 35 YY_BREAK
1559     case 23:
1560     YY_RULE_SETUP
1561 schoenebeck 210 #line 63 "lscp.l"
1562 senkov 135 { return INFO; }
1563 schoenebeck 35 YY_BREAK
1564     case 24:
1565     YY_RULE_SETUP
1566 schoenebeck 210 #line 64 "lscp.l"
1567 senkov 135 { return BUFFER_FILL; }
1568 schoenebeck 35 YY_BREAK
1569     case 25:
1570     YY_RULE_SETUP
1571 schoenebeck 210 #line 65 "lscp.l"
1572 senkov 135 { return STREAM_COUNT; }
1573 schoenebeck 35 YY_BREAK
1574     case 26:
1575     YY_RULE_SETUP
1576 schoenebeck 210 #line 66 "lscp.l"
1577 senkov 135 { return VOICE_COUNT; }
1578 schoenebeck 35 YY_BREAK
1579     case 27:
1580     YY_RULE_SETUP
1581 schoenebeck 210 #line 67 "lscp.l"
1582 senkov 135 { return INSTRUMENT; }
1583 schoenebeck 35 YY_BREAK
1584     case 28:
1585     YY_RULE_SETUP
1586 schoenebeck 210 #line 68 "lscp.l"
1587 senkov 135 { return ENGINE; }
1588 schoenebeck 35 YY_BREAK
1589     case 29:
1590     YY_RULE_SETUP
1591 schoenebeck 210 #line 69 "lscp.l"
1592 senkov 155 { return AUDIO_OUTPUT_DEVICE_PARAMETER; }
1593 schoenebeck 35 YY_BREAK
1594     case 30:
1595     YY_RULE_SETUP
1596 schoenebeck 210 #line 70 "lscp.l"
1597 senkov 135 { return AUDIO_OUTPUT_DEVICES; }
1598 schoenebeck 35 YY_BREAK
1599     case 31:
1600     YY_RULE_SETUP
1601 schoenebeck 210 #line 71 "lscp.l"
1602 senkov 155 { return AUDIO_OUTPUT_DEVICE; }
1603 schoenebeck 35 YY_BREAK
1604     case 32:
1605     YY_RULE_SETUP
1606 schoenebeck 210 #line 72 "lscp.l"
1607 senkov 155 { return AUDIO_OUTPUT_DRIVER_PARAMETER; }
1608 schoenebeck 35 YY_BREAK
1609     case 33:
1610     YY_RULE_SETUP
1611 schoenebeck 210 #line 73 "lscp.l"
1612 senkov 155 { return AUDIO_OUTPUT_DRIVER; }
1613 schoenebeck 35 YY_BREAK
1614     case 34:
1615     YY_RULE_SETUP
1616 schoenebeck 210 #line 74 "lscp.l"
1617 senkov 155 { return AUDIO_OUTPUT_CHANNEL_PARAMETER; }
1618 schoenebeck 35 YY_BREAK
1619     case 35:
1620     YY_RULE_SETUP
1621 schoenebeck 210 #line 75 "lscp.l"
1622 senkov 155 { return AUDIO_OUTPUT_CHANNEL; }
1623 schoenebeck 35 YY_BREAK
1624     case 36:
1625     YY_RULE_SETUP
1626 schoenebeck 210 #line 76 "lscp.l"
1627 capela 143 { return AUDIO_OUTPUT_TYPE; }
1628 schoenebeck 111 YY_BREAK
1629     case 37:
1630     YY_RULE_SETUP
1631 schoenebeck 210 #line 77 "lscp.l"
1632 senkov 155 { return AVAILABLE_MIDI_INPUT_DRIVERS; }
1633 schoenebeck 123 YY_BREAK
1634     case 38:
1635     YY_RULE_SETUP
1636 schoenebeck 210 #line 78 "lscp.l"
1637 senkov 155 { return MIDI_INPUT_DEVICE_PARAMETER; }
1638 schoenebeck 123 YY_BREAK
1639     case 39:
1640     YY_RULE_SETUP
1641 schoenebeck 210 #line 79 "lscp.l"
1642 senkov 155 { return MIDI_INPUT_PORT_PARAMETER; }
1643 schoenebeck 123 YY_BREAK
1644     case 40:
1645     YY_RULE_SETUP
1646 schoenebeck 210 #line 80 "lscp.l"
1647 senkov 155 { return MIDI_INPUT_DEVICES; }
1648 schoenebeck 123 YY_BREAK
1649     case 41:
1650     YY_RULE_SETUP
1651 schoenebeck 210 #line 81 "lscp.l"
1652 senkov 155 { return MIDI_INPUT_DEVICE; }
1653 schoenebeck 123 YY_BREAK
1654     case 42:
1655     YY_RULE_SETUP
1656 schoenebeck 210 #line 82 "lscp.l"
1657 senkov 155 { return MIDI_INPUT_DRIVER_PARAMETER; }
1658 schoenebeck 123 YY_BREAK
1659     case 43:
1660     YY_RULE_SETUP
1661 schoenebeck 210 #line 83 "lscp.l"
1662 senkov 155 { return MIDI_INPUT_DRIVER; }
1663 schoenebeck 123 YY_BREAK
1664     case 44:
1665     YY_RULE_SETUP
1666 schoenebeck 210 #line 84 "lscp.l"
1667 senkov 155 { return MIDI_INPUT_PORT; }
1668 schoenebeck 123 YY_BREAK
1669     case 45:
1670     YY_RULE_SETUP
1671 schoenebeck 210 #line 85 "lscp.l"
1672 senkov 155 { return MIDI_INPUT_CHANNEL; }
1673 senkov 135 YY_BREAK
1674     case 46:
1675     YY_RULE_SETUP
1676 schoenebeck 210 #line 86 "lscp.l"
1677 senkov 155 { return MIDI_INPUT_TYPE; }
1678 senkov 135 YY_BREAK
1679     case 47:
1680     YY_RULE_SETUP
1681 schoenebeck 210 #line 87 "lscp.l"
1682 senkov 155 { return MIDI_INPUT; }
1683 senkov 135 YY_BREAK
1684     case 48:
1685     YY_RULE_SETUP
1686 schoenebeck 210 #line 88 "lscp.l"
1687 senkov 155 { return VOLUME; }
1688 senkov 135 YY_BREAK
1689     case 49:
1690     YY_RULE_SETUP
1691 schoenebeck 210 #line 89 "lscp.l"
1692 senkov 155 { return BYTES; }
1693 senkov 135 YY_BREAK
1694     case 50:
1695     YY_RULE_SETUP
1696 schoenebeck 210 #line 90 "lscp.l"
1697 senkov 155 { return PERCENTAGE; }
1698 senkov 135 YY_BREAK
1699     case 51:
1700     YY_RULE_SETUP
1701 schoenebeck 210 #line 91 "lscp.l"
1702 senkov 155 { return RESET; }
1703 senkov 135 YY_BREAK
1704     case 52:
1705     YY_RULE_SETUP
1706 schoenebeck 210 #line 92 "lscp.l"
1707 senkov 155 { return MISCELLANEOUS; }
1708 senkov 135 YY_BREAK
1709     case 53:
1710     YY_RULE_SETUP
1711 schoenebeck 210 #line 93 "lscp.l"
1712     { return ECHO; }
1713 senkov 135 YY_BREAK
1714     case 54:
1715     YY_RULE_SETUP
1716 schoenebeck 210 #line 94 "lscp.l"
1717     { return QUIT; }
1718 senkov 135 YY_BREAK
1719     case 55:
1720     YY_RULE_SETUP
1721 schoenebeck 210 #line 95 "lscp.l"
1722     { yylval->Number = atoi(yytext); return NUMBER; }
1723 senkov 135 YY_BREAK
1724     case 56:
1725     YY_RULE_SETUP
1726 schoenebeck 210 #line 96 "lscp.l"
1727     { yylval->String = ""; BEGIN(INSTRING); }
1728 senkov 135 YY_BREAK
1729     case 57:
1730 schoenebeck 210 /* rule 57 can match eol */
1731 senkov 135 YY_RULE_SETUP
1732 schoenebeck 210 #line 97 "lscp.l"
1733     { yylval->String += yytext; }
1734 capela 143 YY_BREAK
1735     case 58:
1736     YY_RULE_SETUP
1737 schoenebeck 210 #line 98 "lscp.l"
1738     { yylval->String += '\n'; }
1739 senkov 155 YY_BREAK
1740     case 59:
1741     YY_RULE_SETUP
1742 schoenebeck 210 #line 99 "lscp.l"
1743     { yylval->String += '\r'; }
1744 senkov 155 YY_BREAK
1745     case 60:
1746     YY_RULE_SETUP
1747 schoenebeck 210 #line 100 "lscp.l"
1748     { yylval->String += '\t'; }
1749 senkov 155 YY_BREAK
1750     case 61:
1751     YY_RULE_SETUP
1752 schoenebeck 210 #line 101 "lscp.l"
1753     { yylval->String += '\\'; }
1754 senkov 155 YY_BREAK
1755     case 62:
1756     YY_RULE_SETUP
1757 schoenebeck 210 #line 102 "lscp.l"
1758     { yylval->String += '\"'; }
1759 senkov 155 YY_BREAK
1760     case 63:
1761     YY_RULE_SETUP
1762 schoenebeck 210 #line 103 "lscp.l"
1763     { yylval->String += '\''; }
1764 senkov 155 YY_BREAK
1765     case 64:
1766 schoenebeck 210 /* rule 64 can match eol */
1767 senkov 155 YY_RULE_SETUP
1768 schoenebeck 210 #line 104 "lscp.l"
1769     { yylval->String += yytext; }
1770 senkov 155 YY_BREAK
1771     case 65:
1772     YY_RULE_SETUP
1773 schoenebeck 210 #line 105 "lscp.l"
1774     { BEGIN(INITIAL); return STRINGVAL; }
1775 senkov 155 YY_BREAK
1776     case 66:
1777     YY_RULE_SETUP
1778 schoenebeck 210 #line 106 "lscp.l"
1779     { yylval->Char = yytext[0]; return CHAR; }
1780     YY_BREAK
1781     case 67:
1782     YY_RULE_SETUP
1783     #line 108 "lscp.l"
1784 schoenebeck 35 ECHO;
1785     YY_BREAK
1786 schoenebeck 210 #line 1787 "lex.yy.c"
1787 schoenebeck 35 case YY_STATE_EOF(INITIAL):
1788 senkov 135 case YY_STATE_EOF(INSTRING):
1789 schoenebeck 35 yyterminate();
1790    
1791     case YY_END_OF_BUFFER:
1792     {
1793     /* Amount of text matched not including the EOB char. */
1794     int yy_amount_of_matched_text = (int) (yy_cp - yyg->yytext_ptr) - 1;
1795    
1796     /* Undo the effects of YY_DO_BEFORE_ACTION. */
1797     *yy_cp = yyg->yy_hold_char;
1798     YY_RESTORE_YY_MORE_OFFSET
1799    
1800     if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
1801     {
1802     /* We're scanning a new file or input source. It's
1803     * possible that this happened because the user
1804     * just pointed yyin at a new source and called
1805     * yylex(). If so, then we have to assure
1806     * consistency between YY_CURRENT_BUFFER and our
1807     * globals. Here is the right place to do so, because
1808     * this is the first action (other than possibly a
1809     * back-up) that will match for the new input source.
1810     */
1811     yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
1812     YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
1813     YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
1814     }
1815    
1816     /* Note that here we test for yy_c_buf_p "<=" to the position
1817     * of the first EOB in the buffer, since yy_c_buf_p will
1818     * already have been incremented past the NUL character
1819     * (since all states make transitions on EOB to the
1820     * end-of-buffer state). Contrast this with the test
1821     * in input().
1822     */
1823     if ( yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] )
1824     { /* This was really a NUL. */
1825     yy_state_type yy_next_state;
1826    
1827     yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text;
1828    
1829     yy_current_state = yy_get_previous_state( yyscanner );
1830    
1831     /* Okay, we're now positioned to make the NUL
1832     * transition. We couldn't have
1833     * yy_get_previous_state() go ahead and do it
1834     * for us because it doesn't know how to deal
1835     * with the possibility of jamming (and we don't
1836     * want to build jamming into it because then it
1837     * will run more slowly).
1838     */
1839    
1840     yy_next_state = yy_try_NUL_trans( yy_current_state , yyscanner);
1841    
1842     yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
1843    
1844     if ( yy_next_state )
1845     {
1846     /* Consume the NUL. */
1847     yy_cp = ++yyg->yy_c_buf_p;
1848     yy_current_state = yy_next_state;
1849     goto yy_match;
1850     }
1851    
1852     else
1853     {
1854     yy_cp = yyg->yy_c_buf_p;
1855     goto yy_find_action;
1856     }
1857     }
1858    
1859     else switch ( yy_get_next_buffer( yyscanner ) )
1860     {
1861     case EOB_ACT_END_OF_FILE:
1862     {
1863     yyg->yy_did_buffer_switch_on_eof = 0;
1864    
1865     if ( yywrap(yyscanner ) )
1866     {
1867     /* Note: because we've taken care in
1868     * yy_get_next_buffer() to have set up
1869     * yytext, we can now set up
1870     * yy_c_buf_p so that if some total
1871     * hoser (like flex itself) wants to
1872     * call the scanner after we return the
1873     * YY_NULL, it'll still work - another
1874     * YY_NULL will get returned.
1875     */
1876     yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ;
1877    
1878     yy_act = YY_STATE_EOF(YY_START);
1879     goto do_action;
1880     }
1881    
1882     else
1883     {
1884     if ( ! yyg->yy_did_buffer_switch_on_eof )
1885     YY_NEW_FILE;
1886     }
1887     break;
1888     }
1889    
1890     case EOB_ACT_CONTINUE_SCAN:
1891     yyg->yy_c_buf_p =
1892     yyg->yytext_ptr + yy_amount_of_matched_text;
1893    
1894     yy_current_state = yy_get_previous_state( yyscanner );
1895    
1896     yy_cp = yyg->yy_c_buf_p;
1897     yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
1898     goto yy_match;
1899    
1900     case EOB_ACT_LAST_MATCH:
1901     yyg->yy_c_buf_p =
1902     &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars];
1903    
1904     yy_current_state = yy_get_previous_state( yyscanner );
1905    
1906     yy_cp = yyg->yy_c_buf_p;
1907     yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
1908     goto yy_find_action;
1909     }
1910     break;
1911     }
1912    
1913     default:
1914     YY_FATAL_ERROR(
1915     "fatal flex scanner internal error--no action found" );
1916     } /* end of action switch */
1917     } /* end of scanning one token */
1918     } /* end of yylex */
1919    
1920     /* yy_get_next_buffer - try to read in a new buffer
1921     *
1922     * Returns a code representing an action:
1923     * EOB_ACT_LAST_MATCH -
1924     * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
1925     * EOB_ACT_END_OF_FILE - end of file
1926     */
1927     static int yy_get_next_buffer (yyscan_t yyscanner)
1928     {
1929     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
1930     register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
1931     register char *source = yyg->yytext_ptr;
1932     register int number_to_move, i;
1933     int ret_val;
1934    
1935     if ( yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] )
1936     YY_FATAL_ERROR(
1937     "fatal flex scanner internal error--end of buffer missed" );
1938    
1939     if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
1940     { /* Don't try to fill the buffer, so this is an EOF. */
1941     if ( yyg->yy_c_buf_p - yyg->yytext_ptr - YY_MORE_ADJ == 1 )
1942     {
1943     /* We matched a single character, the EOB, so
1944     * treat this as a final EOF.
1945     */
1946     return EOB_ACT_END_OF_FILE;
1947     }
1948    
1949     else
1950     {
1951     /* We matched some text prior to the EOB, first
1952     * process it.
1953     */
1954     return EOB_ACT_LAST_MATCH;
1955     }
1956     }
1957    
1958     /* Try to read more data. */
1959    
1960     /* First move last chars to start of buffer. */
1961     number_to_move = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr) - 1;
1962    
1963     for ( i = 0; i < number_to_move; ++i )
1964     *(dest++) = *(source++);
1965    
1966     if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
1967     /* don't do the read, it's not guaranteed to return an EOF,
1968     * just force an EOF
1969     */
1970     YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = 0;
1971    
1972     else
1973     {
1974     size_t num_to_read =
1975     YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
1976    
1977     while ( num_to_read <= 0 )
1978     { /* Not enough room in the buffer - grow it. */
1979    
1980     /* just a shorter name for the current buffer */
1981     YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
1982    
1983     int yy_c_buf_p_offset =
1984     (int) (yyg->yy_c_buf_p - b->yy_ch_buf);
1985    
1986     if ( b->yy_is_our_buffer )
1987     {
1988     int new_size = b->yy_buf_size * 2;
1989    
1990     if ( new_size <= 0 )
1991     b->yy_buf_size += b->yy_buf_size / 8;
1992     else
1993     b->yy_buf_size *= 2;
1994    
1995     b->yy_ch_buf = (char *)
1996     /* Include room in for 2 EOB chars. */
1997     yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ,yyscanner );
1998     }
1999     else
2000     /* Can't grow it, we don't own it. */
2001     b->yy_ch_buf = 0;
2002    
2003     if ( ! b->yy_ch_buf )
2004     YY_FATAL_ERROR(
2005     "fatal error - scanner input buffer overflow" );
2006    
2007     yyg->yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];
2008    
2009     num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
2010     number_to_move - 1;
2011    
2012     }
2013    
2014     if ( num_to_read > YY_READ_BUF_SIZE )
2015     num_to_read = YY_READ_BUF_SIZE;
2016    
2017     /* Read in more data. */
2018     YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
2019     yyg->yy_n_chars, num_to_read );
2020    
2021     YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
2022     }
2023    
2024     if ( yyg->yy_n_chars == 0 )
2025     {
2026     if ( number_to_move == YY_MORE_ADJ )
2027     {
2028     ret_val = EOB_ACT_END_OF_FILE;
2029     yyrestart(yyin ,yyscanner);
2030     }
2031    
2032     else
2033     {
2034     ret_val = EOB_ACT_LAST_MATCH;
2035     YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
2036     YY_BUFFER_EOF_PENDING;
2037     }
2038     }
2039    
2040     else
2041     ret_val = EOB_ACT_CONTINUE_SCAN;
2042    
2043     yyg->yy_n_chars += number_to_move;
2044     YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] = YY_END_OF_BUFFER_CHAR;
2045     YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
2046    
2047     yyg->yytext_ptr = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
2048    
2049     return ret_val;
2050     }
2051    
2052     /* yy_get_previous_state - get the state just before the EOB char was reached */
2053    
2054     static yy_state_type yy_get_previous_state (yyscan_t yyscanner)
2055     {
2056     register yy_state_type yy_current_state;
2057     register char *yy_cp;
2058     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2059    
2060 schoenebeck 111 yy_current_state = yy_start_state_list[yyg->yy_start];
2061 schoenebeck 35
2062     for ( yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->yy_c_buf_p; ++yy_cp )
2063     {
2064 schoenebeck 111 yy_current_state += yy_current_state[(*yy_cp ? YY_SC_TO_UI(*yy_cp) : 256)].yy_nxt;
2065     if ( yy_current_state[-1].yy_nxt )
2066 schoenebeck 35 {
2067     yyg->yy_last_accepting_state = yy_current_state;
2068     yyg->yy_last_accepting_cpos = yy_cp;
2069     }
2070     }
2071    
2072     return yy_current_state;
2073     }
2074    
2075     /* yy_try_NUL_trans - try to make a transition on the NUL character
2076     *
2077     * synopsis
2078     * next_state = yy_try_NUL_trans( current_state );
2079     */
2080     static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state , yyscan_t yyscanner)
2081     {
2082     register int yy_is_jam;
2083     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2084     register char *yy_cp = yyg->yy_c_buf_p;
2085    
2086 schoenebeck 111 register int yy_c = 256;
2087     register yyconst struct yy_trans_info *yy_trans_info;
2088 schoenebeck 35
2089 schoenebeck 111 yy_trans_info = &yy_current_state[(unsigned int) yy_c];
2090     yy_current_state += yy_trans_info->yy_nxt;
2091     yy_is_jam = (yy_trans_info->yy_verify != yy_c);
2092    
2093 schoenebeck 35 if ( ! yy_is_jam )
2094     {
2095 schoenebeck 111 if ( yy_current_state[-1].yy_nxt )
2096 schoenebeck 35 {
2097     yyg->yy_last_accepting_state = yy_current_state;
2098     yyg->yy_last_accepting_cpos = yy_cp;
2099     }
2100     }
2101    
2102     return yy_is_jam ? 0 : yy_current_state;
2103     }
2104    
2105     static void yyunput (int c, register char * yy_bp , yyscan_t yyscanner)
2106     {
2107     register char *yy_cp;
2108     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2109    
2110     yy_cp = yyg->yy_c_buf_p;
2111    
2112     /* undo effects of setting up yytext */
2113     *yy_cp = yyg->yy_hold_char;
2114    
2115     if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
2116     { /* need to shift things up to make room */
2117     /* +2 for EOB chars. */
2118     register int number_to_move = yyg->yy_n_chars + 2;
2119     register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
2120     YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
2121     register char *source =
2122     &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
2123    
2124     while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
2125     *--dest = *--source;
2126    
2127     yy_cp += (int) (dest - source);
2128     yy_bp += (int) (dest - source);
2129     YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
2130     yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
2131    
2132     if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
2133     YY_FATAL_ERROR( "flex scanner push-back overflow" );
2134     }
2135    
2136     *--yy_cp = (char) c;
2137    
2138     yyg->yytext_ptr = yy_bp;
2139     yyg->yy_hold_char = *yy_cp;
2140     yyg->yy_c_buf_p = yy_cp;
2141     }
2142    
2143     #ifndef YY_NO_INPUT
2144     #ifdef __cplusplus
2145     static int yyinput (yyscan_t yyscanner)
2146     #else
2147     static int input (yyscan_t yyscanner)
2148     #endif
2149    
2150     {
2151     int c;
2152     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2153    
2154     *yyg->yy_c_buf_p = yyg->yy_hold_char;
2155    
2156     if ( *yyg->yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
2157     {
2158     /* yy_c_buf_p now points to the character we want to return.
2159     * If this occurs *before* the EOB characters, then it's a
2160     * valid NUL; if not, then we've hit the end of the buffer.
2161     */
2162     if ( yyg->yy_c_buf_p < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] )
2163     /* This was really a NUL. */
2164     *yyg->yy_c_buf_p = '\0';
2165    
2166     else
2167     { /* need more input */
2168     int offset = yyg->yy_c_buf_p - yyg->yytext_ptr;
2169     ++yyg->yy_c_buf_p;
2170    
2171     switch ( yy_get_next_buffer( yyscanner ) )
2172     {
2173     case EOB_ACT_LAST_MATCH:
2174     /* This happens because yy_g_n_b()
2175     * sees that we've accumulated a
2176     * token and flags that we need to
2177     * try matching the token before
2178     * proceeding. But for input(),
2179     * there's no matching to consider.
2180     * So convert the EOB_ACT_LAST_MATCH
2181     * to EOB_ACT_END_OF_FILE.
2182     */
2183    
2184     /* Reset buffer status. */
2185     yyrestart(yyin ,yyscanner);
2186    
2187     /*FALLTHROUGH*/
2188    
2189     case EOB_ACT_END_OF_FILE:
2190     {
2191     if ( yywrap(yyscanner ) )
2192     return EOF;
2193    
2194     if ( ! yyg->yy_did_buffer_switch_on_eof )
2195     YY_NEW_FILE;
2196     #ifdef __cplusplus
2197     return yyinput(yyscanner);
2198     #else
2199     return input(yyscanner);
2200     #endif
2201     }
2202    
2203     case EOB_ACT_CONTINUE_SCAN:
2204     yyg->yy_c_buf_p = yyg->yytext_ptr + offset;
2205     break;
2206     }
2207     }
2208     }
2209    
2210     c = *(unsigned char *) yyg->yy_c_buf_p; /* cast for 8-bit char's */
2211     *yyg->yy_c_buf_p = '\0'; /* preserve yytext */
2212     yyg->yy_hold_char = *++yyg->yy_c_buf_p;
2213    
2214     return c;
2215     }
2216     #endif /* ifndef YY_NO_INPUT */
2217    
2218     /** Immediately switch to a different input stream.
2219     * @param input_file A readable stream.
2220     * @param yyscanner The scanner object.
2221     * @note This function does not reset the start condition to @c INITIAL .
2222     */
2223     void yyrestart (FILE * input_file , yyscan_t yyscanner)
2224     {
2225     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2226    
2227     if ( ! YY_CURRENT_BUFFER ){
2228     yyensure_buffer_stack (yyscanner);
2229     YY_CURRENT_BUFFER_LVALUE =
2230     yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner);
2231     }
2232    
2233     yy_init_buffer(YY_CURRENT_BUFFER,input_file ,yyscanner);
2234     yy_load_buffer_state(yyscanner );
2235     }
2236    
2237     /** Switch to a different input buffer.
2238     * @param new_buffer The new input buffer.
2239     * @param yyscanner The scanner object.
2240     */
2241     void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner)
2242     {
2243     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2244    
2245     /* TODO. We should be able to replace this entire function body
2246     * with
2247     * yypop_buffer_state();
2248     * yypush_buffer_state(new_buffer);
2249     */
2250     yyensure_buffer_stack (yyscanner);
2251     if ( YY_CURRENT_BUFFER == new_buffer )
2252     return;
2253    
2254     if ( YY_CURRENT_BUFFER )
2255     {
2256     /* Flush out information for old buffer. */
2257     *yyg->yy_c_buf_p = yyg->yy_hold_char;
2258     YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p;
2259     YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
2260     }
2261    
2262     YY_CURRENT_BUFFER_LVALUE = new_buffer;
2263     yy_load_buffer_state(yyscanner );
2264    
2265     /* We don't actually know whether we did this switch during
2266     * EOF (yywrap()) processing, but the only time this flag
2267     * is looked at is after yywrap() is called, so it's safe
2268     * to go ahead and always set it.
2269     */
2270     yyg->yy_did_buffer_switch_on_eof = 1;
2271     }
2272    
2273     static void yy_load_buffer_state (yyscan_t yyscanner)
2274     {
2275     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2276     yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
2277     yyg->yytext_ptr = yyg->yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
2278     yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
2279     yyg->yy_hold_char = *yyg->yy_c_buf_p;
2280     }
2281    
2282     /** Allocate and initialize an input buffer state.
2283     * @param file A readable stream.
2284     * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
2285     * @param yyscanner The scanner object.
2286     * @return the allocated buffer state.
2287     */
2288     YY_BUFFER_STATE yy_create_buffer (FILE * file, int size , yyscan_t yyscanner)
2289     {
2290     YY_BUFFER_STATE b;
2291    
2292     b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ,yyscanner );
2293     if ( ! b )
2294     YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
2295    
2296     b->yy_buf_size = size;
2297    
2298     /* yy_ch_buf has to be 2 characters longer than the size given because
2299     * we need to put in 2 end-of-buffer characters.
2300     */
2301     b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ,yyscanner );
2302     if ( ! b->yy_ch_buf )
2303     YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
2304    
2305     b->yy_is_our_buffer = 1;
2306    
2307     yy_init_buffer(b,file ,yyscanner);
2308    
2309     return b;
2310     }
2311    
2312     /** Destroy the buffer.
2313     * @param b a buffer created with yy_create_buffer()
2314     * @param yyscanner The scanner object.
2315     */
2316     void yy_delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner)
2317     {
2318     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2319    
2320     if ( ! b )
2321     return;
2322    
2323     if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
2324     YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
2325    
2326     if ( b->yy_is_our_buffer )
2327     yyfree((void *) b->yy_ch_buf ,yyscanner );
2328    
2329     yyfree((void *) b ,yyscanner );
2330     }
2331    
2332 schoenebeck 209 #ifndef __cplusplus
2333     extern int isatty (int );
2334     #endif /* __cplusplus */
2335    
2336 schoenebeck 35 /* Initializes or reinitializes a buffer.
2337     * This function is sometimes called more than once on the same buffer,
2338     * such as during a yyrestart() or at EOF.
2339     */
2340     static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner)
2341    
2342     {
2343     int oerrno = errno;
2344     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2345    
2346     yy_flush_buffer(b ,yyscanner);
2347    
2348     b->yy_input_file = file;
2349     b->yy_fill_buffer = 1;
2350    
2351     /* If b is the current buffer, then yy_init_buffer was _probably_
2352     * called from yyrestart() or through yy_get_next_buffer.
2353     * In that case, we don't want to reset the lineno or column.
2354     */
2355     if (b != YY_CURRENT_BUFFER){
2356     b->yy_bs_lineno = 1;
2357     b->yy_bs_column = 0;
2358     }
2359    
2360     b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
2361    
2362     errno = oerrno;
2363     }
2364    
2365     /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
2366     * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
2367     * @param yyscanner The scanner object.
2368     */
2369     void yy_flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner)
2370     {
2371     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2372     if ( ! b )
2373     return;
2374    
2375     b->yy_n_chars = 0;
2376    
2377     /* We always need two end-of-buffer characters. The first causes
2378     * a transition to the end-of-buffer state. The second causes
2379     * a jam in that state.
2380     */
2381     b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
2382     b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
2383    
2384     b->yy_buf_pos = &b->yy_ch_buf[0];
2385    
2386     b->yy_at_bol = 1;
2387     b->yy_buffer_status = YY_BUFFER_NEW;
2388    
2389     if ( b == YY_CURRENT_BUFFER )
2390     yy_load_buffer_state(yyscanner );
2391     }
2392    
2393     /** Pushes the new state onto the stack. The new state becomes
2394     * the current state. This function will allocate the stack
2395     * if necessary.
2396     * @param new_buffer The new state.
2397     * @param yyscanner The scanner object.
2398     */
2399     void yypush_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner)
2400     {
2401     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2402     if (new_buffer == NULL)
2403     return;
2404    
2405     yyensure_buffer_stack(yyscanner);
2406    
2407     /* This block is copied from yy_switch_to_buffer. */
2408     if ( YY_CURRENT_BUFFER )
2409     {
2410     /* Flush out information for old buffer. */
2411     *yyg->yy_c_buf_p = yyg->yy_hold_char;
2412     YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p;
2413     YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
2414     }
2415    
2416     /* Only push if top exists. Otherwise, replace top. */
2417     if (YY_CURRENT_BUFFER)
2418     yyg->yy_buffer_stack_top++;
2419     YY_CURRENT_BUFFER_LVALUE = new_buffer;
2420    
2421     /* copied from yy_switch_to_buffer. */
2422     yy_load_buffer_state(yyscanner );
2423     yyg->yy_did_buffer_switch_on_eof = 1;
2424     }
2425    
2426     /** Removes and deletes the top of the stack, if present.
2427     * The next element becomes the new top.
2428     * @param yyscanner The scanner object.
2429     */
2430     void yypop_buffer_state (yyscan_t yyscanner)
2431     {
2432     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2433     if (!YY_CURRENT_BUFFER)
2434     return;
2435    
2436     yy_delete_buffer(YY_CURRENT_BUFFER ,yyscanner);
2437     YY_CURRENT_BUFFER_LVALUE = NULL;
2438     if (yyg->yy_buffer_stack_top > 0)
2439     --yyg->yy_buffer_stack_top;
2440    
2441     if (YY_CURRENT_BUFFER) {
2442     yy_load_buffer_state(yyscanner );
2443     yyg->yy_did_buffer_switch_on_eof = 1;
2444     }
2445     }
2446    
2447     /* Allocates the stack if it does not exist.
2448     * Guarantees space for at least one push.
2449     */
2450     static void yyensure_buffer_stack (yyscan_t yyscanner)
2451     {
2452     int num_to_alloc;
2453     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2454    
2455     if (!yyg->yy_buffer_stack) {
2456    
2457     /* First allocation is just for 2 elements, since we don't know if this
2458     * scanner will even need a stack. We use 2 instead of 1 to avoid an
2459     * immediate realloc on the next call.
2460     */
2461     num_to_alloc = 1;
2462     yyg->yy_buffer_stack = (struct yy_buffer_state**)yyalloc
2463     (num_to_alloc * sizeof(struct yy_buffer_state*)
2464     , yyscanner);
2465    
2466     memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*));
2467    
2468     yyg->yy_buffer_stack_max = num_to_alloc;
2469     yyg->yy_buffer_stack_top = 0;
2470     return;
2471     }
2472    
2473     if (yyg->yy_buffer_stack_top >= (yyg->yy_buffer_stack_max) - 1){
2474    
2475     /* Increase the buffer to prepare for a possible push. */
2476     int grow_size = 8 /* arbitrary grow size */;
2477    
2478     num_to_alloc = yyg->yy_buffer_stack_max + grow_size;
2479     yyg->yy_buffer_stack = (struct yy_buffer_state**)yyrealloc
2480     (yyg->yy_buffer_stack,
2481     num_to_alloc * sizeof(struct yy_buffer_state*)
2482     , yyscanner);
2483    
2484     /* zero only the new slots.*/
2485     memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*));
2486     yyg->yy_buffer_stack_max = num_to_alloc;
2487     }
2488     }
2489    
2490     /** Setup the input buffer state to scan directly from a user-specified character buffer.
2491     * @param base the character buffer
2492     * @param size the size in bytes of the character buffer
2493     * @param yyscanner The scanner object.
2494     * @return the newly allocated buffer state object.
2495     */
2496     YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner)
2497     {
2498     YY_BUFFER_STATE b;
2499    
2500     if ( size < 2 ||
2501     base[size-2] != YY_END_OF_BUFFER_CHAR ||
2502     base[size-1] != YY_END_OF_BUFFER_CHAR )
2503     /* They forgot to leave room for the EOB's. */
2504     return 0;
2505    
2506     b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ,yyscanner );
2507     if ( ! b )
2508     YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
2509    
2510     b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
2511     b->yy_buf_pos = b->yy_ch_buf = base;
2512     b->yy_is_our_buffer = 0;
2513     b->yy_input_file = 0;
2514     b->yy_n_chars = b->yy_buf_size;
2515     b->yy_is_interactive = 0;
2516     b->yy_at_bol = 1;
2517     b->yy_fill_buffer = 0;
2518     b->yy_buffer_status = YY_BUFFER_NEW;
2519    
2520     yy_switch_to_buffer(b ,yyscanner );
2521    
2522     return b;
2523     }
2524    
2525     /** Setup the input buffer state to scan a string. The next call to yylex() will
2526     * scan from a @e copy of @a str.
2527     * @param str a NUL-terminated string to scan
2528     * @param yyscanner The scanner object.
2529     * @return the newly allocated buffer state object.
2530     * @note If you want to scan bytes that may contain NUL values, then use
2531     * yy_scan_bytes() instead.
2532     */
2533 schoenebeck 209 YY_BUFFER_STATE yy_scan_string (yyconst char * yy_str , yyscan_t yyscanner)
2534 schoenebeck 35 {
2535    
2536 schoenebeck 209 return yy_scan_bytes(yy_str,strlen(yy_str) ,yyscanner);
2537 schoenebeck 35 }
2538    
2539     /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
2540     * scan from a @e copy of @a bytes.
2541     * @param bytes the byte buffer to scan
2542     * @param len the number of bytes in the buffer pointed to by @a bytes.
2543     * @param yyscanner The scanner object.
2544     * @return the newly allocated buffer state object.
2545     */
2546     YY_BUFFER_STATE yy_scan_bytes (yyconst char * bytes, int len , yyscan_t yyscanner)
2547     {
2548     YY_BUFFER_STATE b;
2549     char *buf;
2550     yy_size_t n;
2551     int i;
2552    
2553     /* Get memory for full buffer, including space for trailing EOB's. */
2554     n = len + 2;
2555     buf = (char *) yyalloc(n ,yyscanner );
2556     if ( ! buf )
2557     YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
2558    
2559     for ( i = 0; i < len; ++i )
2560     buf[i] = bytes[i];
2561    
2562     buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR;
2563    
2564     b = yy_scan_buffer(buf,n ,yyscanner);
2565     if ( ! b )
2566     YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
2567    
2568     /* It's okay to grow etc. this buffer, and we should throw it
2569     * away when we're done.
2570     */
2571     b->yy_is_our_buffer = 1;
2572    
2573     return b;
2574     }
2575    
2576     #ifndef YY_EXIT_FAILURE
2577     #define YY_EXIT_FAILURE 2
2578     #endif
2579    
2580     static void yy_fatal_error (yyconst char* msg , yyscan_t yyscanner)
2581     {
2582     (void) fprintf( stderr, "%s\n", msg );
2583     exit( YY_EXIT_FAILURE );
2584     }
2585    
2586     /* Redefine yyless() so it works in section 3 code. */
2587    
2588     #undef yyless
2589     #define yyless(n) \
2590     do \
2591     { \
2592     /* Undo effects of setting up yytext. */ \
2593     int yyless_macro_arg = (n); \
2594     YY_LESS_LINENO(yyless_macro_arg);\
2595     yytext[yyleng] = yyg->yy_hold_char; \
2596     yyg->yy_c_buf_p = yytext + yyless_macro_arg; \
2597     yyg->yy_hold_char = *yyg->yy_c_buf_p; \
2598     *yyg->yy_c_buf_p = '\0'; \
2599     yyleng = yyless_macro_arg; \
2600     } \
2601     while ( 0 )
2602    
2603     /* Accessor methods (get/set functions) to struct members. */
2604    
2605     /** Get the user-defined data for this scanner.
2606     * @param yyscanner The scanner object.
2607     */
2608     YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner)
2609     {
2610     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2611     return yyextra;
2612     }
2613    
2614     /** Get the current line number.
2615     * @param yyscanner The scanner object.
2616     */
2617     int yyget_lineno (yyscan_t yyscanner)
2618     {
2619     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2620    
2621     if (! YY_CURRENT_BUFFER)
2622     return 0;
2623    
2624     return yylineno;
2625     }
2626    
2627     /** Get the current column number.
2628     * @param yyscanner The scanner object.
2629     */
2630     int yyget_column (yyscan_t yyscanner)
2631     {
2632     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2633    
2634     if (! YY_CURRENT_BUFFER)
2635     return 0;
2636    
2637     return yycolumn;
2638     }
2639    
2640     /** Get the input stream.
2641     * @param yyscanner The scanner object.
2642     */
2643     FILE *yyget_in (yyscan_t yyscanner)
2644     {
2645     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2646     return yyin;
2647     }
2648    
2649     /** Get the output stream.
2650     * @param yyscanner The scanner object.
2651     */
2652     FILE *yyget_out (yyscan_t yyscanner)
2653     {
2654     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2655     return yyout;
2656     }
2657    
2658     /** Get the length of the current token.
2659     * @param yyscanner The scanner object.
2660     */
2661     int yyget_leng (yyscan_t yyscanner)
2662     {
2663     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2664     return yyleng;
2665     }
2666    
2667     /** Get the current token.
2668     * @param yyscanner The scanner object.
2669     */
2670    
2671     char *yyget_text (yyscan_t yyscanner)
2672     {
2673     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2674     return yytext;
2675     }
2676    
2677     /** Set the user-defined data. This data is never touched by the scanner.
2678     * @param user_defined The data to be associated with this scanner.
2679     * @param yyscanner The scanner object.
2680     */
2681     void yyset_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner)
2682     {
2683     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2684     yyextra = user_defined ;
2685     }
2686    
2687     /** Set the current line number.
2688     * @param line_number
2689     * @param yyscanner The scanner object.
2690     */
2691     void yyset_lineno (int line_number , yyscan_t yyscanner)
2692     {
2693     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2694    
2695     /* lineno is only valid if an input buffer exists. */
2696     if (! YY_CURRENT_BUFFER )
2697     yy_fatal_error( "yyset_lineno called with no buffer" , yyscanner);
2698    
2699     yylineno = line_number;
2700     }
2701    
2702     /** Set the current column.
2703     * @param line_number
2704     * @param yyscanner The scanner object.
2705     */
2706     void yyset_column (int column_no , yyscan_t yyscanner)
2707     {
2708     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2709    
2710     /* column is only valid if an input buffer exists. */
2711     if (! YY_CURRENT_BUFFER )
2712     yy_fatal_error( "yyset_column called with no buffer" , yyscanner);
2713    
2714     yycolumn = column_no;
2715     }
2716    
2717     /** Set the input stream. This does not discard the current
2718     * input buffer.
2719     * @param in_str A readable stream.
2720     * @param yyscanner The scanner object.
2721     * @see yy_switch_to_buffer
2722     */
2723     void yyset_in (FILE * in_str , yyscan_t yyscanner)
2724     {
2725     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2726     yyin = in_str ;
2727     }
2728    
2729     void yyset_out (FILE * out_str , yyscan_t yyscanner)
2730     {
2731     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2732     yyout = out_str ;
2733     }
2734    
2735     int yyget_debug (yyscan_t yyscanner)
2736     {
2737     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2738     return yy_flex_debug;
2739     }
2740    
2741     void yyset_debug (int bdebug , yyscan_t yyscanner)
2742     {
2743     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2744     yy_flex_debug = bdebug ;
2745     }
2746    
2747     /* Accessor methods for yylval and yylloc */
2748    
2749     static int yy_init_globals (yyscan_t yyscanner)
2750     {
2751     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2752     /* Initialization is the same as for the non-reentrant scanner.
2753     This function is called once per scanner lifetime. */
2754    
2755     yyg->yy_buffer_stack = 0;
2756     yyg->yy_buffer_stack_top = 0;
2757     yyg->yy_buffer_stack_max = 0;
2758     yyg->yy_c_buf_p = (char *) 0;
2759     yyg->yy_init = 1;
2760     yyg->yy_start = 0;
2761     yyg->yy_start_stack_ptr = 0;
2762     yyg->yy_start_stack_depth = 0;
2763     yyg->yy_start_stack = (int *) 0;
2764    
2765     /* Defined in main.c */
2766     #ifdef YY_STDINIT
2767     yyin = stdin;
2768     yyout = stdout;
2769     #else
2770     yyin = (FILE *) 0;
2771     yyout = (FILE *) 0;
2772     #endif
2773    
2774     /* For future reference: Set errno on error, since we are called by
2775     * yylex_init()
2776     */
2777     return 0;
2778     }
2779    
2780     /* User-visible API */
2781    
2782     /* yylex_init is special because it creates the scanner itself, so it is
2783     * the ONLY reentrant function that doesn't take the scanner as the last argument.
2784     * That's why we explicitly handle the declaration, instead of using our macros.
2785     */
2786    
2787     int yylex_init(yyscan_t* ptr_yy_globals)
2788    
2789     {
2790     if (ptr_yy_globals == NULL){
2791     errno = EINVAL;
2792     return 1;
2793     }
2794    
2795     *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), NULL );
2796    
2797     if (*ptr_yy_globals == NULL){
2798     errno = ENOMEM;
2799     return 1;
2800     }
2801    
2802     memset(*ptr_yy_globals,0,sizeof(struct yyguts_t));
2803    
2804     return yy_init_globals ( *ptr_yy_globals );
2805     }
2806    
2807     /* yylex_destroy is for both reentrant and non-reentrant scanners. */
2808     int yylex_destroy (yyscan_t yyscanner)
2809     {
2810     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2811    
2812     /* Pop the buffer stack, destroying each element. */
2813     while(YY_CURRENT_BUFFER){
2814     yy_delete_buffer(YY_CURRENT_BUFFER ,yyscanner );
2815     YY_CURRENT_BUFFER_LVALUE = NULL;
2816     yypop_buffer_state(yyscanner);
2817     }
2818    
2819     /* Destroy the stack itself. */
2820     yyfree(yyg->yy_buffer_stack ,yyscanner);
2821     yyg->yy_buffer_stack = NULL;
2822    
2823     /* Destroy the start condition stack. */
2824     yyfree(yyg->yy_start_stack ,yyscanner );
2825     yyg->yy_start_stack = NULL;
2826    
2827     /* Destroy the main struct (reentrant only). */
2828     yyfree ( yyscanner , yyscanner );
2829     return 0;
2830     }
2831    
2832     /*
2833     * Internal utility routines.
2834     */
2835    
2836     #ifndef yytext_ptr
2837     static void yy_flex_strncpy (char* s1, yyconst char * s2, int n , yyscan_t yyscanner)
2838     {
2839     register int i;
2840     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2841     for ( i = 0; i < n; ++i )
2842     s1[i] = s2[i];
2843     }
2844     #endif
2845    
2846     #ifdef YY_NEED_STRLEN
2847     static int yy_flex_strlen (yyconst char * s , yyscan_t yyscanner)
2848     {
2849     register int n;
2850     struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
2851     for ( n = 0; s[n]; ++n )
2852     ;
2853    
2854     return n;
2855     }
2856     #endif
2857    
2858     void *yyalloc (yy_size_t size , yyscan_t yyscanner)
2859     {
2860     return (void *) malloc( size );
2861     }
2862    
2863     void *yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner)
2864     {
2865     /* The cast to (char *) in the following accommodates both
2866     * implementations that use char* generic pointers, and those
2867     * that use void* generic pointers. It works with the latter
2868     * because both ANSI C and C++ allow castless assignment from
2869     * any pointer type to void*, and deal with argument conversions
2870     * as though doing an assignment.
2871     */
2872     return (void *) realloc( (char *) ptr, size );
2873     }
2874    
2875     void yyfree (void * ptr , yyscan_t yyscanner)
2876     {
2877     free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
2878     }
2879    
2880     #define YYTABLES_NAME "yytables"
2881    
2882     #undef YY_NEW_FILE
2883     #undef YY_FLUSH_BUFFER
2884     #undef yy_set_bol
2885     #undef yy_new_buffer
2886     #undef yy_set_interactive
2887 schoenebeck 209 #undef yytext_ptr
2888 schoenebeck 35 #undef YY_DO_BEFORE_ACTION
2889    
2890     #ifdef YY_DECL_IS_OURS
2891     #undef YY_DECL_IS_OURS
2892     #undef YY_DECL
2893     #endif
2894 schoenebeck 210 #line 108 "lscp.l"
2895 schoenebeck 35
2896    
2897    
2898     /**
2899     * We provide our own version of yywrap() so we don't have to link against
2900     * the lex library.
2901     */
2902     int yywrap(yyscan_t yyscanner) {
2903     return 1; // continue scanning
2904     }
2905    

  ViewVC Help
Powered by ViewVC