leptess 0.14.0

Productive Rust binding for Tesseract and Leptonica.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
// ⚠️ This file is generated
// ⚠️ Regenerate with `make src/variable.rs`

use std::ffi::CStr;

/// Enum representing different variable options accepted by Tesseract
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Variable {
    /// Number of Class Pruner Levels
    ///
    /// Example value: `"3"`
    ClassifyNumCpLevels,
    /// Max pixel gap for broken pixed pitch
    ///
    /// Example value: `"3"`
    TextordDotmatrixGap,
    /// Block to do debug on
    ///
    /// Example value: `"0"`
    TextordDebugBlock,
    /// Max range test on pitch
    ///
    /// Example value: `"2"`
    TextordPitchRange,
    /// Rows required to outvote a veto
    ///
    /// Example value: `"5"`
    TextordWordsVetoPower,
    /// Show stroke widths
    ///
    /// Example value: `"0"`
    TextordTabfindShowStrokewidths,
    /// Use new fast algorithm
    ///
    /// Example value: `"6"`
    PitsyncLinearVersion,
    /// Max advance fake generation
    ///
    /// Example value: `"1"`
    PitsyncFakeDepth,
    /// Max lost before fallback line used
    ///
    /// Example value: `"10"`
    OldblHoledLosscount,
    /// For smooth factor
    ///
    /// Example value: `"4"`
    TextordSkewsmoothOffset,
    /// For smooth factor
    ///
    /// Example value: `"1"`
    TextordSkewsmoothOffset2,
    /// coord of test pt
    ///
    /// Example value: `"-2147483647"`
    TextordTestX,
    /// coord of test pt
    ///
    /// Example value: `"-2147483647"`
    TextordTestY,
    /// Min blobs before gradient counted
    ///
    /// Example value: `"4"`
    TextordMinBlobsInRow,
    /// Min blobs in each spline segment
    ///
    /// Example value: `"8"`
    TextordSplineMinblobs,
    /// Size of window for spline segmentation
    ///
    /// Example value: `"6"`
    TextordSplineMedianwin,
    /// Max number of blobs a big blob can overlap
    ///
    /// Example value: `"4"`
    TextordMaxBlobOverlaps,
    /// Min credible pixel xheight
    ///
    /// Example value: `"10"`
    TextordMinXheight,
    /// Number of linew fits to do
    ///
    /// Example value: `"12"`
    TextordLmsLineTrials,
    /// Show image blobs
    ///
    /// Example value: `"0"`
    TextordTabfindShowImages,
    /// Max allowed bending of chop cells
    ///
    /// Example value: `"2"`
    TextordFpChopError,
    /// Max number of children inside a character outline
    ///
    /// Example value: `"10"`
    EdgesMaxChildrenPerOutline,
    /// Max layers of nested children inside a character outline
    ///
    /// Example value: `"5"`
    EdgesMaxChildrenLayers,
    /// Importance ratio for chucking outlines
    ///
    /// Example value: `"10"`
    EdgesChildrenPerGrandchild,
    /// Max holes allowed in blob
    ///
    /// Example value: `"45"`
    EdgesChildrenCountLimit,
    /// Min pixels for potential char in box
    ///
    /// Example value: `"12"`
    EdgesMinNonhole,
    /// Max lensq/area for acceptable child outline
    ///
    /// Example value: `"40"`
    EdgesPathareaRatio,
    /// Debug level for split shiro\-rekha process\.
    ///
    /// Example value: `"0"`
    DevanagariSplitDebuglevel,
    /// Show partition bounds, waiting if >1
    ///
    /// Example value: `"0"`
    TextordTabfindShowPartitions,
    /// Debug tab finding
    ///
    /// Example value: `"0"`
    TextordDebugTabfind,
    /// Turn on output related to bugs in tab finding
    ///
    /// Example value: `"0"`
    TextordDebugBugs,
    /// Left edge of debug reporting rectangle
    ///
    /// Example value: `"-1"`
    TextordTestregionLeft,
    /// Top edge of debug reporting rectangle
    ///
    /// Example value: `"-1"`
    TextordTestregionTop,
    /// Right edge of debug rectangle
    ///
    /// Example value: `"2147483647"`
    TextordTestregionRight,
    /// Bottom edge of debug rectangle
    ///
    /// Example value: `"2147483647"`
    TextordTestregionBottom,
    /// Editor image X Pos
    ///
    /// Example value: `"590"`
    EditorImageXpos,
    /// Editor image Y Pos
    ///
    /// Example value: `"10"`
    EditorImageYpos,
    /// Add to image height for menu bar
    ///
    /// Example value: `"50"`
    EditorImageMenuheight,
    /// Word bounding box colour
    ///
    /// Example value: `"7"`
    EditorImageWordBbColor,
    /// Blob bounding box colour
    ///
    /// Example value: `"4"`
    EditorImageBlobBbColor,
    /// Correct text colour
    ///
    /// Example value: `"2"`
    EditorImageTextColor,
    /// Editor debug window X Pos
    ///
    /// Example value: `"50"`
    EditorDbwinXpos,
    /// Editor debug window Y Pos
    ///
    /// Example value: `"500"`
    EditorDbwinYpos,
    /// Editor debug window height
    ///
    /// Example value: `"24"`
    EditorDbwinHeight,
    /// Editor debug window width
    ///
    /// Example value: `"80"`
    EditorDbwinWidth,
    /// Word window X Pos
    ///
    /// Example value: `"60"`
    EditorWordXpos,
    /// Word window Y Pos
    ///
    /// Example value: `"510"`
    EditorWordYpos,
    /// Word window height
    ///
    /// Example value: `"240"`
    EditorWordHeight,
    /// Word window width
    ///
    /// Example value: `"655"`
    EditorWordWidth,
    /// Display splits
    ///
    /// Example value: `"0"`
    WordrecDisplaySplits,
    /// Debug old poly
    ///
    /// Example value: `"0"`
    PolyDebug,
    /// More accurate approx on wide things
    ///
    /// Example value: `"1"`
    PolyWideObjectsBetter,
    /// Display Blobs
    ///
    /// Example value: `"0"`
    WordrecDisplayAllBlobs,
    /// Blob pause
    ///
    /// Example value: `"0"`
    WordrecBlobPause,
    /// Do fixed pitch chopping
    ///
    /// Example value: `"1"`
    TextordFpChopping,
    /// Force proportional word segmentation on all rows
    ///
    /// Example value: `"0"`
    TextordForceMakePropWords,
    /// Chopper is being tested\.
    ///
    /// Example value: `"0"`
    TextordChopperTest,
    /// Chop underlines & put back
    ///
    /// Example value: `"1"`
    TextordRestoreUnderlines,
    /// Display separate words
    ///
    /// Example value: `"0"`
    TextordShowInitialWords,
    /// Display separate words
    ///
    /// Example value: `"0"`
    TextordShowNewWords,
    /// Display forced fixed pitch words
    ///
    /// Example value: `"0"`
    TextordShowFixedWords,
    /// Moan about prop blocks
    ///
    /// Example value: `"0"`
    TextordBlocksallFixed,
    /// Moan about fixed pitch blocks
    ///
    /// Example value: `"0"`
    TextordBlocksallProp,
    /// Dump stats when moaning
    ///
    /// Example value: `"0"`
    TextordBlocksallTesting,
    /// Do current test
    ///
    /// Example value: `"0"`
    TextordTestMode,
    /// Scale scores on big words
    ///
    /// Example value: `"0"`
    TextordPitchScalebigwords,
    /// All doc is proportial text
    ///
    /// Example value: `"0"`
    TextordAllProp,
    /// Debug on fixed pitch test
    ///
    /// Example value: `"0"`
    TextordDebugPitchTest,
    /// Turn off dp fixed pitch algorithm
    ///
    /// Example value: `"0"`
    TextordDisablePitchTest,
    /// Do even faster pitch algorithm
    ///
    /// Example value: `"0"`
    TextordFastPitchTest,
    /// Write full metric stuff
    ///
    /// Example value: `"0"`
    TextordDebugPitchMetric,
    /// Draw row\-level cuts
    ///
    /// Example value: `"0"`
    TextordShowRowCuts,
    /// Draw page\-level cuts
    ///
    /// Example value: `"0"`
    TextordShowPageCuts,
    /// Use correct answer for fixed/prop
    ///
    /// Example value: `"0"`
    TextordPitchCheat,
    /// Attempt whole doc/block fixed pitch
    ///
    /// Example value: `"0"`
    TextordBlockndocFixed,
    /// Show table regions
    ///
    /// Example value: `"0"`
    TextordShowTables,
    /// Debug table marking steps in detail
    ///
    /// Example value: `"0"`
    TextordTablefindShowMark,
    /// Show page stats used in table finding
    ///
    /// Example value: `"0"`
    TextordTablefindShowStats,
    /// Enables the table recognizer for table layout and filtering\.
    ///
    /// Example value: `"0"`
    TextordTablefindRecognizeTables,
    /// Show tab candidates
    ///
    /// Example value: `"0"`
    TextordTabfindShowInitialtabs,
    /// Show tab vectors
    ///
    /// Example value: `"0"`
    TextordTabfindShowFinaltabs,
    /// Only run stroke widths
    ///
    /// Example value: `"0"`
    TextordTabfindOnlyStrokewidths,
    /// Use original wiseowl xheight
    ///
    /// Example value: `"0"`
    TextordReallyOldXheight,
    /// Debug old baseline generation
    ///
    /// Example value: `"0"`
    TextordOldblDebug,
    /// Debug baseline generation
    ///
    /// Example value: `"0"`
    TextordDebugBaselines,
    /// Use para default mechanism
    ///
    /// Example value: `"1"`
    TextordOldblParadef,
    /// Split stepped splines
    ///
    /// Example value: `"1"`
    TextordOldblSplitSplines,
    /// Merge suspect partitions
    ///
    /// Example value: `"1"`
    TextordOldblMergeParts,
    /// Improve correlation of heights
    ///
    /// Example value: `"1"`
    OldblCorrfix,
    /// Fix bug in modes threshold for xheights
    ///
    /// Example value: `"0"`
    OldblXhfix,
    /// Make baselines for ocropus
    ///
    /// Example value: `"0"`
    TextordOcropusMode,
    /// Vigorously remove noise
    ///
    /// Example value: `"0"`
    TextordHeavyNr,
    /// Display row accumulation
    ///
    /// Example value: `"0"`
    TextordShowInitialRows,
    /// Display page correlated rows
    ///
    /// Example value: `"0"`
    TextordShowParallelRows,
    /// Display rows after expanding
    ///
    /// Example value: `"0"`
    TextordShowExpandedRows,
    /// Display rows after final fitting
    ///
    /// Example value: `"0"`
    TextordShowFinalRows,
    /// Display blob bounds after pre\-ass
    ///
    /// Example value: `"0"`
    TextordShowFinalBlobs,
    /// Tests refer to land/port
    ///
    /// Example value: `"0"`
    TextordTestLandscape,
    /// Force parallel baselines
    ///
    /// Example value: `"1"`
    TextordParallelBaselines,
    /// Force straight baselines
    ///
    /// Example value: `"0"`
    TextordStraightBaselines,
    /// Use old baseline algorithm
    ///
    /// Example value: `"1"`
    TextordOldBaselines,
    /// Use old xheight algorithm
    ///
    /// Example value: `"0"`
    TextordOldXheight,
    /// Use spline baseline
    ///
    /// Example value: `"1"`
    TextordFixXheightBug,
    /// Prevent multiple baselines
    ///
    /// Example value: `"1"`
    TextordFixMakerowBug,
    /// Test xheight algorithms
    ///
    /// Example value: `"0"`
    TextordDebugXheights,
    /// Bias skew estimates with line length
    ///
    /// Example value: `"1"`
    TextordBiasedSkewcalc,
    /// Interpolate across gaps
    ///
    /// Example value: `"1"`
    TextordInterpolatingSkew,
    /// Use test xheight mechanism
    ///
    /// Example value: `"1"`
    TextordNewInitialXheight,
    /// Print test blob information
    ///
    /// Example value: `"0"`
    TextordDebugBlob,
    /// Say which blocks have tables
    ///
    /// Example value: `"0"`
    GapmapDebug,
    /// Use large space at start and end of rows
    ///
    /// Example value: `"0"`
    GapmapUseEnds,
    /// Ensure gaps not less than 2quanta wide
    ///
    /// Example value: `"0"`
    GapmapNoIsolatedQuanta,
    /// Use the new outline complexity module
    ///
    /// Example value: `"0"`
    EdgesUseNewOutlineComplexity,
    /// turn on debugging for this module
    ///
    /// Example value: `"0"`
    EdgesDebug,
    /// Remove boxy parents of char\-like children
    ///
    /// Example value: `"0"`
    EdgesChildrenFix,
    /// Draw fixed pitch cell boundaries
    ///
    /// Example value: `"0"`
    TextordShowFixedCuts,
    /// Whether to create a debug image for split shiro\-rekha process\.
    ///
    /// Example value: `"0"`
    DevanagariSplitDebugimage,
    /// Show partition bounds
    ///
    /// Example value: `"0"`
    TextordTabfindShowInitialPartitions,
    /// Show blobs rejected as noise
    ///
    /// Example value: `"0"`
    TextordTabfindShowRejectBlobs,
    /// Show column bounds
    ///
    /// Example value: `"0"`
    TextordTabfindShowColumns,
    /// Show final block bounds
    ///
    /// Example value: `"0"`
    TextordTabfindShowBlocks,
    /// run table detection
    ///
    /// Example value: `"1"`
    TextordTabfindFindTables,
    /// If true, word delimiter spaces are assumed to have variable width, even though characters have fixed pitch\.
    ///
    /// Example value: `"0"`
    TextordSpaceSizeIsVariable,
    /// Make debug windows printable
    ///
    /// Example value: `"0"`
    TextordDebugPrintable,
    /// Save input bi image
    ///
    /// Example value: `"0"`
    EquationdetectSaveBiImage,
    /// Save special character image
    ///
    /// Example value: `"0"`
    EquationdetectSaveSptImage,
    /// Save the seed image
    ///
    /// Example value: `"0"`
    EquationdetectSaveSeedImage,
    /// Save the merged image
    ///
    /// Example value: `"0"`
    EquationdetectSaveMergedImage,
    /// Stream a filelist from stdin
    ///
    /// Example value: `"0"`
    StreamFilelist,
    /// File to send tprintf output to
    DebugFile,
    /// Function used for calculation of dot product
    ///
    /// Example value: `"generic"`
    Dotproduct,
    /// Default font name to be used in training
    ///
    /// Example value: `"UnknownFont"`
    ClassifyFontName,
    /// Name of debugfile
    ///
    /// Example value: `"FXDebug"`
    FxDebugfile,
    /// Editor image window name
    ///
    /// Example value: `"EditorImage"`
    EditorImageWinName,
    /// Editor debug window name
    ///
    /// Example value: `"EditorDBWin"`
    EditorDbwinName,
    /// BL normalized word window
    ///
    /// Example value: `"BlnWords"`
    EditorWordName,
    /// Title of output document \(used for hOCR and PDF output\)
    DocumentTitle,
    /// Pico Feature Length
    ///
    /// Example value: `"0.05"`
    ClassifyPicoFeatureLength,
    /// Norm adjust midpoint \.\.\.
    ///
    /// Example value: `"32"`
    ClassifyNormAdjMidpoint,
    /// Norm adjust curl \.\.\.
    ///
    /// Example value: `"2"`
    ClassifyNormAdjCurl,
    /// Slope below which lines are called horizontal
    ///
    /// Example value: `"0.414214"`
    ClassifyMinSlope,
    /// Slope above which lines are called vertical
    ///
    /// Example value: `"2.41421"`
    ClassifyMaxSlope,
    /// Class Pruner Angle Pad Loose
    ///
    /// Example value: `"45"`
    ClassifyCpAnglePadLoose,
    /// Class Pruner Angle Pad Medium
    ///
    /// Example value: `"20"`
    ClassifyCpAnglePadMedium,
    /// CLass Pruner Angle Pad Tight
    ///
    /// Example value: `"10"`
    ClassifyCpAnglePadTight,
    /// Class Pruner End Pad Loose
    ///
    /// Example value: `"0.5"`
    ClassifyCpEndPadLoose,
    /// Class Pruner End Pad Medium
    ///
    /// Example value: `"0.5"`
    ClassifyCpEndPadMedium,
    /// Class Pruner End Pad Tight
    ///
    /// Example value: `"0.5"`
    ClassifyCpEndPadTight,
    /// Class Pruner Side Pad Loose
    ///
    /// Example value: `"2.5"`
    ClassifyCpSidePadLoose,
    /// Class Pruner Side Pad Medium
    ///
    /// Example value: `"1.2"`
    ClassifyCpSidePadMedium,
    /// Class Pruner Side Pad Tight
    ///
    /// Example value: `"0.6"`
    ClassifyCpSidePadTight,
    /// Proto Pruner Angle Pad
    ///
    /// Example value: `"45"`
    ClassifyPpAnglePad,
    /// Proto Prune End Pad
    ///
    /// Example value: `"0.5"`
    ClassifyPpEndPad,
    /// Proto Pruner Side Pad
    ///
    /// Example value: `"2.5"`
    ClassifyPpSidePad,
    /// Fraction of x to ignore
    ///
    /// Example value: `"0.1"`
    TextordUnderlineOffset,
    /// Smoothing gap stats
    ///
    /// Example value: `"0.05"`
    TextordWordstatsSmoothFactor,
    /// Smoothing width stats
    ///
    /// Example value: `"0.1"`
    TextordWidthSmoothFactor,
    /// Ile of blob widths for space est
    ///
    /// Example value: `"0.4"`
    TextordWordsWidthIle,
    /// Multiple of xheight
    ///
    /// Example value: `"4"`
    TextordWordsMaxspace,
    /// Max believable third space
    ///
    /// Example value: `"3.5"`
    TextordWordsDefaultMaxspace,
    /// Fraction of xheight
    ///
    /// Example value: `"0.6"`
    TextordWordsDefaultMinspace,
    /// Fraction of xheight
    ///
    /// Example value: `"0.3"`
    TextordWordsMinMinspace,
    /// Fraction of xheight
    ///
    /// Example value: `"0.2"`
    TextordWordsDefaultNonspace,
    /// Max initial cluster size
    ///
    /// Example value: `"0.25"`
    TextordWordsInitialLower,
    /// Min initial cluster spacing
    ///
    /// Example value: `"0.15"`
    TextordWordsInitialUpper,
    /// Fraction of valid gaps needed
    ///
    /// Example value: `"0.75"`
    TextordWordsMinlarge,
    /// Pitch sync threshold
    ///
    /// Example value: `"0.04"`
    TextordWordsPitchsdThreshold,
    /// Threshold for definite fixed
    ///
    /// Example value: `"0.016"`
    TextordWordsDefFixed,
    /// Threshold for definite prop
    ///
    /// Example value: `"0.09"`
    TextordWordsDefProp,
    /// Fraction of xheight for sameness
    ///
    /// Example value: `"0.08"`
    TextordPitchRowsimilarity,
    /// Max initial cluster size
    ///
    /// Example value: `"0.5"`
    WordsInitialLower,
    /// Min initial cluster spacing
    ///
    /// Example value: `"0.15"`
    WordsInitialUpper,
    /// Fraction of xheight
    ///
    /// Example value: `"0.25"`
    WordsDefaultPropNonspace,
    /// Fraction of xheight
    ///
    /// Example value: `"0.75"`
    WordsDefaultFixedSpace,
    /// Allowed size variance
    ///
    /// Example value: `"0.6"`
    WordsDefaultFixedLimit,
    /// Non\-fuzzy spacing region
    ///
    /// Example value: `"0.3"`
    TextordWordsDefiniteSpread,
    /// Min ratio space/nonspace
    ///
    /// Example value: `"2.8"`
    TextordSpacesizeRatiofp,
    /// Min ratio space/nonspace
    ///
    /// Example value: `"2"`
    TextordSpacesizeRatioprop,
    /// Pitch IQR/Gap IQR threshold
    ///
    /// Example value: `"1.5"`
    TextordFpiqrRatio,
    /// Xh fraction noise in pitch
    ///
    /// Example value: `"0.2"`
    TextordMaxPitchIqr,
    /// Min width of decent blobs
    ///
    /// Example value: `"0.5"`
    TextordFpMinWidth,
    /// Ding rate for mid\-cuts
    ///
    /// Example value: `"0.2"`
    TextordProjectionScale,
    /// Ding rate for unbalanced char cells
    ///
    /// Example value: `"1"`
    TextordBalanceFactor,
    /// max fraction of mean blob width allowed for vertical gaps in vertical text
    ///
    /// Example value: `"0.5"`
    TextordTabvectorVerticalGapFraction,
    /// Fraction of box matches required to declare a line vertical
    ///
    /// Example value: `"0.5"`
    TextordTabvectorVerticalBoxRatio,
    /// Dist inside big blob for chopping
    ///
    /// Example value: `"0.75"`
    PitsyncJoinedEdge,
    /// Fraction of cut for free cuts
    ///
    /// Example value: `"0.25"`
    PitsyncOffsetFreecutFraction,
    /// Fraction of est allowed in calc
    ///
    /// Example value: `"0.4"`
    OldblXhfract,
    /// Max aspect ratio of a dot
    ///
    /// Example value: `"1.26"`
    OldblDotErrorSize,
    /// X fraction for new partition
    ///
    /// Example value: `"0.15"`
    TextordOldblJumplimit,
    /// Fraction of line spacing for quad
    ///
    /// Example value: `"0.02"`
    TextordSplineShiftFraction,
    /// Fraction of line spacing for outlier
    ///
    /// Example value: `"0.1"`
    TextordSplineOutlierFraction,
    /// Ile of gradients for page skew
    ///
    /// Example value: `"0.5"`
    TextordSkewIle,
    /// Lag for skew on row accumulation
    ///
    /// Example value: `"0.02"`
    TextordSkewLag,
    /// Max iqr/median for linespace
    ///
    /// Example value: `"0.2"`
    TextordLinespaceIqrlimit,
    /// Max width of blobs to make rows
    ///
    /// Example value: `"8"`
    TextordWidthLimit,
    /// Max width before chopping
    ///
    /// Example value: `"1.5"`
    TextordChopWidth,
    /// Factor to expand rows by in expand\_rows
    ///
    /// Example value: `"1"`
    TextordExpansionFactor,
    /// Fraction of linespace for good overlap
    ///
    /// Example value: `"0.375"`
    TextordOverlapX,
    /// fraction of linesize for min xheight
    ///
    /// Example value: `"0.25"`
    TextordMinxh,
    /// \* blob height for initial linesize
    ///
    /// Example value: `"1.25"`
    TextordMinLinesize,
    /// New row made if blob makes row this big
    ///
    /// Example value: `"1.3"`
    TextordExcessBlobsize,
    /// Fraction of neighbourhood
    ///
    /// Example value: `"0.4"`
    TextordOccupancyThreshold,
    /// Multiple of line\_size for underline
    ///
    /// Example value: `"2"`
    TextordUnderlineWidth,
    /// Min blob height/top to include blob top into xheight stats
    ///
    /// Example value: `"0.75"`
    TextordMinBlobHeightFraction,
    /// Min pile height to make xheight
    ///
    /// Example value: `"0.4"`
    TextordXheightModeFraction,
    /// Min pile height to make ascheight
    ///
    /// Example value: `"0.08"`
    TextordAscheightModeFraction,
    /// Min pile height to make descheight
    ///
    /// Example value: `"0.08"`
    TextordDescheightModeFraction,
    /// Min cap/xheight
    ///
    /// Example value: `"1.25"`
    TextordAscxRatioMin,
    /// Max cap/xheight
    ///
    /// Example value: `"1.8"`
    TextordAscxRatioMax,
    /// Min desc/xheight
    ///
    /// Example value: `"0.25"`
    TextordDescxRatioMin,
    /// Max desc/xheight
    ///
    /// Example value: `"0.6"`
    TextordDescxRatioMax,
    /// Accepted variation
    ///
    /// Example value: `"0.1"`
    TextordXheightErrorMargin,
    /// xht multiplier
    ///
    /// Example value: `"1.75"`
    GapmapBigGaps,
    /// Max distance of chop pt from vertex
    ///
    /// Example value: `"0.5"`
    TextordFpChopSnap,
    /// Min area fraction of child outline
    ///
    /// Example value: `"0.5"`
    EdgesChildarea,
    /// Min area fraction of grandchild for box
    ///
    /// Example value: `"0.875"`
    EdgesBoxarea,
    /// Fraction of width occupied
    ///
    /// Example value: `"0.5"`
    TextordUnderlineThreshold,
    /// Debug level for unichar ambiguities
    ///
    /// Example value: `"0"`
    AmbigsDebugLevel,
    /// Classify debug level
    ///
    /// Example value: `"0"`
    ClassifyDebugLevel,
    /// Normalization Method   \.\.\.
    ///
    /// Example value: `"1"`
    ClassifyNormMethod,
    /// Matcher Debug Level
    ///
    /// Example value: `"0"`
    MatcherDebugLevel,
    /// Matcher Debug Flags
    ///
    /// Example value: `"0"`
    MatcherDebugFlags,
    /// Learning Debug Level:
    ///
    /// Example value: `"0"`
    ClassifyLearningDebugLevel,
    /// Min \# of permanent classes
    ///
    /// Example value: `"1"`
    MatcherPermanentClassesMin,
    /// Reliable Config Threshold
    ///
    /// Example value: `"3"`
    MatcherMinExamplesForPrototyping,
    /// Enable adaption even if the ambiguities have not been seen
    ///
    /// Example value: `"5"`
    MatcherSufficientExamplesForPrototyping,
    /// Threshold for good protos during adaptive 0\-255
    ///
    /// Example value: `"230"`
    ClassifyAdaptProtoThreshold,
    /// Threshold for good features during adaptive 0\-255
    ///
    /// Example value: `"230"`
    ClassifyAdaptFeatureThreshold,
    /// Class Pruner Threshold 0\-255
    ///
    /// Example value: `"229"`
    ClassifyClassPrunerThreshold,
    /// Class Pruner Multiplier 0\-255:       
    ///
    /// Example value: `"15"`
    ClassifyClassPrunerMultiplier,
    /// Class Pruner CutoffStrength:         
    ///
    /// Example value: `"7"`
    ClassifyCpCutoffStrength,
    /// Integer Matcher Multiplier  0\-255:   
    ///
    /// Example value: `"10"`
    ClassifyIntegerMatcherMultiplier,
    /// Set to 1 for general debug info, to 2 for more details, to 3 to see all the debug messages
    ///
    /// Example value: `"0"`
    DawgDebugLevel,
    /// Debug level for hyphenated words\.
    ///
    /// Example value: `"0"`
    HyphenDebugLevel,
    /// Size of dict word to be treated as non\-dict word
    ///
    /// Example value: `"2"`
    StopperSmallwordSize,
    /// Stopper debug level
    ///
    /// Example value: `"0"`
    StopperDebugLevel,
    /// Max words to keep in list
    ///
    /// Example value: `"10"`
    TesseditTruncateWordchoiceLog,
    /// Maximum number of different character choices to consider during permutation\. This limit is especially useful when user patterns are specified, since overly generic patterns can result in dawg search exploring an overly large number of options\.
    ///
    /// Example value: `"10000"`
    MaxPermuterAttempts,
    /// Fix blobs that aren't chopped
    ///
    /// Example value: `"1"`
    RepairUnchoppedBlobs,
    /// Chop debug
    ///
    /// Example value: `"0"`
    ChopDebug,
    /// Split Length
    ///
    /// Example value: `"10000"`
    ChopSplitLength,
    /// Same distance
    ///
    /// Example value: `"2"`
    ChopSameDistance,
    /// Min Number of Points on Outline
    ///
    /// Example value: `"6"`
    ChopMinOutlinePoints,
    /// Max number of seams in seam\_pile
    ///
    /// Example value: `"150"`
    ChopSeamPileSize,
    /// Min Inside Angle Bend
    ///
    /// Example value: `"-50"`
    ChopInsideAngle,
    /// Min Outline Area
    ///
    /// Example value: `"2000"`
    ChopMinOutlineArea,
    /// Width of \(smaller\) chopped blobs above which we don't care that a chop is not near the center\.
    ///
    /// Example value: `"90"`
    ChopCenteredMaxwidth,
    /// X / Y  length weight
    ///
    /// Example value: `"3"`
    ChopXyWeight,
    /// Debug level for wordrec
    ///
    /// Example value: `"0"`
    WordrecDebugLevel,
    /// Max number of broken pieces to associate
    ///
    /// Example value: `"4"`
    WordrecMaxJoinChunks,
    /// SegSearch debug level
    ///
    /// Example value: `"0"`
    SegsearchDebugLevel,
    /// Maximum number of pain points stored in the queue
    ///
    /// Example value: `"2000"`
    SegsearchMaxPainPoints,
    /// Maximum number of pain point classifications per chunk that did not result in finding a better word choice\.
    ///
    /// Example value: `"20"`
    SegsearchMaxFutileClassifications,
    /// Language model debug level
    ///
    /// Example value: `"0"`
    LanguageModelDebugLevel,
    /// Maximum order of the character ngram model
    ///
    /// Example value: `"8"`
    LanguageModelNgramOrder,
    /// Maximum number of prunable \(those for which PrunablePath\(\) is true\) entries in each viterbi list recorded in BLOB\_CHOICEs
    ///
    /// Example value: `"10"`
    LanguageModelViterbiListMaxNumPrunable,
    /// Maximum size of viterbi lists recorded in BLOB\_CHOICEs
    ///
    /// Example value: `"500"`
    LanguageModelViterbiListMaxSize,
    /// Minimum length of compound words
    ///
    /// Example value: `"3"`
    LanguageModelMinCompoundLength,
    /// Display Segmentations
    ///
    /// Example value: `"0"`
    WordrecDisplaySegmentations,
    /// Page seg mode: 0=osd only, 1=auto\+osd, 2=auto\_only, 3=auto, 4=column, 5=block\_vert, 6=block, 7=line, 8=word, 9=word\_circle, 10=char,11=sparse\_text, 12=sparse\_text\+osd, 13=raw\_line \(Values from PageSegMode enum in publictypes\.h\)
    ///
    /// Example value: `"6"`
    TesseditPagesegMode,
    /// Which OCR engine\(s\) to run \(Tesseract, LSTM, both\)\. Defaults to loading and running the most accurate available\.
    ///
    /// Example value: `"1"`
    TesseditOcrEngineMode,
    /// Whether to use the top\-line splitting process for Devanagari documents while performing page\-segmentation\.
    ///
    /// Example value: `"0"`
    PagesegDevanagariSplitStrategy,
    /// Whether to use the top\-line splitting process for Devanagari documents while performing ocr\.
    ///
    /// Example value: `"0"`
    OcrDevanagariSplitStrategy,
    /// Debug level for BiDi
    ///
    /// Example value: `"0"`
    BidiDebug,
    /// Debug level
    ///
    /// Example value: `"1"`
    ApplyboxDebug,
    /// Page number to apply boxes from
    ///
    /// Example value: `"0"`
    ApplyboxPage,
    /// Amount of debug output for bigram correction\.
    ///
    /// Example value: `"0"`
    TesseditBigramDebug,
    /// Debug reassignment of small outlines
    ///
    /// Example value: `"0"`
    DebugNoiseRemoval,
    /// Max diacritics to apply to a blob
    ///
    /// Example value: `"8"`
    NoiseMaxperblob,
    /// Max diacritics to apply to a word
    ///
    /// Example value: `"16"`
    NoiseMaxperword,
    /// Reestimate debug
    ///
    /// Example value: `"0"`
    DebugXHtLevel,
    /// alphas in a good word
    ///
    /// Example value: `"2"`
    QualityMinInitialAlphasReqd,
    /// Adaptation decision algorithm for tess
    ///
    /// Example value: `"39"`
    TesseditTessAdaptionMode,
    /// Print multilang debug info\.
    ///
    /// Example value: `"0"`
    MultilangDebugLevel,
    /// Print paragraph debug info\.
    ///
    /// Example value: `"0"`
    ParagraphDebugLevel,
    /// Only preserve wds longer than this
    ///
    /// Example value: `"2"`
    TesseditPreserveMinWdLen,
    /// For adj length in rating per ch
    ///
    /// Example value: `"10"`
    CrunchRatingMax,
    /// How many potential indicators needed
    ///
    /// Example value: `"1"`
    CrunchPotIndicators,
    /// Don't crunch words with long lower case strings
    ///
    /// Example value: `"4"`
    CrunchLeaveLcStrings,
    /// Don't crunch words with long lower case strings
    ///
    /// Example value: `"4"`
    CrunchLeaveUcStrings,
    /// Crunch words with long repetitions
    ///
    /// Example value: `"3"`
    CrunchLongRepetitions,
    /// As it says
    ///
    /// Example value: `"0"`
    CrunchDebug,
    /// How many non\-noise blbs either side?
    ///
    /// Example value: `"1"`
    FixspNonNoiseLimit,
    /// What constitues done for spacing
    ///
    /// Example value: `"1"`
    FixspDoneMode,
    /// Contextual fixspace debug
    ///
    /// Example value: `"0"`
    DebugFixSpaceLevel,
    /// Max allowed deviation of blob top outside of font data
    ///
    /// Example value: `"8"`
    XHtAcceptanceTolerance,
    /// Min change in xht before actually trying it
    ///
    /// Example value: `"8"`
    XHtMinChange,
    /// Debug level for sub & superscript fixer
    ///
    /// Example value: `"0"`
    SuperscriptDebug,
    /// Set JPEG quality level
    ///
    /// Example value: `"85"`
    JpgQuality,
    /// Specify DPI for input image
    ///
    /// Example value: `"0"`
    UserDefinedDpi,
    /// Specify minimum characters to try during OSD
    ///
    /// Example value: `"50"`
    MinCharactersToTry,
    /// Suspect marker level
    ///
    /// Example value: `"99"`
    SuspectLevel,
    /// Don't suspect dict wds longer than this
    ///
    /// Example value: `"2"`
    SuspectShortWords,
    /// Rejection algorithm
    ///
    /// Example value: `"0"`
    TesseditRejectMode,
    /// Rej blbs near image edge limit
    ///
    /// Example value: `"2"`
    TesseditImageBorder,
    /// Reject any x\-ht lt or eq than this
    ///
    /// Example value: `"8"`
    MinSaneXHtPixels,
    /// \-1 \-> All pages, else specific page to process
    ///
    /// Example value: `"-1"`
    TesseditPageNumber,
    /// Run in parallel where possible
    ///
    /// Example value: `"0"`
    TesseditParallelize,
    /// Allows to include alternative symbols choices in the hOCR output\. Valid input values are 0, 1, 2 and 3\. 0 is the default value\. With 1 the alternative symbol choices per timestep are included\. With 2 the alternative symbol choices are accumulated per character\.
    ///
    /// Example value: `"0"`
    LstmChoiceMode,
    /// Debug data
    ///
    /// Example value: `"0"`
    TospDebugLevel,
    /// or should we use mean
    ///
    /// Example value: `"3"`
    TospEnoughSpaceSamplesForMedian,
    /// No\.samples reqd to reestimate for row
    ///
    /// Example value: `"10"`
    TospRedoKernLimit,
    /// No\.gaps reqd with 1 large gap to treat as a table
    ///
    /// Example value: `"40"`
    TospFewSamples,
    /// No\.gaps reqd with few cert spaces to use certs
    ///
    /// Example value: `"20"`
    TospShortRow,
    /// How to avoid being silly
    ///
    /// Example value: `"1"`
    TospSanityMethod,
    /// Pixel size of noise
    ///
    /// Example value: `"7"`
    TextordMaxNoiseSize,
    /// Baseline debug level
    ///
    /// Example value: `"0"`
    TextordBaselineDebug,
    /// Fraction of size for maxima
    ///
    /// Example value: `"10"`
    TextordNoiseSizefraction,
    /// Transitions for normal blob
    ///
    /// Example value: `"16"`
    TextordNoiseTranslimit,
    /// super norm blobs to save row
    ///
    /// Example value: `"1"`
    TextordNoiseSncount,
    /// Use ambigs for deciding whether to adapt to a character
    ///
    /// Example value: `"0"`
    UseAmbigsForAdaption,
    /// Use divisible blobs chopping
    ///
    /// Example value: `"1"`
    AllowBlobDivision,
    /// Prioritize blob division over chopping
    ///
    /// Example value: `"0"`
    PrioritizeDivision,
    /// Enable adaptive classifier
    ///
    /// Example value: `"1"`
    ClassifyEnableLearning,
    /// Character Normalized Matching
    ///
    /// Example value: `"0"`
    TessCnMatching,
    /// Baseline Normalized Matching
    ///
    /// Example value: `"0"`
    TessBnMatching,
    /// Enable adaptive classifier
    ///
    /// Example value: `"1"`
    ClassifyEnableAdaptiveMatcher,
    /// Use pre\-adapted classifier templates
    ///
    /// Example value: `"0"`
    ClassifyUsePreAdaptedTemplates,
    /// Save adapted templates to a file
    ///
    /// Example value: `"0"`
    ClassifySaveAdaptedTemplates,
    /// Enable match debugger
    ///
    /// Example value: `"0"`
    ClassifyEnableAdaptiveDebugger,
    /// Non\-linear stroke\-density normalization
    ///
    /// Example value: `"0"`
    ClassifyNonlinearNorm,
    /// Do not include character fragments in the results of the classifier
    ///
    /// Example value: `"1"`
    DisableCharacterFragments,
    /// Bring up graphical debugging windows for fragments training
    ///
    /// Example value: `"0"`
    ClassifyDebugCharacterFragments,
    /// Use two different windows for debugging the matching: One for the protos and one for the features\.
    ///
    /// Example value: `"0"`
    MatcherDebugSeparateWindows,
    /// Assume the input is numbers \[0\-9\]\.
    ///
    /// Example value: `"0"`
    ClassifyBlnNumericMode,
    /// Load system word dawg\.
    ///
    /// Example value: `"1"`
    LoadSystemDawg,
    /// Load frequent word dawg\.
    ///
    /// Example value: `"1"`
    LoadFreqDawg,
    /// Load unambiguous word dawg\.
    ///
    /// Example value: `"1"`
    LoadUnambigDawg,
    /// Load dawg with punctuation patterns\.
    ///
    /// Example value: `"1"`
    LoadPuncDawg,
    /// Load dawg with number patterns\.
    ///
    /// Example value: `"1"`
    LoadNumberDawg,
    /// Load dawg with special word bigrams\.
    ///
    /// Example value: `"1"`
    LoadBigramDawg,
    /// Use only the first UTF8 step of the given string when computing log probabilities\.
    ///
    /// Example value: `"0"`
    UseOnlyFirstUft8Step,
    /// Make AcceptableChoice\(\) always return false\. Useful when there is a need to explore all segmentations
    ///
    /// Example value: `"0"`
    StopperNoAcceptableChoices,
    /// Don't use any alphabetic\-specific tricks\. Set to true in the traineddata config file for scripts that are cursive or inherently fixed\-pitch
    ///
    /// Example value: `"0"`
    SegmentNonalphabeticScript,
    /// Save Document Words
    ///
    /// Example value: `"0"`
    SaveDocWords,
    /// Merge the fragments in the ratings matrix and delete them after merging
    ///
    /// Example value: `"1"`
    MergeFragmentsInMatrix,
    /// Associator Enable
    ///
    /// Example value: `"1"`
    WordrecEnableAssoc,
    /// force associator to run regardless of what enable\_assoc is\. This is used for CJK where component grouping is necessary\.
    ///
    /// Example value: `"0"`
    ForceWordAssoc,
    /// Chop enable
    ///
    /// Example value: `"1"`
    ChopEnable,
    /// Vertical creep
    ///
    /// Example value: `"0"`
    ChopVerticalCreep,
    /// Use new seam\_pile
    ///
    /// Example value: `"1"`
    ChopNewSeamPile,
    /// include fixed\-pitch heuristics in char segmentation
    ///
    /// Example value: `"0"`
    AssumeFixedPitchCharSegment,
    /// Only run OCR for words that had truth recorded in BlamerBundle
    ///
    /// Example value: `"0"`
    WordrecSkipNoTruthWords,
    /// Print blamer debug messages
    ///
    /// Example value: `"0"`
    WordrecDebugBlamer,
    /// Try to set the blame for errors
    ///
    /// Example value: `"0"`
    WordrecRunBlamer,
    /// Save alternative paths found during chopping and segmentation search
    ///
    /// Example value: `"1"`
    SaveAltChoices,
    /// Turn on/off the use of character ngram model
    ///
    /// Example value: `"0"`
    LanguageModelNgramOn,
    /// Use only the first UTF8 step of the given string when computing log probabilities\.
    ///
    /// Example value: `"0"`
    LanguageModelNgramUseOnlyFirstUft8Step,
    /// Words are delimited by space
    ///
    /// Example value: `"1"`
    LanguageModelNgramSpaceDelimitedLanguage,
    /// Use sigmoidal score for certainty
    ///
    /// Example value: `"0"`
    LanguageModelUseSigmoidalCertainty,
    /// Take segmentation and labeling from box file
    ///
    /// Example value: `"0"`
    TesseditResegmentFromBoxes,
    /// Conversion of word/line box file to char box file
    ///
    /// Example value: `"0"`
    TesseditResegmentFromLineBoxes,
    /// Generate training data from boxed chars
    ///
    /// Example value: `"0"`
    TesseditTrainFromBoxes,
    /// Generate more boxes from boxed chars
    ///
    /// Example value: `"0"`
    TesseditMakeBoxesFromBoxes,
    /// Break input into lines and remap boxes if present
    ///
    /// Example value: `"0"`
    TesseditTrainLineRecognizer,
    /// Dump intermediate images made during page segmentation
    ///
    /// Example value: `"0"`
    TesseditDumpPagesegImages,
    /// Try inverting the image in \`LSTMRecognizeWord\`
    ///
    /// Example value: `"1"`
    TesseditDoInvert,
    /// Perform training for ambiguities
    ///
    /// Example value: `"0"`
    TesseditAmbigsTraining,
    /// Generate and print debug information for adaption
    ///
    /// Example value: `"0"`
    TesseditAdaptionDebug,
    /// Learn both character fragments \(as is done in the special low exposure mode\) as well as unfragmented characters\.
    ///
    /// Example value: `"0"`
    ApplyboxLearnCharsAndCharFragsMode,
    /// Each bounding box is assumed to contain ngrams\. Only learn the ngrams whose outlines overlap horizontally\.
    ///
    /// Example value: `"0"`
    ApplyboxLearnNgramsMode,
    /// Draw output words
    ///
    /// Example value: `"0"`
    TesseditDisplayOutwords,
    /// Dump char choices
    ///
    /// Example value: `"0"`
    TesseditDumpChoices,
    /// Print timing stats
    ///
    /// Example value: `"0"`
    TesseditTimingDebug,
    /// Try to improve fuzzy spaces
    ///
    /// Example value: `"1"`
    TesseditFixFuzzySpaces,
    /// Don't bother with word plausibility
    ///
    /// Example value: `"0"`
    TesseditUnrejAnyWd,
    /// Crunch double hyphens?
    ///
    /// Example value: `"1"`
    TesseditFixHyphens,
    /// Add words to the document dictionary
    ///
    /// Example value: `"1"`
    TesseditEnableDocDict,
    /// Output font info per char
    ///
    /// Example value: `"0"`
    TesseditDebugFonts,
    /// Block and Row stats
    ///
    /// Example value: `"0"`
    TesseditDebugBlockRejection,
    /// Enable correction based on the word bigram dictionary\.
    ///
    /// Example value: `"1"`
    TesseditEnableBigramCorrection,
    /// Enable single word correction based on the dictionary\.
    ///
    /// Example value: `"0"`
    TesseditEnableDictCorrection,
    /// Remove and conditionally reassign small outlines when they confuse layout analysis, determining diacritics vs noise
    ///
    /// Example value: `"1"`
    EnableNoiseRemoval,
    /// Do minimal rejection on pass 1 output
    ///
    /// Example value: `"0"`
    TesseditMinimalRejPass1,
    /// Test adaption criteria
    ///
    /// Example value: `"0"`
    TesseditTestAdaption,
    /// Test for point
    ///
    /// Example value: `"0"`
    TestPt,
    /// Run paragraph detection on the post\-text\-recognition \(more accurate\)
    ///
    /// Example value: `"1"`
    ParagraphTextBased,
    /// Use ratings matrix/beam search with lstm
    ///
    /// Example value: `"1"`
    LstmUseMatrix,
    /// Reduce rejection on good docs
    ///
    /// Example value: `"1"`
    TesseditGoodQualityUnrej,
    /// Reject spaces?
    ///
    /// Example value: `"1"`
    TesseditUseRejectSpaces,
    /// Only rej partially rejected words in block rejection
    ///
    /// Example value: `"1"`
    TesseditPreserveBlkRejPerfectWds,
    /// Only rej partially rejected words in row rejection
    ///
    /// Example value: `"1"`
    TesseditPreserveRowRejPerfectWds,
    /// Use word segmentation quality metric
    ///
    /// Example value: `"0"`
    TesseditDontBlkrejGoodWds,
    /// Use word segmentation quality metric
    ///
    /// Example value: `"0"`
    TesseditDontRowrejGoodWds,
    /// Apply row rejection to good docs
    ///
    /// Example value: `"1"`
    TesseditRowRejGoodDocs,
    /// Reject all bad quality wds
    ///
    /// Example value: `"1"`
    TesseditRejectBadQualWds,
    /// Page stats
    ///
    /// Example value: `"0"`
    TesseditDebugDocRejection,
    /// Output data to debug file
    ///
    /// Example value: `"0"`
    TesseditDebugQualityMetrics,
    /// unrej potential with no checks
    ///
    /// Example value: `"0"`
    BlandUnrej,
    /// Mark v\.bad words for tilde crunch
    ///
    /// Example value: `"0"`
    UnlvTildeCrunching,
    /// Add font info to hocr output
    ///
    /// Example value: `"0"`
    HocrFontInfo,
    /// Add coordinates for each character to hocr output
    ///
    /// Example value: `"0"`
    HocrCharBoxes,
    /// Before word crunch?
    ///
    /// Example value: `"1"`
    CrunchEarlyMergeTessFails,
    /// Take out ~^ early?
    ///
    /// Example value: `"0"`
    CrunchEarlyConvertBadUnlvChs,
    /// As it says
    ///
    /// Example value: `"1"`
    CrunchTerribleGarbage,
    /// Don't touch sensible strings
    ///
    /// Example value: `"1"`
    CrunchLeaveOkStrings,
    /// Use acceptability in okstring
    ///
    /// Example value: `"1"`
    CrunchAcceptOk,
    /// Don't pot crunch sensible strings
    ///
    /// Example value: `"0"`
    CrunchLeaveAcceptStrings,
    /// Fiddle alpha figures
    ///
    /// Example value: `"0"`
    CrunchIncludeNumerals,
    /// Reward punctuation joins
    ///
    /// Example value: `"0"`
    TesseditPreferJoinedPunct,
    /// Write block separators in output
    ///
    /// Example value: `"0"`
    TesseditWriteBlockSeparators,
    /// Write repetition char code
    ///
    /// Example value: `"0"`
    TesseditWriteRepCodes,
    /// Write \.unlv output file
    ///
    /// Example value: `"0"`
    TesseditWriteUnlv,
    /// Write \.txt output file
    ///
    /// Example value: `"0"`
    TesseditCreateTxt,
    /// Write \.html hOCR output file
    ///
    /// Example value: `"0"`
    TesseditCreateHocr,
    /// Write \.xml ALTO file
    ///
    /// Example value: `"0"`
    TesseditCreateAlto,
    /// Write \.box file for LSTM training
    ///
    /// Example value: `"0"`
    TesseditCreateLstmbox,
    /// Write \.tsv output file
    ///
    /// Example value: `"0"`
    TesseditCreateTsv,
    /// Write WordStr format \.box output file
    ///
    /// Example value: `"0"`
    TesseditCreateWordstrbox,
    /// Write \.pdf output file
    ///
    /// Example value: `"0"`
    TesseditCreatePdf,
    /// Create PDF with only one invisible text layer
    ///
    /// Example value: `"0"`
    TextonlyPdf,
    /// UNLV keep 1Il chars rejected
    ///
    /// Example value: `"0"`
    SuspectConstrain1Il,
    /// Only reject tess failures
    ///
    /// Example value: `"0"`
    TesseditMinimalRejection,
    /// Don't reject ANYTHING
    ///
    /// Example value: `"0"`
    TesseditZeroRejection,
    /// Make output have exactly one word per WERD
    ///
    /// Example value: `"0"`
    TesseditWordForWord,
    /// Don't reject ANYTHING AT ALL
    ///
    /// Example value: `"0"`
    TesseditZeroKelvinRejection,
    /// Adaption debug
    ///
    /// Example value: `"0"`
    TesseditRejectionDebug,
    /// Contextual 0O O0 flips
    ///
    /// Example value: `"1"`
    TesseditFlip0O,
    /// Use DOC dawg in 11l conf\. detector
    ///
    /// Example value: `"0"`
    RejTrustDocDawg,
    /// Use dictword test
    ///
    /// Example value: `"0"`
    Rej1IlUseDictWord,
    /// Don't double check
    ///
    /// Example value: `"1"`
    Rej1IlTrustPermuterType,
    /// Individual rejection control
    ///
    /// Example value: `"1"`
    RejUseTessAccepted,
    /// Individual rejection control
    ///
    /// Example value: `"1"`
    RejUseTessBlanks,
    /// Individual rejection control
    ///
    /// Example value: `"1"`
    RejUseGoodPerm,
    /// Extend permuter check
    ///
    /// Example value: `"0"`
    RejUseSensibleWd,
    /// Extend permuter check
    ///
    /// Example value: `"0"`
    RejAlphasInNumberPerm,
    /// Output text with boxes
    ///
    /// Example value: `"0"`
    TesseditCreateBoxfile,
    /// Capture the image from the IPE
    ///
    /// Example value: `"0"`
    TesseditWriteImages,
    /// Run interactively?
    ///
    /// Example value: `"0"`
    InteractiveDisplayMode,
    /// According to dict\_word
    ///
    /// Example value: `"1"`
    TesseditOverridePermuter,
    /// In multilingual mode use params model of the primary language
    ///
    /// Example value: `"0"`
    TesseditUsePrimaryParamsModel,
    /// Debug line finding
    ///
    /// Example value: `"0"`
    TextordTabfindShowVlines,
    /// Use CJK fixed pitch model
    ///
    /// Example value: `"0"`
    TextordUseCjkFpModel,
    /// Allow feature extractors to see the original outline
    ///
    /// Example value: `"0"`
    PolyAllowDetailedFx,
    /// Only initialize with the config file\. Useful if the instance is not going to be used for OCR but say only for layout analysis\.
    ///
    /// Example value: `"0"`
    TesseditInitConfigOnly,
    /// Turn on equation detector
    ///
    /// Example value: `"0"`
    TextordEquationDetect,
    /// Enable vertical detection
    ///
    /// Example value: `"1"`
    TextordTabfindVerticalText,
    /// Force using vertical text page mode
    ///
    /// Example value: `"0"`
    TextordTabfindForceVerticalText,
    /// Preserve multiple interword spaces
    ///
    /// Example value: `"0"`
    PreserveInterwordSpaces,
    /// Detect music staff and remove intersecting components
    ///
    /// Example value: `"1"`
    PagesegApplyMusicMask,
    /// Script has no xheight, so use a single mode
    ///
    /// Example value: `"0"`
    TextordSingleHeightMode,
    /// Space stats use prechopping?
    ///
    /// Example value: `"0"`
    TospOldToMethod,
    /// Constrain relative values of inter and intra\-word gaps for old\_to\_method\.
    ///
    /// Example value: `"0"`
    TospOldToConstrainSpKn,
    /// Block stats to use fixed pitch rows?
    ///
    /// Example value: `"1"`
    TospOnlyUsePropRows,
    /// Force word breaks on punct to break long lines in non\-space delimited langs
    ///
    /// Example value: `"0"`
    TospForceWordbreakOnPunct,
    /// Space stats use prechopping?
    ///
    /// Example value: `"0"`
    TospUsePreChopping,
    /// Fix suspected bug in old code
    ///
    /// Example value: `"0"`
    TospOldToBugFix,
    /// Only stat OBVIOUS spaces
    ///
    /// Example value: `"1"`
    TospBlockUseCertSpaces,
    /// Only stat OBVIOUS spaces
    ///
    /// Example value: `"1"`
    TospRowUseCertSpaces,
    /// Only stat OBVIOUS spaces
    ///
    /// Example value: `"1"`
    TospNarrowBlobsNotCert,
    /// Only stat OBVIOUS spaces
    ///
    /// Example value: `"1"`
    TospRowUseCertSpaces1,
    /// Use row alone when inadequate cert spaces
    ///
    /// Example value: `"1"`
    TospRecoveryIsolatedRowStats,
    /// Better guess
    ///
    /// Example value: `"0"`
    TospOnlySmallGapsForKern,
    /// Pass ANY flip to context?
    ///
    /// Example value: `"0"`
    TospAllFlipsFuzzy,
    /// Don't restrict kn\->sp fuzzy limit to tables
    ///
    /// Example value: `"1"`
    TospFuzzyLimitAll,
    /// Use within xht gap for wd breaks
    ///
    /// Example value: `"1"`
    TospStatsUseXhtGaps,
    /// Use within xht gap for wd breaks
    ///
    /// Example value: `"1"`
    TospUseXhtGaps,
    /// Only use within xht gap for wd breaks
    ///
    /// Example value: `"0"`
    TospOnlyUseXhtGaps,
    /// Don't chng kn to space next to punct
    ///
    /// Example value: `"0"`
    TospRule9TestPunct,
    /// Default flip
    ///
    /// Example value: `"1"`
    TospFlipFuzzKnToSp,
    /// Default flip
    ///
    /// Example value: `"1"`
    TospFlipFuzzSpToKn,
    /// Enable improvement heuristic
    ///
    /// Example value: `"0"`
    TospImproveThresh,
    /// Don't remove noise blobs
    ///
    /// Example value: `"0"`
    TextordNoRejects,
    /// Display unsorted blobs
    ///
    /// Example value: `"0"`
    TextordShowBlobs,
    /// Display unsorted blobs
    ///
    /// Example value: `"0"`
    TextordShowBoxes,
    /// Reject noise\-like words
    ///
    /// Example value: `"1"`
    TextordNoiseRejwords,
    /// Reject noise\-like rows
    ///
    /// Example value: `"1"`
    TextordNoiseRejrows,
    /// Debug row garbage detector
    ///
    /// Example value: `"0"`
    TextordNoiseDebug,
    /// Class str to debug learning
    ClassifyLearnDebugStr,
    /// A filename of user\-provided words\.
    UserWordsFile,
    /// A suffix of user\-provided words located in tessdata\.
    UserWordsSuffix,
    /// A filename of user\-provided patterns\.
    UserPatternsFile,
    /// A suffix of user\-provided patterns located in tessdata\.
    UserPatternsSuffix,
    /// Output file for ambiguities found in the dictionary
    OutputAmbigWordsFile,
    /// Word for which stopper debug information should be printed to stdout
    WordToDebug,
    /// Blacklist of chars not to recognize
    TesseditCharBlacklist,
    /// Whitelist of chars to recognize
    TesseditCharWhitelist,
    /// List of chars to override tessedit\_char\_blacklist
    TesseditCharUnblacklist,
    /// Write all parameters to the given file\.
    TesseditWriteParamsToFile,
    /// Exposure value follows this pattern in the image filename\. The name of the image files are expected to be in the form \[lang\]\.\[fontname\]\.exp\[num\]\.tif
    ///
    /// Example value: `".exp"`
    ApplyboxExposurePattern,
    /// Leading punctuation
    ///
    /// Example value: `"(\'`\""`
    ChsLeadingPunct,
    /// 1st Trailing punctuation
    ///
    /// Example value: `").,;:?!"`
    ChsTrailingPunct1,
    /// 2nd Trailing punctuation
    ///
    /// Example value: `")\'`\""`
    ChsTrailingPunct2,
    /// Non standard number of outlines
    ///
    /// Example value: `"%| "`
    OutlinesOdd,
    /// Non standard number of outlines
    ///
    /// Example value: `"ij!?%\":;"`
    Outlines2,
    /// Punct\. chs expected WITHIN numbers
    ///
    /// Example value: `".,"`
    NumericPunctuation,
    /// Output char for unidentified blobs
    ///
    /// Example value: `"|"`
    UnrecognisedChar,
    /// Allow NN to unrej
    ///
    /// Example value: `"-?*="`
    OkRepeatedChNonAlphanumWds,
    /// Il1 conflict set
    ///
    /// Example value: `"Il1[]"`
    ConflictSetIl1,
    /// Filename extension
    ///
    /// Example value: `".tif"`
    FileType,
    /// List of languages to load with this one
    TesseditLoadSublangs,
    /// Page separator \(default is form feed control character\)
    ///
    /// Example value: `"\u{c}"`
    PageSeparator,
    /// Character Normalization Range \.\.\.
    ///
    /// Example value: `"0.2"`
    ClassifyCharNormRange,
    /// Veto ratio between classifier ratings
    ///
    /// Example value: `"1.5"`
    ClassifyMaxRatingRatio,
    /// Veto difference between classifier certainties
    ///
    /// Example value: `"5.5"`
    ClassifyMaxCertaintyMargin,
    /// Good Match \(0\-1\)
    ///
    /// Example value: `"0.125"`
    MatcherGoodThreshold,
    /// Great Match \(0\-1\)
    ///
    /// Example value: `"0"`
    MatcherReliableAdaptiveResult,
    /// Perfect Match \(0\-1\)
    ///
    /// Example value: `"0.02"`
    MatcherPerfectThreshold,
    /// Bad Match Pad \(0\-1\)
    ///
    /// Example value: `"0.15"`
    MatcherBadMatchPad,
    /// New template margin \(0\-1\)
    ///
    /// Example value: `"0.1"`
    MatcherRatingMargin,
    /// Avg\. noise blob length
    ///
    /// Example value: `"12"`
    MatcherAvgNoiseSize,
    /// Maximum angle delta for prototype clustering
    ///
    /// Example value: `"0.015"`
    MatcherClusteringMaxAngleDelta,
    /// Penalty to apply when a non\-alnum is vertically out of its expected textline position
    ///
    /// Example value: `"0"`
    ClassifyMisfitJunkPenalty,
    /// Rating scaling factor
    ///
    /// Example value: `"1.5"`
    RatingScale,
    /// Certainty scaling factor
    ///
    /// Example value: `"20"`
    CertaintyScale,
    /// Scale factor for features not used
    ///
    /// Example value: `"0.00390625"`
    TesseditClassMissScale,
    /// Prune poor adapted results this much worse than best result
    ///
    /// Example value: `"2.5"`
    ClassifyAdaptedPruningFactor,
    /// Threshold at which classify\_adapted\_pruning\_factor starts
    ///
    /// Example value: `"-1"`
    ClassifyAdaptedPruningThreshold,
    /// Exclude fragments that do not look like whole characters from training and adaption
    ///
    /// Example value: `"-3"`
    ClassifyCharacterFragmentsGarbageCertaintyThreshold,
    /// Max large speckle size
    ///
    /// Example value: `"0.3"`
    SpeckleLargeMaxSize,
    /// Penalty to add to worst rating for noise
    ///
    /// Example value: `"10"`
    SpeckleRatingPenalty,
    /// Score penalty \(0\.1 = 10%\) added if there are subscripts or superscripts in a word, but it is otherwise OK\.
    ///
    /// Example value: `"0.125"`
    XheightPenaltySubscripts,
    /// Score penalty \(0\.1 = 10%\) added if an xheight is inconsistent\.
    ///
    /// Example value: `"0.25"`
    XheightPenaltyInconsistent,
    /// Score multiplier for word matches which have good case and are frequent in the given language \(lower is better\)\.
    ///
    /// Example value: `"1"`
    SegmentPenaltyDictFrequentWord,
    /// Score multiplier for word matches that have good case \(lower is better\)\.
    ///
    /// Example value: `"1.1"`
    SegmentPenaltyDictCaseOk,
    /// Default score multiplier for word matches, which may have case issues \(lower is better\)\.
    ///
    /// Example value: `"1.3125"`
    SegmentPenaltyDictCaseBad,
    /// Score multiplier for glyph fragment segmentations which do not match a dictionary word \(lower is better\)\.
    ///
    /// Example value: `"1.25"`
    SegmentPenaltyDictNonword,
    /// Score multiplier for poorly cased strings that are not in the dictionary and generally look like garbage \(lower is better\)\.
    ///
    /// Example value: `"1.5"`
    SegmentPenaltyGarbage,
    /// Certainty threshold for non\-dict words
    ///
    /// Example value: `"-2.5"`
    StopperNondictCertaintyBase,
    /// Reject certainty offset
    ///
    /// Example value: `"1"`
    StopperPhase2CertaintyRejectionOffset,
    /// Certainty to add for each dict char above small word size\.
    ///
    /// Example value: `"-0.5"`
    StopperCertaintyPerChar,
    /// Max certaintly variation allowed in a word \(in sigma\)
    ///
    /// Example value: `"3"`
    StopperAllowableCharacterBadness,
    /// Worst certainty for using pending dictionary
    ///
    /// Example value: `"0"`
    DocDictPendingThreshold,
    /// Worst certainty for words that can be inserted into the document dictionary
    ///
    /// Example value: `"-2.25"`
    DocDictCertaintyThreshold,
    /// Good blob limit
    ///
    /// Example value: `"-2.25"`
    TesseditCertaintyThreshold,
    /// Split length adjustment
    ///
    /// Example value: `"0.5"`
    ChopSplitDistKnob,
    /// Split overlap adjustment
    ///
    /// Example value: `"0.9"`
    ChopOverlapKnob,
    /// Split center adjustment
    ///
    /// Example value: `"0.15"`
    ChopCenterKnob,
    /// Split sharpness adjustment
    ///
    /// Example value: `"0.06"`
    ChopSharpnessKnob,
    /// Width change adjustment
    ///
    /// Example value: `"5"`
    ChopWidthChangeKnob,
    /// OK split limit
    ///
    /// Example value: `"100"`
    ChopOkSplit,
    /// Good split limit
    ///
    /// Example value: `"50"`
    ChopGoodSplit,
    /// Maximum character width\-to\-height ratio
    ///
    /// Example value: `"2"`
    SegsearchMaxCharWhRatio,
    /// To avoid overly small denominators use this as the floor of the probability returned by the ngram model\.
    ///
    /// Example value: `"1e-06"`
    LanguageModelNgramSmallProb,
    /// Average classifier score of a non\-matching unichar\.
    ///
    /// Example value: `"-40"`
    LanguageModelNgramNonmatchScore,
    /// Strength of the character ngram model relative to the character classifier
    ///
    /// Example value: `"0.03"`
    LanguageModelNgramScaleFactor,
    /// Factor to bring log\-probs into the same range as ratings when multiplied by outline length
    ///
    /// Example value: `"16"`
    LanguageModelNgramRatingFactor,
    /// Penalty for words not in the frequent word dictionary
    ///
    /// Example value: `"0.1"`
    LanguageModelPenaltyNonFreqDictWord,
    /// Penalty for non\-dictionary words
    ///
    /// Example value: `"0.15"`
    LanguageModelPenaltyNonDictWord,
    /// Penalty for inconsistent punctuation
    ///
    /// Example value: `"0.2"`
    LanguageModelPenaltyPunc,
    /// Penalty for inconsistent case
    ///
    /// Example value: `"0.1"`
    LanguageModelPenaltyCase,
    /// Penalty for inconsistent script
    ///
    /// Example value: `"0.5"`
    LanguageModelPenaltyScript,
    /// Penalty for inconsistent character type
    ///
    /// Example value: `"0.3"`
    LanguageModelPenaltyChartype,
    /// Penalty for inconsistent font
    ///
    /// Example value: `"0"`
    LanguageModelPenaltyFont,
    /// Penalty for inconsistent spacing
    ///
    /// Example value: `"0.05"`
    LanguageModelPenaltySpacing,
    /// Penalty increment
    ///
    /// Example value: `"0.01"`
    LanguageModelPenaltyIncrement,
    /// Hingepoint for base char certainty
    ///
    /// Example value: `"-8"`
    NoiseCertBasechar,
    /// Hingepoint for disjoint certainty
    ///
    /// Example value: `"-1"`
    NoiseCertDisjoint,
    /// Threshold for new punc char certainty
    ///
    /// Example value: `"-3"`
    NoiseCertPunc,
    /// Scaling on certainty diff from Hingepoint
    ///
    /// Example value: `"0.375"`
    NoiseCertFactor,
    /// good\_quality\_doc lte rejection limit
    ///
    /// Example value: `"0.08"`
    QualityRejPc,
    /// good\_quality\_doc gte good blobs limit
    ///
    /// Example value: `"0"`
    QualityBlobPc,
    /// good\_quality\_doc lte outline error limit
    ///
    /// Example value: `"1"`
    QualityOutlinePc,
    /// good\_quality\_doc gte good char limit
    ///
    /// Example value: `"0.95"`
    QualityCharPc,
    /// xcoord
    ///
    /// Example value: `"100000"`
    TestPtX,
    /// ycoord
    ///
    /// Example value: `"100000"`
    TestPtY,
    /// %rej allowed before rej whole doc
    ///
    /// Example value: `"65"`
    TesseditRejectDocPercent,
    /// %rej allowed before rej whole block
    ///
    /// Example value: `"45"`
    TesseditRejectBlockPercent,
    /// %rej allowed before rej whole row
    ///
    /// Example value: `"40"`
    TesseditRejectRowPercent,
    /// Number of row rejects in whole word rejects which prevents whole row rejection
    ///
    /// Example value: `"70"`
    TesseditWholeWdRejRowPercent,
    /// rej good doc wd if more than this fraction rejected
    ///
    /// Example value: `"1.1"`
    TesseditGoodDocStillRowrejWd,
    /// good\_quality\_doc gte good char limit
    ///
    /// Example value: `"1.1"`
    QualityRowrejPc,
    /// crunch rating lt this
    ///
    /// Example value: `"80"`
    CrunchTerribleRating,
    /// crunch garbage cert lt this
    ///
    /// Example value: `"-9"`
    CrunchPoorGarbageCert,
    /// crunch garbage rating lt this
    ///
    /// Example value: `"60"`
    CrunchPoorGarbageRate,
    /// POTENTIAL crunch rating lt this
    ///
    /// Example value: `"40"`
    CrunchPotPoorRate,
    /// POTENTIAL crunch cert lt this
    ///
    /// Example value: `"-8"`
    CrunchPotPoorCert,
    /// POTENTIAL crunch rating lt this
    ///
    /// Example value: `"60"`
    CrunchDelRating,
    /// POTENTIAL crunch cert lt this
    ///
    /// Example value: `"-10"`
    CrunchDelCert,
    /// Del if word ht lt xht x this
    ///
    /// Example value: `"0.7"`
    CrunchDelMinHt,
    /// Del if word ht gt xht x this
    ///
    /// Example value: `"3"`
    CrunchDelMaxHt,
    /// Del if word width lt xht x this
    ///
    /// Example value: `"3"`
    CrunchDelMinWidth,
    /// Del if word gt xht x this above bl
    ///
    /// Example value: `"1.5"`
    CrunchDelHighWord,
    /// Del if word gt xht x this below bl
    ///
    /// Example value: `"0.5"`
    CrunchDelLowWord,
    /// Small if lt xht x this
    ///
    /// Example value: `"0.6"`
    CrunchSmallOutlinesSize,
    /// Small if lt xht x this
    ///
    /// Example value: `"0.28"`
    FixspSmallOutlinesSize,
    /// How many times worse certainty does a superscript position glyph need to be for us to try classifying it as a char with a different baseline?
    ///
    /// Example value: `"2"`
    SuperscriptWorseCertainty,
    /// What reduction in badness do we think sufficient to choose a superscript over what we'd thought\.  For example, a value of 0\.6 means we want to reduce badness of certainty by at least 40%
    ///
    /// Example value: `"0.97"`
    SuperscriptBetteredCertainty,
    /// A superscript scaled down more than this is unbelievably small\.  For example, 0\.3 means we expect the font size to be no smaller than 30% of the text line font size\.
    ///
    /// Example value: `"0.4"`
    SuperscriptScaledownRatio,
    /// Maximum top of a character measured as a multiple of x\-height above the baseline for us to reconsider whether it's a subscript\.
    ///
    /// Example value: `"0.5"`
    SubscriptMaxYTop,
    /// Minimum bottom of a character measured as a multiple of x\-height above the baseline for us to reconsider whether it's a superscript\.
    ///
    /// Example value: `"0.3"`
    SuperscriptMinYBottom,
    /// Don't touch bad rating limit
    ///
    /// Example value: `"999.9"`
    SuspectRatingPerCh,
    /// Accept good rating limit
    ///
    /// Example value: `"-999.9"`
    SuspectAcceptRating,
    /// Aspect ratio dot/hyphen test
    ///
    /// Example value: `"1.5"`
    TesseditLowerFlipHyphen,
    /// Aspect ratio dot/hyphen test
    ///
    /// Example value: `"1.8"`
    TesseditUpperFlipHyphen,
    /// if >this fract
    ///
    /// Example value: `"0.85"`
    RejWholeOfMostlyRejectWordFract,
    /// Min acceptable orientation margin
    ///
    /// Example value: `"7"`
    MinOrientationMargin,
    /// Fraction of textlines deemed vertical to use vertical page mode
    ///
    /// Example value: `"0.5"`
    TextordTabfindVerticalTextRatio,
    /// Fraction of height used as a minimum gap for aligned blobs\.
    ///
    /// Example value: `"0.75"`
    TextordTabfindAlignedGapFraction,
    /// Factor for defining space threshold in terms of space and kern sizes
    ///
    /// Example value: `"2"`
    TospOldSpKnThFactor,
    /// how far between kern and space?
    ///
    /// Example value: `"0"`
    TospThresholdBias1,
    /// how far between kern and space?
    ///
    /// Example value: `"0"`
    TospThresholdBias2,
    /// Fract of xheight for narrow
    ///
    /// Example value: `"0.3"`
    TospNarrowFraction,
    /// narrow if w/h less than this
    ///
    /// Example value: `"0.48"`
    TospNarrowAspectRatio,
    /// Fract of xheight for wide
    ///
    /// Example value: `"0.52"`
    TospWideFraction,
    /// wide if w/h less than this
    ///
    /// Example value: `"0"`
    TospWideAspectRatio,
    /// Fract of xheight for fuzz sp
    ///
    /// Example value: `"0.6"`
    TospFuzzySpaceFactor,
    /// Fract of xheight for fuzz sp
    ///
    /// Example value: `"0.5"`
    TospFuzzySpaceFactor1,
    /// Fract of xheight for fuzz sp
    ///
    /// Example value: `"0.72"`
    TospFuzzySpaceFactor2,
    /// gap ratio to flip sp\->kern
    ///
    /// Example value: `"0.83"`
    TospGapFactor,
    /// gap ratio to flip kern\->sp
    ///
    /// Example value: `"2"`
    TospKernGapFactor1,
    /// gap ratio to flip kern\->sp
    ///
    /// Example value: `"1.3"`
    TospKernGapFactor2,
    /// gap ratio to flip kern\->sp
    ///
    /// Example value: `"2.5"`
    TospKernGapFactor3,
    /// xht multiplier
    ///
    /// Example value: `"-1"`
    TospIgnoreBigGaps,
    /// xht multiplier
    ///
    /// Example value: `"3.5"`
    TospIgnoreVeryBigGaps,
    /// rep gap multiplier for space
    ///
    /// Example value: `"1.6"`
    TospRepSpace,
    /// Fract of kerns reqd for isolated row stats
    ///
    /// Example value: `"0.65"`
    TospEnoughSmallGaps,
    /// Min difference of kn & sp in table
    ///
    /// Example value: `"2.25"`
    TospTableKnSpRatio,
    /// Expect spaces bigger than this
    ///
    /// Example value: `"0.33"`
    TospTableXhtSpRatio,
    /// Fuzzy if less than this
    ///
    /// Example value: `"3"`
    TospTableFuzzyKnSpRatio,
    /// New fuzzy kn alg
    ///
    /// Example value: `"0.5"`
    TospFuzzyKnFraction,
    /// New fuzzy sp alg
    ///
    /// Example value: `"0.5"`
    TospFuzzySpFraction,
    /// Don't trust spaces less than this time kn
    ///
    /// Example value: `"1.5"`
    TospMinSaneKnSp,
    /// Thresh guess \- mult kn by this
    ///
    /// Example value: `"2.2"`
    TospInitGuessKnMult,
    /// Thresh guess \- mult xht by this
    ///
    /// Example value: `"0.28"`
    TospInitGuessXhtMult,
    /// Multiplier on kn to limit thresh
    ///
    /// Example value: `"5"`
    TospMaxSaneKnThresh,
    /// Don't autoflip kn to sp when large separation
    ///
    /// Example value: `"0"`
    TospFlipCaution,
    /// Limit use of xht gap with large kns
    ///
    /// Example value: `"0.19"`
    TospLargeKerning,
    /// Limit use of xht gap with odd small kns
    ///
    /// Example value: `"-1"`
    TospDontFoolWithSmallKerns,
    /// Don't reduce box if the top left is non blank
    ///
    /// Example value: `"0"`
    TospNearLhEdge,
    /// Don't let sp minus kn get too small
    ///
    /// Example value: `"0.2"`
    TospSillyKnSpGap,
    /// How wide fuzzies need context
    ///
    /// Example value: `"0.75"`
    TospPassWideFuzzSpToContext,
    /// Fraction of bounding box for noise
    ///
    /// Example value: `"0.7"`
    TextordNoiseAreaRatio,
    /// Ile of sizes for xheight guess
    ///
    /// Example value: `"0.75"`
    TextordInitialxIle,
    /// Ile of sizes for xheight guess
    ///
    /// Example value: `"0.9"`
    TextordInitialascIle,
    /// Fraction of x for big t count
    ///
    /// Example value: `"0.5"`
    TextordNoiseSizelimit,
    /// Dot to norm ratio for deletion
    ///
    /// Example value: `"2"`
    TextordNoiseNormratio,
    /// xh fract height error for norm blobs
    ///
    /// Example value: `"0.2"`
    TextordNoiseSyfract,
    /// xh fract width error for norm blobs
    ///
    /// Example value: `"0.4"`
    TextordNoiseSxfract,
    /// Height fraction to discard outlines as speckle noise
    ///
    /// Example value: `"0.015625"`
    TextordNoiseHfract,
    /// Dot to norm ratio for deletion
    ///
    /// Example value: `"6"`
    TextordNoiseRowratio,
    /// Max baseline shift
    ///
    /// Example value: `"0"`
    TextordBlshiftMaxshift,
    /// Min size of baseline shift
    ///
    /// Example value: `"9.99"`
    TextordBlshiftXfraction,
}

impl Variable {
    /// Get the variable's name as used by Tesseract
    pub fn as_cstr(&self) -> &'static CStr {
        CStr::from_bytes_with_nul(match self {
            Variable::ClassifyNumCpLevels => b"classify_num_cp_levels\0",
            Variable::TextordDotmatrixGap => b"textord_dotmatrix_gap\0",
            Variable::TextordDebugBlock => b"textord_debug_block\0",
            Variable::TextordPitchRange => b"textord_pitch_range\0",
            Variable::TextordWordsVetoPower => b"textord_words_veto_power\0",
            Variable::TextordTabfindShowStrokewidths => b"textord_tabfind_show_strokewidths\0",
            Variable::PitsyncLinearVersion => b"pitsync_linear_version\0",
            Variable::PitsyncFakeDepth => b"pitsync_fake_depth\0",
            Variable::OldblHoledLosscount => b"oldbl_holed_losscount\0",
            Variable::TextordSkewsmoothOffset => b"textord_skewsmooth_offset\0",
            Variable::TextordSkewsmoothOffset2 => b"textord_skewsmooth_offset2\0",
            Variable::TextordTestX => b"textord_test_x\0",
            Variable::TextordTestY => b"textord_test_y\0",
            Variable::TextordMinBlobsInRow => b"textord_min_blobs_in_row\0",
            Variable::TextordSplineMinblobs => b"textord_spline_minblobs\0",
            Variable::TextordSplineMedianwin => b"textord_spline_medianwin\0",
            Variable::TextordMaxBlobOverlaps => b"textord_max_blob_overlaps\0",
            Variable::TextordMinXheight => b"textord_min_xheight\0",
            Variable::TextordLmsLineTrials => b"textord_lms_line_trials\0",
            Variable::TextordTabfindShowImages => b"textord_tabfind_show_images\0",
            Variable::TextordFpChopError => b"textord_fp_chop_error\0",
            Variable::EdgesMaxChildrenPerOutline => b"edges_max_children_per_outline\0",
            Variable::EdgesMaxChildrenLayers => b"edges_max_children_layers\0",
            Variable::EdgesChildrenPerGrandchild => b"edges_children_per_grandchild\0",
            Variable::EdgesChildrenCountLimit => b"edges_children_count_limit\0",
            Variable::EdgesMinNonhole => b"edges_min_nonhole\0",
            Variable::EdgesPathareaRatio => b"edges_patharea_ratio\0",
            Variable::DevanagariSplitDebuglevel => b"devanagari_split_debuglevel\0",
            Variable::TextordTabfindShowPartitions => b"textord_tabfind_show_partitions\0",
            Variable::TextordDebugTabfind => b"textord_debug_tabfind\0",
            Variable::TextordDebugBugs => b"textord_debug_bugs\0",
            Variable::TextordTestregionLeft => b"textord_testregion_left\0",
            Variable::TextordTestregionTop => b"textord_testregion_top\0",
            Variable::TextordTestregionRight => b"textord_testregion_right\0",
            Variable::TextordTestregionBottom => b"textord_testregion_bottom\0",
            Variable::EditorImageXpos => b"editor_image_xpos\0",
            Variable::EditorImageYpos => b"editor_image_ypos\0",
            Variable::EditorImageMenuheight => b"editor_image_menuheight\0",
            Variable::EditorImageWordBbColor => b"editor_image_word_bb_color\0",
            Variable::EditorImageBlobBbColor => b"editor_image_blob_bb_color\0",
            Variable::EditorImageTextColor => b"editor_image_text_color\0",
            Variable::EditorDbwinXpos => b"editor_dbwin_xpos\0",
            Variable::EditorDbwinYpos => b"editor_dbwin_ypos\0",
            Variable::EditorDbwinHeight => b"editor_dbwin_height\0",
            Variable::EditorDbwinWidth => b"editor_dbwin_width\0",
            Variable::EditorWordXpos => b"editor_word_xpos\0",
            Variable::EditorWordYpos => b"editor_word_ypos\0",
            Variable::EditorWordHeight => b"editor_word_height\0",
            Variable::EditorWordWidth => b"editor_word_width\0",
            Variable::WordrecDisplaySplits => b"wordrec_display_splits\0",
            Variable::PolyDebug => b"poly_debug\0",
            Variable::PolyWideObjectsBetter => b"poly_wide_objects_better\0",
            Variable::WordrecDisplayAllBlobs => b"wordrec_display_all_blobs\0",
            Variable::WordrecBlobPause => b"wordrec_blob_pause\0",
            Variable::TextordFpChopping => b"textord_fp_chopping\0",
            Variable::TextordForceMakePropWords => b"textord_force_make_prop_words\0",
            Variable::TextordChopperTest => b"textord_chopper_test\0",
            Variable::TextordRestoreUnderlines => b"textord_restore_underlines\0",
            Variable::TextordShowInitialWords => b"textord_show_initial_words\0",
            Variable::TextordShowNewWords => b"textord_show_new_words\0",
            Variable::TextordShowFixedWords => b"textord_show_fixed_words\0",
            Variable::TextordBlocksallFixed => b"textord_blocksall_fixed\0",
            Variable::TextordBlocksallProp => b"textord_blocksall_prop\0",
            Variable::TextordBlocksallTesting => b"textord_blocksall_testing\0",
            Variable::TextordTestMode => b"textord_test_mode\0",
            Variable::TextordPitchScalebigwords => b"textord_pitch_scalebigwords\0",
            Variable::TextordAllProp => b"textord_all_prop\0",
            Variable::TextordDebugPitchTest => b"textord_debug_pitch_test\0",
            Variable::TextordDisablePitchTest => b"textord_disable_pitch_test\0",
            Variable::TextordFastPitchTest => b"textord_fast_pitch_test\0",
            Variable::TextordDebugPitchMetric => b"textord_debug_pitch_metric\0",
            Variable::TextordShowRowCuts => b"textord_show_row_cuts\0",
            Variable::TextordShowPageCuts => b"textord_show_page_cuts\0",
            Variable::TextordPitchCheat => b"textord_pitch_cheat\0",
            Variable::TextordBlockndocFixed => b"textord_blockndoc_fixed\0",
            Variable::TextordShowTables => b"textord_show_tables\0",
            Variable::TextordTablefindShowMark => b"textord_tablefind_show_mark\0",
            Variable::TextordTablefindShowStats => b"textord_tablefind_show_stats\0",
            Variable::TextordTablefindRecognizeTables => b"textord_tablefind_recognize_tables\0",
            Variable::TextordTabfindShowInitialtabs => b"textord_tabfind_show_initialtabs\0",
            Variable::TextordTabfindShowFinaltabs => b"textord_tabfind_show_finaltabs\0",
            Variable::TextordTabfindOnlyStrokewidths => b"textord_tabfind_only_strokewidths\0",
            Variable::TextordReallyOldXheight => b"textord_really_old_xheight\0",
            Variable::TextordOldblDebug => b"textord_oldbl_debug\0",
            Variable::TextordDebugBaselines => b"textord_debug_baselines\0",
            Variable::TextordOldblParadef => b"textord_oldbl_paradef\0",
            Variable::TextordOldblSplitSplines => b"textord_oldbl_split_splines\0",
            Variable::TextordOldblMergeParts => b"textord_oldbl_merge_parts\0",
            Variable::OldblCorrfix => b"oldbl_corrfix\0",
            Variable::OldblXhfix => b"oldbl_xhfix\0",
            Variable::TextordOcropusMode => b"textord_ocropus_mode\0",
            Variable::TextordHeavyNr => b"textord_heavy_nr\0",
            Variable::TextordShowInitialRows => b"textord_show_initial_rows\0",
            Variable::TextordShowParallelRows => b"textord_show_parallel_rows\0",
            Variable::TextordShowExpandedRows => b"textord_show_expanded_rows\0",
            Variable::TextordShowFinalRows => b"textord_show_final_rows\0",
            Variable::TextordShowFinalBlobs => b"textord_show_final_blobs\0",
            Variable::TextordTestLandscape => b"textord_test_landscape\0",
            Variable::TextordParallelBaselines => b"textord_parallel_baselines\0",
            Variable::TextordStraightBaselines => b"textord_straight_baselines\0",
            Variable::TextordOldBaselines => b"textord_old_baselines\0",
            Variable::TextordOldXheight => b"textord_old_xheight\0",
            Variable::TextordFixXheightBug => b"textord_fix_xheight_bug\0",
            Variable::TextordFixMakerowBug => b"textord_fix_makerow_bug\0",
            Variable::TextordDebugXheights => b"textord_debug_xheights\0",
            Variable::TextordBiasedSkewcalc => b"textord_biased_skewcalc\0",
            Variable::TextordInterpolatingSkew => b"textord_interpolating_skew\0",
            Variable::TextordNewInitialXheight => b"textord_new_initial_xheight\0",
            Variable::TextordDebugBlob => b"textord_debug_blob\0",
            Variable::GapmapDebug => b"gapmap_debug\0",
            Variable::GapmapUseEnds => b"gapmap_use_ends\0",
            Variable::GapmapNoIsolatedQuanta => b"gapmap_no_isolated_quanta\0",
            Variable::EdgesUseNewOutlineComplexity => b"edges_use_new_outline_complexity\0",
            Variable::EdgesDebug => b"edges_debug\0",
            Variable::EdgesChildrenFix => b"edges_children_fix\0",
            Variable::TextordShowFixedCuts => b"textord_show_fixed_cuts\0",
            Variable::DevanagariSplitDebugimage => b"devanagari_split_debugimage\0",
            Variable::TextordTabfindShowInitialPartitions => {
                b"textord_tabfind_show_initial_partitions\0"
            }
            Variable::TextordTabfindShowRejectBlobs => b"textord_tabfind_show_reject_blobs\0",
            Variable::TextordTabfindShowColumns => b"textord_tabfind_show_columns\0",
            Variable::TextordTabfindShowBlocks => b"textord_tabfind_show_blocks\0",
            Variable::TextordTabfindFindTables => b"textord_tabfind_find_tables\0",
            Variable::TextordSpaceSizeIsVariable => b"textord_space_size_is_variable\0",
            Variable::TextordDebugPrintable => b"textord_debug_printable\0",
            Variable::EquationdetectSaveBiImage => b"equationdetect_save_bi_image\0",
            Variable::EquationdetectSaveSptImage => b"equationdetect_save_spt_image\0",
            Variable::EquationdetectSaveSeedImage => b"equationdetect_save_seed_image\0",
            Variable::EquationdetectSaveMergedImage => b"equationdetect_save_merged_image\0",
            Variable::StreamFilelist => b"stream_filelist\0",
            Variable::DebugFile => b"debug_file\0",
            Variable::Dotproduct => b"dotproduct\0",
            Variable::ClassifyFontName => b"classify_font_name\0",
            Variable::FxDebugfile => b"fx_debugfile\0",
            Variable::EditorImageWinName => b"editor_image_win_name\0",
            Variable::EditorDbwinName => b"editor_dbwin_name\0",
            Variable::EditorWordName => b"editor_word_name\0",
            Variable::DocumentTitle => b"document_title\0",
            Variable::ClassifyPicoFeatureLength => b"classify_pico_feature_length\0",
            Variable::ClassifyNormAdjMidpoint => b"classify_norm_adj_midpoint\0",
            Variable::ClassifyNormAdjCurl => b"classify_norm_adj_curl\0",
            Variable::ClassifyMinSlope => b"classify_min_slope\0",
            Variable::ClassifyMaxSlope => b"classify_max_slope\0",
            Variable::ClassifyCpAnglePadLoose => b"classify_cp_angle_pad_loose\0",
            Variable::ClassifyCpAnglePadMedium => b"classify_cp_angle_pad_medium\0",
            Variable::ClassifyCpAnglePadTight => b"classify_cp_angle_pad_tight\0",
            Variable::ClassifyCpEndPadLoose => b"classify_cp_end_pad_loose\0",
            Variable::ClassifyCpEndPadMedium => b"classify_cp_end_pad_medium\0",
            Variable::ClassifyCpEndPadTight => b"classify_cp_end_pad_tight\0",
            Variable::ClassifyCpSidePadLoose => b"classify_cp_side_pad_loose\0",
            Variable::ClassifyCpSidePadMedium => b"classify_cp_side_pad_medium\0",
            Variable::ClassifyCpSidePadTight => b"classify_cp_side_pad_tight\0",
            Variable::ClassifyPpAnglePad => b"classify_pp_angle_pad\0",
            Variable::ClassifyPpEndPad => b"classify_pp_end_pad\0",
            Variable::ClassifyPpSidePad => b"classify_pp_side_pad\0",
            Variable::TextordUnderlineOffset => b"textord_underline_offset\0",
            Variable::TextordWordstatsSmoothFactor => b"textord_wordstats_smooth_factor\0",
            Variable::TextordWidthSmoothFactor => b"textord_width_smooth_factor\0",
            Variable::TextordWordsWidthIle => b"textord_words_width_ile\0",
            Variable::TextordWordsMaxspace => b"textord_words_maxspace\0",
            Variable::TextordWordsDefaultMaxspace => b"textord_words_default_maxspace\0",
            Variable::TextordWordsDefaultMinspace => b"textord_words_default_minspace\0",
            Variable::TextordWordsMinMinspace => b"textord_words_min_minspace\0",
            Variable::TextordWordsDefaultNonspace => b"textord_words_default_nonspace\0",
            Variable::TextordWordsInitialLower => b"textord_words_initial_lower\0",
            Variable::TextordWordsInitialUpper => b"textord_words_initial_upper\0",
            Variable::TextordWordsMinlarge => b"textord_words_minlarge\0",
            Variable::TextordWordsPitchsdThreshold => b"textord_words_pitchsd_threshold\0",
            Variable::TextordWordsDefFixed => b"textord_words_def_fixed\0",
            Variable::TextordWordsDefProp => b"textord_words_def_prop\0",
            Variable::TextordPitchRowsimilarity => b"textord_pitch_rowsimilarity\0",
            Variable::WordsInitialLower => b"words_initial_lower\0",
            Variable::WordsInitialUpper => b"words_initial_upper\0",
            Variable::WordsDefaultPropNonspace => b"words_default_prop_nonspace\0",
            Variable::WordsDefaultFixedSpace => b"words_default_fixed_space\0",
            Variable::WordsDefaultFixedLimit => b"words_default_fixed_limit\0",
            Variable::TextordWordsDefiniteSpread => b"textord_words_definite_spread\0",
            Variable::TextordSpacesizeRatiofp => b"textord_spacesize_ratiofp\0",
            Variable::TextordSpacesizeRatioprop => b"textord_spacesize_ratioprop\0",
            Variable::TextordFpiqrRatio => b"textord_fpiqr_ratio\0",
            Variable::TextordMaxPitchIqr => b"textord_max_pitch_iqr\0",
            Variable::TextordFpMinWidth => b"textord_fp_min_width\0",
            Variable::TextordProjectionScale => b"textord_projection_scale\0",
            Variable::TextordBalanceFactor => b"textord_balance_factor\0",
            Variable::TextordTabvectorVerticalGapFraction => {
                b"textord_tabvector_vertical_gap_fraction\0"
            }
            Variable::TextordTabvectorVerticalBoxRatio => b"textord_tabvector_vertical_box_ratio\0",
            Variable::PitsyncJoinedEdge => b"pitsync_joined_edge\0",
            Variable::PitsyncOffsetFreecutFraction => b"pitsync_offset_freecut_fraction\0",
            Variable::OldblXhfract => b"oldbl_xhfract\0",
            Variable::OldblDotErrorSize => b"oldbl_dot_error_size\0",
            Variable::TextordOldblJumplimit => b"textord_oldbl_jumplimit\0",
            Variable::TextordSplineShiftFraction => b"textord_spline_shift_fraction\0",
            Variable::TextordSplineOutlierFraction => b"textord_spline_outlier_fraction\0",
            Variable::TextordSkewIle => b"textord_skew_ile\0",
            Variable::TextordSkewLag => b"textord_skew_lag\0",
            Variable::TextordLinespaceIqrlimit => b"textord_linespace_iqrlimit\0",
            Variable::TextordWidthLimit => b"textord_width_limit\0",
            Variable::TextordChopWidth => b"textord_chop_width\0",
            Variable::TextordExpansionFactor => b"textord_expansion_factor\0",
            Variable::TextordOverlapX => b"textord_overlap_x\0",
            Variable::TextordMinxh => b"textord_minxh\0",
            Variable::TextordMinLinesize => b"textord_min_linesize\0",
            Variable::TextordExcessBlobsize => b"textord_excess_blobsize\0",
            Variable::TextordOccupancyThreshold => b"textord_occupancy_threshold\0",
            Variable::TextordUnderlineWidth => b"textord_underline_width\0",
            Variable::TextordMinBlobHeightFraction => b"textord_min_blob_height_fraction\0",
            Variable::TextordXheightModeFraction => b"textord_xheight_mode_fraction\0",
            Variable::TextordAscheightModeFraction => b"textord_ascheight_mode_fraction\0",
            Variable::TextordDescheightModeFraction => b"textord_descheight_mode_fraction\0",
            Variable::TextordAscxRatioMin => b"textord_ascx_ratio_min\0",
            Variable::TextordAscxRatioMax => b"textord_ascx_ratio_max\0",
            Variable::TextordDescxRatioMin => b"textord_descx_ratio_min\0",
            Variable::TextordDescxRatioMax => b"textord_descx_ratio_max\0",
            Variable::TextordXheightErrorMargin => b"textord_xheight_error_margin\0",
            Variable::GapmapBigGaps => b"gapmap_big_gaps\0",
            Variable::TextordFpChopSnap => b"textord_fp_chop_snap\0",
            Variable::EdgesChildarea => b"edges_childarea\0",
            Variable::EdgesBoxarea => b"edges_boxarea\0",
            Variable::TextordUnderlineThreshold => b"textord_underline_threshold\0",
            Variable::AmbigsDebugLevel => b"ambigs_debug_level\0",
            Variable::ClassifyDebugLevel => b"classify_debug_level\0",
            Variable::ClassifyNormMethod => b"classify_norm_method\0",
            Variable::MatcherDebugLevel => b"matcher_debug_level\0",
            Variable::MatcherDebugFlags => b"matcher_debug_flags\0",
            Variable::ClassifyLearningDebugLevel => b"classify_learning_debug_level\0",
            Variable::MatcherPermanentClassesMin => b"matcher_permanent_classes_min\0",
            Variable::MatcherMinExamplesForPrototyping => b"matcher_min_examples_for_prototyping\0",
            Variable::MatcherSufficientExamplesForPrototyping => {
                b"matcher_sufficient_examples_for_prototyping\0"
            }
            Variable::ClassifyAdaptProtoThreshold => b"classify_adapt_proto_threshold\0",
            Variable::ClassifyAdaptFeatureThreshold => b"classify_adapt_feature_threshold\0",
            Variable::ClassifyClassPrunerThreshold => b"classify_class_pruner_threshold\0",
            Variable::ClassifyClassPrunerMultiplier => b"classify_class_pruner_multiplier\0",
            Variable::ClassifyCpCutoffStrength => b"classify_cp_cutoff_strength\0",
            Variable::ClassifyIntegerMatcherMultiplier => b"classify_integer_matcher_multiplier\0",
            Variable::DawgDebugLevel => b"dawg_debug_level\0",
            Variable::HyphenDebugLevel => b"hyphen_debug_level\0",
            Variable::StopperSmallwordSize => b"stopper_smallword_size\0",
            Variable::StopperDebugLevel => b"stopper_debug_level\0",
            Variable::TesseditTruncateWordchoiceLog => b"tessedit_truncate_wordchoice_log\0",
            Variable::MaxPermuterAttempts => b"max_permuter_attempts\0",
            Variable::RepairUnchoppedBlobs => b"repair_unchopped_blobs\0",
            Variable::ChopDebug => b"chop_debug\0",
            Variable::ChopSplitLength => b"chop_split_length\0",
            Variable::ChopSameDistance => b"chop_same_distance\0",
            Variable::ChopMinOutlinePoints => b"chop_min_outline_points\0",
            Variable::ChopSeamPileSize => b"chop_seam_pile_size\0",
            Variable::ChopInsideAngle => b"chop_inside_angle\0",
            Variable::ChopMinOutlineArea => b"chop_min_outline_area\0",
            Variable::ChopCenteredMaxwidth => b"chop_centered_maxwidth\0",
            Variable::ChopXyWeight => b"chop_x_y_weight\0",
            Variable::WordrecDebugLevel => b"wordrec_debug_level\0",
            Variable::WordrecMaxJoinChunks => b"wordrec_max_join_chunks\0",
            Variable::SegsearchDebugLevel => b"segsearch_debug_level\0",
            Variable::SegsearchMaxPainPoints => b"segsearch_max_pain_points\0",
            Variable::SegsearchMaxFutileClassifications => {
                b"segsearch_max_futile_classifications\0"
            }
            Variable::LanguageModelDebugLevel => b"language_model_debug_level\0",
            Variable::LanguageModelNgramOrder => b"language_model_ngram_order\0",
            Variable::LanguageModelViterbiListMaxNumPrunable => {
                b"language_model_viterbi_list_max_num_prunable\0"
            }
            Variable::LanguageModelViterbiListMaxSize => b"language_model_viterbi_list_max_size\0",
            Variable::LanguageModelMinCompoundLength => b"language_model_min_compound_length\0",
            Variable::WordrecDisplaySegmentations => b"wordrec_display_segmentations\0",
            Variable::TesseditPagesegMode => b"tessedit_pageseg_mode\0",
            Variable::TesseditOcrEngineMode => b"tessedit_ocr_engine_mode\0",
            Variable::PagesegDevanagariSplitStrategy => b"pageseg_devanagari_split_strategy\0",
            Variable::OcrDevanagariSplitStrategy => b"ocr_devanagari_split_strategy\0",
            Variable::BidiDebug => b"bidi_debug\0",
            Variable::ApplyboxDebug => b"applybox_debug\0",
            Variable::ApplyboxPage => b"applybox_page\0",
            Variable::TesseditBigramDebug => b"tessedit_bigram_debug\0",
            Variable::DebugNoiseRemoval => b"debug_noise_removal\0",
            Variable::NoiseMaxperblob => b"noise_maxperblob\0",
            Variable::NoiseMaxperword => b"noise_maxperword\0",
            Variable::DebugXHtLevel => b"debug_x_ht_level\0",
            Variable::QualityMinInitialAlphasReqd => b"quality_min_initial_alphas_reqd\0",
            Variable::TesseditTessAdaptionMode => b"tessedit_tess_adaption_mode\0",
            Variable::MultilangDebugLevel => b"multilang_debug_level\0",
            Variable::ParagraphDebugLevel => b"paragraph_debug_level\0",
            Variable::TesseditPreserveMinWdLen => b"tessedit_preserve_min_wd_len\0",
            Variable::CrunchRatingMax => b"crunch_rating_max\0",
            Variable::CrunchPotIndicators => b"crunch_pot_indicators\0",
            Variable::CrunchLeaveLcStrings => b"crunch_leave_lc_strings\0",
            Variable::CrunchLeaveUcStrings => b"crunch_leave_uc_strings\0",
            Variable::CrunchLongRepetitions => b"crunch_long_repetitions\0",
            Variable::CrunchDebug => b"crunch_debug\0",
            Variable::FixspNonNoiseLimit => b"fixsp_non_noise_limit\0",
            Variable::FixspDoneMode => b"fixsp_done_mode\0",
            Variable::DebugFixSpaceLevel => b"debug_fix_space_level\0",
            Variable::XHtAcceptanceTolerance => b"x_ht_acceptance_tolerance\0",
            Variable::XHtMinChange => b"x_ht_min_change\0",
            Variable::SuperscriptDebug => b"superscript_debug\0",
            Variable::JpgQuality => b"jpg_quality\0",
            Variable::UserDefinedDpi => b"user_defined_dpi\0",
            Variable::MinCharactersToTry => b"min_characters_to_try\0",
            Variable::SuspectLevel => b"suspect_level\0",
            Variable::SuspectShortWords => b"suspect_short_words\0",
            Variable::TesseditRejectMode => b"tessedit_reject_mode\0",
            Variable::TesseditImageBorder => b"tessedit_image_border\0",
            Variable::MinSaneXHtPixels => b"min_sane_x_ht_pixels\0",
            Variable::TesseditPageNumber => b"tessedit_page_number\0",
            Variable::TesseditParallelize => b"tessedit_parallelize\0",
            Variable::LstmChoiceMode => b"lstm_choice_mode\0",
            Variable::TospDebugLevel => b"tosp_debug_level\0",
            Variable::TospEnoughSpaceSamplesForMedian => b"tosp_enough_space_samples_for_median\0",
            Variable::TospRedoKernLimit => b"tosp_redo_kern_limit\0",
            Variable::TospFewSamples => b"tosp_few_samples\0",
            Variable::TospShortRow => b"tosp_short_row\0",
            Variable::TospSanityMethod => b"tosp_sanity_method\0",
            Variable::TextordMaxNoiseSize => b"textord_max_noise_size\0",
            Variable::TextordBaselineDebug => b"textord_baseline_debug\0",
            Variable::TextordNoiseSizefraction => b"textord_noise_sizefraction\0",
            Variable::TextordNoiseTranslimit => b"textord_noise_translimit\0",
            Variable::TextordNoiseSncount => b"textord_noise_sncount\0",
            Variable::UseAmbigsForAdaption => b"use_ambigs_for_adaption\0",
            Variable::AllowBlobDivision => b"allow_blob_division\0",
            Variable::PrioritizeDivision => b"prioritize_division\0",
            Variable::ClassifyEnableLearning => b"classify_enable_learning\0",
            Variable::TessCnMatching => b"tess_cn_matching\0",
            Variable::TessBnMatching => b"tess_bn_matching\0",
            Variable::ClassifyEnableAdaptiveMatcher => b"classify_enable_adaptive_matcher\0",
            Variable::ClassifyUsePreAdaptedTemplates => b"classify_use_pre_adapted_templates\0",
            Variable::ClassifySaveAdaptedTemplates => b"classify_save_adapted_templates\0",
            Variable::ClassifyEnableAdaptiveDebugger => b"classify_enable_adaptive_debugger\0",
            Variable::ClassifyNonlinearNorm => b"classify_nonlinear_norm\0",
            Variable::DisableCharacterFragments => b"disable_character_fragments\0",
            Variable::ClassifyDebugCharacterFragments => b"classify_debug_character_fragments\0",
            Variable::MatcherDebugSeparateWindows => b"matcher_debug_separate_windows\0",
            Variable::ClassifyBlnNumericMode => b"classify_bln_numeric_mode\0",
            Variable::LoadSystemDawg => b"load_system_dawg\0",
            Variable::LoadFreqDawg => b"load_freq_dawg\0",
            Variable::LoadUnambigDawg => b"load_unambig_dawg\0",
            Variable::LoadPuncDawg => b"load_punc_dawg\0",
            Variable::LoadNumberDawg => b"load_number_dawg\0",
            Variable::LoadBigramDawg => b"load_bigram_dawg\0",
            Variable::UseOnlyFirstUft8Step => b"use_only_first_uft8_step\0",
            Variable::StopperNoAcceptableChoices => b"stopper_no_acceptable_choices\0",
            Variable::SegmentNonalphabeticScript => b"segment_nonalphabetic_script\0",
            Variable::SaveDocWords => b"save_doc_words\0",
            Variable::MergeFragmentsInMatrix => b"merge_fragments_in_matrix\0",
            Variable::WordrecEnableAssoc => b"wordrec_enable_assoc\0",
            Variable::ForceWordAssoc => b"force_word_assoc\0",
            Variable::ChopEnable => b"chop_enable\0",
            Variable::ChopVerticalCreep => b"chop_vertical_creep\0",
            Variable::ChopNewSeamPile => b"chop_new_seam_pile\0",
            Variable::AssumeFixedPitchCharSegment => b"assume_fixed_pitch_char_segment\0",
            Variable::WordrecSkipNoTruthWords => b"wordrec_skip_no_truth_words\0",
            Variable::WordrecDebugBlamer => b"wordrec_debug_blamer\0",
            Variable::WordrecRunBlamer => b"wordrec_run_blamer\0",
            Variable::SaveAltChoices => b"save_alt_choices\0",
            Variable::LanguageModelNgramOn => b"language_model_ngram_on\0",
            Variable::LanguageModelNgramUseOnlyFirstUft8Step => {
                b"language_model_ngram_use_only_first_uft8_step\0"
            }
            Variable::LanguageModelNgramSpaceDelimitedLanguage => {
                b"language_model_ngram_space_delimited_language\0"
            }
            Variable::LanguageModelUseSigmoidalCertainty => {
                b"language_model_use_sigmoidal_certainty\0"
            }
            Variable::TesseditResegmentFromBoxes => b"tessedit_resegment_from_boxes\0",
            Variable::TesseditResegmentFromLineBoxes => b"tessedit_resegment_from_line_boxes\0",
            Variable::TesseditTrainFromBoxes => b"tessedit_train_from_boxes\0",
            Variable::TesseditMakeBoxesFromBoxes => b"tessedit_make_boxes_from_boxes\0",
            Variable::TesseditTrainLineRecognizer => b"tessedit_train_line_recognizer\0",
            Variable::TesseditDumpPagesegImages => b"tessedit_dump_pageseg_images\0",
            Variable::TesseditDoInvert => b"tessedit_do_invert\0",
            Variable::TesseditAmbigsTraining => b"tessedit_ambigs_training\0",
            Variable::TesseditAdaptionDebug => b"tessedit_adaption_debug\0",
            Variable::ApplyboxLearnCharsAndCharFragsMode => {
                b"applybox_learn_chars_and_char_frags_mode\0"
            }
            Variable::ApplyboxLearnNgramsMode => b"applybox_learn_ngrams_mode\0",
            Variable::TesseditDisplayOutwords => b"tessedit_display_outwords\0",
            Variable::TesseditDumpChoices => b"tessedit_dump_choices\0",
            Variable::TesseditTimingDebug => b"tessedit_timing_debug\0",
            Variable::TesseditFixFuzzySpaces => b"tessedit_fix_fuzzy_spaces\0",
            Variable::TesseditUnrejAnyWd => b"tessedit_unrej_any_wd\0",
            Variable::TesseditFixHyphens => b"tessedit_fix_hyphens\0",
            Variable::TesseditEnableDocDict => b"tessedit_enable_doc_dict\0",
            Variable::TesseditDebugFonts => b"tessedit_debug_fonts\0",
            Variable::TesseditDebugBlockRejection => b"tessedit_debug_block_rejection\0",
            Variable::TesseditEnableBigramCorrection => b"tessedit_enable_bigram_correction\0",
            Variable::TesseditEnableDictCorrection => b"tessedit_enable_dict_correction\0",
            Variable::EnableNoiseRemoval => b"enable_noise_removal\0",
            Variable::TesseditMinimalRejPass1 => b"tessedit_minimal_rej_pass1\0",
            Variable::TesseditTestAdaption => b"tessedit_test_adaption\0",
            Variable::TestPt => b"test_pt\0",
            Variable::ParagraphTextBased => b"paragraph_text_based\0",
            Variable::LstmUseMatrix => b"lstm_use_matrix\0",
            Variable::TesseditGoodQualityUnrej => b"tessedit_good_quality_unrej\0",
            Variable::TesseditUseRejectSpaces => b"tessedit_use_reject_spaces\0",
            Variable::TesseditPreserveBlkRejPerfectWds => {
                b"tessedit_preserve_blk_rej_perfect_wds\0"
            }
            Variable::TesseditPreserveRowRejPerfectWds => {
                b"tessedit_preserve_row_rej_perfect_wds\0"
            }
            Variable::TesseditDontBlkrejGoodWds => b"tessedit_dont_blkrej_good_wds\0",
            Variable::TesseditDontRowrejGoodWds => b"tessedit_dont_rowrej_good_wds\0",
            Variable::TesseditRowRejGoodDocs => b"tessedit_row_rej_good_docs\0",
            Variable::TesseditRejectBadQualWds => b"tessedit_reject_bad_qual_wds\0",
            Variable::TesseditDebugDocRejection => b"tessedit_debug_doc_rejection\0",
            Variable::TesseditDebugQualityMetrics => b"tessedit_debug_quality_metrics\0",
            Variable::BlandUnrej => b"bland_unrej\0",
            Variable::UnlvTildeCrunching => b"unlv_tilde_crunching\0",
            Variable::HocrFontInfo => b"hocr_font_info\0",
            Variable::HocrCharBoxes => b"hocr_char_boxes\0",
            Variable::CrunchEarlyMergeTessFails => b"crunch_early_merge_tess_fails\0",
            Variable::CrunchEarlyConvertBadUnlvChs => b"crunch_early_convert_bad_unlv_chs\0",
            Variable::CrunchTerribleGarbage => b"crunch_terrible_garbage\0",
            Variable::CrunchLeaveOkStrings => b"crunch_leave_ok_strings\0",
            Variable::CrunchAcceptOk => b"crunch_accept_ok\0",
            Variable::CrunchLeaveAcceptStrings => b"crunch_leave_accept_strings\0",
            Variable::CrunchIncludeNumerals => b"crunch_include_numerals\0",
            Variable::TesseditPreferJoinedPunct => b"tessedit_prefer_joined_punct\0",
            Variable::TesseditWriteBlockSeparators => b"tessedit_write_block_separators\0",
            Variable::TesseditWriteRepCodes => b"tessedit_write_rep_codes\0",
            Variable::TesseditWriteUnlv => b"tessedit_write_unlv\0",
            Variable::TesseditCreateTxt => b"tessedit_create_txt\0",
            Variable::TesseditCreateHocr => b"tessedit_create_hocr\0",
            Variable::TesseditCreateAlto => b"tessedit_create_alto\0",
            Variable::TesseditCreateLstmbox => b"tessedit_create_lstmbox\0",
            Variable::TesseditCreateTsv => b"tessedit_create_tsv\0",
            Variable::TesseditCreateWordstrbox => b"tessedit_create_wordstrbox\0",
            Variable::TesseditCreatePdf => b"tessedit_create_pdf\0",
            Variable::TextonlyPdf => b"textonly_pdf\0",
            Variable::SuspectConstrain1Il => b"suspect_constrain_1Il\0",
            Variable::TesseditMinimalRejection => b"tessedit_minimal_rejection\0",
            Variable::TesseditZeroRejection => b"tessedit_zero_rejection\0",
            Variable::TesseditWordForWord => b"tessedit_word_for_word\0",
            Variable::TesseditZeroKelvinRejection => b"tessedit_zero_kelvin_rejection\0",
            Variable::TesseditRejectionDebug => b"tessedit_rejection_debug\0",
            Variable::TesseditFlip0O => b"tessedit_flip_0O\0",
            Variable::RejTrustDocDawg => b"rej_trust_doc_dawg\0",
            Variable::Rej1IlUseDictWord => b"rej_1Il_use_dict_word\0",
            Variable::Rej1IlTrustPermuterType => b"rej_1Il_trust_permuter_type\0",
            Variable::RejUseTessAccepted => b"rej_use_tess_accepted\0",
            Variable::RejUseTessBlanks => b"rej_use_tess_blanks\0",
            Variable::RejUseGoodPerm => b"rej_use_good_perm\0",
            Variable::RejUseSensibleWd => b"rej_use_sensible_wd\0",
            Variable::RejAlphasInNumberPerm => b"rej_alphas_in_number_perm\0",
            Variable::TesseditCreateBoxfile => b"tessedit_create_boxfile\0",
            Variable::TesseditWriteImages => b"tessedit_write_images\0",
            Variable::InteractiveDisplayMode => b"interactive_display_mode\0",
            Variable::TesseditOverridePermuter => b"tessedit_override_permuter\0",
            Variable::TesseditUsePrimaryParamsModel => b"tessedit_use_primary_params_model\0",
            Variable::TextordTabfindShowVlines => b"textord_tabfind_show_vlines\0",
            Variable::TextordUseCjkFpModel => b"textord_use_cjk_fp_model\0",
            Variable::PolyAllowDetailedFx => b"poly_allow_detailed_fx\0",
            Variable::TesseditInitConfigOnly => b"tessedit_init_config_only\0",
            Variable::TextordEquationDetect => b"textord_equation_detect\0",
            Variable::TextordTabfindVerticalText => b"textord_tabfind_vertical_text\0",
            Variable::TextordTabfindForceVerticalText => b"textord_tabfind_force_vertical_text\0",
            Variable::PreserveInterwordSpaces => b"preserve_interword_spaces\0",
            Variable::PagesegApplyMusicMask => b"pageseg_apply_music_mask\0",
            Variable::TextordSingleHeightMode => b"textord_single_height_mode\0",
            Variable::TospOldToMethod => b"tosp_old_to_method\0",
            Variable::TospOldToConstrainSpKn => b"tosp_old_to_constrain_sp_kn\0",
            Variable::TospOnlyUsePropRows => b"tosp_only_use_prop_rows\0",
            Variable::TospForceWordbreakOnPunct => b"tosp_force_wordbreak_on_punct\0",
            Variable::TospUsePreChopping => b"tosp_use_pre_chopping\0",
            Variable::TospOldToBugFix => b"tosp_old_to_bug_fix\0",
            Variable::TospBlockUseCertSpaces => b"tosp_block_use_cert_spaces\0",
            Variable::TospRowUseCertSpaces => b"tosp_row_use_cert_spaces\0",
            Variable::TospNarrowBlobsNotCert => b"tosp_narrow_blobs_not_cert\0",
            Variable::TospRowUseCertSpaces1 => b"tosp_row_use_cert_spaces1\0",
            Variable::TospRecoveryIsolatedRowStats => b"tosp_recovery_isolated_row_stats\0",
            Variable::TospOnlySmallGapsForKern => b"tosp_only_small_gaps_for_kern\0",
            Variable::TospAllFlipsFuzzy => b"tosp_all_flips_fuzzy\0",
            Variable::TospFuzzyLimitAll => b"tosp_fuzzy_limit_all\0",
            Variable::TospStatsUseXhtGaps => b"tosp_stats_use_xht_gaps\0",
            Variable::TospUseXhtGaps => b"tosp_use_xht_gaps\0",
            Variable::TospOnlyUseXhtGaps => b"tosp_only_use_xht_gaps\0",
            Variable::TospRule9TestPunct => b"tosp_rule_9_test_punct\0",
            Variable::TospFlipFuzzKnToSp => b"tosp_flip_fuzz_kn_to_sp\0",
            Variable::TospFlipFuzzSpToKn => b"tosp_flip_fuzz_sp_to_kn\0",
            Variable::TospImproveThresh => b"tosp_improve_thresh\0",
            Variable::TextordNoRejects => b"textord_no_rejects\0",
            Variable::TextordShowBlobs => b"textord_show_blobs\0",
            Variable::TextordShowBoxes => b"textord_show_boxes\0",
            Variable::TextordNoiseRejwords => b"textord_noise_rejwords\0",
            Variable::TextordNoiseRejrows => b"textord_noise_rejrows\0",
            Variable::TextordNoiseDebug => b"textord_noise_debug\0",
            Variable::ClassifyLearnDebugStr => b"classify_learn_debug_str\0",
            Variable::UserWordsFile => b"user_words_file\0",
            Variable::UserWordsSuffix => b"user_words_suffix\0",
            Variable::UserPatternsFile => b"user_patterns_file\0",
            Variable::UserPatternsSuffix => b"user_patterns_suffix\0",
            Variable::OutputAmbigWordsFile => b"output_ambig_words_file\0",
            Variable::WordToDebug => b"word_to_debug\0",
            Variable::TesseditCharBlacklist => b"tessedit_char_blacklist\0",
            Variable::TesseditCharWhitelist => b"tessedit_char_whitelist\0",
            Variable::TesseditCharUnblacklist => b"tessedit_char_unblacklist\0",
            Variable::TesseditWriteParamsToFile => b"tessedit_write_params_to_file\0",
            Variable::ApplyboxExposurePattern => b"applybox_exposure_pattern\0",
            Variable::ChsLeadingPunct => b"chs_leading_punct\0",
            Variable::ChsTrailingPunct1 => b"chs_trailing_punct1\0",
            Variable::ChsTrailingPunct2 => b"chs_trailing_punct2\0",
            Variable::OutlinesOdd => b"outlines_odd\0",
            Variable::Outlines2 => b"outlines_2\0",
            Variable::NumericPunctuation => b"numeric_punctuation\0",
            Variable::UnrecognisedChar => b"unrecognised_char\0",
            Variable::OkRepeatedChNonAlphanumWds => b"ok_repeated_ch_non_alphanum_wds\0",
            Variable::ConflictSetIl1 => b"conflict_set_I_l_1\0",
            Variable::FileType => b"file_type\0",
            Variable::TesseditLoadSublangs => b"tessedit_load_sublangs\0",
            Variable::PageSeparator => b"page_separator\0",
            Variable::ClassifyCharNormRange => b"classify_char_norm_range\0",
            Variable::ClassifyMaxRatingRatio => b"classify_max_rating_ratio\0",
            Variable::ClassifyMaxCertaintyMargin => b"classify_max_certainty_margin\0",
            Variable::MatcherGoodThreshold => b"matcher_good_threshold\0",
            Variable::MatcherReliableAdaptiveResult => b"matcher_reliable_adaptive_result\0",
            Variable::MatcherPerfectThreshold => b"matcher_perfect_threshold\0",
            Variable::MatcherBadMatchPad => b"matcher_bad_match_pad\0",
            Variable::MatcherRatingMargin => b"matcher_rating_margin\0",
            Variable::MatcherAvgNoiseSize => b"matcher_avg_noise_size\0",
            Variable::MatcherClusteringMaxAngleDelta => b"matcher_clustering_max_angle_delta\0",
            Variable::ClassifyMisfitJunkPenalty => b"classify_misfit_junk_penalty\0",
            Variable::RatingScale => b"rating_scale\0",
            Variable::CertaintyScale => b"certainty_scale\0",
            Variable::TesseditClassMissScale => b"tessedit_class_miss_scale\0",
            Variable::ClassifyAdaptedPruningFactor => b"classify_adapted_pruning_factor\0",
            Variable::ClassifyAdaptedPruningThreshold => b"classify_adapted_pruning_threshold\0",
            Variable::ClassifyCharacterFragmentsGarbageCertaintyThreshold => {
                b"classify_character_fragments_garbage_certainty_threshold\0"
            }
            Variable::SpeckleLargeMaxSize => b"speckle_large_max_size\0",
            Variable::SpeckleRatingPenalty => b"speckle_rating_penalty\0",
            Variable::XheightPenaltySubscripts => b"xheight_penalty_subscripts\0",
            Variable::XheightPenaltyInconsistent => b"xheight_penalty_inconsistent\0",
            Variable::SegmentPenaltyDictFrequentWord => b"segment_penalty_dict_frequent_word\0",
            Variable::SegmentPenaltyDictCaseOk => b"segment_penalty_dict_case_ok\0",
            Variable::SegmentPenaltyDictCaseBad => b"segment_penalty_dict_case_bad\0",
            Variable::SegmentPenaltyDictNonword => b"segment_penalty_dict_nonword\0",
            Variable::SegmentPenaltyGarbage => b"segment_penalty_garbage\0",
            Variable::StopperNondictCertaintyBase => b"stopper_nondict_certainty_base\0",
            Variable::StopperPhase2CertaintyRejectionOffset => {
                b"stopper_phase2_certainty_rejection_offset\0"
            }
            Variable::StopperCertaintyPerChar => b"stopper_certainty_per_char\0",
            Variable::StopperAllowableCharacterBadness => b"stopper_allowable_character_badness\0",
            Variable::DocDictPendingThreshold => b"doc_dict_pending_threshold\0",
            Variable::DocDictCertaintyThreshold => b"doc_dict_certainty_threshold\0",
            Variable::TesseditCertaintyThreshold => b"tessedit_certainty_threshold\0",
            Variable::ChopSplitDistKnob => b"chop_split_dist_knob\0",
            Variable::ChopOverlapKnob => b"chop_overlap_knob\0",
            Variable::ChopCenterKnob => b"chop_center_knob\0",
            Variable::ChopSharpnessKnob => b"chop_sharpness_knob\0",
            Variable::ChopWidthChangeKnob => b"chop_width_change_knob\0",
            Variable::ChopOkSplit => b"chop_ok_split\0",
            Variable::ChopGoodSplit => b"chop_good_split\0",
            Variable::SegsearchMaxCharWhRatio => b"segsearch_max_char_wh_ratio\0",
            Variable::LanguageModelNgramSmallProb => b"language_model_ngram_small_prob\0",
            Variable::LanguageModelNgramNonmatchScore => b"language_model_ngram_nonmatch_score\0",
            Variable::LanguageModelNgramScaleFactor => b"language_model_ngram_scale_factor\0",
            Variable::LanguageModelNgramRatingFactor => b"language_model_ngram_rating_factor\0",
            Variable::LanguageModelPenaltyNonFreqDictWord => {
                b"language_model_penalty_non_freq_dict_word\0"
            }
            Variable::LanguageModelPenaltyNonDictWord => b"language_model_penalty_non_dict_word\0",
            Variable::LanguageModelPenaltyPunc => b"language_model_penalty_punc\0",
            Variable::LanguageModelPenaltyCase => b"language_model_penalty_case\0",
            Variable::LanguageModelPenaltyScript => b"language_model_penalty_script\0",
            Variable::LanguageModelPenaltyChartype => b"language_model_penalty_chartype\0",
            Variable::LanguageModelPenaltyFont => b"language_model_penalty_font\0",
            Variable::LanguageModelPenaltySpacing => b"language_model_penalty_spacing\0",
            Variable::LanguageModelPenaltyIncrement => b"language_model_penalty_increment\0",
            Variable::NoiseCertBasechar => b"noise_cert_basechar\0",
            Variable::NoiseCertDisjoint => b"noise_cert_disjoint\0",
            Variable::NoiseCertPunc => b"noise_cert_punc\0",
            Variable::NoiseCertFactor => b"noise_cert_factor\0",
            Variable::QualityRejPc => b"quality_rej_pc\0",
            Variable::QualityBlobPc => b"quality_blob_pc\0",
            Variable::QualityOutlinePc => b"quality_outline_pc\0",
            Variable::QualityCharPc => b"quality_char_pc\0",
            Variable::TestPtX => b"test_pt_x\0",
            Variable::TestPtY => b"test_pt_y\0",
            Variable::TesseditRejectDocPercent => b"tessedit_reject_doc_percent\0",
            Variable::TesseditRejectBlockPercent => b"tessedit_reject_block_percent\0",
            Variable::TesseditRejectRowPercent => b"tessedit_reject_row_percent\0",
            Variable::TesseditWholeWdRejRowPercent => b"tessedit_whole_wd_rej_row_percent\0",
            Variable::TesseditGoodDocStillRowrejWd => b"tessedit_good_doc_still_rowrej_wd\0",
            Variable::QualityRowrejPc => b"quality_rowrej_pc\0",
            Variable::CrunchTerribleRating => b"crunch_terrible_rating\0",
            Variable::CrunchPoorGarbageCert => b"crunch_poor_garbage_cert\0",
            Variable::CrunchPoorGarbageRate => b"crunch_poor_garbage_rate\0",
            Variable::CrunchPotPoorRate => b"crunch_pot_poor_rate\0",
            Variable::CrunchPotPoorCert => b"crunch_pot_poor_cert\0",
            Variable::CrunchDelRating => b"crunch_del_rating\0",
            Variable::CrunchDelCert => b"crunch_del_cert\0",
            Variable::CrunchDelMinHt => b"crunch_del_min_ht\0",
            Variable::CrunchDelMaxHt => b"crunch_del_max_ht\0",
            Variable::CrunchDelMinWidth => b"crunch_del_min_width\0",
            Variable::CrunchDelHighWord => b"crunch_del_high_word\0",
            Variable::CrunchDelLowWord => b"crunch_del_low_word\0",
            Variable::CrunchSmallOutlinesSize => b"crunch_small_outlines_size\0",
            Variable::FixspSmallOutlinesSize => b"fixsp_small_outlines_size\0",
            Variable::SuperscriptWorseCertainty => b"superscript_worse_certainty\0",
            Variable::SuperscriptBetteredCertainty => b"superscript_bettered_certainty\0",
            Variable::SuperscriptScaledownRatio => b"superscript_scaledown_ratio\0",
            Variable::SubscriptMaxYTop => b"subscript_max_y_top\0",
            Variable::SuperscriptMinYBottom => b"superscript_min_y_bottom\0",
            Variable::SuspectRatingPerCh => b"suspect_rating_per_ch\0",
            Variable::SuspectAcceptRating => b"suspect_accept_rating\0",
            Variable::TesseditLowerFlipHyphen => b"tessedit_lower_flip_hyphen\0",
            Variable::TesseditUpperFlipHyphen => b"tessedit_upper_flip_hyphen\0",
            Variable::RejWholeOfMostlyRejectWordFract => b"rej_whole_of_mostly_reject_word_fract\0",
            Variable::MinOrientationMargin => b"min_orientation_margin\0",
            Variable::TextordTabfindVerticalTextRatio => b"textord_tabfind_vertical_text_ratio\0",
            Variable::TextordTabfindAlignedGapFraction => b"textord_tabfind_aligned_gap_fraction\0",
            Variable::TospOldSpKnThFactor => b"tosp_old_sp_kn_th_factor\0",
            Variable::TospThresholdBias1 => b"tosp_threshold_bias1\0",
            Variable::TospThresholdBias2 => b"tosp_threshold_bias2\0",
            Variable::TospNarrowFraction => b"tosp_narrow_fraction\0",
            Variable::TospNarrowAspectRatio => b"tosp_narrow_aspect_ratio\0",
            Variable::TospWideFraction => b"tosp_wide_fraction\0",
            Variable::TospWideAspectRatio => b"tosp_wide_aspect_ratio\0",
            Variable::TospFuzzySpaceFactor => b"tosp_fuzzy_space_factor\0",
            Variable::TospFuzzySpaceFactor1 => b"tosp_fuzzy_space_factor1\0",
            Variable::TospFuzzySpaceFactor2 => b"tosp_fuzzy_space_factor2\0",
            Variable::TospGapFactor => b"tosp_gap_factor\0",
            Variable::TospKernGapFactor1 => b"tosp_kern_gap_factor1\0",
            Variable::TospKernGapFactor2 => b"tosp_kern_gap_factor2\0",
            Variable::TospKernGapFactor3 => b"tosp_kern_gap_factor3\0",
            Variable::TospIgnoreBigGaps => b"tosp_ignore_big_gaps\0",
            Variable::TospIgnoreVeryBigGaps => b"tosp_ignore_very_big_gaps\0",
            Variable::TospRepSpace => b"tosp_rep_space\0",
            Variable::TospEnoughSmallGaps => b"tosp_enough_small_gaps\0",
            Variable::TospTableKnSpRatio => b"tosp_table_kn_sp_ratio\0",
            Variable::TospTableXhtSpRatio => b"tosp_table_xht_sp_ratio\0",
            Variable::TospTableFuzzyKnSpRatio => b"tosp_table_fuzzy_kn_sp_ratio\0",
            Variable::TospFuzzyKnFraction => b"tosp_fuzzy_kn_fraction\0",
            Variable::TospFuzzySpFraction => b"tosp_fuzzy_sp_fraction\0",
            Variable::TospMinSaneKnSp => b"tosp_min_sane_kn_sp\0",
            Variable::TospInitGuessKnMult => b"tosp_init_guess_kn_mult\0",
            Variable::TospInitGuessXhtMult => b"tosp_init_guess_xht_mult\0",
            Variable::TospMaxSaneKnThresh => b"tosp_max_sane_kn_thresh\0",
            Variable::TospFlipCaution => b"tosp_flip_caution\0",
            Variable::TospLargeKerning => b"tosp_large_kerning\0",
            Variable::TospDontFoolWithSmallKerns => b"tosp_dont_fool_with_small_kerns\0",
            Variable::TospNearLhEdge => b"tosp_near_lh_edge\0",
            Variable::TospSillyKnSpGap => b"tosp_silly_kn_sp_gap\0",
            Variable::TospPassWideFuzzSpToContext => b"tosp_pass_wide_fuzz_sp_to_context\0",
            Variable::TextordNoiseAreaRatio => b"textord_noise_area_ratio\0",
            Variable::TextordInitialxIle => b"textord_initialx_ile\0",
            Variable::TextordInitialascIle => b"textord_initialasc_ile\0",
            Variable::TextordNoiseSizelimit => b"textord_noise_sizelimit\0",
            Variable::TextordNoiseNormratio => b"textord_noise_normratio\0",
            Variable::TextordNoiseSyfract => b"textord_noise_syfract\0",
            Variable::TextordNoiseSxfract => b"textord_noise_sxfract\0",
            Variable::TextordNoiseHfract => b"textord_noise_hfract\0",
            Variable::TextordNoiseRowratio => b"textord_noise_rowratio\0",
            Variable::TextordBlshiftMaxshift => b"textord_blshift_maxshift\0",
            Variable::TextordBlshiftXfraction => b"textord_blshift_xfraction\0",
        })
        .unwrap()
    }
}