rpeg-markdown 1.1.1 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +1 -1
 - data/ext/markdown_output.c +2 -2
 - data/ext/markdown_parser.c +977 -1071
 - data/ext/utility_functions.c +7 -1
 - metadata +2 -2
 
    
        data/Rakefile
    CHANGED
    
    
    
        data/ext/markdown_output.c
    CHANGED
    
    | 
         @@ -113,7 +113,7 @@ static void print_html_element(GString *out, element *elt, bool obfuscate) { 
     | 
|
| 
       113 
113 
     | 
    
         
             
                    g_string_append_printf(out, "%s", elt->contents.str);
         
     | 
| 
       114 
114 
     | 
    
         
             
                    break;
         
     | 
| 
       115 
115 
     | 
    
         
             
                case LINEBREAK:
         
     | 
| 
       116 
     | 
    
         
            -
                    g_string_append_printf(out, "<br 
     | 
| 
      
 116 
     | 
    
         
            +
                    g_string_append_printf(out, "<br/>\n");
         
     | 
| 
       117 
117 
     | 
    
         
             
                    break;
         
     | 
| 
       118 
118 
     | 
    
         
             
                case STR:
         
     | 
| 
       119 
119 
     | 
    
         
             
                    print_html_string(out, elt->contents.str, obfuscate);
         
     | 
| 
         @@ -564,7 +564,7 @@ static void print_groff_mm_element(GString *out, element *elt, int count) { 
     | 
|
| 
       564 
564 
     | 
    
         
             
                    break;
         
     | 
| 
       565 
565 
     | 
    
         
             
                case LINEBREAK:
         
     | 
| 
       566 
566 
     | 
    
         
             
                    pad(out, 1);
         
     | 
| 
       567 
     | 
    
         
            -
                    g_string_append_printf(out, ".br");
         
     | 
| 
      
 567 
     | 
    
         
            +
                    g_string_append_printf(out, ".br\n");
         
     | 
| 
       568 
568 
     | 
    
         
             
                    padded = 0;
         
     | 
| 
       569 
569 
     | 
    
         
             
                    break;
         
     | 
| 
       570 
570 
     | 
    
         
             
                case STR:
         
     | 
    
        data/ext/markdown_parser.c
    CHANGED
    
    | 
         @@ -3,7 +3,7 @@ 
     | 
|
| 
       3 
3 
     | 
    
         
             
            #include <stdio.h>
         
     | 
| 
       4 
4 
     | 
    
         
             
            #include <stdlib.h>
         
     | 
| 
       5 
5 
     | 
    
         
             
            #include <string.h>
         
     | 
| 
       6 
     | 
    
         
            -
            #define YYRULECOUNT  
     | 
| 
      
 6 
     | 
    
         
            +
            #define YYRULECOUNT 204
         
     | 
| 
       7 
7 
     | 
    
         | 
| 
       8 
8 
     | 
    
         
             
            /**********************************************************************
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
         @@ -243,179 +243,175 @@ YY_LOCAL(void) yySet(char *text, int count)	{ yyval[count]= yy; } 
     | 
|
| 
       243 
243 
     | 
    
         | 
| 
       244 
244 
     | 
    
         
             
            #define	YYACCEPT	yyAccept(yythunkpos0)
         
     | 
| 
       245 
245 
     | 
    
         | 
| 
       246 
     | 
    
         
            -
            YY_RULE(int) yy_Notes(); /*  
     | 
| 
       247 
     | 
    
         
            -
            YY_RULE(int) yy_RawNoteBlock(); /*  
     | 
| 
       248 
     | 
    
         
            -
            YY_RULE(int) yy_RawNoteReference(); /*  
     | 
| 
       249 
     | 
    
         
            -
            YY_RULE(int) yy_DoubleQuoteEnd(); /*  
     | 
| 
       250 
     | 
    
         
            -
            YY_RULE(int) yy_DoubleQuoteStart(); /*  
     | 
| 
       251 
     | 
    
         
            -
            YY_RULE(int) yy_SingleQuoteEnd(); /*  
     | 
| 
       252 
     | 
    
         
            -
            YY_RULE(int) yy_SingleQuoteStart(); /*  
     | 
| 
       253 
     | 
    
         
            -
            YY_RULE(int) yy_EnDash(); /*  
     | 
| 
       254 
     | 
    
         
            -
            YY_RULE(int) yy_EmDash(); /*  
     | 
| 
       255 
     | 
    
         
            -
            YY_RULE(int) yy_Apostrophe(); /*  
     | 
| 
       256 
     | 
    
         
            -
            YY_RULE(int) yy_DoubleQuoted(); /*  
     | 
| 
       257 
     | 
    
         
            -
            YY_RULE(int) yy_SingleQuoted(); /*  
     | 
| 
       258 
     | 
    
         
            -
            YY_RULE(int) yy_Dash(); /*  
     | 
| 
       259 
     | 
    
         
            -
            YY_RULE(int) yy_Ellipsis(); /*  
     | 
| 
       260 
     | 
    
         
            -
            YY_RULE(int) yy_RawLine(); /*  
     | 
| 
       261 
     | 
    
         
            -
            YY_RULE(int) yy_Digit(); /*  
     | 
| 
       262 
     | 
    
         
            -
            YY_RULE(int) yy_ExtendedSpecialChar(); /*  
     | 
| 
       263 
     | 
    
         
            -
            YY_RULE(int) yy_Quoted(); /*  
     | 
| 
       264 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlTag(); /*  
     | 
| 
       265 
     | 
    
         
            -
            YY_RULE(int) yy_Ticks5(); /*  
     | 
| 
       266 
     | 
    
         
            -
            YY_RULE(int) yy_Ticks4(); /*  
     | 
| 
       267 
     | 
    
         
            -
            YY_RULE(int) yy_Ticks3(); /*  
     | 
| 
       268 
     | 
    
         
            -
            YY_RULE(int) yy_Ticks2(); /*  
     | 
| 
       269 
     | 
    
         
            -
            YY_RULE(int) yy_Ticks1(); /*  
     | 
| 
       270 
     | 
    
         
            -
            YY_RULE(int) yy_SkipBlock(); /*  
     | 
| 
       271 
     | 
    
         
            -
            YY_RULE(int) yy_References(); /*  
     | 
| 
       272 
     | 
    
         
            -
            YY_RULE(int) yy_EmptyTitle(); /*  
     | 
| 
       273 
     | 
    
         
            -
            YY_RULE(int) yy_RefTitleParens(); /*  
     | 
| 
       274 
     | 
    
         
            -
            YY_RULE(int) yy_RefTitleDouble(); /*  
     | 
| 
       275 
     | 
    
         
            -
            YY_RULE(int) yy_RefTitleSingle(); /*  
     | 
| 
       276 
     | 
    
         
            -
            YY_RULE(int) yy_RefTitle(); /*  
     | 
| 
       277 
     | 
    
         
            -
            YY_RULE(int) yy_RefSrc(); /*  
     | 
| 
       278 
     | 
    
         
            -
            YY_RULE(int) yy_AutoLinkEmail(); /*  
     | 
| 
       279 
     | 
    
         
            -
            YY_RULE(int) yy_AutoLinkUrl(); /*  
     | 
| 
       280 
     | 
    
         
            -
            YY_RULE(int) yy_TitleDouble(); /*  
     | 
| 
       281 
     | 
    
         
            -
            YY_RULE(int) yy_TitleSingle(); /*  
     | 
| 
       282 
     | 
    
         
            -
            YY_RULE(int) yy_Nonspacechar(); /*  
     | 
| 
       283 
     | 
    
         
            -
            YY_RULE(int) yy_SourceContents(); /*  
     | 
| 
       284 
     | 
    
         
            -
            YY_RULE(int) yy_Title(); /*  
     | 
| 
       285 
     | 
    
         
            -
            YY_RULE(int) yy_Source(); /*  
     | 
| 
       286 
     | 
    
         
            -
            YY_RULE(int) yy_Label(); /*  
     | 
| 
       287 
     | 
    
         
            -
            YY_RULE(int) yy_ReferenceLinkSingle(); /*  
     | 
| 
       288 
     | 
    
         
            -
            YY_RULE(int) yy_ReferenceLinkDouble(); /*  
     | 
| 
       289 
     | 
    
         
            -
            YY_RULE(int) yy_AutoLink(); /*  
     | 
| 
       290 
     | 
    
         
            -
            YY_RULE(int) yy_ReferenceLink(); /*  
     | 
| 
       291 
     | 
    
         
            -
            YY_RULE(int) yy_ExplicitLink(); /*  
     | 
| 
       292 
     | 
    
         
            -
            YY_RULE(int) yy_TwoUlClose(); /*  
     | 
| 
       293 
     | 
    
         
            -
            YY_RULE(int) yy_TwoUlOpen(); /*  
     | 
| 
       294 
     | 
    
         
            -
            YY_RULE(int) yy_TwoStarClose(); /*  
     | 
| 
       295 
     | 
    
         
            -
            YY_RULE(int) yy_TwoStarOpen(); /*  
     | 
| 
       296 
     | 
    
         
            -
            YY_RULE(int) yy_Alphanumeric(); /*  
     | 
| 
       297 
     | 
    
         
            -
            YY_RULE(int) yy_StrongUl(); /*  
     | 
| 
       298 
     | 
    
         
            -
            YY_RULE(int) yy_OneUlClose(); /*  
     | 
| 
       299 
     | 
    
         
            -
            YY_RULE(int) yy_OneUlOpen(); /*  
     | 
| 
       300 
     | 
    
         
            -
            YY_RULE(int) yy_StrongStar(); /*  
     | 
| 
       301 
     | 
    
         
            -
            YY_RULE(int) yy_OneStarClose(); /*  
     | 
| 
       302 
     | 
    
         
            -
            YY_RULE(int) yy_OneStarOpen(); /*  
     | 
| 
       303 
     | 
    
         
            -
            YY_RULE(int) yy_EmphUl(); /*  
     | 
| 
       304 
     | 
    
         
            -
            YY_RULE(int) yy_EmphStar(); /*  
     | 
| 
       305 
     | 
    
         
            -
            YY_RULE(int) yy_StarLine(); /*  
     | 
| 
       306 
     | 
    
         
            -
            YY_RULE(int) yy_UlLine(); /*  
     | 
| 
       307 
     | 
    
         
            -
            YY_RULE(int) yy_SpecialChar(); /*  
     | 
| 
       308 
     | 
    
         
            -
            YY_RULE(int) yy_Eof(); /*  
     | 
| 
       309 
     | 
    
         
            -
            YY_RULE(int) yy_NormalEndline(); /*  
     | 
| 
       310 
     | 
    
         
            -
            YY_RULE(int) yy_TerminalEndline(); /*  
     | 
| 
       311 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       312 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       313 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       314 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       315 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       316 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       317 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       318 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       319 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       320 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       321 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       322 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       323 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       324 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       325 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       326 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       327 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       328 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       329 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       330 
     | 
    
         
            -
            YY_RULE(int) yy_Str(); /*  
     | 
| 
       331 
     | 
    
         
            -
            YY_RULE(int) yy_InStyleTags(); /*  
     | 
| 
       332 
     | 
    
         
            -
            YY_RULE(int) yy_StyleClose(); /*  
     | 
| 
       333 
     | 
    
         
            -
            YY_RULE(int) yy_StyleOpen(); /*  
     | 
| 
       334 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockType(); /*  
     | 
| 
       335 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockSelfClosing(); /*  
     | 
| 
       336 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlComment(); /*  
     | 
| 
       337 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockInTags(); /*  
     | 
| 
       338 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseScript(); /*  
     | 
| 
       339 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenScript(); /*  
     | 
| 
       340 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseTr(); /*  
     | 
| 
       341 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenTr(); /*  
     | 
| 
       342 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseThead(); /*  
     | 
| 
       343 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenThead(); /*  
     | 
| 
       344 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseTh(); /*  
     | 
| 
       345 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenTh(); /*  
     | 
| 
       346 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseTfoot(); /*  
     | 
| 
       347 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenTfoot(); /*  
     | 
| 
       348 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseTd(); /*  
     | 
| 
       349 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenTd(); /*  
     | 
| 
       350 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseTbody(); /*  
     | 
| 
       351 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenTbody(); /*  
     | 
| 
       352 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseLi(); /*  
     | 
| 
       353 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenLi(); /*  
     | 
| 
       354 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseFrameset(); /*  
     | 
| 
       355 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenFrameset(); /*  
     | 
| 
       356 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseDt(); /*  
     | 
| 
       357 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenDt(); /*  
     | 
| 
       358 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseDd(); /*  
     | 
| 
       359 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenDd(); /*  
     | 
| 
       360 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseUl(); /*  
     | 
| 
       361 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenUl(); /*  
     | 
| 
       362 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseTable(); /*  
     | 
| 
       363 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenTable(); /*  
     | 
| 
       364 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockClosePre(); /*  
     | 
| 
       365 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenPre(); /*  
     | 
| 
       366 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseP(); /*  
     | 
| 
       367 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenP(); /*  
     | 
| 
       368 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseOl(); /*  
     | 
| 
       369 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenOl(); /*  
     | 
| 
       370 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseNoscript(); /*  
     | 
| 
       371 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenNoscript(); /*  
     | 
| 
       372 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseNoframes(); /*  
     | 
| 
       373 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenNoframes(); /*  
     | 
| 
       374 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseMenu(); /*  
     | 
| 
       375 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenMenu(); /*  
     | 
| 
       376 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseH6(); /*  
     | 
| 
       377 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenH6(); /*  
     | 
| 
       378 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseH5(); /*  
     | 
| 
       379 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenH5(); /*  
     | 
| 
       380 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseH4(); /*  
     | 
| 
       381 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenH4(); /*  
     | 
| 
       382 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseH3(); /*  
     | 
| 
       383 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenH3(); /*  
     | 
| 
       384 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseH2(); /*  
     | 
| 
       385 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenH2(); /*  
     | 
| 
       386 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseH1(); /*  
     | 
| 
       387 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenH1(); /*  
     | 
| 
       388 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseForm(); /*  
     | 
| 
       389 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenForm(); /*  
     | 
| 
       390 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseFieldset(); /*  
     | 
| 
       391 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenFieldset(); /*  
     | 
| 
       392 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseDl(); /*  
     | 
| 
       393 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenDl(); /*  
     | 
| 
       394 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseDiv(); /*  
     | 
| 
       395 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenDiv(); /*  
     | 
| 
       396 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseDir(); /*  
     | 
| 
       397 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenDir(); /*  
     | 
| 
       398 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseCenter(); /*  
     | 
| 
       399 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenCenter(); /*  
     | 
| 
       400 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseBlockquote(); /*  
     | 
| 
       401 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenBlockquote(); /*  
     | 
| 
       402 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockCloseAddress(); /*  
     | 
| 
       403 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlAttribute(); /*  
     | 
| 
       404 
     | 
    
         
            -
            YY_RULE(int) yy_Spnl(); /*  
     | 
| 
       405 
     | 
    
         
            -
            YY_RULE(int) yy_HtmlBlockOpenAddress(); /*  
     | 
| 
       406 
     | 
    
         
            -
            YY_RULE(int) yy_OptionallyIndentedLine(); /*  
     | 
| 
       407 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       408 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       409 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       410 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       411 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       412 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       413 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       414 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       415 
     | 
    
         
            -
            YY_RULE(int) yy_ListItem(); /* 39 */
         
     | 
| 
       416 
     | 
    
         
            -
            YY_RULE(int) yy_BulletListItem(); /* 38 */
         
     | 
| 
       417 
     | 
    
         
            -
            YY_RULE(int) yy_BulletListLoose(); /* 37 */
         
     | 
| 
       418 
     | 
    
         
            -
            YY_RULE(int) yy_BulletListTight(); /* 36 */
         
     | 
| 
      
 246 
     | 
    
         
            +
            YY_RULE(int) yy_Notes(); /* 204 */
         
     | 
| 
      
 247 
     | 
    
         
            +
            YY_RULE(int) yy_RawNoteBlock(); /* 203 */
         
     | 
| 
      
 248 
     | 
    
         
            +
            YY_RULE(int) yy_RawNoteReference(); /* 202 */
         
     | 
| 
      
 249 
     | 
    
         
            +
            YY_RULE(int) yy_DoubleQuoteEnd(); /* 201 */
         
     | 
| 
      
 250 
     | 
    
         
            +
            YY_RULE(int) yy_DoubleQuoteStart(); /* 200 */
         
     | 
| 
      
 251 
     | 
    
         
            +
            YY_RULE(int) yy_SingleQuoteEnd(); /* 199 */
         
     | 
| 
      
 252 
     | 
    
         
            +
            YY_RULE(int) yy_SingleQuoteStart(); /* 198 */
         
     | 
| 
      
 253 
     | 
    
         
            +
            YY_RULE(int) yy_EnDash(); /* 197 */
         
     | 
| 
      
 254 
     | 
    
         
            +
            YY_RULE(int) yy_EmDash(); /* 196 */
         
     | 
| 
      
 255 
     | 
    
         
            +
            YY_RULE(int) yy_Apostrophe(); /* 195 */
         
     | 
| 
      
 256 
     | 
    
         
            +
            YY_RULE(int) yy_DoubleQuoted(); /* 194 */
         
     | 
| 
      
 257 
     | 
    
         
            +
            YY_RULE(int) yy_SingleQuoted(); /* 193 */
         
     | 
| 
      
 258 
     | 
    
         
            +
            YY_RULE(int) yy_Dash(); /* 192 */
         
     | 
| 
      
 259 
     | 
    
         
            +
            YY_RULE(int) yy_Ellipsis(); /* 191 */
         
     | 
| 
      
 260 
     | 
    
         
            +
            YY_RULE(int) yy_RawLine(); /* 190 */
         
     | 
| 
      
 261 
     | 
    
         
            +
            YY_RULE(int) yy_Digit(); /* 189 */
         
     | 
| 
      
 262 
     | 
    
         
            +
            YY_RULE(int) yy_ExtendedSpecialChar(); /* 188 */
         
     | 
| 
      
 263 
     | 
    
         
            +
            YY_RULE(int) yy_Quoted(); /* 187 */
         
     | 
| 
      
 264 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlTag(); /* 186 */
         
     | 
| 
      
 265 
     | 
    
         
            +
            YY_RULE(int) yy_Ticks5(); /* 185 */
         
     | 
| 
      
 266 
     | 
    
         
            +
            YY_RULE(int) yy_Ticks4(); /* 184 */
         
     | 
| 
      
 267 
     | 
    
         
            +
            YY_RULE(int) yy_Ticks3(); /* 183 */
         
     | 
| 
      
 268 
     | 
    
         
            +
            YY_RULE(int) yy_Ticks2(); /* 182 */
         
     | 
| 
      
 269 
     | 
    
         
            +
            YY_RULE(int) yy_Ticks1(); /* 181 */
         
     | 
| 
      
 270 
     | 
    
         
            +
            YY_RULE(int) yy_SkipBlock(); /* 180 */
         
     | 
| 
      
 271 
     | 
    
         
            +
            YY_RULE(int) yy_References(); /* 179 */
         
     | 
| 
      
 272 
     | 
    
         
            +
            YY_RULE(int) yy_EmptyTitle(); /* 178 */
         
     | 
| 
      
 273 
     | 
    
         
            +
            YY_RULE(int) yy_RefTitleParens(); /* 177 */
         
     | 
| 
      
 274 
     | 
    
         
            +
            YY_RULE(int) yy_RefTitleDouble(); /* 176 */
         
     | 
| 
      
 275 
     | 
    
         
            +
            YY_RULE(int) yy_RefTitleSingle(); /* 175 */
         
     | 
| 
      
 276 
     | 
    
         
            +
            YY_RULE(int) yy_RefTitle(); /* 174 */
         
     | 
| 
      
 277 
     | 
    
         
            +
            YY_RULE(int) yy_RefSrc(); /* 173 */
         
     | 
| 
      
 278 
     | 
    
         
            +
            YY_RULE(int) yy_AutoLinkEmail(); /* 172 */
         
     | 
| 
      
 279 
     | 
    
         
            +
            YY_RULE(int) yy_AutoLinkUrl(); /* 171 */
         
     | 
| 
      
 280 
     | 
    
         
            +
            YY_RULE(int) yy_TitleDouble(); /* 170 */
         
     | 
| 
      
 281 
     | 
    
         
            +
            YY_RULE(int) yy_TitleSingle(); /* 169 */
         
     | 
| 
      
 282 
     | 
    
         
            +
            YY_RULE(int) yy_Nonspacechar(); /* 168 */
         
     | 
| 
      
 283 
     | 
    
         
            +
            YY_RULE(int) yy_SourceContents(); /* 167 */
         
     | 
| 
      
 284 
     | 
    
         
            +
            YY_RULE(int) yy_Title(); /* 166 */
         
     | 
| 
      
 285 
     | 
    
         
            +
            YY_RULE(int) yy_Source(); /* 165 */
         
     | 
| 
      
 286 
     | 
    
         
            +
            YY_RULE(int) yy_Label(); /* 164 */
         
     | 
| 
      
 287 
     | 
    
         
            +
            YY_RULE(int) yy_ReferenceLinkSingle(); /* 163 */
         
     | 
| 
      
 288 
     | 
    
         
            +
            YY_RULE(int) yy_ReferenceLinkDouble(); /* 162 */
         
     | 
| 
      
 289 
     | 
    
         
            +
            YY_RULE(int) yy_AutoLink(); /* 161 */
         
     | 
| 
      
 290 
     | 
    
         
            +
            YY_RULE(int) yy_ReferenceLink(); /* 160 */
         
     | 
| 
      
 291 
     | 
    
         
            +
            YY_RULE(int) yy_ExplicitLink(); /* 159 */
         
     | 
| 
      
 292 
     | 
    
         
            +
            YY_RULE(int) yy_TwoUlClose(); /* 158 */
         
     | 
| 
      
 293 
     | 
    
         
            +
            YY_RULE(int) yy_TwoUlOpen(); /* 157 */
         
     | 
| 
      
 294 
     | 
    
         
            +
            YY_RULE(int) yy_TwoStarClose(); /* 156 */
         
     | 
| 
      
 295 
     | 
    
         
            +
            YY_RULE(int) yy_TwoStarOpen(); /* 155 */
         
     | 
| 
      
 296 
     | 
    
         
            +
            YY_RULE(int) yy_Alphanumeric(); /* 154 */
         
     | 
| 
      
 297 
     | 
    
         
            +
            YY_RULE(int) yy_StrongUl(); /* 153 */
         
     | 
| 
      
 298 
     | 
    
         
            +
            YY_RULE(int) yy_OneUlClose(); /* 152 */
         
     | 
| 
      
 299 
     | 
    
         
            +
            YY_RULE(int) yy_OneUlOpen(); /* 151 */
         
     | 
| 
      
 300 
     | 
    
         
            +
            YY_RULE(int) yy_StrongStar(); /* 150 */
         
     | 
| 
      
 301 
     | 
    
         
            +
            YY_RULE(int) yy_OneStarClose(); /* 149 */
         
     | 
| 
      
 302 
     | 
    
         
            +
            YY_RULE(int) yy_OneStarOpen(); /* 148 */
         
     | 
| 
      
 303 
     | 
    
         
            +
            YY_RULE(int) yy_EmphUl(); /* 147 */
         
     | 
| 
      
 304 
     | 
    
         
            +
            YY_RULE(int) yy_EmphStar(); /* 146 */
         
     | 
| 
      
 305 
     | 
    
         
            +
            YY_RULE(int) yy_StarLine(); /* 145 */
         
     | 
| 
      
 306 
     | 
    
         
            +
            YY_RULE(int) yy_UlLine(); /* 144 */
         
     | 
| 
      
 307 
     | 
    
         
            +
            YY_RULE(int) yy_SpecialChar(); /* 143 */
         
     | 
| 
      
 308 
     | 
    
         
            +
            YY_RULE(int) yy_Eof(); /* 142 */
         
     | 
| 
      
 309 
     | 
    
         
            +
            YY_RULE(int) yy_NormalEndline(); /* 141 */
         
     | 
| 
      
 310 
     | 
    
         
            +
            YY_RULE(int) yy_TerminalEndline(); /* 140 */
         
     | 
| 
      
 311 
     | 
    
         
            +
            YY_RULE(int) yy_LineBreak(); /* 139 */
         
     | 
| 
      
 312 
     | 
    
         
            +
            YY_RULE(int) yy_CharEntity(); /* 138 */
         
     | 
| 
      
 313 
     | 
    
         
            +
            YY_RULE(int) yy_DecEntity(); /* 137 */
         
     | 
| 
      
 314 
     | 
    
         
            +
            YY_RULE(int) yy_HexEntity(); /* 136 */
         
     | 
| 
      
 315 
     | 
    
         
            +
            YY_RULE(int) yy_NormalChar(); /* 135 */
         
     | 
| 
      
 316 
     | 
    
         
            +
            YY_RULE(int) yy_Symbol(); /* 134 */
         
     | 
| 
      
 317 
     | 
    
         
            +
            YY_RULE(int) yy_Smart(); /* 133 */
         
     | 
| 
      
 318 
     | 
    
         
            +
            YY_RULE(int) yy_EscapedChar(); /* 132 */
         
     | 
| 
      
 319 
     | 
    
         
            +
            YY_RULE(int) yy_Entity(); /* 131 */
         
     | 
| 
      
 320 
     | 
    
         
            +
            YY_RULE(int) yy_RawHtml(); /* 130 */
         
     | 
| 
      
 321 
     | 
    
         
            +
            YY_RULE(int) yy_Code(); /* 129 */
         
     | 
| 
      
 322 
     | 
    
         
            +
            YY_RULE(int) yy_InlineNote(); /* 128 */
         
     | 
| 
      
 323 
     | 
    
         
            +
            YY_RULE(int) yy_NoteReference(); /* 127 */
         
     | 
| 
      
 324 
     | 
    
         
            +
            YY_RULE(int) yy_Link(); /* 126 */
         
     | 
| 
      
 325 
     | 
    
         
            +
            YY_RULE(int) yy_Image(); /* 125 */
         
     | 
| 
      
 326 
     | 
    
         
            +
            YY_RULE(int) yy_Emph(); /* 124 */
         
     | 
| 
      
 327 
     | 
    
         
            +
            YY_RULE(int) yy_Strong(); /* 123 */
         
     | 
| 
      
 328 
     | 
    
         
            +
            YY_RULE(int) yy_Space(); /* 122 */
         
     | 
| 
      
 329 
     | 
    
         
            +
            YY_RULE(int) yy_UlOrStarLine(); /* 121 */
         
     | 
| 
      
 330 
     | 
    
         
            +
            YY_RULE(int) yy_Str(); /* 120 */
         
     | 
| 
      
 331 
     | 
    
         
            +
            YY_RULE(int) yy_InStyleTags(); /* 119 */
         
     | 
| 
      
 332 
     | 
    
         
            +
            YY_RULE(int) yy_StyleClose(); /* 118 */
         
     | 
| 
      
 333 
     | 
    
         
            +
            YY_RULE(int) yy_StyleOpen(); /* 117 */
         
     | 
| 
      
 334 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockType(); /* 116 */
         
     | 
| 
      
 335 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockSelfClosing(); /* 115 */
         
     | 
| 
      
 336 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlComment(); /* 114 */
         
     | 
| 
      
 337 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockInTags(); /* 113 */
         
     | 
| 
      
 338 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseScript(); /* 112 */
         
     | 
| 
      
 339 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenScript(); /* 111 */
         
     | 
| 
      
 340 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseTr(); /* 110 */
         
     | 
| 
      
 341 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenTr(); /* 109 */
         
     | 
| 
      
 342 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseThead(); /* 108 */
         
     | 
| 
      
 343 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenThead(); /* 107 */
         
     | 
| 
      
 344 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseTh(); /* 106 */
         
     | 
| 
      
 345 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenTh(); /* 105 */
         
     | 
| 
      
 346 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseTfoot(); /* 104 */
         
     | 
| 
      
 347 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenTfoot(); /* 103 */
         
     | 
| 
      
 348 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseTd(); /* 102 */
         
     | 
| 
      
 349 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenTd(); /* 101 */
         
     | 
| 
      
 350 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseTbody(); /* 100 */
         
     | 
| 
      
 351 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenTbody(); /* 99 */
         
     | 
| 
      
 352 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseLi(); /* 98 */
         
     | 
| 
      
 353 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenLi(); /* 97 */
         
     | 
| 
      
 354 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseFrameset(); /* 96 */
         
     | 
| 
      
 355 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenFrameset(); /* 95 */
         
     | 
| 
      
 356 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseDt(); /* 94 */
         
     | 
| 
      
 357 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenDt(); /* 93 */
         
     | 
| 
      
 358 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseDd(); /* 92 */
         
     | 
| 
      
 359 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenDd(); /* 91 */
         
     | 
| 
      
 360 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseUl(); /* 90 */
         
     | 
| 
      
 361 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenUl(); /* 89 */
         
     | 
| 
      
 362 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseTable(); /* 88 */
         
     | 
| 
      
 363 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenTable(); /* 87 */
         
     | 
| 
      
 364 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockClosePre(); /* 86 */
         
     | 
| 
      
 365 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenPre(); /* 85 */
         
     | 
| 
      
 366 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseP(); /* 84 */
         
     | 
| 
      
 367 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenP(); /* 83 */
         
     | 
| 
      
 368 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseOl(); /* 82 */
         
     | 
| 
      
 369 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenOl(); /* 81 */
         
     | 
| 
      
 370 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseNoscript(); /* 80 */
         
     | 
| 
      
 371 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenNoscript(); /* 79 */
         
     | 
| 
      
 372 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseNoframes(); /* 78 */
         
     | 
| 
      
 373 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenNoframes(); /* 77 */
         
     | 
| 
      
 374 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseMenu(); /* 76 */
         
     | 
| 
      
 375 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenMenu(); /* 75 */
         
     | 
| 
      
 376 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseH6(); /* 74 */
         
     | 
| 
      
 377 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenH6(); /* 73 */
         
     | 
| 
      
 378 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseH5(); /* 72 */
         
     | 
| 
      
 379 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenH5(); /* 71 */
         
     | 
| 
      
 380 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseH4(); /* 70 */
         
     | 
| 
      
 381 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenH4(); /* 69 */
         
     | 
| 
      
 382 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseH3(); /* 68 */
         
     | 
| 
      
 383 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenH3(); /* 67 */
         
     | 
| 
      
 384 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseH2(); /* 66 */
         
     | 
| 
      
 385 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenH2(); /* 65 */
         
     | 
| 
      
 386 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseH1(); /* 64 */
         
     | 
| 
      
 387 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenH1(); /* 63 */
         
     | 
| 
      
 388 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseForm(); /* 62 */
         
     | 
| 
      
 389 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenForm(); /* 61 */
         
     | 
| 
      
 390 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseFieldset(); /* 60 */
         
     | 
| 
      
 391 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenFieldset(); /* 59 */
         
     | 
| 
      
 392 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseDl(); /* 58 */
         
     | 
| 
      
 393 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenDl(); /* 57 */
         
     | 
| 
      
 394 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseDiv(); /* 56 */
         
     | 
| 
      
 395 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenDiv(); /* 55 */
         
     | 
| 
      
 396 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseDir(); /* 54 */
         
     | 
| 
      
 397 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenDir(); /* 53 */
         
     | 
| 
      
 398 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseCenter(); /* 52 */
         
     | 
| 
      
 399 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenCenter(); /* 51 */
         
     | 
| 
      
 400 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseBlockquote(); /* 50 */
         
     | 
| 
      
 401 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenBlockquote(); /* 49 */
         
     | 
| 
      
 402 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockCloseAddress(); /* 48 */
         
     | 
| 
      
 403 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlAttribute(); /* 47 */
         
     | 
| 
      
 404 
     | 
    
         
            +
            YY_RULE(int) yy_Spnl(); /* 46 */
         
     | 
| 
      
 405 
     | 
    
         
            +
            YY_RULE(int) yy_HtmlBlockOpenAddress(); /* 45 */
         
     | 
| 
      
 406 
     | 
    
         
            +
            YY_RULE(int) yy_OptionallyIndentedLine(); /* 44 */
         
     | 
| 
      
 407 
     | 
    
         
            +
            YY_RULE(int) yy_Indent(); /* 43 */
         
     | 
| 
      
 408 
     | 
    
         
            +
            YY_RULE(int) yy_ListBlockLine(); /* 42 */
         
     | 
| 
      
 409 
     | 
    
         
            +
            YY_RULE(int) yy_ListContinuationBlock(); /* 41 */
         
     | 
| 
      
 410 
     | 
    
         
            +
            YY_RULE(int) yy_ListBlock(); /* 40 */
         
     | 
| 
      
 411 
     | 
    
         
            +
            YY_RULE(int) yy_Enumerator(); /* 39 */
         
     | 
| 
      
 412 
     | 
    
         
            +
            YY_RULE(int) yy_ListItem(); /* 38 */
         
     | 
| 
      
 413 
     | 
    
         
            +
            YY_RULE(int) yy_ListLoose(); /* 37 */
         
     | 
| 
      
 414 
     | 
    
         
            +
            YY_RULE(int) yy_ListTight(); /* 36 */
         
     | 
| 
       419 
415 
     | 
    
         
             
            YY_RULE(int) yy_Spacechar(); /* 35 */
         
     | 
| 
       420 
416 
     | 
    
         
             
            YY_RULE(int) yy_Bullet(); /* 34 */
         
     | 
| 
       421 
417 
     | 
    
         
             
            YY_RULE(int) yy_VerbatimChunk(); /* 33 */
         
     | 
| 
         @@ -992,42 +988,10 @@ YY_ACTION(void) yy_1_HtmlBlock(char *yytext, int yyleng) 
     | 
|
| 
       992 
988 
     | 
    
         
             
                            }
         
     | 
| 
       993 
989 
     | 
    
         
             
                        ;
         
     | 
| 
       994 
990 
     | 
    
         
             
            }
         
     | 
| 
       995 
     | 
    
         
            -
            YY_ACTION(void)  
     | 
| 
      
 991 
     | 
    
         
            +
            YY_ACTION(void) yy_1_OrderedList(char *yytext, int yyleng)
         
     | 
| 
       996 
992 
     | 
    
         
             
            {
         
     | 
| 
       997 
     | 
    
         
            -
             
     | 
| 
       998 
     | 
    
         
            -
             
     | 
| 
       999 
     | 
    
         
            -
              yyprintf((stderr, "do yy_2_OrderedListLoose\n"));
         
     | 
| 
       1000 
     | 
    
         
            -
               yy = mk_list(ORDEREDLIST, a); ;
         
     | 
| 
       1001 
     | 
    
         
            -
            #undef b
         
     | 
| 
       1002 
     | 
    
         
            -
            #undef a
         
     | 
| 
       1003 
     | 
    
         
            -
            }
         
     | 
| 
       1004 
     | 
    
         
            -
            YY_ACTION(void) yy_1_OrderedListLoose(char *yytext, int yyleng)
         
     | 
| 
       1005 
     | 
    
         
            -
            {
         
     | 
| 
       1006 
     | 
    
         
            -
            #define b yyval[-1]
         
     | 
| 
       1007 
     | 
    
         
            -
            #define a yyval[-2]
         
     | 
| 
       1008 
     | 
    
         
            -
              yyprintf((stderr, "do yy_1_OrderedListLoose\n"));
         
     | 
| 
       1009 
     | 
    
         
            -
                 element *li;
         
     | 
| 
       1010 
     | 
    
         
            -
                                    li = b->children;
         
     | 
| 
       1011 
     | 
    
         
            -
                                    li->contents.str = realloc(li->contents.str, strlen(li->contents.str) + 3);
         
     | 
| 
       1012 
     | 
    
         
            -
                                    strcat(li->contents.str, "\n\n");  /* In loose list, \n\n added to end of each element */
         
     | 
| 
       1013 
     | 
    
         
            -
                                    a = cons(b, a);
         
     | 
| 
       1014 
     | 
    
         
            -
                                ;
         
     | 
| 
       1015 
     | 
    
         
            -
            #undef b
         
     | 
| 
       1016 
     | 
    
         
            -
            #undef a
         
     | 
| 
       1017 
     | 
    
         
            -
            }
         
     | 
| 
       1018 
     | 
    
         
            -
            YY_ACTION(void) yy_2_OrderedListTight(char *yytext, int yyleng)
         
     | 
| 
       1019 
     | 
    
         
            -
            {
         
     | 
| 
       1020 
     | 
    
         
            -
            #define a yyval[-1]
         
     | 
| 
       1021 
     | 
    
         
            -
              yyprintf((stderr, "do yy_2_OrderedListTight\n"));
         
     | 
| 
       1022 
     | 
    
         
            -
               yy = mk_list(ORDEREDLIST, a); ;
         
     | 
| 
       1023 
     | 
    
         
            -
            #undef a
         
     | 
| 
       1024 
     | 
    
         
            -
            }
         
     | 
| 
       1025 
     | 
    
         
            -
            YY_ACTION(void) yy_1_OrderedListTight(char *yytext, int yyleng)
         
     | 
| 
       1026 
     | 
    
         
            -
            {
         
     | 
| 
       1027 
     | 
    
         
            -
            #define a yyval[-1]
         
     | 
| 
       1028 
     | 
    
         
            -
              yyprintf((stderr, "do yy_1_OrderedListTight\n"));
         
     | 
| 
       1029 
     | 
    
         
            -
               a = cons(yy, a); ;
         
     | 
| 
       1030 
     | 
    
         
            -
            #undef a
         
     | 
| 
      
 993 
     | 
    
         
            +
              yyprintf((stderr, "do yy_1_OrderedList\n"));
         
     | 
| 
      
 994 
     | 
    
         
            +
               yy->key = ORDEREDLIST; ;
         
     | 
| 
       1031 
995 
     | 
    
         
             
            }
         
     | 
| 
       1032 
996 
     | 
    
         
             
            YY_ACTION(void) yy_3_ListContinuationBlock(char *yytext, int yyleng)
         
     | 
| 
       1033 
997 
     | 
    
         
             
            {
         
     | 
| 
         @@ -1079,11 +1043,11 @@ YY_ACTION(void) yy_3_ListItem(char *yytext, int yyleng) 
     | 
|
| 
       1079 
1043 
     | 
    
         
             
            #define a yyval[-1]
         
     | 
| 
       1080 
1044 
     | 
    
         
             
              yyprintf((stderr, "do yy_3_ListItem\n"));
         
     | 
| 
       1081 
1045 
     | 
    
         
             
                element *raw;
         
     | 
| 
       1082 
     | 
    
         
            -
             
     | 
| 
       1083 
     | 
    
         
            -
             
     | 
| 
       1084 
     | 
    
         
            -
             
     | 
| 
       1085 
     | 
    
         
            -
             
     | 
| 
       1086 
     | 
    
         
            -
             
     | 
| 
      
 1046 
     | 
    
         
            +
                           raw = mk_str_from_list(a, false);
         
     | 
| 
      
 1047 
     | 
    
         
            +
                           raw->key = RAW;
         
     | 
| 
      
 1048 
     | 
    
         
            +
                           yy = mk_element(LISTITEM);
         
     | 
| 
      
 1049 
     | 
    
         
            +
                           yy->children = raw;
         
     | 
| 
      
 1050 
     | 
    
         
            +
                        ;
         
     | 
| 
       1087 
1051 
     | 
    
         
             
            #undef a
         
     | 
| 
       1088 
1052 
     | 
    
         
             
            }
         
     | 
| 
       1089 
1053 
     | 
    
         
             
            YY_ACTION(void) yy_2_ListItem(char *yytext, int yyleng)
         
     | 
| 
         @@ -1100,43 +1064,48 @@ YY_ACTION(void) yy_1_ListItem(char *yytext, int yyleng) 
     | 
|
| 
       1100 
1064 
     | 
    
         
             
               a = cons(yy, a); ;
         
     | 
| 
       1101 
1065 
     | 
    
         
             
            #undef a
         
     | 
| 
       1102 
1066 
     | 
    
         
             
            }
         
     | 
| 
       1103 
     | 
    
         
            -
            YY_ACTION(void)  
     | 
| 
      
 1067 
     | 
    
         
            +
            YY_ACTION(void) yy_2_ListLoose(char *yytext, int yyleng)
         
     | 
| 
       1104 
1068 
     | 
    
         
             
            {
         
     | 
| 
       1105 
1069 
     | 
    
         
             
            #define b yyval[-1]
         
     | 
| 
       1106 
1070 
     | 
    
         
             
            #define a yyval[-2]
         
     | 
| 
       1107 
     | 
    
         
            -
              yyprintf((stderr, "do  
     | 
| 
       1108 
     | 
    
         
            -
               yy = mk_list( 
     | 
| 
      
 1071 
     | 
    
         
            +
              yyprintf((stderr, "do yy_2_ListLoose\n"));
         
     | 
| 
      
 1072 
     | 
    
         
            +
               yy = mk_list(LIST, a); ;
         
     | 
| 
       1109 
1073 
     | 
    
         
             
            #undef b
         
     | 
| 
       1110 
1074 
     | 
    
         
             
            #undef a
         
     | 
| 
       1111 
1075 
     | 
    
         
             
            }
         
     | 
| 
       1112 
     | 
    
         
            -
            YY_ACTION(void)  
     | 
| 
      
 1076 
     | 
    
         
            +
            YY_ACTION(void) yy_1_ListLoose(char *yytext, int yyleng)
         
     | 
| 
       1113 
1077 
     | 
    
         
             
            {
         
     | 
| 
       1114 
1078 
     | 
    
         
             
            #define b yyval[-1]
         
     | 
| 
       1115 
1079 
     | 
    
         
             
            #define a yyval[-2]
         
     | 
| 
       1116 
     | 
    
         
            -
              yyprintf((stderr, "do  
     | 
| 
      
 1080 
     | 
    
         
            +
              yyprintf((stderr, "do yy_1_ListLoose\n"));
         
     | 
| 
       1117 
1081 
     | 
    
         
             
                 element *li;
         
     | 
| 
       1118 
     | 
    
         
            -
             
     | 
| 
       1119 
     | 
    
         
            -
             
     | 
| 
       1120 
     | 
    
         
            -
             
     | 
| 
       1121 
     | 
    
         
            -
             
     | 
| 
       1122 
     | 
    
         
            -
             
     | 
| 
      
 1082 
     | 
    
         
            +
                              li = b->children;
         
     | 
| 
      
 1083 
     | 
    
         
            +
                              li->contents.str = realloc(li->contents.str, strlen(li->contents.str) + 3);
         
     | 
| 
      
 1084 
     | 
    
         
            +
                              strcat(li->contents.str, "\n\n");  /* In loose list, \n\n added to end of each element */
         
     | 
| 
      
 1085 
     | 
    
         
            +
                              a = cons(b, a);
         
     | 
| 
      
 1086 
     | 
    
         
            +
                          ;
         
     | 
| 
       1123 
1087 
     | 
    
         
             
            #undef b
         
     | 
| 
       1124 
1088 
     | 
    
         
             
            #undef a
         
     | 
| 
       1125 
1089 
     | 
    
         
             
            }
         
     | 
| 
       1126 
     | 
    
         
            -
            YY_ACTION(void)  
     | 
| 
      
 1090 
     | 
    
         
            +
            YY_ACTION(void) yy_2_ListTight(char *yytext, int yyleng)
         
     | 
| 
       1127 
1091 
     | 
    
         
             
            {
         
     | 
| 
       1128 
1092 
     | 
    
         
             
            #define a yyval[-1]
         
     | 
| 
       1129 
     | 
    
         
            -
              yyprintf((stderr, "do  
     | 
| 
       1130 
     | 
    
         
            -
               yy = mk_list( 
     | 
| 
      
 1093 
     | 
    
         
            +
              yyprintf((stderr, "do yy_2_ListTight\n"));
         
     | 
| 
      
 1094 
     | 
    
         
            +
               yy = mk_list(LIST, a); ;
         
     | 
| 
       1131 
1095 
     | 
    
         
             
            #undef a
         
     | 
| 
       1132 
1096 
     | 
    
         
             
            }
         
     | 
| 
       1133 
     | 
    
         
            -
            YY_ACTION(void)  
     | 
| 
      
 1097 
     | 
    
         
            +
            YY_ACTION(void) yy_1_ListTight(char *yytext, int yyleng)
         
     | 
| 
       1134 
1098 
     | 
    
         
             
            {
         
     | 
| 
       1135 
1099 
     | 
    
         
             
            #define a yyval[-1]
         
     | 
| 
       1136 
     | 
    
         
            -
              yyprintf((stderr, "do  
     | 
| 
      
 1100 
     | 
    
         
            +
              yyprintf((stderr, "do yy_1_ListTight\n"));
         
     | 
| 
       1137 
1101 
     | 
    
         
             
               a = cons(yy, a); ;
         
     | 
| 
       1138 
1102 
     | 
    
         
             
            #undef a
         
     | 
| 
       1139 
1103 
     | 
    
         
             
            }
         
     | 
| 
      
 1104 
     | 
    
         
            +
            YY_ACTION(void) yy_1_BulletList(char *yytext, int yyleng)
         
     | 
| 
      
 1105 
     | 
    
         
            +
            {
         
     | 
| 
      
 1106 
     | 
    
         
            +
              yyprintf((stderr, "do yy_1_BulletList\n"));
         
     | 
| 
      
 1107 
     | 
    
         
            +
               yy->key = BULLETLIST; ;
         
     | 
| 
      
 1108 
     | 
    
         
            +
            }
         
     | 
| 
       1140 
1109 
     | 
    
         
             
            YY_ACTION(void) yy_1_HorizontalRule(char *yytext, int yyleng)
         
     | 
| 
       1141 
1110 
     | 
    
         
             
            {
         
     | 
| 
       1142 
1111 
     | 
    
         
             
              yyprintf((stderr, "do yy_1_HorizontalRule\n"));
         
     | 
| 
         @@ -1432,11 +1401,11 @@ YY_RULE(int) yy_EnDash() 
     | 
|
| 
       1432 
1401 
     | 
    
         
             
            }
         
     | 
| 
       1433 
1402 
     | 
    
         
             
            YY_RULE(int) yy_EmDash()
         
     | 
| 
       1434 
1403 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       1435 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "EmDash")); 
     | 
| 
      
 1404 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "EmDash"));
         
     | 
| 
       1436 
1405 
     | 
    
         
             
              {  int yypos37= yypos, yythunkpos37= yythunkpos;  if (!yymatchString("---")) goto l38;  goto l37;
         
     | 
| 
       1437 
1406 
     | 
    
         
             
              l38:;	  yypos= yypos37; yythunkpos= yythunkpos37;  if (!yymatchString("--")) goto l36;
         
     | 
| 
       1438 
1407 
     | 
    
         
             
              }
         
     | 
| 
       1439 
     | 
    
         
            -
              l37:;	   
     | 
| 
      
 1408 
     | 
    
         
            +
              l37:;	  yyDo(yy_1_EmDash, yybegin, yyend);
         
     | 
| 
       1440 
1409 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "EmDash", yybuf+yypos));
         
     | 
| 
       1441 
1410 
     | 
    
         
             
              return 1;
         
     | 
| 
       1442 
1411 
     | 
    
         
             
              l36:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
         @@ -2425,598 +2394,598 @@ YY_RULE(int) yy_TerminalEndline() 
     | 
|
| 
       2425 
2394 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "TerminalEndline", yybuf+yypos));
         
     | 
| 
       2426 
2395 
     | 
    
         
             
              return 0;
         
     | 
| 
       2427 
2396 
     | 
    
         
             
            }
         
     | 
| 
      
 2397 
     | 
    
         
            +
            YY_RULE(int) yy_LineBreak()
         
     | 
| 
      
 2398 
     | 
    
         
            +
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
      
 2399 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "LineBreak"));  if (!yymatchString("  ")) goto l306;  if (!yy_NormalEndline()) goto l306;  yyDo(yy_1_LineBreak, yybegin, yyend);
         
     | 
| 
      
 2400 
     | 
    
         
            +
              yyprintf((stderr, "  ok   %s @ %s\n", "LineBreak", yybuf+yypos));
         
     | 
| 
      
 2401 
     | 
    
         
            +
              return 1;
         
     | 
| 
      
 2402 
     | 
    
         
            +
              l306:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
      
 2403 
     | 
    
         
            +
              yyprintf((stderr, "  fail %s @ %s\n", "LineBreak", yybuf+yypos));
         
     | 
| 
      
 2404 
     | 
    
         
            +
              return 0;
         
     | 
| 
      
 2405 
     | 
    
         
            +
            }
         
     | 
| 
       2428 
2406 
     | 
    
         
             
            YY_RULE(int) yy_CharEntity()
         
     | 
| 
       2429 
2407 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       2430 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "CharEntity"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto  
     | 
| 
       2431 
     | 
    
         
            -
               
     | 
| 
       2432 
     | 
    
         
            -
              {  int  
     | 
| 
       2433 
     | 
    
         
            -
               
     | 
| 
       2434 
     | 
    
         
            -
              }  if (!yymatchChar(';')) goto  
     | 
| 
      
 2408 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "CharEntity"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto l307;  if (!yymatchChar('&')) goto l307;  if (!yymatchClass((unsigned char *)"\000\000\000\000\000\000\377\003\376\377\377\007\376\377\377\007\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l307;
         
     | 
| 
      
 2409 
     | 
    
         
            +
              l308:;	
         
     | 
| 
      
 2410 
     | 
    
         
            +
              {  int yypos309= yypos, yythunkpos309= yythunkpos;  if (!yymatchClass((unsigned char *)"\000\000\000\000\000\000\377\003\376\377\377\007\376\377\377\007\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l309;  goto l308;
         
     | 
| 
      
 2411 
     | 
    
         
            +
              l309:;	  yypos= yypos309; yythunkpos= yythunkpos309;
         
     | 
| 
      
 2412 
     | 
    
         
            +
              }  if (!yymatchChar(';')) goto l307;  yyText(yybegin, yyend);  if (!(YY_END)) goto l307;
         
     | 
| 
       2435 
2413 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "CharEntity", yybuf+yypos));
         
     | 
| 
       2436 
2414 
     | 
    
         
             
              return 1;
         
     | 
| 
       2437 
     | 
    
         
            -
               
     | 
| 
      
 2415 
     | 
    
         
            +
              l307:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2438 
2416 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "CharEntity", yybuf+yypos));
         
     | 
| 
       2439 
2417 
     | 
    
         
             
              return 0;
         
     | 
| 
       2440 
2418 
     | 
    
         
             
            }
         
     | 
| 
       2441 
2419 
     | 
    
         
             
            YY_RULE(int) yy_DecEntity()
         
     | 
| 
       2442 
2420 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       2443 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "DecEntity"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto  
     | 
| 
       2444 
     | 
    
         
            -
               
     | 
| 
       2445 
     | 
    
         
            -
              {  int  
     | 
| 
       2446 
     | 
    
         
            -
               
     | 
| 
       2447 
     | 
    
         
            -
              }  yyText(yybegin, yyend);  if (!(YY_END)) goto  
     | 
| 
      
 2421 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "DecEntity"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto l310;  if (!yymatchChar('&')) goto l310;  if (!yymatchChar('#')) goto l310;  if (!yymatchClass((unsigned char *)"\000\000\000\000\000\000\377\003\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l310;
         
     | 
| 
      
 2422 
     | 
    
         
            +
              l311:;	
         
     | 
| 
      
 2423 
     | 
    
         
            +
              {  int yypos312= yypos, yythunkpos312= yythunkpos;  if (!yymatchClass((unsigned char *)"\000\000\000\000\000\000\377\003\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l312;  goto l311;
         
     | 
| 
      
 2424 
     | 
    
         
            +
              l312:;	  yypos= yypos312; yythunkpos= yythunkpos312;
         
     | 
| 
      
 2425 
     | 
    
         
            +
              }  yyText(yybegin, yyend);  if (!(YY_END)) goto l310;  if (!yymatchChar(';')) goto l310;  yyText(yybegin, yyend);  if (!(YY_END)) goto l310;
         
     | 
| 
       2448 
2426 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "DecEntity", yybuf+yypos));
         
     | 
| 
       2449 
2427 
     | 
    
         
             
              return 1;
         
     | 
| 
       2450 
     | 
    
         
            -
               
     | 
| 
      
 2428 
     | 
    
         
            +
              l310:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2451 
2429 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "DecEntity", yybuf+yypos));
         
     | 
| 
       2452 
2430 
     | 
    
         
             
              return 0;
         
     | 
| 
       2453 
2431 
     | 
    
         
             
            }
         
     | 
| 
       2454 
2432 
     | 
    
         
             
            YY_RULE(int) yy_HexEntity()
         
     | 
| 
       2455 
2433 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       2456 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "HexEntity"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto  
     | 
| 
       2457 
     | 
    
         
            -
               
     | 
| 
       2458 
     | 
    
         
            -
              {  int  
     | 
| 
       2459 
     | 
    
         
            -
               
     | 
| 
       2460 
     | 
    
         
            -
              }  if (!yymatchChar(';')) goto  
     | 
| 
      
 2434 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "HexEntity"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto l313;  if (!yymatchChar('&')) goto l313;  if (!yymatchChar('#')) goto l313;  if (!yymatchClass((unsigned char *)"\000\000\000\000\000\000\000\000\000\000\000\001\000\000\000\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l313;  if (!yymatchClass((unsigned char *)"\000\000\000\000\000\000\377\003\176\000\000\000\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l313;
         
     | 
| 
      
 2435 
     | 
    
         
            +
              l314:;	
         
     | 
| 
      
 2436 
     | 
    
         
            +
              {  int yypos315= yypos, yythunkpos315= yythunkpos;  if (!yymatchClass((unsigned char *)"\000\000\000\000\000\000\377\003\176\000\000\000\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l315;  goto l314;
         
     | 
| 
      
 2437 
     | 
    
         
            +
              l315:;	  yypos= yypos315; yythunkpos= yythunkpos315;
         
     | 
| 
      
 2438 
     | 
    
         
            +
              }  if (!yymatchChar(';')) goto l313;  yyText(yybegin, yyend);  if (!(YY_END)) goto l313;
         
     | 
| 
       2461 
2439 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "HexEntity", yybuf+yypos));
         
     | 
| 
       2462 
2440 
     | 
    
         
             
              return 1;
         
     | 
| 
       2463 
     | 
    
         
            -
               
     | 
| 
      
 2441 
     | 
    
         
            +
              l313:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2464 
2442 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "HexEntity", yybuf+yypos));
         
     | 
| 
       2465 
2443 
     | 
    
         
             
              return 0;
         
     | 
| 
       2466 
2444 
     | 
    
         
             
            }
         
     | 
| 
       2467 
2445 
     | 
    
         
             
            YY_RULE(int) yy_NormalChar()
         
     | 
| 
       2468 
2446 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       2469 
2447 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "NormalChar"));
         
     | 
| 
       2470 
     | 
    
         
            -
              {  int  
     | 
| 
       2471 
     | 
    
         
            -
              {  int  
     | 
| 
       2472 
     | 
    
         
            -
               
     | 
| 
       2473 
     | 
    
         
            -
               
     | 
| 
       2474 
     | 
    
         
            -
              }
         
     | 
| 
       2475 
     | 
    
         
            -
               
     | 
| 
       2476 
     | 
    
         
            -
               
     | 
| 
       2477 
     | 
    
         
            -
              }  if (!yymatchDot()) goto  
     | 
| 
      
 2448 
     | 
    
         
            +
              {  int yypos317= yypos, yythunkpos317= yythunkpos;
         
     | 
| 
      
 2449 
     | 
    
         
            +
              {  int yypos318= yypos, yythunkpos318= yythunkpos;  if (!yy_SpecialChar()) goto l319;  goto l318;
         
     | 
| 
      
 2450 
     | 
    
         
            +
              l319:;	  yypos= yypos318; yythunkpos= yythunkpos318;  if (!yy_Spacechar()) goto l320;  goto l318;
         
     | 
| 
      
 2451 
     | 
    
         
            +
              l320:;	  yypos= yypos318; yythunkpos= yythunkpos318;  if (!yy_Newline()) goto l317;
         
     | 
| 
      
 2452 
     | 
    
         
            +
              }
         
     | 
| 
      
 2453 
     | 
    
         
            +
              l318:;	  goto l316;
         
     | 
| 
      
 2454 
     | 
    
         
            +
              l317:;	  yypos= yypos317; yythunkpos= yythunkpos317;
         
     | 
| 
      
 2455 
     | 
    
         
            +
              }  if (!yymatchDot()) goto l316;
         
     | 
| 
       2478 
2456 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "NormalChar", yybuf+yypos));
         
     | 
| 
       2479 
2457 
     | 
    
         
             
              return 1;
         
     | 
| 
       2480 
     | 
    
         
            -
               
     | 
| 
      
 2458 
     | 
    
         
            +
              l316:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2481 
2459 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "NormalChar", yybuf+yypos));
         
     | 
| 
       2482 
2460 
     | 
    
         
             
              return 0;
         
     | 
| 
       2483 
2461 
     | 
    
         
             
            }
         
     | 
| 
       2484 
2462 
     | 
    
         
             
            YY_RULE(int) yy_Symbol()
         
     | 
| 
       2485 
2463 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       2486 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "Symbol"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto  
     | 
| 
      
 2464 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "Symbol"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto l321;  if (!yy_SpecialChar()) goto l321;  yyText(yybegin, yyend);  if (!(YY_END)) goto l321;  yyDo(yy_1_Symbol, yybegin, yyend);
         
     | 
| 
       2487 
2465 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Symbol", yybuf+yypos));
         
     | 
| 
       2488 
2466 
     | 
    
         
             
              return 1;
         
     | 
| 
       2489 
     | 
    
         
            -
               
     | 
| 
      
 2467 
     | 
    
         
            +
              l321:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2490 
2468 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Symbol", yybuf+yypos));
         
     | 
| 
       2491 
2469 
     | 
    
         
             
              return 0;
         
     | 
| 
       2492 
2470 
     | 
    
         
             
            }
         
     | 
| 
       2493 
2471 
     | 
    
         
             
            YY_RULE(int) yy_Smart()
         
     | 
| 
       2494 
2472 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       2495 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "Smart"));  yyText(yybegin, yyend);  if (!( extension(EXT_SMART) )) goto  
     | 
| 
       2496 
     | 
    
         
            -
              {  int  
     | 
| 
       2497 
     | 
    
         
            -
               
     | 
| 
       2498 
     | 
    
         
            -
               
     | 
| 
       2499 
     | 
    
         
            -
               
     | 
| 
       2500 
     | 
    
         
            -
               
     | 
| 
      
 2473 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "Smart"));  yyText(yybegin, yyend);  if (!( extension(EXT_SMART) )) goto l322;
         
     | 
| 
      
 2474 
     | 
    
         
            +
              {  int yypos323= yypos, yythunkpos323= yythunkpos;  if (!yy_Ellipsis()) goto l324;  goto l323;
         
     | 
| 
      
 2475 
     | 
    
         
            +
              l324:;	  yypos= yypos323; yythunkpos= yythunkpos323;  if (!yy_Dash()) goto l325;  goto l323;
         
     | 
| 
      
 2476 
     | 
    
         
            +
              l325:;	  yypos= yypos323; yythunkpos= yythunkpos323;  if (!yy_SingleQuoted()) goto l326;  goto l323;
         
     | 
| 
      
 2477 
     | 
    
         
            +
              l326:;	  yypos= yypos323; yythunkpos= yythunkpos323;  if (!yy_DoubleQuoted()) goto l327;  goto l323;
         
     | 
| 
      
 2478 
     | 
    
         
            +
              l327:;	  yypos= yypos323; yythunkpos= yythunkpos323;  if (!yy_Apostrophe()) goto l322;
         
     | 
| 
       2501 
2479 
     | 
    
         
             
              }
         
     | 
| 
       2502 
     | 
    
         
            -
               
     | 
| 
      
 2480 
     | 
    
         
            +
              l323:;	
         
     | 
| 
       2503 
2481 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Smart", yybuf+yypos));
         
     | 
| 
       2504 
2482 
     | 
    
         
             
              return 1;
         
     | 
| 
       2505 
     | 
    
         
            -
               
     | 
| 
      
 2483 
     | 
    
         
            +
              l322:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2506 
2484 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Smart", yybuf+yypos));
         
     | 
| 
       2507 
2485 
     | 
    
         
             
              return 0;
         
     | 
| 
       2508 
2486 
     | 
    
         
             
            }
         
     | 
| 
       2509 
2487 
     | 
    
         
             
            YY_RULE(int) yy_EscapedChar()
         
     | 
| 
       2510 
2488 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       2511 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "EscapedChar"));  if (!yymatchChar('\\')) goto  
     | 
| 
       2512 
     | 
    
         
            -
              {  int  
     | 
| 
       2513 
     | 
    
         
            -
               
     | 
| 
       2514 
     | 
    
         
            -
              }  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto  
     | 
| 
      
 2489 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "EscapedChar"));  if (!yymatchChar('\\')) goto l328;
         
     | 
| 
      
 2490 
     | 
    
         
            +
              {  int yypos329= yypos, yythunkpos329= yythunkpos;  if (!yy_Newline()) goto l329;  goto l328;
         
     | 
| 
      
 2491 
     | 
    
         
            +
              l329:;	  yypos= yypos329; yythunkpos= yythunkpos329;
         
     | 
| 
      
 2492 
     | 
    
         
            +
              }  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto l328;  if (!yymatchDot()) goto l328;  yyText(yybegin, yyend);  if (!(YY_END)) goto l328;  yyDo(yy_1_EscapedChar, yybegin, yyend);
         
     | 
| 
       2515 
2493 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "EscapedChar", yybuf+yypos));
         
     | 
| 
       2516 
2494 
     | 
    
         
             
              return 1;
         
     | 
| 
       2517 
     | 
    
         
            -
               
     | 
| 
      
 2495 
     | 
    
         
            +
              l328:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2518 
2496 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "EscapedChar", yybuf+yypos));
         
     | 
| 
       2519 
2497 
     | 
    
         
             
              return 0;
         
     | 
| 
       2520 
2498 
     | 
    
         
             
            }
         
     | 
| 
       2521 
2499 
     | 
    
         
             
            YY_RULE(int) yy_Entity()
         
     | 
| 
       2522 
2500 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       2523 
2501 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "Entity"));
         
     | 
| 
       2524 
     | 
    
         
            -
              {  int  
     | 
| 
       2525 
     | 
    
         
            -
               
     | 
| 
       2526 
     | 
    
         
            -
               
     | 
| 
      
 2502 
     | 
    
         
            +
              {  int yypos331= yypos, yythunkpos331= yythunkpos;  if (!yy_HexEntity()) goto l332;  goto l331;
         
     | 
| 
      
 2503 
     | 
    
         
            +
              l332:;	  yypos= yypos331; yythunkpos= yythunkpos331;  if (!yy_DecEntity()) goto l333;  goto l331;
         
     | 
| 
      
 2504 
     | 
    
         
            +
              l333:;	  yypos= yypos331; yythunkpos= yythunkpos331;  if (!yy_CharEntity()) goto l330;
         
     | 
| 
       2527 
2505 
     | 
    
         
             
              }
         
     | 
| 
       2528 
     | 
    
         
            -
               
     | 
| 
      
 2506 
     | 
    
         
            +
              l331:;	  yyDo(yy_1_Entity, yybegin, yyend);
         
     | 
| 
       2529 
2507 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Entity", yybuf+yypos));
         
     | 
| 
       2530 
2508 
     | 
    
         
             
              return 1;
         
     | 
| 
       2531 
     | 
    
         
            -
               
     | 
| 
      
 2509 
     | 
    
         
            +
              l330:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2532 
2510 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Entity", yybuf+yypos));
         
     | 
| 
       2533 
2511 
     | 
    
         
             
              return 0;
         
     | 
| 
       2534 
2512 
     | 
    
         
             
            }
         
     | 
| 
       2535 
2513 
     | 
    
         
             
            YY_RULE(int) yy_RawHtml()
         
     | 
| 
       2536 
2514 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       2537 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "RawHtml"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto  
     | 
| 
       2538 
     | 
    
         
            -
              {  int  
     | 
| 
       2539 
     | 
    
         
            -
               
     | 
| 
      
 2515 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "RawHtml"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto l334;
         
     | 
| 
      
 2516 
     | 
    
         
            +
              {  int yypos335= yypos, yythunkpos335= yythunkpos;  if (!yy_HtmlComment()) goto l336;  goto l335;
         
     | 
| 
      
 2517 
     | 
    
         
            +
              l336:;	  yypos= yypos335; yythunkpos= yythunkpos335;  if (!yy_HtmlTag()) goto l334;
         
     | 
| 
       2540 
2518 
     | 
    
         
             
              }
         
     | 
| 
       2541 
     | 
    
         
            -
               
     | 
| 
      
 2519 
     | 
    
         
            +
              l335:;	  yyText(yybegin, yyend);  if (!(YY_END)) goto l334;  yyDo(yy_1_RawHtml, yybegin, yyend);
         
     | 
| 
       2542 
2520 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "RawHtml", yybuf+yypos));
         
     | 
| 
       2543 
2521 
     | 
    
         
             
              return 1;
         
     | 
| 
       2544 
     | 
    
         
            -
               
     | 
| 
      
 2522 
     | 
    
         
            +
              l334:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2545 
2523 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "RawHtml", yybuf+yypos));
         
     | 
| 
       2546 
2524 
     | 
    
         
             
              return 0;
         
     | 
| 
       2547 
2525 
     | 
    
         
             
            }
         
     | 
| 
       2548 
2526 
     | 
    
         
             
            YY_RULE(int) yy_Code()
         
     | 
| 
       2549 
2527 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       2550 
2528 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "Code"));
         
     | 
| 
       2551 
     | 
    
         
            -
              {  int  
     | 
| 
       2552 
     | 
    
         
            -
              {  int  
     | 
| 
       2553 
     | 
    
         
            -
              {  int  
     | 
| 
       2554 
     | 
    
         
            -
              l345:;	  yypos= yypos345; yythunkpos= yythunkpos345;
         
     | 
| 
       2555 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto l342;
         
     | 
| 
       2556 
     | 
    
         
            -
              l343:;	
         
     | 
| 
       2557 
     | 
    
         
            -
              {  int yypos344= yypos, yythunkpos344= yythunkpos;
         
     | 
| 
       2558 
     | 
    
         
            -
              {  int yypos346= yypos, yythunkpos346= yythunkpos;  if (!yymatchChar('`')) goto l346;  goto l344;
         
     | 
| 
      
 2529 
     | 
    
         
            +
              {  int yypos338= yypos, yythunkpos338= yythunkpos;  if (!yy_Ticks1()) goto l339;  if (!yy_Sp()) goto l339;  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto l339;
         
     | 
| 
      
 2530 
     | 
    
         
            +
              {  int yypos342= yypos, yythunkpos342= yythunkpos;
         
     | 
| 
      
 2531 
     | 
    
         
            +
              {  int yypos346= yypos, yythunkpos346= yythunkpos;  if (!yymatchChar('`')) goto l346;  goto l343;
         
     | 
| 
       2559 
2532 
     | 
    
         
             
              l346:;	  yypos= yypos346; yythunkpos= yythunkpos346;
         
     | 
| 
       2560 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto  
     | 
| 
       2561 
     | 
    
         
            -
              l344:; 
     | 
| 
       2562 
     | 
    
         
            -
               
     | 
| 
       2563 
     | 
    
         
            -
               
     | 
| 
       2564 
     | 
    
         
            -
               
     | 
| 
       2565 
     | 
    
         
            -
               
     | 
| 
       2566 
     | 
    
         
            -
               
     | 
| 
       2567 
     | 
    
         
            -
               
     | 
| 
       2568 
     | 
    
         
            -
               
     | 
| 
       2569 
     | 
    
         
            -
               
     | 
| 
       2570 
     | 
    
         
            -
               
     | 
| 
       2571 
     | 
    
         
            -
               
     | 
| 
       2572 
     | 
    
         
            -
               
     | 
| 
      
 2533 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l343;
         
     | 
| 
      
 2534 
     | 
    
         
            +
              l344:;	
         
     | 
| 
      
 2535 
     | 
    
         
            +
              {  int yypos345= yypos, yythunkpos345= yythunkpos;
         
     | 
| 
      
 2536 
     | 
    
         
            +
              {  int yypos347= yypos, yythunkpos347= yythunkpos;  if (!yymatchChar('`')) goto l347;  goto l345;
         
     | 
| 
      
 2537 
     | 
    
         
            +
              l347:;	  yypos= yypos347; yythunkpos= yythunkpos347;
         
     | 
| 
      
 2538 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l345;  goto l344;
         
     | 
| 
      
 2539 
     | 
    
         
            +
              l345:;	  yypos= yypos345; yythunkpos= yythunkpos345;
         
     | 
| 
      
 2540 
     | 
    
         
            +
              }  goto l342;
         
     | 
| 
      
 2541 
     | 
    
         
            +
              l343:;	  yypos= yypos342; yythunkpos= yythunkpos342;
         
     | 
| 
      
 2542 
     | 
    
         
            +
              {  int yypos349= yypos, yythunkpos349= yythunkpos;  if (!yy_Ticks1()) goto l349;  goto l348;
         
     | 
| 
      
 2543 
     | 
    
         
            +
              l349:;	  yypos= yypos349; yythunkpos= yythunkpos349;
         
     | 
| 
      
 2544 
     | 
    
         
            +
              }  if (!yymatchChar('`')) goto l348;
         
     | 
| 
      
 2545 
     | 
    
         
            +
              l350:;	
         
     | 
| 
      
 2546 
     | 
    
         
            +
              {  int yypos351= yypos, yythunkpos351= yythunkpos;  if (!yymatchChar('`')) goto l351;  goto l350;
         
     | 
| 
       2573 
2547 
     | 
    
         
             
              l351:;	  yypos= yypos351; yythunkpos= yythunkpos351;
         
     | 
| 
      
 2548 
     | 
    
         
            +
              }  goto l342;
         
     | 
| 
      
 2549 
     | 
    
         
            +
              l348:;	  yypos= yypos342; yythunkpos= yythunkpos342;
         
     | 
| 
      
 2550 
     | 
    
         
            +
              {  int yypos352= yypos, yythunkpos352= yythunkpos;  if (!yy_Sp()) goto l352;  if (!yy_Ticks1()) goto l352;  goto l339;
         
     | 
| 
      
 2551 
     | 
    
         
            +
              l352:;	  yypos= yypos352; yythunkpos= yythunkpos352;
         
     | 
| 
       2574 
2552 
     | 
    
         
             
              }
         
     | 
| 
       2575 
     | 
    
         
            -
              {  int  
     | 
| 
       2576 
     | 
    
         
            -
               
     | 
| 
       2577 
     | 
    
         
            -
              {  int  
     | 
| 
       2578 
     | 
    
         
            -
               
     | 
| 
      
 2553 
     | 
    
         
            +
              {  int yypos353= yypos, yythunkpos353= yythunkpos;  if (!yy_Spacechar()) goto l354;  goto l353;
         
     | 
| 
      
 2554 
     | 
    
         
            +
              l354:;	  yypos= yypos353; yythunkpos= yythunkpos353;  if (!yy_Newline()) goto l339;
         
     | 
| 
      
 2555 
     | 
    
         
            +
              {  int yypos355= yypos, yythunkpos355= yythunkpos;  if (!yy_BlankLine()) goto l355;  goto l339;
         
     | 
| 
      
 2556 
     | 
    
         
            +
              l355:;	  yypos= yypos355; yythunkpos= yythunkpos355;
         
     | 
| 
       2579 
2557 
     | 
    
         
             
              }
         
     | 
| 
       2580 
2558 
     | 
    
         
             
              }
         
     | 
| 
       2581 
     | 
    
         
            -
               
     | 
| 
      
 2559 
     | 
    
         
            +
              l353:;	
         
     | 
| 
       2582 
2560 
     | 
    
         
             
              }
         
     | 
| 
       2583 
     | 
    
         
            -
               
     | 
| 
       2584 
     | 
    
         
            -
               
     | 
| 
       2585 
     | 
    
         
            -
              {  int  
     | 
| 
       2586 
     | 
    
         
            -
              {  int  
     | 
| 
       2587 
     | 
    
         
            -
              {  int  
     | 
| 
       2588 
     | 
    
         
            -
              l359:;	  yypos= yypos359; yythunkpos= yythunkpos359;
         
     | 
| 
       2589 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto l356;
         
     | 
| 
       2590 
     | 
    
         
            -
              l357:;	
         
     | 
| 
       2591 
     | 
    
         
            -
              {  int yypos358= yypos, yythunkpos358= yythunkpos;
         
     | 
| 
       2592 
     | 
    
         
            -
              {  int yypos360= yypos, yythunkpos360= yythunkpos;  if (!yymatchChar('`')) goto l360;  goto l358;
         
     | 
| 
      
 2561 
     | 
    
         
            +
              l342:;	
         
     | 
| 
      
 2562 
     | 
    
         
            +
              l340:;	
         
     | 
| 
      
 2563 
     | 
    
         
            +
              {  int yypos341= yypos, yythunkpos341= yythunkpos;
         
     | 
| 
      
 2564 
     | 
    
         
            +
              {  int yypos356= yypos, yythunkpos356= yythunkpos;
         
     | 
| 
      
 2565 
     | 
    
         
            +
              {  int yypos360= yypos, yythunkpos360= yythunkpos;  if (!yymatchChar('`')) goto l360;  goto l357;
         
     | 
| 
       2593 
2566 
     | 
    
         
             
              l360:;	  yypos= yypos360; yythunkpos= yythunkpos360;
         
     | 
| 
       2594 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto  
     | 
| 
       2595 
     | 
    
         
            -
              l358:; 
     | 
| 
       2596 
     | 
    
         
            -
               
     | 
| 
       2597 
     | 
    
         
            -
               
     | 
| 
       2598 
     | 
    
         
            -
               
     | 
| 
       2599 
     | 
    
         
            -
               
     | 
| 
       2600 
     | 
    
         
            -
               
     | 
| 
       2601 
     | 
    
         
            -
               
     | 
| 
       2602 
     | 
    
         
            -
               
     | 
| 
       2603 
     | 
    
         
            -
               
     | 
| 
       2604 
     | 
    
         
            -
               
     | 
| 
       2605 
     | 
    
         
            -
               
     | 
| 
       2606 
     | 
    
         
            -
               
     | 
| 
      
 2567 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l357;
         
     | 
| 
      
 2568 
     | 
    
         
            +
              l358:;	
         
     | 
| 
      
 2569 
     | 
    
         
            +
              {  int yypos359= yypos, yythunkpos359= yythunkpos;
         
     | 
| 
      
 2570 
     | 
    
         
            +
              {  int yypos361= yypos, yythunkpos361= yythunkpos;  if (!yymatchChar('`')) goto l361;  goto l359;
         
     | 
| 
      
 2571 
     | 
    
         
            +
              l361:;	  yypos= yypos361; yythunkpos= yythunkpos361;
         
     | 
| 
      
 2572 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l359;  goto l358;
         
     | 
| 
      
 2573 
     | 
    
         
            +
              l359:;	  yypos= yypos359; yythunkpos= yythunkpos359;
         
     | 
| 
      
 2574 
     | 
    
         
            +
              }  goto l356;
         
     | 
| 
      
 2575 
     | 
    
         
            +
              l357:;	  yypos= yypos356; yythunkpos= yythunkpos356;
         
     | 
| 
      
 2576 
     | 
    
         
            +
              {  int yypos363= yypos, yythunkpos363= yythunkpos;  if (!yy_Ticks1()) goto l363;  goto l362;
         
     | 
| 
      
 2577 
     | 
    
         
            +
              l363:;	  yypos= yypos363; yythunkpos= yythunkpos363;
         
     | 
| 
      
 2578 
     | 
    
         
            +
              }  if (!yymatchChar('`')) goto l362;
         
     | 
| 
      
 2579 
     | 
    
         
            +
              l364:;	
         
     | 
| 
      
 2580 
     | 
    
         
            +
              {  int yypos365= yypos, yythunkpos365= yythunkpos;  if (!yymatchChar('`')) goto l365;  goto l364;
         
     | 
| 
       2607 
2581 
     | 
    
         
             
              l365:;	  yypos= yypos365; yythunkpos= yythunkpos365;
         
     | 
| 
      
 2582 
     | 
    
         
            +
              }  goto l356;
         
     | 
| 
      
 2583 
     | 
    
         
            +
              l362:;	  yypos= yypos356; yythunkpos= yythunkpos356;
         
     | 
| 
      
 2584 
     | 
    
         
            +
              {  int yypos366= yypos, yythunkpos366= yythunkpos;  if (!yy_Sp()) goto l366;  if (!yy_Ticks1()) goto l366;  goto l341;
         
     | 
| 
      
 2585 
     | 
    
         
            +
              l366:;	  yypos= yypos366; yythunkpos= yythunkpos366;
         
     | 
| 
       2608 
2586 
     | 
    
         
             
              }
         
     | 
| 
       2609 
     | 
    
         
            -
              {  int  
     | 
| 
       2610 
     | 
    
         
            -
               
     | 
| 
       2611 
     | 
    
         
            -
              {  int  
     | 
| 
       2612 
     | 
    
         
            -
               
     | 
| 
      
 2587 
     | 
    
         
            +
              {  int yypos367= yypos, yythunkpos367= yythunkpos;  if (!yy_Spacechar()) goto l368;  goto l367;
         
     | 
| 
      
 2588 
     | 
    
         
            +
              l368:;	  yypos= yypos367; yythunkpos= yythunkpos367;  if (!yy_Newline()) goto l341;
         
     | 
| 
      
 2589 
     | 
    
         
            +
              {  int yypos369= yypos, yythunkpos369= yythunkpos;  if (!yy_BlankLine()) goto l369;  goto l341;
         
     | 
| 
      
 2590 
     | 
    
         
            +
              l369:;	  yypos= yypos369; yythunkpos= yythunkpos369;
         
     | 
| 
       2613 
2591 
     | 
    
         
             
              }
         
     | 
| 
       2614 
2592 
     | 
    
         
             
              }
         
     | 
| 
       2615 
     | 
    
         
            -
               
     | 
| 
      
 2593 
     | 
    
         
            +
              l367:;	
         
     | 
| 
       2616 
2594 
     | 
    
         
             
              }
         
     | 
| 
       2617 
     | 
    
         
            -
               
     | 
| 
       2618 
     | 
    
         
            -
               
     | 
| 
       2619 
     | 
    
         
            -
              }  yyText(yybegin, yyend);  if (!(YY_END)) goto  
     | 
| 
       2620 
     | 
    
         
            -
               
     | 
| 
       2621 
     | 
    
         
            -
              {  int  
     | 
| 
       2622 
     | 
    
         
            -
              {  int  
     | 
| 
       2623 
     | 
    
         
            -
              l376:;	  yypos= yypos376; yythunkpos= yythunkpos376;
         
     | 
| 
       2624 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto l373;
         
     | 
| 
       2625 
     | 
    
         
            -
              l374:;	
         
     | 
| 
       2626 
     | 
    
         
            -
              {  int yypos375= yypos, yythunkpos375= yythunkpos;
         
     | 
| 
       2627 
     | 
    
         
            -
              {  int yypos377= yypos, yythunkpos377= yythunkpos;  if (!yymatchChar('`')) goto l377;  goto l375;
         
     | 
| 
      
 2595 
     | 
    
         
            +
              l356:;	  goto l340;
         
     | 
| 
      
 2596 
     | 
    
         
            +
              l341:;	  yypos= yypos341; yythunkpos= yythunkpos341;
         
     | 
| 
      
 2597 
     | 
    
         
            +
              }  yyText(yybegin, yyend);  if (!(YY_END)) goto l339;  if (!yy_Sp()) goto l339;  if (!yy_Ticks1()) goto l339;  goto l338;
         
     | 
| 
      
 2598 
     | 
    
         
            +
              l339:;	  yypos= yypos338; yythunkpos= yythunkpos338;  if (!yy_Ticks2()) goto l370;  if (!yy_Sp()) goto l370;  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto l370;
         
     | 
| 
      
 2599 
     | 
    
         
            +
              {  int yypos373= yypos, yythunkpos373= yythunkpos;
         
     | 
| 
      
 2600 
     | 
    
         
            +
              {  int yypos377= yypos, yythunkpos377= yythunkpos;  if (!yymatchChar('`')) goto l377;  goto l374;
         
     | 
| 
       2628 
2601 
     | 
    
         
             
              l377:;	  yypos= yypos377; yythunkpos= yythunkpos377;
         
     | 
| 
       2629 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto  
     | 
| 
       2630 
     | 
    
         
            -
              l375:; 
     | 
| 
       2631 
     | 
    
         
            -
               
     | 
| 
       2632 
     | 
    
         
            -
               
     | 
| 
       2633 
     | 
    
         
            -
               
     | 
| 
       2634 
     | 
    
         
            -
               
     | 
| 
       2635 
     | 
    
         
            -
               
     | 
| 
       2636 
     | 
    
         
            -
               
     | 
| 
       2637 
     | 
    
         
            -
               
     | 
| 
       2638 
     | 
    
         
            -
               
     | 
| 
       2639 
     | 
    
         
            -
               
     | 
| 
       2640 
     | 
    
         
            -
               
     | 
| 
       2641 
     | 
    
         
            -
               
     | 
| 
      
 2602 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l374;
         
     | 
| 
      
 2603 
     | 
    
         
            +
              l375:;	
         
     | 
| 
      
 2604 
     | 
    
         
            +
              {  int yypos376= yypos, yythunkpos376= yythunkpos;
         
     | 
| 
      
 2605 
     | 
    
         
            +
              {  int yypos378= yypos, yythunkpos378= yythunkpos;  if (!yymatchChar('`')) goto l378;  goto l376;
         
     | 
| 
      
 2606 
     | 
    
         
            +
              l378:;	  yypos= yypos378; yythunkpos= yythunkpos378;
         
     | 
| 
      
 2607 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l376;  goto l375;
         
     | 
| 
      
 2608 
     | 
    
         
            +
              l376:;	  yypos= yypos376; yythunkpos= yythunkpos376;
         
     | 
| 
      
 2609 
     | 
    
         
            +
              }  goto l373;
         
     | 
| 
      
 2610 
     | 
    
         
            +
              l374:;	  yypos= yypos373; yythunkpos= yythunkpos373;
         
     | 
| 
      
 2611 
     | 
    
         
            +
              {  int yypos380= yypos, yythunkpos380= yythunkpos;  if (!yy_Ticks2()) goto l380;  goto l379;
         
     | 
| 
      
 2612 
     | 
    
         
            +
              l380:;	  yypos= yypos380; yythunkpos= yythunkpos380;
         
     | 
| 
      
 2613 
     | 
    
         
            +
              }  if (!yymatchChar('`')) goto l379;
         
     | 
| 
      
 2614 
     | 
    
         
            +
              l381:;	
         
     | 
| 
      
 2615 
     | 
    
         
            +
              {  int yypos382= yypos, yythunkpos382= yythunkpos;  if (!yymatchChar('`')) goto l382;  goto l381;
         
     | 
| 
       2642 
2616 
     | 
    
         
             
              l382:;	  yypos= yypos382; yythunkpos= yythunkpos382;
         
     | 
| 
      
 2617 
     | 
    
         
            +
              }  goto l373;
         
     | 
| 
      
 2618 
     | 
    
         
            +
              l379:;	  yypos= yypos373; yythunkpos= yythunkpos373;
         
     | 
| 
      
 2619 
     | 
    
         
            +
              {  int yypos383= yypos, yythunkpos383= yythunkpos;  if (!yy_Sp()) goto l383;  if (!yy_Ticks2()) goto l383;  goto l370;
         
     | 
| 
      
 2620 
     | 
    
         
            +
              l383:;	  yypos= yypos383; yythunkpos= yythunkpos383;
         
     | 
| 
       2643 
2621 
     | 
    
         
             
              }
         
     | 
| 
       2644 
     | 
    
         
            -
              {  int  
     | 
| 
       2645 
     | 
    
         
            -
               
     | 
| 
       2646 
     | 
    
         
            -
              {  int  
     | 
| 
       2647 
     | 
    
         
            -
               
     | 
| 
      
 2622 
     | 
    
         
            +
              {  int yypos384= yypos, yythunkpos384= yythunkpos;  if (!yy_Spacechar()) goto l385;  goto l384;
         
     | 
| 
      
 2623 
     | 
    
         
            +
              l385:;	  yypos= yypos384; yythunkpos= yythunkpos384;  if (!yy_Newline()) goto l370;
         
     | 
| 
      
 2624 
     | 
    
         
            +
              {  int yypos386= yypos, yythunkpos386= yythunkpos;  if (!yy_BlankLine()) goto l386;  goto l370;
         
     | 
| 
      
 2625 
     | 
    
         
            +
              l386:;	  yypos= yypos386; yythunkpos= yythunkpos386;
         
     | 
| 
       2648 
2626 
     | 
    
         
             
              }
         
     | 
| 
       2649 
2627 
     | 
    
         
             
              }
         
     | 
| 
       2650 
     | 
    
         
            -
               
     | 
| 
      
 2628 
     | 
    
         
            +
              l384:;	
         
     | 
| 
       2651 
2629 
     | 
    
         
             
              }
         
     | 
| 
       2652 
     | 
    
         
            -
               
     | 
| 
       2653 
     | 
    
         
            -
               
     | 
| 
       2654 
     | 
    
         
            -
              {  int  
     | 
| 
       2655 
     | 
    
         
            -
              {  int  
     | 
| 
       2656 
     | 
    
         
            -
              {  int  
     | 
| 
       2657 
     | 
    
         
            -
              l390:;	  yypos= yypos390; yythunkpos= yythunkpos390;
         
     | 
| 
       2658 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto l387;
         
     | 
| 
       2659 
     | 
    
         
            -
              l388:;	
         
     | 
| 
       2660 
     | 
    
         
            -
              {  int yypos389= yypos, yythunkpos389= yythunkpos;
         
     | 
| 
       2661 
     | 
    
         
            -
              {  int yypos391= yypos, yythunkpos391= yythunkpos;  if (!yymatchChar('`')) goto l391;  goto l389;
         
     | 
| 
      
 2630 
     | 
    
         
            +
              l373:;	
         
     | 
| 
      
 2631 
     | 
    
         
            +
              l371:;	
         
     | 
| 
      
 2632 
     | 
    
         
            +
              {  int yypos372= yypos, yythunkpos372= yythunkpos;
         
     | 
| 
      
 2633 
     | 
    
         
            +
              {  int yypos387= yypos, yythunkpos387= yythunkpos;
         
     | 
| 
      
 2634 
     | 
    
         
            +
              {  int yypos391= yypos, yythunkpos391= yythunkpos;  if (!yymatchChar('`')) goto l391;  goto l388;
         
     | 
| 
       2662 
2635 
     | 
    
         
             
              l391:;	  yypos= yypos391; yythunkpos= yythunkpos391;
         
     | 
| 
       2663 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto  
     | 
| 
       2664 
     | 
    
         
            -
              l389:; 
     | 
| 
       2665 
     | 
    
         
            -
               
     | 
| 
       2666 
     | 
    
         
            -
               
     | 
| 
       2667 
     | 
    
         
            -
               
     | 
| 
       2668 
     | 
    
         
            -
               
     | 
| 
       2669 
     | 
    
         
            -
               
     | 
| 
       2670 
     | 
    
         
            -
               
     | 
| 
       2671 
     | 
    
         
            -
               
     | 
| 
       2672 
     | 
    
         
            -
               
     | 
| 
       2673 
     | 
    
         
            -
               
     | 
| 
       2674 
     | 
    
         
            -
               
     | 
| 
       2675 
     | 
    
         
            -
               
     | 
| 
      
 2636 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l388;
         
     | 
| 
      
 2637 
     | 
    
         
            +
              l389:;	
         
     | 
| 
      
 2638 
     | 
    
         
            +
              {  int yypos390= yypos, yythunkpos390= yythunkpos;
         
     | 
| 
      
 2639 
     | 
    
         
            +
              {  int yypos392= yypos, yythunkpos392= yythunkpos;  if (!yymatchChar('`')) goto l392;  goto l390;
         
     | 
| 
      
 2640 
     | 
    
         
            +
              l392:;	  yypos= yypos392; yythunkpos= yythunkpos392;
         
     | 
| 
      
 2641 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l390;  goto l389;
         
     | 
| 
      
 2642 
     | 
    
         
            +
              l390:;	  yypos= yypos390; yythunkpos= yythunkpos390;
         
     | 
| 
      
 2643 
     | 
    
         
            +
              }  goto l387;
         
     | 
| 
      
 2644 
     | 
    
         
            +
              l388:;	  yypos= yypos387; yythunkpos= yythunkpos387;
         
     | 
| 
      
 2645 
     | 
    
         
            +
              {  int yypos394= yypos, yythunkpos394= yythunkpos;  if (!yy_Ticks2()) goto l394;  goto l393;
         
     | 
| 
      
 2646 
     | 
    
         
            +
              l394:;	  yypos= yypos394; yythunkpos= yythunkpos394;
         
     | 
| 
      
 2647 
     | 
    
         
            +
              }  if (!yymatchChar('`')) goto l393;
         
     | 
| 
      
 2648 
     | 
    
         
            +
              l395:;	
         
     | 
| 
      
 2649 
     | 
    
         
            +
              {  int yypos396= yypos, yythunkpos396= yythunkpos;  if (!yymatchChar('`')) goto l396;  goto l395;
         
     | 
| 
       2676 
2650 
     | 
    
         
             
              l396:;	  yypos= yypos396; yythunkpos= yythunkpos396;
         
     | 
| 
      
 2651 
     | 
    
         
            +
              }  goto l387;
         
     | 
| 
      
 2652 
     | 
    
         
            +
              l393:;	  yypos= yypos387; yythunkpos= yythunkpos387;
         
     | 
| 
      
 2653 
     | 
    
         
            +
              {  int yypos397= yypos, yythunkpos397= yythunkpos;  if (!yy_Sp()) goto l397;  if (!yy_Ticks2()) goto l397;  goto l372;
         
     | 
| 
      
 2654 
     | 
    
         
            +
              l397:;	  yypos= yypos397; yythunkpos= yythunkpos397;
         
     | 
| 
       2677 
2655 
     | 
    
         
             
              }
         
     | 
| 
       2678 
     | 
    
         
            -
              {  int  
     | 
| 
       2679 
     | 
    
         
            -
               
     | 
| 
       2680 
     | 
    
         
            -
              {  int  
     | 
| 
       2681 
     | 
    
         
            -
               
     | 
| 
      
 2656 
     | 
    
         
            +
              {  int yypos398= yypos, yythunkpos398= yythunkpos;  if (!yy_Spacechar()) goto l399;  goto l398;
         
     | 
| 
      
 2657 
     | 
    
         
            +
              l399:;	  yypos= yypos398; yythunkpos= yythunkpos398;  if (!yy_Newline()) goto l372;
         
     | 
| 
      
 2658 
     | 
    
         
            +
              {  int yypos400= yypos, yythunkpos400= yythunkpos;  if (!yy_BlankLine()) goto l400;  goto l372;
         
     | 
| 
      
 2659 
     | 
    
         
            +
              l400:;	  yypos= yypos400; yythunkpos= yythunkpos400;
         
     | 
| 
       2682 
2660 
     | 
    
         
             
              }
         
     | 
| 
       2683 
2661 
     | 
    
         
             
              }
         
     | 
| 
       2684 
     | 
    
         
            -
               
     | 
| 
      
 2662 
     | 
    
         
            +
              l398:;	
         
     | 
| 
       2685 
2663 
     | 
    
         
             
              }
         
     | 
| 
       2686 
     | 
    
         
            -
               
     | 
| 
       2687 
     | 
    
         
            -
               
     | 
| 
       2688 
     | 
    
         
            -
              }  yyText(yybegin, yyend);  if (!(YY_END)) goto  
     | 
| 
       2689 
     | 
    
         
            -
               
     | 
| 
       2690 
     | 
    
         
            -
              {  int  
     | 
| 
       2691 
     | 
    
         
            -
              {  int  
     | 
| 
       2692 
     | 
    
         
            -
              l407:;	  yypos= yypos407; yythunkpos= yythunkpos407;
         
     | 
| 
       2693 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto l404;
         
     | 
| 
       2694 
     | 
    
         
            -
              l405:;	
         
     | 
| 
       2695 
     | 
    
         
            -
              {  int yypos406= yypos, yythunkpos406= yythunkpos;
         
     | 
| 
       2696 
     | 
    
         
            -
              {  int yypos408= yypos, yythunkpos408= yythunkpos;  if (!yymatchChar('`')) goto l408;  goto l406;
         
     | 
| 
      
 2664 
     | 
    
         
            +
              l387:;	  goto l371;
         
     | 
| 
      
 2665 
     | 
    
         
            +
              l372:;	  yypos= yypos372; yythunkpos= yythunkpos372;
         
     | 
| 
      
 2666 
     | 
    
         
            +
              }  yyText(yybegin, yyend);  if (!(YY_END)) goto l370;  if (!yy_Sp()) goto l370;  if (!yy_Ticks2()) goto l370;  goto l338;
         
     | 
| 
      
 2667 
     | 
    
         
            +
              l370:;	  yypos= yypos338; yythunkpos= yythunkpos338;  if (!yy_Ticks3()) goto l401;  if (!yy_Sp()) goto l401;  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto l401;
         
     | 
| 
      
 2668 
     | 
    
         
            +
              {  int yypos404= yypos, yythunkpos404= yythunkpos;
         
     | 
| 
      
 2669 
     | 
    
         
            +
              {  int yypos408= yypos, yythunkpos408= yythunkpos;  if (!yymatchChar('`')) goto l408;  goto l405;
         
     | 
| 
       2697 
2670 
     | 
    
         
             
              l408:;	  yypos= yypos408; yythunkpos= yythunkpos408;
         
     | 
| 
       2698 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto  
     | 
| 
       2699 
     | 
    
         
            -
              l406:; 
     | 
| 
       2700 
     | 
    
         
            -
               
     | 
| 
       2701 
     | 
    
         
            -
               
     | 
| 
       2702 
     | 
    
         
            -
               
     | 
| 
       2703 
     | 
    
         
            -
               
     | 
| 
       2704 
     | 
    
         
            -
               
     | 
| 
       2705 
     | 
    
         
            -
               
     | 
| 
       2706 
     | 
    
         
            -
               
     | 
| 
       2707 
     | 
    
         
            -
               
     | 
| 
       2708 
     | 
    
         
            -
               
     | 
| 
       2709 
     | 
    
         
            -
               
     | 
| 
       2710 
     | 
    
         
            -
               
     | 
| 
      
 2671 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l405;
         
     | 
| 
      
 2672 
     | 
    
         
            +
              l406:;	
         
     | 
| 
      
 2673 
     | 
    
         
            +
              {  int yypos407= yypos, yythunkpos407= yythunkpos;
         
     | 
| 
      
 2674 
     | 
    
         
            +
              {  int yypos409= yypos, yythunkpos409= yythunkpos;  if (!yymatchChar('`')) goto l409;  goto l407;
         
     | 
| 
      
 2675 
     | 
    
         
            +
              l409:;	  yypos= yypos409; yythunkpos= yythunkpos409;
         
     | 
| 
      
 2676 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l407;  goto l406;
         
     | 
| 
      
 2677 
     | 
    
         
            +
              l407:;	  yypos= yypos407; yythunkpos= yythunkpos407;
         
     | 
| 
      
 2678 
     | 
    
         
            +
              }  goto l404;
         
     | 
| 
      
 2679 
     | 
    
         
            +
              l405:;	  yypos= yypos404; yythunkpos= yythunkpos404;
         
     | 
| 
      
 2680 
     | 
    
         
            +
              {  int yypos411= yypos, yythunkpos411= yythunkpos;  if (!yy_Ticks3()) goto l411;  goto l410;
         
     | 
| 
      
 2681 
     | 
    
         
            +
              l411:;	  yypos= yypos411; yythunkpos= yythunkpos411;
         
     | 
| 
      
 2682 
     | 
    
         
            +
              }  if (!yymatchChar('`')) goto l410;
         
     | 
| 
      
 2683 
     | 
    
         
            +
              l412:;	
         
     | 
| 
      
 2684 
     | 
    
         
            +
              {  int yypos413= yypos, yythunkpos413= yythunkpos;  if (!yymatchChar('`')) goto l413;  goto l412;
         
     | 
| 
       2711 
2685 
     | 
    
         
             
              l413:;	  yypos= yypos413; yythunkpos= yythunkpos413;
         
     | 
| 
      
 2686 
     | 
    
         
            +
              }  goto l404;
         
     | 
| 
      
 2687 
     | 
    
         
            +
              l410:;	  yypos= yypos404; yythunkpos= yythunkpos404;
         
     | 
| 
      
 2688 
     | 
    
         
            +
              {  int yypos414= yypos, yythunkpos414= yythunkpos;  if (!yy_Sp()) goto l414;  if (!yy_Ticks3()) goto l414;  goto l401;
         
     | 
| 
      
 2689 
     | 
    
         
            +
              l414:;	  yypos= yypos414; yythunkpos= yythunkpos414;
         
     | 
| 
       2712 
2690 
     | 
    
         
             
              }
         
     | 
| 
       2713 
     | 
    
         
            -
              {  int  
     | 
| 
       2714 
     | 
    
         
            -
               
     | 
| 
       2715 
     | 
    
         
            -
              {  int  
     | 
| 
       2716 
     | 
    
         
            -
               
     | 
| 
      
 2691 
     | 
    
         
            +
              {  int yypos415= yypos, yythunkpos415= yythunkpos;  if (!yy_Spacechar()) goto l416;  goto l415;
         
     | 
| 
      
 2692 
     | 
    
         
            +
              l416:;	  yypos= yypos415; yythunkpos= yythunkpos415;  if (!yy_Newline()) goto l401;
         
     | 
| 
      
 2693 
     | 
    
         
            +
              {  int yypos417= yypos, yythunkpos417= yythunkpos;  if (!yy_BlankLine()) goto l417;  goto l401;
         
     | 
| 
      
 2694 
     | 
    
         
            +
              l417:;	  yypos= yypos417; yythunkpos= yythunkpos417;
         
     | 
| 
       2717 
2695 
     | 
    
         
             
              }
         
     | 
| 
       2718 
2696 
     | 
    
         
             
              }
         
     | 
| 
       2719 
     | 
    
         
            -
               
     | 
| 
      
 2697 
     | 
    
         
            +
              l415:;	
         
     | 
| 
       2720 
2698 
     | 
    
         
             
              }
         
     | 
| 
       2721 
     | 
    
         
            -
               
     | 
| 
       2722 
     | 
    
         
            -
               
     | 
| 
       2723 
     | 
    
         
            -
              {  int  
     | 
| 
       2724 
     | 
    
         
            -
              {  int  
     | 
| 
       2725 
     | 
    
         
            -
              {  int  
     | 
| 
       2726 
     | 
    
         
            -
              l421:;	  yypos= yypos421; yythunkpos= yythunkpos421;
         
     | 
| 
       2727 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto l418;
         
     | 
| 
       2728 
     | 
    
         
            -
              l419:;	
         
     | 
| 
       2729 
     | 
    
         
            -
              {  int yypos420= yypos, yythunkpos420= yythunkpos;
         
     | 
| 
       2730 
     | 
    
         
            -
              {  int yypos422= yypos, yythunkpos422= yythunkpos;  if (!yymatchChar('`')) goto l422;  goto l420;
         
     | 
| 
      
 2699 
     | 
    
         
            +
              l404:;	
         
     | 
| 
      
 2700 
     | 
    
         
            +
              l402:;	
         
     | 
| 
      
 2701 
     | 
    
         
            +
              {  int yypos403= yypos, yythunkpos403= yythunkpos;
         
     | 
| 
      
 2702 
     | 
    
         
            +
              {  int yypos418= yypos, yythunkpos418= yythunkpos;
         
     | 
| 
      
 2703 
     | 
    
         
            +
              {  int yypos422= yypos, yythunkpos422= yythunkpos;  if (!yymatchChar('`')) goto l422;  goto l419;
         
     | 
| 
       2731 
2704 
     | 
    
         
             
              l422:;	  yypos= yypos422; yythunkpos= yythunkpos422;
         
     | 
| 
       2732 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto  
     | 
| 
       2733 
     | 
    
         
            -
              l420:; 
     | 
| 
       2734 
     | 
    
         
            -
               
     | 
| 
       2735 
     | 
    
         
            -
               
     | 
| 
       2736 
     | 
    
         
            -
               
     | 
| 
       2737 
     | 
    
         
            -
               
     | 
| 
       2738 
     | 
    
         
            -
               
     | 
| 
       2739 
     | 
    
         
            -
               
     | 
| 
       2740 
     | 
    
         
            -
               
     | 
| 
       2741 
     | 
    
         
            -
               
     | 
| 
       2742 
     | 
    
         
            -
               
     | 
| 
       2743 
     | 
    
         
            -
               
     | 
| 
       2744 
     | 
    
         
            -
               
     | 
| 
      
 2705 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l419;
         
     | 
| 
      
 2706 
     | 
    
         
            +
              l420:;	
         
     | 
| 
      
 2707 
     | 
    
         
            +
              {  int yypos421= yypos, yythunkpos421= yythunkpos;
         
     | 
| 
      
 2708 
     | 
    
         
            +
              {  int yypos423= yypos, yythunkpos423= yythunkpos;  if (!yymatchChar('`')) goto l423;  goto l421;
         
     | 
| 
      
 2709 
     | 
    
         
            +
              l423:;	  yypos= yypos423; yythunkpos= yythunkpos423;
         
     | 
| 
      
 2710 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l421;  goto l420;
         
     | 
| 
      
 2711 
     | 
    
         
            +
              l421:;	  yypos= yypos421; yythunkpos= yythunkpos421;
         
     | 
| 
      
 2712 
     | 
    
         
            +
              }  goto l418;
         
     | 
| 
      
 2713 
     | 
    
         
            +
              l419:;	  yypos= yypos418; yythunkpos= yythunkpos418;
         
     | 
| 
      
 2714 
     | 
    
         
            +
              {  int yypos425= yypos, yythunkpos425= yythunkpos;  if (!yy_Ticks3()) goto l425;  goto l424;
         
     | 
| 
      
 2715 
     | 
    
         
            +
              l425:;	  yypos= yypos425; yythunkpos= yythunkpos425;
         
     | 
| 
      
 2716 
     | 
    
         
            +
              }  if (!yymatchChar('`')) goto l424;
         
     | 
| 
      
 2717 
     | 
    
         
            +
              l426:;	
         
     | 
| 
      
 2718 
     | 
    
         
            +
              {  int yypos427= yypos, yythunkpos427= yythunkpos;  if (!yymatchChar('`')) goto l427;  goto l426;
         
     | 
| 
       2745 
2719 
     | 
    
         
             
              l427:;	  yypos= yypos427; yythunkpos= yythunkpos427;
         
     | 
| 
      
 2720 
     | 
    
         
            +
              }  goto l418;
         
     | 
| 
      
 2721 
     | 
    
         
            +
              l424:;	  yypos= yypos418; yythunkpos= yythunkpos418;
         
     | 
| 
      
 2722 
     | 
    
         
            +
              {  int yypos428= yypos, yythunkpos428= yythunkpos;  if (!yy_Sp()) goto l428;  if (!yy_Ticks3()) goto l428;  goto l403;
         
     | 
| 
      
 2723 
     | 
    
         
            +
              l428:;	  yypos= yypos428; yythunkpos= yythunkpos428;
         
     | 
| 
       2746 
2724 
     | 
    
         
             
              }
         
     | 
| 
       2747 
     | 
    
         
            -
              {  int  
     | 
| 
       2748 
     | 
    
         
            -
               
     | 
| 
       2749 
     | 
    
         
            -
              {  int  
     | 
| 
       2750 
     | 
    
         
            -
               
     | 
| 
      
 2725 
     | 
    
         
            +
              {  int yypos429= yypos, yythunkpos429= yythunkpos;  if (!yy_Spacechar()) goto l430;  goto l429;
         
     | 
| 
      
 2726 
     | 
    
         
            +
              l430:;	  yypos= yypos429; yythunkpos= yythunkpos429;  if (!yy_Newline()) goto l403;
         
     | 
| 
      
 2727 
     | 
    
         
            +
              {  int yypos431= yypos, yythunkpos431= yythunkpos;  if (!yy_BlankLine()) goto l431;  goto l403;
         
     | 
| 
      
 2728 
     | 
    
         
            +
              l431:;	  yypos= yypos431; yythunkpos= yythunkpos431;
         
     | 
| 
       2751 
2729 
     | 
    
         
             
              }
         
     | 
| 
       2752 
2730 
     | 
    
         
             
              }
         
     | 
| 
       2753 
     | 
    
         
            -
               
     | 
| 
      
 2731 
     | 
    
         
            +
              l429:;	
         
     | 
| 
       2754 
2732 
     | 
    
         
             
              }
         
     | 
| 
       2755 
     | 
    
         
            -
               
     | 
| 
       2756 
     | 
    
         
            -
               
     | 
| 
       2757 
     | 
    
         
            -
              }  yyText(yybegin, yyend);  if (!(YY_END)) goto  
     | 
| 
       2758 
     | 
    
         
            -
               
     | 
| 
       2759 
     | 
    
         
            -
              {  int  
     | 
| 
       2760 
     | 
    
         
            -
              {  int  
     | 
| 
       2761 
     | 
    
         
            -
              l438:;	  yypos= yypos438; yythunkpos= yythunkpos438;
         
     | 
| 
       2762 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto l435;
         
     | 
| 
       2763 
     | 
    
         
            -
              l436:;	
         
     | 
| 
       2764 
     | 
    
         
            -
              {  int yypos437= yypos, yythunkpos437= yythunkpos;
         
     | 
| 
       2765 
     | 
    
         
            -
              {  int yypos439= yypos, yythunkpos439= yythunkpos;  if (!yymatchChar('`')) goto l439;  goto l437;
         
     | 
| 
      
 2733 
     | 
    
         
            +
              l418:;	  goto l402;
         
     | 
| 
      
 2734 
     | 
    
         
            +
              l403:;	  yypos= yypos403; yythunkpos= yythunkpos403;
         
     | 
| 
      
 2735 
     | 
    
         
            +
              }  yyText(yybegin, yyend);  if (!(YY_END)) goto l401;  if (!yy_Sp()) goto l401;  if (!yy_Ticks3()) goto l401;  goto l338;
         
     | 
| 
      
 2736 
     | 
    
         
            +
              l401:;	  yypos= yypos338; yythunkpos= yythunkpos338;  if (!yy_Ticks4()) goto l432;  if (!yy_Sp()) goto l432;  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto l432;
         
     | 
| 
      
 2737 
     | 
    
         
            +
              {  int yypos435= yypos, yythunkpos435= yythunkpos;
         
     | 
| 
      
 2738 
     | 
    
         
            +
              {  int yypos439= yypos, yythunkpos439= yythunkpos;  if (!yymatchChar('`')) goto l439;  goto l436;
         
     | 
| 
       2766 
2739 
     | 
    
         
             
              l439:;	  yypos= yypos439; yythunkpos= yythunkpos439;
         
     | 
| 
       2767 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto  
     | 
| 
       2768 
     | 
    
         
            -
              l437:; 
     | 
| 
       2769 
     | 
    
         
            -
               
     | 
| 
       2770 
     | 
    
         
            -
               
     | 
| 
       2771 
     | 
    
         
            -
               
     | 
| 
       2772 
     | 
    
         
            -
               
     | 
| 
       2773 
     | 
    
         
            -
               
     | 
| 
       2774 
     | 
    
         
            -
               
     | 
| 
       2775 
     | 
    
         
            -
               
     | 
| 
       2776 
     | 
    
         
            -
               
     | 
| 
       2777 
     | 
    
         
            -
               
     | 
| 
       2778 
     | 
    
         
            -
               
     | 
| 
       2779 
     | 
    
         
            -
               
     | 
| 
      
 2740 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l436;
         
     | 
| 
      
 2741 
     | 
    
         
            +
              l437:;	
         
     | 
| 
      
 2742 
     | 
    
         
            +
              {  int yypos438= yypos, yythunkpos438= yythunkpos;
         
     | 
| 
      
 2743 
     | 
    
         
            +
              {  int yypos440= yypos, yythunkpos440= yythunkpos;  if (!yymatchChar('`')) goto l440;  goto l438;
         
     | 
| 
      
 2744 
     | 
    
         
            +
              l440:;	  yypos= yypos440; yythunkpos= yythunkpos440;
         
     | 
| 
      
 2745 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l438;  goto l437;
         
     | 
| 
      
 2746 
     | 
    
         
            +
              l438:;	  yypos= yypos438; yythunkpos= yythunkpos438;
         
     | 
| 
      
 2747 
     | 
    
         
            +
              }  goto l435;
         
     | 
| 
      
 2748 
     | 
    
         
            +
              l436:;	  yypos= yypos435; yythunkpos= yythunkpos435;
         
     | 
| 
      
 2749 
     | 
    
         
            +
              {  int yypos442= yypos, yythunkpos442= yythunkpos;  if (!yy_Ticks4()) goto l442;  goto l441;
         
     | 
| 
      
 2750 
     | 
    
         
            +
              l442:;	  yypos= yypos442; yythunkpos= yythunkpos442;
         
     | 
| 
      
 2751 
     | 
    
         
            +
              }  if (!yymatchChar('`')) goto l441;
         
     | 
| 
      
 2752 
     | 
    
         
            +
              l443:;	
         
     | 
| 
      
 2753 
     | 
    
         
            +
              {  int yypos444= yypos, yythunkpos444= yythunkpos;  if (!yymatchChar('`')) goto l444;  goto l443;
         
     | 
| 
       2780 
2754 
     | 
    
         
             
              l444:;	  yypos= yypos444; yythunkpos= yythunkpos444;
         
     | 
| 
      
 2755 
     | 
    
         
            +
              }  goto l435;
         
     | 
| 
      
 2756 
     | 
    
         
            +
              l441:;	  yypos= yypos435; yythunkpos= yythunkpos435;
         
     | 
| 
      
 2757 
     | 
    
         
            +
              {  int yypos445= yypos, yythunkpos445= yythunkpos;  if (!yy_Sp()) goto l445;  if (!yy_Ticks4()) goto l445;  goto l432;
         
     | 
| 
      
 2758 
     | 
    
         
            +
              l445:;	  yypos= yypos445; yythunkpos= yythunkpos445;
         
     | 
| 
       2781 
2759 
     | 
    
         
             
              }
         
     | 
| 
       2782 
     | 
    
         
            -
              {  int  
     | 
| 
       2783 
     | 
    
         
            -
               
     | 
| 
       2784 
     | 
    
         
            -
              {  int  
     | 
| 
       2785 
     | 
    
         
            -
               
     | 
| 
      
 2760 
     | 
    
         
            +
              {  int yypos446= yypos, yythunkpos446= yythunkpos;  if (!yy_Spacechar()) goto l447;  goto l446;
         
     | 
| 
      
 2761 
     | 
    
         
            +
              l447:;	  yypos= yypos446; yythunkpos= yythunkpos446;  if (!yy_Newline()) goto l432;
         
     | 
| 
      
 2762 
     | 
    
         
            +
              {  int yypos448= yypos, yythunkpos448= yythunkpos;  if (!yy_BlankLine()) goto l448;  goto l432;
         
     | 
| 
      
 2763 
     | 
    
         
            +
              l448:;	  yypos= yypos448; yythunkpos= yythunkpos448;
         
     | 
| 
       2786 
2764 
     | 
    
         
             
              }
         
     | 
| 
       2787 
2765 
     | 
    
         
             
              }
         
     | 
| 
       2788 
     | 
    
         
            -
               
     | 
| 
      
 2766 
     | 
    
         
            +
              l446:;	
         
     | 
| 
       2789 
2767 
     | 
    
         
             
              }
         
     | 
| 
       2790 
     | 
    
         
            -
               
     | 
| 
       2791 
     | 
    
         
            -
               
     | 
| 
       2792 
     | 
    
         
            -
              {  int  
     | 
| 
       2793 
     | 
    
         
            -
              {  int  
     | 
| 
       2794 
     | 
    
         
            -
              {  int  
     | 
| 
       2795 
     | 
    
         
            -
              l452:;	  yypos= yypos452; yythunkpos= yythunkpos452;
         
     | 
| 
       2796 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto l449;
         
     | 
| 
       2797 
     | 
    
         
            -
              l450:;	
         
     | 
| 
       2798 
     | 
    
         
            -
              {  int yypos451= yypos, yythunkpos451= yythunkpos;
         
     | 
| 
       2799 
     | 
    
         
            -
              {  int yypos453= yypos, yythunkpos453= yythunkpos;  if (!yymatchChar('`')) goto l453;  goto l451;
         
     | 
| 
      
 2768 
     | 
    
         
            +
              l435:;	
         
     | 
| 
      
 2769 
     | 
    
         
            +
              l433:;	
         
     | 
| 
      
 2770 
     | 
    
         
            +
              {  int yypos434= yypos, yythunkpos434= yythunkpos;
         
     | 
| 
      
 2771 
     | 
    
         
            +
              {  int yypos449= yypos, yythunkpos449= yythunkpos;
         
     | 
| 
      
 2772 
     | 
    
         
            +
              {  int yypos453= yypos, yythunkpos453= yythunkpos;  if (!yymatchChar('`')) goto l453;  goto l450;
         
     | 
| 
       2800 
2773 
     | 
    
         
             
              l453:;	  yypos= yypos453; yythunkpos= yythunkpos453;
         
     | 
| 
       2801 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto  
     | 
| 
       2802 
     | 
    
         
            -
              l451:; 
     | 
| 
       2803 
     | 
    
         
            -
               
     | 
| 
       2804 
     | 
    
         
            -
               
     | 
| 
       2805 
     | 
    
         
            -
               
     | 
| 
       2806 
     | 
    
         
            -
               
     | 
| 
       2807 
     | 
    
         
            -
               
     | 
| 
       2808 
     | 
    
         
            -
               
     | 
| 
       2809 
     | 
    
         
            -
               
     | 
| 
       2810 
     | 
    
         
            -
               
     | 
| 
       2811 
     | 
    
         
            -
               
     | 
| 
       2812 
     | 
    
         
            -
               
     | 
| 
       2813 
     | 
    
         
            -
               
     | 
| 
      
 2774 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l450;
         
     | 
| 
      
 2775 
     | 
    
         
            +
              l451:;	
         
     | 
| 
      
 2776 
     | 
    
         
            +
              {  int yypos452= yypos, yythunkpos452= yythunkpos;
         
     | 
| 
      
 2777 
     | 
    
         
            +
              {  int yypos454= yypos, yythunkpos454= yythunkpos;  if (!yymatchChar('`')) goto l454;  goto l452;
         
     | 
| 
      
 2778 
     | 
    
         
            +
              l454:;	  yypos= yypos454; yythunkpos= yythunkpos454;
         
     | 
| 
      
 2779 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l452;  goto l451;
         
     | 
| 
      
 2780 
     | 
    
         
            +
              l452:;	  yypos= yypos452; yythunkpos= yythunkpos452;
         
     | 
| 
      
 2781 
     | 
    
         
            +
              }  goto l449;
         
     | 
| 
      
 2782 
     | 
    
         
            +
              l450:;	  yypos= yypos449; yythunkpos= yythunkpos449;
         
     | 
| 
      
 2783 
     | 
    
         
            +
              {  int yypos456= yypos, yythunkpos456= yythunkpos;  if (!yy_Ticks4()) goto l456;  goto l455;
         
     | 
| 
      
 2784 
     | 
    
         
            +
              l456:;	  yypos= yypos456; yythunkpos= yythunkpos456;
         
     | 
| 
      
 2785 
     | 
    
         
            +
              }  if (!yymatchChar('`')) goto l455;
         
     | 
| 
      
 2786 
     | 
    
         
            +
              l457:;	
         
     | 
| 
      
 2787 
     | 
    
         
            +
              {  int yypos458= yypos, yythunkpos458= yythunkpos;  if (!yymatchChar('`')) goto l458;  goto l457;
         
     | 
| 
       2814 
2788 
     | 
    
         
             
              l458:;	  yypos= yypos458; yythunkpos= yythunkpos458;
         
     | 
| 
      
 2789 
     | 
    
         
            +
              }  goto l449;
         
     | 
| 
      
 2790 
     | 
    
         
            +
              l455:;	  yypos= yypos449; yythunkpos= yythunkpos449;
         
     | 
| 
      
 2791 
     | 
    
         
            +
              {  int yypos459= yypos, yythunkpos459= yythunkpos;  if (!yy_Sp()) goto l459;  if (!yy_Ticks4()) goto l459;  goto l434;
         
     | 
| 
      
 2792 
     | 
    
         
            +
              l459:;	  yypos= yypos459; yythunkpos= yythunkpos459;
         
     | 
| 
       2815 
2793 
     | 
    
         
             
              }
         
     | 
| 
       2816 
     | 
    
         
            -
              {  int  
     | 
| 
       2817 
     | 
    
         
            -
               
     | 
| 
       2818 
     | 
    
         
            -
              {  int  
     | 
| 
       2819 
     | 
    
         
            -
               
     | 
| 
      
 2794 
     | 
    
         
            +
              {  int yypos460= yypos, yythunkpos460= yythunkpos;  if (!yy_Spacechar()) goto l461;  goto l460;
         
     | 
| 
      
 2795 
     | 
    
         
            +
              l461:;	  yypos= yypos460; yythunkpos= yythunkpos460;  if (!yy_Newline()) goto l434;
         
     | 
| 
      
 2796 
     | 
    
         
            +
              {  int yypos462= yypos, yythunkpos462= yythunkpos;  if (!yy_BlankLine()) goto l462;  goto l434;
         
     | 
| 
      
 2797 
     | 
    
         
            +
              l462:;	  yypos= yypos462; yythunkpos= yythunkpos462;
         
     | 
| 
       2820 
2798 
     | 
    
         
             
              }
         
     | 
| 
       2821 
2799 
     | 
    
         
             
              }
         
     | 
| 
       2822 
     | 
    
         
            -
               
     | 
| 
      
 2800 
     | 
    
         
            +
              l460:;	
         
     | 
| 
       2823 
2801 
     | 
    
         
             
              }
         
     | 
| 
       2824 
     | 
    
         
            -
               
     | 
| 
       2825 
     | 
    
         
            -
               
     | 
| 
       2826 
     | 
    
         
            -
              }  yyText(yybegin, yyend);  if (!(YY_END)) goto  
     | 
| 
       2827 
     | 
    
         
            -
               
     | 
| 
       2828 
     | 
    
         
            -
              {  int  
     | 
| 
       2829 
     | 
    
         
            -
              {  int  
     | 
| 
       2830 
     | 
    
         
            -
              l468:;	  yypos= yypos468; yythunkpos= yythunkpos468;
         
     | 
| 
       2831 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto l465;
         
     | 
| 
       2832 
     | 
    
         
            -
              l466:;	
         
     | 
| 
       2833 
     | 
    
         
            -
              {  int yypos467= yypos, yythunkpos467= yythunkpos;
         
     | 
| 
       2834 
     | 
    
         
            -
              {  int yypos469= yypos, yythunkpos469= yythunkpos;  if (!yymatchChar('`')) goto l469;  goto l467;
         
     | 
| 
      
 2802 
     | 
    
         
            +
              l449:;	  goto l433;
         
     | 
| 
      
 2803 
     | 
    
         
            +
              l434:;	  yypos= yypos434; yythunkpos= yythunkpos434;
         
     | 
| 
      
 2804 
     | 
    
         
            +
              }  yyText(yybegin, yyend);  if (!(YY_END)) goto l432;  if (!yy_Sp()) goto l432;  if (!yy_Ticks4()) goto l432;  goto l338;
         
     | 
| 
      
 2805 
     | 
    
         
            +
              l432:;	  yypos= yypos338; yythunkpos= yythunkpos338;  if (!yy_Ticks5()) goto l337;  if (!yy_Sp()) goto l337;  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto l337;
         
     | 
| 
      
 2806 
     | 
    
         
            +
              {  int yypos465= yypos, yythunkpos465= yythunkpos;
         
     | 
| 
      
 2807 
     | 
    
         
            +
              {  int yypos469= yypos, yythunkpos469= yythunkpos;  if (!yymatchChar('`')) goto l469;  goto l466;
         
     | 
| 
       2835 
2808 
     | 
    
         
             
              l469:;	  yypos= yypos469; yythunkpos= yythunkpos469;
         
     | 
| 
       2836 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto  
     | 
| 
       2837 
     | 
    
         
            -
              l467:; 
     | 
| 
       2838 
     | 
    
         
            -
               
     | 
| 
       2839 
     | 
    
         
            -
               
     | 
| 
       2840 
     | 
    
         
            -
               
     | 
| 
       2841 
     | 
    
         
            -
               
     | 
| 
       2842 
     | 
    
         
            -
               
     | 
| 
       2843 
     | 
    
         
            -
               
     | 
| 
       2844 
     | 
    
         
            -
               
     | 
| 
       2845 
     | 
    
         
            -
               
     | 
| 
       2846 
     | 
    
         
            -
               
     | 
| 
       2847 
     | 
    
         
            -
               
     | 
| 
       2848 
     | 
    
         
            -
               
     | 
| 
      
 2809 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l466;
         
     | 
| 
      
 2810 
     | 
    
         
            +
              l467:;	
         
     | 
| 
      
 2811 
     | 
    
         
            +
              {  int yypos468= yypos, yythunkpos468= yythunkpos;
         
     | 
| 
      
 2812 
     | 
    
         
            +
              {  int yypos470= yypos, yythunkpos470= yythunkpos;  if (!yymatchChar('`')) goto l470;  goto l468;
         
     | 
| 
      
 2813 
     | 
    
         
            +
              l470:;	  yypos= yypos470; yythunkpos= yythunkpos470;
         
     | 
| 
      
 2814 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l468;  goto l467;
         
     | 
| 
      
 2815 
     | 
    
         
            +
              l468:;	  yypos= yypos468; yythunkpos= yythunkpos468;
         
     | 
| 
      
 2816 
     | 
    
         
            +
              }  goto l465;
         
     | 
| 
      
 2817 
     | 
    
         
            +
              l466:;	  yypos= yypos465; yythunkpos= yythunkpos465;
         
     | 
| 
      
 2818 
     | 
    
         
            +
              {  int yypos472= yypos, yythunkpos472= yythunkpos;  if (!yy_Ticks5()) goto l472;  goto l471;
         
     | 
| 
      
 2819 
     | 
    
         
            +
              l472:;	  yypos= yypos472; yythunkpos= yythunkpos472;
         
     | 
| 
      
 2820 
     | 
    
         
            +
              }  if (!yymatchChar('`')) goto l471;
         
     | 
| 
      
 2821 
     | 
    
         
            +
              l473:;	
         
     | 
| 
      
 2822 
     | 
    
         
            +
              {  int yypos474= yypos, yythunkpos474= yythunkpos;  if (!yymatchChar('`')) goto l474;  goto l473;
         
     | 
| 
       2849 
2823 
     | 
    
         
             
              l474:;	  yypos= yypos474; yythunkpos= yythunkpos474;
         
     | 
| 
      
 2824 
     | 
    
         
            +
              }  goto l465;
         
     | 
| 
      
 2825 
     | 
    
         
            +
              l471:;	  yypos= yypos465; yythunkpos= yythunkpos465;
         
     | 
| 
      
 2826 
     | 
    
         
            +
              {  int yypos475= yypos, yythunkpos475= yythunkpos;  if (!yy_Sp()) goto l475;  if (!yy_Ticks5()) goto l475;  goto l337;
         
     | 
| 
      
 2827 
     | 
    
         
            +
              l475:;	  yypos= yypos475; yythunkpos= yythunkpos475;
         
     | 
| 
       2850 
2828 
     | 
    
         
             
              }
         
     | 
| 
       2851 
     | 
    
         
            -
              {  int  
     | 
| 
       2852 
     | 
    
         
            -
               
     | 
| 
       2853 
     | 
    
         
            -
              {  int  
     | 
| 
       2854 
     | 
    
         
            -
               
     | 
| 
      
 2829 
     | 
    
         
            +
              {  int yypos476= yypos, yythunkpos476= yythunkpos;  if (!yy_Spacechar()) goto l477;  goto l476;
         
     | 
| 
      
 2830 
     | 
    
         
            +
              l477:;	  yypos= yypos476; yythunkpos= yythunkpos476;  if (!yy_Newline()) goto l337;
         
     | 
| 
      
 2831 
     | 
    
         
            +
              {  int yypos478= yypos, yythunkpos478= yythunkpos;  if (!yy_BlankLine()) goto l478;  goto l337;
         
     | 
| 
      
 2832 
     | 
    
         
            +
              l478:;	  yypos= yypos478; yythunkpos= yythunkpos478;
         
     | 
| 
       2855 
2833 
     | 
    
         
             
              }
         
     | 
| 
       2856 
2834 
     | 
    
         
             
              }
         
     | 
| 
       2857 
     | 
    
         
            -
               
     | 
| 
      
 2835 
     | 
    
         
            +
              l476:;	
         
     | 
| 
       2858 
2836 
     | 
    
         
             
              }
         
     | 
| 
       2859 
     | 
    
         
            -
               
     | 
| 
       2860 
     | 
    
         
            -
               
     | 
| 
       2861 
     | 
    
         
            -
              {  int  
     | 
| 
       2862 
     | 
    
         
            -
              {  int  
     | 
| 
       2863 
     | 
    
         
            -
              {  int  
     | 
| 
       2864 
     | 
    
         
            -
              l482:;	  yypos= yypos482; yythunkpos= yythunkpos482;
         
     | 
| 
       2865 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto l479;
         
     | 
| 
       2866 
     | 
    
         
            -
              l480:;	
         
     | 
| 
       2867 
     | 
    
         
            -
              {  int yypos481= yypos, yythunkpos481= yythunkpos;
         
     | 
| 
       2868 
     | 
    
         
            -
              {  int yypos483= yypos, yythunkpos483= yythunkpos;  if (!yymatchChar('`')) goto l483;  goto l481;
         
     | 
| 
      
 2837 
     | 
    
         
            +
              l465:;	
         
     | 
| 
      
 2838 
     | 
    
         
            +
              l463:;	
         
     | 
| 
      
 2839 
     | 
    
         
            +
              {  int yypos464= yypos, yythunkpos464= yythunkpos;
         
     | 
| 
      
 2840 
     | 
    
         
            +
              {  int yypos479= yypos, yythunkpos479= yythunkpos;
         
     | 
| 
      
 2841 
     | 
    
         
            +
              {  int yypos483= yypos, yythunkpos483= yythunkpos;  if (!yymatchChar('`')) goto l483;  goto l480;
         
     | 
| 
       2869 
2842 
     | 
    
         
             
              l483:;	  yypos= yypos483; yythunkpos= yythunkpos483;
         
     | 
| 
       2870 
     | 
    
         
            -
              }  if (!yy_Nonspacechar()) goto  
     | 
| 
       2871 
     | 
    
         
            -
              l481:; 
     | 
| 
       2872 
     | 
    
         
            -
               
     | 
| 
       2873 
     | 
    
         
            -
               
     | 
| 
       2874 
     | 
    
         
            -
               
     | 
| 
       2875 
     | 
    
         
            -
               
     | 
| 
       2876 
     | 
    
         
            -
               
     | 
| 
       2877 
     | 
    
         
            -
               
     | 
| 
       2878 
     | 
    
         
            -
               
     | 
| 
       2879 
     | 
    
         
            -
               
     | 
| 
       2880 
     | 
    
         
            -
               
     | 
| 
       2881 
     | 
    
         
            -
               
     | 
| 
       2882 
     | 
    
         
            -
               
     | 
| 
      
 2843 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l480;
         
     | 
| 
      
 2844 
     | 
    
         
            +
              l481:;	
         
     | 
| 
      
 2845 
     | 
    
         
            +
              {  int yypos482= yypos, yythunkpos482= yythunkpos;
         
     | 
| 
      
 2846 
     | 
    
         
            +
              {  int yypos484= yypos, yythunkpos484= yythunkpos;  if (!yymatchChar('`')) goto l484;  goto l482;
         
     | 
| 
      
 2847 
     | 
    
         
            +
              l484:;	  yypos= yypos484; yythunkpos= yythunkpos484;
         
     | 
| 
      
 2848 
     | 
    
         
            +
              }  if (!yy_Nonspacechar()) goto l482;  goto l481;
         
     | 
| 
      
 2849 
     | 
    
         
            +
              l482:;	  yypos= yypos482; yythunkpos= yythunkpos482;
         
     | 
| 
      
 2850 
     | 
    
         
            +
              }  goto l479;
         
     | 
| 
      
 2851 
     | 
    
         
            +
              l480:;	  yypos= yypos479; yythunkpos= yythunkpos479;
         
     | 
| 
      
 2852 
     | 
    
         
            +
              {  int yypos486= yypos, yythunkpos486= yythunkpos;  if (!yy_Ticks5()) goto l486;  goto l485;
         
     | 
| 
      
 2853 
     | 
    
         
            +
              l486:;	  yypos= yypos486; yythunkpos= yythunkpos486;
         
     | 
| 
      
 2854 
     | 
    
         
            +
              }  if (!yymatchChar('`')) goto l485;
         
     | 
| 
      
 2855 
     | 
    
         
            +
              l487:;	
         
     | 
| 
      
 2856 
     | 
    
         
            +
              {  int yypos488= yypos, yythunkpos488= yythunkpos;  if (!yymatchChar('`')) goto l488;  goto l487;
         
     | 
| 
       2883 
2857 
     | 
    
         
             
              l488:;	  yypos= yypos488; yythunkpos= yythunkpos488;
         
     | 
| 
      
 2858 
     | 
    
         
            +
              }  goto l479;
         
     | 
| 
      
 2859 
     | 
    
         
            +
              l485:;	  yypos= yypos479; yythunkpos= yythunkpos479;
         
     | 
| 
      
 2860 
     | 
    
         
            +
              {  int yypos489= yypos, yythunkpos489= yythunkpos;  if (!yy_Sp()) goto l489;  if (!yy_Ticks5()) goto l489;  goto l464;
         
     | 
| 
      
 2861 
     | 
    
         
            +
              l489:;	  yypos= yypos489; yythunkpos= yythunkpos489;
         
     | 
| 
       2884 
2862 
     | 
    
         
             
              }
         
     | 
| 
       2885 
     | 
    
         
            -
              {  int  
     | 
| 
       2886 
     | 
    
         
            -
               
     | 
| 
       2887 
     | 
    
         
            -
              {  int  
     | 
| 
       2888 
     | 
    
         
            -
               
     | 
| 
      
 2863 
     | 
    
         
            +
              {  int yypos490= yypos, yythunkpos490= yythunkpos;  if (!yy_Spacechar()) goto l491;  goto l490;
         
     | 
| 
      
 2864 
     | 
    
         
            +
              l491:;	  yypos= yypos490; yythunkpos= yythunkpos490;  if (!yy_Newline()) goto l464;
         
     | 
| 
      
 2865 
     | 
    
         
            +
              {  int yypos492= yypos, yythunkpos492= yythunkpos;  if (!yy_BlankLine()) goto l492;  goto l464;
         
     | 
| 
      
 2866 
     | 
    
         
            +
              l492:;	  yypos= yypos492; yythunkpos= yythunkpos492;
         
     | 
| 
       2889 
2867 
     | 
    
         
             
              }
         
     | 
| 
       2890 
2868 
     | 
    
         
             
              }
         
     | 
| 
       2891 
     | 
    
         
            -
               
     | 
| 
      
 2869 
     | 
    
         
            +
              l490:;	
         
     | 
| 
       2892 
2870 
     | 
    
         
             
              }
         
     | 
| 
       2893 
     | 
    
         
            -
               
     | 
| 
       2894 
     | 
    
         
            -
               
     | 
| 
       2895 
     | 
    
         
            -
              }  yyText(yybegin, yyend);  if (!(YY_END)) goto  
     | 
| 
      
 2871 
     | 
    
         
            +
              l479:;	  goto l463;
         
     | 
| 
      
 2872 
     | 
    
         
            +
              l464:;	  yypos= yypos464; yythunkpos= yythunkpos464;
         
     | 
| 
      
 2873 
     | 
    
         
            +
              }  yyText(yybegin, yyend);  if (!(YY_END)) goto l337;  if (!yy_Sp()) goto l337;  if (!yy_Ticks5()) goto l337;
         
     | 
| 
       2896 
2874 
     | 
    
         
             
              }
         
     | 
| 
       2897 
     | 
    
         
            -
               
     | 
| 
      
 2875 
     | 
    
         
            +
              l338:;	  yyDo(yy_1_Code, yybegin, yyend);
         
     | 
| 
       2898 
2876 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Code", yybuf+yypos));
         
     | 
| 
       2899 
2877 
     | 
    
         
             
              return 1;
         
     | 
| 
       2900 
     | 
    
         
            -
               
     | 
| 
      
 2878 
     | 
    
         
            +
              l337:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2901 
2879 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Code", yybuf+yypos));
         
     | 
| 
       2902 
2880 
     | 
    
         
             
              return 0;
         
     | 
| 
       2903 
2881 
     | 
    
         
             
            }
         
     | 
| 
       2904 
2882 
     | 
    
         
             
            YY_RULE(int) yy_InlineNote()
         
     | 
| 
       2905 
2883 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 1, 0);
         
     | 
| 
       2906 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "InlineNote"));  yyText(yybegin, yyend);  if (!( extension(EXT_NOTES) )) goto  
     | 
| 
       2907 
     | 
    
         
            -
              {  int  
     | 
| 
       2908 
     | 
    
         
            -
              l495:;	  yypos= yypos495; yythunkpos= yythunkpos495;
         
     | 
| 
       2909 
     | 
    
         
            -
              }  if (!yy_Inline()) goto l492;  yyDo(yy_1_InlineNote, yybegin, yyend);
         
     | 
| 
       2910 
     | 
    
         
            -
              l493:;	
         
     | 
| 
       2911 
     | 
    
         
            -
              {  int yypos494= yypos, yythunkpos494= yythunkpos;
         
     | 
| 
       2912 
     | 
    
         
            -
              {  int yypos496= yypos, yythunkpos496= yythunkpos;  if (!yymatchChar(']')) goto l496;  goto l494;
         
     | 
| 
      
 2884 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "InlineNote"));  yyText(yybegin, yyend);  if (!( extension(EXT_NOTES) )) goto l493;  if (!yymatchString("^[")) goto l493;  if (!yy_StartList()) goto l493;  yyDo(yySet, -1, 0);
         
     | 
| 
      
 2885 
     | 
    
         
            +
              {  int yypos496= yypos, yythunkpos496= yythunkpos;  if (!yymatchChar(']')) goto l496;  goto l493;
         
     | 
| 
       2913 
2886 
     | 
    
         
             
              l496:;	  yypos= yypos496; yythunkpos= yythunkpos496;
         
     | 
| 
       2914 
     | 
    
         
            -
              }  if (!yy_Inline()) goto  
     | 
| 
       2915 
     | 
    
         
            -
              l494:; 
     | 
| 
       2916 
     | 
    
         
            -
               
     | 
| 
      
 2887 
     | 
    
         
            +
              }  if (!yy_Inline()) goto l493;  yyDo(yy_1_InlineNote, yybegin, yyend);
         
     | 
| 
      
 2888 
     | 
    
         
            +
              l494:;	
         
     | 
| 
      
 2889 
     | 
    
         
            +
              {  int yypos495= yypos, yythunkpos495= yythunkpos;
         
     | 
| 
      
 2890 
     | 
    
         
            +
              {  int yypos497= yypos, yythunkpos497= yythunkpos;  if (!yymatchChar(']')) goto l497;  goto l495;
         
     | 
| 
      
 2891 
     | 
    
         
            +
              l497:;	  yypos= yypos497; yythunkpos= yythunkpos497;
         
     | 
| 
      
 2892 
     | 
    
         
            +
              }  if (!yy_Inline()) goto l495;  yyDo(yy_1_InlineNote, yybegin, yyend);  goto l494;
         
     | 
| 
      
 2893 
     | 
    
         
            +
              l495:;	  yypos= yypos495; yythunkpos= yythunkpos495;
         
     | 
| 
      
 2894 
     | 
    
         
            +
              }  if (!yymatchChar(']')) goto l493;  yyDo(yy_2_InlineNote, yybegin, yyend);
         
     | 
| 
       2917 
2895 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "InlineNote", yybuf+yypos));  yyDo(yyPop, 1, 0);
         
     | 
| 
       2918 
2896 
     | 
    
         
             
              return 1;
         
     | 
| 
       2919 
     | 
    
         
            -
               
     | 
| 
      
 2897 
     | 
    
         
            +
              l493:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2920 
2898 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "InlineNote", yybuf+yypos));
         
     | 
| 
       2921 
2899 
     | 
    
         
             
              return 0;
         
     | 
| 
       2922 
2900 
     | 
    
         
             
            }
         
     | 
| 
       2923 
2901 
     | 
    
         
             
            YY_RULE(int) yy_NoteReference()
         
     | 
| 
       2924 
2902 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 1, 0);
         
     | 
| 
       2925 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "NoteReference"));  yyText(yybegin, yyend);  if (!( extension(EXT_NOTES) )) goto  
     | 
| 
      
 2903 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "NoteReference"));  yyText(yybegin, yyend);  if (!( extension(EXT_NOTES) )) goto l498;  if (!yy_RawNoteReference()) goto l498;  yyDo(yySet, -1, 0);  yyDo(yy_1_NoteReference, yybegin, yyend);
         
     | 
| 
       2926 
2904 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "NoteReference", yybuf+yypos));  yyDo(yyPop, 1, 0);
         
     | 
| 
       2927 
2905 
     | 
    
         
             
              return 1;
         
     | 
| 
       2928 
     | 
    
         
            -
               
     | 
| 
      
 2906 
     | 
    
         
            +
              l498:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2929 
2907 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "NoteReference", yybuf+yypos));
         
     | 
| 
       2930 
2908 
     | 
    
         
             
              return 0;
         
     | 
| 
       2931 
2909 
     | 
    
         
             
            }
         
     | 
| 
       2932 
2910 
     | 
    
         
             
            YY_RULE(int) yy_Link()
         
     | 
| 
       2933 
2911 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       2934 
2912 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "Link"));
         
     | 
| 
       2935 
     | 
    
         
            -
              {  int  
     | 
| 
       2936 
     | 
    
         
            -
               
     | 
| 
       2937 
     | 
    
         
            -
               
     | 
| 
      
 2913 
     | 
    
         
            +
              {  int yypos500= yypos, yythunkpos500= yythunkpos;  if (!yy_ExplicitLink()) goto l501;  goto l500;
         
     | 
| 
      
 2914 
     | 
    
         
            +
              l501:;	  yypos= yypos500; yythunkpos= yythunkpos500;  if (!yy_ReferenceLink()) goto l502;  goto l500;
         
     | 
| 
      
 2915 
     | 
    
         
            +
              l502:;	  yypos= yypos500; yythunkpos= yythunkpos500;  if (!yy_AutoLink()) goto l499;
         
     | 
| 
       2938 
2916 
     | 
    
         
             
              }
         
     | 
| 
       2939 
     | 
    
         
            -
               
     | 
| 
      
 2917 
     | 
    
         
            +
              l500:;	
         
     | 
| 
       2940 
2918 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Link", yybuf+yypos));
         
     | 
| 
       2941 
2919 
     | 
    
         
             
              return 1;
         
     | 
| 
       2942 
     | 
    
         
            -
               
     | 
| 
      
 2920 
     | 
    
         
            +
              l499:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2943 
2921 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Link", yybuf+yypos));
         
     | 
| 
       2944 
2922 
     | 
    
         
             
              return 0;
         
     | 
| 
       2945 
2923 
     | 
    
         
             
            }
         
     | 
| 
       2946 
2924 
     | 
    
         
             
            YY_RULE(int) yy_Image()
         
     | 
| 
       2947 
2925 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       2948 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "Image"));  if (!yymatchChar('!')) goto  
     | 
| 
       2949 
     | 
    
         
            -
              {  int  
     | 
| 
       2950 
     | 
    
         
            -
               
     | 
| 
      
 2926 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "Image"));  if (!yymatchChar('!')) goto l503;
         
     | 
| 
      
 2927 
     | 
    
         
            +
              {  int yypos504= yypos, yythunkpos504= yythunkpos;  if (!yy_ExplicitLink()) goto l505;  goto l504;
         
     | 
| 
      
 2928 
     | 
    
         
            +
              l505:;	  yypos= yypos504; yythunkpos= yythunkpos504;  if (!yy_ReferenceLink()) goto l503;
         
     | 
| 
       2951 
2929 
     | 
    
         
             
              }
         
     | 
| 
       2952 
     | 
    
         
            -
               
     | 
| 
      
 2930 
     | 
    
         
            +
              l504:;	  yyDo(yy_1_Image, yybegin, yyend);
         
     | 
| 
       2953 
2931 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Image", yybuf+yypos));
         
     | 
| 
       2954 
2932 
     | 
    
         
             
              return 1;
         
     | 
| 
       2955 
     | 
    
         
            -
               
     | 
| 
      
 2933 
     | 
    
         
            +
              l503:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2956 
2934 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Image", yybuf+yypos));
         
     | 
| 
       2957 
2935 
     | 
    
         
             
              return 0;
         
     | 
| 
       2958 
2936 
     | 
    
         
             
            }
         
     | 
| 
       2959 
2937 
     | 
    
         
             
            YY_RULE(int) yy_Emph()
         
     | 
| 
       2960 
2938 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       2961 
2939 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "Emph"));
         
     | 
| 
       2962 
     | 
    
         
            -
              {  int  
     | 
| 
       2963 
     | 
    
         
            -
               
     | 
| 
      
 2940 
     | 
    
         
            +
              {  int yypos507= yypos, yythunkpos507= yythunkpos;  if (!yy_EmphStar()) goto l508;  goto l507;
         
     | 
| 
      
 2941 
     | 
    
         
            +
              l508:;	  yypos= yypos507; yythunkpos= yythunkpos507;  if (!yy_EmphUl()) goto l506;
         
     | 
| 
       2964 
2942 
     | 
    
         
             
              }
         
     | 
| 
       2965 
     | 
    
         
            -
               
     | 
| 
      
 2943 
     | 
    
         
            +
              l507:;	
         
     | 
| 
       2966 
2944 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Emph", yybuf+yypos));
         
     | 
| 
       2967 
2945 
     | 
    
         
             
              return 1;
         
     | 
| 
       2968 
     | 
    
         
            -
               
     | 
| 
      
 2946 
     | 
    
         
            +
              l506:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2969 
2947 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Emph", yybuf+yypos));
         
     | 
| 
       2970 
2948 
     | 
    
         
             
              return 0;
         
     | 
| 
       2971 
2949 
     | 
    
         
             
            }
         
     | 
| 
       2972 
2950 
     | 
    
         
             
            YY_RULE(int) yy_Strong()
         
     | 
| 
       2973 
2951 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       2974 
2952 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "Strong"));
         
     | 
| 
       2975 
     | 
    
         
            -
              {  int  
     | 
| 
       2976 
     | 
    
         
            -
               
     | 
| 
      
 2953 
     | 
    
         
            +
              {  int yypos510= yypos, yythunkpos510= yythunkpos;  if (!yy_StrongStar()) goto l511;  goto l510;
         
     | 
| 
      
 2954 
     | 
    
         
            +
              l511:;	  yypos= yypos510; yythunkpos= yythunkpos510;  if (!yy_StrongUl()) goto l509;
         
     | 
| 
       2977 
2955 
     | 
    
         
             
              }
         
     | 
| 
       2978 
     | 
    
         
            -
               
     | 
| 
      
 2956 
     | 
    
         
            +
              l510:;	
         
     | 
| 
       2979 
2957 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Strong", yybuf+yypos));
         
     | 
| 
       2980 
2958 
     | 
    
         
             
              return 1;
         
     | 
| 
       2981 
     | 
    
         
            -
               
     | 
| 
      
 2959 
     | 
    
         
            +
              l509:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2982 
2960 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Strong", yybuf+yypos));
         
     | 
| 
       2983 
2961 
     | 
    
         
             
              return 0;
         
     | 
| 
       2984 
2962 
     | 
    
         
             
            }
         
     | 
| 
       2985 
2963 
     | 
    
         
             
            YY_RULE(int) yy_Space()
         
     | 
| 
       2986 
2964 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       2987 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "Space"));  if (!yy_Spacechar()) goto  
     | 
| 
       2988 
     | 
    
         
            -
               
     | 
| 
       2989 
     | 
    
         
            -
              {  int  
     | 
| 
       2990 
     | 
    
         
            -
               
     | 
| 
      
 2965 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "Space"));  if (!yy_Spacechar()) goto l512;
         
     | 
| 
      
 2966 
     | 
    
         
            +
              l513:;	
         
     | 
| 
      
 2967 
     | 
    
         
            +
              {  int yypos514= yypos, yythunkpos514= yythunkpos;  if (!yy_Spacechar()) goto l514;  goto l513;
         
     | 
| 
      
 2968 
     | 
    
         
            +
              l514:;	  yypos= yypos514; yythunkpos= yythunkpos514;
         
     | 
| 
       2991 
2969 
     | 
    
         
             
              }  yyDo(yy_1_Space, yybegin, yyend);
         
     | 
| 
       2992 
2970 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Space", yybuf+yypos));
         
     | 
| 
       2993 
2971 
     | 
    
         
             
              return 1;
         
     | 
| 
       2994 
     | 
    
         
            -
               
     | 
| 
      
 2972 
     | 
    
         
            +
              l512:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       2995 
2973 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Space", yybuf+yypos));
         
     | 
| 
       2996 
2974 
     | 
    
         
             
              return 0;
         
     | 
| 
       2997 
2975 
     | 
    
         
             
            }
         
     | 
| 
       2998 
2976 
     | 
    
         
             
            YY_RULE(int) yy_UlOrStarLine()
         
     | 
| 
       2999 
2977 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       3000 
2978 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "UlOrStarLine"));
         
     | 
| 
       3001 
     | 
    
         
            -
              {  int  
     | 
| 
       3002 
     | 
    
         
            -
               
     | 
| 
      
 2979 
     | 
    
         
            +
              {  int yypos516= yypos, yythunkpos516= yythunkpos;  if (!yy_UlLine()) goto l517;  goto l516;
         
     | 
| 
      
 2980 
     | 
    
         
            +
              l517:;	  yypos= yypos516; yythunkpos= yythunkpos516;  if (!yy_StarLine()) goto l515;  yyDo(yy_1_UlOrStarLine, yybegin, yyend);
         
     | 
| 
       3003 
2981 
     | 
    
         
             
              }
         
     | 
| 
       3004 
     | 
    
         
            -
               
     | 
| 
      
 2982 
     | 
    
         
            +
              l516:;	
         
     | 
| 
       3005 
2983 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "UlOrStarLine", yybuf+yypos));
         
     | 
| 
       3006 
2984 
     | 
    
         
             
              return 1;
         
     | 
| 
       3007 
     | 
    
         
            -
               
     | 
| 
      
 2985 
     | 
    
         
            +
              l515:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       3008 
2986 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "UlOrStarLine", yybuf+yypos));
         
     | 
| 
       3009 
2987 
     | 
    
         
             
              return 0;
         
     | 
| 
       3010 
2988 
     | 
    
         
             
            }
         
     | 
| 
       3011 
     | 
    
         
            -
            YY_RULE(int) yy_LineBreak()
         
     | 
| 
       3012 
     | 
    
         
            -
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       3013 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "LineBreak"));  if (!yymatchString("  ")) goto l517;  if (!yy_Endline()) goto l517;  yyDo(yy_1_LineBreak, yybegin, yyend);
         
     | 
| 
       3014 
     | 
    
         
            -
              yyprintf((stderr, "  ok   %s @ %s\n", "LineBreak", yybuf+yypos));
         
     | 
| 
       3015 
     | 
    
         
            -
              return 1;
         
     | 
| 
       3016 
     | 
    
         
            -
              l517:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       3017 
     | 
    
         
            -
              yyprintf((stderr, "  fail %s @ %s\n", "LineBreak", yybuf+yypos));
         
     | 
| 
       3018 
     | 
    
         
            -
              return 0;
         
     | 
| 
       3019 
     | 
    
         
            -
            }
         
     | 
| 
       3020 
2989 
     | 
    
         
             
            YY_RULE(int) yy_Str()
         
     | 
| 
       3021 
2990 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       3022 
2991 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "Str"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto l518;  if (!yy_NormalChar()) goto l518;
         
     | 
| 
         @@ -4642,487 +4611,420 @@ YY_RULE(int) yy_OptionallyIndentedLine() 
     | 
|
| 
       4642 
4611 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "OptionallyIndentedLine", yybuf+yypos));
         
     | 
| 
       4643 
4612 
     | 
    
         
             
              return 0;
         
     | 
| 
       4644 
4613 
     | 
    
         
             
            }
         
     | 
| 
       4645 
     | 
    
         
            -
            YY_RULE(int) yy_OrderedListItem()
         
     | 
| 
       4646 
     | 
    
         
            -
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       4647 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "OrderedListItem"));
         
     | 
| 
       4648 
     | 
    
         
            -
              {  int yypos1094= yypos, yythunkpos1094= yythunkpos;  if (!yy_HorizontalRule()) goto l1094;  goto l1093;
         
     | 
| 
       4649 
     | 
    
         
            -
              l1094:;	  yypos= yypos1094; yythunkpos= yythunkpos1094;
         
     | 
| 
       4650 
     | 
    
         
            -
              }
         
     | 
| 
       4651 
     | 
    
         
            -
              {  int yypos1095= yypos, yythunkpos1095= yythunkpos;  if (!yy_Enumerator()) goto l1093;  yypos= yypos1095; yythunkpos= yythunkpos1095;
         
     | 
| 
       4652 
     | 
    
         
            -
              }  if (!yy_ListItem()) goto l1093;
         
     | 
| 
       4653 
     | 
    
         
            -
              yyprintf((stderr, "  ok   %s @ %s\n", "OrderedListItem", yybuf+yypos));
         
     | 
| 
       4654 
     | 
    
         
            -
              return 1;
         
     | 
| 
       4655 
     | 
    
         
            -
              l1093:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4656 
     | 
    
         
            -
              yyprintf((stderr, "  fail %s @ %s\n", "OrderedListItem", yybuf+yypos));
         
     | 
| 
       4657 
     | 
    
         
            -
              return 0;
         
     | 
| 
       4658 
     | 
    
         
            -
            }
         
     | 
| 
       4659 
     | 
    
         
            -
            YY_RULE(int) yy_OrderedListLoose()
         
     | 
| 
       4660 
     | 
    
         
            -
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 2, 0);
         
     | 
| 
       4661 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "OrderedListLoose"));  if (!yy_StartList()) goto l1096;  yyDo(yySet, -2, 0);  if (!yy_OrderedListItem()) goto l1096;  yyDo(yySet, -1, 0);
         
     | 
| 
       4662 
     | 
    
         
            -
              l1099:;	
         
     | 
| 
       4663 
     | 
    
         
            -
              {  int yypos1100= yypos, yythunkpos1100= yythunkpos;  if (!yy_BlankLine()) goto l1100;  goto l1099;
         
     | 
| 
       4664 
     | 
    
         
            -
              l1100:;	  yypos= yypos1100; yythunkpos= yythunkpos1100;
         
     | 
| 
       4665 
     | 
    
         
            -
              }  yyDo(yy_1_OrderedListLoose, yybegin, yyend);
         
     | 
| 
       4666 
     | 
    
         
            -
              l1097:;	
         
     | 
| 
       4667 
     | 
    
         
            -
              {  int yypos1098= yypos, yythunkpos1098= yythunkpos;  if (!yy_OrderedListItem()) goto l1098;  yyDo(yySet, -1, 0);
         
     | 
| 
       4668 
     | 
    
         
            -
              l1101:;	
         
     | 
| 
       4669 
     | 
    
         
            -
              {  int yypos1102= yypos, yythunkpos1102= yythunkpos;  if (!yy_BlankLine()) goto l1102;  goto l1101;
         
     | 
| 
       4670 
     | 
    
         
            -
              l1102:;	  yypos= yypos1102; yythunkpos= yythunkpos1102;
         
     | 
| 
       4671 
     | 
    
         
            -
              }  yyDo(yy_1_OrderedListLoose, yybegin, yyend);  goto l1097;
         
     | 
| 
       4672 
     | 
    
         
            -
              l1098:;	  yypos= yypos1098; yythunkpos= yythunkpos1098;
         
     | 
| 
       4673 
     | 
    
         
            -
              }  yyDo(yy_2_OrderedListLoose, yybegin, yyend);
         
     | 
| 
       4674 
     | 
    
         
            -
              yyprintf((stderr, "  ok   %s @ %s\n", "OrderedListLoose", yybuf+yypos));  yyDo(yyPop, 2, 0);
         
     | 
| 
       4675 
     | 
    
         
            -
              return 1;
         
     | 
| 
       4676 
     | 
    
         
            -
              l1096:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4677 
     | 
    
         
            -
              yyprintf((stderr, "  fail %s @ %s\n", "OrderedListLoose", yybuf+yypos));
         
     | 
| 
       4678 
     | 
    
         
            -
              return 0;
         
     | 
| 
       4679 
     | 
    
         
            -
            }
         
     | 
| 
       4680 
     | 
    
         
            -
            YY_RULE(int) yy_OrderedListTight()
         
     | 
| 
       4681 
     | 
    
         
            -
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 1, 0);
         
     | 
| 
       4682 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "OrderedListTight"));  if (!yy_StartList()) goto l1103;  yyDo(yySet, -1, 0);  if (!yy_OrderedListItem()) goto l1103;  yyDo(yy_1_OrderedListTight, yybegin, yyend);
         
     | 
| 
       4683 
     | 
    
         
            -
              l1104:;	
         
     | 
| 
       4684 
     | 
    
         
            -
              {  int yypos1105= yypos, yythunkpos1105= yythunkpos;  if (!yy_OrderedListItem()) goto l1105;  yyDo(yy_1_OrderedListTight, yybegin, yyend);  goto l1104;
         
     | 
| 
       4685 
     | 
    
         
            -
              l1105:;	  yypos= yypos1105; yythunkpos= yythunkpos1105;
         
     | 
| 
       4686 
     | 
    
         
            -
              }
         
     | 
| 
       4687 
     | 
    
         
            -
              l1106:;	
         
     | 
| 
       4688 
     | 
    
         
            -
              {  int yypos1107= yypos, yythunkpos1107= yythunkpos;  if (!yy_BlankLine()) goto l1107;  goto l1106;
         
     | 
| 
       4689 
     | 
    
         
            -
              l1107:;	  yypos= yypos1107; yythunkpos= yythunkpos1107;
         
     | 
| 
       4690 
     | 
    
         
            -
              }
         
     | 
| 
       4691 
     | 
    
         
            -
              {  int yypos1108= yypos, yythunkpos1108= yythunkpos;  if (!yy_OrderedListLoose()) goto l1108;  goto l1103;
         
     | 
| 
       4692 
     | 
    
         
            -
              l1108:;	  yypos= yypos1108; yythunkpos= yythunkpos1108;
         
     | 
| 
       4693 
     | 
    
         
            -
              }  yyDo(yy_2_OrderedListTight, yybegin, yyend);
         
     | 
| 
       4694 
     | 
    
         
            -
              yyprintf((stderr, "  ok   %s @ %s\n", "OrderedListTight", yybuf+yypos));  yyDo(yyPop, 1, 0);
         
     | 
| 
       4695 
     | 
    
         
            -
              return 1;
         
     | 
| 
       4696 
     | 
    
         
            -
              l1103:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4697 
     | 
    
         
            -
              yyprintf((stderr, "  fail %s @ %s\n", "OrderedListTight", yybuf+yypos));
         
     | 
| 
       4698 
     | 
    
         
            -
              return 0;
         
     | 
| 
       4699 
     | 
    
         
            -
            }
         
     | 
| 
       4700 
4614 
     | 
    
         
             
            YY_RULE(int) yy_Indent()
         
     | 
| 
       4701 
4615 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       4702 
4616 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "Indent"));
         
     | 
| 
       4703 
     | 
    
         
            -
              {  int  
     | 
| 
       4704 
     | 
    
         
            -
               
     | 
| 
      
 4617 
     | 
    
         
            +
              {  int yypos1094= yypos, yythunkpos1094= yythunkpos;  if (!yymatchChar('\t')) goto l1095;  goto l1094;
         
     | 
| 
      
 4618 
     | 
    
         
            +
              l1095:;	  yypos= yypos1094; yythunkpos= yythunkpos1094;  if (!yymatchString("    ")) goto l1093;
         
     | 
| 
       4705 
4619 
     | 
    
         
             
              }
         
     | 
| 
       4706 
     | 
    
         
            -
               
     | 
| 
      
 4620 
     | 
    
         
            +
              l1094:;	
         
     | 
| 
       4707 
4621 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Indent", yybuf+yypos));
         
     | 
| 
       4708 
4622 
     | 
    
         
             
              return 1;
         
     | 
| 
       4709 
     | 
    
         
            -
               
     | 
| 
      
 4623 
     | 
    
         
            +
              l1093:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4710 
4624 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Indent", yybuf+yypos));
         
     | 
| 
       4711 
4625 
     | 
    
         
             
              return 0;
         
     | 
| 
       4712 
4626 
     | 
    
         
             
            }
         
     | 
| 
       4713 
4627 
     | 
    
         
             
            YY_RULE(int) yy_ListBlockLine()
         
     | 
| 
       4714 
4628 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       4715 
4629 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "ListBlockLine"));
         
     | 
| 
       4716 
     | 
    
         
            -
              {  int  
     | 
| 
       4717 
     | 
    
         
            -
              {  int  
     | 
| 
       4718 
     | 
    
         
            -
               
     | 
| 
      
 4630 
     | 
    
         
            +
              {  int yypos1097= yypos, yythunkpos1097= yythunkpos;
         
     | 
| 
      
 4631 
     | 
    
         
            +
              {  int yypos1098= yypos, yythunkpos1098= yythunkpos;  if (!yy_Indent()) goto l1098;  goto l1099;
         
     | 
| 
      
 4632 
     | 
    
         
            +
              l1098:;	  yypos= yypos1098; yythunkpos= yythunkpos1098;
         
     | 
| 
       4719 
4633 
     | 
    
         
             
              }
         
     | 
| 
       4720 
     | 
    
         
            -
               
     | 
| 
       4721 
     | 
    
         
            -
               
     | 
| 
       4722 
     | 
    
         
            -
              l1117:;	  yypos= yypos1116; yythunkpos= yythunkpos1116;  if (!yy_OrderedListItem()) goto l1113;
         
     | 
| 
      
 4634 
     | 
    
         
            +
              l1099:;	  if (!yy_ListItem()) goto l1097;  goto l1096;
         
     | 
| 
      
 4635 
     | 
    
         
            +
              l1097:;	  yypos= yypos1097; yythunkpos= yythunkpos1097;
         
     | 
| 
       4723 
4636 
     | 
    
         
             
              }
         
     | 
| 
       4724 
     | 
    
         
            -
               
     | 
| 
       4725 
     | 
    
         
            -
               
     | 
| 
      
 4637 
     | 
    
         
            +
              {  int yypos1100= yypos, yythunkpos1100= yythunkpos;  if (!yy_BlankLine()) goto l1100;  goto l1096;
         
     | 
| 
      
 4638 
     | 
    
         
            +
              l1100:;	  yypos= yypos1100; yythunkpos= yythunkpos1100;
         
     | 
| 
       4726 
4639 
     | 
    
         
             
              }
         
     | 
| 
       4727 
     | 
    
         
            -
              {  int  
     | 
| 
       4728 
     | 
    
         
            -
               
     | 
| 
       4729 
     | 
    
         
            -
              }  if (!yy_OptionallyIndentedLine()) goto  
     | 
| 
      
 4640 
     | 
    
         
            +
              {  int yypos1101= yypos, yythunkpos1101= yythunkpos;  if (!yy_HorizontalRule()) goto l1101;  goto l1096;
         
     | 
| 
      
 4641 
     | 
    
         
            +
              l1101:;	  yypos= yypos1101; yythunkpos= yythunkpos1101;
         
     | 
| 
      
 4642 
     | 
    
         
            +
              }  if (!yy_OptionallyIndentedLine()) goto l1096;
         
     | 
| 
       4730 
4643 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "ListBlockLine", yybuf+yypos));
         
     | 
| 
       4731 
4644 
     | 
    
         
             
              return 1;
         
     | 
| 
       4732 
     | 
    
         
            -
               
     | 
| 
      
 4645 
     | 
    
         
            +
              l1096:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4733 
4646 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "ListBlockLine", yybuf+yypos));
         
     | 
| 
       4734 
4647 
     | 
    
         
             
              return 0;
         
     | 
| 
       4735 
4648 
     | 
    
         
             
            }
         
     | 
| 
       4736 
4649 
     | 
    
         
             
            YY_RULE(int) yy_ListContinuationBlock()
         
     | 
| 
       4737 
4650 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 1, 0);
         
     | 
| 
       4738 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "ListContinuationBlock"));  if (!yy_StartList()) goto  
     | 
| 
       4739 
     | 
    
         
            -
               
     | 
| 
       4740 
     | 
    
         
            -
              {  int  
     | 
| 
       4741 
     | 
    
         
            -
               
     | 
| 
       4742 
     | 
    
         
            -
              }  yyText(yybegin, yyend);  if (!(YY_END)) goto  
     | 
| 
       4743 
     | 
    
         
            -
               
     | 
| 
       4744 
     | 
    
         
            -
              {  int  
     | 
| 
       4745 
     | 
    
         
            -
               
     | 
| 
      
 4651 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "ListContinuationBlock"));  if (!yy_StartList()) goto l1102;  yyDo(yySet, -1, 0);  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto l1102;
         
     | 
| 
      
 4652 
     | 
    
         
            +
              l1103:;	
         
     | 
| 
      
 4653 
     | 
    
         
            +
              {  int yypos1104= yypos, yythunkpos1104= yythunkpos;  if (!yy_BlankLine()) goto l1104;  goto l1103;
         
     | 
| 
      
 4654 
     | 
    
         
            +
              l1104:;	  yypos= yypos1104; yythunkpos= yythunkpos1104;
         
     | 
| 
      
 4655 
     | 
    
         
            +
              }  yyText(yybegin, yyend);  if (!(YY_END)) goto l1102;  yyDo(yy_1_ListContinuationBlock, yybegin, yyend);  if (!yy_Indent()) goto l1102;  if (!yy_ListBlock()) goto l1102;  yyDo(yy_2_ListContinuationBlock, yybegin, yyend);
         
     | 
| 
      
 4656 
     | 
    
         
            +
              l1105:;	
         
     | 
| 
      
 4657 
     | 
    
         
            +
              {  int yypos1106= yypos, yythunkpos1106= yythunkpos;  if (!yy_Indent()) goto l1106;  if (!yy_ListBlock()) goto l1106;  yyDo(yy_2_ListContinuationBlock, yybegin, yyend);  goto l1105;
         
     | 
| 
      
 4658 
     | 
    
         
            +
              l1106:;	  yypos= yypos1106; yythunkpos= yythunkpos1106;
         
     | 
| 
       4746 
4659 
     | 
    
         
             
              }  yyDo(yy_3_ListContinuationBlock, yybegin, yyend);
         
     | 
| 
       4747 
4660 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "ListContinuationBlock", yybuf+yypos));  yyDo(yyPop, 1, 0);
         
     | 
| 
       4748 
4661 
     | 
    
         
             
              return 1;
         
     | 
| 
       4749 
     | 
    
         
            -
               
     | 
| 
      
 4662 
     | 
    
         
            +
              l1102:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4750 
4663 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "ListContinuationBlock", yybuf+yypos));
         
     | 
| 
       4751 
4664 
     | 
    
         
             
              return 0;
         
     | 
| 
       4752 
4665 
     | 
    
         
             
            }
         
     | 
| 
       4753 
4666 
     | 
    
         
             
            YY_RULE(int) yy_ListBlock()
         
     | 
| 
       4754 
4667 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 1, 0);
         
     | 
| 
       4755 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "ListBlock"));  if (!yy_StartList()) goto  
     | 
| 
       4756 
     | 
    
         
            -
               
     | 
| 
       4757 
     | 
    
         
            -
              {  int  
     | 
| 
       4758 
     | 
    
         
            -
               
     | 
| 
      
 4668 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "ListBlock"));  if (!yy_StartList()) goto l1107;  yyDo(yySet, -1, 0);  if (!yy_Line()) goto l1107;  yyDo(yy_1_ListBlock, yybegin, yyend);
         
     | 
| 
      
 4669 
     | 
    
         
            +
              l1108:;	
         
     | 
| 
      
 4670 
     | 
    
         
            +
              {  int yypos1109= yypos, yythunkpos1109= yythunkpos;  if (!yy_ListBlockLine()) goto l1109;  yyDo(yy_2_ListBlock, yybegin, yyend);  goto l1108;
         
     | 
| 
      
 4671 
     | 
    
         
            +
              l1109:;	  yypos= yypos1109; yythunkpos= yythunkpos1109;
         
     | 
| 
       4759 
4672 
     | 
    
         
             
              }  yyDo(yy_3_ListBlock, yybegin, yyend);
         
     | 
| 
       4760 
4673 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "ListBlock", yybuf+yypos));  yyDo(yyPop, 1, 0);
         
     | 
| 
       4761 
4674 
     | 
    
         
             
              return 1;
         
     | 
| 
       4762 
     | 
    
         
            -
               
     | 
| 
      
 4675 
     | 
    
         
            +
              l1107:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4763 
4676 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "ListBlock", yybuf+yypos));
         
     | 
| 
       4764 
4677 
     | 
    
         
             
              return 0;
         
     | 
| 
       4765 
4678 
     | 
    
         
             
            }
         
     | 
| 
       4766 
4679 
     | 
    
         
             
            YY_RULE(int) yy_Enumerator()
         
     | 
| 
       4767 
4680 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       4768 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "Enumerator"));  if (!yy_NonindentSpace()) goto  
     | 
| 
       4769 
     | 
    
         
            -
               
     | 
| 
       4770 
     | 
    
         
            -
              {  int  
     | 
| 
       4771 
     | 
    
         
            -
               
     | 
| 
       4772 
     | 
    
         
            -
              }  if (!yymatchChar('.')) goto  
     | 
| 
       4773 
     | 
    
         
            -
               
     | 
| 
       4774 
     | 
    
         
            -
              {  int  
     | 
| 
       4775 
     | 
    
         
            -
               
     | 
| 
      
 4681 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "Enumerator"));  if (!yy_NonindentSpace()) goto l1110;  if (!yymatchClass((unsigned char *)"\000\000\000\000\000\000\377\003\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l1110;
         
     | 
| 
      
 4682 
     | 
    
         
            +
              l1111:;	
         
     | 
| 
      
 4683 
     | 
    
         
            +
              {  int yypos1112= yypos, yythunkpos1112= yythunkpos;  if (!yymatchClass((unsigned char *)"\000\000\000\000\000\000\377\003\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l1112;  goto l1111;
         
     | 
| 
      
 4684 
     | 
    
         
            +
              l1112:;	  yypos= yypos1112; yythunkpos= yythunkpos1112;
         
     | 
| 
      
 4685 
     | 
    
         
            +
              }  if (!yymatchChar('.')) goto l1110;  if (!yy_Spacechar()) goto l1110;
         
     | 
| 
      
 4686 
     | 
    
         
            +
              l1113:;	
         
     | 
| 
      
 4687 
     | 
    
         
            +
              {  int yypos1114= yypos, yythunkpos1114= yythunkpos;  if (!yy_Spacechar()) goto l1114;  goto l1113;
         
     | 
| 
      
 4688 
     | 
    
         
            +
              l1114:;	  yypos= yypos1114; yythunkpos= yythunkpos1114;
         
     | 
| 
       4776 
4689 
     | 
    
         
             
              }
         
     | 
| 
       4777 
4690 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Enumerator", yybuf+yypos));
         
     | 
| 
       4778 
4691 
     | 
    
         
             
              return 1;
         
     | 
| 
       4779 
     | 
    
         
            -
               
     | 
| 
      
 4692 
     | 
    
         
            +
              l1110:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4780 
4693 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Enumerator", yybuf+yypos));
         
     | 
| 
       4781 
4694 
     | 
    
         
             
              return 0;
         
     | 
| 
       4782 
4695 
     | 
    
         
             
            }
         
     | 
| 
       4783 
4696 
     | 
    
         
             
            YY_RULE(int) yy_ListItem()
         
     | 
| 
       4784 
4697 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 1, 0);
         
     | 
| 
       4785 
4698 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "ListItem"));
         
     | 
| 
       4786 
     | 
    
         
            -
              {  int  
     | 
| 
       4787 
     | 
    
         
            -
               
     | 
| 
      
 4699 
     | 
    
         
            +
              {  int yypos1116= yypos, yythunkpos1116= yythunkpos;  if (!yy_Bullet()) goto l1117;  goto l1116;
         
     | 
| 
      
 4700 
     | 
    
         
            +
              l1117:;	  yypos= yypos1116; yythunkpos= yythunkpos1116;  if (!yy_Enumerator()) goto l1115;
         
     | 
| 
       4788 
4701 
     | 
    
         
             
              }
         
     | 
| 
       4789 
     | 
    
         
            -
               
     | 
| 
       4790 
     | 
    
         
            -
               
     | 
| 
       4791 
     | 
    
         
            -
              {  int  
     | 
| 
       4792 
     | 
    
         
            -
               
     | 
| 
      
 4702 
     | 
    
         
            +
              l1116:;	  if (!yy_StartList()) goto l1115;  yyDo(yySet, -1, 0);  if (!yy_ListBlock()) goto l1115;  yyDo(yy_1_ListItem, yybegin, yyend);
         
     | 
| 
      
 4703 
     | 
    
         
            +
              l1118:;	
         
     | 
| 
      
 4704 
     | 
    
         
            +
              {  int yypos1119= yypos, yythunkpos1119= yythunkpos;  if (!yy_ListContinuationBlock()) goto l1119;  yyDo(yy_2_ListItem, yybegin, yyend);  goto l1118;
         
     | 
| 
      
 4705 
     | 
    
         
            +
              l1119:;	  yypos= yypos1119; yythunkpos= yythunkpos1119;
         
     | 
| 
       4793 
4706 
     | 
    
         
             
              }  yyDo(yy_3_ListItem, yybegin, yyend);
         
     | 
| 
       4794 
4707 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "ListItem", yybuf+yypos));  yyDo(yyPop, 1, 0);
         
     | 
| 
       4795 
4708 
     | 
    
         
             
              return 1;
         
     | 
| 
       4796 
     | 
    
         
            -
               
     | 
| 
      
 4709 
     | 
    
         
            +
              l1115:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4797 
4710 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "ListItem", yybuf+yypos));
         
     | 
| 
       4798 
4711 
     | 
    
         
             
              return 0;
         
     | 
| 
       4799 
4712 
     | 
    
         
             
            }
         
     | 
| 
       4800 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
       4801 
     | 
    
         
            -
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       4802 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "BulletListItem"));
         
     | 
| 
       4803 
     | 
    
         
            -
              {  int yypos1138= yypos, yythunkpos1138= yythunkpos;  if (!yy_HorizontalRule()) goto l1138;  goto l1137;
         
     | 
| 
       4804 
     | 
    
         
            -
              l1138:;	  yypos= yypos1138; yythunkpos= yythunkpos1138;
         
     | 
| 
       4805 
     | 
    
         
            -
              }
         
     | 
| 
       4806 
     | 
    
         
            -
              {  int yypos1139= yypos, yythunkpos1139= yythunkpos;  if (!yy_Bullet()) goto l1137;  yypos= yypos1139; yythunkpos= yythunkpos1139;
         
     | 
| 
       4807 
     | 
    
         
            -
              }  if (!yy_ListItem()) goto l1137;
         
     | 
| 
       4808 
     | 
    
         
            -
              yyprintf((stderr, "  ok   %s @ %s\n", "BulletListItem", yybuf+yypos));
         
     | 
| 
       4809 
     | 
    
         
            -
              return 1;
         
     | 
| 
       4810 
     | 
    
         
            -
              l1137:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4811 
     | 
    
         
            -
              yyprintf((stderr, "  fail %s @ %s\n", "BulletListItem", yybuf+yypos));
         
     | 
| 
       4812 
     | 
    
         
            -
              return 0;
         
     | 
| 
       4813 
     | 
    
         
            -
            }
         
     | 
| 
       4814 
     | 
    
         
            -
            YY_RULE(int) yy_BulletListLoose()
         
     | 
| 
      
 4713 
     | 
    
         
            +
            YY_RULE(int) yy_ListLoose()
         
     | 
| 
       4815 
4714 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 2, 0);
         
     | 
| 
       4816 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", " 
     | 
| 
       4817 
     | 
    
         
            -
               
     | 
| 
       4818 
     | 
    
         
            -
              {  int  
     | 
| 
       4819 
     | 
    
         
            -
               
     | 
| 
       4820 
     | 
    
         
            -
              }  yyDo( 
     | 
| 
       4821 
     | 
    
         
            -
               
     | 
| 
       4822 
     | 
    
         
            -
              {  int  
     | 
| 
       4823 
     | 
    
         
            -
               
     | 
| 
       4824 
     | 
    
         
            -
              {  int  
     | 
| 
       4825 
     | 
    
         
            -
               
     | 
| 
       4826 
     | 
    
         
            -
              }  yyDo( 
     | 
| 
       4827 
     | 
    
         
            -
               
     | 
| 
       4828 
     | 
    
         
            -
              }  yyDo( 
     | 
| 
       4829 
     | 
    
         
            -
              yyprintf((stderr, "  ok   %s @ %s\n", " 
     | 
| 
      
 4715 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "ListLoose"));  if (!yy_StartList()) goto l1120;  yyDo(yySet, -2, 0);  if (!yy_ListItem()) goto l1120;  yyDo(yySet, -1, 0);
         
     | 
| 
      
 4716 
     | 
    
         
            +
              l1123:;	
         
     | 
| 
      
 4717 
     | 
    
         
            +
              {  int yypos1124= yypos, yythunkpos1124= yythunkpos;  if (!yy_BlankLine()) goto l1124;  goto l1123;
         
     | 
| 
      
 4718 
     | 
    
         
            +
              l1124:;	  yypos= yypos1124; yythunkpos= yythunkpos1124;
         
     | 
| 
      
 4719 
     | 
    
         
            +
              }  yyDo(yy_1_ListLoose, yybegin, yyend);
         
     | 
| 
      
 4720 
     | 
    
         
            +
              l1121:;	
         
     | 
| 
      
 4721 
     | 
    
         
            +
              {  int yypos1122= yypos, yythunkpos1122= yythunkpos;  if (!yy_ListItem()) goto l1122;  yyDo(yySet, -1, 0);
         
     | 
| 
      
 4722 
     | 
    
         
            +
              l1125:;	
         
     | 
| 
      
 4723 
     | 
    
         
            +
              {  int yypos1126= yypos, yythunkpos1126= yythunkpos;  if (!yy_BlankLine()) goto l1126;  goto l1125;
         
     | 
| 
      
 4724 
     | 
    
         
            +
              l1126:;	  yypos= yypos1126; yythunkpos= yythunkpos1126;
         
     | 
| 
      
 4725 
     | 
    
         
            +
              }  yyDo(yy_1_ListLoose, yybegin, yyend);  goto l1121;
         
     | 
| 
      
 4726 
     | 
    
         
            +
              l1122:;	  yypos= yypos1122; yythunkpos= yythunkpos1122;
         
     | 
| 
      
 4727 
     | 
    
         
            +
              }  yyDo(yy_2_ListLoose, yybegin, yyend);
         
     | 
| 
      
 4728 
     | 
    
         
            +
              yyprintf((stderr, "  ok   %s @ %s\n", "ListLoose", yybuf+yypos));  yyDo(yyPop, 2, 0);
         
     | 
| 
       4830 
4729 
     | 
    
         
             
              return 1;
         
     | 
| 
       4831 
     | 
    
         
            -
               
     | 
| 
       4832 
     | 
    
         
            -
              yyprintf((stderr, "  fail %s @ %s\n", " 
     | 
| 
      
 4730 
     | 
    
         
            +
              l1120:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
      
 4731 
     | 
    
         
            +
              yyprintf((stderr, "  fail %s @ %s\n", "ListLoose", yybuf+yypos));
         
     | 
| 
       4833 
4732 
     | 
    
         
             
              return 0;
         
     | 
| 
       4834 
4733 
     | 
    
         
             
            }
         
     | 
| 
       4835 
     | 
    
         
            -
            YY_RULE(int)  
     | 
| 
      
 4734 
     | 
    
         
            +
            YY_RULE(int) yy_ListTight()
         
     | 
| 
       4836 
4735 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 1, 0);
         
     | 
| 
       4837 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", " 
     | 
| 
       4838 
     | 
    
         
            -
               
     | 
| 
       4839 
     | 
    
         
            -
              {  int  
     | 
| 
       4840 
     | 
    
         
            -
               
     | 
| 
      
 4736 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "ListTight"));  if (!yy_StartList()) goto l1127;  yyDo(yySet, -1, 0);  if (!yy_ListItem()) goto l1127;  yyDo(yy_1_ListTight, yybegin, yyend);
         
     | 
| 
      
 4737 
     | 
    
         
            +
              l1128:;	
         
     | 
| 
      
 4738 
     | 
    
         
            +
              {  int yypos1129= yypos, yythunkpos1129= yythunkpos;  if (!yy_ListItem()) goto l1129;  yyDo(yy_1_ListTight, yybegin, yyend);  goto l1128;
         
     | 
| 
      
 4739 
     | 
    
         
            +
              l1129:;	  yypos= yypos1129; yythunkpos= yythunkpos1129;
         
     | 
| 
       4841 
4740 
     | 
    
         
             
              }
         
     | 
| 
       4842 
     | 
    
         
            -
               
     | 
| 
       4843 
     | 
    
         
            -
              {  int  
     | 
| 
       4844 
     | 
    
         
            -
               
     | 
| 
      
 4741 
     | 
    
         
            +
              l1130:;	
         
     | 
| 
      
 4742 
     | 
    
         
            +
              {  int yypos1131= yypos, yythunkpos1131= yythunkpos;  if (!yy_BlankLine()) goto l1131;  goto l1130;
         
     | 
| 
      
 4743 
     | 
    
         
            +
              l1131:;	  yypos= yypos1131; yythunkpos= yythunkpos1131;
         
     | 
| 
       4845 
4744 
     | 
    
         
             
              }
         
     | 
| 
       4846 
     | 
    
         
            -
              {  int  
     | 
| 
       4847 
     | 
    
         
            -
               
     | 
| 
       4848 
     | 
    
         
            -
              }  yyDo( 
     | 
| 
       4849 
     | 
    
         
            -
              yyprintf((stderr, "  ok   %s @ %s\n", " 
     | 
| 
      
 4745 
     | 
    
         
            +
              {  int yypos1132= yypos, yythunkpos1132= yythunkpos;  if (!yy_ListLoose()) goto l1132;  goto l1127;
         
     | 
| 
      
 4746 
     | 
    
         
            +
              l1132:;	  yypos= yypos1132; yythunkpos= yythunkpos1132;
         
     | 
| 
      
 4747 
     | 
    
         
            +
              }  yyDo(yy_2_ListTight, yybegin, yyend);
         
     | 
| 
      
 4748 
     | 
    
         
            +
              yyprintf((stderr, "  ok   %s @ %s\n", "ListTight", yybuf+yypos));  yyDo(yyPop, 1, 0);
         
     | 
| 
       4850 
4749 
     | 
    
         
             
              return 1;
         
     | 
| 
       4851 
     | 
    
         
            -
               
     | 
| 
       4852 
     | 
    
         
            -
              yyprintf((stderr, "  fail %s @ %s\n", " 
     | 
| 
      
 4750 
     | 
    
         
            +
              l1127:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
      
 4751 
     | 
    
         
            +
              yyprintf((stderr, "  fail %s @ %s\n", "ListTight", yybuf+yypos));
         
     | 
| 
       4853 
4752 
     | 
    
         
             
              return 0;
         
     | 
| 
       4854 
4753 
     | 
    
         
             
            }
         
     | 
| 
       4855 
4754 
     | 
    
         
             
            YY_RULE(int) yy_Spacechar()
         
     | 
| 
       4856 
4755 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       4857 
4756 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "Spacechar"));
         
     | 
| 
       4858 
     | 
    
         
            -
              {  int  
     | 
| 
       4859 
     | 
    
         
            -
               
     | 
| 
      
 4757 
     | 
    
         
            +
              {  int yypos1134= yypos, yythunkpos1134= yythunkpos;  if (!yymatchChar(' ')) goto l1135;  goto l1134;
         
     | 
| 
      
 4758 
     | 
    
         
            +
              l1135:;	  yypos= yypos1134; yythunkpos= yythunkpos1134;  if (!yymatchChar('\t')) goto l1133;
         
     | 
| 
       4860 
4759 
     | 
    
         
             
              }
         
     | 
| 
       4861 
     | 
    
         
            -
               
     | 
| 
      
 4760 
     | 
    
         
            +
              l1134:;	
         
     | 
| 
       4862 
4761 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Spacechar", yybuf+yypos));
         
     | 
| 
       4863 
4762 
     | 
    
         
             
              return 1;
         
     | 
| 
       4864 
     | 
    
         
            -
               
     | 
| 
      
 4763 
     | 
    
         
            +
              l1133:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4865 
4764 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Spacechar", yybuf+yypos));
         
     | 
| 
       4866 
4765 
     | 
    
         
             
              return 0;
         
     | 
| 
       4867 
4766 
     | 
    
         
             
            }
         
     | 
| 
       4868 
4767 
     | 
    
         
             
            YY_RULE(int) yy_Bullet()
         
     | 
| 
       4869 
4768 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       4870 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "Bullet")); 
     | 
| 
       4871 
     | 
    
         
            -
              {  int  
     | 
| 
       4872 
     | 
    
         
            -
               
     | 
| 
       4873 
     | 
    
         
            -
               
     | 
| 
      
 4769 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "Bullet"));
         
     | 
| 
      
 4770 
     | 
    
         
            +
              {  int yypos1137= yypos, yythunkpos1137= yythunkpos;  if (!yy_HorizontalRule()) goto l1137;  goto l1136;
         
     | 
| 
      
 4771 
     | 
    
         
            +
              l1137:;	  yypos= yypos1137; yythunkpos= yythunkpos1137;
         
     | 
| 
      
 4772 
     | 
    
         
            +
              }  if (!yy_NonindentSpace()) goto l1136;
         
     | 
| 
      
 4773 
     | 
    
         
            +
              {  int yypos1138= yypos, yythunkpos1138= yythunkpos;  if (!yymatchChar('+')) goto l1139;  goto l1138;
         
     | 
| 
      
 4774 
     | 
    
         
            +
              l1139:;	  yypos= yypos1138; yythunkpos= yythunkpos1138;  if (!yymatchChar('*')) goto l1140;  goto l1138;
         
     | 
| 
      
 4775 
     | 
    
         
            +
              l1140:;	  yypos= yypos1138; yythunkpos= yythunkpos1138;  if (!yymatchChar('-')) goto l1136;
         
     | 
| 
       4874 
4776 
     | 
    
         
             
              }
         
     | 
| 
       4875 
     | 
    
         
            -
               
     | 
| 
       4876 
     | 
    
         
            -
               
     | 
| 
       4877 
     | 
    
         
            -
              {  int  
     | 
| 
       4878 
     | 
    
         
            -
               
     | 
| 
      
 4777 
     | 
    
         
            +
              l1138:;	  if (!yy_Spacechar()) goto l1136;
         
     | 
| 
      
 4778 
     | 
    
         
            +
              l1141:;	
         
     | 
| 
      
 4779 
     | 
    
         
            +
              {  int yypos1142= yypos, yythunkpos1142= yythunkpos;  if (!yy_Spacechar()) goto l1142;  goto l1141;
         
     | 
| 
      
 4780 
     | 
    
         
            +
              l1142:;	  yypos= yypos1142; yythunkpos= yythunkpos1142;
         
     | 
| 
       4879 
4781 
     | 
    
         
             
              }
         
     | 
| 
       4880 
4782 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Bullet", yybuf+yypos));
         
     | 
| 
       4881 
4783 
     | 
    
         
             
              return 1;
         
     | 
| 
       4882 
     | 
    
         
            -
               
     | 
| 
      
 4784 
     | 
    
         
            +
              l1136:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4883 
4785 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Bullet", yybuf+yypos));
         
     | 
| 
       4884 
4786 
     | 
    
         
             
              return 0;
         
     | 
| 
       4885 
4787 
     | 
    
         
             
            }
         
     | 
| 
       4886 
4788 
     | 
    
         
             
            YY_RULE(int) yy_VerbatimChunk()
         
     | 
| 
       4887 
4789 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 1, 0);
         
     | 
| 
       4888 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "VerbatimChunk"));  if (!yy_StartList()) goto  
     | 
| 
       4889 
     | 
    
         
            -
               
     | 
| 
       4890 
     | 
    
         
            -
              {  int  
     | 
| 
       4891 
     | 
    
         
            -
               
     | 
| 
       4892 
     | 
    
         
            -
              }  if (!yy_NonblankIndentedLine()) goto  
     | 
| 
       4893 
     | 
    
         
            -
               
     | 
| 
       4894 
     | 
    
         
            -
              {  int  
     | 
| 
       4895 
     | 
    
         
            -
               
     | 
| 
      
 4790 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "VerbatimChunk"));  if (!yy_StartList()) goto l1143;  yyDo(yySet, -1, 0);
         
     | 
| 
      
 4791 
     | 
    
         
            +
              l1144:;	
         
     | 
| 
      
 4792 
     | 
    
         
            +
              {  int yypos1145= yypos, yythunkpos1145= yythunkpos;  if (!yy_BlankLine()) goto l1145;  yyDo(yy_1_VerbatimChunk, yybegin, yyend);  goto l1144;
         
     | 
| 
      
 4793 
     | 
    
         
            +
              l1145:;	  yypos= yypos1145; yythunkpos= yythunkpos1145;
         
     | 
| 
      
 4794 
     | 
    
         
            +
              }  if (!yy_NonblankIndentedLine()) goto l1143;  yyDo(yy_2_VerbatimChunk, yybegin, yyend);
         
     | 
| 
      
 4795 
     | 
    
         
            +
              l1146:;	
         
     | 
| 
      
 4796 
     | 
    
         
            +
              {  int yypos1147= yypos, yythunkpos1147= yythunkpos;  if (!yy_NonblankIndentedLine()) goto l1147;  yyDo(yy_2_VerbatimChunk, yybegin, yyend);  goto l1146;
         
     | 
| 
      
 4797 
     | 
    
         
            +
              l1147:;	  yypos= yypos1147; yythunkpos= yythunkpos1147;
         
     | 
| 
       4896 
4798 
     | 
    
         
             
              }  yyDo(yy_3_VerbatimChunk, yybegin, yyend);
         
     | 
| 
       4897 
4799 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "VerbatimChunk", yybuf+yypos));  yyDo(yyPop, 1, 0);
         
     | 
| 
       4898 
4800 
     | 
    
         
             
              return 1;
         
     | 
| 
       4899 
     | 
    
         
            -
               
     | 
| 
      
 4801 
     | 
    
         
            +
              l1143:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4900 
4802 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "VerbatimChunk", yybuf+yypos));
         
     | 
| 
       4901 
4803 
     | 
    
         
             
              return 0;
         
     | 
| 
       4902 
4804 
     | 
    
         
             
            }
         
     | 
| 
       4903 
4805 
     | 
    
         
             
            YY_RULE(int) yy_IndentedLine()
         
     | 
| 
       4904 
4806 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       4905 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "IndentedLine"));  if (!yy_Indent()) goto  
     | 
| 
      
 4807 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "IndentedLine"));  if (!yy_Indent()) goto l1148;  if (!yy_Line()) goto l1148;
         
     | 
| 
       4906 
4808 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "IndentedLine", yybuf+yypos));
         
     | 
| 
       4907 
4809 
     | 
    
         
             
              return 1;
         
     | 
| 
       4908 
     | 
    
         
            -
               
     | 
| 
      
 4810 
     | 
    
         
            +
              l1148:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4909 
4811 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "IndentedLine", yybuf+yypos));
         
     | 
| 
       4910 
4812 
     | 
    
         
             
              return 0;
         
     | 
| 
       4911 
4813 
     | 
    
         
             
            }
         
     | 
| 
       4912 
4814 
     | 
    
         
             
            YY_RULE(int) yy_NonblankIndentedLine()
         
     | 
| 
       4913 
4815 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       4914 
4816 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "NonblankIndentedLine"));
         
     | 
| 
       4915 
     | 
    
         
            -
              {  int  
     | 
| 
       4916 
     | 
    
         
            -
               
     | 
| 
       4917 
     | 
    
         
            -
              }  if (!yy_IndentedLine()) goto  
     | 
| 
      
 4817 
     | 
    
         
            +
              {  int yypos1150= yypos, yythunkpos1150= yythunkpos;  if (!yy_BlankLine()) goto l1150;  goto l1149;
         
     | 
| 
      
 4818 
     | 
    
         
            +
              l1150:;	  yypos= yypos1150; yythunkpos= yythunkpos1150;
         
     | 
| 
      
 4819 
     | 
    
         
            +
              }  if (!yy_IndentedLine()) goto l1149;
         
     | 
| 
       4918 
4820 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "NonblankIndentedLine", yybuf+yypos));
         
     | 
| 
       4919 
4821 
     | 
    
         
             
              return 1;
         
     | 
| 
       4920 
     | 
    
         
            -
               
     | 
| 
      
 4822 
     | 
    
         
            +
              l1149:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4921 
4823 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "NonblankIndentedLine", yybuf+yypos));
         
     | 
| 
       4922 
4824 
     | 
    
         
             
              return 0;
         
     | 
| 
       4923 
4825 
     | 
    
         
             
            }
         
     | 
| 
       4924 
4826 
     | 
    
         
             
            YY_RULE(int) yy_Line()
         
     | 
| 
       4925 
4827 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       4926 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "Line"));  if (!yy_RawLine()) goto  
     | 
| 
      
 4828 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "Line"));  if (!yy_RawLine()) goto l1151;  yyDo(yy_1_Line, yybegin, yyend);
         
     | 
| 
       4927 
4829 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Line", yybuf+yypos));
         
     | 
| 
       4928 
4830 
     | 
    
         
             
              return 1;
         
     | 
| 
       4929 
     | 
    
         
            -
               
     | 
| 
      
 4831 
     | 
    
         
            +
              l1151:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4930 
4832 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Line", yybuf+yypos));
         
     | 
| 
       4931 
4833 
     | 
    
         
             
              return 0;
         
     | 
| 
       4932 
4834 
     | 
    
         
             
            }
         
     | 
| 
       4933 
4835 
     | 
    
         
             
            YY_RULE(int) yy_BlockQuoteRaw()
         
     | 
| 
       4934 
4836 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 1, 0);
         
     | 
| 
       4935 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "BlockQuoteRaw"));  if (!yy_StartList()) goto  
     | 
| 
       4936 
     | 
    
         
            -
              {  int  
     | 
| 
       4937 
     | 
    
         
            -
               
     | 
| 
       4938 
     | 
    
         
            -
              }
         
     | 
| 
       4939 
     | 
    
         
            -
               
     | 
| 
       4940 
     | 
    
         
            -
               
     | 
| 
       4941 
     | 
    
         
            -
              {  int  
     | 
| 
       4942 
     | 
    
         
            -
              {  int  
     | 
| 
       4943 
     | 
    
         
            -
               
     | 
| 
       4944 
     | 
    
         
            -
              }
         
     | 
| 
       4945 
     | 
    
         
            -
              {  int  
     | 
| 
       4946 
     | 
    
         
            -
               
     | 
| 
       4947 
     | 
    
         
            -
              }  if (!yy_Line()) goto  
     | 
| 
       4948 
     | 
    
         
            -
               
     | 
| 
       4949 
     | 
    
         
            -
              }
         
     | 
| 
       4950 
     | 
    
         
            -
               
     | 
| 
       4951 
     | 
    
         
            -
              {  int  
     | 
| 
       4952 
     | 
    
         
            -
               
     | 
| 
       4953 
     | 
    
         
            -
              }
         
     | 
| 
       4954 
     | 
    
         
            -
               
     | 
| 
       4955 
     | 
    
         
            -
              {  int  
     | 
| 
       4956 
     | 
    
         
            -
              {  int  
     | 
| 
       4957 
     | 
    
         
            -
               
     | 
| 
       4958 
     | 
    
         
            -
              }
         
     | 
| 
       4959 
     | 
    
         
            -
               
     | 
| 
       4960 
     | 
    
         
            -
               
     | 
| 
       4961 
     | 
    
         
            -
              {  int  
     | 
| 
       4962 
     | 
    
         
            -
              {  int  
     | 
| 
       4963 
     | 
    
         
            -
               
     | 
| 
      
 4837 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "BlockQuoteRaw"));  if (!yy_StartList()) goto l1152;  yyDo(yySet, -1, 0);  if (!yymatchChar('>')) goto l1152;
         
     | 
| 
      
 4838 
     | 
    
         
            +
              {  int yypos1155= yypos, yythunkpos1155= yythunkpos;  if (!yymatchChar(' ')) goto l1155;  goto l1156;
         
     | 
| 
      
 4839 
     | 
    
         
            +
              l1155:;	  yypos= yypos1155; yythunkpos= yythunkpos1155;
         
     | 
| 
      
 4840 
     | 
    
         
            +
              }
         
     | 
| 
      
 4841 
     | 
    
         
            +
              l1156:;	  if (!yy_Line()) goto l1152;  yyDo(yy_1_BlockQuoteRaw, yybegin, yyend);
         
     | 
| 
      
 4842 
     | 
    
         
            +
              l1157:;	
         
     | 
| 
      
 4843 
     | 
    
         
            +
              {  int yypos1158= yypos, yythunkpos1158= yythunkpos;
         
     | 
| 
      
 4844 
     | 
    
         
            +
              {  int yypos1159= yypos, yythunkpos1159= yythunkpos;  if (!yymatchChar('>')) goto l1159;  goto l1158;
         
     | 
| 
      
 4845 
     | 
    
         
            +
              l1159:;	  yypos= yypos1159; yythunkpos= yythunkpos1159;
         
     | 
| 
      
 4846 
     | 
    
         
            +
              }
         
     | 
| 
      
 4847 
     | 
    
         
            +
              {  int yypos1160= yypos, yythunkpos1160= yythunkpos;  if (!yy_BlankLine()) goto l1160;  goto l1158;
         
     | 
| 
      
 4848 
     | 
    
         
            +
              l1160:;	  yypos= yypos1160; yythunkpos= yythunkpos1160;
         
     | 
| 
      
 4849 
     | 
    
         
            +
              }  if (!yy_Line()) goto l1158;  yyDo(yy_2_BlockQuoteRaw, yybegin, yyend);  goto l1157;
         
     | 
| 
      
 4850 
     | 
    
         
            +
              l1158:;	  yypos= yypos1158; yythunkpos= yythunkpos1158;
         
     | 
| 
      
 4851 
     | 
    
         
            +
              }
         
     | 
| 
      
 4852 
     | 
    
         
            +
              l1161:;	
         
     | 
| 
      
 4853 
     | 
    
         
            +
              {  int yypos1162= yypos, yythunkpos1162= yythunkpos;  if (!yy_BlankLine()) goto l1162;  yyDo(yy_3_BlockQuoteRaw, yybegin, yyend);  goto l1161;
         
     | 
| 
      
 4854 
     | 
    
         
            +
              l1162:;	  yypos= yypos1162; yythunkpos= yythunkpos1162;
         
     | 
| 
      
 4855 
     | 
    
         
            +
              }
         
     | 
| 
      
 4856 
     | 
    
         
            +
              l1153:;	
         
     | 
| 
      
 4857 
     | 
    
         
            +
              {  int yypos1154= yypos, yythunkpos1154= yythunkpos;  if (!yymatchChar('>')) goto l1154;
         
     | 
| 
      
 4858 
     | 
    
         
            +
              {  int yypos1163= yypos, yythunkpos1163= yythunkpos;  if (!yymatchChar(' ')) goto l1163;  goto l1164;
         
     | 
| 
      
 4859 
     | 
    
         
            +
              l1163:;	  yypos= yypos1163; yythunkpos= yythunkpos1163;
         
     | 
| 
      
 4860 
     | 
    
         
            +
              }
         
     | 
| 
      
 4861 
     | 
    
         
            +
              l1164:;	  if (!yy_Line()) goto l1154;  yyDo(yy_1_BlockQuoteRaw, yybegin, yyend);
         
     | 
| 
      
 4862 
     | 
    
         
            +
              l1165:;	
         
     | 
| 
      
 4863 
     | 
    
         
            +
              {  int yypos1166= yypos, yythunkpos1166= yythunkpos;
         
     | 
| 
      
 4864 
     | 
    
         
            +
              {  int yypos1167= yypos, yythunkpos1167= yythunkpos;  if (!yymatchChar('>')) goto l1167;  goto l1166;
         
     | 
| 
      
 4865 
     | 
    
         
            +
              l1167:;	  yypos= yypos1167; yythunkpos= yythunkpos1167;
         
     | 
| 
       4964 
4866 
     | 
    
         
             
              }
         
     | 
| 
       4965 
     | 
    
         
            -
              {  int  
     | 
| 
       4966 
     | 
    
         
            -
               
     | 
| 
       4967 
     | 
    
         
            -
              }  if (!yy_Line()) goto  
     | 
| 
       4968 
     | 
    
         
            -
               
     | 
| 
      
 4867 
     | 
    
         
            +
              {  int yypos1168= yypos, yythunkpos1168= yythunkpos;  if (!yy_BlankLine()) goto l1168;  goto l1166;
         
     | 
| 
      
 4868 
     | 
    
         
            +
              l1168:;	  yypos= yypos1168; yythunkpos= yythunkpos1168;
         
     | 
| 
      
 4869 
     | 
    
         
            +
              }  if (!yy_Line()) goto l1166;  yyDo(yy_2_BlockQuoteRaw, yybegin, yyend);  goto l1165;
         
     | 
| 
      
 4870 
     | 
    
         
            +
              l1166:;	  yypos= yypos1166; yythunkpos= yythunkpos1166;
         
     | 
| 
       4969 
4871 
     | 
    
         
             
              }
         
     | 
| 
       4970 
     | 
    
         
            -
               
     | 
| 
       4971 
     | 
    
         
            -
              {  int  
     | 
| 
       4972 
     | 
    
         
            -
               
     | 
| 
       4973 
     | 
    
         
            -
              }  goto  
     | 
| 
       4974 
     | 
    
         
            -
               
     | 
| 
      
 4872 
     | 
    
         
            +
              l1169:;	
         
     | 
| 
      
 4873 
     | 
    
         
            +
              {  int yypos1170= yypos, yythunkpos1170= yythunkpos;  if (!yy_BlankLine()) goto l1170;  yyDo(yy_3_BlockQuoteRaw, yybegin, yyend);  goto l1169;
         
     | 
| 
      
 4874 
     | 
    
         
            +
              l1170:;	  yypos= yypos1170; yythunkpos= yythunkpos1170;
         
     | 
| 
      
 4875 
     | 
    
         
            +
              }  goto l1153;
         
     | 
| 
      
 4876 
     | 
    
         
            +
              l1154:;	  yypos= yypos1154; yythunkpos= yythunkpos1154;
         
     | 
| 
       4975 
4877 
     | 
    
         
             
              }  yyDo(yy_4_BlockQuoteRaw, yybegin, yyend);
         
     | 
| 
       4976 
4878 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "BlockQuoteRaw", yybuf+yypos));  yyDo(yyPop, 1, 0);
         
     | 
| 
       4977 
4879 
     | 
    
         
             
              return 1;
         
     | 
| 
       4978 
     | 
    
         
            -
               
     | 
| 
      
 4880 
     | 
    
         
            +
              l1152:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4979 
4881 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "BlockQuoteRaw", yybuf+yypos));
         
     | 
| 
       4980 
4882 
     | 
    
         
             
              return 0;
         
     | 
| 
       4981 
4883 
     | 
    
         
             
            }
         
     | 
| 
       4982 
4884 
     | 
    
         
             
            YY_RULE(int) yy_Endline()
         
     | 
| 
       4983 
4885 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       4984 
4886 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "Endline"));
         
     | 
| 
       4985 
     | 
    
         
            -
              {  int  
     | 
| 
       4986 
     | 
    
         
            -
               
     | 
| 
      
 4887 
     | 
    
         
            +
              {  int yypos1172= yypos, yythunkpos1172= yythunkpos;  if (!yy_LineBreak()) goto l1173;  goto l1172;
         
     | 
| 
      
 4888 
     | 
    
         
            +
              l1173:;	  yypos= yypos1172; yythunkpos= yythunkpos1172;  if (!yy_TerminalEndline()) goto l1174;  goto l1172;
         
     | 
| 
      
 4889 
     | 
    
         
            +
              l1174:;	  yypos= yypos1172; yythunkpos= yythunkpos1172;  if (!yy_NormalEndline()) goto l1171;
         
     | 
| 
       4987 
4890 
     | 
    
         
             
              }
         
     | 
| 
       4988 
     | 
    
         
            -
               
     | 
| 
      
 4891 
     | 
    
         
            +
              l1172:;	
         
     | 
| 
       4989 
4892 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Endline", yybuf+yypos));
         
     | 
| 
       4990 
4893 
     | 
    
         
             
              return 1;
         
     | 
| 
       4991 
     | 
    
         
            -
               
     | 
| 
      
 4894 
     | 
    
         
            +
              l1171:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       4992 
4895 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Endline", yybuf+yypos));
         
     | 
| 
       4993 
4896 
     | 
    
         
             
              return 0;
         
     | 
| 
       4994 
4897 
     | 
    
         
             
            }
         
     | 
| 
       4995 
4898 
     | 
    
         
             
            YY_RULE(int) yy_SetextHeading2()
         
     | 
| 
       4996 
4899 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 1, 0);
         
     | 
| 
       4997 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "SetextHeading2"));  if (!yy_StartList()) goto  
     | 
| 
       4998 
     | 
    
         
            -
              {  int  
     | 
| 
       4999 
     | 
    
         
            -
               
     | 
| 
       5000 
     | 
    
         
            -
              }  if (!yy_Inline()) goto  
     | 
| 
       5001 
     | 
    
         
            -
               
     | 
| 
       5002 
     | 
    
         
            -
              {  int  
     | 
| 
       5003 
     | 
    
         
            -
              {  int  
     | 
| 
       5004 
     | 
    
         
            -
               
     | 
| 
       5005 
     | 
    
         
            -
              }  if (!yy_Inline()) goto  
     | 
| 
       5006 
     | 
    
         
            -
               
     | 
| 
       5007 
     | 
    
         
            -
              }  if (!yy_Newline()) goto  
     | 
| 
       5008 
     | 
    
         
            -
               
     | 
| 
       5009 
     | 
    
         
            -
              {  int  
     | 
| 
       5010 
     | 
    
         
            -
               
     | 
| 
       5011 
     | 
    
         
            -
              }  if (!yy_Newline()) goto  
     | 
| 
      
 4900 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "SetextHeading2"));  if (!yy_StartList()) goto l1175;  yyDo(yySet, -1, 0);
         
     | 
| 
      
 4901 
     | 
    
         
            +
              {  int yypos1178= yypos, yythunkpos1178= yythunkpos;  if (!yy_Endline()) goto l1178;  goto l1175;
         
     | 
| 
      
 4902 
     | 
    
         
            +
              l1178:;	  yypos= yypos1178; yythunkpos= yythunkpos1178;
         
     | 
| 
      
 4903 
     | 
    
         
            +
              }  if (!yy_Inline()) goto l1175;  yyDo(yy_1_SetextHeading2, yybegin, yyend);
         
     | 
| 
      
 4904 
     | 
    
         
            +
              l1176:;	
         
     | 
| 
      
 4905 
     | 
    
         
            +
              {  int yypos1177= yypos, yythunkpos1177= yythunkpos;
         
     | 
| 
      
 4906 
     | 
    
         
            +
              {  int yypos1179= yypos, yythunkpos1179= yythunkpos;  if (!yy_Endline()) goto l1179;  goto l1177;
         
     | 
| 
      
 4907 
     | 
    
         
            +
              l1179:;	  yypos= yypos1179; yythunkpos= yythunkpos1179;
         
     | 
| 
      
 4908 
     | 
    
         
            +
              }  if (!yy_Inline()) goto l1177;  yyDo(yy_1_SetextHeading2, yybegin, yyend);  goto l1176;
         
     | 
| 
      
 4909 
     | 
    
         
            +
              l1177:;	  yypos= yypos1177; yythunkpos= yythunkpos1177;
         
     | 
| 
      
 4910 
     | 
    
         
            +
              }  if (!yy_Newline()) goto l1175;  if (!yymatchString("---")) goto l1175;
         
     | 
| 
      
 4911 
     | 
    
         
            +
              l1180:;	
         
     | 
| 
      
 4912 
     | 
    
         
            +
              {  int yypos1181= yypos, yythunkpos1181= yythunkpos;  if (!yymatchChar('-')) goto l1181;  goto l1180;
         
     | 
| 
      
 4913 
     | 
    
         
            +
              l1181:;	  yypos= yypos1181; yythunkpos= yythunkpos1181;
         
     | 
| 
      
 4914 
     | 
    
         
            +
              }  if (!yy_Newline()) goto l1175;  yyDo(yy_2_SetextHeading2, yybegin, yyend);
         
     | 
| 
       5012 
4915 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "SetextHeading2", yybuf+yypos));  yyDo(yyPop, 1, 0);
         
     | 
| 
       5013 
4916 
     | 
    
         
             
              return 1;
         
     | 
| 
       5014 
     | 
    
         
            -
               
     | 
| 
      
 4917 
     | 
    
         
            +
              l1175:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5015 
4918 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "SetextHeading2", yybuf+yypos));
         
     | 
| 
       5016 
4919 
     | 
    
         
             
              return 0;
         
     | 
| 
       5017 
4920 
     | 
    
         
             
            }
         
     | 
| 
       5018 
4921 
     | 
    
         
             
            YY_RULE(int) yy_SetextHeading1()
         
     | 
| 
       5019 
4922 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 1, 0);
         
     | 
| 
       5020 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "SetextHeading1"));  if (!yy_StartList()) goto  
     | 
| 
       5021 
     | 
    
         
            -
              {  int  
     | 
| 
       5022 
     | 
    
         
            -
               
     | 
| 
       5023 
     | 
    
         
            -
              }  if (!yy_Inline()) goto  
     | 
| 
       5024 
     | 
    
         
            -
               
     | 
| 
       5025 
     | 
    
         
            -
              {  int  
     | 
| 
       5026 
     | 
    
         
            -
              {  int  
     | 
| 
       5027 
     | 
    
         
            -
               
     | 
| 
       5028 
     | 
    
         
            -
              }  if (!yy_Inline()) goto  
     | 
| 
       5029 
     | 
    
         
            -
               
     | 
| 
       5030 
     | 
    
         
            -
              }  if (!yy_Newline()) goto  
     | 
| 
       5031 
     | 
    
         
            -
               
     | 
| 
       5032 
     | 
    
         
            -
              {  int  
     | 
| 
       5033 
     | 
    
         
            -
               
     | 
| 
       5034 
     | 
    
         
            -
              }  if (!yy_Newline()) goto  
     | 
| 
      
 4923 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "SetextHeading1"));  if (!yy_StartList()) goto l1182;  yyDo(yySet, -1, 0);
         
     | 
| 
      
 4924 
     | 
    
         
            +
              {  int yypos1185= yypos, yythunkpos1185= yythunkpos;  if (!yy_Endline()) goto l1185;  goto l1182;
         
     | 
| 
      
 4925 
     | 
    
         
            +
              l1185:;	  yypos= yypos1185; yythunkpos= yythunkpos1185;
         
     | 
| 
      
 4926 
     | 
    
         
            +
              }  if (!yy_Inline()) goto l1182;  yyDo(yy_1_SetextHeading1, yybegin, yyend);
         
     | 
| 
      
 4927 
     | 
    
         
            +
              l1183:;	
         
     | 
| 
      
 4928 
     | 
    
         
            +
              {  int yypos1184= yypos, yythunkpos1184= yythunkpos;
         
     | 
| 
      
 4929 
     | 
    
         
            +
              {  int yypos1186= yypos, yythunkpos1186= yythunkpos;  if (!yy_Endline()) goto l1186;  goto l1184;
         
     | 
| 
      
 4930 
     | 
    
         
            +
              l1186:;	  yypos= yypos1186; yythunkpos= yythunkpos1186;
         
     | 
| 
      
 4931 
     | 
    
         
            +
              }  if (!yy_Inline()) goto l1184;  yyDo(yy_1_SetextHeading1, yybegin, yyend);  goto l1183;
         
     | 
| 
      
 4932 
     | 
    
         
            +
              l1184:;	  yypos= yypos1184; yythunkpos= yythunkpos1184;
         
     | 
| 
      
 4933 
     | 
    
         
            +
              }  if (!yy_Newline()) goto l1182;  if (!yymatchString("===")) goto l1182;
         
     | 
| 
      
 4934 
     | 
    
         
            +
              l1187:;	
         
     | 
| 
      
 4935 
     | 
    
         
            +
              {  int yypos1188= yypos, yythunkpos1188= yythunkpos;  if (!yymatchChar('=')) goto l1188;  goto l1187;
         
     | 
| 
      
 4936 
     | 
    
         
            +
              l1188:;	  yypos= yypos1188; yythunkpos= yythunkpos1188;
         
     | 
| 
      
 4937 
     | 
    
         
            +
              }  if (!yy_Newline()) goto l1182;  yyDo(yy_2_SetextHeading1, yybegin, yyend);
         
     | 
| 
       5035 
4938 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "SetextHeading1", yybuf+yypos));  yyDo(yyPop, 1, 0);
         
     | 
| 
       5036 
4939 
     | 
    
         
             
              return 1;
         
     | 
| 
       5037 
     | 
    
         
            -
               
     | 
| 
      
 4940 
     | 
    
         
            +
              l1182:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5038 
4941 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "SetextHeading1", yybuf+yypos));
         
     | 
| 
       5039 
4942 
     | 
    
         
             
              return 0;
         
     | 
| 
       5040 
4943 
     | 
    
         
             
            }
         
     | 
| 
       5041 
4944 
     | 
    
         
             
            YY_RULE(int) yy_SetextHeading()
         
     | 
| 
       5042 
4945 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       5043 
4946 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "SetextHeading"));
         
     | 
| 
       5044 
     | 
    
         
            -
              {  int  
     | 
| 
       5045 
     | 
    
         
            -
               
     | 
| 
      
 4947 
     | 
    
         
            +
              {  int yypos1190= yypos, yythunkpos1190= yythunkpos;  if (!yy_SetextHeading1()) goto l1191;  goto l1190;
         
     | 
| 
      
 4948 
     | 
    
         
            +
              l1191:;	  yypos= yypos1190; yythunkpos= yythunkpos1190;  if (!yy_SetextHeading2()) goto l1189;
         
     | 
| 
       5046 
4949 
     | 
    
         
             
              }
         
     | 
| 
       5047 
     | 
    
         
            -
               
     | 
| 
      
 4950 
     | 
    
         
            +
              l1190:;	
         
     | 
| 
       5048 
4951 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "SetextHeading", yybuf+yypos));
         
     | 
| 
       5049 
4952 
     | 
    
         
             
              return 1;
         
     | 
| 
       5050 
     | 
    
         
            -
               
     | 
| 
      
 4953 
     | 
    
         
            +
              l1189:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5051 
4954 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "SetextHeading", yybuf+yypos));
         
     | 
| 
       5052 
4955 
     | 
    
         
             
              return 0;
         
     | 
| 
       5053 
4956 
     | 
    
         
             
            }
         
     | 
| 
       5054 
4957 
     | 
    
         
             
            YY_RULE(int) yy_AtxHeading()
         
     | 
| 
       5055 
4958 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 2, 0);
         
     | 
| 
       5056 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "AtxHeading"));  if (!yy_AtxStart()) goto  
     | 
| 
       5057 
     | 
    
         
            -
               
     | 
| 
       5058 
     | 
    
         
            -
              {  int  
     | 
| 
       5059 
     | 
    
         
            -
               
     | 
| 
       5060 
     | 
    
         
            -
              }
         
     | 
| 
       5061 
     | 
    
         
            -
              {  int  
     | 
| 
       5062 
     | 
    
         
            -
               
     | 
| 
       5063 
     | 
    
         
            -
              {  int  
     | 
| 
       5064 
     | 
    
         
            -
               
     | 
| 
       5065 
     | 
    
         
            -
              }  if (!yy_Sp()) goto  
     | 
| 
       5066 
     | 
    
         
            -
               
     | 
| 
       5067 
     | 
    
         
            -
              }
         
     | 
| 
       5068 
     | 
    
         
            -
               
     | 
| 
      
 4959 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "AtxHeading"));  if (!yy_AtxStart()) goto l1192;  yyDo(yySet, -2, 0);  if (!yy_Sp()) goto l1192;  if (!yy_StartList()) goto l1192;  yyDo(yySet, -1, 0);  if (!yy_AtxInline()) goto l1192;  yyDo(yy_1_AtxHeading, yybegin, yyend);
         
     | 
| 
      
 4960 
     | 
    
         
            +
              l1193:;	
         
     | 
| 
      
 4961 
     | 
    
         
            +
              {  int yypos1194= yypos, yythunkpos1194= yythunkpos;  if (!yy_AtxInline()) goto l1194;  yyDo(yy_1_AtxHeading, yybegin, yyend);  goto l1193;
         
     | 
| 
      
 4962 
     | 
    
         
            +
              l1194:;	  yypos= yypos1194; yythunkpos= yythunkpos1194;
         
     | 
| 
      
 4963 
     | 
    
         
            +
              }
         
     | 
| 
      
 4964 
     | 
    
         
            +
              {  int yypos1195= yypos, yythunkpos1195= yythunkpos;  if (!yy_Sp()) goto l1195;
         
     | 
| 
      
 4965 
     | 
    
         
            +
              l1197:;	
         
     | 
| 
      
 4966 
     | 
    
         
            +
              {  int yypos1198= yypos, yythunkpos1198= yythunkpos;  if (!yymatchChar('#')) goto l1198;  goto l1197;
         
     | 
| 
      
 4967 
     | 
    
         
            +
              l1198:;	  yypos= yypos1198; yythunkpos= yythunkpos1198;
         
     | 
| 
      
 4968 
     | 
    
         
            +
              }  if (!yy_Sp()) goto l1195;  goto l1196;
         
     | 
| 
      
 4969 
     | 
    
         
            +
              l1195:;	  yypos= yypos1195; yythunkpos= yythunkpos1195;
         
     | 
| 
      
 4970 
     | 
    
         
            +
              }
         
     | 
| 
      
 4971 
     | 
    
         
            +
              l1196:;	  if (!yy_Newline()) goto l1192;  yyDo(yy_2_AtxHeading, yybegin, yyend);
         
     | 
| 
       5069 
4972 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "AtxHeading", yybuf+yypos));  yyDo(yyPop, 2, 0);
         
     | 
| 
       5070 
4973 
     | 
    
         
             
              return 1;
         
     | 
| 
       5071 
     | 
    
         
            -
               
     | 
| 
      
 4974 
     | 
    
         
            +
              l1192:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5072 
4975 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "AtxHeading", yybuf+yypos));
         
     | 
| 
       5073 
4976 
     | 
    
         
             
              return 0;
         
     | 
| 
       5074 
4977 
     | 
    
         
             
            }
         
     | 
| 
       5075 
4978 
     | 
    
         
             
            YY_RULE(int) yy_AtxStart()
         
     | 
| 
       5076 
4979 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       5077 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "AtxStart"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto  
     | 
| 
       5078 
     | 
    
         
            -
              {  int  
     | 
| 
       5079 
     | 
    
         
            -
               
     | 
| 
       5080 
     | 
    
         
            -
               
     | 
| 
       5081 
     | 
    
         
            -
               
     | 
| 
       5082 
     | 
    
         
            -
               
     | 
| 
       5083 
     | 
    
         
            -
               
     | 
| 
      
 4980 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "AtxStart"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto l1199;
         
     | 
| 
      
 4981 
     | 
    
         
            +
              {  int yypos1200= yypos, yythunkpos1200= yythunkpos;  if (!yymatchString("######")) goto l1201;  goto l1200;
         
     | 
| 
      
 4982 
     | 
    
         
            +
              l1201:;	  yypos= yypos1200; yythunkpos= yythunkpos1200;  if (!yymatchString("#####")) goto l1202;  goto l1200;
         
     | 
| 
      
 4983 
     | 
    
         
            +
              l1202:;	  yypos= yypos1200; yythunkpos= yythunkpos1200;  if (!yymatchString("####")) goto l1203;  goto l1200;
         
     | 
| 
      
 4984 
     | 
    
         
            +
              l1203:;	  yypos= yypos1200; yythunkpos= yythunkpos1200;  if (!yymatchString("###")) goto l1204;  goto l1200;
         
     | 
| 
      
 4985 
     | 
    
         
            +
              l1204:;	  yypos= yypos1200; yythunkpos= yythunkpos1200;  if (!yymatchString("##")) goto l1205;  goto l1200;
         
     | 
| 
      
 4986 
     | 
    
         
            +
              l1205:;	  yypos= yypos1200; yythunkpos= yythunkpos1200;  if (!yymatchChar('#')) goto l1199;
         
     | 
| 
       5084 
4987 
     | 
    
         
             
              }
         
     | 
| 
       5085 
     | 
    
         
            -
               
     | 
| 
      
 4988 
     | 
    
         
            +
              l1200:;	  yyText(yybegin, yyend);  if (!(YY_END)) goto l1199;  yyDo(yy_1_AtxStart, yybegin, yyend);
         
     | 
| 
       5086 
4989 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "AtxStart", yybuf+yypos));
         
     | 
| 
       5087 
4990 
     | 
    
         
             
              return 1;
         
     | 
| 
       5088 
     | 
    
         
            -
               
     | 
| 
      
 4991 
     | 
    
         
            +
              l1199:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5089 
4992 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "AtxStart", yybuf+yypos));
         
     | 
| 
       5090 
4993 
     | 
    
         
             
              return 0;
         
     | 
| 
       5091 
4994 
     | 
    
         
             
            }
         
     | 
| 
       5092 
4995 
     | 
    
         
             
            YY_RULE(int) yy_Inline()
         
     | 
| 
       5093 
4996 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       5094 
4997 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "Inline"));
         
     | 
| 
       5095 
     | 
    
         
            -
              {  int  
     | 
| 
       5096 
     | 
    
         
            -
               
     | 
| 
       5097 
     | 
    
         
            -
               
     | 
| 
       5098 
     | 
    
         
            -
               
     | 
| 
       5099 
     | 
    
         
            -
               
     | 
| 
       5100 
     | 
    
         
            -
               
     | 
| 
       5101 
     | 
    
         
            -
               
     | 
| 
       5102 
     | 
    
         
            -
               
     | 
| 
       5103 
     | 
    
         
            -
               
     | 
| 
       5104 
     | 
    
         
            -
               
     | 
| 
       5105 
     | 
    
         
            -
               
     | 
| 
       5106 
     | 
    
         
            -
               
     | 
| 
       5107 
     | 
    
         
            -
               
     | 
| 
       5108 
     | 
    
         
            -
               
     | 
| 
       5109 
     | 
    
         
            -
               
     | 
| 
       5110 
     | 
    
         
            -
               
     | 
| 
       5111 
     | 
    
         
            -
               
     | 
| 
       5112 
     | 
    
         
            -
               
     | 
| 
       5113 
     | 
    
         
            -
              l1225:;	
         
     | 
| 
      
 4998 
     | 
    
         
            +
              {  int yypos1207= yypos, yythunkpos1207= yythunkpos;  if (!yy_Str()) goto l1208;  goto l1207;
         
     | 
| 
      
 4999 
     | 
    
         
            +
              l1208:;	  yypos= yypos1207; yythunkpos= yythunkpos1207;  if (!yy_Endline()) goto l1209;  goto l1207;
         
     | 
| 
      
 5000 
     | 
    
         
            +
              l1209:;	  yypos= yypos1207; yythunkpos= yythunkpos1207;  if (!yy_UlOrStarLine()) goto l1210;  goto l1207;
         
     | 
| 
      
 5001 
     | 
    
         
            +
              l1210:;	  yypos= yypos1207; yythunkpos= yythunkpos1207;  if (!yy_Space()) goto l1211;  goto l1207;
         
     | 
| 
      
 5002 
     | 
    
         
            +
              l1211:;	  yypos= yypos1207; yythunkpos= yythunkpos1207;  if (!yy_Strong()) goto l1212;  goto l1207;
         
     | 
| 
      
 5003 
     | 
    
         
            +
              l1212:;	  yypos= yypos1207; yythunkpos= yythunkpos1207;  if (!yy_Emph()) goto l1213;  goto l1207;
         
     | 
| 
      
 5004 
     | 
    
         
            +
              l1213:;	  yypos= yypos1207; yythunkpos= yythunkpos1207;  if (!yy_Image()) goto l1214;  goto l1207;
         
     | 
| 
      
 5005 
     | 
    
         
            +
              l1214:;	  yypos= yypos1207; yythunkpos= yythunkpos1207;  if (!yy_Link()) goto l1215;  goto l1207;
         
     | 
| 
      
 5006 
     | 
    
         
            +
              l1215:;	  yypos= yypos1207; yythunkpos= yythunkpos1207;  if (!yy_NoteReference()) goto l1216;  goto l1207;
         
     | 
| 
      
 5007 
     | 
    
         
            +
              l1216:;	  yypos= yypos1207; yythunkpos= yythunkpos1207;  if (!yy_InlineNote()) goto l1217;  goto l1207;
         
     | 
| 
      
 5008 
     | 
    
         
            +
              l1217:;	  yypos= yypos1207; yythunkpos= yythunkpos1207;  if (!yy_Code()) goto l1218;  goto l1207;
         
     | 
| 
      
 5009 
     | 
    
         
            +
              l1218:;	  yypos= yypos1207; yythunkpos= yythunkpos1207;  if (!yy_RawHtml()) goto l1219;  goto l1207;
         
     | 
| 
      
 5010 
     | 
    
         
            +
              l1219:;	  yypos= yypos1207; yythunkpos= yythunkpos1207;  if (!yy_Entity()) goto l1220;  goto l1207;
         
     | 
| 
      
 5011 
     | 
    
         
            +
              l1220:;	  yypos= yypos1207; yythunkpos= yythunkpos1207;  if (!yy_EscapedChar()) goto l1221;  goto l1207;
         
     | 
| 
      
 5012 
     | 
    
         
            +
              l1221:;	  yypos= yypos1207; yythunkpos= yythunkpos1207;  if (!yy_Smart()) goto l1222;  goto l1207;
         
     | 
| 
      
 5013 
     | 
    
         
            +
              l1222:;	  yypos= yypos1207; yythunkpos= yythunkpos1207;  if (!yy_Symbol()) goto l1206;
         
     | 
| 
      
 5014 
     | 
    
         
            +
              }
         
     | 
| 
      
 5015 
     | 
    
         
            +
              l1207:;	
         
     | 
| 
       5114 
5016 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Inline", yybuf+yypos));
         
     | 
| 
       5115 
5017 
     | 
    
         
             
              return 1;
         
     | 
| 
       5116 
     | 
    
         
            -
               
     | 
| 
      
 5018 
     | 
    
         
            +
              l1206:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5117 
5019 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Inline", yybuf+yypos));
         
     | 
| 
       5118 
5020 
     | 
    
         
             
              return 0;
         
     | 
| 
       5119 
5021 
     | 
    
         
             
            }
         
     | 
| 
       5120 
5022 
     | 
    
         
             
            YY_RULE(int) yy_Sp()
         
     | 
| 
       5121 
5023 
     | 
    
         
             
            {
         
     | 
| 
       5122 
5024 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "Sp"));
         
     | 
| 
       5123 
     | 
    
         
            -
               
     | 
| 
       5124 
     | 
    
         
            -
              {  int  
     | 
| 
       5125 
     | 
    
         
            -
               
     | 
| 
      
 5025 
     | 
    
         
            +
              l1224:;	
         
     | 
| 
      
 5026 
     | 
    
         
            +
              {  int yypos1225= yypos, yythunkpos1225= yythunkpos;  if (!yy_Spacechar()) goto l1225;  goto l1224;
         
     | 
| 
      
 5027 
     | 
    
         
            +
              l1225:;	  yypos= yypos1225; yythunkpos= yythunkpos1225;
         
     | 
| 
       5126 
5028 
     | 
    
         
             
              }
         
     | 
| 
       5127 
5029 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Sp", yybuf+yypos));
         
     | 
| 
       5128 
5030 
     | 
    
         
             
              return 1;
         
     | 
| 
         @@ -5130,321 +5032,325 @@ YY_RULE(int) yy_Sp() 
     | 
|
| 
       5130 
5032 
     | 
    
         
             
            YY_RULE(int) yy_Newline()
         
     | 
| 
       5131 
5033 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       5132 
5034 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "Newline"));
         
     | 
| 
       5133 
     | 
    
         
            -
              {  int  
     | 
| 
       5134 
     | 
    
         
            -
               
     | 
| 
       5135 
     | 
    
         
            -
              {  int  
     | 
| 
       5136 
     | 
    
         
            -
               
     | 
| 
      
 5035 
     | 
    
         
            +
              {  int yypos1227= yypos, yythunkpos1227= yythunkpos;  if (!yymatchChar('\n')) goto l1228;  goto l1227;
         
     | 
| 
      
 5036 
     | 
    
         
            +
              l1228:;	  yypos= yypos1227; yythunkpos= yythunkpos1227;  if (!yymatchChar('\r')) goto l1226;
         
     | 
| 
      
 5037 
     | 
    
         
            +
              {  int yypos1229= yypos, yythunkpos1229= yythunkpos;  if (!yymatchChar('\n')) goto l1229;  goto l1230;
         
     | 
| 
      
 5038 
     | 
    
         
            +
              l1229:;	  yypos= yypos1229; yythunkpos= yythunkpos1229;
         
     | 
| 
       5137 
5039 
     | 
    
         
             
              }
         
     | 
| 
       5138 
     | 
    
         
            -
               
     | 
| 
      
 5040 
     | 
    
         
            +
              l1230:;	
         
     | 
| 
       5139 
5041 
     | 
    
         
             
              }
         
     | 
| 
       5140 
     | 
    
         
            -
               
     | 
| 
      
 5042 
     | 
    
         
            +
              l1227:;	
         
     | 
| 
       5141 
5043 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Newline", yybuf+yypos));
         
     | 
| 
       5142 
5044 
     | 
    
         
             
              return 1;
         
     | 
| 
       5143 
     | 
    
         
            -
               
     | 
| 
      
 5045 
     | 
    
         
            +
              l1226:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5144 
5046 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Newline", yybuf+yypos));
         
     | 
| 
       5145 
5047 
     | 
    
         
             
              return 0;
         
     | 
| 
       5146 
5048 
     | 
    
         
             
            }
         
     | 
| 
       5147 
5049 
     | 
    
         
             
            YY_RULE(int) yy_AtxInline()
         
     | 
| 
       5148 
5050 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       5149 
5051 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "AtxInline"));
         
     | 
| 
       5150 
     | 
    
         
            -
              {  int  
     | 
| 
       5151 
     | 
    
         
            -
               
     | 
| 
       5152 
     | 
    
         
            -
              }
         
     | 
| 
       5153 
     | 
    
         
            -
              {  int  
     | 
| 
       5154 
     | 
    
         
            -
               
     | 
| 
       5155 
     | 
    
         
            -
              {  int  
     | 
| 
       5156 
     | 
    
         
            -
               
     | 
| 
       5157 
     | 
    
         
            -
              }  if (!yy_Sp()) goto  
     | 
| 
       5158 
     | 
    
         
            -
               
     | 
| 
       5159 
     | 
    
         
            -
              }  if (!yy_Inline()) goto  
     | 
| 
      
 5052 
     | 
    
         
            +
              {  int yypos1232= yypos, yythunkpos1232= yythunkpos;  if (!yy_Newline()) goto l1232;  goto l1231;
         
     | 
| 
      
 5053 
     | 
    
         
            +
              l1232:;	  yypos= yypos1232; yythunkpos= yythunkpos1232;
         
     | 
| 
      
 5054 
     | 
    
         
            +
              }
         
     | 
| 
      
 5055 
     | 
    
         
            +
              {  int yypos1233= yypos, yythunkpos1233= yythunkpos;  if (!yy_Sp()) goto l1233;
         
     | 
| 
      
 5056 
     | 
    
         
            +
              l1234:;	
         
     | 
| 
      
 5057 
     | 
    
         
            +
              {  int yypos1235= yypos, yythunkpos1235= yythunkpos;  if (!yymatchChar('#')) goto l1235;  goto l1234;
         
     | 
| 
      
 5058 
     | 
    
         
            +
              l1235:;	  yypos= yypos1235; yythunkpos= yythunkpos1235;
         
     | 
| 
      
 5059 
     | 
    
         
            +
              }  if (!yy_Sp()) goto l1233;  if (!yy_Newline()) goto l1233;  goto l1231;
         
     | 
| 
      
 5060 
     | 
    
         
            +
              l1233:;	  yypos= yypos1233; yythunkpos= yythunkpos1233;
         
     | 
| 
      
 5061 
     | 
    
         
            +
              }  if (!yy_Inline()) goto l1231;
         
     | 
| 
       5160 
5062 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "AtxInline", yybuf+yypos));
         
     | 
| 
       5161 
5063 
     | 
    
         
             
              return 1;
         
     | 
| 
       5162 
     | 
    
         
            -
               
     | 
| 
      
 5064 
     | 
    
         
            +
              l1231:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5163 
5065 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "AtxInline", yybuf+yypos));
         
     | 
| 
       5164 
5066 
     | 
    
         
             
              return 0;
         
     | 
| 
       5165 
5067 
     | 
    
         
             
            }
         
     | 
| 
       5166 
5068 
     | 
    
         
             
            YY_RULE(int) yy_Inlines()
         
     | 
| 
       5167 
5069 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 2, 0);
         
     | 
| 
       5168 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "Inlines"));  if (!yy_StartList()) goto  
     | 
| 
       5169 
     | 
    
         
            -
              {  int  
     | 
| 
       5170 
     | 
    
         
            -
              {  int  
     | 
| 
       5171 
     | 
    
         
            -
               
     | 
| 
       5172 
     | 
    
         
            -
              }  if (!yy_Inline()) goto  
     | 
| 
       5173 
     | 
    
         
            -
               
     | 
| 
       5174 
     | 
    
         
            -
              {  int  
     | 
| 
      
 5070 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "Inlines"));  if (!yy_StartList()) goto l1236;  yyDo(yySet, -2, 0);
         
     | 
| 
      
 5071 
     | 
    
         
            +
              {  int yypos1239= yypos, yythunkpos1239= yythunkpos;
         
     | 
| 
      
 5072 
     | 
    
         
            +
              {  int yypos1241= yypos, yythunkpos1241= yythunkpos;  if (!yy_Endline()) goto l1241;  goto l1240;
         
     | 
| 
      
 5073 
     | 
    
         
            +
              l1241:;	  yypos= yypos1241; yythunkpos= yythunkpos1241;
         
     | 
| 
      
 5074 
     | 
    
         
            +
              }  if (!yy_Inline()) goto l1240;  yyDo(yy_1_Inlines, yybegin, yyend);  goto l1239;
         
     | 
| 
      
 5075 
     | 
    
         
            +
              l1240:;	  yypos= yypos1239; yythunkpos= yythunkpos1239;  if (!yy_Endline()) goto l1236;  yyDo(yySet, -1, 0);
         
     | 
| 
      
 5076 
     | 
    
         
            +
              {  int yypos1242= yypos, yythunkpos1242= yythunkpos;  if (!yy_Inline()) goto l1236;  yypos= yypos1242; yythunkpos= yythunkpos1242;
         
     | 
| 
       5175 
5077 
     | 
    
         
             
              }  yyDo(yy_2_Inlines, yybegin, yyend);
         
     | 
| 
       5176 
5078 
     | 
    
         
             
              }
         
     | 
| 
       5177 
     | 
    
         
            -
               
     | 
| 
       5178 
     | 
    
         
            -
               
     | 
| 
       5179 
     | 
    
         
            -
              {  int  
     | 
| 
       5180 
     | 
    
         
            -
              {  int  
     | 
| 
       5181 
     | 
    
         
            -
              {  int  
     | 
| 
       5182 
     | 
    
         
            -
               
     | 
| 
       5183 
     | 
    
         
            -
              }  if (!yy_Inline()) goto  
     | 
| 
       5184 
     | 
    
         
            -
               
     | 
| 
       5185 
     | 
    
         
            -
              {  int  
     | 
| 
      
 5079 
     | 
    
         
            +
              l1239:;	
         
     | 
| 
      
 5080 
     | 
    
         
            +
              l1237:;	
         
     | 
| 
      
 5081 
     | 
    
         
            +
              {  int yypos1238= yypos, yythunkpos1238= yythunkpos;
         
     | 
| 
      
 5082 
     | 
    
         
            +
              {  int yypos1243= yypos, yythunkpos1243= yythunkpos;
         
     | 
| 
      
 5083 
     | 
    
         
            +
              {  int yypos1245= yypos, yythunkpos1245= yythunkpos;  if (!yy_Endline()) goto l1245;  goto l1244;
         
     | 
| 
      
 5084 
     | 
    
         
            +
              l1245:;	  yypos= yypos1245; yythunkpos= yythunkpos1245;
         
     | 
| 
      
 5085 
     | 
    
         
            +
              }  if (!yy_Inline()) goto l1244;  yyDo(yy_1_Inlines, yybegin, yyend);  goto l1243;
         
     | 
| 
      
 5086 
     | 
    
         
            +
              l1244:;	  yypos= yypos1243; yythunkpos= yythunkpos1243;  if (!yy_Endline()) goto l1238;  yyDo(yySet, -1, 0);
         
     | 
| 
      
 5087 
     | 
    
         
            +
              {  int yypos1246= yypos, yythunkpos1246= yythunkpos;  if (!yy_Inline()) goto l1238;  yypos= yypos1246; yythunkpos= yythunkpos1246;
         
     | 
| 
       5186 
5088 
     | 
    
         
             
              }  yyDo(yy_2_Inlines, yybegin, yyend);
         
     | 
| 
       5187 
5089 
     | 
    
         
             
              }
         
     | 
| 
       5188 
     | 
    
         
            -
               
     | 
| 
       5189 
     | 
    
         
            -
               
     | 
| 
      
 5090 
     | 
    
         
            +
              l1243:;	  goto l1237;
         
     | 
| 
      
 5091 
     | 
    
         
            +
              l1238:;	  yypos= yypos1238; yythunkpos= yythunkpos1238;
         
     | 
| 
       5190 
5092 
     | 
    
         
             
              }
         
     | 
| 
       5191 
     | 
    
         
            -
              {  int  
     | 
| 
       5192 
     | 
    
         
            -
               
     | 
| 
      
 5093 
     | 
    
         
            +
              {  int yypos1247= yypos, yythunkpos1247= yythunkpos;  if (!yy_Endline()) goto l1247;  goto l1248;
         
     | 
| 
      
 5094 
     | 
    
         
            +
              l1247:;	  yypos= yypos1247; yythunkpos= yythunkpos1247;
         
     | 
| 
       5193 
5095 
     | 
    
         
             
              }
         
     | 
| 
       5194 
     | 
    
         
            -
               
     | 
| 
      
 5096 
     | 
    
         
            +
              l1248:;	  yyDo(yy_3_Inlines, yybegin, yyend);
         
     | 
| 
       5195 
5097 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Inlines", yybuf+yypos));  yyDo(yyPop, 2, 0);
         
     | 
| 
       5196 
5098 
     | 
    
         
             
              return 1;
         
     | 
| 
       5197 
     | 
    
         
            -
               
     | 
| 
      
 5099 
     | 
    
         
            +
              l1236:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5198 
5100 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Inlines", yybuf+yypos));
         
     | 
| 
       5199 
5101 
     | 
    
         
             
              return 0;
         
     | 
| 
       5200 
5102 
     | 
    
         
             
            }
         
     | 
| 
       5201 
5103 
     | 
    
         
             
            YY_RULE(int) yy_NonindentSpace()
         
     | 
| 
       5202 
5104 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       5203 
5105 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "NonindentSpace"));
         
     | 
| 
       5204 
     | 
    
         
            -
              {  int  
     | 
| 
       5205 
     | 
    
         
            -
               
     | 
| 
       5206 
     | 
    
         
            -
               
     | 
| 
       5207 
     | 
    
         
            -
               
     | 
| 
      
 5106 
     | 
    
         
            +
              {  int yypos1250= yypos, yythunkpos1250= yythunkpos;  if (!yymatchString("   ")) goto l1251;  goto l1250;
         
     | 
| 
      
 5107 
     | 
    
         
            +
              l1251:;	  yypos= yypos1250; yythunkpos= yythunkpos1250;  if (!yymatchString("  ")) goto l1252;  goto l1250;
         
     | 
| 
      
 5108 
     | 
    
         
            +
              l1252:;	  yypos= yypos1250; yythunkpos= yythunkpos1250;  if (!yymatchChar(' ')) goto l1253;  goto l1250;
         
     | 
| 
      
 5109 
     | 
    
         
            +
              l1253:;	  yypos= yypos1250; yythunkpos= yythunkpos1250;  if (!yymatchString("")) goto l1249;
         
     | 
| 
       5208 
5110 
     | 
    
         
             
              }
         
     | 
| 
       5209 
     | 
    
         
            -
               
     | 
| 
      
 5111 
     | 
    
         
            +
              l1250:;	
         
     | 
| 
       5210 
5112 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "NonindentSpace", yybuf+yypos));
         
     | 
| 
       5211 
5113 
     | 
    
         
             
              return 1;
         
     | 
| 
       5212 
     | 
    
         
            -
               
     | 
| 
      
 5114 
     | 
    
         
            +
              l1249:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5213 
5115 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "NonindentSpace", yybuf+yypos));
         
     | 
| 
       5214 
5116 
     | 
    
         
             
              return 0;
         
     | 
| 
       5215 
5117 
     | 
    
         
             
            }
         
     | 
| 
       5216 
5118 
     | 
    
         
             
            YY_RULE(int) yy_Plain()
         
     | 
| 
       5217 
5119 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 1, 0);
         
     | 
| 
       5218 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "Plain"));  if (!yy_Inlines()) goto  
     | 
| 
      
 5120 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "Plain"));  if (!yy_Inlines()) goto l1254;  yyDo(yySet, -1, 0);  yyDo(yy_1_Plain, yybegin, yyend);
         
     | 
| 
       5219 
5121 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Plain", yybuf+yypos));  yyDo(yyPop, 1, 0);
         
     | 
| 
       5220 
5122 
     | 
    
         
             
              return 1;
         
     | 
| 
       5221 
     | 
    
         
            -
               
     | 
| 
      
 5123 
     | 
    
         
            +
              l1254:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5222 
5124 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Plain", yybuf+yypos));
         
     | 
| 
       5223 
5125 
     | 
    
         
             
              return 0;
         
     | 
| 
       5224 
5126 
     | 
    
         
             
            }
         
     | 
| 
       5225 
5127 
     | 
    
         
             
            YY_RULE(int) yy_Para()
         
     | 
| 
       5226 
5128 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 1, 0);
         
     | 
| 
       5227 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "Para"));  if (!yy_NonindentSpace()) goto  
     | 
| 
       5228 
     | 
    
         
            -
               
     | 
| 
       5229 
     | 
    
         
            -
              {  int  
     | 
| 
       5230 
     | 
    
         
            -
               
     | 
| 
      
 5129 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "Para"));  if (!yy_NonindentSpace()) goto l1255;  if (!yy_Inlines()) goto l1255;  yyDo(yySet, -1, 0);  if (!yy_BlankLine()) goto l1255;
         
     | 
| 
      
 5130 
     | 
    
         
            +
              l1256:;	
         
     | 
| 
      
 5131 
     | 
    
         
            +
              {  int yypos1257= yypos, yythunkpos1257= yythunkpos;  if (!yy_BlankLine()) goto l1257;  goto l1256;
         
     | 
| 
      
 5132 
     | 
    
         
            +
              l1257:;	  yypos= yypos1257; yythunkpos= yythunkpos1257;
         
     | 
| 
       5231 
5133 
     | 
    
         
             
              }  yyDo(yy_1_Para, yybegin, yyend);
         
     | 
| 
       5232 
5134 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Para", yybuf+yypos));  yyDo(yyPop, 1, 0);
         
     | 
| 
       5233 
5135 
     | 
    
         
             
              return 1;
         
     | 
| 
       5234 
     | 
    
         
            -
               
     | 
| 
      
 5136 
     | 
    
         
            +
              l1255:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5235 
5137 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Para", yybuf+yypos));
         
     | 
| 
       5236 
5138 
     | 
    
         
             
              return 0;
         
     | 
| 
       5237 
5139 
     | 
    
         
             
            }
         
     | 
| 
       5238 
5140 
     | 
    
         
             
            YY_RULE(int) yy_StyleBlock()
         
     | 
| 
       5239 
5141 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       5240 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "StyleBlock"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto  
     | 
| 
       5241 
     | 
    
         
            -
               
     | 
| 
       5242 
     | 
    
         
            -
              {  int  
     | 
| 
       5243 
     | 
    
         
            -
               
     | 
| 
      
 5142 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "StyleBlock"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto l1258;  if (!yy_InStyleTags()) goto l1258;  yyText(yybegin, yyend);  if (!(YY_END)) goto l1258;
         
     | 
| 
      
 5143 
     | 
    
         
            +
              l1259:;	
         
     | 
| 
      
 5144 
     | 
    
         
            +
              {  int yypos1260= yypos, yythunkpos1260= yythunkpos;  if (!yy_BlankLine()) goto l1260;  goto l1259;
         
     | 
| 
      
 5145 
     | 
    
         
            +
              l1260:;	  yypos= yypos1260; yythunkpos= yythunkpos1260;
         
     | 
| 
       5244 
5146 
     | 
    
         
             
              }  yyDo(yy_1_StyleBlock, yybegin, yyend);
         
     | 
| 
       5245 
5147 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "StyleBlock", yybuf+yypos));
         
     | 
| 
       5246 
5148 
     | 
    
         
             
              return 1;
         
     | 
| 
       5247 
     | 
    
         
            -
               
     | 
| 
      
 5149 
     | 
    
         
            +
              l1258:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5248 
5150 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "StyleBlock", yybuf+yypos));
         
     | 
| 
       5249 
5151 
     | 
    
         
             
              return 0;
         
     | 
| 
       5250 
5152 
     | 
    
         
             
            }
         
     | 
| 
       5251 
5153 
     | 
    
         
             
            YY_RULE(int) yy_HtmlBlock()
         
     | 
| 
       5252 
5154 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       5253 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "HtmlBlock"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto  
     | 
| 
       5254 
     | 
    
         
            -
              {  int  
     | 
| 
       5255 
     | 
    
         
            -
               
     | 
| 
       5256 
     | 
    
         
            -
               
     | 
| 
      
 5155 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "HtmlBlock"));  yyText(yybegin, yyend);  if (!(YY_BEGIN)) goto l1261;
         
     | 
| 
      
 5156 
     | 
    
         
            +
              {  int yypos1262= yypos, yythunkpos1262= yythunkpos;  if (!yy_HtmlBlockInTags()) goto l1263;  goto l1262;
         
     | 
| 
      
 5157 
     | 
    
         
            +
              l1263:;	  yypos= yypos1262; yythunkpos= yythunkpos1262;  if (!yy_HtmlComment()) goto l1264;  goto l1262;
         
     | 
| 
      
 5158 
     | 
    
         
            +
              l1264:;	  yypos= yypos1262; yythunkpos= yythunkpos1262;  if (!yy_HtmlBlockSelfClosing()) goto l1261;
         
     | 
| 
       5257 
5159 
     | 
    
         
             
              }
         
     | 
| 
       5258 
     | 
    
         
            -
               
     | 
| 
       5259 
     | 
    
         
            -
               
     | 
| 
       5260 
     | 
    
         
            -
              {  int  
     | 
| 
       5261 
     | 
    
         
            -
               
     | 
| 
      
 5160 
     | 
    
         
            +
              l1262:;	  yyText(yybegin, yyend);  if (!(YY_END)) goto l1261;  if (!yy_BlankLine()) goto l1261;
         
     | 
| 
      
 5161 
     | 
    
         
            +
              l1265:;	
         
     | 
| 
      
 5162 
     | 
    
         
            +
              {  int yypos1266= yypos, yythunkpos1266= yythunkpos;  if (!yy_BlankLine()) goto l1266;  goto l1265;
         
     | 
| 
      
 5163 
     | 
    
         
            +
              l1266:;	  yypos= yypos1266; yythunkpos= yythunkpos1266;
         
     | 
| 
       5262 
5164 
     | 
    
         
             
              }  yyDo(yy_1_HtmlBlock, yybegin, yyend);
         
     | 
| 
       5263 
5165 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlock", yybuf+yypos));
         
     | 
| 
       5264 
5166 
     | 
    
         
             
              return 1;
         
     | 
| 
       5265 
     | 
    
         
            -
               
     | 
| 
      
 5167 
     | 
    
         
            +
              l1261:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5266 
5168 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlock", yybuf+yypos));
         
     | 
| 
       5267 
5169 
     | 
    
         
             
              return 0;
         
     | 
| 
       5268 
5170 
     | 
    
         
             
            }
         
     | 
| 
       5269 
5171 
     | 
    
         
             
            YY_RULE(int) yy_BulletList()
         
     | 
| 
       5270 
5172 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       5271 
5173 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "BulletList"));
         
     | 
| 
       5272 
     | 
    
         
            -
              {  int  
     | 
| 
       5273 
     | 
    
         
            -
               
     | 
| 
      
 5174 
     | 
    
         
            +
              {  int yypos1268= yypos, yythunkpos1268= yythunkpos;  if (!yy_Bullet()) goto l1267;  yypos= yypos1268; yythunkpos= yythunkpos1268;
         
     | 
| 
      
 5175 
     | 
    
         
            +
              }
         
     | 
| 
      
 5176 
     | 
    
         
            +
              {  int yypos1269= yypos, yythunkpos1269= yythunkpos;  if (!yy_ListTight()) goto l1270;  goto l1269;
         
     | 
| 
      
 5177 
     | 
    
         
            +
              l1270:;	  yypos= yypos1269; yythunkpos= yythunkpos1269;  if (!yy_ListLoose()) goto l1267;
         
     | 
| 
       5274 
5178 
     | 
    
         
             
              }
         
     | 
| 
       5275 
     | 
    
         
            -
               
     | 
| 
      
 5179 
     | 
    
         
            +
              l1269:;	  yyDo(yy_1_BulletList, yybegin, yyend);
         
     | 
| 
       5276 
5180 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "BulletList", yybuf+yypos));
         
     | 
| 
       5277 
5181 
     | 
    
         
             
              return 1;
         
     | 
| 
       5278 
     | 
    
         
            -
               
     | 
| 
      
 5182 
     | 
    
         
            +
              l1267:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5279 
5183 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "BulletList", yybuf+yypos));
         
     | 
| 
       5280 
5184 
     | 
    
         
             
              return 0;
         
     | 
| 
       5281 
5185 
     | 
    
         
             
            }
         
     | 
| 
       5282 
5186 
     | 
    
         
             
            YY_RULE(int) yy_OrderedList()
         
     | 
| 
       5283 
5187 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       5284 
5188 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "OrderedList"));
         
     | 
| 
       5285 
     | 
    
         
            -
              {  int  
     | 
| 
       5286 
     | 
    
         
            -
              l1291:;	  yypos= yypos1290; yythunkpos= yythunkpos1290;  if (!yy_OrderedListLoose()) goto l1289;
         
     | 
| 
      
 5189 
     | 
    
         
            +
              {  int yypos1272= yypos, yythunkpos1272= yythunkpos;  if (!yy_Enumerator()) goto l1271;  yypos= yypos1272; yythunkpos= yythunkpos1272;
         
     | 
| 
       5287 
5190 
     | 
    
         
             
              }
         
     | 
| 
       5288 
     | 
    
         
            -
               
     | 
| 
      
 5191 
     | 
    
         
            +
              {  int yypos1273= yypos, yythunkpos1273= yythunkpos;  if (!yy_ListTight()) goto l1274;  goto l1273;
         
     | 
| 
      
 5192 
     | 
    
         
            +
              l1274:;	  yypos= yypos1273; yythunkpos= yythunkpos1273;  if (!yy_ListLoose()) goto l1271;
         
     | 
| 
      
 5193 
     | 
    
         
            +
              }
         
     | 
| 
      
 5194 
     | 
    
         
            +
              l1273:;	  yyDo(yy_1_OrderedList, yybegin, yyend);
         
     | 
| 
       5289 
5195 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "OrderedList", yybuf+yypos));
         
     | 
| 
       5290 
5196 
     | 
    
         
             
              return 1;
         
     | 
| 
       5291 
     | 
    
         
            -
               
     | 
| 
      
 5197 
     | 
    
         
            +
              l1271:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5292 
5198 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "OrderedList", yybuf+yypos));
         
     | 
| 
       5293 
5199 
     | 
    
         
             
              return 0;
         
     | 
| 
       5294 
5200 
     | 
    
         
             
            }
         
     | 
| 
       5295 
5201 
     | 
    
         
             
            YY_RULE(int) yy_Heading()
         
     | 
| 
       5296 
5202 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       5297 
5203 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "Heading"));
         
     | 
| 
       5298 
     | 
    
         
            -
              {  int  
     | 
| 
       5299 
     | 
    
         
            -
               
     | 
| 
      
 5204 
     | 
    
         
            +
              {  int yypos1276= yypos, yythunkpos1276= yythunkpos;  if (!yy_AtxHeading()) goto l1277;  goto l1276;
         
     | 
| 
      
 5205 
     | 
    
         
            +
              l1277:;	  yypos= yypos1276; yythunkpos= yythunkpos1276;  if (!yy_SetextHeading()) goto l1275;
         
     | 
| 
       5300 
5206 
     | 
    
         
             
              }
         
     | 
| 
       5301 
     | 
    
         
            -
               
     | 
| 
      
 5207 
     | 
    
         
            +
              l1276:;	
         
     | 
| 
       5302 
5208 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Heading", yybuf+yypos));
         
     | 
| 
       5303 
5209 
     | 
    
         
             
              return 1;
         
     | 
| 
       5304 
     | 
    
         
            -
               
     | 
| 
      
 5210 
     | 
    
         
            +
              l1275:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5305 
5211 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Heading", yybuf+yypos));
         
     | 
| 
       5306 
5212 
     | 
    
         
             
              return 0;
         
     | 
| 
       5307 
5213 
     | 
    
         
             
            }
         
     | 
| 
       5308 
5214 
     | 
    
         
             
            YY_RULE(int) yy_HorizontalRule()
         
     | 
| 
       5309 
5215 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       5310 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "HorizontalRule"));  if (!yy_NonindentSpace()) goto  
     | 
| 
       5311 
     | 
    
         
            -
              {  int  
     | 
| 
       5312 
     | 
    
         
            -
               
     | 
| 
       5313 
     | 
    
         
            -
              {  int  
     | 
| 
       5314 
     | 
    
         
            -
               
     | 
| 
       5315 
     | 
    
         
            -
              }  goto  
     | 
| 
       5316 
     | 
    
         
            -
               
     | 
| 
       5317 
     | 
    
         
            -
               
     | 
| 
       5318 
     | 
    
         
            -
              {  int  
     | 
| 
       5319 
     | 
    
         
            -
               
     | 
| 
       5320 
     | 
    
         
            -
              }  goto  
     | 
| 
       5321 
     | 
    
         
            -
               
     | 
| 
       5322 
     | 
    
         
            -
               
     | 
| 
       5323 
     | 
    
         
            -
              {  int  
     | 
| 
       5324 
     | 
    
         
            -
               
     | 
| 
       5325 
     | 
    
         
            -
              }
         
     | 
| 
       5326 
     | 
    
         
            -
              }
         
     | 
| 
       5327 
     | 
    
         
            -
               
     | 
| 
       5328 
     | 
    
         
            -
               
     | 
| 
       5329 
     | 
    
         
            -
              {  int  
     | 
| 
       5330 
     | 
    
         
            -
               
     | 
| 
      
 5216 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "HorizontalRule"));  if (!yy_NonindentSpace()) goto l1278;
         
     | 
| 
      
 5217 
     | 
    
         
            +
              {  int yypos1279= yypos, yythunkpos1279= yythunkpos;  if (!yymatchChar('*')) goto l1280;  if (!yy_Sp()) goto l1280;  if (!yymatchChar('*')) goto l1280;  if (!yy_Sp()) goto l1280;  if (!yymatchChar('*')) goto l1280;
         
     | 
| 
      
 5218 
     | 
    
         
            +
              l1281:;	
         
     | 
| 
      
 5219 
     | 
    
         
            +
              {  int yypos1282= yypos, yythunkpos1282= yythunkpos;  if (!yy_Sp()) goto l1282;  if (!yymatchChar('*')) goto l1282;  goto l1281;
         
     | 
| 
      
 5220 
     | 
    
         
            +
              l1282:;	  yypos= yypos1282; yythunkpos= yythunkpos1282;
         
     | 
| 
      
 5221 
     | 
    
         
            +
              }  goto l1279;
         
     | 
| 
      
 5222 
     | 
    
         
            +
              l1280:;	  yypos= yypos1279; yythunkpos= yythunkpos1279;  if (!yymatchChar('-')) goto l1283;  if (!yy_Sp()) goto l1283;  if (!yymatchChar('-')) goto l1283;  if (!yy_Sp()) goto l1283;  if (!yymatchChar('-')) goto l1283;
         
     | 
| 
      
 5223 
     | 
    
         
            +
              l1284:;	
         
     | 
| 
      
 5224 
     | 
    
         
            +
              {  int yypos1285= yypos, yythunkpos1285= yythunkpos;  if (!yy_Sp()) goto l1285;  if (!yymatchChar('-')) goto l1285;  goto l1284;
         
     | 
| 
      
 5225 
     | 
    
         
            +
              l1285:;	  yypos= yypos1285; yythunkpos= yythunkpos1285;
         
     | 
| 
      
 5226 
     | 
    
         
            +
              }  goto l1279;
         
     | 
| 
      
 5227 
     | 
    
         
            +
              l1283:;	  yypos= yypos1279; yythunkpos= yythunkpos1279;  if (!yymatchChar('_')) goto l1278;  if (!yy_Sp()) goto l1278;  if (!yymatchChar('_')) goto l1278;  if (!yy_Sp()) goto l1278;  if (!yymatchChar('_')) goto l1278;
         
     | 
| 
      
 5228 
     | 
    
         
            +
              l1286:;	
         
     | 
| 
      
 5229 
     | 
    
         
            +
              {  int yypos1287= yypos, yythunkpos1287= yythunkpos;  if (!yy_Sp()) goto l1287;  if (!yymatchChar('_')) goto l1287;  goto l1286;
         
     | 
| 
      
 5230 
     | 
    
         
            +
              l1287:;	  yypos= yypos1287; yythunkpos= yythunkpos1287;
         
     | 
| 
      
 5231 
     | 
    
         
            +
              }
         
     | 
| 
      
 5232 
     | 
    
         
            +
              }
         
     | 
| 
      
 5233 
     | 
    
         
            +
              l1279:;	  if (!yy_Sp()) goto l1278;  if (!yy_Newline()) goto l1278;  if (!yy_BlankLine()) goto l1278;
         
     | 
| 
      
 5234 
     | 
    
         
            +
              l1288:;	
         
     | 
| 
      
 5235 
     | 
    
         
            +
              {  int yypos1289= yypos, yythunkpos1289= yythunkpos;  if (!yy_BlankLine()) goto l1289;  goto l1288;
         
     | 
| 
      
 5236 
     | 
    
         
            +
              l1289:;	  yypos= yypos1289; yythunkpos= yythunkpos1289;
         
     | 
| 
       5331 
5237 
     | 
    
         
             
              }  yyDo(yy_1_HorizontalRule, yybegin, yyend);
         
     | 
| 
       5332 
5238 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "HorizontalRule", yybuf+yypos));
         
     | 
| 
       5333 
5239 
     | 
    
         
             
              return 1;
         
     | 
| 
       5334 
     | 
    
         
            -
               
     | 
| 
      
 5240 
     | 
    
         
            +
              l1278:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5335 
5241 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "HorizontalRule", yybuf+yypos));
         
     | 
| 
       5336 
5242 
     | 
    
         
             
              return 0;
         
     | 
| 
       5337 
5243 
     | 
    
         
             
            }
         
     | 
| 
       5338 
5244 
     | 
    
         
             
            YY_RULE(int) yy_Reference()
         
     | 
| 
       5339 
5245 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 3, 0);
         
     | 
| 
       5340 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "Reference"));  if (!yy_NonindentSpace()) goto  
     | 
| 
       5341 
     | 
    
         
            -
              {  int  
     | 
| 
       5342 
     | 
    
         
            -
               
     | 
| 
       5343 
     | 
    
         
            -
              }  if (!yy_Label()) goto  
     | 
| 
       5344 
     | 
    
         
            -
               
     | 
| 
       5345 
     | 
    
         
            -
              {  int  
     | 
| 
       5346 
     | 
    
         
            -
               
     | 
| 
      
 5246 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "Reference"));  if (!yy_NonindentSpace()) goto l1290;
         
     | 
| 
      
 5247 
     | 
    
         
            +
              {  int yypos1291= yypos, yythunkpos1291= yythunkpos;  if (!yymatchString("[]")) goto l1291;  goto l1290;
         
     | 
| 
      
 5248 
     | 
    
         
            +
              l1291:;	  yypos= yypos1291; yythunkpos= yythunkpos1291;
         
     | 
| 
      
 5249 
     | 
    
         
            +
              }  if (!yy_Label()) goto l1290;  yyDo(yySet, -3, 0);  if (!yymatchChar(':')) goto l1290;  if (!yy_Spnl()) goto l1290;  if (!yy_RefSrc()) goto l1290;  yyDo(yySet, -2, 0);  if (!yy_Spnl()) goto l1290;  if (!yy_RefTitle()) goto l1290;  yyDo(yySet, -1, 0);
         
     | 
| 
      
 5250 
     | 
    
         
            +
              l1292:;	
         
     | 
| 
      
 5251 
     | 
    
         
            +
              {  int yypos1293= yypos, yythunkpos1293= yythunkpos;  if (!yy_BlankLine()) goto l1293;  goto l1292;
         
     | 
| 
      
 5252 
     | 
    
         
            +
              l1293:;	  yypos= yypos1293; yythunkpos= yythunkpos1293;
         
     | 
| 
       5347 
5253 
     | 
    
         
             
              }  yyDo(yy_1_Reference, yybegin, yyend);
         
     | 
| 
       5348 
5254 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Reference", yybuf+yypos));  yyDo(yyPop, 3, 0);
         
     | 
| 
       5349 
5255 
     | 
    
         
             
              return 1;
         
     | 
| 
       5350 
     | 
    
         
            -
               
     | 
| 
      
 5256 
     | 
    
         
            +
              l1290:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5351 
5257 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Reference", yybuf+yypos));
         
     | 
| 
       5352 
5258 
     | 
    
         
             
              return 0;
         
     | 
| 
       5353 
5259 
     | 
    
         
             
            }
         
     | 
| 
       5354 
5260 
     | 
    
         
             
            YY_RULE(int) yy_Note()
         
     | 
| 
       5355 
5261 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 2, 0);
         
     | 
| 
       5356 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "Note"));  yyText(yybegin, yyend);  if (!( extension(EXT_NOTES) )) goto  
     | 
| 
       5357 
     | 
    
         
            -
               
     | 
| 
       5358 
     | 
    
         
            -
              {  int  
     | 
| 
       5359 
     | 
    
         
            -
              {  int  
     | 
| 
       5360 
     | 
    
         
            -
              }  if (!yy_RawNoteBlock()) goto  
     | 
| 
       5361 
     | 
    
         
            -
               
     | 
| 
      
 5262 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "Note"));  yyText(yybegin, yyend);  if (!( extension(EXT_NOTES) )) goto l1294;  if (!yy_NonindentSpace()) goto l1294;  if (!yy_RawNoteReference()) goto l1294;  yyDo(yySet, -2, 0);  if (!yymatchChar(':')) goto l1294;  if (!yy_Sp()) goto l1294;  if (!yy_StartList()) goto l1294;  yyDo(yySet, -1, 0);  if (!yy_RawNoteBlock()) goto l1294;  yyDo(yy_1_Note, yybegin, yyend);
         
     | 
| 
      
 5263 
     | 
    
         
            +
              l1295:;	
         
     | 
| 
      
 5264 
     | 
    
         
            +
              {  int yypos1296= yypos, yythunkpos1296= yythunkpos;
         
     | 
| 
      
 5265 
     | 
    
         
            +
              {  int yypos1297= yypos, yythunkpos1297= yythunkpos;  if (!yy_Indent()) goto l1296;  yypos= yypos1297; yythunkpos= yythunkpos1297;
         
     | 
| 
      
 5266 
     | 
    
         
            +
              }  if (!yy_RawNoteBlock()) goto l1296;  yyDo(yy_2_Note, yybegin, yyend);  goto l1295;
         
     | 
| 
      
 5267 
     | 
    
         
            +
              l1296:;	  yypos= yypos1296; yythunkpos= yythunkpos1296;
         
     | 
| 
       5362 
5268 
     | 
    
         
             
              }  yyDo(yy_3_Note, yybegin, yyend);
         
     | 
| 
       5363 
5269 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Note", yybuf+yypos));  yyDo(yyPop, 2, 0);
         
     | 
| 
       5364 
5270 
     | 
    
         
             
              return 1;
         
     | 
| 
       5365 
     | 
    
         
            -
               
     | 
| 
      
 5271 
     | 
    
         
            +
              l1294:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5366 
5272 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Note", yybuf+yypos));
         
     | 
| 
       5367 
5273 
     | 
    
         
             
              return 0;
         
     | 
| 
       5368 
5274 
     | 
    
         
             
            }
         
     | 
| 
       5369 
5275 
     | 
    
         
             
            YY_RULE(int) yy_Verbatim()
         
     | 
| 
       5370 
5276 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 1, 0);
         
     | 
| 
       5371 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "Verbatim"));  if (!yy_StartList()) goto  
     | 
| 
       5372 
     | 
    
         
            -
               
     | 
| 
       5373 
     | 
    
         
            -
              {  int  
     | 
| 
       5374 
     | 
    
         
            -
               
     | 
| 
      
 5277 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "Verbatim"));  if (!yy_StartList()) goto l1298;  yyDo(yySet, -1, 0);  if (!yy_VerbatimChunk()) goto l1298;  yyDo(yy_1_Verbatim, yybegin, yyend);
         
     | 
| 
      
 5278 
     | 
    
         
            +
              l1299:;	
         
     | 
| 
      
 5279 
     | 
    
         
            +
              {  int yypos1300= yypos, yythunkpos1300= yythunkpos;  if (!yy_VerbatimChunk()) goto l1300;  yyDo(yy_1_Verbatim, yybegin, yyend);  goto l1299;
         
     | 
| 
      
 5280 
     | 
    
         
            +
              l1300:;	  yypos= yypos1300; yythunkpos= yythunkpos1300;
         
     | 
| 
       5375 
5281 
     | 
    
         
             
              }  yyDo(yy_2_Verbatim, yybegin, yyend);
         
     | 
| 
       5376 
5282 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Verbatim", yybuf+yypos));  yyDo(yyPop, 1, 0);
         
     | 
| 
       5377 
5283 
     | 
    
         
             
              return 1;
         
     | 
| 
       5378 
     | 
    
         
            -
               
     | 
| 
      
 5284 
     | 
    
         
            +
              l1298:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5379 
5285 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Verbatim", yybuf+yypos));
         
     | 
| 
       5380 
5286 
     | 
    
         
             
              return 0;
         
     | 
| 
       5381 
5287 
     | 
    
         
             
            }
         
     | 
| 
       5382 
5288 
     | 
    
         
             
            YY_RULE(int) yy_BlockQuote()
         
     | 
| 
       5383 
5289 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 1, 0);
         
     | 
| 
       5384 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "BlockQuote"));  if (!yy_BlockQuoteRaw()) goto  
     | 
| 
      
 5290 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "BlockQuote"));  if (!yy_BlockQuoteRaw()) goto l1301;  yyDo(yySet, -1, 0);  yyDo(yy_1_BlockQuote, yybegin, yyend);
         
     | 
| 
       5385 
5291 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "BlockQuote", yybuf+yypos));  yyDo(yyPop, 1, 0);
         
     | 
| 
       5386 
5292 
     | 
    
         
             
              return 1;
         
     | 
| 
       5387 
     | 
    
         
            -
               
     | 
| 
      
 5293 
     | 
    
         
            +
              l1301:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5388 
5294 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "BlockQuote", yybuf+yypos));
         
     | 
| 
       5389 
5295 
     | 
    
         
             
              return 0;
         
     | 
| 
       5390 
5296 
     | 
    
         
             
            }
         
     | 
| 
       5391 
5297 
     | 
    
         
             
            YY_RULE(int) yy_BlankLine()
         
     | 
| 
       5392 
5298 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       5393 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "BlankLine"));  if (!yy_Sp()) goto  
     | 
| 
      
 5299 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "BlankLine"));  if (!yy_Sp()) goto l1302;  if (!yy_Newline()) goto l1302;
         
     | 
| 
       5394 
5300 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "BlankLine", yybuf+yypos));
         
     | 
| 
       5395 
5301 
     | 
    
         
             
              return 1;
         
     | 
| 
       5396 
     | 
    
         
            -
               
     | 
| 
      
 5302 
     | 
    
         
            +
              l1302:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5397 
5303 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "BlankLine", yybuf+yypos));
         
     | 
| 
       5398 
5304 
     | 
    
         
             
              return 0;
         
     | 
| 
       5399 
5305 
     | 
    
         
             
            }
         
     | 
| 
       5400 
5306 
     | 
    
         
             
            YY_RULE(int) yy_Block()
         
     | 
| 
       5401 
5307 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       5402 
5308 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "Block"));
         
     | 
| 
       5403 
     | 
    
         
            -
               
     | 
| 
       5404 
     | 
    
         
            -
              {  int  
     | 
| 
       5405 
     | 
    
         
            -
               
     | 
| 
       5406 
     | 
    
         
            -
              }
         
     | 
| 
       5407 
     | 
    
         
            -
              {  int  
     | 
| 
       5408 
     | 
    
         
            -
               
     | 
| 
       5409 
     | 
    
         
            -
               
     | 
| 
       5410 
     | 
    
         
            -
               
     | 
| 
       5411 
     | 
    
         
            -
               
     | 
| 
       5412 
     | 
    
         
            -
               
     | 
| 
       5413 
     | 
    
         
            -
               
     | 
| 
       5414 
     | 
    
         
            -
               
     | 
| 
       5415 
     | 
    
         
            -
               
     | 
| 
       5416 
     | 
    
         
            -
               
     | 
| 
       5417 
     | 
    
         
            -
               
     | 
| 
       5418 
     | 
    
         
            -
               
     | 
| 
       5419 
     | 
    
         
            -
              }
         
     | 
| 
       5420 
     | 
    
         
            -
               
     | 
| 
      
 5309 
     | 
    
         
            +
              l1304:;	
         
     | 
| 
      
 5310 
     | 
    
         
            +
              {  int yypos1305= yypos, yythunkpos1305= yythunkpos;  if (!yy_BlankLine()) goto l1305;  goto l1304;
         
     | 
| 
      
 5311 
     | 
    
         
            +
              l1305:;	  yypos= yypos1305; yythunkpos= yythunkpos1305;
         
     | 
| 
      
 5312 
     | 
    
         
            +
              }
         
     | 
| 
      
 5313 
     | 
    
         
            +
              {  int yypos1306= yypos, yythunkpos1306= yythunkpos;  if (!yy_BlockQuote()) goto l1307;  goto l1306;
         
     | 
| 
      
 5314 
     | 
    
         
            +
              l1307:;	  yypos= yypos1306; yythunkpos= yythunkpos1306;  if (!yy_Verbatim()) goto l1308;  goto l1306;
         
     | 
| 
      
 5315 
     | 
    
         
            +
              l1308:;	  yypos= yypos1306; yythunkpos= yythunkpos1306;  if (!yy_Note()) goto l1309;  goto l1306;
         
     | 
| 
      
 5316 
     | 
    
         
            +
              l1309:;	  yypos= yypos1306; yythunkpos= yythunkpos1306;  if (!yy_Reference()) goto l1310;  goto l1306;
         
     | 
| 
      
 5317 
     | 
    
         
            +
              l1310:;	  yypos= yypos1306; yythunkpos= yythunkpos1306;  if (!yy_HorizontalRule()) goto l1311;  goto l1306;
         
     | 
| 
      
 5318 
     | 
    
         
            +
              l1311:;	  yypos= yypos1306; yythunkpos= yythunkpos1306;  if (!yy_Heading()) goto l1312;  goto l1306;
         
     | 
| 
      
 5319 
     | 
    
         
            +
              l1312:;	  yypos= yypos1306; yythunkpos= yythunkpos1306;  if (!yy_OrderedList()) goto l1313;  goto l1306;
         
     | 
| 
      
 5320 
     | 
    
         
            +
              l1313:;	  yypos= yypos1306; yythunkpos= yythunkpos1306;  if (!yy_BulletList()) goto l1314;  goto l1306;
         
     | 
| 
      
 5321 
     | 
    
         
            +
              l1314:;	  yypos= yypos1306; yythunkpos= yythunkpos1306;  if (!yy_HtmlBlock()) goto l1315;  goto l1306;
         
     | 
| 
      
 5322 
     | 
    
         
            +
              l1315:;	  yypos= yypos1306; yythunkpos= yythunkpos1306;  if (!yy_StyleBlock()) goto l1316;  goto l1306;
         
     | 
| 
      
 5323 
     | 
    
         
            +
              l1316:;	  yypos= yypos1306; yythunkpos= yythunkpos1306;  if (!yy_Para()) goto l1317;  goto l1306;
         
     | 
| 
      
 5324 
     | 
    
         
            +
              l1317:;	  yypos= yypos1306; yythunkpos= yythunkpos1306;  if (!yy_Plain()) goto l1303;
         
     | 
| 
      
 5325 
     | 
    
         
            +
              }
         
     | 
| 
      
 5326 
     | 
    
         
            +
              l1306:;	
         
     | 
| 
       5421 
5327 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Block", yybuf+yypos));
         
     | 
| 
       5422 
5328 
     | 
    
         
             
              return 1;
         
     | 
| 
       5423 
     | 
    
         
            -
               
     | 
| 
      
 5329 
     | 
    
         
            +
              l1303:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5424 
5330 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Block", yybuf+yypos));
         
     | 
| 
       5425 
5331 
     | 
    
         
             
              return 0;
         
     | 
| 
       5426 
5332 
     | 
    
         
             
            }
         
     | 
| 
       5427 
5333 
     | 
    
         
             
            YY_RULE(int) yy_StartList()
         
     | 
| 
       5428 
5334 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;
         
     | 
| 
       5429 
5335 
     | 
    
         
             
              yyprintf((stderr, "%s\n", "StartList"));
         
     | 
| 
       5430 
     | 
    
         
            -
              {  int  
     | 
| 
      
 5336 
     | 
    
         
            +
              {  int yypos1319= yypos, yythunkpos1319= yythunkpos;  if (!yymatchDot()) goto l1318;  yypos= yypos1319; yythunkpos= yythunkpos1319;
         
     | 
| 
       5431 
5337 
     | 
    
         
             
              }  yyDo(yy_1_StartList, yybegin, yyend);
         
     | 
| 
       5432 
5338 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "StartList", yybuf+yypos));
         
     | 
| 
       5433 
5339 
     | 
    
         
             
              return 1;
         
     | 
| 
       5434 
     | 
    
         
            -
               
     | 
| 
      
 5340 
     | 
    
         
            +
              l1318:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5435 
5341 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "StartList", yybuf+yypos));
         
     | 
| 
       5436 
5342 
     | 
    
         
             
              return 0;
         
     | 
| 
       5437 
5343 
     | 
    
         
             
            }
         
     | 
| 
       5438 
5344 
     | 
    
         
             
            YY_RULE(int) yy_Doc()
         
     | 
| 
       5439 
5345 
     | 
    
         
             
            {  int yypos0= yypos, yythunkpos0= yythunkpos;  yyDo(yyPush, 1, 0);
         
     | 
| 
       5440 
     | 
    
         
            -
              yyprintf((stderr, "%s\n", "Doc"));  if (!yy_StartList()) goto  
     | 
| 
       5441 
     | 
    
         
            -
               
     | 
| 
       5442 
     | 
    
         
            -
              {  int  
     | 
| 
       5443 
     | 
    
         
            -
               
     | 
| 
      
 5346 
     | 
    
         
            +
              yyprintf((stderr, "%s\n", "Doc"));  if (!yy_StartList()) goto l1320;  yyDo(yySet, -1, 0);
         
     | 
| 
      
 5347 
     | 
    
         
            +
              l1321:;	
         
     | 
| 
      
 5348 
     | 
    
         
            +
              {  int yypos1322= yypos, yythunkpos1322= yythunkpos;  if (!yy_Block()) goto l1322;  yyDo(yy_1_Doc, yybegin, yyend);  goto l1321;
         
     | 
| 
      
 5349 
     | 
    
         
            +
              l1322:;	  yypos= yypos1322; yythunkpos= yythunkpos1322;
         
     | 
| 
       5444 
5350 
     | 
    
         
             
              }  yyDo(yy_2_Doc, yybegin, yyend);
         
     | 
| 
       5445 
5351 
     | 
    
         
             
              yyprintf((stderr, "  ok   %s @ %s\n", "Doc", yybuf+yypos));  yyDo(yyPop, 1, 0);
         
     | 
| 
       5446 
5352 
     | 
    
         
             
              return 1;
         
     | 
| 
       5447 
     | 
    
         
            -
               
     | 
| 
      
 5353 
     | 
    
         
            +
              l1320:;	  yypos= yypos0; yythunkpos= yythunkpos0;
         
     | 
| 
       5448 
5354 
     | 
    
         
             
              yyprintf((stderr, "  fail %s @ %s\n", "Doc", yybuf+yypos));
         
     | 
| 
       5449 
5355 
     | 
    
         
             
              return 0;
         
     | 
| 
       5450 
5356 
     | 
    
         
             
            }
         
     |