Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FR] Unicode searching with normalizing #298

Closed
rurban opened this issue Sep 21, 2023 · 7 comments
Closed

[FR] Unicode searching with normalizing #298

rurban opened this issue Sep 21, 2023 · 7 comments
Assignees
Labels
enhancement New feature or request

Comments

@rurban
Copy link

rurban commented Sep 21, 2023

How about supporting "u" for unicode also?

Currently the tool does not find unicode mark variants which deviate only in its normalization. It does not find "Café" in "Café", the first using the decomposed "e\x301", the second using the composed "\e9" for the last small e with grave.

It should (with some new unicode flag) find mark characters and possible variants of not-normalized variants in the search pattern and create the unicode alternations to search for.

@genivia-inc
Copy link
Member

Not sure why this title says "slower".

[FR] is a feature request. This reads like a feature request.

Ugrep uses the Unicode code points (including the so-called "combining diacritical marks") to determine the screen layout in the TUI edit line and output. But it does not normalize these for matching input.

@genivia-inc genivia-inc changed the title Slower unicode searching with normalizing Unicode searching with normalizing Sep 21, 2023
@genivia-inc genivia-inc added the enhancement New feature or request label Oct 7, 2023
@genivia-inc
Copy link
Member

Resources:
https://unicode.org/reports/tr15/
https://unicode.org/faq/normalization.html
https://icu.unicode.org
https://github.com/unicode-org/icu

Note:
ICU is (too) large to included in ugrep; perhaps it it is possible to isolate C++ normalization code for regex normalization. Or write our own?

@genivia-inc genivia-inc changed the title Unicode searching with normalizing [FR] Unicode searching with normalizing Nov 7, 2023
@genivia-inc genivia-inc self-assigned this Dec 20, 2023
@genivia-inc
Copy link
Member

genivia-inc commented Jan 3, 2024

I've implemented a regex Unicode normalizer to canonicalize Unicode combining characters/marks.

For example, a regex pattern containing an Å is normalized to U+00C5 if Å is composed of an A with a combining ring above U+030A. Characters may have one or more combining marks that are normalized. Entering a regex pattern may therefore be done with the method the user prefers, i.e. either enter a single Å or combined A with ring. The benefit is that Unicode NFC-normalized input is accurately searched and matched in any case. This also fixes the problem that Å* with A with a ring repeated will not match multiple Å but matches an A with multiple rings, which is of course not what we want!

I'm implementing NFC for regex patterns. With the limitation that it does not apply decomposition before canonicalization. Only canonicalization to combine characters. Canonicalizing the input text is not considered.

PS. option -F won't normalize, because it takes string patterns as they are specified. Option -P (Perl regex with PCRE2) is an interesting case. The PCRE2 library does not normalize. I will force normalization in ugrep for option -P too, so that ugrep option -P will normalize Å* to make sure repetitions work fine.

PPS. still had some doubts when to normalize, because the user may want to search specifically for a non-normalized form. That can be done with a quick hack, for example by using parenthesis to keep the combining character(s) separated like A(̊) or with a hex code like A\x{030A}.

@rurban
Copy link
Author

rurban commented Jan 4, 2024

I've written plenty of such normalizers, without ICU. ICU is way too slow and big. you really need just tiny static tables.
https://github.com/rurban/Unicode-Normalize has such generators. My https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2916.htm also

The problem is that the text should not be normalized, rather that the regex / substring should be expanded on the fly to include all possible legal variants.
Such as "e\x301" or "\e9", needs to be replaced by "(e\x301|\e9)".

@genivia-inc
Copy link
Member

genivia-inc commented Jan 4, 2024

I agree that text should not be normalized, but rather the regex. But generating all legal variants can lead to hidden costs when the regex is modified as such, which it is, because RE/flex and PCRE2 do not generate all variants. Right now, regex conversion is minimal, such as to remove matching \n when \n is not explicitly specified. Note that the converted regex are displayed with option --stats.

Perhaps an option to enable generating and matching all variants would be nice? Adding more options is a last resort though. I expect few will use it. I still have doubts on how to best approach this.

I suspect that most word processors and text editors will insert canonical forms into the text, e.g. for accented characters (?).

Nevertheless, some simple canonicalization step is nice to have to avoid problems with regex operators applied to combining forms, such as the Å* and [Å] that should contain one character, not A and ring. If A and ring are intended, then [A\x{30A}] works fine.

A more interesting case is U+1E69 which has as many as five alternatives:
0073 0323 0307
0073 0307 0323
1E61 0323
1E63 0307
1E69

@genivia-inc
Copy link
Member

Upon closer inspection, this Unicode normalization TR15 standard is not designed by computer scientists. For one, it does not support the derivation of a confluent TRS directly from the UnicodeData file. For example, the tables include this path:
0073 0323 -> 1E63 and 1E63 0307 -> 1E69
so
0073 0323 0307 -> 1E63 0307 -> 1E69
Nice! But not
0073 0307 0323 -> 1E61 0323 -> stuck
It is weakly confluent, so we have to jump over the middle, like
0073 0307 0323 -> 1E63 0307 -> 1E69

No surprise then that NFC requires denormalization, reordering and normalization to obtain a normal form or by using additional rewrite rules. Fortunately, we can use Knuth Bendix completion to make the system strongly normalizing without requiring denormalization, reordering and normalization. Strictly speaking, NFC is not a true canonical form in that sense, because the TRS based on (or described by) the UnicodeData is not strongly normalizing without the process of completion. NFD is strongly normalizing when code point sorting is used, but not as useful.

@genivia-inc
Copy link
Member

genivia-inc commented Jan 4, 2024

I've written up a K-B completer to normalize pairs of Unicode characters to combine into one character without getting stuck when followed by more combining characters (this works for most cases). It reads UnicodeData.txt to create a C++ file with tables of rewrite rules.

K-B completion takes 16 passes to converge with the following output. I find it interesting that we end up with a system that still is not strongly normalizing, because there are some Unicode character pairs that are not composable from reordered triple characters. That is, three characters a b c -> d c -> e but a c b -> ? b has no known character and so we get stuck. I think these are artificial cases, because there is no known character to combine into or decompose from. So decomposition will not solve these cases either, which means that the following system should be complete and equivalent to NFC without requiring decomposition first (but I haven't proven that formally):

*** PASS 16 ***

0041 0300 0300 -> 0323 0300 -> 01d8 is confluent 0041 0300 0300 -> 0323 0300 -> 01d8
0041 0300 0301 -> 0323 0301 -> 1e65 is confluent 0041 0301 0300 -> 0308 0300 -> 1e65
0041 0300 0302 -> 0323 0302 -> 1ef1 is confluent 0041 0302 0300 -> 0323 0300 -> 1ef1
0041 0300 0303 -> 0323 0303 -> 01d8 is confluent 0041 0303 0300 -> 0323 0300 -> 01d8
0041 0300 0304 -> 0323 0304 -> 1e7b is confluent 0041 0304 0300 -> 0308 0300 -> 1e7b
0041 0300 0306 -> 0323 0306 -> 1e7b is confluent 0041 0306 0300 -> 0323 0300 -> 1e7b
0041 0300 0307 -> 0323 0307 -> 1e7b is confluent 0041 0307 0300 -> 0323 0300 -> 1e7b
0041 0300 0308 -> 0323 0308 -> 1e7b is confluent 0041 0308 0300 -> 030a 0300 -> 1e7b
0041 0300 0309 -> 0323 0309 -> 01d8 is confluent 0041 0309 0300 -> 0323 0300 -> 01d8
0041 0300 030a -> 0323 030a -> 1e7b is confluent 0041 030a 0300 -> 0323 0300 -> 1e7b
0041 0300 030c -> 0323 030c -> 1e67 is confluent 0041 030c 0300 -> 0323 0300 -> 1e67
0041 0300 031b -> 0323 031b -> 1e7b is not confluent
0041 0300 0323 -> 0323 0323 -> 1e69 is confluent 0041 0323 0300 -> 030a 0300 -> 1e69
0041 0300 0327 -> 0323 0327 -> 1e69 is not confluent
0041 0300 0328 -> 0323 0328 -> 1e7b is confluent 0041 0328 0300 -> 030a 0300 -> 1e7b
0045 0300 0300 -> 0327 0300 -> 1e7b is confluent 0045 0300 0300 -> 0327 0300 -> 1e7b
0045 0300 0301 -> 0327 0301 -> 1e7b is confluent 0045 0301 0300 -> 0327 0300 -> 1e7b
0045 0300 0302 -> 0327 0302 -> 1e7b is confluent 0045 0302 0300 -> 0327 0300 -> 1e7b
0045 0300 0303 -> 0327 0303 -> 1e7b is confluent 0045 0303 0300 -> 0327 0300 -> 1e7b
0045 0300 0304 -> 0327 0304 -> 1e7b is confluent 0045 0304 0300 -> 0327 0300 -> 1e7b
0045 0300 0306 -> 0327 0306 -> 1e7b is confluent 0045 0306 0300 -> 0327 0300 -> 1e7b
0045 0300 0307 -> 0327 0307 -> 1e7b is confluent 0045 0307 0300 -> 0327 0300 -> 1e7b
0045 0300 0308 -> 0327 0308 -> 0231 is confluent 0045 0308 0300 -> 0327 0300 -> 0231
0045 0300 0309 -> 0327 0309 -> 1e7b is confluent 0045 0309 0300 -> 0327 0300 -> 1e7b
0045 0300 030c -> 0327 030c -> 1e7b is confluent 0045 030c 0300 -> 0327 0300 -> 1e7b
0045 0300 0323 -> 0327 0323 -> 1e7b is confluent 0045 0323 0300 -> 0327 0300 -> 1e7b
0045 0300 0327 -> 0327 0327 -> 1e1d is confluent 0045 0327 0300 -> 0328 0300 -> 1e1d
0045 0300 0328 -> 0327 0328 -> 1e7b is confluent 0045 0328 0300 -> 0327 0300 -> 1e7b
0049 0300 0300 -> 030c 0300 -> 1e17 is confluent 0049 0300 0300 -> 030c 0300 -> 1e17
0049 0300 0301 -> 030c 0301 -> 1e17 is confluent 0049 0301 0300 -> 0308 0300 -> 1e17
0049 0300 0302 -> 030c 0302 -> 1e7b is confluent 0049 0302 0300 -> 0323 0300 -> 1e7b
0049 0300 0303 -> 030c 0303 -> 1e69 is confluent 0049 0303 0300 -> 0308 0300 -> 1e69
0049 0300 0304 -> 030c 0304 -> 0231 is confluent 0049 0304 0300 -> 0323 0300 -> 0231
0049 0300 0306 -> 030c 0306 -> 1e7b is confluent 0049 0306 0300 -> 0323 0300 -> 1e7b
0049 0300 0307 -> 030c 0307 -> 1e7b is confluent 0049 0307 0300 -> 0323 0300 -> 1e7b
0049 0300 0308 -> 030c 0308 -> 1e7b is confluent 0049 0308 0300 -> 0328 0300 -> 1e7b
0049 0300 0309 -> 030c 0309 -> 1e69 is confluent 0049 0309 0300 -> 0308 0300 -> 1e69
0049 0300 030a -> 030c 030a -> 1e7b is not confluent
0049 0300 030c -> 030c 030c -> 01e1 is confluent 0049 030c 0300 -> 0308 0300 -> 01e1
0049 0300 031b -> 030c 031b -> 0231 is not confluent
0049 0300 0323 -> 030c 0323 -> 1ef1 is confluent 0049 0323 0300 -> 0308 0300 -> 1ef1
0049 0300 0327 -> 030c 0327 -> 1e69 is not confluent
0049 0300 0328 -> 030c 0328 -> 1e7b is confluent 0049 0328 0300 -> 0323 0300 -> 1e7b
004f 0300 0300 -> 031b 0300 -> 1e17 is confluent 004f 0300 0300 -> 031b 0300 -> 1e17
004f 0300 0301 -> 031b 0301 -> 1e17 is confluent 004f 0301 0300 -> 031b 0300 -> 1e17
004f 0300 0302 -> 031b 0302 -> 1e69 is confluent 004f 0302 0300 -> 031b 0300 -> 1e69
004f 0300 0303 -> 031b 0303 -> 1e17 is confluent 004f 0303 0300 -> 031b 0300 -> 1e17
004f 0300 0304 -> 031b 0304 -> 1e69 is confluent 004f 0304 0300 -> 031b 0300 -> 1e69
004f 0300 0306 -> 031b 0306 -> 1e69 is confluent 004f 0306 0300 -> 031b 0300 -> 1e69
004f 0300 0307 -> 031b 0307 -> 1e69 is confluent 004f 0307 0300 -> 031b 0300 -> 1e69
004f 0300 0308 -> 031b 0308 -> 01d8 is confluent 004f 0308 0300 -> 031b 0300 -> 01d8
004f 0300 0309 -> 031b 0309 -> 1e17 is confluent 004f 0309 0300 -> 031b 0300 -> 1e17
004f 0300 030a -> 031b 030a -> 1e69 is not confluent
004f 0300 030c -> 031b 030c -> 1e17 is confluent 004f 030c 0300 -> 031b 0300 -> 1e17
004f 0300 031b -> 031b 031b -> 1ef1 is confluent 004f 031b 0300 -> 0308 0300 -> 1ef1
004f 0300 0323 -> 031b 0323 -> 1e69 is confluent 004f 0323 0300 -> 031b 0300 -> 1e69
004f 0300 0328 -> 031b 0328 -> 1ef1 is confluent 004f 0328 0300 -> 030c 0300 -> 1ef1
0055 0300 0300 -> 031b 0300 -> 1e17 is confluent 0055 0300 0300 -> 031b 0300 -> 1e17
0055 0300 0301 -> 031b 0301 -> 1e17 is confluent 0055 0301 0300 -> 031b 0300 -> 1e17
0055 0300 0302 -> 031b 0302 -> 1e69 is confluent 0055 0302 0300 -> 0323 0300 -> 1e69
0055 0300 0303 -> 031b 0303 -> 1e17 is confluent 0055 0303 0300 -> 031b 0300 -> 1e17
0055 0300 0304 -> 031b 0304 -> 1e69 is confluent 0055 0304 0300 -> 0323 0300 -> 1e69
0055 0300 0306 -> 031b 0306 -> 1e69 is confluent 0055 0306 0300 -> 0323 0300 -> 1e69
0055 0300 0307 -> 031b 0307 -> 1e69 is not confluent
0055 0300 0308 -> 031b 0308 -> 01d8 is confluent 0055 0308 0300 -> 0323 0300 -> 01d8
0055 0300 0309 -> 031b 0309 -> 1e17 is confluent 0055 0309 0300 -> 031b 0300 -> 1e17
0055 0300 030a -> 031b 030a -> 1e69 is confluent 0055 030a 0300 -> 031b 0300 -> 1e69
0055 0300 030c -> 031b 030c -> 1e17 is confluent 0055 030c 0300 -> 0323 0300 -> 1e17
0055 0300 031b -> 031b 031b -> 1ef1 is confluent 0055 031b 0300 -> 0323 0300 -> 1ef1
0055 0300 0323 -> 031b 0323 -> 1e69 is confluent 0055 0323 0300 -> 031b 0300 -> 1e69
0055 0300 0328 -> 031b 0328 -> 1ef1 is confluent 0055 0328 0300 -> 031b 0300 -> 1ef1
0061 0300 0300 -> 0323 0300 -> 01d8 is confluent 0061 0300 0300 -> 0323 0300 -> 01d8
0061 0300 0301 -> 0323 0301 -> 1e65 is confluent 0061 0301 0300 -> 0308 0300 -> 1e65
0061 0300 0302 -> 0323 0302 -> 1ef1 is confluent 0061 0302 0300 -> 0323 0300 -> 1ef1
0061 0300 0303 -> 0323 0303 -> 01d8 is confluent 0061 0303 0300 -> 0323 0300 -> 01d8
0061 0300 0304 -> 0323 0304 -> 1e7b is confluent 0061 0304 0300 -> 0308 0300 -> 1e7b
0061 0300 0306 -> 0323 0306 -> 1e7b is confluent 0061 0306 0300 -> 0323 0300 -> 1e7b
0061 0300 0307 -> 0323 0307 -> 1e7b is confluent 0061 0307 0300 -> 0323 0300 -> 1e7b
0061 0300 0308 -> 0323 0308 -> 1e7b is confluent 0061 0308 0300 -> 030a 0300 -> 1e7b
0061 0300 0309 -> 0323 0309 -> 01d8 is confluent 0061 0309 0300 -> 0323 0300 -> 01d8
0061 0300 030a -> 0323 030a -> 1e7b is confluent 0061 030a 0300 -> 0323 0300 -> 1e7b
0061 0300 030c -> 0323 030c -> 1e67 is confluent 0061 030c 0300 -> 0323 0300 -> 1e67
0061 0300 031b -> 0323 031b -> 1e7b is not confluent
0061 0300 0323 -> 0323 0323 -> 1e69 is confluent 0061 0323 0300 -> 030a 0300 -> 1e69
0061 0300 0327 -> 0323 0327 -> 1e69 is not confluent
0061 0300 0328 -> 0323 0328 -> 1e7b is confluent 0061 0328 0300 -> 030a 0300 -> 1e7b
0065 0300 0300 -> 0327 0300 -> 1e7b is confluent 0065 0300 0300 -> 0327 0300 -> 1e7b
0065 0300 0301 -> 0327 0301 -> 1e7b is confluent 0065 0301 0300 -> 0327 0300 -> 1e7b
0065 0300 0302 -> 0327 0302 -> 1e7b is confluent 0065 0302 0300 -> 0327 0300 -> 1e7b
0065 0300 0303 -> 0327 0303 -> 1e7b is confluent 0065 0303 0300 -> 0327 0300 -> 1e7b
0065 0300 0304 -> 0327 0304 -> 1e7b is confluent 0065 0304 0300 -> 0327 0300 -> 1e7b
0065 0300 0306 -> 0327 0306 -> 1e7b is confluent 0065 0306 0300 -> 0327 0300 -> 1e7b
0065 0300 0307 -> 0327 0307 -> 1e7b is confluent 0065 0307 0300 -> 0327 0300 -> 1e7b
0065 0300 0308 -> 0327 0308 -> 0231 is confluent 0065 0308 0300 -> 0327 0300 -> 0231
0065 0300 0309 -> 0327 0309 -> 1e7b is confluent 0065 0309 0300 -> 0327 0300 -> 1e7b
0065 0300 030c -> 0327 030c -> 1e7b is confluent 0065 030c 0300 -> 0327 0300 -> 1e7b
0065 0300 0323 -> 0327 0323 -> 1e7b is confluent 0065 0323 0300 -> 0327 0300 -> 1e7b
0065 0300 0327 -> 0327 0327 -> 1e1d is confluent 0065 0327 0300 -> 0328 0300 -> 1e1d
0065 0300 0328 -> 0327 0328 -> 1e7b is confluent 0065 0328 0300 -> 0327 0300 -> 1e7b
0069 0300 0300 -> 030c 0300 -> 1e17 is confluent 0069 0300 0300 -> 030c 0300 -> 1e17
0069 0300 0301 -> 030c 0301 -> 1e17 is confluent 0069 0301 0300 -> 0308 0300 -> 1e17
0069 0300 0302 -> 030c 0302 -> 1e7b is confluent 0069 0302 0300 -> 0323 0300 -> 1e7b
0069 0300 0303 -> 030c 0303 -> 1e69 is confluent 0069 0303 0300 -> 0308 0300 -> 1e69
0069 0300 0304 -> 030c 0304 -> 0231 is confluent 0069 0304 0300 -> 0323 0300 -> 0231
0069 0300 0306 -> 030c 0306 -> 1e7b is confluent 0069 0306 0300 -> 0323 0300 -> 1e7b
0069 0300 0307 -> 030c 0307 -> 1e7b is not confluent
0069 0300 0308 -> 030c 0308 -> 1e7b is confluent 0069 0308 0300 -> 0328 0300 -> 1e7b
0069 0300 0309 -> 030c 0309 -> 1e69 is confluent 0069 0309 0300 -> 0308 0300 -> 1e69
0069 0300 030a -> 030c 030a -> 1e7b is not confluent
0069 0300 030c -> 030c 030c -> 01e1 is confluent 0069 030c 0300 -> 0308 0300 -> 01e1
0069 0300 031b -> 030c 031b -> 0231 is not confluent
0069 0300 0323 -> 030c 0323 -> 1ef1 is confluent 0069 0323 0300 -> 0308 0300 -> 1ef1
0069 0300 0327 -> 030c 0327 -> 1e69 is not confluent
0069 0300 0328 -> 030c 0328 -> 1e7b is confluent 0069 0328 0300 -> 0323 0300 -> 1e7b
006f 0300 0300 -> 031b 0300 -> 1e17 is confluent 006f 0300 0300 -> 031b 0300 -> 1e17
006f 0300 0301 -> 031b 0301 -> 1e17 is confluent 006f 0301 0300 -> 031b 0300 -> 1e17
006f 0300 0302 -> 031b 0302 -> 1e69 is confluent 006f 0302 0300 -> 031b 0300 -> 1e69
006f 0300 0303 -> 031b 0303 -> 1e17 is confluent 006f 0303 0300 -> 031b 0300 -> 1e17
006f 0300 0304 -> 031b 0304 -> 1e69 is confluent 006f 0304 0300 -> 031b 0300 -> 1e69
006f 0300 0306 -> 031b 0306 -> 1e69 is confluent 006f 0306 0300 -> 031b 0300 -> 1e69
006f 0300 0307 -> 031b 0307 -> 1e69 is confluent 006f 0307 0300 -> 031b 0300 -> 1e69
006f 0300 0308 -> 031b 0308 -> 01d8 is confluent 006f 0308 0300 -> 031b 0300 -> 01d8
006f 0300 0309 -> 031b 0309 -> 1e17 is confluent 006f 0309 0300 -> 031b 0300 -> 1e17
006f 0300 030a -> 031b 030a -> 1e69 is not confluent
006f 0300 030c -> 031b 030c -> 1e17 is confluent 006f 030c 0300 -> 031b 0300 -> 1e17
006f 0300 031b -> 031b 031b -> 1ef1 is confluent 006f 031b 0300 -> 0308 0300 -> 1ef1
006f 0300 0323 -> 031b 0323 -> 1e69 is confluent 006f 0323 0300 -> 031b 0300 -> 1e69
006f 0300 0328 -> 031b 0328 -> 1ef1 is confluent 006f 0328 0300 -> 030c 0300 -> 1ef1
0075 0300 0300 -> 031b 0300 -> 1e17 is confluent 0075 0300 0300 -> 031b 0300 -> 1e17
0075 0300 0301 -> 031b 0301 -> 1e17 is confluent 0075 0301 0300 -> 031b 0300 -> 1e17
0075 0300 0302 -> 031b 0302 -> 1e69 is confluent 0075 0302 0300 -> 0323 0300 -> 1e69
0075 0300 0303 -> 031b 0303 -> 1e17 is confluent 0075 0303 0300 -> 031b 0300 -> 1e17
0075 0300 0304 -> 031b 0304 -> 1e69 is confluent 0075 0304 0300 -> 0323 0300 -> 1e69
0075 0300 0306 -> 031b 0306 -> 1e69 is confluent 0075 0306 0300 -> 0323 0300 -> 1e69
0075 0300 0307 -> 031b 0307 -> 1e69 is not confluent
0075 0300 0308 -> 031b 0308 -> 01d8 is confluent 0075 0308 0300 -> 0323 0300 -> 01d8
0075 0300 0309 -> 031b 0309 -> 1e17 is confluent 0075 0309 0300 -> 031b 0300 -> 1e17
0075 0300 030a -> 031b 030a -> 1e69 is confluent 0075 030a 0300 -> 031b 0300 -> 1e69
0075 0300 030c -> 031b 030c -> 1e17 is confluent 0075 030c 0300 -> 0323 0300 -> 1e17
0075 0300 031b -> 031b 031b -> 1ef1 is confluent 0075 031b 0300 -> 0323 0300 -> 1ef1
0075 0300 0323 -> 031b 0323 -> 1e69 is confluent 0075 0323 0300 -> 031b 0300 -> 1e69
0075 0300 0328 -> 031b 0328 -> 1ef1 is confluent 0075 0328 0300 -> 031b 0300 -> 1ef1
0342 0300 0308 -> 0314 0308 -> 1fe7 is not confluent
0342 0300 0313 -> 0314 0313 -> 1f66 is confluent 0342 0313 0300 -> 0342 0300 -> 1f66
0342 0300 0314 -> 0314 0314 -> 1f67 is confluent 0342 0314 0300 -> 0342 0300 -> 1f67
0391 0300 0308 -> 0314 0308 -> 1fe7 is not confluent
0391 0300 0313 -> 0314 0313 -> 1f66 is confluent 0391 0313 0300 -> 1f08 0300 -> 1f66
0391 0300 0314 -> 0314 0314 -> 1f67 is confluent 0391 0314 0300 -> 1f09 0300 -> 1f67
0395 0300 0308 -> 0314 0308 -> 1fe7 is not confluent
0395 0300 0313 -> 0314 0313 -> 1f66 is confluent 0395 0313 0300 -> 1f18 0300 -> 1f66
0395 0300 0314 -> 0314 0314 -> 1f67 is confluent 0395 0314 0300 -> 1f19 0300 -> 1f67
0397 0300 0308 -> 0314 0308 -> 1fe7 is not confluent
0397 0300 0313 -> 0314 0313 -> 1f66 is confluent 0397 0313 0300 -> 1f28 0300 -> 1f66
0397 0300 0314 -> 0314 0314 -> 1f67 is confluent 0397 0314 0300 -> 1f29 0300 -> 1f67
0399 0300 0308 -> 0314 0308 -> 1fe7 is confluent 0399 0308 0300 -> 0301 0300 -> 1fe7
0399 0300 0313 -> 0314 0313 -> 1f66 is confluent 0399 0313 0300 -> 1f38 0300 -> 1f66
0399 0300 0314 -> 0314 0314 -> 1f67 is confluent 0399 0314 0300 -> 1f39 0300 -> 1f67
039f 0300 0308 -> 0314 0308 -> 1fe7 is not confluent
039f 0300 0313 -> 0314 0313 -> 1f66 is confluent 039f 0313 0300 -> 1f48 0300 -> 1f66
039f 0300 0314 -> 0314 0314 -> 1f67 is confluent 039f 0314 0300 -> 1f49 0300 -> 1f67
03a5 0300 0308 -> 0314 0308 -> 1fe7 is confluent 03a5 0308 0300 -> 0301 0300 -> 1fe7
03a5 0300 0313 -> 0314 0313 -> 1f66 is not confluent
03a5 0300 0314 -> 0314 0314 -> 1f67 is confluent 03a5 0314 0300 -> 1f59 0300 -> 1f67
03a9 0300 0308 -> 0314 0308 -> 1fe7 is not confluent
03a9 0300 0313 -> 0314 0313 -> 1f66 is confluent 03a9 0313 0300 -> 1f68 0300 -> 1f66
03a9 0300 0314 -> 0314 0314 -> 1f67 is confluent 03a9 0314 0300 -> 1f69 0300 -> 1f67
03b1 0300 0308 -> 0314 0308 -> 1fe7 is not confluent
03b1 0300 0313 -> 0314 0313 -> 1f66 is confluent 03b1 0313 0300 -> 1f00 0300 -> 1f66
03b1 0300 0314 -> 0314 0314 -> 1f67 is confluent 03b1 0314 0300 -> 1f01 0300 -> 1f67
03b5 0300 0308 -> 0314 0308 -> 1fe7 is not confluent
03b5 0300 0313 -> 0314 0313 -> 1f66 is confluent 03b5 0313 0300 -> 1f10 0300 -> 1f66
03b5 0300 0314 -> 0314 0314 -> 1f67 is confluent 03b5 0314 0300 -> 1f11 0300 -> 1f67
03b7 0300 0308 -> 0314 0308 -> 1fe7 is not confluent
03b7 0300 0313 -> 0314 0313 -> 1f66 is confluent 03b7 0313 0300 -> 1f20 0300 -> 1f66
03b7 0300 0314 -> 0314 0314 -> 1f67 is confluent 03b7 0314 0300 -> 1f21 0300 -> 1f67
03b9 0300 0308 -> 0314 0308 -> 1fe7 is confluent 03b9 0308 0300 -> 03ca 0300 -> 1fe7
03b9 0300 0313 -> 0314 0313 -> 1f66 is confluent 03b9 0313 0300 -> 1f30 0300 -> 1f66
03b9 0300 0314 -> 0314 0314 -> 1f67 is confluent 03b9 0314 0300 -> 1f31 0300 -> 1f67
03bf 0300 0308 -> 0314 0308 -> 1fe7 is not confluent
03bf 0300 0313 -> 0314 0313 -> 1f66 is confluent 03bf 0313 0300 -> 1f40 0300 -> 1f66
03bf 0300 0314 -> 0314 0314 -> 1f67 is confluent 03bf 0314 0300 -> 1f41 0300 -> 1f67
03c5 0300 0308 -> 0314 0308 -> 1fe7 is confluent 03c5 0308 0300 -> 03cb 0300 -> 1fe7
03c5 0300 0313 -> 0314 0313 -> 1f66 is confluent 03c5 0313 0300 -> 1f50 0300 -> 1f66
03c5 0300 0314 -> 0314 0314 -> 1f67 is confluent 03c5 0314 0300 -> 1f51 0300 -> 1f67
03c9 0300 0308 -> 0314 0308 -> 1fe7 is not confluent
03c9 0300 0313 -> 0314 0313 -> 1f66 is confluent 03c9 0313 0300 -> 1f60 0300 -> 1f66
03c9 0300 0314 -> 0314 0314 -> 1f67 is confluent 03c9 0314 0300 -> 1f61 0300 -> 1f67
1f00 0300 0345 -> 1f02 0345 -> 1f82 is confluent 1f00 0345 0300 -> 0342 0300 -> 1f82
1f01 0300 0345 -> 1f03 0345 -> 1f83 is confluent 1f01 0345 0300 -> 0342 0300 -> 1f83
1f08 0300 0345 -> 1f0a 0345 -> 1f8a is confluent 1f08 0345 0300 -> 0342 0300 -> 1f8a
1f09 0300 0345 -> 1f0b 0345 -> 1f8b is confluent 1f09 0345 0300 -> 0342 0300 -> 1f8b
1f20 0300 0345 -> 1f22 0345 -> 1f92 is confluent 1f20 0345 0300 -> 0342 0300 -> 1f92
1f21 0300 0345 -> 1f23 0345 -> 1f93 is confluent 1f21 0345 0300 -> 0342 0300 -> 1f93
1f28 0300 0345 -> 1f2a 0345 -> 1f9a is confluent 1f28 0345 0300 -> 0342 0300 -> 1f9a
1f29 0300 0345 -> 1f2b 0345 -> 1f9b is confluent 1f29 0345 0300 -> 0342 0300 -> 1f9b
1f60 0300 0345 -> 1f62 0345 -> 1fa2 is confluent 1f60 0345 0300 -> 0342 0300 -> 1fa2
1f61 0300 0345 -> 1f63 0345 -> 1fa3 is confluent 1f61 0345 0300 -> 0342 0300 -> 1fa3
1f68 0300 0345 -> 1f6a 0345 -> 1faa is confluent 1f68 0345 0300 -> 0342 0300 -> 1faa
1f69 0300 0345 -> 1f6b 0345 -> 1fab is confluent 1f69 0345 0300 -> 0342 0300 -> 1fab
1fa9 0300 0313 -> 1fab 0313 -> 1fab is not confluent
1fa9 0300 0314 -> 1fab 0314 -> 1fab is not confluent
1fb3 0300 0308 -> 0314 0308 -> 1fe7 is not confluent
1fb3 0300 0313 -> 0314 0313 -> 1f66 is confluent 1fb3 0313 0300 -> 1f80 0300 -> 1f66
1fb3 0300 0314 -> 0314 0314 -> 1f67 is confluent 1fb3 0314 0300 -> 1f81 0300 -> 1f67
1fc3 0300 0308 -> 0314 0308 -> 1fe7 is not confluent
1fc3 0300 0313 -> 0314 0313 -> 1f66 is confluent 1fc3 0313 0300 -> 1f90 0300 -> 1f66
1fc3 0300 0314 -> 0314 0314 -> 1f67 is confluent 1fc3 0314 0300 -> 1f91 0300 -> 1f67
1ff3 0300 0308 -> 0314 0308 -> 1fe7 is not confluent
1ff3 0300 0313 -> 0314 0313 -> 1f66 is confluent 1ff3 0313 0300 -> 1fa0 0300 -> 1f66
1ff3 0300 0314 -> 0314 0314 -> 1f67 is confluent 1ff3 0314 0300 -> 1fa1 0300 -> 1f67
0041 0301 0300 -> 0308 0300 -> 1e67 is confluent 0041 0300 0301 -> 0323 0301 -> 1e67
0041 0301 0301 -> 0308 0301 -> 1e67 is confluent 0041 0301 0301 -> 0308 0301 -> 1e67
0041 0301 0302 -> 0308 0302 -> 1e67 is confluent 0041 0302 0301 -> 0323 0301 -> 1e67
0041 0301 0303 -> 0308 0303 -> 1e17 is confluent 0041 0303 0301 -> 0323 0301 -> 1e17
0041 0301 0304 -> 0308 0304 -> 1e67 is confluent 0041 0304 0301 -> 0308 0301 -> 1e67
0041 0301 0306 -> 0308 0306 -> 1e7b is confluent 0041 0306 0301 -> 0323 0301 -> 1e7b
0041 0301 0307 -> 0308 0307 -> 01e1 is confluent 0041 0307 0301 -> 0323 0301 -> 01e1
0041 0301 0308 -> 0308 0308 -> 01da is confluent 0041 0308 0301 -> 030a 0301 -> 01da
0041 0301 0309 -> 0308 0309 -> 1e17 is confluent 0041 0309 0301 -> 0323 0301 -> 1e17
0041 0301 030a -> 0308 030a -> 0231 is confluent 0041 030a 0301 -> 0323 0301 -> 0231
0041 0301 030c -> 0308 030c -> 1e7b is confluent 0041 030c 0301 -> 0323 0301 -> 1e7b
0041 0301 031b -> 0308 031b -> 1e7b is not confluent
0041 0301 0323 -> 0308 0323 -> 1ec7 is confluent 0041 0323 0301 -> 030a 0301 -> 1ec7
0041 0301 0327 -> 0308 0327 -> 1e69 is not confluent
0041 0301 0328 -> 0308 0328 -> 01ed is confluent 0041 0328 0301 -> 030a 0301 -> 01ed
0043 0301 0300 -> 0327 0300 -> 1e7b is not confluent
0043 0301 0301 -> 0327 0301 -> 1e7b is confluent 0043 0301 0301 -> 0327 0301 -> 1e7b
0043 0301 0302 -> 0327 0302 -> 1e7b is confluent 0043 0302 0301 -> 0327 0301 -> 1e7b
0043 0301 0303 -> 0327 0303 -> 1e7b is not confluent
0043 0301 0304 -> 0327 0304 -> 1e7b is not confluent
0043 0301 0306 -> 0327 0306 -> 1e7b is not confluent
0043 0301 0307 -> 0327 0307 -> 1e7b is confluent 0043 0307 0301 -> 0327 0301 -> 1e7b
0043 0301 0308 -> 0327 0308 -> 0231 is not confluent
0043 0301 0309 -> 0327 0309 -> 1e7b is not confluent
0043 0301 030c -> 0327 030c -> 1e7b is confluent 0043 030c 0301 -> 0302 0301 -> 1e7b
0043 0301 0323 -> 0327 0323 -> 1e7b is not confluent
0043 0301 0327 -> 0327 0327 -> 1e1d is confluent 0043 0327 0301 -> 030c 0301 -> 1e1d
0043 0301 0328 -> 0327 0328 -> 1e7b is not confluent
0045 0301 0300 -> 0327 0300 -> 1e7b is confluent 0045 0300 0301 -> 0327 0301 -> 1e7b
0045 0301 0301 -> 0327 0301 -> 1e7b is confluent 0045 0301 0301 -> 0327 0301 -> 1e7b
0045 0301 0302 -> 0327 0302 -> 1e7b is confluent 0045 0302 0301 -> 0327 0301 -> 1e7b
0045 0301 0303 -> 0327 0303 -> 1e7b is confluent 0045 0303 0301 -> 0327 0301 -> 1e7b
0045 0301 0304 -> 0327 0304 -> 1e7b is confluent 0045 0304 0301 -> 0327 0301 -> 1e7b
0045 0301 0306 -> 0327 0306 -> 1e7b is confluent 0045 0306 0301 -> 0327 0301 -> 1e7b
0045 0301 0307 -> 0327 0307 -> 1e7b is confluent 0045 0307 0301 -> 0327 0301 -> 1e7b
0045 0301 0308 -> 0327 0308 -> 0231 is confluent 0045 0308 0301 -> 0327 0301 -> 0231
0045 0301 0309 -> 0327 0309 -> 1e7b is confluent 0045 0309 0301 -> 0327 0301 -> 1e7b
0045 0301 030c -> 0327 030c -> 1e7b is confluent 0045 030c 0301 -> 0327 0301 -> 1e7b
0045 0301 0323 -> 0327 0323 -> 1e7b is confluent 0045 0323 0301 -> 0327 0301 -> 1e7b
0045 0301 0327 -> 0327 0327 -> 1e1d is confluent 0045 0327 0301 -> 0328 0301 -> 1e1d
0045 0301 0328 -> 0327 0328 -> 1e7b is confluent 0045 0328 0301 -> 0327 0301 -> 1e7b
0049 0301 0300 -> 0308 0300 -> 1e67 is confluent 0049 0300 0301 -> 030c 0301 -> 1e67
0049 0301 0301 -> 0308 0301 -> 1e67 is confluent 0049 0301 0301 -> 0308 0301 -> 1e67
0049 0301 0302 -> 0308 0302 -> 1e67 is confluent 0049 0302 0301 -> 0323 0301 -> 1e67
0049 0301 0303 -> 0308 0303 -> 1e17 is confluent 0049 0303 0301 -> 0308 0301 -> 1e17
0049 0301 0304 -> 0308 0304 -> 1e67 is confluent 0049 0304 0301 -> 0323 0301 -> 1e67
0049 0301 0306 -> 0308 0306 -> 1e7b is confluent 0049 0306 0301 -> 0323 0301 -> 1e7b
0049 0301 0307 -> 0308 0307 -> 01e1 is confluent 0049 0307 0301 -> 0323 0301 -> 01e1
0049 0301 0308 -> 0308 0308 -> 01da is confluent 0049 0308 0301 -> 0328 0301 -> 01da
0049 0301 0309 -> 0308 0309 -> 1e17 is confluent 0049 0309 0301 -> 0308 0301 -> 1e17
0049 0301 030a -> 0308 030a -> 0231 is not confluent
0049 0301 030c -> 0308 030c -> 1e7b is confluent 0049 030c 0301 -> 0308 0301 -> 1e7b
0049 0301 031b -> 0308 031b -> 1e7b is not confluent
0049 0301 0323 -> 0308 0323 -> 1ec7 is confluent 0049 0323 0301 -> 0308 0301 -> 1ec7
0049 0301 0327 -> 0308 0327 -> 1e69 is not confluent
0049 0301 0328 -> 0308 0328 -> 01ed is confluent 0049 0328 0301 -> 0323 0301 -> 01ed
004f 0301 0300 -> 031b 0300 -> 1e17 is confluent 004f 0300 0301 -> 031b 0301 -> 1e17
004f 0301 0301 -> 031b 0301 -> 1e17 is confluent 004f 0301 0301 -> 031b 0301 -> 1e17
004f 0301 0302 -> 031b 0302 -> 1e69 is confluent 004f 0302 0301 -> 031b 0301 -> 1e69
004f 0301 0303 -> 031b 0303 -> 1e17 is confluent 004f 0303 0301 -> 031b 0301 -> 1e17
004f 0301 0304 -> 031b 0304 -> 1e69 is confluent 004f 0304 0301 -> 031b 0301 -> 1e69
004f 0301 0306 -> 031b 0306 -> 1e69 is confluent 004f 0306 0301 -> 031b 0301 -> 1e69
004f 0301 0307 -> 031b 0307 -> 1e69 is confluent 004f 0307 0301 -> 031b 0301 -> 1e69
004f 0301 0308 -> 031b 0308 -> 01d8 is confluent 004f 0308 0301 -> 031b 0301 -> 01d8
004f 0301 0309 -> 031b 0309 -> 1e17 is confluent 004f 0309 0301 -> 031b 0301 -> 1e17
004f 0301 030a -> 031b 030a -> 1e69 is not confluent
004f 0301 030c -> 031b 030c -> 1e17 is confluent 004f 030c 0301 -> 031b 0301 -> 1e17
004f 0301 031b -> 031b 031b -> 1ef1 is confluent 004f 031b 0301 -> 0308 0301 -> 1ef1
004f 0301 0323 -> 031b 0323 -> 1e69 is confluent 004f 0323 0301 -> 031b 0301 -> 1e69
004f 0301 0328 -> 031b 0328 -> 1ef1 is confluent 004f 0328 0301 -> 030c 0301 -> 1ef1
0053 0301 0300 -> 0327 0300 -> 1e7b is not confluent
0053 0301 0301 -> 0327 0301 -> 1e7b is confluent 0053 0301 0301 -> 0327 0301 -> 1e7b
0053 0301 0302 -> 0327 0302 -> 1e7b is confluent 0053 0302 0301 -> 0327 0301 -> 1e7b
0053 0301 0303 -> 0327 0303 -> 1e7b is not confluent
0053 0301 0304 -> 0327 0304 -> 1e7b is not confluent
0053 0301 0306 -> 0327 0306 -> 1e7b is not confluent
0053 0301 0307 -> 0327 0307 -> 1e7b is confluent 0053 0307 0301 -> 0323 0301 -> 1e7b
0053 0301 0308 -> 0327 0308 -> 0231 is not confluent
0053 0301 0309 -> 0327 0309 -> 1e7b is not confluent
0053 0301 030c -> 0327 030c -> 1e7b is confluent 0053 030c 0301 -> 0327 0301 -> 1e7b
0053 0301 0323 -> 0327 0323 -> 1e7b is confluent 0053 0323 0301 -> 0327 0301 -> 1e7b
0053 0301 0327 -> 0327 0327 -> 1e1d is confluent 0053 0327 0301 -> 0307 0301 -> 1e1d
0053 0301 0328 -> 0327 0328 -> 1e7b is not confluent
0055 0301 0300 -> 031b 0300 -> 1e17 is confluent 0055 0300 0301 -> 031b 0301 -> 1e17
0055 0301 0301 -> 031b 0301 -> 1e17 is confluent 0055 0301 0301 -> 031b 0301 -> 1e17
0055 0301 0302 -> 031b 0302 -> 1e69 is confluent 0055 0302 0301 -> 0323 0301 -> 1e69
0055 0301 0303 -> 031b 0303 -> 1e17 is confluent 0055 0303 0301 -> 031b 0301 -> 1e17
0055 0301 0304 -> 031b 0304 -> 1e69 is confluent 0055 0304 0301 -> 0323 0301 -> 1e69
0055 0301 0306 -> 031b 0306 -> 1e69 is confluent 0055 0306 0301 -> 0323 0301 -> 1e69
0055 0301 0307 -> 031b 0307 -> 1e69 is not confluent
0055 0301 0308 -> 031b 0308 -> 01d8 is confluent 0055 0308 0301 -> 0323 0301 -> 01d8
0055 0301 0309 -> 031b 0309 -> 1e17 is confluent 0055 0309 0301 -> 031b 0301 -> 1e17
0055 0301 030a -> 031b 030a -> 1e69 is confluent 0055 030a 0301 -> 031b 0301 -> 1e69
0055 0301 030c -> 031b 030c -> 1e17 is confluent 0055 030c 0301 -> 0323 0301 -> 1e17
0055 0301 031b -> 031b 031b -> 1ef1 is confluent 0055 031b 0301 -> 0323 0301 -> 1ef1
0055 0301 0323 -> 031b 0323 -> 1e69 is confluent 0055 0323 0301 -> 031b 0301 -> 1e69
0055 0301 0328 -> 031b 0328 -> 1ef1 is confluent 0055 0328 0301 -> 031b 0301 -> 1ef1
0061 0301 0300 -> 0308 0300 -> 1e67 is confluent 0061 0300 0301 -> 0323 0301 -> 1e67
0061 0301 0301 -> 0308 0301 -> 1e67 is confluent 0061 0301 0301 -> 0308 0301 -> 1e67
0061 0301 0302 -> 0308 0302 -> 1e67 is confluent 0061 0302 0301 -> 0323 0301 -> 1e67
0061 0301 0303 -> 0308 0303 -> 1e17 is confluent 0061 0303 0301 -> 0323 0301 -> 1e17
0061 0301 0304 -> 0308 0304 -> 1e67 is confluent 0061 0304 0301 -> 0308 0301 -> 1e67
0061 0301 0306 -> 0308 0306 -> 1e7b is confluent 0061 0306 0301 -> 0323 0301 -> 1e7b
0061 0301 0307 -> 0308 0307 -> 01e1 is confluent 0061 0307 0301 -> 0323 0301 -> 01e1
0061 0301 0308 -> 0308 0308 -> 01da is confluent 0061 0308 0301 -> 030a 0301 -> 01da
0061 0301 0309 -> 0308 0309 -> 1e17 is confluent 0061 0309 0301 -> 0323 0301 -> 1e17
0061 0301 030a -> 0308 030a -> 0231 is confluent 0061 030a 0301 -> 0323 0301 -> 0231
0061 0301 030c -> 0308 030c -> 1e7b is confluent 0061 030c 0301 -> 0323 0301 -> 1e7b
0061 0301 031b -> 0308 031b -> 1e7b is not confluent
0061 0301 0323 -> 0308 0323 -> 1ec7 is confluent 0061 0323 0301 -> 030a 0301 -> 1ec7
0061 0301 0327 -> 0308 0327 -> 1e69 is not confluent
0061 0301 0328 -> 0308 0328 -> 01ed is confluent 0061 0328 0301 -> 030a 0301 -> 01ed
0063 0301 0300 -> 0327 0300 -> 1e7b is not confluent
0063 0301 0301 -> 0327 0301 -> 1e7b is confluent 0063 0301 0301 -> 0327 0301 -> 1e7b
0063 0301 0302 -> 0327 0302 -> 1e7b is confluent 0063 0302 0301 -> 0327 0301 -> 1e7b
0063 0301 0303 -> 0327 0303 -> 1e7b is not confluent
0063 0301 0304 -> 0327 0304 -> 1e7b is not confluent
0063 0301 0306 -> 0327 0306 -> 1e7b is not confluent
0063 0301 0307 -> 0327 0307 -> 1e7b is confluent 0063 0307 0301 -> 0327 0301 -> 1e7b
0063 0301 0308 -> 0327 0308 -> 0231 is not confluent
0063 0301 0309 -> 0327 0309 -> 1e7b is not confluent
0063 0301 030c -> 0327 030c -> 1e7b is confluent 0063 030c 0301 -> 0302 0301 -> 1e7b
0063 0301 0323 -> 0327 0323 -> 1e7b is not confluent
0063 0301 0327 -> 0327 0327 -> 1e1d is confluent 0063 0327 0301 -> 030c 0301 -> 1e1d
0063 0301 0328 -> 0327 0328 -> 1e7b is not confluent
0065 0301 0300 -> 0327 0300 -> 1e7b is confluent 0065 0300 0301 -> 0327 0301 -> 1e7b
0065 0301 0301 -> 0327 0301 -> 1e7b is confluent 0065 0301 0301 -> 0327 0301 -> 1e7b
0065 0301 0302 -> 0327 0302 -> 1e7b is confluent 0065 0302 0301 -> 0327 0301 -> 1e7b
0065 0301 0303 -> 0327 0303 -> 1e7b is confluent 0065 0303 0301 -> 0327 0301 -> 1e7b
0065 0301 0304 -> 0327 0304 -> 1e7b is confluent 0065 0304 0301 -> 0327 0301 -> 1e7b
0065 0301 0306 -> 0327 0306 -> 1e7b is confluent 0065 0306 0301 -> 0327 0301 -> 1e7b
0065 0301 0307 -> 0327 0307 -> 1e7b is confluent 0065 0307 0301 -> 0327 0301 -> 1e7b
0065 0301 0308 -> 0327 0308 -> 0231 is confluent 0065 0308 0301 -> 0327 0301 -> 0231
0065 0301 0309 -> 0327 0309 -> 1e7b is confluent 0065 0309 0301 -> 0327 0301 -> 1e7b
0065 0301 030c -> 0327 030c -> 1e7b is confluent 0065 030c 0301 -> 0327 0301 -> 1e7b
0065 0301 0323 -> 0327 0323 -> 1e7b is confluent 0065 0323 0301 -> 0327 0301 -> 1e7b
0065 0301 0327 -> 0327 0327 -> 1e1d is confluent 0065 0327 0301 -> 0328 0301 -> 1e1d
0065 0301 0328 -> 0327 0328 -> 1e7b is confluent 0065 0328 0301 -> 0327 0301 -> 1e7b
0069 0301 0300 -> 0308 0300 -> 1e67 is confluent 0069 0300 0301 -> 030c 0301 -> 1e67
0069 0301 0301 -> 0308 0301 -> 1e67 is confluent 0069 0301 0301 -> 0308 0301 -> 1e67
0069 0301 0302 -> 0308 0302 -> 1e67 is confluent 0069 0302 0301 -> 0323 0301 -> 1e67
0069 0301 0303 -> 0308 0303 -> 1e17 is confluent 0069 0303 0301 -> 0308 0301 -> 1e17
0069 0301 0304 -> 0308 0304 -> 1e67 is confluent 0069 0304 0301 -> 0323 0301 -> 1e67
0069 0301 0306 -> 0308 0306 -> 1e7b is confluent 0069 0306 0301 -> 0323 0301 -> 1e7b
0069 0301 0307 -> 0308 0307 -> 01e1 is not confluent
0069 0301 0308 -> 0308 0308 -> 01da is confluent 0069 0308 0301 -> 0328 0301 -> 01da
0069 0301 0309 -> 0308 0309 -> 1e17 is confluent 0069 0309 0301 -> 0308 0301 -> 1e17
0069 0301 030a -> 0308 030a -> 0231 is not confluent
0069 0301 030c -> 0308 030c -> 1e7b is confluent 0069 030c 0301 -> 0308 0301 -> 1e7b
0069 0301 031b -> 0308 031b -> 1e7b is not confluent
0069 0301 0323 -> 0308 0323 -> 1ec7 is confluent 0069 0323 0301 -> 0308 0301 -> 1ec7
0069 0301 0327 -> 0308 0327 -> 1e69 is not confluent
0069 0301 0328 -> 0308 0328 -> 01ed is confluent 0069 0328 0301 -> 0323 0301 -> 01ed
006f 0301 0300 -> 031b 0300 -> 1e17 is confluent 006f 0300 0301 -> 031b 0301 -> 1e17
006f 0301 0301 -> 031b 0301 -> 1e17 is confluent 006f 0301 0301 -> 031b 0301 -> 1e17
006f 0301 0302 -> 031b 0302 -> 1e69 is confluent 006f 0302 0301 -> 031b 0301 -> 1e69
006f 0301 0303 -> 031b 0303 -> 1e17 is confluent 006f 0303 0301 -> 031b 0301 -> 1e17
006f 0301 0304 -> 031b 0304 -> 1e69 is confluent 006f 0304 0301 -> 031b 0301 -> 1e69
006f 0301 0306 -> 031b 0306 -> 1e69 is confluent 006f 0306 0301 -> 031b 0301 -> 1e69
006f 0301 0307 -> 031b 0307 -> 1e69 is confluent 006f 0307 0301 -> 031b 0301 -> 1e69
006f 0301 0308 -> 031b 0308 -> 01d8 is confluent 006f 0308 0301 -> 031b 0301 -> 01d8
006f 0301 0309 -> 031b 0309 -> 1e17 is confluent 006f 0309 0301 -> 031b 0301 -> 1e17
006f 0301 030a -> 031b 030a -> 1e69 is not confluent
006f 0301 030c -> 031b 030c -> 1e17 is confluent 006f 030c 0301 -> 031b 0301 -> 1e17
006f 0301 031b -> 031b 031b -> 1ef1 is confluent 006f 031b 0301 -> 0308 0301 -> 1ef1
006f 0301 0323 -> 031b 0323 -> 1e69 is confluent 006f 0323 0301 -> 031b 0301 -> 1e69
006f 0301 0328 -> 031b 0328 -> 1ef1 is confluent 006f 0328 0301 -> 030c 0301 -> 1ef1
0073 0301 0300 -> 0327 0300 -> 1e7b is not confluent
0073 0301 0301 -> 0327 0301 -> 1e7b is confluent 0073 0301 0301 -> 0327 0301 -> 1e7b
0073 0301 0302 -> 0327 0302 -> 1e7b is confluent 0073 0302 0301 -> 0327 0301 -> 1e7b
0073 0301 0303 -> 0327 0303 -> 1e7b is not confluent
0073 0301 0304 -> 0327 0304 -> 1e7b is not confluent
0073 0301 0306 -> 0327 0306 -> 1e7b is not confluent
0073 0301 0307 -> 0327 0307 -> 1e7b is confluent 0073 0307 0301 -> 0323 0301 -> 1e7b
0073 0301 0308 -> 0327 0308 -> 0231 is not confluent
0073 0301 0309 -> 0327 0309 -> 1e7b is not confluent
0073 0301 030c -> 0327 030c -> 1e7b is confluent 0073 030c 0301 -> 0327 0301 -> 1e7b
0073 0301 0323 -> 0327 0323 -> 1e7b is confluent 0073 0323 0301 -> 0327 0301 -> 1e7b
0073 0301 0327 -> 0327 0327 -> 1e1d is confluent 0073 0327 0301 -> 0307 0301 -> 1e1d
0073 0301 0328 -> 0327 0328 -> 1e7b is not confluent
0075 0301 0300 -> 031b 0300 -> 1e17 is confluent 0075 0300 0301 -> 031b 0301 -> 1e17
0075 0301 0301 -> 031b 0301 -> 1e17 is confluent 0075 0301 0301 -> 031b 0301 -> 1e17
0075 0301 0302 -> 031b 0302 -> 1e69 is confluent 0075 0302 0301 -> 0323 0301 -> 1e69
0075 0301 0303 -> 031b 0303 -> 1e17 is confluent 0075 0303 0301 -> 031b 0301 -> 1e17
0075 0301 0304 -> 031b 0304 -> 1e69 is confluent 0075 0304 0301 -> 0323 0301 -> 1e69
0075 0301 0306 -> 031b 0306 -> 1e69 is confluent 0075 0306 0301 -> 0323 0301 -> 1e69
0075 0301 0307 -> 031b 0307 -> 1e69 is not confluent
0075 0301 0308 -> 031b 0308 -> 01d8 is confluent 0075 0308 0301 -> 0323 0301 -> 01d8
0075 0301 0309 -> 031b 0309 -> 1e17 is confluent 0075 0309 0301 -> 031b 0301 -> 1e17
0075 0301 030a -> 031b 030a -> 1e69 is confluent 0075 030a 0301 -> 031b 0301 -> 1e69
0075 0301 030c -> 031b 030c -> 1e17 is confluent 0075 030c 0301 -> 0323 0301 -> 1e17
0075 0301 031b -> 031b 031b -> 1ef1 is confluent 0075 031b 0301 -> 0323 0301 -> 1ef1
0075 0301 0323 -> 031b 0323 -> 1e69 is confluent 0075 0323 0301 -> 031b 0301 -> 1e69
0075 0301 0328 -> 031b 0328 -> 1ef1 is confluent 0075 0328 0301 -> 031b 0301 -> 1ef1
0342 0301 0308 -> 0314 0308 -> 1fe7 is not confluent
0342 0301 0313 -> 0314 0313 -> 1f66 is confluent 0342 0313 0301 -> 0342 0301 -> 1f66
0342 0301 0314 -> 0314 0314 -> 1f67 is confluent 0342 0314 0301 -> 0342 0301 -> 1f67
0391 0301 0308 -> 0314 0308 -> 1fe7 is not confluent
0391 0301 0313 -> 0314 0313 -> 1f66 is confluent 0391 0313 0301 -> 1f08 0301 -> 1f66
0391 0301 0314 -> 0314 0314 -> 1f67 is confluent 0391 0314 0301 -> 1f09 0301 -> 1f67
0395 0301 0308 -> 0314 0308 -> 1fe7 is not confluent
0395 0301 0313 -> 0314 0313 -> 1f66 is confluent 0395 0313 0301 -> 1f18 0301 -> 1f66
0395 0301 0314 -> 0314 0314 -> 1f67 is confluent 0395 0314 0301 -> 1f19 0301 -> 1f67
0397 0301 0308 -> 0314 0308 -> 1fe7 is not confluent
0397 0301 0313 -> 0314 0313 -> 1f66 is confluent 0397 0313 0301 -> 1f28 0301 -> 1f66
0397 0301 0314 -> 0314 0314 -> 1f67 is confluent 0397 0314 0301 -> 1f29 0301 -> 1f67
0399 0301 0308 -> 0314 0308 -> 1fe7 is confluent 0399 0308 0301 -> 0301 0301 -> 1fe7
0399 0301 0313 -> 0314 0313 -> 1f66 is confluent 0399 0313 0301 -> 1f38 0301 -> 1f66
0399 0301 0314 -> 0314 0314 -> 1f67 is confluent 0399 0314 0301 -> 1f39 0301 -> 1f67
039f 0301 0308 -> 0314 0308 -> 1fe7 is not confluent
039f 0301 0313 -> 0314 0313 -> 1f66 is confluent 039f 0313 0301 -> 1f48 0301 -> 1f66
039f 0301 0314 -> 0314 0314 -> 1f67 is confluent 039f 0314 0301 -> 1f49 0301 -> 1f67
03a5 0301 0308 -> 0314 0308 -> 1fe7 is confluent 03a5 0308 0301 -> 0301 0301 -> 1fe7
03a5 0301 0313 -> 0314 0313 -> 1f66 is not confluent
03a5 0301 0314 -> 0314 0314 -> 1f67 is confluent 03a5 0314 0301 -> 1f59 0301 -> 1f67
03a9 0301 0308 -> 0314 0308 -> 1fe7 is not confluent
03a9 0301 0313 -> 0314 0313 -> 1f66 is confluent 03a9 0313 0301 -> 1f68 0301 -> 1f66
03a9 0301 0314 -> 0314 0314 -> 1f67 is confluent 03a9 0314 0301 -> 1f69 0301 -> 1f67
03b1 0301 0308 -> 0314 0308 -> 1fe7 is not confluent
03b1 0301 0313 -> 0314 0313 -> 1f66 is confluent 03b1 0313 0301 -> 1f00 0301 -> 1f66
03b1 0301 0314 -> 0314 0314 -> 1f67 is confluent 03b1 0314 0301 -> 1f01 0301 -> 1f67
03b5 0301 0308 -> 0314 0308 -> 1fe7 is not confluent
03b5 0301 0313 -> 0314 0313 -> 1f66 is confluent 03b5 0313 0301 -> 1f10 0301 -> 1f66
03b5 0301 0314 -> 0314 0314 -> 1f67 is confluent 03b5 0314 0301 -> 1f11 0301 -> 1f67
03b7 0301 0308 -> 0314 0308 -> 1fe7 is not confluent
03b7 0301 0313 -> 0314 0313 -> 1f66 is confluent 03b7 0313 0301 -> 1f20 0301 -> 1f66
03b7 0301 0314 -> 0314 0314 -> 1f67 is confluent 03b7 0314 0301 -> 1f21 0301 -> 1f67
03b9 0301 0308 -> 0314 0308 -> 1fe7 is confluent 03b9 0308 0301 -> 03ca 0301 -> 1fe7
03b9 0301 0313 -> 0314 0313 -> 1f66 is confluent 03b9 0313 0301 -> 1f30 0301 -> 1f66
03b9 0301 0314 -> 0314 0314 -> 1f67 is confluent 03b9 0314 0301 -> 1f31 0301 -> 1f67
03bf 0301 0308 -> 0314 0308 -> 1fe7 is not confluent
03bf 0301 0313 -> 0314 0313 -> 1f66 is confluent 03bf 0313 0301 -> 1f40 0301 -> 1f66
03bf 0301 0314 -> 0314 0314 -> 1f67 is confluent 03bf 0314 0301 -> 1f41 0301 -> 1f67
03c5 0301 0308 -> 0314 0308 -> 1fe7 is confluent 03c5 0308 0301 -> 03cb 0301 -> 1fe7
03c5 0301 0313 -> 0314 0313 -> 1f66 is confluent 03c5 0313 0301 -> 1f50 0301 -> 1f66
03c5 0301 0314 -> 0314 0314 -> 1f67 is confluent 03c5 0314 0301 -> 1f51 0301 -> 1f67
03c9 0301 0308 -> 0314 0308 -> 1fe7 is not confluent
03c9 0301 0313 -> 0314 0313 -> 1f66 is confluent 03c9 0313 0301 -> 1f60 0301 -> 1f66
03c9 0301 0314 -> 0314 0314 -> 1f67 is confluent 03c9 0314 0301 -> 1f61 0301 -> 1f67
1f00 0301 0345 -> 1f04 0345 -> 1f84 is confluent 1f00 0345 0301 -> 0342 0301 -> 1f84
1f01 0301 0345 -> 1f05 0345 -> 1f85 is confluent 1f01 0345 0301 -> 0342 0301 -> 1f85
1f08 0301 0345 -> 1f0c 0345 -> 1f8c is confluent 1f08 0345 0301 -> 0342 0301 -> 1f8c
1f09 0301 0345 -> 1f0d 0345 -> 1f8d is confluent 1f09 0345 0301 -> 0342 0301 -> 1f8d
1f20 0301 0345 -> 1f24 0345 -> 1f94 is confluent 1f20 0345 0301 -> 0342 0301 -> 1f94
1f21 0301 0345 -> 1f25 0345 -> 1f95 is confluent 1f21 0345 0301 -> 0342 0301 -> 1f95
1f28 0301 0345 -> 1f2c 0345 -> 1f9c is confluent 1f28 0345 0301 -> 0342 0301 -> 1f9c
1f29 0301 0345 -> 1f2d 0345 -> 1f9d is confluent 1f29 0345 0301 -> 0342 0301 -> 1f9d
1f60 0301 0345 -> 1f64 0345 -> 1fa4 is confluent 1f60 0345 0301 -> 0342 0301 -> 1fa4
1f61 0301 0345 -> 1f65 0345 -> 1fa5 is confluent 1f61 0345 0301 -> 0342 0301 -> 1fa5
1f68 0301 0345 -> 1f6c 0345 -> 1fac is confluent 1f68 0345 0301 -> 0342 0301 -> 1fac
1f69 0301 0345 -> 1f6d 0345 -> 1fad is confluent 1f69 0345 0301 -> 0342 0301 -> 1fad
1fa9 0301 0313 -> 1fad 0313 -> 1fad is not confluent
1fa9 0301 0314 -> 1fad 0314 -> 1fad is not confluent
1fb3 0301 0308 -> 0314 0308 -> 1fe7 is not confluent
1fb3 0301 0313 -> 0314 0313 -> 1f66 is confluent 1fb3 0313 0301 -> 1f80 0301 -> 1f66
1fb3 0301 0314 -> 0314 0314 -> 1f67 is confluent 1fb3 0314 0301 -> 1f81 0301 -> 1f67
1fc3 0301 0308 -> 0314 0308 -> 1fe7 is not confluent
1fc3 0301 0313 -> 0314 0313 -> 1f66 is confluent 1fc3 0313 0301 -> 1f90 0301 -> 1f66
1fc3 0301 0314 -> 0314 0314 -> 1f67 is confluent 1fc3 0314 0301 -> 1f91 0301 -> 1f67
1ff3 0301 0308 -> 0314 0308 -> 1fe7 is not confluent
1ff3 0301 0313 -> 0314 0313 -> 1f66 is confluent 1ff3 0313 0301 -> 1fa0 0301 -> 1f66
1ff3 0301 0314 -> 0314 0314 -> 1f67 is confluent 1ff3 0314 0301 -> 1fa1 0301 -> 1f67
0041 0302 0300 -> 0323 0300 -> 01d8 is confluent 0041 0300 0302 -> 0323 0302 -> 01d8
0041 0302 0301 -> 0323 0301 -> 1e65 is confluent 0041 0301 0302 -> 0308 0302 -> 1e65
0041 0302 0302 -> 0323 0302 -> 1ef1 is confluent 0041 0302 0302 -> 0323 0302 -> 1ef1
0041 0302 0303 -> 0323 0303 -> 01d8 is confluent 0041 0303 0302 -> 0323 0302 -> 01d8
0041 0302 0304 -> 0323 0304 -> 1e7b is confluent 0041 0304 0302 -> 0308 0302 -> 1e7b
0041 0302 0306 -> 0323 0306 -> 1e7b is confluent 0041 0306 0302 -> 0323 0302 -> 1e7b
0041 0302 0307 -> 0323 0307 -> 1e7b is confluent 0041 0307 0302 -> 0323 0302 -> 1e7b
0041 0302 0308 -> 0323 0308 -> 1e7b is confluent 0041 0308 0302 -> 030a 0302 -> 1e7b
0041 0302 0309 -> 0323 0309 -> 01d8 is confluent 0041 0309 0302 -> 0323 0302 -> 01d8
0041 0302 030a -> 0323 030a -> 1e7b is confluent 0041 030a 0302 -> 0323 0302 -> 1e7b
0041 0302 030c -> 0323 030c -> 1e67 is confluent 0041 030c 0302 -> 0323 0302 -> 1e67
0041 0302 031b -> 0323 031b -> 1e7b is not confluent
0041 0302 0323 -> 0323 0323 -> 1e69 is confluent 0041 0323 0302 -> 030a 0302 -> 1e69
0041 0302 0327 -> 0323 0327 -> 1e69 is not confluent
0041 0302 0328 -> 0323 0328 -> 1e7b is confluent 0041 0328 0302 -> 030a 0302 -> 1e7b
0043 0302 0300 -> 0327 0300 -> 1e7b is not confluent
0043 0302 0301 -> 0327 0301 -> 1e7b is confluent 0043 0301 0302 -> 0327 0302 -> 1e7b
0043 0302 0302 -> 0327 0302 -> 1e7b is confluent 0043 0302 0302 -> 0327 0302 -> 1e7b
0043 0302 0303 -> 0327 0303 -> 1e7b is not confluent
0043 0302 0304 -> 0327 0304 -> 1e7b is not confluent
0043 0302 0306 -> 0327 0306 -> 1e7b is not confluent
0043 0302 0307 -> 0327 0307 -> 1e7b is confluent 0043 0307 0302 -> 0327 0302 -> 1e7b
0043 0302 0308 -> 0327 0308 -> 0231 is not confluent
0043 0302 0309 -> 0327 0309 -> 1e7b is not confluent
0043 0302 030c -> 0327 030c -> 1e7b is confluent 0043 030c 0302 -> 0302 0302 -> 1e7b
0043 0302 0323 -> 0327 0323 -> 1e7b is not confluent
0043 0302 0327 -> 0327 0327 -> 1e1d is confluent 0043 0327 0302 -> 030c 0302 -> 1e1d
0043 0302 0328 -> 0327 0328 -> 1e7b is not confluent
0045 0302 0300 -> 0327 0300 -> 1e7b is confluent 0045 0300 0302 -> 0327 0302 -> 1e7b
0045 0302 0301 -> 0327 0301 -> 1e7b is confluent 0045 0301 0302 -> 0327 0302 -> 1e7b
0045 0302 0302 -> 0327 0302 -> 1e7b is confluent 0045 0302 0302 -> 0327 0302 -> 1e7b
0045 0302 0303 -> 0327 0303 -> 1e7b is confluent 0045 0303 0302 -> 0327 0302 -> 1e7b
0045 0302 0304 -> 0327 0304 -> 1e7b is confluent 0045 0304 0302 -> 0327 0302 -> 1e7b
0045 0302 0306 -> 0327 0306 -> 1e7b is confluent 0045 0306 0302 -> 0327 0302 -> 1e7b
0045 0302 0307 -> 0327 0307 -> 1e7b is confluent 0045 0307 0302 -> 0327 0302 -> 1e7b
0045 0302 0308 -> 0327 0308 -> 0231 is confluent 0045 0308 0302 -> 0327 0302 -> 0231
0045 0302 0309 -> 0327 0309 -> 1e7b is confluent 0045 0309 0302 -> 0327 0302 -> 1e7b
0045 0302 030c -> 0327 030c -> 1e7b is confluent 0045 030c 0302 -> 0327 0302 -> 1e7b
0045 0302 0323 -> 0327 0323 -> 1e7b is confluent 0045 0323 0302 -> 0327 0302 -> 1e7b
0045 0302 0327 -> 0327 0327 -> 1e1d is confluent 0045 0327 0302 -> 0328 0302 -> 1e1d
0045 0302 0328 -> 0327 0328 -> 1e7b is confluent 0045 0328 0302 -> 0327 0302 -> 1e7b
0049 0302 0300 -> 0323 0300 -> 01d8 is confluent 0049 0300 0302 -> 030c 0302 -> 01d8
0049 0302 0301 -> 0323 0301 -> 1e65 is confluent 0049 0301 0302 -> 0308 0302 -> 1e65
0049 0302 0302 -> 0323 0302 -> 1ef1 is confluent 0049 0302 0302 -> 0323 0302 -> 1ef1
0049 0302 0303 -> 0323 0303 -> 01d8 is confluent 0049 0303 0302 -> 0308 0302 -> 01d8
0049 0302 0304 -> 0323 0304 -> 1e7b is confluent 0049 0304 0302 -> 0323 0302 -> 1e7b
0049 0302 0306 -> 0323 0306 -> 1e7b is confluent 0049 0306 0302 -> 0323 0302 -> 1e7b
0049 0302 0307 -> 0323 0307 -> 1e7b is confluent 0049 0307 0302 -> 0323 0302 -> 1e7b
0049 0302 0308 -> 0323 0308 -> 1e7b is confluent 0049 0308 0302 -> 0328 0302 -> 1e7b
0049 0302 0309 -> 0323 0309 -> 01d8 is confluent 0049 0309 0302 -> 0308 0302 -> 01d8
0049 0302 030a -> 0323 030a -> 1e7b is not confluent
0049 0302 030c -> 0323 030c -> 1e67 is confluent 0049 030c 0302 -> 0308 0302 -> 1e67
0049 0302 031b -> 0323 031b -> 1e7b is not confluent
0049 0302 0323 -> 0323 0323 -> 1e69 is confluent 0049 0323 0302 -> 0308 0302 -> 1e69
0049 0302 0327 -> 0323 0327 -> 1e69 is not confluent
0049 0302 0328 -> 0323 0328 -> 1e7b is confluent 0049 0328 0302 -> 0323 0302 -> 1e7b
004f 0302 0300 -> 031b 0300 -> 1e17 is confluent 004f 0300 0302 -> 031b 0302 -> 1e17
004f 0302 0301 -> 031b 0301 -> 1e17 is confluent 004f 0301 0302 -> 031b 0302 -> 1e17
004f 0302 0302 -> 031b 0302 -> 1e69 is confluent 004f 0302 0302 -> 031b 0302 -> 1e69
004f 0302 0303 -> 031b 0303 -> 1e17 is confluent 004f 0303 0302 -> 031b 0302 -> 1e17
004f 0302 0304 -> 031b 0304 -> 1e69 is confluent 004f 0304 0302 -> 031b 0302 -> 1e69
004f 0302 0306 -> 031b 0306 -> 1e69 is confluent 004f 0306 0302 -> 031b 0302 -> 1e69
004f 0302 0307 -> 031b 0307 -> 1e69 is confluent 004f 0307 0302 -> 031b 0302 -> 1e69
004f 0302 0308 -> 031b 0308 -> 01d8 is confluent 004f 0308 0302 -> 031b 0302 -> 01d8
004f 0302 0309 -> 031b 0309 -> 1e17 is confluent 004f 0309 0302 -> 031b 0302 -> 1e17
004f 0302 030a -> 031b 030a -> 1e69 is not confluent
004f 0302 030c -> 031b 030c -> 1e17 is confluent 004f 030c 0302 -> 031b 0302 -> 1e17
004f 0302 031b -> 031b 031b -> 1ef1 is confluent 004f 031b 0302 -> 0308 0302 -> 1ef1
004f 0302 0323 -> 031b 0323 -> 1e69 is confluent 004f 0323 0302 -> 031b 0302 -> 1e69
004f 0302 0328 -> 031b 0328 -> 1ef1 is confluent 004f 0328 0302 -> 030c 0302 -> 1ef1
0053 0302 0300 -> 0327 0300 -> 1e7b is not confluent
0053 0302 0301 -> 0327 0301 -> 1e7b is confluent 0053 0301 0302 -> 0327 0302 -> 1e7b
0053 0302 0302 -> 0327 0302 -> 1e7b is confluent 0053 0302 0302 -> 0327 0302 -> 1e7b
0053 0302 0303 -> 0327 0303 -> 1e7b is not confluent
0053 0302 0304 -> 0327 0304 -> 1e7b is not confluent
0053 0302 0306 -> 0327 0306 -> 1e7b is not confluent
0053 0302 0307 -> 0327 0307 -> 1e7b is confluent 0053 0307 0302 -> 0323 0302 -> 1e7b
0053 0302 0308 -> 0327 0308 -> 0231 is not confluent
0053 0302 0309 -> 0327 0309 -> 1e7b is not confluent
0053 0302 030c -> 0327 030c -> 1e7b is confluent 0053 030c 0302 -> 0327 0302 -> 1e7b
0053 0302 0323 -> 0327 0323 -> 1e7b is confluent 0053 0323 0302 -> 0327 0302 -> 1e7b
0053 0302 0327 -> 0327 0327 -> 1e1d is confluent 0053 0327 0302 -> 0307 0302 -> 1e1d
0053 0302 0328 -> 0327 0328 -> 1e7b is not confluent
0055 0302 0300 -> 0323 0300 -> 01d8 is confluent 0055 0300 0302 -> 031b 0302 -> 01d8
0055 0302 0301 -> 0323 0301 -> 1e65 is confluent 0055 0301 0302 -> 031b 0302 -> 1e65
0055 0302 0302 -> 0323 0302 -> 1ef1 is confluent 0055 0302 0302 -> 0323 0302 -> 1ef1
0055 0302 0303 -> 0323 0303 -> 01d8 is confluent 0055 0303 0302 -> 031b 0302 -> 01d8
0055 0302 0304 -> 0323 0304 -> 1e7b is confluent 0055 0304 0302 -> 0323 0302 -> 1e7b
0055 0302 0306 -> 0323 0306 -> 1e7b is confluent 0055 0306 0302 -> 0323 0302 -> 1e7b
0055 0302 0307 -> 0323 0307 -> 1e7b is not confluent
0055 0302 0308 -> 0323 0308 -> 1e7b is confluent 0055 0308 0302 -> 0323 0302 -> 1e7b
0055 0302 0309 -> 0323 0309 -> 01d8 is confluent 0055 0309 0302 -> 031b 0302 -> 01d8
0055 0302 030a -> 0323 030a -> 1e7b is confluent 0055 030a 0302 -> 031b 0302 -> 1e7b
0055 0302 030c -> 0323 030c -> 1e67 is confluent 0055 030c 0302 -> 0323 0302 -> 1e67
0055 0302 031b -> 0323 031b -> 1e7b is confluent 0055 031b 0302 -> 0323 0302 -> 1e7b
0055 0302 0323 -> 0323 0323 -> 1e69 is confluent 0055 0323 0302 -> 031b 0302 -> 1e69
0055 0302 0327 -> 0323 0327 -> 1e69 is not confluent
0055 0302 0328 -> 0323 0328 -> 1e7b is confluent 0055 0328 0302 -> 031b 0302 -> 1e7b
0061 0302 0300 -> 0323 0300 -> 01d8 is confluent 0061 0300 0302 -> 0323 0302 -> 01d8
0061 0302 0301 -> 0323 0301 -> 1e65 is confluent 0061 0301 0302 -> 0308 0302 -> 1e65
0061 0302 0302 -> 0323 0302 -> 1ef1 is confluent 0061 0302 0302 -> 0323 0302 -> 1ef1
0061 0302 0303 -> 0323 0303 -> 01d8 is confluent 0061 0303 0302 -> 0323 0302 -> 01d8
0061 0302 0304 -> 0323 0304 -> 1e7b is confluent 0061 0304 0302 -> 0308 0302 -> 1e7b
0061 0302 0306 -> 0323 0306 -> 1e7b is confluent 0061 0306 0302 -> 0323 0302 -> 1e7b
0061 0302 0307 -> 0323 0307 -> 1e7b is confluent 0061 0307 0302 -> 0323 0302 -> 1e7b
0061 0302 0308 -> 0323 0308 -> 1e7b is confluent 0061 0308 0302 -> 030a 0302 -> 1e7b
0061 0302 0309 -> 0323 0309 -> 01d8 is confluent 0061 0309 0302 -> 0323 0302 -> 01d8
0061 0302 030a -> 0323 030a -> 1e7b is confluent 0061 030a 0302 -> 0323 0302 -> 1e7b
0061 0302 030c -> 0323 030c -> 1e67 is confluent 0061 030c 0302 -> 0323 0302 -> 1e67
0061 0302 031b -> 0323 031b -> 1e7b is not confluent
0061 0302 0323 -> 0323 0323 -> 1e69 is confluent 0061 0323 0302 -> 030a 0302 -> 1e69
0061 0302 0327 -> 0323 0327 -> 1e69 is not confluent
0061 0302 0328 -> 0323 0328 -> 1e7b is confluent 0061 0328 0302 -> 030a 0302 -> 1e7b
0063 0302 0300 -> 0327 0300 -> 1e7b is not confluent
0063 0302 0301 -> 0327 0301 -> 1e7b is confluent 0063 0301 0302 -> 0327 0302 -> 1e7b
0063 0302 0302 -> 0327 0302 -> 1e7b is confluent 0063 0302 0302 -> 0327 0302 -> 1e7b
0063 0302 0303 -> 0327 0303 -> 1e7b is not confluent
0063 0302 0304 -> 0327 0304 -> 1e7b is not confluent
0063 0302 0306 -> 0327 0306 -> 1e7b is not confluent
0063 0302 0307 -> 0327 0307 -> 1e7b is confluent 0063 0307 0302 -> 0327 0302 -> 1e7b
0063 0302 0308 -> 0327 0308 -> 0231 is not confluent
0063 0302 0309 -> 0327 0309 -> 1e7b is not confluent
0063 0302 030c -> 0327 030c -> 1e7b is confluent 0063 030c 0302 -> 0302 0302 -> 1e7b
0063 0302 0323 -> 0327 0323 -> 1e7b is not confluent
0063 0302 0327 -> 0327 0327 -> 1e1d is confluent 0063 0327 0302 -> 030c 0302 -> 1e1d
0063 0302 0328 -> 0327 0328 -> 1e7b is not confluent
0065 0302 0300 -> 0327 0300 -> 1e7b is confluent 0065 0300 0302 -> 0327 0302 -> 1e7b
0065 0302 0301 -> 0327 0301 -> 1e7b is confluent 0065 0301 0302 -> 0327 0302 -> 1e7b
0065 0302 0302 -> 0327 0302 -> 1e7b is confluent 0065 0302 0302 -> 0327 0302 -> 1e7b
0065 0302 0303 -> 0327 0303 -> 1e7b is confluent 0065 0303 0302 -> 0327 0302 -> 1e7b
0065 0302 0304 -> 0327 0304 -> 1e7b is confluent 0065 0304 0302 -> 0327 0302 -> 1e7b
0065 0302 0306 -> 0327 0306 -> 1e7b is confluent 0065 0306 0302 -> 0327 0302 -> 1e7b
0065 0302 0307 -> 0327 0307 -> 1e7b is confluent 0065 0307 0302 -> 0327 0302 -> 1e7b
0065 0302 0308 -> 0327 0308 -> 0231 is confluent 0065 0308 0302 -> 0327 0302 -> 0231
0065 0302 0309 -> 0327 0309 -> 1e7b is confluent 0065 0309 0302 -> 0327 0302 -> 1e7b
0065 0302 030c -> 0327 030c -> 1e7b is confluent 0065 030c 0302 -> 0327 0302 -> 1e7b
0065 0302 0323 -> 0327 0323 -> 1e7b is confluent 0065 0323 0302 -> 0327 0302 -> 1e7b
0065 0302 0327 -> 0327 0327 -> 1e1d is confluent 0065 0327 0302 -> 0328 0302 -> 1e1d
0065 0302 0328 -> 0327 0328 -> 1e7b is confluent 0065 0328 0302 -> 0327 0302 -> 1e7b
0069 0302 0300 -> 0323 0300 -> 01d8 is confluent 0069 0300 0302 -> 030c 0302 -> 01d8
0069 0302 0301 -> 0323 0301 -> 1e65 is confluent 0069 0301 0302 -> 0308 0302 -> 1e65
0069 0302 0302 -> 0323 0302 -> 1ef1 is confluent 0069 0302 0302 -> 0323 0302 -> 1ef1
0069 0302 0303 -> 0323 0303 -> 01d8 is confluent 0069 0303 0302 -> 0308 0302 -> 01d8
0069 0302 0304 -> 0323 0304 -> 1e7b is confluent 0069 0304 0302 -> 0323 0302 -> 1e7b
0069 0302 0306 -> 0323 0306 -> 1e7b is confluent 0069 0306 0302 -> 0323 0302 -> 1e7b
0069 0302 0307 -> 0323 0307 -> 1e7b is not confluent
0069 0302 0308 -> 0323 0308 -> 1e7b is confluent 0069 0308 0302 -> 0328 0302 -> 1e7b
0069 0302 0309 -> 0323 0309 -> 01d8 is confluent 0069 0309 0302 -> 0308 0302 -> 01d8
0069 0302 030a -> 0323 030a -> 1e7b is not confluent
0069 0302 030c -> 0323 030c -> 1e67 is confluent 0069 030c 0302 -> 0308 0302 -> 1e67
0069 0302 031b -> 0323 031b -> 1e7b is not confluent
0069 0302 0323 -> 0323 0323 -> 1e69 is confluent 0069 0323 0302 -> 0308 0302 -> 1e69
0069 0302 0327 -> 0323 0327 -> 1e69 is not confluent
0069 0302 0328 -> 0323 0328 -> 1e7b is confluent 0069 0328 0302 -> 0323 0302 -> 1e7b
006f 0302 0300 -> 031b 0300 -> 1e17 is confluent 006f 0300 0302 -> 031b 0302 -> 1e17
006f 0302 0301 -> 031b 0301 -> 1e17 is confluent 006f 0301 0302 -> 031b 0302 -> 1e17
006f 0302 0302 -> 031b 0302 -> 1e69 is confluent 006f 0302 0302 -> 031b 0302 -> 1e69
006f 0302 0303 -> 031b 0303 -> 1e17 is confluent 006f 0303 0302 -> 031b 0302 -> 1e17
006f 0302 0304 -> 031b 0304 -> 1e69 is confluent 006f 0304 0302 -> 031b 0302 -> 1e69
006f 0302 0306 -> 031b 0306 -> 1e69 is confluent 006f 0306 0302 -> 031b 0302 -> 1e69
006f 0302 0307 -> 031b 0307 -> 1e69 is confluent 006f 0307 0302 -> 031b 0302 -> 1e69
006f 0302 0308 -> 031b 0308 -> 01d8 is confluent 006f 0308 0302 -> 031b 0302 -> 01d8
006f 0302 0309 -> 031b 0309 -> 1e17 is confluent 006f 0309 0302 -> 031b 0302 -> 1e17
006f 0302 030a -> 031b 030a -> 1e69 is not confluent
006f 0302 030c -> 031b 030c -> 1e17 is confluent 006f 030c 0302 -> 031b 0302 -> 1e17
006f 0302 031b -> 031b 031b -> 1ef1 is confluent 006f 031b 0302 -> 0308 0302 -> 1ef1
006f 0302 0323 -> 031b 0323 -> 1e69 is confluent 006f 0323 0302 -> 031b 0302 -> 1e69
006f 0302 0328 -> 031b 0328 -> 1ef1 is confluent 006f 0328 0302 -> 030c 0302 -> 1ef1
0073 0302 0300 -> 0327 0300 -> 1e7b is not confluent
0073 0302 0301 -> 0327 0301 -> 1e7b is confluent 0073 0301 0302 -> 0327 0302 -> 1e7b
0073 0302 0302 -> 0327 0302 -> 1e7b is confluent 0073 0302 0302 -> 0327 0302 -> 1e7b
0073 0302 0303 -> 0327 0303 -> 1e7b is not confluent
0073 0302 0304 -> 0327 0304 -> 1e7b is not confluent
0073 0302 0306 -> 0327 0306 -> 1e7b is not confluent
0073 0302 0307 -> 0327 0307 -> 1e7b is confluent 0073 0307 0302 -> 0323 0302 -> 1e7b
0073 0302 0308 -> 0327 0308 -> 0231 is not confluent
0073 0302 0309 -> 0327 0309 -> 1e7b is not confluent
0073 0302 030c -> 0327 030c -> 1e7b is confluent 0073 030c 0302 -> 0327 0302 -> 1e7b
0073 0302 0323 -> 0327 0323 -> 1e7b is confluent 0073 0323 0302 -> 0327 0302 -> 1e7b
0073 0302 0327 -> 0327 0327 -> 1e1d is confluent 0073 0327 0302 -> 0307 0302 -> 1e1d
0073 0302 0328 -> 0327 0328 -> 1e7b is not confluent
0075 0302 0300 -> 0323 0300 -> 01d8 is confluent 0075 0300 0302 -> 031b 0302 -> 01d8
0075 0302 0301 -> 0323 0301 -> 1e65 is confluent 0075 0301 0302 -> 031b 0302 -> 1e65
0075 0302 0302 -> 0323 0302 -> 1ef1 is confluent 0075 0302 0302 -> 0323 0302 -> 1ef1
0075 0302 0303 -> 0323 0303 -> 01d8 is confluent 0075 0303 0302 -> 031b 0302 -> 01d8
0075 0302 0304 -> 0323 0304 -> 1e7b is confluent 0075 0304 0302 -> 0323 0302 -> 1e7b
0075 0302 0306 -> 0323 0306 -> 1e7b is confluent 0075 0306 0302 -> 0323 0302 -> 1e7b
0075 0302 0307 -> 0323 0307 -> 1e7b is not confluent
0075 0302 0308 -> 0323 0308 -> 1e7b is confluent 0075 0308 0302 -> 0323 0302 -> 1e7b
0075 0302 0309 -> 0323 0309 -> 01d8 is confluent 0075 0309 0302 -> 031b 0302 -> 01d8
0075 0302 030a -> 0323 030a -> 1e7b is confluent 0075 030a 0302 -> 031b 0302 -> 1e7b
0075 0302 030c -> 0323 030c -> 1e67 is confluent 0075 030c 0302 -> 0323 0302 -> 1e67
0075 0302 031b -> 0323 031b -> 1e7b is confluent 0075 031b 0302 -> 0323 0302 -> 1e7b
0075 0302 0323 -> 0323 0323 -> 1e69 is confluent 0075 0323 0302 -> 031b 0302 -> 1e69
0075 0302 0327 -> 0323 0327 -> 1e69 is not confluent
0075 0302 0328 -> 0323 0328 -> 1e7b is confluent 0075 0328 0302 -> 031b 0302 -> 1e7b
0041 0303 0300 -> 0323 0300 -> 01d8 is confluent 0041 0300 0303 -> 0323 0303 -> 01d8
0041 0303 0301 -> 0323 0301 -> 1e65 is confluent 0041 0301 0303 -> 0308 0303 -> 1e65
0041 0303 0302 -> 0323 0302 -> 1ef1 is confluent 0041 0302 0303 -> 0323 0303 -> 1ef1
0041 0303 0303 -> 0323 0303 -> 01d8 is confluent 0041 0303 0303 -> 0323 0303 -> 01d8
0041 0303 0304 -> 0323 0304 -> 1e7b is confluent 0041 0304 0303 -> 0308 0303 -> 1e7b
0041 0303 0306 -> 0323 0306 -> 1e7b is confluent 0041 0306 0303 -> 0323 0303 -> 1e7b
0041 0303 0307 -> 0323 0307 -> 1e7b is confluent 0041 0307 0303 -> 0323 0303 -> 1e7b
0041 0303 0308 -> 0323 0308 -> 1e7b is confluent 0041 0308 0303 -> 030a 0303 -> 1e7b
0041 0303 0309 -> 0323 0309 -> 01d8 is confluent 0041 0309 0303 -> 0323 0303 -> 01d8
0041 0303 030a -> 0323 030a -> 1e7b is confluent 0041 030a 0303 -> 0323 0303 -> 1e7b
0041 0303 030c -> 0323 030c -> 1e67 is confluent 0041 030c 0303 -> 0323 0303 -> 1e67
0041 0303 031b -> 0323 031b -> 1e7b is not confluent
0041 0303 0323 -> 0323 0323 -> 1e69 is confluent 0041 0323 0303 -> 030a 0303 -> 1e69
0041 0303 0327 -> 0323 0327 -> 1e69 is not confluent
0041 0303 0328 -> 0323 0328 -> 1e7b is confluent 0041 0328 0303 -> 030a 0303 -> 1e7b
0045 0303 0300 -> 0327 0300 -> 1e7b is confluent 0045 0300 0303 -> 0327 0303 -> 1e7b
0045 0303 0301 -> 0327 0301 -> 1e7b is confluent 0045 0301 0303 -> 0327 0303 -> 1e7b
0045 0303 0302 -> 0327 0302 -> 1e7b is confluent 0045 0302 0303 -> 0327 0303 -> 1e7b
0045 0303 0303 -> 0327 0303 -> 1e7b is confluent 0045 0303 0303 -> 0327 0303 -> 1e7b
0045 0303 0304 -> 0327 0304 -> 1e7b is confluent 0045 0304 0303 -> 0327 0303 -> 1e7b
0045 0303 0306 -> 0327 0306 -> 1e7b is confluent 0045 0306 0303 -> 0327 0303 -> 1e7b
0045 0303 0307 -> 0327 0307 -> 1e7b is confluent 0045 0307 0303 -> 0327 0303 -> 1e7b
0045 0303 0308 -> 0327 0308 -> 0231 is confluent 0045 0308 0303 -> 0327 0303 -> 0231
0045 0303 0309 -> 0327 0309 -> 1e7b is confluent 0045 0309 0303 -> 0327 0303 -> 1e7b
0045 0303 030c -> 0327 030c -> 1e7b is confluent 0045 030c 0303 -> 0327 0303 -> 1e7b
0045 0303 0323 -> 0327 0323 -> 1e7b is confluent 0045 0323 0303 -> 0327 0303 -> 1e7b
0045 0303 0327 -> 0327 0327 -> 1e1d is confluent 0045 0327 0303 -> 0328 0303 -> 1e1d
0045 0303 0328 -> 0327 0328 -> 1e7b is confluent 0045 0328 0303 -> 0327 0303 -> 1e7b
0049 0303 0300 -> 0308 0300 -> 1e67 is confluent 0049 0300 0303 -> 030c 0303 -> 1e67
0049 0303 0301 -> 0308 0301 -> 1e67 is confluent 0049 0301 0303 -> 0308 0303 -> 1e67
0049 0303 0302 -> 0308 0302 -> 1e67 is confluent 0049 0302 0303 -> 0323 0303 -> 1e67
0049 0303 0303 -> 0308 0303 -> 1e17 is confluent 0049 0303 0303 -> 0308 0303 -> 1e17
0049 0303 0304 -> 0308 0304 -> 1e67 is confluent 0049 0304 0303 -> 0323 0303 -> 1e67
0049 0303 0306 -> 0308 0306 -> 1e7b is confluent 0049 0306 0303 -> 0323 0303 -> 1e7b
0049 0303 0307 -> 0308 0307 -> 01e1 is confluent 0049 0307 0303 -> 0323 0303 -> 01e1
0049 0303 0308 -> 0308 0308 -> 01da is confluent 0049 0308 0303 -> 0328 0303 -> 01da
0049 0303 0309 -> 0308 0309 -> 1e17 is confluent 0049 0309 0303 -> 0308 0303 -> 1e17
0049 0303 030a -> 0308 030a -> 0231 is not confluent
0049 0303 030c -> 0308 030c -> 1e7b is confluent 0049 030c 0303 -> 0308 0303 -> 1e7b
0049 0303 031b -> 0308 031b -> 1e7b is not confluent
0049 0303 0323 -> 0308 0323 -> 1ec7 is confluent 0049 0323 0303 -> 0308 0303 -> 1ec7
0049 0303 0327 -> 0308 0327 -> 1e69 is not confluent
0049 0303 0328 -> 0308 0328 -> 01ed is confluent 0049 0328 0303 -> 0323 0303 -> 01ed
004f 0303 0300 -> 031b 0300 -> 1e17 is confluent 004f 0300 0303 -> 031b 0303 -> 1e17
004f 0303 0301 -> 031b 0301 -> 1e17 is confluent 004f 0301 0303 -> 031b 0303 -> 1e17
004f 0303 0302 -> 031b 0302 -> 1e69 is confluent 004f 0302 0303 -> 031b 0303 -> 1e69
004f 0303 0303 -> 031b 0303 -> 1e17 is confluent 004f 0303 0303 -> 031b 0303 -> 1e17
004f 0303 0304 -> 031b 0304 -> 1e69 is confluent 004f 0304 0303 -> 031b 0303 -> 1e69
004f 0303 0306 -> 031b 0306 -> 1e69 is confluent 004f 0306 0303 -> 031b 0303 -> 1e69
004f 0303 0307 -> 031b 0307 -> 1e69 is confluent 004f 0307 0303 -> 031b 0303 -> 1e69
004f 0303 0308 -> 031b 0308 -> 01d8 is confluent 004f 0308 0303 -> 031b 0303 -> 01d8
004f 0303 0309 -> 031b 0309 -> 1e17 is confluent 004f 0309 0303 -> 031b 0303 -> 1e17
004f 0303 030a -> 031b 030a -> 1e69 is not confluent
004f 0303 030c -> 031b 030c -> 1e17 is confluent 004f 030c 0303 -> 031b 0303 -> 1e17
004f 0303 031b -> 031b 031b -> 1ef1 is confluent 004f 031b 0303 -> 0308 0303 -> 1ef1
004f 0303 0323 -> 031b 0323 -> 1e69 is confluent 004f 0323 0303 -> 031b 0303 -> 1e69
004f 0303 0328 -> 031b 0328 -> 1ef1 is confluent 004f 0328 0303 -> 030c 0303 -> 1ef1
0055 0303 0300 -> 031b 0300 -> 1e17 is confluent 0055 0300 0303 -> 031b 0303 -> 1e17
0055 0303 0301 -> 031b 0301 -> 1e17 is confluent 0055 0301 0303 -> 031b 0303 -> 1e17
0055 0303 0302 -> 031b 0302 -> 1e69 is confluent 0055 0302 0303 -> 0323 0303 -> 1e69
0055 0303 0303 -> 031b 0303 -> 1e17 is confluent 0055 0303 0303 -> 031b 0303 -> 1e17
0055 0303 0304 -> 031b 0304 -> 1e69 is confluent 0055 0304 0303 -> 0323 0303 -> 1e69
0055 0303 0306 -> 031b 0306 -> 1e69 is confluent 0055 0306 0303 -> 0323 0303 -> 1e69
0055 0303 0307 -> 031b 0307 -> 1e69 is not confluent
0055 0303 0308 -> 031b 0308 -> 01d8 is confluent 0055 0308 0303 -> 0323 0303 -> 01d8
0055 0303 0309 -> 031b 0309 -> 1e17 is confluent 0055 0309 0303 -> 031b 0303 -> 1e17
0055 0303 030a -> 031b 030a -> 1e69 is confluent 0055 030a 0303 -> 031b 0303 -> 1e69
0055 0303 030c -> 031b 030c -> 1e17 is confluent 0055 030c 0303 -> 0323 0303 -> 1e17
0055 0303 031b -> 031b 031b -> 1ef1 is confluent 0055 031b 0303 -> 0323 0303 -> 1ef1
0055 0303 0323 -> 031b 0323 -> 1e69 is confluent 0055 0323 0303 -> 031b 0303 -> 1e69
0055 0303 0328 -> 031b 0328 -> 1ef1 is confluent 0055 0328 0303 -> 031b 0303 -> 1ef1
0061 0303 0300 -> 0323 0300 -> 01d8 is confluent 0061 0300 0303 -> 0323 0303 -> 01d8
0061 0303 0301 -> 0323 0301 -> 1e65 is confluent 0061 0301 0303 -> 0308 0303 -> 1e65
0061 0303 0302 -> 0323 0302 -> 1ef1 is confluent 0061 0302 0303 -> 0323 0303 -> 1ef1
0061 0303 0303 -> 0323 0303 -> 01d8 is confluent 0061 0303 0303 -> 0323 0303 -> 01d8
0061 0303 0304 -> 0323 0304 -> 1e7b is confluent 0061 0304 0303 -> 0308 0303 -> 1e7b
0061 0303 0306 -> 0323 0306 -> 1e7b is confluent 0061 0306 0303 -> 0323 0303 -> 1e7b
0061 0303 0307 -> 0323 0307 -> 1e7b is confluent 0061 0307 0303 -> 0323 0303 -> 1e7b
0061 0303 0308 -> 0323 0308 -> 1e7b is confluent 0061 0308 0303 -> 030a 0303 -> 1e7b
0061 0303 0309 -> 0323 0309 -> 01d8 is confluent 0061 0309 0303 -> 0323 0303 -> 01d8
0061 0303 030a -> 0323 030a -> 1e7b is confluent 0061 030a 0303 -> 0323 0303 -> 1e7b
0061 0303 030c -> 0323 030c -> 1e67 is confluent 0061 030c 0303 -> 0323 0303 -> 1e67
0061 0303 031b -> 0323 031b -> 1e7b is not confluent
0061 0303 0323 -> 0323 0323 -> 1e69 is confluent 0061 0323 0303 -> 030a 0303 -> 1e69
0061 0303 0327 -> 0323 0327 -> 1e69 is not confluent
0061 0303 0328 -> 0323 0328 -> 1e7b is confluent 0061 0328 0303 -> 030a 0303 -> 1e7b
0065 0303 0300 -> 0327 0300 -> 1e7b is confluent 0065 0300 0303 -> 0327 0303 -> 1e7b
0065 0303 0301 -> 0327 0301 -> 1e7b is confluent 0065 0301 0303 -> 0327 0303 -> 1e7b
0065 0303 0302 -> 0327 0302 -> 1e7b is confluent 0065 0302 0303 -> 0327 0303 -> 1e7b
0065 0303 0303 -> 0327 0303 -> 1e7b is confluent 0065 0303 0303 -> 0327 0303 -> 1e7b
0065 0303 0304 -> 0327 0304 -> 1e7b is confluent 0065 0304 0303 -> 0327 0303 -> 1e7b
0065 0303 0306 -> 0327 0306 -> 1e7b is confluent 0065 0306 0303 -> 0327 0303 -> 1e7b
0065 0303 0307 -> 0327 0307 -> 1e7b is confluent 0065 0307 0303 -> 0327 0303 -> 1e7b
0065 0303 0308 -> 0327 0308 -> 0231 is confluent 0065 0308 0303 -> 0327 0303 -> 0231
0065 0303 0309 -> 0327 0309 -> 1e7b is confluent 0065 0309 0303 -> 0327 0303 -> 1e7b
0065 0303 030c -> 0327 030c -> 1e7b is confluent 0065 030c 0303 -> 0327 0303 -> 1e7b
0065 0303 0323 -> 0327 0323 -> 1e7b is confluent 0065 0323 0303 -> 0327 0303 -> 1e7b
0065 0303 0327 -> 0327 0327 -> 1e1d is confluent 0065 0327 0303 -> 0328 0303 -> 1e1d
0065 0303 0328 -> 0327 0328 -> 1e7b is confluent 0065 0328 0303 -> 0327 0303 -> 1e7b
0069 0303 0300 -> 0308 0300 -> 1e67 is confluent 0069 0300 0303 -> 030c 0303 -> 1e67
0069 0303 0301 -> 0308 0301 -> 1e67 is confluent 0069 0301 0303 -> 0308 0303 -> 1e67
0069 0303 0302 -> 0308 0302 -> 1e67 is confluent 0069 0302 0303 -> 0323 0303 -> 1e67
0069 0303 0303 -> 0308 0303 -> 1e17 is confluent 0069 0303 0303 -> 0308 0303 -> 1e17
0069 0303 0304 -> 0308 0304 -> 1e67 is confluent 0069 0304 0303 -> 0323 0303 -> 1e67
0069 0303 0306 -> 0308 0306 -> 1e7b is confluent 0069 0306 0303 -> 0323 0303 -> 1e7b
0069 0303 0307 -> 0308 0307 -> 01e1 is not confluent
0069 0303 0308 -> 0308 0308 -> 01da is confluent 0069 0308 0303 -> 0328 0303 -> 01da
0069 0303 0309 -> 0308 0309 -> 1e17 is confluent 0069 0309 0303 -> 0308 0303 -> 1e17
0069 0303 030a -> 0308 030a -> 0231 is not confluent
0069 0303 030c -> 0308 030c -> 1e7b is confluent 0069 030c 0303 -> 0308 0303 -> 1e7b
0069 0303 031b -> 0308 031b -> 1e7b is not confluent
0069 0303 0323 -> 0308 0323 -> 1ec7 is confluent 0069 0323 0303 -> 0308 0303 -> 1ec7
0069 0303 0327 -> 0308 0327 -> 1e69 is not confluent
0069 0303 0328 -> 0308 0328 -> 01ed is confluent 0069 0328 0303 -> 0323 0303 -> 01ed
006f 0303 0300 -> 031b 0300 -> 1e17 is confluent 006f 0300 0303 -> 031b 0303 -> 1e17
006f 0303 0301 -> 031b 0301 -> 1e17 is confluent 006f 0301 0303 -> 031b 0303 -> 1e17
006f 0303 0302 -> 031b 0302 -> 1e69 is confluent 006f 0302 0303 -> 031b 0303 -> 1e69
006f 0303 0303 -> 031b 0303 -> 1e17 is confluent 006f 0303 0303 -> 031b 0303 -> 1e17
006f 0303 0304 -> 031b 0304 -> 1e69 is confluent 006f 0304 0303 -> 031b 0303 -> 1e69
006f 0303 0306 -> 031b 0306 -> 1e69 is confluent 006f 0306 0303 -> 031b 0303 -> 1e69
006f 0303 0307 -> 031b 0307 -> 1e69 is confluent 006f 0307 0303 -> 031b 0303 -> 1e69
006f 0303 0308 -> 031b 0308 -> 01d8 is confluent 006f 0308 0303 -> 031b 0303 -> 01d8
006f 0303 0309 -> 031b 0309 -> 1e17 is confluent 006f 0309 0303 -> 031b 0303 -> 1e17
006f 0303 030a -> 031b 030a -> 1e69 is not confluent
006f 0303 030c -> 031b 030c -> 1e17 is confluent 006f 030c 0303 -> 031b 0303 -> 1e17
006f 0303 031b -> 031b 031b -> 1ef1 is confluent 006f 031b 0303 -> 0308 0303 -> 1ef1
006f 0303 0323 -> 031b 0323 -> 1e69 is confluent 006f 0323 0303 -> 031b 0303 -> 1e69
006f 0303 0328 -> 031b 0328 -> 1ef1 is confluent 006f 0328 0303 -> 030c 0303 -> 1ef1
0075 0303 0300 -> 031b 0300 -> 1e17 is confluent 0075 0300 0303 -> 031b 0303 -> 1e17
0075 0303 0301 -> 031b 0301 -> 1e17 is confluent 0075 0301 0303 -> 031b 0303 -> 1e17
0075 0303 0302 -> 031b 0302 -> 1e69 is confluent 0075 0302 0303 -> 0323 0303 -> 1e69
0075 0303 0303 -> 031b 0303 -> 1e17 is confluent 0075 0303 0303 -> 031b 0303 -> 1e17
0075 0303 0304 -> 031b 0304 -> 1e69 is confluent 0075 0304 0303 -> 0323 0303 -> 1e69
0075 0303 0306 -> 031b 0306 -> 1e69 is confluent 0075 0306 0303 -> 0323 0303 -> 1e69
0075 0303 0307 -> 031b 0307 -> 1e69 is not confluent
0075 0303 0308 -> 031b 0308 -> 01d8 is confluent 0075 0308 0303 -> 0323 0303 -> 01d8
0075 0303 0309 -> 031b 0309 -> 1e17 is confluent 0075 0309 0303 -> 031b 0303 -> 1e17
0075 0303 030a -> 031b 030a -> 1e69 is confluent 0075 030a 0303 -> 031b 0303 -> 1e69
0075 0303 030c -> 031b 030c -> 1e17 is confluent 0075 030c 0303 -> 0323 0303 -> 1e17
0075 0303 031b -> 031b 031b -> 1ef1 is confluent 0075 031b 0303 -> 0323 0303 -> 1ef1
0075 0303 0323 -> 031b 0323 -> 1e69 is confluent 0075 0323 0303 -> 031b 0303 -> 1e69
0075 0303 0328 -> 031b 0328 -> 1ef1 is confluent 0075 0328 0303 -> 031b 0303 -> 1ef1
0041 0304 0300 -> 0308 0300 -> 1e67 is confluent 0041 0300 0304 -> 0323 0304 -> 1e67
0041 0304 0301 -> 0308 0301 -> 1e67 is confluent 0041 0301 0304 -> 0308 0304 -> 1e67
0041 0304 0302 -> 0308 0302 -> 1e67 is confluent 0041 0302 0304 -> 0323 0304 -> 1e67
0041 0304 0303 -> 0308 0303 -> 1e17 is confluent 0041 0303 0304 -> 0323 0304 -> 1e17
0041 0304 0304 -> 0308 0304 -> 1e67 is confluent 0041 0304 0304 -> 0308 0304 -> 1e67
0041 0304 0306 -> 0308 0306 -> 1e7b is confluent 0041 0306 0304 -> 0323 0304 -> 1e7b
0041 0304 0307 -> 0308 0307 -> 01e1 is confluent 0041 0307 0304 -> 0323 0304 -> 01e1
0041 0304 0308 -> 0308 0308 -> 01da is confluent 0041 0308 0304 -> 030a 0304 -> 01da
0041 0304 0309 -> 0308 0309 -> 1e17 is confluent 0041 0309 0304 -> 0323 0304 -> 1e17
0041 0304 030a -> 0308 030a -> 0231 is confluent 0041 030a 0304 -> 0323 0304 -> 0231
0041 0304 030c -> 0308 030c -> 1e7b is confluent 0041 030c 0304 -> 0323 0304 -> 1e7b
0041 0304 031b -> 0308 031b -> 1e7b is not confluent
0041 0304 0323 -> 0308 0323 -> 1ec7 is confluent 0041 0323 0304 -> 030a 0304 -> 1ec7
0041 0304 0327 -> 0308 0327 -> 1e69 is not confluent
0041 0304 0328 -> 0308 0328 -> 01ed is confluent 0041 0328 0304 -> 030a 0304 -> 01ed
0045 0304 0300 -> 0327 0300 -> 1e7b is confluent 0045 0300 0304 -> 0327 0304 -> 1e7b
0045 0304 0301 -> 0327 0301 -> 1e7b is confluent 0045 0301 0304 -> 0327 0304 -> 1e7b
0045 0304 0302 -> 0327 0302 -> 1e7b is confluent 0045 0302 0304 -> 0327 0304 -> 1e7b
0045 0304 0303 -> 0327 0303 -> 1e7b is confluent 0045 0303 0304 -> 0327 0304 -> 1e7b
0045 0304 0304 -> 0327 0304 -> 1e7b is confluent 0045 0304 0304 -> 0327 0304 -> 1e7b
0045 0304 0306 -> 0327 0306 -> 1e7b is confluent 0045 0306 0304 -> 0327 0304 -> 1e7b
0045 0304 0307 -> 0327 0307 -> 1e7b is confluent 0045 0307 0304 -> 0327 0304 -> 1e7b
0045 0304 0308 -> 0327 0308 -> 0231 is confluent 0045 0308 0304 -> 0327 0304 -> 0231
0045 0304 0309 -> 0327 0309 -> 1e7b is confluent 0045 0309 0304 -> 0327 0304 -> 1e7b
0045 0304 030c -> 0327 030c -> 1e7b is confluent 0045 030c 0304 -> 0327 0304 -> 1e7b
0045 0304 0323 -> 0327 0323 -> 1e7b is confluent 0045 0323 0304 -> 0327 0304 -> 1e7b
0045 0304 0327 -> 0327 0327 -> 1e1d is confluent 0045 0327 0304 -> 0328 0304 -> 1e1d
0045 0304 0328 -> 0327 0328 -> 1e7b is confluent 0045 0328 0304 -> 0327 0304 -> 1e7b
0049 0304 0300 -> 0323 0300 -> 01d8 is confluent 0049 0300 0304 -> 030c 0304 -> 01d8
0049 0304 0301 -> 0323 0301 -> 1e65 is confluent 0049 0301 0304 -> 0308 0304 -> 1e65
0049 0304 0302 -> 0323 0302 -> 1ef1 is confluent 0049 0302 0304 -> 0323 0304 -> 1ef1
0049 0304 0303 -> 0323 0303 -> 01d8 is confluent 0049 0303 0304 -> 0308 0304 -> 01d8
0049 0304 0304 -> 0323 0304 -> 1e7b is confluent 0049 0304 0304 -> 0323 0304 -> 1e7b
0049 0304 0306 -> 0323 0306 -> 1e7b is confluent 0049 0306 0304 -> 0323 0304 -> 1e7b
0049 0304 0307 -> 0323 0307 -> 1e7b is confluent 0049 0307 0304 -> 0323 0304 -> 1e7b
0049 0304 0308 -> 0323 0308 -> 1e7b is confluent 0049 0308 0304 -> 0328 0304 -> 1e7b
0049 0304 0309 -> 0323 0309 -> 01d8 is confluent 0049 0309 0304 -> 0308 0304 -> 01d8
0049 0304 030a -> 0323 030a -> 1e7b is not confluent
0049 0304 030c -> 0323 030c -> 1e67 is confluent 0049 030c 0304 -> 0308 0304 -> 1e67
0049 0304 031b -> 0323 031b -> 1e7b is not confluent
0049 0304 0323 -> 0323 0323 -> 1e69 is confluent 0049 0323 0304 -> 0308 0304 -> 1e69
0049 0304 0327 -> 0323 0327 -> 1e69 is not confluent
0049 0304 0328 -> 0323 0328 -> 1e7b is confluent 0049 0328 0304 -> 0323 0304 -> 1e7b
004f 0304 0300 -> 031b 0300 -> 1e17 is confluent 004f 0300 0304 -> 031b 0304 -> 1e17
004f 0304 0301 -> 031b 0301 -> 1e17 is confluent 004f 0301 0304 -> 031b 0304 -> 1e17
004f 0304 0302 -> 031b 0302 -> 1e69 is confluent 004f 0302 0304 -> 031b 0304 -> 1e69
004f 0304 0303 -> 031b 0303 -> 1e17 is confluent 004f 0303 0304 -> 031b 0304 -> 1e17
004f 0304 0304 -> 031b 0304 -> 1e69 is confluent 004f 0304 0304 -> 031b 0304 -> 1e69
004f 0304 0306 -> 031b 0306 -> 1e69 is confluent 004f 0306 0304 -> 031b 0304 -> 1e69
004f 0304 0307 -> 031b 0307 -> 1e69 is confluent 004f 0307 0304 -> 031b 0304 -> 1e69
004f 0304 0308 -> 031b 0308 -> 01d8 is confluent 004f 0308 0304 -> 031b 0304 -> 01d8
004f 0304 0309 -> 031b 0309 -> 1e17 is confluent 004f 0309 0304 -> 031b 0304 -> 1e17
004f 0304 030a -> 031b 030a -> 1e69 is not confluent
004f 0304 030c -> 031b 030c -> 1e17 is confluent 004f 030c 0304 -> 031b 0304 -> 1e17
004f 0304 031b -> 031b 031b -> 1ef1 is confluent 004f 031b 0304 -> 0308 0304 -> 1ef1
004f 0304 0323 -> 031b 0323 -> 1e69 is confluent 004f 0323 0304 -> 031b 0304 -> 1e69
004f 0304 0328 -> 031b 0328 -> 1ef1 is confluent 004f 0328 0304 -> 030c 0304 -> 1ef1
0055 0304 0300 -> 0323 0300 -> 01d8 is confluent 0055 0300 0304 -> 031b 0304 -> 01d8
0055 0304 0301 -> 0323 0301 -> 1e65 is confluent 0055 0301 0304 -> 031b 0304 -> 1e65
0055 0304 0302 -> 0323 0302 -> 1ef1 is confluent 0055 0302 0304 -> 0323 0304 -> 1ef1
0055 0304 0303 -> 0323 0303 -> 01d8 is confluent 0055 0303 0304 -> 031b 0304 -> 01d8
0055 0304 0304 -> 0323 0304 -> 1e7b is confluent 0055 0304 0304 -> 0323 0304 -> 1e7b
0055 0304 0306 -> 0323 0306 -> 1e7b is confluent 0055 0306 0304 -> 0323 0304 -> 1e7b
0055 0304 0307 -> 0323 0307 -> 1e7b is not confluent
0055 0304 0308 -> 0323 0308 -> 1e7b is confluent 0055 0308 0304 -> 0323 0304 -> 1e7b
0055 0304 0309 -> 0323 0309 -> 01d8 is confluent 0055 0309 0304 -> 031b 0304 -> 01d8
0055 0304 030a -> 0323 030a -> 1e7b is confluent 0055 030a 0304 -> 031b 0304 -> 1e7b
0055 0304 030c -> 0323 030c -> 1e67 is confluent 0055 030c 0304 -> 0323 0304 -> 1e67
0055 0304 031b -> 0323 031b -> 1e7b is confluent 0055 031b 0304 -> 0323 0304 -> 1e7b
0055 0304 0323 -> 0323 0323 -> 1e69 is confluent 0055 0323 0304 -> 031b 0304 -> 1e69
0055 0304 0327 -> 0323 0327 -> 1e69 is not confluent
0055 0304 0328 -> 0323 0328 -> 1e7b is confluent 0055 0328 0304 -> 031b 0304 -> 1e7b
0061 0304 0300 -> 0308 0300 -> 1e67 is confluent 0061 0300 0304 -> 0323 0304 -> 1e67
0061 0304 0301 -> 0308 0301 -> 1e67 is confluent 0061 0301 0304 -> 0308 0304 -> 1e67
0061 0304 0302 -> 0308 0302 -> 1e67 is confluent 0061 0302 0304 -> 0323 0304 -> 1e67
0061 0304 0303 -> 0308 0303 -> 1e17 is confluent 0061 0303 0304 -> 0323 0304 -> 1e17
0061 0304 0304 -> 0308 0304 -> 1e67 is confluent 0061 0304 0304 -> 0308 0304 -> 1e67
0061 0304 0306 -> 0308 0306 -> 1e7b is confluent 0061 0306 0304 -> 0323 0304 -> 1e7b
0061 0304 0307 -> 0308 0307 -> 01e1 is confluent 0061 0307 0304 -> 0323 0304 -> 01e1
0061 0304 0308 -> 0308 0308 -> 01da is confluent 0061 0308 0304 -> 030a 0304 -> 01da
0061 0304 0309 -> 0308 0309 -> 1e17 is confluent 0061 0309 0304 -> 0323 0304 -> 1e17
0061 0304 030a -> 0308 030a -> 0231 is confluent 0061 030a 0304 -> 0323 0304 -> 0231
0061 0304 030c -> 0308 030c -> 1e7b is confluent 0061 030c 0304 -> 0323 0304 -> 1e7b
0061 0304 031b -> 0308 031b -> 1e7b is not confluent
0061 0304 0323 -> 0308 0323 -> 1ec7 is confluent 0061 0323 0304 -> 030a 0304 -> 1ec7
0061 0304 0327 -> 0308 0327 -> 1e69 is not confluent
0061 0304 0328 -> 0308 0328 -> 01ed is confluent 0061 0328 0304 -> 030a 0304 -> 01ed
0065 0304 0300 -> 0327 0300 -> 1e7b is confluent 0065 0300 0304 -> 0327 0304 -> 1e7b
0065 0304 0301 -> 0327 0301 -> 1e7b is confluent 0065 0301 0304 -> 0327 0304 -> 1e7b
0065 0304 0302 -> 0327 0302 -> 1e7b is confluent 0065 0302 0304 -> 0327 0304 -> 1e7b
0065 0304 0303 -> 0327 0303 -> 1e7b is confluent 0065 0303 0304 -> 0327 0304 -> 1e7b
0065 0304 0304 -> 0327 0304 -> 1e7b is confluent 0065 0304 0304 -> 0327 0304 -> 1e7b
0065 0304 0306 -> 0327 0306 -> 1e7b is confluent 0065 0306 0304 -> 0327 0304 -> 1e7b
0065 0304 0307 -> 0327 0307 -> 1e7b is confluent 0065 0307 0304 -> 0327 0304 -> 1e7b
0065 0304 0308 -> 0327 0308 -> 0231 is confluent 0065 0308 0304 -> 0327 0304 -> 0231
0065 0304 0309 -> 0327 0309 -> 1e7b is confluent 0065 0309 0304 -> 0327 0304 -> 1e7b
0065 0304 030c -> 0327 030c -> 1e7b is confluent 0065 030c 0304 -> 0327 0304 -> 1e7b
0065 0304 0323 -> 0327 0323 -> 1e7b is confluent 0065 0323 0304 -> 0327 0304 -> 1e7b
0065 0304 0327 -> 0327 0327 -> 1e1d is confluent 0065 0327 0304 -> 0328 0304 -> 1e1d
0065 0304 0328 -> 0327 0328 -> 1e7b is confluent 0065 0328 0304 -> 0327 0304 -> 1e7b
0069 0304 0300 -> 0323 0300 -> 01d8 is confluent 0069 0300 0304 -> 030c 0304 -> 01d8
0069 0304 0301 -> 0323 0301 -> 1e65 is confluent 0069 0301 0304 -> 0308 0304 -> 1e65
0069 0304 0302 -> 0323 0302 -> 1ef1 is confluent 0069 0302 0304 -> 0323 0304 -> 1ef1
0069 0304 0303 -> 0323 0303 -> 01d8 is confluent 0069 0303 0304 -> 0308 0304 -> 01d8
0069 0304 0304 -> 0323 0304 -> 1e7b is confluent 0069 0304 0304 -> 0323 0304 -> 1e7b
0069 0304 0306 -> 0323 0306 -> 1e7b is confluent 0069 0306 0304 -> 0323 0304 -> 1e7b
0069 0304 0307 -> 0323 0307 -> 1e7b is not confluent
0069 0304 0308 -> 0323 0308 -> 1e7b is confluent 0069 0308 0304 -> 0328 0304 -> 1e7b
0069 0304 0309 -> 0323 0309 -> 01d8 is confluent 0069 0309 0304 -> 0308 0304 -> 01d8
0069 0304 030a -> 0323 030a -> 1e7b is not confluent
0069 0304 030c -> 0323 030c -> 1e67 is confluent 0069 030c 0304 -> 0308 0304 -> 1e67
0069 0304 031b -> 0323 031b -> 1e7b is not confluent
0069 0304 0323 -> 0323 0323 -> 1e69 is confluent 0069 0323 0304 -> 0308 0304 -> 1e69
0069 0304 0327 -> 0323 0327 -> 1e69 is not confluent
0069 0304 0328 -> 0323 0328 -> 1e7b is confluent 0069 0328 0304 -> 0323 0304 -> 1e7b
006f 0304 0300 -> 031b 0300 -> 1e17 is confluent 006f 0300 0304 -> 031b 0304 -> 1e17
006f 0304 0301 -> 031b 0301 -> 1e17 is confluent 006f 0301 0304 -> 031b 0304 -> 1e17
006f 0304 0302 -> 031b 0302 -> 1e69 is confluent 006f 0302 0304 -> 031b 0304 -> 1e69
006f 0304 0303 -> 031b 0303 -> 1e17 is confluent 006f 0303 0304 -> 031b 0304 -> 1e17
006f 0304 0304 -> 031b 0304 -> 1e69 is confluent 006f 0304 0304 -> 031b 0304 -> 1e69
006f 0304 0306 -> 031b 0306 -> 1e69 is confluent 006f 0306 0304 -> 031b 0304 -> 1e69
006f 0304 0307 -> 031b 0307 -> 1e69 is confluent 006f 0307 0304 -> 031b 0304 -> 1e69
006f 0304 0308 -> 031b 0308 -> 01d8 is confluent 006f 0308 0304 -> 031b 0304 -> 01d8
006f 0304 0309 -> 031b 0309 -> 1e17 is confluent 006f 0309 0304 -> 031b 0304 -> 1e17
006f 0304 030a -> 031b 030a -> 1e69 is not confluent
006f 0304 030c -> 031b 030c -> 1e17 is confluent 006f 030c 0304 -> 031b 0304 -> 1e17
006f 0304 031b -> 031b 031b -> 1ef1 is confluent 006f 031b 0304 -> 0308 0304 -> 1ef1
006f 0304 0323 -> 031b 0323 -> 1e69 is confluent 006f 0323 0304 -> 031b 0304 -> 1e69
006f 0304 0328 -> 031b 0328 -> 1ef1 is confluent 006f 0328 0304 -> 030c 0304 -> 1ef1
0075 0304 0300 -> 0323 0300 -> 01d8 is confluent 0075 0300 0304 -> 031b 0304 -> 01d8
0075 0304 0301 -> 0323 0301 -> 1e65 is confluent 0075 0301 0304 -> 031b 0304 -> 1e65
0075 0304 0302 -> 0323 0302 -> 1ef1 is confluent 0075 0302 0304 -> 0323 0304 -> 1ef1
0075 0304 0303 -> 0323 0303 -> 01d8 is confluent 0075 0303 0304 -> 031b 0304 -> 01d8
0075 0304 0304 -> 0323 0304 -> 1e7b is confluent 0075 0304 0304 -> 0323 0304 -> 1e7b
0075 0304 0306 -> 0323 0306 -> 1e7b is confluent 0075 0306 0304 -> 0323 0304 -> 1e7b
0075 0304 0307 -> 0323 0307 -> 1e7b is not confluent
0075 0304 0308 -> 0323 0308 -> 1e7b is confluent 0075 0308 0304 -> 0323 0304 -> 1e7b
0075 0304 0309 -> 0323 0309 -> 01d8 is confluent 0075 0309 0304 -> 031b 0304 -> 01d8
0075 0304 030a -> 0323 030a -> 1e7b is confluent 0075 030a 0304 -> 031b 0304 -> 1e7b
0075 0304 030c -> 0323 030c -> 1e67 is confluent 0075 030c 0304 -> 0323 0304 -> 1e67
0075 0304 031b -> 0323 031b -> 1e7b is confluent 0075 031b 0304 -> 0323 0304 -> 1e7b
0075 0304 0323 -> 0323 0323 -> 1e69 is confluent 0075 0323 0304 -> 031b 0304 -> 1e69
0075 0304 0327 -> 0323 0327 -> 1e69 is not confluent
0075 0304 0328 -> 0323 0328 -> 1e7b is confluent 0075 0328 0304 -> 031b 0304 -> 1e7b
0041 0306 0300 -> 0323 0300 -> 01d8 is confluent 0041 0300 0306 -> 0323 0306 -> 01d8
0041 0306 0301 -> 0323 0301 -> 1e65 is confluent 0041 0301 0306 -> 0308 0306 -> 1e65
0041 0306 0302 -> 0323 0302 -> 1ef1 is confluent 0041 0302 0306 -> 0323 0306 -> 1ef1
0041 0306 0303 -> 0323 0303 -> 01d8 is confluent 0041 0303 0306 -> 0323 0306 -> 01d8
0041 0306 0304 -> 0323 0304 -> 1e7b is confluent 0041 0304 0306 -> 0308 0306 -> 1e7b
0041 0306 0306 -> 0323 0306 -> 1e7b is confluent 0041 0306 0306 -> 0323 0306 -> 1e7b
0041 0306 0307 -> 0323 0307 -> 1e7b is confluent 0041 0307 0306 -> 0323 0306 -> 1e7b
0041 0306 0308 -> 0323 0308 -> 1e7b is confluent 0041 0308 0306 -> 030a 0306 -> 1e7b
0041 0306 0309 -> 0323 0309 -> 01d8 is confluent 0041 0309 0306 -> 0323 0306 -> 01d8
0041 0306 030a -> 0323 030a -> 1e7b is confluent 0041 030a 0306 -> 0323 0306 -> 1e7b
0041 0306 030c -> 0323 030c -> 1e67 is confluent 0041 030c 0306 -> 0323 0306 -> 1e67
0041 0306 031b -> 0323 031b -> 1e7b is not confluent
0041 0306 0323 -> 0323 0323 -> 1e69 is confluent 0041 0323 0306 -> 030a 0306 -> 1e69
0041 0306 0327 -> 0323 0327 -> 1e69 is not confluent
0041 0306 0328 -> 0323 0328 -> 1e7b is confluent 0041 0328 0306 -> 030a 0306 -> 1e7b
0045 0306 0300 -> 0327 0300 -> 1e7b is confluent 0045 0300 0306 -> 0327 0306 -> 1e7b
0045 0306 0301 -> 0327 0301 -> 1e7b is confluent 0045 0301 0306 -> 0327 0306 -> 1e7b
0045 0306 0302 -> 0327 0302 -> 1e7b is confluent 0045 0302 0306 -> 0327 0306 -> 1e7b
0045 0306 0303 -> 0327 0303 -> 1e7b is confluent 0045 0303 0306 -> 0327 0306 -> 1e7b
0045 0306 0304 -> 0327 0304 -> 1e7b is confluent 0045 0304 0306 -> 0327 0306 -> 1e7b
0045 0306 0306 -> 0327 0306 -> 1e7b is confluent 0045 0306 0306 -> 0327 0306 -> 1e7b
0045 0306 0307 -> 0327 0307 -> 1e7b is confluent 0045 0307 0306 -> 0327 0306 -> 1e7b
0045 0306 0308 -> 0327 0308 -> 0231 is confluent 0045 0308 0306 -> 0327 0306 -> 0231
0045 0306 0309 -> 0327 0309 -> 1e7b is confluent 0045 0309 0306 -> 0327 0306 -> 1e7b
0045 0306 030c -> 0327 030c -> 1e7b is confluent 0045 030c 0306 -> 0327 0306 -> 1e7b
0045 0306 0323 -> 0327 0323 -> 1e7b is confluent 0045 0323 0306 -> 0327 0306 -> 1e7b
0045 0306 0327 -> 0327 0327 -> 1e1d is confluent 0045 0327 0306 -> 0328 0306 -> 1e1d
0045 0306 0328 -> 0327 0328 -> 1e7b is confluent 0045 0328 0306 -> 0327 0306 -> 1e7b
0049 0306 0300 -> 0323 0300 -> 01d8 is confluent 0049 0300 0306 -> 030c 0306 -> 01d8
0049 0306 0301 -> 0323 0301 -> 1e65 is confluent 0049 0301 0306 -> 0308 0306 -> 1e65
0049 0306 0302 -> 0323 0302 -> 1ef1 is confluent 0049 0302 0306 -> 0323 0306 -> 1ef1
0049 0306 0303 -> 0323 0303 -> 01d8 is confluent 0049 0303 0306 -> 0308 0306 -> 01d8
0049 0306 0304 -> 0323 0304 -> 1e7b is confluent 0049 0304 0306 -> 0323 0306 -> 1e7b
0049 0306 0306 -> 0323 0306 -> 1e7b is confluent 0049 0306 0306 -> 0323 0306 -> 1e7b
0049 0306 0307 -> 0323 0307 -> 1e7b is confluent 0049 0307 0306 -> 0323 0306 -> 1e7b
0049 0306 0308 -> 0323 0308 -> 1e7b is confluent 0049 0308 0306 -> 0328 0306 -> 1e7b
0049 0306 0309 -> 0323 0309 -> 01d8 is confluent 0049 0309 0306 -> 0308 0306 -> 01d8
0049 0306 030a -> 0323 030a -> 1e7b is not confluent
0049 0306 030c -> 0323 030c -> 1e67 is confluent 0049 030c 0306 -> 0308 0306 -> 1e67
0049 0306 031b -> 0323 031b -> 1e7b is not confluent
0049 0306 0323 -> 0323 0323 -> 1e69 is confluent 0049 0323 0306 -> 0308 0306 -> 1e69
0049 0306 0327 -> 0323 0327 -> 1e69 is not confluent
0049 0306 0328 -> 0323 0328 -> 1e7b is confluent 0049 0328 0306 -> 0323 0306 -> 1e7b
004f 0306 0300 -> 031b 0300 -> 1e17 is confluent 004f 0300 0306 -> 031b 0306 -> 1e17
004f 0306 0301 -> 031b 0301 -> 1e17 is confluent 004f 0301 0306 -> 031b 0306 -> 1e17
004f 0306 0302 -> 031b 0302 -> 1e69 is confluent 004f 0302 0306 -> 031b 0306 -> 1e69
004f 0306 0303 -> 031b 0303 -> 1e17 is confluent 004f 0303 0306 -> 031b 0306 -> 1e17
004f 0306 0304 -> 031b 0304 -> 1e69 is confluent 004f 0304 0306 -> 031b 0306 -> 1e69
004f 0306 0306 -> 031b 0306 -> 1e69 is confluent 004f 0306 0306 -> 031b 0306 -> 1e69
004f 0306 0307 -> 031b 0307 -> 1e69 is confluent 004f 0307 0306 -> 031b 0306 -> 1e69
004f 0306 0308 -> 031b 0308 -> 01d8 is confluent 004f 0308 0306 -> 031b 0306 -> 01d8
004f 0306 0309 -> 031b 0309 -> 1e17 is confluent 004f 0309 0306 -> 031b 0306 -> 1e17
004f 0306 030a -> 031b 030a -> 1e69 is not confluent
004f 0306 030c -> 031b 030c -> 1e17 is confluent 004f 030c 0306 -> 031b 0306 -> 1e17
004f 0306 031b -> 031b 031b -> 1ef1 is confluent 004f 031b 0306 -> 0308 0306 -> 1ef1
004f 0306 0323 -> 031b 0323 -> 1e69 is confluent 004f 0323 0306 -> 031b 0306 -> 1e69
004f 0306 0328 -> 031b 0328 -> 1ef1 is confluent 004f 0328 0306 -> 030c 0306 -> 1ef1
0055 0306 0300 -> 0323 0300 -> 01d8 is confluent 0055 0300 0306 -> 031b 0306 -> 01d8
0055 0306 0301 -> 0323 0301 -> 1e65 is confluent 0055 0301 0306 -> 031b 0306 -> 1e65
0055 0306 0302 -> 0323 0302 -> 1ef1 is confluent 0055 0302 0306 -> 0323 0306 -> 1ef1
0055 0306 0303 -> 0323 0303 -> 01d8 is confluent 0055 0303 0306 -> 031b 0306 -> 01d8
0055 0306 0304 -> 0323 0304 -> 1e7b is confluent 0055 0304 0306 -> 0323 0306 -> 1e7b
0055 0306 0306 -> 0323 0306 -> 1e7b is confluent 0055 0306 0306 -> 0323 0306 -> 1e7b
0055 0306 0307 -> 0323 0307 -> 1e7b is not confluent
0055 0306 0308 -> 0323 0308 -> 1e7b is confluent 0055 0308 0306 -> 0323 0306 -> 1e7b
0055 0306 0309 -> 0323 0309 -> 01d8 is confluent 0055 0309 0306 -> 031b 0306 -> 01d8
0055 0306 030a -> 0323 030a -> 1e7b is confluent 0055 030a 0306 -> 031b 0306 -> 1e7b
0055 0306 030c -> 0323 030c -> 1e67 is confluent 0055 030c 0306 -> 0323 0306 -> 1e67
0055 0306 031b -> 0323 031b -> 1e7b is confluent 0055 031b 0306 -> 0323 0306 -> 1e7b
0055 0306 0323 -> 0323 0323 -> 1e69 is confluent 0055 0323 0306 -> 031b 0306 -> 1e69
0055 0306 0327 -> 0323 0327 -> 1e69 is not confluent
0055 0306 0328 -> 0323 0328 -> 1e7b is confluent 0055 0328 0306 -> 031b 0306 -> 1e7b
0061 0306 0300 -> 0323 0300 -> 01d8 is confluent 0061 0300 0306 -> 0323 0306 -> 01d8
0061 0306 0301 -> 0323 0301 -> 1e65 is confluent 0061 0301 0306 -> 0308 0306 -> 1e65
0061 0306 0302 -> 0323 0302 -> 1ef1 is confluent 0061 0302 0306 -> 0323 0306 -> 1ef1
0061 0306 0303 -> 0323 0303 -> 01d8 is confluent 0061 0303 0306 -> 0323 0306 -> 01d8
0061 0306 0304 -> 0323 0304 -> 1e7b is confluent 0061 0304 0306 -> 0308 0306 -> 1e7b
0061 0306 0306 -> 0323 0306 -> 1e7b is confluent 0061 0306 0306 -> 0323 0306 -> 1e7b
0061 0306 0307 -> 0323 0307 -> 1e7b is confluent 0061 0307 0306 -> 0323 0306 -> 1e7b
0061 0306 0308 -> 0323 0308 -> 1e7b is confluent 0061 0308 0306 -> 030a 0306 -> 1e7b
0061 0306 0309 -> 0323 0309 -> 01d8 is confluent 0061 0309 0306 -> 0323 0306 -> 01d8
0061 0306 030a -> 0323 030a -> 1e7b is confluent 0061 030a 0306 -> 0323 0306 -> 1e7b
0061 0306 030c -> 0323 030c -> 1e67 is confluent 0061 030c 0306 -> 0323 0306 -> 1e67
0061 0306 031b -> 0323 031b -> 1e7b is not confluent
0061 0306 0323 -> 0323 0323 -> 1e69 is confluent 0061 0323 0306 -> 030a 0306 -> 1e69
0061 0306 0327 -> 0323 0327 -> 1e69 is not confluent
0061 0306 0328 -> 0323 0328 -> 1e7b is confluent 0061 0328 0306 -> 030a 0306 -> 1e7b
0065 0306 0300 -> 0327 0300 -> 1e7b is confluent 0065 0300 0306 -> 0327 0306 -> 1e7b
0065 0306 0301 -> 0327 0301 -> 1e7b is confluent 0065 0301 0306 -> 0327 0306 -> 1e7b
0065 0306 0302 -> 0327 0302 -> 1e7b is confluent 0065 0302 0306 -> 0327 0306 -> 1e7b
0065 0306 0303 -> 0327 0303 -> 1e7b is confluent 0065 0303 0306 -> 0327 0306 -> 1e7b
0065 0306 0304 -> 0327 0304 -> 1e7b is confluent 0065 0304 0306 -> 0327 0306 -> 1e7b
0065 0306 0306 -> 0327 0306 -> 1e7b is confluent 0065 0306 0306 -> 0327 0306 -> 1e7b
0065 0306 0307 -> 0327 0307 -> 1e7b is confluent 0065 0307 0306 -> 0327 0306 -> 1e7b
0065 0306 0308 -> 0327 0308 -> 0231 is confluent 0065 0308 0306 -> 0327 0306 -> 0231
0065 0306 0309 -> 0327 0309 -> 1e7b is confluent 0065 0309 0306 -> 0327 0306 -> 1e7b
0065 0306 030c -> 0327 030c -> 1e7b is confluent 0065 030c 0306 -> 0327 0306 -> 1e7b
0065 0306 0323 -> 0327 0323 -> 1e7b is confluent 0065 0323 0306 -> 0327 0306 -> 1e7b
0065 0306 0327 -> 0327 0327 -> 1e1d is confluent 0065 0327 0306 -> 0328 0306 -> 1e1d
0065 0306 0328 -> 0327 0328 -> 1e7b is confluent 0065 0328 0306 -> 0327 0306 -> 1e7b
0069 0306 0300 -> 0323 0300 -> 01d8 is confluent 0069 0300 0306 -> 030c 0306 -> 01d8
0069 0306 0301 -> 0323 0301 -> 1e65 is confluent 0069 0301 0306 -> 0308 0306 -> 1e65
0069 0306 0302 -> 0323 0302 -> 1ef1 is confluent 0069 0302 0306 -> 0323 0306 -> 1ef1
0069 0306 0303 -> 0323 0303 -> 01d8 is confluent 0069 0303 0306 -> 0308 0306 -> 01d8
0069 0306 0304 -> 0323 0304 -> 1e7b is confluent 0069 0304 0306 -> 0323 0306 -> 1e7b
0069 0306 0306 -> 0323 0306 -> 1e7b is confluent 0069 0306 0306 -> 0323 0306 -> 1e7b
0069 0306 0307 -> 0323 0307 -> 1e7b is not confluent
0069 0306 0308 -> 0323 0308 -> 1e7b is confluent 0069 0308 0306 -> 0328 0306 -> 1e7b
0069 0306 0309 -> 0323 0309 -> 01d8 is confluent 0069 0309 0306 -> 0308 0306 -> 01d8
0069 0306 030a -> 0323 030a -> 1e7b is not confluent
0069 0306 030c -> 0323 030c -> 1e67 is confluent 0069 030c 0306 -> 0308 0306 -> 1e67
0069 0306 031b -> 0323 031b -> 1e7b is not confluent
0069 0306 0323 -> 0323 0323 -> 1e69 is confluent 0069 0323 0306 -> 0308 0306 -> 1e69
0069 0306 0327 -> 0323 0327 -> 1e69 is not confluent
0069 0306 0328 -> 0323 0328 -> 1e7b is confluent 0069 0328 0306 -> 0323 0306 -> 1e7b
006f 0306 0300 -> 031b 0300 -> 1e17 is confluent 006f 0300 0306 -> 031b 0306 -> 1e17
006f 0306 0301 -> 031b 0301 -> 1e17 is confluent 006f 0301 0306 -> 031b 0306 -> 1e17
006f 0306 0302 -> 031b 0302 -> 1e69 is confluent 006f 0302 0306 -> 031b 0306 -> 1e69
006f 0306 0303 -> 031b 0303 -> 1e17 is confluent 006f 0303 0306 -> 031b 0306 -> 1e17
006f 0306 0304 -> 031b 0304 -> 1e69 is confluent 006f 0304 0306 -> 031b 0306 -> 1e69
006f 0306 0306 -> 031b 0306 -> 1e69 is confluent 006f 0306 0306 -> 031b 0306 -> 1e69
006f 0306 0307 -> 031b 0307 -> 1e69 is confluent 006f 0307 0306 -> 031b 0306 -> 1e69
006f 0306 0308 -> 031b 0308 -> 01d8 is confluent 006f 0308 0306 -> 031b 0306 -> 01d8
006f 0306 0309 -> 031b 0309 -> 1e17 is confluent 006f 0309 0306 -> 031b 0306 -> 1e17
006f 0306 030a -> 031b 030a -> 1e69 is not confluent
006f 0306 030c -> 031b 030c -> 1e17 is confluent 006f 030c 0306 -> 031b 0306 -> 1e17
006f 0306 031b -> 031b 031b -> 1ef1 is confluent 006f 031b 0306 -> 0308 0306 -> 1ef1
006f 0306 0323 -> 031b 0323 -> 1e69 is confluent 006f 0323 0306 -> 031b 0306 -> 1e69
006f 0306 0328 -> 031b 0328 -> 1ef1 is confluent 006f 0328 0306 -> 030c 0306 -> 1ef1
0075 0306 0300 -> 0323 0300 -> 01d8 is confluent 0075 0300 0306 -> 031b 0306 -> 01d8
0075 0306 0301 -> 0323 0301 -> 1e65 is confluent 0075 0301 0306 -> 031b 0306 -> 1e65
0075 0306 0302 -> 0323 0302 -> 1ef1 is confluent 0075 0302 0306 -> 0323 0306 -> 1ef1
0075 0306 0303 -> 0323 0303 -> 01d8 is confluent 0075 0303 0306 -> 031b 0306 -> 01d8
0075 0306 0304 -> 0323 0304 -> 1e7b is confluent 0075 0304 0306 -> 0323 0306 -> 1e7b
0075 0306 0306 -> 0323 0306 -> 1e7b is confluent 0075 0306 0306 -> 0323 0306 -> 1e7b
0075 0306 0307 -> 0323 0307 -> 1e7b is not confluent
0075 0306 0308 -> 0323 0308 -> 1e7b is confluent 0075 0308 0306 -> 0323 0306 -> 1e7b
0075 0306 0309 -> 0323 0309 -> 01d8 is confluent 0075 0309 0306 -> 031b 0306 -> 01d8
0075 0306 030a -> 0323 030a -> 1e7b is confluent 0075 030a 0306 -> 031b 0306 -> 1e7b
0075 0306 030c -> 0323 030c -> 1e67 is confluent 0075 030c 0306 -> 0323 0306 -> 1e67
0075 0306 031b -> 0323 031b -> 1e7b is confluent 0075 031b 0306 -> 0323 0306 -> 1e7b
0075 0306 0323 -> 0323 0323 -> 1e69 is confluent 0075 0323 0306 -> 031b 0306 -> 1e69
0075 0306 0327 -> 0323 0327 -> 1e69 is not confluent
0075 0306 0328 -> 0323 0328 -> 1e7b is confluent 0075 0328 0306 -> 031b 0306 -> 1e7b
0041 0307 0300 -> 0323 0300 -> 01d8 is confluent 0041 0300 0307 -> 0323 0307 -> 01d8
0041 0307 0301 -> 0323 0301 -> 1e65 is confluent 0041 0301 0307 -> 0308 0307 -> 1e65
0041 0307 0302 -> 0323 0302 -> 1ef1 is confluent 0041 0302 0307 -> 0323 0307 -> 1ef1
0041 0307 0303 -> 0323 0303 -> 01d8 is confluent 0041 0303 0307 -> 0323 0307 -> 01d8
0041 0307 0304 -> 0323 0304 -> 1e7b is confluent 0041 0304 0307 -> 0308 0307 -> 1e7b
0041 0307 0306 -> 0323 0306 -> 1e7b is confluent 0041 0306 0307 -> 0323 0307 -> 1e7b
0041 0307 0307 -> 0323 0307 -> 1e7b is confluent 0041 0307 0307 -> 0323 0307 -> 1e7b
0041 0307 0308 -> 0323 0308 -> 1e7b is confluent 0041 0308 0307 -> 030a 0307 -> 1e7b
0041 0307 0309 -> 0323 0309 -> 01d8 is confluent 0041 0309 0307 -> 0323 0307 -> 01d8
0041 0307 030a -> 0323 030a -> 1e7b is confluent 0041 030a 0307 -> 0323 0307 -> 1e7b
0041 0307 030c -> 0323 030c -> 1e67 is confluent 0041 030c 0307 -> 0323 0307 -> 1e67
0041 0307 031b -> 0323 031b -> 1e7b is not confluent
0041 0307 0323 -> 0323 0323 -> 1e69 is confluent 0041 0323 0307 -> 030a 0307 -> 1e69
0041 0307 0327 -> 0323 0327 -> 1e69 is not confluent
0041 0307 0328 -> 0323 0328 -> 1e7b is confluent 0041 0328 0307 -> 030a 0307 -> 1e7b
0043 0307 0300 -> 0327 0300 -> 1e7b is not confluent
0043 0307 0301 -> 0327 0301 -> 1e7b is confluent 0043 0301 0307 -> 0327 0307 -> 1e7b
0043 0307 0302 -> 0327 0302 -> 1e7b is confluent 0043 0302 0307 -> 0327 0307 -> 1e7b
0043 0307 0303 -> 0327 0303 -> 1e7b is not confluent
0043 0307 0304 -> 0327 0304 -> 1e7b is not confluent
0043 0307 0306 -> 0327 0306 -> 1e7b is not confluent
0043 0307 0307 -> 0327 0307 -> 1e7b is confluent 0043 0307 0307 -> 0327 0307 -> 1e7b
0043 0307 0308 -> 0327 0308 -> 0231 is not confluent
0043 0307 0309 -> 0327 0309 -> 1e7b is not confluent
0043 0307 030c -> 0327 030c -> 1e7b is confluent 0043 030c 0307 -> 0302 0307 -> 1e7b
0043 0307 0323 -> 0327 0323 -> 1e7b is not confluent
0043 0307 0327 -> 0327 0327 -> 1e1d is confluent 0043 0327 0307 -> 030c 0307 -> 1e1d
0043 0307 0328 -> 0327 0328 -> 1e7b is not confluent
0045 0307 0300 -> 0327 0300 -> 1e7b is confluent 0045 0300 0307 -> 0327 0307 -> 1e7b
0045 0307 0301 -> 0327 0301 -> 1e7b is confluent 0045 0301 0307 -> 0327 0307 -> 1e7b
0045 0307 0302 -> 0327 0302 -> 1e7b is confluent 0045 0302 0307 -> 0327 0307 -> 1e7b
0045 0307 0303 -> 0327 0303 -> 1e7b is confluent 0045 0303 0307 -> 0327 0307 -> 1e7b
0045 0307 0304 -> 0327 0304 -> 1e7b is confluent 0045 0304 0307 -> 0327 0307 -> 1e7b
0045 0307 0306 -> 0327 0306 -> 1e7b is confluent 0045 0306 0307 -> 0327 0307 -> 1e7b
0045 0307 0307 -> 0327 0307 -> 1e7b is confluent 0045 0307 0307 -> 0327 0307 -> 1e7b
0045 0307 0308 -> 0327 0308 -> 0231 is confluent 0045 0308 0307 -> 0327 0307 -> 0231
0045 0307 0309 -> 0327 0309 -> 1e7b is confluent 0045 0309 0307 -> 0327 0307 -> 1e7b
0045 0307 030c -> 0327 030c -> 1e7b is confluent 0045 030c 0307 -> 0327 0307 -> 1e7b
0045 0307 0323 -> 0327 0323 -> 1e7b is confluent 0045 0323 0307 -> 0327 0307 -> 1e7b
0045 0307 0327 -> 0327 0327 -> 1e1d is confluent 0045 0327 0307 -> 0328 0307 -> 1e1d
0045 0307 0328 -> 0327 0328 -> 1e7b is confluent 0045 0328 0307 -> 0327 0307 -> 1e7b
0049 0307 0300 -> 0323 0300 -> 01d8 is confluent 0049 0300 0307 -> 030c 0307 -> 01d8
0049 0307 0301 -> 0323 0301 -> 1e65 is confluent 0049 0301 0307 -> 0308 0307 -> 1e65
0049 0307 0302 -> 0323 0302 -> 1ef1 is confluent 0049 0302 0307 -> 0323 0307 -> 1ef1
0049 0307 0303 -> 0323 0303 -> 01d8 is confluent 0049 0303 0307 -> 0308 0307 -> 01d8
0049 0307 0304 -> 0323 0304 -> 1e7b is confluent 0049 0304 0307 -> 0323 0307 -> 1e7b
0049 0307 0306 -> 0323 0306 -> 1e7b is confluent 0049 0306 0307 -> 0323 0307 -> 1e7b
0049 0307 0307 -> 0323 0307 -> 1e7b is confluent 0049 0307 0307 -> 0323 0307 -> 1e7b
0049 0307 0308 -> 0323 0308 -> 1e7b is confluent 0049 0308 0307 -> 0328 0307 -> 1e7b
0049 0307 0309 -> 0323 0309 -> 01d8 is confluent 0049 0309 0307 -> 0308 0307 -> 01d8
0049 0307 030a -> 0323 030a -> 1e7b is not confluent
0049 0307 030c -> 0323 030c -> 1e67 is confluent 0049 030c 0307 -> 0308 0307 -> 1e67
0049 0307 031b -> 0323 031b -> 1e7b is not confluent
0049 0307 0323 -> 0323 0323 -> 1e69 is confluent 0049 0323 0307 -> 0308 0307 -> 1e69
0049 0307 0327 -> 0323 0327 -> 1e69 is not confluent
0049 0307 0328 -> 0323 0328 -> 1e7b is confluent 0049 0328 0307 -> 0323 0307 -> 1e7b
004f 0307 0300 -> 031b 0300 -> 1e17 is confluent 004f 0300 0307 -> 031b 0307 -> 1e17
004f 0307 0301 -> 031b 0301 -> 1e17 is confluent 004f 0301 0307 -> 031b 0307 -> 1e17
004f 0307 0302 -> 031b 0302 -> 1e69 is confluent 004f 0302 0307 -> 031b 0307 -> 1e69
004f 0307 0303 -> 031b 0303 -> 1e17 is confluent 004f 0303 0307 -> 031b 0307 -> 1e17
004f 0307 0304 -> 031b 0304 -> 1e69 is confluent 004f 0304 0307 -> 031b 0307 -> 1e69
004f 0307 0306 -> 031b 0306 -> 1e69 is confluent 004f 0306 0307 -> 031b 0307 -> 1e69
004f 0307 0307 -> 031b 0307 -> 1e69 is confluent 004f 0307 0307 -> 031b 0307 -> 1e69
004f 0307 0308 -> 031b 0308 -> 01d8 is confluent 004f 0308 0307 -> 031b 0307 -> 01d8
004f 0307 0309 -> 031b 0309 -> 1e17 is confluent 004f 0309 0307 -> 031b 0307 -> 1e17
004f 0307 030a -> 031b 030a -> 1e69 is not confluent
004f 0307 030c -> 031b 030c -> 1e17 is confluent 004f 030c 0307 -> 031b 0307 -> 1e17
004f 0307 031b -> 031b 031b -> 1ef1 is confluent 004f 031b 0307 -> 0308 0307 -> 1ef1
004f 0307 0323 -> 031b 0323 -> 1e69 is confluent 004f 0323 0307 -> 031b 0307 -> 1e69
004f 0307 0328 -> 031b 0328 -> 1ef1 is confluent 004f 0328 0307 -> 030c 0307 -> 1ef1
0053 0307 0300 -> 0323 0300 -> 01d8 is not confluent
0053 0307 0301 -> 0323 0301 -> 1e65 is confluent 0053 0301 0307 -> 0327 0307 -> 1e65
0053 0307 0302 -> 0323 0302 -> 1ef1 is confluent 0053 0302 0307 -> 0327 0307 -> 1ef1
0053 0307 0303 -> 0323 0303 -> 01d8 is not confluent
0053 0307 0304 -> 0323 0304 -> 1e7b is not confluent
0053 0307 0306 -> 0323 0306 -> 1e7b is not confluent
0053 0307 0307 -> 0323 0307 -> 1e7b is confluent 0053 0307 0307 -> 0323 0307 -> 1e7b
0053 0307 0308 -> 0323 0308 -> 1e7b is not confluent
0053 0307 0309 -> 0323 0309 -> 01d8 is not confluent
0053 0307 030a -> 0323 030a -> 1e7b is not confluent
0053 0307 030c -> 0323 030c -> 1e67 is confluent 0053 030c 0307 -> 0327 0307 -> 1e67
0053 0307 031b -> 0323 031b -> 1e7b is not confluent
0053 0307 0323 -> 0323 0323 -> 1e69 is confluent 0053 0323 0307 -> 0327 0307 -> 1e69
0053 0307 0327 -> 0323 0327 -> 1e69 is confluent 0053 0327 0307 -> 0307 0307 -> 1e69
0053 0307 0328 -> 0323 0328 -> 1e7b is not confluent
0061 0307 0300 -> 0323 0300 -> 01d8 is confluent 0061 0300 0307 -> 0323 0307 -> 01d8
0061 0307 0301 -> 0323 0301 -> 1e65 is confluent 0061 0301 0307 -> 0308 0307 -> 1e65
0061 0307 0302 -> 0323 0302 -> 1ef1 is confluent 0061 0302 0307 -> 0323 0307 -> 1ef1
0061 0307 0303 -> 0323 0303 -> 01d8 is confluent 0061 0303 0307 -> 0323 0307 -> 01d8
0061 0307 0304 -> 0323 0304 -> 1e7b is confluent 0061 0304 0307 -> 0308 0307 -> 1e7b
0061 0307 0306 -> 0323 0306 -> 1e7b is confluent 0061 0306 0307 -> 0323 0307 -> 1e7b
0061 0307 0307 -> 0323 0307 -> 1e7b is confluent 0061 0307 0307 -> 0323 0307 -> 1e7b
0061 0307 0308 -> 0323 0308 -> 1e7b is confluent 0061 0308 0307 -> 030a 0307 -> 1e7b
0061 0307 0309 -> 0323 0309 -> 01d8 is confluent 0061 0309 0307 -> 0323 0307 -> 01d8
0061 0307 030a -> 0323 030a -> 1e7b is confluent 0061 030a 0307 -> 0323 0307 -> 1e7b
0061 0307 030c -> 0323 030c -> 1e67 is confluent 0061 030c 0307 -> 0323 0307 -> 1e67
0061 0307 031b -> 0323 031b -> 1e7b is not confluent
0061 0307 0323 -> 0323 0323 -> 1e69 is confluent 0061 0323 0307 -> 030a 0307 -> 1e69
0061 0307 0327 -> 0323 0327 -> 1e69 is not confluent
0061 0307 0328 -> 0323 0328 -> 1e7b is confluent 0061 0328 0307 -> 030a 0307 -> 1e7b
0063 0307 0300 -> 0327 0300 -> 1e7b is not confluent
0063 0307 0301 -> 0327 0301 -> 1e7b is confluent 0063 0301 0307 -> 0327 0307 -> 1e7b
0063 0307 0302 -> 0327 0302 -> 1e7b is confluent 0063 0302 0307 -> 0327 0307 -> 1e7b
0063 0307 0303 -> 0327 0303 -> 1e7b is not confluent
0063 0307 0304 -> 0327 0304 -> 1e7b is not confluent
0063 0307 0306 -> 0327 0306 -> 1e7b is not confluent
0063 0307 0307 -> 0327 0307 -> 1e7b is confluent 0063 0307 0307 -> 0327 0307 -> 1e7b
0063 0307 0308 -> 0327 0308 -> 0231 is not confluent
0063 0307 0309 -> 0327 0309 -> 1e7b is not confluent
0063 0307 030c -> 0327 030c -> 1e7b is confluent 0063 030c 0307 -> 0302 0307 -> 1e7b
0063 0307 0323 -> 0327 0323 -> 1e7b is not confluent
0063 0307 0327 -> 0327 0327 -> 1e1d is confluent 0063 0327 0307 -> 030c 0307 -> 1e1d
0063 0307 0328 -> 0327 0328 -> 1e7b is not confluent
0065 0307 0300 -> 0327 0300 -> 1e7b is confluent 0065 0300 0307 -> 0327 0307 -> 1e7b
0065 0307 0301 -> 0327 0301 -> 1e7b is confluent 0065 0301 0307 -> 0327 0307 -> 1e7b
0065 0307 0302 -> 0327 0302 -> 1e7b is confluent 0065 0302 0307 -> 0327 0307 -> 1e7b
0065 0307 0303 -> 0327 0303 -> 1e7b is confluent 0065 0303 0307 -> 0327 0307 -> 1e7b
0065 0307 0304 -> 0327 0304 -> 1e7b is confluent 0065 0304 0307 -> 0327 0307 -> 1e7b
0065 0307 0306 -> 0327 0306 -> 1e7b is confluent 0065 0306 0307 -> 0327 0307 -> 1e7b
0065 0307 0307 -> 0327 0307 -> 1e7b is confluent 0065 0307 0307 -> 0327 0307 -> 1e7b
0065 0307 0308 -> 0327 0308 -> 0231 is confluent 0065 0308 0307 -> 0327 0307 -> 0231
0065 0307 0309 -> 0327 0309 -> 1e7b is confluent 0065 0309 0307 -> 0327 0307 -> 1e7b
0065 0307 030c -> 0327 030c -> 1e7b is confluent 0065 030c 0307 -> 0327 0307 -> 1e7b
0065 0307 0323 -> 0327 0323 -> 1e7b is confluent 0065 0323 0307 -> 0327 0307 -> 1e7b
0065 0307 0327 -> 0327 0327 -> 1e1d is confluent 0065 0327 0307 -> 0328 0307 -> 1e1d
0065 0307 0328 -> 0327 0328 -> 1e7b is confluent 0065 0328 0307 -> 0327 0307 -> 1e7b
006f 0307 0300 -> 031b 0300 -> 1e17 is confluent 006f 0300 0307 -> 031b 0307 -> 1e17
006f 0307 0301 -> 031b 0301 -> 1e17 is confluent 006f 0301 0307 -> 031b 0307 -> 1e17
006f 0307 0302 -> 031b 0302 -> 1e69 is confluent 006f 0302 0307 -> 031b 0307 -> 1e69
006f 0307 0303 -> 031b 0303 -> 1e17 is confluent 006f 0303 0307 -> 031b 0307 -> 1e17
006f 0307 0304 -> 031b 0304 -> 1e69 is confluent 006f 0304 0307 -> 031b 0307 -> 1e69
006f 0307 0306 -> 031b 0306 -> 1e69 is confluent 006f 0306 0307 -> 031b 0307 -> 1e69
006f 0307 0307 -> 031b 0307 -> 1e69 is confluent 006f 0307 0307 -> 031b 0307 -> 1e69
006f 0307 0308 -> 031b 0308 -> 01d8 is confluent 006f 0308 0307 -> 031b 0307 -> 01d8
006f 0307 0309 -> 031b 0309 -> 1e17 is confluent 006f 0309 0307 -> 031b 0307 -> 1e17
006f 0307 030a -> 031b 030a -> 1e69 is not confluent
006f 0307 030c -> 031b 030c -> 1e17 is confluent 006f 030c 0307 -> 031b 0307 -> 1e17
006f 0307 031b -> 031b 031b -> 1ef1 is confluent 006f 031b 0307 -> 0308 0307 -> 1ef1
006f 0307 0323 -> 031b 0323 -> 1e69 is confluent 006f 0323 0307 -> 031b 0307 -> 1e69
006f 0307 0328 -> 031b 0328 -> 1ef1 is confluent 006f 0328 0307 -> 030c 0307 -> 1ef1
0073 0307 0300 -> 0323 0300 -> 01d8 is not confluent
0073 0307 0301 -> 0323 0301 -> 1e65 is confluent 0073 0301 0307 -> 0327 0307 -> 1e65
0073 0307 0302 -> 0323 0302 -> 1ef1 is confluent 0073 0302 0307 -> 0327 0307 -> 1ef1
0073 0307 0303 -> 0323 0303 -> 01d8 is not confluent
0073 0307 0304 -> 0323 0304 -> 1e7b is not confluent
0073 0307 0306 -> 0323 0306 -> 1e7b is not confluent
0073 0307 0307 -> 0323 0307 -> 1e7b is confluent 0073 0307 0307 -> 0323 0307 -> 1e7b
0073 0307 0308 -> 0323 0308 -> 1e7b is not confluent
0073 0307 0309 -> 0323 0309 -> 01d8 is not confluent
0073 0307 030a -> 0323 030a -> 1e7b is not confluent
0073 0307 030c -> 0323 030c -> 1e67 is confluent 0073 030c 0307 -> 0327 0307 -> 1e67
0073 0307 031b -> 0323 031b -> 1e7b is not confluent
0073 0307 0323 -> 0323 0323 -> 1e69 is confluent 0073 0323 0307 -> 0327 0307 -> 1e69
0073 0307 0327 -> 0323 0327 -> 1e69 is confluent 0073 0327 0307 -> 0307 0307 -> 1e69
0073 0307 0328 -> 0323 0328 -> 1e7b is not confluent
0041 0308 0300 -> 030a 0300 -> 1e67 is confluent 0041 0300 0308 -> 0323 0308 -> 1e67
0041 0308 0301 -> 030a 0301 -> 1e65 is confluent 0041 0301 0308 -> 0308 0308 -> 1e65
0041 0308 0302 -> 030a 0302 -> 1e65 is confluent 0041 0302 0308 -> 0323 0308 -> 1e65
0041 0308 0303 -> 030a 0303 -> 1e67 is confluent 0041 0303 0308 -> 0323 0308 -> 1e67
0041 0308 0304 -> 030a 0304 -> 1e65 is confluent 0041 0304 0308 -> 0308 0308 -> 1e65
0041 0308 0306 -> 030a 0306 -> 1e65 is confluent 0041 0306 0308 -> 0323 0308 -> 1e65
0041 0308 0307 -> 030a 0307 -> 0231 is confluent 0041 0307 0308 -> 0323 0308 -> 0231
0041 0308 0308 -> 030a 0308 -> 0231 is confluent 0041 0308 0308 -> 030a 0308 -> 0231
0041 0308 0309 -> 030a 0309 -> 1e67 is confluent 0041 0309 0308 -> 0323 0308 -> 1e67
0041 0308 030a -> 030a 030a -> 01fb is confluent 0041 030a 0308 -> 0323 0308 -> 01fb
0041 0308 030c -> 030a 030c -> 1e67 is confluent 0041 030c 0308 -> 0323 0308 -> 1e67
0041 0308 031b -> 030a 031b -> 1e69 is not confluent
0041 0308 0323 -> 030a 0323 -> 1ead is confluent 0041 0323 0308 -> 030a 0308 -> 1ead
0041 0308 0328 -> 030a 0328 -> 1e7b is confluent 0041 0328 0308 -> 030a 0308 -> 1e7b
0045 0308 0300 -> 0327 0300 -> 1e7b is confluent 0045 0300 0308 -> 0327 0308 -> 1e7b
0045 0308 0301 -> 0327 0301 -> 1e7b is confluent 0045 0301 0308 -> 0327 0308 -> 1e7b
0045 0308 0302 -> 0327 0302 -> 1e7b is confluent 0045 0302 0308 -> 0327 0308 -> 1e7b
0045 0308 0303 -> 0327 0303 -> 1e7b is confluent 0045 0303 0308 -> 0327 0308 -> 1e7b
0045 0308 0304 -> 0327 0304 -> 1e7b is confluent 0045 0304 0308 -> 0327 0308 -> 1e7b
0045 0308 0306 -> 0327 0306 -> 1e7b is confluent 0045 0306 0308 -> 0327 0308 -> 1e7b
0045 0308 0307 -> 0327 0307 -> 1e7b is confluent 0045 0307 0308 -> 0327 0308 -> 1e7b
0045 0308 0308 -> 0327 0308 -> 0231 is confluent 0045 0308 0308 -> 0327 0308 -> 0231
0045 0308 0309 -> 0327 0309 -> 1e7b is confluent 0045 0309 0308 -> 0327 0308 -> 1e7b
0045 0308 030c -> 0327 030c -> 1e7b is confluent 0045 030c 0308 -> 0327 0308 -> 1e7b
0045 0308 0323 -> 0327 0323 -> 1e7b is confluent 0045 0323 0308 -> 0327 0308 -> 1e7b
0045 0308 0327 -> 0327 0327 -> 1e1d is confluent 0045 0327 0308 -> 0328 0308 -> 1e1d
0045 0308 0328 -> 0327 0328 -> 1e7b is confluent 0045 0328 0308 -> 0327 0308 -> 1e7b
0049 0308 0300 -> 0328 0300 -> 1e69 is confluent 0049 0300 0308 -> 030c 0308 -> 1e69
0049 0308 0301 -> 0328 0301 -> 1e69 is confluent 0049 0301 0308 -> 0308 0308 -> 1e69
0049 0308 0302 -> 0328 0302 -> 1e7b is confluent 0049 0302 0308 -> 0323 0308 -> 1e7b
0049 0308 0303 -> 0328 0303 -> 1e69 is confluent 0049 0303 0308 -> 0308 0308 -> 1e69
0049 0308 0304 -> 0328 0304 -> 1e69 is confluent 0049 0304 0308 -> 0323 0308 -> 1e69
0049 0308 0306 -> 0328 0306 -> 0231 is confluent 0049 0306 0308 -> 0323 0308 -> 0231
0049 0308 0307 -> 0328 0307 -> 0231 is confluent 0049 0307 0308 -> 0323 0308 -> 0231
0049 0308 0308 -> 0328 0308 -> 1e7b is confluent 0049 0308 0308 -> 0328 0308 -> 1e7b
0049 0308 0309 -> 0328 0309 -> 1e69 is confluent 0049 0309 0308 -> 0308 0308 -> 1e69
0049 0308 030a -> 0328 030a -> 1e69 is not confluent
0049 0308 030c -> 0328 030c -> 1e69 is confluent 0049 030c 0308 -> 0308 0308 -> 1e69
0049 0308 031b -> 0328 031b -> 1ec7 is not confluent
0049 0308 0323 -> 0328 0323 -> 1e69 is confluent 0049 0323 0308 -> 0308 0308 -> 1e69
0049 0308 0327 -> 0328 0327 -> 1e69 is not confluent
0049 0308 0328 -> 0328 0328 -> 01ed is confluent 0049 0328 0308 -> 0323 0308 -> 01ed
004f 0308 0300 -> 031b 0300 -> 1e17 is confluent 004f 0300 0308 -> 031b 0308 -> 1e17
004f 0308 0301 -> 031b 0301 -> 1e17 is confluent 004f 0301 0308 -> 031b 0308 -> 1e17
004f 0308 0302 -> 031b 0302 -> 1e69 is confluent 004f 0302 0308 -> 031b 0308 -> 1e69
004f 0308 0303 -> 031b 0303 -> 1e17 is confluent 004f 0303 0308 -> 031b 0308 -> 1e17
004f 0308 0304 -> 031b 0304 -> 1e69 is confluent 004f 0304 0308 -> 031b 0308 -> 1e69
004f 0308 0306 -> 031b 0306 -> 1e69 is confluent 004f 0306 0308 -> 031b 0308 -> 1e69
004f 0308 0307 -> 031b 0307 -> 1e69 is confluent 004f 0307 0308 -> 031b 0308 -> 1e69
004f 0308 0308 -> 031b 0308 -> 01d8 is confluent 004f 0308 0308 -> 031b 0308 -> 01d8
004f 0308 0309 -> 031b 0309 -> 1e17 is confluent 004f 0309 0308 -> 031b 0308 -> 1e17
004f 0308 030a -> 031b 030a -> 1e69 is not confluent
004f 0308 030c -> 031b 030c -> 1e17 is confluent 004f 030c 0308 -> 031b 0308 -> 1e17
004f 0308 031b -> 031b 031b -> 1ef1 is confluent 004f 031b 0308 -> 0308 0308 -> 1ef1
004f 0308 0323 -> 031b 0323 -> 1e69 is confluent 004f 0323 0308 -> 031b 0308 -> 1e69
004f 0308 0328 -> 031b 0328 -> 1ef1 is confluent 004f 0328 0308 -> 030c 0308 -> 1ef1
0055 0308 0300 -> 0323 0300 -> 01d8 is confluent 0055 0300 0308 -> 031b 0308 -> 01d8
0055 0308 0301 -> 0323 0301 -> 1e65 is confluent 0055 0301 0308 -> 031b 0308 -> 1e65
0055 0308 0302 -> 0323 0302 -> 1ef1 is confluent 0055 0302 0308 -> 0323 0308 -> 1ef1
0055 0308 0303 -> 0323 0303 -> 01d8 is confluent 0055 0303 0308 -> 031b 0308 -> 01d8
0055 0308 0304 -> 0323 0304 -> 1e7b is confluent 0055 0304 0308 -> 0323 0308 -> 1e7b
0055 0308 0306 -> 0323 0306 -> 1e7b is confluent 0055 0306 0308 -> 0323 0308 -> 1e7b
0055 0308 0307 -> 0323 0307 -> 1e7b is not confluent
0055 0308 0308 -> 0323 0308 -> 1e7b is confluent 0055 0308 0308 -> 0323 0308 -> 1e7b
0055 0308 0309 -> 0323 0309 -> 01d8 is confluent 0055 0309 0308 -> 031b 0308 -> 01d8
0055 0308 030a -> 0323 030a -> 1e7b is confluent 0055 030a 0308 -> 031b 0308 -> 1e7b
0055 0308 030c -> 0323 030c -> 1e67 is confluent 0055 030c 0308 -> 0323 0308 -> 1e67
0055 0308 031b -> 0323 031b -> 1e7b is confluent 0055 031b 0308 -> 0323 0308 -> 1e7b
0055 0308 0323 -> 0323 0323 -> 1e69 is confluent 0055 0323 0308 -> 031b 0308 -> 1e69
0055 0308 0327 -> 0323 0327 -> 1e69 is not confluent
0055 0308 0328 -> 0323 0328 -> 1e7b is confluent 0055 0328 0308 -> 031b 0308 -> 1e7b
0061 0308 0300 -> 030a 0300 -> 1e67 is confluent 0061 0300 0308 -> 0323 0308 -> 1e67
0061 0308 0301 -> 030a 0301 -> 1e65 is confluent 0061 0301 0308 -> 0308 0308 -> 1e65
0061 0308 0302 -> 030a 0302 -> 1e65 is confluent 0061 0302 0308 -> 0323 0308 -> 1e65
0061 0308 0303 -> 030a 0303 -> 1e67 is confluent 0061 0303 0308 -> 0323 0308 -> 1e67
0061 0308 0304 -> 030a 0304 -> 1e65 is confluent 0061 0304 0308 -> 0308 0308 -> 1e65
0061 0308 0306 -> 030a 0306 -> 1e65 is confluent 0061 0306 0308 -> 0323 0308 -> 1e65
0061 0308 0307 -> 030a 0307 -> 0231 is confluent 0061 0307 0308 -> 0323 0308 -> 0231
0061 0308 0308 -> 030a 0308 -> 0231 is confluent 0061 0308 0308 -> 030a 0308 -> 0231
0061 0308 0309 -> 030a 0309 -> 1e67 is confluent 0061 0309 0308 -> 0323 0308 -> 1e67
0061 0308 030a -> 030a 030a -> 01fb is confluent 0061 030a 0308 -> 0323 0308 -> 01fb
0061 0308 030c -> 030a 030c -> 1e67 is confluent 0061 030c 0308 -> 0323 0308 -> 1e67
0061 0308 031b -> 030a 031b -> 1e69 is not confluent
0061 0308 0323 -> 030a 0323 -> 1ead is confluent 0061 0323 0308 -> 030a 0308 -> 1ead
0061 0308 0328 -> 030a 0328 -> 1e7b is confluent 0061 0328 0308 -> 030a 0308 -> 1e7b
0065 0308 0300 -> 0327 0300 -> 1e7b is confluent 0065 0300 0308 -> 0327 0308 -> 1e7b
0065 0308 0301 -> 0327 0301 -> 1e7b is confluent 0065 0301 0308 -> 0327 0308 -> 1e7b
0065 0308 0302 -> 0327 0302 -> 1e7b is confluent 0065 0302 0308 -> 0327 0308 -> 1e7b
0065 0308 0303 -> 0327 0303 -> 1e7b is confluent 0065 0303 0308 -> 0327 0308 -> 1e7b
0065 0308 0304 -> 0327 0304 -> 1e7b is confluent 0065 0304 0308 -> 0327 0308 -> 1e7b
0065 0308 0306 -> 0327 0306 -> 1e7b is confluent 0065 0306 0308 -> 0327 0308 -> 1e7b
0065 0308 0307 -> 0327 0307 -> 1e7b is confluent 0065 0307 0308 -> 0327 0308 -> 1e7b
0065 0308 0308 -> 0327 0308 -> 0231 is confluent 0065 0308 0308 -> 0327 0308 -> 0231
0065 0308 0309 -> 0327 0309 -> 1e7b is confluent 0065 0309 0308 -> 0327 0308 -> 1e7b
0065 0308 030c -> 0327 030c -> 1e7b is confluent 0065 030c 0308 -> 0327 0308 -> 1e7b
0065 0308 0323 -> 0327 0323 -> 1e7b is confluent 0065 0323 0308 -> 0327 0308 -> 1e7b
0065 0308 0327 -> 0327 0327 -> 1e1d is confluent 0065 0327 0308 -> 0328 0308 -> 1e1d
0065 0308 0328 -> 0327 0328 -> 1e7b is confluent 0065 0328 0308 -> 0327 0308 -> 1e7b
0069 0308 0300 -> 0328 0300 -> 1e69 is confluent 0069 0300 0308 -> 030c 0308 -> 1e69
0069 0308 0301 -> 0328 0301 -> 1e69 is confluent 0069 0301 0308 -> 0308 0308 -> 1e69
0069 0308 0302 -> 0328 0302 -> 1e7b is confluent 0069 0302 0308 -> 0323 0308 -> 1e7b
0069 0308 0303 -> 0328 0303 -> 1e69 is confluent 0069 0303 0308 -> 0308 0308 -> 1e69
0069 0308 0304 -> 0328 0304 -> 1e69 is confluent 0069 0304 0308 -> 0323 0308 -> 1e69
0069 0308 0306 -> 0328 0306 -> 0231 is confluent 0069 0306 0308 -> 0323 0308 -> 0231
0069 0308 0307 -> 0328 0307 -> 0231 is not confluent
0069 0308 0308 -> 0328 0308 -> 1e7b is confluent 0069 0308 0308 -> 0328 0308 -> 1e7b
0069 0308 0309 -> 0328 0309 -> 1e69 is confluent 0069 0309 0308 -> 0308 0308 -> 1e69
0069 0308 030a -> 0328 030a -> 1e69 is not confluent
0069 0308 030c -> 0328 030c -> 1e69 is confluent 0069 030c 0308 -> 0308 0308 -> 1e69
0069 0308 031b -> 0328 031b -> 1ec7 is not confluent
0069 0308 0323 -> 0328 0323 -> 1e69 is confluent 0069 0323 0308 -> 0308 0308 -> 1e69
0069 0308 0327 -> 0328 0327 -> 1e69 is not confluent
0069 0308 0328 -> 0328 0328 -> 01ed is confluent 0069 0328 0308 -> 0323 0308 -> 01ed
006f 0308 0300 -> 031b 0300 -> 1e17 is confluent 006f 0300 0308 -> 031b 0308 -> 1e17
006f 0308 0301 -> 031b 0301 -> 1e17 is confluent 006f 0301 0308 -> 031b 0308 -> 1e17
006f 0308 0302 -> 031b 0302 -> 1e69 is confluent 006f 0302 0308 -> 031b 0308 -> 1e69
006f 0308 0303 -> 031b 0303 -> 1e17 is confluent 006f 0303 0308 -> 031b 0308 -> 1e17
006f 0308 0304 -> 031b 0304 -> 1e69 is confluent 006f 0304 0308 -> 031b 0308 -> 1e69
006f 0308 0306 -> 031b 0306 -> 1e69 is confluent 006f 0306 0308 -> 031b 0308 -> 1e69
006f 0308 0307 -> 031b 0307 -> 1e69 is confluent 006f 0307 0308 -> 031b 0308 -> 1e69
006f 0308 0308 -> 031b 0308 -> 01d8 is confluent 006f 0308 0308 -> 031b 0308 -> 01d8
006f 0308 0309 -> 031b 0309 -> 1e17 is confluent 006f 0309 0308 -> 031b 0308 -> 1e17
006f 0308 030a -> 031b 030a -> 1e69 is not confluent
006f 0308 030c -> 031b 030c -> 1e17 is confluent 006f 030c 0308 -> 031b 0308 -> 1e17
006f 0308 031b -> 031b 031b -> 1ef1 is confluent 006f 031b 0308 -> 0308 0308 -> 1ef1
006f 0308 0323 -> 031b 0323 -> 1e69 is confluent 006f 0323 0308 -> 031b 0308 -> 1e69
006f 0308 0328 -> 031b 0328 -> 1ef1 is confluent 006f 0328 0308 -> 030c 0308 -> 1ef1
0075 0308 0300 -> 0323 0300 -> 01d8 is confluent 0075 0300 0308 -> 031b 0308 -> 01d8
0075 0308 0301 -> 0323 0301 -> 1e65 is confluent 0075 0301 0308 -> 031b 0308 -> 1e65
0075 0308 0302 -> 0323 0302 -> 1ef1 is confluent 0075 0302 0308 -> 0323 0308 -> 1ef1
0075 0308 0303 -> 0323 0303 -> 01d8 is confluent 0075 0303 0308 -> 031b 0308 -> 01d8
0075 0308 0304 -> 0323 0304 -> 1e7b is confluent 0075 0304 0308 -> 0323 0308 -> 1e7b
0075 0308 0306 -> 0323 0306 -> 1e7b is confluent 0075 0306 0308 -> 0323 0308 -> 1e7b
0075 0308 0307 -> 0323 0307 -> 1e7b is not confluent
0075 0308 0308 -> 0323 0308 -> 1e7b is confluent 0075 0308 0308 -> 0323 0308 -> 1e7b
0075 0308 0309 -> 0323 0309 -> 01d8 is confluent 0075 0309 0308 -> 031b 0308 -> 01d8
0075 0308 030a -> 0323 030a -> 1e7b is confluent 0075 030a 0308 -> 031b 0308 -> 1e7b
0075 0308 030c -> 0323 030c -> 1e67 is confluent 0075 030c 0308 -> 0323 0308 -> 1e67
0075 0308 031b -> 0323 031b -> 1e7b is confluent 0075 031b 0308 -> 0323 0308 -> 1e7b
0075 0308 0323 -> 0323 0323 -> 1e69 is confluent 0075 0323 0308 -> 031b 0308 -> 1e69
0075 0308 0327 -> 0323 0327 -> 1e69 is not confluent
0075 0308 0328 -> 0323 0328 -> 1e7b is confluent 0075 0328 0308 -> 031b 0308 -> 1e7b
0399 0308 0300 -> 0301 0300 -> 1fe7 is confluent 0399 0300 0308 -> 0314 0308 -> 1fe7
0399 0308 0301 -> 0301 0301 -> 1fe7 is confluent 0399 0301 0308 -> 0314 0308 -> 1fe7
0399 0308 0303 -> 0301 0303 -> 01ed is not confluent
0399 0308 0309 -> 0301 0309 -> 01ed is not confluent
0399 0308 030c -> 0301 030c -> 01ed is not confluent
0399 0308 0323 -> 0301 0323 -> 01ed is not confluent
0399 0308 0327 -> 0301 0327 -> 1e7b is not confluent
03a5 0308 0300 -> 0301 0300 -> 1fe7 is confluent 03a5 0300 0308 -> 0314 0308 -> 1fe7
03a5 0308 0301 -> 0301 0301 -> 1fe7 is confluent 03a5 0301 0308 -> 0314 0308 -> 1fe7
03a5 0308 0303 -> 0301 0303 -> 01ed is not confluent
03a5 0308 0309 -> 0301 0309 -> 01ed is not confluent
03a5 0308 030c -> 0301 030c -> 01ed is not confluent
03a5 0308 0323 -> 0301 0323 -> 01ed is not confluent
03a5 0308 0327 -> 0301 0327 -> 1e7b is not confluent
03b9 0308 0300 -> 03ca 0300 -> 1fd2 is confluent 03b9 0300 0308 -> 0314 0308 -> 1fd2
03b9 0308 0301 -> 03ca 0301 -> 0390 is confluent 03b9 0301 0308 -> 0314 0308 -> 0390
03b9 0308 0342 -> 03ca 0342 -> 1fd7 is confluent 03b9 0342 0308 -> 0314 0308 -> 1fd7
03c5 0308 0300 -> 03cb 0300 -> 1fe2 is confluent 03c5 0300 0308 -> 0314 0308 -> 1fe2
03c5 0308 0301 -> 03cb 0301 -> 03b0 is confluent 03c5 0301 0308 -> 0314 0308 -> 03b0
03c5 0308 0342 -> 03cb 0342 -> 1fe7 is confluent 03c5 0342 0308 -> 0314 0308 -> 1fe7
0041 0309 0300 -> 0323 0300 -> 01d8 is confluent 0041 0300 0309 -> 0323 0309 -> 01d8
0041 0309 0301 -> 0323 0301 -> 1e65 is confluent 0041 0301 0309 -> 0308 0309 -> 1e65
0041 0309 0302 -> 0323 0302 -> 1ef1 is confluent 0041 0302 0309 -> 0323 0309 -> 1ef1
0041 0309 0303 -> 0323 0303 -> 01d8 is confluent 0041 0303 0309 -> 0323 0309 -> 01d8
0041 0309 0304 -> 0323 0304 -> 1e7b is confluent 0041 0304 0309 -> 0308 0309 -> 1e7b
0041 0309 0306 -> 0323 0306 -> 1e7b is confluent 0041 0306 0309 -> 0323 0309 -> 1e7b
0041 0309 0307 -> 0323 0307 -> 1e7b is confluent 0041 0307 0309 -> 0323 0309 -> 1e7b
0041 0309 0308 -> 0323 0308 -> 1e7b is confluent 0041 0308 0309 -> 030a 0309 -> 1e7b
0041 0309 0309 -> 0323 0309 -> 01d8 is confluent 0041 0309 0309 -> 0323 0309 -> 01d8
0041 0309 030a -> 0323 030a -> 1e7b is confluent 0041 030a 0309 -> 0323 0309 -> 1e7b
0041 0309 030c -> 0323 030c -> 1e67 is confluent 0041 030c 0309 -> 0323 0309 -> 1e67
0041 0309 031b -> 0323 031b -> 1e7b is not confluent
0041 0309 0323 -> 0323 0323 -> 1e69 is confluent 0041 0323 0309 -> 030a 0309 -> 1e69
0041 0309 0327 -> 0323 0327 -> 1e69 is not confluent
0041 0309 0328 -> 0323 0328 -> 1e7b is confluent 0041 0328 0309 -> 030a 0309 -> 1e7b
0045 0309 0300 -> 0327 0300 -> 1e7b is confluent 0045 0300 0309 -> 0327 0309 -> 1e7b
0045 0309 0301 -> 0327 0301 -> 1e7b is confluent 0045 0301 0309 -> 0327 0309 -> 1e7b
0045 0309 0302 -> 0327 0302 -> 1e7b is confluent 0045 0302 0309 -> 0327 0309 -> 1e7b
0045 0309 0303 -> 0327 0303 -> 1e7b is confluent 0045 0303 0309 -> 0327 0309 -> 1e7b
0045 0309 0304 -> 0327 0304 -> 1e7b is confluent 0045 0304 0309 -> 0327 0309 -> 1e7b
0045 0309 0306 -> 0327 0306 -> 1e7b is confluent 0045 0306 0309 -> 0327 0309 -> 1e7b
0045 0309 0307 -> 0327 0307 -> 1e7b is confluent 0045 0307 0309 -> 0327 0309 -> 1e7b
0045 0309 0308 -> 0327 0308 -> 0231 is confluent 0045 0308 0309 -> 0327 0309 -> 0231
0045 0309 0309 -> 0327 0309 -> 1e7b is confluent 0045 0309 0309 -> 0327 0309 -> 1e7b
0045 0309 030c -> 0327 030c -> 1e7b is confluent 0045 030c 0309 -> 0327 0309 -> 1e7b
0045 0309 0323 -> 0327 0323 -> 1e7b is confluent 0045 0323 0309 -> 0327 0309 -> 1e7b
0045 0309 0327 -> 0327 0327 -> 1e1d is confluent 0045 0327 0309 -> 0328 0309 -> 1e1d
0045 0309 0328 -> 0327 0328 -> 1e7b is confluent 0045 0328 0309 -> 0327 0309 -> 1e7b
0049 0309 0300 -> 0308 0300 -> 1e67 is confluent 0049 0300 0309 -> 030c 0309 -> 1e67
0049 0309 0301 -> 0308 0301 -> 1e67 is confluent 0049 0301 0309 -> 0308 0309 -> 1e67
0049 0309 0302 -> 0308 0302 -> 1e67 is confluent 0049 0302 0309 -> 0323 0309 -> 1e67
0049 0309 0303 -> 0308 0303 -> 1e17 is confluent 0049 0303 0309 -> 0308 0309 -> 1e17
0049 0309 0304 -> 0308 0304 -> 1e67 is confluent 0049 0304 0309 -> 0323 0309 -> 1e67
0049 0309 0306 -> 0308 0306 -> 1e7b is confluent 0049 0306 0309 -> 0323 0309 -> 1e7b
0049 0309 0307 -> 0308 0307 -> 01e1 is confluent 0049 0307 0309 -> 0323 0309 -> 01e1
0049 0309 0308 -> 0308 0308 -> 01da is confluent 0049 0308 0309 -> 0328 0309 -> 01da
0049 0309 0309 -> 0308 0309 -> 1e17 is confluent 0049 0309 0309 -> 0308 0309 -> 1e17
0049 0309 030a -> 0308 030a -> 0231 is not confluent
0049 0309 030c -> 0308 030c -> 1e7b is confluent 0049 030c 0309 -> 0308 0309 -> 1e7b
0049 0309 031b -> 0308 031b -> 1e7b is not confluent
0049 0309 0323 -> 0308 0323 -> 1ec7 is confluent 0049 0323 0309 -> 0308 0309 -> 1ec7
0049 0309 0327 -> 0308 0327 -> 1e69 is not confluent
0049 0309 0328 -> 0308 0328 -> 01ed is confluent 0049 0328 0309 -> 0323 0309 -> 01ed
004f 0309 0300 -> 031b 0300 -> 1e17 is confluent 004f 0300 0309 -> 031b 0309 -> 1e17
004f 0309 0301 -> 031b 0301 -> 1e17 is confluent 004f 0301 0309 -> 031b 0309 -> 1e17
004f 0309 0302 -> 031b 0302 -> 1e69 is confluent 004f 0302 0309 -> 031b 0309 -> 1e69
004f 0309 0303 -> 031b 0303 -> 1e17 is confluent 004f 0303 0309 -> 031b 0309 -> 1e17
004f 0309 0304 -> 031b 0304 -> 1e69 is confluent 004f 0304 0309 -> 031b 0309 -> 1e69
004f 0309 0306 -> 031b 0306 -> 1e69 is confluent 004f 0306 0309 -> 031b 0309 -> 1e69
004f 0309 0307 -> 031b 0307 -> 1e69 is confluent 004f 0307 0309 -> 031b 0309 -> 1e69
004f 0309 0308 -> 031b 0308 -> 01d8 is confluent 004f 0308 0309 -> 031b 0309 -> 01d8
004f 0309 0309 -> 031b 0309 -> 1e17 is confluent 004f 0309 0309 -> 031b 0309 -> 1e17
004f 0309 030a -> 031b 030a -> 1e69 is not confluent
004f 0309 030c -> 031b 030c -> 1e17 is confluent 004f 030c 0309 -> 031b 0309 -> 1e17
004f 0309 031b -> 031b 031b -> 1ef1 is confluent 004f 031b 0309 -> 0308 0309 -> 1ef1
004f 0309 0323 -> 031b 0323 -> 1e69 is confluent 004f 0323 0309 -> 031b 0309 -> 1e69
004f 0309 0328 -> 031b 0328 -> 1ef1 is confluent 004f 0328 0309 -> 030c 0309 -> 1ef1
0055 0309 0300 -> 031b 0300 -> 1e17 is confluent 0055 0300 0309 -> 031b 0309 -> 1e17
0055 0309 0301 -> 031b 0301 -> 1e17 is confluent 0055 0301 0309 -> 031b 0309 -> 1e17
0055 0309 0302 -> 031b 0302 -> 1e69 is confluent 0055 0302 0309 -> 0323 0309 -> 1e69
0055 0309 0303 -> 031b 0303 -> 1e17 is confluent 0055 0303 0309 -> 031b 0309 -> 1e17
0055 0309 0304 -> 031b 0304 -> 1e69 is confluent 0055 0304 0309 -> 0323 0309 -> 1e69
0055 0309 0306 -> 031b 0306 -> 1e69 is confluent 0055 0306 0309 -> 0323 0309 -> 1e69
0055 0309 0307 -> 031b 0307 -> 1e69 is not confluent
0055 0309 0308 -> 031b 0308 -> 01d8 is confluent 0055 0308 0309 -> 0323 0309 -> 01d8
0055 0309 0309 -> 031b 0309 -> 1e17 is confluent 0055 0309 0309 -> 031b 0309 -> 1e17
0055 0309 030a -> 031b 030a -> 1e69 is confluent 0055 030a 0309 -> 031b 0309 -> 1e69
0055 0309 030c -> 031b 030c -> 1e17 is confluent 0055 030c 0309 -> 0323 0309 -> 1e17
0055 0309 031b -> 031b 031b -> 1ef1 is confluent 0055 031b 0309 -> 0323 0309 -> 1ef1
0055 0309 0323 -> 031b 0323 -> 1e69 is confluent 0055 0323 0309 -> 031b 0309 -> 1e69
0055 0309 0328 -> 031b 0328 -> 1ef1 is confluent 0055 0328 0309 -> 031b 0309 -> 1ef1
0061 0309 0300 -> 0323 0300 -> 01d8 is confluent 0061 0300 0309 -> 0323 0309 -> 01d8
0061 0309 0301 -> 0323 0301 -> 1e65 is confluent 0061 0301 0309 -> 0308 0309 -> 1e65
0061 0309 0302 -> 0323 0302 -> 1ef1 is confluent 0061 0302 0309 -> 0323 0309 -> 1ef1
0061 0309 0303 -> 0323 0303 -> 01d8 is confluent 0061 0303 0309 -> 0323 0309 -> 01d8
0061 0309 0304 -> 0323 0304 -> 1e7b is confluent 0061 0304 0309 -> 0308 0309 -> 1e7b
0061 0309 0306 -> 0323 0306 -> 1e7b is confluent 0061 0306 0309 -> 0323 0309 -> 1e7b
0061 0309 0307 -> 0323 0307 -> 1e7b is confluent 0061 0307 0309 -> 0323 0309 -> 1e7b
0061 0309 0308 -> 0323 0308 -> 1e7b is confluent 0061 0308 0309 -> 030a 0309 -> 1e7b
0061 0309 0309 -> 0323 0309 -> 01d8 is confluent 0061 0309 0309 -> 0323 0309 -> 01d8
0061 0309 030a -> 0323 030a -> 1e7b is confluent 0061 030a 0309 -> 0323 0309 -> 1e7b
0061 0309 030c -> 0323 030c -> 1e67 is confluent 0061 030c 0309 -> 0323 0309 -> 1e67
0061 0309 031b -> 0323 031b -> 1e7b is not confluent
0061 0309 0323 -> 0323 0323 -> 1e69 is confluent 0061 0323 0309 -> 030a 0309 -> 1e69
0061 0309 0327 -> 0323 0327 -> 1e69 is not confluent
0061 0309 0328 -> 0323 0328 -> 1e7b is confluent 0061 0328 0309 -> 030a 0309 -> 1e7b
0065 0309 0300 -> 0327 0300 -> 1e7b is confluent 0065 0300 0309 -> 0327 0309 -> 1e7b
0065 0309 0301 -> 0327 0301 -> 1e7b is confluent 0065 0301 0309 -> 0327 0309 -> 1e7b
0065 0309 0302 -> 0327 0302 -> 1e7b is confluent 0065 0302 0309 -> 0327 0309 -> 1e7b
0065 0309 0303 -> 0327 0303 -> 1e7b is confluent 0065 0303 0309 -> 0327 0309 -> 1e7b
0065 0309 0304 -> 0327 0304 -> 1e7b is confluent 0065 0304 0309 -> 0327 0309 -> 1e7b
0065 0309 0306 -> 0327 0306 -> 1e7b is confluent 0065 0306 0309 -> 0327 0309 -> 1e7b
0065 0309 0307 -> 0327 0307 -> 1e7b is confluent 0065 0307 0309 -> 0327 0309 -> 1e7b
0065 0309 0308 -> 0327 0308 -> 0231 is confluent 0065 0308 0309 -> 0327 0309 -> 0231
0065 0309 0309 -> 0327 0309 -> 1e7b is confluent 0065 0309 0309 -> 0327 0309 -> 1e7b
0065 0309 030c -> 0327 030c -> 1e7b is confluent 0065 030c 0309 -> 0327 0309 -> 1e7b
0065 0309 0323 -> 0327 0323 -> 1e7b is confluent 0065 0323 0309 -> 0327 0309 -> 1e7b
0065 0309 0327 -> 0327 0327 -> 1e1d is confluent 0065 0327 0309 -> 0328 0309 -> 1e1d
0065 0309 0328 -> 0327 0328 -> 1e7b is confluent 0065 0328 0309 -> 0327 0309 -> 1e7b
0069 0309 0300 -> 0308 0300 -> 1e67 is confluent 0069 0300 0309 -> 030c 0309 -> 1e67
0069 0309 0301 -> 0308 0301 -> 1e67 is confluent 0069 0301 0309 -> 0308 0309 -> 1e67
0069 0309 0302 -> 0308 0302 -> 1e67 is confluent 0069 0302 0309 -> 0323 0309 -> 1e67
0069 0309 0303 -> 0308 0303 -> 1e17 is confluent 0069 0303 0309 -> 0308 0309 -> 1e17
0069 0309 0304 -> 0308 0304 -> 1e67 is confluent 0069 0304 0309 -> 0323 0309 -> 1e67
0069 0309 0306 -> 0308 0306 -> 1e7b is confluent 0069 0306 0309 -> 0323 0309 -> 1e7b
0069 0309 0307 -> 0308 0307 -> 01e1 is not confluent
0069 0309 0308 -> 0308 0308 -> 01da is confluent 0069 0308 0309 -> 0328 0309 -> 01da
0069 0309 0309 -> 0308 0309 -> 1e17 is confluent 0069 0309 0309 -> 0308 0309 -> 1e17
0069 0309 030a -> 0308 030a -> 0231 is not confluent
0069 0309 030c -> 0308 030c -> 1e7b is confluent 0069 030c 0309 -> 0308 0309 -> 1e7b
0069 0309 031b -> 0308 031b -> 1e7b is not confluent
0069 0309 0323 -> 0308 0323 -> 1ec7 is confluent 0069 0323 0309 -> 0308 0309 -> 1ec7
0069 0309 0327 -> 0308 0327 -> 1e69 is not confluent
0069 0309 0328 -> 0308 0328 -> 01ed is confluent 0069 0328 0309 -> 0323 0309 -> 01ed
006f 0309 0300 -> 031b 0300 -> 1e17 is confluent 006f 0300 0309 -> 031b 0309 -> 1e17
006f 0309 0301 -> 031b 0301 -> 1e17 is confluent 006f 0301 0309 -> 031b 0309 -> 1e17
006f 0309 0302 -> 031b 0302 -> 1e69 is confluent 006f 0302 0309 -> 031b 0309 -> 1e69
006f 0309 0303 -> 031b 0303 -> 1e17 is confluent 006f 0303 0309 -> 031b 0309 -> 1e17
006f 0309 0304 -> 031b 0304 -> 1e69 is confluent 006f 0304 0309 -> 031b 0309 -> 1e69
006f 0309 0306 -> 031b 0306 -> 1e69 is confluent 006f 0306 0309 -> 031b 0309 -> 1e69
006f 0309 0307 -> 031b 0307 -> 1e69 is confluent 006f 0307 0309 -> 031b 0309 -> 1e69
006f 0309 0308 -> 031b 0308 -> 01d8 is confluent 006f 0308 0309 -> 031b 0309 -> 01d8
006f 0309 0309 -> 031b 0309 -> 1e17 is confluent 006f 0309 0309 -> 031b 0309 -> 1e17
006f 0309 030a -> 031b 030a -> 1e69 is not confluent
006f 0309 030c -> 031b 030c -> 1e17 is confluent 006f 030c 0309 -> 031b 0309 -> 1e17
006f 0309 031b -> 031b 031b -> 1ef1 is confluent 006f 031b 0309 -> 0308 0309 -> 1ef1
006f 0309 0323 -> 031b 0323 -> 1e69 is confluent 006f 0323 0309 -> 031b 0309 -> 1e69
006f 0309 0328 -> 031b 0328 -> 1ef1 is confluent 006f 0328 0309 -> 030c 0309 -> 1ef1
0075 0309 0300 -> 031b 0300 -> 1e17 is confluent 0075 0300 0309 -> 031b 0309 -> 1e17
0075 0309 0301 -> 031b 0301 -> 1e17 is confluent 0075 0301 0309 -> 031b 0309 -> 1e17
0075 0309 0302 -> 031b 0302 -> 1e69 is confluent 0075 0302 0309 -> 0323 0309 -> 1e69
0075 0309 0303 -> 031b 0303 -> 1e17 is confluent 0075 0303 0309 -> 031b 0309 -> 1e17
0075 0309 0304 -> 031b 0304 -> 1e69 is confluent 0075 0304 0309 -> 0323 0309 -> 1e69
0075 0309 0306 -> 031b 0306 -> 1e69 is confluent 0075 0306 0309 -> 0323 0309 -> 1e69
0075 0309 0307 -> 031b 0307 -> 1e69 is not confluent
0075 0309 0308 -> 031b 0308 -> 01d8 is confluent 0075 0308 0309 -> 0323 0309 -> 01d8
0075 0309 0309 -> 031b 0309 -> 1e17 is confluent 0075 0309 0309 -> 031b 0309 -> 1e17
0075 0309 030a -> 031b 030a -> 1e69 is confluent 0075 030a 0309 -> 031b 0309 -> 1e69
0075 0309 030c -> 031b 030c -> 1e17 is confluent 0075 030c 0309 -> 0323 0309 -> 1e17
0075 0309 031b -> 031b 031b -> 1ef1 is confluent 0075 031b 0309 -> 0323 0309 -> 1ef1
0075 0309 0323 -> 031b 0323 -> 1e69 is confluent 0075 0323 0309 -> 031b 0309 -> 1e69
0075 0309 0328 -> 031b 0328 -> 1ef1 is confluent 0075 0328 0309 -> 031b 0309 -> 1ef1
0041 030a 0300 -> 0323 0300 -> 01d8 is confluent 0041 0300 030a -> 0323 030a -> 01d8
0041 030a 0301 -> 0323 0301 -> 1e65 is confluent 0041 0301 030a -> 0308 030a -> 1e65
0041 030a 0302 -> 0323 0302 -> 1ef1 is confluent 0041 0302 030a -> 0323 030a -> 1ef1
0041 030a 0303 -> 0323 0303 -> 01d8 is confluent 0041 0303 030a -> 0323 030a -> 01d8
0041 030a 0304 -> 0323 0304 -> 1e7b is confluent 0041 0304 030a -> 0308 030a -> 1e7b
0041 030a 0306 -> 0323 0306 -> 1e7b is confluent 0041 0306 030a -> 0323 030a -> 1e7b
0041 030a 0307 -> 0323 0307 -> 1e7b is confluent 0041 0307 030a -> 0323 030a -> 1e7b
0041 030a 0308 -> 0323 0308 -> 1e7b is confluent 0041 0308 030a -> 030a 030a -> 1e7b
0041 030a 0309 -> 0323 0309 -> 01d8 is confluent 0041 0309 030a -> 0323 030a -> 01d8
0041 030a 030a -> 0323 030a -> 1e7b is confluent 0041 030a 030a -> 0323 030a -> 1e7b
0041 030a 030c -> 0323 030c -> 1e67 is confluent 0041 030c 030a -> 0323 030a -> 1e67
0041 030a 031b -> 0323 031b -> 1e7b is not confluent
0041 030a 0323 -> 0323 0323 -> 1e69 is confluent 0041 0323 030a -> 030a 030a -> 1e69
0041 030a 0327 -> 0323 0327 -> 1e69 is not confluent
0041 030a 0328 -> 0323 0328 -> 1e7b is confluent 0041 0328 030a -> 030a 030a -> 1e7b
0055 030a 0300 -> 031b 0300 -> 1e17 is confluent 0055 0300 030a -> 031b 030a -> 1e17
0055 030a 0301 -> 031b 0301 -> 1e17 is confluent 0055 0301 030a -> 031b 030a -> 1e17
0055 030a 0302 -> 031b 0302 -> 1e69 is confluent 0055 0302 030a -> 0323 030a -> 1e69
0055 030a 0303 -> 031b 0303 -> 1e17 is confluent 0055 0303 030a -> 031b 030a -> 1e17
0055 030a 0304 -> 031b 0304 -> 1e69 is confluent 0055 0304 030a -> 0323 030a -> 1e69
0055 030a 0306 -> 031b 0306 -> 1e69 is confluent 0055 0306 030a -> 0323 030a -> 1e69
0055 030a 0307 -> 031b 0307 -> 1e69 is not confluent
0055 030a 0308 -> 031b 0308 -> 01d8 is confluent 0055 0308 030a -> 0323 030a -> 01d8
0055 030a 0309 -> 031b 0309 -> 1e17 is confluent 0055 0309 030a -> 031b 030a -> 1e17
0055 030a 030a -> 031b 030a -> 1e69 is confluent 0055 030a 030a -> 031b 030a -> 1e69
0055 030a 030c -> 031b 030c -> 1e17 is confluent 0055 030c 030a -> 0323 030a -> 1e17
0055 030a 031b -> 031b 031b -> 1ef1 is confluent 0055 031b 030a -> 0323 030a -> 1ef1
0055 030a 0323 -> 031b 0323 -> 1e69 is confluent 0055 0323 030a -> 031b 030a -> 1e69
0055 030a 0328 -> 031b 0328 -> 1ef1 is confluent 0055 0328 030a -> 031b 030a -> 1ef1
0061 030a 0300 -> 0323 0300 -> 01d8 is confluent 0061 0300 030a -> 0323 030a -> 01d8
0061 030a 0301 -> 0323 0301 -> 1e65 is confluent 0061 0301 030a -> 0308 030a -> 1e65
0061 030a 0302 -> 0323 0302 -> 1ef1 is confluent 0061 0302 030a -> 0323 030a -> 1ef1
0061 030a 0303 -> 0323 0303 -> 01d8 is confluent 0061 0303 030a -> 0323 030a -> 01d8
0061 030a 0304 -> 0323 0304 -> 1e7b is confluent 0061 0304 030a -> 0308 030a -> 1e7b
0061 030a 0306 -> 0323 0306 -> 1e7b is confluent 0061 0306 030a -> 0323 030a -> 1e7b
0061 030a 0307 -> 0323 0307 -> 1e7b is confluent 0061 0307 030a -> 0323 030a -> 1e7b
0061 030a 0308 -> 0323 0308 -> 1e7b is confluent 0061 0308 030a -> 030a 030a -> 1e7b
0061 030a 0309 -> 0323 0309 -> 01d8 is confluent 0061 0309 030a -> 0323 030a -> 01d8
0061 030a 030a -> 0323 030a -> 1e7b is confluent 0061 030a 030a -> 0323 030a -> 1e7b
0061 030a 030c -> 0323 030c -> 1e67 is confluent 0061 030c 030a -> 0323 030a -> 1e67
0061 030a 031b -> 0323 031b -> 1e7b is not confluent
0061 030a 0323 -> 0323 0323 -> 1e69 is confluent 0061 0323 030a -> 030a 030a -> 1e69
0061 030a 0327 -> 0323 0327 -> 1e69 is not confluent
0061 030a 0328 -> 0323 0328 -> 1e7b is confluent 0061 0328 030a -> 030a 030a -> 1e7b
0075 030a 0300 -> 031b 0300 -> 1e17 is confluent 0075 0300 030a -> 031b 030a -> 1e17
0075 030a 0301 -> 031b 0301 -> 1e17 is confluent 0075 0301 030a -> 031b 030a -> 1e17
0075 030a 0302 -> 031b 0302 -> 1e69 is confluent 0075 0302 030a -> 0323 030a -> 1e69
0075 030a 0303 -> 031b 0303 -> 1e17 is confluent 0075 0303 030a -> 031b 030a -> 1e17
0075 030a 0304 -> 031b 0304 -> 1e69 is confluent 0075 0304 030a -> 0323 030a -> 1e69
0075 030a 0306 -> 031b 0306 -> 1e69 is confluent 0075 0306 030a -> 0323 030a -> 1e69
0075 030a 0307 -> 031b 0307 -> 1e69 is not confluent
0075 030a 0308 -> 031b 0308 -> 01d8 is confluent 0075 0308 030a -> 0323 030a -> 01d8
0075 030a 0309 -> 031b 0309 -> 1e17 is confluent 0075 0309 030a -> 031b 030a -> 1e17
0075 030a 030a -> 031b 030a -> 1e69 is confluent 0075 030a 030a -> 031b 030a -> 1e69
0075 030a 030c -> 031b 030c -> 1e17 is confluent 0075 030c 030a -> 0323 030a -> 1e17
0075 030a 031b -> 031b 031b -> 1ef1 is confluent 0075 031b 030a -> 0323 030a -> 1ef1
0075 030a 0323 -> 031b 0323 -> 1e69 is confluent 0075 0323 030a -> 031b 030a -> 1e69
0075 030a 0328 -> 031b 0328 -> 1ef1 is confluent 0075 0328 030a -> 031b 030a -> 1ef1
0041 030c 0300 -> 0323 0300 -> 01d8 is confluent 0041 0300 030c -> 0323 030c -> 01d8
0041 030c 0301 -> 0323 0301 -> 1e65 is confluent 0041 0301 030c -> 0308 030c -> 1e65
0041 030c 0302 -> 0323 0302 -> 1ef1 is confluent 0041 0302 030c -> 0323 030c -> 1ef1
0041 030c 0303 -> 0323 0303 -> 01d8 is confluent 0041 0303 030c -> 0323 030c -> 01d8
0041 030c 0304 -> 0323 0304 -> 1e7b is confluent 0041 0304 030c -> 0308 030c -> 1e7b
0041 030c 0306 -> 0323 0306 -> 1e7b is confluent 0041 0306 030c -> 0323 030c -> 1e7b
0041 030c 0307 -> 0323 0307 -> 1e7b is confluent 0041 0307 030c -> 0323 030c -> 1e7b
0041 030c 0308 -> 0323 0308 -> 1e7b is confluent 0041 0308 030c -> 030a 030c -> 1e7b
0041 030c 0309 -> 0323 0309 -> 01d8 is confluent 0041 0309 030c -> 0323 030c -> 01d8
0041 030c 030a -> 0323 030a -> 1e7b is confluent 0041 030a 030c -> 0323 030c -> 1e7b
0041 030c 030c -> 0323 030c -> 1e67 is confluent 0041 030c 030c -> 0323 030c -> 1e67
0041 030c 031b -> 0323 031b -> 1e7b is not confluent
0041 030c 0323 -> 0323 0323 -> 1e69 is confluent 0041 0323 030c -> 030a 030c -> 1e69
0041 030c 0327 -> 0323 0327 -> 1e69 is not confluent
0041 030c 0328 -> 0323 0328 -> 1e7b is confluent 0041 0328 030c -> 030a 030c -> 1e7b
0043 030c 0300 -> 0302 0300 -> 1ef1 is not confluent
0043 030c 0301 -> 0302 0301 -> 1ef1 is confluent 0043 0301 030c -> 0327 030c -> 1ef1
0043 030c 0302 -> 0302 0302 -> 1e69 is confluent 0043 0302 030c -> 0327 030c -> 1e69
0043 030c 0303 -> 0302 0303 -> 1e17 is not confluent
0043 030c 0304 -> 0302 0304 -> 1e17 is not confluent
0043 030c 0306 -> 0302 0306 -> 1e7b is not confluent
0043 030c 0307 -> 0302 0307 -> 1e67 is confluent 0043 0307 030c -> 0327 030c -> 1e67
0043 030c 0308 -> 0302 0308 -> 1e69 is not confluent
0043 030c 0309 -> 0302 0309 -> 1e17 is not confluent
0043 030c 030a -> 0302 030a -> 1ef1 is not confluent
0043 030c 030c -> 0302 030c -> 1e17 is confluent 0043 030c 030c -> 0302 030c -> 1e17
0043 030c 031b -> 0302 031b -> 1ee3 is not confluent
0043 030c 0323 -> 0302 0323 -> 1ef1 is not confluent
0043 030c 0327 -> 0302 0327 -> 1e69 is confluent 0043 0327 030c -> 030c 030c -> 1e69
0045 030c 0300 -> 0327 0300 -> 1e7b is confluent 0045 0300 030c -> 0327 030c -> 1e7b
0045 030c 0301 -> 0327 0301 -> 1e7b is confluent 0045 0301 030c -> 0327 030c -> 1e7b
0045 030c 0302 -> 0327 0302 -> 1e7b is confluent 0045 0302 030c -> 0327 030c -> 1e7b
0045 030c 0303 -> 0327 0303 -> 1e7b is confluent 0045 0303 030c -> 0327 030c -> 1e7b
0045 030c 0304 -> 0327 0304 -> 1e7b is confluent 0045 0304 030c -> 0327 030c -> 1e7b
0045 030c 0306 -> 0327 0306 -> 1e7b is confluent 0045 0306 030c -> 0327 030c -> 1e7b
0045 030c 0307 -> 0327 0307 -> 1e7b is confluent 0045 0307 030c -> 0327 030c -> 1e7b
0045 030c 0308 -> 0327 0308 -> 0231 is confluent 0045 0308 030c -> 0327 030c -> 0231
0045 030c 0309 -> 0327 0309 -> 1e7b is confluent 0045 0309 030c -> 0327 030c -> 1e7b
0045 030c 030c -> 0327 030c -> 1e7b is confluent 0045 030c 030c -> 0327 030c -> 1e7b
0045 030c 0323 -> 0327 0323 -> 1e7b is confluent 0045 0323 030c -> 0327 030c -> 1e7b
0045 030c 0327 -> 0327 0327 -> 1e1d is confluent 0045 0327 030c -> 0328 030c -> 1e1d
0045 030c 0328 -> 0327 0328 -> 1e7b is confluent 0045 0328 030c -> 0327 030c -> 1e7b
0049 030c 0300 -> 0308 0300 -> 1e67 is confluent 0049 0300 030c -> 030c 030c -> 1e67
0049 030c 0301 -> 0308 0301 -> 1e67 is confluent 0049 0301 030c -> 0308 030c -> 1e67
0049 030c 0302 -> 0308 0302 -> 1e67 is confluent 0049 0302 030c -> 0323 030c -> 1e67
0049 030c 0303 -> 0308 0303 -> 1e17 is confluent 0049 0303 030c -> 0308 030c -> 1e17
0049 030c 0304 -> 0308 0304 -> 1e67 is confluent 0049 0304 030c -> 0323 030c -> 1e67
0049 030c 0306 -> 0308 0306 -> 1e7b is confluent 0049 0306 030c -> 0323 030c -> 1e7b
0049 030c 0307 -> 0308 0307 -> 01e1 is confluent 0049 0307 030c -> 0323 030c -> 01e1
0049 030c 0308 -> 0308 0308 -> 01da is confluent 0049 0308 030c -> 0328 030c -> 01da
0049 030c 0309 -> 0308 0309 -> 1e17 is confluent 0049 0309 030c -> 0308 030c -> 1e17
0049 030c 030a -> 0308 030a -> 0231 is not confluent
0049 030c 030c -> 0308 030c -> 1e7b is confluent 0049 030c 030c -> 0308 030c -> 1e7b
0049 030c 031b -> 0308 031b -> 1e7b is not confluent
0049 030c 0323 -> 0308 0323 -> 1ec7 is confluent 0049 0323 030c -> 0308 030c -> 1ec7
0049 030c 0327 -> 0308 0327 -> 1e69 is not confluent
0049 030c 0328 -> 0308 0328 -> 01ed is confluent 0049 0328 030c -> 0323 030c -> 01ed
004f 030c 0300 -> 031b 0300 -> 1e17 is confluent 004f 0300 030c -> 031b 030c -> 1e17
004f 030c 0301 -> 031b 0301 -> 1e17 is confluent 004f 0301 030c -> 031b 030c -> 1e17
004f 030c 0302 -> 031b 0302 -> 1e69 is confluent 004f 0302 030c -> 031b 030c -> 1e69
004f 030c 0303 -> 031b 0303 -> 1e17 is confluent 004f 0303 030c -> 031b 030c -> 1e17
004f 030c 0304 -> 031b 0304 -> 1e69 is confluent 004f 0304 030c -> 031b 030c -> 1e69
004f 030c 0306 -> 031b 0306 -> 1e69 is confluent 004f 0306 030c -> 031b 030c -> 1e69
004f 030c 0307 -> 031b 0307 -> 1e69 is confluent 004f 0307 030c -> 031b 030c -> 1e69
004f 030c 0308 -> 031b 0308 -> 01d8 is confluent 004f 0308 030c -> 031b 030c -> 01d8
004f 030c 0309 -> 031b 0309 -> 1e17 is confluent 004f 0309 030c -> 031b 030c -> 1e17
004f 030c 030a -> 031b 030a -> 1e69 is not confluent
004f 030c 030c -> 031b 030c -> 1e17 is confluent 004f 030c 030c -> 031b 030c -> 1e17
004f 030c 031b -> 031b 031b -> 1ef1 is confluent 004f 031b 030c -> 0308 030c -> 1ef1
004f 030c 0323 -> 031b 0323 -> 1e69 is confluent 004f 0323 030c -> 031b 030c -> 1e69
004f 030c 0328 -> 031b 0328 -> 1ef1 is confluent 004f 0328 030c -> 030c 030c -> 1ef1
0053 030c 0300 -> 0327 0300 -> 1e7b is not confluent
0053 030c 0301 -> 0327 0301 -> 1e7b is confluent 0053 0301 030c -> 0327 030c -> 1e7b
0053 030c 0302 -> 0327 0302 -> 1e7b is confluent 0053 0302 030c -> 0327 030c -> 1e7b
0053 030c 0303 -> 0327 0303 -> 1e7b is not confluent
0053 030c 0304 -> 0327 0304 -> 1e7b is not confluent
0053 030c 0306 -> 0327 0306 -> 1e7b is not confluent
0053 030c 0307 -> 0327 0307 -> 1e7b is confluent 0053 0307 030c -> 0323 030c -> 1e7b
0053 030c 0308 -> 0327 0308 -> 0231 is not confluent
0053 030c 0309 -> 0327 0309 -> 1e7b is not confluent
0053 030c 030c -> 0327 030c -> 1e7b is confluent 0053 030c 030c -> 0327 030c -> 1e7b
0053 030c 0323 -> 0327 0323 -> 1e7b is confluent 0053 0323 030c -> 0327 030c -> 1e7b
0053 030c 0327 -> 0327 0327 -> 1e1d is confluent 0053 0327 030c -> 0307 030c -> 1e1d
0053 030c 0328 -> 0327 0328 -> 1e7b is not confluent
0055 030c 0300 -> 0323 0300 -> 01d8 is confluent 0055 0300 030c -> 031b 030c -> 01d8
0055 030c 0301 -> 0323 0301 -> 1e65 is confluent 0055 0301 030c -> 031b 030c -> 1e65
0055 030c 0302 -> 0323 0302 -> 1ef1 is confluent 0055 0302 030c -> 0323 030c -> 1ef1
0055 030c 0303 -> 0323 0303 -> 01d8 is confluent 0055 0303 030c -> 031b 030c -> 01d8
0055 030c 0304 -> 0323 0304 -> 1e7b is confluent 0055 0304 030c -> 0323 030c -> 1e7b
0055 030c 0306 -> 0323 0306 -> 1e7b is confluent 0055 0306 030c -> 0323 030c -> 1e7b
0055 030c 0307 -> 0323 0307 -> 1e7b is not confluent
0055 030c 0308 -> 0323 0308 -> 1e7b is confluent 0055 0308 030c -> 0323 030c -> 1e7b
0055 030c 0309 -> 0323 0309 -> 01d8 is confluent 0055 0309 030c -> 031b 030c -> 01d8
0055 030c 030a -> 0323 030a -> 1e7b is confluent 0055 030a 030c -> 031b 030c -> 1e7b
0055 030c 030c -> 0323 030c -> 1e67 is confluent 0055 030c 030c -> 0323 030c -> 1e67
0055 030c 031b -> 0323 031b -> 1e7b is confluent 0055 031b 030c -> 0323 030c -> 1e7b
0055 030c 0323 -> 0323 0323 -> 1e69 is confluent 0055 0323 030c -> 031b 030c -> 1e69
0055 030c 0327 -> 0323 0327 -> 1e69 is not confluent
0055 030c 0328 -> 0323 0328 -> 1e7b is confluent 0055 0328 030c -> 031b 030c -> 1e7b
0061 030c 0300 -> 0323 0300 -> 01d8 is confluent 0061 0300 030c -> 0323 030c -> 01d8
0061 030c 0301 -> 0323 0301 -> 1e65 is confluent 0061 0301 030c -> 0308 030c -> 1e65
0061 030c 0302 -> 0323 0302 -> 1ef1 is confluent 0061 0302 030c -> 0323 030c -> 1ef1
0061 030c 0303 -> 0323 0303 -> 01d8 is confluent 0061 0303 030c -> 0323 030c -> 01d8
0061 030c 0304 -> 0323 0304 -> 1e7b is confluent 0061 0304 030c -> 0308 030c -> 1e7b
0061 030c 0306 -> 0323 0306 -> 1e7b is confluent 0061 0306 030c -> 0323 030c -> 1e7b
0061 030c 0307 -> 0323 0307 -> 1e7b is confluent 0061 0307 030c -> 0323 030c -> 1e7b
0061 030c 0308 -> 0323 0308 -> 1e7b is confluent 0061 0308 030c -> 030a 030c -> 1e7b
0061 030c 0309 -> 0323 0309 -> 01d8 is confluent 0061 0309 030c -> 0323 030c -> 01d8
0061 030c 030a -> 0323 030a -> 1e7b is confluent 0061 030a 030c -> 0323 030c -> 1e7b
0061 030c 030c -> 0323 030c -> 1e67 is confluent 0061 030c 030c -> 0323 030c -> 1e67
0061 030c 031b -> 0323 031b -> 1e7b is not confluent
0061 030c 0323 -> 0323 0323 -> 1e69 is confluent 0061 0323 030c -> 030a 030c -> 1e69
0061 030c 0327 -> 0323 0327 -> 1e69 is not confluent
0061 030c 0328 -> 0323 0328 -> 1e7b is confluent 0061 0328 030c -> 030a 030c -> 1e7b
0063 030c 0300 -> 0302 0300 -> 1ef1 is not confluent
0063 030c 0301 -> 0302 0301 -> 1ef1 is confluent 0063 0301 030c -> 0327 030c -> 1ef1
0063 030c 0302 -> 0302 0302 -> 1e69 is confluent 0063 0302 030c -> 0327 030c -> 1e69
0063 030c 0303 -> 0302 0303 -> 1e17 is not confluent
0063 030c 0304 -> 0302 0304 -> 1e17 is not confluent
0063 030c 0306 -> 0302 0306 -> 1e7b is not confluent
0063 030c 0307 -> 0302 0307 -> 1e67 is confluent 0063 0307 030c -> 0327 030c -> 1e67
0063 030c 0308 -> 0302 0308 -> 1e69 is not confluent
0063 030c 0309 -> 0302 0309 -> 1e17 is not confluent
0063 030c 030a -> 0302 030a -> 1ef1 is not confluent
0063 030c 030c -> 0302 030c -> 1e17 is confluent 0063 030c 030c -> 0302 030c -> 1e17
0063 030c 031b -> 0302 031b -> 1ee3 is not confluent
0063 030c 0323 -> 0302 0323 -> 1ef1 is not confluent
0063 030c 0327 -> 0302 0327 -> 1e69 is confluent 0063 0327 030c -> 030c 030c -> 1e69
0065 030c 0300 -> 0327 0300 -> 1e7b is confluent 0065 0300 030c -> 0327 030c -> 1e7b
0065 030c 0301 -> 0327 0301 -> 1e7b is confluent 0065 0301 030c -> 0327 030c -> 1e7b
0065 030c 0302 -> 0327 0302 -> 1e7b is confluent 0065 0302 030c -> 0327 030c -> 1e7b
0065 030c 0303 -> 0327 0303 -> 1e7b is confluent 0065 0303 030c -> 0327 030c -> 1e7b
0065 030c 0304 -> 0327 0304 -> 1e7b is confluent 0065 0304 030c -> 0327 030c -> 1e7b
0065 030c 0306 -> 0327 0306 -> 1e7b is confluent 0065 0306 030c -> 0327 030c -> 1e7b
0065 030c 0307 -> 0327 0307 -> 1e7b is confluent 0065 0307 030c -> 0327 030c -> 1e7b
0065 030c 0308 -> 0327 0308 -> 0231 is confluent 0065 0308 030c -> 0327 030c -> 0231
0065 030c 0309 -> 0327 0309 -> 1e7b is confluent 0065 0309 030c -> 0327 030c -> 1e7b
0065 030c 030c -> 0327 030c -> 1e7b is confluent 0065 030c 030c -> 0327 030c -> 1e7b
0065 030c 0323 -> 0327 0323 -> 1e7b is confluent 0065 0323 030c -> 0327 030c -> 1e7b
0065 030c 0327 -> 0327 0327 -> 1e1d is confluent 0065 0327 030c -> 0328 030c -> 1e1d
0065 030c 0328 -> 0327 0328 -> 1e7b is confluent 0065 0328 030c -> 0327 030c -> 1e7b
0069 030c 0300 -> 0308 0300 -> 1e67 is confluent 0069 0300 030c -> 030c 030c -> 1e67
0069 030c 0301 -> 0308 0301 -> 1e67 is confluent 0069 0301 030c -> 0308 030c -> 1e67
0069 030c 0302 -> 0308 0302 -> 1e67 is confluent 0069 0302 030c -> 0323 030c -> 1e67
0069 030c 0303 -> 0308 0303 -> 1e17 is confluent 0069 0303 030c -> 0308 030c -> 1e17
0069 030c 0304 -> 0308 0304 -> 1e67 is confluent 0069 0304 030c -> 0323 030c -> 1e67
0069 030c 0306 -> 0308 0306 -> 1e7b is confluent 0069 0306 030c -> 0323 030c -> 1e7b
0069 030c 0307 -> 0308 0307 -> 01e1 is not confluent
0069 030c 0308 -> 0308 0308 -> 01da is confluent 0069 0308 030c -> 0328 030c -> 01da
0069 030c 0309 -> 0308 0309 -> 1e17 is confluent 0069 0309 030c -> 0308 030c -> 1e17
0069 030c 030a -> 0308 030a -> 0231 is not confluent
0069 030c 030c -> 0308 030c -> 1e7b is confluent 0069 030c 030c -> 0308 030c -> 1e7b
0069 030c 031b -> 0308 031b -> 1e7b is not confluent
0069 030c 0323 -> 0308 0323 -> 1ec7 is confluent 0069 0323 030c -> 0308 030c -> 1ec7
0069 030c 0327 -> 0308 0327 -> 1e69 is not confluent
0069 030c 0328 -> 0308 0328 -> 01ed is confluent 0069 0328 030c -> 0323 030c -> 01ed
006f 030c 0300 -> 031b 0300 -> 1e17 is confluent 006f 0300 030c -> 031b 030c -> 1e17
006f 030c 0301 -> 031b 0301 -> 1e17 is confluent 006f 0301 030c -> 031b 030c -> 1e17
006f 030c 0302 -> 031b 0302 -> 1e69 is confluent 006f 0302 030c -> 031b 030c -> 1e69
006f 030c 0303 -> 031b 0303 -> 1e17 is confluent 006f 0303 030c -> 031b 030c -> 1e17
006f 030c 0304 -> 031b 0304 -> 1e69 is confluent 006f 0304 030c -> 031b 030c -> 1e69
006f 030c 0306 -> 031b 0306 -> 1e69 is confluent 006f 0306 030c -> 031b 030c -> 1e69
006f 030c 0307 -> 031b 0307 -> 1e69 is confluent 006f 0307 030c -> 031b 030c -> 1e69
006f 030c 0308 -> 031b 0308 -> 01d8 is confluent 006f 0308 030c -> 031b 030c -> 01d8
006f 030c 0309 -> 031b 0309 -> 1e17 is confluent 006f 0309 030c -> 031b 030c -> 1e17
006f 030c 030a -> 031b 030a -> 1e69 is not confluent
006f 030c 030c -> 031b 030c -> 1e17 is confluent 006f 030c 030c -> 031b 030c -> 1e17
006f 030c 031b -> 031b 031b -> 1ef1 is confluent 006f 031b 030c -> 0308 030c -> 1ef1
006f 030c 0323 -> 031b 0323 -> 1e69 is confluent 006f 0323 030c -> 031b 030c -> 1e69
006f 030c 0328 -> 031b 0328 -> 1ef1 is confluent 006f 0328 030c -> 030c 030c -> 1ef1
0073 030c 0300 -> 0327 0300 -> 1e7b is not confluent
0073 030c 0301 -> 0327 0301 -> 1e7b is confluent 0073 0301 030c -> 0327 030c -> 1e7b
0073 030c 0302 -> 0327 0302 -> 1e7b is confluent 0073 0302 030c -> 0327 030c -> 1e7b
0073 030c 0303 -> 0327 0303 -> 1e7b is not confluent
0073 030c 0304 -> 0327 0304 -> 1e7b is not confluent
0073 030c 0306 -> 0327 0306 -> 1e7b is not confluent
0073 030c 0307 -> 0327 0307 -> 1e7b is confluent 0073 0307 030c -> 0323 030c -> 1e7b
0073 030c 0308 -> 0327 0308 -> 0231 is not confluent
0073 030c 0309 -> 0327 0309 -> 1e7b is not confluent
0073 030c 030c -> 0327 030c -> 1e7b is confluent 0073 030c 030c -> 0327 030c -> 1e7b
0073 030c 0323 -> 0327 0323 -> 1e7b is confluent 0073 0323 030c -> 0327 030c -> 1e7b
0073 030c 0327 -> 0327 0327 -> 1e1d is confluent 0073 0327 030c -> 0307 030c -> 1e1d
0073 030c 0328 -> 0327 0328 -> 1e7b is not confluent
0075 030c 0300 -> 0323 0300 -> 01d8 is confluent 0075 0300 030c -> 031b 030c -> 01d8
0075 030c 0301 -> 0323 0301 -> 1e65 is confluent 0075 0301 030c -> 031b 030c -> 1e65
0075 030c 0302 -> 0323 0302 -> 1ef1 is confluent 0075 0302 030c -> 0323 030c -> 1ef1
0075 030c 0303 -> 0323 0303 -> 01d8 is confluent 0075 0303 030c -> 031b 030c -> 01d8
0075 030c 0304 -> 0323 0304 -> 1e7b is confluent 0075 0304 030c -> 0323 030c -> 1e7b
0075 030c 0306 -> 0323 0306 -> 1e7b is confluent 0075 0306 030c -> 0323 030c -> 1e7b
0075 030c 0307 -> 0323 0307 -> 1e7b is not confluent
0075 030c 0308 -> 0323 0308 -> 1e7b is confluent 0075 0308 030c -> 0323 030c -> 1e7b
0075 030c 0309 -> 0323 0309 -> 01d8 is confluent 0075 0309 030c -> 031b 030c -> 01d8
0075 030c 030a -> 0323 030a -> 1e7b is confluent 0075 030a 030c -> 031b 030c -> 1e7b
0075 030c 030c -> 0323 030c -> 1e67 is confluent 0075 030c 030c -> 0323 030c -> 1e67
0075 030c 031b -> 0323 031b -> 1e7b is confluent 0075 031b 030c -> 0323 030c -> 1e7b
0075 030c 0323 -> 0323 0323 -> 1e69 is confluent 0075 0323 030c -> 031b 030c -> 1e69
0075 030c 0327 -> 0323 0327 -> 1e69 is not confluent
0075 030c 0328 -> 0323 0328 -> 1e7b is confluent 0075 0328 030c -> 031b 030c -> 1e7b
0314 0313 0345 -> 1f66 0345 -> 1fa6 is not confluent
0342 0313 0300 -> 0342 0300 -> 0314 is confluent 0342 0300 0313 -> 0314 0313 -> 0314
0342 0313 0301 -> 0342 0301 -> 0314 is confluent 0342 0301 0313 -> 0314 0313 -> 0314
0342 0313 0313 -> 0342 0313 -> 0342 is confluent 0342 0313 0313 -> 0342 0313 -> 0342
0342 0313 0314 -> 0342 0314 -> 0342 is confluent 0342 0314 0313 -> 0342 0313 -> 0342
0342 0313 0342 -> 0342 0342 -> 0314 is confluent 0342 0342 0313 -> 0314 0313 -> 0314
0386 0313 0345 -> 1f0c 0345 -> 1f8c is not confluent
0389 0313 0345 -> 1f2c 0345 -> 1f9c is not confluent
038f 0313 0345 -> 1f6c 0345 -> 1fac is not confluent
0391 0313 0300 -> 1f08 0300 -> 1f0a is confluent 0391 0300 0313 -> 0314 0313 -> 1f0a
0391 0313 0301 -> 1f08 0301 -> 1f0c is confluent 0391 0301 0313 -> 0314 0313 -> 1f0c
0391 0313 0342 -> 1f08 0342 -> 1f0e is not confluent
0391 0313 0345 -> 1f08 0345 -> 0342 is confluent 0391 0345 0313 -> 0314 0313 -> 0342
0395 0313 0300 -> 1f18 0300 -> 1f1a is confluent 0395 0300 0313 -> 0314 0313 -> 1f1a
0395 0313 0301 -> 1f18 0301 -> 1f1c is confluent 0395 0301 0313 -> 0314 0313 -> 1f1c
0397 0313 0300 -> 1f28 0300 -> 1f2a is confluent 0397 0300 0313 -> 0314 0313 -> 1f2a
0397 0313 0301 -> 1f28 0301 -> 1f2c is confluent 0397 0301 0313 -> 0314 0313 -> 1f2c
0397 0313 0342 -> 1f28 0342 -> 1f2e is not confluent
0397 0313 0345 -> 1f28 0345 -> 0342 is confluent 0397 0345 0313 -> 0314 0313 -> 0342
0399 0313 0300 -> 1f38 0300 -> 1f3a is confluent 0399 0300 0313 -> 0314 0313 -> 1f3a
0399 0313 0301 -> 1f38 0301 -> 1f3c is confluent 0399 0301 0313 -> 0314 0313 -> 1f3c
0399 0313 0342 -> 1f38 0342 -> 1f3e is not confluent
039f 0313 0300 -> 1f48 0300 -> 1f4a is confluent 039f 0300 0313 -> 0314 0313 -> 1f4a
039f 0313 0301 -> 1f48 0301 -> 1f4c is confluent 039f 0301 0313 -> 0314 0313 -> 1f4c
03a9 0313 0300 -> 1f68 0300 -> 1f6a is confluent 03a9 0300 0313 -> 0314 0313 -> 1f6a
03a9 0313 0301 -> 1f68 0301 -> 1f6c is confluent 03a9 0301 0313 -> 0314 0313 -> 1f6c
03a9 0313 0342 -> 1f68 0342 -> 1f6e is not confluent
03a9 0313 0345 -> 1f68 0345 -> 0342 is confluent 03a9 0345 0313 -> 0314 0313 -> 0342
03ac 0313 0345 -> 1f04 0345 -> 1f84 is confluent 03ac 0345 0313 -> 0314 0313 -> 1f84
03ae 0313 0345 -> 1f24 0345 -> 1f94 is confluent 03ae 0345 0313 -> 0314 0313 -> 1f94
03b1 0313 0300 -> 1f00 0300 -> 1f02 is confluent 03b1 0300 0313 -> 0314 0313 -> 1f02
03b1 0313 0301 -> 1f00 0301 -> 1f04 is confluent 03b1 0301 0313 -> 0314 0313 -> 1f04
03b1 0313 0342 -> 1f00 0342 -> 1f06 is confluent 03b1 0342 0313 -> 0314 0313 -> 1f06
03b1 0313 0345 -> 1f00 0345 -> 0342 is confluent 03b1 0345 0313 -> 0314 0313 -> 0342
03b5 0313 0300 -> 1f10 0300 -> 1f12 is confluent 03b5 0300 0313 -> 0314 0313 -> 1f12
03b5 0313 0301 -> 1f10 0301 -> 1f14 is confluent 03b5 0301 0313 -> 0314 0313 -> 1f14
03b7 0313 0300 -> 1f20 0300 -> 1f22 is confluent 03b7 0300 0313 -> 0314 0313 -> 1f22
03b7 0313 0301 -> 1f20 0301 -> 1f24 is confluent 03b7 0301 0313 -> 0314 0313 -> 1f24
03b7 0313 0342 -> 1f20 0342 -> 1f26 is confluent 03b7 0342 0313 -> 0314 0313 -> 1f26
03b7 0313 0345 -> 1f20 0345 -> 0342 is confluent 03b7 0345 0313 -> 0314 0313 -> 0342
03b9 0313 0300 -> 1f30 0300 -> 1f32 is confluent 03b9 0300 0313 -> 0314 0313 -> 1f32
03b9 0313 0301 -> 1f30 0301 -> 1f34 is confluent 03b9 0301 0313 -> 0314 0313 -> 1f34
03b9 0313 0342 -> 1f30 0342 -> 1f36 is confluent 03b9 0342 0313 -> 0314 0313 -> 1f36
03bf 0313 0300 -> 1f40 0300 -> 1f42 is confluent 03bf 0300 0313 -> 0314 0313 -> 1f42
03bf 0313 0301 -> 1f40 0301 -> 1f44 is confluent 03bf 0301 0313 -> 0314 0313 -> 1f44
03c5 0313 0300 -> 1f50 0300 -> 1f52 is confluent 03c5 0300 0313 -> 0314 0313 -> 1f52
03c5 0313 0301 -> 1f50 0301 -> 1f54 is confluent 03c5 0301 0313 -> 0314 0313 -> 1f54
03c5 0313 0342 -> 1f50 0342 -> 1f56 is confluent 03c5 0342 0313 -> 0314 0313 -> 1f56
03c9 0313 0300 -> 1f60 0300 -> 1f62 is confluent 03c9 0300 0313 -> 0314 0313 -> 1f62
03c9 0313 0301 -> 1f60 0301 -> 1f64 is confluent 03c9 0301 0313 -> 0314 0313 -> 1f64
03c9 0313 0342 -> 1f60 0342 -> 1f66 is confluent 03c9 0342 0313 -> 0314 0313 -> 1f66
03c9 0313 0345 -> 1f60 0345 -> 0342 is confluent 03c9 0345 0313 -> 0314 0313 -> 0342
03ce 0313 0345 -> 1f64 0345 -> 1fa4 is confluent 03ce 0345 0313 -> 0314 0313 -> 1fa4
1f70 0313 0345 -> 1f02 0345 -> 1f82 is confluent 1f70 0345 0313 -> 0314 0313 -> 1f82
1f74 0313 0345 -> 1f22 0345 -> 1f92 is confluent 1f74 0345 0313 -> 0314 0313 -> 1f92
1f7c 0313 0345 -> 1f62 0345 -> 1fa2 is confluent 1f7c 0345 0313 -> 0314 0313 -> 1fa2
1fab 0313 0313 -> 1fab 0313 -> 1fab is confluent 1fab 0313 0313 -> 1fab 0313 -> 1fab
1fab 0313 0314 -> 1fab 0314 -> 1fab is confluent 1fab 0314 0313 -> 1fab 0313 -> 1fab
1fad 0313 0313 -> 1fad 0313 -> 1fad is confluent 1fad 0313 0313 -> 1fad 0313 -> 1fad
1fad 0313 0314 -> 1fad 0314 -> 1fad is confluent 1fad 0314 0313 -> 1fad 0313 -> 1fad
1faf 0313 0313 -> 1faf 0313 -> 1faf is confluent 1faf 0313 0313 -> 1faf 0313 -> 1faf
1faf 0313 0314 -> 1faf 0314 -> 1faf is confluent 1faf 0314 0313 -> 1faf 0313 -> 1faf
1fb3 0313 0300 -> 1f80 0300 -> 1f82 is confluent 1fb3 0300 0313 -> 0314 0313 -> 1f82
1fb3 0313 0301 -> 1f80 0301 -> 1f84 is confluent 1fb3 0301 0313 -> 0314 0313 -> 1f84
1fb3 0313 0342 -> 1f80 0342 -> 1f86 is confluent 1fb3 0342 0313 -> 0314 0313 -> 1f86
1fb6 0313 0345 -> 1f06 0345 -> 1f86 is confluent 1fb6 0345 0313 -> 0314 0313 -> 1f86
1fba 0313 0345 -> 1f0a 0345 -> 1f8a is not confluent
1fbc 0313 0300 -> 1f88 0300 -> 1f8a is not confluent
1fbc 0313 0301 -> 1f88 0301 -> 1f8c is not confluent
1fbc 0313 0342 -> 1f88 0342 -> 1f8e is not confluent
1fc3 0313 0300 -> 1f90 0300 -> 1f92 is confluent 1fc3 0300 0313 -> 0314 0313 -> 1f92
1fc3 0313 0301 -> 1f90 0301 -> 1f94 is confluent 1fc3 0301 0313 -> 0314 0313 -> 1f94
1fc3 0313 0342 -> 1f90 0342 -> 1f96 is confluent 1fc3 0342 0313 -> 0314 0313 -> 1f96
1fc6 0313 0345 -> 1f26 0345 -> 1f96 is confluent 1fc6 0345 0313 -> 0314 0313 -> 1f96
1fca 0313 0345 -> 1f2a 0345 -> 1f9a is not confluent
1fcc 0313 0300 -> 1f98 0300 -> 1f9a is not confluent
1fcc 0313 0301 -> 1f98 0301 -> 1f9c is not confluent
1fcc 0313 0342 -> 1f98 0342 -> 1f9e is not confluent
1ff3 0313 0300 -> 1fa0 0300 -> 1fa2 is confluent 1ff3 0300 0313 -> 0314 0313 -> 1fa2
1ff3 0313 0301 -> 1fa0 0301 -> 1fa4 is confluent 1ff3 0301 0313 -> 0314 0313 -> 1fa4
1ff3 0313 0342 -> 1fa0 0342 -> 1fa6 is confluent 1ff3 0342 0313 -> 0314 0313 -> 1fa6
1ff6 0313 0345 -> 1f66 0345 -> 1fa6 is confluent 1ff6 0345 0313 -> 0314 0313 -> 1fa6
1ffa 0313 0345 -> 1f6a 0345 -> 1faa is not confluent
1ffc 0313 0300 -> 1fa8 0300 -> 1faa is not confluent
1ffc 0313 0301 -> 1fa8 0301 -> 1fac is not confluent
1ffc 0313 0342 -> 1fa8 0342 -> 1fae is not confluent
0314 0314 0345 -> 1f67 0345 -> 1fa7 is not confluent
0342 0314 0300 -> 0342 0300 -> 0314 is confluent 0342 0300 0314 -> 0314 0314 -> 0314
0342 0314 0301 -> 0342 0301 -> 0314 is confluent 0342 0301 0314 -> 0314 0314 -> 0314
0342 0314 0313 -> 0342 0313 -> 0342 is confluent 0342 0313 0314 -> 0342 0314 -> 0342
0342 0314 0314 -> 0342 0314 -> 0342 is confluent 0342 0314 0314 -> 0342 0314 -> 0342
0342 0314 0342 -> 0342 0342 -> 0314 is confluent 0342 0342 0314 -> 0314 0314 -> 0314
0386 0314 0345 -> 1f0d 0345 -> 1f8d is not confluent
0389 0314 0345 -> 1f2d 0345 -> 1f9d is not confluent
038f 0314 0345 -> 1f6d 0345 -> 1fad is not confluent
0391 0314 0300 -> 1f09 0300 -> 1f0b is confluent 0391 0300 0314 -> 0314 0314 -> 1f0b
0391 0314 0301 -> 1f09 0301 -> 1f0d is confluent 0391 0301 0314 -> 0314 0314 -> 1f0d
0391 0314 0342 -> 1f09 0342 -> 1f0f is not confluent
0391 0314 0345 -> 1f09 0345 -> 0342 is confluent 0391 0345 0314 -> 0314 0314 -> 0342
0395 0314 0300 -> 1f19 0300 -> 1f1b is confluent 0395 0300 0314 -> 0314 0314 -> 1f1b
0395 0314 0301 -> 1f19 0301 -> 1f1d is confluent 0395 0301 0314 -> 0314 0314 -> 1f1d
0397 0314 0300 -> 1f29 0300 -> 1f2b is confluent 0397 0300 0314 -> 0314 0314 -> 1f2b
0397 0314 0301 -> 1f29 0301 -> 1f2d is confluent 0397 0301 0314 -> 0314 0314 -> 1f2d
0397 0314 0342 -> 1f29 0342 -> 1f2f is not confluent
0397 0314 0345 -> 1f29 0345 -> 0342 is confluent 0397 0345 0314 -> 0314 0314 -> 0342
0399 0314 0300 -> 1f39 0300 -> 1f3b is confluent 0399 0300 0314 -> 0314 0314 -> 1f3b
0399 0314 0301 -> 1f39 0301 -> 1f3d is confluent 0399 0301 0314 -> 0314 0314 -> 1f3d
0399 0314 0342 -> 1f39 0342 -> 1f3f is not confluent
039f 0314 0300 -> 1f49 0300 -> 1f4b is confluent 039f 0300 0314 -> 0314 0314 -> 1f4b
039f 0314 0301 -> 1f49 0301 -> 1f4d is confluent 039f 0301 0314 -> 0314 0314 -> 1f4d
03a5 0314 0300 -> 1f59 0300 -> 1f5b is confluent 03a5 0300 0314 -> 0314 0314 -> 1f5b
03a5 0314 0301 -> 1f59 0301 -> 1f5d is confluent 03a5 0301 0314 -> 0314 0314 -> 1f5d
03a5 0314 0342 -> 1f59 0342 -> 1f5f is not confluent
03a9 0314 0300 -> 1f69 0300 -> 1f6b is confluent 03a9 0300 0314 -> 0314 0314 -> 1f6b
03a9 0314 0301 -> 1f69 0301 -> 1f6d is confluent 03a9 0301 0314 -> 0314 0314 -> 1f6d
03a9 0314 0342 -> 1f69 0342 -> 1f6f is not confluent
03a9 0314 0345 -> 1f69 0345 -> 0342 is confluent 03a9 0345 0314 -> 0314 0314 -> 0342
03ac 0314 0345 -> 1f05 0345 -> 1f85 is confluent 03ac 0345 0314 -> 0314 0314 -> 1f85
03ae 0314 0345 -> 1f25 0345 -> 1f95 is confluent 03ae 0345 0314 -> 0314 0314 -> 1f95
03b1 0314 0300 -> 1f01 0300 -> 1f03 is confluent 03b1 0300 0314 -> 0314 0314 -> 1f03
03b1 0314 0301 -> 1f01 0301 -> 1f05 is confluent 03b1 0301 0314 -> 0314 0314 -> 1f05
03b1 0314 0342 -> 1f01 0342 -> 1f07 is confluent 03b1 0342 0314 -> 0314 0314 -> 1f07
03b1 0314 0345 -> 1f01 0345 -> 0342 is confluent 03b1 0345 0314 -> 0314 0314 -> 0342
03b5 0314 0300 -> 1f11 0300 -> 1f13 is confluent 03b5 0300 0314 -> 0314 0314 -> 1f13
03b5 0314 0301 -> 1f11 0301 -> 1f15 is confluent 03b5 0301 0314 -> 0314 0314 -> 1f15
03b7 0314 0300 -> 1f21 0300 -> 1f23 is confluent 03b7 0300 0314 -> 0314 0314 -> 1f23
03b7 0314 0301 -> 1f21 0301 -> 1f25 is confluent 03b7 0301 0314 -> 0314 0314 -> 1f25
03b7 0314 0342 -> 1f21 0342 -> 1f27 is confluent 03b7 0342 0314 -> 0314 0314 -> 1f27
03b7 0314 0345 -> 1f21 0345 -> 0342 is confluent 03b7 0345 0314 -> 0314 0314 -> 0342
03b9 0314 0300 -> 1f31 0300 -> 1f33 is confluent 03b9 0300 0314 -> 0314 0314 -> 1f33
03b9 0314 0301 -> 1f31 0301 -> 1f35 is confluent 03b9 0301 0314 -> 0314 0314 -> 1f35
03b9 0314 0342 -> 1f31 0342 -> 1f37 is confluent 03b9 0342 0314 -> 0314 0314 -> 1f37
03bf 0314 0300 -> 1f41 0300 -> 1f43 is confluent 03bf 0300 0314 -> 0314 0314 -> 1f43
03bf 0314 0301 -> 1f41 0301 -> 1f45 is confluent 03bf 0301 0314 -> 0314 0314 -> 1f45
03c5 0314 0300 -> 1f51 0300 -> 1f53 is confluent 03c5 0300 0314 -> 0314 0314 -> 1f53
03c5 0314 0301 -> 1f51 0301 -> 1f55 is confluent 03c5 0301 0314 -> 0314 0314 -> 1f55
03c5 0314 0342 -> 1f51 0342 -> 1f57 is confluent 03c5 0342 0314 -> 0314 0314 -> 1f57
03c9 0314 0300 -> 1f61 0300 -> 1f63 is confluent 03c9 0300 0314 -> 0314 0314 -> 1f63
03c9 0314 0301 -> 1f61 0301 -> 1f65 is confluent 03c9 0301 0314 -> 0314 0314 -> 1f65
03c9 0314 0342 -> 1f61 0342 -> 1f67 is confluent 03c9 0342 0314 -> 0314 0314 -> 1f67
03c9 0314 0345 -> 1f61 0345 -> 0342 is confluent 03c9 0345 0314 -> 0314 0314 -> 0342
03ce 0314 0345 -> 1f65 0345 -> 1fa5 is confluent 03ce 0345 0314 -> 0314 0314 -> 1fa5
1f70 0314 0345 -> 1f03 0345 -> 1f83 is confluent 1f70 0345 0314 -> 0314 0314 -> 1f83
1f74 0314 0345 -> 1f23 0345 -> 1f93 is confluent 1f74 0345 0314 -> 0314 0314 -> 1f93
1f7c 0314 0345 -> 1f63 0345 -> 1fa3 is confluent 1f7c 0345 0314 -> 0314 0314 -> 1fa3
1fab 0314 0313 -> 1fab 0313 -> 1fab is confluent 1fab 0313 0314 -> 1fab 0314 -> 1fab
1fab 0314 0314 -> 1fab 0314 -> 1fab is confluent 1fab 0314 0314 -> 1fab 0314 -> 1fab
1fad 0314 0313 -> 1fad 0313 -> 1fad is confluent 1fad 0313 0314 -> 1fad 0314 -> 1fad
1fad 0314 0314 -> 1fad 0314 -> 1fad is confluent 1fad 0314 0314 -> 1fad 0314 -> 1fad
1faf 0314 0313 -> 1faf 0313 -> 1faf is confluent 1faf 0313 0314 -> 1faf 0314 -> 1faf
1faf 0314 0314 -> 1faf 0314 -> 1faf is confluent 1faf 0314 0314 -> 1faf 0314 -> 1faf
1fb3 0314 0300 -> 1f81 0300 -> 1f83 is confluent 1fb3 0300 0314 -> 0314 0314 -> 1f83
1fb3 0314 0301 -> 1f81 0301 -> 1f85 is confluent 1fb3 0301 0314 -> 0314 0314 -> 1f85
1fb3 0314 0342 -> 1f81 0342 -> 1f87 is confluent 1fb3 0342 0314 -> 0314 0314 -> 1f87
1fb6 0314 0345 -> 1f07 0345 -> 1f87 is confluent 1fb6 0345 0314 -> 0314 0314 -> 1f87
1fba 0314 0345 -> 1f0b 0345 -> 1f8b is not confluent
1fbc 0314 0300 -> 1f89 0300 -> 1f8b is not confluent
1fbc 0314 0301 -> 1f89 0301 -> 1f8d is not confluent
1fbc 0314 0342 -> 1f89 0342 -> 1f8f is not confluent
1fc3 0314 0300 -> 1f91 0300 -> 1f93 is confluent 1fc3 0300 0314 -> 0314 0314 -> 1f93
1fc3 0314 0301 -> 1f91 0301 -> 1f95 is confluent 1fc3 0301 0314 -> 0314 0314 -> 1f95
1fc3 0314 0342 -> 1f91 0342 -> 1f97 is confluent 1fc3 0342 0314 -> 0314 0314 -> 1f97
1fc6 0314 0345 -> 1f27 0345 -> 1f97 is confluent 1fc6 0345 0314 -> 0314 0314 -> 1f97
1fca 0314 0345 -> 1f2b 0345 -> 1f9b is not confluent
1fcc 0314 0300 -> 1f99 0300 -> 1f9b is not confluent
1fcc 0314 0301 -> 1f99 0301 -> 1f9d is not confluent
1fcc 0314 0342 -> 1f99 0342 -> 1f9f is not confluent
1ff3 0314 0300 -> 1fa1 0300 -> 1fa3 is confluent 1ff3 0300 0314 -> 0314 0314 -> 1fa3
1ff3 0314 0301 -> 1fa1 0301 -> 1fa5 is confluent 1ff3 0301 0314 -> 0314 0314 -> 1fa5
1ff3 0314 0342 -> 1fa1 0342 -> 1fa7 is confluent 1ff3 0342 0314 -> 0314 0314 -> 1fa7
1ff6 0314 0345 -> 1f67 0345 -> 1fa7 is confluent 1ff6 0345 0314 -> 0314 0314 -> 1fa7
1ffa 0314 0345 -> 1f6b 0345 -> 1fab is not confluent
1ffc 0314 0300 -> 1fa9 0300 -> 1fab is not confluent
1ffc 0314 0301 -> 1fa9 0301 -> 1fad is not confluent
1ffc 0314 0342 -> 1fa9 0342 -> 1faf is not confluent
004f 031b 0300 -> 0308 0300 -> 1e67 is confluent 004f 0300 031b -> 031b 031b -> 1e67
004f 031b 0301 -> 0308 0301 -> 1e67 is confluent 004f 0301 031b -> 031b 031b -> 1e67
004f 031b 0302 -> 0308 0302 -> 1e67 is confluent 004f 0302 031b -> 031b 031b -> 1e67
004f 031b 0303 -> 0308 0303 -> 1e17 is confluent 004f 0303 031b -> 031b 031b -> 1e17
004f 031b 0304 -> 0308 0304 -> 1e67 is confluent 004f 0304 031b -> 031b 031b -> 1e67
004f 031b 0306 -> 0308 0306 -> 1e7b is confluent 004f 0306 031b -> 031b 031b -> 1e7b
004f 031b 0307 -> 0308 0307 -> 01e1 is confluent 004f 0307 031b -> 031b 031b -> 01e1
004f 031b 0308 -> 0308 0308 -> 01da is confluent 004f 0308 031b -> 031b 031b -> 01da
004f 031b 0309 -> 0308 0309 -> 1e17 is confluent 004f 0309 031b -> 031b 031b -> 1e17
004f 031b 030a -> 0308 030a -> 0231 is not confluent
004f 031b 030c -> 0308 030c -> 1e7b is confluent 004f 030c 031b -> 031b 031b -> 1e7b
004f 031b 031b -> 0308 031b -> 1e7b is confluent 004f 031b 031b -> 0308 031b -> 1e7b
004f 031b 0323 -> 0308 0323 -> 1ec7 is confluent 004f 0323 031b -> 031b 031b -> 1ec7
004f 031b 0327 -> 0308 0327 -> 1e69 is not confluent
004f 031b 0328 -> 0308 0328 -> 01ed is confluent 004f 0328 031b -> 030c 031b -> 01ed
0055 031b 0300 -> 0323 0300 -> 01d8 is confluent 0055 0300 031b -> 031b 031b -> 01d8
0055 031b 0301 -> 0323 0301 -> 1e65 is confluent 0055 0301 031b -> 031b 031b -> 1e65
0055 031b 0302 -> 0323 0302 -> 1ef1 is confluent 0055 0302 031b -> 0323 031b -> 1ef1
0055 031b 0303 -> 0323 0303 -> 01d8 is confluent 0055 0303 031b -> 031b 031b -> 01d8
0055 031b 0304 -> 0323 0304 -> 1e7b is confluent 0055 0304 031b -> 0323 031b -> 1e7b
0055 031b 0306 -> 0323 0306 -> 1e7b is confluent 0055 0306 031b -> 0323 031b -> 1e7b
0055 031b 0307 -> 0323 0307 -> 1e7b is not confluent
0055 031b 0308 -> 0323 0308 -> 1e7b is confluent 0055 0308 031b -> 0323 031b -> 1e7b
0055 031b 0309 -> 0323 0309 -> 01d8 is confluent 0055 0309 031b -> 031b 031b -> 01d8
0055 031b 030a -> 0323 030a -> 1e7b is confluent 0055 030a 031b -> 031b 031b -> 1e7b
0055 031b 030c -> 0323 030c -> 1e67 is confluent 0055 030c 031b -> 0323 031b -> 1e67
0055 031b 031b -> 0323 031b -> 1e7b is confluent 0055 031b 031b -> 0323 031b -> 1e7b
0055 031b 0323 -> 0323 0323 -> 1e69 is confluent 0055 0323 031b -> 031b 031b -> 1e69
0055 031b 0327 -> 0323 0327 -> 1e69 is not confluent
0055 031b 0328 -> 0323 0328 -> 1e7b is confluent 0055 0328 031b -> 031b 031b -> 1e7b
006f 031b 0300 -> 0308 0300 -> 1e67 is confluent 006f 0300 031b -> 031b 031b -> 1e67
006f 031b 0301 -> 0308 0301 -> 1e67 is confluent 006f 0301 031b -> 031b 031b -> 1e67
006f 031b 0302 -> 0308 0302 -> 1e67 is confluent 006f 0302 031b -> 031b 031b -> 1e67
006f 031b 0303 -> 0308 0303 -> 1e17 is confluent 006f 0303 031b -> 031b 031b -> 1e17
006f 031b 0304 -> 0308 0304 -> 1e67 is confluent 006f 0304 031b -> 031b 031b -> 1e67
006f 031b 0306 -> 0308 0306 -> 1e7b is confluent 006f 0306 031b -> 031b 031b -> 1e7b
006f 031b 0307 -> 0308 0307 -> 01e1 is confluent 006f 0307 031b -> 031b 031b -> 01e1
006f 031b 0308 -> 0308 0308 -> 01da is confluent 006f 0308 031b -> 031b 031b -> 01da
006f 031b 0309 -> 0308 0309 -> 1e17 is confluent 006f 0309 031b -> 031b 031b -> 1e17
006f 031b 030a -> 0308 030a -> 0231 is not confluent
006f 031b 030c -> 0308 030c -> 1e7b is confluent 006f 030c 031b -> 031b 031b -> 1e7b
006f 031b 031b -> 0308 031b -> 1e7b is confluent 006f 031b 031b -> 0308 031b -> 1e7b
006f 031b 0323 -> 0308 0323 -> 1ec7 is confluent 006f 0323 031b -> 031b 031b -> 1ec7
006f 031b 0327 -> 0308 0327 -> 1e69 is not confluent
006f 031b 0328 -> 0308 0328 -> 01ed is confluent 006f 0328 031b -> 030c 031b -> 01ed
0075 031b 0300 -> 0323 0300 -> 01d8 is confluent 0075 0300 031b -> 031b 031b -> 01d8
0075 031b 0301 -> 0323 0301 -> 1e65 is confluent 0075 0301 031b -> 031b 031b -> 1e65
0075 031b 0302 -> 0323 0302 -> 1ef1 is confluent 0075 0302 031b -> 0323 031b -> 1ef1
0075 031b 0303 -> 0323 0303 -> 01d8 is confluent 0075 0303 031b -> 031b 031b -> 01d8
0075 031b 0304 -> 0323 0304 -> 1e7b is confluent 0075 0304 031b -> 0323 031b -> 1e7b
0075 031b 0306 -> 0323 0306 -> 1e7b is confluent 0075 0306 031b -> 0323 031b -> 1e7b
0075 031b 0307 -> 0323 0307 -> 1e7b is not confluent
0075 031b 0308 -> 0323 0308 -> 1e7b is confluent 0075 0308 031b -> 0323 031b -> 1e7b
0075 031b 0309 -> 0323 0309 -> 01d8 is confluent 0075 0309 031b -> 031b 031b -> 01d8
0075 031b 030a -> 0323 030a -> 1e7b is confluent 0075 030a 031b -> 031b 031b -> 1e7b
0075 031b 030c -> 0323 030c -> 1e67 is confluent 0075 030c 031b -> 0323 031b -> 1e67
0075 031b 031b -> 0323 031b -> 1e7b is confluent 0075 031b 031b -> 0323 031b -> 1e7b
0075 031b 0323 -> 0323 0323 -> 1e69 is confluent 0075 0323 031b -> 031b 031b -> 1e69
0075 031b 0327 -> 0323 0327 -> 1e69 is not confluent
0075 031b 0328 -> 0323 0328 -> 1e7b is confluent 0075 0328 031b -> 031b 031b -> 1e7b
0041 0323 0300 -> 030a 0300 -> 1e67 is confluent 0041 0300 0323 -> 0323 0323 -> 1e67
0041 0323 0301 -> 030a 0301 -> 1e65 is confluent 0041 0301 0323 -> 0308 0323 -> 1e65
0041 0323 0302 -> 030a 0302 -> 1e65 is confluent 0041 0302 0323 -> 0323 0323 -> 1e65
0041 0323 0303 -> 030a 0303 -> 1e67 is confluent 0041 0303 0323 -> 0323 0323 -> 1e67
0041 0323 0304 -> 030a 0304 -> 1e65 is confluent 0041 0304 0323 -> 0308 0323 -> 1e65
0041 0323 0306 -> 030a 0306 -> 1e65 is confluent 0041 0306 0323 -> 0323 0323 -> 1e65
0041 0323 0307 -> 030a 0307 -> 0231 is confluent 0041 0307 0323 -> 0323 0323 -> 0231
0041 0323 0308 -> 030a 0308 -> 0231 is confluent 0041 0308 0323 -> 030a 0323 -> 0231
0041 0323 0309 -> 030a 0309 -> 1e67 is confluent 0041 0309 0323 -> 0323 0323 -> 1e67
0041 0323 030a -> 030a 030a -> 01fb is confluent 0041 030a 0323 -> 0323 0323 -> 01fb
0041 0323 030c -> 030a 030c -> 1e67 is confluent 0041 030c 0323 -> 0323 0323 -> 1e67
0041 0323 031b -> 030a 031b -> 1e69 is not confluent
0041 0323 0323 -> 030a 0323 -> 1ead is confluent 0041 0323 0323 -> 030a 0323 -> 1ead
0041 0323 0328 -> 030a 0328 -> 1e7b is confluent 0041 0328 0323 -> 030a 0323 -> 1e7b
0045 0323 0300 -> 0327 0300 -> 1e7b is confluent 0045 0300 0323 -> 0327 0323 -> 1e7b
0045 0323 0301 -> 0327 0301 -> 1e7b is confluent 0045 0301 0323 -> 0327 0323 -> 1e7b
0045 0323 0302 -> 0327 0302 -> 1e7b is confluent 0045 0302 0323 -> 0327 0323 -> 1e7b
0045 0323 0303 -> 0327 0303 -> 1e7b is confluent 0045 0303 0323 -> 0327 0323 -> 1e7b
0045 0323 0304 -> 0327 0304 -> 1e7b is confluent 0045 0304 0323 -> 0327 0323 -> 1e7b
0045 0323 0306 -> 0327 0306 -> 1e7b is confluent 0045 0306 0323 -> 0327 0323 -> 1e7b
0045 0323 0307 -> 0327 0307 -> 1e7b is confluent 0045 0307 0323 -> 0327 0323 -> 1e7b
0045 0323 0308 -> 0327 0308 -> 0231 is confluent 0045 0308 0323 -> 0327 0323 -> 0231
0045 0323 0309 -> 0327 0309 -> 1e7b is confluent 0045 0309 0323 -> 0327 0323 -> 1e7b
0045 0323 030c -> 0327 030c -> 1e7b is confluent 0045 030c 0323 -> 0327 0323 -> 1e7b
0045 0323 0323 -> 0327 0323 -> 1e7b is confluent 0045 0323 0323 -> 0327 0323 -> 1e7b
0045 0323 0327 -> 0327 0327 -> 1e1d is confluent 0045 0327 0323 -> 0328 0323 -> 1e1d
0045 0323 0328 -> 0327 0328 -> 1e7b is confluent 0045 0328 0323 -> 0327 0323 -> 1e7b
0049 0323 0300 -> 0308 0300 -> 1e67 is confluent 0049 0300 0323 -> 030c 0323 -> 1e67
0049 0323 0301 -> 0308 0301 -> 1e67 is confluent 0049 0301 0323 -> 0308 0323 -> 1e67
0049 0323 0302 -> 0308 0302 -> 1e67 is confluent 0049 0302 0323 -> 0323 0323 -> 1e67
0049 0323 0303 -> 0308 0303 -> 1e17 is confluent 0049 0303 0323 -> 0308 0323 -> 1e17
0049 0323 0304 -> 0308 0304 -> 1e67 is confluent 0049 0304 0323 -> 0323 0323 -> 1e67
0049 0323 0306 -> 0308 0306 -> 1e7b is confluent 0049 0306 0323 -> 0323 0323 -> 1e7b
0049 0323 0307 -> 0308 0307 -> 01e1 is confluent 0049 0307 0323 -> 0323 0323 -> 01e1
0049 0323 0308 -> 0308 0308 -> 01da is confluent 0049 0308 0323 -> 0328 0323 -> 01da
0049 0323 0309 -> 0308 0309 -> 1e17 is confluent 0049 0309 0323 -> 0308 0323 -> 1e17
0049 0323 030a -> 0308 030a -> 0231 is not confluent
0049 0323 030c -> 0308 030c -> 1e7b is confluent 0049 030c 0323 -> 0308 0323 -> 1e7b
0049 0323 031b -> 0308 031b -> 1e7b is not confluent
0049 0323 0323 -> 0308 0323 -> 1ec7 is confluent 0049 0323 0323 -> 0308 0323 -> 1ec7
0049 0323 0327 -> 0308 0327 -> 1e69 is not confluent
0049 0323 0328 -> 0308 0328 -> 01ed is confluent 0049 0328 0323 -> 0323 0323 -> 01ed
004c 0323 0304 -> 1e36 0304 -> 1e38 is not confluent
004f 0323 0300 -> 031b 0300 -> 1e17 is confluent 004f 0300 0323 -> 031b 0323 -> 1e17
004f 0323 0301 -> 031b 0301 -> 1e17 is confluent 004f 0301 0323 -> 031b 0323 -> 1e17
004f 0323 0302 -> 031b 0302 -> 1e69 is confluent 004f 0302 0323 -> 031b 0323 -> 1e69
004f 0323 0303 -> 031b 0303 -> 1e17 is confluent 004f 0303 0323 -> 031b 0323 -> 1e17
004f 0323 0304 -> 031b 0304 -> 1e69 is confluent 004f 0304 0323 -> 031b 0323 -> 1e69
004f 0323 0306 -> 031b 0306 -> 1e69 is confluent 004f 0306 0323 -> 031b 0323 -> 1e69
004f 0323 0307 -> 031b 0307 -> 1e69 is confluent 004f 0307 0323 -> 031b 0323 -> 1e69
004f 0323 0308 -> 031b 0308 -> 01d8 is confluent 004f 0308 0323 -> 031b 0323 -> 01d8
004f 0323 0309 -> 031b 0309 -> 1e17 is confluent 004f 0309 0323 -> 031b 0323 -> 1e17
004f 0323 030a -> 031b 030a -> 1e69 is not confluent
004f 0323 030c -> 031b 030c -> 1e17 is confluent 004f 030c 0323 -> 031b 0323 -> 1e17
004f 0323 031b -> 031b 031b -> 1ef1 is confluent 004f 031b 0323 -> 0308 0323 -> 1ef1
004f 0323 0323 -> 031b 0323 -> 1e69 is confluent 004f 0323 0323 -> 031b 0323 -> 1e69
004f 0323 0328 -> 031b 0328 -> 1ef1 is confluent 004f 0328 0323 -> 030c 0323 -> 1ef1
0052 0323 0304 -> 1e5a 0304 -> 1e5c is not confluent
0053 0323 0300 -> 0327 0300 -> 1e7b is not confluent
0053 0323 0301 -> 0327 0301 -> 1e7b is confluent 0053 0301 0323 -> 0327 0323 -> 1e7b
0053 0323 0302 -> 0327 0302 -> 1e7b is confluent 0053 0302 0323 -> 0327 0323 -> 1e7b
0053 0323 0303 -> 0327 0303 -> 1e7b is not confluent
0053 0323 0304 -> 0327 0304 -> 1e7b is not confluent
0053 0323 0306 -> 0327 0306 -> 1e7b is not confluent
0053 0323 0307 -> 0327 0307 -> 1e7b is confluent 0053 0307 0323 -> 0323 0323 -> 1e7b
0053 0323 0308 -> 0327 0308 -> 0231 is not confluent
0053 0323 0309 -> 0327 0309 -> 1e7b is not confluent
0053 0323 030c -> 0327 030c -> 1e7b is confluent 0053 030c 0323 -> 0327 0323 -> 1e7b
0053 0323 0323 -> 0327 0323 -> 1e7b is confluent 0053 0323 0323 -> 0327 0323 -> 1e7b
0053 0323 0327 -> 0327 0327 -> 1e1d is confluent 0053 0327 0323 -> 0307 0323 -> 1e1d
0053 0323 0328 -> 0327 0328 -> 1e7b is not confluent
0055 0323 0300 -> 031b 0300 -> 1e17 is confluent 0055 0300 0323 -> 031b 0323 -> 1e17
0055 0323 0301 -> 031b 0301 -> 1e17 is confluent 0055 0301 0323 -> 031b 0323 -> 1e17
0055 0323 0302 -> 031b 0302 -> 1e69 is confluent 0055 0302 0323 -> 0323 0323 -> 1e69
0055 0323 0303 -> 031b 0303 -> 1e17 is confluent 0055 0303 0323 -> 031b 0323 -> 1e17
0055 0323 0304 -> 031b 0304 -> 1e69 is confluent 0055 0304 0323 -> 0323 0323 -> 1e69
0055 0323 0306 -> 031b 0306 -> 1e69 is confluent 0055 0306 0323 -> 0323 0323 -> 1e69
0055 0323 0307 -> 031b 0307 -> 1e69 is not confluent
0055 0323 0308 -> 031b 0308 -> 01d8 is confluent 0055 0308 0323 -> 0323 0323 -> 01d8
0055 0323 0309 -> 031b 0309 -> 1e17 is confluent 0055 0309 0323 -> 031b 0323 -> 1e17
0055 0323 030a -> 031b 030a -> 1e69 is confluent 0055 030a 0323 -> 031b 0323 -> 1e69
0055 0323 030c -> 031b 030c -> 1e17 is confluent 0055 030c 0323 -> 0323 0323 -> 1e17
0055 0323 031b -> 031b 031b -> 1ef1 is confluent 0055 031b 0323 -> 0323 0323 -> 1ef1
0055 0323 0323 -> 031b 0323 -> 1e69 is confluent 0055 0323 0323 -> 031b 0323 -> 1e69
0055 0323 0328 -> 031b 0328 -> 1ef1 is confluent 0055 0328 0323 -> 031b 0323 -> 1ef1
0061 0323 0300 -> 030a 0300 -> 1e67 is confluent 0061 0300 0323 -> 0323 0323 -> 1e67
0061 0323 0301 -> 030a 0301 -> 1e65 is confluent 0061 0301 0323 -> 0308 0323 -> 1e65
0061 0323 0302 -> 030a 0302 -> 1e65 is confluent 0061 0302 0323 -> 0323 0323 -> 1e65
0061 0323 0303 -> 030a 0303 -> 1e67 is confluent 0061 0303 0323 -> 0323 0323 -> 1e67
0061 0323 0304 -> 030a 0304 -> 1e65 is confluent 0061 0304 0323 -> 0308 0323 -> 1e65
0061 0323 0306 -> 030a 0306 -> 1e65 is confluent 0061 0306 0323 -> 0323 0323 -> 1e65
0061 0323 0307 -> 030a 0307 -> 0231 is confluent 0061 0307 0323 -> 0323 0323 -> 0231
0061 0323 0308 -> 030a 0308 -> 0231 is confluent 0061 0308 0323 -> 030a 0323 -> 0231
0061 0323 0309 -> 030a 0309 -> 1e67 is confluent 0061 0309 0323 -> 0323 0323 -> 1e67
0061 0323 030a -> 030a 030a -> 01fb is confluent 0061 030a 0323 -> 0323 0323 -> 01fb
0061 0323 030c -> 030a 030c -> 1e67 is confluent 0061 030c 0323 -> 0323 0323 -> 1e67
0061 0323 031b -> 030a 031b -> 1e69 is not confluent
0061 0323 0323 -> 030a 0323 -> 1ead is confluent 0061 0323 0323 -> 030a 0323 -> 1ead
0061 0323 0328 -> 030a 0328 -> 1e7b is confluent 0061 0328 0323 -> 030a 0323 -> 1e7b
0065 0323 0300 -> 0327 0300 -> 1e7b is confluent 0065 0300 0323 -> 0327 0323 -> 1e7b
0065 0323 0301 -> 0327 0301 -> 1e7b is confluent 0065 0301 0323 -> 0327 0323 -> 1e7b
0065 0323 0302 -> 0327 0302 -> 1e7b is confluent 0065 0302 0323 -> 0327 0323 -> 1e7b
0065 0323 0303 -> 0327 0303 -> 1e7b is confluent 0065 0303 0323 -> 0327 0323 -> 1e7b
0065 0323 0304 -> 0327 0304 -> 1e7b is confluent 0065 0304 0323 -> 0327 0323 -> 1e7b
0065 0323 0306 -> 0327 0306 -> 1e7b is confluent 0065 0306 0323 -> 0327 0323 -> 1e7b
0065 0323 0307 -> 0327 0307 -> 1e7b is confluent 0065 0307 0323 -> 0327 0323 -> 1e7b
0065 0323 0308 -> 0327 0308 -> 0231 is confluent 0065 0308 0323 -> 0327 0323 -> 0231
0065 0323 0309 -> 0327 0309 -> 1e7b is confluent 0065 0309 0323 -> 0327 0323 -> 1e7b
0065 0323 030c -> 0327 030c -> 1e7b is confluent 0065 030c 0323 -> 0327 0323 -> 1e7b
0065 0323 0323 -> 0327 0323 -> 1e7b is confluent 0065 0323 0323 -> 0327 0323 -> 1e7b
0065 0323 0327 -> 0327 0327 -> 1e1d is confluent 0065 0327 0323 -> 0328 0323 -> 1e1d
0065 0323 0328 -> 0327 0328 -> 1e7b is confluent 0065 0328 0323 -> 0327 0323 -> 1e7b
0069 0323 0300 -> 0308 0300 -> 1e67 is confluent 0069 0300 0323 -> 030c 0323 -> 1e67
0069 0323 0301 -> 0308 0301 -> 1e67 is confluent 0069 0301 0323 -> 0308 0323 -> 1e67
0069 0323 0302 -> 0308 0302 -> 1e67 is confluent 0069 0302 0323 -> 0323 0323 -> 1e67
0069 0323 0303 -> 0308 0303 -> 1e17 is confluent 0069 0303 0323 -> 0308 0323 -> 1e17
0069 0323 0304 -> 0308 0304 -> 1e67 is confluent 0069 0304 0323 -> 0323 0323 -> 1e67
0069 0323 0306 -> 0308 0306 -> 1e7b is confluent 0069 0306 0323 -> 0323 0323 -> 1e7b
0069 0323 0307 -> 0308 0307 -> 01e1 is not confluent
0069 0323 0308 -> 0308 0308 -> 01da is confluent 0069 0308 0323 -> 0328 0323 -> 01da
0069 0323 0309 -> 0308 0309 -> 1e17 is confluent 0069 0309 0323 -> 0308 0323 -> 1e17
0069 0323 030a -> 0308 030a -> 0231 is not confluent
0069 0323 030c -> 0308 030c -> 1e7b is confluent 0069 030c 0323 -> 0308 0323 -> 1e7b
0069 0323 031b -> 0308 031b -> 1e7b is not confluent
0069 0323 0323 -> 0308 0323 -> 1ec7 is confluent 0069 0323 0323 -> 0308 0323 -> 1ec7
0069 0323 0327 -> 0308 0327 -> 1e69 is not confluent
0069 0323 0328 -> 0308 0328 -> 01ed is confluent 0069 0328 0323 -> 0323 0323 -> 01ed
006c 0323 0304 -> 1e37 0304 -> 1e39 is not confluent
006f 0323 0300 -> 031b 0300 -> 1e17 is confluent 006f 0300 0323 -> 031b 0323 -> 1e17
006f 0323 0301 -> 031b 0301 -> 1e17 is confluent 006f 0301 0323 -> 031b 0323 -> 1e17
006f 0323 0302 -> 031b 0302 -> 1e69 is confluent 006f 0302 0323 -> 031b 0323 -> 1e69
006f 0323 0303 -> 031b 0303 -> 1e17 is confluent 006f 0303 0323 -> 031b 0323 -> 1e17
006f 0323 0304 -> 031b 0304 -> 1e69 is confluent 006f 0304 0323 -> 031b 0323 -> 1e69
006f 0323 0306 -> 031b 0306 -> 1e69 is confluent 006f 0306 0323 -> 031b 0323 -> 1e69
006f 0323 0307 -> 031b 0307 -> 1e69 is confluent 006f 0307 0323 -> 031b 0323 -> 1e69
006f 0323 0308 -> 031b 0308 -> 01d8 is confluent 006f 0308 0323 -> 031b 0323 -> 01d8
006f 0323 0309 -> 031b 0309 -> 1e17 is confluent 006f 0309 0323 -> 031b 0323 -> 1e17
006f 0323 030a -> 031b 030a -> 1e69 is not confluent
006f 0323 030c -> 031b 030c -> 1e17 is confluent 006f 030c 0323 -> 031b 0323 -> 1e17
006f 0323 031b -> 031b 031b -> 1ef1 is confluent 006f 031b 0323 -> 0308 0323 -> 1ef1
006f 0323 0323 -> 031b 0323 -> 1e69 is confluent 006f 0323 0323 -> 031b 0323 -> 1e69
006f 0323 0328 -> 031b 0328 -> 1ef1 is confluent 006f 0328 0323 -> 030c 0323 -> 1ef1
0072 0323 0304 -> 1e5b 0304 -> 1e5d is not confluent
0073 0323 0300 -> 0327 0300 -> 1e7b is not confluent
0073 0323 0301 -> 0327 0301 -> 1e7b is confluent 0073 0301 0323 -> 0327 0323 -> 1e7b
0073 0323 0302 -> 0327 0302 -> 1e7b is confluent 0073 0302 0323 -> 0327 0323 -> 1e7b
0073 0323 0303 -> 0327 0303 -> 1e7b is not confluent
0073 0323 0304 -> 0327 0304 -> 1e7b is not confluent
0073 0323 0306 -> 0327 0306 -> 1e7b is not confluent
0073 0323 0307 -> 0327 0307 -> 1e7b is confluent 0073 0307 0323 -> 0323 0323 -> 1e7b
0073 0323 0308 -> 0327 0308 -> 0231 is not confluent
0073 0323 0309 -> 0327 0309 -> 1e7b is not confluent
0073 0323 030c -> 0327 030c -> 1e7b is confluent 0073 030c 0323 -> 0327 0323 -> 1e7b
0073 0323 0323 -> 0327 0323 -> 1e7b is confluent 0073 0323 0323 -> 0327 0323 -> 1e7b
0073 0323 0327 -> 0327 0327 -> 1e1d is confluent 0073 0327 0323 -> 0307 0323 -> 1e1d
0073 0323 0328 -> 0327 0328 -> 1e7b is not confluent
0075 0323 0300 -> 031b 0300 -> 1e17 is confluent 0075 0300 0323 -> 031b 0323 -> 1e17
0075 0323 0301 -> 031b 0301 -> 1e17 is confluent 0075 0301 0323 -> 031b 0323 -> 1e17
0075 0323 0302 -> 031b 0302 -> 1e69 is confluent 0075 0302 0323 -> 0323 0323 -> 1e69
0075 0323 0303 -> 031b 0303 -> 1e17 is confluent 0075 0303 0323 -> 031b 0323 -> 1e17
0075 0323 0304 -> 031b 0304 -> 1e69 is confluent 0075 0304 0323 -> 0323 0323 -> 1e69
0075 0323 0306 -> 031b 0306 -> 1e69 is confluent 0075 0306 0323 -> 0323 0323 -> 1e69
0075 0323 0307 -> 031b 0307 -> 1e69 is not confluent
0075 0323 0308 -> 031b 0308 -> 01d8 is confluent 0075 0308 0323 -> 0323 0323 -> 01d8
0075 0323 0309 -> 031b 0309 -> 1e17 is confluent 0075 0309 0323 -> 031b 0323 -> 1e17
0075 0323 030a -> 031b 030a -> 1e69 is confluent 0075 030a 0323 -> 031b 0323 -> 1e69
0075 0323 030c -> 031b 030c -> 1e17 is confluent 0075 030c 0323 -> 0323 0323 -> 1e17
0075 0323 031b -> 031b 031b -> 1ef1 is confluent 0075 031b 0323 -> 0323 0323 -> 1ef1
0075 0323 0323 -> 031b 0323 -> 1e69 is confluent 0075 0323 0323 -> 031b 0323 -> 1e69
0075 0323 0328 -> 031b 0328 -> 1ef1 is confluent 0075 0328 0323 -> 031b 0323 -> 1ef1
0043 0327 0300 -> 030c 0300 -> 1e17 is not confluent
0043 0327 0301 -> 030c 0301 -> 1e17 is confluent 0043 0301 0327 -> 0327 0327 -> 1e17
0043 0327 0302 -> 030c 0302 -> 1e7b is confluent 0043 0302 0327 -> 0327 0327 -> 1e7b
0043 0327 0303 -> 030c 0303 -> 1e69 is not confluent
0043 0327 0304 -> 030c 0304 -> 0231 is not confluent
0043 0327 0306 -> 030c 0306 -> 1e7b is not confluent
0043 0327 0307 -> 030c 0307 -> 1e7b is confluent 0043 0307 0327 -> 0327 0327 -> 1e7b
0043 0327 0308 -> 030c 0308 -> 1e7b is not confluent
0043 0327 0309 -> 030c 0309 -> 1e69 is not confluent
0043 0327 030a -> 030c 030a -> 1e7b is not confluent
0043 0327 030c -> 030c 030c -> 01e1 is confluent 0043 030c 0327 -> 0302 0327 -> 01e1
0043 0327 031b -> 030c 031b -> 0231 is not confluent
0043 0327 0323 -> 030c 0323 -> 1ef1 is not confluent
0043 0327 0327 -> 030c 0327 -> 1e69 is confluent 0043 0327 0327 -> 030c 0327 -> 1e69
0043 0327 0328 -> 030c 0328 -> 1e7b is not confluent
0045 0327 0300 -> 0328 0300 -> 1e69 is confluent 0045 0300 0327 -> 0327 0327 -> 1e69
0045 0327 0301 -> 0328 0301 -> 1e69 is confluent 0045 0301 0327 -> 0327 0327 -> 1e69
0045 0327 0302 -> 0328 0302 -> 1e7b is confluent 0045 0302 0327 -> 0327 0327 -> 1e7b
0045 0327 0303 -> 0328 0303 -> 1e69 is confluent 0045 0303 0327 -> 0327 0327 -> 1e69
0045 0327 0304 -> 0328 0304 -> 1e69 is confluent 0045 0304 0327 -> 0327 0327 -> 1e69
0045 0327 0306 -> 0328 0306 -> 0231 is confluent 0045 0306 0327 -> 0327 0327 -> 0231
0045 0327 0307 -> 0328 0307 -> 0231 is confluent 0045 0307 0327 -> 0327 0327 -> 0231
0045 0327 0308 -> 0328 0308 -> 1e7b is confluent 0045 0308 0327 -> 0327 0327 -> 1e7b
0045 0327 0309 -> 0328 0309 -> 1e69 is confluent 0045 0309 0327 -> 0327 0327 -> 1e69
0045 0327 030a -> 0328 030a -> 1e69 is not confluent
0045 0327 030c -> 0328 030c -> 1e69 is confluent 0045 030c 0327 -> 0327 0327 -> 1e69
0045 0327 031b -> 0328 031b -> 1ec7 is not confluent
0045 0327 0323 -> 0328 0323 -> 1e69 is confluent 0045 0323 0327 -> 0327 0327 -> 1e69
0045 0327 0327 -> 0328 0327 -> 1e69 is confluent 0045 0327 0327 -> 0328 0327 -> 1e69
0045 0327 0328 -> 0328 0328 -> 01ed is confluent 0045 0328 0327 -> 0327 0327 -> 01ed
0053 0327 0300 -> 0307 0300 -> 1fe7 is not confluent
0053 0327 0301 -> 0307 0301 -> 1fe7 is confluent 0053 0301 0327 -> 0327 0327 -> 1fe7
0053 0327 0302 -> 0307 0302 -> 1fe7 is confluent 0053 0302 0327 -> 0327 0327 -> 1fe7
0053 0327 0303 -> 0307 0303 -> 1fe7 is not confluent
0053 0327 0304 -> 0307 0304 -> 1e7b is not confluent
0053 0327 0306 -> 0307 0306 -> 1fe7 is not confluent
0053 0327 0307 -> 0307 0307 -> 1fe7 is confluent 0053 0307 0327 -> 0323 0327 -> 1fe7
0053 0327 0308 -> 0307 0308 -> 01d8 is not confluent
0053 0327 0309 -> 0307 0309 -> 1fe7 is not confluent
0053 0327 030c -> 0307 030c -> 1e67 is confluent 0053 030c 0327 -> 0327 0327 -> 1e67
0053 0327 031b -> 0307 031b -> 1edf is not confluent
0053 0327 0323 -> 0307 0323 -> 1e69 is confluent 0053 0323 0327 -> 0327 0327 -> 1e69
0053 0327 0327 -> 0307 0327 -> 1fe7 is confluent 0053 0327 0327 -> 0307 0327 -> 1fe7
0063 0327 0300 -> 030c 0300 -> 1e17 is not confluent
0063 0327 0301 -> 030c 0301 -> 1e17 is confluent 0063 0301 0327 -> 0327 0327 -> 1e17
0063 0327 0302 -> 030c 0302 -> 1e7b is confluent 0063 0302 0327 -> 0327 0327 -> 1e7b
0063 0327 0303 -> 030c 0303 -> 1e69 is not confluent
0063 0327 0304 -> 030c 0304 -> 0231 is not confluent
0063 0327 0306 -> 030c 0306 -> 1e7b is not confluent
0063 0327 0307 -> 030c 0307 -> 1e7b is confluent 0063 0307 0327 -> 0327 0327 -> 1e7b
0063 0327 0308 -> 030c 0308 -> 1e7b is not confluent
0063 0327 0309 -> 030c 0309 -> 1e69 is not confluent
0063 0327 030a -> 030c 030a -> 1e7b is not confluent
0063 0327 030c -> 030c 030c -> 01e1 is confluent 0063 030c 0327 -> 0302 0327 -> 01e1
0063 0327 031b -> 030c 031b -> 0231 is not confluent
0063 0327 0323 -> 030c 0323 -> 1ef1 is not confluent
0063 0327 0327 -> 030c 0327 -> 1e69 is confluent 0063 0327 0327 -> 030c 0327 -> 1e69
0063 0327 0328 -> 030c 0328 -> 1e7b is not confluent
0065 0327 0300 -> 0328 0300 -> 1e69 is confluent 0065 0300 0327 -> 0327 0327 -> 1e69
0065 0327 0301 -> 0328 0301 -> 1e69 is confluent 0065 0301 0327 -> 0327 0327 -> 1e69
0065 0327 0302 -> 0328 0302 -> 1e7b is confluent 0065 0302 0327 -> 0327 0327 -> 1e7b
0065 0327 0303 -> 0328 0303 -> 1e69 is confluent 0065 0303 0327 -> 0327 0327 -> 1e69
0065 0327 0304 -> 0328 0304 -> 1e69 is confluent 0065 0304 0327 -> 0327 0327 -> 1e69
0065 0327 0306 -> 0328 0306 -> 0231 is confluent 0065 0306 0327 -> 0327 0327 -> 0231
0065 0327 0307 -> 0328 0307 -> 0231 is confluent 0065 0307 0327 -> 0327 0327 -> 0231
0065 0327 0308 -> 0328 0308 -> 1e7b is confluent 0065 0308 0327 -> 0327 0327 -> 1e7b
0065 0327 0309 -> 0328 0309 -> 1e69 is confluent 0065 0309 0327 -> 0327 0327 -> 1e69
0065 0327 030a -> 0328 030a -> 1e69 is not confluent
0065 0327 030c -> 0328 030c -> 1e69 is confluent 0065 030c 0327 -> 0327 0327 -> 1e69
0065 0327 031b -> 0328 031b -> 1ec7 is not confluent
0065 0327 0323 -> 0328 0323 -> 1e69 is confluent 0065 0323 0327 -> 0327 0327 -> 1e69
0065 0327 0327 -> 0328 0327 -> 1e69 is confluent 0065 0327 0327 -> 0328 0327 -> 1e69
0065 0327 0328 -> 0328 0328 -> 01ed is confluent 0065 0328 0327 -> 0327 0327 -> 01ed
0073 0327 0300 -> 0307 0300 -> 1fe7 is not confluent
0073 0327 0301 -> 0307 0301 -> 1fe7 is confluent 0073 0301 0327 -> 0327 0327 -> 1fe7
0073 0327 0302 -> 0307 0302 -> 1fe7 is confluent 0073 0302 0327 -> 0327 0327 -> 1fe7
0073 0327 0303 -> 0307 0303 -> 1fe7 is not confluent
0073 0327 0304 -> 0307 0304 -> 1e7b is not confluent
0073 0327 0306 -> 0307 0306 -> 1fe7 is not confluent
0073 0327 0307 -> 0307 0307 -> 1fe7 is confluent 0073 0307 0327 -> 0323 0327 -> 1fe7
0073 0327 0308 -> 0307 0308 -> 01d8 is not confluent
0073 0327 0309 -> 0307 0309 -> 1fe7 is not confluent
0073 0327 030c -> 0307 030c -> 1e67 is confluent 0073 030c 0327 -> 0327 0327 -> 1e67
0073 0327 031b -> 0307 031b -> 1edf is not confluent
0073 0327 0323 -> 0307 0323 -> 1e69 is confluent 0073 0323 0327 -> 0327 0327 -> 1e69
0073 0327 0327 -> 0307 0327 -> 1fe7 is confluent 0073 0327 0327 -> 0307 0327 -> 1fe7
0041 0328 0300 -> 030a 0300 -> 1e67 is confluent 0041 0300 0328 -> 0323 0328 -> 1e67
0041 0328 0301 -> 030a 0301 -> 1e65 is confluent 0041 0301 0328 -> 0308 0328 -> 1e65
0041 0328 0302 -> 030a 0302 -> 1e65 is confluent 0041 0302 0328 -> 0323 0328 -> 1e65
0041 0328 0303 -> 030a 0303 -> 1e67 is confluent 0041 0303 0328 -> 0323 0328 -> 1e67
0041 0328 0304 -> 030a 0304 -> 1e65 is confluent 0041 0304 0328 -> 0308 0328 -> 1e65
0041 0328 0306 -> 030a 0306 -> 1e65 is confluent 0041 0306 0328 -> 0323 0328 -> 1e65
0041 0328 0307 -> 030a 0307 -> 0231 is confluent 0041 0307 0328 -> 0323 0328 -> 0231
0041 0328 0308 -> 030a 0308 -> 0231 is confluent 0041 0308 0328 -> 030a 0328 -> 0231
0041 0328 0309 -> 030a 0309 -> 1e67 is confluent 0041 0309 0328 -> 0323 0328 -> 1e67
0041 0328 030a -> 030a 030a -> 01fb is confluent 0041 030a 0328 -> 0323 0328 -> 01fb
0041 0328 030c -> 030a 030c -> 1e67 is confluent 0041 030c 0328 -> 0323 0328 -> 1e67
0041 0328 031b -> 030a 031b -> 1e69 is not confluent
0041 0328 0323 -> 030a 0323 -> 1ead is confluent 0041 0323 0328 -> 030a 0328 -> 1ead
0041 0328 0328 -> 030a 0328 -> 1e7b is confluent 0041 0328 0328 -> 030a 0328 -> 1e7b
0045 0328 0300 -> 0327 0300 -> 1e7b is confluent 0045 0300 0328 -> 0327 0328 -> 1e7b
0045 0328 0301 -> 0327 0301 -> 1e7b is confluent 0045 0301 0328 -> 0327 0328 -> 1e7b
0045 0328 0302 -> 0327 0302 -> 1e7b is confluent 0045 0302 0328 -> 0327 0328 -> 1e7b
0045 0328 0303 -> 0327 0303 -> 1e7b is confluent 0045 0303 0328 -> 0327 0328 -> 1e7b
0045 0328 0304 -> 0327 0304 -> 1e7b is confluent 0045 0304 0328 -> 0327 0328 -> 1e7b
0045 0328 0306 -> 0327 0306 -> 1e7b is confluent 0045 0306 0328 -> 0327 0328 -> 1e7b
0045 0328 0307 -> 0327 0307 -> 1e7b is confluent 0045 0307 0328 -> 0327 0328 -> 1e7b
0045 0328 0308 -> 0327 0308 -> 0231 is confluent 0045 0308 0328 -> 0327 0328 -> 0231
0045 0328 0309 -> 0327 0309 -> 1e7b is confluent 0045 0309 0328 -> 0327 0328 -> 1e7b
0045 0328 030c -> 0327 030c -> 1e7b is confluent 0045 030c 0328 -> 0327 0328 -> 1e7b
0045 0328 0323 -> 0327 0323 -> 1e7b is confluent 0045 0323 0328 -> 0327 0328 -> 1e7b
0045 0328 0327 -> 0327 0327 -> 1e1d is confluent 0045 0327 0328 -> 0328 0328 -> 1e1d
0045 0328 0328 -> 0327 0328 -> 1e7b is confluent 0045 0328 0328 -> 0327 0328 -> 1e7b
0049 0328 0300 -> 0323 0300 -> 01d8 is confluent 0049 0300 0328 -> 030c 0328 -> 01d8
0049 0328 0301 -> 0323 0301 -> 1e65 is confluent 0049 0301 0328 -> 0308 0328 -> 1e65
0049 0328 0302 -> 0323 0302 -> 1ef1 is confluent 0049 0302 0328 -> 0323 0328 -> 1ef1
0049 0328 0303 -> 0323 0303 -> 01d8 is confluent 0049 0303 0328 -> 0308 0328 -> 01d8
0049 0328 0304 -> 0323 0304 -> 1e7b is confluent 0049 0304 0328 -> 0323 0328 -> 1e7b
0049 0328 0306 -> 0323 0306 -> 1e7b is confluent 0049 0306 0328 -> 0323 0328 -> 1e7b
0049 0328 0307 -> 0323 0307 -> 1e7b is confluent 0049 0307 0328 -> 0323 0328 -> 1e7b
0049 0328 0308 -> 0323 0308 -> 1e7b is confluent 0049 0308 0328 -> 0328 0328 -> 1e7b
0049 0328 0309 -> 0323 0309 -> 01d8 is confluent 0049 0309 0328 -> 0308 0328 -> 01d8
0049 0328 030a -> 0323 030a -> 1e7b is not confluent
0049 0328 030c -> 0323 030c -> 1e67 is confluent 0049 030c 0328 -> 0308 0328 -> 1e67
0049 0328 031b -> 0323 031b -> 1e7b is not confluent
0049 0328 0323 -> 0323 0323 -> 1e69 is confluent 0049 0323 0328 -> 0308 0328 -> 1e69
0049 0328 0327 -> 0323 0327 -> 1e69 is not confluent
0049 0328 0328 -> 0323 0328 -> 1e7b is confluent 0049 0328 0328 -> 0323 0328 -> 1e7b
004f 0328 0300 -> 030c 0300 -> 1e17 is confluent 004f 0300 0328 -> 031b 0328 -> 1e17
004f 0328 0301 -> 030c 0301 -> 1e17 is confluent 004f 0301 0328 -> 031b 0328 -> 1e17
004f 0328 0302 -> 030c 0302 -> 1e7b is confluent 004f 0302 0328 -> 031b 0328 -> 1e7b
004f 0328 0303 -> 030c 0303 -> 1e69 is confluent 004f 0303 0328 -> 031b 0328 -> 1e69
004f 0328 0304 -> 030c 0304 -> 0231 is confluent 004f 0304 0328 -> 031b 0328 -> 0231
004f 0328 0306 -> 030c 0306 -> 1e7b is confluent 004f 0306 0328 -> 031b 0328 -> 1e7b
004f 0328 0307 -> 030c 0307 -> 1e7b is confluent 004f 0307 0328 -> 031b 0328 -> 1e7b
004f 0328 0308 -> 030c 0308 -> 1e7b is confluent 004f 0308 0328 -> 031b 0328 -> 1e7b
004f 0328 0309 -> 030c 0309 -> 1e69 is confluent 004f 0309 0328 -> 031b 0328 -> 1e69
004f 0328 030a -> 030c 030a -> 1e7b is not confluent
004f 0328 030c -> 030c 030c -> 01e1 is confluent 004f 030c 0328 -> 031b 0328 -> 01e1
004f 0328 031b -> 030c 031b -> 0231 is confluent 004f 031b 0328 -> 0308 0328 -> 0231
004f 0328 0323 -> 030c 0323 -> 1ef1 is confluent 004f 0323 0328 -> 031b 0328 -> 1ef1
004f 0328 0327 -> 030c 0327 -> 1e69 is not confluent
004f 0328 0328 -> 030c 0328 -> 1e7b is confluent 004f 0328 0328 -> 030c 0328 -> 1e7b
0055 0328 0300 -> 031b 0300 -> 1e17 is confluent 0055 0300 0328 -> 031b 0328 -> 1e17
0055 0328 0301 -> 031b 0301 -> 1e17 is confluent 0055 0301 0328 -> 031b 0328 -> 1e17
0055 0328 0302 -> 031b 0302 -> 1e69 is confluent 0055 0302 0328 -> 0323 0328 -> 1e69
0055 0328 0303 -> 031b 0303 -> 1e17 is confluent 0055 0303 0328 -> 031b 0328 -> 1e17
0055 0328 0304 -> 031b 0304 -> 1e69 is confluent 0055 0304 0328 -> 0323 0328 -> 1e69
0055 0328 0306 -> 031b 0306 -> 1e69 is confluent 0055 0306 0328 -> 0323 0328 -> 1e69
0055 0328 0307 -> 031b 0307 -> 1e69 is not confluent
0055 0328 0308 -> 031b 0308 -> 01d8 is confluent 0055 0308 0328 -> 0323 0328 -> 01d8
0055 0328 0309 -> 031b 0309 -> 1e17 is confluent 0055 0309 0328 -> 031b 0328 -> 1e17
0055 0328 030a -> 031b 030a -> 1e69 is confluent 0055 030a 0328 -> 031b 0328 -> 1e69
0055 0328 030c -> 031b 030c -> 1e17 is confluent 0055 030c 0328 -> 0323 0328 -> 1e17
0055 0328 031b -> 031b 031b -> 1ef1 is confluent 0055 031b 0328 -> 0323 0328 -> 1ef1
0055 0328 0323 -> 031b 0323 -> 1e69 is confluent 0055 0323 0328 -> 031b 0328 -> 1e69
0055 0328 0328 -> 031b 0328 -> 1ef1 is confluent 0055 0328 0328 -> 031b 0328 -> 1ef1
0061 0328 0300 -> 030a 0300 -> 1e67 is confluent 0061 0300 0328 -> 0323 0328 -> 1e67
0061 0328 0301 -> 030a 0301 -> 1e65 is confluent 0061 0301 0328 -> 0308 0328 -> 1e65
0061 0328 0302 -> 030a 0302 -> 1e65 is confluent 0061 0302 0328 -> 0323 0328 -> 1e65
0061 0328 0303 -> 030a 0303 -> 1e67 is confluent 0061 0303 0328 -> 0323 0328 -> 1e67
0061 0328 0304 -> 030a 0304 -> 1e65 is confluent 0061 0304 0328 -> 0308 0328 -> 1e65
0061 0328 0306 -> 030a 0306 -> 1e65 is confluent 0061 0306 0328 -> 0323 0328 -> 1e65
0061 0328 0307 -> 030a 0307 -> 0231 is confluent 0061 0307 0328 -> 0323 0328 -> 0231
0061 0328 0308 -> 030a 0308 -> 0231 is confluent 0061 0308 0328 -> 030a 0328 -> 0231
0061 0328 0309 -> 030a 0309 -> 1e67 is confluent 0061 0309 0328 -> 0323 0328 -> 1e67
0061 0328 030a -> 030a 030a -> 01fb is confluent 0061 030a 0328 -> 0323 0328 -> 01fb
0061 0328 030c -> 030a 030c -> 1e67 is confluent 0061 030c 0328 -> 0323 0328 -> 1e67
0061 0328 031b -> 030a 031b -> 1e69 is not confluent
0061 0328 0323 -> 030a 0323 -> 1ead is confluent 0061 0323 0328 -> 030a 0328 -> 1ead
0061 0328 0328 -> 030a 0328 -> 1e7b is confluent 0061 0328 0328 -> 030a 0328 -> 1e7b
0065 0328 0300 -> 0327 0300 -> 1e7b is confluent 0065 0300 0328 -> 0327 0328 -> 1e7b
0065 0328 0301 -> 0327 0301 -> 1e7b is confluent 0065 0301 0328 -> 0327 0328 -> 1e7b
0065 0328 0302 -> 0327 0302 -> 1e7b is confluent 0065 0302 0328 -> 0327 0328 -> 1e7b
0065 0328 0303 -> 0327 0303 -> 1e7b is confluent 0065 0303 0328 -> 0327 0328 -> 1e7b
0065 0328 0304 -> 0327 0304 -> 1e7b is confluent 0065 0304 0328 -> 0327 0328 -> 1e7b
0065 0328 0306 -> 0327 0306 -> 1e7b is confluent 0065 0306 0328 -> 0327 0328 -> 1e7b
0065 0328 0307 -> 0327 0307 -> 1e7b is confluent 0065 0307 0328 -> 0327 0328 -> 1e7b
0065 0328 0308 -> 0327 0308 -> 0231 is confluent 0065 0308 0328 -> 0327 0328 -> 0231
0065 0328 0309 -> 0327 0309 -> 1e7b is confluent 0065 0309 0328 -> 0327 0328 -> 1e7b
0065 0328 030c -> 0327 030c -> 1e7b is confluent 0065 030c 0328 -> 0327 0328 -> 1e7b
0065 0328 0323 -> 0327 0323 -> 1e7b is confluent 0065 0323 0328 -> 0327 0328 -> 1e7b
0065 0328 0327 -> 0327 0327 -> 1e1d is confluent 0065 0327 0328 -> 0328 0328 -> 1e1d
0065 0328 0328 -> 0327 0328 -> 1e7b is confluent 0065 0328 0328 -> 0327 0328 -> 1e7b
0069 0328 0300 -> 0323 0300 -> 01d8 is confluent 0069 0300 0328 -> 030c 0328 -> 01d8
0069 0328 0301 -> 0323 0301 -> 1e65 is confluent 0069 0301 0328 -> 0308 0328 -> 1e65
0069 0328 0302 -> 0323 0302 -> 1ef1 is confluent 0069 0302 0328 -> 0323 0328 -> 1ef1
0069 0328 0303 -> 0323 0303 -> 01d8 is confluent 0069 0303 0328 -> 0308 0328 -> 01d8
0069 0328 0304 -> 0323 0304 -> 1e7b is confluent 0069 0304 0328 -> 0323 0328 -> 1e7b
0069 0328 0306 -> 0323 0306 -> 1e7b is confluent 0069 0306 0328 -> 0323 0328 -> 1e7b
0069 0328 0307 -> 0323 0307 -> 1e7b is not confluent
0069 0328 0308 -> 0323 0308 -> 1e7b is confluent 0069 0308 0328 -> 0328 0328 -> 1e7b
0069 0328 0309 -> 0323 0309 -> 01d8 is confluent 0069 0309 0328 -> 0308 0328 -> 01d8
0069 0328 030a -> 0323 030a -> 1e7b is not confluent
0069 0328 030c -> 0323 030c -> 1e67 is confluent 0069 030c 0328 -> 0308 0328 -> 1e67
0069 0328 031b -> 0323 031b -> 1e7b is not confluent
0069 0328 0323 -> 0323 0323 -> 1e69 is confluent 0069 0323 0328 -> 0308 0328 -> 1e69
0069 0328 0327 -> 0323 0327 -> 1e69 is not confluent
0069 0328 0328 -> 0323 0328 -> 1e7b is confluent 0069 0328 0328 -> 0323 0328 -> 1e7b
006f 0328 0300 -> 030c 0300 -> 1e17 is confluent 006f 0300 0328 -> 031b 0328 -> 1e17
006f 0328 0301 -> 030c 0301 -> 1e17 is confluent 006f 0301 0328 -> 031b 0328 -> 1e17
006f 0328 0302 -> 030c 0302 -> 1e7b is confluent 006f 0302 0328 -> 031b 0328 -> 1e7b
006f 0328 0303 -> 030c 0303 -> 1e69 is confluent 006f 0303 0328 -> 031b 0328 -> 1e69
006f 0328 0304 -> 030c 0304 -> 0231 is confluent 006f 0304 0328 -> 031b 0328 -> 0231
006f 0328 0306 -> 030c 0306 -> 1e7b is confluent 006f 0306 0328 -> 031b 0328 -> 1e7b
006f 0328 0307 -> 030c 0307 -> 1e7b is confluent 006f 0307 0328 -> 031b 0328 -> 1e7b
006f 0328 0308 -> 030c 0308 -> 1e7b is confluent 006f 0308 0328 -> 031b 0328 -> 1e7b
006f 0328 0309 -> 030c 0309 -> 1e69 is confluent 006f 0309 0328 -> 031b 0328 -> 1e69
006f 0328 030a -> 030c 030a -> 1e7b is not confluent
006f 0328 030c -> 030c 030c -> 01e1 is confluent 006f 030c 0328 -> 031b 0328 -> 01e1
006f 0328 031b -> 030c 031b -> 0231 is confluent 006f 031b 0328 -> 0308 0328 -> 0231
006f 0328 0323 -> 030c 0323 -> 1ef1 is confluent 006f 0323 0328 -> 031b 0328 -> 1ef1
006f 0328 0327 -> 030c 0327 -> 1e69 is not confluent
006f 0328 0328 -> 030c 0328 -> 1e7b is confluent 006f 0328 0328 -> 030c 0328 -> 1e7b
0075 0328 0300 -> 031b 0300 -> 1e17 is confluent 0075 0300 0328 -> 031b 0328 -> 1e17
0075 0328 0301 -> 031b 0301 -> 1e17 is confluent 0075 0301 0328 -> 031b 0328 -> 1e17
0075 0328 0302 -> 031b 0302 -> 1e69 is confluent 0075 0302 0328 -> 0323 0328 -> 1e69
0075 0328 0303 -> 031b 0303 -> 1e17 is confluent 0075 0303 0328 -> 031b 0328 -> 1e17
0075 0328 0304 -> 031b 0304 -> 1e69 is confluent 0075 0304 0328 -> 0323 0328 -> 1e69
0075 0328 0306 -> 031b 0306 -> 1e69 is confluent 0075 0306 0328 -> 0323 0328 -> 1e69
0075 0328 0307 -> 031b 0307 -> 1e69 is not confluent
0075 0328 0308 -> 031b 0308 -> 01d8 is confluent 0075 0308 0328 -> 0323 0328 -> 01d8
0075 0328 0309 -> 031b 0309 -> 1e17 is confluent 0075 0309 0328 -> 031b 0328 -> 1e17
0075 0328 030a -> 031b 030a -> 1e69 is confluent 0075 030a 0328 -> 031b 0328 -> 1e69
0075 0328 030c -> 031b 030c -> 1e17 is confluent 0075 030c 0328 -> 0323 0328 -> 1e17
0075 0328 031b -> 031b 031b -> 1ef1 is confluent 0075 031b 0328 -> 0323 0328 -> 1ef1
0075 0328 0323 -> 031b 0323 -> 1e69 is confluent 0075 0323 0328 -> 031b 0328 -> 1e69
0075 0328 0328 -> 031b 0328 -> 1ef1 is confluent 0075 0328 0328 -> 031b 0328 -> 1ef1
0342 0342 0308 -> 0314 0308 -> 1fe7 is not confluent
0342 0342 0313 -> 0314 0313 -> 1f66 is confluent 0342 0313 0342 -> 0342 0342 -> 1f66
0342 0342 0314 -> 0314 0314 -> 1f67 is confluent 0342 0314 0342 -> 0342 0342 -> 1f67
03b1 0342 0308 -> 0314 0308 -> 1fe7 is not confluent
03b1 0342 0313 -> 0314 0313 -> 1f66 is confluent 03b1 0313 0342 -> 1f00 0342 -> 1f66
03b1 0342 0314 -> 0314 0314 -> 1f67 is confluent 03b1 0314 0342 -> 1f01 0342 -> 1f67
03b7 0342 0308 -> 0314 0308 -> 1fe7 is not confluent
03b7 0342 0313 -> 0314 0313 -> 1f66 is confluent 03b7 0313 0342 -> 1f20 0342 -> 1f66
03b7 0342 0314 -> 0314 0314 -> 1f67 is confluent 03b7 0314 0342 -> 1f21 0342 -> 1f67
03b9 0342 0308 -> 0314 0308 -> 1fe7 is confluent 03b9 0308 0342 -> 03ca 0342 -> 1fe7
03b9 0342 0313 -> 0314 0313 -> 1f66 is confluent 03b9 0313 0342 -> 1f30 0342 -> 1f66
03b9 0342 0314 -> 0314 0314 -> 1f67 is confluent 03b9 0314 0342 -> 1f31 0342 -> 1f67
03c5 0342 0308 -> 0314 0308 -> 1fe7 is confluent 03c5 0308 0342 -> 03cb 0342 -> 1fe7
03c5 0342 0313 -> 0314 0313 -> 1f66 is confluent 03c5 0313 0342 -> 1f50 0342 -> 1f66
03c5 0342 0314 -> 0314 0314 -> 1f67 is confluent 03c5 0314 0342 -> 1f51 0342 -> 1f67
03c9 0342 0308 -> 0314 0308 -> 1fe7 is not confluent
03c9 0342 0313 -> 0314 0313 -> 1f66 is confluent 03c9 0313 0342 -> 1f60 0342 -> 1f66
03c9 0342 0314 -> 0314 0314 -> 1f67 is confluent 03c9 0314 0342 -> 1f61 0342 -> 1f67
1f00 0342 0345 -> 1f06 0345 -> 1f86 is confluent 1f00 0345 0342 -> 0342 0342 -> 1f86
1f01 0342 0345 -> 1f07 0345 -> 1f87 is confluent 1f01 0345 0342 -> 0342 0342 -> 1f87
1f08 0342 0345 -> 1f0e 0345 -> 1f8e is confluent 1f08 0345 0342 -> 0342 0342 -> 1f8e
1f09 0342 0345 -> 1f0f 0345 -> 1f8f is confluent 1f09 0345 0342 -> 0342 0342 -> 1f8f
1f20 0342 0345 -> 1f26 0345 -> 1f96 is confluent 1f20 0345 0342 -> 0342 0342 -> 1f96
1f21 0342 0345 -> 1f27 0345 -> 1f97 is confluent 1f21 0345 0342 -> 0342 0342 -> 1f97
1f28 0342 0345 -> 1f2e 0345 -> 1f9e is confluent 1f28 0345 0342 -> 0342 0342 -> 1f9e
1f29 0342 0345 -> 1f2f 0345 -> 1f9f is confluent 1f29 0345 0342 -> 0342 0342 -> 1f9f
1f60 0342 0345 -> 1f66 0345 -> 1fa6 is confluent 1f60 0345 0342 -> 0342 0342 -> 1fa6
1f61 0342 0345 -> 1f67 0345 -> 1fa7 is confluent 1f61 0345 0342 -> 0342 0342 -> 1fa7
1f68 0342 0345 -> 1f6e 0345 -> 1fae is confluent 1f68 0345 0342 -> 0342 0342 -> 1fae
1f69 0342 0345 -> 1f6f 0345 -> 1faf is confluent 1f69 0345 0342 -> 0342 0342 -> 1faf
1fa9 0342 0313 -> 1faf 0313 -> 1faf is not confluent
1fa9 0342 0314 -> 1faf 0314 -> 1faf is not confluent
1fb3 0342 0308 -> 0314 0308 -> 1fe7 is not confluent
1fb3 0342 0313 -> 0314 0313 -> 1f66 is confluent 1fb3 0313 0342 -> 1f80 0342 -> 1f66
1fb3 0342 0314 -> 0314 0314 -> 1f67 is confluent 1fb3 0314 0342 -> 1f81 0342 -> 1f67
1fc3 0342 0308 -> 0314 0308 -> 1fe7 is not confluent
1fc3 0342 0313 -> 0314 0313 -> 1f66 is confluent 1fc3 0313 0342 -> 1f90 0342 -> 1f66
1fc3 0342 0314 -> 0314 0314 -> 1f67 is confluent 1fc3 0314 0342 -> 1f91 0342 -> 1f67
1ff3 0342 0308 -> 0314 0308 -> 1fe7 is not confluent
1ff3 0342 0313 -> 0314 0313 -> 1f66 is confluent 1ff3 0313 0342 -> 1fa0 0342 -> 1f66
1ff3 0342 0314 -> 0314 0314 -> 1f67 is confluent 1ff3 0314 0342 -> 1fa1 0342 -> 1f67
0391 0345 0308 -> 0314 0308 -> 1fe7 is not confluent
0391 0345 0313 -> 0314 0313 -> 1f66 is confluent 0391 0313 0345 -> 1f08 0345 -> 1f66
0391 0345 0314 -> 0314 0314 -> 1f67 is confluent 0391 0314 0345 -> 1f09 0345 -> 1f67
0397 0345 0308 -> 0314 0308 -> 1fe7 is not confluent
0397 0345 0313 -> 0314 0313 -> 1f66 is confluent 0397 0313 0345 -> 1f28 0345 -> 1f66
0397 0345 0314 -> 0314 0314 -> 1f67 is confluent 0397 0314 0345 -> 1f29 0345 -> 1f67
03a9 0345 0308 -> 0314 0308 -> 1fe7 is not confluent
03a9 0345 0313 -> 0314 0313 -> 1f66 is confluent 03a9 0313 0345 -> 1f68 0345 -> 1f66
03a9 0345 0314 -> 0314 0314 -> 1f67 is confluent 03a9 0314 0345 -> 1f69 0345 -> 1f67
03ac 0345 0308 -> 0314 0308 -> 1fe7 is not confluent
03ac 0345 0313 -> 0314 0313 -> 1f66 is confluent 03ac 0313 0345 -> 1f04 0345 -> 1f66
03ac 0345 0314 -> 0314 0314 -> 1f67 is confluent 03ac 0314 0345 -> 1f05 0345 -> 1f67
03ae 0345 0308 -> 0314 0308 -> 1fe7 is not confluent
03ae 0345 0313 -> 0314 0313 -> 1f66 is confluent 03ae 0313 0345 -> 1f24 0345 -> 1f66
03ae 0345 0314 -> 0314 0314 -> 1f67 is confluent 03ae 0314 0345 -> 1f25 0345 -> 1f67
03b1 0345 0308 -> 0314 0308 -> 1fe7 is not confluent
03b1 0345 0313 -> 0314 0313 -> 1f66 is confluent 03b1 0313 0345 -> 1f00 0345 -> 1f66
03b1 0345 0314 -> 0314 0314 -> 1f67 is confluent 03b1 0314 0345 -> 1f01 0345 -> 1f67
03b7 0345 0308 -> 0314 0308 -> 1fe7 is not confluent
03b7 0345 0313 -> 0314 0313 -> 1f66 is confluent 03b7 0313 0345 -> 1f20 0345 -> 1f66
03b7 0345 0314 -> 0314 0314 -> 1f67 is confluent 03b7 0314 0345 -> 1f21 0345 -> 1f67
03c9 0345 0308 -> 0314 0308 -> 1fe7 is not confluent
03c9 0345 0313 -> 0314 0313 -> 1f66 is confluent 03c9 0313 0345 -> 1f60 0345 -> 1f66
03c9 0345 0314 -> 0314 0314 -> 1f67 is confluent 03c9 0314 0345 -> 1f61 0345 -> 1f67
03ce 0345 0308 -> 0314 0308 -> 1fe7 is not confluent
03ce 0345 0313 -> 0314 0313 -> 1f66 is confluent 03ce 0313 0345 -> 1f64 0345 -> 1f66
03ce 0345 0314 -> 0314 0314 -> 1f67 is confluent 03ce 0314 0345 -> 1f65 0345 -> 1f67
1f00 0345 0300 -> 0342 0300 -> 0314 is confluent 1f00 0300 0345 -> 1f02 0345 -> 0314
1f00 0345 0301 -> 0342 0301 -> 0314 is confluent 1f00 0301 0345 -> 1f04 0345 -> 0314
1f00 0345 0313 -> 0342 0313 -> 0342 is not confluent
1f00 0345 0314 -> 0342 0314 -> 0342 is not confluent
1f00 0345 0342 -> 0342 0342 -> 0314 is confluent 1f00 0342 0345 -> 1f06 0345 -> 0314
1f01 0345 0300 -> 0342 0300 -> 0314 is confluent 1f01 0300 0345 -> 1f03 0345 -> 0314
1f01 0345 0301 -> 0342 0301 -> 0314 is confluent 1f01 0301 0345 -> 1f05 0345 -> 0314
1f01 0345 0313 -> 0342 0313 -> 0342 is not confluent
1f01 0345 0314 -> 0342 0314 -> 0342 is not confluent
1f01 0345 0342 -> 0342 0342 -> 0314 is confluent 1f01 0342 0345 -> 1f07 0345 -> 0314
1f08 0345 0300 -> 0342 0300 -> 0314 is confluent 1f08 0300 0345 -> 1f0a 0345 -> 0314
1f08 0345 0301 -> 0342 0301 -> 0314 is confluent 1f08 0301 0345 -> 1f0c 0345 -> 0314
1f08 0345 0313 -> 0342 0313 -> 0342 is not confluent
1f08 0345 0314 -> 0342 0314 -> 0342 is not confluent
1f08 0345 0342 -> 0342 0342 -> 0314 is confluent 1f08 0342 0345 -> 1f0e 0345 -> 0314
1f09 0345 0300 -> 0342 0300 -> 0314 is confluent 1f09 0300 0345 -> 1f0b 0345 -> 0314
1f09 0345 0301 -> 0342 0301 -> 0314 is confluent 1f09 0301 0345 -> 1f0d 0345 -> 0314
1f09 0345 0313 -> 0342 0313 -> 0342 is not confluent
1f09 0345 0314 -> 0342 0314 -> 0342 is not confluent
1f09 0345 0342 -> 0342 0342 -> 0314 is confluent 1f09 0342 0345 -> 1f0f 0345 -> 0314
1f20 0345 0300 -> 0342 0300 -> 0314 is confluent 1f20 0300 0345 -> 1f22 0345 -> 0314
1f20 0345 0301 -> 0342 0301 -> 0314 is confluent 1f20 0301 0345 -> 1f24 0345 -> 0314
1f20 0345 0313 -> 0342 0313 -> 0342 is not confluent
1f20 0345 0314 -> 0342 0314 -> 0342 is not confluent
1f20 0345 0342 -> 0342 0342 -> 0314 is confluent 1f20 0342 0345 -> 1f26 0345 -> 0314
1f21 0345 0300 -> 0342 0300 -> 0314 is confluent 1f21 0300 0345 -> 1f23 0345 -> 0314
1f21 0345 0301 -> 0342 0301 -> 0314 is confluent 1f21 0301 0345 -> 1f25 0345 -> 0314
1f21 0345 0313 -> 0342 0313 -> 0342 is not confluent
1f21 0345 0314 -> 0342 0314 -> 0342 is not confluent
1f21 0345 0342 -> 0342 0342 -> 0314 is confluent 1f21 0342 0345 -> 1f27 0345 -> 0314
1f28 0345 0300 -> 0342 0300 -> 0314 is confluent 1f28 0300 0345 -> 1f2a 0345 -> 0314
1f28 0345 0301 -> 0342 0301 -> 0314 is confluent 1f28 0301 0345 -> 1f2c 0345 -> 0314
1f28 0345 0313 -> 0342 0313 -> 0342 is not confluent
1f28 0345 0314 -> 0342 0314 -> 0342 is not confluent
1f28 0345 0342 -> 0342 0342 -> 0314 is confluent 1f28 0342 0345 -> 1f2e 0345 -> 0314
1f29 0345 0300 -> 0342 0300 -> 0314 is confluent 1f29 0300 0345 -> 1f2b 0345 -> 0314
1f29 0345 0301 -> 0342 0301 -> 0314 is confluent 1f29 0301 0345 -> 1f2d 0345 -> 0314
1f29 0345 0313 -> 0342 0313 -> 0342 is not confluent
1f29 0345 0314 -> 0342 0314 -> 0342 is not confluent
1f29 0345 0342 -> 0342 0342 -> 0314 is confluent 1f29 0342 0345 -> 1f2f 0345 -> 0314
1f60 0345 0300 -> 0342 0300 -> 0314 is confluent 1f60 0300 0345 -> 1f62 0345 -> 0314
1f60 0345 0301 -> 0342 0301 -> 0314 is confluent 1f60 0301 0345 -> 1f64 0345 -> 0314
1f60 0345 0313 -> 0342 0313 -> 0342 is not confluent
1f60 0345 0314 -> 0342 0314 -> 0342 is not confluent
1f60 0345 0342 -> 0342 0342 -> 0314 is confluent 1f60 0342 0345 -> 1f66 0345 -> 0314
1f61 0345 0300 -> 0342 0300 -> 0314 is confluent 1f61 0300 0345 -> 1f63 0345 -> 0314
1f61 0345 0301 -> 0342 0301 -> 0314 is confluent 1f61 0301 0345 -> 1f65 0345 -> 0314
1f61 0345 0313 -> 0342 0313 -> 0342 is not confluent
1f61 0345 0314 -> 0342 0314 -> 0342 is not confluent
1f61 0345 0342 -> 0342 0342 -> 0314 is confluent 1f61 0342 0345 -> 1f67 0345 -> 0314
1f68 0345 0300 -> 0342 0300 -> 0314 is confluent 1f68 0300 0345 -> 1f6a 0345 -> 0314
1f68 0345 0301 -> 0342 0301 -> 0314 is confluent 1f68 0301 0345 -> 1f6c 0345 -> 0314
1f68 0345 0313 -> 0342 0313 -> 0342 is not confluent
1f68 0345 0314 -> 0342 0314 -> 0342 is not confluent
1f68 0345 0342 -> 0342 0342 -> 0314 is confluent 1f68 0342 0345 -> 1f6e 0345 -> 0314
1f69 0345 0300 -> 0342 0300 -> 0314 is confluent 1f69 0300 0345 -> 1f6b 0345 -> 0314
1f69 0345 0301 -> 0342 0301 -> 0314 is confluent 1f69 0301 0345 -> 1f6d 0345 -> 0314
1f69 0345 0313 -> 0342 0313 -> 0342 is not confluent
1f69 0345 0314 -> 0342 0314 -> 0342 is not confluent
1f69 0345 0342 -> 0342 0342 -> 0314 is confluent 1f69 0342 0345 -> 1f6f 0345 -> 0314
1f6b 0345 0313 -> 1fab 0313 -> 1fab is not confluent
1f6b 0345 0314 -> 1fab 0314 -> 1fab is not confluent
1f6d 0345 0313 -> 1fad 0313 -> 1fad is not confluent
1f6d 0345 0314 -> 1fad 0314 -> 1fad is not confluent
1f6f 0345 0313 -> 1faf 0313 -> 1faf is not confluent
1f6f 0345 0314 -> 1faf 0314 -> 1faf is not confluent
1f70 0345 0308 -> 0314 0308 -> 1fe7 is not confluent
1f70 0345 0313 -> 0314 0313 -> 1f66 is confluent 1f70 0313 0345 -> 1f02 0345 -> 1f66
1f70 0345 0314 -> 0314 0314 -> 1f67 is confluent 1f70 0314 0345 -> 1f03 0345 -> 1f67
1f74 0345 0308 -> 0314 0308 -> 1fe7 is not confluent
1f74 0345 0313 -> 0314 0313 -> 1f66 is confluent 1f74 0313 0345 -> 1f22 0345 -> 1f66
1f74 0345 0314 -> 0314 0314 -> 1f67 is confluent 1f74 0314 0345 -> 1f23 0345 -> 1f67
1f7c 0345 0308 -> 0314 0308 -> 1fe7 is not confluent
1f7c 0345 0313 -> 0314 0313 -> 1f66 is confluent 1f7c 0313 0345 -> 1f62 0345 -> 1f66
1f7c 0345 0314 -> 0314 0314 -> 1f67 is confluent 1f7c 0314 0345 -> 1f63 0345 -> 1f67
1fb6 0345 0308 -> 0314 0308 -> 1fe7 is not confluent
1fb6 0345 0313 -> 0314 0313 -> 1f66 is confluent 1fb6 0313 0345 -> 1f06 0345 -> 1f66
1fb6 0345 0314 -> 0314 0314 -> 1f67 is confluent 1fb6 0314 0345 -> 1f07 0345 -> 1f67
1fc6 0345 0308 -> 0314 0308 -> 1fe7 is not confluent
1fc6 0345 0313 -> 0314 0313 -> 1f66 is confluent 1fc6 0313 0345 -> 1f26 0345 -> 1f66
1fc6 0345 0314 -> 0314 0314 -> 1f67 is confluent 1fc6 0314 0345 -> 1f27 0345 -> 1f67
1ff6 0345 0308 -> 0314 0308 -> 1fe7 is not confluent
1ff6 0345 0313 -> 0314 0313 -> 1f66 is confluent 1ff6 0313 0345 -> 1f66 0345 -> 1f66
1ff6 0345 0314 -> 0314 0314 -> 1f67 is confluent 1ff6 0314 0345 -> 1f67 0345 -> 1f67
0cc6 0cc2 0cd5 -> 0cca 0cd5 -> 0ccb is confluent 0cc6 0cd5 0cc2 -> 0cc2 0cc2 -> 0ccb
0cc6 0cd5 0cc2 -> 0cc2 0cc2 -> 0ccb is confluent 0cc6 0cc2 0cd5 -> 0cca 0cd5 -> 0ccb
0dd9 0dca 0dcf -> 0dcf 0dcf -> 0ddd is confluent 0dd9 0dcf 0dca -> 0ddc 0dca -> 0ddd
0dd9 0dcf 0dca -> 0ddc 0dca -> 0ddd is confluent 0dd9 0dca 0dcf -> 0dcf 0dcf -> 0ddd
1d158 1d165 1d16e -> 1d15f 1d16e -> 1d160 is not confluent
1d158 1d165 1d16f -> 1d15f 1d16f -> 1d161 is not confluent
1d158 1d165 1d170 -> 1d15f 1d170 -> 1d162 is not confluent
1d158 1d165 1d171 -> 1d15f 1d171 -> 1d163 is not confluent
1d158 1d165 1d172 -> 1d15f 1d172 -> 1d164 is not confluent
1d1b9 1d165 1d16e -> 1d1bb 1d16e -> 1d1bd is not confluent
1d1b9 1d165 1d16f -> 1d1bb 1d16f -> 1d1bf is not confluent
1d1ba 1d165 1d16e -> 1d1bc 1d16e -> 1d1be is not confluent
1d1ba 1d165 1d16f -> 1d1bc 1d16f -> 1d1c0 is not confluent

Knuth-Bendix completion took 16 passes to add 651 new rules for 1566 rules total

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants