File: read7.co

package info (click to toggle)
gap 4r4p10-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 29,224 kB
  • ctags: 7,084
  • sloc: ansic: 98,591; sh: 3,284; perl: 2,263; makefile: 467; awk: 6
file content (2122 lines) | stat: -rw-r--r-- 136,887 bytes parent folder | download
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
#I  file="lib/read7.g"

#F  file="lib/ctblfuns.gd" crc=20472313
RANK_FILTER_LIST  := [ 52428456, 31, 1, 0, 1, 0, 37749024, 34, 993, 2, 1, 0, 
  52428456, 31, 1, 0, 1, 0, 8389136, 34, 993, 2, 1, 0, 53657149, 1, 1, 0, 1, 
  0, 16777279, 4, 993, 2, 1, 0, 53657149, 1, 1, 0, 1, 0, 33554525, 4, 993, 2, 
  1, 0, 33223879, 17, 33223879, 17, 1, 0, 1, 0, 138, 24, 993, 2, 1, 0, 
  52428456, 31, 1, 0, 1, 0, 42141652, 34, 993, 2, 1, 0, 52428456, 31, 1, 0, 
  1, 0, 26554590, 34, 993, 2, 1, 0, 52428456, 31, 1, 0, 1, 0, 31315221, 34, 
  993, 2, 1, 0, 52428456, 31, 1, 0, 1, 0, 51600431, 34, 993, 2, 1, 0, 
  52428456, 31, 1, 0, 1, 0, 36090990, 34, 993, 2, 1, 0, 52428456, 31, 1, 0, 
  1, 0, 5072108, 34, 993, 2, 1, 0, 52428456, 31, 1, 0, 1, 0, 10143223, 34, 
  993, 2, 1, 0, 32769, 4, 1, 0, 1, 0, 20285453, 7, 993, 2, 1, 0, 52428456, 
  31, 1, 0, 1, 0, 40569913, 34, 993, 2, 1, 0, 52428456, 31, 1, 0, 1, 0, 
  14029954, 34, 993, 2, 1, 0, 65537, 6, 7626497, 8, 54915058, 7, 62914486, 9, 
  1, 0, 1, 0, 28059875, 33, 993, 2, 1, 0 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblfuns.gd", 20472313 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblfuns.gd\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblfuns.gd");
elif COM_RESULT = 3  then
Revision.ctblfuns_gd:="@(#)$Id: ctblfuns.gd,v 4.54.2.5 2007/08/29 11:29:44 gap Exp $";
DeclareCategory("IsClassFunction",IsScalar and IsCommutativeElement and IsAssociativeElement and IsHomogeneousList and IsScalarCollection and IsFinite and IsGeneralizedRowVector);
DeclareGlobalFunction("CharacterString");
DeclareAttribute("UnderlyingCharacterTable",IsClassFunction);
DeclareAttribute("ValuesOfClassFunction",IsClassFunction);
DeclareAttribute("GlobalPartitionOfClasses",IsNearlyCharacterTable);
DeclareOperation("CorrespondingPermutations",[IsOrdinaryTable,IsHomogeneousList]);
DeclareOperation("CorrespondingPermutations",[IsOrdinaryTable,IsClassFunction,IsHomogeneousList]);
DeclareOperation("ClassFunction",[IsNearlyCharacterTable,IsDenseList]);
DeclareOperation("ClassFunction",[IsGroup,IsDenseList]);
DeclareOperation("VirtualCharacter",[IsNearlyCharacterTable,IsDenseList]);
DeclareOperation("VirtualCharacter",[IsGroup,IsDenseList]);
DeclareOperation("Character",[IsNearlyCharacterTable,IsDenseList]);
DeclareOperation("Character",[IsGroup,IsDenseList]);
DeclareGlobalFunction("ClassFunctionSameType");
DeclareAttribute("TrivialCharacter",IsNearlyCharacterTable);
DeclareAttribute("TrivialCharacter",IsGroup);
DeclareAttribute("NaturalCharacter",IsGroup);
DeclareAttribute("NaturalCharacter",IsGeneralMapping);
DeclareOperation("PermutationCharacter",[IsGroup,IsCollection,IsFunction]);
DeclareOperation("PermutationCharacter",[IsGroup,IsGroup]);
DeclareProperty("IsCharacter",IsClassFunction);
DeclareOperation("IsCharacter",[IsCharacterTable,IsHomogeneousList]);
DeclareProperty("IsVirtualCharacter",IsClassFunction);
DeclareOperation("IsVirtualCharacter",[IsCharacterTable,IsHomogeneousList]);
InstallTrueMethod(IsVirtualCharacter,IsCharacter and IsClassFunction);
DeclareProperty("IsIrreducibleCharacter",IsClassFunction);
DeclareOperation("IsIrreducibleCharacter",[IsCharacterTable,IsHomogeneousList]);
DeclareOperation("ScalarProduct",[IsCharacterTable,IsRowVector,IsRowVector]);
DeclareOperation("MatScalarProducts",[IsHomogeneousList,IsHomogeneousList]);
DeclareOperation("MatScalarProducts",[IsOrdinaryTable,IsHomogeneousList,IsHomogeneousList]);
DeclareOperation("MatScalarProducts",[IsHomogeneousList]);
DeclareOperation("MatScalarProducts",[IsOrdinaryTable,IsHomogeneousList]);
DeclareAttribute("Norm",IsClassFunction);
DeclareOperation("Norm",[IsOrdinaryTable,IsHomogeneousList]);
DeclareAttribute("CentreOfCharacter",IsClassFunction);
DeclareOperation("CentreOfCharacter",[IsOrdinaryTable,IsHomogeneousList]);
DeclareSynonym("CenterOfCharacter",CentreOfCharacter);
DeclareAttribute("ClassPositionsOfCentre",IsHomogeneousList);
DeclareAttribute("ConstituentsOfCharacter",IsClassFunction);
DeclareOperation("ConstituentsOfCharacter",[IsCharacterTable,IsHomogeneousList]);
DeclareAttribute("DegreeOfCharacter",IsClassFunction);
DeclareOperation("InertiaSubgroup",[IsGroup,IsClassFunction]);
DeclareOperation("InertiaSubgroup",[IsOrdinaryTable,IsGroup,IsHomogeneousList]);
DeclareAttribute("KernelOfCharacter",IsClassFunction);
DeclareOperation("KernelOfCharacter",[IsOrdinaryTable,IsHomogeneousList]);
DeclareAttribute("ClassPositionsOfKernel",IsHomogeneousList);
DeclareOperation("CycleStructureClass",[IsOrdinaryTable,IsHomogeneousList,IsPosInt]);
DeclareOperation("CycleStructureClass",[IsClassFunction,IsPosInt]);
DeclareProperty("IsTransitive",IsClassFunction);
DeclareOperation("IsTransitive",[IsCharacterTable,IsHomogeneousList]);
DeclareAttribute("Transitivity",IsClassFunction);
DeclareOperation("Transitivity",[IsOrdinaryTable,IsHomogeneousList]);
DeclareAttribute("CentralCharacter",IsClassFunction);
DeclareOperation("CentralCharacter",[IsCharacterTable,IsHomogeneousList]);
DeclareAttribute("DeterminantOfCharacter",IsClassFunction);
DeclareOperation("DeterminantOfCharacter",[IsCharacterTable,IsHomogeneousList]);
DeclareOperation("EigenvaluesChar",[IsClassFunction,IsPosInt]);
DeclareOperation("EigenvaluesChar",[IsCharacterTable,IsHomogeneousList,IsPosInt]);
DeclareOperation("Tensored",[IsHomogeneousList,IsHomogeneousList]);
DeclareOperation("RestrictedClassFunction",[IsClassFunction,IsGroup]);
DeclareOperation("RestrictedClassFunction",[IsNearlyCharacterTable,IsHomogeneousList,IsGroup]);
DeclareOperation("RestrictedClassFunction",[IsClassFunction,IsGeneralMapping]);
DeclareOperation("RestrictedClassFunction",[IsNearlyCharacterTable,IsHomogeneousList,IsGeneralMapping]);
DeclareOperation("RestrictedClassFunction",[IsClassFunction,IsNearlyCharacterTable]);
DeclareOperation("RestrictedClassFunction",[IsNearlyCharacterTable,IsHomogeneousList,IsNearlyCharacterTable]);
DeclareOperation("RestrictedClassFunctions",[IsList,IsGroup]);
DeclareOperation("RestrictedClassFunctions",[IsNearlyCharacterTable,IsList,IsGroup]);
DeclareOperation("RestrictedClassFunctions",[IsList,IsGeneralMapping]);
DeclareOperation("RestrictedClassFunctions",[IsNearlyCharacterTable,IsList,IsGeneralMapping]);
DeclareOperation("RestrictedClassFunctions",[IsList,IsNearlyCharacterTable]);
DeclareOperation("RestrictedClassFunctions",[IsNearlyCharacterTable,IsList,IsNearlyCharacterTable]);
DeclareOperation("Restricted",[IsObject,IsObject]);
DeclareOperation("Restricted",[IsObject,IsObject,IsObject]);
DeclareOperation("Restricted",[IsObject,IsObject,IsObject,IsObject]);
DeclareSynonym("Inflated",Restricted);
DeclareOperation("InducedClassFunction",[IsClassFunction,IsGroup]);
DeclareOperation("InducedClassFunction",[IsNearlyCharacterTable,IsHomogeneousList,IsGroup]);
DeclareOperation("InducedClassFunction",[IsClassFunction,IsGeneralMapping]);
DeclareOperation("InducedClassFunction",[IsNearlyCharacterTable,IsHomogeneousList,IsGeneralMapping]);
DeclareOperation("InducedClassFunction",[IsClassFunction,IsNearlyCharacterTable]);
DeclareOperation("InducedClassFunction",[IsNearlyCharacterTable,IsHomogeneousList,IsNearlyCharacterTable]);
DeclareOperation("InducedClassFunctions",[IsList,IsGroup]);
DeclareOperation("InducedClassFunctions",[IsNearlyCharacterTable,IsList,IsGroup]);
DeclareOperation("InducedClassFunctions",[IsList,IsGeneralMapping]);
DeclareOperation("InducedClassFunctions",[IsNearlyCharacterTable,IsList,IsGeneralMapping]);
DeclareOperation("InducedClassFunctions",[IsList,IsNearlyCharacterTable]);
DeclareOperation("InducedClassFunctions",[IsNearlyCharacterTable,IsList,IsNearlyCharacterTable]);
DeclareOperation("Induced",[IsObject,IsObject]);
DeclareOperation("Induced",[IsObject,IsObject,IsObject]);
DeclareOperation("Induced",[IsObject,IsObject,IsObject,IsObject]);
DeclareOperation("InducedCyclic",[IsOrdinaryTable]);
DeclareOperation("InducedCyclic",[IsOrdinaryTable,IsList]);
DeclareOperation("InducedCyclic",[IsOrdinaryTable,IsList,IsString]);
DeclareOperation("ReducedClassFunctions",[IsHomogeneousList,IsHomogeneousList]);
DeclareOperation("ReducedClassFunctions",[IsOrdinaryTable,IsHomogeneousList,IsHomogeneousList]);
DeclareOperation("ReducedClassFunctions",[IsHomogeneousList]);
DeclareOperation("ReducedClassFunctions",[IsOrdinaryTable,IsHomogeneousList]);
DeclareSynonym("Reduced",ReducedClassFunctions);
DeclareOperation("ReducedCharacters",[IsHomogeneousList,IsHomogeneousList]);
DeclareOperation("ReducedCharacters",[IsOrdinaryTable,IsHomogeneousList,IsHomogeneousList]);
DeclareSynonym("ReducedOrdinary",ReducedCharacters);
DeclareGlobalFunction("IrreducibleDifferences");
DeclareOperation("Symmetrizations",[IsNearlyCharacterTable,IsHomogeneousList,IsInt]);
DeclareOperation("Symmetrizations",[IsNearlyCharacterTable,IsHomogeneousList,IsCharacterTable]);
DeclareOperation("Symmetrizations",[IsHomogeneousList,IsInt]);
DeclareOperation("Symmetrizations",[IsHomogeneousList,IsCharacterTable]);
DeclareSynonym("Symmetrisations",Symmetrizations);
DeclareGlobalFunction("SymmetricParts");
DeclareGlobalFunction("AntiSymmetricParts");
DeclareGlobalFunction("RefinedSymmetrizations");
DeclareSynonym("RefinedSymmetrisations",RefinedSymmetrizations);
DeclareGlobalFunction("OrthogonalComponents");
DeclareGlobalFunction("SymplecticComponents");
DeclareGlobalFunction("FrobeniusCharacterValue");
DeclareAttribute("BrauerCharacterValue",IsMatrix);
DeclareGlobalVariable("ZEV_DATA","nested list of length 2");
DeclareGlobalFunction("ZevData");
DeclareGlobalFunction("ZevDataValue");
DeclareGlobalFunction("SizeOfFieldOfDefinition");
DeclareGlobalFunction("RealizableBrauerCharacters");
DeclareHandlingByNiceBasis("IsClassFunctionsSpace","for free left modules of class functions");
DeclareGlobalFunction("OrbitChar");
DeclareGlobalFunction("OrbitsCharacters");
DeclareGlobalFunction("OrbitRepresentativesCharacters");
DeclareGlobalFunction("CollapsedMat");
DeclareGlobalFunction("CharacterTableQuaternionic");
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblfuns.gd"

#F  file="lib/ctblmaps.gd" crc=-84150385
RANK_FILTER_LIST  := [ 53657149, 1, 1, 0, 1, 0, 45129562, 4, 993, 2, 1, 0, 
  63580652, 7, 1, 0, 1, 0, 23149252, 10, 993, 2, 1, 0, 53657149, 1, 1, 0, 1, 
  0, 46297511, 4, 993, 2, 1, 0, 53657149, 1, 1, 0, 1, 0, 25486110, 4, 993, 2, 
  1, 0 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblmaps.gd", -84150385 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblmaps.gd\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblmaps.gd");
elif COM_RESULT = 3  then
Revision.ctblmaps_gd:="@(#)$Id: ctblmaps.gd,v 4.32.2.1 2005/05/09 08:49:08 gap Exp $";
DeclareOperation("PowerMap",[IsNearlyCharacterTable,IsInt]);
DeclareOperation("PowerMap",[IsNearlyCharacterTable,IsInt,IsInt]);
DeclareOperation("PowerMapOp",[IsNearlyCharacterTable,IsInt]);
DeclareOperation("PowerMapOp",[IsNearlyCharacterTable,IsInt,IsInt]);
DeclareAttributeSuppCT("ComputedPowerMaps",IsNearlyCharacterTable,"mutable",["class"]);
DeclareOperation("PossiblePowerMaps",[IsCharacterTable,IsInt]);
DeclareOperation("PossiblePowerMaps",[IsCharacterTable,IsInt,IsRecord]);
DeclareGlobalFunction("ElementOrdersPowerMap");
DeclareGlobalFunction("PowerMapByComposition");
DeclareGlobalFunction("OrbitPowerMaps");
DeclareGlobalFunction("RepresentativesPowerMaps");
DeclareOperation("FusionConjugacyClasses",[IsNearlyCharacterTable,IsNearlyCharacterTable]);
DeclareOperation("FusionConjugacyClasses",[IsGroup,IsGroup]);
DeclareOperation("FusionConjugacyClasses",[IsGeneralMapping]);
DeclareOperation("FusionConjugacyClasses",[IsGeneralMapping,IsNearlyCharacterTable,IsNearlyCharacterTable]);
DeclareAttribute("FusionConjugacyClassesOp",IsGeneralMapping);
DeclareOperation("FusionConjugacyClassesOp",[IsNearlyCharacterTable,IsNearlyCharacterTable]);
DeclareOperation("FusionConjugacyClassesOp",[IsGeneralMapping,IsNearlyCharacterTable,IsNearlyCharacterTable]);
DeclareAttributeSuppCT("ComputedClassFusions",IsNearlyCharacterTable,"mutable",["class"]);
DeclareGlobalFunction("GetFusionMap");
DeclareGlobalFunction("StoreFusion");
DeclareAttributeSuppCT("NamesOfFusionSources",IsNearlyCharacterTable,"mutable",[]);
DeclareOperation("PossibleClassFusions",[IsNearlyCharacterTable,IsNearlyCharacterTable]);
DeclareOperation("PossibleClassFusions",[IsNearlyCharacterTable,IsNearlyCharacterTable,IsRecord]);
DeclareGlobalFunction("OrbitFusions");
DeclareGlobalFunction("RepresentativesFusions");
DeclareGlobalFunction("CompositionMaps");
DeclareGlobalFunction("InverseMap");
DeclareGlobalFunction("ProjectionMap");
DeclareOperation("Indirected",[IsList,IsList]);
DeclareGlobalFunction("Parametrized");
DeclareGlobalFunction("ContainedMaps");
DeclareGlobalFunction("UpdateMap");
DeclareGlobalFunction("MeetMaps");
DeclareGlobalFunction("ImproveMaps");
DeclareGlobalFunction("CommutativeDiagram");
DeclareGlobalFunction("CheckFixedPoints");
DeclareGlobalFunction("TransferDiagram");
DeclareGlobalFunction("TestConsistencyMaps");
DeclareGlobalFunction("Indeterminateness");
DeclareGlobalFunction("IndeterminatenessInfo");
DeclareGlobalFunction("PrintAmbiguity");
DeclareGlobalFunction("ContainedSpecialVectors");
DeclareGlobalFunction("IntScalarProducts");
DeclareGlobalFunction("NonnegIntScalarProducts");
DeclareGlobalFunction("ContainedPossibleVirtualCharacters");
DeclareGlobalFunction("ContainedPossibleCharacters");
DeclareGlobalFunction("ContainedDecomposables");
DeclareGlobalFunction("ContainedCharacters");
DeclareGlobalFunction("InitPowerMap");
DeclareGlobalFunction("Congruences");
DeclareGlobalFunction("ConsiderKernels");
DeclareGlobalFunction("ConsiderSmallerPowerMaps");
DeclareGlobalFunction("MinusCharacter");
DeclareGlobalFunction("PowerMapsAllowedBySymmetrizations");
DeclareSynonym("PowerMapsAllowedBySymmetrisations",PowerMapsAllowedBySymmetrizations);
DeclareGlobalFunction("InitFusion");
DeclareGlobalFunction("CheckPermChar");
DeclareGlobalFunction("ConsiderTableAutomorphisms");
DeclareGlobalFunction("FusionsAllowedByRestrictions");
DeclareGlobalFunction("ConsiderStructureConstants");
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblmaps.gd"

#F  file="lib/ctblauto.gd" crc=-25172905
RANK_FILTER_LIST  := [  ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblauto.gd", -25172905 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblauto.gd\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblauto.gd");
elif COM_RESULT = 3  then
Revision.ctblauto_gd:="@(#)$Id: ctblauto.gd,v 4.8.2.1 2005/08/24 14:47:56 gap Exp $";
DeclareGlobalFunction("FamiliesOfRows");
DeclareOperation("MatrixAutomorphisms",[IsMatrix]);
DeclareOperation("MatrixAutomorphisms",[IsMatrix,IsList,IsPermGroup]);
DeclareOperation("TableAutomorphisms",[IsNearlyCharacterTable,IsList]);
DeclareOperation("TableAutomorphisms",[IsNearlyCharacterTable,IsList,IsString]);
DeclareOperation("TableAutomorphisms",[IsNearlyCharacterTable,IsList,IsPermGroup]);
DeclareOperation("TransformingPermutations",[IsMatrix,IsMatrix]);
DeclareOperation("TransformingPermutationsCharacterTables",[IsNearlyCharacterTable,IsNearlyCharacterTable]);
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblauto.gd"

#F  file="lib/ctbllatt.gd" crc=28247179
RANK_FILTER_LIST  := [  ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctbllatt.gd", 28247179 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctbllatt.gd\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctbllatt.gd");
elif COM_RESULT = 3  then
Revision.ctbllatt_gd:="@(#)$Id: ctbllatt.gd,v 4.15 2002/04/15 10:04:34 sal Exp $";
DeclareGlobalFunction("LLL");
DeclareGlobalFunction("Extract");
DeclareGlobalFunction("OrthogonalEmbeddingsSpecialDimension");
DeclareGlobalFunction("Decreased");
DeclareGlobalFunction("DnLattice");
DeclareGlobalFunction("DnLatticeIterative");
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctbllatt.gd"

#F  file="lib/ctblsymm.gd" crc=-57588481
RANK_FILTER_LIST  := [  ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblsymm.gd", -57588481 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblsymm.gd\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblsymm.gd");
elif COM_RESULT = 3  then
Revision.ctblsymm_gd:="@(#)$Id: ctblsymm.gd,v 4.13 2003/11/19 09:41:32 gap Exp $";
DeclareGlobalFunction("BetaSet");
DeclareGlobalFunction("CentralizerWreath");
DeclareGlobalFunction("PowerWreath");
DeclareGlobalFunction("InductionScheme");
DeclareGlobalFunction("MatCharsWreathSymmetric");
DeclareGlobalFunction("CharValueSymmetric");
DeclareGlobalVariable("CharTableSymmetric","generic character table of symmetric groups");
DeclareGlobalVariable("CharTableAlternating","generic character table of alternating groups");
DeclareGlobalFunction("CharValueWeylB");
DeclareGlobalVariable("CharTableWeylB","generic character table of Weyl groups of type B");
DeclareGlobalVariable("CharTableWeylD","generic character table of Weyl groups of type D");
DeclareGlobalFunction("CharValueWreathSymmetric");
DeclareGlobalFunction("CharacterTableWreathSymmetric");
DeclareGlobalVariable("CharTableDoubleCoverSymmetric","gen. char. table of the standard Schur double cover of symm. groups");
DeclareGlobalVariable("CharTableDoubleCoverAlternating","generic char. table of the Schur double cover of alternating groups");
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblsymm.gd"

#F  file="lib/ctblsolv.gd" crc=45651183
RANK_FILTER_LIST  := [ 33223879, 17, 33223879, 17, 1, 0, 1, 0, 50971227, 24, 
  993, 2, 1, 0, 33223879, 17, 33223879, 17, 1, 0, 1, 0, 34832582, 29, 993, 2, 
  1, 0, 33223879, 17, 33223879, 17, 1, 0, 1, 0, 2556252, 24, 993, 2, 1, 0, 
  33223879, 17, 33223879, 17, 1, 0, 1, 0, 5112471, 24, 993, 2, 1, 0 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblsolv.gd", 45651183 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblsolv.gd\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblsolv.gd");
elif COM_RESULT = 3  then
Revision.ctblsolv_gd:="@(#)$Id: ctblsolv.gd,v 4.15 2002/04/15 10:04:35 sal Exp $";
DeclareGlobalVariable("BaumClausenInfoDebug");
DeclareAttribute("BaumClausenInfo",IsGroup);
DeclareAttribute("IrreducibleRepresentations",IsGroup and IsFinite);
DeclareOperation("IrreducibleRepresentations",[IsGroup and IsFinite,IsField]);
DeclareAttribute("IrrBaumClausen",IsGroup);
DeclareGlobalFunction("InducedRepresentationImagesRepresentative");
DeclareGlobalFunction("InducedRepresentation");
DeclareGlobalFunction("ProjectiveCharDeg");
DeclareGlobalFunction("CoveringTriplesCharacters");
DeclareAttribute("IrrConlon",IsGroup);
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblsolv.gd"

#F  file="lib/ctblpope.gd" crc=-64731885
RANK_FILTER_LIST  := [  ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblpope.gd", -64731885 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblpope.gd\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblpope.gd");
elif COM_RESULT = 3  then
Revision.ctblpope_gd:="@(#)$Id: ctblpope.gd,v 4.27.4.1 2005/05/09 08:40:59 gap Exp $";
DeclareGlobalFunction("PermCharInfo");
DeclareGlobalFunction("PermCharInfoRelative");
DeclareGlobalFunction("TestPerm1");
DeclareGlobalFunction("TestPerm2");
DeclareGlobalFunction("TestPerm3");
DeclareGlobalFunction("TestPerm4");
DeclareGlobalFunction("TestPerm5");
DeclareGlobalFunction("PermChars");
DeclareOperation("Inequalities",[IsOrdinaryTable,IsList]);
DeclareOperation("Inequalities",[IsOrdinaryTable,IsList,IsObject]);
DeclareGlobalFunction("Permut");
DeclareGlobalFunction("PermBounds");
DeclareGlobalFunction("PermComb");
DeclareGlobalFunction("PermCandidates");
DeclareGlobalFunction("PermCandidatesFaithful");
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblpope.gd"

#F  file="lib/ctblmoli.gd" crc=55808565
RANK_FILTER_LIST  := [ 67108010, 13, 1, 0, 1, 0, 10223949, 16, 993, 2, 1, 0 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblmoli.gd", 55808565 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblmoli.gd\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblmoli.gd");
elif COM_RESULT = 3  then
Revision.ctblmoli_gd:="@(#)$Id: ctblmoli.gd,v 4.11 2003/02/20 17:21:55 gap Exp $";
DeclareGlobalFunction("MolienSeries");
DeclareGlobalFunction("MolienSeriesWithGivenDenominator");
DeclareAttribute("MolienSeriesInfo",IsRationalFunction);
DeclareGlobalFunction("CoefficientTaylorSeries");
DeclareGlobalFunction("SummandMolienSeries");
DeclareGlobalFunction("ValueMolienSeries");
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblmoli.gd"

#F  file="lib/ctblmono.gd" crc=-10121205
RANK_FILTER_LIST  := [ 33223879, 17, 33223879, 17, 1, 0, 1, 0, 20447865, 24, 
  993, 2, 1, 0, 33223879, 17, 33223879, 17, 1, 0, 1, 0, 40894737, 24, 993, 2, 
  1, 0, 33223879, 17, 33223879, 17, 1, 0, 1, 0, 29361091, 24, 993, 2, 1, 0, 
  52428456, 31, 1, 0, 1, 0, 50332506, 34, 993, 2, 1, 0, 52428456, 31, 1, 0, 
  1, 0, 33555140, 34, 993, 2, 1, 0, 52428456, 31, 1, 0, 1, 0, 783, 34, 993, 
  2, 1, 0, 52428456, 31, 1, 0, 1, 0, 26835878, 34, 993, 2, 1, 0, 52428456, 
  31, 1, 0, 1, 0, 67069299, 34, 993, 2, 1, 0, 17, 18, 7665924, 18, 1, 0, 1, 
  0, 56079354, 22, 993, 2, 1, 0, 52428456, 31, 1, 0, 1, 0, 45048836, 34, 993, 
  2, 1, 0, 52428456, 31, 1, 0, 1, 0, 22987800, 34, 993, 2, 1, 0, 33223879, 
  17, 33223879, 17, 1, 0, 1, 0, 45974607, 24, 993, 2, 1, 0, 33223879, 17, 
  33223879, 17, 1, 0, 1, 0, 49677691, 24, 993, 2, 1, 0, 33223879, 17, 
  33223879, 17, 1, 0, 1, 0, 32245510, 24, 993, 2, 1, 0, 52428456, 31, 1, 0, 
  1, 0, 61873062, 34, 993, 2, 1, 0, 33223879, 17, 33223879, 17, 1, 0, 1, 0, 
  46163592, 24, 993, 2, 1, 0 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblmono.gd", -10121205 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblmono.gd\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblmono.gd");
elif COM_RESULT = 3  then
Revision.ctblmono_gd:="@(#)$Id: ctblmono.gd,v 4.17 2002/04/15 10:04:35 sal Exp $";
DeclareInfoClass("InfoMonomial");
DeclareAttribute("Alpha",IsGroup);
DeclareAttribute("Delta",IsGroup);
DeclareProperty("IsBergerCondition",IsGroup);
DeclareProperty("IsBergerCondition",IsClassFunction);
DeclareGlobalFunction("TestHomogeneous");
DeclareProperty("IsPrimitiveCharacter",IsClassFunction);
DeclareAttribute("TestQuasiPrimitive",IsClassFunction);
DeclareProperty("IsQuasiPrimitive",IsClassFunction);
DeclareGlobalFunction("TestInducedFromNormalSubgroup");
DeclareProperty("IsInducedFromNormalSubgroup",IsClassFunction);
DeclareProperty("IsMonomialCharacter",IsClassFunction);
DeclareProperty("IsMonomialNumber",IsPosInt);
DeclareAttribute("TestMonomialQuick",IsClassFunction);
DeclareAttribute("TestMonomialQuick",IsGroup);
DeclareAttribute("TestMonomial",IsClassFunction);
DeclareAttribute("TestMonomial",IsGroup);
DeclareOperation("TestMonomial",[IsClassFunction,IsBool]);
DeclareOperation("TestMonomial",[IsGroup,IsBool]);
TestMonomialUseLattice:=1000;
DeclareAttribute("TestSubnormallyMonomial",IsGroup);
DeclareAttribute("TestSubnormallyMonomial",IsClassFunction);
DeclareProperty("IsSubnormallyMonomial",IsGroup);
DeclareProperty("IsSubnormallyMonomial",IsClassFunction);
DeclareAttribute("TestRelativelySM",IsGroup);
DeclareAttribute("TestRelativelySM",IsClassFunction);
DeclareOperation("TestRelativelySM",[IsClassFunction,IsGroup]);
DeclareOperation("TestRelativelySM",[IsGroup,IsGroup]);
DeclareProperty("IsRelativelySM",IsClassFunction);
DeclareProperty("IsRelativelySM",IsGroup);
DeclareProperty("IsMinimalNonmonomial",IsGroup);
DeclareGlobalFunction("MinimalNonmonomialGroup");
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblmono.gd"

#F  file="lib/ctblgrp.gd" crc=-124368809
RANK_FILTER_LIST  := [ 33223879, 17, 33223879, 17, 1, 0, 1, 0, 25217312, 24, 
  993, 2, 1, 0, 33223879, 17, 33223879, 17, 1, 0, 1, 0, 50434591, 24, 993, 2, 
  1, 0 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblgrp.gd", -124368809 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblgrp.gd\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblgrp.gd");
elif COM_RESULT = 3  then
Revision.ctblgrp_gd:="@(#)$Id: ctblgrp.gd,v 4.16 2002/04/15 10:04:34 sal Exp $";
DeclareGlobalFunction("IsDxLargeGroup");
DeclareGlobalFunction("DxModularValuePol");
DeclareGlobalFunction("DxDegreeCandidates");
DeclareAttribute("DixonRecord",IsGroup,"mutable");
DeclareOperation("DxPreparation",[IsGroup,IsRecord]);
DeclareGlobalFunction("ClassComparison");
DeclareGlobalFunction("DxIncludeIrreducibles");
DeclareGlobalFunction("SplitCharacters");
DeclareGlobalFunction("OrbitSplit");
DeclareGlobalFunction("DxSplitDegree");
DeclareGlobalFunction("BestSplittingMatrix");
DeclareGlobalFunction("DixonInit");
DeclareGlobalFunction("DixonSplit");
DeclareGlobalFunction("SplitStep");
DeclareGlobalFunction("DixontinI");
DeclareAttribute("IrrDixonSchneider",IsGroup);
DeclareOperation("IrrDixonSchneider",[IsGroup,IsRecord]);
DeclareGlobalFunction("IrreducibleRepresentationsDixon");
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblgrp.gd"

#F  file="lib/tom.gd" crc=-6823469
RANK_FILTER_LIST  := [ 33223879, 17, 33223879, 17, 1, 0, 1, 0, 33759310, 24, 
  993, 2, 1, 0, 408716, 1, 1, 0, 1, 0, 819383, 4, 993, 2, 1, 0, 408716, 1, 1, 
  0, 1, 0, 1638733, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 1, 0, 3277433, 4, 993, 
  2, 1, 0, 408716, 1, 1, 0, 1, 0, 6553873, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 
  1, 0, 13107713, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 1, 0, 26215393, 4, 993, 
  2, 1, 0, 408716, 1, 1, 0, 1, 0, 52429793, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 
  1, 0, 37749714, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 1, 0, 8389556, 4, 993, 2, 
  1, 0, 408716, 1, 1, 0, 1, 0, 16778119, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 1, 
  0, 33555245, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 1, 0, 618, 4, 993, 2, 1, 0, 
  408716, 1, 1, 0, 1, 0, 31240630, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 1, 0, 
  26610815, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 1, 0, 17353105, 4, 993, 2, 1, 
  0, 408716, 1, 1, 0, 1, 0, 65944644, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 1, 0, 
  28910924, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 1, 0, 60708209, 4, 993, 2, 1, 
  0, 408716, 1, 1, 0, 1, 0, 54306546, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 1, 0, 
  41503220, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 1, 0, 15896568, 4, 993, 2, 1, 
  0, 408716, 1, 1, 0, 1, 0, 31792143, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 1, 0, 
  63583293, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 1, 0, 60056714, 4, 993, 2, 1, 
  0, 408716, 1, 1, 0, 1, 0, 53004516, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 1, 0, 
  38900120, 4, 993, 2, 1, 0, 408716, 1, 1, 0, 1, 0, 10691328, 4, 993, 2, 1, 
  0, 408716, 1, 1, 0, 1, 0, 21381663, 4, 993, 2, 1, 0 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/tom.gd", -6823469 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/tom.gd\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/tom.gd");
elif COM_RESULT = 3  then
Revision.tom_gd:="@(#)$Id: tom.gd,v 4.46 2003/07/21 15:24:14 gap Exp $";
DeclareAttribute("TableOfMarks",IsGroup);
DeclareAttribute("TableOfMarks",IsString);
DeclareAttribute("TableOfMarks",IsTable);
DeclareGlobalFunction("TableOfMarksByLattice");
DeclareGlobalFunction("LatticeSubgroupsByTom");
DeclareCategory("IsTableOfMarks",IsObject);
DeclareOperation("SortedTom",[IsTableOfMarks,IsPerm]);
DeclareAttribute("PermutationTom",IsTableOfMarks);
DeclareInfoClass("InfoTom");
BindGlobal("TableOfMarksFamily",NewFamily("TableOfMarksFamily",IsTableOfMarks));
DeclareGlobalFunction("ConvertToTableOfMarks");
DeclareAttribute("MarksTom",IsTableOfMarks);
DeclareAttribute("SubsTom",IsTableOfMarks);
DeclareAttribute("NrSubsTom",IsTableOfMarks);
DeclareAttribute("OrdersTom",IsTableOfMarks);
DeclareAttribute("LengthsTom",IsTableOfMarks);
DeclareAttribute("ClassTypesTom",IsTableOfMarks);
DeclareAttribute("ClassNamesTom",IsTableOfMarks);
DeclareAttribute("FusionsTom",IsTableOfMarks,"mutable");
DeclareAttribute("UnderlyingGroup",IsTableOfMarks);
DeclareAttribute("IdempotentsTom",IsTableOfMarks);
DeclareAttribute("IdempotentsTomInfo",IsTableOfMarks);
DeclareAttribute("Identifier",IsTableOfMarks);
DeclareAttribute("MatTom",IsTableOfMarks);
DeclareAttribute("MoebiusTom",IsTableOfMarks);
DeclareAttribute("WeightsTom",IsTableOfMarks);
DeclareAttribute("IsAbelianTom",IsTableOfMarks);
DeclareOperation("IsAbelianTom",[IsTableOfMarks,IsPosInt]);
DeclareAttribute("IsCyclicTom",IsTableOfMarks);
DeclareOperation("IsCyclicTom",[IsTableOfMarks,IsPosInt]);
DeclareAttribute("IsNilpotentTom",IsTableOfMarks);
DeclareOperation("IsNilpotentTom",[IsTableOfMarks,IsPosInt]);
DeclareAttribute("IsPerfectTom",IsTableOfMarks);
DeclareOperation("IsPerfectTom",[IsTableOfMarks,IsPosInt]);
DeclareAttribute("IsSolvableTom",IsTableOfMarks);
DeclareOperation("IsSolvableTom",[IsTableOfMarks,IsPosInt]);
DeclareOperation("DerivedSubgroupTom",[IsTableOfMarks,IsPosInt]);
DeclareGlobalFunction("DerivedSubgroupsTom");
DeclareAttribute("DerivedSubgroupsTomPossible",IsTableOfMarks,"mutable");
DeclareAttribute("DerivedSubgroupsTomUnique",IsTableOfMarks);
DeclareOperation("NormalizerTom",[IsTableOfMarks,IsPosInt]);
DeclareAttribute("NormalizersTom",IsTableOfMarks);
DeclareOperation("ContainedTom",[IsTableOfMarks,IsPosInt,IsPosInt]);
DeclareOperation("ContainingTom",[IsTableOfMarks,IsPosInt,IsPosInt]);
DeclareAttribute("CyclicExtensionsTom",IsTableOfMarks);
DeclareOperation("CyclicExtensionsTom",[IsTableOfMarks,IsPosInt]);
DeclareOperation("CyclicExtensionsTom",[IsTableOfMarks,IsList]);
DeclareAttribute("ComputedCyclicExtensionsTom",IsTableOfMarks,"mutable");
DeclareOperation("CyclicExtensionsTomOp",[IsTableOfMarks,IsPosInt]);
DeclareOperation("CyclicExtensionsTomOp",[IsTableOfMarks,IsList]);
DeclareOperation("DecomposedFixedPointVector",[IsTableOfMarks,IsList]);
DeclareOperation("EulerianFunctionByTom",[IsTableOfMarks,IsPosInt]);
DeclareOperation("EulerianFunctionByTom",[IsTableOfMarks,IsPosInt,IsPosInt]);
DeclareOperation("IntersectionsTom",[IsTableOfMarks,IsPosInt,IsPosInt]);
DeclareOperation("FactorGroupTom",[IsTableOfMarks,IsPosInt]);
DeclareAttribute("MaximalSubgroupsTom",IsTableOfMarks);
DeclareOperation("MaximalSubgroupsTom",[IsTableOfMarks,IsPosInt]);
DeclareOperation("MinimalSupergroupsTom",[IsTableOfMarks,IsPosInt]);
DeclareAttribute("GeneratorsSubgroupsTom",IsTableOfMarks);
DeclareAttribute("StraightLineProgramsTom",IsTableOfMarks);
DeclareAttribute("StandardGeneratorsInfo",IsTableOfMarks);
DeclareFilter("IsTableOfMarksWithGens");
InstallTrueMethod(IsTableOfMarksWithGens,IsTableOfMarks and HasStraightLineProgramsTom);
InstallTrueMethod(IsTableOfMarksWithGens,IsTableOfMarks and HasGeneratorsSubgroupsTom);
DeclareOperation("RepresentativeTom",[IsTableOfMarks,IsPosInt]);
DeclareOperation("RepresentativeTomByGenerators",[IsTableOfMarks and HasStraightLineProgramsTom,IsPosInt,IsHomogeneousList]);
DeclareOperation("RepresentativeTomByGeneratorsNC",[IsTableOfMarks and HasStraightLineProgramsTom,IsPosInt,IsHomogeneousList]);
DeclareOperation("FusionCharTableTom",[IsOrdinaryTable,IsTableOfMarks]);
DeclareOperation("PossibleFusionsCharTableTom",[IsOrdinaryTable,IsTableOfMarks]);
DeclareOperation("PossibleFusionsCharTableTom",[IsOrdinaryTable,IsTableOfMarks,IsRecord]);
DeclareOperation("PermCharsTom",[IsList,IsTableOfMarks]);
DeclareOperation("PermCharsTom",[IsOrdinaryTable,IsTableOfMarks]);
DeclareOperation("TableOfMarksCyclic",[IsPosInt]);
DeclareOperation("TableOfMarksDihedral",[IsPosInt]);
DeclareOperation("TableOfMarksFrobenius",[IsPosInt,IsPosInt]);
BindGlobal("TableOfMarksComponents",["Identifier",Identifier,"SubsTom",SubsTom,"MarksTom",MarksTom,"NrSubsTom",NrSubsTom,"OrdersTom",OrdersTom,"NormalizersTom",NormalizersTom,"DerivedSubgroupsTomUnique",DerivedSubgroupsTomUnique,"UnderlyingGroup",UnderlyingGroup,"StraightLineProgramsTom",StraightLineProgramsTom,"GeneratorsSubgroupsTom",GeneratorsSubgroupsTom,"StandardGeneratorsInfo",StandardGeneratorsInfo,"PermutationTom",PermutationTom,"ClassNamesTom",ClassNamesTom,]);
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/tom.gd"

#F  file="lib/ctbl.gi" crc=-84412597
RANK_FILTER_LIST  := [ 29419057, 21, 8193, 2, 40060802, 3, 29419057, 21, 
  8193, 2, 40060802, 3, 4097, 1, 40060802, 3, 40060802, 3, 4097, 1, 40060802, 
  3, 7665940, 19, 53657149, 1, 53657149, 1, 53657149, 1, 26132143, 27, 
  29419057, 21, 29419057, 21, 30666573, 21, 29419057, 21, 7665940, 19, 
  26755727, 2, 29418502, 223, 26755727, 2, 29419057, 21, 29419057, 21, 
  29419057, 21, 30666573, 21, 29419057, 21, 7665940, 19, 66671912, 3, 
  49963237, 4, 66671912, 3, 29419057, 21, 7665940, 19, 29419057, 21, 
  29419057, 21, 30666573, 21, 59194986, 22, 30666573, 21, 29419057, 21, 
  7665940, 19, 40060802, 3, 66671912, 3, 29419057, 21, 40060802, 3, 40060802, 
  3, 40060802, 3, 40060802, 3, 40060802, 3, 40060802, 3, 49963237, 4, 
  40060802, 3, 40060802, 3, 40060802, 3, 40060802, 3, 40060802, 3, 40060802, 
  3, 49963237, 4, 66671912, 3, 66239731, 2, 11713434, 2, 59194986, 22, 
  36658162, 4, 66239731, 2, 59194986, 22, 66671912, 3, 63559584, 4, 53657149, 
  1, 66671912, 3, 9902436, 4, 11713434, 2, 63559584, 4, 66671912, 3, 9902436, 
  4, 66239731, 2, 63559584, 4, 26755727, 2, 66671912, 3, 53657149, 1, 
  53657149, 1, 67108760, 5, 53657149, 1, 53657149, 1, 17, 18, 66671912, 3, 
  40060802, 3, 40060802, 3, 40060802, 3, 40060802, 3, 7665940, 19, 40060802, 
  3, 40060802, 3, 40060802, 3, 26132143, 27, 40060802, 3, 40060802, 3, 
  40060802, 3, 40060802, 3, 40060802, 3, 40060802, 3, 40060802, 3, 40060802, 
  3, 26156719, 27, 40060802, 3, 66671912, 3, 38866328, 24, 26755727, 2, 
  26755727, 2, 26755727, 2, 7665940, 19, 26755727, 2, 40060802, 3, 7665940, 
  19, 40060802, 3, 7665940, 19, 40060802, 3, 66671912, 3, 66671912, 3, 
  66671912, 3, 7665940, 19, 40060802, 3, 66671912, 3, 40060802, 3, 30666573, 
  21, 63325992, 4, 30666573, 21, 40060802, 3, 7665940, 19, 40060802, 3, 17, 
  18, 40060802, 3, 26755727, 2, 7665940, 19, 26755727, 2, 32769, 4, 7665940, 
  19, 40060802, 3, 32769, 4, 7665940, 19, 66671912, 3, 32769, 4, 7665940, 19, 
  26755727, 2, 40060802, 3, 7665940, 19, 7665940, 19, 7665940, 19, 29419057, 
  21, 29419057, 21, 17, 18, 40060802, 3, 7665940, 19, 67108760, 5, 67108760, 
  5, 1, 0, 67108760, 5, 1, 0, 1, 0, 29419057, 21, 7665940, 19, 40060802, 3, 
  7665940, 19, 40060802, 3, 7665940, 19, 40060802, 3, 40060802, 3, 66671912, 
  3, 40060802, 3, 66671912, 3, 53657149, 1, 53657149, 1, 8193, 2, 53657149, 
  1, 4097, 1, 40060802, 3, 40060802, 3, 66671912, 3, 40060802, 3, 40060802, 
  3, 66671912, 3, 66671912, 3, 66671912, 3, 40060802, 3, 26132143, 27, 
  40060802, 3, 40060802, 3, 26132143, 27, 40060802, 3, 26132143, 27, 7665940, 
  19, 66671912, 3, 66671912, 3, 26132143, 27, 7665940, 19, 66671912, 3, 
  26132143, 27, 7665940, 19, 40060802, 3, 26755727, 2, 40060802, 3, 513, 8, 
  53657149, 1, 32769, 4, 53657149, 1, 32769, 4, 67108760, 5, 26755727, 2, 
  26755727, 2, 67108760, 5, 40060802, 3, 513, 8, 40060802, 3 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctbl.gi", -84412597 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctbl.gi\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctbl.gi");
elif COM_RESULT = 3  then
Revision.ctbl_gi:="@(#)$Id: ctbl.gi,v 4.100.2.6 2005/12/08 14:03:58 gap Exp $";
InstallGlobalFunction(ConnectGroupAndCharacterTable,COM_FUN(1));
InstallMethod(CompatibleConjugacyClasses,"three argument version, call `CompatibleConjugacyClassesDefault'",[IsGroup,IsList,IsOrdinaryTable],COM_FUN(2));
InstallMethod(CompatibleConjugacyClasses,"four argument version, call `CompatibleConjugacyClassesDefault'",[IsGroup,IsList,IsOrdinaryTable,IsRecord],CompatibleConjugacyClassesDefault);
InstallMethod(CompatibleConjugacyClasses,"one argument version, call `CompatibleConjugacyClassesDefault'",[IsOrdinaryTable],COM_FUN(3));
InstallMethod(CompatibleConjugacyClasses,"two argument version, call `CompatibleConjugacyClassesDefault'",[IsOrdinaryTable,IsRecord],COM_FUN(4));
InstallGlobalFunction(CompatibleConjugacyClassesDefault,COM_FUN(5));
InstallMethod(\mod,"for ord. char. table, and pos. integer (call `BrauerTable')",[IsOrdinaryTable,IsPosInt],BrauerTable);
InstallOtherMethod(\*,"for two nearly character tables (call `CharacterTableDirectProduct')",[IsNearlyCharacterTable,IsNearlyCharacterTable],CharacterTableDirectProduct);
InstallOtherMethod(\/,"for char. table, and positions list (call `CharacterTableFactorGroup')",[IsNearlyCharacterTable,IsList and IsCyclotomicCollection],CharacterTableFactorGroup);
InstallMethod(CharacterDegrees,"for a group (call the two-argument version)",[IsGroup],COM_FUN(6));
InstallMethod(CharacterDegrees,"for a group, and zero",[IsGroup,IsZeroCyc],COM_FUN(7));
InstallMethod(CharacterDegrees,"for a group, and positive integer",[IsGroup,IsPosInt],COM_FUN(8));
InstallMethod(CharacterDegrees,"for a character table",[IsCharacterTable],COM_FUN(9));
AttributeMethodByNiceMonomorphism(CharacterDegrees,[IsGroup]);
InstallMethod(CommutatorLength,"for a character table",[IsCharacterTable],COM_FUN(10));
InstallMethod(CommutatorLength,"for a group",[IsGroup],COM_FUN(11));
InstallMethod(Irr,"for a group (call the two-argument version)",[IsGroup],COM_FUN(12));
InstallMethod(Irr,"partial method for a group, and zero",[IsGroup,IsZeroCyc],SUM_FLAGS,COM_FUN(13));
InstallMethod(Irr,"for a group, and a prime",[IsGroup,IsPosInt],COM_FUN(14));
InstallMethod(Irr,"for a <p>-solvable Brauer table (use the Fong-Swan Theorem)",[IsBrauerTable],COM_FUN(15));
InstallMethod(Irr,"for an ord. char. table with known group (delegate to the group)",[IsOrdinaryTable and HasUnderlyingGroup],COM_FUN(16));
InstallMethod(IBr,"for a Brauer table",[IsBrauerTable],Irr);
InstallMethod(IBr,"for a group, and a prime integer",[IsGroup,IsPosInt],COM_FUN(17));
InstallMethod(LinearCharacters,"for a group (call the two-argument version)",[IsGroup],COM_FUN(18));
InstallMethod(LinearCharacters,"for a group, and zero",[IsGroup,IsZeroCyc],COM_FUN(19));
InstallMethod(LinearCharacters,"for a group with known ordinary table, and zero",[IsGroup and HasOrdinaryCharacterTable,IsZeroCyc],COM_FUN(20));
InstallMethod(LinearCharacters,"for a group, and positive integer",[IsGroup,IsPosInt],COM_FUN(21));
InstallMethod(LinearCharacters,"for an ordinary table",[IsOrdinaryTable],COM_FUN(22));
InstallMethod(LinearCharacters,"for a Brauer table",[IsBrauerTable],COM_FUN(23));
InstallMethod(OrdinaryCharacterTable,"for a group",[IsGroup],COM_FUN(24));
InstallMethod(AbelianInvariants,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(25));
InstallMethod(Exponent,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(26));
InstallMethod(IsAbelian,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(27));
InstallMethod(IsCyclic,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(28));
InstallMethod(IsElementaryAbelian,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(29));
InstallMethod(IsFinite,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(30));
InstallMethod(IsMonomialCharacterTable,"for an ordinary character table with underlying group",[IsOrdinaryTable and HasUnderlyingGroup],COM_FUN(31));
InstallGlobalFunction(CharacterTable_IsNilpotentFactor,COM_FUN(32));
InstallGlobalFunction(CharacterTable_IsNilpotentNormalSubgroup,COM_FUN(33));
InstallMethod(IsNilpotentCharacterTable,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(34));
InstallMethod(IsPerfectCharacterTable,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(35));
InstallMethod(IsSimpleCharacterTable,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(36));
InstallMethod(IsSolvableCharacterTable,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(37));
InstallMethod(IsSporadicSimpleCharacterTable,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(38));
InstallMethod(IsSupersolvableCharacterTable,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(39));
InstallMethod(NrConjugacyClasses,"for an ordinary character table with underlying group",[IsOrdinaryTable and HasUnderlyingGroup],COM_FUN(40));
InstallMethod(NrConjugacyClasses,"for a Brauer character table",[IsBrauerTable],COM_FUN(41));
InstallMethod(NrConjugacyClasses,"for a character table with known centralizer orders",[IsNearlyCharacterTable and HasSizesCentralizers],COM_FUN(42));
InstallMethod(NrConjugacyClasses,"for a character table with known class lengths",[IsNearlyCharacterTable and HasSizesConjugacyClasses],COM_FUN(43));
InstallMethod(NrConjugacyClasses,"for a group with known ordinary character table",[IsGroup and HasOrdinaryCharacterTable],COM_FUN(44));
InstallMethod(Size,"for a character table with underlying group",[IsCharacterTable and HasUnderlyingGroup],COM_FUN(45));
InstallMethod(Size,"for a character table with known centralizer orders",[IsNearlyCharacterTable and HasSizesCentralizers],COM_FUN(46));
InstallMethod(Size,"for a group with known ordinary character table",[IsGroup and HasOrdinaryCharacterTable],COM_FUN(47));
InstallMethod(OrdersClassRepresentatives,"for a Brauer character table (delegate to the ordinary table)",[IsBrauerTable],COM_FUN(48));
InstallMethod(OrdersClassRepresentatives,"for a character table with known group",[IsNearlyCharacterTable and HasUnderlyingGroup],COM_FUN(49));
InstallMethod(OrdersClassRepresentatives,"for a character table, use known power maps",[IsNearlyCharacterTable],COM_FUN(50));
InstallMethod(SizesCentralizers,"for a Brauer character table",[IsBrauerTable],COM_FUN(51));
InstallMethod(SizesCentralizers,"for a character table with known class lengths",[IsNearlyCharacterTable and HasSizesConjugacyClasses],RankFilter(HasUnderlyingGroup),COM_FUN(52));
InstallMethod(SizesCentralizers,"for a character table with known group",[IsNearlyCharacterTable and HasUnderlyingGroup],COM_FUN(53));
InstallMethod(SizesConjugacyClasses,"for a Brauer character table",[IsBrauerTable],COM_FUN(54));
InstallMethod(SizesConjugacyClasses,"for a character table with known centralizer sizes",[IsNearlyCharacterTable and HasSizesCentralizers],RankFilter(HasUnderlyingGroup),COM_FUN(55));
InstallMethod(SizesConjugacyClasses,"for a character table with known group",[IsNearlyCharacterTable and HasUnderlyingGroup],COM_FUN(56));
InstallMethod(AutomorphismsOfTable,"for a character table",[IsCharacterTable],COM_FUN(57));
InstallMethod(AutomorphismsOfTable,"for a Brauer table in the case of good reduction",[IsBrauerTable],COM_FUN(58));
InstallMethod(ClassNames,[IsNearlyCharacterTable],COM_FUN(59));
InstallMethod(ClassNames,[IsNearlyCharacterTable,IsString],COM_FUN(60));
InstallMethod(CharacterNames,[IsNearlyCharacterTable],COM_FUN(61));
InstallMethod(\.,"for class names of a nearly character table",[IsNearlyCharacterTable,IsInt],COM_FUN(62));
InstallMethod(ClassParameters,"for a Brauer table (if the ordinary table knows class parameters)",[IsBrauerTable],COM_FUN(63));
InstallMethod(ClassPositionsOfNormalSubgroups,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(64));
InstallMethod(ClassPositionsOfMaximalNormalSubgroups,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(65));
InstallMethod(ClassPositionsOfMinimalNormalSubgroups,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(66));
InstallMethod(ClassPositionsOfAgemo,"for an ordinary table",[IsOrdinaryTable,IsPosInt],COM_FUN(67));
InstallMethod(ClassPositionsOfCentre,"for an ordinary table",[IsOrdinaryTable],COM_FUN(68));
BindGlobal("DirectProductDecompositionsLocal",COM_FUN(69));
InstallMethod(ClassPositionsOfDirectProductDecompositions,"for an ordinary table",[IsOrdinaryTable],COM_FUN(70));
InstallMethod(ClassPositionsOfDirectProductDecompositions,"for an ordinary table, and a list of positive integers",[IsOrdinaryTable,IsList and IsCyclotomicCollection],COM_FUN(71));
InstallMethod(ClassPositionsOfDerivedSubgroup,"for an ordinary table",[IsOrdinaryTable],COM_FUN(72));
InstallMethod(ClassPositionsOfElementaryAbelianSeries,"for an ordinary table",[IsOrdinaryTable],COM_FUN(73));
InstallMethod(ClassPositionsOfFittingSubgroup,"for an ordinary table",[IsOrdinaryTable],COM_FUN(74));
InstallMethod(ClassPositionsOfLowerCentralSeries,"for an ordinary table",[IsOrdinaryTable],COM_FUN(75));
InstallGlobalFunction(CharacterTable_UpperCentralSeriesFactor,COM_FUN(76));
InstallMethod(ClassPositionsOfUpperCentralSeries,"for an ordinary table",[IsOrdinaryTable],COM_FUN(77));
InstallMethod(ClassPositionsOfSolvableResiduum,"for an ordinary table",[IsOrdinaryTable],COM_FUN(78));
InstallMethod(ClassPositionsOfSupersolvableResiduum,"for an ordinary table",[IsOrdinaryTable],COM_FUN(79));
InstallMethod(ClassPositionsOfNormalClosure,"for an ordinary table",[IsOrdinaryTable,IsHomogeneousList and IsCyclotomicCollection],COM_FUN(80));
InstallMethod(Identifier,"for an ordinary table",[IsOrdinaryTable],COM_FUN(81));
InstallMethod(Identifier,"for a Brauer table",[IsBrauerTable],COM_FUN(82));
InstallMethod(InverseClasses,"for a character table with known irreducibles",[IsCharacterTable and HasIrr],COM_FUN(83));
InstallMethod(InverseClasses,"for a character table",[IsCharacterTable],COM_FUN(84));
InstallMethod(RealClasses,"for a character table",[IsCharacterTable],COM_FUN(85));
InstallMethod(ClassOrbit,"for a character table, and a positive integer",[IsCharacterTable,IsPosInt],COM_FUN(86));
InstallMethod(ClassRoots,"for a character table",[IsCharacterTable],COM_FUN(87));
InstallGlobalFunction(SameBlock,COM_FUN(88));
InstallMethod(PrimeBlocks,"for an ordinary table, and a positive integer",[IsOrdinaryTable,IsPosInt],COM_FUN(89));
InstallMethod(PrimeBlocksOp,"for an ordinary table, and a positive integer",[IsOrdinaryTable,IsPosInt],COM_FUN(90));
InstallMethod(ComputedPrimeBlockss,"for an ordinary table",[IsOrdinaryTable],COM_FUN(91));
InstallMethod(BlocksInfo,"generic method for a Brauer character table",[IsBrauerTable],COM_FUN(92));
InstallMethod(DecompositionMatrix,"for a Brauer table",[IsBrauerTable],COM_FUN(93));
InstallMethod(DecompositionMatrix,"for a Brauer table, and a positive integer",[IsBrauerTable,IsPosInt],COM_FUN(94));
InstallGlobalFunction(LaTeXStringDecompositionMatrix,COM_FUN(95));
InstallMethod(IsInternallyConsistent,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(96));
InstallMethod(IsInternallyConsistent,"for a Brauer table",[IsBrauerTable],COM_FUN(97));
InstallMethod(IsPSolvableCharacterTable,"for ord. char. table, and zero (call `IsPSolvableCharacterTableOp')",[IsOrdinaryTable,IsZeroCyc],IsPSolvableCharacterTableOp);
InstallMethod(IsPSolvableCharacterTable,"for ord. char. table knowing `IsSolvableCharacterTable', and zero",[IsOrdinaryTable and HasIsSolvableCharacterTable,IsZeroCyc],COM_FUN(98));
InstallMethod(IsPSolvableCharacterTable,"for ord.char.table, and pos.int. (call `IsPSolvableCharacterTableOp')",[IsOrdinaryTable,IsPosInt],COM_FUN(99));
InstallMethod(IsPSolvableCharacterTableOp,"for an ordinary character table, an an integer",[IsOrdinaryTable,IsInt],COM_FUN(100));
InstallMethod(ComputedIsPSolvableCharacterTables,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(101));
InstallGlobalFunction(IsClassFusionOfNormalSubgroup,COM_FUN(102));
InstallMethod(Indicator,"for a character table, and a positive integer",[IsCharacterTable,IsPosInt],COM_FUN(103));
InstallMethod(Indicator,"for a character table, a homogeneous list, and a positive integer",[IsCharacterTable,IsHomogeneousList,IsPosInt],IndicatorOp);
InstallMethod(IndicatorOp,"for an ord. character table, a hom. list, and a pos. integer",[IsOrdinaryTable,IsHomogeneousList,IsPosInt],COM_FUN(104));
InstallMethod(IndicatorOp,"for a Brauer character table and <n> = 2",[IsBrauerTable,IsHomogeneousList,IsPosInt],COM_FUN(105));
InstallMethod(ComputedIndicators,"for a character table",[IsCharacterTable],COM_FUN(106));
InstallGlobalFunction(NrPolyhedralSubgroups,COM_FUN(107));
InstallMethod(ClassMultiplicationCoefficient,"for an ord. table, and three pos. integers",[IsOrdinaryTable,IsPosInt,IsPosInt,IsPosInt],10,COM_FUN(108));
InstallGlobalFunction(MatClassMultCoeffsCharTable,COM_FUN(109));
InstallGlobalFunction(ClassStructureCharTable,COM_FUN(110));
InstallMethod(CharacterTable,"for a group (delegate to `OrdinaryCharacterTable')",[IsGroup],OrdinaryCharacterTable);
InstallMethod(CharacterTable,"for a group, and a prime integer",[IsGroup,IsInt],COM_FUN(111));
InstallMethod(CharacterTable,"for an ordinary table, and a prime integer",[IsOrdinaryTable,IsPosInt],BrauerTable);
BindGlobal("CharacterTableFromLibrary",COM_FUN(112));
InstallMethod(CharacterTable,"for a string",[IsString],COM_FUN(113));
InstallOtherMethod(CharacterTable,"for a string and an object",[IsString,IsObject],COM_FUN(114));
InstallOtherMethod(CharacterTable,"for a string and two objects",[IsString,IsObject,IsObject],COM_FUN(115));
InstallMethod(BrauerTable,"for a group, and a prime (delegate to the ord. table of the group)",[IsGroup,IsPosInt],COM_FUN(116));
InstallMethod(BrauerTable,"for an ordinary table, and a prime",[IsOrdinaryTable,IsPosInt],COM_FUN(117));
InstallMethod(BrauerTableOp,"for ordinary character table, and positive integer",[IsOrdinaryTable,IsPosInt],COM_FUN(118));
InstallMethod(ComputedBrauerTables,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(119));
InstallGlobalFunction(CharacterTableRegular,COM_FUN(120));
InstallGlobalFunction(ConvertToCharacterTableNC,COM_FUN(121));
InstallGlobalFunction(ConvertToCharacterTable,COM_FUN(122));
InstallGlobalFunction(ConvertToLibraryCharacterTableNC,COM_FUN(123));
InstallMethod(ViewObj,"for an ordinary table",[IsOrdinaryTable],COM_FUN(124));
InstallMethod(ViewObj,"for a Brauer table",[IsBrauerTable],COM_FUN(125));
InstallMethod(PrintObj,"for an ordinary table",[IsOrdinaryTable],COM_FUN(126));
InstallMethod(PrintObj,"for a Brauer table",[IsBrauerTable],COM_FUN(127));
BindGlobal("CharacterTableDisplayStringEntryDefault",COM_FUN(128));
BindGlobal("CharacterTableDisplayStringEntryDataDefault",COM_FUN(129));
BindGlobal("CharacterTableDisplayLegendDefault",COM_FUN(130));
BindGlobal("CharacterTableDisplayPrintLegendDefault",COM_FUN(131));
CambridgeMaps:="dummy";
BindGlobal("CharacterTableDisplayDefault",COM_FUN(132));
Unbind(CambridgeMaps);
InstallValue(CharacterTableDisplayDefaults,rec(Global:=rec(letter:="X",centralizers:=true,Display:=CharacterTableDisplayDefault,StringEntry:=CharacterTableDisplayStringEntryDefault,StringEntryData:=CharacterTableDisplayStringEntryDataDefault,Legend:=CharacterTableDisplayLegendDefault,)));
InstallMethod(Display,"for a nearly character table",[IsNearlyCharacterTable],COM_FUN(133));
InstallOtherMethod(Display,"for a nearly character table, and a list",[IsNearlyCharacterTable,IsList],COM_FUN(134));
InstallOtherMethod(Display,"for a nearly character table, and a record",[IsNearlyCharacterTable,IsRecord],COM_FUN(135));
InstallGlobalFunction(PrintCharacterTable,COM_FUN(136));
InstallMethod(CharacterTableDirectProduct,"for two ordinary character tables",IsIdenticalObj,[IsOrdinaryTable,IsOrdinaryTable],COM_FUN(137));
InstallMethod(CharacterTableDirectProduct,"for one Brauer table, and one ordinary character table",IsIdenticalObj,[IsBrauerTable,IsOrdinaryTable],COM_FUN(138));
InstallMethod(CharacterTableDirectProduct,"for one ordinary and one Brauer character table",IsIdenticalObj,[IsOrdinaryTable,IsBrauerTable],COM_FUN(139));
InstallMethod(CharacterTableDirectProduct,"for two Brauer character tables",IsIdenticalObj,[IsBrauerTable,IsBrauerTable],COM_FUN(140));
InstallGlobalFunction(CharacterTableHeadOfFactorGroupByFusion,COM_FUN(141));
InstallMethod(CharacterTableFactorGroup,"for an ordinary table, and a list of class positions",[IsOrdinaryTable,IsList and IsCyclotomicCollection],COM_FUN(142));
InstallMethod(CharacterTableIsoclinic,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(143));
InstallMethod(CharacterTableIsoclinic,"for an ordinary character table, and a list of classes",[IsOrdinaryTable,IsList and IsCyclotomicCollection],COM_FUN(144));
InstallMethod(CharacterTableIsoclinic,"for an ordinary character table, a list of classes, and a class pos.",[IsOrdinaryTable,IsList and IsCyclotomicCollection,IsPosInt],COM_FUN(145));
InstallMethod(CharacterTableIsoclinic,"for a Brauer table",[IsBrauerTable],COM_FUN(146));
InstallMethod(CharacterTableIsoclinic,"for a Brauer table, a list of classes, and a class pos.",[IsBrauerTable,IsList and IsCyclotomicCollection,IsPosInt],COM_FUN(147));
InstallOtherMethod(CharacterTableIsoclinic,"for a Brauer table, a list of classes, a class pos., an ord. table",[IsBrauerTable,IsList and IsCyclotomicCollection,IsPosInt,IsOrdinaryTable],COM_FUN(148));
InstallGlobalFunction(CharacterTableOfNormalSubgroup,COM_FUN(149));
InstallGlobalFunction(PermutationToSortCharacters,COM_FUN(150));
InstallMethod(CharacterTableWithSortedCharacters,"for a character table",[IsCharacterTable],COM_FUN(151));
InstallMethod(CharacterTableWithSortedCharacters,"for an ordinary character table, and a permutation",[IsOrdinaryTable,IsPerm],COM_FUN(152));
InstallMethod(SortedCharacters,"for a character table, and a homogeneous list",[IsNearlyCharacterTable,IsHomogeneousList],COM_FUN(153));
InstallMethod(SortedCharacters,"for a character table, a homogeneous list, and a string",[IsNearlyCharacterTable,IsHomogeneousList,IsString],COM_FUN(154));
InstallGlobalFunction(PermutationToSortClasses,COM_FUN(155));
InstallMethod(CharacterTableWithSortedClasses,"for a character table",[IsCharacterTable],COM_FUN(156));
InstallMethod(CharacterTableWithSortedClasses,"for a character table, and string",[IsCharacterTable,IsString],COM_FUN(157));
InstallMethod(CharacterTableWithSortedClasses,"for an ordinary character table, and a permutation",[IsOrdinaryTable,IsPerm],COM_FUN(158));
InstallGlobalFunction(SortedCharacterTable,COM_FUN(159));
InstallMethod(NormalSubgroupClassesInfo,"default method, initialization",[IsOrdinaryTable],COM_FUN(160));
InstallGlobalFunction(ClassPositionsOfNormalSubgroup,COM_FUN(161));
InstallGlobalFunction(NormalSubgroupClasses,COM_FUN(162));
InstallGlobalFunction(FactorGroupNormalSubgroupClasses,COM_FUN(163));
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctbl.gi"

#F  file="lib/ctblfuns.gi" crc=-52644449
RANK_FILTER_LIST  := [ 16385, 3, 52428456, 31, 7665940, 19, 52428456, 31, 
  52428456, 31, 7665940, 19, 52428456, 31, 65, 16, 17, 18, 52428456, 31, 
  52428456, 31, 52428456, 31, 52428456, 31, 52428456, 31, 8193, 2, 8193, 2, 
  52428456, 31, 52428456, 31, 52428456, 31, 52428456, 31, 8193, 2, 52428456, 
  31, 8193, 2, 52428456, 31, 1, 0, 1, 0, 52428456, 31, 21254332, 33, 
  21254332, 33, 44634925, 35, 44634925, 35, 52428456, 31, 21254332, 33, 
  52428456, 31, 65, 16, 52428456, 31, 17, 18, 60901476, 33, 7665940, 19, 
  17173190, 35, 52428456, 31, 65, 16, 60901476, 33, 17, 18, 17173190, 35, 
  7665940, 19, 52428456, 31, 52428456, 31, 52428456, 31, 60901476, 33, 
  60901476, 33, 17173190, 35, 17173190, 35, 52428456, 31, 62914276, 5, 
  62914276, 5, 52428456, 31, 52428456, 31, 52428456, 31, 52428456, 31, 
  7665940, 19, 52428456, 31, 65767820, 5, 52428456, 31, 63580232, 10, 
  52428456, 31, 29419057, 21, 52428456, 31, 53657149, 1, 65767820, 5, 
  52428456, 31, 52428456, 31, 52428456, 31, 40060802, 3, 40060802, 3, 32769, 
  4, 40060802, 3, 32769, 4, 32769, 4, 11443527, 36, 11443527, 36, 17, 18, 
  52428456, 31, 513, 8, 52428456, 31, 21254332, 33, 44634925, 35, 52428456, 
  31, 21254332, 33, 44634925, 35, 52428456, 31, 52428456, 31, 4097, 1, 
  53657149, 1, 16385, 3, 29419057, 21, 16385, 3, 53657149, 1, 16385, 3, 
  29419057, 21, 16385, 3, 53657149, 1, 16385, 3, 29419057, 21, 16385, 3, 
  53657149, 1, 29419057, 21, 62973024, 33, 11895617, 31, 63580652, 7, 
  29419057, 21, 8126465, 2, 5, 1, 29419057, 21, 29419057, 21, 21254332, 33, 
  52428456, 31, 40060802, 3, 32769, 4, 66671912, 3, 32769, 4, 52428456, 31, 
  40060802, 3, 32769, 4, 52428456, 31, 40060802, 3, 32769, 4, 66671912, 3, 
  32769, 4, 52428456, 31, 52428456, 31, 26755727, 2, 65077940, 12, 65077940, 
  12, 32769, 4, 32769, 4, 32769, 4, 40060802, 3, 32769, 4, 32769, 4, 
  40060802, 3, 32769, 4, 52428456, 31, 40060802, 3, 32769, 4, 52428456, 31, 
  40060802, 3, 32769, 4, 32769, 4, 52428456, 31, 44634925, 35, 40060802, 3, 
  32769, 4, 66671912, 3, 32769, 4, 52428456, 31, 29419057, 21, 52428456, 31, 
  40060802, 3, 29419057, 21, 32769, 4, 52428456, 31, 40060802, 3, 32769, 4, 
  32769, 4, 52428456, 31, 7665940, 19, 40060802, 3, 32769, 4, 7665940, 19, 
  52428456, 31, 40060802, 3, 32769, 4, 52428456, 31, 40060802, 3, 32769, 4, 
  52428456, 31, 40060802, 3, 32769, 4, 52428456, 31, 26755727, 2, 32769, 4, 
  52428456, 31, 7665940, 19, 26755727, 2, 32769, 4, 7665940, 19, 32769, 4, 
  32769, 4, 52428456, 31, 29419057, 21, 53657149, 1, 32769, 4, 29419057, 21, 
  52428456, 31, 63580652, 7, 53657149, 1, 32769, 4, 63580652, 7, 52428456, 
  31, 53657149, 1, 53657149, 1, 32769, 4, 53657149, 1, 8193, 2, 29419057, 21, 
  8193, 2, 63580652, 7, 8193, 2, 26755727, 2, 26755727, 2, 8193, 2, 29419057, 
  21, 26755727, 2, 8193, 2, 63580652, 7, 26755727, 2, 8193, 2, 26755727, 2, 
  53657149, 1, 53657149, 1, 32769, 4, 53657149, 1, 53657149, 1, 58412696, 30, 
  1, 0, 8193, 2, 26132143, 27, 52428456, 31, 29419057, 21, 26755727, 2, 
  32769, 4, 29419057, 21, 52428456, 31, 2214405, 17, 26755727, 2, 52428456, 
  31, 2214405, 17, 52428456, 31, 53657149, 1, 26755727, 2, 52428456, 31, 
  53657149, 1, 32769, 4, 29419057, 21, 32769, 4, 2214405, 17, 32769, 4, 
  53657149, 1, 52428456, 31, 29419057, 21, 26755727, 2, 32769, 4, 29419057, 
  21, 52428456, 31, 53657149, 1, 26755727, 2, 32769, 4, 53657149, 1, 
  52428456, 31, 63580652, 7, 26755727, 2, 32769, 4, 63580652, 7, 8193, 2, 
  29419057, 21, 8193, 2, 63580652, 7, 8193, 2, 26755727, 2, 26755727, 2, 
  32769, 4, 29419057, 21, 26755727, 2, 32769, 4, 53657149, 1, 26755727, 2, 
  32769, 4, 63580652, 7, 52428456, 31, 29419057, 21, 26755727, 2, 32769, 4, 
  29419057, 21, 52428456, 31, 2214405, 17, 26755727, 2, 32769, 4, 2214405, 
  17, 52428456, 31, 53657149, 1, 26755727, 2, 32769, 4, 53657149, 1, 32769, 
  4, 29419057, 21, 32769, 4, 63580652, 7, 32769, 4, 26755727, 2, 53657149, 1, 
  53657149, 1, 32769, 4, 53657149, 1, 53657149, 1, 32769, 4, 67108760, 5, 
  53657149, 1, 53657149, 1, 32769, 4, 26156719, 27, 40060802, 3, 40060802, 3, 
  67108760, 5, 40060802, 3, 32769, 4, 40060802, 3, 32769, 4, 67108760, 5, 
  32769, 4, 32769, 4, 32769, 4, 40060802, 3, 32769, 4, 32769, 4, 40060802, 3, 
  32769, 4, 32769, 4, 32769, 4, 40060802, 3, 32769, 4, 32769, 4, 32769, 4, 
  7665940, 19, 32769, 4, 40060802, 3, 26755727, 2, 32769, 4, 7665940, 19, 
  26755727, 2, 32769, 4, 40060802, 3, 26755727, 2, 32769, 4, 4097, 1, 
  58412696, 30, 32769, 4, 32769, 4, 52428456, 31, 41951068, 17, 52428456, 31, 
  5786567, 27, 5786567, 27, 1, 0, 5786567, 27, 1, 0, 16776722, 23, 52428456, 
  31, 52428456, 31, 5786567, 27, 32769, 4, 32769, 4 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblfuns.gi", -52644449 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblfuns.gi\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblfuns.gi");
elif COM_RESULT = 3  then
Revision.ctblfuns_gi:="@(#)$Id: ctblfuns.gi,v 4.75.2.5 2007/08/29 11:29:44 gap Exp $";
InstallGlobalFunction(CharacterString,COM_FUN(1));
InstallOtherMethod(ValuesOfClassFunction,"for a dense list",[IsDenseList],COM_FUN(2));
InstallMethod(\[\],"for class function and positive integer",[IsClassFunction,IsPosInt],COM_FUN(3));
InstallMethod(Length,"for class function",[IsClassFunction],COM_FUN(4));
InstallMethod(IsBound\[\],"for class function and positive integer",[IsClassFunction,IsPosInt],COM_FUN(5));
InstallMethod(Position,"for class function, cyclotomic, and nonnegative integer",[IsClassFunction,IsCyc,IsInt],COM_FUN(6));
InstallMethod(ShallowCopy,"for class function",[IsClassFunction],COM_FUN(7));
InstallOtherMethod(UnderlyingGroup,"for a class function",[IsClassFunction],COM_FUN(8));
InstallMethod(\=,"for two class functions",[IsClassFunction,IsClassFunction],COM_FUN(9));
InstallMethod(\=,"for a class function and a list",[IsClassFunction,IsList],COM_FUN(10));
InstallMethod(\=,"for a list and a class function",[IsList,IsClassFunction],COM_FUN(11));
InstallMethod(\<,"for two class functions",[IsClassFunction,IsClassFunction],COM_FUN(12));
InstallMethod(\<,"for a class function and a list",[IsClassFunction,IsList],COM_FUN(13));
InstallMethod(\<,"for a list and a class function",[IsClassFunction,IsList],COM_FUN(14));
InstallOtherMethod(\+,"for class function, and object",[IsClassFunction,IsObject],COM_FUN(15));
InstallOtherMethod(\+,"for object, and class function",[IsObject,IsClassFunction],COM_FUN(16));
InstallMethod(\+,"for two virtual characters",IsIdenticalObj,[IsClassFunction and IsVirtualCharacter,IsClassFunction and IsVirtualCharacter],COM_FUN(17));
InstallMethod(\+,"for two characters",IsIdenticalObj,[IsClassFunction and IsCharacter,IsClassFunction and IsCharacter],COM_FUN(18));
InstallMethod(AdditiveInverseOp,"for a class function",[IsClassFunction],COM_FUN(19));
InstallMethod(AdditiveInverseOp,"for a virtual character",[IsClassFunction and IsVirtualCharacter],COM_FUN(20));
InstallMethod(ZeroOp,"for a class function",[IsClassFunction],COM_FUN(21));
InstallMethod(\*,"for cyclotomic, and class function",[IsCyc,IsClassFunction],COM_FUN(22));
InstallMethod(\*,"for integer, and virtual character",[IsInt,IsVirtualCharacter],COM_FUN(23));
InstallMethod(\*,"for positive integer, and character",[IsPosInt,IsCharacter],COM_FUN(24));
InstallMethod(\*,"for class function, and cyclotomic",[IsClassFunction,IsCyc],COM_FUN(25));
InstallMethod(\*,"for virtual character, and integer",[IsVirtualCharacter,IsInt],COM_FUN(26));
InstallMethod(\*,"for character, and positive integer",[IsCharacter,IsPosInt],COM_FUN(27));
InstallMethod(OneOp,"for class function",[IsClassFunction],COM_FUN(28));
InstallMethod(\*,"for two class functions",[IsClassFunction,IsClassFunction],COM_FUN(29));
InstallMethod(\*,"for two virtual characters",IsIdenticalObj,[IsVirtualCharacter,IsVirtualCharacter],COM_FUN(30));
InstallMethod(\*,"for two characters",IsIdenticalObj,[IsCharacter,IsCharacter],COM_FUN(31));
InstallOtherMethod(\*,"for class function, and list in `IsListDefault'",[IsClassFunction,IsListDefault],COM_FUN(32));
InstallOtherMethod(\*,"for list in `IsListDefault', and class function",[IsListDefault,IsClassFunction],COM_FUN(33));
InstallMethod(Order,"for a class function",[IsClassFunction],COM_FUN(34));
InstallMethod(InverseOp,"for a class function",[IsClassFunction],COM_FUN(35));
InstallOtherMethod(\^,"for class function and positive integer (pointwise powering)",[IsClassFunction,IsPosInt],COM_FUN(36));
InstallMethod(\^,"for class function and group element",[IsClassFunction,IsMultiplicativeElementWithInverse],COM_FUN(37));
InstallOtherMethod(\^,"for class function and Galois automorphism",[IsClassFunction,IsGeneralMapping and IsANFAutomorphismRep],COM_FUN(38));
InstallOtherMethod(\^,"for class function and group",[IsClassFunction,IsGroup],InducedClassFunction);
InstallOtherMethod(\^,"for class function and nearly character table",[IsClassFunction,IsNearlyCharacterTable],InducedClassFunction);
InstallOtherMethod(\^,[IsMultiplicativeElementWithInverse,IsClassFunction],COM_FUN(39));
InstallOtherMethod(\^,"for two class functions (conjugation, trivial action)",[IsClassFunction,IsClassFunction],COM_FUN(40));
InstallMethod(GlobalPartitionOfClasses,"for an ordinary character table",[IsOrdinaryTable],COM_FUN(41));
InstallMethod(CorrespondingPermutations,"for character table and list of group elements",[IsOrdinaryTable,IsHomogeneousList],COM_FUN(42));
InstallOtherMethod(CorrespondingPermutations,"for a char. table, a hom. list, and a list of group elements",[IsOrdinaryTable,IsHomogeneousList,IsHomogeneousList],COM_FUN(43));
InstallMethod(ComplexConjugate,"for a class function",[IsClassFunction and IsCyclotomicCollection],COM_FUN(44));
InstallMethod(GaloisCyc,"for a class function, and an integer",[IsClassFunction and IsCyclotomicCollection,IsInt],COM_FUN(45));
InstallMethod(Permuted,"for a class function, and a permutation",[IsClassFunction,IsPerm],COM_FUN(46));
InstallMethod(ViewObj,"for a class function",[IsClassFunction],COM_FUN(47));
InstallMethod(ViewObj,"for a virtual character",[IsClassFunction and IsVirtualCharacter],COM_FUN(48));
InstallMethod(ViewObj,"for a character",[IsClassFunction and IsCharacter],COM_FUN(49));
InstallMethod(PrintObj,"for a class function",[IsClassFunction],COM_FUN(50));
InstallMethod(PrintObj,"for a virtual character",[IsClassFunction and IsVirtualCharacter],COM_FUN(51));
InstallMethod(PrintObj,"for a character",[IsClassFunction and IsCharacter],COM_FUN(52));
InstallMethod(Display,"for a class function",[IsClassFunction],COM_FUN(53));
InstallOtherMethod(Display,"for a class function, and a record",[IsClassFunction,IsRecord],COM_FUN(54));
InstallMethod(ClassFunction,"for nearly character table, and dense list",[IsNearlyCharacterTable,IsDenseList],COM_FUN(55));
InstallMethod(ClassFunction,"for a group, and a dense list",[IsGroup,IsDenseList],COM_FUN(56));
InstallMethod(VirtualCharacter,"for nearly character table, and dense list",[IsNearlyCharacterTable,IsDenseList],COM_FUN(57));
InstallMethod(VirtualCharacter,"for a group, and a dense list",[IsGroup,IsDenseList],COM_FUN(58));
InstallMethod(Character,"for nearly character table, and dense list",[IsNearlyCharacterTable,IsDenseList],COM_FUN(59));
InstallMethod(Character,"for a group, and a dense list",[IsGroup,IsDenseList],COM_FUN(60));
InstallGlobalFunction(ClassFunctionSameType,COM_FUN(61));
InstallMethod(TrivialCharacter,"for a character table",[IsNearlyCharacterTable],COM_FUN(62));
InstallMethod(TrivialCharacter,"for a group (delegate to the table)",[IsGroup],COM_FUN(63));
InstallMethod(NaturalCharacter,"for a permutation group",[IsGroup and IsPermCollection],COM_FUN(64));
InstallMethod(NaturalCharacter,"for a matrix group in characteristic zero",[IsGroup and IsRingElementCollCollColl],COM_FUN(65));
InstallMethod(NaturalCharacter,"for a group general mapping",[IsGeneralMapping],COM_FUN(66));
InstallMethod(PermutationCharacter,"group action on domain",[IsGroup,IsCollection,IsFunction],COM_FUN(67));
InstallMethod(PermutationCharacter,"for two groups (use double cosets)",IsIdenticalObj,[IsGroup,IsGroup],COM_FUN(68));
InstallMethod(IsCharacter,"for a virtual character",[IsClassFunction and IsVirtualCharacter],COM_FUN(69));
InstallMethod(IsCharacter,"for a class function",[IsClassFunction],COM_FUN(70));
InstallMethod(IsCharacter,"for an ordinary character table, and a homogeneous list",[IsOrdinaryTable,IsHomogeneousList],COM_FUN(71));
InstallMethod(IsCharacter,"for a Brauer table, and a homogeneous list",[IsBrauerTable,IsHomogeneousList],COM_FUN(72));
InstallMethod(IsVirtualCharacter,"for a class function",[IsClassFunction],COM_FUN(73));
InstallMethod(IsVirtualCharacter,"for an ordinary character table, and a homogeneous list",[IsOrdinaryTable,IsHomogeneousList],COM_FUN(74));
InstallMethod(IsIrreducibleCharacter,"for a class function",[IsClassFunction],COM_FUN(75));
InstallMethod(IsIrreducibleCharacter,"for an ordinary character table, and a homogeneous list",[IsOrdinaryTable,IsHomogeneousList],COM_FUN(76));
InstallMethod(IsIrreducibleCharacter,"for a Brauer table, and a homogeneous list",[IsBrauerTable,IsHomogeneousList],COM_FUN(77));
InstallMethod(ScalarProduct,"for two class functions",[IsClassFunction,IsClassFunction],COM_FUN(78));
InstallMethod(ScalarProduct,"for ordinary table and two homogeneous lists",[IsCharacterTable,IsRowVector,IsRowVector],COM_FUN(79));
InstallMethod(MatScalarProducts,"for two homogeneous lists",[IsHomogeneousList,IsHomogeneousList],COM_FUN(80));
InstallMethod(MatScalarProducts,"for a homogeneous list",[IsHomogeneousList],COM_FUN(81));
InstallMethod(MatScalarProducts,"for an ordinary table, and two homogeneous lists",[IsOrdinaryTable,IsHomogeneousList,IsHomogeneousList],COM_FUN(82));
InstallMethod(MatScalarProducts,"for an ordinary table, and a homogeneous list",[IsOrdinaryTable,IsHomogeneousList],COM_FUN(83));
InstallOtherMethod(Norm,"for a class function",[IsClassFunction],COM_FUN(84));
InstallOtherMethod(Norm,"for an ordinary character table and a homogeneous list",[IsOrdinaryTable,IsHomogeneousList],COM_FUN(85));
InstallMethod(CentreOfCharacter,"for a class function",[IsClassFunction],COM_FUN(86));
InstallMethod(CentreOfCharacter,"for an ordinary table, and a homogeneous list ",[IsOrdinaryTable,IsHomogeneousList],COM_FUN(87));
InstallMethod(ClassPositionsOfCentre,"for a homogeneous list",[IsHomogeneousList],COM_FUN(88));
InstallMethod(ConstituentsOfCharacter,[IsClassFunction],COM_FUN(89));
InstallMethod(ConstituentsOfCharacter,"for a character",[IsClassFunction and IsCharacter],COM_FUN(90));
InstallMethod(ConstituentsOfCharacter,"for an ordinary table, and a homogeneous list",[IsOrdinaryTable,IsHomogeneousList],COM_FUN(91));
InstallMethod(ConstituentsOfCharacter,"for a Brauer table, and a homogeneous list",[IsBrauerTable,IsHomogeneousList],COM_FUN(92));
InstallMethod(DegreeOfCharacter,"for a class function",[IsClassFunction],COM_FUN(93));
InstallMethod(InertiaSubgroup,"for a group, and a class function",[IsGroup,IsClassFunction],COM_FUN(94));
InstallMethod(InertiaSubgroup,"for an ordinary table, a group, and a homogeneous list",[IsOrdinaryTable,IsGroup,IsHomogeneousList],COM_FUN(95));
InstallMethod(KernelOfCharacter,"for a class function",[IsClassFunction],COM_FUN(96));
InstallMethod(KernelOfCharacter,"for an ordinary table, and a homogeneous list",[IsOrdinaryTable,IsHomogeneousList],COM_FUN(97));
InstallMethod(ClassPositionsOfKernel,"for a homogeneous list",[IsHomogeneousList],COM_FUN(98));
InstallMethod(CycleStructureClass,"for a class function, and a class position",[IsClassFunction,IsPosInt],COM_FUN(99));
InstallMethod(CycleStructureClass,"for an ordinary table, a list, and a class position",[IsOrdinaryTable,IsHomogeneousList,IsPosInt],COM_FUN(100));
InstallMethod(IsTransitive,"for a class function",[IsClassFunction],COM_FUN(101));
InstallMethod(IsTransitive,"for an ordinary table and a homogeneous list",[IsOrdinaryTable,IsHomogeneousList],COM_FUN(102));
InstallMethod(Transitivity,"for a class function",[IsClassFunction],COM_FUN(103));
InstallMethod(Transitivity,"for an ordinary table, and a homogeneous list",[IsOrdinaryTable,IsHomogeneousList],COM_FUN(104));
InstallMethod(CentralCharacter,"for a class function",[IsClassFunction],COM_FUN(105));
InstallMethod(CentralCharacter,"for an ordinary table, and a homogeneous list",[IsOrdinaryTable,IsHomogeneousList],COM_FUN(106));
InstallMethod(DeterminantOfCharacter,"for a class function",[IsClassFunction],COM_FUN(107));
InstallMethod(DeterminantOfCharacter,"for a nearly character table, and a class function",[IsCharacterTable,IsHomogeneousList],COM_FUN(108));
InstallMethod(EigenvaluesChar,"for a class function and a positive integer",[IsClassFunction,IsPosInt],COM_FUN(109));
InstallMethod(EigenvaluesChar,"for a character table and a hom. list, and a pos.",[IsCharacterTable,IsHomogeneousList,IsPosInt],COM_FUN(110));
InstallMethod(Tensored,"method for two homogeneous lists",[IsHomogeneousList,IsHomogeneousList],COM_FUN(111));
InstallMethod(RestrictedClassFunction,"for a class function, and a group",[IsClassFunction,IsGroup],COM_FUN(112));
InstallMethod(RestrictedClassFunction,"for a character table, a homogeneous list, and a group",[IsNearlyCharacterTable,IsHomogeneousList,IsGroup],COM_FUN(113));
InstallMethod(RestrictedClassFunction,"for a class function and a group homomorphism",[IsClassFunction,IsGeneralMapping],COM_FUN(114));
InstallMethod(RestrictedClassFunction,"for a character table, a homogeneous list, and a group homomorphism",[IsNearlyCharacterTable,IsHomogeneousList,IsGeneralMapping],COM_FUN(115));
InstallMethod(RestrictedClassFunction,"for class function and nearly character table",[IsClassFunction,IsNearlyCharacterTable],COM_FUN(116));
InstallMethod(RestrictedClassFunction,"for a character table, a homogeneous list, and a character table",[IsNearlyCharacterTable,IsHomogeneousList,IsNearlyCharacterTable],COM_FUN(117));
InstallMethod(RestrictedClassFunctions,"for list and group",[IsList,IsGroup],COM_FUN(118));
InstallMethod(RestrictedClassFunctions,"for list and group homomorphism",[IsList,IsGeneralMapping],COM_FUN(119));
InstallMethod(RestrictedClassFunctions,"for list and character table",[IsList,IsCharacterTable],COM_FUN(120));
InstallMethod(RestrictedClassFunctions,"for a character table, a list, and a group",[IsCharacterTable,IsList,IsGroup],COM_FUN(121));
InstallMethod(RestrictedClassFunctions,"for a character table, a list, and a group homomorphism",[IsCharacterTable,IsList,IsGeneralMapping],COM_FUN(122));
InstallMethod(RestrictedClassFunctions,"for a character table, a list,  and a character table",[IsCharacterTable,IsList,IsCharacterTable],COM_FUN(123));
InstallMethod(Restricted,[IsNearlyCharacterTable,IsNearlyCharacterTable,IsHomogeneousList],COM_FUN(124));
InstallMethod(Restricted,[IsNearlyCharacterTable,IsNearlyCharacterTable,IsMatrix,IsObject],COM_FUN(125));
InstallMethod(Restricted,[IsList,IsList and IsCyclotomicCollection],COM_FUN(126));
InstallMethod(Restricted,[IsClassFunction,IsGroup],RestrictedClassFunction);
InstallMethod(Restricted,[IsCharacterTable,IsHomogeneousList,IsGroup],COM_FUN(127));
InstallMethod(Restricted,[IsClassFunction,IsGroupHomomorphism],RestrictedClassFunction);
InstallMethod(Restricted,[IsCharacterTable,IsClassFunction,IsGroupHomomorphism],COM_FUN(128));
InstallMethod(Restricted,[IsClassFunction,IsNearlyCharacterTable],RestrictedClassFunction);
InstallMethod(Restricted,[IsCharacterTable,IsClassFunction,IsNearlyCharacterTable],COM_FUN(129));
InstallMethod(Restricted,[IsHomogeneousList,IsGroup],COM_FUN(130));
InstallMethod(Restricted,[IsHomogeneousList,IsGroupHomomorphism],COM_FUN(131));
InstallMethod(Restricted,[IsHomogeneousList,IsNearlyCharacterTable],COM_FUN(132));
BindGlobal("InducedClassFunctionsByFusionMap",COM_FUN(133));
InstallMethod(InducedClassFunction,"for a class function and a group",[IsClassFunction,IsGroup],COM_FUN(134));
InstallMethod(InducedClassFunction,"for a character table, a homogeneous list, and a group",[IsCharacterTable,IsHomogeneousList,IsGroup],COM_FUN(135));
InstallMethod(InducedClassFunction,"for class function and nearly character table",[IsClassFunction,IsNearlyCharacterTable],COM_FUN(136));
InstallMethod(InducedClassFunction,"for character table, homogeneous list, and nearly character table",[IsCharacterTable,IsHomogeneousList,IsNearlyCharacterTable],COM_FUN(137));
InstallMethod(InducedClassFunction,"for a class function and a group homomorphism",[IsClassFunction,IsGeneralMapping],COM_FUN(138));
InstallMethod(InducedClassFunction,"for a character table, a homogeneous list, and a group homomorphism",[IsCharacterTable,IsHomogeneousList,IsGeneralMapping],COM_FUN(139));
InstallMethod(InducedClassFunctions,"for list, and group",[IsList,IsGroup],COM_FUN(140));
InstallMethod(InducedClassFunctions,"for list, and group homomorphism",[IsList,IsGeneralMapping],COM_FUN(141));
InstallMethod(InducedClassFunctions,"for list, and group homomorphism",[IsList,IsCharacterTable],COM_FUN(142));
InstallMethod(InducedClassFunctions,"for a character table, a homogeneous list, and a group",[IsCharacterTable,IsHomogeneousList,IsGroup],COM_FUN(143));
InstallMethod(InducedClassFunctions,"for character table, homogeneous list, and nearly character table",[IsCharacterTable,IsHomogeneousList,IsNearlyCharacterTable],COM_FUN(144));
InstallMethod(InducedClassFunctions,"for a character table, a homogeneous list, and a group homomorphism",[IsCharacterTable,IsHomogeneousList,IsGeneralMapping],COM_FUN(145));
InstallMethod(Induced,[IsClassFunction,IsGroup],InducedClassFunction);
InstallMethod(Induced,[IsCharacterTable,IsHomogeneousList,IsGroup],COM_FUN(146));
InstallMethod(Induced,[IsClassFunction,IsGroupHomomorphism],InducedClassFunction);
InstallMethod(Induced,[IsCharacterTable,IsHomogeneousList,IsGroupHomomorphism],COM_FUN(147));
InstallMethod(Induced,[IsClassFunction,IsNearlyCharacterTable],InducedClassFunction);
InstallMethod(Induced,[IsCharacterTable,IsHomogeneousList,IsNearlyCharacterTable],COM_FUN(148));
InstallMethod(Induced,[IsHomogeneousList,IsGroup],COM_FUN(149));
InstallMethod(Induced,[IsHomogeneousList,IsGeneralMapping],COM_FUN(150));
InstallMethod(Induced,[IsHomogeneousList,IsCharacterTable],COM_FUN(151));
InstallMethod(Induced,"for two nearly character tables, and homog list",[IsNearlyCharacterTable,IsNearlyCharacterTable,IsHomogeneousList],COM_FUN(152));
InstallMethod(Induced,"for two nearly character tables, homog list, and string",[IsNearlyCharacterTable,IsNearlyCharacterTable,IsHomogeneousList,IsString],COM_FUN(153));
InstallMethod(Induced,"for two nearly character tables and two homog. lists",[IsNearlyCharacterTable,IsNearlyCharacterTable,IsHomogeneousList,IsHomogeneousList and IsCyclotomicCollection],InducedClassFunctionsByFusionMap);
InstallMethod(InducedCyclic,"for a character table",[IsOrdinaryTable],COM_FUN(154));
InstallMethod(InducedCyclic,"for a character table and a string",[IsOrdinaryTable,IsString],1,COM_FUN(155));
InstallMethod(InducedCyclic,"for a character table and a hom. list",[IsOrdinaryTable,IsHomogeneousList],COM_FUN(156));
InstallMethod(InducedCyclic,"for a character table, a hom. list, and a string",[IsOrdinaryTable,IsHomogeneousList,IsString],COM_FUN(157));
InstallMethod(ReducedClassFunctions,"for two lists (of class functions)",[IsHomogeneousList,IsHomogeneousList],COM_FUN(158));
InstallMethod(ReducedClassFunctions,"for a list (of class functions)",[IsHomogeneousList],COM_FUN(159));
InstallMethod(ReducedClassFunctions,"for ordinary character table, and two lists (of class functions)",[IsOrdinaryTable,IsHomogeneousList,IsHomogeneousList],COM_FUN(160));
InstallMethod(ReducedClassFunctions,"for ordinary character table, and list of class functions",[IsOrdinaryTable,IsHomogeneousList],COM_FUN(161));
InstallMethod(ReducedCharacters,"for two lists (of characters)",[IsHomogeneousList,IsHomogeneousList],COM_FUN(162));
InstallMethod(ReducedCharacters,"for ordinary character table, and two lists of characters",[IsOrdinaryTable,IsHomogeneousList,IsHomogeneousList],COM_FUN(163));
InstallGlobalFunction(IrreducibleDifferences,COM_FUN(164));
InstallMethod(Symmetrizations,"for homogeneous list (of class functions) and positive integer",[IsHomogeneousList,IsPosInt],COM_FUN(165));
InstallMethod(Symmetrizations,"for homogeneous list (of class functions) and character table",[IsHomogeneousList,IsOrdinaryTable],COM_FUN(166));
InstallMethod(Symmetrizations,"for char. table, homog. list (of class functions), and pos. integer",[IsCharacterTable,IsHomogeneousList,IsPosInt],COM_FUN(167));
InstallMethod(Symmetrizations,"for char. table, homog. list (of class functions), and table of Sn",[IsCharacterTable,IsHomogeneousList,IsOrdinaryTable],COM_FUN(168));
InstallOtherMethod(Symmetrizations,"for char. table, homog. list (of class functions), and record",[IsCharacterTable,IsHomogeneousList,IsRecord],COM_FUN(169));
InstallGlobalFunction(SymmetricParts,COM_FUN(170));
InstallGlobalFunction(AntiSymmetricParts,COM_FUN(171));
InstallGlobalFunction(RefinedSymmetrizations,COM_FUN(172));
InstallGlobalFunction(OrthogonalComponents,COM_FUN(173));
InstallGlobalFunction(SymplecticComponents,COM_FUN(174));
InstallGlobalFunction(FrobeniusCharacterValue,COM_FUN(175));
InstallMethod(BrauerCharacterValue,"for a matrix",[IsMatrix],COM_FUN(176));
InstallFlushableValue(ZEV_DATA,[[],[]]);
InstallGlobalFunction(ZevDataValue,COM_FUN(177));
InstallGlobalFunction(ZevData,COM_FUN(178));
InstallGlobalFunction(SizeOfFieldOfDefinition,COM_FUN(179));
InstallGlobalFunction(RealizableBrauerCharacters,COM_FUN(180));
InstallOtherMethod(GroupWithGenerators,"for a homogeneous list (of class functions)",[IsHomogeneousList],COM_FUN(181));
InstallOtherMethod(GroupWithGenerators,"for list (of class functions) and class function",IsCollsElms,[IsHomogeneousList,IsClassFunction],COM_FUN(182));
InstallOtherMethod(GroupWithGenerators,"for empty list and trivial character",[IsList and IsEmpty,IsClassFunction],COM_FUN(183));
InstallHandlingByNiceBasis("IsClassFunctionsSpace",rec(detect:=COM_FUN(184),NiceFreeLeftModuleInfo:=COM_FUN(185),NiceVector:=COM_FUN(186),UglyVector:=COM_FUN(187)));
InstallOtherMethod(ScalarProduct,"for left module of class functions, and two class functions",IsCollsElmsElms,[IsFreeLeftModule,IsClassFunction,IsClassFunction],COM_FUN(188));
InstallOtherMethod(ScalarProduct,"for module of class functions, and two values lists",[IsFreeLeftModule and IsClassFunctionsSpace,IsHomogeneousList,IsHomogeneousList],COM_FUN(189));
InstallGlobalFunction(OrbitChar,COM_FUN(190));
InstallGlobalFunction(OrbitsCharacters,COM_FUN(191));
InstallGlobalFunction(OrbitRepresentativesCharacters,COM_FUN(192));
InstallGlobalFunction(CharacterTableQuaternionic,COM_FUN(193));
InstallGlobalFunction(CollapsedMat,COM_FUN(194));
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblfuns.gi"

#F  file="lib/ctblmaps.gi" crc=-127895765
RANK_FILTER_LIST  := [ 53657149, 1, 17, 18, 53657149, 1, 17, 18, 17, 18, 
  49963237, 4, 7665940, 19, 40060802, 3, 7665940, 19, 40060802, 3, 17, 18, 
  7665940, 19, 26755727, 2, 15332823, 19, 26755727, 2, 30666573, 21, 
  66671912, 3, 17, 18, 66671912, 3, 17, 18, 7665940, 19, 53657149, 1, 
  40060802, 3, 7665940, 19, 40060802, 3, 7665940, 19, 4097, 1, 66671912, 3, 
  7665940, 19, 66671912, 3, 7665940, 19, 4097, 1, 29419057, 21, 29419057, 21, 
  63580652, 7, 63580652, 7, 53657149, 1, 53657149, 1, 53657149, 1, 53657149, 
  1, 63580652, 7, 63580652, 7, 40060802, 3, 40060802, 3, 49963237, 4, 
  49963237, 4, 40060802, 3, 40060802, 3, 66671912, 3, 66671912, 3, 53657149, 
  1, 53657149, 1, 53657149, 1, 53657149, 1, 53657149, 1, 53657149, 1, 4097, 
  1, 66671912, 3, 66671912, 3, 8193, 2, 8193, 2 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblmaps.gi", -127895765 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblmaps.gi\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblmaps.gi");
elif COM_RESULT = 3  then
Revision.ctblmaps_gi:="@(#)$Id: ctblmaps.gi,v 4.42.2.4 2005/12/10 12:33:57 gap Exp $";
InstallMethod(PowerMap,"for a character table, and an integer",[IsNearlyCharacterTable,IsInt],COM_FUN(1));
InstallMethod(PowerMap,"for a character table, and two integers",[IsNearlyCharacterTable,IsInt,IsInt],COM_FUN(2));
InstallMethod(PowerMapOp,"for ordinary table with group, and positive integer",[IsOrdinaryTable and HasUnderlyingGroup,IsPosInt],COM_FUN(3));
InstallMethod(PowerMapOp,"for ordinary table, and positive integer",[IsOrdinaryTable,IsPosInt],COM_FUN(4));
InstallOtherMethod(PowerMapOp,"for ordinary table, and two positive integers",[IsOrdinaryTable,IsInt,IsPosInt],COM_FUN(5));
InstallMethod(PowerMapOp,"for character table and negative integer",[IsCharacterTable,IsInt and IsNegRat],COM_FUN(6));
InstallMethod(PowerMapOp,"for character table and zero",[IsCharacterTable,IsZeroCyc],COM_FUN(7));
InstallMethod(PowerMapOp,"for Brauer table and integer",[IsBrauerTable,IsInt],COM_FUN(8));
InstallOtherMethod(PowerMapOp,"for Brauer table and two integers",[IsBrauerTable,IsInt,IsPosInt],COM_FUN(9));
InstallMethod(ComputedPowerMaps,"for a nearly character table",[IsNearlyCharacterTable],COM_FUN(10));
InstallMethod(PossiblePowerMaps,"for an ordinary character table and a prime (add empty options record)",[IsOrdinaryTable,IsPosInt],COM_FUN(11));
InstallMethod(PossiblePowerMaps,"for an ordinary character table, a prime, and a record",[IsOrdinaryTable,IsPosInt,IsRecord],COM_FUN(12));
InstallOtherMethod(PossiblePowerMaps,"for a Brauer character table and a prime",[IsBrauerTable,IsPosInt],COM_FUN(13));
InstallMethod(PossiblePowerMaps,"for a Brauer character table, a prime, and a record",[IsBrauerTable,IsPosInt,IsRecord],COM_FUN(14));
InstallGlobalFunction(ElementOrdersPowerMap,COM_FUN(15));
InstallGlobalFunction(PowerMapByComposition,COM_FUN(16));
InstallGlobalFunction(OrbitPowerMaps,COM_FUN(17));
InstallGlobalFunction(RepresentativesPowerMaps,COM_FUN(18));
InstallMethod(FusionConjugacyClasses,"for two groups",IsIdenticalObj,[IsGroup,IsGroup],COM_FUN(19));
InstallMethod(FusionConjugacyClasses,"for a group homomorphism",[IsGeneralMapping],FusionConjugacyClassesOp);
InstallMethod(FusionConjugacyClasses,"for a group homomorphism, and two nearly character tables",[IsGeneralMapping,IsNearlyCharacterTable,IsNearlyCharacterTable],FusionConjugacyClassesOp);
InstallMethod(FusionConjugacyClasses,"for two nearly character tables",[IsNearlyCharacterTable,IsNearlyCharacterTable],COM_FUN(20));
InstallMethod(FusionConjugacyClassesOp,"for a group homomorphism",[IsGeneralMapping],COM_FUN(21));
InstallMethod(FusionConjugacyClassesOp,"for a group homomorphism, and two character tables",[IsGeneralMapping,IsOrdinaryTable,IsOrdinaryTable],COM_FUN(22));
InstallMethod(FusionConjugacyClassesOp,"for two ordinary tables with groups",[IsOrdinaryTable and HasUnderlyingGroup,IsOrdinaryTable and HasUnderlyingGroup],COM_FUN(23));
InstallMethod(FusionConjugacyClassesOp,"for two ordinary tables",[IsOrdinaryTable,IsOrdinaryTable],COM_FUN(24));
InstallMethod(FusionConjugacyClassesOp,"for two Brauer tables",[IsBrauerTable,IsBrauerTable],COM_FUN(25));
InstallMethod(ComputedClassFusions,"for a nearly character table",[IsNearlyCharacterTable],COM_FUN(26));
InstallGlobalFunction(GetFusionMap,COM_FUN(27));
InstallGlobalFunction(StoreFusion,COM_FUN(28));
InstallMethod(NamesOfFusionSources,"for a nearly character table",[IsNearlyCharacterTable],COM_FUN(29));
InstallMethod(PossibleClassFusions,"for two ordinary character tables",[IsNearlyCharacterTable,IsNearlyCharacterTable],COM_FUN(30));
InstallMethod(PossibleClassFusions,"for two ordinary character tables, and a parameters record",[IsNearlyCharacterTable,IsNearlyCharacterTable,IsRecord],COM_FUN(31));
InstallMethod(PossibleClassFusions,"for two Brauer tables",[IsBrauerTable,IsBrauerTable],COM_FUN(32));
InstallGlobalFunction(OrbitFusions,COM_FUN(33));
InstallGlobalFunction(RepresentativesFusions,COM_FUN(34));
InstallGlobalFunction(CompositionMaps,COM_FUN(35));
InstallGlobalFunction(InverseMap,COM_FUN(36));
InstallGlobalFunction(ProjectionMap,COM_FUN(37));
InstallMethod(Indirected,[IsList,IsList],COM_FUN(38));
InstallGlobalFunction(Parametrized,COM_FUN(39));
InstallGlobalFunction(ContainedMaps,COM_FUN(40));
InstallGlobalFunction(UpdateMap,COM_FUN(41));
InstallGlobalFunction(MeetMaps,COM_FUN(42));
InstallGlobalFunction(ImproveMaps,COM_FUN(43));
InstallGlobalFunction(CommutativeDiagram,COM_FUN(44));
InstallGlobalFunction(CheckFixedPoints,COM_FUN(45));
InstallGlobalFunction(TransferDiagram,COM_FUN(46));
InstallGlobalFunction(TestConsistencyMaps,COM_FUN(47));
InstallGlobalFunction(Indeterminateness,COM_FUN(48));
InstallGlobalFunction(IndeterminatenessInfo,COM_FUN(49));
InstallGlobalFunction(PrintAmbiguity,COM_FUN(50));
InstallGlobalFunction(ContainedSpecialVectors,COM_FUN(51));
InstallGlobalFunction(IntScalarProducts,COM_FUN(52));
InstallGlobalFunction(NonnegIntScalarProducts,COM_FUN(53));
InstallGlobalFunction(ContainedPossibleVirtualCharacters,COM_FUN(54));
InstallGlobalFunction(ContainedPossibleCharacters,COM_FUN(55));
BindGlobal("StepModGauss",COM_FUN(56));
BindGlobal("ModGauss",COM_FUN(57));
InstallGlobalFunction(ContainedDecomposables,COM_FUN(58));
InstallGlobalFunction(ContainedCharacters,COM_FUN(59));
InstallGlobalFunction(InitPowerMap,COM_FUN(60));
InstallGlobalFunction(Congruences,COM_FUN(61));
InstallGlobalFunction(ConsiderKernels,COM_FUN(62));
InstallGlobalFunction(ConsiderSmallerPowerMaps,COM_FUN(63));
InstallGlobalFunction(MinusCharacter,COM_FUN(64));
InstallGlobalFunction(PowerMapsAllowedBySymmetrizations,COM_FUN(65));
InstallGlobalFunction(InitFusion,COM_FUN(66));
InstallGlobalFunction(CheckPermChar,COM_FUN(67));
InstallGlobalFunction(ConsiderTableAutomorphisms,COM_FUN(68));
InstallGlobalFunction(FusionsAllowedByRestrictions,COM_FUN(69));
InstallGlobalFunction(ConsiderStructureConstants,COM_FUN(70));
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblmaps.gi"

#F  file="lib/ctblauto.gi" crc=28897248
RANK_FILTER_LIST  := [ 58412696, 30, 58412696, 30, 8193, 2, 62973024, 33, 
  26755727, 2, 8193, 2, 26755727, 2, 8193, 2, 67108760, 5, 26755727, 2, 8193, 
  2, 62973024, 33, 58412696, 30, 58412696, 30, 26755727, 2, 26755727, 2 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblauto.gi", 28897248 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblauto.gi\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblauto.gi");
elif COM_RESULT = 3  then
Revision.ctblauto_gi:="@(#)$Id: ctblauto.gi,v 4.9 2003/01/27 08:18:03 gap Exp $";
InstallGlobalFunction(FamiliesOfRows,COM_FUN(1));
BindGlobal("MatAutomorphismsFamily",COM_FUN(2));
InstallMethod(MatrixAutomorphisms,"for a matrix",[IsMatrix],COM_FUN(3));
InstallMethod(MatrixAutomorphisms,"for matrix, list of maps, and subgroup",[IsMatrix,IsList,IsPermGroup],COM_FUN(4));
InstallMethod(TableAutomorphisms,"for a character table and a list of characters",[IsCharacterTable,IsList],COM_FUN(5));
InstallMethod(TableAutomorphisms,"for a character table, a list of characters, and a string",[IsCharacterTable,IsList,IsString],COM_FUN(6));
InstallMethod(TableAutomorphisms,"for a character table, a list of characters, and a perm. group",[IsCharacterTable,IsList,IsPermGroup],COM_FUN(7));
BindGlobal("TransformingPermutationFamily",COM_FUN(8));
InstallMethod(TransformingPermutations,"for two matrices",[IsMatrix,IsMatrix],COM_FUN(9));
InstallMethod(TransformingPermutationsCharacterTables,"for two character tables",[IsCharacterTable,IsCharacterTable],COM_FUN(10));
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblauto.gi"

#F  file="lib/ctbllatt.gi" crc=11222967
RANK_FILTER_LIST  := [  ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctbllatt.gi", 11222967 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctbllatt.gi\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctbllatt.gi");
elif COM_RESULT = 3  then
Revision.ctbllatt_gi:="@(#)$Id: ctbllatt.gi,v 4.15 2002/04/15 10:04:34 sal Exp $";
InstallGlobalFunction(LLL,COM_FUN(1));
InstallGlobalFunction(Extract,COM_FUN(2));
InstallGlobalFunction(Decreased,COM_FUN(3));
InstallGlobalFunction(OrthogonalEmbeddingsSpecialDimension,COM_FUN(4));
InstallGlobalFunction(DnLattice,COM_FUN(5));
InstallGlobalFunction(DnLatticeIterative,COM_FUN(6));
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctbllatt.gi"

#F  file="lib/ctblsymm.gi" crc=-128313139
RANK_FILTER_LIST  := [ 15721567, 37, 30666573, 21 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblsymm.gi", -128313139 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblsymm.gi\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblsymm.gi");
elif COM_RESULT = 3  then
Revision.ctblsymm_gi:="@(#)$Id: ctblsymm.gi,v 4.17 2003/11/19 09:41:32 gap Exp $";
InstallGlobalFunction(BetaSet,COM_FUN(1));
InstallGlobalFunction(CentralizerWreath,COM_FUN(2));
InstallGlobalFunction(PowerWreath,COM_FUN(3));
InstallGlobalFunction(InductionScheme,COM_FUN(4));
InstallGlobalFunction(MatCharsWreathSymmetric,COM_FUN(5));
InstallGlobalFunction(CharValueSymmetric,COM_FUN(6));
InstallValue(CharTableSymmetric,Immutable(rec(isGenericTable:=true,identifier:="Symmetric",size:=Factorial,specializedname:=(COM_FUN(7)),text:="generic character table for symmetric groups",classparam:=[Partitions],charparam:=[Partitions],centralizers:=[COM_FUN(8)],orders:=[COM_FUN(9)],powermap:=[COM_FUN(10)],irreducibles:=[[COM_FUN(11)]],matrix:=COM_FUN(12),domain:=IsPosInt)));
InstallValue(CharTableAlternating,Immutable(rec(isGenericTable:=true,identifier:="Alternating",size:=(COM_FUN(13)),specializedname:=(COM_FUN(14)),text:="generic character table for alternating groups",classparam:=[COM_FUN(15)],charparam:=[COM_FUN(16)],centralizers:=[COM_FUN(17)],orders:=[COM_FUN(18)],powermap:=[COM_FUN(19)],irreducibles:=[[COM_FUN(20)]],wholetable:=COM_FUN(21),domain:=(COM_FUN(22)))));
InstallGlobalFunction(CharValueWeylB,COM_FUN(23));
InstallValue(CharTableWeylB,Immutable(rec(isGenericTable:=true,identifier:="WeylB",size:=(COM_FUN(24)),specializedname:=(COM_FUN(25)),text:="generic character table for Weyl groups of type B",classparam:=[(COM_FUN(26))],charparam:=[(COM_FUN(27))],centralizers:=[COM_FUN(28)],orders:=[COM_FUN(29)],powermap:=[COM_FUN(30)],irreducibles:=[[COM_FUN(31)]],matrix:=COM_FUN(32),domain:=IsPosInt)));
InstallValue(CharTableWeylD,rec(isGenericTable:=true,identifier:="WeylD",size:=(COM_FUN(33)),specializedname:=(COM_FUN(34)),text:="generic character table for Weyl groups of type D",classparam:=[COM_FUN(35)],charparam:=[COM_FUN(36)],centralizers:=[COM_FUN(37)],orders:=[COM_FUN(38)],powermap:=[COM_FUN(39)],irreducibles:=[[COM_FUN(40)]],domain:=(COM_FUN(41))));
CharTableWeylD.matrix:=COM_FUN(42);
MakeImmutable(CharTableWeylD);
InstallGlobalFunction(CharValueWreathSymmetric,COM_FUN(43));
InstallGlobalFunction(CharacterTableWreathSymmetric,COM_FUN(44));
InstallMethod(Irr,"ordinary characters for natural symmetric group",[IsNaturalSymmetricGroup,IsZeroCyc],COM_FUN(45));
BindGlobal("DescendingListWithElementRemoved",COM_FUN(46));
DeclareGlobalFunction("MorrisRecursion");
InstallGlobalFunction(MorrisRecursion,COM_FUN(47));
BindGlobal("CharValueDoubleCoverSymmetric",COM_FUN(48));
BindGlobal("BarPartitions",COM_FUN(49));
BindGlobal("SpinInductionScheme",COM_FUN(50));
BindGlobal("OddSpinVals",COM_FUN(51));
BindGlobal("MatrixSpinCharsSn",COM_FUN(52));
BindGlobal("OrderOfSchurLift",COM_FUN(53));
InstallValue(CharTableDoubleCoverSymmetric,rec(isGenericTable:=true,identifier:="DoubleCoverSymmetric",size:=(COM_FUN(54)),specializedname:=(COM_FUN(55)),text:="generic character table for a double cover of symmetric groups",wholetable:=COM_FUN(56),domain:=IsPosInt));
InstallValue(CharTableDoubleCoverAlternating,rec(isGenericTable:=true,identifier:="DoubleCoverAlternating",size:=Factorial,specializedname:=(COM_FUN(57)),text:="generic character table for the double cover of alternating groups",matrix:=COM_FUN(58),wholetable:=COM_FUN(59),domain:=IsPosInt));
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblsymm.gi"

#F  file="lib/ctblsolv.gi" crc=-110937568
RANK_FILTER_LIST  := [ 30666573, 21, 14199769, 29, 17, 18, 30666573, 21, 
  26404754, 23, 17, 18, 29419057, 21, 21030329, 25, 30666573, 21, 26141807, 
  26, 30666573, 21, 21030329, 25, 30666573, 21, 23585588, 26, 30666573, 21, 
  29419057, 21, 29407897, 26, 29407897, 26, 50937734, 54, 29407897, 26, 
  24802624, 53, 29419057, 21, 2214405, 17, 29419057, 21 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblsolv.gi", -110937568 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblsolv.gi\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblsolv.gi");
elif COM_RESULT = 3  then
Revision.ctblsolv_gi:="@(#)$Id: ctblsolv.gi,v 4.45.2.1 2005/08/23 08:47:37 gap Exp $";
InstallMethod(CharacterDegrees,"for an abelian group, and an integer p (just strip off the p-part)",[IsGroup and IsAbelian,IsInt],RankFilter(IsZeroCyc),COM_FUN(1));
BindGlobal("AppendCollectedList",COM_FUN(2));
BindGlobal("KernelUnderDualAction",COM_FUN(3));
InstallGlobalFunction(ProjectiveCharDeg,COM_FUN(4));
BindGlobal("CharacterDegreesConlon",COM_FUN(5));
InstallMethod(CharacterDegrees,"for a solvable group and an integer (Conlon's algorithm)",[IsGroup and IsSolvableGroup,IsInt],RankFilter(IsZeroCyc),COM_FUN(6));
InstallGlobalFunction(CoveringTriplesCharacters,COM_FUN(7));
InstallMethod(IrrConlon,"for a group",[IsGroup],COM_FUN(8));
InstallMethod(Irr,"for a supersolvable group (Conlon's algorithm)",[IsGroup and IsSupersolvableGroup,IsZeroCyc],COM_FUN(9));
InstallMethod(Irr,"for a supersolvable group with known `IrrConlon'",[IsGroup and IsSupersolvableGroup and HasIrrConlon,IsZeroCyc],COM_FUN(10));
InstallMethod(Irr,"for a supersolvable group (Baum-Clausen algorithm)",[IsGroup and IsSupersolvableGroup,IsZeroCyc],COM_FUN(11));
InstallMethod(Irr,"for a supersolvable group with known `IrrBaumClausen'",[IsGroup and IsSupersolvableGroup and HasIrrBaumClausen,IsZeroCyc],COM_FUN(12));
InstallValue(BaumClausenInfoDebug,rec(makemat:=COM_FUN(13),testrep:=COM_FUN(14),checkconj:=COM_FUN(15)));
InstallMethod(BaumClausenInfo,"for a (solvable) group",[IsGroup],COM_FUN(16));
BindGlobal("IrreducibleRepresentationsByBaumClausen",COM_FUN(17));
InstallMethod(IrreducibleRepresentations,"(abelian by supersolvable) finite group",[IsGroup and IsFinite],1,COM_FUN(18));
InstallMethod(IrreducibleRepresentations,"finite group, Cyclotomics",[IsGroup and IsFinite,IsCyclotomicCollection and IsField],COM_FUN(19));
InstallMethod(IrreducibleRepresentations,"for a finite group over a finite field",[IsGroup and IsFinite,IsField and IsFinite],COM_FUN(20));
InstallMethod(IrrBaumClausen,"for a (solvable) group",[IsGroup],COM_FUN(21));
InstallGlobalFunction(InducedRepresentationImagesRepresentative,COM_FUN(22));
InstallGlobalFunction(InducedRepresentation,COM_FUN(23));
InstallOtherMethod(\^,"for group homomorphism and group (induction)",[IsGroupHomomorphism,IsGroup],COM_FUN(24));
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblsolv.gi"

#F  file="lib/ctblpope.gi" crc=33485759
RANK_FILTER_LIST  := [ 40060802, 3, 8193, 2, 40060802, 3, 8193, 2, 1, 0 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblpope.gi", 33485759 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblpope.gi\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblpope.gi");
elif COM_RESULT = 3  then
Revision.ctblpope_gi:="@(#)$Id: ctblpope.gi,v 4.24.4.1 2005/05/09 08:40:59 gap Exp $";
InstallGlobalFunction(TestPerm1,COM_FUN(1));
InstallGlobalFunction(TestPerm2,COM_FUN(2));
InstallGlobalFunction(TestPerm3,COM_FUN(3));
InstallGlobalFunction(TestPerm4,COM_FUN(4));
InstallGlobalFunction(TestPerm5,COM_FUN(5));
InstallMethod(Inequalities,[IsOrdinaryTable,IsList],COM_FUN(6));
InstallMethod(Inequalities,[IsOrdinaryTable,IsList,IsObject],COM_FUN(7));
InstallGlobalFunction(Permut,COM_FUN(8));
InstallGlobalFunction(PermBounds,COM_FUN(9));
InstallGlobalFunction(PermComb,COM_FUN(10));
InstallGlobalFunction(PermCandidates,COM_FUN(11));
InstallGlobalFunction(PermCandidatesFaithful,COM_FUN(12));
InstallGlobalFunction(PermChars,COM_FUN(13));
InstallGlobalFunction(PermCharInfo,COM_FUN(14));
InstallGlobalFunction(PermCharInfoRelative,COM_FUN(15));
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblpope.gi"

#F  file="lib/ctblmoli.gi" crc=81081795
RANK_FILTER_LIST  := [ 56063874, 16, 56063874, 16 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblmoli.gi", 81081795 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblmoli.gi\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblmoli.gi");
elif COM_RESULT = 3  then
Revision.ctblmoli_gi:="@(#)$Id: ctblmoli.gi,v 4.14.2.2 2005/05/10 08:30:45 gap Exp $";
BindGlobal("StringOfUnivariateRationalPolynomialByCoefficients",COM_FUN(1));
InstallGlobalFunction(CoefficientTaylorSeries,COM_FUN(2));
InstallGlobalFunction(SummandMolienSeries,COM_FUN(3));
InstallGlobalFunction(MolienSeries,COM_FUN(4));
InstallGlobalFunction(MolienSeriesWithGivenDenominator,COM_FUN(5));
ViewMolienSeries:=COM_FUN(6);
InstallMethod(ViewObj,"for a Molien series",[IsRationalFunction and IsUnivariateRationalFunction and HasMolienSeriesInfo],ViewMolienSeries);
InstallMethod(PrintObj,"for a Molien series",[IsRationalFunction and IsUnivariateRationalFunction and HasMolienSeriesInfo],ViewMolienSeries);
InstallGlobalFunction(ValueMolienSeries,COM_FUN(7));
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblmoli.gi"

#F  file="lib/ctblmono.gi" crc=-112855783
RANK_FILTER_LIST  := [ 29419057, 21, 29419057, 21, 52428456, 31, 29419057, 
  21, 17173190, 35, 17173190, 35, 52428456, 31, 52428456, 31, 17173190, 35, 
  29419057, 21, 52428456, 31, 29419057, 21, 52428456, 31, 7665940, 19, 
  52428456, 31, 29419057, 21, 52428456, 31, 52428456, 31, 1025, 1, 29419057, 
  21, 29419057, 21, 1025, 1, 29419057, 21, 52428456, 31, 52428456, 31, 
  29419057, 21, 52428456, 31, 1, 0, 29419057, 21, 1, 0, 52428456, 31, 
  29419057, 21, 29419057, 21 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblmono.gi", -112855783 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblmono.gi\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblmono.gi");
elif COM_RESULT = 3  then
Revision.ctblmono_gi:="@(#)$Id: ctblmono.gi,v 4.20 2003/06/10 15:40:09 gap Exp $";
InstallMethod(Alpha,"for a group",[IsGroup],COM_FUN(1));
InstallMethod(Delta,"for a group",[IsGroup],COM_FUN(2));
InstallOtherMethod(IsBergerCondition,"for a class function",[IsClassFunction],COM_FUN(3));
InstallMethod(IsBergerCondition,"for a group",[IsGroup],COM_FUN(4));
InstallGlobalFunction(TestHomogeneous,COM_FUN(5));
InstallMethod(TestQuasiPrimitive,"for a character",[IsCharacter],COM_FUN(6));
InstallMethod(IsQuasiPrimitive,"for a character",[IsCharacter],COM_FUN(7));
InstallMethod(IsPrimitiveCharacter,"for a class function",[IsClassFunction],COM_FUN(8));
InstallOtherMethod(IsPrimitive,"for a character",[IsClassFunction],IsPrimitiveCharacter);
InstallGlobalFunction(TestInducedFromNormalSubgroup,COM_FUN(9));
InstallMethod(IsInducedFromNormalSubgroup,"for a character",[IsCharacter],COM_FUN(10));
InstallMethod(TestSubnormallyMonomial,"for a group",[IsGroup],COM_FUN(11));
InstallOtherMethod(TestSubnormallyMonomial,"for a character",[IsClassFunction],COM_FUN(12));
InstallMethod(IsSubnormallyMonomial,"for a group",[IsGroup],COM_FUN(13));
InstallOtherMethod(IsSubnormallyMonomial,"for a character",[IsClassFunction],COM_FUN(14));
InstallMethod(IsMonomialNumber,"for a positive integer",[IsPosInt],COM_FUN(15));
InstallMethod(TestMonomialQuick,"for a character",[IsClassFunction],COM_FUN(16));
InstallOtherMethod(TestMonomialQuick,"for a group",[IsGroup],COM_FUN(17));
BindGlobal("TestMonomialFromLattice",COM_FUN(18));
InstallMethod(TestMonomial,"for a character",[IsClassFunction],COM_FUN(19));
InstallMethod(TestMonomial,"for a character, and a Boolean",[IsClassFunction,IsBool],COM_FUN(20));
InstallOtherMethod(TestMonomial,"for a group",[IsGroup],COM_FUN(21));
InstallOtherMethod(TestMonomial,"for a group, and a Boolean",[IsGroup,IsBool],COM_FUN(22));
InstallMethod(IsMonomialGroup,"for a group",[IsGroup],COM_FUN(23));
InstallMethod(IsMonomialCharacter,"for a character",[IsClassFunction],COM_FUN(24));
BindGlobal("TestRelativelySMFun",COM_FUN(25));
InstallMethod(TestRelativelySM,"for a character",[IsClassFunction],TestRelativelySMFun);
InstallOtherMethod(TestRelativelySM,"for a group",[IsGroup],TestRelativelySMFun);
InstallOtherMethod(TestRelativelySM,"for a character, and an object",[IsClassFunction,IsObject],TestRelativelySMFun);
InstallOtherMethod(TestRelativelySM,"for a group, and an object",[IsGroup,IsObject],TestRelativelySMFun);
InstallMethod(IsRelativelySM,"for a character",[IsClassFunction],COM_FUN(26));
InstallOtherMethod(IsRelativelySM,"for a group",[IsGroup],COM_FUN(27));
InstallMethod(IsMinimalNonmonomial,"for a (solvable) group",[IsGroup],COM_FUN(28));
InstallGlobalFunction(MinimalNonmonomialGroup,COM_FUN(29));
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblmono.gi"

#F  file="lib/ctblgrp.gi" crc=11014043
RANK_FILTER_LIST  := [ 29419057, 21, 14199769, 29, 4097, 1, 29419057, 21, 
  4097, 1, 29419057, 21, 29419057, 21, 4097, 1, 29419057, 21, 30666573, 21, 
  29418502, 223, 30666573, 21, 29407897, 26 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblgrp.gi", 11014043 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblgrp.gi\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblgrp.gi");
elif COM_RESULT = 3  then
Revision.ctblgrp_gi:="@(#)$Id: ctblgrp.gi,v 4.47.2.7 2007/07/31 16:54:12 gap Exp $";
USECTPGROUP:=false;
if not IsBound(DXLARGEGROUPORDER) then
DXLARGEGROUPORDER:=10000;
fi;
InstallGlobalFunction(IsDxLargeGroup,COM_FUN(1));
InstallGlobalFunction(ClassComparison,COM_FUN(2));
InstallMethod(DixonRecord,"generic",true,[IsGroup],0,COM_FUN(3));
DxCalcAllPowerMaps:=COM_FUN(4);
DxCalcPrimeClasses:=COM_FUN(5);
DxIsInSpace:=COM_FUN(6);
DxNiceBasis:=COM_FUN(7);
DxActiveCols:=COM_FUN(8);
DxRegisterModularChar:=COM_FUN(9);
InstallGlobalFunction(DxIncludeIrreducibles,COM_FUN(10));
DxLinearCharacters:=COM_FUN(11);
DxLiftCharacter:=COM_FUN(12);
InstallGlobalFunction(SplitCharacters,COM_FUN(13));
DxEigenbase:=COM_FUN(14);
InstallGlobalFunction(SplitStep,COM_FUN(15));
CharacterMorphismOrbits:=COM_FUN(16);
DxModProduct:=COM_FUN(17);
DxFrobSchurInd:=COM_FUN(18);
SplitTwoSpace:=COM_FUN(19);
CombinatoricSplit:=COM_FUN(20);
InstallGlobalFunction(OrbitSplit,COM_FUN(21));
InstallGlobalFunction(DxModularValuePol,COM_FUN(22));
ModularCharacterDegree:=COM_FUN(23);
InstallGlobalFunction(DxDegreeCandidates,COM_FUN(24));
InstallGlobalFunction(DxSplitDegree,COM_FUN(25));
DxGaloisOrbits:=COM_FUN(26);
InstallGlobalFunction(BestSplittingMatrix,COM_FUN(27));
AsCharacterMorphismFunction:=COM_FUN(28);
CharacterMorphismGroup:=COM_FUN(29);
ClassElementLargeGroup:=COM_FUN(30);
ClassElementSmallGroup:=COM_FUN(31);
DoubleCentralizerOrbit:=COM_FUN(32);
StandardClassMatrixColumn:=COM_FUN(33);
IdentificationGenericGroup:=COM_FUN(34);
InstallMethod(DxPreparation,"abelian",true,[IsGroup and IsAbelian,IsRecord],0,COM_FUN(35));
InstallMethod(DxPreparation,"generic",true,[IsGroup,IsRecord],0,COM_FUN(36));
CharacterDegreePool:=COM_FUN(37);
ClassNumbersElements:=COM_FUN(38);
DxGeneratePrimeCyclotomic:=COM_FUN(39);
InstallGlobalFunction(DixonInit,COM_FUN(40));
InstallGlobalFunction(DixonSplit,COM_FUN(41));
InstallGlobalFunction(DixontinI,COM_FUN(42));
InstallMethod(IrrDixonSchneider,"Dixon/Schneider",true,[IsGroup],0,COM_FUN(43));
InstallMethod(IrrDixonSchneider,"Dixon/Schneider",true,[IsGroup,IsRecord],0,COM_FUN(44));
InstallMethod(Irr,"Dixon/Schneider",[IsGroup,IsZeroCyc],COM_FUN(45));
InstallMethod(Irr,"via niceomorphism",[IsGroup and IsHandledByNiceMonomorphism,IsZeroCyc],COM_FUN(46));
BindGlobal("DixonRepGHchi",COM_FUN(47));
BindGlobal("DixonRepChi",COM_FUN(48));
InstallGlobalFunction(IrreducibleRepresentationsDixon,COM_FUN(49));
InstallMethod(IrreducibleRepresentations,"Dixon's method",true,[IsGroup and IsFinite],0,IrreducibleRepresentationsDixon);
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblgrp.gi"

#F  file="lib/ctblperm.gi" crc=-55319518
RANK_FILTER_LIST  := [ 62973024, 33, 4097, 1 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblperm.gi", -55319518 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblperm.gi\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblperm.gi");
elif COM_RESULT = 3  then
Revision.ctblperm_gi:="@(#)$Id: ctblperm.gi,v 4.11 2002/04/15 10:04:35 sal Exp $";
FingerprintPerm:=COM_FUN(1);
IdentificationPermGroup:=COM_FUN(2);
RationalIdentificationPermGroup:=COM_FUN(3);
InstallMethod(DxPreparation,"perm",true,[IsPermGroup,IsRecord],0,COM_FUN(4));
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblperm.gi"

#F  file="lib/ctblpc.gi" crc=-18339540
RANK_FILTER_LIST  := [ 66740907, 33, 4097, 1 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/ctblpc.gi", -18339540 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/ctblpc.gi\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/ctblpc.gi");
elif COM_RESULT = 3  then
Revision.ctblpc_gi:="@(#)$Id: ctblpc.gi,v 4.8 2002/04/15 10:04:35 sal Exp $";
PcGroupClassMatrixColumn:=COM_FUN(1);
IdentificationSolvableGroup:=COM_FUN(2);
InstallMethod(DxPreparation,"pc group",true,[IsPcGroup,IsRecord],0,COM_FUN(3));
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/ctblpc.gi"

#F  file="lib/tom.gi" crc=27401818
RANK_FILTER_LIST  := [ 38041283, 31, 29758350, 22, 64094577, 23, 29419057, 
  21, 65537, 6, 67108760, 5, 63177374, 22, 38041283, 31, 408716, 1, 408716, 
  1, 408716, 1, 408716, 1, 4097, 1, 408716, 1, 513, 8, 20070236, 3, 408716, 
  1, 408716, 1, 408716, 1, 408716, 1, 408716, 1, 408716, 1, 408716, 1, 
  408716, 1, 408716, 1, 408716, 1, 408716, 1, 408716, 1, 408716, 1, 7665940, 
  19, 16304291, 2, 7665940, 19, 43170056, 2, 7665940, 19, 408716, 1, 408716, 
  1, 7665940, 19, 408716, 1, 408716, 1, 7665940, 19, 408716, 1, 16304291, 2, 
  7665940, 19, 408716, 1, 7665940, 19, 408716, 1, 408716, 1, 7665940, 19, 
  408716, 1, 408716, 1, 7665940, 19, 408716, 1, 408716, 1, 7665940, 19, 
  408716, 1, 408716, 1, 7665940, 19, 7665940, 19, 408716, 1, 7665940, 19, 
  7665940, 19, 408716, 1, 408716, 1, 7665940, 19, 408716, 1, 8193, 2, 408716, 
  1, 408716, 1, 7665940, 19, 408716, 1, 8193, 2, 408716, 1, 8193, 2, 408716, 
  1, 7665940, 19, 408716, 1, 7665940, 19, 7665940, 19, 63177374, 22, 7665940, 
  19, 29419057, 21, 7665940, 19, 29419057, 21, 7665940, 19, 408716, 1, 
  7665940, 19, 7665940, 19, 408716, 1, 7665940, 19, 408716, 1, 408716, 1, 
  7665940, 19, 408716, 1, 7665940, 19, 408716, 1, 39307843, 3, 7665940, 19, 
  11099051, 3, 7665940, 19, 11099051, 3, 7665940, 19, 32769, 4, 11099051, 3, 
  7665940, 19, 32769, 4, 40060802, 3, 408716, 1, 40060802, 3, 408716, 1, 
  4097, 1, 40060802, 3, 408716, 1, 8193, 2, 408716, 1, 40060802, 3, 408716, 
  1, 7665940, 19, 7665940, 19, 7665940, 19, 7665940, 19 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/tom.gi", 27401818 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/tom.gi\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/tom.gi");
elif COM_RESULT = 3  then
Revision.tom_gi:="@(#)$Id: tom.gi,v 4.50.2.2 2006/02/23 16:25:40 jjm Exp $";
BindGlobal("GeneratorsListTom",COM_FUN(1));
InstallMethod(TableOfMarks,"for a cyclic group",[IsGroup and IsCyclic],COM_FUN(2));
InstallGlobalFunction(TableOfMarksByLattice,COM_FUN(3));
InstallMethod(TableOfMarks,"for a group with lattice",[IsGroup and HasLatticeSubgroups],10,TableOfMarksByLattice);
InstallMethod(TableOfMarks,"for solvable groups (call `LatticeSubgroups' and use the lattice)",[IsSolvableGroup],TableOfMarksByLattice);
InstallMethod(TableOfMarks,"cyclic extension method",[IsGroup],COM_FUN(4));
InstallMethod(TableOfMarks,"for a matrix or a lower triangular matrix",[IsTable],COM_FUN(5));
BindGlobal("TableOfMarksFromLibrary",COM_FUN(6));
InstallMethod(TableOfMarks,"for a string (dispatch to `TableOfMarksFromLibrary')",[IsString],COM_FUN(7));
InstallGlobalFunction(LatticeSubgroupsByTom,COM_FUN(8));
InstallMethod(LatticeSubgroups,"for a group with table of marks",[IsGroup and HasTableOfMarks],10,LatticeSubgroupsByTom);
InstallMethod(LatticeSubgroups,"for a cyclic group",[IsGroup and IsCyclic],LatticeSubgroupsByTom);
InstallMethod(ViewObj,[IsTableOfMarks],COM_FUN(9));
InstallMethod(PrintObj,[IsTableOfMarks],COM_FUN(10));
InstallMethod(Display,"for a table of marks (add empty options record)",[IsTableOfMarks],COM_FUN(11));
InstallOtherMethod(Display,"for a table of marks and an options record",[IsTableOfMarks,IsRecord],COM_FUN(12));
InstallMethod(SortedTom,[IsTableOfMarks,IsPerm],COM_FUN(13));
InstallGlobalFunction(ConvertToTableOfMarks,COM_FUN(14));
InstallMethod(MarksTom,"for a table of marks with known `NrSubsTom' and `OrdersTom'",[IsTableOfMarks and HasNrSubsTom and HasOrdersTom],COM_FUN(15));
InstallMethod(NrSubsTom,"for a table of marks",[IsTableOfMarks],COM_FUN(16));
InstallMethod(OrdersTom,"for a table of marks",[IsTableOfMarks],COM_FUN(17));
InstallMethod(LengthsTom,"for a table of marks",[IsTableOfMarks],COM_FUN(18));
InstallMethod(ClassTypesTom,"for a table of marks",[IsTableOfMarks],COM_FUN(19));
InstallMethod(ClassNamesTom,"for a table of marks",[IsTableOfMarks],COM_FUN(20));
InstallMethod(FusionsTom,"for a table of marks",[IsTableOfMarks],COM_FUN(21));
InstallMethod(IdempotentsTom,"for a table of marks",[IsTableOfMarks],COM_FUN(22));
InstallMethod(IdempotentsTomInfo,"for a table of marks",[IsTableOfMarks],COM_FUN(23));
InstallMethod(MatTom,"for a table of marks",[IsTableOfMarks],COM_FUN(24));
InstallMethod(MoebiusTom,"for a table of marks",[IsTableOfMarks],COM_FUN(25));
InstallMethod(WeightsTom,"for a table of marks",[IsTableOfMarks],COM_FUN(26));
InstallMethod(IsAbelianTom,"for a table of marks",[IsTableOfMarks],COM_FUN(27));
InstallMethod(IsAbelianTom,"for a table of marks and a positive integer",[IsTableOfMarks,IsPosInt],10,COM_FUN(28));
InstallMethod(IsAbelianTom,"for a table of marks with known der. subgroups, and a positive integer",[IsTableOfMarks and HasDerivedSubgroupsTomUnique,IsPosInt],1000,COM_FUN(29));
InstallMethod(IsAbelianTom,"for a table of marks with generators, and a positive integer",[IsTableOfMarks and IsTableOfMarksWithGens,IsPosInt],COM_FUN(30));
InstallMethod(IsCyclicTom,"for a table of marks",[IsTableOfMarks],COM_FUN(31));
InstallMethod(IsCyclicTom,"for a table of marks and a positive integer",[IsTableOfMarks,IsPosInt],COM_FUN(32));
InstallMethod(IsNilpotentTom,"for a table of marks",[IsTableOfMarks],COM_FUN(33));
InstallMethod(IsNilpotentTom,"for a table of marks and a positive integer",[IsTableOfMarks,IsPosInt],COM_FUN(34));
InstallMethod(IsPerfectTom,"for a table of marks",[IsTableOfMarks],COM_FUN(35));
InstallMethod(IsPerfectTom,"for a table of marks with known der. subgroups, and a positive integer",[IsTableOfMarks and HasDerivedSubgroupsTomUnique,IsPosInt],COM_FUN(36));
InstallMethod(IsPerfectTom,"for a table of marks and a positive integer",[IsTableOfMarks,IsPosInt],COM_FUN(37));
InstallMethod(IsSolvableTom,"for a table of marks",[IsTableOfMarks],COM_FUN(38));
InstallMethod(IsSolvableTom,"for a table of marks and a positive integer",[IsTableOfMarks,IsPosInt],COM_FUN(39));
BindGlobal("TestRow",COM_FUN(40));
InstallMethod(IsInternallyConsistent,"for a table of marks, decomposition test",[IsTableOfMarks],COM_FUN(41));
InstallMethod(DerivedSubgroupTom,"for a table of marks, and a positive integer",[IsTableOfMarks,IsPosInt],COM_FUN(42));
InstallGlobalFunction(DerivedSubgroupsTom,COM_FUN(43));
InstallMethod(DerivedSubgroupsTomPossible,"for a table of marks (initialize with empty list)",[IsTableOfMarks],COM_FUN(44));
InstallMethod(NormalizerTom,"for a table of marks, and a positive integer",[IsTableOfMarks,IsPosInt],COM_FUN(45));
InstallMethod(NormalizersTom,"all normalizers of a table of marks",[IsTableOfMarks],COM_FUN(46));
InstallMethod(ContainedTom,[IsTableOfMarks,IsPosInt,IsPosInt],COM_FUN(47));
InstallMethod(ContainingTom,[IsTableOfMarks,IsPosInt,IsPosInt],COM_FUN(48));
InstallMethod(CyclicExtensionsTom,"for a table of marks (classes for all prime div. of the group order)",[IsTableOfMarks],COM_FUN(49));
InstallMethod(CyclicExtensionsTom,"for a table of marks, and a prime",[IsTableOfMarks,IsPosInt],COM_FUN(50));
InstallMethod(CyclicExtensionsTom,"for a table of marks, and a list (of primes)",[IsTableOfMarks,IsList],COM_FUN(51));
InstallMethod(ComputedCyclicExtensionsTom,[IsTableOfMarks],COM_FUN(52));
InstallMethod(CyclicExtensionsTomOp,"for one prime",[IsTableOfMarks,IsPosInt],COM_FUN(53));
InstallMethod(CyclicExtensionsTomOp,"for a table of marks, and a list (of primes)",[IsTableOfMarks,IsList],COM_FUN(54));
InstallMethod(DecomposedFixedPointVector,[IsTableOfMarks,IsList],COM_FUN(55));
InstallMethod(EulerianFunctionByTom,[IsTableOfMarks,IsPosInt],COM_FUN(56));
InstallMethod(EulerianFunctionByTom,[IsTableOfMarks,IsPosInt,IsPosInt],COM_FUN(57));
InstallMethod(EulerianFunction,"for a group with table of marks",[IsGroup and HasTableOfMarks,IsPosInt],10,COM_FUN(58));
InstallMethod(EulerianFunction,"for a group, compute table of marks",[IsGroup,IsPosInt],-RankFilter(IsGroup)-RankFilter(IsPosInt),COM_FUN(59));
InstallMethod(IntersectionsTom,[IsTableOfMarks,IsPosInt,IsPosInt],COM_FUN(60));
InstallMethod(FactorGroupTom,"for a table of marks, and a positive integer",[IsTableOfMarks,IsPosInt],COM_FUN(61));
InstallMethod(MaximalSubgroupsTom,"for a table of marks",[IsTableOfMarks],COM_FUN(62));
InstallMethod(MaximalSubgroupsTom,"for a table of marks, and a positive integer",[IsTableOfMarks,IsPosInt],COM_FUN(63));
InstallMethod(MinimalSupergroupsTom,"for a table of marks",[IsTableOfMarks,IsPosInt],COM_FUN(64));
InstallMethod(GeneratorsSubgroupsTom,"default method for a table of marks",[IsTableOfMarks],COM_FUN(65));
InstallMethod(RepresentativeTom,"for a table of marks with stored `GeneratorsSubgroupsTom' value",[IsTableOfMarks and HasGeneratorsSubgroupsTom,IsPosInt],COM_FUN(66));
InstallMethod(RepresentativeTom,"for a table of marks with stored `StraightLineProgramsTom' value",[IsTableOfMarks and HasStraightLineProgramsTom,IsPosInt],COM_FUN(67));
InstallMethod(RepresentativeTomByGenerators,[IsTableOfMarks and HasStraightLineProgramsTom,IsPosInt,IsHomogeneousList],COM_FUN(68));
InstallMethod(RepresentativeTomByGeneratorsNC,[IsTableOfMarks and HasStraightLineProgramsTom,IsPosInt,IsHomogeneousList],COM_FUN(69));
InstallMethod(PossibleFusionsCharTableTom,"for ordinary character table and table of marks",[IsOrdinaryTable,IsTableOfMarks],COM_FUN(70));
InstallMethod(PossibleFusionsCharTableTom,"for ordinary character table, table of marks, and record",[IsOrdinaryTable,IsTableOfMarks,IsRecord],COM_FUN(71));
InstallMethod(FusionCharTableTom,"for ordinary character table and table of marks",[IsOrdinaryTable,IsTableOfMarks],COM_FUN(72));
InstallMethod(PermCharsTom,"for explicit fusion map and table of marks",[IsList,IsTableOfMarks],COM_FUN(73));
InstallMethod(PermCharsTom,"for character table and table of marks",[IsOrdinaryTable,IsTableOfMarks],COM_FUN(74));
InstallMethod(TableOfMarksCyclic,"for a positive integer",[IsPosInt],COM_FUN(75));
InstallMethod(TableOfMarksDihedral,"for a positive integer",[IsPosInt],COM_FUN(76));
InstallMethod(TableOfMarksFrobenius,"tom of a Frobenius group",[IsPosInt,IsPosInt],COM_FUN(77));
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/tom.gi"

#F  file="lib/straight.gi" crc=88488596
RANK_FILTER_LIST  := [ 40227927, 1, 40227927, 1, 32769, 4, 40227927, 1, 
  40227927, 1, 4097, 1, 40227927, 1, 40227927, 1, 40227927, 1, 1985, 1, 
  39671706, 107, 39671706, 107, 39671706, 107, 39671706, 107, 39671706, 107, 
  39671706, 107, 32505602, 3, 32505602, 3, 39671706, 107, 39671706, 107, 
  39671706, 107, 39671706, 107, 17, 18, 39671706, 107, 32505602, 3, 39671706, 
  107, 32505602, 3, 32505602, 3, 39671706, 107, 65767820, 5, 39671706, 107, 
  32505602, 3, 39671706, 107, 17, 18, 39672218, 110, 7665940, 19, 39672218, 
  110, 39672218, 110, 39672218, 110, 513, 8, 513, 8, 39672218, 110, 39672218, 
  110, 39672218, 110, 39672218, 110, 39672218, 110, 39672218, 110, 39672218, 
  110, 17, 18, 39672218, 110, 17, 18, 20239155, 109, 20239155, 109, 20239155, 
  109, 20239155, 109, 7665940, 19, 20239155, 109, 7665940, 19, 20239155, 109, 
  20239155, 109, 17, 18, 17, 18, 20239155, 109, 58592771, 10, 8193, 2 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/straight.gi", 88488596 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/straight.gi\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/straight.gi");
elif COM_RESULT = 3  then
Revision.straight_gi:="@(#)$Id: straight.gi,v 4.28.2.3 2006/02/26 14:36:27 gap Exp $";
BindGlobal("StraightLineProgramsFamily",NewFamily("StraightLineProgramsFamily",IsStraightLineProgram));
BindGlobal("StraightLineProgramsDefaultType",NewType(StraightLineProgramsFamily,IsStraightLineProgram and IsAttributeStoringRep and HasLinesOfStraightLineProgram));
InstallGlobalFunction(StraightLineProgram,COM_FUN(1));
InstallGlobalFunction(StraightLineProgramNC,COM_FUN(2));
InstallGlobalFunction(StringToStraightLineProgram,COM_FUN(3));
InstallMethod(NrInputsOfStraightLineProgram,"for a straight line program",[IsStraightLineProgram],COM_FUN(4));
BindGlobal("ResultOfLineOfStraightLineProgram",COM_FUN(5));
InstallMethod(ResultOfStraightLineProgram,"for a straight line program, and a homogeneous list",[IsStraightLineProgram,IsHomogeneousList],COM_FUN(6));
InstallMethod(Display,"for a straight line program",[IsStraightLineProgram],COM_FUN(7));
InstallOtherMethod(Display,"for a straight line program, and a record",[IsStraightLineProgram,IsRecord],COM_FUN(8));
InstallMethod(IsInternallyConsistent,"for a straight line program",[IsStraightLineProgram],COM_FUN(9));
InstallMethod(PrintObj,"for a straight line program",[IsStraightLineProgram],COM_FUN(10));
InstallMethod(ViewObj,"for a straight line program",[IsStraightLineProgram],COM_FUN(11));
BindGlobal("StringOfResultOfLineOfStraightLineProgram",COM_FUN(12));
InstallGlobalFunction(StringOfResultOfStraightLineProgram,COM_FUN(13));
InstallGlobalFunction(CompositionOfStraightLinePrograms,COM_FUN(14));
InstallGlobalFunction("IntegratedStraightLineProgram",COM_FUN(15));
InstallMethod(StraightLineProgElmType,"generic",true,[IsFamily],0,COM_FUN(16));
InstallGlobalFunction(StraightLineProgElm,COM_FUN(17));
InstallGlobalFunction(EvalStraightLineProgElm,COM_FUN(18));
InstallGlobalFunction(StraightLineProgGens,COM_FUN(19));
InstallMethod(ViewObj,"straight line program elements",true,[IsStraightLineProgElm],0,COM_FUN(20));
InstallMethod(OneOp,"straight line program elements",true,[IsStraightLineProgElm],0,COM_FUN(21));
InverseSLPElm:=COM_FUN(22);
InstallMethod(Inverse,"straight line program elements",true,[IsStraightLineProgElm],0,InverseSLPElm);
InstallMethod(InverseOp,"straight line program elements",true,[IsStraightLineProgElm],0,InverseSLPElm);
InstallMethod(Order,"straight line program elements",true,[IsStraightLineProgElm],10,COM_FUN(23));
InstallMethod(\*,"straight line program element with x",true,[IsStraightLineProgElm,IsMultiplicativeElement],0,COM_FUN(24));
InstallMethod(\*,"x with straight line program element",true,[IsMultiplicativeElement,IsStraightLineProgElm],0,COM_FUN(25));
BindGlobal("PosSublOdd",COM_FUN(26));
InstallMethod(\*,"straight line program elements",IsIdenticalObj,[IsStraightLineProgElm,IsStraightLineProgElm],0,COM_FUN(27));
InstallMethod(\^,"power straight line program elements",true,[IsStraightLineProgElm,IsInt],0,COM_FUN(28));
InstallMethod(\=,"straight line program element with x",IsIdenticalObj,[IsStraightLineProgElm,IsMultiplicativeElement],0,COM_FUN(29));
InstallMethod(\<,"straight line program element with x",IsIdenticalObj,[IsStraightLineProgElm,IsMultiplicativeElement],0,COM_FUN(30));
InstallMethod(\<,"x with straight line program element",IsIdenticalObj,[IsMultiplicativeElement,IsStraightLineProgElm],0,COM_FUN(31));
InstallMethod(StretchImportantSLPElement,"arbitrary elements: do nothing",true,[IsMultiplicativeElementWithInverse],0,Ignore);
InstallMethod(StretchImportantSLPElement,"straight line program elements",true,[IsStraightLineProgElm],0,COM_FUN(32));
InstallMethod(\=,"x with straight line program element",IsIdenticalObj,[IsMultiplicativeElement,IsStraightLineProgElm],0,COM_FUN(33));
BindGlobal("ImgElmSLP",COM_FUN(34));
BindGlobal("ImgElmSLPNonrecursive",COM_FUN(35));
InstallOtherMethod(\^,"int with straight line perm",true,[IsInt,IsStraightLineProgElm and IsPerm],0,COM_FUN(36));
InstallOtherMethod(\/,"x with straight line perm",true,[IsPosInt,IsStraightLineProgElm and IsPerm],0,COM_FUN(37));
BindGlobal("LMPSLPSeed",COM_FUN(38));
InstallMethod(LargestMovedPoint,"straight line program permutation",true,[IsStraightLineProgElm and IsPerm],0,COM_FUN(39));
InstallMethod(\=,"straight line program element with perm",IsIdenticalObj,[IsStraightLineProgElm and IsPerm,IsPerm],0,COM_FUN(40));
InstallMethod(\=,"perm with straight line program element",IsIdenticalObj,[IsPerm,IsStraightLineProgElm and IsPerm],0,COM_FUN(41));
InstallMethod(\=,"straight line program perms",IsIdenticalObj,[IsStraightLineProgElm and IsPerm,IsStraightLineProgElm and IsPerm],0,COM_FUN(42));
InstallMethod(\<,"straight line program perms",IsIdenticalObj,[IsStraightLineProgElm and IsPerm,IsStraightLineProgElm and IsPerm],0,COM_FUN(43));
InstallMethod(IsOne,"straight line program perms",true,[IsStraightLineProgElm and IsPerm],0,COM_FUN(44));
InstallOtherMethod(CycleLengthOp,"straight line program perms",true,[IsPerm and IsStraightLineProgElm,IsInt],1,COM_FUN(45));
InstallOtherMethod(CycleOp,"straight line program perms",true,[IsPerm and IsStraightLineProgElm,IsInt],1,COM_FUN(46));
InstallMethod(ExtRepOfObj,"for a straight line program word",true,[IsAssocWord and IsStraightLineProgElm],0,COM_FUN(47));
InstallMethod(LetterRepAssocWord,"for a straight line program word",true,[IsAssocWord and IsStraightLineProgElm],0,COM_FUN(48));
InstallMethod(NumberSyllables,"for a straight line program word",true,[IsAssocWord and IsStraightLineProgElm],0,COM_FUN(49));
InstallMethod(GeneratorSyllable,"for a straight line program word",true,[IsAssocWord and IsStraightLineProgElm,IsPosInt],0,COM_FUN(50));
InstallMethod(ExponentSyllable,"for a straight line program word",true,[IsAssocWord and IsStraightLineProgElm,IsPosInt],0,COM_FUN(51));
InstallMethod(Length,"for a straight line program word",true,[IsAssocWord and IsStraightLineProgElm],0,COM_FUN(52));
InstallOtherMethod(Subword,"for a straight line program word",true,[IsAssocWord and IsStraightLineProgElm,IsInt,IsInt],0,COM_FUN(53));
InstallMethod(MappedWord,"for a straight line program word, and two lists",IsElmsCollsX,[IsAssocWord and IsStraightLineProgElm,IsAssocWordCollection,IsList],0,COM_FUN(54));
InstallGlobalFunction(TreeRepresentedWord,COM_FUN(55));
InstallGlobalFunction(SLPChangesSlots,COM_FUN(56));
InstallGlobalFunction(SLPOnlyNeededLinesBackward,COM_FUN(57));
InstallGlobalFunction(SLPReversedRenumbered,COM_FUN(58));
InstallGlobalFunction(RestrictOutputsOfSLP,COM_FUN(59));
InstallGlobalFunction(IntermediateResultOfSLP,COM_FUN(60));
InstallGlobalFunction(IntermediateResultsOfSLPWithoutOverwriteInner,COM_FUN(61));
InstallGlobalFunction(IntermediateResultsOfSLPWithoutOverwrite,COM_FUN(62));
InstallGlobalFunction(IntermediateResultOfSLPWithoutOverwrite,COM_FUN(63));
InstallGlobalFunction(ProductOfStraightLinePrograms,COM_FUN(64));
InstallGlobalFunction(RewriteStraightLineProgram,COM_FUN(65));
InstallGlobalFunction(NewCompositionOfStraightLinePrograms,COM_FUN(66));
InstallGlobalFunction(NewProductOfStraightLinePrograms,COM_FUN(67));
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/straight.gi"

#F  file="lib/memory.gi" crc=-124009148
RANK_FILTER_LIST  := [ 1985, 1, 48942925, 107, 8193, 2, 1, 0, 1, 0, 48942925, 
  107, 8194, 4, 24857226, 21, 48942925, 107, 48942925, 107, 48942925, 107, 
  48942925, 107, 48942925, 107, 48942925, 107, 48942925, 107, 48942925, 107, 
  17, 18, 48942925, 107, 48942925, 107, 48942925, 107, 48942925, 107, 
  48942925, 107, 32505602, 3, 48942925, 107, 32505602, 3, 48942925, 107, 
  32505602, 3, 48942925, 107, 48942925, 107, 48943437, 110, 17, 18, 48943437, 
  110, 17, 18, 48943437, 110, 48943437, 110, 17, 18, 48943437, 110, 8193, 2, 
  48943437, 110, 48943437, 110, 17, 18, 48943437, 110, 40246741, 134, 
  40246741, 134, 40246741, 134, 7665940, 19, 38141578, 12, 40246741, 134, 
  30625149, 10, 40246741, 134, 40246741, 134, 30625149, 10, 48942925, 107, 
  33671955, 108 ];
RANK_FILTER_COUNT := 1;

#C  load module, file, or complete
COM_RESULT := COM_FILE( "lib/memory.gi", -124009148 );
if COM_RESULT = fail  then
Error("cannot locate file \"lib/memory.gi\"");
elif COM_RESULT = 1  then
;
elif COM_RESULT = 2  then
;
elif COM_RESULT = 4  then
READ_CHANGED_GAP_ROOT("lib/memory.gi");
elif COM_RESULT = 3  then
Revision.memory_gi:="@(#)$Id: memory.gi,v 1.1.2.2 2006/08/19 13:09:13 gap Exp $";
InstallMethod(TypeOfObjWithMemory,"generic",true,[IsFamily],0,COM_FUN(1));
InstallGlobalFunction(GeneratorsWithMemory,COM_FUN(2));
InstallMethod(StripMemory,"for an object with memory",[IsObjWithMemory],COM_FUN(3));
InstallMethod(StripMemory,"for a list",[IsList],COM_FUN(4));
InstallMethod(StripMemory,"fallback for all objects",[IsObject],COM_FUN(5));
InstallMethod(ForgetMemory,"nice error message for all objects",[IsObject],COM_FUN(6));
InstallMethod(ForgetMemory,"nice error message for memory objects",[IsObjWithMemory],COM_FUN(7));
InstallMethod(ForgetMemory,"for a mutable list",[IsList and IsMutable],COM_FUN(8));
InstallGlobalFunction(StripStabChain,COM_FUN(9));
InstallGlobalFunction(CopyMemory,COM_FUN(10));
InstallGlobalFunction(GroupWithMemory,COM_FUN(11));
InstallGlobalFunction(SLPOfElm,COM_FUN(12));
InstallGlobalFunction(SLPOfElms,COM_FUN(13));
InstallOtherMethod(One,"partial method for a group (beats to ask family)",true,[IsMagmaWithOne and IsGroup],101,COM_FUN(14));
InstallMethod(ViewObj,"objects with memory",true,[IsObjWithMemory],0,COM_FUN(15));
InstallMethod(PrintObj,"objects with memory",true,[IsObjWithMemory],0,COM_FUN(16));
InstallMethod(\*,"objects with memory",true,[IsObjWithMemory,IsObjWithMemory],0,COM_FUN(17));
InstallMethod(One,"objects with memory",true,[IsObjWithMemory],0,COM_FUN(18));
InstallMethod(OneOp,"objects with memory",true,[IsObjWithMemory],0,COM_FUN(19));
InstallMethod(InverseOp,"objects with memory",true,[IsObjWithMemory],0,COM_FUN(20));
InstallMethod(\^,"objects with memory",true,[IsObjWithMemory,IsInt],0,COM_FUN(21));
InstallMethod(\=,"two objects with memory",IsIdenticalObj,[IsObjWithMemory,IsObjWithMemory],0,COM_FUN(22));
InstallGlobalFunction(SortFunctionWithMemory,COM_FUN(23));
InstallMethod(\<,"two objects with memory",IsIdenticalObj,[IsObjWithMemory,IsObjWithMemory],0,COM_FUN(24));
InstallMethod(\=,"objects with memory with x",IsIdenticalObj,[IsObjWithMemory,IsMultiplicativeElement],0,COM_FUN(25));
InstallMethod(\<,"objects with memory with x",IsIdenticalObj,[IsObjWithMemory,IsMultiplicativeElement],0,COM_FUN(26));
InstallMethod(\<,"x with objects with memory",IsIdenticalObj,[IsObjWithMemory,IsMultiplicativeElement],0,COM_FUN(27));
InstallMethod(Order,"object with memory",true,[IsObjWithMemory],0,COM_FUN(28));
InstallMethod(IsOne,"object with memory",true,[IsObjWithMemory],0,COM_FUN(29));
InstallMethod(LargestMovedPoint,"permutation with memory",true,[IsObjWithMemory and IsPerm],0,COM_FUN(30));
InstallMethod(\^,"integer and permutation with memory",true,[IsInt,IsObjWithMemory and IsPerm],0,COM_FUN(31));
InstallMethod(\/,"integer and permutation with memory",true,[IsInt,IsObjWithMemory and IsPerm],0,COM_FUN(32));
InstallOtherMethod(CycleLengthOp,"for a permutation with memory and an integer",true,[IsPerm and IsObjWithMemory,IsInt],0,COM_FUN(33));
InstallMethod(RestrictedPerm,"for a permutation with memory and a list of integers",true,[IsPerm and IsObjWithMemory,IsList],0,COM_FUN(34));
InstallMethod(SignPerm,"for a permutation with memory",true,[IsPerm and IsObjWithMemory],0,COM_FUN(35));
InstallOtherMethod(CycleOp,"for a permutation with memory and an integer",true,[IsPerm and IsObjWithMemory,IsInt],0,COM_FUN(36));
InstallOtherMethod(CycleStructurePerm,"for a permutation with memory",true,[IsPerm and IsObjWithMemory],0,COM_FUN(37));
InstallMethod(DimensionsMat,"for a matrix with memory",true,[IsMatrix and IsObjWithMemory],0,COM_FUN(38));
InstallMethod(Length,"for a matrix with memory",[IsMatrix and IsObjWithMemory],COM_FUN(39));
InstallMethod(ELM_LIST,"for a matrix with memory",true,[IsMatrix and IsObjWithMemory,IsPosInt],0,COM_FUN(40));
InstallOtherMethod(\*,"for a row vector and a matrix with memory",true,[IsListDefault and IsSmallList,IsMatrix and IsObjWithMemory],0,COM_FUN(41));
InstallOtherMethod(\*,"for a scalar and a matrix with memory",true,[IsScalar,IsMatrix and IsObjWithMemory],0,COM_FUN(42));
InstallOtherMethod(\*,"for a matrix with memory and a scalar",true,[IsMatrix and IsObjWithMemory,IsScalar],0,COM_FUN(43));
InstallOtherMethod(ProjectiveOrder,"object with memory",true,[IsObjWithMemory],0,COM_FUN(44));
InstallOtherMethod(Length,"for a word with memory",[IsObjWithMemory and IsWord],COM_FUN(45));
else
Error("unknown result code ", COM_RESULT );
fi;

#U  unbind temporary variables
Unbind(RANK_FILTER_LIST);
Unbind(RANK_FILTER_COUNT);
Unbind(COM_RESULT);
#E  file="lib/memory.gi"