1# RE2 basic search tests built by make log 2# Wed May 12 12:13:22 EDT 2021 3Regexp.SearchTests 4strings 5"" 6"a" 7regexps 8"a" 9-;-;-;- 100-1;0-1;0-1;0-1 11"^(?:a)$" 12-;-;-;- 130-1;0-1;0-1;0-1 14"^(?:a)" 15-;-;-;- 160-1;0-1;0-1;0-1 17"(?:a)$" 18-;-;-;- 190-1;0-1;0-1;0-1 20strings 21"" 22"zyzzyva" 23regexps 24"a" 25-;-;-;- 26-;6-7;-;6-7 27"^(?:a)$" 28-;-;-;- 29-;-;-;- 30"^(?:a)" 31-;-;-;- 32-;-;-;- 33"(?:a)$" 34-;-;-;- 35-;6-7;-;6-7 36strings 37"" 38"aa" 39regexps 40"a+" 41-;-;-;- 420-2;0-2;0-2;0-2 43"^(?:a+)$" 44-;-;-;- 450-2;0-2;0-2;0-2 46"^(?:a+)" 47-;-;-;- 480-2;0-2;0-2;0-2 49"(?:a+)$" 50-;-;-;- 510-2;0-2;0-2;0-2 52strings 53"" 54"ab" 55regexps 56"(a+|b)+" 57-;-;-;- 580-2 1-2;0-2 1-2;0-2 1-2;0-2 1-2 59"^(?:(a+|b)+)$" 60-;-;-;- 610-2 1-2;0-2 1-2;0-2 1-2;0-2 1-2 62"^(?:(a+|b)+)" 63-;-;-;- 640-2 1-2;0-2 1-2;0-2 1-2;0-2 1-2 65"(?:(a+|b)+)$" 66-;-;-;- 670-2 1-2;0-2 1-2;0-2 1-2;0-2 1-2 68strings 69"" 70"xabcdx" 71regexps 72"ab|cd" 73-;-;-;- 74-;1-3;-;1-3 75"^(?:ab|cd)$" 76-;-;-;- 77-;-;-;- 78"^(?:ab|cd)" 79-;-;-;- 80-;-;-;- 81"(?:ab|cd)$" 82-;-;-;- 83-;-;-;- 84strings 85"" 86"hello\ngoodbye\n" 87regexps 88"h.*od?" 89-;-;-;- 90-;0-5;-;0-5 91"^(?:h.*od?)$" 92-;-;-;- 93-;-;-;- 94"^(?:h.*od?)" 95-;-;-;- 96-;0-5;-;0-5 97"(?:h.*od?)$" 98-;-;-;- 99-;-;-;- 100strings 101"" 102"hello\ngoodbye\n" 103regexps 104"h.*o" 105-;-;-;- 106-;0-5;-;0-5 107"^(?:h.*o)$" 108-;-;-;- 109-;-;-;- 110"^(?:h.*o)" 111-;-;-;- 112-;0-5;-;0-5 113"(?:h.*o)$" 114-;-;-;- 115-;-;-;- 116strings 117"" 118"goodbye\nhello\n" 119regexps 120"h.*o" 121-;-;-;- 122-;8-13;-;8-13 123"^(?:h.*o)$" 124-;-;-;- 125-;-;-;- 126"^(?:h.*o)" 127-;-;-;- 128-;-;-;- 129"(?:h.*o)$" 130-;-;-;- 131-;-;-;- 132strings 133"" 134"hello world" 135regexps 136"h.*o" 137-;-;-;- 138-;0-8;-;0-8 139"^(?:h.*o)$" 140-;-;-;- 141-;-;-;- 142"^(?:h.*o)" 143-;-;-;- 144-;0-8;-;0-8 145"(?:h.*o)$" 146-;-;-;- 147-;-;-;- 148strings 149"" 150"othello, world" 151regexps 152"h.*o" 153-;-;-;- 154-;2-11;-;2-11 155"^(?:h.*o)$" 156-;-;-;- 157-;-;-;- 158"^(?:h.*o)" 159-;-;-;- 160-;-;-;- 161"(?:h.*o)$" 162-;-;-;- 163-;-;-;- 164strings 165"" 166"aaaaaaa" 167regexps 168"[^\\s\\S]" 169-;-;-;- 170-;-;-;- 171"^(?:[^\\s\\S])$" 172-;-;-;- 173-;-;-;- 174"^(?:[^\\s\\S])" 175-;-;-;- 176-;-;-;- 177"(?:[^\\s\\S])$" 178-;-;-;- 179-;-;-;- 180strings 181"" 182"aaaaaaa" 183regexps 184"a" 185-;-;-;- 186-;0-1;-;0-1 187"^(?:a)$" 188-;-;-;- 189-;-;-;- 190"^(?:a)" 191-;-;-;- 192-;0-1;-;0-1 193"(?:a)$" 194-;-;-;- 195-;6-7;-;6-7 196strings 197"" 198"aaaaaaa" 199regexps 200"a*" 2010-0;0-0;0-0;0-0 2020-7;0-7;0-7;0-7 203"^(?:a*)$" 2040-0;0-0;0-0;0-0 2050-7;0-7;0-7;0-7 206"^(?:a*)" 2070-0;0-0;0-0;0-0 2080-7;0-7;0-7;0-7 209"(?:a*)$" 2100-0;0-0;0-0;0-0 2110-7;0-7;0-7;0-7 212strings 213"" 214"" 215regexps 216"a*" 2170-0;0-0;0-0;0-0 2180-0;0-0;0-0;0-0 219"^(?:a*)$" 2200-0;0-0;0-0;0-0 2210-0;0-0;0-0;0-0 222"^(?:a*)" 2230-0;0-0;0-0;0-0 2240-0;0-0;0-0;0-0 225"(?:a*)$" 2260-0;0-0;0-0;0-0 2270-0;0-0;0-0;0-0 228strings 229"" 230"xabcdx" 231regexps 232"ab|cd" 233-;-;-;- 234-;1-3;-;1-3 235"^(?:ab|cd)$" 236-;-;-;- 237-;-;-;- 238"^(?:ab|cd)" 239-;-;-;- 240-;-;-;- 241"(?:ab|cd)$" 242-;-;-;- 243-;-;-;- 244strings 245"" 246"cab" 247regexps 248"a" 249-;-;-;- 250-;1-2;-;1-2 251"^(?:a)$" 252-;-;-;- 253-;-;-;- 254"^(?:a)" 255-;-;-;- 256-;-;-;- 257"(?:a)$" 258-;-;-;- 259-;-;-;- 260strings 261"" 262"cab" 263regexps 264"a*b" 265-;-;-;- 266-;1-3;-;1-3 267"^(?:a*b)$" 268-;-;-;- 269-;-;-;- 270"^(?:a*b)" 271-;-;-;- 272-;-;-;- 273"(?:a*b)$" 274-;-;-;- 275-;1-3;-;1-3 276strings 277"" 278"x" 279regexps 280"((((((((((((((((((((x))))))))))))))))))))" 281-;-;-;- 2820-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 283"^(?:((((((((((((((((((((x)))))))))))))))))))))$" 284-;-;-;- 2850-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 286"^(?:((((((((((((((((((((x)))))))))))))))))))))" 287-;-;-;- 2880-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 289"(?:((((((((((((((((((((x)))))))))))))))))))))$" 290-;-;-;- 2910-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1;0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 0-1 292strings 293"" 294"xxxabcdxxx" 295regexps 296"[abcd]" 297-;-;-;- 298-;3-4;-;3-4 299"^(?:[abcd])$" 300-;-;-;- 301-;-;-;- 302"^(?:[abcd])" 303-;-;-;- 304-;-;-;- 305"(?:[abcd])$" 306-;-;-;- 307-;-;-;- 308strings 309"" 310"xxxabcdxxx" 311regexps 312"[^x]" 313-;-;-;- 314-;3-4;-;3-4 315"^(?:[^x])$" 316-;-;-;- 317-;-;-;- 318"^(?:[^x])" 319-;-;-;- 320-;-;-;- 321"(?:[^x])$" 322-;-;-;- 323-;-;-;- 324strings 325"" 326"xxxabcdxxx" 327regexps 328"[abcd]+" 329-;-;-;- 330-;3-7;-;3-7 331"^(?:[abcd]+)$" 332-;-;-;- 333-;-;-;- 334"^(?:[abcd]+)" 335-;-;-;- 336-;-;-;- 337"(?:[abcd]+)$" 338-;-;-;- 339-;-;-;- 340strings 341"" 342"xxxabcdxxx" 343regexps 344"[^x]+" 345-;-;-;- 346-;3-7;-;3-7 347"^(?:[^x]+)$" 348-;-;-;- 349-;-;-;- 350"^(?:[^x]+)" 351-;-;-;- 352-;-;-;- 353"(?:[^x]+)$" 354-;-;-;- 355-;-;-;- 356strings 357"" 358"fo" 359regexps 360"(fo|foo)" 361-;-;-;- 3620-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 363"^(?:(fo|foo))$" 364-;-;-;- 3650-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 366"^(?:(fo|foo))" 367-;-;-;- 3680-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 369"(?:(fo|foo))$" 370-;-;-;- 3710-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 372strings 373"" 374"foo" 375regexps 376"(foo|fo)" 377-;-;-;- 3780-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 379"^(?:(foo|fo))$" 380-;-;-;- 3810-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 382"^(?:(foo|fo))" 383-;-;-;- 3840-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 385"(?:(foo|fo))$" 386-;-;-;- 3870-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 388strings 389"" 390"aA" 391regexps 392"aa" 393-;-;-;- 394-;-;-;- 395"^(?:aa)$" 396-;-;-;- 397-;-;-;- 398"^(?:aa)" 399-;-;-;- 400-;-;-;- 401"(?:aa)$" 402-;-;-;- 403-;-;-;- 404strings 405"" 406"Aa" 407regexps 408"a" 409-;-;-;- 410-;1-2;-;1-2 411"^(?:a)$" 412-;-;-;- 413-;-;-;- 414"^(?:a)" 415-;-;-;- 416-;-;-;- 417"(?:a)$" 418-;-;-;- 419-;1-2;-;1-2 420strings 421"" 422"A" 423regexps 424"a" 425-;-;-;- 426-;-;-;- 427"^(?:a)$" 428-;-;-;- 429-;-;-;- 430"^(?:a)" 431-;-;-;- 432-;-;-;- 433"(?:a)$" 434-;-;-;- 435-;-;-;- 436strings 437"" 438"abc" 439regexps 440"ABC" 441-;-;-;- 442-;-;-;- 443"^(?:ABC)$" 444-;-;-;- 445-;-;-;- 446"^(?:ABC)" 447-;-;-;- 448-;-;-;- 449"(?:ABC)$" 450-;-;-;- 451-;-;-;- 452strings 453"" 454"XABCY" 455regexps 456"abc" 457-;-;-;- 458-;-;-;- 459"^(?:abc)$" 460-;-;-;- 461-;-;-;- 462"^(?:abc)" 463-;-;-;- 464-;-;-;- 465"(?:abc)$" 466-;-;-;- 467-;-;-;- 468strings 469"" 470"xabcy" 471regexps 472"ABC" 473-;-;-;- 474-;-;-;- 475"^(?:ABC)$" 476-;-;-;- 477-;-;-;- 478"^(?:ABC)" 479-;-;-;- 480-;-;-;- 481"(?:ABC)$" 482-;-;-;- 483-;-;-;- 484strings 485"" 486"foo" 487regexps 488"foo|bar|[A-Z]" 489-;-;-;- 4900-3;0-3;0-3;0-3 491"^(?:foo|bar|[A-Z])$" 492-;-;-;- 4930-3;0-3;0-3;0-3 494"^(?:foo|bar|[A-Z])" 495-;-;-;- 4960-3;0-3;0-3;0-3 497"(?:foo|bar|[A-Z])$" 498-;-;-;- 4990-3;0-3;0-3;0-3 500strings 501"" 502"foo" 503regexps 504"^(foo|bar|[A-Z])" 505-;-;-;- 5060-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 507"^(?:^(foo|bar|[A-Z]))$" 508-;-;-;- 5090-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 510"^(?:^(foo|bar|[A-Z]))" 511-;-;-;- 5120-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 513"(?:^(foo|bar|[A-Z]))$" 514-;-;-;- 5150-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 516strings 517"" 518"foo\n" 519regexps 520"(foo|bar|[A-Z])$" 521-;-;-;- 522-;-;-;- 523"^(?:(foo|bar|[A-Z])$)$" 524-;-;-;- 525-;-;-;- 526"^(?:(foo|bar|[A-Z])$)" 527-;-;-;- 528-;-;-;- 529"(?:(foo|bar|[A-Z])$)$" 530-;-;-;- 531-;-;-;- 532strings 533"" 534"foo" 535regexps 536"(foo|bar|[A-Z])$" 537-;-;-;- 5380-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 539"^(?:(foo|bar|[A-Z])$)$" 540-;-;-;- 5410-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 542"^(?:(foo|bar|[A-Z])$)" 543-;-;-;- 5440-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 545"(?:(foo|bar|[A-Z])$)$" 546-;-;-;- 5470-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 548strings 549"" 550"foo\n" 551regexps 552"^(foo|bar|[A-Z])$" 553-;-;-;- 554-;-;-;- 555"^(?:^(foo|bar|[A-Z])$)$" 556-;-;-;- 557-;-;-;- 558"^(?:^(foo|bar|[A-Z])$)" 559-;-;-;- 560-;-;-;- 561"(?:^(foo|bar|[A-Z])$)$" 562-;-;-;- 563-;-;-;- 564strings 565"" 566"foo" 567regexps 568"^(foo|bar|[A-Z])$" 569-;-;-;- 5700-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 571"^(?:^(foo|bar|[A-Z])$)$" 572-;-;-;- 5730-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 574"^(?:^(foo|bar|[A-Z])$)" 575-;-;-;- 5760-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 577"(?:^(foo|bar|[A-Z])$)$" 578-;-;-;- 5790-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 580strings 581"" 582"bar" 583regexps 584"^(foo|bar|[A-Z])$" 585-;-;-;- 5860-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 587"^(?:^(foo|bar|[A-Z])$)$" 588-;-;-;- 5890-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 590"^(?:^(foo|bar|[A-Z])$)" 591-;-;-;- 5920-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 593"(?:^(foo|bar|[A-Z])$)$" 594-;-;-;- 5950-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 596strings 597"" 598"X" 599regexps 600"^(foo|bar|[A-Z])$" 601-;-;-;- 6020-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 603"^(?:^(foo|bar|[A-Z])$)$" 604-;-;-;- 6050-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 606"^(?:^(foo|bar|[A-Z])$)" 607-;-;-;- 6080-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 609"(?:^(foo|bar|[A-Z])$)$" 610-;-;-;- 6110-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 612strings 613"" 614"XY" 615regexps 616"^(foo|bar|[A-Z])$" 617-;-;-;- 618-;-;-;- 619"^(?:^(foo|bar|[A-Z])$)$" 620-;-;-;- 621-;-;-;- 622"^(?:^(foo|bar|[A-Z])$)" 623-;-;-;- 624-;-;-;- 625"(?:^(foo|bar|[A-Z])$)$" 626-;-;-;- 627-;-;-;- 628strings 629"" 630"fo" 631regexps 632"^(fo|foo)$" 633-;-;-;- 6340-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 635"^(?:^(fo|foo)$)$" 636-;-;-;- 6370-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 638"^(?:^(fo|foo)$)" 639-;-;-;- 6400-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 641"(?:^(fo|foo)$)$" 642-;-;-;- 6430-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 644strings 645"" 646"foo" 647regexps 648"^(fo|foo)$" 649-;-;-;- 6500-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 651"^(?:^(fo|foo)$)$" 652-;-;-;- 6530-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 654"^(?:^(fo|foo)$)" 655-;-;-;- 6560-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 657"(?:^(fo|foo)$)$" 658-;-;-;- 6590-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 660strings 661"" 662"fo" 663regexps 664"^^(fo|foo)$" 665-;-;-;- 6660-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 667"^(?:^^(fo|foo)$)$" 668-;-;-;- 6690-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 670"^(?:^^(fo|foo)$)" 671-;-;-;- 6720-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 673"(?:^^(fo|foo)$)$" 674-;-;-;- 6750-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 676strings 677"" 678"foo" 679regexps 680"^^(fo|foo)$" 681-;-;-;- 6820-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 683"^(?:^^(fo|foo)$)$" 684-;-;-;- 6850-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 686"^(?:^^(fo|foo)$)" 687-;-;-;- 6880-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 689"(?:^^(fo|foo)$)$" 690-;-;-;- 6910-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 692strings 693"" 694"" 695regexps 696"^$" 6970-0;0-0;0-0;0-0 6980-0;0-0;0-0;0-0 699"^(?:^$)$" 7000-0;0-0;0-0;0-0 7010-0;0-0;0-0;0-0 702"^(?:^$)" 7030-0;0-0;0-0;0-0 7040-0;0-0;0-0;0-0 705"(?:^$)$" 7060-0;0-0;0-0;0-0 7070-0;0-0;0-0;0-0 708strings 709"" 710"x" 711regexps 712"^$" 7130-0;0-0;0-0;0-0 714-;-;-;- 715"^(?:^$)$" 7160-0;0-0;0-0;0-0 717-;-;-;- 718"^(?:^$)" 7190-0;0-0;0-0;0-0 720-;-;-;- 721"(?:^$)$" 7220-0;0-0;0-0;0-0 723-;-;-;- 724strings 725"" 726"" 727regexps 728"^^$" 7290-0;0-0;0-0;0-0 7300-0;0-0;0-0;0-0 731"^(?:^^$)$" 7320-0;0-0;0-0;0-0 7330-0;0-0;0-0;0-0 734"^(?:^^$)" 7350-0;0-0;0-0;0-0 7360-0;0-0;0-0;0-0 737"(?:^^$)$" 7380-0;0-0;0-0;0-0 7390-0;0-0;0-0;0-0 740strings 741"" 742"" 743regexps 744"^$$" 7450-0;0-0;0-0;0-0 7460-0;0-0;0-0;0-0 747"^(?:^$$)$" 7480-0;0-0;0-0;0-0 7490-0;0-0;0-0;0-0 750"^(?:^$$)" 7510-0;0-0;0-0;0-0 7520-0;0-0;0-0;0-0 753"(?:^$$)$" 7540-0;0-0;0-0;0-0 7550-0;0-0;0-0;0-0 756strings 757"" 758"x" 759regexps 760"^^$" 7610-0;0-0;0-0;0-0 762-;-;-;- 763"^(?:^^$)$" 7640-0;0-0;0-0;0-0 765-;-;-;- 766"^(?:^^$)" 7670-0;0-0;0-0;0-0 768-;-;-;- 769"(?:^^$)$" 7700-0;0-0;0-0;0-0 771-;-;-;- 772strings 773"" 774"x" 775regexps 776"^$$" 7770-0;0-0;0-0;0-0 778-;-;-;- 779"^(?:^$$)$" 7800-0;0-0;0-0;0-0 781-;-;-;- 782"^(?:^$$)" 7830-0;0-0;0-0;0-0 784-;-;-;- 785"(?:^$$)$" 7860-0;0-0;0-0;0-0 787-;-;-;- 788strings 789"" 790"" 791regexps 792"^^$$" 7930-0;0-0;0-0;0-0 7940-0;0-0;0-0;0-0 795"^(?:^^$$)$" 7960-0;0-0;0-0;0-0 7970-0;0-0;0-0;0-0 798"^(?:^^$$)" 7990-0;0-0;0-0;0-0 8000-0;0-0;0-0;0-0 801"(?:^^$$)$" 8020-0;0-0;0-0;0-0 8030-0;0-0;0-0;0-0 804strings 805"" 806"x" 807regexps 808"^^$$" 8090-0;0-0;0-0;0-0 810-;-;-;- 811"^(?:^^$$)$" 8120-0;0-0;0-0;0-0 813-;-;-;- 814"^(?:^^$$)" 8150-0;0-0;0-0;0-0 816-;-;-;- 817"(?:^^$$)$" 8180-0;0-0;0-0;0-0 819-;-;-;- 820strings 821"" 822"" 823regexps 824"^^^^^^^^$$$$$$$$" 8250-0;0-0;0-0;0-0 8260-0;0-0;0-0;0-0 827"^(?:^^^^^^^^$$$$$$$$)$" 8280-0;0-0;0-0;0-0 8290-0;0-0;0-0;0-0 830"^(?:^^^^^^^^$$$$$$$$)" 8310-0;0-0;0-0;0-0 8320-0;0-0;0-0;0-0 833"(?:^^^^^^^^$$$$$$$$)$" 8340-0;0-0;0-0;0-0 8350-0;0-0;0-0;0-0 836strings 837"" 838"x" 839regexps 840"^" 8410-0;0-0;0-0;0-0 842-;0-0;-;0-0 843"^(?:^)$" 8440-0;0-0;0-0;0-0 845-;-;-;- 846"^(?:^)" 8470-0;0-0;0-0;0-0 848-;0-0;-;0-0 849"(?:^)$" 8500-0;0-0;0-0;0-0 851-;-;-;- 852strings 853"" 854"x" 855regexps 856"$" 8570-0;0-0;0-0;0-0 858-;1-1;-;1-1 859"^(?:$)$" 8600-0;0-0;0-0;0-0 861-;-;-;- 862"^(?:$)" 8630-0;0-0;0-0;0-0 864-;-;-;- 865"(?:$)$" 8660-0;0-0;0-0;0-0 867-;1-1;-;1-1 868strings 869"" 870"nofoo foo that" 871regexps 872"\\bfoo\\b" 873-;-;-;- 874-;6-9;-;6-9 875"^(?:\\bfoo\\b)$" 876-;-;-;- 877-;-;-;- 878"^(?:\\bfoo\\b)" 879-;-;-;- 880-;-;-;- 881"(?:\\bfoo\\b)$" 882-;-;-;- 883-;-;-;- 884strings 885"" 886"faoa x" 887regexps 888"a\\b" 889-;-;-;- 890-;3-4;-;3-4 891"^(?:a\\b)$" 892-;-;-;- 893-;-;-;- 894"^(?:a\\b)" 895-;-;-;- 896-;-;-;- 897"(?:a\\b)$" 898-;-;-;- 899-;-;-;- 900strings 901"" 902"bar x" 903regexps 904"\\bbar" 905-;-;-;- 906-;0-3;-;0-3 907"^(?:\\bbar)$" 908-;-;-;- 909-;-;-;- 910"^(?:\\bbar)" 911-;-;-;- 912-;0-3;-;0-3 913"(?:\\bbar)$" 914-;-;-;- 915-;-;-;- 916strings 917"" 918"foo\nbar x" 919regexps 920"\\bbar" 921-;-;-;- 922-;4-7;-;4-7 923"^(?:\\bbar)$" 924-;-;-;- 925-;-;-;- 926"^(?:\\bbar)" 927-;-;-;- 928-;-;-;- 929"(?:\\bbar)$" 930-;-;-;- 931-;-;-;- 932strings 933"" 934"foobar" 935regexps 936"bar\\b" 937-;-;-;- 938-;3-6;-;3-6 939"^(?:bar\\b)$" 940-;-;-;- 941-;-;-;- 942"^(?:bar\\b)" 943-;-;-;- 944-;-;-;- 945"(?:bar\\b)$" 946-;-;-;- 947-;3-6;-;3-6 948strings 949"" 950"foobar\nxxx" 951regexps 952"bar\\b" 953-;-;-;- 954-;3-6;-;3-6 955"^(?:bar\\b)$" 956-;-;-;- 957-;-;-;- 958"^(?:bar\\b)" 959-;-;-;- 960-;-;-;- 961"(?:bar\\b)$" 962-;-;-;- 963-;-;-;- 964strings 965"" 966"foo" 967regexps 968"(foo|bar|[A-Z])\\b" 969-;-;-;- 9700-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 971"^(?:(foo|bar|[A-Z])\\b)$" 972-;-;-;- 9730-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 974"^(?:(foo|bar|[A-Z])\\b)" 975-;-;-;- 9760-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 977"(?:(foo|bar|[A-Z])\\b)$" 978-;-;-;- 9790-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 980strings 981"" 982"foo\n" 983regexps 984"(foo|bar|[A-Z])\\b" 985-;-;-;- 986-;0-3 0-3;-;0-3 0-3 987"^(?:(foo|bar|[A-Z])\\b)$" 988-;-;-;- 989-;-;-;- 990"^(?:(foo|bar|[A-Z])\\b)" 991-;-;-;- 992-;0-3 0-3;-;0-3 0-3 993"(?:(foo|bar|[A-Z])\\b)$" 994-;-;-;- 995-;-;-;- 996strings 997"" 998"" 999regexps 1000"\\b" 1001-;-;-;- 1002-;-;-;- 1003"^(?:\\b)$" 1004-;-;-;- 1005-;-;-;- 1006"^(?:\\b)" 1007-;-;-;- 1008-;-;-;- 1009"(?:\\b)$" 1010-;-;-;- 1011-;-;-;- 1012strings 1013"" 1014"x" 1015regexps 1016"\\b" 1017-;-;-;- 1018-;0-0;-;0-0 1019"^(?:\\b)$" 1020-;-;-;- 1021-;-;-;- 1022"^(?:\\b)" 1023-;-;-;- 1024-;0-0;-;0-0 1025"(?:\\b)$" 1026-;-;-;- 1027-;1-1;-;1-1 1028strings 1029"" 1030"foo" 1031regexps 1032"\\b(foo|bar|[A-Z])" 1033-;-;-;- 10340-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1035"^(?:\\b(foo|bar|[A-Z]))$" 1036-;-;-;- 10370-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1038"^(?:\\b(foo|bar|[A-Z]))" 1039-;-;-;- 10400-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1041"(?:\\b(foo|bar|[A-Z]))$" 1042-;-;-;- 10430-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1044strings 1045"" 1046"X" 1047regexps 1048"\\b(foo|bar|[A-Z])\\b" 1049-;-;-;- 10500-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 1051"^(?:\\b(foo|bar|[A-Z])\\b)$" 1052-;-;-;- 10530-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 1054"^(?:\\b(foo|bar|[A-Z])\\b)" 1055-;-;-;- 10560-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 1057"(?:\\b(foo|bar|[A-Z])\\b)$" 1058-;-;-;- 10590-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1 1060strings 1061"" 1062"XY" 1063regexps 1064"\\b(foo|bar|[A-Z])\\b" 1065-;-;-;- 1066-;-;-;- 1067"^(?:\\b(foo|bar|[A-Z])\\b)$" 1068-;-;-;- 1069-;-;-;- 1070"^(?:\\b(foo|bar|[A-Z])\\b)" 1071-;-;-;- 1072-;-;-;- 1073"(?:\\b(foo|bar|[A-Z])\\b)$" 1074-;-;-;- 1075-;-;-;- 1076strings 1077"" 1078"bar" 1079regexps 1080"\\b(foo|bar|[A-Z])\\b" 1081-;-;-;- 10820-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1083"^(?:\\b(foo|bar|[A-Z])\\b)$" 1084-;-;-;- 10850-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1086"^(?:\\b(foo|bar|[A-Z])\\b)" 1087-;-;-;- 10880-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1089"(?:\\b(foo|bar|[A-Z])\\b)$" 1090-;-;-;- 10910-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1092strings 1093"" 1094"foo" 1095regexps 1096"\\b(foo|bar|[A-Z])\\b" 1097-;-;-;- 10980-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1099"^(?:\\b(foo|bar|[A-Z])\\b)$" 1100-;-;-;- 11010-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1102"^(?:\\b(foo|bar|[A-Z])\\b)" 1103-;-;-;- 11040-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1105"(?:\\b(foo|bar|[A-Z])\\b)$" 1106-;-;-;- 11070-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1108strings 1109"" 1110"foo\n" 1111regexps 1112"\\b(foo|bar|[A-Z])\\b" 1113-;-;-;- 1114-;0-3 0-3;-;0-3 0-3 1115"^(?:\\b(foo|bar|[A-Z])\\b)$" 1116-;-;-;- 1117-;-;-;- 1118"^(?:\\b(foo|bar|[A-Z])\\b)" 1119-;-;-;- 1120-;0-3 0-3;-;0-3 0-3 1121"(?:\\b(foo|bar|[A-Z])\\b)$" 1122-;-;-;- 1123-;-;-;- 1124strings 1125"" 1126"ffoo bbar N x" 1127regexps 1128"\\b(foo|bar|[A-Z])\\b" 1129-;-;-;- 1130-;10-11 10-11;-;10-11 10-11 1131"^(?:\\b(foo|bar|[A-Z])\\b)$" 1132-;-;-;- 1133-;-;-;- 1134"^(?:\\b(foo|bar|[A-Z])\\b)" 1135-;-;-;- 1136-;-;-;- 1137"(?:\\b(foo|bar|[A-Z])\\b)$" 1138-;-;-;- 1139-;-;-;- 1140strings 1141"" 1142"fo" 1143regexps 1144"\\b(fo|foo)\\b" 1145-;-;-;- 11460-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1147"^(?:\\b(fo|foo)\\b)$" 1148-;-;-;- 11490-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1150"^(?:\\b(fo|foo)\\b)" 1151-;-;-;- 11520-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1153"(?:\\b(fo|foo)\\b)$" 1154-;-;-;- 11550-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1156strings 1157"" 1158"foo" 1159regexps 1160"\\b(fo|foo)\\b" 1161-;-;-;- 11620-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1163"^(?:\\b(fo|foo)\\b)$" 1164-;-;-;- 11650-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1166"^(?:\\b(fo|foo)\\b)" 1167-;-;-;- 11680-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1169"(?:\\b(fo|foo)\\b)$" 1170-;-;-;- 11710-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1172strings 1173"" 1174"" 1175regexps 1176"\\b\\b" 1177-;-;-;- 1178-;-;-;- 1179"^(?:\\b\\b)$" 1180-;-;-;- 1181-;-;-;- 1182"^(?:\\b\\b)" 1183-;-;-;- 1184-;-;-;- 1185"(?:\\b\\b)$" 1186-;-;-;- 1187-;-;-;- 1188strings 1189"" 1190"x" 1191regexps 1192"\\b\\b" 1193-;-;-;- 1194-;0-0;-;0-0 1195"^(?:\\b\\b)$" 1196-;-;-;- 1197-;-;-;- 1198"^(?:\\b\\b)" 1199-;-;-;- 1200-;0-0;-;0-0 1201"(?:\\b\\b)$" 1202-;-;-;- 1203-;1-1;-;1-1 1204strings 1205"" 1206"" 1207regexps 1208"\\b$" 1209-;-;-;- 1210-;-;-;- 1211"^(?:\\b$)$" 1212-;-;-;- 1213-;-;-;- 1214"^(?:\\b$)" 1215-;-;-;- 1216-;-;-;- 1217"(?:\\b$)$" 1218-;-;-;- 1219-;-;-;- 1220strings 1221"" 1222"x" 1223regexps 1224"\\b$" 1225-;-;-;- 1226-;1-1;-;1-1 1227"^(?:\\b$)$" 1228-;-;-;- 1229-;-;-;- 1230"^(?:\\b$)" 1231-;-;-;- 1232-;-;-;- 1233"(?:\\b$)$" 1234-;-;-;- 1235-;1-1;-;1-1 1236strings 1237"" 1238"y x" 1239regexps 1240"\\b$" 1241-;-;-;- 1242-;3-3;-;3-3 1243"^(?:\\b$)$" 1244-;-;-;- 1245-;-;-;- 1246"^(?:\\b$)" 1247-;-;-;- 1248-;-;-;- 1249"(?:\\b$)$" 1250-;-;-;- 1251-;3-3;-;3-3 1252strings 1253"" 1254"x" 1255regexps 1256"\\b.$" 1257-;-;-;- 12580-1;0-1;0-1;0-1 1259"^(?:\\b.$)$" 1260-;-;-;- 12610-1;0-1;0-1;0-1 1262"^(?:\\b.$)" 1263-;-;-;- 12640-1;0-1;0-1;0-1 1265"(?:\\b.$)$" 1266-;-;-;- 12670-1;0-1;0-1;0-1 1268strings 1269"" 1270"fo" 1271regexps 1272"^\\b(fo|foo)\\b" 1273-;-;-;- 12740-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1275"^(?:^\\b(fo|foo)\\b)$" 1276-;-;-;- 12770-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1278"^(?:^\\b(fo|foo)\\b)" 1279-;-;-;- 12800-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1281"(?:^\\b(fo|foo)\\b)$" 1282-;-;-;- 12830-2 0-2;0-2 0-2;0-2 0-2;0-2 0-2 1284strings 1285"" 1286"foo" 1287regexps 1288"^\\b(fo|foo)\\b" 1289-;-;-;- 12900-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1291"^(?:^\\b(fo|foo)\\b)$" 1292-;-;-;- 12930-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1294"^(?:^\\b(fo|foo)\\b)" 1295-;-;-;- 12960-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1297"(?:^\\b(fo|foo)\\b)$" 1298-;-;-;- 12990-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 1300strings 1301"" 1302"" 1303regexps 1304"^\\b" 1305-;-;-;- 1306-;-;-;- 1307"^(?:^\\b)$" 1308-;-;-;- 1309-;-;-;- 1310"^(?:^\\b)" 1311-;-;-;- 1312-;-;-;- 1313"(?:^\\b)$" 1314-;-;-;- 1315-;-;-;- 1316strings 1317"" 1318"x" 1319regexps 1320"^\\b" 1321-;-;-;- 1322-;0-0;-;0-0 1323"^(?:^\\b)$" 1324-;-;-;- 1325-;-;-;- 1326"^(?:^\\b)" 1327-;-;-;- 1328-;0-0;-;0-0 1329"(?:^\\b)$" 1330-;-;-;- 1331-;-;-;- 1332strings 1333"" 1334"" 1335regexps 1336"^\\b\\b" 1337-;-;-;- 1338-;-;-;- 1339"^(?:^\\b\\b)$" 1340-;-;-;- 1341-;-;-;- 1342"^(?:^\\b\\b)" 1343-;-;-;- 1344-;-;-;- 1345"(?:^\\b\\b)$" 1346-;-;-;- 1347-;-;-;- 1348strings 1349"" 1350"x" 1351regexps 1352"^\\b\\b" 1353-;-;-;- 1354-;0-0;-;0-0 1355"^(?:^\\b\\b)$" 1356-;-;-;- 1357-;-;-;- 1358"^(?:^\\b\\b)" 1359-;-;-;- 1360-;0-0;-;0-0 1361"(?:^\\b\\b)$" 1362-;-;-;- 1363-;-;-;- 1364strings 1365"" 1366"" 1367regexps 1368"^\\b$" 1369-;-;-;- 1370-;-;-;- 1371"^(?:^\\b$)$" 1372-;-;-;- 1373-;-;-;- 1374"^(?:^\\b$)" 1375-;-;-;- 1376-;-;-;- 1377"(?:^\\b$)$" 1378-;-;-;- 1379-;-;-;- 1380strings 1381"" 1382"x" 1383regexps 1384"^\\b$" 1385-;-;-;- 1386-;-;-;- 1387"^(?:^\\b$)$" 1388-;-;-;- 1389-;-;-;- 1390"^(?:^\\b$)" 1391-;-;-;- 1392-;-;-;- 1393"(?:^\\b$)$" 1394-;-;-;- 1395-;-;-;- 1396strings 1397"" 1398"x" 1399regexps 1400"^\\b.$" 1401-;-;-;- 14020-1;0-1;0-1;0-1 1403"^(?:^\\b.$)$" 1404-;-;-;- 14050-1;0-1;0-1;0-1 1406"^(?:^\\b.$)" 1407-;-;-;- 14080-1;0-1;0-1;0-1 1409"(?:^\\b.$)$" 1410-;-;-;- 14110-1;0-1;0-1;0-1 1412strings 1413"" 1414"x" 1415regexps 1416"^\\b.\\b$" 1417-;-;-;- 14180-1;0-1;0-1;0-1 1419"^(?:^\\b.\\b$)$" 1420-;-;-;- 14210-1;0-1;0-1;0-1 1422"^(?:^\\b.\\b$)" 1423-;-;-;- 14240-1;0-1;0-1;0-1 1425"(?:^\\b.\\b$)$" 1426-;-;-;- 14270-1;0-1;0-1;0-1 1428strings 1429"" 1430"" 1431regexps 1432"^^^^^^^^\\b$$$$$$$" 1433-;-;-;- 1434-;-;-;- 1435"^(?:^^^^^^^^\\b$$$$$$$)$" 1436-;-;-;- 1437-;-;-;- 1438"^(?:^^^^^^^^\\b$$$$$$$)" 1439-;-;-;- 1440-;-;-;- 1441"(?:^^^^^^^^\\b$$$$$$$)$" 1442-;-;-;- 1443-;-;-;- 1444strings 1445"" 1446"x" 1447regexps 1448"^^^^^^^^\\b.$$$$$$" 1449-;-;-;- 14500-1;0-1;0-1;0-1 1451"^(?:^^^^^^^^\\b.$$$$$$)$" 1452-;-;-;- 14530-1;0-1;0-1;0-1 1454"^(?:^^^^^^^^\\b.$$$$$$)" 1455-;-;-;- 14560-1;0-1;0-1;0-1 1457"(?:^^^^^^^^\\b.$$$$$$)$" 1458-;-;-;- 14590-1;0-1;0-1;0-1 1460strings 1461"" 1462"x" 1463regexps 1464"^^^^^^^^\\b$$$$$$$" 1465-;-;-;- 1466-;-;-;- 1467"^(?:^^^^^^^^\\b$$$$$$$)$" 1468-;-;-;- 1469-;-;-;- 1470"^(?:^^^^^^^^\\b$$$$$$$)" 1471-;-;-;- 1472-;-;-;- 1473"(?:^^^^^^^^\\b$$$$$$$)$" 1474-;-;-;- 1475-;-;-;- 1476strings 1477"" 1478"n foo xfoox that" 1479regexps 1480"\\Bfoo\\B" 1481-;-;-;- 1482-;7-10;-;7-10 1483"^(?:\\Bfoo\\B)$" 1484-;-;-;- 1485-;-;-;- 1486"^(?:\\Bfoo\\B)" 1487-;-;-;- 1488-;-;-;- 1489"(?:\\Bfoo\\B)$" 1490-;-;-;- 1491-;-;-;- 1492strings 1493"" 1494"faoa x" 1495regexps 1496"a\\B" 1497-;-;-;- 1498-;1-2;-;1-2 1499"^(?:a\\B)$" 1500-;-;-;- 1501-;-;-;- 1502"^(?:a\\B)" 1503-;-;-;- 1504-;-;-;- 1505"(?:a\\B)$" 1506-;-;-;- 1507-;-;-;- 1508strings 1509"" 1510"bar x" 1511regexps 1512"\\Bbar" 1513-;-;-;- 1514-;-;-;- 1515"^(?:\\Bbar)$" 1516-;-;-;- 1517-;-;-;- 1518"^(?:\\Bbar)" 1519-;-;-;- 1520-;-;-;- 1521"(?:\\Bbar)$" 1522-;-;-;- 1523-;-;-;- 1524strings 1525"" 1526"foo\nbar x" 1527regexps 1528"\\Bbar" 1529-;-;-;- 1530-;-;-;- 1531"^(?:\\Bbar)$" 1532-;-;-;- 1533-;-;-;- 1534"^(?:\\Bbar)" 1535-;-;-;- 1536-;-;-;- 1537"(?:\\Bbar)$" 1538-;-;-;- 1539-;-;-;- 1540strings 1541"" 1542"foobar" 1543regexps 1544"bar\\B" 1545-;-;-;- 1546-;-;-;- 1547"^(?:bar\\B)$" 1548-;-;-;- 1549-;-;-;- 1550"^(?:bar\\B)" 1551-;-;-;- 1552-;-;-;- 1553"(?:bar\\B)$" 1554-;-;-;- 1555-;-;-;- 1556strings 1557"" 1558"foobar\nxxx" 1559regexps 1560"bar\\B" 1561-;-;-;- 1562-;-;-;- 1563"^(?:bar\\B)$" 1564-;-;-;- 1565-;-;-;- 1566"^(?:bar\\B)" 1567-;-;-;- 1568-;-;-;- 1569"(?:bar\\B)$" 1570-;-;-;- 1571-;-;-;- 1572strings 1573"" 1574"foox" 1575regexps 1576"(foo|bar|[A-Z])\\B" 1577-;-;-;- 1578-;0-3 0-3;-;0-3 0-3 1579"^(?:(foo|bar|[A-Z])\\B)$" 1580-;-;-;- 1581-;-;-;- 1582"^(?:(foo|bar|[A-Z])\\B)" 1583-;-;-;- 1584-;0-3 0-3;-;0-3 0-3 1585"(?:(foo|bar|[A-Z])\\B)$" 1586-;-;-;- 1587-;-;-;- 1588strings 1589"" 1590"foo\n" 1591regexps 1592"(foo|bar|[A-Z])\\B" 1593-;-;-;- 1594-;-;-;- 1595"^(?:(foo|bar|[A-Z])\\B)$" 1596-;-;-;- 1597-;-;-;- 1598"^(?:(foo|bar|[A-Z])\\B)" 1599-;-;-;- 1600-;-;-;- 1601"(?:(foo|bar|[A-Z])\\B)$" 1602-;-;-;- 1603-;-;-;- 1604strings 1605"" 1606"" 1607regexps 1608"\\B" 16090-0;0-0;0-0;0-0 16100-0;0-0;0-0;0-0 1611"^(?:\\B)$" 16120-0;0-0;0-0;0-0 16130-0;0-0;0-0;0-0 1614"^(?:\\B)" 16150-0;0-0;0-0;0-0 16160-0;0-0;0-0;0-0 1617"(?:\\B)$" 16180-0;0-0;0-0;0-0 16190-0;0-0;0-0;0-0 1620strings 1621"" 1622"x" 1623regexps 1624"\\B" 16250-0;0-0;0-0;0-0 1626-;-;-;- 1627"^(?:\\B)$" 16280-0;0-0;0-0;0-0 1629-;-;-;- 1630"^(?:\\B)" 16310-0;0-0;0-0;0-0 1632-;-;-;- 1633"(?:\\B)$" 16340-0;0-0;0-0;0-0 1635-;-;-;- 1636strings 1637"" 1638"foo" 1639regexps 1640"\\B(foo|bar|[A-Z])" 1641-;-;-;- 1642-;-;-;- 1643"^(?:\\B(foo|bar|[A-Z]))$" 1644-;-;-;- 1645-;-;-;- 1646"^(?:\\B(foo|bar|[A-Z]))" 1647-;-;-;- 1648-;-;-;- 1649"(?:\\B(foo|bar|[A-Z]))$" 1650-;-;-;- 1651-;-;-;- 1652strings 1653"" 1654"xXy" 1655regexps 1656"\\B(foo|bar|[A-Z])\\B" 1657-;-;-;- 1658-;1-2 1-2;-;1-2 1-2 1659"^(?:\\B(foo|bar|[A-Z])\\B)$" 1660-;-;-;- 1661-;-;-;- 1662"^(?:\\B(foo|bar|[A-Z])\\B)" 1663-;-;-;- 1664-;-;-;- 1665"(?:\\B(foo|bar|[A-Z])\\B)$" 1666-;-;-;- 1667-;-;-;- 1668strings 1669"" 1670"XY" 1671regexps 1672"\\B(foo|bar|[A-Z])\\B" 1673-;-;-;- 1674-;-;-;- 1675"^(?:\\B(foo|bar|[A-Z])\\B)$" 1676-;-;-;- 1677-;-;-;- 1678"^(?:\\B(foo|bar|[A-Z])\\B)" 1679-;-;-;- 1680-;-;-;- 1681"(?:\\B(foo|bar|[A-Z])\\B)$" 1682-;-;-;- 1683-;-;-;- 1684strings 1685"" 1686"XYZ" 1687regexps 1688"\\B(foo|bar|[A-Z])\\B" 1689-;-;-;- 1690-;1-2 1-2;-;1-2 1-2 1691"^(?:\\B(foo|bar|[A-Z])\\B)$" 1692-;-;-;- 1693-;-;-;- 1694"^(?:\\B(foo|bar|[A-Z])\\B)" 1695-;-;-;- 1696-;-;-;- 1697"(?:\\B(foo|bar|[A-Z])\\B)$" 1698-;-;-;- 1699-;-;-;- 1700strings 1701"" 1702"abara" 1703regexps 1704"\\B(foo|bar|[A-Z])\\B" 1705-;-;-;- 1706-;1-4 1-4;-;1-4 1-4 1707"^(?:\\B(foo|bar|[A-Z])\\B)$" 1708-;-;-;- 1709-;-;-;- 1710"^(?:\\B(foo|bar|[A-Z])\\B)" 1711-;-;-;- 1712-;-;-;- 1713"(?:\\B(foo|bar|[A-Z])\\B)$" 1714-;-;-;- 1715-;-;-;- 1716strings 1717"" 1718"xfoo_" 1719regexps 1720"\\B(foo|bar|[A-Z])\\B" 1721-;-;-;- 1722-;1-4 1-4;-;1-4 1-4 1723"^(?:\\B(foo|bar|[A-Z])\\B)$" 1724-;-;-;- 1725-;-;-;- 1726"^(?:\\B(foo|bar|[A-Z])\\B)" 1727-;-;-;- 1728-;-;-;- 1729"(?:\\B(foo|bar|[A-Z])\\B)$" 1730-;-;-;- 1731-;-;-;- 1732strings 1733"" 1734"xfoo\n" 1735regexps 1736"\\B(foo|bar|[A-Z])\\B" 1737-;-;-;- 1738-;-;-;- 1739"^(?:\\B(foo|bar|[A-Z])\\B)$" 1740-;-;-;- 1741-;-;-;- 1742"^(?:\\B(foo|bar|[A-Z])\\B)" 1743-;-;-;- 1744-;-;-;- 1745"(?:\\B(foo|bar|[A-Z])\\B)$" 1746-;-;-;- 1747-;-;-;- 1748strings 1749"" 1750"foo bar vNx" 1751regexps 1752"\\B(foo|bar|[A-Z])\\B" 1753-;-;-;- 1754-;9-10 9-10;-;9-10 9-10 1755"^(?:\\B(foo|bar|[A-Z])\\B)$" 1756-;-;-;- 1757-;-;-;- 1758"^(?:\\B(foo|bar|[A-Z])\\B)" 1759-;-;-;- 1760-;-;-;- 1761"(?:\\B(foo|bar|[A-Z])\\B)$" 1762-;-;-;- 1763-;-;-;- 1764strings 1765"" 1766"xfoo" 1767regexps 1768"\\B(fo|foo)\\B" 1769-;-;-;- 1770-;1-3 1-3;-;1-3 1-3 1771"^(?:\\B(fo|foo)\\B)$" 1772-;-;-;- 1773-;-;-;- 1774"^(?:\\B(fo|foo)\\B)" 1775-;-;-;- 1776-;-;-;- 1777"(?:\\B(fo|foo)\\B)$" 1778-;-;-;- 1779-;-;-;- 1780strings 1781"" 1782"xfooo" 1783regexps 1784"\\B(foo|fo)\\B" 1785-;-;-;- 1786-;1-4 1-4;-;1-4 1-4 1787"^(?:\\B(foo|fo)\\B)$" 1788-;-;-;- 1789-;-;-;- 1790"^(?:\\B(foo|fo)\\B)" 1791-;-;-;- 1792-;-;-;- 1793"(?:\\B(foo|fo)\\B)$" 1794-;-;-;- 1795-;-;-;- 1796strings 1797"" 1798"" 1799regexps 1800"\\B\\B" 18010-0;0-0;0-0;0-0 18020-0;0-0;0-0;0-0 1803"^(?:\\B\\B)$" 18040-0;0-0;0-0;0-0 18050-0;0-0;0-0;0-0 1806"^(?:\\B\\B)" 18070-0;0-0;0-0;0-0 18080-0;0-0;0-0;0-0 1809"(?:\\B\\B)$" 18100-0;0-0;0-0;0-0 18110-0;0-0;0-0;0-0 1812strings 1813"" 1814"x" 1815regexps 1816"\\B\\B" 18170-0;0-0;0-0;0-0 1818-;-;-;- 1819"^(?:\\B\\B)$" 18200-0;0-0;0-0;0-0 1821-;-;-;- 1822"^(?:\\B\\B)" 18230-0;0-0;0-0;0-0 1824-;-;-;- 1825"(?:\\B\\B)$" 18260-0;0-0;0-0;0-0 1827-;-;-;- 1828strings 1829"" 1830"" 1831regexps 1832"\\B$" 18330-0;0-0;0-0;0-0 18340-0;0-0;0-0;0-0 1835"^(?:\\B$)$" 18360-0;0-0;0-0;0-0 18370-0;0-0;0-0;0-0 1838"^(?:\\B$)" 18390-0;0-0;0-0;0-0 18400-0;0-0;0-0;0-0 1841"(?:\\B$)$" 18420-0;0-0;0-0;0-0 18430-0;0-0;0-0;0-0 1844strings 1845"" 1846"x" 1847regexps 1848"\\B$" 18490-0;0-0;0-0;0-0 1850-;-;-;- 1851"^(?:\\B$)$" 18520-0;0-0;0-0;0-0 1853-;-;-;- 1854"^(?:\\B$)" 18550-0;0-0;0-0;0-0 1856-;-;-;- 1857"(?:\\B$)$" 18580-0;0-0;0-0;0-0 1859-;-;-;- 1860strings 1861"" 1862"y x" 1863regexps 1864"\\B$" 18650-0;0-0;0-0;0-0 1866-;-;-;- 1867"^(?:\\B$)$" 18680-0;0-0;0-0;0-0 1869-;-;-;- 1870"^(?:\\B$)" 18710-0;0-0;0-0;0-0 1872-;-;-;- 1873"(?:\\B$)$" 18740-0;0-0;0-0;0-0 1875-;-;-;- 1876strings 1877"" 1878"x" 1879regexps 1880"\\B.$" 1881-;-;-;- 1882-;-;-;- 1883"^(?:\\B.$)$" 1884-;-;-;- 1885-;-;-;- 1886"^(?:\\B.$)" 1887-;-;-;- 1888-;-;-;- 1889"(?:\\B.$)$" 1890-;-;-;- 1891-;-;-;- 1892strings 1893"" 1894"fo" 1895regexps 1896"^\\B(fo|foo)\\B" 1897-;-;-;- 1898-;-;-;- 1899"^(?:^\\B(fo|foo)\\B)$" 1900-;-;-;- 1901-;-;-;- 1902"^(?:^\\B(fo|foo)\\B)" 1903-;-;-;- 1904-;-;-;- 1905"(?:^\\B(fo|foo)\\B)$" 1906-;-;-;- 1907-;-;-;- 1908strings 1909"" 1910"foo" 1911regexps 1912"^\\B(fo|foo)\\B" 1913-;-;-;- 1914-;-;-;- 1915"^(?:^\\B(fo|foo)\\B)$" 1916-;-;-;- 1917-;-;-;- 1918"^(?:^\\B(fo|foo)\\B)" 1919-;-;-;- 1920-;-;-;- 1921"(?:^\\B(fo|foo)\\B)$" 1922-;-;-;- 1923-;-;-;- 1924strings 1925"" 1926"" 1927regexps 1928"^\\B" 19290-0;0-0;0-0;0-0 19300-0;0-0;0-0;0-0 1931"^(?:^\\B)$" 19320-0;0-0;0-0;0-0 19330-0;0-0;0-0;0-0 1934"^(?:^\\B)" 19350-0;0-0;0-0;0-0 19360-0;0-0;0-0;0-0 1937"(?:^\\B)$" 19380-0;0-0;0-0;0-0 19390-0;0-0;0-0;0-0 1940strings 1941"" 1942"x" 1943regexps 1944"^\\B" 19450-0;0-0;0-0;0-0 1946-;-;-;- 1947"^(?:^\\B)$" 19480-0;0-0;0-0;0-0 1949-;-;-;- 1950"^(?:^\\B)" 19510-0;0-0;0-0;0-0 1952-;-;-;- 1953"(?:^\\B)$" 19540-0;0-0;0-0;0-0 1955-;-;-;- 1956strings 1957"" 1958"" 1959regexps 1960"^\\B\\B" 19610-0;0-0;0-0;0-0 19620-0;0-0;0-0;0-0 1963"^(?:^\\B\\B)$" 19640-0;0-0;0-0;0-0 19650-0;0-0;0-0;0-0 1966"^(?:^\\B\\B)" 19670-0;0-0;0-0;0-0 19680-0;0-0;0-0;0-0 1969"(?:^\\B\\B)$" 19700-0;0-0;0-0;0-0 19710-0;0-0;0-0;0-0 1972strings 1973"" 1974"x" 1975regexps 1976"^\\B\\B" 19770-0;0-0;0-0;0-0 1978-;-;-;- 1979"^(?:^\\B\\B)$" 19800-0;0-0;0-0;0-0 1981-;-;-;- 1982"^(?:^\\B\\B)" 19830-0;0-0;0-0;0-0 1984-;-;-;- 1985"(?:^\\B\\B)$" 19860-0;0-0;0-0;0-0 1987-;-;-;- 1988strings 1989"" 1990"" 1991regexps 1992"^\\B$" 19930-0;0-0;0-0;0-0 19940-0;0-0;0-0;0-0 1995"^(?:^\\B$)$" 19960-0;0-0;0-0;0-0 19970-0;0-0;0-0;0-0 1998"^(?:^\\B$)" 19990-0;0-0;0-0;0-0 20000-0;0-0;0-0;0-0 2001"(?:^\\B$)$" 20020-0;0-0;0-0;0-0 20030-0;0-0;0-0;0-0 2004strings 2005"" 2006"x" 2007regexps 2008"^\\B$" 20090-0;0-0;0-0;0-0 2010-;-;-;- 2011"^(?:^\\B$)$" 20120-0;0-0;0-0;0-0 2013-;-;-;- 2014"^(?:^\\B$)" 20150-0;0-0;0-0;0-0 2016-;-;-;- 2017"(?:^\\B$)$" 20180-0;0-0;0-0;0-0 2019-;-;-;- 2020strings 2021"" 2022"x" 2023regexps 2024"^\\B.$" 2025-;-;-;- 2026-;-;-;- 2027"^(?:^\\B.$)$" 2028-;-;-;- 2029-;-;-;- 2030"^(?:^\\B.$)" 2031-;-;-;- 2032-;-;-;- 2033"(?:^\\B.$)$" 2034-;-;-;- 2035-;-;-;- 2036strings 2037"" 2038"x" 2039regexps 2040"^\\B.\\B$" 2041-;-;-;- 2042-;-;-;- 2043"^(?:^\\B.\\B$)$" 2044-;-;-;- 2045-;-;-;- 2046"^(?:^\\B.\\B$)" 2047-;-;-;- 2048-;-;-;- 2049"(?:^\\B.\\B$)$" 2050-;-;-;- 2051-;-;-;- 2052strings 2053"" 2054"" 2055regexps 2056"^^^^^^^^\\B$$$$$$$" 20570-0;0-0;0-0;0-0 20580-0;0-0;0-0;0-0 2059"^(?:^^^^^^^^\\B$$$$$$$)$" 20600-0;0-0;0-0;0-0 20610-0;0-0;0-0;0-0 2062"^(?:^^^^^^^^\\B$$$$$$$)" 20630-0;0-0;0-0;0-0 20640-0;0-0;0-0;0-0 2065"(?:^^^^^^^^\\B$$$$$$$)$" 20660-0;0-0;0-0;0-0 20670-0;0-0;0-0;0-0 2068strings 2069"" 2070"x" 2071regexps 2072"^^^^^^^^\\B.$$$$$$" 2073-;-;-;- 2074-;-;-;- 2075"^(?:^^^^^^^^\\B.$$$$$$)$" 2076-;-;-;- 2077-;-;-;- 2078"^(?:^^^^^^^^\\B.$$$$$$)" 2079-;-;-;- 2080-;-;-;- 2081"(?:^^^^^^^^\\B.$$$$$$)$" 2082-;-;-;- 2083-;-;-;- 2084strings 2085"" 2086"x" 2087regexps 2088"^^^^^^^^\\B$$$$$$$" 20890-0;0-0;0-0;0-0 2090-;-;-;- 2091"^(?:^^^^^^^^\\B$$$$$$$)$" 20920-0;0-0;0-0;0-0 2093-;-;-;- 2094"^(?:^^^^^^^^\\B$$$$$$$)" 20950-0;0-0;0-0;0-0 2096-;-;-;- 2097"(?:^^^^^^^^\\B$$$$$$$)$" 20980-0;0-0;0-0;0-0 2099-;-;-;- 2100strings 2101"" 2102"x" 2103regexps 2104"\\bx\\b" 2105-;-;-;- 21060-1;0-1;0-1;0-1 2107"^(?:\\bx\\b)$" 2108-;-;-;- 21090-1;0-1;0-1;0-1 2110"^(?:\\bx\\b)" 2111-;-;-;- 21120-1;0-1;0-1;0-1 2113"(?:\\bx\\b)$" 2114-;-;-;- 21150-1;0-1;0-1;0-1 2116strings 2117"" 2118"x>" 2119regexps 2120"\\bx\\b" 2121-;-;-;- 2122-;0-1;-;0-1 2123"^(?:\\bx\\b)$" 2124-;-;-;- 2125-;-;-;- 2126"^(?:\\bx\\b)" 2127-;-;-;- 2128-;0-1;-;0-1 2129"(?:\\bx\\b)$" 2130-;-;-;- 2131-;-;-;- 2132strings 2133"" 2134"<x" 2135regexps 2136"\\bx\\b" 2137-;-;-;- 2138-;1-2;-;1-2 2139"^(?:\\bx\\b)$" 2140-;-;-;- 2141-;-;-;- 2142"^(?:\\bx\\b)" 2143-;-;-;- 2144-;-;-;- 2145"(?:\\bx\\b)$" 2146-;-;-;- 2147-;1-2;-;1-2 2148strings 2149"" 2150"<x>" 2151regexps 2152"\\bx\\b" 2153-;-;-;- 2154-;1-2;-;1-2 2155"^(?:\\bx\\b)$" 2156-;-;-;- 2157-;-;-;- 2158"^(?:\\bx\\b)" 2159-;-;-;- 2160-;-;-;- 2161"(?:\\bx\\b)$" 2162-;-;-;- 2163-;-;-;- 2164strings 2165"" 2166"ax" 2167regexps 2168"\\bx\\b" 2169-;-;-;- 2170-;-;-;- 2171"^(?:\\bx\\b)$" 2172-;-;-;- 2173-;-;-;- 2174"^(?:\\bx\\b)" 2175-;-;-;- 2176-;-;-;- 2177"(?:\\bx\\b)$" 2178-;-;-;- 2179-;-;-;- 2180strings 2181"" 2182"xb" 2183regexps 2184"\\bx\\b" 2185-;-;-;- 2186-;-;-;- 2187"^(?:\\bx\\b)$" 2188-;-;-;- 2189-;-;-;- 2190"^(?:\\bx\\b)" 2191-;-;-;- 2192-;-;-;- 2193"(?:\\bx\\b)$" 2194-;-;-;- 2195-;-;-;- 2196strings 2197"" 2198"axb" 2199regexps 2200"\\bx\\b" 2201-;-;-;- 2202-;-;-;- 2203"^(?:\\bx\\b)$" 2204-;-;-;- 2205-;-;-;- 2206"^(?:\\bx\\b)" 2207-;-;-;- 2208-;-;-;- 2209"(?:\\bx\\b)$" 2210-;-;-;- 2211-;-;-;- 2212strings 2213"" 2214"«x" 2215regexps 2216"\\bx\\b" 2217-;-;-;- 2218-;2-3;-;2-3 2219"^(?:\\bx\\b)$" 2220-;-;-;- 2221-;-;-;- 2222"^(?:\\bx\\b)" 2223-;-;-;- 2224-;-;-;- 2225"(?:\\bx\\b)$" 2226-;-;-;- 2227-;2-3;-;2-3 2228strings 2229"" 2230"x»" 2231regexps 2232"\\bx\\b" 2233-;-;-;- 2234-;0-1;-;0-1 2235"^(?:\\bx\\b)$" 2236-;-;-;- 2237-;-;-;- 2238"^(?:\\bx\\b)" 2239-;-;-;- 2240-;0-1;-;0-1 2241"(?:\\bx\\b)$" 2242-;-;-;- 2243-;-;-;- 2244strings 2245"" 2246"«x»" 2247regexps 2248"\\bx\\b" 2249-;-;-;- 2250-;2-3;-;2-3 2251"^(?:\\bx\\b)$" 2252-;-;-;- 2253-;-;-;- 2254"^(?:\\bx\\b)" 2255-;-;-;- 2256-;-;-;- 2257"(?:\\bx\\b)$" 2258-;-;-;- 2259-;-;-;- 2260strings 2261"" 2262"axb" 2263regexps 2264"\\bx\\b" 2265-;-;-;- 2266-;-;-;- 2267"^(?:\\bx\\b)$" 2268-;-;-;- 2269-;-;-;- 2270"^(?:\\bx\\b)" 2271-;-;-;- 2272-;-;-;- 2273"(?:\\bx\\b)$" 2274-;-;-;- 2275-;-;-;- 2276strings 2277"" 2278"áxβ" 2279regexps 2280"\\bx\\b" 2281-;-;-;- 2282-;2-3;-;2-3 2283"^(?:\\bx\\b)$" 2284-;-;-;- 2285-;-;-;- 2286"^(?:\\bx\\b)" 2287-;-;-;- 2288-;-;-;- 2289"(?:\\bx\\b)$" 2290-;-;-;- 2291-;-;-;- 2292strings 2293"" 2294"axb" 2295regexps 2296"\\Bx\\B" 2297-;-;-;- 2298-;1-2;-;1-2 2299"^(?:\\Bx\\B)$" 2300-;-;-;- 2301-;-;-;- 2302"^(?:\\Bx\\B)" 2303-;-;-;- 2304-;-;-;- 2305"(?:\\Bx\\B)$" 2306-;-;-;- 2307-;-;-;- 2308strings 2309"" 2310"áxβ" 2311regexps 2312"\\Bx\\B" 2313-;-;-;- 2314-;-;-;- 2315"^(?:\\Bx\\B)$" 2316-;-;-;- 2317-;-;-;- 2318"^(?:\\Bx\\B)" 2319-;-;-;- 2320-;-;-;- 2321"(?:\\Bx\\B)$" 2322-;-;-;- 2323-;-;-;- 2324strings 2325"" 2326"" 2327regexps 2328"^$^$" 23290-0;0-0;0-0;0-0 23300-0;0-0;0-0;0-0 2331"^(?:^$^$)$" 23320-0;0-0;0-0;0-0 23330-0;0-0;0-0;0-0 2334"^(?:^$^$)" 23350-0;0-0;0-0;0-0 23360-0;0-0;0-0;0-0 2337"(?:^$^$)$" 23380-0;0-0;0-0;0-0 23390-0;0-0;0-0;0-0 2340strings 2341"" 2342"" 2343regexps 2344"^$^" 23450-0;0-0;0-0;0-0 23460-0;0-0;0-0;0-0 2347"^(?:^$^)$" 23480-0;0-0;0-0;0-0 23490-0;0-0;0-0;0-0 2350"^(?:^$^)" 23510-0;0-0;0-0;0-0 23520-0;0-0;0-0;0-0 2353"(?:^$^)$" 23540-0;0-0;0-0;0-0 23550-0;0-0;0-0;0-0 2356strings 2357"" 2358"" 2359regexps 2360"$^$" 23610-0;0-0;0-0;0-0 23620-0;0-0;0-0;0-0 2363"^(?:$^$)$" 23640-0;0-0;0-0;0-0 23650-0;0-0;0-0;0-0 2366"^(?:$^$)" 23670-0;0-0;0-0;0-0 23680-0;0-0;0-0;0-0 2369"(?:$^$)$" 23700-0;0-0;0-0;0-0 23710-0;0-0;0-0;0-0 2372strings 2373"" 2374"x" 2375regexps 2376"^$^$" 23770-0;0-0;0-0;0-0 2378-;-;-;- 2379"^(?:^$^$)$" 23800-0;0-0;0-0;0-0 2381-;-;-;- 2382"^(?:^$^$)" 23830-0;0-0;0-0;0-0 2384-;-;-;- 2385"(?:^$^$)$" 23860-0;0-0;0-0;0-0 2387-;-;-;- 2388strings 2389"" 2390"x" 2391regexps 2392"^$^" 23930-0;0-0;0-0;0-0 2394-;-;-;- 2395"^(?:^$^)$" 23960-0;0-0;0-0;0-0 2397-;-;-;- 2398"^(?:^$^)" 23990-0;0-0;0-0;0-0 2400-;-;-;- 2401"(?:^$^)$" 24020-0;0-0;0-0;0-0 2403-;-;-;- 2404strings 2405"" 2406"x" 2407regexps 2408"$^$" 24090-0;0-0;0-0;0-0 2410-;-;-;- 2411"^(?:$^$)$" 24120-0;0-0;0-0;0-0 2413-;-;-;- 2414"^(?:$^$)" 24150-0;0-0;0-0;0-0 2416-;-;-;- 2417"(?:$^$)$" 24180-0;0-0;0-0;0-0 2419-;-;-;- 2420strings 2421"" 2422"x\ny" 2423regexps 2424"^$^$" 24250-0;0-0;0-0;0-0 2426-;-;-;- 2427"^(?:^$^$)$" 24280-0;0-0;0-0;0-0 2429-;-;-;- 2430"^(?:^$^$)" 24310-0;0-0;0-0;0-0 2432-;-;-;- 2433"(?:^$^$)$" 24340-0;0-0;0-0;0-0 2435-;-;-;- 2436strings 2437"" 2438"x\ny" 2439regexps 2440"^$^" 24410-0;0-0;0-0;0-0 2442-;-;-;- 2443"^(?:^$^)$" 24440-0;0-0;0-0;0-0 2445-;-;-;- 2446"^(?:^$^)" 24470-0;0-0;0-0;0-0 2448-;-;-;- 2449"(?:^$^)$" 24500-0;0-0;0-0;0-0 2451-;-;-;- 2452strings 2453"" 2454"x\ny" 2455regexps 2456"$^$" 24570-0;0-0;0-0;0-0 2458-;-;-;- 2459"^(?:$^$)$" 24600-0;0-0;0-0;0-0 2461-;-;-;- 2462"^(?:$^$)" 24630-0;0-0;0-0;0-0 2464-;-;-;- 2465"(?:$^$)$" 24660-0;0-0;0-0;0-0 2467-;-;-;- 2468strings 2469"" 2470"x\n\ny" 2471regexps 2472"^$^$" 24730-0;0-0;0-0;0-0 2474-;-;-;- 2475"^(?:^$^$)$" 24760-0;0-0;0-0;0-0 2477-;-;-;- 2478"^(?:^$^$)" 24790-0;0-0;0-0;0-0 2480-;-;-;- 2481"(?:^$^$)$" 24820-0;0-0;0-0;0-0 2483-;-;-;- 2484strings 2485"" 2486"x\n\ny" 2487regexps 2488"^$^" 24890-0;0-0;0-0;0-0 2490-;-;-;- 2491"^(?:^$^)$" 24920-0;0-0;0-0;0-0 2493-;-;-;- 2494"^(?:^$^)" 24950-0;0-0;0-0;0-0 2496-;-;-;- 2497"(?:^$^)$" 24980-0;0-0;0-0;0-0 2499-;-;-;- 2500strings 2501"" 2502"x\n\ny" 2503regexps 2504"$^$" 25050-0;0-0;0-0;0-0 2506-;-;-;- 2507"^(?:$^$)$" 25080-0;0-0;0-0;0-0 2509-;-;-;- 2510"^(?:$^$)" 25110-0;0-0;0-0;0-0 2512-;-;-;- 2513"(?:$^$)$" 25140-0;0-0;0-0;0-0 2515-;-;-;- 2516strings 2517"" 2518"foo$bar" 2519regexps 2520"^(foo\\$)$" 2521-;-;-;- 2522-;-;-;- 2523"^(?:^(foo\\$)$)$" 2524-;-;-;- 2525-;-;-;- 2526"^(?:^(foo\\$)$)" 2527-;-;-;- 2528-;-;-;- 2529"(?:^(foo\\$)$)$" 2530-;-;-;- 2531-;-;-;- 2532strings 2533"" 2534"foo$bar" 2535regexps 2536"(foo\\$)" 2537-;-;-;- 2538-;0-4 0-4;-;0-4 0-4 2539"^(?:(foo\\$))$" 2540-;-;-;- 2541-;-;-;- 2542"^(?:(foo\\$))" 2543-;-;-;- 2544-;0-4 0-4;-;0-4 0-4 2545"(?:(foo\\$))$" 2546-;-;-;- 2547-;-;-;- 2548strings 2549"" 2550"abc" 2551regexps 2552"^...$" 2553-;-;-;- 25540-3;0-3;0-3;0-3 2555"^(?:^...$)$" 2556-;-;-;- 25570-3;0-3;0-3;0-3 2558"^(?:^...$)" 2559-;-;-;- 25600-3;0-3;0-3;0-3 2561"(?:^...$)$" 2562-;-;-;- 25630-3;0-3;0-3;0-3 2564strings 2565"" 2566"本" 2567regexps 2568"^本$" 2569-;-;-;- 25700-3;0-3;0-3;0-3 2571"^(?:^本$)$" 2572-;-;-;- 25730-3;0-3;0-3;0-3 2574"^(?:^本$)" 2575-;-;-;- 25760-3;0-3;0-3;0-3 2577"(?:^本$)$" 2578-;-;-;- 25790-3;0-3;0-3;0-3 2580strings 2581"" 2582"日本語" 2583regexps 2584"^...$" 2585-;-;-;- 25860-9;0-9;0-9;0-9 2587"^(?:^...$)$" 2588-;-;-;- 25890-9;0-9;0-9;0-9 2590"^(?:^...$)" 2591-;-;-;- 25920-9;0-9;0-9;0-9 2593"(?:^...$)$" 2594-;-;-;- 25950-9;0-9;0-9;0-9 2596strings 2597"" 2598".本." 2599regexps 2600"^...$" 2601-;-;-;- 26020-5;0-5;0-5;0-5 2603"^(?:^...$)$" 2604-;-;-;- 26050-5;0-5;0-5;0-5 2606"^(?:^...$)" 2607-;-;-;- 26080-5;0-5;0-5;0-5 2609"(?:^...$)$" 2610-;-;-;- 26110-5;0-5;0-5;0-5 2612strings 2613"" 2614"本" 2615regexps 2616"^\\C\\C\\C$" 2617-;-;-;- 26180-3;0-3;0-3;0-3 2619"^(?:^\\C\\C\\C$)$" 2620-;-;-;- 26210-3;0-3;0-3;0-3 2622"^(?:^\\C\\C\\C$)" 2623-;-;-;- 26240-3;0-3;0-3;0-3 2625"(?:^\\C\\C\\C$)$" 2626-;-;-;- 26270-3;0-3;0-3;0-3 2628strings 2629"" 2630"本" 2631regexps 2632"^\\C$" 2633-;-;-;- 2634-;-;-;- 2635"^(?:^\\C$)$" 2636-;-;-;- 2637-;-;-;- 2638"^(?:^\\C$)" 2639-;-;-;- 2640-;-;-;- 2641"(?:^\\C$)$" 2642-;-;-;- 2643-;-;-;- 2644strings 2645"" 2646"日本語" 2647regexps 2648"^\\C\\C\\C$" 2649-;-;-;- 2650-;-;-;- 2651"^(?:^\\C\\C\\C$)$" 2652-;-;-;- 2653-;-;-;- 2654"^(?:^\\C\\C\\C$)" 2655-;-;-;- 2656-;-;-;- 2657"(?:^\\C\\C\\C$)$" 2658-;-;-;- 2659-;-;-;- 2660strings 2661"" 2662"日本語" 2663regexps 2664"^...$" 2665-;-;-;- 26660-9;0-9;0-9;0-9 2667"^(?:^...$)$" 2668-;-;-;- 26690-9;0-9;0-9;0-9 2670"^(?:^...$)" 2671-;-;-;- 26720-9;0-9;0-9;0-9 2673"(?:^...$)$" 2674-;-;-;- 26750-9;0-9;0-9;0-9 2676strings 2677"" 2678"日本語" 2679regexps 2680"^.........$" 2681-;-;-;- 2682-;-;-;- 2683"^(?:^.........$)$" 2684-;-;-;- 2685-;-;-;- 2686"^(?:^.........$)" 2687-;-;-;- 2688-;-;-;- 2689"(?:^.........$)$" 2690-;-;-;- 2691-;-;-;- 2692strings 2693"" 2694".本." 2695regexps 2696"^...$" 2697-;-;-;- 26980-5;0-5;0-5;0-5 2699"^(?:^...$)$" 2700-;-;-;- 27010-5;0-5;0-5;0-5 2702"^(?:^...$)" 2703-;-;-;- 27040-5;0-5;0-5;0-5 2705"(?:^...$)$" 2706-;-;-;- 27070-5;0-5;0-5;0-5 2708strings 2709"" 2710".本." 2711regexps 2712"^.....$" 2713-;-;-;- 2714-;-;-;- 2715"^(?:^.....$)$" 2716-;-;-;- 2717-;-;-;- 2718"^(?:^.....$)" 2719-;-;-;- 2720-;-;-;- 2721"(?:^.....$)$" 2722-;-;-;- 2723-;-;-;- 2724strings 2725"" 2726"xfooo" 2727regexps 2728"\\B(fo|foo)\\B" 2729-;-;-;- 2730-;1-3 1-3;-;1-4 1-4 2731"^(?:\\B(fo|foo)\\B)$" 2732-;-;-;- 2733-;-;-;- 2734"^(?:\\B(fo|foo)\\B)" 2735-;-;-;- 2736-;-;-;- 2737"(?:\\B(fo|foo)\\B)$" 2738-;-;-;- 2739-;-;-;- 2740strings 2741"" 2742"foo" 2743regexps 2744"(fo|foo)" 2745-;-;-;- 27460-3 0-3;0-2 0-2;0-3 0-3;0-3 0-3 2747"^(?:(fo|foo))$" 2748-;-;-;- 27490-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 2750"^(?:(fo|foo))" 2751-;-;-;- 27520-3 0-3;0-2 0-2;0-3 0-3;0-3 0-3 2753"(?:(fo|foo))$" 2754-;-;-;- 27550-3 0-3;0-3 0-3;0-3 0-3;0-3 0-3 2756strings 2757"" 2758"a" 2759regexps 2760"\\141" 2761-;-;-;- 27620-1;0-1;0-1;0-1 2763"^(?:\\141)$" 2764-;-;-;- 27650-1;0-1;0-1;0-1 2766"^(?:\\141)" 2767-;-;-;- 27680-1;0-1;0-1;0-1 2769"(?:\\141)$" 2770-;-;-;- 27710-1;0-1;0-1;0-1 2772strings 2773"" 2774"0" 2775regexps 2776"\\060" 2777-;-;-;- 27780-1;0-1;0-1;0-1 2779"^(?:\\060)$" 2780-;-;-;- 27810-1;0-1;0-1;0-1 2782"^(?:\\060)" 2783-;-;-;- 27840-1;0-1;0-1;0-1 2785"(?:\\060)$" 2786-;-;-;- 27870-1;0-1;0-1;0-1 2788strings 2789"" 2790"00" 2791regexps 2792"\\0600" 2793-;-;-;- 27940-2;0-2;0-2;0-2 2795"^(?:\\0600)$" 2796-;-;-;- 27970-2;0-2;0-2;0-2 2798"^(?:\\0600)" 2799-;-;-;- 28000-2;0-2;0-2;0-2 2801"(?:\\0600)$" 2802-;-;-;- 28030-2;0-2;0-2;0-2 2804strings 2805"" 2806"08" 2807regexps 2808"\\608" 2809-;-;-;- 28100-2;0-2;0-2;0-2 2811"^(?:\\608)$" 2812-;-;-;- 28130-2;0-2;0-2;0-2 2814"^(?:\\608)" 2815-;-;-;- 28160-2;0-2;0-2;0-2 2817"(?:\\608)$" 2818-;-;-;- 28190-2;0-2;0-2;0-2 2820strings 2821"" 2822"" 2823regexps 2824"\\01" 2825-;-;-;- 28260-1;0-1;0-1;0-1 2827"^(?:\\01)$" 2828-;-;-;- 28290-1;0-1;0-1;0-1 2830"^(?:\\01)" 2831-;-;-;- 28320-1;0-1;0-1;0-1 2833"(?:\\01)$" 2834-;-;-;- 28350-1;0-1;0-1;0-1 2836strings 2837"" 2838"8" 2839regexps 2840"\\018" 2841-;-;-;- 28420-2;0-2;0-2;0-2 2843"^(?:\\018)$" 2844-;-;-;- 28450-2;0-2;0-2;0-2 2846"^(?:\\018)" 2847-;-;-;- 28480-2;0-2;0-2;0-2 2849"(?:\\018)$" 2850-;-;-;- 28510-2;0-2;0-2;0-2 2852strings 2853"" 2854"a" 2855regexps 2856"\\x{61}" 2857-;-;-;- 28580-1;0-1;0-1;0-1 2859"^(?:\\x{61})$" 2860-;-;-;- 28610-1;0-1;0-1;0-1 2862"^(?:\\x{61})" 2863-;-;-;- 28640-1;0-1;0-1;0-1 2865"(?:\\x{61})$" 2866-;-;-;- 28670-1;0-1;0-1;0-1 2868strings 2869"" 2870"a" 2871regexps 2872"\\x61" 2873-;-;-;- 28740-1;0-1;0-1;0-1 2875"^(?:\\x61)$" 2876-;-;-;- 28770-1;0-1;0-1;0-1 2878"^(?:\\x61)" 2879-;-;-;- 28800-1;0-1;0-1;0-1 2881"(?:\\x61)$" 2882-;-;-;- 28830-1;0-1;0-1;0-1 2884strings 2885"" 2886"a" 2887regexps 2888"\\x{00000061}" 2889-;-;-;- 28900-1;0-1;0-1;0-1 2891"^(?:\\x{00000061})$" 2892-;-;-;- 28930-1;0-1;0-1;0-1 2894"^(?:\\x{00000061})" 2895-;-;-;- 28960-1;0-1;0-1;0-1 2897"(?:\\x{00000061})$" 2898-;-;-;- 28990-1;0-1;0-1;0-1 2900strings 2901"" 2902"aαβb" 2903regexps 2904"\\p{Greek}+" 2905-;-;-;- 2906-;1-5;-;1-5 2907"^(?:\\p{Greek}+)$" 2908-;-;-;- 2909-;-;-;- 2910"^(?:\\p{Greek}+)" 2911-;-;-;- 2912-;-;-;- 2913"(?:\\p{Greek}+)$" 2914-;-;-;- 2915-;-;-;- 2916strings 2917"" 2918"aαβb" 2919regexps 2920"\\P{Greek}+" 2921-;-;-;- 2922-;0-1;-;0-1 2923"^(?:\\P{Greek}+)$" 2924-;-;-;- 2925-;-;-;- 2926"^(?:\\P{Greek}+)" 2927-;-;-;- 2928-;0-1;-;0-1 2929"(?:\\P{Greek}+)$" 2930-;-;-;- 2931-;5-6;-;5-6 2932strings 2933"" 2934"aαβb" 2935regexps 2936"\\p{^Greek}+" 2937-;-;-;- 2938-;0-1;-;0-1 2939"^(?:\\p{^Greek}+)$" 2940-;-;-;- 2941-;-;-;- 2942"^(?:\\p{^Greek}+)" 2943-;-;-;- 2944-;0-1;-;0-1 2945"(?:\\p{^Greek}+)$" 2946-;-;-;- 2947-;5-6;-;5-6 2948strings 2949"" 2950"aαβb" 2951regexps 2952"\\P{^Greek}+" 2953-;-;-;- 2954-;1-5;-;1-5 2955"^(?:\\P{^Greek}+)$" 2956-;-;-;- 2957-;-;-;- 2958"^(?:\\P{^Greek}+)" 2959-;-;-;- 2960-;-;-;- 2961"(?:\\P{^Greek}+)$" 2962-;-;-;- 2963-;-;-;- 2964strings 2965"" 2966"abc123" 2967regexps 2968"[^0-9]+" 2969-;-;-;- 2970-;0-3;-;0-3 2971"^(?:[^0-9]+)$" 2972-;-;-;- 2973-;-;-;- 2974"^(?:[^0-9]+)" 2975-;-;-;- 2976-;0-3;-;0-3 2977"(?:[^0-9]+)$" 2978-;-;-;- 2979-;-;-;- 2980strings 2981"" 2982"abc123²³¼½¾₀₉" 2983regexps 2984"\\p{Nd}+" 2985-;-;-;- 2986-;3-6;-;3-6 2987"^(?:\\p{Nd}+)$" 2988-;-;-;- 2989-;-;-;- 2990"^(?:\\p{Nd}+)" 2991-;-;-;- 2992-;-;-;- 2993"(?:\\p{Nd}+)$" 2994-;-;-;- 2995-;-;-;- 2996strings 2997"" 2998"abc123²³¼½¾₀₉" 2999regexps 3000"\\p{^Nd}+" 3001-;-;-;- 3002-;0-3;-;0-3 3003"^(?:\\p{^Nd}+)$" 3004-;-;-;- 3005-;-;-;- 3006"^(?:\\p{^Nd}+)" 3007-;-;-;- 3008-;0-3;-;0-3 3009"(?:\\p{^Nd}+)$" 3010-;-;-;- 3011-;6-22;-;6-22 3012strings 3013"" 3014"abc123²³¼½¾₀₉" 3015regexps 3016"\\P{Nd}+" 3017-;-;-;- 3018-;0-3;-;0-3 3019"^(?:\\P{Nd}+)$" 3020-;-;-;- 3021-;-;-;- 3022"^(?:\\P{Nd}+)" 3023-;-;-;- 3024-;0-3;-;0-3 3025"(?:\\P{Nd}+)$" 3026-;-;-;- 3027-;6-22;-;6-22 3028strings 3029"" 3030"abc123²³¼½¾₀₉" 3031regexps 3032"\\P{^Nd}+" 3033-;-;-;- 3034-;3-6;-;3-6 3035"^(?:\\P{^Nd}+)$" 3036-;-;-;- 3037-;-;-;- 3038"^(?:\\P{^Nd}+)" 3039-;-;-;- 3040-;-;-;- 3041"(?:\\P{^Nd}+)$" 3042-;-;-;- 3043-;-;-;- 3044strings 3045"" 3046"abc123²³¼½¾₀₉" 3047regexps 3048"\\pN+" 3049-;-;-;- 3050-;3-22;-;3-22 3051"^(?:\\pN+)$" 3052-;-;-;- 3053-;-;-;- 3054"^(?:\\pN+)" 3055-;-;-;- 3056-;-;-;- 3057"(?:\\pN+)$" 3058-;-;-;- 3059-;3-22;-;3-22 3060strings 3061"" 3062"abc123²³¼½¾₀₉" 3063regexps 3064"\\p{N}+" 3065-;-;-;- 3066-;3-22;-;3-22 3067"^(?:\\p{N}+)$" 3068-;-;-;- 3069-;-;-;- 3070"^(?:\\p{N}+)" 3071-;-;-;- 3072-;-;-;- 3073"(?:\\p{N}+)$" 3074-;-;-;- 3075-;3-22;-;3-22 3076strings 3077"" 3078"abc123²³¼½¾₀₉" 3079regexps 3080"\\p{^N}+" 3081-;-;-;- 3082-;0-3;-;0-3 3083"^(?:\\p{^N}+)$" 3084-;-;-;- 3085-;-;-;- 3086"^(?:\\p{^N}+)" 3087-;-;-;- 3088-;0-3;-;0-3 3089"(?:\\p{^N}+)$" 3090-;-;-;- 3091-;-;-;- 3092strings 3093"" 3094"abc123" 3095regexps 3096"\\p{Any}+" 3097-;-;-;- 30980-6;0-6;0-6;0-6 3099"^(?:\\p{Any}+)$" 3100-;-;-;- 31010-6;0-6;0-6;0-6 3102"^(?:\\p{Any}+)" 3103-;-;-;- 31040-6;0-6;0-6;0-6 3105"(?:\\p{Any}+)$" 3106-;-;-;- 31070-6;0-6;0-6;0-6 3108strings 3109"" 3110"@AaB" 3111regexps 3112"(?i)[@-A]+" 3113-;-;-;- 3114-;0-3;-;0-3 3115"^(?:(?i)[@-A]+)$" 3116-;-;-;- 3117-;-;-;- 3118"^(?:(?i)[@-A]+)" 3119-;-;-;- 3120-;0-3;-;0-3 3121"(?:(?i)[@-A]+)$" 3122-;-;-;- 3123-;-;-;- 3124strings 3125"" 3126"aAzZ" 3127regexps 3128"(?i)[A-Z]+" 3129-;-;-;- 31300-4;0-4;0-4;0-4 3131"^(?:(?i)[A-Z]+)$" 3132-;-;-;- 31330-4;0-4;0-4;0-4 3134"^(?:(?i)[A-Z]+)" 3135-;-;-;- 31360-4;0-4;0-4;0-4 3137"(?:(?i)[A-Z]+)$" 3138-;-;-;- 31390-4;0-4;0-4;0-4 3140strings 3141"" 3142"Aa\\" 3143regexps 3144"(?i)[^\\\\]+" 3145-;-;-;- 3146-;0-2;-;0-2 3147"^(?:(?i)[^\\\\]+)$" 3148-;-;-;- 3149-;-;-;- 3150"^(?:(?i)[^\\\\]+)" 3151-;-;-;- 3152-;0-2;-;0-2 3153"(?:(?i)[^\\\\]+)$" 3154-;-;-;- 3155-;-;-;- 3156strings 3157"" 3158"acegikmoqsuwyACEGIKMOQSUWY" 3159regexps 3160"(?i)[acegikmoqsuwy]+" 3161-;-;-;- 31620-26;0-26;0-26;0-26 3163"^(?:(?i)[acegikmoqsuwy]+)$" 3164-;-;-;- 31650-26;0-26;0-26;0-26 3166"^(?:(?i)[acegikmoqsuwy]+)" 3167-;-;-;- 31680-26;0-26;0-26;0-26 3169"(?:(?i)[acegikmoqsuwy]+)$" 3170-;-;-;- 31710-26;0-26;0-26;0-26 3172strings 3173"" 3174"@AaB" 3175regexps 3176"[@-A]+" 3177-;-;-;- 3178-;0-2;-;0-2 3179"^(?:[@-A]+)$" 3180-;-;-;- 3181-;-;-;- 3182"^(?:[@-A]+)" 3183-;-;-;- 3184-;0-2;-;0-2 3185"(?:[@-A]+)$" 3186-;-;-;- 3187-;-;-;- 3188strings 3189"" 3190"aAzZ" 3191regexps 3192"[A-Z]+" 3193-;-;-;- 3194-;1-2;-;1-2 3195"^(?:[A-Z]+)$" 3196-;-;-;- 3197-;-;-;- 3198"^(?:[A-Z]+)" 3199-;-;-;- 3200-;-;-;- 3201"(?:[A-Z]+)$" 3202-;-;-;- 3203-;3-4;-;3-4 3204strings 3205"" 3206"Aa\\" 3207regexps 3208"[^\\\\]+" 3209-;-;-;- 3210-;0-2;-;0-2 3211"^(?:[^\\\\]+)$" 3212-;-;-;- 3213-;-;-;- 3214"^(?:[^\\\\]+)" 3215-;-;-;- 3216-;0-2;-;0-2 3217"(?:[^\\\\]+)$" 3218-;-;-;- 3219-;-;-;- 3220strings 3221"" 3222"acegikmoqsuwyACEGIKMOQSUWY" 3223regexps 3224"[acegikmoqsuwy]+" 3225-;-;-;- 3226-;0-13;-;0-13 3227"^(?:[acegikmoqsuwy]+)$" 3228-;-;-;- 3229-;-;-;- 3230"^(?:[acegikmoqsuwy]+)" 3231-;-;-;- 3232-;0-13;-;0-13 3233"(?:[acegikmoqsuwy]+)$" 3234-;-;-;- 3235-;-;-;- 3236strings 3237"" 3238"abcdef" 3239regexps 3240"^abc" 3241-;-;-;- 3242-;0-3;-;0-3 3243"^(?:^abc)$" 3244-;-;-;- 3245-;-;-;- 3246"^(?:^abc)" 3247-;-;-;- 3248-;0-3;-;0-3 3249"(?:^abc)$" 3250-;-;-;- 3251-;-;-;- 3252strings 3253"" 3254"aabcdef" 3255regexps 3256"^abc" 3257-;-;-;- 3258-;-;-;- 3259"^(?:^abc)$" 3260-;-;-;- 3261-;-;-;- 3262"^(?:^abc)" 3263-;-;-;- 3264-;-;-;- 3265"(?:^abc)$" 3266-;-;-;- 3267-;-;-;- 3268strings 3269"" 3270"abcdef" 3271regexps 3272"^[ay]*[bx]+c" 3273-;-;-;- 3274-;0-3;-;0-3 3275"^(?:^[ay]*[bx]+c)$" 3276-;-;-;- 3277-;-;-;- 3278"^(?:^[ay]*[bx]+c)" 3279-;-;-;- 3280-;0-3;-;0-3 3281"(?:^[ay]*[bx]+c)$" 3282-;-;-;- 3283-;-;-;- 3284strings 3285"" 3286"aabcdef" 3287regexps 3288"^[ay]*[bx]+c" 3289-;-;-;- 3290-;0-4;-;0-4 3291"^(?:^[ay]*[bx]+c)$" 3292-;-;-;- 3293-;-;-;- 3294"^(?:^[ay]*[bx]+c)" 3295-;-;-;- 3296-;0-4;-;0-4 3297"(?:^[ay]*[bx]+c)$" 3298-;-;-;- 3299-;-;-;- 3300strings 3301"" 3302"abcdef" 3303regexps 3304"def$" 3305-;-;-;- 3306-;3-6;-;3-6 3307"^(?:def$)$" 3308-;-;-;- 3309-;-;-;- 3310"^(?:def$)" 3311-;-;-;- 3312-;-;-;- 3313"(?:def$)$" 3314-;-;-;- 3315-;3-6;-;3-6 3316strings 3317"" 3318"abcdeff" 3319regexps 3320"def$" 3321-;-;-;- 3322-;-;-;- 3323"^(?:def$)$" 3324-;-;-;- 3325-;-;-;- 3326"^(?:def$)" 3327-;-;-;- 3328-;-;-;- 3329"(?:def$)$" 3330-;-;-;- 3331-;-;-;- 3332strings 3333"" 3334"abcdef" 3335regexps 3336"d[ex][fy]$" 3337-;-;-;- 3338-;3-6;-;3-6 3339"^(?:d[ex][fy]$)$" 3340-;-;-;- 3341-;-;-;- 3342"^(?:d[ex][fy]$)" 3343-;-;-;- 3344-;-;-;- 3345"(?:d[ex][fy]$)$" 3346-;-;-;- 3347-;3-6;-;3-6 3348strings 3349"" 3350"abcdeff" 3351regexps 3352"d[ex][fy]$" 3353-;-;-;- 3354-;-;-;- 3355"^(?:d[ex][fy]$)$" 3356-;-;-;- 3357-;-;-;- 3358"^(?:d[ex][fy]$)" 3359-;-;-;- 3360-;-;-;- 3361"(?:d[ex][fy]$)$" 3362-;-;-;- 3363-;-;-;- 3364strings 3365"" 3366"abcdef" 3367regexps 3368"[dz][ex][fy]$" 3369-;-;-;- 3370-;3-6;-;3-6 3371"^(?:[dz][ex][fy]$)$" 3372-;-;-;- 3373-;-;-;- 3374"^(?:[dz][ex][fy]$)" 3375-;-;-;- 3376-;-;-;- 3377"(?:[dz][ex][fy]$)$" 3378-;-;-;- 3379-;3-6;-;3-6 3380strings 3381"" 3382"abcdeff" 3383regexps 3384"[dz][ex][fy]$" 3385-;-;-;- 3386-;-;-;- 3387"^(?:[dz][ex][fy]$)$" 3388-;-;-;- 3389-;-;-;- 3390"^(?:[dz][ex][fy]$)" 3391-;-;-;- 3392-;-;-;- 3393"(?:[dz][ex][fy]$)$" 3394-;-;-;- 3395-;-;-;- 3396strings 3397"" 3398"abcdef" 3399regexps 3400"(?m)^abc" 3401-;-;-;- 3402-;0-3;-;0-3 3403"^(?:(?m)^abc)$" 3404-;-;-;- 3405-;-;-;- 3406"^(?:(?m)^abc)" 3407-;-;-;- 3408-;0-3;-;0-3 3409"(?:(?m)^abc)$" 3410-;-;-;- 3411-;-;-;- 3412strings 3413"" 3414"aabcdef" 3415regexps 3416"(?m)^abc" 3417-;-;-;- 3418-;-;-;- 3419"^(?:(?m)^abc)$" 3420-;-;-;- 3421-;-;-;- 3422"^(?:(?m)^abc)" 3423-;-;-;- 3424-;-;-;- 3425"(?:(?m)^abc)$" 3426-;-;-;- 3427-;-;-;- 3428strings 3429"" 3430"abcdef" 3431regexps 3432"(?m)^[ay]*[bx]+c" 3433-;-;-;- 3434-;0-3;-;0-3 3435"^(?:(?m)^[ay]*[bx]+c)$" 3436-;-;-;- 3437-;-;-;- 3438"^(?:(?m)^[ay]*[bx]+c)" 3439-;-;-;- 3440-;0-3;-;0-3 3441"(?:(?m)^[ay]*[bx]+c)$" 3442-;-;-;- 3443-;-;-;- 3444strings 3445"" 3446"aabcdef" 3447regexps 3448"(?m)^[ay]*[bx]+c" 3449-;-;-;- 3450-;0-4;-;0-4 3451"^(?:(?m)^[ay]*[bx]+c)$" 3452-;-;-;- 3453-;-;-;- 3454"^(?:(?m)^[ay]*[bx]+c)" 3455-;-;-;- 3456-;0-4;-;0-4 3457"(?:(?m)^[ay]*[bx]+c)$" 3458-;-;-;- 3459-;-;-;- 3460strings 3461"" 3462"abcdef" 3463regexps 3464"(?m)def$" 3465-;-;-;- 3466-;3-6;-;3-6 3467"^(?:(?m)def$)$" 3468-;-;-;- 3469-;-;-;- 3470"^(?:(?m)def$)" 3471-;-;-;- 3472-;-;-;- 3473"(?:(?m)def$)$" 3474-;-;-;- 3475-;3-6;-;3-6 3476strings 3477"" 3478"abcdeff" 3479regexps 3480"(?m)def$" 3481-;-;-;- 3482-;-;-;- 3483"^(?:(?m)def$)$" 3484-;-;-;- 3485-;-;-;- 3486"^(?:(?m)def$)" 3487-;-;-;- 3488-;-;-;- 3489"(?:(?m)def$)$" 3490-;-;-;- 3491-;-;-;- 3492strings 3493"" 3494"abcdef" 3495regexps 3496"(?m)d[ex][fy]$" 3497-;-;-;- 3498-;3-6;-;3-6 3499"^(?:(?m)d[ex][fy]$)$" 3500-;-;-;- 3501-;-;-;- 3502"^(?:(?m)d[ex][fy]$)" 3503-;-;-;- 3504-;-;-;- 3505"(?:(?m)d[ex][fy]$)$" 3506-;-;-;- 3507-;3-6;-;3-6 3508strings 3509"" 3510"abcdeff" 3511regexps 3512"(?m)d[ex][fy]$" 3513-;-;-;- 3514-;-;-;- 3515"^(?:(?m)d[ex][fy]$)$" 3516-;-;-;- 3517-;-;-;- 3518"^(?:(?m)d[ex][fy]$)" 3519-;-;-;- 3520-;-;-;- 3521"(?:(?m)d[ex][fy]$)$" 3522-;-;-;- 3523-;-;-;- 3524strings 3525"" 3526"abcdef" 3527regexps 3528"(?m)[dz][ex][fy]$" 3529-;-;-;- 3530-;3-6;-;3-6 3531"^(?:(?m)[dz][ex][fy]$)$" 3532-;-;-;- 3533-;-;-;- 3534"^(?:(?m)[dz][ex][fy]$)" 3535-;-;-;- 3536-;-;-;- 3537"(?:(?m)[dz][ex][fy]$)$" 3538-;-;-;- 3539-;3-6;-;3-6 3540strings 3541"" 3542"abcdeff" 3543regexps 3544"(?m)[dz][ex][fy]$" 3545-;-;-;- 3546-;-;-;- 3547"^(?:(?m)[dz][ex][fy]$)$" 3548-;-;-;- 3549-;-;-;- 3550"^(?:(?m)[dz][ex][fy]$)" 3551-;-;-;- 3552-;-;-;- 3553"(?:(?m)[dz][ex][fy]$)$" 3554-;-;-;- 3555-;-;-;- 3556strings 3557"" 3558"a" 3559regexps 3560"^" 35610-0;0-0;0-0;0-0 3562-;0-0;-;0-0 3563"^(?:^)$" 35640-0;0-0;0-0;0-0 3565-;-;-;- 3566"^(?:^)" 35670-0;0-0;0-0;0-0 3568-;0-0;-;0-0 3569"(?:^)$" 35700-0;0-0;0-0;0-0 3571-;-;-;- 3572strings 3573"" 3574"a" 3575regexps 3576"^^" 35770-0;0-0;0-0;0-0 3578-;0-0;-;0-0 3579"^(?:^^)$" 35800-0;0-0;0-0;0-0 3581-;-;-;- 3582"^(?:^^)" 35830-0;0-0;0-0;0-0 3584-;0-0;-;0-0 3585"(?:^^)$" 35860-0;0-0;0-0;0-0 3587-;-;-;- 3588strings 3589"" 3590"a" 3591regexps 3592"a" 3593-;-;-;- 35940-1;0-1;0-1;0-1 3595"^(?:a)$" 3596-;-;-;- 35970-1;0-1;0-1;0-1 3598"^(?:a)" 3599-;-;-;- 36000-1;0-1;0-1;0-1 3601"(?:a)$" 3602-;-;-;- 36030-1;0-1;0-1;0-1 3604strings 3605"" 3606"a" 3607regexps 3608"ab*" 3609-;-;-;- 36100-1;0-1;0-1;0-1 3611"^(?:ab*)$" 3612-;-;-;- 36130-1;0-1;0-1;0-1 3614"^(?:ab*)" 3615-;-;-;- 36160-1;0-1;0-1;0-1 3617"(?:ab*)$" 3618-;-;-;- 36190-1;0-1;0-1;0-1 3620strings 3621"" 3622"a" 3623regexps 3624"a\\C*" 3625-;-;-;- 36260-1;0-1;0-1;0-1 3627"^(?:a\\C*)$" 3628-;-;-;- 36290-1;0-1;0-1;0-1 3630"^(?:a\\C*)" 3631-;-;-;- 36320-1;0-1;0-1;0-1 3633"(?:a\\C*)$" 3634-;-;-;- 36350-1;0-1;0-1;0-1 3636strings 3637"" 3638"a" 3639regexps 3640"a\\C+" 3641-;-;-;- 3642-;-;-;- 3643"^(?:a\\C+)$" 3644-;-;-;- 3645-;-;-;- 3646"^(?:a\\C+)" 3647-;-;-;- 3648-;-;-;- 3649"(?:a\\C+)$" 3650-;-;-;- 3651-;-;-;- 3652strings 3653"" 3654"a" 3655regexps 3656"a\\C?" 3657-;-;-;- 36580-1;0-1;0-1;0-1 3659"^(?:a\\C?)$" 3660-;-;-;- 36610-1;0-1;0-1;0-1 3662"^(?:a\\C?)" 3663-;-;-;- 36640-1;0-1;0-1;0-1 3665"(?:a\\C?)$" 3666-;-;-;- 36670-1;0-1;0-1;0-1 3668strings 3669"" 3670"a" 3671regexps 3672"a\\C*?" 3673-;-;-;- 36740-1;0-1;0-1;0-1 3675"^(?:a\\C*?)$" 3676-;-;-;- 36770-1;0-1;0-1;0-1 3678"^(?:a\\C*?)" 3679-;-;-;- 36800-1;0-1;0-1;0-1 3681"(?:a\\C*?)$" 3682-;-;-;- 36830-1;0-1;0-1;0-1 3684strings 3685"" 3686"a" 3687regexps 3688"a\\C+?" 3689-;-;-;- 3690-;-;-;- 3691"^(?:a\\C+?)$" 3692-;-;-;- 3693-;-;-;- 3694"^(?:a\\C+?)" 3695-;-;-;- 3696-;-;-;- 3697"(?:a\\C+?)$" 3698-;-;-;- 3699-;-;-;- 3700strings 3701"" 3702"a" 3703regexps 3704"a\\C??" 3705-;-;-;- 37060-1;0-1;0-1;0-1 3707"^(?:a\\C??)$" 3708-;-;-;- 37090-1;0-1;0-1;0-1 3710"^(?:a\\C??)" 3711-;-;-;- 37120-1;0-1;0-1;0-1 3713"(?:a\\C??)$" 3714-;-;-;- 37150-1;0-1;0-1;0-1 3716strings 3717"" 3718"baba" 3719regexps 3720"a\\C*|ba\\C" 3721-;-;-;- 3722-;0-3;-;0-3 3723"^(?:a\\C*|ba\\C)$" 3724-;-;-;- 3725-;-;-;- 3726"^(?:a\\C*|ba\\C)" 3727-;-;-;- 3728-;0-3;-;0-3 3729"(?:a\\C*|ba\\C)$" 3730-;-;-;- 3731-;1-4;-;1-4 3732strings 3733"" 3734"Inc." 3735regexps 3736"\\w*I\\w*" 3737-;-;-;- 3738-;0-3;-;0-3 3739"^(?:\\w*I\\w*)$" 3740-;-;-;- 3741-;-;-;- 3742"^(?:\\w*I\\w*)" 3743-;-;-;- 3744-;0-3;-;0-3 3745"(?:\\w*I\\w*)$" 3746-;-;-;- 3747-;-;-;- 3748strings 3749"" 3750"aaa" 3751regexps 3752"(?:|a)*" 37530-0;0-0;0-0;0-0 37540-3;0-0;0-3;0-3 3755"^(?:(?:|a)*)$" 37560-0;0-0;0-0;0-0 37570-3;0-3;0-3;0-3 3758"^(?:(?:|a)*)" 37590-0;0-0;0-0;0-0 37600-3;0-0;0-3;0-3 3761"(?:(?:|a)*)$" 37620-0;0-0;0-0;0-0 37630-3;0-3;0-3;0-3 3764strings 3765"" 3766"aaa" 3767regexps 3768"(?:|a)+" 37690-0;0-0;0-0;0-0 37700-3;0-0;0-3;0-3 3771"^(?:(?:|a)+)$" 37720-0;0-0;0-0;0-0 37730-3;0-3;0-3;0-3 3774"^(?:(?:|a)+)" 37750-0;0-0;0-0;0-0 37760-3;0-0;0-3;0-3 3777"(?:(?:|a)+)$" 37780-0;0-0;0-0;0-0 37790-3;0-3;0-3;0-3 3780