?? mwmlex.c
字號:
/* A lexical scanner generated by flex *//* Scanner skeleton version: * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $ */#define FLEX_SCANNER#define YY_FLEX_MAJOR_VERSION 2#define YY_FLEX_MINOR_VERSION 5#include <stdio.h>#include <unistd.h>/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */#ifdef c_plusplus#ifndef __cplusplus#define __cplusplus#endif#endif#ifdef __cplusplus#include <stdlib.h>/* Use prototypes in function declarations. */#define YY_USE_PROTOS/* The "const" storage-class-modifier is valid. */#define YY_USE_CONST#else /* ! __cplusplus */#if __STDC__#define YY_USE_PROTOS#define YY_USE_CONST#endif /* __STDC__ */#endif /* ! __cplusplus */#ifdef __TURBOC__ #pragma warn -rch #pragma warn -use#include <io.h>#include <stdlib.h>#define YY_USE_CONST#define YY_USE_PROTOS#endif#ifdef YY_USE_CONST#define yyconst const#else#define yyconst#endif#ifdef YY_USE_PROTOS#define YY_PROTO(proto) proto#else#define YY_PROTO(proto) ()#endif/* Returned upon end-of-file. */#define YY_NULL 0/* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)/* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */#define BEGIN yy_start = 1 + 2 */* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */#define YY_START ((yy_start - 1) / 2)#define YYSTATE YY_START/* Action number for EOF rule of a given start state. */#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)/* Special action meaning "start processing a new file". */#define YY_NEW_FILE yyrestart( yyin )#define YY_END_OF_BUFFER_CHAR 0/* Size of default input buffer. */#define YY_BUF_SIZE 16384typedef struct yy_buffer_state *YY_BUFFER_STATE;extern int yyleng;extern FILE *yyin, *yyout;#define EOB_ACT_CONTINUE_SCAN 0#define EOB_ACT_END_OF_FILE 1#define EOB_ACT_LAST_MATCH 2/* The funky do-while in the following #define is used to turn the definition * int a single C statement (which needs a semi-colon terminator). This * avoids problems with code like: * * if ( condition_holds ) * yyless( 5 ); * else * do_something_else(); * * Prior to using the do-while the compiler would get upset at the * "else" because it interpreted the "if" statement as being all * done when it reached the ';' after the yyless() call. *//* Return all but the first 'n' matched characters back to the input stream. */#define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ *yy_cp = yy_hold_char; \ YY_RESTORE_YY_MORE_OFFSET \ yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 )#define unput(c) yyunput( c, yytext_ptr )/* The following is because we cannot portably get our hands on size_t * (without autoconf's help, which isn't available because we want * flex-generated scanners to compile on their own). */typedef unsigned int yy_size_t;struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status;#define YY_BUFFER_NEW 0#define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */#define YY_BUFFER_EOF_PENDING 2 };static YY_BUFFER_STATE yy_current_buffer = 0;/* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". */#define YY_CURRENT_BUFFER yy_current_buffer/* yy_hold_char holds the character lost when yytext is formed. */static char yy_hold_char;static int yy_n_chars; /* number of characters read into yy_ch_buf */int yyleng;/* Points to current character in buffer. */static char *yy_c_buf_p = (char *) 0;static int yy_init = 1; /* whether we need to initialize */static int yy_start = 0; /* start state number *//* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */static int yy_did_buffer_switch_on_eof;void yyrestart YY_PROTO(( FILE *input_file ));void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));void yy_load_buffer_state YY_PROTO(( void ));YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));#define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str ));YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len ));static void *yy_flex_alloc YY_PROTO(( yy_size_t ));static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));static void yy_flex_free YY_PROTO(( void * ));#define yy_new_buffer yy_create_buffer#define yy_set_interactive(is_interactive) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_is_interactive = is_interactive; \ }#define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_at_bol = at_bol; \ }#define YY_AT_BOL() (yy_current_buffer->yy_at_bol)typedef unsigned char YY_CHAR;FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;typedef int yy_state_type;extern char *yytext;#define yytext_ptr yytextstatic yy_state_type yy_get_previous_state YY_PROTO(( void ));static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));static int yy_get_next_buffer YY_PROTO(( void ));static void yy_fatal_error YY_PROTO(( yyconst char msg[] ));/* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */#define YY_DO_BEFORE_ACTION \ yytext_ptr = yy_bp; \ yyleng = (int) (yy_cp - yy_bp); \ yy_hold_char = *yy_cp; \ *yy_cp = '\0'; \ yy_c_buf_p = yy_cp;#define YY_NUM_RULES 96#define YY_END_OF_BUFFER 97static yyconst short int yy_accept[455] = { 0, 0, 0, 97, 96, 1, 95, 96, 3, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 2, 1, 0, 93, 3, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 2, 26, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 12, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 8, 94, 94, 94, 94, 94, 94, 94, 23, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 13, 11, 27, 94, 9, 25, 94, 28, 29, 30, 31, 32, 6, 7, 16, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 67, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 17, 94, 94, 20, 94, 24, 18, 94, 94, 94, 19, 94, 94, 34, 94, 94, 38, 94, 94, 42, 94, 94, 46, 94, 94, 50, 94, 53, 94, 90, 56, 94, 94, 59, 94, 94, 62, 94, 64, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 14, 4, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 10, 94, 94, 94, 60, 94, 94, 94, 94, 94, 94, 94, 94, 94, 76, 94, 94, 94, 94, 94, 94, 94, 94, 88, 94, 94, 94, 94, 94, 94, 94, 33, 94, 37, 94, 41, 94, 45, 94, 49, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 80, 94, 94, 84, 94, 94, 94, 94, 94, 94, 94, 94, 94, 35, 39, 43, 47, 51, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 78, 81, 82, 94, 94, 94, 94, 94, 94, 22, 21, 15, 36, 40, 44, 48, 52, 94, 94, 94, 94, 94, 61, 63, 94, 66, 94, 94, 94, 94, 94, 74, 75, 94, 94, 94, 85, 94, 94, 94, 94, 5, 94, 55, 94, 58, 92, 65, 68, 94, 71, 94, 73, 94, 94, 94, 86, 94, 94, 94, 94, 94, 94, 70, 72, 94, 94, 94, 94, 94, 94, 54, 57, 94, 77, 79, 94, 94, 91, 89, 94, 94, 87, 94, 94, 94, 94, 94, 94, 94, 94, 94, 83, 94, 69, 0 } ;static yyconst int yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 5, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 7, 8, 1, 9, 10, 11, 12, 13, 14, 9, 9, 9, 9, 1, 1, 15, 1, 15, 1, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 9, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 1, 1, 1, 1, 16, 1, 17, 18, 19, 20, 21, 22, 23, 24, 25, 9, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 15, 15, 15, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ;static yyconst int yy_meta[42] = { 0, 1, 1, 2, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 } ;static yyconst short int yy_base[459] = { 0, 0, 476, 479, 481, 40, 481, 473, 0, 0, 450, 27, 441, 37, 456, 453, 443, 29, 451, 438, 440, 445, 22, 443, 0, 46, 462, 481, 0, 0, 431, 446, 431, 434, 427, 428, 53, 35, 430, 419, 439, 418, 29, 427, 435, 415, 432, 422, 426, 415, 432, 31, 0, 0, 422, 427, 82, 411, 418, 423, 418, 421, 402, 410, 409, 413, 407, 80, 47, 73, 400, 44, 32, 53, 410, 406, 412, 403, 397, 404, 404, 392, 410, 401, 101, 390, 387, 388, 400, 394, 391, 399, 394, 0, 396, 80, 88, 98, 100, 102, 386, 0, 394, 381, 379, 391, 392, 375, 382, 370, 368, 377, 376, 367, 364, 36, 70, 368, 380, 375, 374, 101, 365, 96, 362, 373, 366, 373, 371, 0, 0, 0, 364, 373, 0, 362, 0, 0, 0, 0, 0, 0, 0, 0, 354, 367, 353, 356, 360, 351, 356, 352, 350, 353, 349, 347, 350, 346, 344, 347, 343, 341, 344, 340, 338, 339, 336, 347, 339, 345, 327, 332, 334, 339, 334, 322, 332, 335, 320, 0, 326, 327, 318, 316, 313, 314, 314, 314, 104, 325, 325, 327, 327, 315, 318, 320, 0, 322, 313, 0, 312, 0, 0, 311, 297, 305, 0, 308, 294, 0, 306, 292, 0, 304, 290, 0, 302, 288, 0, 300, 286, 0, 289, 0, 295, 0, 0, 287, 304, 0, 286, 290, 0, 289, 0, 300, 298, 298, 297, 296, 295, 294, 288, 287, 266, 111, 285, 289, 271, 285, 281, 274, 270, 271, 257, 256, 275, 0, 0, 276, 265, 274, 263, 272, 261, 270, 259, 268, 257, 0, 264, 268, 252, 0, 257, 256, 83, 253, 254, 252, 239, 107, 248, 259, 240, 252, 239, 238, 241, 241, 251, 246, 0, 245, 227, 239, 242, 241, 232, 234, 0, 233, 0, 232, 0, 231, 0, 230, 0, 239, 111, 237, 212, 211, 223, 229, 224, 229, 226, 218, 217, 223, 205, 215, 217, 0, 205, 218, 0, 204, 202, 212, 219, 218, 206, 214, 213, 195, 218, 217, 216, 215, 214, 112, 194, 202, 199, 200, 199, 202, 178, 176, 186, 175, 193, 196, 172, 183, 180, 193, 0, 192, 184, 176, 188, 173, 176, 162, 0, 0, 0, 0, 0, 0, 0, 0, 171, 169, 172, 158, 176, 0, 0, 165, 0, 174, 165, 159, 163, 160, 0, 0, 152, 151, 171, 0, 154, 149, 168, 159, 0, 145, 0, 152, 0, 0, 0, 165, 146, 0, 143, 0, 157, 152, 147, 0, 150, 151, 139, 143, 138, 153, 0, 0, 136, 139, 147, 136, 144, 129, 0, 0, 134, 0, 0, 146, 128, 0, 0, 140, 126, 0, 142, 139, 120, 122, 129, 111, 119, 122, 108, 0, 119, 0, 481, 148, 151, 95, 154 } ;static yyconst short int yy_def[459] = { 0, 454, 1, 454, 454, 454, 454, 455, 456, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 458, 454, 455, 454, 456, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 458, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 457, 0, 454, 454, 454, 454 } ;static yyconst short int yy_nxt[523] = { 0, 4, 5, 5, 6, 7, 8, 6, 4, 9, 9, 9, 9, 9, 9, 6, 6, 10, 11, 12, 9, 9, 13, 9, 9, 14, 15, 16, 17, 18, 9, 19, 9, 20, 21, 22, 9, 9, 23, 9, 9, 9, 25, 25, 31, 36, 41, 49, 25, 25, 42, 122, 75, 123, 43, 50, 76, 32, 81, 44, 91, 120, 33, 34, 82, 121, 92, 179, 114, 180, 37, 59, 60, 61, 62, 63, 64, 115, 124, 65, 66, 67, 68, 125, 69, 70, 71, 72, 73, 181, 116, 74, 95, 96, 97, 98, 99, 110, 29, 150, 151, 111, 314, 117, 182, 112, 118, 153, 154, 315, 113, 136, 137, 138, 139, 140, 152, 156, 157, 159, 160, 162, 163, 187, 155, 190, 320, 191, 286, 244, 344, 192, 376, 321, 158, 188, 161, 345, 164, 245, 453, 287, 452, 451, 450, 449, 448, 447, 377, 26, 26, 26, 28, 446, 28, 52, 445, 52, 444, 443, 442, 441, 440, 439, 438, 437, 436, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 398, 397, 396, 395, 394, 393, 392, 391, 390, 389, 388, 387, 386, 385, 384, 383, 382, 381, 380, 379, 378, 375, 374, 373, 372, 371, 370, 369, 368, 367, 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, 356, 355, 354, 353, 352, 351, 350, 349, 348, 347, 346, 343, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 330, 329, 328, 327, 326, 325, 324, 323, 322, 319, 318, 317, 316, 313, 312, 311, 310, 309, 308, 307, 306, 305, 304, 303, 302, 301, 300, 299, 298, 297, 296, 295, 294, 293, 292, 291, 290, 289, 288, 285, 284, 283, 282, 281, 280, 279, 278, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 267, 266, 265, 264, 263, 262, 261, 260, 259, 258, 257, 256, 255, 254, 253, 252, 251, 250, 249, 248, 247, 246, 243, 242, 241, 240, 239, 238, 237, 236, 235, 234, 233, 232, 231, 230, 229, 228, 227, 226, 225, 224, 223, 222, 221, 220, 219, 218, 217, 216, 215, 214, 213, 212, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 198, 197, 196, 195, 194, 193, 189, 186, 185, 184, 183, 178, 177, 176, 175, 174, 173, 172, 171, 170, 169, 168, 167, 166, 165, 149, 148, 147, 146, 145, 144, 143, 142, 141, 135, 134, 133, 132, 131, 130, 129, 128, 127, 126, 119, 109, 108, 107, 106, 105, 104, 103, 102, 101, 100, 94, 93, 90, 89, 88, 87, 86, 85, 84, 83, 80, 79, 78, 77, 58, 57, 56, 55, 54, 53, 27, 51, 48, 47, 46, 45, 40, 39, 38, 35, 30, 27, 454, 24, 3, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, 454 } ;static yyconst short int yy_chk[523] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5, 11, 13, 17, 22, 25, 25, 17, 72, 37, 72, 17, 22, 37, 11, 42, 17, 51, 71, 11, 11, 42, 71, 51, 115, 68, 115, 13, 36, 36, 36, 36, 36, 36, 68, 73, 36, 36, 36, 36, 73, 36, 36, 36, 36, 36, 116, 69, 36, 56, 56, 56, 56, 56, 67, 457, 95, 95, 67, 276, 69, 116, 67, 69, 96, 96, 276, 67, 84, 84, 84, 84, 84, 95, 97, 97, 98, 98, 99, 99, 121, 96, 123, 281, 123, 245, 188, 310, 123, 343, 281, 97, 121, 98, 310, 99, 188, 452, 245, 450, 449, 448, 447, 446, 445, 343, 455, 455, 455, 456, 444, 456, 458, 443, 458, 442, 440, 439, 436, 435, 432, 429, 428, 427, 426, 425, 424, 421, 420, 419, 418, 417, 416, 414, 413, 412, 410, 408, 407, 403, 401, 399, 398, 397, 396, 394, 393, 392, 389, 388, 387, 386, 385, 383, 380, 379, 378, 377, 376, 367, 366, 365, 364, 363, 362, 361, 359, 358, 357, 356, 355, 354, 353, 352, 351, 350, 349, 348, 347, 346, 345, 344, 342, 341, 340, 339, 338, 337, 336, 335, 334, 333, 332, 331, 330, 329, 327, 326, 324, 323, 322, 321, 320, 319, 318, 317, 316, 315, 314, 313, 312, 311, 309, 307, 305, 303, 301, 299,
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -