added 3 errors for dofuncenum

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40143
This commit is contained in:
Borja Ferrer 2006-11-04 19:35:21 +00:00
parent 8402d79760
commit b5e203a67d
2 changed files with 159 additions and 156 deletions

View File

@ -2599,8 +2599,7 @@ static void dofuncenum(void)
int l = lex(&val,&str); int l = lex(&val,&str);
if (l != tSYMBOL) if (l != tSYMBOL)
{ {
/* Error should be: "expected tag name identifier" */ error(93);
error(57);
} }
/* This tag can't already exist! */ /* This tag can't already exist! */
@ -2612,8 +2611,7 @@ static void dofuncenum(void)
/* Another bad one... */ /* Another bad one... */
if (!(cur->value & FUNCTAG)) if (!(cur->value & FUNCTAG))
{ {
/* Error should be: "function enumeration requires unique tag" */ error(94);
error(213);
} }
break; break;
} }
@ -2733,8 +2731,7 @@ static void dofuncenum(void)
arg->ommittable = TRUE; arg->ommittable = TRUE;
func.ommittable = TRUE; func.ommittable = TRUE;
} else if (func.ommittable) { } else if (func.ommittable) {
/* Error should be: "cannot have required parameters after optional parameters" */ error(95);
error(1);
} }
func.argcount++; func.argcount++;
} else if (l == tELLIPS) { } else if (l == tELLIPS) {

View File

@ -26,14 +26,14 @@ SC_FUNC int strexpand(char *dest, unsigned char *source, int maxlen, unsigned ch
#define SCPACK_TABLE errstr_table #define SCPACK_TABLE errstr_table
/*-*SCPACK start of pair table, do not change or remove this line */ /*-*SCPACK start of pair table, do not change or remove this line */
unsigned char errstr_table[][2] = { unsigned char errstr_table[][2] = {
{101,32}, {111,110}, {116,32}, {105,110}, {97,114}, {116,105}, {100,32}, {115,32}, {101,114}, {97,108}, {101,110}, {37,115}, {133,129}, {34,139}, {141,34}, {117,110}, {101,32}, {111,110}, {116,32}, {105,110}, {97,114}, {116,105}, {100,32}, {115,32}, {101,114}, {101,110}, {133,129}, {97,108}, {37,115}, {34,140}, {141,34}, {117,110},
{114,101}, {110,111}, {115,105}, {121,32}, {97,116}, {111,114}, {97,110}, {32,142}, {109,98}, {115,116}, {41,10}, {100,101}, {109,138}, {101,134}, {98,108}, {140,32}, {114,101}, {110,111}, {115,105}, {97,116}, {121,32}, {97,110}, {111,114}, {109,98}, {32,142}, {100,101}, {115,116}, {109,137}, {41,10}, {101,134}, {138,32}, {98,108},
{111,108}, {114,97}, {145,130}, {118,137}, {143,99}, {102,164}, {115,121}, {166,152}, {167,160}, {117,115}, {97,32}, {115,146}, {97,158}, {149,32}, {132,161}, {105,134}, {145,130}, {111,108}, {114,97}, {143,99}, {118,139}, {102,163}, {115,121}, {166,151}, {167,161}, {117,115}, {97,32}, {115,146}, {97,159}, {132,162}, {103,32}, {136,32},
{103,32}, {163,175}, {103,117}, {178,156}, {136,32}, {132,179}, {131,177}, {111,102}, {116,104}, {101,120}, {105,135}, {165,159}, {101,100}, {99,104}, {118,132}, {168,151}, {150,32}, {103,117}, {105,134}, {177,155}, {164,178}, {132,179}, {111,102}, {101,120}, {165,158}, {131,180}, {99,104}, {116,104}, {105,135}, {153,102}, {101,100}, {118,132},
{105,172}, {190,192}, {155,102}, {174,147}, {183,32}, {109,97}, {116,111}, {99,129}, {101,135}, {112,144}, {181,130}, {98,128}, {115,10}, {153,148}, {44,32}, {40,191}, {168,152}, {182,32}, {105,172}, {191,194}, {101,135}, {173,148}, {109,97}, {116,111}, {99,129}, {115,10}, {112,144}, {116,97}, {181,130}, {98,128}, {154,147}, {44,32},
{169,130}, {151,10}, {101,10}, {207,154}, {109,208}, {116,97}, {194,131}, {193,128}, {34,32}, {129,32}, {105,99}, {132,97}, {100,105}, {146,122}, {110,32}, {137,32}, {40,192}, {132,97}, {169,130}, {189,131}, {152,10}, {101,10}, {208,156}, {109,210}, {195,128}, {34,32}, {129,32}, {139,32}, {104,97}, {105,99}, {100,105}, {146,122},
{104,97}, {101,108}, {117,108}, {99,111}, {108,111}, {109,148}, {199,153}, {58,209}, {111,112}, {97,115}, {108,128}, {232,136}, {230,150}, {150,32}, {201,171}, {131,176}, {109,147}, {110,32}, {101,108}, {117,108}, {99,111}, {108,111}, {111,112}, {116,136}, {200,154}, {58,212}, {102,105}, {97,115}, {108,128}, {230,136}, {232,149}, {149,32},
{212,203}, {102,105}, {119,105}, {185,238}, {109,112}, {116,136}, {165,140}, {197,147}, {102,149}, {111,32}, {131,32}, {213,176}, {110,117}, {115,117}, {118,128} {202,171}, {131,174}, {203,174}, {215,205}, {119,105}, {109,112}, {183,240}, {110,117}, {118,128}, {165,138}, {247,151}, {198,148}, {102,150}, {111,32}, {131,32}
}; };
/*-*SCPACK end of pair table, do not change or remove this line */ /*-*SCPACK end of pair table, do not change or remove this line */
@ -130,100 +130,106 @@ static char *errmsg[] = {
/*089*/ "state variables may not be initialized (symbol \"%s\")\n", /*089*/ "state variables may not be initialized (symbol \"%s\")\n",
/*090*/ "public functions may not return arrays (symbol \"%s\")\n", /*090*/ "public functions may not return arrays (symbol \"%s\")\n",
/*091*/ "ambiguous constant; tag override is required (symbol \"%s\")\n", /*091*/ "ambiguous constant; tag override is required (symbol \"%s\")\n",
/*092*/ "number of arguments does not match definition\n" /*092*/ "number of arguments does not match definition\n",
/*093*/ "expected tag name identifier\n",
/*094*/ "function enumeration requires unique tag\n",
/*095*/ "cannot have required parameters after optional parameters\n"
#else #else
"\271pect\235\306k\212:\227\316bu\202fo\217\206\216\012", "\267pect\235\307k\211:\230\317bu\202fo\217\206\216\012",
"\201l\223\252s\203g\352\315e\234\202(\255\363\201) c\355f\240\344w ea\275 \042c\351e\042\012", "\201l\224\252s\203g\354\316e\233\202(\260\366\201) c\357f\241\345w ea\272 \042c\353e\042\012",
"\233cl\333\237\304\252\344c\337\327\324appe\204 \372\252\343\364o\217\206\236ock\012", "\231cl\321\236\301\252\345c\333\330\327appe\204 \376\252\344\365o\217\206\237ock\012",
"\366\227 \272\242i\364le\234t\274\012", "\371\230 \274\240i\365le\233t\276\012",
"\273\367\242\340\376\265t\314", "\270\373\240\334\370\265t\311",
"\360a\253gn\235\306 \355\256y\012", "\363a\253gn\235\307 \357\255y\012",
"\353\224\255c\226\242\313\220\326\274\012", "\355\223\260c\225\240\315\220\323\276\012",
"\360\252\354\202\363\201; \351\375m\235z\210o\012", "\363\252\356\202\366\201; \353sum\235z\210o\012",
"\266\303\335\200(nega\205ve\316z\210\371\255ou\202\304bo\217ds\232", "\271\305\337\200(nega\205ve\317z\210\375\260ou\202\301bo\217ds\234",
"\266\273\255\233cl\333\214\012", "\271\270\260\231cl\321\212\012",
"\266out\222d\200\366\314", "\271out\222d\200\371\311",
"\266\273c\211l\316\242\252\261add\220s\314", "\271\270c\213l\317\240\252\264add\220s\311",
"\221 \212tr\223po\203\202(\221 pu\236\332 \366s\232", "\221 \211tr\224po\203\202(\221 pu\237\335 \371s\234",
"\266\315e\234t; \242\372s\362t\275\012", "\271\316e\233t; \240\376s\364t\272\012",
"\042\302a\342t\330c\351\200\360\270\200l\351\202c\351\200\372s\362t\275 \315e\234t\012", "\042\275a\343t\331c\353\200\363\273\200l\353\202c\353\200\376s\364t\272 \316e\233t\012",
"m\342\205p\352\302a\342t\207\372\042s\362t\275\042\012", "m\343\205p\354\275a\343t\207\376\042s\364t\272\042\012",
"\217\326\235\277\012", "\217\323\235\300\012",
"\203i\205\211iza\237d\224\252\271ce\274\207\233cl\204\235\335\322", "\203i\205\213iza\236d\223\252\267ce\276\207\231cl\204\235\337\325",
"\242\252lab\341\347", "\240\252lab\342\351",
"\266\250 nam\200\216\012", "\271\250 nam\200\216\012",
"\250 \211\220ad\223\326\274\347", "\250 \213\220ad\224\323\276\351",
"\360l\243u\200(n\201-\354t\232", "\363l\244u\200(n\201-\356t\234",
"\303a\253gn\234\202\360\222\364\352a\253gn\234t\012", "\305a\253gn\233\202\363\222\365\354a\253gn\233t\012",
"\042b\220ak\330\255\042\307t\203ue\330\272ou\202\304\307t\271t\012", "\042b\220ak\331\260\042\310t\203ue\331\274ou\202\301\310t\267t\012",
"\273head\357\334ff\210\207from pro\306typ\322", "\270head\361\336ff\210\207from pro\307typ\325",
"\221 \345\275\357\042#if...\042\012", "\221 \340\272\361\042#if...\042\012",
"\266\275\333ct\264\354t\012", "\271\272\321ct\257\356t\012",
"\266\375bscrip\202(\242\355\303\255\306\371m\226\223\375bscripts)\347", "\271subscrip\202(\240\357\305\260\307\375m\225\224subscripts)\351",
"\266\363\201\316\351\375m\235z\210o\012", "\271\366\201\317\353sum\235z\210o\012",
"\343\364o\217\206\315e\234\202\242c\344s\235a\202\270\200\212\206\304\361\352(\231\204t\235a\202l\203\200%d\232", "\344\365o\217\206\316e\233\202\240c\345s\235a\202\273\200\211\206\301\352\354(\232\204t\235a\202l\203\200%d\234",
"\217k\221w\336\334\220c\205v\322", "\217k\221w\341\336\220c\205v\325",
"\303\203\233x ou\202\304bo\217d\207(\327\216\232", "\305\203\231x ou\202\301bo\217d\207(\330\216\234",
"\303\360\203\233x\235(\327\216\232", "\305\363\203\231x\235(\330\216\234",
"\312do\310\242\340\376\252\302a\342\202\243u\200(\312%d\232", "\314do\304\240\334\370\252\275a\343\202\244u\200(\314%d\234",
"\312typ\200mis\345\275 (\312%d\232", "\314typ\200mis\340\272 (\314%d\234",
"e\364t\223\315e\234t\012", "e\365t\224\316e\233t\012",
"\266\231r\357(po\253\236\223n\201-\365m\203\224\235\231r\203g\232", "\271\232r\361(po\253\237\224n\201-\347m\203\223\235\232r\203g\234",
"\271t\241 \275\333c\365\207\331l\203\322", "\267t\242 \272\321c\347\207\332l\203\325",
"\354\202\250 \340\207\221 \335\322", "\356\202\250 \334\207\221 \337\325",
"dupl\332\224\200\042c\351e\330lab\341 (\243u\200%d\232", "dupl\335\223\200\042c\353e\331lab\342 (\244u\200%d\234",
"\266\341lip\222s\316\303\335\200\272\242k\221wn\012", "\271\342lip\222s\317\305\337\200\274\240k\221wn\012",
"\266\343\230\203a\237\304cl\351\207speci\361\210\314", "\271\344\227\203a\236\301cl\353\207speci\352\210\311",
"\275\333ct\264\354\202\271ce\274\207r\226g\200f\255pack\235\231r\203g\012", "\272\321ct\257\356\202\267ce\276\207r\225g\200f\260pack\235\232r\203g\012",
"po\222\214\337p\333me\365\207\324\311c\274\200\211l nam\235p\333me\365\314", "po\222\212\333p\321me\347\207\327\312c\276\200\213l nam\235p\321me\347\311",
"\306\371m\226\223\273\265t\314", "\307\375m\225\224\270\265t\311",
"\217k\221w\336\303\335\200(\327\216\232", "\217k\221w\341\305\337\200(\330\216\234",
"\303\335\310d\371\242\345\275\316\255\233\231\203a\237\303\272\306\371sm\211l\012", "\305\337\304d\375\240\340\272\317\260\231\232\203a\236\305\274\307\375sm\213l\012",
"\303\334\234\222\201\207d\371\242\345\275\012", "\305\336\233\222\201\207d\375\240\340\272\012",
"\266l\203\200\307t\203ua\214\012", "\271l\203\200\310t\203ua\212\012",
"\266r\226g\322", "\271r\225g\325",
"\266\375bscript\316\251\200\042[ ]\330\353\224\225\207\331\305j\255\334\234\222\201\314", "\271subscript\317\251\200\042[ ]\331\355\223\226\207\332\306j\260\336\233\222\201\311",
"m\342\205-\334\234\222\201\337\256y\207\360f\342l\223\203i\205\211iz\274\012", "m\343\205-\336\233\222\201\333\255y\207\363f\343l\224\203i\205\213iz\276\012",
"\271ce\274\357\305ximum \374\230\264\304\334\234\222\201\314", "\267ce\276\361\306ximum \372\257\301\336\233\222\201\311",
"\217\345\275\235c\344s\357b\241c\200(\042}\042\232", "\217\340\272\235c\345s\361b\242c\200(\042}\042\234",
"\231\204\202\304\273bod\223\362\270ou\202\273head\210\012", "\232\204\202\301\270bod\224\364\273ou\202\270head\210\012",
"\256ys\316\344c\337\301\310\226\206\273\265t\207c\226\242\313pu\236\332 (\327\216\232", "\255ys\317\345c\333\303\304\225\206\270\265t\207c\225\240\315pu\237\335 (\330\216\234",
"\217f\203ish\235\363\331be\370\200\343\364il\264\334\220c\205v\322", "\217f\203ish\235\366\332be\374\200\344\365il\257\336\220c\205v\325",
"dupl\332\224\200\265t; sam\200\312\272p\351s\235tw\332\322", "dupl\335\223\200\265t; sam\200\314\274p\353s\235tw\335\325",
"\273\312\367\242\340\376\252\302a\342\202\243u\200(\327\216\232", "\270\314\373\240\334\370\252\275a\343\202\244u\200(\330\216\234",
"m\342\205p\352\042#\341se\330\334\220c\205v\310betwe\212 \042#if ... #\212\334f\042\012", "m\343\205p\354\042#\342se\331\336\220c\205v\304betwe\211 \042#if ... #\211\336f\042\012",
"\042#\341seif\330\334\220c\205\376f\240\344w\207\355\042#\341se\330\334\220c\205v\322", "\042#\342seif\331\336\220c\205\370f\241\345w\207\357\042#\342se\331\336\220c\205v\325",
"\374\230\264\304\353\226d\207do\310\242\361\202\270\200\353\224\225\012", "\372\257\301\355\225d\207do\304\240\352\202\273\200\355\223\226\012",
"\273\220s\342\202\373\304\353\224\225\227 \360\216\012", "\270\220s\343\202\362\301\355\223\226\230 \363\216\012",
"c\226\242\275\226g\200\311\326\235\353\224\225\314", "c\225\240\272\225g\200\312\323\235\355\223\226\311",
"\273\312\367\201l\223\340\376\252s\203g\352\373(\312%d\232", "\270\314\373\201l\224\334\370\252s\203g\354\362(\314%d\234",
"\273\312\367\242\313\252\220f\210\212c\200\312\255\355\303(\312\216\232", "\270\314\373\240\315\252\220f\210\211c\200\314\260\357\305(\314\216\234",
"\327c\226\242\313bo\270 \252\220f\210\212c\200\226\206\355\303(\327\216\232", "\330c\225\240\315bo\273 \252\220f\210\211c\200\225\206\357\305(\330\216\234",
"\266\241\214\337\374\230\264\311ci\222\331\372#p\241g\305\012", "\271\242\212\333\372\257\312ci\222\332\376#p\242g\306\012",
"\241\214\337\374\230\264\370\305\202\211\220ad\223\326\274\012", "\242\212\333\372\257\374\306\202\213\220ad\224\323\276\012",
"\241\214\337\374\230\264\375pp\225\202wa\207\242\212\254\274\012", "\242\212\333\372\257supp\226\202wa\207\240\211\254\276\012",
"\251\210-\326\235\353\224\255\360\233cl\204\235be\370\200\251\200(\366\227\232", "\251\210-\323\235\355\223\260\363\231cl\204\235be\374\200\251\200(\371\230\234",
"\042\335e\267\330\353\224\255\272\266\331\042\366\330\250\314", "\042\337e\266\331\355\223\260\274\271\332\042\371\331\250\311",
"\273\312\360\355\303(\312\216\232", "\270\314\363\357\305(\314\216\234",
"#\326\200p\224\365\336\324\231\204\202\362\270 \355\211p\340be\205c \275\333c\365\012", "#\323\200p\223\347\341\327\232\204\202\364\273 \357\213p\334be\205c \272\321c\347\012",
"\203pu\202l\203\200\306\371l\201\260(aft\264\375bs\205tu\214s\232", "\203pu\202l\203\200\307\375l\201\256(aft\257subs\205tu\212s\234",
"\246n\325x \210r\255\372\270\200\363\201\316\255\266\273c\211l\012", "\246n\313x \210r\260\376\273\200\366\201\317\260\271\270c\213l\012",
"m\211\370m\235UTF-8 \212\343d\203g\316\255c\225rupt\235\361le: \213\012", "m\213\374m\235UTF-8 \211\344d\203g\317\260c\226rupt\235\352le: \214\012",
"\273\251\310bo\270 \042\220turn\330\226\206\042\220tur\336<\243ue>\042\012", "\270\251\304bo\273 \042\220turn\331\225\206\042\220tur\341<\244ue>\042\012",
"\203\307\222\231\212\202\220tur\336typ\310(\303& n\201-\256y\232", "\203\310\222\232\211\202\220tur\341typ\304(\305& n\201-\255y\234",
"\217k\221w\336\250\316\255\242\252\354\202\250 \323", "\217k\221w\341\250\317\260\240\252\356\202\250 \326",
"c\226\242\325k\200\252\373a\207\252\302a\342\202\243u\200f\255\355\203\233x\235\303p\333met\264\323", "c\225\240\313k\200\252\362a\207\252\275a\343\202\244u\200f\260\357\203\231x\235\305p\321met\257\326",
"\251\210-\326\235\353\224\225\207\226\206na\205\376\366\207\367\242\340\376\315e\314", "\251\210-\323\235\355\223\226\207\225\206na\205\370\371\207\373\240\334\370\316e\311",
"\252\273\255\327\367\201l\223b\341\201\260\306 \252s\203g\352au\306\345\331\323", "\252\270\260\330\373\201l\224b\342\201\256\307 \252s\203g\354au\307\340\332\326",
"\315\200\307fl\332t: \201\200\304\270\200\315\310\272\211\220ad\223a\253gn\235\306 a\221\270\264i\364le\234\325\237\323", "\316\200\310fl\335t: \201\200\301\273\200\316\304\274\213\220ad\224a\253gn\235\307 a\221\273\257i\365le\233\313\236\326",
"\221 \315\310\204\200\326\235f\255\277\012", "\221 \316\304\204\200\323\235f\260\300\012",
"\217k\221w\336au\306\345\201\321", "\217k\221w\341au\307\340\201\324",
"\217k\221w\336\315\200\216 f\255au\306\345\201\321", "\217k\221w\341\316\200\216 f\260au\307\340\201\324",
"pu\236\332 \301\310\226\206\344c\337\301\310\367\242\340\376\315\310\323", "pu\237\335 \303\304\225\206\345c\333\303\304\373\240\334\370\316\304\326",
"\315\200\301\310\367\242\313\203i\205\211iz\235\323", "\316\200\303\304\373\240\315\203i\205\213iz\235\326",
"pu\236\332 \366\207\367\242\220tur\336\256y\207\323", "pu\237\335 \371\207\373\240\220tur\341\255y\207\326",
"a\230i\262ou\207\354t; \373ov\210rid\200\272\220qui\220\206\323", "a\227i\261ou\207\356t; \362ov\210rid\200\274\220qui\220\206\326",
"\374\230\264\304\265t\207do\310\242\345\275 \326i\214\012" "\372\257\301\265t\207do\304\240\340\272 \323i\212\012",
"\267pect\235\362nam\200id\211\205\352\210\012",
"\270\211um\210a\236\220qui\220\207\217iqu\200\313g\012",
"c\225\240\334\370\220qui\220\206p\321me\347\207aft\257\346\212\333p\321me\347\311"
#endif #endif
}; };
@ -248,18 +254,18 @@ static char *fatalmsg[] = {
/*110*/ "assertion failed: %s\n", /*110*/ "assertion failed: %s\n",
/*111*/ "user error: %s\n", /*111*/ "user error: %s\n",
#else #else
"c\226\242\220a\206from \361le\347", "c\225\240\220a\206from \352le\351",
"c\226\242writ\200\306 \361le\347", "c\225\240writ\200\307 \352le\351",
"t\254\200ov\210f\344w\347", "t\254\200ov\210f\345w\351",
"\203\375ff\332i\212\202mem\225y\012", "\203suff\335i\211\202mem\226y\012",
"\266\351se\230l\264\203\231ruc\214\321", "\271\353se\227l\257\203\232ruc\212\324",
"\374m\210\332 ov\210f\344w\316\271ce\274\357capacity\012", "\367m\210\335 ov\210f\345w\317\267ce\276\361capacity\012",
"\343\364il\235scrip\202\271ce\274\207\270\200\305ximum mem\225\223\335\200(%l\206bytes\232", "\344\365il\235scrip\202\267ce\276\207\273\200\306ximum mem\226\224\337\200(%l\206bytes\234",
"\306\371m\226\223\210r\255messag\310\331\201\200l\203\322", "\307\375m\225\224\210r\260messag\304\332\201\200l\203\325",
"\343\233pag\200\305pp\357\361\352\242fo\217d\012", "\344\231pag\200\306pp\361\352\354\240fo\217d\012",
"\266p\224h\347", "\271p\223h\351",
"\351s\210\237fail\274: \213\012", "\353s\210\236fail\276: \214\012",
"\251\264\210r\225: \213\012" "\251\257\210r\226: \214\012"
#endif #endif
}; };
@ -303,42 +309,42 @@ static char *warnmsg[] = {
/*235*/ "public function lacks forward declaration (symbol \"%s\")\n", /*235*/ "public function lacks forward declaration (symbol \"%s\")\n",
/*236*/ "unknown parameter in substitution (incorrect #define pattern)\n" /*236*/ "unknown parameter in substitution (incorrect #define pattern)\n"
#else #else
"\277 \272tr\244\224\235\306 %\206\275\333c\365\314", "\300 \274tr\243\223\235\307 %\206\272\321c\347\311",
"\220\326i\237\304\354t/\305cr\371\323", "\220\323i\236\301\356t/\306cr\375\326",
"\374\230\264\304\265t\207do\310\242\345\275 \326i\214\012", "\372\257\301\265t\207do\304\240\340\272 \323i\212\012",
"\250 \272nev\264\251\274\347", "\250 \274nev\257\251\276\351",
"\250 \272a\253gn\235\252\243u\200\270a\202\272nev\264\251\274\347", "\250 \274a\253gn\235\252\244u\200\273a\202\274nev\257\251\276\351",
"\220d\217d\226\202\343\233: \354\202\363\331\272z\210o\012", "\220d\217d\225\202\344\231: \356\202\366\332\274z\210o\012",
"\220d\217d\226\202te\231: \354\202\363\331\272n\201-z\210o\012", "\220d\217d\225\202te\232: \356\202\366\332\274n\201-z\210o\012",
"\217k\221w\336#p\241g\305\012", "\217k\221w\341#p\242g\306\012",
"\273\362\270 \373\220s\342\202\251\235be\370\200\326i\214\316\370c\357\220p\204s\322", "\270\364\273 \362\220s\343\202\251\235be\374\200\323i\212\317\374c\361\220p\204s\325",
"\366\227 sho\342\206\220tur\336\252\243u\322", "\371\230 sho\343\206\220tur\341\252\244u\325",
"po\253\236\200\251\200\304\250 be\370\200\203i\205\211iza\214\347", "po\253\237\200\251\200\301\250 be\374\200\203i\205\213iza\212\351",
"po\253\236\223\217\203t\212\233\206a\253gn\234t\012", "po\253\237\224\217\203t\211\231\206a\253gn\233t\012",
"po\253\236\223\217\203t\212\233\206bit\362s\200\353a\214\012", "po\253\237\224\217\203t\211\231\206bit\364s\200\355a\212\012",
"\373mis\345\275\012", "\362mis\340\272\012",
"po\253\236\223\252\042\346\330\303\312wa\207\203t\212\233d\347", "po\253\237\224\252\042\350\331\305\314wa\207\203t\211\231d\351",
"\363\331\340\207\221 effect\012", "\366\332\334\207\221 effect\012",
"ne\231\235\343m\234t\012", "ne\232\235\344m\233t\012",
"\344os\200\203d\212\325\214\012", "\345os\200\203d\211\313\212\012",
"\240\206\231y\352pro\306typ\310\251\235\362\270 \350\214\337sem\332\240umn\314", "\241\206\232y\354pro\307typ\304\251\235\364\273 \346\212\333sem\335\241umn\311",
"\344c\337\327\216 s\340dow\207\252\327a\202\252\311c\274\357lev\341\012", "\345c\333\330\216 s\334dow\207\252\330a\202\252\312c\276\361lev\342\012",
"\363\331\362\270 \373ov\210rid\200\324appe\204 betwe\212 p\204\212\270ese\314", "\366\332\364\273 \362ov\210rid\200\327appe\204 betwe\211 p\204\211\273ese\311",
"lab\341 nam\200\216 s\340dow\207\373nam\322", "lab\342 nam\200\216 s\334dow\207\362nam\325",
"\374\230\264\304\334git\207\271ce\274\207\241\214\337\374\230\264\311ci\222\201\012", "\372\257\301\336git\207\267ce\276\207\242\212\333\372\257\312ci\222\201\012",
"\220d\217d\226\202\042\335e\267\042: \312\335\200\272\211way\2071 \323", "\220d\217d\225\202\042\337e\266\042: \314\337\200\274\213way\2071 \326",
"\203\233\365m\203\224\200\303\335\200\372\042\335e\267\330\363\331\323", "\203\231\347m\203\223\200\305\337\200\376\042\337e\266\331\366\332\326",
"\217\220a\275\254\200\343\233\012", "\217\220a\272\254\200\344\231\012",
"\252\327\272a\253gn\235\306 its\341f \323", "\252\330\274a\253gn\235\307 its\342f \326",
"m\225\200\203i\205\211l\210\207\270\355\212um \361\341d\314", "m\226\200\203i\205\213l\210\207\273\357\211um \352\342d\311",
"l\212g\270 \304\203i\205\211l\264\271ce\274\207\335\200\304\270\200\212um \361\341d\012", "l\211g\273 \301\203i\205\213l\257\267ce\276\207\337\200\301\273\200\211um \352\342d\012",
"\203\233x \373mis\345\275 \323", "\203\231x \362mis\340\272 \326",
"\221 i\364le\234\325\237f\255\315\200\216 \372\366\227\316\221 f\211l-back\012", "\221 i\365le\233\313\236f\260\316\200\216 \376\371\230\317\221 f\213l-back\012",
"\315\200specif\332a\237\331\370w\204\206\233cl\333\237\272ig\221\220d\012", "\316\200specif\335a\236\332\374w\204\206\231cl\321\236\274ig\221\220d\012",
"outpu\202\361\352\272writt\212\316bu\202\362\270 \343\364ac\202\212\343d\357\334s\254\274\012", "outpu\202\352\354\274writt\211\317bu\202\364\273 \344\365ac\202\211\344d\361\336s\254\276\012",
"\315\200\327\216 s\340dow\207\252g\344b\337\301\322", "\316\200\330\216 s\334dow\207\252g\345b\333\303\325",
"\273\272\233\311c\224\235\317) \213\012", "\270\274\231\312c\223\235\320) \214\012",
"pu\236\332 \273lack\207\370w\204\206\233cl\333\237\323", "pu\237\335 \270lack\207\374w\204\206\231cl\321\236\326",
"\217k\221w\336p\333met\264\372\375bs\205tu\237(\203c\225\220c\202#\326\200p\224\365n\232" "\217k\221w\341p\321met\257\376subs\205tu\236(\203c\226\220c\202#\323\200p\223\347n\234"
#endif #endif
}; };