Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Impressum mferctbl.gap   Sprache: unbekannt

 
Spracherkennung für: .gap vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

#############################################################################
##
#W  mferctbl.gap    character tables of mult.-free endom. rings Thomas Breuer
#W                                                            Juergen Mueller
##
#Y  Copyright (C)  2002,  Lehrstuhl D fuer Mathematik,  RWTH Aachen,  Germany
##
##  This file contains the following {\GAP} objects.
##
##  `MULTFREEINFO'
##      is the global variable that encodes the character tables of the
##      endomorphism rings of the faithful multiplicity-free permutation
##      modules of the sporadic simple groups and their cyclic and
##      bicyclic extensions.
##
##  `MultFreeEndoRingCharacterTables'
##      is a function that can be used for computing more detailed data
##      about the endomorphism rings from the compact information
##      stored in `MULTFREEINFO'.
##

#############################################################################
##
##  Print the banner if wanted.
##
if not ( GAPInfo.CommandLineOptions.q or GAPInfo.CommandLineOptions.b ) then
  Print(
"---------------------------------------------------------------------------\n",
"Loading the database of character tables of endomorphism rings of\n",
"multiplicity-free permutation modules of the sporadic simple groups and\n",
"their cyclic and bicyclic extensions, compiled by T. Breuer and J. Mueller.\n",
"---------------------------------------------------------------------------\n"
  );
fi;

#############################################################################
##
#V  MULTFREEINFO
##
##  `MULTFREEINFO' is an immutable record.
##  Its components are the `Identifier' values of the {\GAP} character
##  tables of the sporadic simple groups and their automorphism groups.
##  The value of the component corresponding to the group $G$, say,
##  is a list containing in the first position a string denoting the name of
##  $G$ in {\LaTeX} format, and in each of the remaining positions a triple
##  `[ <const>, <subgroup>, <ctbl> ]'
##  where <const> is a list of positive integers, <subgroup> is a string
##  that denotes the name of a subgroup $H$ of $G$, in {\LaTeX} format,
##  and <ctbl> is either the matrix of irreducible characters of the
##  endomorphism ring of the permutation module $(1_H)^G$ or `fail'
##  (indicating that the character table is not yet known).
##  The sum of irreducible characters of $G$ at the positions in <const>
##  is a multiplicity-free permutation character of $G$ that is induced from
##  the trivial character of $H$.
##
##  The ordering of the entries corresponds to the ordering in~\cite{BL96},
##  for the scope of the latter paper.
##
if IsBound( MULTFREEINFO ) then
  # Perhaps the file 'multfree.tst' has been processed in this session.
  # We will need an extended version of the data used in these tests.
  MakeReadWriteGlobal( "MULTFREEINFO" );
  UnbindGlobal( "MULTFREEINFO" );
fi;
BindGlobal( "MULTFREEINFO", rec() );

#############################################################################
##
#F  CollapsedAdjacencyMatricesFromCharacterTable( <mat> )
##
##  Let $X$ be the character table of an endomorphism algebra.
##  The collapsed adjacency matrix of the orbital graph that corresponds to
##  the $j$-th column of $X$ is given by $X^{-1} \cdot D_j \cdot X$, where
##  $D_j$ is the diagonal matrix whose diagonal is the $j$-th column of $X$.
##
BindGlobal( "CollapsedAdjacencyMatricesFromCharacterTable", function( mat )
    local tr,itr;

    if mat=fail then ## only for 2.B
        return fail;
    fi;
    tr:=TransposedMat(mat);
    itr:=Inverse(tr);
    return List([1..Length(mat)],
                j->tr*List([1..Length(mat)],i->mat[i][j]*itr[i]));
end );

#############################################################################
##
#F  MultFreeEndoRingCharacterTables( <name> )
##
##  For a string <name> that is the name of a sporadic simple group,
##  or a cyclic or bicyclic extension of a sporadic simple group,
##  `MultFreeEndoRingCharacterTables' returns a list of records that describe
##  the character tables of the endomorphism rings of the faithful
##  multiplicity-free permutation modules of this group,
##  in a format that is similar to the classification shown in~\cite{BL96}.
##
##  If <name> is the string `\"all\"' then `MultFreeEndoRingCharacterTables'
##  returns the list of records for all sporadic simple groups and their
##  cyclic or bicyclic extensions.
##
##  Each entry in the result list has the following components.
##  \beginitems
##  group &
##     {\LaTeX} format of <name>,
##
##  name &
##     <name>,
##
##  character &
##     the permutation character,
##
##  rank &
##     the rank of the character,
##
##  subgroup &
##     a string that is a name (in {\LaTeX} format) of the subgroup
##     from whose trivial character the permutation character is induced,
##
##  ctbl &
##     the matrix of irreducible characters of the endomorphism ring,
##     where the rows are labelled by the irreducible constituents of the
##     permutation character and the columns are labelled by the orbits of
##     the subgroup on its right cosets, which are ordered according to
##     their lengths.
##
##  mats &
##     the collapsed adjacency matrices, and
##
##  ATLAS &
##     a string that describes (in {\LaTeX} format) the constituents of the
##     permutation character, relative to the perfect group involved;
##     the format is described in the section~"ref:PermCharInfoRelative"
##     in the {\GAP} Reference Manual.
##  \enditems
##
##  In the one case where the character table is not (yet) known,
##  the components `ctbl' and `mats' have the value `fail'.
##
DeclareGlobalFunction( "MultFreeEndoRingCharacterTables" );

InstallGlobalFunction( MultFreeEndoRingCharacterTables, function( name )
    local alternat,  # list of alternative names
          result,    # the result list
          tbl,       # character table with `Identifier' value `name'
          group,     # value of the `group' component of each result entry
          len,       # length of the list stored for `name'
          chars,     # list of the permutation characters for `name'
          dername,   # name of derived subgroup
          tblsimp,   # character table of the derived subgroup of `tbl'
          info,      # list of `ATLAS' values
          i,         # loop over the permutation characters
          entry,     # one entry in the record for `name'
          pos;       # position in `alternative'

    alternat:= [ [ "Fi24'" ], [ "F3+" ] ];

    result:= [];
    if IsBound( MULTFREEINFO.( name ) ) then
      if 9 < Length( name ) and name{ [ 1 .. 9 ] } = "Isoclinic" then
        tbl:= CharacterTableIsoclinic(
                  CharacterTable( name{ [ 11 .. Length( name )-1 ] } ) );
      else
        tbl:= CharacterTable( name );
      fi;
      group:= MULTFREEINFO.( name )[1];
      len:= Length( MULTFREEINFO.( name ) );
      chars:= List( MULTFREEINFO.( name ){ [ 2 .. len ] },
                    x -> Sum( Irr( tbl ){ x[1] } ) );
      if Number( name, c -> c = '.' ) = 2 then
        if 9 < Length( name ) and name{ [ 1 .. 9 ] } = "Isoclinic" then
          dername:= name{ [ 11 .. Length( name )-1 ] };
        else
          dername:= name;
        fi;
        i:= Position( dername, '.' );
        dername:= dername{ [ 1 .. Position( dername, '.', i )-1 ] };
        tblsimp:= CharacterTable( dername );
        if 9 < Length( name ) and name{ [ 1 .. 9 ] } = "Isoclinic" then
          StoreFusion( tblsimp, GetFusionMap( tblsimp,
              CharacterTable( name{ [ 11 .. Length( name )-1 ] } ) ), tbl );
        fi;
        info:= PermCharInfoRelative( tblsimp, tbl, chars ).ATLAS;
      elif '.' in name then
        dername:= name{ [ 1 .. Position( name, '.' )-1 ] };
        if Int( dername ) = fail then
          tblsimp:= CharacterTable( dername );
          info:= PermCharInfoRelative( tblsimp, tbl, chars ).ATLAS;
        else
          info:= PermCharInfo( tbl, chars ).ATLAS;
        fi;
      else
        info:= PermCharInfo( tbl, chars ).ATLAS;
      fi;
      for i in [ 2 .. len ] do
        entry:= MULTFREEINFO.( name )[i];
        Add( result, rec( group     := group,
                          name      := name,
                          character := chars[ i-1 ],
                          charnmbs  := entry[1],
                          rank      := Length( entry[1] ),
                          subgroup  := entry[2],
                          ATLAS     := info[ i-1 ],
                          ctbl      := entry[3],
                          mats      :=
                CollapsedAdjacencyMatricesFromCharacterTable( entry[3] ) ) );
      od;
    elif name = "all" then
      for name in RecNames( MULTFREEINFO ) do
        Append( result, MultFreeEndoRingCharacterTables( name ) );
      od;
    else
      pos:= Position( alternat[1], name );
      if pos = fail then
        Error( "<name> must be the name of a ",
               "(cyclic or bicyclic extension of a)\n",
               "sporadic simple group, or the string \"all\"" );
      else
        return MultFreeEndoRingCharacterTables( alternat[2][ pos ] );
      fi;
    fi;
    return result;
end );

#############################################################################
##
#F  LinearCombinationString( <F>, <vectors>, <strings>, <multstring>, <val> )
##
BindGlobal( "LinearCombinationString",
    function( F, vectors, strings, multstring, val )
    local V, B, coeff, str, i;

    V:= VectorSpace( F, vectors );
    B:= Basis( V, vectors );
    coeff:= Coefficients( B, val );
    if coeff = fail then
      return fail;
    elif IsZero( coeff ) then
      return String( val );
    fi;

    str:= "";
    for i in [ 1 .. Length( coeff ) ] do
      if coeff[i] > 0 then
        if str <> "" then
          Append( str, "+" );
        fi;
        if coeff[i] = 1 and strings[i] = "" then
          Append( str, "1" );
        elif coeff[i] <> 1 then
          Append( str, String( coeff[i] ) );
          if strings[i] <> "" then
            Append( str, multstring );
          fi;
        fi;
        Append( str, strings[i] );
      elif coeff[i] < 0 then
        if coeff[i] = -1 then
          Append( str, "-" );
        else
          Append( str, String( coeff[i] ) );
          if strings[i] <> "" then
            Append( str, multstring );
          fi;
        fi;
        Append( str, strings[i] );
      fi;
    od;
    return str;
end );

#############################################################################
##
#F  Cubic( <irrat> )
##
##  The database contains nonquadratic irrationalities,
##  which are either cubic or quartic.
##  The function `Cubic' deals with these few cases.
##
Cubic:=function( irrat )
    local bas, str, dsp, atlas, display;

    if Conductor( irrat ) = 9 and irrat = ComplexConjugate( irrat ) then
        bas:= [ 1, EY(9), GaloisCyc( EY(9), 2 ) ];
        str:= [ "1", "y9", "y9*2" ];
        dsp:= [ "1", "EY(9)", "GaloisCyc(EY(9),2)" ];
    elif Conductor( irrat ) = 19 and irrat = ComplexConjugate( irrat ) then
        bas:= [ EC(19), GaloisCyc( EC(19), 2 ), GaloisCyc( EC(19), 4 ) ];
        str:= [ "c19", "c19*2", "c19*4" ];
        dsp:= [ "EC(19)", "GaloisCyc(EC(19),2)", "GaloisCyc(EC(19),4)" ];
    elif Conductor( irrat ) = 33 then
        bas:= [1, EV(33), GaloisCyc(EV(33),5), GaloisCyc(EV(33),7)];
        str:= [ "1", "v33", "v33*5", "v33*7" ];
        dsp:= [ "1", "EV(33)", "GaloisCyc(EV(33),5)", "GaloisCyc(EV(33),7)"];
    else
        Error( "this should not occur" );
    fi;

    atlas   := LinearCombinationString( Rationals, bas, str, "",  irrat );
    display := LinearCombinationString( Rationals, bas, dsp, "*", irrat );

    return rec( value:= irrat, ATLAS := atlas, display := display );
end;

#############################################################################
##
#F  CharacterLabels( <tbl> )
#F  CharacterLabels( <tbl2>, <tbl>] )
##
BindGlobal( "CharacterLabels", function( arg )
    local tbl, tbl2, tblfustbl2, irr, alp, degreeset, irreds, chi,
          nccl2, irr2, irreds2, irrnam2, rest, i, j, chi2, k, pos, result;

    if Length( arg ) = 1 and IsCharacterTable( arg[1] ) then
      tbl:= arg[1];
      tbl2:= false;
    elif Length( arg ) = 2 and ForAll( arg, IsCharacterTable ) then
      tbl:= arg[2];
      tbl2:= arg[1];
      tblfustbl2:= GetFusionMap( tbl, tbl2 );
      if tblfustbl2 = fail or Size( tbl2 ) <> 2 * Size( tbl ) then
        Error( "<tbl> must be of index 2 in <tbl2>, with stored fusion" );
      fi;
    else
      Error( "usage: CharacterLabels( [<tbl2>, ]<tbl> )" );
    fi;

    irr:= Irr( tbl );
    alp:= [ "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k",
            "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v",
            "w", "x", "y", "z" ];
    degreeset:= Set( List( irr, DegreeOfCharacter ) );

    # `irreds[i]' contains all irreducibles of `tbl' of the `i'-th degree.
    irreds:= List( degreeset, x -> [] );
    for chi in irr do
      Add( irreds[ Position( degreeset, chi[1] ) ], chi );
    od;

    # Extend the alphabet if necessary.
    while Length( alp ) < Maximum( List( irreds, Length ) ) do
      alp:= Concatenation( alp,
                List( alp, x -> Concatenation( "(", x, "')" ) ) );
    od;

    if tbl2 <> false then

      # Construct relative names for the irreducibles of `tbl2'.
      nccl2:= NrConjugacyClasses( tbl2 );
      irr2:= Irr( tbl2 );
      irreds2:= [];
      irrnam2:= [];
      rest:= List( irr2, x -> x{ tblfustbl2 } );
      for i in [ 1 .. Length( irreds ) ] do

        for j in [ 1 .. Length( irreds[i] ) ] do

          chi2:= irr2{ Filtered( [ 1 .. nccl2 ],
                       k -> rest[k] = irreds[i][j] ) };
          if Length( chi2 ) = 2 then

            # The `j'-th character of the `i'-th degree of `tbl' extends.
            Append( irreds2, chi2 );
            Add( irrnam2, Concatenation( String( chi2[1][1] ), alp[j], "^+" ) );
            Add( irrnam2, Concatenation( String( chi2[1][1] ), alp[j], "^-" ) );

          else

            # The `j'-th character of the `i'-th degree of `tbl' fuses
            # with another character of `tbl', of the same degree.
            for k in [ 1 .. nccl2 ] do
              if     rest[k][1] = 2 * degreeset[i]
                 and ScalarProduct( tbl, rest[k], irreds[i][j] ) <> 0 then
                pos:= Position( irreds2, irr2[k] );
                if pos = fail then
                  Add( irreds2, irr2[k] );
                  Add( irrnam2, Concatenation( String( degreeset[i] ), alp[j] ) );
                else
                  Append( irrnam2[ pos ], alp[j] );
                fi;
              fi;
            od;

          fi;

        od;

      od;

      result:= List( irr2, chi -> irrnam2[ Position( irreds2, chi ) ] );

    else
      result:= List( irr, chi -> Concatenation( String( chi[1] ),
        alp[ Position( irreds[ Position( degreeset, chi[1] ) ], chi ) ] ) );
    fi;

    return result;
end );

#############################################################################
##
#V  DisplayStringLabelledMatrixDefaults
##
BindGlobal( "DisplayStringLabelledMatrixDefaults", rec(
    format    := "GAP",
    rowlabels := [],
    rowalign  := [ "t" ],
    rowsep    := [ , "-" ],
    collabels := [],
    colalign  := [ "l" ],
    colsep    := [ , "|" ],
    legend    := "",
    header    := ""
    ) );

#############################################################################
##
#F  DisplayStringLabelledMatrix( <matrix>, <inforec> )
##
##  <inforec> must be a record;
##  the following components are supported
##  \beginitems
##  `header'
##      (default nothing)
##
##  `rowlabels'
##      list of row labels (default nothing)
##
##  `rowalign'
##      list of vertical alignments ("top", "bottom", "center";
##      default top alignment)
##      the first is for the column labels!
##
##  `rowsep'
##      list of strings that separate rows
##      the first is for the row above the column labels,
##      the second is for the row below the column labels!
##      default separate column labels from the other lines by a line
##
##  `collabels'
##      list of column labels (default nothing)
##
##  `colalign'
##      list of horizontal alignments ("left", "right", "center";
##      default left alignment of label, right alignment of the rest)
##      the first is for the row labels!
##
##  `colsep'
##      list of strings that separate columns
##      the first is for the column before the row labels,
##      the second is for the column after the row labels!
##      default separate row labels from the other columns with a pipe
##
##  `legend'
##
##  `format'
##      one of `\"GAP\"', `\"HTML\"', or `\"LaTeX\"' (default `\"GAP\"').
##  \enditems
##
##  improved version, better than the one in `mferctbl'!
##
BindGlobal( "DisplayStringLabelledMatrix", function( matrix, inforec )
    local header, rowlabels, collabels, legend, format,       # options
          inforec2, name,
          ncols, colwidth, row, i, len, fmat, max, fcollabels,
          openmat, openrow, align1, opencol, closecol, closerow, closemat,
          str, j;

    # Get the parameters.
    inforec2:= ShallowCopy( DisplayStringLabelledMatrixDefaults );
    for name in RecNames( inforec ) do
      inforec2.( name ):= inforec.( name );
    od;
    inforec:= inforec2;

    if inforec.format = "GAP" then

      # Compute the column widths (used in GAP format only).
      ncols:= Length( matrix[1] );
      if IsEmpty( inforec.collabels ) then
        colwidth:= ListWithIdenticalEntries( ncols, 0 );
      else
        colwidth:= List( inforec.collabels, Length );
#T may be non-dense list
      fi;
      for row in matrix do
        for i in [ 1 .. ncols ] do
          len:= Length( row[i] );
          if colwidth[i] < len then
            colwidth[i]:= len;
          fi;
        od;
      od;
      matrix:= List( matrix,
                 row -> List( [ 1 .. ncols ],
                            i -> String( row[i], colwidth[i] ) ) );
#T alignment!

      # Inspect the row labels.
      if not IsEmpty( inforec.rowlabels ) then
        max:= Maximum( List( inforec.rowlabels, Length ) ) + 1;
        inforec.rowlabels:= List( inforec.rowlabels, x -> String( x, -max ) );
#T label alignment!
      else
        max:= 0;
      fi;

      # Set the parameters.
      if IsBound( inforec.colsep[1] ) then
        Append( fcollabels, inforec.colsep[1] );
      fi;
      fcollabels:= String( "", max );
      if IsBound( inforec.colsep[2] ) then
        Append( fcollabels, inforec.colsep[2] );
      fi;
      for i in [ 1 .. ncols ] do
        Append( fcollabels, " " );
        if IsBound( inforec.collabels[i] ) then
          Append( fcollabels,
                  String( inforec.collabels[i], colwidth[i] ) );
        else
          Append( fcollabels,
                  String( "", colwidth[i] ) );
        fi;
        if IsBound( inforec.colsep[ i+2 ] ) then
          Append( fcollabels, inforec.colsep[ i+2 ] );
          Append( fcollabels, " " );
        fi;
      od;
      Append( fcollabels, "\n" );
      openmat:= Concatenation( ListWithIdenticalEntries( max + Sum( colwidth ) + Length( colwidth ) + 1, '-' ), "\n" );
      openrow:= ShallowCopy( inforec.rowlabels );
      for i in [ 1 .. Length( matrix ) + 2 ] do
        if not IsBound( openrow[i] ) then
          openrow[i]:= "";
        fi;
        if IsBound( inforec.colsep[1] ) then
          openrow[i]:= Concatenation( inforec.colsep[1], openrow[i] );
        fi;
        if IsBound( inforec.colsep[2] ) then
          openrow[i]:= Concatenation( openrow[i], inforec.colsep[2] );
        fi;
      od;
      opencol  := List( matrix[1], x -> " " );
      closecol := [];
      for i in [ 1 .. ncols ] do
        if IsBound( inforec.colsep[ i+2 ] ) then
          closecol[i]:= inforec.colsep[ i+2 ];
        else
          closecol[i]:= "";
        fi;
      od;
      closerow := List( matrix, x -> "\n" );
      closemat := "";

    elif inforec.format = "HTML" then

      # Translate alignment values from LaTeX to HTML.
      inforec.colalign:= ShallowCopy( inforec.colalign );
      for i in [ 1 .. Length( inforec.colalign ) ] do
        if IsBound( inforec.colalign[i] ) then
          if   inforec.colalign[i] = "l" then
            inforec.colalign[i]:= "left";
          elif inforec.colalign[i] = "r" then
            inforec.colalign[i]:= "right";
          elif inforec.colalign[i] = "c" then
            inforec.colalign[i]:= "center";
          fi;
        fi;
      od;

      inforec.rowalign:= ShallowCopy( inforec.rowalign );
      for i in [ 1 .. Length( inforec.rowalign ) ] do
        if IsBound( inforec.rowalign[i] ) then
          if   inforec.rowalign[i] = "l" then
            inforec.rowalign[i]:= "left";
          elif inforec.rowalign[i] = "r" then
            inforec.rowalign[i]:= "right";
          elif inforec.rowalign[i] = "c" then
            inforec.rowalign[i]:= "center";
          fi;
        fi;
      od;

      # Set the parameters.
      ncols:= Length( matrix[1] );
      fcollabels:= "\n<table align=\"center\"";
      if not IsEmpty( inforec.colsep ) then
        Append( fcollabels, " border=2" );
      fi;
      if not IsEmpty( inforec.collabels ) then
        Append( fcollabels, ">\n<tr>\n" );
        if not IsEmpty( inforec.rowlabels ) then
          Append( fcollabels, "<td>\n</td>\n" );
        fi;
        for i in [ 1 .. ncols ] do
          Append( fcollabels, "<td align=\"" );
          if IsBound( inforec.colalign[ i+1 ] ) then
            Append( fcollabels, inforec.colalign[ i+1 ] );
          else
            Append( fcollabels, "right" );
          fi;
          Append( fcollabels, "\">" );
          if IsBound( inforec.collabels[i] ) then
            Append( fcollabels, inforec.collabels[i] );
          fi;
          Append( fcollabels, "</td>\n" );
        od;
        Append( fcollabels, "</tr>\n" );
      fi;

      openmat:= "";

      if IsEmpty( inforec.rowlabels ) then
        openrow:= List( matrix, x -> "<tr>\n" );
      else
        if IsBound( inforec.colalign[1] ) then
          align1:= inforec.colalign[1];
        else
          align1:= "right";
        fi;
        openrow:= List( inforec.rowlabels,
                        x -> Concatenation( "<tr>\n<td align=\"", align1, "\">", x, "</td>\n" ) );
        for i in [ 1 .. Length( matrix ) ] do
          if not IsBound( openrow[i] ) then
            openrow[i]:= Concatenation( "<tr>\n<td align=\"", align1, "\"></td>\n" );
          fi;
        od;
      fi;

      opencol:= [];
      for i in [ 1 .. ncols ] do
        if IsBound( inforec.colalign[ i+1 ] ) then
          opencol[i]:= Concatenation( "<td align=\"", inforec.colalign[ i+1 ], "\">\n" );
        else
          opencol[i]:= "<td align=\"right\">\n";
        fi;
      od;
      closecol:= List( matrix[1], x -> "</td>\n" );
      closerow:= List( matrix, x -> "</tr>\n" );
      closemat:= "</table>\n";

    elif inforec.format = "LaTeX" then

      # Set the parameters.
      ncols:= Length( matrix[1] );
      fcollabels:= "\\begin{tabular}{";
      if IsBound( inforec.colsep[1] ) then
        Append( fcollabels, inforec.colsep[1] );
      fi;
      if IsBound( inforec.colalign[1] ) then
        Append( fcollabels, inforec.colalign[1] );
      elif not IsEmpty( inforec.rowlabels ) then
        Append( fcollabels, "l" );
      fi;
      for i in [ 1 .. ncols ] do
        if IsBound( inforec.colsep[ i+1 ] ) then
          Append( fcollabels, inforec.colsep[ i+1 ] );
        fi;
        if IsBound( inforec.colalign[ i+1 ] ) then
          Append( fcollabels, inforec.colalign[ i+1 ] );
        else
          Append( fcollabels, "r" );
        fi;
      od;
      if IsBound( inforec.colsep[ ncols+2 ] ) then
        Append( fcollabels, inforec.colsep[ ncols+2 ] );
      fi;
      Append( fcollabels, "}" );
      if IsBound( inforec.rowsep[1] ) then
        if inforec.rowsep[1] = "=" then
          Append( fcollabels, " \\hline\\hline" );
        else
          Append( fcollabels, " \\hline" );
        fi;
      fi;
      Append( fcollabels, "\n" );
      if not IsEmpty( inforec.collabels ) then
        for i in [ 1 .. ncols ] do
          if 1 < i or not IsEmpty( inforec.rowlabels ) then
            Append( fcollabels, " & " );
          fi;
          if IsBound( inforec.collabels[i] ) then
            Append( fcollabels, inforec.collabels[i] );
          fi;
          Append( fcollabels, "\n" );
        od;
        Append( fcollabels, " \\rule[-7pt]{0pt}{20pt} \\\\" );
        if IsBound( inforec.rowsep[2] ) then
          if inforec.rowsep[2] = "=" then
            Append( fcollabels, " \\hline\\hline" );
          else
            Append( fcollabels, " \\hline" );
          fi;
        fi;
        Append( fcollabels, "\n" );
      fi;

      openmat:= "";

      openrow:= ShallowCopy( inforec.rowlabels );
      for i in [ 1 .. Length( matrix ) ] do
        if not IsBound( openrow[i] ) then
            openrow[i]:= "";
        else
            openrow[i]:= Concatenation( "$", openrow[i], "$" );
        fi;
      od;

      closerow:= [];
      for i in [ 1 .. Length( matrix ) ] do
        if IsBound( inforec.rowsep[ i+2 ] ) then
          if inforec.rowsep[ i+2 ] = "=" then
            closerow[i]:= " \\\\ \\hline\\hline\n";
          else
            closerow[i]:= " \\\\ \\hline\n";
          fi;
        else
          closerow[i]:= " \\\\\n";
        fi;
      od;

      opencol:= List( matrix[1], x -> " & " );
      if IsEmpty( inforec.rowlabels ) then
        opencol[1]:= "";
      fi;
      closecol:= List( matrix[1], x -> "" );

      closemat:= "\\rule[-7pt]{0pt}{5pt}\\end{tabular}\n";

    else
      Error( "<inforec>.format must be one of `\"GAP\"', `\"HTML\"', `\"LaTeX\"'" );
    fi;

    # Put the string for the matrix together.
    str:= ShallowCopy( inforec.header );
    Append( str, fcollabels );
    Append( str, openmat );
    for i in [ 1 .. Length( matrix ) ] do
      row:= matrix[i];
      Append( str, openrow[i] );
      for j in [ 1 .. ncols ] do
        Append( str, opencol[j] );
        Append( str, row[j] );
        Append( str, closecol[j] );
      od;
      Append( str, closerow[i] );
    od;
    Append( str, closemat );
    Append( str, inforec.legend );

    # Return the string.
    return str;
end );

#############################################################################
##
#F  DisplayMultFreeEndoRingCharacterTable( <record> )
##
BindGlobal( "DisplayMultFreeEndoRingCharacterTable", function( record )
    local   name,  subname,  pos,  header,  mat,  triples,  legend,
            row,  mrow,  entry,  l,  triple,  tbl,  simpname,  tbl2,
            charlabels,  rowlabels,  collabels,  str;

    name:=record.group;
    if name[1] = '$' then
      name:= name{ [ 2 .. Length( name ) - 1 ] };
    fi;
    subname:= record.subgroup;
    if subname[1] = '$' then
      subname:= subname{ [ 2 .. Length( subname ) - 1 ] };
    fi;
    pos:= PositionSublist( subname, "\\leq" );
    if pos <> fail then
      subname:= Concatenation( subname{ [ 1 .. pos-1 ] }, "< ",
                               subname{ [ pos+5 .. Length( subname ) ] } );
    fi;
    pos:= PositionSublist( subname, "\\rightarrow" );
    if pos <> fail then
      subname:= Concatenation( subname{ [ 1 .. pos-1 ] }, "---> ",
                               subname{ [ pos+12 .. Length( subname ) ] } );
    fi;

    header:= Concatenation( "G = ", name, ", H = ", subname, "\n\n" );

    if IsMatrix( record.ctbl ) then

      mat:= [];
      triples:= [];
      legend:= "";
      for row in record.ctbl do
        mrow:= [];
        for entry in row do
          l:= Quadratic( entry );
          if IsRecord( l ) then
            Add( mrow, l.ATLAS );
          else
            l:= Cubic( entry );
            if not IsRecord( l ) then
              Error( "entry <l> not expected" );
            fi;
            Add( mrow, l.ATLAS );
          fi;
          if not IsInt( entry ) then
            AddSet( triples, [ l.ATLAS, l.display ] );
          fi;
        od;
        Add( mat, mrow );
      od;
      for triple in triples do
        Append( legend, "\n" );
        Append( legend, triple[1] );
        Append( legend, " = " );
        Append( legend, triple[2] );
      od;
#T better legend: only smallest multiple of several
#T (example: see first table of M12.2, multiples of r3 and r5)

      tbl:= CharacterTable( record.name );
      if '.' in record.name then
          simpname:= record.name{ [ 1 .. Position( record.name, '.' )-1 ] };
          if Int(simpname)=fail then
              tbl2:= tbl;
              tbl:= CharacterTable( simpname );
              charlabels:= CharacterLabels( tbl2, tbl );
          else
              charlabels:= CharacterLabels( tbl );
          fi;
      else
        charlabels:= CharacterLabels( tbl );
      fi;
      rowlabels:= charlabels{ record.charnmbs };
      collabels:= List( [ 1 .. record.rank ],
                        i -> Concatenation( "O_", String( i ) ) );
      str:= DisplayStringLabelledMatrix( mat,
                rec( header    := header,
                     rowlabels := rowlabels,
                     collabels := collabels,
                     legend    := legend,
                     format    := "GAP"      ) );
    else
      str:= Concatenation( header, "(character table not yet known)" );
    fi;
    Print( str, "\n" );
end );

#############################################################################
##
#F  MultFreeFromTOM( <name> )
##
##  For a string <name> that is a valid name for a table of marks in the
##  {\GAP} library of tables of marks, `MultFreeFromTOM' returns
##  the list of pairs $[ \pi, G ]$ where $\pi$ is a multiplicity free
##  permutation character of the group for <name>,
##  and $G$ is the corresponding permutation group,
##  as computed from the table of marks of this group.
##
##  If there is no table of marks for <name> or if the class fusion of the
##  character table for <name> into the table of marks is not unique then
##  `fail' is returned.
##
BindGlobal( "MultFreeFromTOM", function( name )
    local tom,      # the table of marks
          G,        # the underlying group
          t,        # the character table
          fus,      # fusion map from 't' to 'tom'
          perms,    # list of perm. characters
          multfree, # list of mult. free characters and perm. groups
          i,        # loop over `perms'
          H,        # point stabilizer
          tr,       # right transversal of `H' in `G'
          P;        # permutation action of `G' on the cosets of `H'

    tom:= TableOfMarks( name );
    if tom <> fail then

      G:= UnderlyingGroup( tom );
      t:= CharacterTable( name );
      fus:= FusionCharTableTom( t, tom );

      if ForAll( fus, IsInt ) then
        perms:= PermCharsTom( fus, tom );
        multfree:= [];
        for i in [ 1 .. Length( perms ) ] do
          if ForAll( Irr( t ),
                     chi -> ScalarProduct( t, chi, perms[i] ) <= 1 ) then
            H:= RepresentativeTom( tom, i );
            tr:= RightTransversal( G, H );
            P:= Action( G, tr, OnRight );
            Add( multfree, [ Character( t, perms[i] ), P ] );
          fi;
        od;
      else
        Print( "#E  fusion is not unique!\n" );
        multfree:= fail;
      fi;

    else
      multfree:= fail;
    fi;

    return multfree;
end );

#############################################################################
##
#F  OrbitAndTransversal( <gens>, <pt> )
##
##  Let <gens> be a list of permutations, and <pt> be a positive integer.
##  `OrbitAndTransversal' returns a record that describes the orbit of <pt>
##  under the group generated by <gens>, as follows.
##  The component `orb' is the orbit itself,
##  the component `from' is the list of predecessors,
##  the component `use' is the list of positions of generators used
##
OrbitAndTransversal := function( gens, pt )
    local orb,   # the orbit of `pt'
          sort,  # a sorted copy of `orb', for faster lookup
          from,  # list of points
          use,
          i,
          j,
          img;

    # Initialize the lists.
    orb  := [ pt ];
    sort := [ pt ];
    from := [ fail ];
    use  := [ fail ];

    # Compute the orbit.
    for i in orb do
      for j in [ 1 .. Length( gens ) ] do
        img:= i^gens[j];
        if not img in sort then
          Add( orb, img );
          AddSet( sort, img );
          Add( from, i );
          Add( use, j );
        fi;
      od;
    od;

    # Return the result.
    return rec( orb  := orb,
                from := from,
                use  := use,
                gens := gens );
    end;

#############################################################################
##
#F  RepresentativeFromTransversal( <orbitinfo>, <gens>, <pt> )
##
##  Let <orbitinfo> be a record returned by `OrbitAndTransversal', and <pt>
##  be a point in the orbit `<orbitinfo>.orb'.
##  `RepresentativeFromTransversal' returns an element in the group generated
##  by `<orbitinfo>.gens' that maps `<orbitinfo>.orb[1]' to <pt>.
##
RepresentativeFromTransversal := function( record, gens, pt2 )
    local orb, from, use, rep, pos;

    orb  := record.orb;
    from := record.from;
    use  := record.use;
    rep  := ();

    while pt2 <> orb[1] do
      pos:= Position( orb, pt2 );
      rep:= gens[ use[ pos ] ] * rep;
      pt2:= from[ pos ];
    od;

    return rep;
    end;

#############################################################################
##
#F  CollapsedAdjacencyMatricesInfo( <G>[, <order>][, <S>] )
##
##  Let <G> be a transitive permutations group,
##  $\omega$ the smallest point moved by <G>,
##  and $S$ the stabilizer of $\omega$ in <G>.
##  `CollapsedAdjacencyMatricesInfo' returns a record describing the
##  collapsed adjacency matrices of the permutation module.
##  The components are
##  `mats'
##      the collapsed adjacency matrices,
##
##  `points'
##      a list of representatives of the orbits of $S$ on the set of the
##      points moved by <G>,
##
##  `representatives' :
##      a list of elements in <G> such that the $i$-th entry maps $\omega$
##      to the $i$-th entry in the `points' list,
##
##  The order of <G> can be given as the optional argument <order>,
##  and the group $S$ can be given as the optional argument <S>.
##
CollapsedAdjacencyMatricesInfo := function( arg )
    local G,size,stab,points,gens,orbs,record,reps,mats,r,i,j,k,img;

    # Get and check the arguments.
    if   Length( arg ) = 1 and IsPermGroup( arg[1] ) then
      G    := arg[1];
      size := Size( G );
    elif Length( arg ) = 2 and IsPermGroup( arg[1] )
                           and IsPosInt( arg[2] ) then
      G    := arg[1];
      size := arg[2];
    elif Length( arg ) = 2 and IsPermGroup( arg[1] )
                           and IsPermGroup( arg[2] ) then
      G    := arg[1];
      size := Size( G );
      stab := arg[2];
    elif Length( arg ) = 3 and IsPermGroup( arg[1] )
                           and IsPosInt( arg[2] )
                           and IsPermGroup( arg[3] ) then
      G    := arg[1];
      size := arg[2];
      stab := arg[3];
    fi;
    points:= MovedPoints( G );
    if not IsBound( stab ) then
      stab:= Stabilizer( G, points[1] );
    fi;

    # Compute the orbits of the point stabilizer, and sort them.
    gens:= GeneratorsOfGroup( G );
    orbs:= List( Orbits( stab, points ), Set );
    SortParallel( List( orbs, Length ), orbs );

    # Compute representatives ...
    record:= OrbitAndTransversal( gens, orbs[1][1] );
    reps:= List( orbs,
                 x -> RepresentativeFromTransversal( record, gens, x[1] ) );

    # Compute the collapsed adjacency matrices.
    mats:= [];
    r:= Length( orbs );
    for i in [ 1 .. r ] do
      mats[i]:= [];
      for j in [ 1 .. r ] do
        mats[i][j]:= [];
      od;
      for k in [1 .. r] do
        img:= OnTuples( orbs[i], reps[k] );
        for j in [ 1 .. r ] do
          mats[i][j][k]:= Number( Intersection( orbs[j], img ) );
        od;
      od;
    od;

    # Return the result.
    return rec( mats            := mats,
                points          := List( orbs, x -> x[1] ),
                representatives := reps );
    end;


#############################################################################
##
##  The following component can be used for running over the groups in the
##  original order.
##  Note that from GAP 4.5 on, `RecNames' does not return the list of
##  component names in the same order as the assignments of the components.
##
MULTFREEINFO.allnames:= [ "M11", "M12", "J1", "M22", "J2", "M23", "HS", "J3",
    "M24", "McL", "He", "Ru", "Suz", "ON", "Co3", "Co2", "Fi22", "HN", "Ly",
    "Th", "Fi23", "Co1", "J4", "F3+", "B", "M", "M12.2", "M22.2", "J2.2",
    "HS.2", "J3.2", "McL.2", "He.2", "Suz.2", "ON.2", "Fi22.2", "HN.2",
    "F3+.2", "2.M12", "2.M22", "3.M22", "4.M22", "6.M22", "12.M22", "2.J2",
    "2.HS", "3.J3", "3.McL", "2.Ru", "2.Suz", "3.Suz", "6.Suz", "3.ON",
    "2.Fi22", "3.Fi22", "6.Fi22", "2.Co1", "3.F3+", "2.B", "2.M12.2",
    "Isoclinic(2.M12.2)", "2.M22.2", "Isoclinic(2.M22.2)", "3.M22.2",
    "4.M22.2", "Isoclinic(4.M22.2)", "6.M22.2", "Isoclinic(6.M22.2)",
    "12.M22.2", "Isoclinic(12.M22.2)", "2.J2.2", "Isoclinic(2.J2.2)",
    "2.HS.2", "Isoclinic(2.HS.2)", "3.J3.2", "3.McL.2", "2.Suz.2",
    "Isoclinic(2.Suz.2)", "3.Suz.2", "6.Suz.2", "Isoclinic(6.Suz.2)",
    "3.ON.2", "2.Fi22.2", "Isoclinic(2.Fi22.2)", "3.Fi22.2", "6.Fi22.2",
    "Isoclinic(6.Fi22.2)", "3.F3+.2" ];


MULTFREEINFO.("M11"):= ["$M_{11}$",
##
[[1,2],"$A_6.2_3$",
 [[1,10],
  [1,-1]]],
##
[[1,2,5],"$A_6 \\leq A_6.2_3$",
 [[1,1,20],
  [1,1,-2],
  [1,-1,0]]],
##
[[1,5],"$L_2(11)$",
 [[1,11],
  [1,-1]]],
##
[[1,5,6,7,9,10],"$11:5 \\leq L_2(11)$",
 [[1,11,11,11,55,55],
  [1,-1,-1,11,-5,-5],
  [1,(-5-3*ER(-11))/2,(-5+3*ER(-11))/2,-1,-5,10],
  [1,(-5+3*ER(-11))/2,(-5-3*ER(-11))/2,-1,-5,10],
  [1,3,3,-1,-5,-1],
  [1,-1,-1,-1,7,-5]]],
##
[[1,2,8],"$3^2:Q_8.2$",
 [[1,18,36],
  [1,7,-8],
  [1,-2,1]]],
##
[[1,2,8,10],"$3^2:8 \\leq 3^2:Q_8.2$",
 [[1,1,36,72],
  [1,1,14,-16],
  [1,1,-4,2],
  [1,-1,0,0]]],
##
[[1,2,5,8],"$A_5.2$",
 [[1,15,20,30],
  [1,-7,-2,8],
  [1,-3,8,-6],
  [1,2,-2,-1]]]];

MULTFREEINFO.("M12"):= ["$M_{12}$",
##
[[1,2],"$M_{11}$",
 [[1,11],
  [1,-1]]],
##
[[1,3],"$M_{11}$",
 [[1,11],
  [1,-1]]],
##
[[1,2,3,8,11],"$L_2(11) \\leq M_{11}$",
 [[1,11,11,55,66],
  [1,-1,11,-5,-6],
  [1,11,-1,-5,-6],
  [1,-1,-1,7,-6],
  [1,-1,-1,-5,6]]],
##
[[1,2,7],"$A_6.2^2$",
 [[1,20,45],
  [1,8,-9],
  [1,-2,1]]],
##
[[1,2,3,7,8],"$A_6.2_1 \\leq A_6.2^2$",
 [[1,1,40,45,45],
  [1,-1,0,15,-15],
  [1,1,16,-9,-9],
  [1,1,-4,1,1],
  [1,-1,0,-3,3]]],
##
[[1,2,7,11],"$A_6.2_2 \\leq A_6.2^2$",
 [[1,1,40,90],
  [1,1,16,-18],
  [1,1,-4,2],
  [1,-1,0,0]]],
##
[[1,3,7],"$A_6.2^2$",
 [[1,20,45],
  [1,8,-9],
  [1,-2,1]]],
##
[[1,2,3,7,8],"$A_6.2_1 \\leq A_6.2^2$",
 [[1,1,40,45,45],
  [1,1,16,-9,-9],
  [1,-1,0,15,-15],
  [1,1,-4,1,1],
  [1,-1,0,-3,3]]],
##
[[1,3,7,11],"$A_6.2_2 \\leq A_6.2^2$",
 [[1,1,40,90],
  [1,1,16,-18],
  [1,1,-4,2],
  [1,-1,0,0]]],
##
[[1,4,5,6,11],"$L_2(11)$",
 [[1,11,11,55,66],
  [1,(-5-3*ER(-11))/2,(-5+3*ER(-11))/2,10,-6],
  [1,(-5+3*ER(-11))/2,(-5-3*ER(-11))/2,10,-6],
  [1,3,3,-1,-6],
  [1,-1,-1,-5,6]]],
##
[[1,2,7,8,12],"$3^2.2.S_4$",
 [[1,12,27,72,108],
  [1,-4,15,-24,12],
  [1,1,5,6,-13],
  [1,5,-3,-6,3],
  [1,-3,-3,2,3]]],
##
[[1,2,6,7,8,10,12,13],"$3^2:2.A_4 \\leq 3^2.2.S_4$",
 [[1,1,24,27,27,72,72,216],
  [1,1,-8,15,15,-24,-24,24],
  [1,-1,0,3,-3,16,-16,0],
  [1,1,2,5,5,6,6,-26],
  [1,1,10,-3,-3,-6,-6,6],
  [1,-1,0,-9,9,0,0,0],
  [1,1,-6,-3,-3,2,2,6],
  [1,-1,0,3,-3,-6,6,0]]],
##
[[1,3,7,8,12],"$3^2.2.S_4$",
 [[1,12,27,72,108],
  [1,-4,15,-24,12],
  [1,1,5,6,-13],
  [1,5,-3,-6,3],
  [1,-3,-3,2,3]]],
##
[[1,3,6,7,8,9,12,13],"$3^2:2.A_4 \\leq 3^2.2.S_4$",
 [[1,1,24,27,27,72,72,216],
  [1,1,-8,15,15,-24,-24,24],
  [1,-1,0,3,-3,16,-16,0],
  [1,1,2,5,5,6,6,-26],
  [1,1,10,-3,-3,-6,-6,6],
  [1,-1,0,-9,9,0,0,0],
  [1,1,-6,-3,-3,2,2,6],
  [1,-1,0,3,-3,-6,6,0]]]];

MULTFREEINFO.("J1"):= ["$J_1$",
##
[[1,2,3,4,6],"$L_2(11)$",
 [[1,11,12,110,132],
  [1,(-7-ER(5))/2,(-3+3*ER(5))/2,(5+7*ER(5))/2,(3-9*ER(5))/2],
  [1,(-7+ER(5))/2,(-3-3*ER(5))/2,(5-7*ER(5))/2,(3+9*ER(5))/2],
  [1,4,-2,5,-8],
  [1,1,4,-10,4]]],
##
[[1,2,3,4,7,8,9,10,11,12,15],"$2^3.7.3$",
 [[1,8,28,56,56,56,168,168,168,168,168],
  [1,-2-ER(5),1+3*ER(5),1+4*ER(5),-11-ER(5),(23-7*ER(5))/2,6*ER(5),
   (-33+3*ER(5))/2,(27+9*ER(5))/2,-6-6*ER(5),(15-15*ER(5))/2],
  [1,-2+ER(5),1-3*ER(5),1-4*ER(5),-11+ER(5),(23+7*ER(5))/2,-6*ER(5),
   (-33-3*ER(5))/2,(27-9*ER(5))/2,-6+6*ER(5),(15+15*ER(5))/2],
  [1,2,11,-4,4,-2,-24,-6,12,18,-12],
  [1,-2-ER(5),-7,1+4*ER(5),-4+4*ER(5),-4-ER(5),3,3-9*ER(5),3-3*ER(5),
   18+3*ER(5),-12+3*ER(5)],
  [1,-2+ER(5),-7,1-4*ER(5),-4-4*ER(5),-4+ER(5),3,3+9*ER(5),3+3*ER(5),
   18-3*ER(5),-12-3*ER(5)],
  [1,-EC(19)-2*GaloisCyc(EC(19),2)-2*GaloisCyc(EC(19),4),
   2*GaloisCyc(EC(19),4),4*EC(19)-GaloisCyc(EC(19),2),
   -EC(19)+2*GaloisCyc(EC(19),2)-2*GaloisCyc(EC(19),4),
   7*EC(19)+7*GaloisCyc(EC(19),2)+6*GaloisCyc(EC(19),4),
   -6*EC(19)-2*GaloisCyc(EC(19),2)-GaloisCyc(EC(19),4),
   3*EC(19)+GaloisCyc(EC(19),2)+2*GaloisCyc(EC(19),4),
   -EC(19)+2*GaloisCyc(EC(19),2)-5*GaloisCyc(EC(19),4),
   5*EC(19)+4*GaloisCyc(EC(19),2)+8*GaloisCyc(EC(19),4),
   -9*EC(19)-10*GaloisCyc(EC(19),2)-7*GaloisCyc(EC(19),4)],
  [1,-2*EC(19)-2*GaloisCyc(EC(19),2)-GaloisCyc(EC(19),4),
   2*GaloisCyc(EC(19),2),-EC(19)+4*GaloisCyc(EC(19),4),
   2*EC(19)-2*GaloisCyc(EC(19),2)-GaloisCyc(EC(19),4),
   7*EC(19)+6*GaloisCyc(EC(19),2)+7*GaloisCyc(EC(19),4),
   -2*EC(19)-GaloisCyc(EC(19),2)-6*GaloisCyc(EC(19),4),
   EC(19)+2*GaloisCyc(EC(19),2)+3*GaloisCyc(EC(19),4),
   2*EC(19)-5*GaloisCyc(EC(19),2)-GaloisCyc(EC(19),4),
   4*EC(19)+8*GaloisCyc(EC(19),2)+5*GaloisCyc(EC(19),4),
   -10*EC(19)-7*GaloisCyc(EC(19),2)-9*GaloisCyc(EC(19),4)],
  [1,-2*EC(19)-GaloisCyc(EC(19),2)-2*GaloisCyc(EC(19),4),2*EC(19),
   4*GaloisCyc(EC(19),2)-GaloisCyc(EC(19),4),
   -2*EC(19)-GaloisCyc(EC(19),2)+2*GaloisCyc(EC(19),4),
   6*EC(19)+7*GaloisCyc(EC(19),2)+7*GaloisCyc(EC(19),4),
   -EC(19)-6*GaloisCyc(EC(19),2)-2*GaloisCyc(EC(19),4),
   2*EC(19)+3*GaloisCyc(EC(19),2)+GaloisCyc(EC(19),4),
   -5*EC(19)-GaloisCyc(EC(19),2)+2*GaloisCyc(EC(19),4),
   8*EC(19)+5*GaloisCyc(EC(19),2)+4*GaloisCyc(EC(19),4),
   -7*EC(19)-9*GaloisCyc(EC(19),2)-10*GaloisCyc(EC(19),4)],
  [1,3,1,1,4,9,15,-4,-14,-1,-15],
  [1,-3,1,1,4,3,-9,14,-8,-7,3]]]];

MULTFREEINFO.("M22"):= ["$M_{22}$",
##
[[1,2],"$L_3(4)$",
 [[1,21],
  [1,-1]]],
##
[[1,2,5],"$2^4:A_6$",
 [[1,16,60],
  [1,-6,5],
  [1,2,-3]]],
##
[[1,2,5,7,9],"$2^4:A_5 \\leq 2^4:A_6$",
 [[1,5,96,120,240],
  [1,5,-36,10,20],
  [1,5,12,-6,-12],
  [1,-1,0,12,-12],
  [1,-1,0,-8,8]]],
##
[[1,2,7],"$A_7$",
 [[1,70,105],
  [1,-18,17],
  [1,2,-3]]],
##
[[1,2,7],"$A_7$",
 [[1,70,105],
  [1,-18,17],
  [1,2,-3]]],
##
[[1,2,5,7],"$2^4:S_5$",
 [[1,30,40,160],
  [1,-3,18,-16],
  [1,9,-2,-8],
  [1,-3,-2,4]]],
##
[[1,2,5,6,7],"$2^3:L_3(2)$",
 [[1,7,42,112,168],
  [1,-4,9,24,-30],
  [1,4,9,-8,-6],
  [1,-3,2,-8,8],
  [1,1,-6,4,0]]],
##
[[1,2,5,7,12],"$A_6.2_3$",
 [[1,30,45,180,360],
  [1,8,-21,48,-36],
  [1,16,3,-16,-4],
  [1,-2,9,8,-16],
  [1,-2,-3,-4,8]]],
##
[[1,2,5,7,8,9],"$L_2(11)$",
 [[1,55,55,66,165,330],
  [1,15,-25,-6,45,-30],
  [1,13,13,-18,-3,-6],
  [1,-5,7,6,9,-18],
  [1,-7,-3,-6,1,14],
  [1,5,-3,6,-11,2]]]];

MULTFREEINFO.("J2"):= ["$J_2$",
##
[[1,6,7],"$U_3(3)$",
 [[1,36,63],
  [1,6,-7],
  [1,-4,3]]],
##
[[1,7,10,11],"$3.A_6.2_2$",
 [[1,36,108,135],
  [1,-4,-12,15],
  [1,8,-4,-5],
  [1,-4,8,-5]]],
##
[[1,2,3,6,10,12],"$2^{1+4}_{-}:A_5$",
 [[1,10,32,32,80,160],
  [1,-5,2-6*ER(5),2+6*ER(5),20,-20],
  [1,-5,2+6*ER(5),2-6*ER(5),20,-20],
  [1,5,-8,-8,10,0],
  [1,3,4,4,-4,-8],
  [1,-2,-1,-1,-4,7]]],
##
[[1,6,7,10,12,13],"$2^{2+4}.(3 \\times S_3)$",
 [[1,12,32,96,192,192],
  [1,7,-8,16,-28,12],
  [1,-3,12,6,-18,2],
  [1,5,4,-2,10,-18],
  [1,0,-1,-12,0,12],
  [1,-3,-4,6,6,-6]]],
##
[[1,7,10,11,12,13,18],"$A_4 \\times A_5$",
 [[1,15,20,24,180,240,360],
  [1,5,10,-6,0,20,-30],
  [1,1,6,10,-16,-12,10],
  [1,-5,0,4,20,0,-20],
  [1,6,-4,0,9,-12,0],
  [1,-3,2,-6,0,-12,18],
  [1,-1,-4,0,-12,16,0]]]];

MULTFREEINFO.("M23"):= ["$M_{23}$",
##
[[1,2],"$M_{22}$",
 [[1,22],
  [1,-1]]],
##
[[1,2,5],"$L_3(4).2_2$",
 [[1,112,140],
  [1,-26,25],
  [1,2,-3]]],
##
[[1,2,5],"$2^4:A_7$",
 [[1,112,140],
  [1,-26,25],
  [1,2,-3]]],
##
[[1,2,5,9],"$A_8$",
 [[1,15,210,280],
  [1,-8,49,-42],
  [1,4,1,-6],
  [1,-3,-6,8]]],
##
[[1,2,5,16],"$M_{11}$",
 [[1,165,330,792],
  [1,-65,100,-36],
  [1,19,16,-36],
  [1,-3,-6,8]]]];

MULTFREEINFO.("HS"):= ["$HS$",
##
[[1,2,3],"$M_{22}$",
 [[1,22,77],
  [1,-8,7],
  [1,2,-3]]],
##
[[1,7],"$U_3(5).2$",
 [[1,175],
  [1,-1]]],
##
[[1,2,5,7],"$U_3(5) \\leq U_3(5).2$",
 [[1,1,175,175],
  [1,-1,35,-35],
  [1,-1,-5,5],
  [1,1,-1,-1]]],
##
[[1,7],"$U_3(5).2$",
 [[1,175],
  [1,-1]]],
##
[[1,2,6,7],"$U_3(5) \\leq U_3(5).2$",
 [[1,1,175,175],
  [1,-1,35,-35],
  [1,-1,-5,5],
  [1,1,-1,-1]]],
##
[[1,2,3,7,13],"$L_3(4).2_1$",
 [[1,42,105,280,672],
  [1,12,-45,80,-48],
  [1,22,5,-20,-8],
  [1,-2,17,16,-32],
  [1,-2,-3,-4,8]]],
##
[[1,3,4,7,9],"$A_8.2$",
 [[1,28,105,336,630],
  [1,-12,25,16,-30],
  [1,8,15,-24,0],
  [1,6,-5,28,-30],
  [1,-2,-5,-4,10]]],
##
[[1,2,3,4,5,6,7,9,10],"$A_8 \\leq A_8.2$",
 [[1,1,28,28,105,105,336,336,1260],
  [1,-1,0,0,-35,35,-112,112,0],
  [1,1,-12,-12,25,25,16,16,-60],
  [1,1,8,8,15,15,-24,-24,0],
  [1,-1,-10,10,15,-15,-12,12,0],
  [1,-1,10,-10,15,-15,-12,12,0],
  [1,1,6,6,-5,-5,28,28,-60],
  [1,1,-2,-2,-5,-5,-4,-4,20],
  [1,-1,0,0,-5,5,8,-8,0]]],
##
[[1,2,3,4,7,9,10,13,18],"$4^3:L_3(2)$",
 [[1,28,64,112,336,448,896,896,1344],
  [1,-7,-36,42,-84,168,-224,56,84],
  [1,13,14,32,6,28,16,-164,54],
  [1,13,4,22,36,-32,-64,56,-36],
  [1,-5,20,2,6,52,16,16,-108],
  [1,3,4,2,-34,-12,16,16,4],
  [1,-7,-6,12,6,-12,16,-4,-6],
  [1,5,-10,-8,6,12,16,-4,-18],
  [1,-2,4,-8,6,-2,-19,-4,24]]],
##
[[1,2,3,5,7,10,13,16,22],"$M_{11}$",
 [[1,55,132,165,495,660,792,1320,1980],
  [1,5,52,-85,195,-140,72,-280,180],
  [1,-20,37,40,45,85,-138,-80,30],
  [1,-19,-12,-21,27,84,72,-24,-108],
  [1,7,4,37,63,-44,24,40,-132],
  [1,-4,13,-16,-3,-11,-18,56,-18],
  [1,12,-11,-8,13,21,-26,0,-2],
  [1,6,13,4,-23,9,22,-24,-8],
  [1,-4,-7,4,-3,-11,2,-4,22]]],
##
[[1,2,3,6,7,10,13,16,22],"$M_{11}$",
 [[1,55,132,165,495,660,792,1320,1980],
  [1,5,52,-85,195,-140,72,-280,180],
  [1,-20,37,40,45,85,-138,-80,30],
  [1,-19,-12,-21,27,84,72,-24,-108],
  [1,7,4,37,63,-44,24,40,-132],
  [1,-4,13,-16,-3,-11,-18,56,-18],
  [1,12,-11,-8,13,21,-26,0,-2],
  [1,6,13,4,-23,9,22,-24,-8],
  [1,-4,-7,4,-3,-11,2,-4,22]]],
##
[[1,3,4,7,9,13,16,17,18],"$4.2^4:S_5$",
 [[1,30,80,128,480,640,960,1536,1920],
  [1,15,20,-32,60,80,0,96,-240],
  [1,15,20,8,60,-20,0,-144,60],
  [1,-3,14,40,-48,68,36,-48,-60],
  [1,5,-10,8,0,20,-60,16,20],
  [1,7,4,0,-28,-32,16,32,0],
  [1,-5,10,-12,-10,10,-20,-4,30],
  [1,-5,0,8,20,-20,0,16,-20],
  [1,0,-10,-7,0,10,30,-24,0]]]];

MULTFREEINFO.("J3"):= ["$J_3$",
##
[[1,4,5,6,10,11,12,13],"$L_2(16).2$",
 [[1,85,120,510,680,1360,1360,2040],
  [1,13,12,-30,-40,28-36*ER(5),28+36*ER(5),-12],
  [1,13,12,-30,-40,28+36*ER(5),28-36*ER(5),-12],
  [1,-17,-18,0,0,68,68,-102],
  [1,13,-6,6,32,-8,-8,-30],
  [1,-4-ER(17),-6+2*ER(17),-11-5*ER(17),-2+6*ER(17),-8,-8,38-2*ER(17)],
  [1,-4+ER(17),-6-2*ER(17),-11+5*ER(17),-2-6*ER(17),-8,-8,38+2*ER(17)],
  [1,-5,12,24,-4,-8,-8,-12]]]];

MULTFREEINFO.("M24"):= ["$M_{24}$",
##
[[1,2],"$M_{23}$",
 [[1,23],
  [1,-1]]],
##
[[1,2,7],"$M_{22}.2$",
 [[1,44,231],
  [1,20,-21],
  [1,-2,1]]],
##
[[1,2,7,9],"$2^4:A_8$",
 [[1,30,280,448],
  [1,-15,70,-56],
  [1,7,4,-12],
  [1,-3,-6,8]]],
##
[[1,7,14],"$M_{12}.2$",
 [[1,495,792],
  [1,35,-36],
  [1,-9,8]]],
##
[[1,2,7,14,17],"$M_{12} \\leq M_{12}.2$",
 [[1,1,495,495,1584],
  [1,-1,-165,165,0],
  [1,1,35,35,-72],
  [1,1,-9,-9,16],
  [1,-1,3,-3,0]]],
##
[[1,7,9,14],"$2^6:3.S_6$",
 [[1,90,240,1440],
  [1,21,10,-32],
  [1,-9,20,-12],
  [1,-1,-12,12]]],
##
[[1,7,9,14,18],"$2^6:3.A_6 \\leq 2^6:3.S_6$",
 [[1,1,180,480,2880],
  [1,1,42,20,-64],
  [1,1,-18,40,-24],
  [1,1,-2,-24,24],
  [1,-1,0,0,0]]],
##
[[1,2,7,9,17],"$L_3(4).3.2_2$",
 [[1,63,210,630,1120],
  [1,39,-30,150,-160],
  [1,17,3,-37,16],
  [1,-3,23,3,-24],
  [1,-3,-9,3,8]]],
##
[[1,2,7,8,9,17,18],"$L_3(4).3 \\leq L_3(4).3.2_2$",
 [[1,1,63,63,420,1260,2240],
  [1,1,39,39,-60,300,-320],
  [1,1,17,17,6,-74,32],
  [1,-1,-21,21,0,0,0],
  [1,1,-3,-3,46,6,-48],
  [1,1,-3,-3,-18,6,16],
  [1,-1,3,-3,0,0,0]]],
##
[[1,7,9,14,19],"$2^6:(L_3(2) \\times S_3)$",
 [[1,42,56,1008,2688],
  [1,19,10,42,-72],
  [1,9,-10,-48,48],
  [1,-3,10,-24,16],
  [1,-3,-4,18,-12]]],
##
[[1,7,8,9,14,17,19,20],
"$2^6:(L_3(2) \\times 3) \\leq 2^6:(L_3(2) \\times S_3)$",
 [[1,1,56,56,84,2016,2688,2688],
  [1,1,10,10,38,84,-72,-72],
  [1,-1,-14,14,0,0,-168,168],
  [1,1,-10,-10,18,-96,48,48],
  [1,1,10,10,-6,-48,16,16],
  [1,-1,10,-10,0,0,-24,24],
  [1,1,-4,-4,-6,36,-12,-12],
  [1,-1,-4,4,0,0,32,-32]]],
##
[[1,7,9,14,17,18,19,20,23,24,26],
"$2^6:(7:3 \\times S_3) \\leq 2^6:(L_3(2) \\times S_3)$",
 [[1,7,168,168,224,224,2688,2688,8064,8064,8064],
  [1,7,76,76,40,40,-72,-72,-216,-216,336],
  [1,7,36,36,-40,-40,48,48,144,144,-384],
  [1,7,-12,-12,40,40,16,16,48,48,-192],
  [1,-1,12,-12,-8,8,0,0,-288,288,0],
  [1,-1,-24,24,-32,32,0,0,0,0,0],
  [1,7,-12,-12,-16,-16,-12,-12,-36,-36,144],
  [1,-1,12,-12,-8,8,112,-112,48,-48,0],
  [1,-1,12,-12,-8,8,-48,48,48,-48,0],
  [1,-1,-4,4,8,-8,60,60,-60,-60,0],
  [1,-1,-4,4,8,-8,-32,-32,32,32,0]]]];

MULTFREEINFO.("McL"):= ["$McL$",
##
[[1,2,4],"$U_4(3)$",
 [[1,112,162],
  [1,-28,27],
  [1,2,-3]]],
##
[[1,2,4,9],"$M_{22}$",
 [[1,330,462,1232],
  [1,-120,147,-28],
  [1,30,27,-58],
  [1,-3,-6,8]]],
##
[[1,2,4,9],"$M_{22}$",
 [[1,330,462,1232],
  [1,-120,147,-28],
  [1,30,27,-58],
  [1,-3,-6,8]]],
##
[[1,2,4,9,14],"$U_3(5)$",
 [[1,252,750,2625,3500],
  [1,-126,300,-525,350],
  [1,54,90,-15,-130],
  [1,-18,12,51,-46],
  [1,4,-10,-15,20]]],
##
[[1,4,12,14,15],"$3^{1+4}:2S_5$",
 [[1,90,1215,2430,11664],
  [1,35,225,-45,-216],
  [1,-1,-3,-69,72],
  [1,10,-25,30,-16],
  [1,-10,15,30,-36]]],
##
[[1,4,9,14,15,20],"$2.A_8$",
 [[1,210,2240,5040,6720,8064],
  [1,45,260,90,-540,144],
  [1,39,-28,72,60,-144],
  [1,-5,60,-60,60,-56],
  [1,-15,-10,90,-30,-36],
  [1,3,-28,-36,-12,72]]]];

MULTFREEINFO.("He"):= ["$He$",
##
[[1,2,3,6,9],"$S_4(4).2$",
 [[1,136,136,425,1360],
  [1,-18-14*ER(-7),-18+14*ER(-7),75,-40],
  [1,-18+14*ER(-7),-18-14*ER(-7),75,-40],
  [1,10,10,5,-26],
  [1,-4,-4,-9,16]]],
##
[[1,2,3,6,7,8,9],"$S_4(4) \\leq S_4(4).2$",
 [[1,1,272,272,425,425,2720],
  [1,1,-36-28*ER(-7),-36+28*ER(-7),75,75,-80],
  [1,1,-36+28*ER(-7),-36-28*ER(-7),75,75,-80],
  [1,1,20,20,5,5,-52],
  [1,-1,0,0,-5*ER(17),5*ER(17),0],
  [1,-1,0,0,5*ER(17),-5*ER(17),0],
  [1,1,-8,-8,-9,-9,32]]],
##
[[1,2,3,6,9,12,14],"$2^2.L_3(4).S_3$",
 [[1,105,720,840,840,1344,4480],
  [1,35,-120,-70-70*ER(-7),-70+70*ER(-7),224,0],
  [1,35,-120,-70+70*ER(-7),-70-70*ER(-7),224,0],
  [1,21,6,42,42,0,-112],
  [1,7,48,-28,-28,0,0],
  [1,-14,6,7,7,35,-42],
  [1,0,-15,0,0,-21,35]]],
##
[[1,2,3,6,7,8,9,12,14,15],"$2^2.L_3(4).3 \\leq 2^2.L_3(4).S_3$",
 [[1,1,105,105,1344,1344,1440,1680,1680,8960],
  [1,1,35,35,224,224,-240,-140-140*ER(-7),-140+140*ER(-7),0],
  [1,1,35,35,224,224,-240,-140+140*ER(-7),-140-140*ER(-7),0],
  [1,1,21,21,0,0,12,84,84,-224],
  [1,-1,-5*ER(17),5*ER(17),-64,64,0,0,0,0],
  [1,-1,5*ER(17),-5*ER(17),-64,64,0,0,0,0],
  [1,1,7,7,0,0,96,-56,-56,0],
  [1,1,-14,-14,35,35,12,14,14,-84],
  [1,1,0,0,-21,-21,-30,0,0,70],
  [1,-1,0,0,21,-21,0,0,0,0]]]];

MULTFREEINFO.("Ru"):= ["$Ru$",
##
[[1,5,6],"${^2F_4(2)^{\\prime}}.2$",
 [[1,1755,2304],
  [1,-65,64],
  [1,15,-16]]],
##
[[1,4,5,6,7],"${^2F_4(2)^{\\prime}} \\leq {^2F_4(2)^{\\prime}}.2$",
 [[1,1,2304,2304,3510],
  [1,-1,144,-144,0],
  [1,1,64,64,-130],
  [1,1,-16,-16,30],
  [1,-1,-16,16,0]]],
##
[[1,6,8,14,15,16,21,23,25,32],"$(2^2 \\times Sz(8)):3$",
 [[1,455,3640,5824,29120,29120,58240,87360,87360,116480],
  [1,-9,392,-208,816,352,-224,-1728,1056,-448],
  [1,39,-104,64,192,256,-512,192,384,-512],
  [1,-9,72,192,256,-288,-64,192,-224,-128],
  [1,23-2*ER(6),16-14*ER(6),-92+24*ER(6),68+28*ER(6),
  -64+76*ER(6),208+148*ER(6),216-84*ER(6),-192-72*ER(6),-184-104*ER(6)],
  [1,23+2*ER(6),16+14*ER(6),-92-24*ER(6),68-28*ER(6),
  -64-76*ER(6),208-148*ER(6),216+84*ER(6),-192+72*ER(6),-184+104*ER(6)],
  [1,-25,-40,-16,-80,-160,160,0,480,-320],
  [1,23,40,64,-256,32,64,-192,96,128],
  [1,-1,-64,-16,112,-64,-32,-288,-96,448],
  [1,-22,20,-16,-56,167,-116,153,-159,28]]]];

MULTFREEINFO.("Suz"):= ["$Suz$",
##
[[1,4,5],"$G_2(4)$",
 [[1,416,1365],
  [1,20,-21],
  [1,-16,15]]],
##
[[1,3,4,9,15],"$3.U_4(3):2$",
 [[1,280,486,8505,13608],
  [1,80,-54,405,-432],
  [1,-28,90,189,-252],
  [1,20,18,-75,36],
  [1,-8,-10,9,8]]],
##
[[1,2,3,4,9,10,11,15],"$3.U_4(3) \\leq 3.U_4(3):2$",
 [[1,1,486,486,560,8505,8505,27216],
  [1,-1,162,-162,0,-945,945,0],
  [1,1,-54,-54,160,405,405,-864],
  [1,1,90,90,-56,189,189,-504],
  [1,1,18,18,40,-75,-75,72],
  [1,-1,18,-18,0,63,-63,0],
  [1,-1,-18,18,0,-45,45,0],
  [1,1,-10,-10,-16,9,9,16]]],
##
[[1,2,3,9,11,12],"$U_5(2)$",
 [[1,891,1980,2816,6336,20736],
  [1,243,-180,512,-576,0],
  [1,-99,330,176,-264,-144],
  [1,33,30,8,96,-168],
  [1,-27,-30,32,24,0],
  [1,9,6,-40,-48,72]]],
##
[[1,2,4,6,9,12,16,17,27],"$2^{1+6}_-.U_4(2)$",
 [[1,54,360,1728,5120,9216,17280,46080,55296],
  [1,-27,90,432,800,-1152,-2160,-1440,3456],
  [1,21,30,276,-160,768,120,-1440,384],
  [1,3,-60,132,200,48,-60,360,-624],
  [1,15,48,12,128,-144,276,-96,-240],
  [1,-9,24,-36,80,144,-108,48,-144],
  [1,-11,10,48,-80,-64,80,80,-64],
  [1,9,6,0,-64,0,-144,192,0],
  [1,0,-12,-18,8,-9,36,-96,90]]],
##
[[1,3,4,5,9,11,12,15,17,27,28,30,33],"$2^{4+6}:3A_6$",
 [[1,60,480,1536,1920,6144,6144,20480,23040,23040,46080,92160,184320],
  [1,-15,30,336,120,1104,-96,-1120,-2160,-360,2880,-5040,4320],
  [1,27,84,216,336,-192,864,1472,72,864,-1440,-2880,576],
  [1,15,-60,-156,300,96,1104,-1120,-180,-720,720,1440,-1440],
  [1,21,90,-24,48,216,-96,-112,-360,576,-96,744,-1008],
  [1,-15,30,-96,120,96,-96,320,0,-360,0,0,0],
  [1,-3,18,24,-96,264,96,-16,360,-144,-288,-72,-144],
  [1,7,-36,116,76,48,-96,112,172,-96,240,240,-784],
  [1,15,36,-12,12,-96,-48,-160,252,-144,144,-288,288],
  [1,6,0,6,-42,-24,24,128,-180,-144,9,144,72],
  [1,-9,12,36,12,-48,0,-112,-36,0,-144,144,144],
  [1,-5,0,-16,-20,-24,24,40,40,120,240,-120,-280],
  [1,3,-24,-24,12,24,-24,-40,0,72,-144,-72,216]]]];

MULTFREEINFO.("ON"):= ["$ON$",
##
[[1,2,7,8,11],"$L_3(7).2$",
 [[1,5586,6384,52136,58653],
  [1,196,-106,161,-252],
  [1,-21,111,161,-252],
  [1,42,48,-280,189],
  [1,-56,-64,56,63]]],
##
[[1,2,7,8,10,11,18],"$L_3(7) \\leq L_3(7).2$",
 [[1,1,11172,12768,52136,52136,117306],
  [1,1,392,-212,161,161,-504],
  [1,1,-42,222,161,161,-504],
  [1,1,84,96,-280,-280,378],
  [1,-1,0,0,-343,343,0],
  [1,1,-112,-128,56,56,126],
  [1,-1,0,0,152,-152,0]]],
##
[[1,2,7,9,11],"$L_3(7).2$",
 [[1,5586,6384,52136,58653],
  [1,196,-106,161,-252],
  [1,-21,111,161,-252],
  [1,42,48,-280,189],
  [1,-56,-64,56,63]]],
##
[[1,2,7,9,10,11,18],"$L_3(7) \\leq L_3(7).2$",
 [[1,1,11172,12768,52136,52136,117306],
  [1,1,392,-212,161,161,-504],
  [1,1,-42,222,161,161,-504],
  [1,1,84,96,-280,-280,378],
  [1,-1,0,0,-343,343,0],
  [1,1,-112,-128,56,56,126],
  [1,-1,0,0,152,-152,0]]]];

MULTFREEINFO.("Co3"):= ["$Co_3$",
##
[[1,5],"$McL.2$",
 [[1,275],
  [1,-1]]],
##
[[1,2,4,5],"$McL \\leq McL.2$",
 [[1,1,275,275],
  [1,-1,55,-55],
  [1,-1,-5,5],
  [1,1,-1,-1]]],
##
[[1,2,5,9,15],"$HS$",
 [[1,352,1100,4125,5600],
  [1,-176,440,-825,560],
  [1,76,134,-15,-196],
  [1,-26,20,75,-70],
  [1,4,-10,-15,20]]],
##
[[1,2,4,5,9,13,15,24],"$M_{23}$",
 [[1,253,506,1771,7590,8855,14168,15456],
  [1,55,-286,847,-330,-2695,3080,-672],
  [1,-85,-86,147,870,105,-280,-672],
  [1,1,146,343,-330,455,56,-672],
  [1,10,-61,97,-105,80,-250,228],
  [1,-22,31,21,15,-120,-82,156],
  [1,28,11,1,75,-40,-52,-24],
  [1,-4,-5,-15,-21,24,44,-24]]],
##
[[1,5,13,15,20,31],"$3^5:(2 \\times M_{11})$",
 [[1,495,2673,32076,40095,53460],
  [1,35,741,2268,-1305,-1740],
  [1,-55,123,-324,495,-240],
  [1,35,93,-324,-225,420],
  [1,35,-15,0,207,-228],
  [1,-9,-15,44,-57,36]]],
##
[[1,2,4,5,9,13,15,20,22,24,28,31],"$3^5:M_{11} \\leq 3^5:(2 \\times M_{11})$",
 [[1,1,495,495,2673,2673,32076,32076,40095,40095,53460,53460],
  [1,-1,165,-165,1485,-1485,10692,-10692,4455,-4455,5940,-5940],
  [1,-1,-135,135,345,-345,-108,108,2655,-2655,-3660,3660],
  [1,1,35,35,741,741,2268,2268,-1305,-1305,-1740,-1740],
  [1,-1,15,-15,315,-315,-108,108,-945,945,-360,360],
  [1,1,-55,-55,123,123,-324,-324,495,495,-240,-240],
  [1,1,35,35,93,93,-324,-324,-225,-225,420,420],
  [1,1,35,35,-15,-15,0,0,207,207,-228,-228],
  [1,-1,33,-33,9,-9,-108,108,135,-135,36,-36],
  [1,-1,-27,27,21,-21,-108,108,63,-63,228,-228],
  [1,-1,-3,3,-27,27,108,-108,-81,81,-108,108],
  [1,1,-9,-9,-15,-15,44,44,-57,-57,36,36]]],
##
[[1,5,14,15,20,27,29],"$2.S_6(2)$",
 [[1,630,1920,8960,30240,48384,80640],
  [1,147,-288,1232,1260,2016,-4368],
  [1,-45,120,-40,540,-216,-360],
  [1,75,0,80,180,-576,240],
  [1,3,72,116,-252,72,-12],
  [1,15,0,-100,0,144,-60],
  [1,-18,-33,32,0,-54,72]]]];

MULTFREEINFO.("Co2"):= ["$Co_2$",
##
[[1,4,6],"$U_6(2).2$",
 [[1,891,1408],
  [1,63,-64],
  [1,-9,8]]],
##
[[1,2,4,6,7],"$U_6(2) \\leq U_6(2).2$",
 [[1,1,891,891,2816],
  [1,-1,297,-297,0],
  [1,1,63,63,-128],
  [1,1,-9,-9,16],
  [1,-1,-3,3,0]]],
##
[[1,4,5,6,8,15,17,28,36,39,44],"$U_5(2).2 \\leq U_6(2).2$",
 [[1,176,495,5346,8448,8910,14256,142560,253440,427680,684288],
  [1,176,495,378,-384,630,1008,10080,-11520,30240,-31104],
  [1,-16,15,1026,-768,270,-1296,4320,7680,-4320,-6912],
  [1,176,495,-54,48,-90,-144,-1440,1440,-4320,3888],
  [1,-16,15,378,384,-810,432,4320,-3840,-4320,3456],
  [1,8,-9,378,288,126,504,-1008,576,0,-864],
  [1,8,-9,-54,-288,414,360,576,-576,-1296,864],
  [1,-16,15,-54,-48,-90,144,0,480,0,-432],
  [1,-16,15,26,32,70,-96,-80,-320,80,288],
  [1,8,-9,-54,96,30,-24,192,192,-144,-288],
  [1,8,-9,26,-64,-50,-24,-128,-128,176,192]]],
##
[[1,2,3,4,5,6,7,8,15,16,17,19,21,28,35,36,39,42,44,48],
"$U_5(2) \\leq U_6(2).2$",
 [[1,1,176,176,495,495,5346,5346,8910,8910,14256,14256,16896,142560,
   142560,253440,253440,427680,427680,1368576],
  [1,-1,176,-176,495,-495,1782,-1782,-2970,2970,4752,-4752,0,-47520,47520,
   0,0,142560,-142560,0],
  [1,-1,-16,16,15,-15,1782,-1782,1350,-1350,-432,432,0,-12960,12960,
   -30720,30720,-12960,12960,0],
  [1,1,176,176,495,495,378,378,630,630,1008,1008,-768,10080,10080,
   -11520,-11520,30240,30240,-62208],
  [1,1,-16,-16,15,15,1026,1026,270,270,-1296,-1296,-1536,4320,4320,
   7680,7680,-4320,-4320,-13824],
  [1,1,176,176,495,495,-54,-54,-90,-90,-144,-144,96,-1440,-1440,1440,1440,
   -4320,-4320,7776],
  [1,-1,176,-176,495,-495,-18,18,30,-30,-48,48,0,480,-480,0,0,-1440,1440,0],
  [1,1,-16,-16,15,15,378,378,-810,-810,432,432,768,4320,4320,-3840,-3840,
   -4320,-4320,6912],
  [1,1,8,8,-9,-9,378,378,126,126,504,504,576,-1008,-1008,576,576,0,0,-1728],
  [1,-1,-16,16,15,-15,270,-270,-162,162,-432,432,0,-864,864,1536,-1536,
   -864,864,0],
  [1,1,8,8,-9,-9,-54,-54,414,414,360,360,-576,576,576,-576,-576,
   -1296,-1296,1728],
  [1,-1,-16,16,15,-15,-18,18,350,-350,368,-368,0,-960,960,1280,-1280,
   -960,960,0],
  [1,-1,8,-8,-9,9,270,-270,54,-54,216,-216,0,864,-864,0,0,432,-432,0],
  [1,1,-16,-16,15,15,-54,-54,-90,-90,144,144,-96,0,0,480,480,0,0,-864],
  [1,-1,8,-8,-9,9,-18,18,-138,138,120,-120,0,-192,192,0,0,-432,432,0],
  [1,1,-16,-16,15,15,26,26,70,70,-96,-96,64,-80,-80,-320,-320,80,80,576],
  [1,1,8,8,-9,-9,-54,-54,30,30,-24,-24,192,192,192,192,192,-144,-144,-576],
  [1,-1,-16,16,15,-15,-18,18,-18,18,0,0,0,144,-144,-192,192,144,-144,0],
  [1,1,8,8,-9,-9,26,26,-50,-50,-24,-24,-128,-128,-128,-128,-128,176,176,384],
  [1,-1,8,-8,-9,9,-18,18,54,-54,-72,72,0,0,0,0,0,144,-144,0]]],
##
[[1,4,6,14,17],"$2^{10}:M_{22}:2$",
 [[1,462,2464,21120,22528],
  [1,-21,532,-960,448],
  [1,87,64,120,-272],
  [1,-21,28,120,-128],
  [1,3,-20,-48,64]]],
##
[[1,2,4,6,7,14,17,20],"$2^{10}:M_{22} \\leq 2^{10}:M_{22}:2$",
 [[1,1,924,2464,2464,22528,22528,42240],
  [1,-1,0,1232,-1232,-5632,5632,0],
  [1,1,-42,532,532,448,448,-1920],
  [1,1,174,64,64,-272,-272,240],
  [1,-1,0,182,-182,368,-368,0],
  [1,1,-42,28,28,-128,-128,240],
  [1,1,6,-20,-20,64,64,-96],
  [1,-1,0,-10,10,-16,16,0]]],
##
[[1,2,4,7,14,18],"$McL$",
 [[1,275,2025,7128,15400,22275],
  [1,-165,945,-2376,3080,-1485],
  [1,91,369,504,-56,-909],
  [1,-45,105,24,-280,195],
  [1,19,9,-72,-56,99],
  [1,-5,-15,24,40,-45]]],
##
[[1,4,6,15,17],"$2^{1+8}:S_6(2)$",
 [[1,1008,1260,14336,40320],
  [1,-234,225,1088,-1080],
  [1,108,135,-64,-180],
  [1,18,-27,80,-72],
  [1,-18,9,-64,72]]],
##
[[1,4,6,14,17,27,33],"$HS.2$",
 [[1,3850,4125,44352,61600,132000,231000],
  [1,-14,1365,-2016,7504,-6000,-840],
  [1,490,285,-2016,-560,2640,-840],
  [1,-86,285,576,-416,480,-840],
  [1,178,21,288,-176,-624,312],
  [1,10,-35,64,160,160,-360],
  [1,-30,5,-96,-80,-80,280]]],
##
[[1,2,4,6,7,14,17,18,20,27,33,38],"$HS \\leq HS.2$",
 [[1,1,3850,3850,4125,4125,61600,61600,88704,231000,231000,264000],
  [1,-1,770,-770,2475,-2475,24640,-24640,0,46200,-46200,0],
  [1,1,-14,-14,1365,1365,7504,7504,-4032,-840,-840,-12000],
  [1,1,490,490,285,285,-560,-560,-4032,-840,-840,5280],
  [1,-1,-70,70,675,-675,1120,-1120,0,-4200,4200,0],
  [1,1,-86,-86,285,285,-416,-416,1152,-840,-840,960],
  [1,1,178,178,21,21,-176,-176,576,312,312,-1248],
  [1,-1,-190,190,75,-75,-320,320,0,600,-600,0],
  [1,-1,122,-122,99,-99,-416,416,0,408,-408,0],
  [1,1,10,10,-35,-35,160,160,128,-360,-360,320],
  [1,1,-30,-30,5,5,-80,-80,-192,280,280,-160],
  [1,-1,2,-2,-21,21,64,-64,0,-72,72,0]]]];

MULTFREEINFO.("Fi22"):= ["$Fi_{22}$",
##
[[1,3,7],"$2.U_6(2)$",
 [[1,693,2816],
  [1,63,-64],
  [1,-9,8]]],
##
[[1,3,9],"$O_7(3)$",
 [[1,3159,10920],
  [1,279,-280],
  [1,-9,8]]],
##
[[1,3,9],"$O_7(3)$",
 [[1,3159,10920],
  [1,279,-280],
  [1,-9,8]]],
##
[[1,7,9,13],"$O_8^+(2):S_3$",
 [[1,1575,22400,37800],
  [1,171,-64,-108],
  [1,-9,224,-216],
  [1,-9,-64,72]]],
##
[[1,4,7,8,9,13,15],"$O_8^+(2):3 \\leq O_8^+(2):S_3$",
 [[1,1,1575,1575,22400,22400,75600],
  [1,-1,225,-225,800,-800,0],
  [1,1,171,171,-64,-64,-216],
  [1,-1,-63,63,224,-224,0],
  [1,1,-9,-9,224,224,-432],
  [1,1,-9,-9,-64,-64,144],
  [1,-1,9,-9,-64,64,0]]],
##
[[1,3,7,9,13,14,17],"$O_8^+(2):2 \\leq O_8^+(2):S_3$",
 [[1,2,1575,3150,22400,44800,113400],
  [1,-1,315,-315,2240,-2240,0],
  [1,2,171,342,-64,-128,-324],
  [1,2,-9,-18,224,448,-648],
  [1,2,-9,-18,-64,-128,216],
  [1,-1,-45,45,80,-80,0],
  [1,-1,27,-27,-64,64,0]]],
##
[[1,2,3,5,7,10,11,17],"$2^{10}:M_{22}$",
 [[1,154,1024,3696,4928,11264,42240,78848],
  [1,-77,-320,924,1232,-1408,-5280,4928],
  [1,49,-176,546,-532,1184,-960,-112],
  [1,-35,160,294,-364,-400,120,224],
  [1,37,88,186,248,32,120,-712],
  [1,13,-32,6,-28,-112,120,32],
  [1,-17,-20,24,32,32,120,-172],
  [1,1,16,-30,-4,32,-96,80]]],
##
[[1,3,5,7,9,10,13,17,25,28],"$2^6:S_6(2)$",
 [[1,135,1260,2304,8640,10080,45360,143360,241920,241920],
  [1,-15,210,624,-960,1680,1260,8960,-1680,-10080],
  [1,-27,126,-288,216,1008,-2268,-1792,6048,-3024],
  [1,57,246,120,840,96,1368,-1408,120,-1440],
  [1,3,-60,192,192,312,-576,-256,-960,1152],
  [1,21,30,-96,-168,240,180,-256,-672,720],
  [1,27,36,0,0,-144,-432,512,0,0],
  [1,-15,66,48,-96,-48,-36,-256,48,288],
  [1,-9,0,-36,72,0,0,224,-252,0],
  [1,3,-24,12,-24,-12,72,-112,228,-144]]],
##
[[1,4,5,9,10,26,31,32,39,45,53],"${^2F_4(2)^{\\prime}}$",
 [[1,1755,11700,14976,83200,83200,140400,187200,374400,449280,2246400],
  [1,-405,900,-576,-3200,-3200,-10800,14400,-14400,17280,0],
  [1,-189,1980,-576,5440,5440,4320,-7200,-14400,13824,-8640],
  [1,171,612,-864,832,832,1008,3456,3744,-576,-9216],
  [1,99,540,576,-320,-320,-1440,-1440,2880,2304,-2880],
  [1,75,-60,192,-128,-128,624,384,-576,384,-768],
  [1,27,36,-144,-608,256,0,-288,-144,0,864],
  [1,27,36,-144,256,-608,0,-288,-144,0,864],
  [1,-21,132,96,64,64,-48,192,-288,-960,768],
  [1,27,-108,0,256,256,-432,0,0,0,0],
  [1,-45,-36,0,-32,-32,144,0,288,288,-576]]]];

MULTFREEINFO.("HN"):= ["$HN$",
##
[[1,2,3,4,5,8,10,11,12,18,20,23],"$A_{12}$",
 [[1,462,2520,2520,10395,16632,30800,69300,166320,166320,311850,362880],
  [1,-198,360*ER(5),-360*ER(5),2475,792,4400,-9900,-7920*ER(5),7920*ER(5),
   -14850,17280],
  [1,-198,-360*ER(5),360*ER(5),2475,792,4400,-9900,7920*ER(5),-7920*ER(5),
   -14850,17280],
  [1,132,-540,-540,1485,-1188,1100,4950,-5940,-5940,0,6480],
  [1,12,120,120,495,1332,-2200,300,-1080,-1080,-900,2880],
  [1,82,240,240,515,-88,400,900,640,640,-1650,-1920],
  [1,62,-120,-120,155,632,400,-300,80,80,1050,-1920],
  [1,-48,60*ER(5),-60*ER(5),225,-108,-100,-150,180*ER(5),-180*ER(5),900,-720],
  [1,-48,-60*ER(5),60*ER(5),225,-108,-100,-150,-180*ER(5),180*ER(5),900,-720],
  [1,12,30,30,-45,-18,50,-150,-270,-270,450,180],
  [1,-18,0,0,-45,72,80,180,0,0,-270,0],
  [1,12,-20,-20,5,-68,-100,-50,180,180,-200,80]]],
[[1,2,3,4,5,8,9,10,11,12,18,20,23,24,32,39,40,41,47],"$A_{11} \\leq A_{12}$",
 [[1,11,2772,2772,16632,20790,30240,30240,83160,99792,103950,362880,369600,
   831600,1247400,1995840,1995840,2494800,3991680],
  [1,11,-1188,-1188,792,4950,-4320*ER(5),4320*ER(5),3960,4752,24750,17280,
   52800,-118800,-59400,95040*ER(5),-95040*ER(5),-118800,190080],
  [1,11,-1188,-1188,792,4950,4320*ER(5),-4320*ER(5),3960,4752,24750,17280,
   52800,-118800,-59400,-95040*ER(5),95040*ER(5),-118800,190080],
  [1,11,792,792,-1188,2970,-6480,-6480,-5940,-7128,14850,6480,13200,59400,0,
   -71280,-71280,0,71280],
  [1,11,72,72,1332,990,1440,1440,6660,7992,4950,2880,-26400,3600,-3600,
   -12960,-12960,-7200,31680],
  [1,11,492,492,-88,1030,2880,2880,-440,-528,5150,-1920,4800,10800,-6600,
   7680,7680,-13200,-21120],
  [1,-1,-168,168,1428,1050,0,0,2100,-3528,-1050,-10080,0,0,25200,0,0,
   -25200,10080],
  [1,11,372,372,632,310,-1440,-1440,3160,3792,1550,-1920,4800,-3600,4200,
   960,960,8400,-21120],
  [1,11,-288,-288,-108,450,-720*ER(5),720*ER(5),-540,-648,2250,-720,-1200,
   -1800,3600,-2160*ER(5),2160*ER(5),7200,-7920],
  [1,11,-288,-288,-108,450,720*ER(5),-720*ER(5),-540,-648,2250,-720,-1200,
   -1800,3600,2160*ER(5),-2160*ER(5),7200,-7920],
  [1,11,72,72,-18,-90,360,360,-90,-108,-450,180,600,-1800,1800,-3240,-3240,
   3600,1980],
  [1,11,-108,-108,72,-90,0,0,360,432,-450,0,960,2160,-1080,0,0,-2160,0],
  [1,11,72,72,-68,10,-240,-240,-340,-408,50,80,-1200,-600,-800,2160,2160,
   -1600,880],
  [1,-1,-72,72,180,90,0,0,468,-648,-90,1440,0,0,-720,0,0,720,-1440],
  [1,-1,72,-72,68,250,0,0,100,-168,-250,-480,0,0,-1200,0,0,1200,480],
  [1,-1,12,-12,208,-50,0,0,-400,192,50,320,0,0,400,0,0,-400,-320],
  [1,-1,36,-36,-144,-18,0,0,144,0,18,576,0,0,1008,0,0,-1008,-576],
  [1,-1,-48,48,-102,150,0,0,-150,252,-150,-180,0,0,0,0,0,0,180],
  [1,-1,-8,8,-12,-150,0,0,100,-88,150,-480,0,0,-400,0,0,400,480]]],
##
[[1,5,8,9,10,17,18,20,24],"$2.HS.2$",
 [[1,1408,2200,5775,35200,123200,277200,354816,739200],
  [1,208,-50,525,2200,-2800,-6300,2016,4200],
  [1,-112,300,75,1000,-2200,3600,-864,-1800],
  [1,208,100,-525,1000,1400,0,2016,-4200],
  [1,128,200,375,0,1600,0,-2304,0],
  [1,-47,-50,0,250,350,0,-504,0],
  [1,28,-50,75,-50,-100,450,396,-750],
  [1,-32,40,15,-80,80,-360,576,-240],
  [1,16,4,-45,-56,-136,0,-288,504]]],
##
[[1,4,5,9,11,12,18,19,21,22,25,26,32,34,35,36,37,41,49],"$U_3(8).3_1$",
 [[1,1539,14364,25536,25536,25536,68096,131328,229824,229824,612864,612864,
   612864,612864,689472,787968,787968,5515776,5515776],
  [1,-81,3024,-1344,-4704,-1344,7616,1728,-12096,-12096,-12096,-12096,28224,
   28224,54432,-67392,36288,-108864,72576],
  [1,-261,1764,336,2436,336,896,5328,3024,3024,-25536,-25536,-8736,-8736,
   15372,17568,24768,22176,-28224],
  [1,99,924,-1344,2016,-1344,896,-3072,1344,1344,8064,8064,8064,8064,14112,
   10368,-1152,-8064,-48384],
  [1,99,684,-624,-144,-624,-64,1728,-216+1800*ER(5),-216-1800*ER(5),
   3744-2400*ER(5),3744+2400*ER(5),-4416,-4416,-1008,-1152,4608,-2304,576],
  [1,99,684,-624,-144,-624,-64,1728,-216-1800*ER(5),-216+1800*ER(5),
   3744+2400*ER(5),3744-2400*ER(5),-4416,-4416,-1008,-1152,4608,-2304,576],
  [1,9,414,336,366,336,716,-72,-216,-216,204,204,-276,-276,-558,1908,
   -1692,-7524,6336],
  [1,19,364,336,-644,336,-224,-1072,-336,-336,224,224,-896,-896,1652,
   128,-672,5376,-3584],
  [1,-81,-36,36,-144,36,-424,-72,-486-450*ER(5),-486+450*ER(5),
   324-900*ER(5),324+900*ER(5),504,504,-648,1728,1728,-3024,216],
  [1,-81,-36,36,-144,36,-424,-72,-486+450*ER(5),-486-450*ER(5),
   324+900*ER(5),324-900*ER(5),504,504,-648,1728,1728,-3024,216],
  [1,-45,-180,144+48*ER(-19),48,144-48*ER(-19),320,0,288,288,576,576,
   -576-384*ER(-19),-576+384*ER(-19),720,-576,576,-576,-1152],
  [1,-45,-180,144-48*ER(-19),48,144+48*ER(-19),320,0,288,288,576,576,
   -576+384*ER(-19),-576-384*ER(-19),720,-576,576,-576,-1152],
  [1,19,44,96,176,96,-704,128,384,384,64,64,64,64,592,-832,-192,-1344,896],
  [1,54,9,126,126,126,116,153,-351,-351,54,54,549,549,-1053,-567,918,1971,
   -2484],
  [1,54,-81,-54+75*ER(-10),-84,-54-75*ER(-10),56,-297,189,189,-216,-216,
   -81+225*ER(-10),-81-225*ER(-10),27,513,378,-1269,1026],
  [1,54,-81,-54-75*ER(-10),-84,-54+75*ER(-10),56,-297,189,189,-216,-216,
   -81-225*ER(-10),-81+225*ER(-10),27,513,378,-1269,1026],
  [1,-26,109,-24,-194,-24,136,353,609,609,-106,-106,559,559,-733,-127,
   -342,-129,-1124],
  [1,9,-66,-24,-54,-24,-4,528,-336,-336,-36,-36,-36,-36,702,468,
   -972,396,-144],
  [1,-26,29,-84,86,-84,16,-247,-111,-111,-146,-146,-101,-101,-173,
   -367,-222,1191,596]]]];

MULTFREEINFO.("Ly"):= ["$Ly$",
##
[[1,4,11,12,14],"$G_2(5)$",
 [[1,19530,968750,2034375,5812500],
  [1,549,11375,3075,-15000],
  [1,234,-70,-1755,1590],
  [1,49,-625,1575,-1000],
  [1,-126,350,-525,300]]],
##
[[1,4,11,12,15],"$3.McL.2$",
 [[1,15400,534600,1871100,7185024],
  [1,-325,10125,-2025,-7776],
  [1,-10,-60,2805,-2736],
  [1,175,125,-525,224],
  [1,-100,-150,-525,774]]],
##
[[1,4,10,11,12,13,15,16],"$3.McL \\leq 3.McL.2$",
 [[1,1,30800,534600,534600,3742200,7185024,7185024],
  [1,1,-650,10125,10125,-4050,-7776,-7776],
  [1,-1,0,1800,-1800,0,3024,-3024],
  [1,1,-20,-60,-60,5610,-2736,-2736],
  [1,1,350,125,125,-1050,224,224],
  [1,-1,0,-675,675,0,3024,-3024],
  [1,1,-200,-150,-150,-1050,774,774],
  [1,-1,0,0,0,0,-2376,2376]]]];

MULTFREEINFO.("Th"):= ["$Th$",
##
[[1,3,7,8,19,21,25,32,37,39,41],"${^3D_4(2)}.3$",
 [[1,17199,45864,179712,1304576,2201472,5031936,8128512,8805888,
   11741184,105670656],
  [1,-2457,6552,0,46592,0,-179712,-290304,0,419328,0],
  [1,459,2340,-7776,-7840,-34992,76896,12960,101088,90144,-233280],
  [1,1323,2772,-4320,16352,15120,6048,72576,-75600,56448,-90720],
  [1,-441,504,-288,4256,4032,7056,-6048,1008,-7056,-3024],
  [1,-117,612,1440,-928,-5040,3168,-864,-7200,288,8640],
  [1,403,492,960,112,2640,-1392,-144,6000,-2032,-7040],
  [1,99,-36,-288,-2224,1872,2736,-3888,-3312,1584,3456],
  [1,-117,180,-288,-928,144,-2016,1728,1008,-576,864],
  [1,99,-36,-288,800,-1152,-288,-864,-288,-1440,3456],
  [1,-45,-180,288,224,288,288,864,288,1440,-3456]]],
##
[[1,8,17,18,25,32,37,38,39,42,46],"$2^5.L_5(2)$",
 [[1,248,59520,2064384,2064384,2539520,6666240,35553280,63995904,63995904,
   106659840],
  [1,59,2820,-31248,-31248,44720,-1680,202720,-16128,174384,-344400],
  [1,-31,930,-1008+3780*ER(-6),-1008-3780*ER(-6),-4960,-13020,8680,
   -31248,15624,26040],
  [1,-31,930,-1008-3780*ER(-6),-1008+3780*ER(-6),-4960,-13020,8680,
   -31248,15624,26040],
  [1,39,1000,2352,2352,5680,5600,-5600,-22848,-3696,15120],
  [1,23,120,1584,1584,1520,-8160,-7520,16704,5904,-11760],
  [1,-13,12,-144,-144,1520,-1680,6880,4608,-17424,6384],
  [1,14,-150,1557,1557,-1720,750,9850,-4383,-171,-7305],
  [1,23,120,-1440,-1440,-1504,912,-1472,4608,-3168,3360],
  [1,-17,160,224,224,-480,1680,-2240,3584,2464,-5600],
  [1,-1,-240,-288,-288,800,-240,-2240,-4608,3744,3360]]]];

MULTFREEINFO.("Fi23"):= ["$Fi_{23}$",
##
[[1,2,6],"$2.Fi_{22}$",
 [[1,3510,28160],
  [1,351,-352],
  [1,-9,8]]],
##
[[1,6,8],"$O_8^+(3).3.2$",
 [[1,28431,109200],
  [1,279,-280],
  [1,-81,80]]],
##
[[1,5,6,8,9],"$O_8^+(3).3 \\leq O_8^+(3).3.2$",
 [[1,1,28431,28431,218400],
  [1,-1,-351,351,0],
  [1,1,279,279,-560],
  [1,1,-81,-81,160],
  [1,-1,81,-81,0]]],
##
[[1,2,6,8,10],"$O_8^+(3).2_2 \\leq O_8^+(3).3.2$",
 [[1,2,28431,56862,327600],
  [1,-1,3159,-3159,0],
  [1,2,279,558,-840],
  [1,2,-81,-162,240],
  [1,-1,-9,9,0]]],
##
[[1,2,3,6,7,8,10,14,20,24,38,40,42],"$S_8(2)$",
 [[1,2295,13056,24192,107100,261120,1285200,2203200,3046400,3290112,
   12337920,30844800,32901120],
  [1,-135,3984,-3024,22050,1920,94500,-129600,324800,-193536,498960,
   226800,-846720],
  [1,-459,-1632,1512,10710,11424,-64260,55080,-38080,-102816,308448,
   -385560,205632],
  [1,225,1464,1008,5670,-3840,10080,42120,32480,44352,-7560,-105840,-20160],
  [1,189,-768,-1728,4230,2784,-9180,-22680,-12160,42336,36288,-6480,-32832],
  [1,315,384,-1152,180,7680,-13680,17280,5120,-4608,-17280,51840,-46080],
  [1,-135,816,144,2250,1920,-4500,-10800,8000,-3456,-23760,-10800,40320],
  [1,189,-48,792,630,2784,5220,-1080,-4960,-864,-432,-1080,-1152],
  [1,-9,-372,252,1260,-1176,-1260,1080,-280,-2016,-5292,11340,-3528],
  [1,21,240,-216,366,-576,900,504,-3424,-1344,1008,3096,-576],
  [1,-63,-48,-72,18,336,684,432,-64,144,-432,-648,-288],
  [1,-9,60,144,-144,-96,-720,-216,-64,576,1188,1296,-2016],
  [1,45,-48,-72,-90,-96,36,-216,800,-288,-432,-1944,2304]]],
##
[[1,2,3,6,7,10,13,14,19,20,24,26,38,41,42,60],"$2^{11}.M_{23}$",
 [[1,506,23552,28336,113344,129536,971520,1036288,1813504,4533760,
   8290304,21762048,31088640,31653888,36270080,58032128],
  [1,209,-208,7546,5236,29744,116160,85888,250096,43120,-377344,-990528,
   865920,1462272,-985600,-512512],
  [1,-187,-2080,4774,10780,-10648,-62040,44704,61600,-206360,154880,
   -192192,770880,-473088,234080,-335104],
  [1,149,1112,3346,4816,9584,35160,-8192,62776,-7280,25856,67872,-98880,
   -150528,56000,-1792],
  [1,-43,1664,1246,-4844,-3088,2760,23392,3136,-2240,2816,61824,27840,
   -86016,-209440,180992],
  [1,41,-688,826,-2996,3536,-6960,9088,784,-7280,18944,49728,-21120,
   43008,-4480,-82432],
  [1,-85,-40,1204,784,-2080,-6960,-992,7336,7840,-16480,13440,-12480,6720,
   5600,-3808],
  [1,77,464,646,2116,-568,2760,4192,-6704,17560,8576,5664,13440,-5376,
   -3040,-39808],
  [1,-61,-640,364,1456,-64,-480,-512,-896,-2240,16640,-10752,-15360,
   10752,-17920,19712],
  [1,23,-580,124,-620,-1108,2760,5704,100,-260,-3520,-11832,-15720,-3648,
   22880,5696],
  [1,53,-208,526,-380,728,-840,-1472,-2000,1000,-2944,-5856,4800,
   -5376,320,11648],
  [1,11,422,-104,124,476,-2100,1468,814,1000,1844,-9132,-7800,168,4940,7868],
  [1,-31,176,178,-404,-136,816,-560,-656,-584,1664,-2112,480,1536,2576,-2944],
  [1,-25,-28,-32,304,368,168,640,-932,-944,-3232,2208,1056,-1344,800,992],
  [1,29,80,22,196,-280,168,-224,-176,-2888,-640,2208,-1536,3840,-928,128],
  [1,2,-55,-86,-74,-37,-75,-197,499,1000,575,264,975,-939,-955,-898]]]];

MULTFREEINFO.("Co1"):= ["$Co_1$",
##
[[1,3,6,10],"$Co_2$",
 [[1,4600,46575,47104],
  [1,1000,-2025,1024],
  [1,76,243,-320],
  [1,-20,-45,64]]],
##
[[1,4,7,16,20],"$3.Suz.2$",
 [[1,5346,22880,405405,1111968],
  [1,1026,-2080,12285,-11232],
  [1,378,800,-315,-864],
  [1,-54,80,405,-432],
  [1,26,-80,-315,368]]],
##
[[1,2,4,7,11,16,20,22],"$3.Suz \\leq 3.Suz.2$",
 [[1,1,5346,5346,45760,405405,405405,2223936],
  [1,-1,-1782,1782,0,45045,-45045,0],
  [1,1,1026,1026,-4160,12285,12285,-22464],
  [1,1,378,378,1600,-315,-315,-1728],
  [1,-1,-270,270,0,-819,819,0],
  [1,1,-54,-54,160,405,405,-864],
  [1,1,26,26,-160,-315,-315,736],
  [1,-1,18,-18,0,45,-45,0]]],
##
[[1,6,10,16,25,32],"$2^{11}:M_{24}$",
 [[1,3542,48576,1457280,2637824,4145152],
  [1,539,2244,15840,-17920,-704],
  [1,-133,1956,-4320,3584,-1088],
  [1,167,-24,-720,2624,-2048],
  [1,-49,-24,1224,896,-2048],
  [1,-1,-24,-360,-640,1024]]],
##
[[1,3,6,10,14,26,32],"$Co_3$",
 [[1,11178,37950,257600,1536975,2608200,3934656],
  [1,4698,-1650,56000,111375,-113400,-57024],
  [1,1506,198,4256,-14289,13608,-5280],
  [1,258,1830,-1120,1455,-2520,96],
  [1,306,-330,-1120,495,-2520,3168],
  [1,-54,30,320,-945,-1080,1728],
  [1,-6,-18,-64,399,648,-960]]],
##
[[1,3,6,7,10,12,16,29,32,37,46],"$2^{1+8}_+.O_8^+(2)$",
 [[1,270,12600,34560,60480,491520,573440,2419200,4838400,12386304,25804800],
  [1,-135,3150,8640,-7560,-61440,89600,-302400,302400,774144,-806400],
  [1,75,1680,240,4788,-7680,14336,38640,55440,-53760,-53760],
  [1,63,180,3096,-1620,14592,10400,26280,-30240,39168,-61920],
  [1,-45,840,-720,-1260,7680,8960,-15120,5040,-32256,26880],
  [1,-27,-270,1296,1080,-2688,3200,-4320,-8640,-6912,17280],
  [1,45,450,360,1080,1920,-2560,-3600,0,2304,0],
  [1,-35,250,240,-360,-640,-800,800,0,-256,800],
  [1,21,114,-192,-72,-768,512,192,-2880,1536,1536],
  [1,15,-60,120,-180,0,-160,-120,1440,-1536,480],
  [1,-9,-36,-72,108,192,32,72,0,576,-864]]]];

MULTFREEINFO.("J4"):= ["$J_4$",
##
[[1,8,11,14,19,20,21],"$2^{11}:M_{24}$",
 [[1,15180,28336,3400320,32643072,54405120,82575360],
  [1,825,1166,14520,19008,10560,-46080],
  [1,517,-990,-1496,32560,-23936,-6656],
  [1,-253,0,7084,0,-28336,21504],
  [1,66-17*ER(33),99+19*ER(33),-1166-154*ER(33),-1056+992*ER(33),
   -2552-328*ER(33),4608-512*ER(33)],
  [1,66+17*ER(33),99-19*ER(33),-1166+154*ER(33),-1056-992*ER(33),
   -2552+328*ER(33),4608+512*ER(33)],
  [1,-55,-66,440,0,3520,-3840]]],
##
[[1,8,11,14,19,20,21,29,30,45,51],"$2^{11}:M_{23} \\leq 2^{11}:M_{24}$",
 [[1,23,121440,242880,680064,81607680,82575360,130572288,652861440,
   1305722880,1899233280],
  [1,23,6600,13200,27984,348480,-46080,76032,380160,253440,-1059840],
  [1,23,4136,8272,-23760,-35904,-6656,130240,651200,-574464,-153088],
  [1,23,-2024,-4048,0,170016,21504,0,0,-680064,494592],
  [1,23,528-136*ER(33),1056-272*ER(33),2376+456*ER(33),
   -27984-3696*ER(33),4608-512*ER(33),-4224+3968*ER(33),
   -21120+19840*ER(33),-61248-7872*ER(33),105984-11776*ER(33)],
  [1,23,528+136*ER(33),1056+272*ER(33),2376-456*ER(33),
   -27984+3696*ER(33),4608+512*ER(33),-4224-3968*ER(33),
   -21120-19840*ER(33),-61248+7872*ER(33),105984+11776*ER(33)],
  [1,23,-440,-880,-1584,10560,-3840,0,0,84480,-88320],
  [1,-1,528,-528,0,0,-12288,16896,-16896,0,12288],
  [1,-1,352,-352,0,0,21504,0,0,0,-21504],
  [1,-1,-352,352,0,0,1792,9856,-9856,0,-1792],
  [1,-1,0,0,0,0,-3840,-10560,10560,0,3840]]]];

MULTFREEINFO.("F3+"):= ["$F_{3+}$",
##
[[1,3,4],"$Fi_{23}$",
 [[1,31671,275264],
  [1,351,-352],
  [1,-81,80]]],
##
[[1,2,3,4,5,8,11,13,16,20,24,26,27,29,38,41,45],"$O_{10}^-(2)$",
 [[1,25245,104448,1570800,12773376,45957120,67858560,107233280,193881600,
   263208960,579059712,1085736960,5147197440,5428684800,7238246400,
   12634030080,17371791360],
  [1,-5049,-13056,157080,798336,2010624,-3392928,-1340416,4847040,-3290112,
   -18095616,27143424,80424960,-67858560,-90478080,-39481344,108573696],
  [1,1755,16752,145740,145152,-145920,1955016,4102784,1639440,-1983744,
   2370816,16284240,-10730496,30119040,-7197120,-44706816,7983360],
  [1,3195,5664,27300,-266112,798720,-302400,546560,2311200,2419200,
   2161152,-393120,-5376000,5443200,-22377600,21288960,-6289920],
  [1,-1485,8544,56100,-57024,337920,178200,1168640,-1782000,1468800,
   -3269376,1568160,5913600,1425600,1900800,7050240,-15966720],
  [1,2079,-2256,26400,-14256,489984,28512,-256960,-712800,-1237248,
   2318976,1012176,3480576,-498960,-665280,2073600,-6044544],
  [1,819,1776,10020,55296,26304,129816,-75520,179280,262656,161856,
   20304,561408,-544320,665280,-587520,-867456],
  [1,-189,-2688,19380,16848,-37056,-132840,-65152,6480,69120,22464,
   456192,-652800,-149040,501120,456192,-508032],
  [1,-45,3072,14340,-1728,-30720,26136,111104,-2160,-100224,66816,
   -120960,-316416,-855360,17280,635904,552960],
  [1,-639,-708,2730,-16632,34944,15120,-6832,57780,-30240,-67536,
   -9828,-84000,-68040,279720,-66528,-39312],
  [1,171,912,1596,-6912,-6528,-21816,-2944,23760,-6912,1152,-34128,
   167424,124416,63936,-152064,-152064],
  [1,279,-816,3000,-5616,384,4752,2240,-21600,24192,14976,-54864,36096,
   19440,-60480,-172800,210816],
  [1,-315,588,1110,4752,10320,-4320,-10720,-19980,8640,-2736,-25380,
   -58080,77760,-50760,-82080,151200],
  [1,387,48,-780,3456,12480,-7560,7424,3024,-6912,-17856,-5616,-74496,
   -15552,63936,-6912,44928],
  [1,-99,-276,30,3456,-1776,-1728,7424,5940,-6912,1584,-20196,36960,
   19440,-11880,16416,-48384],
  [1,63,48,192,-432,-3072,6048,-8128,-864,-6912,-12672,9936,-12288,
   19440,-29376,55296,-17280],
  [1,-45,48,-780,-1728,-480,-1080,2240,-2160,8640,12384,15120,-1920,
   -38880,17280,-17280,8640]]],
##
[[1,3,4,11,12,16,17,19,22,24,29,30,32,39,40,44,45,59],"$3^7.O_7(3)$",
 [[1,1120,49140,275562,816480,21228480,57316896,62178597,286584480,
   429876720,2901667860,5158520640,6964002864,15475561920,
   9183300480,9183300480,23213342880,52230021480],
  [1,-40,3900,31266,-29160,56160,1617408,2814669,-463320,480168032411340,
   -30326400,77787216,40940640,-40940640,-40940640,-37528920,-10235160],
  [1,392,7644,20034,76104,812448,471744,85293,5798520,2240784,15125292,
   28304640,-9552816,-19105632,-15326496,-15326496,11144952,-4776408],
  [1,200,2220,2322,13320,64800,-53568,73629,104760,343440,-811620,
   -1244160,1271376,-2838240,349920,349920,4908600,-2536920],
  [1,224,2772,3402,18144,108864,54432,-37179,272160,81648,-591948,
   -326592,-244944,3592512,839808,839808,-2776032,-1837080],
  [1,-40,300,3186,-360,-1440,-41472,190269,-117720,265680,43740,777600,
   104976,-1049760,1049760,1049760,-2536920,262440],
  [1,32,-636,3834,3744,-29952,121824,114453,21600,-364176,-144828,
   388800,128304,373248,186624,186624,1220832,-2210328],
  [1,152,1224,1134,6264,6048,-20736,-16767,3240,-241056,190512,-155520,
   303264,-1065312,69984,69984,-849528,1697112],
  [1,-64,468,-1782,1728,-22464,33696,9477,67392,50544,-63180,-202176,
   -151632,-202176,0,0,-202176,682344],
  [1,-40,732,2754,-3816,5472,20736,-8019,-7128,11664,164268,-217728,
   -221616,-116640,116640,116640,106920,29160],
  [1,104,588,-270,936,-3168,5184,3645,-53352,22032,4860,62208,-128304,
   116640,-116640,-116640,126360,75816],
  [1,56,-84,882,504,-14112,-24192,3645,35784,3024,74844,-72576,-81648,
   163296,23328,23328,68040,-204120],
  [1,14,-294,1134,882,-5544,9072,-16767,-7938,27216,-44226,68040,102060,
   -81648,2916,2916,-78246,20412],
  [1,-28,0,-378,756,0,0,-3159,-9828,0,58968,0,0,0,-112752,213840,29484,
   -176904],
  [1,-28,0,-378,756,0,0,-3159,-9828,0,58968,0,0,0,213840,-112752,
   29484,-176904],
  [1,44,36,-486,-1188,216,2592,-2187,10692,-1944,-2916,19440,58320,
   -33048,46656,46656,-32076,-110808],
  [1,-40,300,162,-360,-1440,-5184,-243,3240,-6480,-46980,51840,50544,
   38880,-38880,-38880,3240,-9720],
  [1,0,-140,42,0,2240,-224,2917,0,-1680,-10220,-20160,-27216,2240,
   -23040,-23040,0,98280]]]];

MULTFREEINFO.("B"):= ["$B$",
##
[[1,3,5,13,15],"$2.{}^2E_6(2).2$",
 [[1,3968055,23113728,2370830336,11174042880],
  [1,228735,-709632,14483456,-14002560],
  [1,50895,133056,124928,-308880],
  [1,1935,-4032,-31744,33840],
  [1,-945,1728,14336,-15120]]],
##
[[1,2,3,5,7,13,15,17],"$2.{}^2E_6(2) \\leq 2.{}^2E_6(2).2$",
 [[1,1,3968055,3968055,46227456,2370830336,2370830336,22348085760],
  [1,-1,566865,-566865,0,84672512,-84672512,0],
  [1,1,228735,228735,-1419264,14483456,14483456,-28005120],
  [1,1,50895,50895,266112,124928,124928,-617760],
  [1,-1,28665,-28665,0,-114688,114688,0],
  [1,1,1935,1935,-8064,-31744,-31744,67680],
  [1,1,-945,-945,3456,14336,14336,-30240],
  [1,-1,-135,135,0,512,-512,0]]],
##
[[1,3,5,8,13,15,28,30,37,40],"$2^{1+22}.Co_2$",
[[1,93150,7286400,262310400,4196966400,9646899200,470060236800,
  537211699200,4000762036224,6685301145600],
 [1,-2025,772200,-5702400,42768000,290816000,-2714342400,5474304000,
  8833204224,-11921817600],
 [1,10287,215424,3777840,25974432,35514368,607533696,100362240,
  -42467328,-730920960],
 [1,-2025,99000,356400,-5702400,8806400,0,45619200,-191102976,141926400],
 [1,495,48960,-334800,1631520,2769920,-9636480,-12441600,-2359296,20321280],
 [1,3375,28800,356400,1015200,-870400,-6652800,4147200,-14155776,16128000],
 [1,1095,1560,7200,-113280,81920,107520,-921600,2555904,-1720320],
 [1,-425,9400,-3600,-57600,-115200,358400,-76800,1409024,-1523200],
 [1,135,-360,-12960,17280,-40960,138240,414720,-884736,368640],
 [1,-153,-936,8640,1152,32768,-129024,-207360,294912,0]]],
##
[[1,2,3,5,7,8,9,12,13,15,17,23,27,30,32,40,41,54,63,68,77,81,83],"$Fi_{23}$",
 [[1,412896,86316516,195747435,8537488128,23478092352,33816182400,
   113778447552,160533964800,504245392560,1044084577536,1152560897280,
   1584771233760,5282570779200,7888639030272,12678169870080,
   21514470082560,43028940165120,50712679480320,133120783635840,
   190172548051200,262954634342400,283991005089792],
  [1,-137632,18115812,-10472085,-1159411968,1449264960,3757353600,
   1404672192,-5945702400,39426594480,-21483221760,-4743048960,
   -110868769440,65216923200,-292171815936,573908924160,-796832225280,
   531221483520,1460859079680,-2739110774400,-782603078400,
   3246353510400,-1168687263744],
  [1,82016,8890596,5701995,457037568,327742272,1297296000,
   -1788671808,-511948800,12027702960,-9527341824,6966984960,
   30484602720,28447848000,58091185152,118446831360,158430504960,
   -222361251840,239651343360,190079809920,-857327328000,28598169600,
   218194808832],
  [1,41888,3232548,-43605,123026688,57841344,314160000,183218112,
   258508800,1991288880,1252323072,-1021697280,4906012320,
   -3514104000,3727696896,12802648320,10166446080,20332892160,
   7936220160,8210885760,47791814400,-25333862400,-90188550144],
  [1,-32032,2275812,414315,-77223168,-2312640,179625600,-32332608,
   35481600,1084693680,550851840,-432034560,-2400567840,1235995200,
   -300174336,4718165760,-4534548480,-8511713280,-1053803520,
   12753417600,10828857600,-17953689600,3908653056],
  [1,10208,704484,1589355,10679040,46398528,-9609600,57081024,
   -167270400,224426160,533820672,271607040,-9741600,916660800,
   2067158016,-1656357120,-679311360,1892782080,3994721280,
   -5895711360,1568160000,-10005811200,6838013952],
  [1,-17248,900900,-1508949,-20097792,43902144,32672640,-21155904,
   63866880,185985072,-186810624,778242816,-259829856,-2109032640,
   -1909619712,-643458816,1675634688,1177473024,3238050816,
   -155675520,-44478720,-6826659840,4981616640],
  [1,-3232,324324,103275,-2453760,15121728,-12297600,-15494976,
   74188800,87499440,-219034368,-142145280,29121120,499867200,
   -274627584,-544631040,-5806080,592220160,722856960,813214080,
   -13996800,-1025740800,-578285568],
  [1,14816,725796,-43605,16743168,-7316928,31920000,14841792,
   4147200,110118960,-61012224,62588160,198033120,197640000,
   -366363648,5218560,-75479040,-452874240,-1233239040,-1778474880,
   666144000,148377600,2518290432],
  [1,6896,132516,699435,736128,11096352,4502400,-38864448,20044800,
   -21727440,115105536,171953280,32315760,217339200,-118153728,
   122446080,-322237440,661893120,-489991680,959091840,-1020988800,
   174182400,-479582208],
  [1,-11632,475812,111915,-9283968,-491040,17673600,7584192,
   -18662400,32946480,-61205760,-22584960,-74323440,-10756800,
   200600064,-34179840,269982720,836075520,-664312320,-183254400,
   -1004918400,593510400,125024256],
  [1,7328,246564,-43605,3421440,1729728,4502400,-11866176,-6912000,
   5609520,-1790208,-28857600,-1265760,-80222400,35030016,-96802560,
   -145152000,-11612160,83082240,268168320,-170553600,212889600,-59609088],
  [1,-1120,89892,-181845,-172800,3172032,-3638400,6934464,-6912000,
   12798000,19554048,-7568640,3745440,-43200,-48356352,-17729280,
   18524160,-16035840,-61793280,98133120,-116640000,190771200,-74649600],
  [1,3408,69284,147755,295040,2450528,-169600,6681024,5913600,
   -1900240,-8656128,8992640,-2385200,-15211200,36246016,7220480,
   -39797760,-41656320,-22725120,16717440,9264000,80076800,-41576448],
  [1,-4576,126756,2475,-1324800,-949824,1061760,-254016,1935360,
   -841680,6983424,3168000,10755360,2721600,1741824,-31921920,
   -5806080,-58060800,36449280,-18264960,41644800,94187520,-83349504],
  [1,2864,51876,-26325,316800,-507744,309120,1197504,691200,
   -2857680,2467584,-777600,-4879440,5417280,-5515776,518400,
   14515200,11612160,15137280,9797760,-15085440,-21934080,-10450944],
  [1,1088,39204,25515,138240,-300672,-1065600,-1498176,-460800,
   2430000,-1928448,3732480,-3810240,648000,5308416,933120,
   14100480,-9953280,-9953280,-18195840,27993600,27648000,-35831808],
  [1,-2128,19620,-40149,67968,706464,186240,-627264,-414720,
   -2332368,-1292544,-307584,-943056,2928960,787968,6269184,
   7216128,-6967296,-2225664,-16744320,22654080,-8663040,-276480],
  [1,-1232,15524,37675,19840,-69472,-233600,-576,76800,-292560,
   472832,-1668480,588720,-1924800,-2025984,4348160,-1582080,
   5468160,-919040,-1537920,-7036800,-17100800,23365632],
  [1,944,1188,15147,-79488,61344,63360,36288,-709632,-452304,
   -850176,134784,854064,938304,-1866240,518400,-746496,-1658880,
   2198016,3825792,6065280,-4534272,-3815424],
  [1,560,1188,-12501,-51840,12960,-68736,-129600,248832,73008,
   200448,-335232,518832,-720576,898560,1237248,-1410048,995328,
   -1893888,-4053888,-1316736,-2764800,8570880],
  [1,-16,-5724,8235,17280,50976,78720,-46656,138240,114480,532224,
   -293760,-481680,25920,-262656,-1416960,2903040,-1658880,-69120,
   -3058560,51840,6082560,-2709504],
  [1,-400,-1116,-5589,26496,-71136,-7296,119232,-82944,86832,
   -352512,508032,-42768,191808,290304,-311040,-1741824,995328,
   705024,4572288,-1026432,-700416,-3151872]]]];

MULTFREEINFO.("M"):= ["$M$",
##
[[1,2,4,5,9,14,21,34,35],"$2.B$",
 [[1,27143910000,11707448673375,2031941058560000,91569524834304000,
   1102935324621312000,1254793905192960000,30434513446055706624,
   64353605265653760000],
  [1,2887650000,-249094652625,62147133440000,-487071940608000,
   11733354517248000,-6674435665920000,80942854909722624,-85576602746880000],
  [1,468855000,43747806375,3348961280000,-19026247680000,202389851664000,
   283334578560000,-369446834405376,-100644526080000],
  [1,236547000,-7678186425,1090251008000,12019625164800,37209562790400,
   -33800576832000,-142176425803776,125665005312000],
  [1,41967000,-749446425,55559168000,-273228595200,-288778089600,
   -419582592000,-275830603776,1202568192000],
  [1,13224600,618611175,5297868800,38198476800,-92343888000,76571827200,
   352155009024,-380511129600],
  [1,2693304,-33756345,-91334656,973209600,-457228800,2516811264,5350883328,
   -8261277696],
  [1,70200,2168775,-14694400,-121651200,261273600,-307929600,-1086898176,
   1267660800],
  [1,-81000,-1913625,14336000,110592000,-244944000,279936000,1003290624,
   -1161216000]]]];

MULTFREEINFO.("M12.2"):= ["$M_{12}.2$",
##
[[1,2,3],"$M_{11}$",
 [[1,11,12],
  [1,11,-12],
  [1,-1,0]]],
##
[[1,3,9,12],"$L_2(11).2$",
 [[1,22,55,66],
  [1,10,-5,-6],
  [1,-2,7,-6],
  [1,-2,-5,6]]],
##
[[1,2,3,7,8],"$A_6.2^2$",
 [[1,20,30,36,45],
  [1,20,-30,-36,45],
  [1,8,0,0,-9],
  [1,-2,-2*ER(5),2*ER(5),1],
  [1,-2,2*ER(5),-2*ER(5),1]]],
##
[[1,2,3,7,8,12,13],"$A_6.2_2 \\leq A_6.2^2$",
 [[1,1,36,36,40,60,90],
  [1,1,-36,-36,40,-60,90],
  [1,1,0,0,16,0,-18],
  [1,1,2*ER(5),2*ER(5),-4,-4*ER(5),2],
  [1,1,-2*ER(5),-2*ER(5),-4,4*ER(5),2],
  [1,-1,-6,6,0,0,0],
  [1,-1,6,-6,0,0,0]]],
##
[[1,4,5,12],"$L_2(11).2$",
 [[1,22,55,66],
  [1,-5,10,-6],
  [1,6,-1,-6],
  [1,-2,-5,6]]],
##
[[1,2,3,7,8,9,10,14,15],"$3^2.2.S_4$",
 [[1,4,12,27,36,72,72,108,108],
  [1,-4,12,27,-36,-72,72,-108,108],
  [1,0,-4,15,0,0,-24,0,12],
  [1,-ER(5),1,5,2*ER(5),4*ER(5),6,-5*ER(5),-13],
  [1,ER(5),1,5,-2*ER(5),-4*ER(5),6,5*ER(5),-13],
  [1,3,5,-3,6,0,-6,-9,3],
  [1,-3,5,-3,-6,0,-6,9,3],
  [1,1,-3,-3,-6,8,2,-3,3],
  [1,-1,-3,-3,6,-8,2,3,3]]],
##
[[1,2,3,5,6,7,8,9,10,11,14,15,16,17],"$3^2:2.A_4 \\leq 3^2.2.S_4$",
 [[1,1,8,24,27,27,36,36,72,72,72,72,216,216],
  [1,1,-8,24,27,27,-36,-36,72,72,-72,-72,-216,216],
  [1,1,0,-8,15,15,0,0,-24,-24,0,0,0,24],
  [1,-1,0,0,3,-3,12,-12,16,-16,8,-8,0,0],
  [1,-1,0,0,3,-3,-12,12,16,-16,-8,8,0,0],
  [1,1,-2*ER(5),2,5,5,2*ER(5),2*ER(5),6,6,4*ER(5),4*ER(5),-10*ER(5),-26],
  [1,1,2*ER(5),2,5,5,-2*ER(5),-2*ER(5),6,6,-4*ER(5),-4*ER(5),10*ER(5),-26],
  [1,1,6,10,-3,-3,6,6,-6,-6,0,0,-18,6],
  [1,1,-6,10,-3,-3,-6,-6,-6,-6,0,0,18,6],
  [1,-1,0,0,-9,9,0,0,0,0,0,0,0,0],
  [1,1,2,-6,-3,-3,-6,-6,2,2,8,8,-6,6],
  [1,1,-2,-6,-3,-3,6,6,2,2,-8,-8,6,6],
  [1,-1,0,0,3,-3,2*ER(3),-2*ER(3),-6,6,-6*ER(3),6*ER(3),0,0],
  [1,-1,0,0,3,-3,-2*ER(3),2*ER(3),-6,6,6*ER(3),-6*ER(3),0,0]]],
##
[[1,4,5,7,8,12,18],"$(2^2 \\times A_5).2$",
 [[1,15,20,60,60,120,120],
  [1,6,-7,15,-12,3,-6],
  [1,-5,4,4,-12,-8,16],
  [1,1+2*ER(5),-2,-4*ER(5),8-2*ER(5),-12,4+4*ER(5)],
  [1,1-2*ER(5),-2,4*ER(5),8+2*ER(5),-12,4-4*ER(5)],
  [1,3,8,0,0,0,-12],
  [1,-2,-2,-5,0,10,-2]]],
##
[[1,4,5,7,8,10,12,13,15,18,21],"$(2 \\times A_5).2 \\leq (2^2 \\times A_5).2$",
 [[1,1,15,15,40,60,60,120,120,120,240],
  [1,1,6,6,-14,15,15,-6,-6,-24,6],
  [1,1,-5,-5,8,4,4,16,16,-24,-16],
  [1,1,1+2*ER(5),1+2*ER(5),-4,-4*ER(5),-4*ER(5),4+4*ER(5),4+4*ER(5),
   16-4*ER(5),-24],
  [1,1,1-2*ER(5),1-2*ER(5),-4,4*ER(5),4*ER(5),4-4*ER(5),4-4*ER(5),
   16+4*ER(5),-24],
  [1,-1,7,-7,0,12,-12,8,-8,0,0],
  [1,1,3,3,16,0,0,-12,-12,0,0],
  [1,-1,-5,5,0,0,0,20,-20,0,0],
  [1,-1,3,-3,0,-12,12,0,0,0,0],
  [1,1,-2,-2,-4,-5,-5,-2,-2,0,20],
  [1,-1,-2,2,0,3,-3,-10,10,0,0]]],
[[1,3,7,8,9,12,15,18],"$M_8.(S_4 \\times 2)$",
 [[1,6,16,24,64,96,96,192],
  [1,-3,-8,6,16,-12,24,-24],
  [1,2-ER(5),2+2*ER(5),1-3*ER(5),6+2*ER(5),8,-6+2*ER(5),-14-2*ER(5)],
  [1,2+ER(5),2-2*ER(5),1+3*ER(5),6-2*ER(5),8,-6-2*ER(5),-14+2*ER(5)],
  [1,-3,4,6,4,-12,-12,12],
  [1,3,4,0,-8,-12,12,0],
  [1,1,-4,-6,4,-4,-4,12],
  [1,-2,-1,0,-8,8,2,0]]],
##
[[1,3,6,7,8,9,12,13,15,16,17,18,19],
 "$M_8.(A_4 \\times 2) \\leq M_8.(S_4 \\times 2)$",
 [[1,1,12,16,16,48,64,64,96,96,192,192,192],
  [1,1,-6,-8,-8,12,16,16,24,24,-24,-24,-24],
  [1,-1,0,8,-8,0,16,-16,8,-8,16,0,-16],
  [1,1,4-2*ER(5),2+2*ER(5),2+2*ER(5),2-6*ER(5),6+2*ER(5),6+2*ER(5),
   -6+2*ER(5),-6+2*ER(5),-14-2*ER(5),16,-14-2*ER(5)],
  [1,1,4+2*ER(5),2-2*ER(5),2-2*ER(5),2+6*ER(5),6-2*ER(5),6-2*ER(5),
   -6-2*ER(5),-6-2*ER(5),-14+2*ER(5),16,-14+2*ER(5)],
  [1,1,-6,4,4,12,4,4,-12,-12,12,-24,12],
  [1,1,6,4,4,0,-8,-8,12,12,0,-24,0],
  [1,-1,0,4,-4,0,-8,8,12,-12,-24,0,24],
  [1,1,2,-4,-4,-12,4,4,-4,-4,12,-8,12],
  [1,-1,0,-2-2*ER(3),2+2*ER(3),0,4+2*ER(3),-4-2*ER(3),
   -6+6*ER(3),6-6*ER(3),-6,0,6],
  [1,-1,0,-2+2*ER(3),2-2*ER(3),0,4-2*ER(3),-4+2*ER(3),
   -6-6*ER(3),6+6*ER(3),-6,0,6],
  [1,1,-4,-1,-1,0,-8,-8,2,2,0,16,0],
  [1,-1,0,-1,1,0,-8,8,2,-2,16,0,-16]]],
[[1,4,6,7,8,12,15,18],"$4^2:D_{12}.2$",
 [[1,6,16,24,64,96,96,192],
  [1,-3,7,6,10,-21,-12,12],
  [1,-3,-4,6,-12,12,-12,12],
  [1,2-ER(5),2+2*ER(5),1-3*ER(5),-10-2*ER(5),-6+2*ER(5),8,2+2*ER(5)],
  [1,2+ER(5),2-2*ER(5),1+3*ER(5),-10+2*ER(5),-6-2*ER(5),8,2-2*ER(5)],
  [1,3,4,0,4,12,-12,-12],
  [1,1,-4,-6,4,-4,-4,12],
  [1,-2,-1,0,4,2,8,-12]]],
##
[[1,4,6,7,8,9,10,11,12,14,15,18,20],"$4^2:(6 \\times 2) \\leq 4^2:D_{12}.2$",
 [[1,1,12,16,16,48,64,64,96,96,192,192,192],
  [1,1,-6,7,7,12,10,10,-12,-12,12,-42,12],
  [1,1,-6,-4,-4,12,-12,-12,-12,-12,12,24,12],
  [1,1,4-2*ER(5),2+2*ER(5),2+2*ER(5),2-6*ER(5),-10-2*ER(5),-10-2*ER(5),
   8,8,2+2*ER(5),-12+4*ER(5),2+2*ER(5)],
  [1,1,4+2*ER(5),2-2*ER(5),2-2*ER(5),2+6*ER(5),-10+2*ER(5),-10+2*ER(5),
   8,8,2-2*ER(5),-12-4*ER(5),2-2*ER(5)],
  [1,-1,0,8,-8,0,8,-8,0,0,24,0,-24],
  [1,-1,0,-4,4,0,-4,4,-24,24,12,0,-12],
  [1,-1,0,-4,4,0,-4,4,12,-12,12,0,-12],
  [1,1,6,4,4,0,4,4,-12,-12,-12,24,-12],
  [1,-1,0,4,-4,0,-12,12,0,0,-12,0,12],
  [1,1,2,-4,-4,-12,4,4,-4,-4,12,-8,12],
  [1,1,-4,-1,-1,0,4,4,8,8,-12,4,-12],
  [1,-1,0,-1,1,0,8,-8,0,0,-12,0,12]]]];

MULTFREEINFO.("M22.2"):= ["$M_{22}.2$",
##
[[1,3],"$L_3(4).2_2$",
 [[1,21],
  [1,-1]]],
##
[[1,2,3,4],"$L_3(4) \\leq L_3(4).2_2$",
 [[1,1,21,21],
  [1,-1,21,-21],
  [1,1,-1,-1],
  [1,-1,-1,1]]],
##
[[1,3,9],"$2^4:S_6$",
 [[1,16,60],
  [1,-6,5],
  [1,2,-3]]],
##
[[1,2,3,4,9,10,13,14,17,18],"$2^4:A_5 \\leq 2^4:S_6$",
 [[1,1,5,5,96,96,120,120,240,240],
  [1,-1,-5,5,-96,96,-120,120,-240,240],
  [1,1,5,5,-36,-36,10,10,20,20],
  [1,-1,-5,5,36,-36,-10,10,-20,20],
  [1,1,5,5,12,12,-6,-6,-12,-12],
  [1,-1,-5,5,-12,12,6,-6,12,-12],
  [1,1,-1,-1,0,0,12,12,-12,-12],
  [1,-1,1,-1,0,0,-12,12,12,-12],
  [1,-1,1,-1,0,0,8,-8,-8,8],
  [1,1,-1,-1,0,0,-8,-8,8,8]]],
##
[[1,2,3,4,9,10],"$2^4:A_6 \\leq 2^4:S_6$",
 [[1,1,16,16,60,60],
  [1,-1,-16,16,-60,60],
  [1,1,-6,-6,5,5],
  [1,-1,6,-6,-5,5],
  [1,1,2,2,-3,-3],
  [1,-1,-2,2,3,-3]]],
##
[[1,3,9,13,18],"$2^4:S_5 \\leq 2^4:S_6$",
 [[1,5,96,120,240],
  [1,5,-36,10,20],
  [1,5,12,-6,-12],
  [1,-1,0,12,-12],
  [1,-1,0,-8,8]]],
##
[[1,2,3,4,13,14],"$A_7$",
 [[1,15,35,70,105,126],
  [1,-15,-35,70,105,-126],
  [1,-7,13,-18,17,-6],
  [1,7,-13,-18,17,6],
  [1,3,3,2,-3,-6],
  [1,-3,-3,2,-3,6]]],
##
[[1,3,9,13],"$2^5:S_5$",
 [[1,30,40,160],
  [1,-3,18,-16],
  [1,9,-2,-8],
  [1,-3,-2,4]]],
##
[[1,2,3,4,9,10,13,14],"$2^4:S_5 \\leq 2^5:S_5$",
 [[1,1,30,30,40,40,160,160],
  [1,-1,-30,30,-40,40,-160,160],
  [1,1,-3,-3,18,18,-16,-16],
  [1,-1,3,-3,-18,18,16,-16],
  [1,1,9,9,-2,-2,-8,-8],
  [1,-1,-9,9,2,-2,8,-8],
  [1,1,-3,-3,-2,-2,4,4],
  [1,-1,3,-3,2,-2,-4,4]]],
##
[[1,3,4,9,13,16],"$2^4:(A_5 \\times 2) \\leq 2^5:S_5$",
 [[1,1,40,40,60,320],
  [1,1,18,18,-6,-32],
  [1,-1,-20,20,0,0],
  [1,1,-2,-2,18,-16],
  [1,1,-2,-2,-6,8],
  [1,-1,2,-2,0,0]]],
##
[[1,3,9,11,13],"$2^3:L_3(2) \\times 2$",
 [[1,7,42,112,168],
  [1,-4,9,24,-30],
  [1,4,9,-8,-6],
  [1,-3,2,-8,8],
  [1,1,-6,4,0]]],
##
[[1,2,3,4,9,10,11,12,13,14],"$2^3:L_3(2) \\leq 2^3:L_3(2) \\times 2$",
 [[1,1,7,7,42,42,112,112,168,168],
  [1,-1,-7,7,-42,42,-112,112,-168,168],
  [1,1,-4,-4,9,9,24,24,-30,-30],
  [1,-1,4,-4,-9,9,-24,24,30,-30],
  [1,1,4,4,9,9,-8,-8,-6,-6],
  [1,-1,-4,4,-9,9,8,-8,6,-6],
  [1,1,-3,-3,2,2,-8,-8,8,8],
  [1,-1,3,-3,-2,2,8,-8,-8,8],
  [1,1,1,1,-6,-6,4,4,0,0],
  [1,-1,-1,1,6,-6,-4,4,0,0]]],
##
[[1,3,9,13,20],"$A_6.2^2$",
 [[1,30,45,180,360],
  [1,8,-21,48,-36],
  [1,16,3,-16,-4],
  [1,-2,9,8,-16],
  [1,-2,-3,-4,8]]],
##
[[1,2,3,4,9,10,13,14,20,21],"$A_6.2_3 \\leq A_6.2^2$",
 [[1,1,30,30,45,45,180,180,360,360],
  [1,-1,-30,30,-45,45,-180,180,-360,360],
  [1,1,8,8,-21,-21,48,48,-36,-36],
  [1,-1,-8,8,21,-21,-48,48,36,-36],
  [1,1,16,16,3,3,-16,-16,-4,-4],
  [1,-1,-16,16,-3,3,16,-16,4,-4],
  [1,1,-2,-2,9,9,8,8,-16,-16],
  [1,-1,2,-2,-9,9,-8,8,16,-16],
  [1,1,-2,-2,-3,-3,-4,-4,8,8],
  [1,-1,2,-2,3,-3,4,-4,-8,8]]],
##
[[1,3,4,9,10,12,13,16,18,20],"$A_6.2_2 \\leq A_6.2^2$",
 [[1,1,30,30,45,45,180,180,360,360],
  [1,1,8,8,-21,-21,48,48,-36,-36],
  [1,-1,20,-20,15,-15,0,0,-60,60],
  [1,1,16,16,3,3,-16,-16,-4,-4],
  [1,-1,12,-12,-9,9,0,0,36,-36],
  [1,-1,-2,2,5,-5,28,-28,8,-8],
  [1,1,-2,-2,9,9,8,8,-16,-16],
  [1,-1,-2,2,-7,7,0,0,-16,16],
  [1,-1,-2,2,5,-5,-12,12,8,-8],
  [1,1,-2,-2,-3,-3,-4,-4,8,8]]],
##
[[1,4,9,13,16,18],"$L_2(11).2$",
 [[1,55,55,66,165,330],
  [1,-25,15,-6,45,-30],
  [1,13,13,-18,-3,-6],
  [1,7,-5,6,9,-18],
  [1,-3,-7,-6,1,14],
  [1,-3,5,6,-11,2]]],
##
[[1,2,3,4,9,10,13,14,15,16,17,18],"$L_2(11) \\leq L_2(11).2$",
 [[1,1,55,55,55,55,66,66,165,165,330,330],
  [1,-1,-55,-55,55,55,-66,66,-165,165,-330,330],
  [1,-1,25,-15,-25,15,6,-6,-45,45,30,-30],
  [1,1,-25,15,-25,15,-6,-6,45,45,-30,-30],
  [1,1,13,13,13,13,-18,-18,-3,-3,-6,-6],
  [1,-1,-13,-13,13,13,18,-18,3,-3,6,-6],
  [1,1,7,-5,7,-5,6,6,9,9,-18,-18],
  [1,-1,-7,5,7,-5,-6,6,-9,9,18,-18],
  [1,-1,3,7,-3,-7,6,-6,-1,1,-14,14],
  [1,1,-3,-7,-3,-7,-6,-6,1,1,14,14],
  [1,-1,3,-5,-3,5,-6,6,11,-11,-2,2],
  [1,1,-3,5,-3,5,6,6,-11,-11,2,2]]]];

MULTFREEINFO.("J2.2"):= ["$J_2.2$",
##
[[1,5,7],"$U_3(3).2$",
 [[1,36,63],
  [1,6,-7],
  [1,-4,3]]],
##
[[1,2,5,6,7,8],"$U_3(3) \\leq U_3(3).2$",
 [[1,1,36,36,63,63],
  [1,-1,-36,36,-63,63],
  [1,1,6,6,-7,-7],
  [1,-1,-6,6,7,-7],
  [1,1,-4,-4,3,3],
  [1,-1,4,-4,-3,3]]],
##
[[1,7,10,12],"$3.A_6.2^2$",
 [[1,36,108,135],
  [1,-4,-12,15],
  [1,8,-4,-5],
  [1,-4,8,-5]]],
##
[[1,2,7,8,10,11,12,13],"$3.A_6.2_2 \\leq 3.A_6.2^2$",
 [[1,1,36,36,108,108,135,135],
  [1,-1,-36,36,108,-108,-135,135],
  [1,1,-4,-4,-12,-12,15,15],
  [1,-1,4,-4,-12,12,-15,15],
  [1,1,8,8,-4,-4,-5,-5],
  [1,-1,-8,8,-4,4,5,-5],
  [1,1,-4,-4,8,8,-5,-5],
  [1,-1,4,-4,8,-8,5,-5]]],
##
[[1,4,7,8,10,12,17],"$3.A_6.2_3 \\leq 3.A_6.2^2$",
 [[1,1,36,36,135,135,216],
  [1,-1,-12,12,15,-15,0],
  [1,1,-4,-4,15,15,-24],
  [1,-1,8,-8,15,-15,0],
  [1,1,8,8,-5,-5,-8],
  [1,1,-4,-4,-5,-5,16],
  [1,-1,0,0,-9,9,0]]],
##
[[1,3,5,10,14],"$2^{1+4}_{-}:S_5$",
 [[1,10,64,80,160],
  [1,-5,4,20,-20],
  [1,5,-16,10,0],
  [1,3,8,-4,-8],
  [1,-2,-2,-4,7]]],
##
[[1,3,5,8,10,12,13,14,23,25,26,27],"$2^{1+4}_-:5:4 \\leq 2^{1+4}_{-}:S_5$",
 [[1,5,20,40,64,80,80,160,160,320,320,640],
  [1,5,-10,-20,4,20,20,-20,-20,20,80,-80],
  [1,5,10,20,-16,10,10,0,0,-80,40,0],
  [1,-1,8,-8,0,-24,-8,-32,32,0,32,0],
  [1,5,6,12,8,-4,-4,-8,-8,40,-16,-32],
  [1,-1,6,-6,-4,8,-16,28,4,4,8,-32],
  [1,-1,-2,2,20,16,-8,-12,12,-20,-8,0],
  [1,5,-4,-8,-2,-4,-4,7,7,-10,-16,28],
  [1,-1,-4,4,6,-12,4,13,-1,-6,8,-12],
  [1,-1,-4,4,-8,2,-10,-8,-8,8,8,16],
  [1,-1,2+ER(6),-2-ER(6),-2+2*ER(6),2-ER(6),8-ER(6),
   -2,-2-6*ER(6),2-2*ER(6),-10+2*ER(6),4+6*ER(6)],
  [1,-1,2-ER(6),-2+ER(6),-2-2*ER(6),2+ER(6),8+ER(6),
   -2,-2+6*ER(6),2+2*ER(6),-10-2*ER(6),4-6*ER(6)]]],
##
[[1,5,7,10,14,16],"$2^{2+4}.(S_3 \\times S_3)$",
 [[1,12,32,96,192,192],
  [1,7,-8,16,12,-28],
  [1,-3,12,6,2,-18],
  [1,5,4,-2,-18,10],
  [1,0,-1,-12,12,0],
  [1,-3,-4,6,-6,6]]],
##
[[1,2,5,6,7,8,10,11,14,15,16,17],
"$2^{2+4}.(3 \\times S_3) \\leq 2^{2+4}.(S_3 \\times S_3)$",
 [[1,1,12,12,32,32,96,96,192,192,192,192],
  [1,-1,12,-12,32,-32,-96,96,-192,-192,192,192],
  [1,1,7,7,-8,-8,16,16,-28,12,-28,12],
  [1,-1,7,-7,-8,8,-16,16,28,-12,-28,12],
  [1,1,-3,-3,12,12,6,6,-18,2,-18,2],
  [1,-1,-3,3,12,-12,-6,6,18,-2,-18,2],
  [1,1,5,5,4,4,-2,-2,10,-18,10,-18],
  [1,-1,5,-5,4,-4,2,-2,-10,18,10,-18],
  [1,1,0,0,-1,-1,-12,-12,0,12,0,12],
  [1,-1,0,0,-1,1,12,-12,0,-12,0,12],
  [1,1,-3,-3,-4,-4,6,6,6,-6,6,-6],
  [1,-1,-3,3,-4,4,-6,6,-6,6,6,-6]]],
##
[[1,5,7,9,10,14,15,16,20],
"$2^{2+4}.(S_3 \\times 3) \\leq 2^{2+4}.(S_3 \\times S_3)$",
 [[1,1,24,32,32,192,192,192,384],
  [1,1,14,-8,-8,32,12,12,-56],
  [1,1,-6,12,12,12,2,2,-36],
  [1,-1,0,-8,8,0,-12,12,0],
  [1,1,10,4,4,-4,-18,-18,20],
  [1,1,0,-1,-1,-24,12,12,0],
  [1,-1,0,7,-7,0,-12,12,0],
  [1,1,-6,-4,-4,12,-6,-6,12],
  [1,-1,0,0,0,0,16,-16,0]]],
##
[[1,7,10,12,14,16,21],"$(A_4 \\times A_5).2$",
 [[1,15,20,24,180,240,360],
  [1,5,10,-6,0,20,-30],
  [1,1,6,10,-16,-12,10],
  [1,-5,0,4,20,0,-20],
  [1,6,-4,0,9,-12,0],
  [1,-3,2,-6,0,-12,18],
  [1,-1,-4,0,-12,16,0]]],
##
[[1,2,7,8,10,11,12,13,14,15,16,17,20,21],
"$A_4 \\times A_5 \\leq (A_4 \\times A_5).2$",
 [[1,1,15,15,20,20,24,24,180,180,240,240,360,360],
  [1,-1,-15,15,20,-20,24,-24,180,-180,-240,240,-360,360],
  [1,1,5,5,10,10,-6,-6,0,0,20,20,-30,-30],
  [1,-1,-5,5,10,-10,-6,6,0,0,-20,20,30,-30],
  [1,1,1,1,6,6,10,10,-16,-16,-12,-12,10,10],
  [1,-1,-1,1,6,-6,10,-10,-16,16,12,-12,-10,10],
  [1,1,-5,-5,0,0,4,4,20,20,0,0,-20,-20],
  [1,-1,5,-5,0,0,4,-4,20,-20,0,0,20,-20],
  [1,1,6,6,-4,-4,0,0,9,9,-12,-12,0,0],
  [1,-1,-6,6,-4,4,0,0,9,-9,12,-12,0,0],
  [1,1,-3,-3,2,2,-6,-6,0,0,-12,-12,18,18],
  [1,-1,3,-3,2,-2,-6,6,0,0,12,-12,-18,18],
  [1,-1,1,-1,-4,4,0,0,-12,12,-16,16,0,0],
  [1,1,-1,-1,-4,-4,0,0,-12,-12,16,16,0,0]]],
##
[[1,3,10,11,12,14,21,23],"$(A_5 \\times D_{10}).2$",
 [[1,12,25,50,120,200,300,300],
  [1,-6,-5,20,30,-10,-60,30],
  [1,-2,11,8,-6,18,-8,-22],
  [1,6,-5,0,18,10,0,-30],
  [1,4,5,-10,0,0,-20,20],
  [1,3,1,8,-6,-22,12,3],
  [1,-4,1,-6,8,-8,12,-4],
  [1,-1,-5,0,-10,10,0,5]]],
##
[[1,8,10,11,12,13,14,16,21,23,26,27],"$5^2:(4 \\times S_3)$",
 [[1,15,25,75,100,150,150,150,150,300,300,600],
  [1,-3,-13,27,-12,-30,6,-6,6,36,12,-24],
  [1,1,11,19,16,10,-18,-18,-18,20,-8,-16],
  [1,9,-5,-5,0,10,30,-10,-10,20,-40,0],
  [1,7,5,7,-20,-2,6,-6,-6,-28,28,8],
  [1,-3,7,7,-12,10,6,14,26,-4,-28,-24],
  [1,6,1,-6,16,-15,-3,12,12,0,12,-36],
  [1,-3,-5,3,4,18,6,18,-18,-12,12,-24],
  [1,-1,1,-13,-12,6,-10,-2,-2,28,12,-8],
  [1,2,-5,2,0,3,-19,4,4,-8,-12,28],
  [1,-3,1+ER(6),-3,4-ER(6),-6-4*ER(6),6,-6+5*ER(6),-4*ER(6),
   -6+2*ER(6),-3*ER(6),12+4*ER(6)],
  [1,-3,1-ER(6),-3,4+ER(6),-6+4*ER(6),6,-6-5*ER(6),4*ER(6),
   -6-2*ER(6),3*ER(6),12-4*ER(6)]]]];

MULTFREEINFO.("HS.2"):= ["$HS.2$",
##
[[1,3,5],"$M_{22}.2$",
 [[1,22,77],
  [1,-8,7],
  [1,2,-3]]],
##
[[1,2,3,4,5,6],"$M_{22} \\leq M_{22}.2$",
 [[1,1,22,22,77,77],
  [1,-1,-22,22,-77,77],
  [1,1,-8,-8,7,7],
  [1,-1,8,-8,-7,7],
  [1,1,2,2,-3,-3],
  [1,-1,-2,2,3,-3]]],
##
[[1,2,10,11],"$U_3(5).2$",
 [[1,50,126,175],
  [1,-50,-126,175],
  [1,6,-6,-1],
  [1,-6,6,-1]]],
##
[[1,2,3,4,9,10,11],"$U_3(5) \\leq U_3(5).2$",
 [[1,1,50,50,175,175,252],
  [1,1,-50,-50,175,175,-252],
  [1,-1,-20,20,35,-35,0],
  [1,-1,20,-20,35,-35,0],
  [1,-1,0,0,-5,5,0],
  [1,1,6,6,-1,-1,-12],
  [1,1,-6,-6,-1,-1,12]]],
##
[[1,10,11,14,19,21,22,25,26,29,31,34,35,37,39],"$5^{1+2}_+:[2^5]$",
 [[1,50,125,250,250,500,1000,1000,1000,2000,2000,2000,4000,4000,4000],
  [1,6,-7,118,30,60,-56,120,32,-112,-112,-112,128,128,-224],
  [1,-6,5,130,-30,-60,40,-120,-40,80,80,80,-160,-160,160],
  [1,14,-7,-2,30,12,72,-40,32,16,16,80,64,-128,-160],
  [1,6,13,-2,10,60,-56,-40,-8,48,-112,48,-32,-32,96],
  [1,9,8,-2,0,-18,37,45,-58,-34,-34,20,-16,2,40],
  [1,-6,13,-2,40,-18,-8,20,-8,96,26,-30,-116,52,-60],
  [1,14,13,-2,-10,-8,-8,0,72,-24,36,-60,-56,-8,40],
  [1,-1,-22,-2,10,32,7,-5,-8,-64,56,20,-116,52,40],
  [1,-2,-3,-2,-22,4,-40,56,8,32,32,64,-16,-64,-48],
  [1,-10,5,-2,-14,-4,40,-8,40,-16,-64,32,-32,64,-32],
  [1,-6,3+6*ER(5),-2,-2*ER(5),12+4*ER(5),12-4*ER(5),-8*ER(5),-8-8*ER(5),
   -4-12*ER(5),16+16*ER(5),-40+8*ER(5),44+4*ER(5),-48+16*ER(5),20-20*ER(5)],
  [1,-6,3-6*ER(5),-2,2*ER(5),12-4*ER(5),12+4*ER(5),8*ER(5),-8+8*ER(5),
   -4+12*ER(5),16-16*ER(5),-40-8*ER(5),44-4*ER(5),-48-16*ER(5),20+20*ER(5)],
  [1,-2,-3,-2,14,-32,-40,-16,8,-40,-4,28,56,8,24],
  [1,5,-10,-2,-14,-4,-5,-23,-20,44,-4,-28,28,64,-32]]],
##
[[1,3,5,10,19],"$L_3(4).2^2$",
 [[1,42,105,280,672],
  [1,12,-45,80,-48],
  [1,22,5,-20,-8],
  [1,-2,17,16,-32],
  [1,-2,-3,-4,8]]],
##
[[1,3,4,5,6,10,13,17,19],"$L_3(4).2_3 \\leq L_3(4).2^2$",
 [[1,1,42,42,105,105,560,672,672],
  [1,1,12,12,-45,-45,160,-48,-48],
  [1,-1,-28,28,-35,35,0,-112,112],
  [1,1,22,22,5,5,-40,-8,-8],
  [1,-1,-18,18,15,-15,0,48,-48],
  [1,1,-2,-2,17,17,32,-32,-32],
  [1,-1,2,-2,15,-15,0,-32,32],
  [1,-1,2,-2,-5,5,0,8,-8],
  [1,1,-2,-2,-3,-3,-8,8,8]]],
##
[[1,2,3,4,5,6,10,11,19,20],"$L_3(4).2_1 \\leq L_3(4).2^2$",
 [[1,1,42,42,105,105,280,280,672,672],
  [1,-1,-42,42,105,-105,280,-280,672,-672],
  [1,1,12,12,-45,-45,80,80,-48,-48],
  [1,-1,-12,12,-45,45,80,-80,-48,48],
  [1,1,22,22,5,5,-20,-20,-8,-8],
  [1,-1,-22,22,5,-5,-20,20,-8,8],
  [1,1,-2,-2,17,17,16,16,-32,-32],
  [1,-1,2,-2,17,-17,16,-16,-32,32],
  [1,1,-2,-2,-3,-3,-4,-4,8,8],
  [1,-1,2,-2,-3,3,-4,4,8,-8]]],
##
[[1,5,7,10,14],"$A_8.2 \\times 2$",
 [[1,28,105,336,630],
  [1,-12,25,16,-30],
  [1,8,15,-24,0],
  [1,6,-5,28,-30],
  [1,-2,-5,-4,10]]],
##
[[1,3,5,7,9,10,14,16],"$A_8 \\times 2 \\leq A_8.2 \\times 2$",
 [[1,1,56,105,105,336,336,1260],
  [1,-1,0,-35,35,-112,112,0],
  [1,1,-24,25,25,16,16,-60],
  [1,1,16,15,15,-24,-24,0],
  [1,-1,0,15,-15,-12,12,0],
  [1,1,12,-5,-5,28,28,-60],
  [1,1,-4,-5,-5,-4,-4,20],
  [1,-1,0,-5,5,8,-8,0]]],
##
[[1,4,5,7,9,10,14,17],"$A_8.2 \\leq A_8.2 \\times 2$",
 [[1,1,56,105,105,336,336,1260],
  [1,-1,0,35,-35,-112,112,0],
  [1,1,-24,25,25,16,16,-60],
  [1,1,16,15,15,-24,-24,0],
  [1,-1,0,-15,15,-12,12,0],
  [1,1,12,-5,-5,28,28,-60],
  [1,1,-4,-5,-5,-4,-4,20],
  [1,-1,0,5,-5,8,-8,0]]],
##
[[1,2,5,6,7,8,10,11,14,15],"$A_8.2 \\leq A_8.2 \\times 2$",
 [[1,1,28,28,105,105,336,336,630,630],
  [1,-1,-28,28,-105,105,-336,336,630,-630],
  [1,1,-12,-12,25,25,16,16,-30,-30],
  [1,-1,12,-12,-25,25,-16,16,-30,30],
  [1,1,8,8,15,15,-24,-24,0,0],
  [1,-1,-8,8,-15,15,24,-24,0,0],
  [1,1,6,6,-5,-5,28,28,-30,-30],
  [1,-1,-6,6,5,-5,-28,28,-30,30],
  [1,1,-2,-2,-5,-5,-4,-4,10,10],
  [1,-1,2,-2,5,-5,4,-4,10,-10]]],
##
[[1,3,5,7,10,14,16,19,26],"$4^3:(L_3(2) \\times 2)$",
 [[1,28,64,112,336,448,896,896,1344],
  [1,-7,-36,42,-84,168,-224,56,84],
  [1,13,14,32,6,28,16,-164,54],
  [1,13,4,22,36,-32,-64,56,-36],
  [1,-5,20,2,6,52,16,16,-108],
  [1,3,4,2,-34,-12,16,16,4],
  [1,-7,-6,12,6,-12,16,-4,-6],
  [1,5,-10,-8,6,12,16,-4,-18],
  [1,-2,4,-8,6,-2,-19,-4,24]]],
##
[[1,2,3,4,5,6,7,8,10,11,14,15,16,17,19,20,26,27],
"$4^3:L_3(2) \\leq 4^3:(L_3(2) \\times 2)$",
 [[1,1,28,28,64,64,112,112,336,336,448,448,896,896,896,896,1344,1344],
  [1,-1,28,-28,-64,64,-112,112,-336,336,-448,448,-896,896,-896,896,
   1344,-1344],
  [1,1,-7,-7,-36,-36,42,42,-84,-84,168,168,56,-224,-224,56,84,84],
  [1,-1,-7,7,36,-36,-42,42,84,-84,-168,168,-56,-224,224,56,84,-84],
  [1,1,13,13,14,14,32,32,6,6,28,28,-164,16,16,-164,54,54],
  [1,-1,13,-13,-14,14,-32,32,-6,6,-28,28,164,16,-16,-164,54,-54],
  [1,1,13,13,4,4,22,22,36,36,-32,-32,56,-64,-64,56,-36,-36],
  [1,-1,13,-13,-4,4,-22,22,-36,36,32,-32,-56,-64,64,56,-36,36],
  [1,1,-5,-5,20,20,2,2,6,6,52,52,16,16,16,16,-108,-108],
  [1,-1,-5,5,-20,20,-2,2,-6,6,-52,52,-16,16,-16,16,-108,108],
  [1,1,3,3,4,4,2,2,-34,-34,-12,-12,16,16,16,16,4,4],
  [1,-1,3,-3,-4,4,-2,2,34,-34,12,-12,-16,16,-16,16,4,-4],
  [1,1,-7,-7,-6,-6,12,12,6,6,-12,-12,-4,16,16,-4,-6,-6],
  [1,-1,-7,7,6,-6,-12,12,-6,6,12,-12,4,16,-16,-4,-6,6],
  [1,1,5,5,-10,-10,-8,-8,6,6,12,12,-4,16,16,-4,-18,-18],
  [1,-1,5,-5,10,-10,8,-8,-6,6,-12,12,4,16,-16,-4,-18,18],
  [1,1,-2,-2,4,4,-8,-8,6,6,-2,-2,-4,-19,-19,-4,24,24],
  [1,-1,-2,2,-4,4,8,-8,-6,6,2,-2,4,-19,19,-4,24,-24]]],
##
[[1,2,3,4,5,6,9,10,11,16,17,19,20,22,23,34,35],"$M_{11}$",
 [[1,12,55,110,132,165,330,396,495,660,660,792,792,1320,1320,1980,1980],
  [1,-12,55,-110,132,165,-330,-396,495,660,-660,-792,792,-1320,1320,
   -1980,1980],
  [1,-8,5,60,52,-85,-20,96,195,-140,-40,-288,72,320,-280,-120,180],
  [1,8,5,-60,52,-85,20,-96,195,-140,40,288,72,-320,-280,120,180],
  [1,7,-20,35,37,40,55,-54,45,85,-140,72,-138,70,-80,-45,30],
  [1,-7,-20,-35,37,40,-55,54,45,85,140,-72,-138,-70,-80,45,30],
  [1,0,-19,0,-12,-21,0,0,27,84,0,0,72,0,-24,0,-108],
  [1,4,7,26,4,37,-50,36,63,-44,28,72,24,-8,40,-108,-132],
  [1,-4,7,-26,4,37,50,-36,63,-44,-28,-72,24,8,40,108,-132],
  [1,-5,-4,15,13,-16,-5,-30,-3,-11,20,0,-18,-10,56,15,-18],
  [1,5,-4,-15,13,-16,5,30,-3,-11,-20,0,-18,10,56,-15,-18],
  [1,-1,12,11,-11,-8,15,26,13,21,-12,-8,-26,-58,0,27,-2],
  [1,1,12,-11,-11,-8,-15,-26,13,21,12,8,-26,58,0,-27,-2],
  [1,5,6,5,13,4,15,-10,-23,9,30,-20,22,-10,-24,-15,-8],
  [1,-5,6,-5,13,4,-15,10,-23,9,-30,20,22,10,-24,15,-8],
  [1,-ER(5),-4,-ER(5),-7,4,7*ER(5),2*ER(5),-3,-11,4*ER(5),4*ER(5),
   2,2*ER(5),-4,-17*ER(5),22],
  [1,ER(5),-4,ER(5),-7,4,-7*ER(5),-2*ER(5),-3,-11,-4*ER(5),-4*ER(5),
   2,-2*ER(5),-4,17*ER(5),22]]],
##
[[1,5,7,10,14,19,22,25,26],"$2^{1+6}_+:S_5$",
 [[1,30,80,128,480,640,960,1536,1920],
  [1,15,20,-32,60,80,0,96,-240],
  [1,15,20,8,60,-20,0,-144,60],
  [1,-3,14,40,-48,68,36,-48,-60],
  [1,5,-10,8,0,20,-60,16,20],
  [1,7,4,0,-28,-32,16,32,0],
  [1,-5,10,-12,-10,10,-20,-4,30],
  [1,-5,0,8,20,-20,0,16,-20],
  [1,0,-10,-7,0,10,30,-24,0]]],
##
[[1,2,5,6,7,8,10,11,14,15,19,20,22,23,24,25,26,27],"$4.2^4:S_5 \\leq 2^{1+6}_+:\
S_5$",
 [[1,1,30,30,80,80,128,128,480,480,640,640,960,960,1536,1536,1920,1920],
  [1,-1,30,-30,80,-80,-128,128,480,-480,640,-640,960,-960,-1536,1536,
   1920,-1920],
  [1,1,15,15,20,20,-32,-32,60,60,80,80,0,0,96,96,-240,-240],
  [1,-1,15,-15,20,-20,32,-32,60,-60,80,-80,0,0,-96,96,-240,240],
  [1,1,15,15,20,20,8,8,60,60,-20,-20,0,0,-144,-144,60,60],
  [1,-1,15,-15,20,-20,-8,8,60,-60,-20,20,0,0,144,-144,60,-60],
  [1,1,-3,-3,14,14,40,40,-48,-48,68,68,36,36,-48,-48,-60,-60],
  [1,-1,-3,3,14,-14,-40,40,-48,48,68,-68,36,-36,48,-48,-60,60],
  [1,1,5,5,-10,-10,8,8,0,0,20,20,-60,-60,16,16,20,20],
  [1,-1,5,-5,-10,10,-8,8,0,0,20,-20,-60,60,-16,16,20,-20],
  [1,1,7,7,4,4,0,0,-28,-28,-32,-32,16,16,32,32,0,0],
  [1,-1,7,-7,4,-4,0,0,-28,28,-32,32,16,-16,-32,32,0,0],
  [1,1,-5,-5,10,10,-12,-12,-10,-10,10,10,-20,-20,-4,-4,30,30],
  [1,-1,-5,5,10,-10,12,-12,-10,10,10,-10,-20,20,4,-4,30,-30],
  [1,-1,-5,5,0,0,-8,8,20,-20,-20,20,0,0,-16,16,-20,20],
  [1,1,-5,-5,0,0,8,8,20,20,-20,-20,0,0,16,16,-20,-20],
  [1,1,0,0,-10,-10,-7,-7,0,0,10,10,30,30,-24,-24,0,0],
  [1,-1,0,0,-10,10,7,-7,0,0,10,-10,30,-30,24,-24,0,0]]]];

MULTFREEINFO.("J3.2"):= ["$J_3.2$",
##
[[1,4,6,10,13,15,16],"$L_2(16).4$",
 [[1,85,120,510,680,2040,2720],
  [1,13,12,-30,-40,-12,56],
  [1,-17,-18,0,0,-102,136],
  [1,13,-6,6,32,-30,-16],
  [1,-4-ER(17),-6+2*ER(17),-11-5*ER(17),-2+6*ER(17),38-2*ER(17),-16],
  [1,-4+ER(17),-6-2*ER(17),-11+5*ER(17),-2-6*ER(17),38+2*ER(17),-16],
  [1,-5,12,24,-4,-12,-16]]],
##
[[1,5,10,12,13,14,15,16,18,20,22,24,25,27,29],"$3^2.3^{1+2}:8.2$",
 [[1,81,243,243,972,972,1944,1944,1944,1944,1944,1944,3888,3888,3888],
  [1,21,-17,63,-78,22,164,-16,44,24,-16,164,-232,-152,8],
  [1,21,3,-5,46,42,-44,-64,-28,40,96,12,-24,8,-104],
  [1,8+ER(17),22-3*ER(17),13-2*ER(17),-12-8*ER(17),8+4*ER(17),
   -60-12*ER(17),-20+12*ER(17),16+8*ER(17),24,-64-8*ER(17),
   -16+8*ER(17),24-8*ER(17),-8+24*ER(17),64-16*ER(17)],
  [1,4-3*ER(17),3+2*ER(17),-22+3*ER(17),12+8*ER(17),8-4*ER(17),
   -10-10*ER(17),72+8*ER(17),-28+12*ER(17),-28+12*ER(17),
   -6+2*ER(17),46+6*ER(17),10-6*ER(17),-94-14*ER(17),32-16*ER(17)],
 [1,8-ER(17),22+3*ER(17),13+2*ER(17),-12+8*ER(17),8-4*ER(17),
   -60+12*ER(17),-20-12*ER(17),16-8*ER(17),24,-64+8*ER(17),
   -16-8*ER(17),24+8*ER(17),-8-24*ER(17),64+16*ER(17)],
  [1,4+3*ER(17),3-2*ER(17),-22-3*ER(17),12-8*ER(17),8+4*ER(17),
   -10+10*ER(17),72-8*ER(17),-28-12*ER(17),-28-12*ER(17),
   -6-2*ER(17),46-6*ER(17),10+6*ER(17),-94+14*ER(17),32+16*ER(17)],
  [1,9,-3,13,4,-12,28,32,80,-80,12,-60,84,-28,-80],
  [1,-3-2*EY(9)-GaloisCyc(EY(9),2),6-4*EY(9)-14*GaloisCyc(EY(9),2),
   1-3*EY(9)+9*GaloisCyc(EY(9),2),10-22*EY(9)-8*GaloisCyc(EY(9),2),
   27*EY(9)+12*GaloisCyc(EY(9),2),40+6*EY(9)-12*GaloisCyc(EY(9),2),
   14+10*EY(9)+8*GaloisCyc(EY(9),2),-34+3*EY(9)-27*GaloisCyc(EY(9),2),
   19+34*EY(9)+20*GaloisCyc(EY(9),2),-30+7*EY(9)-4*GaloisCyc(EY(9),2),
   -12-30*EY(9)-3*GaloisCyc(EY(9),2),-6+18*EY(9)+54*GaloisCyc(EY(9),2),
   38-36*EY(9)-24*GaloisCyc(EY(9),2),-44-8*EY(9)-10*GaloisCyc(EY(9),2)],
  [1,-3+EY(9)+2*GaloisCyc(EY(9),2),6-10*EY(9)+4*GaloisCyc(EY(9),2),
   1+12*EY(9)+3*GaloisCyc(EY(9),2),10+14*EY(9)+22*GaloisCyc(EY(9),2),
   -15*EY(9)-27*GaloisCyc(EY(9),2),40-18*EY(9)-6*GaloisCyc(EY(9),2),
   14-2*EY(9)-10*GaloisCyc(EY(9),2),-34-30*EY(9)-3*GaloisCyc(EY(9),2),
   19-14*EY(9)-34*GaloisCyc(EY(9),2),-30-11*EY(9)-7*GaloisCyc(EY(9),2),
   -12+27*EY(9)+30*GaloisCyc(EY(9),2),-6+36*EY(9)-18*GaloisCyc(EY(9),2),
   38+12*EY(9)+36*GaloisCyc(EY(9),2),-44-2*EY(9)+8*GaloisCyc(EY(9),2)],
  [1,-3+EY(9)-GaloisCyc(EY(9),2),6+14*EY(9)+10*GaloisCyc(EY(9),2),
   1-9*EY(9)-12*GaloisCyc(EY(9),2),10+8*EY(9)-14*GaloisCyc(EY(9),2),
   -12*EY(9)+15*GaloisCyc(EY(9),2),40+12*EY(9)+18*GaloisCyc(EY(9),2),
   14-8*EY(9)+2*GaloisCyc(EY(9),2),-34+27*EY(9)+30*GaloisCyc(EY(9),2),
   19-20*EY(9)+14*GaloisCyc(EY(9),2),-30+4*EY(9)+11*GaloisCyc(EY(9),2),
   -12+3*EY(9)-27*GaloisCyc(EY(9),2),-6-54*EY(9)-36*GaloisCyc(EY(9),2),
   38+24*EY(9)-12*GaloisCyc(EY(9),2),-44+10*EY(9)+2*GaloisCyc(EY(9),2)],
  [1,3,-15,-5,-8,-48,-8,8,8,40,24,-24,-24,8,40],
  [1,-9,-12,13,22,42,-26,14,-1,-44,21,-33,-78,26,64],
  [1,-7,-15,-15,12,12,12,-72,48,0,-36,36,36,-12,0],
  [1,-9,13,3,-48,-8,-16,-16,-16,-24,56,32,32,16,-16]]]];

MULTFREEINFO.("McL.2"):= ["$McL.2$",
##
[[1,3,7],"$U_4(3).2_3$",
 [[1,112,162],
  [1,-28,27],
  [1,2,-3]]],
##
[[1,2,3,4,7,8],"$U_4(3) \\leq U_4(3).2_3$",
 [[1,1,112,112,162,162],
  [1,-1,-112,112,162,-162],
  [1,1,-28,-28,27,27],
  [1,-1,28,-28,27,-27],
  [1,1,2,2,-3,-3],
  [1,-1,-2,2,-3,3]]],
##
[[1,2,3,4,7,8,14,15],"$M_{22}$",
 [[1,22,176,330,462,672,1155,1232],
  [1,-22,-176,330,462,-672,-1155,1232],
  [1,-13,76,-120,147,-168,105,-28],
  [1,13,-76,-120,147,168,-105,-28],
  [1,7,26,30,27,12,-45,-58],
  [1,-7,-26,30,27,-12,45,-58],
  [1,4,-4,-3,-6,-12,12,8],
  [1,-4,4,-3,-6,12,-12,8]]],
##
[[1,4,7,14,24],"$U_3(5).2$",
 [[1,252,750,2625,3500],
  [1,-126,300,-525,350],
  [1,54,90,-15,-130],
  [1,-18,12,51,-46],
  [1,4,-10,-15,20]]],
##
[[1,2,3,4,7,8,14,15,24,25],"$U_3(5) \\leq U_3(5).2$",
 [[1,1,252,252,750,750,2625,2625,3500,3500],
  [1,-1,252,-252,-750,750,2625,-2625,-3500,3500],
  [1,-1,-126,126,-300,300,-525,525,-350,350],
  [1,1,-126,-126,300,300,-525,-525,350,350],
  [1,1,54,54,90,90,-15,-15,-130,-130],
  [1,-1,54,-54,-90,90,-15,15,130,-130],
  [1,1,-18,-18,12,12,51,51,-46,-46],
  [1,-1,-18,18,-12,12,51,-51,46,-46],
  [1,1,4,4,-10,-10,-15,-15,20,20],
  [1,-1,4,-4,10,-10,-15,15,-20,20]]],
##
[[1,7,20,24,26],"$3^{1+4}:4S_5$",
 [[1,90,1215,2430,11664],
  [1,35,225,-45,-216],
  [1,-1,-3,-69,72],
  [1,10,-25,30,-16],
  [1,-10,15,30,-36]]],
##
[[1,2,7,8,20,21,24,25,26,27],"$3^{1+4}:2S_5 \\leq 3^{1+4}:4S_5$",
 [[1,1,90,90,1215,1215,2430,2430,11664,11664],
  [1,-1,90,-90,1215,-1215,2430,-2430,11664,-11664],
  [1,1,35,35,225,225,-45,-45,-216,-216],
  [1,-1,35,-35,225,-225,-45,45,-216,216],
  [1,1,-1,-1,-3,-3,-69,-69,72,72],
  [1,-1,-1,1,-3,3,-69,69,72,-72],
  [1,1,10,10,-25,-25,30,30,-16,-16],
  [1,-1,10,-10,-25,25,30,-30,-16,16],
  [1,1,-10,-10,15,15,30,30,-36,-36],
  [1,-1,-10,10,15,-15,30,-30,-36,36]]],
##
[[1,6,7,20,24,26,27,31],"$3^{1+4}:2S_5 \\leq 3^{1+4}:4S_5$",
 [[1,1,180,1215,1215,4860,11664,11664],
  [1,-1,0,45,-45,0,864,-864],
  [1,1,70,225,225,-90,-216,-216],
  [1,1,-2,-3,-3,-138,72,72],
  [1,1,20,-25,-25,60,-16,-16],
  [1,1,-20,15,15,60,-36,-36],
  [1,-1,0,45,-45,0,-36,36],
  [1,-1,0,-27,27,0,0,0]]],
##
[[1,7,14,24,26,30],"$2.S_8$",
 [[1,210,2240,5040,6720,8064],
  [1,45,260,90,-540,144],
  [1,39,-28,72,60,-144],
  [1,-5,60,-60,60,-56],
  [1,-15,-10,90,-30,-36],
  [1,3,-28,-36,-12,72]]],
##
[[1,2,7,8,14,15,24,25,26,27,30,31],"$2.A_8 \\leq 2.S_8$",
 [[1,1,210,210,2240,2240,5040,5040,6720,6720,8064,8064],
  [1,-1,-210,210,-2240,2240,5040,-5040,-6720,6720,-8064,8064],
  [1,1,45,45,260,260,90,90,-540,-540,144,144],
  [1,-1,-45,45,-260,260,90,-90,540,-540,-144,144],
  [1,1,39,39,-28,-28,72,72,60,60,-144,-144],
  [1,-1,-39,39,28,-28,72,-72,-60,60,144,-144],
  [1,1,-5,-5,60,60,-60,-60,60,60,-56,-56],
  [1,-1,5,-5,-60,60,-60,60,-60,60,56,-56],
  [1,1,-15,-15,-10,-10,90,90,-30,-30,-36,-36],
  [1,-1,15,-15,10,-10,90,-90,30,-30,36,-36],
  [1,1,3,3,-28,-28,-36,-36,-12,-12,72,72],
  [1,-1,-3,3,28,-28,-36,36,12,-12,-72,72]]]];

MULTFREEINFO.("He.2"):= ["$He.2$",
##
[[1,3,5,9],"$S_4(4).4$",
 [[1,272,425,1360],
  [1,-36,75,-40],
  [1,20,5,-26],
  [1,-8,-9,16]]],
##
[[1,3,5,8,11,15],"$2^2.L_3(4).D_{12}$",
 [[1,105,720,1344,1680,4480],
  [1,35,-120,224,-140,0],
  [1,21,6,0,84,-112],
  [1,7,48,0,-56,0],
  [1,-14,6,35,14,-42],
  [1,0,-15,-21,0,35]]],
##
[[1,3,5,7,8,11,15,17],"$2^2.L_3(4).S_3 \\leq 2^2.L_3(4).D_{12}$",
 [[1,1,210,1344,1344,1440,3360,8960],
  [1,1,70,224,224,-240,-280,0],
  [1,1,42,0,0,12,168,-224],
  [1,-1,0,-64,64,0,0,0],
  [1,1,14,0,0,96,-112,0],
  [1,1,-28,35,35,12,28,-84],
  [1,1,0,-21,-21,-30,0,70],
  [1,-1,0,21,-21,0,0,0]]],
##
[[1,3,5,7,8,11,15,18],"$2^2.L_3(4).6 \\leq 2^2.L_3(4).D_{12}$",
 [[1,1,210,1344,1344,1440,3360,8960],
  [1,1,70,224,224,-240,-280,0],
  [1,1,42,0,0,12,168,-224],
  [1,-1,0,64,-64,0,0,0],
  [1,1,14,0,0,96,-112,0],
  [1,1,-28,35,35,12,28,-84],
  [1,1,0,-21,-21,-30,0,70],
  [1,-1,0,-21,21,0,0,0]]]];

MULTFREEINFO.("Suz.2"):= ["$Suz.2$",
##
[[1,7,9],"$G_2(4).2$",
 [[1,416,1365],
  [1,20,-21],
  [1,-16,15]]],
##
[[1,2,7,8,9,10],"$G_2(4) \\leq G_2(4).2$",
 [[1,1,416,416,1365,1365],
  [1,-1,416,-416,-1365,1365],
  [1,1,20,20,-21,-21],
  [1,-1,20,-20,21,-21],
  [1,1,-16,-16,15,15],
  [1,-1,-16,16,-15,15]]],
##
[[1,5,7,14,23],"$3.U_4(3).2^2$",
 [[1,280,486,8505,13608],
  [1,80,-54,405,-432],
  [1,-28,90,189,-252],
  [1,20,18,-75,36],
  [1,-8,-10,9,8]]],
##
[[1,2,5,6,7,8,14,15,23,24],"$3.U_4(3).2_3^{\\prime} \\leq 3.U_4(3).2^2$",
 [[1,1,280,280,486,486,8505,8505,13608,13608],
  [1,-1,-280,280,486,-486,-8505,8505,-13608,13608],
  [1,1,80,80,-54,-54,405,405,-432,-432],
  [1,-1,-80,80,-54,54,-405,405,432,-432],
  [1,1,-28,-28,90,90,189,189,-252,-252],
  [1,-1,28,-28,90,-90,-189,189,252,-252],
  [1,1,20,20,18,18,-75,-75,36,36],
  [1,-1,-20,20,18,-18,75,-75,-36,36],
  [1,1,-8,-8,-10,-10,9,9,8,8],
  [1,-1,8,-8,-10,10,-9,9,-8,8]]],
##
[[1,3,5,7,14,16,18,23],"$3.U_4(3).2_3 \\leq 3.U_4(3).2^2$",
 [[1,1,486,486,560,8505,8505,27216],
  [1,-1,-162,162,0,945,-945,0],
  [1,1,-54,-54,160,405,405,-864],
  [1,1,90,90,-56,189,189,-504],
  [1,1,18,18,40,-75,-75,72],
  [1,-1,-18,18,0,-63,63,0],
  [1,-1,18,-18,0,45,-45,0],
  [1,1,-10,-10,-16,9,9,16]]],
##
[[1,4,5,7,14,17,19,23],"$3.U_4(3).2_1 \\leq 3.U_4(3).2^2$",
 [[1,1,486,486,560,8505,8505,27216],
  [1,-1,-162,162,0,945,-945,0],
  [1,1,-54,-54,160,405,405,-864],
  [1,1,90,90,-56,189,189,-504],
  [1,1,18,18,40,-75,-75,72],
  [1,-1,-18,18,0,-63,63,0],
  [1,-1,18,-18,0,45,-45,0],
  [1,1,-10,-10,-16,9,9,16]]],
##
[[1,2,3,4,5,6,7,8,14,15,16,17,18,19,23,24],"$3.U_4(3) \\leq 3.U_4(3).2^2$",
 [[1,1,1,1,486,486,486,486,560,560,8505,8505,8505,8505,27216,27216],
  [1,-1,1,-1,-486,486,-486,486,560,-560,-8505,8505,8505,-8505,-27216,27216],
  [1,1,-1,-1,-162,-162,162,162,0,0,-945,-945,945,945,0,0],
  [1,-1,-1,1,162,-162,-162,162,0,0,945,-945,945,-945,0,0],
  [1,1,1,1,-54,-54,-54,-54,160,160,405,405,405,405,-864,-864],
  [1,-1,1,-1,54,-54,54,-54,160,-160,-405,405,405,-405,864,-864],
  [1,1,1,1,90,90,90,90,-56,-56,189,189,189,189,-504,-504],
  [1,-1,1,-1,-90,90,-90,90,-56,56,-189,189,189,-189,504,-504],
  [1,1,1,1,18,18,18,18,40,40,-75,-75,-75,-75,72,72],
  [1,-1,1,-1,-18,18,-18,18,40,-40,75,-75,-75,75,-72,72],
  [1,1,-1,-1,-18,-18,18,18,0,0,63,63,-63,-63,0,0],
  [1,-1,-1,1,18,-18,-18,18,0,0,-63,63,-63,63,0,0],
  [1,1,-1,-1,18,18,-18,-18,0,0,-45,-45,45,45,0,0],
  [1,-1,-1,1,-18,18,18,-18,0,0,45,-45,45,-45,0,0],
  [1,1,1,1,-10,-10,-10,-10,-16,-16,9,9,9,9,16,16],
  [1,-1,1,-1,10,-10,10,-10,-16,16,-9,9,9,-9,-16,16]]],
##
[[1,4,5,14,19,21],"$U_5(2).2$",
 [[1,891,1980,2816,6336,20736],
  [1,243,-180,512,-576,0],
  [1,-99,330,176,-264,-144],
  [1,33,30,8,96,-168],
  [1,-27,-30,32,24,0],
  [1,9,6,-40,-48,72]]],
##
[[1,2,3,4,5,6,14,15,18,19,20,21],"$U_5(2) \\leq U_5(2).2$",
 [[1,1,891,891,1980,1980,2816,2816,6336,6336,20736,20736],
  [1,-1,891,-891,1980,-1980,-2816,2816,6336,-6336,20736,-20736],
  [1,-1,243,-243,-180,180,-512,512,-576,576,0,0],
  [1,1,243,243,-180,-180,512,512,-576,-576,0,0],
  [1,1,-99,-99,330,330,176,176,-264,-264,-144,-144],
  [1,-1,-99,99,330,-330,-176,176,-264,264,-144,144],
  [1,1,33,33,30,30,8,8,96,96,-168,-168],
  [1,-1,33,-33,30,-30,-8,8,96,-96,-168,168],
  [1,-1,-27,27,-30,30,-32,32,24,-24,0,0],
  [1,1,-27,-27,-30,-30,32,32,24,24,0,0],
  [1,-1,9,-9,6,-6,40,-40,-48,48,72,-72],
  [1,1,9,9,6,6,-40,-40,-48,-48,72,72]]],
##
[[1,4,7,11,14,21,26,27,38],"$2^{1+6}_-.U_4(2).2$",
 [[1,54,360,1728,5120,9216,17280,46080,55296],
  [1,-27,90,432,800,-1152,-2160,-1440,3456],
  [1,21,30,276,-160,768,120,-1440,384],
  [1,3,-60,132,200,48,-60,360,-624],
  [1,15,48,12,128,-144,276,-96,-240],
  [1,-9,24,-36,80,144,-108,48,-144],
  [1,-11,10,48,-80,-64,80,80,-64],
  [1,9,6,0,-64,0,-144,192,0],
  [1,0,-12,-18,8,-9,36,-96,90]]],
##
[[1,2,3,4,7,8,11,12,14,15,20,21,25,26,27,28,38,39],
 "$2^{1+6}_-.U_4(2) \\leq 2^{1+6}_-.U_4(2).2$",
 [[1,1,54,54,360,360,1728,1728,5120,5120,9216,9216,17280,17280,
   46080,46080,55296,55296],
  [1,-1,54,-54,-360,360,-1728,1728,5120,-5120,-9216,9216,17280,-17280,
   -46080,46080,-55296,55296],
  [1,-1,-27,27,-90,90,-432,432,800,-800,1152,-1152,-2160,2160,1440,-1440,
   -3456,3456],
  [1,1,-27,-27,90,90,432,432,800,800,-1152,-1152,-2160,-2160,-1440,-1440,
   3456,3456],
  [1,1,21,21,30,30,276,276,-160,-160,768,768,120,120,-1440,-1440,384,384],
  [1,-1,21,-21,-30,30,-276,276,-160,160,-768,768,120,-120,1440,-1440,-384,384],
  [1,1,3,3,-60,-60,132,132,200,200,48,48,-60,-60,360,360,-624,-624],
  [1,-1,3,-3,60,-60,-132,132,200,-200,-48,48,-60,60,-360,360,624,-624],
  [1,1,15,15,48,48,12,12,128,128,-144,-144,276,276,-96,-96,-240,-240],
  [1,-1,15,-15,-48,48,-12,12,128,-128,144,-144,276,-276,96,-96,240,-240],
  [1,-1,-9,9,-24,24,36,-36,80,-80,-144,144,-108,108,-48,48,144,-144],
  [1,1,-9,-9,24,24,-36,-36,80,80,144,144,-108,-108,48,48,-144,-144],
  [1,-1,-11,11,-10,10,-48,48,-80,80,64,-64,80,-80,-80,80,64,-64],
  [1,1,-11,-11,10,10,48,48,-80,-80,-64,-64,80,80,80,80,-64,-64],
  [1,1,9,9,6,6,0,0,-64,-64,0,0,-144,-144,192,192,0,0],
  [1,-1,9,-9,-6,6,0,0,-64,64,0,0,-144,144,-192,192,0,0],
  [1,1,0,0,-12,-12,-18,-18,8,8,-9,-9,36,36,-96,-96,90,90],
  [1,-1,0,0,12,-12,18,-18,8,-8,9,-9,36,-36,96,-96,-90,90]]],
##
[[1,5,6,14,19,21,22,23,33,48],"$3^5:(M_{11} \\times 2)$",
 [[1,165,891,2916,5346,17820,32076,40095,53460,80190],
  [1,65,291,36,-594,1020,-1764,3195,-540,-1710],
  [1,-55,99,-540,198,1980,-1188,-1485,-1980,2970],
  [1,35,111,-48,198,-120,408,-75,-360,-150],
  [1,-25,39,0,-162,120,432,-135,0,-270],
  [1,11,-33,144,54,264,72,-99,-216,-198],
  [1,-19,27,36,90,-36,-180,-9,180,-90],
  [1,21,27,36,-110,-36,-180,-369,340,270],
  [1,5,-21,-60,18,60,12,15,180,-210],
  [1,-1,-9,0,-18,-72,0,81,-144,162]]],
##
[[1,5,7,9,14,19,21,23,27,38,40,44,47],"$2^{4+6}:3S_6$",
 [[1,60,480,1536,1920,6144,6144,20480,23040,23040,46080,92160,184320],
  [1,-15,30,336,120,-96,1104,-1120,-360,-2160,2880,-5040,4320],
  [1,27,84,216,336,864,-192,1472,864,72,-1440,-2880,576],
  [1,15,-60,-156,300,1104,96,-1120,-720,-180,720,1440,-1440],
  [1,21,90,-24,48,-96,216,-112,576,-360,-96,744,-1008],
  [1,-15,30,-96,120,-96,96,320,-360,0,0,0,0],
  [1,-3,18,24,-96,96,264,-16,-144,360,-288,-72,-144],
  [1,7,-36,116,76,-96,48,112,-96,172,240,240,-784],
  [1,15,36,-12,12,-48,-96,-160,-144,252,144,-288,288],
  [1,6,0,6,-42,24,-24,128,-144,-180,9,144,72],
  [1,-9,12,36,12,0,-48,-112,0,-36,-144,144,144],
  [1,-5,0,-16,-20,24,-24,40,120,40,240,-120,-280],
  [1,3,-24,-24,12,-24,24,-40,72,0,-144,-72,216]]],
##
[[1,2,5,6,7,8,9,10,14,15,18,19,20,21,23,24,27,28,38,39,40,41,44,45,47,48],
 "$2^{4+6}:3A_6 \\leq 2^{4+6}:3S_6$",
 [[1,1,60,60,480,480,1536,1536,1920,1920,6144,6144,6144,6144,20480,20480,
  23040,23040,23040,23040,46080,46080,92160,92160,184320,184320],
  [1,-1,-60,60,-480,480,1536,-1536,1920,-1920,-6144,6144,6144,-6144,
  -20480,20480,-23040,23040,23040,-23040,46080,-46080,-92160,92160,
  -184320,184320],
  [1,1,-15,-15,30,30,336,336,120,120,-96,-96,1104,1104,-1120,-1120,
  -360,-360,-2160,-2160,2880,2880,-5040,-5040,4320,4320],
  [1,-1,15,-15,-30,30,336,-336,120,-120,96,-96,1104,-1104,1120,-1120,
  360,-360,-2160,2160,2880,-2880,5040,-5040,-4320,4320],
  [1,1,27,27,84,84,216,216,336,336,864,864,-192,-192,1472,1472,864,864,
  72,72,-1440,-1440,-2880,-2880,576,576],
  [1,-1,-27,27,-84,84,216,-216,336,-336,-864,864,-192,192,-1472,1472,
  -864,864,72,-72,-1440,1440,2880,-2880,-576,576],
  [1,1,15,15,-60,-60,-156,-156,300,300,1104,1104,96,96,-1120,-1120,
  -720,-720,-180,-180,720,720,1440,1440,-1440,-1440],
  [1,-1,-15,15,60,-60,-156,156,300,-300,-1104,1104,96,-96,1120,-1120,
  720,-720,-180,180,720,-720,-1440,1440,1440,-1440],
  [1,1,21,21,90,90,-24,-24,48,48,-96,-96,216,216,-112,-112,576,576,
  -360,-360,-96,-96,744,744,-1008,-1008],
  [1,-1,-21,21,-90,90,-24,24,48,-48,96,-96,216,-216,112,-112,-576,576,
  -360,360,-96,96,-744,744,1008,-1008],
  [1,-1,15,-15,-30,30,-96,96,120,-120,96,-96,96,-96,-320,320,360,-360,
  0,0,0,0,0,0,0,0],
  [1,1,-15,-15,30,30,-96,-96,120,120,-96,-96,96,96,320,320,-360,-360,
  0,0,0,0,0,0,0,0],
  [1,-1,3,-3,-18,18,24,-24,-96,96,-96,96,264,-264,16,-16,144,-144,
  360,-360,-288,288,72,-72,144,-144],
  [1,1,-3,-3,18,18,24,24,-96,-96,96,96,264,264,-16,-16,-144,-144,360,360,
  -288,-288,-72,-72,-144,-144],
  [1,1,7,7,-36,-36,116,116,76,76,-96,-96,48,48,112,112,-96,-96,172,172,
  240,240,240,240,-784,-784],
  [1,-1,-7,7,36,-36,116,-116,76,-76,96,-96,48,-48,-112,112,96,-96,
  172,-172,240,-240,-240,240,784,-784],
  [1,1,15,15,36,36,-12,-12,12,12,-48,-48,-96,-96,-160,-160,-144,-144,
  252,252,144,144,-288,-288,288,288],
  [1,-1,-15,15,-36,36,-12,12,12,-12,48,-48,-96,96,160,-160,144,-144,
  252,-252,144,-144,288,-288,-288,288],
  [1,1,6,6,0,0,6,6,-42,-42,24,24,-24,-24,128,128,-144,-144,-180,-180,
  9,9,144,144,72,72],
  [1,-1,-6,6,0,0,6,-6,-42,42,-24,24,-24,24,-128,128,144,-144,-180,180,
  9,-9,-144,144,-72,72],
  [1,1,-9,-9,12,12,36,36,12,12,0,0,-48,-48,-112,-112,0,0,-36,-36,
  -144,-144,144,144,144,144],
  [1,-1,9,-9,-12,12,36,-36,12,-12,0,0,-48,48,112,-112,0,0,-36,36,
  -144,144,-144,144,-144,144],
  [1,1,-5,-5,0,0,-16,-16,-20,-20,24,24,-24,-24,40,40,120,120,40,40,
  240,240,-120,-120,-280,-280],
  [1,-1,5,-5,0,0,-16,16,-20,20,-24,24,-24,24,-40,40,-120,120,40,-40,
  240,-240,120,-120,280,-280],
  [1,1,3,3,-24,-24,-24,-24,12,12,-24,-24,24,24,-40,-40,72,72,0,0,
  -144,-144,-72,-72,216,216],
  [1,-1,-3,3,24,-24,-24,24,12,-12,24,-24,24,-24,40,-40,-72,72,0,0,
  -144,144,72,-72,-216,216]]]];

MULTFREEINFO.("ON.2"):= ["$ON.2$",
##
[[1,2,3,4,7,8,9,12,13],"$L_3(7).2$",
 [[1,456,5586,6384,11172,32928,52136,58653,78204],
  [1,-456,5586,6384,-11172,-32928,52136,58653,-78204],
  [1,49,196,-106,238,-28,161,-252,-259],
  [1,-49,196,-106,-238,28,161,-252,259],
  [1,-21*ER(2),-21,111,84*ER(2),105*ER(2),161,-252,-168*ER(2)],
  [1,21*ER(2),-21,111,-84*ER(2),-105*ER(2),161,-252,168*ER(2)],
  [1,0,42,48,0,0,-280,189,0],
  [1,4*ER(7),-56,-64,-26*ER(7),80*ER(7),56,63,-58*ER(7)],
  [1,-4*ER(7),-56,-64,26*ER(7),-80*ER(7),56,63,58*ER(7)]]],
##
[[1,2,3,4,7,8,9,10,11,12,13,20,21],"$L_3(7) \\leq L_3(7).2$",
 [[1,1,912,11172,11172,11172,12768,32928,32928,52136,52136,117306,156408],
  [1,1,-912,-11172,-11172,11172,12768,-32928,-32928,52136,52136,
   117306,-156408],
  [1,1,98,238,238,392,-212,-28,-28,161,161,-504,-518],
  [1,1,-98,-238,-238,392,-212,28,28,161,161,-504,518],
  [1,1,-42*ER(2),84*ER(2),84*ER(2),-42,222,105*ER(2),105*ER(2),
   161,161,-504,-336*ER(2)],
  [1,1,42*ER(2),-84*ER(2),-84*ER(2),-42,222,-105*ER(2),-105*ER(2),
   161,161,-504,336*ER(2)],
  [1,1,0,0,0,84,96,0,0,-280,-280,378,0],
  [1,-1,0,-84,84,0,0,-294,294,-343,343,0,0],
  [1,-1,0,84,-84,0,0,294,-294,-343,343,0,0],
  [1,1,8*ER(7),-26*ER(7),-26*ER(7),-112,-128,80*ER(7),80*ER(7),
   56,56,126,-116*ER(7)],
  [1,1,-8*ER(7),26*ER(7),26*ER(7),-112,-128,-80*ER(7),-80*ER(7),
   56,56,126,116*ER(7)],
  [1,-1,0,114,-114,0,0,-96,96,152,-152,0,0],
  [1,-1,0,-114,114,0,0,96,-96,152,-152,0,0]]]];

MULTFREEINFO.("Fi22.2"):= ["$Fi_{22}.2$",
##
[[1,5,13],"$2.U_6(2).2$",
 [[1,693,2816],
  [1,63,-64],
  [1,-9,8]]],
##
[[1,2,5,6,13,14],"$2.U_6(2) \\leq 2.U_6(2).2$",
 [[1,1,693,693,2816,2816],
  [1,-1,-693,693,2816,-2816],
  [1,1,63,63,-64,-64],
  [1,-1,-63,63,-64,64],
  [1,1,-9,-9,8,8],
  [1,-1,9,-9,8,-8]]],
##
[[1,2,5,6,17,18],"$O_7(3)$",
 [[1,364,1080,3159,10920,12636],
  [1,-364,-1080,3159,10920,-12636],
  [1,84,-120,279,-280,36],
  [1,-84,120,279,-280,-36],
  [1,12,24,-9,8,-36],
  [1,-12,-24,-9,8,36]]],
##
[[1,13,17,25],"$O_8^+(2):S_3 \\times 2$",
 [[1,1575,22400,37800],
  [1,171,-64,-108],
  [1,-9,224,-216],
  [1,-9,-64,72]]],
##
[[1,2,13,14,17,18,25,26],"$O_8^+(2):S_3 \\leq O_8^+(2):S_3 \\times 2$",
 [[1,1,1575,1575,22400,22400,37800,37800],
  [1,-1,1575,-1575,-22400,22400,37800,-37800],
  [1,1,171,171,-64,-64,-108,-108],
  [1,-1,171,-171,64,-64,-108,108],
  [1,1,-9,-9,224,224,-216,-216],
  [1,-1,-9,9,-224,224,-216,216],
  [1,1,-9,-9,-64,-64,72,72],
  [1,-1,-9,9,64,-64,72,-72]]],
##
[[1,8,13,15,17,25,29],"$O_8^+(2):3 \\times 2 \\leq O_8^+(2):S_3 \\times 2$",
 [[1,1,1575,1575,22400,22400,75600],
  [1,-1,225,-225,-800,800,0],
  [1,1,171,171,-64,-64,-216],
  [1,-1,-63,63,-224,224,0],
  [1,1,-9,-9,224,224,-432],
  [1,1,-9,-9,-64,-64,144],
  [1,-1,9,-9,64,-64,0]]],
##
[[1,7,13,16,17,25,30],"$O_8^+(2):S_3 \\leq O_8^+(2):S_3 \\times 2$",
 [[1,1,1575,1575,22400,22400,75600],
  [1,-1,-225,225,-800,800,0],
  [1,1,171,171,-64,-64,-216],
  [1,-1,63,-63,-224,224,0],
  [1,1,-9,-9,224,224,-432],
  [1,1,-9,-9,-64,-64,144],
  [1,-1,-9,9,64,-64,0]]],
##
[[1,5,13,17,25,27,33],"$O_8^+(2):2 \\times 2 \\leq O_8^+(2):S_3 \\times 2$",
 [[1,2,1575,3150,22400,44800,113400],
  [1,-1,315,-315,2240,-2240,0],
  [1,2,171,342,-64,-128,-324],
  [1,2,-9,-18,224,448,-648],
  [1,2,-9,-18,-64,-128,216],
  [1,-1,-45,45,80,-80,0],
  [1,-1,27,-27,-64,64,0]]],
##
[[1,2,7,8,13,14,15,16,17,18,25,26,29,30],
"$O_8^+(2):3 \\leq O_8^+(2):S_3 \\times 2$",
 [[1,1,1,1,1575,1575,1575,1575,22400,22400,22400,22400,75600,75600],
  [1,-1,1,-1,-1575,1575,-1575,1575,22400,-22400,22400,-22400,75600,-75600],
  [1,1,-1,-1,-225,-225,225,225,800,800,-800,-800,0,0],
  [1,-1,-1,1,225,-225,-225,225,800,-800,-800,800,0,0],
  [1,1,1,1,171,171,171,171,-64,-64,-64,-64,-216,-216],
  [1,-1,1,-1,-171,171,-171,171,-64,64,-64,64,-216,216],
  [1,-1,-1,1,-63,63,63,-63,224,-224,-224,224,0,0],
  [1,1,-1,-1,63,63,-63,-63,224,224,-224,-224,0,0],
  [1,1,1,1,-9,-9,-9,-9,224,224,224,224,-432,-432],
  [1,-1,1,-1,9,-9,9,-9,224,-224,224,-224,-432,432],
  [1,1,1,1,-9,-9,-9,-9,-64,-64,-64,-64,144,144],
  [1,-1,1,-1,9,-9,9,-9,-64,64,-64,64,144,-144],
  [1,-1,-1,1,9,-9,-9,9,-64,64,64,-64,0,0],
  [1,1,-1,-1,-9,-9,9,9,-64,-64,64,64,0,0]]],
##
[[1,2,5,6,13,14,17,18,25,26,27,28,33,34],
"$O_8^+(2):2 \\leq O_8^+(2):S_3 \\times 2$",
 [[1,1,2,2,1575,1575,3150,3150,22400,22400,44800,44800,113400,113400],
  [1,-1,2,-2,-1575,1575,-3150,3150,22400,-22400,44800,-44800,-113400,113400],
  [1,1,-1,-1,315,315,-315,-315,2240,2240,-2240,-2240,0,0],
  [1,-1,-1,1,-315,315,315,-315,2240,-2240,-2240,2240,0,0],
  [1,1,2,2,171,171,342,342,-64,-64,-128,-128,-324,-324],
  [1,-1,2,-2,-171,171,-342,342,-64,64,-128,128,324,-324],
  [1,1,2,2,-9,-9,-18,-18,224,224,448,448,-648,-648],
  [1,-1,2,-2,9,-9,18,-18,224,-224,448,-448,648,-648],
  [1,1,2,2,-9,-9,-18,-18,-64,-64,-128,-128,216,216],
  [1,-1,2,-2,9,-9,18,-18,-64,64,-128,128,-216,216],
  [1,1,-1,-1,-45,-45,45,45,80,80,-80,-80,0,0],
  [1,-1,-1,1,45,-45,-45,45,80,-80,-80,80,0,0],
  [1,1,-1,-1,27,27,-27,-27,-64,-64,64,64,0,0],
  [1,-1,-1,1,-27,27,27,-27,-64,64,64,-64,0,0]]],
##
[[1,5,6,7,13,16,17,25,27,28,30,33,34],
"$O_8^+(2):2 \\leq O_8^+(2):S_3 \\times 2$",
 [[1,1,2,2,1575,1575,3150,3150,22400,22400,44800,44800,226800],
  [1,1,-1,-1,315,315,-315,-315,2240,2240,-2240,-2240,0],
  [1,-1,-1,1,315,-315,315,-315,-2240,2240,-2240,2240,0],
  [1,-1,2,-2,-225,225,450,-450,-800,800,1600,-1600,0],
  [1,1,2,2,171,171,342,342,-64,-64,-128,-128,-648],
  [1,-1,2,-2,63,-63,-126,126,-224,224,448,-448,0],
  [1,1,2,2,-9,-9,-18,-18,224,224,448,448,-1296],
  [1,1,2,2,-9,-9,-18,-18,-64,-64,-128,-128,432],
  [1,1,-1,-1,-45,-45,45,45,80,80,-80,-80,0],
  [1,-1,-1,1,-45,45,-45,45,-80,80,-80,80,0],
  [1,-1,2,-2,-9,9,18,-18,64,-64,-128,128,0],
  [1,1,-1,-1,27,27,-27,-27,-64,-64,64,64,0],
  [1,-1,-1,1,27,-27,27,-27,64,-64,64,-64,0]]],
##
[[1,3,5,9,13,19,21,33],"$2^{10}:M_{22}.2$",
 [[1,154,1024,3696,4928,11264,42240,78848],
  [1,-77,-320,924,1232,-1408,-5280,4928],
  [1,49,-176,546,-532,1184,-960,-112],
  [1,-35,160,294,-364,-400,120,224],
  [1,37,88,186,248,32,120,-712],
  [1,13,-32,6,-28,-112,120,32],
  [1,-17,-20,24,32,32,120,-172],
  [1,1,16,-30,-4,32,-96,80]]],
##
[[1,2,3,4,5,6,9,10,13,14,19,20,21,22,33,34],
"$2^{10}:M_{22} \\leq 2^{10}:M_{22}.2$",
 [[1,1,154,154,1024,1024,3696,3696,4928,4928,11264,11264,42240,42240,
  78848,78848],
  [1,-1,-154,154,1024,-1024,3696,-3696,-4928,4928,-11264,11264,
   42240,-42240,-78848,78848],
  [1,1,-77,-77,-320,-320,924,924,1232,1232,-1408,-1408,-5280,-5280,4928,4928],
  [1,-1,77,-77,-320,320,924,-924,-1232,1232,1408,-1408,-5280,5280,-4928,4928],
  [1,1,49,49,-176,-176,546,546,-532,-532,1184,1184,-960,-960,-112,-112],
  [1,-1,-49,49,-176,176,546,-546,532,-532,-1184,1184,-960,960,112,-112],
  [1,1,-35,-35,160,160,294,294,-364,-364,-400,-400,120,120,224,224],
  [1,-1,35,-35,160,-160,294,-294,364,-364,400,-400,120,-120,-224,224],
  [1,1,37,37,88,88,186,186,248,248,32,32,120,120,-712,-712],
  [1,-1,-37,37,88,-88,186,-186,-248,248,-32,32,120,-120,712,-712],
  [1,1,13,13,-32,-32,6,6,-28,-28,-112,-112,120,120,32,32],
  [1,-1,-13,13,-32,32,6,-6,28,-28,112,-112,120,-120,-32,32],
  [1,1,-17,-17,-20,-20,24,24,32,32,32,32,120,120,-172,-172],
  [1,-1,17,-17,-20,20,24,-24,-32,32,-32,32,120,-120,172,-172],
  [1,1,1,1,16,16,-30,-30,-4,-4,32,32,-96,-96,80,80],
  [1,-1,-1,1,16,-16,-30,30,4,-4,-32,32,-96,96,-80,80]]],
##
[[1,5,9,13,17,19,25,33,46,52],"$2^7:S_6(2)$",
 [[1,135,1260,2304,8640,10080,45360,143360,241920,241920],
  [1,-15,210,624,-960,1680,1260,8960,-1680,-10080],
  [1,-27,126,-288,216,1008,-2268,-1792,6048,-3024],
  [1,57,246,120,840,96,1368,-1408,120,-1440],
  [1,3,-60,192,192,312,-576,-256,-960,1152],
  [1,21,30,-96,-168,240,180,-256,-672,720],
  [1,27,36,0,0,-144,-432,512,0,0],
  [1,-15,66,48,-96,-48,-36,-256,48,288],
  [1,-9,0,-36,72,0,0,224,-252,0],
  [1,3,-24,12,-24,-12,72,-112,228,-144]]],
##
[[1,2,5,6,9,10,13,14,17,18,19,20,25,26,33,34,46,47,52,53],
"$2^6:S_6(2) \\leq 2^7:S_6(2)$",
 [[1,1,135,135,1260,1260,2304,2304,8640,8640,10080,10080,45360,45360,
   143360,143360,241920,241920,241920,241920],
  [1,-1,135,-135,-1260,1260,2304,-2304,8640,-8640,-10080,10080,
   -45360,45360,143360,-143360,241920,241920,-241920,-241920],
  [1,1,-15,-15,210,210,624,624,-960,-960,1680,1680,1260,1260,8960,8960,
   -10080,-1680,-1680,-10080],
  [1,-1,-15,15,-210,210,624,-624,-960,960,-1680,1680,-1260,1260,
   8960,-8960,-10080,-1680,1680,10080],
  [1,1,-27,-27,126,126,-288,-288,216,216,1008,1008,-2268,-2268,
   -1792,-1792,-3024,6048,6048,-3024],
  [1,-1,-27,27,-126,126,-288,288,216,-216,-1008,1008,2268,-2268,
   -1792,1792,-3024,6048,-6048,3024],
  [1,1,57,57,246,246,120,120,840,840,96,96,1368,1368,-1408,-1408,
   -1440,120,120,-1440],
  [1,-1,57,-57,-246,246,120,-120,840,-840,-96,96,-1368,1368,-1408,1408,
   -1440,120,-120,1440],
  [1,1,3,3,-60,-60,192,192,192,192,312,312,-576,-576,-256,-256,1152,
   -960,-960,1152],
  [1,-1,3,-3,60,-60,192,-192,192,-192,-312,312,576,-576,-256,256,1152,
   -960,960,-1152],
  [1,1,21,21,30,30,-96,-96,-168,-168,240,240,180,180,-256,-256,720,
   -672,-672,720],
  [1,-1,21,-21,-30,30,-96,96,-168,168,-240,240,-180,180,-256,256,720,
   -672,672,-720],
  [1,1,27,27,36,36,0,0,0,0,-144,-144,-432,-432,512,512,0,0,0,0],
  [1,-1,27,-27,-36,36,0,0,0,0,144,-144,432,-432,512,-512,0,0,0,0],
  [1,1,-15,-15,66,66,48,48,-96,-96,-48,-48,-36,-36,-256,-256,288,48,48,288],
  [1,-1,-15,15,-66,66,48,-48,-96,96,48,-48,36,-36,-256,256,288,48,-48,-288],
  [1,1,-9,-9,0,0,-36,-36,72,72,0,0,0,0,224,224,0,-252,-252,0],
  [1,-1,-9,9,0,0,-36,36,72,-72,0,0,0,0,224,-224,0,-252,252,0],
  [1,1,3,3,-24,-24,12,12,-24,-24,-12,-12,72,72,-112,-112,-144,228,228,-144],
  [1,-1,3,-3,24,-24,12,-12,-24,24,12,-12,-72,72,-112,112,-144,228,-228,144]]],
##
[[1,7,9,17,19,49,58,68,75,88],"${^2F_4(2)^{\\prime}}.2$",
 [[1,1755,11700,14976,140400,166400,187200,374400,449280,2246400],
  [1,-405,900,-576,-10800,-6400,14400,-14400,17280,0],
  [1,-189,1980,-576,4320,10880,-7200,-14400,13824,-8640],
  [1,171,612,-864,1008,1664,3456,3744,-576,-9216],
  [1,99,540,576,-1440,-640,-1440,2880,2304,-2880],
  [1,75,-60,192,624,-256,384,-576,384,-768],
  [1,27,36,-144,0,-352,-288,-144,0,864],
  [1,-21,132,96,-48,128,192,-288,-960,768],
  [1,27,-108,0,-432,512,0,0,0,0],
  [1,-45,-36,0,144,-64,0,288,288,-576]]]];

MULTFREEINFO.("HN.2"):= ["$HN.2$",
##
[[1,3,4,6,9,13,15,20,24,27],"$S_{12}$",
 [[1,462,5040,10395,16632,30800,69300,311850,332640,362880],
  [1,-198,0,2475,792,4400,-9900,-14850,0,17280],
  [1,132,-1080,1485,-1188,1100,4950,0,-11880,6480],
  [1,12,240,495,1332,-2200,300,-900,-2160,2880],
  [1,82,480,515,-88,400,900,-1650,1280,-1920],
  [1,62,-240,155,632,400,-300,1050,160,-1920],
  [1,-48,0,225,-108,-100,-150,900,0,-720],
  [1,12,60,-45,-18,50,-150,450,-540,180],
  [1,-18,0,-45,72,80,180,-270,0,0],
  [1,12,-40,5,-68,-100,-50,-200,360,80]]],
##
[[1,3,4,6,9,11,13,15,20,24,27,29,36,47,49,51,63],"$S_{11} \\leq S_{12}$",
 [[1,11,2772,2772,16632,20790,60480,83160,99792,103950,362880,369600,
   831600,1247400,2494800,3991680,3991680],
  [1,11,-1188,-1188,792,4950,0,3960,4752,24750,17280,52800,-118800,
   -59400,-118800,190080,0],
  [1,11,792,792,-1188,2970,-12960,-5940,-7128,14850,6480,13200,59400,
   0,0,71280,-142560],
  [1,11,72,72,1332,990,2880,6660,7992,4950,2880,-26400,3600,-3600,-7200,
   31680,-25920],
  [1,11,492,492,-88,1030,5760,-440,-528,5150,-1920,4800,10800,-6600,
   -13200,-21120,15360],
  [1,-1,-168,168,1428,1050,0,2100,-3528,-1050,-10080,0,0,25200,-25200,
   10080,0],
  [1,11,372,372,632,310,-2880,3160,3792,1550,-1920,4800,-3600,4200,
   8400,-21120,1920],
  [1,11,-288,-288,-108,450,0,-540,-648,2250,-720,-1200,-1800,3600,
   7200,-7920,0],
  [1,11,72,72,-18,-90,720,-90,-108,-450,180,600,-1800,1800,3600,1980,-6480],
  [1,11,-108,-108,72,-90,0,360,432,-450,0,960,2160,-1080,-2160,0,0],
  [1,11,72,72,-68,10,-480,-340,-408,50,80,-1200,-600,-800,-1600,880,4320],
  [1,-1,-72,72,180,90,0,468,-648,-90,1440,0,0,-720,720,-1440,0],
  [1,-1,72,-72,68,250,0,100,-168,-250,-480,0,0,-1200,1200,480,0],
  [1,-1,12,-12,208,-50,0,-400,192,50,320,0,0,400,-400,-320,0],
  [1,-1,36,-36,-144,-18,0,144,0,18,576,0,0,1008,-1008,-576,0],
  [1,-1,-48,48,-102,150,0,-150,252,-150,-180,0,0,0,0,180,0],
  [1,-1,-8,8,-12,-150,0,100,-88,150,-480,0,0,-400,400,480,0]]],
##
[[1,6,9,11,13,18,20,24,29],"$4.HS.2$",
 [[1,1408,2200,5775,35200,123200,277200,354816,739200],
  [1,208,-50,525,2200,-2800,-6300,2016,4200],
  [1,-112,300,75,1000,-2200,3600,-864,-1800],
  [1,208,100,-525,1000,1400,0,2016,-4200],
  [1,128,200,375,0,1600,0,-2304,0],
  [1,-47,-50,0,250,350,0,-504,0],
  [1,28,-50,75,-50,-100,450,396,-750],
  [1,-32,40,15,-80,80,-360,576,-240],
  [1,16,4,-45,-56,-136,0,-288,504]]],
##
[[1,2,6,7,9,10,11,12,13,14,18,19,20,21,24,25,29,30],"$2.HS.2 \\leq 4.HS.2$",
 [[1,1,1408,1408,2200,2200,5775,5775,35200,35200,123200,123200,
   277200,277200,354816,354816,739200,739200],
  [1,-1,-1408,1408,2200,-2200,-5775,5775,35200,-35200,-123200,123200,
   277200,-277200,354816,-354816,-739200,739200],
  [1,1,208,208,-50,-50,525,525,2200,2200,-2800,-2800,-6300,-6300,
   2016,2016,4200,4200],
  [1,-1,-208,208,-50,50,-525,525,2200,-2200,2800,-2800,-6300,6300,
   2016,-2016,-4200,4200],
  [1,1,-112,-112,300,300,75,75,1000,1000,-2200,-2200,3600,3600,-864,-864,
   -1800,-1800],
  [1,-1,112,-112,300,-300,-75,75,1000,-1000,2200,-2200,3600,-3600,
   -864,864,1800,-1800],
  [1,1,208,208,100,100,-525,-525,1000,1000,1400,1400,0,0,2016,2016,
   -4200,-4200],
  [1,-1,-208,208,100,-100,525,-525,1000,-1000,-1400,1400,0,0,2016,-2016,
   4200,-4200],
  [1,1,128,128,200,200,375,375,0,0,1600,1600,0,0,-2304,-2304,0,0],
  [1,-1,-128,128,200,-200,-375,375,0,0,-1600,1600,0,0,-2304,2304,0,0],
  [1,1,-47,-47,-50,-50,0,0,250,250,350,350,0,0,-504,-504,0,0],
  [1,-1,47,-47,-50,50,0,0,250,-250,-350,350,0,0,-504,504,0,0],
  [1,1,28,28,-50,-50,75,75,-50,-50,-100,-100,450,450,396,396,-750,-750],
  [1,-1,-28,28,-50,50,-75,75,-50,50,100,-100,450,-450,396,-396,750,-750],
  [1,1,-32,-32,40,40,15,15,-80,-80,80,80,-360,-360,576,576,-240,-240],
  [1,-1,32,-32,40,-40,-15,15,-80,80,-80,80,-360,360,576,-576,240,-240],
  [1,1,16,16,4,4,-45,-45,-56,-56,-136,-136,0,0,-288,-288,504,504],
  [1,-1,-16,16,4,-4,45,-45,-56,56,136,-136,0,0,-288,288,-504,504]]],
##
[[1,4,6,9,11,13,18,19,20,22,24,29,33],"$2.HS.2 \\leq 4.HS.2$",
 [[1,1,1408,1408,4400,11550,35200,35200,246400,354816,354816,554400,1478400],
  [1,-1,352,-352,0,0,4400,-4400,0,22176,-22176,0,0],
  [1,1,208,208,-100,1050,2200,2200,-5600,2016,2016,-12600,8400],
  [1,1,-112,-112,600,150,1000,1000,-4400,-864,-864,7200,-3600],
  [1,1,208,208,200,-1050,1000,1000,2800,2016,2016,0,-8400],
  [1,1,128,128,400,750,0,0,3200,-2304,-2304,0,0],
  [1,1,-47,-47,-100,0,250,250,700,-504,-504,0,0],
  [1,-1,-53,53,0,0,350,-350,0,-504,504,0,0],
  [1,1,28,28,-100,150,-50,-50,-200,396,396,900,-1500],
  [1,-1,72,-72,0,0,100,-100,0,-504,504,0,0],
  [1,1,-32,-32,80,30,-80,-80,160,576,576,-720,-480],
  [1,1,16,16,8,-90,-56,-56,-272,-288,-288,0,1008],
  [1,-1,-8,8,0,0,-100,100,0,216,-216,0,0]]],
##
[[1,4,6,11,15,20,22,26,31,36,40,42,43,51,67],"$U_3(8).6$",
 [[1,1539,14364,25536,51072,68096,131328,459648,689472,787968,
   787968,1225728,1225728,5515776,5515776],
  [1,-81,3024,-4704,-2688,7616,1728,-24192,54432,-67392,36288,
   -24192,56448,-108864,72576],
  [1,-261,1764,2436,672,896,5328,6048,15372,17568,24768,-51072,
   -17472,22176,-28224],
  [1,99,924,2016,-2688,896,-3072,2688,14112,10368,-1152,16128,16128,
   -8064,-48384],
  [1,99,684,-144,-1248,-64,1728,-432,-1008,-1152,4608,7488,-8832,-2304,576],
  [1,9,414,366,672,716,-72,-432,-558,1908,-1692,408,-552,-7524,6336],
  [1,19,364,-644,672,-224,-1072,-672,1652,128,-672,448,-1792,5376,-3584],
  [1,-81,-36,-144,72,-424,-72,-972,-648,1728,1728,648,1008,-3024,216],
  [1,-45,-180,48,288,320,0,576,720,-576,576,1152,-1152,-576,-1152],
  [1,19,44,176,192,-704,128,768,592,-832,-192,128,128,-1344,896],
  [1,54,9,126,252,116,153,-702,-1053,-567,918,108,1098,1971,-2484],
  [1,54,-81,-84,-108,56,-297,378,27,513,378,-432,-162,-1269,1026],
  [1,-26,109,-194,-48,136,353,1218,-733,-127,-342,-212,1118,-129,-1124],
  [1,9,-66,-54,-48,-4,528,-672,702,468,-972,-72,-72,396,-144],
  [1,-26,29,86,-168,16,-247,-222,-173,-367,-222,-292,-202,1191,596]]],
];

MULTFREEINFO.("F3+.2"):= ["$F_{3+}.2$",
##
[[1,5,7],"$Fi_{23} \\times 2$",
 [[1,31671,275264],
  [1,351,-352],
  [1,-81,80]]],
##
[[1,2,5,6,7,8],"$Fi_{23} \\leq Fi_{23} \\times 2$",
 [[1,1,31671,31671,275264,275264],
  [1,-1,31671,-31671,-275264,275264],
  [1,1,351,351,-352,-352],
  [1,-1,351,-351,352,-352],
  [1,1,-81,-81,80,80],
  [1,-1,-81,81,-80,80]]],
##
[[1,4,5,7,10,15,21,26,28,37,44,48,51,54,73,75,83],"$O_{10}^-(2).2$",
[ [ 1252451044481570800127733764595712067858560107233280
      193881600263208960579059712108573696051471974405428684800
      72382464001263403008017371791360 ], 
  [ 1, -5049, -130561570807983362010624, -3392928, -13404164847040
      -3290112, -180956162714342480424960, -67858560, -90478080
      -39481344108573696 ], 
  [ 1175516752145740145152, -145920195501641027841639440
      -1983744237081616284240, -1073049630119040, -7197120, -44706816
      7983360 ], 
  [ 13195566427300, -266112798720, -30240054656023112002419200
      2161152, -393120, -53760005443200, -2237760021288960, -6289920 ], 
  [ 1, -1485854456100, -570243379201782001168640, -1782000
      1468800, -326937615681605913600142560019008007050240
      -15966720 ], 
  [ 12079, -225626400, -1425648998428512, -256960, -712800, -1237248
      231897610121763480576, -498960, -6652802073600, -6044544 ], 
  [ 18191776100205529626304129816, -75520179280262656
      16185620304561408, -544320665280, -587520, -867456 ], 
  [ 1, -189, -26881938016848, -37056, -132840, -65152648069120
      22464456192, -652800, -149040501120456192, -508032 ], 
  [ 1, -45307214340, -1728, -3072026136111104, -2160, -10022466816
      -120960, -316416, -85536017280635904552960 ], 
  [ 1, -639, -7082730, -166323494415120, -683257780, -30240, -67536
      -9828, -84000, -68040279720, -66528, -39312 ], 
  [ 11719121596, -6912, -6528, -21816, -294423760, -69121152
      -3412816742412441663936, -152064, -152064 ], 
  [ 1279, -8163000, -561638447522240, -216002419214976, -54864
      3609619440, -60480, -172800210816 ], 
  [ 1, -3155881110475210320, -4320, -10720, -199808640, -2736
      -25380, -5808077760, -50760, -82080151200 ], 
  [ 138748, -780345612480, -756074243024, -6912, -17856, -5616
      -74496, -1555263936, -691244928 ], 
  [ 1, -99, -276303456, -1776, -172874245940, -69121584, -20196
      3696019440, -1188016416, -48384 ], 
  [ 16348192, -432, -30726048, -8128, -864, -6912, -126729936
      -1228819440, -2937655296, -17280 ], 
  [ 1, -4548, -780, -1728, -480, -10802240, -216086401238415120
      -1920, -3888017280, -172808640 ] ] ],
##
[[1,2,3,4,5,6,7,8,9,10,15,16,21,22,25,26,28,29,36,37,
  44,45,48,49,50,51,54,55,72,73,75,76,83,84],
"$O_{10}^-(2) \\leq O_{10}^-(2).2$",
[ [ 112524525245104448104448157080015708001277337612773376
      45957120459571206785856067858560107233280107233280
      193881600193881600263208960263208960579059712579059712
      108573696010857369605147197440514719744054286848005428684800
      72382464007238246400126340300801263403008017371791360
      17371791360 ], 
  [ 1, -125245, -25245104448, -1044481570800, -157080012773376
      -1277337645957120, -4595712067858560, -67858560107233280
      -107233280193881600, -193881600263208960, -263208960579059712
      -5790597121085736960, -10857369605147197440, -5147197440
      5428684800, -54286848007238246400, -723824640012634030080
      -1263403008017371791360, -17371791360 ], 
  [ 1, -1, -50495049, -1305613056157080, -157080798336, -798336
      2010624, -2010624, -33929283392928, -134041613404164847040
      -4847040, -32901123290112, -180956161809561627143424, -27143424
      80424960, -80424960, -6785856067858560, -9047808090478080
      -3948134439481344108573696, -108573696 ], 
  [ 11, -5049, -5049, -13056, -13056157080157080798336798336
      20106242010624, -3392928, -3392928, -1340416, -13404164847040
      4847040, -3290112, -3290112, -18095616, -180956162714342427143424
      8042496080424960, -67858560, -67858560, -90478080, -90478080
      -39481344, -39481344108573696108573696 ], 
  [ 11175517551675216752145740145740145152145152, -145920
      -145920195501619550164102784410278416394401639440
      -1983744, -1983744237081623708161628424016284240, -10730496
      -107304963011904030119040, -7197120, -7197120, -44706816
      -4470681679833607983360 ], 
  [ 1, -11755, -175516752, -16752145740, -145740145152, -145152
      -1459201459201955016, -19550164102784, -41027841639440
      -1639440, -198374419837442370816, -237081616284240, -16284240
      -107304961073049630119040, -30119040, -71971207197120, -44706816
      447068167983360, -7983360 ], 
  [ 1131953195566456642730027300, -266112, -266112798720
      798720, -302400, -302400546560546560231120023112002419200
      241920021611522161152, -393120, -393120, -5376000, -5376000
      54432005443200, -22377600, -223776002128896021288960, -6289920
      -6289920 ], 
  [ 1, -13195, -31955664, -566427300, -27300, -266112266112798720
      -798720, -302400302400546560, -5465602311200, -23112002419200
      -24192002161152, -2161152, -393120393120, -53760005376000
      5443200, -5443200, -223776002237760021288960, -21288960, -6289920
      6289920 ], 
  [ 1, -1, -148514858544, -854456100, -56100, -5702457024337920
      -337920178200, -1782001168640, -1168640, -17820001782000
      1468800, -1468800, -326937632693761568160, -15681605913600
      -59136001425600, -14256001900800, -19008007050240, -7050240
      -1596672015966720 ], 
  [ 11, -1485, -1485854485445610056100, -57024, -57024337920
      33792017820017820011686401168640, -1782000, -17820001468800
      1468800, -3269376, -32693761568160156816059136005913600
      142560014256001900800190080070502407050240, -15966720
      -15966720 ], 
  [ 1120792079, -2256, -22562640026400, -14256, -14256489984
      4899842851228512, -256960, -256960, -712800, -712800, -1237248
      -1237248231897623189761012176101217634805763480576
      -498960, -498960, -665280, -66528020736002073600, -6044544
      -6044544 ], 
  [ 1, -12079, -2079, -2256225626400, -26400, -1425614256489984
    -48998428512, -28512, -256960256960, -712800712800, -1237248
    12372482318976, -23189761012176, -10121763480576, -3480576
    -498960498960, -6652806652802073600, -2073600, -60445446044544 ],
  [ 1181981917761776100201002055296552962630426304
      129816129816, -75520, -75520179280179280262656262656161856
      1618562030420304561408561408, -544320, -544320665280665280
      -587520, -587520, -867456, -867456 ], 
  [ 1, -1819, -8191776, -177610020, -1002055296, -5529626304
      -26304129816, -129816, -7552075520179280, -179280262656
      -262656161856, -16185620304, -20304561408, -561408, -544320
      544320665280, -665280, -587520587520, -867456867456 ], 
  [ 1, -1, -189189, -2688268819380, -1938016848, -16848, -37056
      37056, -132840132840, -65152651526480, -648069120, -69120
      22464, -22464456192, -456192, -652800652800, -149040149040
      501120, -501120456192, -456192, -508032508032 ], 
  [ 11, -189, -189, -2688, -268819380193801684816848, -37056
      -37056, -132840, -132840, -65152, -65152648064806912069120
      2246422464456192456192, -652800, -652800, -149040, -149040
      501120501120456192456192, -508032, -508032 ], 
  [ 11, -45, -45307230721434014340, -1728, -1728, -30720, -30720
      2613626136111104111104, -2160, -2160, -100224, -10022466816
      66816, -120960, -120960, -316416, -316416, -855360, -85536017280
      17280635904635904552960552960 ], 
  [ 1, -1, -45453072, -307214340, -14340, -17281728, -3072030720
      26136, -26136111104, -111104, -21602160, -10022410022466816
      -66816, -120960120960, -316416316416, -85536085536017280
      -17280635904, -635904552960, -552960 ], 
  [ 1, -1, -639639, -7087082730, -2730, -166321663234944, -34944
      15120, -15120, -6832683257780, -57780, -3024030240, -67536
      67536, -98289828, -8400084000, -6804068040279720, -279720
      -6652866528, -3931239312 ], 
  [ 11, -639, -639, -708, -70827302730, -16632, -166323494434944
      1512015120, -6832, -68325778057780, -30240, -30240, -67536
      -67536, -9828, -9828, -84000, -84000, -68040, -68040279720279720
      -66528, -66528, -39312, -39312 ], 
  [ 1117117191291215961596, -6912, -6912, -6528, -6528, -21816
      -21816, -2944, -29442376023760, -6912, -691211521152, -34128
      -341281674241674241244161244166393663936, -152064, -152064
      -152064, -152064 ], 
  [ 1, -1171, -171912, -9121596, -1596, -69126912, -65286528
      -2181621816, -2944294423760, -23760, -691269121152, -1152
      -3412834128167424, -167424124416, -12441663936, -63936
      -152064152064, -152064152064 ], 
  [ 11279279, -816, -81630003000, -5616, -56163843844752
      475222402240, -21600, -2160024192241921497614976, -54864
      -5486436096360961944019440, -60480, -60480, -172800, -172800
      210816210816 ], 
  [ 1, -1279, -279, -8168163000, -3000, -56165616384, -3844752
      -47522240, -2240, -216002160024192, -2419214976, -14976
      -548645486436096, -3609619440, -19440, -6048060480, -172800
      172800210816, -210816 ], 
  [ 1, -1, -315315588, -5881110, -11104752, -475210320, -10320
      -43204320, -1072010720, -19980199808640, -8640, -27362736
      -2538025380, -580805808077760, -77760, -5076050760, -82080
      82080151200, -151200 ], 
  [ 11, -315, -31558858811101110475247521032010320, -4320
      -4320, -10720, -10720, -19980, -1998086408640, -2736, -2736
      -25380, -25380, -58080, -580807776077760, -50760, -50760, -82080
      -82080151200151200 ], 
  [ 113873874848, -780, -780345634561248012480, -7560
      -75607424742430243024, -6912, -6912, -17856, -17856, -5616
      -5616, -74496, -74496, -15552, -155526393663936, -6912, -6912
      4492844928 ], 
  [ 1, -1387, -38748, -48, -7807803456, -345612480, -12480, -7560
      75607424, -74243024, -3024, -69126912, -1785617856, -5616
      5616, -7449674496, -155521555263936, -63936, -6912691244928
      -44928 ], 
  [ 1, -1, -9999, -27627630, -303456, -3456, -17761776, -1728
      17287424, -74245940, -5940, -691269121584, -1584, -20196
      2019636960, -3696019440, -19440, -118801188016416, -16416
      -4838448384 ], 
  [ 11, -99, -99, -276, -276303034563456, -1776, -1776, -1728
      -17287424742459405940, -6912, -691215841584, -20196
      -2019636960369601944019440, -11880, -118801641616416
      -48384, -48384 ], 
  [ 1163634848192192, -432, -432, -3072, -307260486048
      -8128, -8128, -864, -864, -6912, -6912, -12672, -1267299369936
      -12288, -122881944019440, -29376, -293765529655296, -17280
      -17280 ], 
  [ 1, -163, -6348, -48192, -192, -432432, -307230726048, -6048
      -81288128, -864864, -69126912, -12672126729936, -9936
      -122881228819440, -19440, -293762937655296, -55296, -17280
      17280 ], 
  [ 11, -45, -454848, -780, -780, -1728, -1728, -480, -480, -1080
      -108022402240, -2160, -216086408640123841238415120
      15120, -1920, -1920, -38880, -388801728017280, -17280, -17280
      86408640 ], 
  [ 1, -1, -454548, -48, -780780, -17281728, -480480, -10801080
    2240, -2240, -216021608640, -864012384, -1238415120, -15120
    -19201920, -388803888017280, -17280, -17280172808640, -8640]]],
##
[[1,5,7,21,23,28,30,34,41,44,54,56,60,74,81,83,108],"$3^7.O_7(3).2$",
[ [ 1112049140275562816480212284805731689662178597286584480
      42987672029016678605158520640696400286415475561920
      183666009602321334288052230021480 ], 
  [ 1, -40390031266, -291605616016174082814669, -4633204801680
      32411340, -303264007778721640940640, -81881280, -37528920
      -10235160 ], 
  [ 1392764420034761048124484717448529357985202240784
    1512529228304640, -9552816, -19105632, -3065299211144952, -4776408 ], 
  [ 1200222023221332064800, -5356873629104760343440
      -811620, -12441601271376, -28382406998404908600, -2536920 ], 
  [ 1224277234021814410886454432, -3717927216081648, -591948
      -326592, -24494435925121679616, -2776032, -1837080 ], 
  [ 1, -403003186, -360, -1440, -41472190269, -11772026568043740
      777600104976, -10497602099520, -2536920262440 ], 
  [ 132, -63638343744, -2995212182411445321600, -364176, -144828
      3888001283043732483732481220832, -2210328 ], 
  [ 11521224113462646048, -20736, -167673240, -241056190512
      -155520303264, -1065312139968, -8495281697112 ], 
  [ 1, -64468, -17821728, -224643369694776739250544, -63180
      -202176, -151632, -2021760, -202176682344 ], 
  [ 1, -407322754, -3816547220736, -8019, -712811664164268
      -217728, -221616, -11664023328010692029160 ], 
  [ 1104588, -270936, -316851843645, -5335222032486062208
      -128304116640, -23328012636075816 ], 
  [ 156, -84882504, -14112, -24192364535784302474844, -72576
      -816481632964665668040, -204120 ], 
  [ 114, -2941134882, -55449072, -16767, -793827216, -4422668040
      102060, -816485832, -7824620412 ], 
  [ 1, -280, -37875600, -3159, -9828058968000101088
      29484, -176904 ], 
  [ 14436, -486, -11882162592, -218710692, -1944, -291619440
      58320, -3304893312, -32076, -110808 ], 
  [ 1, -40300162, -360, -1440, -5184, -2433240, -6480, -4698051840
      5054438880, -777603240, -9720 ], 
  [ 10, -1404202240, -22429170, -1680, -10220, -20160, -27216
      2240, -46080098280 ] ] ] ];

MULTFREEINFO.("2.M12"):=["$2.M_{12}$",
##
[ [ 1218 ],
"$M_{11} \\rightarrow (M_{12},1)$",
 [[1,1,22],
  [1,1,-2],
  [1,-1,0]] ],
##
[ [ 1318 ],
"$M_{11} \\rightarrow (M_{12},2)$",
 [[1,1,22],
  [1,1,-2],
  [1,-1,0]] ],
##
[ [ 123781824 ],
"$A_6.2_1 \\rightarrow (M_{12},5)$",
 [[1,1,2,40,40,90,90],
  [1,1,-2,0,0,30,-30],
  [1,1,2,16,16,-18,-18],
  [1,1,2,-4,-4,2,2],
  [1,1,-2,0,0,-6,6],
  [1,-1,0,-20,20,0,0],
  [1,-1,0,2,-2,0,0]] ],
##
[ [ 123781824 ],
"$A_6.2_1 \\rightarrow (M_{12},8)$",
 [[1,1,2,40,40,90,90],
  [1,1,2,16,16,-18,-18],
  [1,1,-2,0,0,30,-30],
  [1,1,2,-4,-4,2,2],
  [1,1,-2,0,0,-6,6],
  [1,-1,0,-20,20,0,0],
  [1,-1,0,2,-2,0,0]] ],
##
[ [ 1278122223 ],
"$3^2.2.S_4 \\rightarrow (M_{12},11)$",
 [[1,1,24,54,72,72,216],
  [1,1,-8,30,-24,-24,24],
  [1,1,2,10,6,6,-26],
  [1,1,10,-6,-6,-6,6],
  [1,1,-6,-6,2,2,6],
  [1,-1,0,0,-6*ER(-2),6*ER(-2),0],
  [1,-1,0,0,6*ER(-2),-6*ER(-2),0]] ],
##
[ [ 1378122223 ],
"$3^2.2.S_4 \\rightarrow (M_{12},13)$",
 [[1,1,24,54,72,72,216],
  [1,1,-8,30,-24,-24,24],
  [1,1,2,10,6,6,-26],
  [1,1,10,-6,-6,-6,6],
  [1,1,-6,-6,2,2,6],
  [1,-1,0,0,-6*ER(-2),6*ER(-2),0],
  [1,-1,0,0,6*ER(-2),-6*ER(-2),0]] ],
##
[ [ 12781218202124 ],
"$3^2.2.S_4 \\rightarrow (M_{12},11)$",
 [[1,1,12,12,54,72,72,108,108],
  [1,1,-4,-4,30,-24,-24,12,12],
  [1,1,1,1,10,6,6,-13,-13],
  [1,1,5,5,-6,-6,-6,3,3],
  [1,1,-3,-3,-6,2,2,3,3],
  [1,-1,8,-8,0,0,0,-36,36],
  [1,-1,3,-3,0,-6*ER(-5),6*ER(-5),9,-9],
  [1,-1,3,-3,0,6*ER(-5),-6*ER(-5),9,-9],
  [1,-1,-3,3,0,0,0,-3,3]] ],
##
[ [ 13781218202124 ],
"$3^2.2.S_4 \\rightarrow (M_{12},13)$",
 [[1,1,12,12,54,72,72,108,108],
  [1,1,-4,-4,30,-24,-24,12,12],
  [1,1,1,1,10,6,6,-13,-13],
  [1,1,5,5,-6,-6,-6,3,3],
  [1,1,-3,-3,-6,2,2,3,3],
  [1,-1,8,-8,0,0,0,-36,36],
  [1,-1,3,-3,0,-6*ER(-5),6*ER(-5),9,-9],
  [1,-1,3,-3,0,6*ER(-5),-6*ER(-5),9,-9],
  [1,-1,-3,3,0,0,0,-3,3]] ],
##
[ [ 12678101213182021222324 ],
"$3^2:2.A_4 \\rightarrow (M_{12},12)$",
 [[1,1,1,1,24,24,54,54,72,72,72,72,216,216],
  [1,1,1,1,-8,-8,30,30,-24,-24,-24,-24,24,24],
  [1,1,-1,-1,0,0,-6,6,-16,16,-16,16,0,0],
  [1,1,1,1,2,2,10,10,6,6,6,6,-26,-26],
  [1,1,1,1,10,10,-6,-6,-6,-6,-6,-6,6,6],
  [1,1,-1,-1,0,0,18,-18,0,0,0,0,0,0],
  [1,1,1,1,-6,-6,-6,-6,2,2,2,2,6,6],
  [1,1,-1,-1,0,0,-6,6,6,-6,6,-6,0,0],
  [1,-1,1,-1,-16,16,0,0,0,0,0,0,72,-72],
  [1,-1,1,-1,-6,6,0,0,6*ER(-5),-6*ER(-5),-6*ER(-5),6*ER(-5),-18,18],
  [1,-1,1,-1,-6,6,0,0,-6*ER(-5),6*ER(-5),6*ER(-5),-6*ER(-5),-18,18],
  [1,-1,-1,1,0,0,0,0,-6*ER(-2),-6*ER(-2),6*ER(-2),6*ER(-2),0,0],
  [1,-1,-1,1,0,0,0,0,6*ER(-2),6*ER(-2),-6*ER(-2),-6*ER(-2),0,0],
  [1,-1,1,-1,6,-6,0,0,0,0,0,0,6,-6]] ],
##
[ [ 1367891213182021222324 ], 
 "$3^2:2.A_4 \\rightarrow (M_{12},14)$",
 [[1,1,1,1,24,24,54,54,72,72,72,72,216,216],
  [1,1,1,1,-8,-8,30,30,-24,-24,-24,-24,24,24],
  [1,1,-1,-1,0,0,-6,6,-16,16,-16,16,0,0],
  [1,1,1,1,2,2,10,10,6,6,6,6,-26,-26],
  [1,1,1,1,10,10,-6,-6,-6,-6,-6,-6,6,6],
  [1,1,-1,-1,0,0,18,-18,0,0,0,0,0,0],
  [1,1,1,1,-6,-6,-6,-6,2,2,2,2,6,6],
  [1,1,-1,-1,0,0,-6,6,6,-6,6,-6,0,0],
  [1,-1,1,-1,-16,16,0,0,0,0,0,0,72,-72],
  [1,-1,1,-1,-6,6,0,0,6*ER(-5),-6*ER(-5),-6*ER(-5),6*ER(-5),-18,18],
  [1,-1,1,-1,-6,6,0,0,-6*ER(-5),6*ER(-5),6*ER(-5),-6*ER(-5),-18,18],
  [1,-1,-1,1,0,0,0,0,-6*ER(-2),-6*ER(-2),6*ER(-2),6*ER(-2),0,0],
  [1,-1,-1,1,0,0,0,0,6*ER(-2),6*ER(-2),-6*ER(-2),-6*ER(-2),0,0],
  [1,-1,1,-1,6,-6,0,0,0,0,0,0,6,-6]] ] ];

MULTFREEINFO.("2.M22"):=["$2.M_{22}$",
##
[ [ 12579171821 ],
"$2^4:A_5 \\rightarrow (M_{22},3)$",
 [[1,1,10,96,96,120,120,480],
  [1,1,10,-36,-36,10,10,40],
  [1,1,10,12,12,-6,-6,-24],
  [1,1,-2,0,0,12,12,-24],
  [1,1,-2,0,0,-8,-8,16],
  [1,-1,0,-4*ER(-11),4*ER(-11),10,-10,0],
  [1,-1,0,4*ER(-11),-4*ER(-11),10,-10,0],
  [1,-1,0,0,0,-12,12,0]] ],
##
[ [ 1271516 ],
"$A_7 \\rightarrow (M_{22},4)$",
 [[1,1,105,105,140],
  [1,1,17,17,-36],
  [1,1,-3,-3,4],
  [1,-1,15,-15,0],
  [1,-1,-7,7,0]] ],
##
[ [ 1271516 ],
"$A_7 \\rightarrow (M_{22},5)$",
 [[1,1,105,105,140],
  [1,1,17,17,-36],
  [1,1,-3,-3,4],
  [1,-1,15,-15,0],
  [1,-1,-7,7,0]] ],
##
[ [ 125671621 ],
"$2^3:L_3(2) \\rightarrow (M_{22},7)$",
 [[1,1,14,84,112,112,336],
  [1,1,-8,18,24,24,-60],
  [1,1,8,18,-8,-8,-12],
  [1,1,-6,4,-8,-8,16],
  [1,1,2,-12,4,4,0],
  [1,-1,0,0,-14,14,0],
  [1,-1,0,0,8,-8,0]] ] ];

MULTFREEINFO.("3.M22"):=["$3.M_{22}$",
##
[ [ 125791314212223242728 ],
"$2^4:A_5 \\rightarrow (M_{22},3)$",
[ [ 11115969696120120120240240240 ], 
  [ 11115, -36, -36, -36101010202020 ], 
  [ 11115121212, -6, -6, -6, -12, -12, -12 ], 
  [ 111, -3000121212, -12, -12, -12 ], 
  [ 111, -3000, -8, -8, -8888 ], 
  [ 1, E(3), E(3)^20, -24, -24*E(3), -24*E(3)^24040*E(3), 40*E(3)^2
      2020*E(3), 20*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 0, -24, -24*E(3)^2, -24*E(3), 4040*E(3)^240*E(3), 
      2020*E(3)^220*E(3) ], 
  [ 1, E(3), E(3)^209+ER(33), (9+ER(33))*E(3), (9+ER(33))*E(3)^2,
    3+3*EB(33), (3+3*EB(33))*E(3), (3+3*EB(33))*E(3)^2,
    9-3*ER(33), (9-3*ER(33))*E(3), (9-3*ER(33))*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 09-ER(33), (9-ER(33))*E(3)^2, (9-ER(33))*E(3),
    -3*EB(33), -3*EB(33)*E(3)^2, -3*EB(33)*E(3), 
    9+3*ER(33), (9+3*ER(33))*E(3)^2, (9+3*ER(33))*E(3) ],
  [ 1, E(3), E(3)^209-ER(33), (9-ER(33))*E(3), (9-ER(33))*E(3)^2,
    -3*EB(33), -3*EB(33)*E(3), -3*EB(33)*E(3)^2,
    9+3*ER(33), (9+3*ER(33))*E(3), (9+3*ER(33))*E(3)^2 ],
  [ 1, E(3)^2, E(3), 09+ER(33), (9+ER(33))*E(3)^2, (9+ER(33))*E(3),
    3+3*EB(33), (3+3*EB(33))*E(3)^2, (3+3*EB(33))*E(3),
    9-3*ER(33), (9-3*ER(33))*E(3)^2, (9-3*ER(33))*E(3) ],
  [ 1, E(3), E(3)^20, -6, -6*E(3), -6*E(3)^2, -5, -5*E(3), -5*E(3)^2, -10
      -10*E(3), -10*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 0, -6, -6*E(3)^2, -6*E(3), -5, -5*E(3)^2, -5*E(3), -10
      -10*E(3)^2, -10*E(3) ] ] ] ,
##
[ [ 1257131421222324 ],
 "$2^4:S_5 \\rightarrow (M_{22},6)$",
[ [ 111303030120160160160 ], 
  [ 111, -3, -3, -354, -16, -16, -16 ], 
  [ 111999, -6, -8, -8, -8 ],
  [ 111, -3, -3, -3, -6444 ], 
  [ 1, E(3), E(3)^21515*E(3)^215*E(3), 02020*E(3), 20*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 1515*E(3), 15*E(3)^202020*E(3)^220*E(3) ], 
  [ 1, E(3), E(3)^2, -2-EB(33), (-2-EB(33))*E(3)^2, (-2-EB(33))*E(3),
    04*EB(33), 4*EB(33)*E(3), 4*EB(33)*E(3)^2 ], 
  [ 1, E(3)^2, E(3), -1+EB(33), (-1+EB(33))*E(3), (-1+EB(33))*E(3)^2,
    0, -2-2*ER(33), (-2-2*ER(33))*E(3)^2, (-2-2*ER(33))*E(3) ],
  [ 1, E(3), E(3)^2, -1+EB(33), (-1+EB(33))*E(3)^2, (-1+EB(33))*E(3),
    0, -2-2*ER(33), (-2-2*ER(33))*E(3), (-2-2*ER(33))*E(3)^2 ],
  [ 1, E(3)^2, E(3), -2-EB(33),  (-2-EB(33))*E(3),  (-2-EB(33))*E(3)^2,
    04*EB(33), 4*EB(33)*E(3)^24*EB(33)*E(3) ] ] ],
##
[ [ 125671314192021222324 ],
 "$2^3:L_3(2) \\rightarrow (M_{22},7)$",
[ [ 111777424242168168168336 ], 
  [ 111, -4, -4, -4999, -30, -30, -3072 ], 
  [ 111444999, -6, -6, -6, -24 ], 
  [ 111, -3, -3, -3222888, -24 ], 
  [ 111111, -6, -6, -600012 ], 
  [ 1, E(3), E(3)^255*E(3)^25*E(3), 1818*E(3)^218*E(3), 24
      24*E(3), 24*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 55*E(3), 5*E(3)^21818*E(3), 18*E(3)^224
      24*E(3)^224*E(3), 0 ], 
  [ 1, E(3), E(3)^2000, -7, -7*E(3)^2, -7*E(3), 1414*E(3), 14*E(3)^2
      0 ], 
  [ 1, E(3)^2, E(3), 000, -7, -7*E(3), -7*E(3)^21414*E(3)^2
      14*E(3), 0 ], 
  [ 1, E(3), E(3)^2, -1-EB(33), (-1-EB(33))*E(3)^2, (-1-EB(33))*E(3),
    2+EB(33), (2+EB(33))*E(3)^2, (2+EB(33))*E(3),
    -9+ER(33), (-9+ER(33))*E(3), (-9+ER(33))*E(3)^20 ], 
  [ 1, E(3)^2, E(3), EB(33), EB(33)*E(3), EB(33)*E(3)^2,
    1-EB(33), (1-EB(33))*E(3), (1-EB(33))*E(3)^2,
    -9-ER(33), (-9-ER(33))*E(3)^2, (-9-ER(33))*E(3), 0 ], 
  [ 1, E(3), E(3)^2, EB(33), EB(33)*E(3)^2, EB(33)*E(3),
    1-EB(33), (1-EB(33))*E(3)^2, (1-EB(33))*E(3),
    -9-ER(33), (-9-ER(33))*E(3), (-9-ER(33))*E(3)^20 ],  
  [ 1, E(3)^2, E(3), -1-EB(33), (-1-EB(33))*E(3), (-1-EB(33))*E(3)^2,
    2+EB(33), (2+EB(33))*E(3), (2+EB(33))*E(3)^2,
    -9+ER(33), (-9+ER(33))*E(3)^2, (-9+ER(33))*E(3), 0 ] ] ],
##
[ [ 12578913142122232425262728 ],
"$L_2(11) \\rightarrow (M_{22},9)$",
[ [ 111555555666666165165165165330330330 ], 
  [ 111, -25, -25, -25, -6, -6, -645454545, -30, -30, -30 ], 
  [ 111131313, -18, -18, -18, -3, -3, -339, -6, -6, -6 ], 
  [ 111777666999, -15, -18, -18, -18 ], 
  [ 111, -3, -3, -3, -6, -6, -6111, -21141414 ], 
  [ 111, -3, -3, -3666, -11, -11, -1115222 ], 
  [ 1, E(3), E(3)^22020*E(3)^220*E(3), -24, -24*E(3), -24*E(3)^245
      45*E(3), 45*E(3)^20, -30, -30*E(3), -30*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 2020*E(3), 20*E(3)^2, -24, -24*E(3)^2, -24*E(3), 45
      45*E(3)^245*E(3), 0, -30, -30*E(3)^2, -30*E(3) ], 
  [ 1, E(3), E(3)^24*EB(33), 4*EB(33)*E(3)^24*EB(33)*E(3),
    9+ER(33), (9+ER(33))*E(3), (9+ER(33))*E(3)^2,
    12-ER(33), (12-ER(33))*E(3), (12-ER(33))*E(3)^20,
    3+ER(33), (3+ER(33))*E(3), (3+ER(33))*E(3)^2 ],
  [ 1, E(3)^2, E(3), -2-2*ER(33), (-2-2*ER(33))*E(3), (-2-2*ER(33))*E(3)^2,
    9-ER(33), (9-ER(33))*E(3)^2, (9-ER(33))*E(3), 
    12+ER(33), (12+ER(33))*E(3)^2, (12+ER(33))*E(3),  0,
    3-ER(33), (3-ER(33))*E(3)^2, (3-ER(33))*E(3) ],
  [ 1, E(3), E(3)^2, -2-2*ER(33), (-2-2*ER(33))*E(3)^2, (-2-2*ER(33))*E(3),
    9-ER(33), (9-ER(33))*E(3), (9-ER(33))*E(3)^2,
    12+ER(33), (12+ER(33))*E(3), (12+ER(33))*E(3)^20,
    3-ER(33), (3-ER(33))*E(3), (3-ER(33))*E(3)^2 ],
  [ 1, E(3)^2, E(3), -2+2*ER(33), (-2+2*ER(33))*E(3), (-2+2*ER(33))*E(3)^2,
    9+ER(33), (9+ER(33))*E(3)^2, (9+ER(33))*E(3),
    12-ER(33), (12-ER(33))*E(3)^2, (12-ER(33))*E(3), 0,
    3+ER(33), (3+ER(33))*E(3)^2, (3+ER(33))*E(3) ],
  [ 1, E(3), E(3)^2000000, -11, -11*E(3), -11*E(3)^20, -22
      -22*E(3), -22*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 000000, -11, -11*E(3)^2, -11*E(3), 0, -22
      -22*E(3)^2, -22*E(3) ], 
  [ 1, E(3), E(3)^2000, -6, -6*E(3), -6*E(3)^2, -5, -5*E(3), -5*E(3)^2
      02020*E(3), 20*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 000, -6, -6*E(3)^2, -6*E(3), -5, -5*E(3)^2, -5*E(3), 
      02020*E(3)^220*E(3) ] ] ] ];

MULTFREEINFO.("4.M22"):=["$4.M_{22}$"];

MULTFREEINFO.("6.M22"):=["$6.M_{22}$",
##
[ [1,2,5,7,917,18,2124,25,32,33,34,35,38,3952,53,54,55,56,57],
 "$2^4:A_5 \\rightarrow (2.M_{22},1), (3.M_{22},1)$",
[[1,1,1,1,1,1,30,96,96,96,96,96,96,120,120,120,120,120,120,480,480,480],
 [1,1,1,1,1,1,30,-36,-36,-36,-36,-36,-36,10,10,10,10,10,10,40,40,40],
 [1,1,1,1,1,1,30,12,12,12,12,12,12,-6,-6,-6,-6,-6,-6,-24,-24,-24],
 [1,1,1,1,1,1,-6,0,0,0,0,0,0,12,12,12,12,12,12,-24,-24,-24],
 [1,1,1,1,1,1,-6,0,0,0,0,0,0,-8,-8,-8,-8,-8,-8,16,16,16],
 [ 1, -11, -11, -104*ER(-11), 4*ER(-11), 4*ER(-11),
  -4*ER(-11), -4*ER(-11), -4*ER(-11), -1010, -1010, -1010000 ] ,
 [ 1, -11, -11, -10, -4*ER(-11), -4*ER(-11), -4*ER(-11),
  4*ER(-11), 4*ER(-11), 4*ER(-11), -1010, -1010, -1010000 ] , 
 [ 1, -11, -11, -1000000012, -1212, -1212, -12
   000 ], 
 [ 1, E(3), E(3)^21, E(3), E(3)^20, -24, -24*E(3), -24*E(3)^2, -24
   -24*E(3), -24*E(3)^24040*E(3), 40*E(3)^24040*E(3), 40*E(3)^2
   4040*E(3), 40*E(3)^2 ], 
 [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 0, -24, -24*E(3)^2, -24*E(3), -24
   -24*E(3)^2, -24*E(3), 4040*E(3)^240*E(3), 4040*E(3)^240*E(3), 
   4040*E(3)^240*E(3) ], 
 [ 1, E(3), E(3)^21, E(3), E(3)^20
   9+ER(33), (9+ER(33))*E(3), (9+ER(33))*E(3)^2,
   9+ER(33), (9+ER(33))*E(3), (9+ER(33))*E(3)^2
   3+3*EB(33), (3+3*EB(33))*E(3), (3+3*EB(33))*E(3)^2,
   3+3*EB(33), (3+3*EB(33))*E(3), (3+3*EB(33))*E(3)^2,       
   18-6*ER(33), (18-6*ER(33))*E(3), (18-6*ER(33))*E(3)^2 ],
 [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 0,                         
   9-ER(33), (9-ER(33))*E(3)^2, (9-ER(33))*E(3),
   9-ER(33), (9-ER(33))*E(3)^2, (9-ER(33))*E(3),                    
   -3*EB(33), -3*EB(33)*E(3)^2, -3*EB(33)*E(3),
   -3*EB(33), -3*EB(33)*E(3)^2, -3*EB(33)*E(3),
   18+6*ER(33), (18+6*ER(33))*E(3)^2, (18+6*ER(33))*E(3) ],
 [ 1, E(3), E(3)^21, E(3), E(3)^20,                 
   9-ER(33), (9-ER(33))*E(3), (9-ER(33))*E(3)^2,     
   9-ER(33), (9-ER(33))*E(3), (9-ER(33))*E(3)^2,     
   -3*EB(33), -3*EB(33)*E(3), -3*EB(33)*E(3)^2,
   -3*EB(33), -3*EB(33)*E(3), -3*EB(33)*E(3)^2,
   18+6*ER(33), (18+6*ER(33))*E(3), (18+6*ER(33))*E(3)^2 ],
 [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 0,                          
   9+ER(33), (9+ER(33))*E(3)^2, (9+ER(33))*E(3),
   9+ER(33), (9+ER(33))*E(3)^2, (9+ER(33))*E(3),
   3+3*EB(33), (3+3*EB(33))*E(3)^2, (3+3*EB(33))*E(3),        
   3+3*EB(33), (3+3*EB(33))*E(3)^2, (3+3*EB(33))*E(3),                     
   18-6*ER(33), (18-6*ER(33))*E(3)^2,(18-6*ER(33))*E(3) ],
 [ 1, E(3), E(3)^21, E(3), E(3)^20, -6, -6*E(3), -6*E(3)^2, -6, -6*E(3), 
   -6*E(3)^2, -5, -5*E(3), -5*E(3)^2, -5, -5*E(3), -5*E(3)^2, -20
   -20*E(3), -20*E(3)^2 ], 
 [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 0, -6, -6*E(3)^2, -6*E(3), -6
   -6*E(3)^2, -6*E(3), -5, -5*E(3)^2, -5*E(3), -5, -5*E(3)^2, -5*E(3), 
   -20, -20*E(3)^2, -20*E(3) ], 
 [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^20,
   (10-4*EV(33)-6*GaloisCyc(EV(33),7))*E(3),
   (10-4*EV(33)-6*GaloisCyc(EV(33),7))*E(3)^2,
    10-4*EV(33)-6*GaloisCyc(EV(33),7),
  -(10-4*EV(33)-6*GaloisCyc(EV(33),7))*E(3),
  -(10-4*EV(33)-6*GaloisCyc(EV(33),7))*E(3)^2,
  -(10-4*EV(33)-6*GaloisCyc(EV(33),7)),
  5*EB(33), -5*EB(33)*E(3),  5*EB(33)*E(3)^2,
 -5*EB(33),  5*EB(33)*E(3), -5*EB(33)*E(3)^2000 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), 0
    (-10+6*EV(33)+4*GaloisCyc(EV(33),7))*E(3),                         
     -10+6*EV(33)+4*GaloisCyc(EV(33),7),
    (-10+6*EV(33)+4*GaloisCyc(EV(33),7))*E(3)^2,                         
   -(-10+6*EV(33)+4*GaloisCyc(EV(33),7))*E(3),                         
   -(-10+6*EV(33)+4*GaloisCyc(EV(33),7)),
   -(-10+6*EV(33)+4*GaloisCyc(EV(33),7))*E(3)^2,                         
   -5-5*EB(33),  (5+5*EB(33))*E(3)^2, (-5-5*EB(33))*E(3), 
    5+5*EB(33), (-5-5*EB(33))*E(3)^2,  (5+5*EB(33))*E(3), 000 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^20
    (10-6*EV(33)-4*GaloisCyc(EV(33),7))*E(3), 
    (10-6*EV(33)-4*GaloisCyc(EV(33),7))*E(3)^2
     10-6*EV(33)-4*GaloisCyc(EV(33),7),
   -(10-6*EV(33)-4*GaloisCyc(EV(33),7))*E(3), 
   -(10-6*EV(33)-4*GaloisCyc(EV(33),7))*E(3)^2
   -(10-6*EV(33)-4*GaloisCyc(EV(33),7)),
    -5-5*EB(33),  (5+5*EB(33))*E(3), (-5-5*EB(33))*E(3)^2,
     5+5*EB(33), (-5-5*EB(33))*E(3),  (5+5*EB(33))*E(3)^2000 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), 0
    (-10+4*EV(33)+6*GaloisCyc(EV(33),7))*E(3),
     -10+4*EV(33)+6*GaloisCyc(EV(33),7),
    (-10+4*EV(33)+6*GaloisCyc(EV(33),7))*E(3)^2,
   -(-10+4*EV(33)+6*GaloisCyc(EV(33),7))*E(3),
   -(-10+4*EV(33)+6*GaloisCyc(EV(33),7)),
   -(-10+4*EV(33)+6*GaloisCyc(EV(33),7))*E(3)^2,
    5*EB(33), -5*EB(33)*E(3)^2,  5*EB(33)*E(3),
   -5*EB(33),  5*EB(33)*E(3)^2, -5*EB(33)*E(3), 000 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^20
   -6*ER(-3),  9+3*ER(-3), -9+3*ER(-3), 6*ER(-3), -9-3*ER(-3),  9-3*ER(-3),
    3, -3*E(3), 3*E(3)^2, -33*E(3), -3*E(3)^2000 ],
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), 0
    6*ER(-3),  9-3*ER(-3), -9-3*ER(-3), -6*ER(-3), -9+3*ER(-3), 9+3*ER(-3),
    3, -3*E(3)^23*E(3), -33*E(3)^2, -3*E(3), 000 ] ] ],
##
[[1,2,5,6,716,2124,25,30,31,32,33,34,3562,63],
 "$2^3:L_3(2) \\rightarrow (2.M_{22},4), (3.M_{22},3)$",
[ [ 111111141414848484336336336336336 ], 
  [ 111111, -8, -8, -8181818, -60, -60, -607272 ], 
  [ 111111888181818, -12, -12, -12, -24, -24 ], 
  [ 111111, -6, -6, -6444161616, -24, -24 ], 
  [ 111111222, -12, -12, -120001212 ], 
  [ 1, -11, -11, -100000000042, -42 ], 
  [ 1, -11, -11, -1000000000, -2424 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^21010*E(3), 10*E(3)^23636*E(3), 
      36*E(3)^24848*E(3), 48*E(3)^200 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 1010*E(3)^210*E(3), 3636*E(3)^2
      36*E(3), 4848*E(3)^248*E(3), 00 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2000, -14, -14*E(3), -14*E(3)^228
      28*E(3), 28*E(3)^200 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 000, -14, -14*E(3)^2, -14*E(3), 28
      28*E(3)^228*E(3), 00 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2,
   -1-ER(33), (-1-ER(33))*E(3), (-1-ER(33))*E(3)^2,
   3+ER(33), (3+ER(33))*E(3), (3+ER(33))*E(3)^2
   -18+2*ER(33), (-18+2*ER(33))*E(3), (-18+2*ER(33))*E(3)^200 ],
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 
   -1+ER(33), (-1+ER(33))*E(3)^2, (-1+ER(33))*E(3),
   3-ER(33), (3-ER(33))*E(3)^2, (3-ER(33))*E(3),
   -18-2*ER(33), (-18-2*ER(33))*E(3)^2, (-18-2*ER(33))*E(3), 00 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2
   -1+ER(33), (-1+ER(33))*E(3), (-1+ER(33))*E(3)^2,
    3-ER(33), (3-ER(33))*E(3), (3-ER(33))*E(3)^2,
   -18-2*ER(33), (-18-2*ER(33))*E(3), (-18-2*ER(33))*E(3)^200 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 
   -1-ER(33), (-1-ER(33))*E(3)^2, (-1-ER(33))*E(3),
    3+ER(33), (3+ER(33))*E(3)^2, (3+ER(33))*E(3),
   -18+2*ER(33), (-18+2*ER(33))*E(3)^2, (-18+2*ER(33))*E(3), 00 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^20,0,0,0,0,0,0,0,0,0,0], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), 0,0,0,0,0,0,0,0,0,0,0] ] ] ];

MULTFREEINFO.("12.M22"):=["$12.M_{22}$"];

MULTFREEINFO.("2.J2"):=["$2.J_2$",
##
[ [ 1672526 ],
"$U_3(3) \\rightarrow (J_2,1)$",
 [[1,1,36,36,126],
  [1,1,6,6,-14],
  [1,1,-4,-4,6],
  [1,-1,-6*ER(-1),6*ER(-1),0],
  [1,-1,6*ER(-1),-6*ER(-1),0]] ] ];

MULTFREEINFO.("2.HS"):=["$2.HS$",
##
[ [ 12572627 ],
"$U_3(5) \\rightarrow (HS,3)$",
 [[1,1,1,1,350,350],
  [1,1,-1,-1,-70,70],
  [1,1,-1,-1,10,-10],
  [1,1,1,1,-2,-2],
  [1,-1,-ER(-1),ER(-1),0,0],
  [1,-1,ER(-1),-ER(-1),0,0]] ],
##
[ [ 12672627 ],
"$U_3(5) \\rightarrow (HS,5)$",
 [[1,1,1,1,350,350],
  [1,1,-1,-1,-70,70],
  [1,1,-1,-1,10,-10],
  [1,1,1,1,-2,-2],
  [1,-1,-ER(-1),ER(-1),0,0],
  [1,-1,ER(-1),-ER(-1),0,0]] ],
##
[ [ 123456791026273031 ],
"$A_8 \\rightarrow (HS,8)$",
 [[1,1,1,1,56,56,210,210,336,336,336,336,2520],
  [1,1,-1,-1,0,0,-70,70,-112,-112,112,112,0],
  [1,1,1,1,-24,-24,50,50,16,16,16,16,-120],
  [1,1,1,1,16,16,30,30,-24,-24,-24,-24,0],
  [1,1,-1,-1,-20,20,30,-30,-12,-12,12,12,0],
  [1,1,-1,-1,20,-20,30,-30,-12,-12,12,12,0],
  [1,1,1,1,12,12,-10,-10,28,28,28,28,-120],
  [1,1,1,1,-4,-4,-10,-10,-4,-4,-4,-4,40],
  [1,1,-1,-1,0,0,-10,10,8,8,-8,-8,0],
  [1,-1,ER(-1),-ER(-1),0,0,0,0,-42*ER(-1),42*ER(-1),42,-42,0],
  [1,-1,-ER(-1),ER(-1),0,0,0,0,42*ER(-1),-42*ER(-1),42,-42,0],
  [1,-1,ER(-1),-ER(-1),0,0,0,0,8*ER(-1),-8*ER(-1),-8,8,0],
  [1,-1,-ER(-1),ER(-1),0,0,0,0,-8*ER(-1),8*ER(-1),-8,8,0]] ],
##
[ [ 123571013162225262728293738 ],
"$M_{11} \\rightarrow (HS,10)$",
 [[1,1,110,132,132,165,165,660,660,792,792,990,1320,1320,1980,1980],
  [1,1,10,52,52,-85,-85,-140,-140,72,72,390,-280,-280,180,180],
  [1,1,-40,37,37,40,40,85,85,-138,-138,90,-80,-80,30,30],
  [1,1,-38,-12,-12,-21,-21,84,84,72,72,54,-24,-24,-108,-108],
  [1,1,14,4,4,37,37,-44,-44,24,24,126,40,40,-132,-132],
  [1,1,-8,13,13,-16,-16,-11,-11,-18,-18,-6,56,56,-18,-18],
  [1,1,24,-11,-11,-8,-8,21,21,-26,-26,26,0,0,-2,-2],
  [1,1,12,13,13,4,4,9,9,22,22,-46,-24,-24,-8,-8],
  [1,1,-8,-7,-7,4,4,-11,-11,2,2,-6,-4,-4,22,22],
  [1,-1,0,-33,33,0,0,-165,165,198,-198,0,0,0,0,0],
  [1,-1,0,-28,28,35*ER(-1),-35*ER(-1),-40,40,-72,72,0,
   40*ER(-1),-40*ER(-1),-120*ER(-1),120*ER(-1)],
  [1,-1,0,-28,28,-35*ER(-1),35*ER(-1),-40,40,-72,72,0,
   -40*ER(-1),40*ER(-1),120*ER(-1),-120*ER(-1)],
  [1,-1,0,-13,13,20*ER(-1),-20*ER(-1),35,-35,18,-18,0,
   -20*ER(-1),20*ER(-1),60*ER(-1),-60*ER(-1)],
  [1,-1,0,-13,13,-20*ER(-1),20*ER(-1),35,-35,18,-18,0,
   20*ER(-1),-20*ER(-1),-60*ER(-1),60*ER(-1)],
  [1,-1,0,7,-7,0,0,-5,5,-2,2,0,40*ER(-1),-40*ER(-1),20*ER(-1),-20*ER(-1)],
  [1,-1,0,7,-7,0,0,-5,5,-2,2,0,-40*ER(-1),40*ER(-1),-20*ER(-1),20*ER(-1)]] ],
##
[ [ 123671013162225262728293738 ],
"$M_{11} \\rightarrow (HS,11)$",
 [[1,1,110,132,132,165,165,660,660,792,792,990,1320,1320,1980,1980],
  [1,1,10,52,52,-85,-85,-140,-140,72,72,390,-280,-280,180,180],
  [1,1,-40,37,37,40,40,85,85,-138,-138,90,-80,-80,30,30],
  [1,1,-38,-12,-12,-21,-21,84,84,72,72,54,-24,-24,-108,-108],
  [1,1,14,4,4,37,37,-44,-44,24,24,126,40,40,-132,-132],
  [1,1,-8,13,13,-16,-16,-11,-11,-18,-18,-6,56,56,-18,-18],
  [1,1,24,-11,-11,-8,-8,21,21,-26,-26,26,0,0,-2,-2],
  [1,1,12,13,13,4,4,9,9,22,22,-46,-24,-24,-8,-8],
  [1,1,-8,-7,-7,4,4,-11,-11,2,2,-6,-4,-4,22,22],
  [1,-1,0,-33,33,0,0,-165,165,198,-198,0,0,0,0,0],
  [1,-1,0,-28,28,35*ER(-1),-35*ER(-1),-40,40,-72,72,0,
   40*ER(-1),-40*ER(-1),-120*ER(-1),120*ER(-1)],
  [1,-1,0,-28,28,-35*ER(-1),35*ER(-1),-40,40,-72,72,0,
   -40*ER(-1),40*ER(-1),120*ER(-1),-120*ER(-1)],
  [1,-1,0,-13,13,20*ER(-1),-20*ER(-1),35,-35,18,-18,0,
   -20*ER(-1),20*ER(-1),60*ER(-1),-60*ER(-1)],
  [1,-1,0,-13,13,-20*ER(-1),20*ER(-1),35,-35,18,-18,0,
   20*ER(-1),-20*ER(-1),-60*ER(-1),60*ER(-1)],
  [1,-1,0,7,-7,0,0,-5,5,-2,2,0,40*ER(-1),-40*ER(-1),20*ER(-1),-20*ER(-1)],
  [1,-1,0,7,-7,0,0,-5,5,-2,2,0,-40*ER(-1),40*ER(-1),-20*ER(-1),20*ER(-1)]]]];

MULTFREEINFO.("3.J3"):=["$3.J_3$"];

MULTFREEINFO.("3.McL"):=["$3.McL$",
##
[ [ 1491415204142454647485758 ],
"$2.A_8 \\rightarrow (McL,6)$",
[ [1,1,1,630,2240,2240,2240,5040,5040,5040,8064,8064,8064,20160],
  [ 111135260260260909090144144144, -1620], 
  [ 111117, -28, -28, -28727272, -144, -144, -144180 ], 
  [ 111, -15606060, -60, -60, -60, -56, -56, -56180 ], 
  [ 111, -45, -10, -10, -10909090, -36, -36, -36, -90 ], 
  [ 1119, -28, -28, -28, -36, -36, -36727272, -36 ], 
  [ 1, E(3), E(3)^208080*E(3), 80*E(3)^29090*E(3), 90*E(3)^2144
      144*E(3), 144*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 08080*E(3)^280*E(3), 9090*E(3)^290*E(3), 144
      144*E(3)^2144*E(3), 0 ], 
  [ 1, E(3), E(3)^20000, -120, -120*E(3), -120*E(3)^26464*E(3), 
      64*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 0000, -120, -120*E(3)^2, -120*E(3), 6464*E(3)^2
      64*E(3), 0 ], 
  [ 1, E(3), E(3)^203535*E(3), 35*E(3)^2000, -126, -126*E(3), 
      -126*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 03535*E(3)^235*E(3), 000, -126, -126*E(3)^2
      -126*E(3), 0 ], 
  [ 1, E(3), E(3)^20, -55, -55*E(3), -55*E(3)^24545*E(3), 45*E(3)^29
      9*E(3), 9*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 0, -55, -55*E(3)^2, -55*E(3), 4545*E(3)^245*E(3), 9
      9*E(3)^29*E(3), 0 ] ] ] ];

MULTFREEINFO.("2.Ru"):=["$2.Ru$",
##
[ [ 1456737384344 ],
"$^2F_4(2)^\\prime \\rightarrow (Ru,2)$",
 [[1,1,1,1,2304,2304,2304,2304,7020],
  [1,1,-1,-1,-144,-144,144,144,0],
  [1,1,1,1,64,64,64,64,-260],
  [1,1,1,1,-16,-16,-16,-16,60],
  [1,1,-1,-1,16,16,-16,-16,0],
  [1,-1,ER(-1),-ER(-1),-576*ER(-1),576*ER(-1),-576,576,0],
  [1,-1,-ER(-1),ER(-1),576*ER(-1),-576*ER(-1),-576,576,0],
  [1,-1,ER(-1),-ER(-1),4*ER(-1),-4*ER(-1),4,-4,0],
  [1,-1,-ER(-1),ER(-1),-4*ER(-1),4*ER(-1),4,-4,0]] ] ];

MULTFREEINFO.("2.Suz"):=["$2.Suz$",
##
[ [ 1239111245465051 ],
"$U_5(2) \\rightarrow (Suz,4)$",
 [[1,1,891,891,2816,2816,3960,12672,20736,20736],
  [1,1,243,243,512,512,-360,-1152,0,0],
  [1,1,-99,-99,176,176,660,-528,-144,-144],
  [1,1,33,33,8,8,60,192,-168,-168],
  [1,1,-27,-27,32,32,-60,48,0,0],
  [1,1,9,9,-40,-40,12,-96,72,72],
  [1,-1,-99*ER(-3),99*ER(-3),352,-352,0,0,-288*ER(-3),288*ER(-3)],
  [1,-1,99*ER(-3),-99*ER(-3),352,-352,0,0,288*ER(-3),-288*ER(-3)],
  [1,-1,-9*ER(-3),9*ER(-3),-8,8,0,0,72*ER(-3),-72*ER(-3)],
  [1,-1,9*ER(-3),-9*ER(-3),-8,8,0,0,-72*ER(-3),72*ER(-3)]] ] ];

MULTFREEINFO.("3.Suz"):=["$3.Suz$",
##
[ [ 14544455253 ],
"$G_2(4) \\rightarrow (Suz,1)$",
 [[1,1,1,416,416,416,4095],
  [1,1,1,20,20,20,-63],
  [1,1,1,-16,-16,-16,45],
  [1,E(3),E(3)^2,-52-52*ER(-3),-52+52*ER(-3),104,0],
  [1,E(3)^2,E(3),-52+52*ER(-3),-52-52*ER(-3),104,0],
  [1,E(3),E(3)^2,2+2*ER(-3),2-2*ER(-3),-4,0],
  [1,E(3)^2,E(3),2-2*ER(-3),2+2*ER(-3),-4,0]] ],
##
[ [ 123911124647505162637879 ],
"$U_5(2) \\rightarrow (Suz,4)$",
[ [1,1,1,891,891,891,2816,2816,2816,5940,19008,20736,20736,20736], 
  [ 111243243243512512512, -540, -1728000 ], 
  [ 111, -99, -99, -99176176176990, -792, -144, -144, -144 ], 
  [ 11133333388890288, -168, -168, -168 ], 
  [ 111, -27, -27, -27323232, -9072000 ], 
  [ 111999, -40, -40, -4018, -144727272 ], 
  [ 1, E(3), E(3)^2, -297, -297*E(3), -297*E(3)^2704704*E(3), 704*E(3)^2
      00, -1728, -1728*E(3), -1728*E(3)^2 ], 
  [ 1, E(3)^2, E(3), -297, -297*E(3)^2, -297*E(3), 704704*E(3)^2704*E(3), 
      00, -1728, -1728*E(3)^2, -1728*E(3) ], 
  [ 1, E(3), E(3)^29999*E(3), 99*E(3)^2176176*E(3), 176*E(3)^200
      144144*E(3), 144*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 9999*E(3)^299*E(3), 176176*E(3)^2176*E(3), 00
      144144*E(3)^2144*E(3) ], 
  [ 1, E(3), E(3)^2, -45, -45*E(3), -45*E(3)^23232*E(3), 32*E(3)^200
      288288*E(3), 288*E(3)^2 ], 
  [ 1, E(3)^2, E(3), -45, -45*E(3)^2, -45*E(3), 3232*E(3)^232*E(3), 00
      288288*E(3)^2288*E(3) ], 
  [ 1, E(3), E(3)^233*E(3), 3*E(3)^2, -16, -16*E(3), -16*E(3)^200
      -48, -48*E(3), -48*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 33*E(3)^23*E(3), -16, -16*E(3)^2, -16*E(3), 00
      -48, -48*E(3)^2, -48*E(3) ] ] ],
##
[ [1,2,4,6,9,12,16,17,27,44,45,48,49,52,53,68,69,70,71,82,83,88,89],
"$2_-^{1+6}.U_4(2) \\rightarrow (Suz,5)$",
[ [ 11154545410801728172817285120512051209216
      92169216172801728017280552965529655296138240 ], 
  [ 111, -27, -27, -27270432432432800800800, -1152, -1152
      -1152, -2160, -2160, -2160345634563456, -4320 ], 
  [ 11121212190276276276, -160, -160, -160768768768
      120120120384384384, -4320 ], 
  [ 111333, -180132132132200200200484848, -60
      -60, -60, -624, -624, -6241080 ], 
  [ 111151515144121212128128128, -144, -144, -144
      276276276, -240, -240, -240, -288 ], 
  [ 111, -9, -9, -972, -36, -36, -36808080144144144, -108
      -108, -108, -144, -144, -144144 ], 
  [ 111, -11, -11, -1130484848, -80, -80, -80, -64, -64, -6480
      8080, -64, -64, -64240 ], 
  [ 11199918000, -64, -64, -64000, -144, -144, -144
      000576 ], 
  [ 111000, -36, -18, -18, -18888, -9, -9, -9363636
      909090, -288 ], 
  [ 1, E(3), E(3)^22727*E(3), 27*E(3)^20648648*E(3), 648*E(3)^2
      -640, -640*E(3), -640*E(3)^223042304*E(3), 2304*E(3)^2, -2160
      -2160*E(3), -2160*E(3)^269126912*E(3), 6912*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 2727*E(3)^227*E(3), 0648648*E(3)^2648*E(3), 
      -640, -640*E(3)^2, -640*E(3), 23042304*E(3)^22304*E(3), -2160
      -2160*E(3)^2, -2160*E(3), 69126912*E(3)^26912*E(3), 0 ], 
  [ 1, E(3), E(3)^2, -18, -18*E(3), -18*E(3)^20288288*E(3), 288*E(3)^2
      -640, -640*E(3), -640*E(3)^2, -576, -576*E(3), -576*E(3)^21440
      1440*E(3), 1440*E(3)^211521152*E(3), 1152*E(3)^20 ], 
  [ 1, E(3)^2, E(3), -18, -18*E(3)^2, -18*E(3), 0288288*E(3)^2288*E(3), 
      -640, -640*E(3)^2, -640*E(3), -576, -576*E(3)^2, -576*E(3), 1440
      1440*E(3)^21440*E(3), 11521152*E(3)^21152*E(3), 0 ], 
  [ 1, E(3), E(3)^21515*E(3), 15*E(3)^20156156*E(3), 156*E(3)^2
      320320*E(3), 320*E(3)^2384384*E(3), 384*E(3)^2600600*E(3), 
      600*E(3)^2, -384, -384*E(3), -384*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 1515*E(3)^215*E(3), 0156156*E(3)^2156*E(3), 
      320320*E(3)^2320*E(3), 384384*E(3)^2384*E(3), 600600*E(3)^2
      600*E(3), -384, -384*E(3)^2, -384*E(3), 0 ], 
  [ 1, E(3), E(3)^2, -12, -12*E(3), -12*E(3)^20102102*E(3), 102*E(3)^2
      140140*E(3), 140*E(3)^2, -192, -192*E(3), -192*E(3)^2, -210
      -210*E(3), -210*E(3)^24848*E(3), 48*E(3)^20 ], 
  [ 1, E(3)^2, E(3), -12, -12*E(3)^2, -12*E(3), 0102102*E(3)^2102*E(3), 
      140140*E(3)^2140*E(3), -192, -192*E(3)^2, -192*E(3), -210
      -210*E(3)^2, -210*E(3), 4848*E(3)^248*E(3), 0 ], 
  [ 1, E(3), E(3)^21010*E(3), 10*E(3)^203636*E(3), 36*E(3)^2, -80
      -80*E(3), -80*E(3)^2, -16, -16*E(3), -16*E(3)^2, -100, -100*E(3), 
      -100*E(3)^2, -304, -304*E(3), -304*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 1010*E(3)^210*E(3), 03636*E(3)^236*E(3), -80
      -80*E(3)^2, -80*E(3), -16, -16*E(3)^2, -16*E(3), -100, -100*E(3)^2
      -100*E(3), -304, -304*E(3)^2, -304*E(3), 0 ], 
  [ 1, E(3), E(3)^266*E(3), 6*E(3)^20, -24, -24*E(3), -24*E(3)^232
      32*E(3), 32*E(3)^2, -48, -48*E(3), -48*E(3)^22424*E(3), 24*E(3)^2
      192192*E(3), 192*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 66*E(3)^26*E(3), 0, -24, -24*E(3)^2, -24*E(3), 32
      32*E(3)^232*E(3), -48, -48*E(3)^2, -48*E(3), 2424*E(3)^224*E(3), 
      192192*E(3)^2192*E(3), 0 ], 
  [ 1, E(3), E(3)^2, -6, -6*E(3), -6*E(3)^20, -12, -12*E(3), -12*E(3)^2
      -16, -16*E(3), -16*E(3)^24848*E(3), 48*E(3)^21212*E(3), 
      12*E(3)^2, -48, -48*E(3), -48*E(3)^20 ], 
  [ 1, E(3)^2, E(3), -6, -6*E(3)^2, -6*E(3), 0, -12, -12*E(3)^2, -12*E(3), 
      -16, -16*E(3)^2, -16*E(3), 4848*E(3)^248*E(3), 1212*E(3)^2
      12*E(3), -48, -48*E(3)^2, -48*E(3), 0 ] ] ],
##
[ [ 13459111215172728303350516263787982,
  8394959697104105 ],
"$2^{4+6}:3.A_6 \\rightarrow (Suz,6)$",
[ [ 111180480480480460857606144614461441843220480
      20480204804608046080460806912069120921609216092160
      184320184320184320 ], 
  [ 111, -453030301008360110411041104, -288, -1120
      -1120, -1120288028802880, -6480, -1080, -5040, -5040, -5040
      432043204320 ], 
  [ 111818484846481008, -192, -192, -192259214721472
      1472, -1440, -1440, -14402162592, -2880, -2880, -2880576576
      576 ], 
  [ 11145, -60, -60, -60, -4689009696963312, -1120, -1120
      -1120720720720, -540, -2160144014401440, -1440, -1440
      -1440 ], 
  [ 11163909090, -72144216216216, -288, -112, -112, -112
      -96, -96, -96, -10801728744744744, -1008, -1008, -1008 ], 
  [ 111, -45303030, -288360969696, -2883203203200
      000, -1080000000 ], 
  [ 111, -918181872, -288264264264288, -16, -16, -16
      -288, -288, -2881080, -432, -72, -72, -72, -144, -144, -144 ], 
  [ 11121, -36, -36, -36348228484848, -288112112112
      240240240516, -288240240240, -784, -784, -784 ], 
  [ 11145363636, -3636, -96, -96, -96, -144, -160, -160, -160
      144144144756, -432, -288, -288, -288288288288 ], 
  [ 1111800018, -126, -24, -24, -247212812812899
      9, -540, -432144144144727272 ], 
  [ 111, -2712121210836, -48, -48, -480, -112, -112, -112
      -144, -144, -144, -1080144144144144144144 ], 
  [ 111, -15000, -48, -60, -24, -24, -2472404040240240
      240120360, -120, -120, -120, -280, -280, -280 ], 
  [ 1119, -24, -24, -24, -7236242424, -72, -40, -40, -40, -144
      -144, -1440216, -72, -72, -72216216216 ], 
  [ 1, E(3), E(3)^206060*E(3), 60*E(3)^200432432*E(3), 
      432*E(3)^20, -1120, -1120*E(3), -1120*E(3)^228802880*E(3), 
      2880*E(3)^200720720*E(3), 720*E(3)^214401440*E(3), 
      1440*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 06060*E(3)^260*E(3), 00432432*E(3)^2
      432*E(3), 0, -1120, -1120*E(3)^2, -1120*E(3), 28802880*E(3)^2
      2880*E(3), 00720720*E(3)^2720*E(3), 14401440*E(3)^2
      1440*E(3) ], 
  [ 1, E(3), E(3)^206060*E(3), 60*E(3)^200288288*E(3), 
      288*E(3)^20320320*E(3), 320*E(3)^2000001440
      1440*E(3), 1440*E(3)^2, -2880, -2880*E(3), -2880*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 06060*E(3)^260*E(3), 00288288*E(3)^2
      288*E(3), 0320320*E(3)^2320*E(3), 000001440
      1440*E(3)^21440*E(3), -2880, -2880*E(3)^2, -2880*E(3) ], 
  [ 1, E(3), E(3)^20, -36, -36*E(3), -36*E(3)^200240240*E(3), 
      240*E(3)^203232*E(3), 32*E(3)^2, -192, -192*E(3), -192*E(3)^20
      0, -240, -240*E(3), -240*E(3)^2288288*E(3), 288*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 0, -36, -36*E(3)^2, -36*E(3), 00240240*E(3)^2
      240*E(3), 03232*E(3)^232*E(3), -192, -192*E(3)^2, -192*E(3), 0
      0, -240, -240*E(3)^2, -240*E(3), 288288*E(3)^2288*E(3) ], 
  [ 1, E(3), E(3)^202424*E(3), 24*E(3)^2000000320
      320*E(3), 320*E(3)^2144144*E(3), 144*E(3)^200000576
      576*E(3), 576*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 02424*E(3)^224*E(3), 000000320
      320*E(3)^2320*E(3), 144144*E(3)^2144*E(3), 00000576
      576*E(3)^2576*E(3) ], 
  [ 1, E(3), E(3)^20, -24, -24*E(3), -24*E(3)^200, -48, -48*E(3), 
      -48*E(3)^20, -16, -16*E(3), -16*E(3)^200000432432*E(3), 
      432*E(3)^2144144*E(3), 144*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 0, -24, -24*E(3)^2, -24*E(3), 00, -48, -48*E(3)^2
      -48*E(3), 0, -16, -16*E(3)^2, -16*E(3), 00000432432*E(3)^2
      432*E(3), 144144*E(3)^2144*E(3) ], 
  [ 1, E(3), E(3)^202424*E(3), 24*E(3)^2000000, -128
      -128*E(3), -128*E(3)^2, -192, -192*E(3), -192*E(3)^200000
      128128*E(3), 128*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 02424*E(3)^224*E(3), 000000, -128
      -128*E(3)^2, -128*E(3), -192, -192*E(3)^2, -192*E(3), 00000
      128128*E(3)^2128*E(3) ], 
  [ 1, E(3), E(3)^20, -6, -6*E(3), -6*E(3)^200, -30, -30*E(3), 
      -30*E(3)^2022*E(3), 2*E(3)^2108108*E(3), 108*E(3)^200
      -270, -270*E(3), -270*E(3)^2, -342, -342*E(3), -342*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 0, -6, -6*E(3)^2, -6*E(3), 00, -30, -30*E(3)^2
      -30*E(3), 022*E(3)^22*E(3), 108108*E(3)^2108*E(3), 00
      -270, -270*E(3)^2, -270*E(3), -342, -342*E(3)^2, -342*E(3) ] ] ] ];

MULTFREEINFO.("6.Suz"):=["$6.Suz$",
##
[ [1,2,3,9,11,1245,46,50,5179,80,83,84,95,96,111,112
  153,154,157,158,159,160,177,178],
"$U_5(2) \\rightarrow (2.Suz,1), (3.Suz,2)$",
[ [ 1111118918918918918918912816281628162816
      281628161188020736207362073620736207362073638016 ], 
  [ 111111243243243243243243512512512512512
      512, -1080000000, -3456 ], 
  [ 111111, -99, -99, -99, -99, -99, -99176176176176176
      1761980, -144, -144, -144, -144, -144, -144, -1584 ], 
  [ 111111333333333333888888180, -168
      -168, -168, -168, -168, -168576 ], 
  [ 111111, -27, -27, -27, -27, -27, -27323232323232
      -180000000144 ], 
  [ 111111999999, -40, -40, -40, -40, -40, -403672
      7272727272, -288 ],
  [1,-1,1,-1,1,-1,-99*ER(-3),99*ER(-3),-99*ER(-3),99*ER(-3),99*ER(-3),
   -99*ER(-3),-352,-352,352,352,-352,352,0,-288*ER(-3),-288*ER(-3),
   288*ER(-3),288*ER(-3),288*ER(-3),-288*ER(-3),0],
  [1,-1,1,-1,1,-1,99*ER(-3),-99*ER(-3),99*ER(-3),-99*ER(-3),-99*ER(-3),
   99*ER(-3),-352,-352,352,352,-352,352,0,288*ER(-3),288*ER(-3),
   -288*ER(-3),-288*ER(-3),-288*ER(-3),288*ER(-3),0],
  [1,-1,1,-1,1,-1,-9*ER(-3),9*ER(-3),-9*ER(-3),9*ER(-3),9*ER(-3),
  -9*ER(-3),8,8,-8,-8,8,-8,0,72*ER(-3),72*ER(-3),-72*ER(-3),-72*ER(-3),
  -72*ER(-3),72*ER(-3),0],
  [1,-1,1,-1,1,-1,9*ER(-3),-9*ER(-3),9*ER(-3),-9*ER(-3),-9*ER(-3),
   9*ER(-3),8,8,-8,-8,8,-8,0,-72*ER(-3),-72*ER(-3),72*ER(-3),72*ER(-3),
   72*ER(-3),-72*ER(-3),0 ],
  [ 1, E(3), E(3)^21, E(3), E(3)^2, -297*E(3), -297*E(3), -297, -297
      -297*E(3)^2, -297*E(3)^2704704*E(3)^2704704*E(3)^2704*E(3), 
      704*E(3), 0, -1728*E(3)^2, -1728*E(3), -1728*E(3), -1728*E(3)^2, -1728
      -17280 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), -297*E(3)^2, -297*E(3)^2, -297, -297
      -297*E(3), -297*E(3), 704704*E(3), 704704*E(3), 704*E(3)^2
      704*E(3)^20, -1728*E(3), -1728*E(3)^2, -1728*E(3)^2, -1728*E(3), 
      -1728, -17280 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^299*E(3), 99*E(3), 999999*E(3)^2
      99*E(3)^2176176*E(3)^2176176*E(3)^2176*E(3), 176*E(3), 0
      144*E(3)^2144*E(3), 144*E(3), 144*E(3)^21441440 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 99*E(3)^299*E(3)^2999999*E(3), 
      99*E(3), 176176*E(3), 176176*E(3), 176*E(3)^2176*E(3)^20
      144*E(3), 144*E(3)^2144*E(3)^2144*E(3), 1441440 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2, -45*E(3), -45*E(3), -45, -45
      -45*E(3)^2, -45*E(3)^23232*E(3)^23232*E(3)^232*E(3), 32*E(3), 
      0288*E(3)^2288*E(3), 288*E(3), 288*E(3)^22882880 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), -45*E(3)^2, -45*E(3)^2, -45, -45
      -45*E(3), -45*E(3), 3232*E(3), 3232*E(3), 32*E(3)^232*E(3)^20
      288*E(3), 288*E(3)^2288*E(3)^2288*E(3), 2882880 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^23*E(3), 3*E(3), 333*E(3)^2
      3*E(3)^2, -16, -16*E(3)^2, -16, -16*E(3)^2, -16*E(3), -16*E(3), 0
      -48*E(3)^2, -48*E(3), -48*E(3), -48*E(3)^2, -48, -480 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 3*E(3)^23*E(3)^2333*E(3), 
      3*E(3), -16, -16*E(3), -16, -16*E(3), -16*E(3)^2, -16*E(3)^20
      -48*E(3), -48*E(3)^2, -48*E(3)^2, -48*E(3), -48, -480 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^2, -297*E(3)-594*E(3)^2
      297*E(3)+594*E(3)^2, -297*E(3)+297*E(3)^2297*E(3)-297*E(3)^2
      -594*E(3)-297*E(3)^2594*E(3)+297*E(3)^2, -1408, -1408*E(3)^21408
      1408*E(3)^2, -1408*E(3), 1408*E(3), 06912*E(3)+3456*E(3)^2
      -3456*E(3)-6912*E(3)^23456*E(3)+6912*E(3)^2, -6912*E(3)-3456*E(3)^2
      3456*E(3)-3456*E(3)^2, -3456*E(3)+3456*E(3)^20 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), -594*E(3)-297*E(3)^2
      594*E(3)+297*E(3)^2297*E(3)-297*E(3)^2, -297*E(3)+297*E(3)^2
      -297*E(3)-594*E(3)^2297*E(3)+594*E(3)^2, -1408, -1408*E(3), 1408
      1408*E(3), -1408*E(3)^21408*E(3)^203456*E(3)+6912*E(3)^2
      -6912*E(3)-3456*E(3)^26912*E(3)+3456*E(3)^2, -3456*E(3)-6912*E(3)^2
      -3456*E(3)+3456*E(3)^23456*E(3)-3456*E(3)^20 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^2, -63*E(3)-126*E(3)^2
      63*E(3)+126*E(3)^2, -63*E(3)+63*E(3)^263*E(3)-63*E(3)^2
      -126*E(3)-63*E(3)^2126*E(3)+63*E(3)^2, -160, -160*E(3)^2160
      160*E(3)^2, -160*E(3), 160*E(3), 0, -576*E(3)-288*E(3)^2
      288*E(3)+576*E(3)^2, -288*E(3)-576*E(3)^2576*E(3)+288*E(3)^2
      -288*E(3)+288*E(3)^2288*E(3)-288*E(3)^20 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), -126*E(3)-63*E(3)^2
      126*E(3)+63*E(3)^263*E(3)-63*E(3)^2, -63*E(3)+63*E(3)^2
      -63*E(3)-126*E(3)^263*E(3)+126*E(3)^2, -160, -160*E(3), 160
      160*E(3), -160*E(3)^2160*E(3)^20, -288*E(3)-576*E(3)^2
      576*E(3)+288*E(3)^2, -576*E(3)-288*E(3)^2288*E(3)+576*E(3)^2
      288*E(3)-288*E(3)^2, -288*E(3)+288*E(3)^20 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^233*E(3)+66*E(3)^2
      -33*E(3)-66*E(3)^233*E(3)-33*E(3)^2, -33*E(3)+33*E(3)^2
      66*E(3)+33*E(3)^2, -66*E(3)-33*E(3)^2, -88, -88*E(3)^28888*E(3)^2
      -88*E(3), 88*E(3), 0, -48*E(3)-24*E(3)^224*E(3)+48*E(3)^2
      -24*E(3)-48*E(3)^248*E(3)+24*E(3)^2, -24*E(3)+24*E(3)^2
      24*E(3)-24*E(3)^20 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), 66*E(3)+33*E(3)^2
      -66*E(3)-33*E(3)^2, -33*E(3)+33*E(3)^233*E(3)-33*E(3)^2
      33*E(3)+66*E(3)^2, -33*E(3)-66*E(3)^2, -88, -88*E(3), 8888*E(3), 
      -88*E(3)^288*E(3)^20, -24*E(3)-48*E(3)^248*E(3)+24*E(3)^2
      -48*E(3)-24*E(3)^224*E(3)+48*E(3)^224*E(3)-24*E(3)^2
      -24*E(3)+24*E(3)^20 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^2, -3*E(3)-6*E(3)^23*E(3)+6*E(3)^2
      -3*E(3)+3*E(3)^23*E(3)-3*E(3)^2, -6*E(3)-3*E(3)^26*E(3)+3*E(3)^2
      2020*E(3)^2, -20, -20*E(3)^220*E(3), -20*E(3), 024*E(3)+12*E(3)^2,
      -12*E(3)-24*E(3)^212*E(3)+24*E(3)^2, -24*E(3)-12*E(3)^2
      12*E(3)-12*E(3)^2, -12*E(3)+12*E(3)^20 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), -6*E(3)-3*E(3)^26*E(3)+3*E(3)^2
      3*E(3)-3*E(3)^2, -3*E(3)+3*E(3)^2, -3*E(3)-6*E(3)^23*E(3)+6*E(3)^2
      2020*E(3), -20, -20*E(3), 20*E(3)^2, -20*E(3)^2012*E(3)+24*E(3)^2,
      -24*E(3)-12*E(3)^224*E(3)+12*E(3)^2, -12*E(3)-24*E(3)^2
      -12*E(3)+12*E(3)^212*E(3)-12*E(3)^20 ] ] ] ];

MULTFREEINFO.("3.ON"):=["$3.ON$",
##
[ [ 127811373851525354 ],
"$L_3(7):2 \\rightarrow (ON,1)$",
[[1,1,1,5586,5586,5586,19152,58653,58653,58653,156408],
[1,1,1,196,196,196,-318,-252,-252,-252,483],
[1,1,1,-21,-21,-21,333,-252,-252,-252,483],
[1,1,1,42,42,42,144,189,189,189,-840],
[1,1,1,-56,-56,-56,-192,63,63,63,168],
[1,E(3),E(3)^2,798,798*E(3),798*E(3)^2,0,2793,2793*E(3),2793*E(3)^2,0],
[1,E(3)^2,E(3),798,798*E(3)^2,798*E(3),0,2793,2793*E(3)^2,2793*E(3),0],
[1,E(3),E(3)^2,54,54*E(3),54*E(3)^2,0,-183,-183*E(3),-183*E(3)^2,0],
[1,E(3)^2,E(3),54,54*E(3)^2,54*E(3),0,-183,-183*E(3)^2,-183*E(3),0],
[1,E(3),E(3)^2,-56,-56*E(3),-56*E(3)^2,0,147,147*E(3),147*E(3)^2,0],
[1,E(3)^2,E(3),-56,-56*E(3)^2,-56*E(3),0,147,147*E(3)^2,147*E(3),0]] ],
##
[ [ 127911353651525354 ],
"$L_3(7):2 \\rightarrow (ON,3)$",
[[1,1,1,5586,5586,5586,19152,58653,58653,58653,156408],
[1,1,1,196,196,196,-318,-252,-252,-252,483],
[1,1,1,-21,-21,-21,333,-252,-252,-252,483],
[1,1,1,42,42,42,144,189,189,189,-840],
[1,1,1,-56,-56,-56,-192,63,63,63,168],
[1,E(3),E(3)^2,798,798*E(3),798*E(3)^2,0,2793,2793*E(3),2793*E(3)^2,0],
[1,E(3)^2,E(3),798,798*E(3)^2,798*E(3),0,2793,2793*E(3)^2,2793*E(3),0],
[1,E(3),E(3)^2,54,54*E(3),54*E(3)^2,0,-183,-183*E(3),-183*E(3)^2,0],
[1,E(3)^2,E(3),54,54*E(3)^2,54*E(3),0,-183,-183*E(3)^2,-183*E(3),0],
[1,E(3),E(3)^2,-56,-56*E(3),-56*E(3)^2,0,147,147*E(3),147*E(3)^2,0],
[1,E(3)^2,E(3),-56,-56*E(3)^2,-56*E(3),0,147,147*E(3)^2,147*E(3),0]] ],
##
[ [ 12781011183738515253545960 ],
"$L_3(7) \\rightarrow (ON,2)$",
[ [ 11111111172111721117238304117306117306117306
      156408156408 ], 
  [ 111111392392392, -636, -504, -504, -504483483 ], 
  [ 111111, -42, -42, -42666, -504, -504, -504483483 ], 
  [ 111111848484288378378378, -840, -840 ], 
  [ 1, -11, -11, -10000000, -10291029 ], 
  [ 111111, -112, -112, -112, -384126126126168168 ], 
  [ 1, -11, -11, -10000000456, -456 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 15961596*E(3), 1596*E(3)^205586
      5586*E(3), 5586*E(3)^200 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^215961596*E(3)^21596*E(3), 05586
      5586*E(3)^25586*E(3), 00 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 108108*E(3), 108*E(3)^20, -366
      -366*E(3), -366*E(3)^200 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2108108*E(3)^2108*E(3), 0, -366
      -366*E(3)^2, -366*E(3), 00 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), -112, -112*E(3), -112*E(3)^20294
      294*E(3), 294*E(3)^200 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2, -112, -112*E(3)^2, -112*E(3), 0294
      294*E(3)^2294*E(3), 00 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), 000000000 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^2000000000 ] ] ], 
##
[ [ 12791011183536515253545960 ],
"$L_3(7) \\rightarrow (ON,4)$",
[ [ 11111111172111721117238304117306117306117306
      156408156408 ], 
  [ 111111392392392, -636, -504, -504, -504483483 ], 
  [ 111111, -42, -42, -42666, -504, -504, -504483483 ], 
  [ 111111848484288378378378, -840, -840 ], 
  [ 1, -11, -11, -10000000, -10291029 ], 
  [ 111111, -112, -112, -112, -384126126126168168 ], 
  [ 1, -11, -11, -10000000456, -456 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 15961596*E(3), 1596*E(3)^205586
      5586*E(3), 5586*E(3)^200 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^215961596*E(3)^21596*E(3), 05586
      5586*E(3)^25586*E(3), 00 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 108108*E(3), 108*E(3)^20, -366
      -366*E(3), -366*E(3)^200 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2108108*E(3)^2108*E(3), 0, -366
      -366*E(3)^2, -366*E(3), 00 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), -112, -112*E(3), -112*E(3)^20294
      294*E(3), 294*E(3)^200 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2, -112, -112*E(3)^2, -112*E(3), 0294
      294*E(3)^2294*E(3), 00 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), 000000000 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^2000000000 ] ] ] ];

MULTFREEINFO.("2.Fi22"):=["$2.Fi_{22}$",
##
[ [ 1396673 ],
"$O_7(3) \\rightarrow (Fi_{22},2)$",
 [[1,1,3159,3159,21840],
  [1,1,279,279,-560],
  [1,1,-9,-9,16],
  [1,-1,351,-351,0],
  [1,-1,-9,9,0]] ],
##
[ [ 1396674 ],
"$O_7(3) \\rightarrow (Fi_{22},3)$",
 [[1,1,3159,3159,21840],
  [1,1,279,279,-560],
  [1,1,-9,-9,16],
  [1,-1,351,-351,0],
  [1,-1,-9,9,0]] ],
##
[ [ 179137376 ],
"$O_8^+(2):S_3 \\rightarrow (Fi_{22},4)$",
 [[1,1,3150,22400,22400,75600],
  [1,1,342,-64,-64,-216],
  [1,1,-18,224,224,-432],
  [1,1,-18,-64,-64,144],
  [1,-1,0,-280,280,0],
  [1,-1,0,80,-80,0]] ],
##
[ [ 179137477 ],
"$O_8^+(2):S_3 \\rightarrow (Fi_{22},4)$",
 [[1,1,3150,22400,22400,75600],
  [1,1,342,-64,-64,-216],
  [1,1,-18,224,224,-432],
  [1,1,-18,-64,-64,144],
  [1,-1,0,-280,280,0],
  [1,-1,0,80,-80,0]] ],
##
[ [ 14789131573747677 ],
"$O_8^+(2):3 \\rightarrow (Fi_{22},5)$",
 [[1,1,1,1,3150,3150,22400,22400,22400,22400,151200],
  [1,1,-1,-1,-450,450,-800,800,-800,800,0],
  [1,1,1,1,342,342,-64,-64,-64,-64,-432],
  [1,1,-1,-1,126,-126,-224,224,-224,224,0],
  [1,1,1,1,-18,-18,224,224,224,224,-864],
  [1,1,1,1,-18,-18,-64,-64,-64,-64,288],
  [1,1,-1,-1,-18,18,64,-64,64,-64,0],
  [1,-1,-1,1,0,0,-280,-280,280,280,0],
  [1,-1,1,-1,0,0,280,-280,-280,280,0],
  [1,-1,-1,1,0,0,80,80,-80,-80,0],
  [1,-1,1,-1,0,0,-80,80,80,-80,0]] ],
##
[ [ 137913141766737680 ],
"$O_8^+(2):2 \\rightarrow (Fi_{22},6)$",
 [[1,1,2,2,3150,6300,22400,22400,44800,44800,226800],
  [1,1,-1,-1,630,-630,2240,2240,-2240,-2240,0],
  [1,1,2,2,342,684,-64,-64,-128,-128,-648],
  [1,1,2,2,-18,-36,224,224,448,448,-1296],
  [1,1,2,2,-18,-36,-64,-64,-128,-128,432],
  [1,1,-1,-1,-90,90,80,80,-80,-80,0],
  [1,1,-1,-1,54,-54,-64,-64,64,64,0],
  [1,-1,1,-1,0,0,-2800,2800,2800,-2800,0],
  [1,-1,-2,2,0,0,-280,280,-560,560,0],
  [1,-1,-2,2,0,0,80,-80,160,-160,0],
  [1,-1,1,-1,0,0,8,-8,-8,8,0]] ],
##
[ [ 137913141766747780 ],
"$O_8^+(2):2 \\rightarrow (Fi_{22},6)$",
 [[1,1,2,2,3150,6300,22400,22400,44800,44800,226800],
  [1,1,-1,-1,630,-630,2240,2240,-2240,-2240,0],
  [1,1,2,2,342,684,-64,-64,-128,-128,-648],
  [1,1,2,2,-18,-36,224,224,448,448,-1296],
  [1,1,2,2,-18,-36,-64,-64,-128,-128,432],
  [1,1,-1,-1,-90,90,80,80,-80,-80,0],
  [1,1,-1,-1,54,-54,-64,-64,64,64,0],
  [1,-1,1,-1,0,0,-2800,2800,2800,-2800,0],
  [1,-1,-2,2,0,0,-280,280,-560,560,0],
  [1,-1,-2,2,0,0,80,-80,160,-160,0],
  [1,-1,1,-1,0,0,8,-8,-8,8,0]] ] ];

MULTFREEINFO.("3.Fi22"):=["$3.Fi_{22}$",
##
[ [ 17913666774758081 ],
"$O_8^+(2):S_3 \\rightarrow (Fi_{22},4)$",
[[1,1,1,1575,1575,1575,37800,37800,37800,67200],
[1,1,1,171,171,171,-108,-108,-108,-192],
[1,1,1,-9,-9,-9,-216,-216,-216,672],
[1,1,1,-9,-9,-9,72,72,72,-192],
[1,E(3),E(3)^2,375,375*E(3),375*E(3)^2,1800,1800*E(3),1800*E(3)^2,0],
[1,E(3)^2,E(3),375,375*E(3)^2,375*E(3),1800,1800*E(3)^2,1800*E(3),0],
[1,E(3),E(3)^2,39,39*E(3),39*E(3)^2,-216,-216*E(3),-216*E(3)^2,0],
[1,E(3)^2,E(3),39,39*E(3)^2,39*E(3),-216,-216*E(3)^2,-216*E(3),0],
[1,E(3),E(3)^2,-21,-21*E(3),-21*E(3)^2,84,84*E(3),84*E(3)^2,0],
[1,E(3)^2,E(3),-21,-21*E(3)^2,-21*E(3),84,84*E(3)^2,84*E(3),0]] ],
##
[ [ 14789131578798889 ],
"$O_8^+(2):3 \\rightarrow (Fi_{22},5)$",
[ [ 111315751575157547256720067200226800 ], 
  [ 111, -3, -225, -225, -225675, -240024000 ], 
  [ 1113171171171513, -192, -192, -648 ], 
  [ 111, -3636363, -189, -6726720 ], 
  [ 1113, -9, -9, -9, -27672672, -1296 ], 
  [ 1113, -9, -9, -9, -27, -192, -192432 ], 
  [ 111, -3, -9, -9, -927192, -1920 ], 
  [ 1, E(3), E(3)^207575*E(3), 75*E(3)^20000 ], 
  [ 1, E(3)^2, E(3), 07575*E(3)^275*E(3), 0000 ], 
  [ 1, E(3), E(3)^20, -21, -21*E(3), -21*E(3)^20000 ], 
  [ 1, E(3)^2, E(3), 0, -21, -21*E(3)^2, -21*E(3), 0000 ] ] ],
##
[ [ 14789131566676869747580818485 ],
"$O_8^+(2):3 \\rightarrow (Fi_{22},5)$",
[ [ 1111111575157515751575157515756720067200
      756007560075600 ], 
  [ 1, -11, -11, -1225225225, -225, -225, -2252400, -240000
      0 ], 
  [ 111111171171171171171171, -192, -192, -216, -216
      -216 ],
  [ 1, -11, -11, -1, -63, -63, -63636363672, -672000 ], 
  [ 111111, -9, -9, -9, -9, -9, -9672672, -432, -432, -432 ], 
  [ 111111, -9, -9, -9, -9, -9, -9, -192, -192144144144 ], 
  [ 1, -11, -11, -1999, -9, -9, -9, -192192000 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 375375*E(3), 375*E(3)^2375
      375*E(3), 375*E(3)^20036003600*E(3), 3600*E(3)^2 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2375375*E(3)^2375*E(3), 375
      375*E(3)^2375*E(3), 0036003600*E(3)^23600*E(3) ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), 105105*E(3), 105*E(3)^2, -105
      -105*E(3), -105*E(3)^200000 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^2105105*E(3)^2105*E(3), -105
      -105*E(3)^2, -105*E(3), 00000 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 3939*E(3), 39*E(3)^23939*E(3), 
      39*E(3)^200, -432, -432*E(3), -432*E(3)^2 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^23939*E(3)^239*E(3), 3939*E(3)^2
      39*E(3), 00, -432, -432*E(3)^2, -432*E(3) ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), -21, -21*E(3), -21*E(3)^2, -21
      -21*E(3), -21*E(3)^200168168*E(3), 168*E(3)^2 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2, -21, -21*E(3)^2, -21*E(3), -21
      -21*E(3)^2, -21*E(3), 00168168*E(3)^2168*E(3) ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), -15, -15*E(3), -15*E(3)^215
      15*E(3), 15*E(3)^200000 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^2, -15, -15*E(3)^2, -15*E(3), 15
      15*E(3)^215*E(3), 00000 ] ] ],
##
[ [ 137913141766677475787980818889 ],
"$O_8^+(2):2 \\rightarrow (Fi_{22},6)$",
[ [ 11122215751575157531503150315067200113400
      113400113400134400 ], 
  [ 111, -1, -1, -1315315315, -315, -315, -3156720000
      -6720 ], 
  [ 111222171171171342342342, -192, -324, -324, -324
      -384 ], [ 111222, -9, -9, -9, -18, -18, -18672, -648, -648
      -6481344 ], 
  [ 111222, -9, -9, -9, -18, -18, -18, -192216216216, -384 ], 
  [ 111, -1, -1, -1, -45, -45, -45454545240000, -240 ], 
  [ 111, -1, -1, -1272727, -27, -27, -27, -192000192 ], 
  [ 1, E(3), E(3)^222*E(3), 2*E(3)^2375375*E(3), 375*E(3)^2750
      750*E(3), 750*E(3)^2054005400*E(3), 5400*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 22*E(3)^22*E(3), 375375*E(3)^2375*E(3), 750
      750*E(3)^2750*E(3), 054005400*E(3)^25400*E(3), 0 ], 
  [ 1, E(3), E(3)^222*E(3), 2*E(3)^23939*E(3), 39*E(3)^278
      78*E(3), 78*E(3)^20, -648, -648*E(3), -648*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 22*E(3)^22*E(3), 3939*E(3)^239*E(3), 78
      78*E(3)^278*E(3), 0, -648, -648*E(3)^2, -648*E(3), 0 ], 
  [ 1, E(3), E(3)^2, -1, -E(3), -E(3)^27575*E(3), 75*E(3)^2, -75
      -75*E(3), -75*E(3)^200000 ], 
  [ 1, E(3)^2, E(3), -1, -E(3)^2, -E(3), 7575*E(3)^275*E(3), -75
      -75*E(3)^2, -75*E(3), 00000 ], 
  [ 1, E(3), E(3)^222*E(3), 2*E(3)^2, -21, -21*E(3), -21*E(3)^2, -42
      -42*E(3), -42*E(3)^20252252*E(3), 252*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 22*E(3)^22*E(3), -21, -21*E(3)^2, -21*E(3), -42
      -42*E(3)^2, -42*E(3), 0252252*E(3)^2252*E(3), 0 ], 
  [ 1, E(3), E(3)^2, -1, -E(3), -E(3)^2, -21, -21*E(3), -21*E(3)^221
      21*E(3), 21*E(3)^200000 ], 
  [ 1, E(3)^2, E(3), -1, -E(3)^2, -E(3), -21, -21*E(3)^2, -21*E(3), 21
      21*E(3)^221*E(3), 00000 ] ] ],
##
[[1,3,5,7,9,10,13,17,25,28,66,67,74,75,78,79,80,81,88,89,90,91,104,105],
"$2^6:S_6(2) \\rightarrow (Fi_{22},8)$",
[ [ 11113513513512601260126023042304230486408640
      864030240453604536045360241920241920241920430080
      725760 ], 
  [ 111, -15, -15, -15210210210624624624, -960, -960, -960
      5040126012601260, -1680, -1680, -168026880, -30240 ], 
  [ 111, -27, -27, -27126126126, -288, -288, -288216216216
      3024, -2268, -2268, -2268604860486048, -5376, -9072 ], 
  [ 111575757246246246120120120840840840288
      136813681368120120120, -4224, -4320 ], 
  [ 111333, -60, -60, -60192192192192192192936
      -576, -576, -576, -960, -960, -960, -7683456 ], 
  [ 111212121303030, -96, -96, -96, -168, -168, -168720
      180180180, -672, -672, -672, -7682160 ], 
  [ 111272727363636000000, -432, -432, -432
      -43200015360 ], 
  [ 111, -15, -15, -15666666484848, -96, -96, -96, -144
      -36, -36, -36484848, -768864 ], 
  [ 111, -9, -9, -9000, -36, -36, -367272720000
      -252, -252, -2526720 ], 
  [ 111333, -24, -24, -24121212, -24, -24, -24, -367272
      72228228228, -336, -432 ], 
  [ 1, E(3), E(3)^27575*E(3), 75*E(3)^2420420*E(3), 420*E(3)^2384
      384*E(3), 384*E(3)^219201920*E(3), 1920*E(3)^205040
      5040*E(3), 5040*E(3)^21344013440*E(3), 13440*E(3)^200 ], 
  [ 1, E(3)^2, E(3), 7575*E(3)^275*E(3), 420420*E(3)^2420*E(3), 384
      384*E(3)^2384*E(3), 19201920*E(3)^21920*E(3), 05040
      5040*E(3)^25040*E(3), 1344013440*E(3)^213440*E(3), 00 ], 
  [ 1, E(3), E(3)^23939*E(3), 39*E(3)^2108108*E(3), 108*E(3)^20
      00192192*E(3), 192*E(3)^20, -144, -144*E(3), -144*E(3)^2
      -1536, -1536*E(3), -1536*E(3)^200 ], 
  [ 1, E(3)^2, E(3), 3939*E(3)^239*E(3), 108108*E(3)^2108*E(3), 0
      00192192*E(3)^2192*E(3), 0, -144, -144*E(3)^2, -144*E(3), 
      -1536, -1536*E(3)^2, -1536*E(3), 00 ], 
  [ 1, E(3), E(3)^2, -15, -15*E(3), -15*E(3)^29090*E(3), 90*E(3)^2144
      144*E(3), 144*E(3)^2, -240, -240*E(3), -240*E(3)^20180180*E(3), 
      180*E(3)^2, -240, -240*E(3), -240*E(3)^200 ], 
  [ 1, E(3)^2, E(3), -15, -15*E(3)^2, -15*E(3), 9090*E(3)^290*E(3), 144
      144*E(3)^2144*E(3), -240, -240*E(3)^2, -240*E(3), 0180
      180*E(3)^2180*E(3), -240, -240*E(3)^2, -240*E(3), 00 ], 
  [ 1, E(3), E(3)^299*E(3), 9*E(3)^2, -42, -42*E(3), -42*E(3)^2120
      120*E(3), 120*E(3)^27272*E(3), 72*E(3)^20, -504, -504*E(3), 
      -504*E(3)^2504504*E(3), 504*E(3)^200 ], 
  [ 1, E(3)^2, E(3), 99*E(3)^29*E(3), -42, -42*E(3)^2, -42*E(3), 120
      120*E(3)^2120*E(3), 7272*E(3)^272*E(3), 0, -504, -504*E(3)^2
      -504*E(3), 504504*E(3)^2504*E(3), 00 ], 
  [ 1, E(3), E(3)^2, -15, -15*E(3), -15*E(3)^24242*E(3), 42*E(3)^2, -48
      -48*E(3), -48*E(3)^24848*E(3), 48*E(3)^20, -252, -252*E(3), 
      -252*E(3)^2336336*E(3), 336*E(3)^200 ], 
  [ 1, E(3)^2, E(3), -15, -15*E(3)^2, -15*E(3), 4242*E(3)^242*E(3), -48
      -48*E(3)^2, -48*E(3), 4848*E(3)^248*E(3), 0, -252, -252*E(3)^2
      -252*E(3), 336336*E(3)^2336*E(3), 00 ], 
  [ 1, E(3), E(3)^21515*E(3), 15*E(3)^2000, -36, -36*E(3), 
      -36*E(3)^2, -120, -120*E(3), -120*E(3)^20000420420*E(3), 
      420*E(3)^200 ], 
  [ 1, E(3)^2, E(3), 1515*E(3)^215*E(3), 000, -36, -36*E(3)^2
      -36*E(3), -120, -120*E(3)^2, -120*E(3), 0000420420*E(3)^2
      420*E(3), 00 ], 
  [ 1, E(3), E(3)^2, -3, -3*E(3), -3*E(3)^2, -18, -18*E(3), -18*E(3)^20
      002424*E(3), 24*E(3)^20108108*E(3), 108*E(3)^2, -192
      -192*E(3), -192*E(3)^200 ], 
  [ 1, E(3)^2, E(3), -3, -3*E(3)^2, -3*E(3), -18, -18*E(3)^2, -18*E(3), 0
      002424*E(3)^224*E(3), 0108108*E(3)^2108*E(3), -192
      -192*E(3)^2, -192*E(3), 00 ] ] ],
##
[ [1,4,5,9,10,26,31,32,39,45,53,
   74,75,78,79,82,83,104,105,106,107,140,141,142,143],
 "$^2F_4(2)^\\prime \\rightarrow (Fi_{22},9)$",
[ [ 11117551755175511700117001170044928140400140400
      140400187200187200187200249600249600449280449280
      4492801123200224640022464002246400 ], 
  [ 111, -405, -405, -405900900900, -1728, -10800, -10800, -10800
      144001440014400, -9600, -9600172801728017280, -4320000
      0 ], [ 111, -189, -189, -189198019801980, -172843204320
      4320, -7200, -7200, -72001632016320138241382413824, -43200
      -8640, -8640, -8640 ], 
  [ 111171171171612612612, -25921008100810083456
      3456345624962496, -576, -576, -57611232, -9216, -9216, -9216 ],
  [ 1119999995405405401728, -1440, -1440, -1440, -1440
      -1440, -1440, -960, -9602304230423048640, -2880, -2880, -2880 ]
    , [ 111757575, -60, -60, -60576624624624384384
      384, -384, -384384384384, -1728, -768, -768, -768 ], 
  [ 111272727363636, -432000, -288, -288, -288768
      -1824000, -432864864864 ], 
  [ 111272727363636, -432000, -288, -288, -288, -1824
      768000, -432864864864 ], 
  [ 111, -21, -21, -21132132132288, -48, -48, -48192192
      192192192, -960, -960, -960, -864768768768 ], 
  [ 111272727, -108, -108, -1080, -432, -432, -432000
      7687680000000 ], 
  [ 111, -45, -45, -45, -36, -36, -360144144144000, -96
      -96288288288864, -576, -576, -576 ], 
  [ 1, E(3), E(3)^2219219*E(3), 219*E(3)^2180180*E(3), 180*E(3)^2
      0, -1680, -1680*E(3), -1680*E(3)^228802880*E(3), 2880*E(3)^20
      061446144*E(3), 6144*E(3)^2038403840*E(3), 3840*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 219219*E(3)^2219*E(3), 180180*E(3)^2180*E(3), 
      0, -1680, -1680*E(3)^2, -1680*E(3), 28802880*E(3)^22880*E(3), 0
      061446144*E(3)^26144*E(3), 038403840*E(3)^23840*E(3) ], 
  [ 1, E(3), E(3)^27575*E(3), 75*E(3)^2900900*E(3), 900*E(3)^20
      12001200*E(3), 1200*E(3)^200000, -1920, -1920*E(3), 
      -1920*E(3)^2096009600*E(3), 9600*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 7575*E(3)^275*E(3), 900900*E(3)^2900*E(3), 0
      12001200*E(3)^21200*E(3), 00000, -1920, -1920*E(3)^2
      -1920*E(3), 096009600*E(3)^29600*E(3) ], 
  [ 1, E(3), E(3)^2, -117, -117*E(3), -117*E(3)^2, -156, -156*E(3), 
      -156*E(3)^2018721872*E(3), 1872*E(3)^224962496*E(3), 
      2496*E(3)^2000000000 ], 
  [ 1, E(3)^2, E(3), -117, -117*E(3)^2, -117*E(3), -156, -156*E(3)^2
      -156*E(3), 018721872*E(3)^21872*E(3), 24962496*E(3)^2
      2496*E(3), 000000000 ], 
  [ 1, E(3), E(3)^25151*E(3), 51*E(3)^21212*E(3), 12*E(3)^20672
      672*E(3), 672*E(3)^2, -480, -480*E(3), -480*E(3)^200768
      768*E(3), 768*E(3)^20, -1536, -1536*E(3), -1536*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 5151*E(3)^251*E(3), 1212*E(3)^212*E(3), 0672
      672*E(3)^2672*E(3), -480, -480*E(3)^2, -480*E(3), 00768
      768*E(3)^2768*E(3), 0, -1536, -1536*E(3)^2, -1536*E(3) ], 
  [ 1, E(3), E(3)^2, -69, -69*E(3), -69*E(3)^2180180*E(3), 180*E(3)^2
      0, -240, -240*E(3), -240*E(3)^200000384384*E(3), 
      384*E(3)^20, -1920, -1920*E(3), -1920*E(3)^2 ], 
  [ 1, E(3)^2, E(3), -69, -69*E(3)^2, -69*E(3), 180180*E(3)^2180*E(3), 
      0, -240, -240*E(3)^2, -240*E(3), 00000384384*E(3)^2
      384*E(3), 0, -1920, -1920*E(3)^2, -1920*E(3) ], 
  [ 1, E(3), E(3)^2, -21, -21*E(3), -21*E(3)^2, -60, -60*E(3), -60*E(3)^2
      0, -48, -48*E(3), -48*E(3)^2, -192, -192*E(3), -192*E(3)^200192
      192*E(3), 192*E(3)^2013441344*E(3), 1344*E(3)^2 ], 
  [ 1, E(3)^2, E(3), -21, -21*E(3)^2, -21*E(3), -60, -60*E(3)^2, -60*E(3), 
      0, -48, -48*E(3)^2, -48*E(3), -192, -192*E(3)^2, -192*E(3), 00192
      192*E(3)^2192*E(3), 013441344*E(3)^21344*E(3) ], 
  [ 1, E(3), E(3)^22727*E(3), 27*E(3)^2, -12, -12*E(3), -12*E(3)^20
      -144, -144*E(3), -144*E(3)^2192192*E(3), 192*E(3)^200, -576
      -576*E(3), -576*E(3)^20, -576, -576*E(3), -576*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 2727*E(3)^227*E(3), -12, -12*E(3)^2, -12*E(3), 0
      -144, -144*E(3)^2, -144*E(3), 192192*E(3)^2192*E(3), 00, -576
      -576*E(3)^2, -576*E(3), 0, -576, -576*E(3)^2, -576*E(3) ] ] ] ];

MULTFREEINFO.("6.Fi22"):=["$6.Fi_{22}$",
##
[ [ 179137376115116123124129130219220 ],
"$O_8^+(2):S_3 \\rightarrow (2.Fi_{22},3), (3.Fi_{22},1)$",
[ [ 1111113150315031506720067200756007560075600 ], 
  [ 111111342342342, -192, -192, -216, -216, -216 ], 
  [ 111111, -18, -18, -18672672, -432, -432, -432 ], 
  [ 111111, -18, -18, -18, -192, -192144144144 ], 
  [ 1, -11, -11, -1000840, -840000 ], 
  [ 1, -11, -11, -1000, -240240000 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2750750*E(3)^2750*E(3), 003600
      3600*E(3)^23600*E(3) ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 750750*E(3), 750*E(3)^2003600
      3600*E(3), 3600*E(3)^2 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^27878*E(3)^278*E(3), 00, -432
      -432*E(3)^2, -432*E(3) ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 7878*E(3), 78*E(3)^200, -432
      -432*E(3), -432*E(3)^2 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2, -42, -42*E(3)^2, -42*E(3), 00168
      168*E(3)^2168*E(3) ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), -42, -42*E(3), -42*E(3)^200168
      168*E(3), 168*E(3)^2 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^200000000 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), 00000000 ] ] ],
##
[ [ 179137477115116123124129130221222 ],
"$O_8^+(2):S_3 \\rightarrow (2.Fi_{22},4), (3.Fi_{22},1)$",
[ [ 1111113150315031506720067200756007560075600 ], 
  [ 111111342342342, -192, -192, -216, -216, -216 ], 
  [ 111111, -18, -18, -18672672, -432, -432, -432 ], 
  [ 111111, -18, -18, -18, -192, -192144144144 ], 
  [ 1, -11, -11, -1000840, -840000 ], 
  [ 1, -11, -11, -1000, -240240000 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2750750*E(3)^2750*E(3), 003600
      3600*E(3)^23600*E(3) ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 750750*E(3), 750*E(3)^2003600
      3600*E(3), 3600*E(3)^2 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^27878*E(3)^278*E(3), 00, -432
      -432*E(3)^2, -432*E(3) ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 7878*E(3), 78*E(3)^200, -432
      -432*E(3), -432*E(3)^2 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2, -42, -42*E(3)^2, -42*E(3), 00168
      168*E(3)^2168*E(3) ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), -42, -42*E(3), -42*E(3)^200168
      168*E(3), 168*E(3)^2 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^200000000 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), 00000000 ] ] ],
##
[ [ 1,4,7,8,9,13,1573,74,76,77127,128,137,138231,232],
"$O_8^+(2):3 \\rightarrow (2.Fi_{22},5), (3.Fi_{22},2)$", 
[ [ 111111333150315031509450672006720067200
      67200453600 ], 
  [ 111111, -3, -3, -450, -450, -450135024002400, -2400
      -24000 ], 
  [ 111111333423423421026, -192, -192, -192, -192
      -1296 ], 
  [ 111111, -3, -3126126126, -378672672, -672, -6720 ], 
  [ 11111133, -18, -18, -18, -54672672672672, -2592 ], 
  [ 11111133, -18, -18, -18, -54, -192, -192, -192, -192864 ],
  [ 111111, -3, -3, -18, -18, -1854, -192, -1921921920 ], 
  [ 1, -11, -11, -1, -330000, -840840, -8408400 ], 
  [ 1, -11, -11, -13, -30000, -840840840, -8400 ], 
  [ 1, -11, -11, -1, -330000240, -240240, -2400 ], 
  [ 1, -11, -11, -13, -30000240, -240, -2402400 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^200150150*E(3), 150*E(3)^200
      0000 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 00150150*E(3)^2150*E(3), 00
      0000 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^200, -42, -42*E(3), -42*E(3)^200
      0000 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 00, -42, -42*E(3)^2, -42*E(3), 00
      0000 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^200000000000 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), 00000000000 ]]],
##
[ [1,4,7,8,9,13,1573,74,76,77,
   115,116,117,118,123,124,129,130,133,134219,220,221,222],
"$O_8^+(2):3 \\rightarrow (2.Fi_{22},5), (3.Fi_{22},3)$",
[ [ 111111111111315031503150315031503150
      67200672006720067200151200151200151200 ], 
  [ 111111, -1, -1, -1, -1, -1, -1, -450450, -450450, -450
      450, -240024002400, -2400000 ], 
  [ 111111111111342342342342342342, -192
      -192, -192, -192, -432, -432, -432 ], 
  [ 111111, -1, -1, -1, -1, -1, -1126, -126126, -126126
      -126, -672672672, -672000 ], 
  [ 111111111111, -18, -18, -18, -18, -18, -18672
      672672672, -864, -864, -864 ], 
  [ 111111111111, -18, -18, -18, -18, -18, -18, -192
      -192, -192, -192288288288 ], 
  [ 111111, -1, -1, -1, -1, -1, -1, -1818, -1818, -1818192
      -192, -192192000 ], 
  [ 1, -11, -11, -11, -11, -11, -1000000840840
      -840, -840000 ], 
  [ 1, -11, -11, -1, -11, -11, -11000000, -840840
      -840840000 ], 
  [ 1, -11, -11, -11, -11, -11, -1000000, -240, -240
      240240000 ], 
  [ 1, -11, -11, -1, -11, -11, -11000000240, -240
      240, -240000 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^21, E(3), E(3)^21, E(3), E(3)^2750
      750*E(3), 750*E(3)^2750750*E(3), 750*E(3)^200007200
      7200*E(3), 7200*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 1, E(3)^2, E(3), 1, E(3)^2, E(3), 750
      750*E(3)^2750*E(3), 750750*E(3)^2750*E(3), 00007200
      7200*E(3)^27200*E(3) ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2, -1, -E(3), -E(3)^2, -1, -E(3), -E(3)^2
      -210210*E(3), -210*E(3)^2210, -210*E(3), 210*E(3)^200000
      00 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), -1, -E(3)^2, -E(3), -1, -E(3)^2, -E(3), 
      -210210*E(3)^2, -210*E(3), 210, -210*E(3)^2210*E(3), 00000
      00 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^21, E(3), E(3)^21, E(3), E(3)^278
      78*E(3), 78*E(3)^27878*E(3), 78*E(3)^20000, -864
      -864*E(3), -864*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 1, E(3)^2, E(3), 1, E(3)^2, E(3), 78
      78*E(3)^278*E(3), 7878*E(3)^278*E(3), 0000, -864
      -864*E(3)^2, -864*E(3) ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^21, E(3), E(3)^21, E(3), E(3)^2, -42
      -42*E(3), -42*E(3)^2, -42, -42*E(3), -42*E(3)^20000336
      336*E(3), 336*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 1, E(3)^2, E(3), 1, E(3)^2, E(3), -42
      -42*E(3)^2, -42*E(3), -42, -42*E(3)^2, -42*E(3), 0000336
      336*E(3)^2336*E(3) ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2, -1, -E(3), -E(3)^2, -1, -E(3), -E(3)^2
   30, -30*E(3), 30*E(3)^2, -3030*E(3), -30*E(3)^20000000 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), -1, -E(3)^2, -E(3), -1, -E(3)^2
      -E(3), 30, -30*E(3)^230*E(3), -3030*E(3)^2, -30*E(3), 0000
      000 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^21, -E(3), E(3)^2, -1, E(3), -E(3)^2
      0000000000000 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), 
      0000000000000 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^2, -1, E(3), -E(3)^21, -E(3), E(3)^2
      0000000000000 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), -1, E(3)^2, -E(3), 1, -E(3)^2, E(3), 
      0000000000000 ] ] ],
##
[ [1,3,7,9,13,14,1766,73,76,80,
   115,116,123,124,127,128,129,130,137,138219,220,231,232],
"$O_8^+(2):2 \\rightarrow (2.Fi_{22},6), (3.Fi_{22},4)$",
[ [ 111111222222315031503150630063006300
      6720067200134400134400226800226800226800 ], 
  [ 111111, -1, -1, -1, -1, -1, -1630630630, -630, -630
      -63067206720, -6720, -6720000 ], 
  [ 111111222222342342342684684684, -192
      -192, -384, -384, -648, -648, -648 ], 
  [ 111111222222, -18, -18, -18, -36, -36, -36672
      67213441344, -1296, -1296, -1296 ], 
  [ 111111222222, -18, -18, -18, -36, -36, -36, -192
      -192, -384, -384432432432 ], 
  [ 111111, -1, -1, -1, -1, -1, -1, -90, -90, -90909090240
      240, -240, -240000 ], 
  [ 111111, -1, -1, -1, -1, -1, -1545454, -54, -54, -54
      -192, -192192192000 ], 
  [ 1, -11, -11, -1, -11, -11, -110000008400, -8400
      -84008400000 ], 
  [ 1, -11, -11, -12, -22, -22, -2000000840, -840
      1680, -1680000 ], 
  [ 1, -11, -11, -12, -22, -22, -2000000, -240240
      -480480000 ], 
  [ 1, -11, -11, -1, -11, -11, -11000000, -242424
      -24000 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^222*E(3), 2*E(3)^222*E(3), 
      2*E(3)^2750750*E(3), 750*E(3)^215001500*E(3)^21500*E(3), 0
      0001080010800*E(3), 10800*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 22*E(3)^22*E(3), 22*E(3)^2
      2*E(3), 750750*E(3)^2750*E(3), 15001500*E(3), 1500*E(3)^200
      001080010800*E(3)^210800*E(3) ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^222*E(3), 2*E(3)^222*E(3), 
      2*E(3)^27878*E(3), 78*E(3)^2156156*E(3)^2156*E(3), 000
      0, -1296, -1296*E(3), -1296*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 22*E(3)^22*E(3), 22*E(3)^2
      2*E(3), 7878*E(3)^278*E(3), 156156*E(3), 156*E(3)^20000
      -1296, -1296*E(3)^2, -1296*E(3) ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2, -1, -E(3), -E(3)^2, -1, -E(3), -E(3)^2
      150150*E(3), 150*E(3)^2, -150, -150*E(3)^2, -150*E(3), 00000
      00 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), -1, -E(3)^2, -E(3), -1, -E(3)^2, -E(3), 
      150150*E(3)^2150*E(3), -150, -150*E(3), -150*E(3)^200000
      00 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^222*E(3), 2*E(3)^222*E(3), 
      2*E(3)^2, -42, -42*E(3), -42*E(3)^2, -84, -84*E(3)^2, -84*E(3), 00
      00504504*E(3), 504*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 22*E(3)^22*E(3), 22*E(3)^2
      2*E(3), -42, -42*E(3)^2, -42*E(3), -84, -84*E(3), -84*E(3)^2000
      0504504*E(3)^2504*E(3) ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2, -1, -E(3), -E(3)^2, -1, -E(3), -E(3)^2
      -42, -42*E(3), -42*E(3)^24242*E(3)^242*E(3), 0000000 ]
    , [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), -1, -E(3)^2, -E(3), -1, -E(3)^2
      -E(3), -42, -42*E(3)^2, -42*E(3), 4242*E(3), 42*E(3)^20000
      000 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^22, -2*E(3), 2*E(3)^2, -22*E(3), 
      -2*E(3)^20000000000000 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), 2, -2*E(3)^22*E(3), -22*E(3)^2
      -2*E(3), 0000000000000 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^2, -1, E(3), -E(3)^21, -E(3), E(3)^2
      0000000000000 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), -1, E(3)^2, -E(3), 1, -E(3)^2, E(3), 
      0000000000000 ] ] ],
##
[ [1,3,7,9,13,14,1766,74,77,80
   115,116,123,124,127,128,129,130,137,138221,222,231,232],
"$O_8^+(2):2 \\rightarrow (2.Fi_{22},7), (3.Fi_{22},4)$",
[ [ 111111222222315031503150630063006300
      6720067200134400134400226800226800226800 ], 
  [ 111111, -1, -1, -1, -1, -1, -1630630630, -630, -630
      -63067206720, -6720, -6720000 ], 
  [ 111111222222342342342684684684, -192
      -192, -384, -384, -648, -648, -648 ], 
  [ 111111222222, -18, -18, -18, -36, -36, -36672
      67213441344, -1296, -1296, -1296 ], 
  [ 111111222222, -18, -18, -18, -36, -36, -36, -192
      -192, -384, -384432432432 ], 
  [ 111111, -1, -1, -1, -1, -1, -1, -90, -90, -90909090240
      240, -240, -240000 ], 
  [ 111111, -1, -1, -1, -1, -1, -1545454, -54, -54, -54
      -192, -192192192000 ], 
  [ 1, -11, -11, -1, -11, -11, -110000008400, -8400
      -84008400000 ], 
  [ 1, -11, -11, -12, -22, -22, -2000000840, -840
      1680, -1680000 ], 
  [ 1, -11, -11, -12, -22, -22, -2000000, -240240
      -480480000 ], 
  [ 1, -11, -11, -1, -11, -11, -11000000, -242424
      -24000 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^222*E(3), 2*E(3)^222*E(3), 
      2*E(3)^2750750*E(3), 750*E(3)^215001500*E(3)^21500*E(3), 0
      0001080010800*E(3), 10800*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 22*E(3)^22*E(3), 22*E(3)^2
      2*E(3), 750750*E(3)^2750*E(3), 15001500*E(3), 1500*E(3)^200
      001080010800*E(3)^210800*E(3) ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^222*E(3), 2*E(3)^222*E(3), 
      2*E(3)^27878*E(3), 78*E(3)^2156156*E(3)^2156*E(3), 000
      0, -1296, -1296*E(3), -1296*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 22*E(3)^22*E(3), 22*E(3)^2
      2*E(3), 7878*E(3)^278*E(3), 156156*E(3), 156*E(3)^20000
      -1296, -1296*E(3)^2, -1296*E(3) ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2, -1, -E(3), -E(3)^2, -1, -E(3), -E(3)^2
      150150*E(3), 150*E(3)^2, -150, -150*E(3)^2, -150*E(3), 00000
      00 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), -1, -E(3)^2, -E(3), -1, -E(3)^2, -E(3), 
      150150*E(3)^2150*E(3), -150, -150*E(3), -150*E(3)^200000
      00 ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^222*E(3), 2*E(3)^222*E(3), 
      2*E(3)^2, -42, -42*E(3), -42*E(3)^2, -84, -84*E(3)^2, -84*E(3), 00
      00504504*E(3), 504*E(3)^2 ], 
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), 22*E(3)^22*E(3), 22*E(3)^2
      2*E(3), -42, -42*E(3)^2, -42*E(3), -84, -84*E(3), -84*E(3)^2000
      0504504*E(3)^2504*E(3) ], 
  [ 1, E(3), E(3)^21, E(3), E(3)^2, -1, -E(3), -E(3)^2, -1, -E(3), -E(3)^2
    -42, -42*E(3), -42*E(3)^24242*E(3)^242*E(3), 0000000 ],
  [ 1, E(3)^2, E(3), 1, E(3)^2, E(3), -1, -E(3)^2, -E(3), -1, -E(3)^2
      -E(3), -42, -42*E(3)^2, -42*E(3), 4242*E(3), 42*E(3)^20000
      000 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^22, -2*E(3), 2*E(3)^2, -22*E(3), 
      -2*E(3)^20000000000000 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), 2, -2*E(3)^22*E(3), -22*E(3)^2
      -2*E(3), 0000000000000 ], 
  [ 1, -E(3), E(3)^2, -1, E(3), -E(3)^2, -1, E(3), -E(3)^21, -E(3), E(3)^2
      0000000000000 ], 
  [ 1, -E(3)^2, E(3), -1, E(3)^2, -E(3), -1, E(3)^2, -E(3), 1, -E(3)^2, E(3), 
      0000000000000 ] ] ] ];

MULTFREEINFO.("2.Co1"):=["$2.Co_1$",
##
[ [ 13610102104107 ],
"$Co_2 \\rightarrow (Co_1,1)$",
 [[1,1,4600,4600,47104,47104,93150],
  [1,1,1000,1000,1024,1024,-4050],
  [1,1,76,76,-320,-320,486],
  [1,1,-20,-20,64,64,-90],
  [1,-1,-2300,2300,-11776,11776,0],
  [1,-1,-350,350,704,-704,0],
  [1,-1,10,-10,-16,16,0]] ],
##
[ [ 13610142632102104107114118 ],
"$Co_3 \\rightarrow (Co_1,5)$",
 [[1,1,11178,11178,75900,257600,257600,1536975,1536975,
   3934656,3934656,5216400],
  [1,1,4698,4698,-3300,56000,56000,111375,111375,-57024,-57024,-226800],
  [1,1,1506,1506,396,4256,4256,-14289,-14289,-5280,-5280,27216],
  [1,1,258,258,3660,-1120,-1120,1455,1455,96,96,-5040],
  [1,1,306,306,-660,-1120,-1120,495,495,3168,3168,-5040],
  [1,1,-54,-54,60,320,320,-945,-945,1728,1728,-2160],
  [1,1,-6,-6,-36,-64,-64,399,399,-960,-960,1296],
  [1,-1,-7452,7452,0,-128800,128800,-512325,512325,-655776,655776,0],
  [1,-1,-2772,2772,0,-19600,19600,2475,-2475,64944,-64944,0],
  [1,-1,-732,732,0,560,-560,5115,-5115,-8976,8976,0],
  [1,-1,-84,84,0,560,-560,-1365,1365,1392,-1392,0],
  [1,-1,36,-36,0,-160,160,315,-315,-288,288,0]] ] ];

MULTFREEINFO.("3.F3+"):=["$3.F_{3+}$",
##
[ [ 134109110113114 ], "$Fi_{23} \\rightarrow (F_{3+},1)$",
[ [ 111316713167131671825792 ],
  [ 111351351351, -1056 ],
  [ 111, -81, -81, -81240 ], 
  [ 1, E(3), E(3)^235193519*E(3), 3519*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 35193519*E(3)^23519*E(3), 0 ], 
  [ 1, E(3), E(3)^2, -9, -9*E(3), -9*E(3)^20 ], 
  [ 1, E(3)^2, E(3), -9, -9*E(3)^2, -9*E(3), 0 ] ] ],
##
[ [ 1,2,3,4,5,8,11,13,16,20,24,26,27,29,38,41,45,
  109,110,111,112,113,114,117,118,119,120,123,124,125,
  126,129,130,137,138,153,154,177,178,183,184,187,188],
"$O_{10}^-(2) \\rightarrow (F_{3+},2)$",
[ [ 111104448104448104448157080015708001570800107233280
      1072332801072332806785856067858560678585601277337612773376
      1277337610857369601085736960108573696054286848005428684800
      54286848007238246400723824640072382464001737179136
      17371791360173717913601737179136051471974405147197440
      514719744058164480037902090240263208960263208960263208960
      45957120459571204595712075735 ], 
  [ 111, -13056, -13056, -13056157080157080157080, -1340416
      -1340416, -1340416, -3392928, -3392928, -3392928798336798336
      798336271434242714342427143424, -67858560, -67858560, -67858560
      -90478080, -90478080, -90478080, -54286848108573696108573696
      10857369680424960804249608042496014541120, -118444032
      -3290112, -3290112, -3290112201062420106242010624, -15147 ], 
  [ 11116752167521675214574014574014574041027844102784
      410278419550161955016195501614515214515214515216284240
      1628424016284240301190403011904030119040, -7197120, -7197120
      -71971207112448798336079833607983360, -10730496, -10730496
      -107304964918320, -134120448, -1983744, -1983744, -1983744, -145920
      -145920, -1459205265 ], 
  [ 111566456645664273002730027300546560546560546560
      -302400, -302400, -302400, -266112, -266112, -266112, -393120, -393120
      -393120544320054432005443200, -22377600, -22377600, -22377600
      6483456, -6289920, -6289920, -6289920, -5376000, -5376000, -5376000
      693360063866880241920024192002419200798720798720798720
      9585 ], 
  [ 11185448544854456100561005610011686401168640
      1168640178200178200178200, -57024, -57024, -570241568160
      15681601568160142560014256001425600190080019008001900800
      -9808128, -15966720, -15966720, -15966720591360059136005913600
      -534600021150720146880014688001468800337920337920337920
      -4455 ], 
  [ 111, -2256, -2256, -2256264002640026400, -256960, -256960
      -256960285122851228512, -14256, -14256, -1425610121761012176
      1012176, -498960, -498960, -498960, -665280, -665280, -6652806956928
      -6044544, -6044544, -6044544348057634805763480576, -2138400
      6220800, -1237248, -1237248, -12372484899844899844899846237 ], 
  [ 111177617761776100201002010020, -75520, -75520, -75520
      129816129816129816552965529655296203042030420304
      -544320, -544320, -544320665280665280665280485568, -867456
      -867456, -867456561408561408561408537840, -1762560262656
      2626562626562630426304263042457 ], 
  [ 111, -2688, -2688, -2688193801938019380, -65152, -65152
      -65152, -132840, -132840, -132840168481684816848456192456192
      456192, -149040, -149040, -14904050112050112050112067392
      -508032, -508032, -508032, -652800, -652800, -652800194401368576
      691206912069120, -37056, -37056, -37056, -567 ], 
  [ 111307230723072143401434014340111104111104111104
      261362613626136, -1728, -1728, -1728, -120960, -120960, -120960
      -855360, -855360, -855360172801728017280200448552960552960
      552960, -316416, -316416, -316416, -64801907712, -100224, -100224
      -100224, -30720, -30720, -30720, -135 ], 
  [ 111, -708, -708, -708273027302730, -6832, -6832, -683215120
      1512015120, -16632, -16632, -16632, -9828, -9828, -9828, -68040
      -68040, -68040279720279720279720, -202608, -39312, -39312
      -39312, -84000, -84000, -84000173340, -199584, -30240, -30240
      -30240349443494434944, -1917 ], 
  [ 111912912912159615961596, -2944, -2944, -2944, -21816
      -21816, -21816, -6912, -6912, -6912, -34128, -34128, -34128124416
      1244161244166393663936639363456, -152064, -152064, -152064
      16742416742416742471280, -456192, -6912, -6912, -6912, -6528
      -6528, -6528513 ], 
  [ 111, -816, -816, -8163000300030002240224022404752
      47524752, -5616, -5616, -5616, -54864, -54864, -548641944019440
      19440, -60480, -60480, -604804492821081621081621081636096
      3609636096, -64800, -518400241922419224192384384384837 ]
    , [ 111588588588111011101110, -10720, -10720, -10720
      -4320, -4320, -4320475247524752, -25380, -25380, -2538077760
      7776077760, -50760, -50760, -50760, -8208151200151200151200
      -58080, -58080, -58080, -59940, -24624086408640864010320
      1032010320, -945 ], 
  [ 111484848, -780, -780, -780742474247424, -7560, -7560
      -7560345634563456, -5616, -5616, -5616, -15552, -15552, -15552
      639366393663936, -53568449284492844928, -74496, -74496
      -744969072, -20736, -6912, -6912, -69121248012480124801161 ], 
  [ 111, -276, -276, -276303030742474247424, -1728, -1728
      -1728345634563456, -20196, -20196, -20196194401944019440
      -11880, -11880, -118804752, -48384, -48384, -483843696036960
      369601782049248, -6912, -6912, -6912, -1776, -1776, -1776, -297 ], 
  [ 111484848192192192, -8128, -8128, -812860486048
      6048, -432, -432, -432993699369936194401944019440, -29376
      -29376, -29376, -38016, -17280, -17280, -17280, -12288, -12288, -12288
      -2592165888, -6912, -6912, -6912, -3072, -3072, -3072189 ], 
  [ 111484848, -780, -780, -780224022402240, -1080, -1080
      -1080, -1728, -1728, -1728151201512015120, -38880, -38880
      -3888017280172801728037152864086408640, -1920, -1920
      -1920, -6480, -51840864086408640, -480, -480, -480, -135 ], 
  [ 1, E(3), E(3)^23590435904*E(3), 35904*E(3)^2392700392700*E(3), 
      392700*E(3)^21675520016755200*E(3), 16755200*E(3)^28482320
      8482320*E(3), 8482320*E(3)^2, -798336, -798336*E(3), -798336*E(3)^2
      101787840101787840*E(3), 101787840*E(3)^2339292800339292800*E(3), 
      339292800*E(3)^2, -226195200, -226195200*E(3), -226195200*E(3)^20
      542868480542868480*E(3), 542868480*E(3)^2, -160849920
      -160849920*E(3), -160849920*E(3)^200, -8225280, -8225280*E(3), 
      -8225280*E(3)^228723202872320*E(3), 2872320*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 3590435904*E(3)^235904*E(3), 392700392700*E(3)^2
      392700*E(3), 1675520016755200*E(3)^216755200*E(3), 8482320
      8482320*E(3)^28482320*E(3), -798336, -798336*E(3)^2, -798336*E(3), 
      101787840101787840*E(3)^2101787840*E(3), 339292800
      339292800*E(3)^2339292800*E(3), -226195200, -226195200*E(3)^2
      -226195200*E(3), 0542868480542868480*E(3)^2542868480*E(3), 
      -160849920, -160849920*E(3)^2, -160849920*E(3), 00, -8225280
      -8225280*E(3)^2, -8225280*E(3), 28723202872320*E(3)^22872320*E(3), 
      0 ], 
  [ 1, E(3), E(3)^2, -8160, -8160*E(3), -8160*E(3)^28976089760*E(3), 
      89760*E(3)^2, -694144, -694144*E(3), -694144*E(3)^2, -1332936
      -1332936*E(3), -1332936*E(3)^2, -413424, -413424*E(3), -413424*E(3)^2
      1017878410178784*E(3), 10178784*E(3)^2, -20599920, -20599920*E(3), 
      -20599920*E(3)^23554496035544960*E(3), 35544960*E(3)^20
      1938816019388160*E(3), 19388160*E(3)^2, -36765696, -36765696*E(3), 
      -36765696*E(3)^20044651524465152*E(3), 4465152*E(3)^2933504
      933504*E(3), 933504*E(3)^20 ], 
  [ 1, E(3)^2, E(3), -8160, -8160*E(3)^2, -8160*E(3), 8976089760*E(3)^2
      89760*E(3), -694144, -694144*E(3)^2, -694144*E(3), -1332936
      -1332936*E(3)^2, -1332936*E(3), -413424, -413424*E(3)^2, -413424*E(3), 
      1017878410178784*E(3)^210178784*E(3), -20599920, -20599920*E(3)^2
      -20599920*E(3), 3554496035544960*E(3)^235544960*E(3), 019388160
      19388160*E(3)^219388160*E(3), -36765696, -36765696*E(3)^2
      -36765696*E(3), 0044651524465152*E(3)^24465152*E(3), 933504
      933504*E(3)^2933504*E(3), 0 ], 
  [ 1, E(3), E(3)^21120811208*E(3), 11208*E(3)^28400084000*E(3), 
      84000*E(3)^219376001937600*E(3), 1937600*E(3)^2703080
      703080*E(3), 703080*E(3)^29072090720*E(3), 90720*E(3)^25103000
      5103000*E(3), 5103000*E(3)^258968005896800*E(3), 5896800*E(3)^2
      1829520018295200*E(3), 18295200*E(3)^20, -8346240, -8346240*E(3), 
      -8346240*E(3)^21300992013009920*E(3), 13009920*E(3)^200
      665280665280*E(3), 665280*E(3)^24992049920*E(3), 49920*E(3)^20 ]
    , 
  [ 1, E(3)^2, E(3), 1120811208*E(3)^211208*E(3), 8400084000*E(3)^2
      84000*E(3), 19376001937600*E(3)^21937600*E(3), 703080
      703080*E(3)^2703080*E(3), 9072090720*E(3)^290720*E(3), 5103000
      5103000*E(3)^25103000*E(3), 58968005896800*E(3)^25896800*E(3), 
      1829520018295200*E(3)^218295200*E(3), 0, -8346240, -8346240*E(3)^2
      -8346240*E(3), 1300992013009920*E(3)^213009920*E(3), 00665280
      665280*E(3)^2665280*E(3), 4992049920*E(3)^249920*E(3), 0 ], 
  [ 1, E(3), E(3)^2, -3984, -3984*E(3), -3984*E(3)^23234032340*E(3), 
      32340*E(3)^2, -142912, -142912*E(3), -142912*E(3)^2, -299376
      -299376*E(3), -299376*E(3)^200014968801496880*E(3), 
      1496880*E(3)^2, -1995840, -1995840*E(3), -1995840*E(3)^2, -1663200
      -1663200*E(3), -1663200*E(3)^2011975041197504*E(3), 
      1197504*E(3)^221880322188032*E(3), 2188032*E(3)^200, -495936
      -495936*E(3), -495936*E(3)^21478414784*E(3), 14784*E(3)^20 ], 
  [ 1, E(3)^2, E(3), -3984, -3984*E(3)^2, -3984*E(3), 3234032340*E(3)^2
      32340*E(3), -142912, -142912*E(3)^2, -142912*E(3), -299376
      -299376*E(3)^2, -299376*E(3), 00014968801496880*E(3)^2
      1496880*E(3), -1995840, -1995840*E(3)^2, -1995840*E(3), -1663200
      -1663200*E(3)^2, -1663200*E(3), 011975041197504*E(3)^2
      1197504*E(3), 21880322188032*E(3)^22188032*E(3), 00, -495936
      -495936*E(3)^2, -495936*E(3), 1478414784*E(3)^214784*E(3), 0 ], 
  [ 1, E(3), E(3)^244404440*E(3), 4440*E(3)^22424024240*E(3), 
      24240*E(3)^2261440261440*E(3), 261440*E(3)^29136891368*E(3), 
      91368*E(3)^2, -23328, -23328*E(3), -23328*E(3)^26804068040*E(3), 
      68040*E(3)^2, -1412640, -1412640*E(3), -1412640*E(3)^2, -1740960
      -1740960*E(3), -1740960*E(3)^20, -2021760, -2021760*E(3), 
      -2021760*E(3)^2, -1026048, -1026048*E(3), -1026048*E(3)^2001728
      1728*E(3), 1728*E(3)^2, -42240, -42240*E(3), -42240*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 44404440*E(3)^24440*E(3), 2424024240*E(3)^2
      24240*E(3), 261440261440*E(3)^2261440*E(3), 9136891368*E(3)^2
      91368*E(3), -23328, -23328*E(3)^2, -23328*E(3), 6804068040*E(3)^2
      68040*E(3), -1412640, -1412640*E(3)^2, -1412640*E(3), -1740960
      -1740960*E(3)^2, -1740960*E(3), 0, -2021760, -2021760*E(3)^2
      -2021760*E(3), -1026048, -1026048*E(3)^2, -1026048*E(3), 001728
      1728*E(3)^21728*E(3), -42240, -42240*E(3)^2, -42240*E(3), 0 ], 
  [ 1, E(3), E(3)^2, -1104, -1104*E(3), -1104*E(3)^278607860*E(3), 
      7860*E(3)^2, -53056, -53056*E(3), -53056*E(3)^23240032400*E(3), 
      32400*E(3)^26739267392*E(3), 67392*E(3)^28164881648*E(3), 
      81648*E(3)^2, -51840, -51840*E(3), -51840*E(3)^2, -833760
      -833760*E(3), -833760*E(3)^20, -461376, -461376*E(3), -461376*E(3)^2
      215808215808*E(3), 215808*E(3)^200292032292032*E(3), 
      292032*E(3)^2106944106944*E(3), 106944*E(3)^20 ], 
  [ 1, E(3)^2, E(3), -1104, -1104*E(3)^2, -1104*E(3), 78607860*E(3)^2
      7860*E(3), -53056, -53056*E(3)^2, -53056*E(3), 3240032400*E(3)^2
      32400*E(3), 6739267392*E(3)^267392*E(3), 8164881648*E(3)^2
      81648*E(3), -51840, -51840*E(3)^2, -51840*E(3), -833760
      -833760*E(3)^2, -833760*E(3), 0, -461376, -461376*E(3)^2, -461376*E(3), 
      215808215808*E(3)^2215808*E(3), 00292032292032*E(3)^2
      292032*E(3), 106944106944*E(3)^2106944*E(3), 0 ], 
  [ 1, E(3), E(3)^217041704*E(3), 1704*E(3)^248004800*E(3), 
      4800*E(3)^23680036800*E(3), 36800*E(3)^2, -57240, -57240*E(3), 
      -57240*E(3)^21468814688*E(3), 14688*E(3)^2, -171720, -171720*E(3), 
      -171720*E(3)^2194400194400*E(3), 194400*E(3)^2237600
      237600*E(3), 237600*E(3)^201728017280*E(3), 17280*E(3)^2
      -168960, -168960*E(3), -168960*E(3)^200, -95040, -95040*E(3), 
      -95040*E(3)^24992049920*E(3), 49920*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 17041704*E(3)^21704*E(3), 48004800*E(3)^2
      4800*E(3), 3680036800*E(3)^236800*E(3), -57240, -57240*E(3)^2
      -57240*E(3), 1468814688*E(3)^214688*E(3), -171720, -171720*E(3)^2
      -171720*E(3), 194400194400*E(3)^2194400*E(3), 237600
      237600*E(3)^2237600*E(3), 01728017280*E(3)^217280*E(3), 
      -168960, -168960*E(3)^2, -168960*E(3), 00, -95040, -95040*E(3)^2
      -95040*E(3), 4992049920*E(3)^249920*E(3), 0 ], 
  [ 1, E(3), E(3)^2336336*E(3), 336*E(3)^242604260*E(3), 4260*E(3)^2
      -70336, -70336*E(3), -70336*E(3)^25832058320*E(3), 58320*E(3)^2
      -23328, -23328*E(3), -23328*E(3)^24276842768*E(3), 42768*E(3)^2
      142560142560*E(3), 142560*E(3)^27344073440*E(3), 73440*E(3)^20
      -513216, -513216*E(3), -513216*E(3)^2, -37632, -37632*E(3), 
      -37632*E(3)^200, -70848, -70848*E(3), -70848*E(3)^249344
      49344*E(3), 49344*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 336336*E(3)^2336*E(3), 42604260*E(3)^24260*E(3), 
      -70336, -70336*E(3)^2, -70336*E(3), 5832058320*E(3)^258320*E(3), 
      -23328, -23328*E(3)^2, -23328*E(3), 4276842768*E(3)^242768*E(3), 
      142560142560*E(3)^2142560*E(3), 7344073440*E(3)^273440*E(3), 0
      -513216, -513216*E(3)^2, -513216*E(3), -37632, -37632*E(3)^2
      -37632*E(3), 00, -70848, -70848*E(3)^2, -70848*E(3), 49344
      49344*E(3)^249344*E(3), 0 ], 
  [ 1, E(3), E(3)^2, -1104, -1104*E(3), -1104*E(3)^253405340*E(3), 
      5340*E(3)^2, -4672, -4672*E(3), -4672*E(3)^2, -9936, -9936*E(3), 
      -9936*E(3)^2, -2160, -2160*E(3), -2160*E(3)^2, -45360, -45360*E(3), 
      -45360*E(3)^2174960174960*E(3), 174960*E(3)^24320043200*E(3), 
      43200*E(3)^20, -158976, -158976*E(3), -158976*E(3)^2, -58368
      -58368*E(3), -58368*E(3)^2001382413824*E(3), 13824*E(3)^2
      -14016, -14016*E(3), -14016*E(3)^20 ], 
  [ 1, E(3)^2, E(3), -1104, -1104*E(3)^2, -1104*E(3), 53405340*E(3)^2
      5340*E(3), -4672, -4672*E(3)^2, -4672*E(3), -9936, -9936*E(3)^2
      -9936*E(3), -2160, -2160*E(3)^2, -2160*E(3), -45360, -45360*E(3)^2
      -45360*E(3), 174960174960*E(3)^2174960*E(3), 4320043200*E(3)^2
      43200*E(3), 0, -158976, -158976*E(3)^2, -158976*E(3), -58368
      -58368*E(3)^2, -58368*E(3), 001382413824*E(3)^213824*E(3), 
      -14016, -14016*E(3)^2, -14016*E(3), 0 ], 
  [ 1, E(3), E(3)^2912912*E(3), 912*E(3)^225682568*E(3), 2568*E(3)^2
      -16768, -16768*E(3), -16768*E(3)^266966696*E(3), 6696*E(3)^2864
      864*E(3), 864*E(3)^2, -27216, -27216*E(3), -27216*E(3)^2, -33696
      -33696*E(3), -33696*E(3)^24320043200*E(3), 43200*E(3)^20324864
      324864*E(3), 324864*E(3)^27065670656*E(3), 70656*E(3)^200
      1382413824*E(3), 13824*E(3)^2, -9984, -9984*E(3), -9984*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 912912*E(3)^2912*E(3), 25682568*E(3)^22568*E(3), 
      -16768, -16768*E(3)^2, -16768*E(3), 66966696*E(3)^26696*E(3), 864
      864*E(3)^2864*E(3), -27216, -27216*E(3)^2, -27216*E(3), -33696
      -33696*E(3)^2, -33696*E(3), 4320043200*E(3)^243200*E(3), 0324864
      324864*E(3)^2324864*E(3), 7065670656*E(3)^270656*E(3), 00
      1382413824*E(3)^213824*E(3), -9984, -9984*E(3)^2, -9984*E(3), 0 ], 
  [ 1, E(3), E(3)^2192192*E(3), 192*E(3)^2, -492, -492*E(3), -492*E(3)^2
      512512*E(3), 512*E(3)^2, -7344, -7344*E(3), -7344*E(3)^2, -3456
      -3456*E(3), -3456*E(3)^251845184*E(3), 5184*E(3)^231104
      31104*E(3), 31104*E(3)^2, -34560, -34560*E(3), -34560*E(3)^20
      -55296, -55296*E(3), -55296*E(3)^22457624576*E(3), 24576*E(3)^20
      01382413824*E(3), 13824*E(3)^215361536*E(3), 1536*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 192192*E(3)^2192*E(3), -492, -492*E(3)^2, -492*E(3), 
      512512*E(3)^2512*E(3), -7344, -7344*E(3)^2, -7344*E(3), -3456
      -3456*E(3)^2, -3456*E(3), 51845184*E(3)^25184*E(3), 31104
      31104*E(3)^231104*E(3), -34560, -34560*E(3)^2, -34560*E(3), 0
      -55296, -55296*E(3)^2, -55296*E(3), 2457624576*E(3)^224576*E(3), 0
      01382413824*E(3)^213824*E(3), 15361536*E(3)^21536*E(3), 0 ], 
  [ 1, E(3), E(3)^2, -240, -240*E(3), -240*E(3)^2, -60, -60*E(3), -60*E(3)^2
      56965696*E(3), 5696*E(3)^230243024*E(3), 3024*E(3)^2, -864
      -864*E(3), -864*E(3)^2, -14256, -14256*E(3), -14256*E(3)^2, -38880
      -38880*E(3), -38880*E(3)^243204320*E(3), 4320*E(3)^2095040
      95040*E(3), 95040*E(3)^21766417664*E(3), 17664*E(3)^200, -1728
      -1728*E(3), -1728*E(3)^232643264*E(3), 3264*E(3)^20 ], 
  [ 1, E(3)^2, E(3), -240, -240*E(3)^2, -240*E(3), -60, -60*E(3)^2, -60*E(3), 
      56965696*E(3)^25696*E(3), 30243024*E(3)^23024*E(3), -864
      -864*E(3)^2, -864*E(3), -14256, -14256*E(3)^2, -14256*E(3), -38880
      -38880*E(3)^2, -38880*E(3), 43204320*E(3)^24320*E(3), 095040
      95040*E(3)^295040*E(3), 1766417664*E(3)^217664*E(3), 00, -1728
      -1728*E(3)^2, -1728*E(3), 32643264*E(3)^23264*E(3), 0 ], 
  [ 1, E(3), E(3)^23030*E(3), 30*E(3)^2, -330, -330*E(3), -330*E(3)^2
      -2404, -2404*E(3), -2404*E(3)^214041404*E(3), 1404*E(3)^22376
      2376*E(3), 2376*E(3)^21247412474*E(3), 12474*E(3)^24860
      4860*E(3), 4860*E(3)^291809180*E(3), 9180*E(3)^20, -52380
      -52380*E(3), -52380*E(3)^2, -26616, -26616*E(3), -26616*E(3)^200
      -6588, -6588*E(3), -6588*E(3)^2, -2676, -2676*E(3), -2676*E(3)^20 ], 
  [ 1, E(3)^2, E(3), 3030*E(3)^230*E(3), -330, -330*E(3)^2, -330*E(3), 
      -2404, -2404*E(3)^2, -2404*E(3), 14041404*E(3)^21404*E(3), 2376
      2376*E(3)^22376*E(3), 1247412474*E(3)^212474*E(3), 4860
      4860*E(3)^24860*E(3), 91809180*E(3)^29180*E(3), 0, -52380
      -52380*E(3)^2, -52380*E(3), -26616, -26616*E(3)^2, -26616*E(3), 00
      -6588, -6588*E(3)^2, -6588*E(3), -2676, -2676*E(3)^2, -2676*E(3),0]]]];

MULTFREEINFO.("2.B"):=["$2.B$",
##
[ [ 1,2,3,5,7,8,9,12,13,15,17,23,27,30,32,40,41,54,63,68,77,81,83,
  185,186,187,188,189,194,195,196,203,208,220],
"$Fi_{23} \\rightarrow (B,4)$",
 fail ] ];

MULTFREEINFO.("2.M12.2"):=["$2.M_{12}.2$",
##
[[1,2,3,26,27],"$M_{11} \\rightarrow (M_{12}.2,1)$",
[ [ 11121222 ], 
  [ 11, -12, -1222 ],
  [ 1100, -2 ], 
  [ 1, -1, ER(12), -ER(12), 0 ],
  [ 1, -1, -ER(12), ER(12), 0 ] ] ],
##
[[1,3,9,12,26,27,33],"$L_2(11).2 \\rightarrow (M_{12}.2,2)$",
[ [ 1122225555132 ], 
  [ 111010, -5, -5, -12 ], 
  [ 11, -2, -277, -12 ], 
  [ 11, -2, -2, -5, -512 ], 
  [ 1, -110+2*ER(3), -10-2*ER(3), 5-10*ER(3), -5+10*ER(3), 0 ],
  [ 1, -110-2*ER(3), -10+2*ER(3), 5+10*ER(3), -5-10*ER(3), 0 ],
  [ 1, -1, -22, -110 ] ] ],
##
[[1,3,9,12,26,27,32],"$L_2(11).2 \\rightarrow (M_{12}.2,2)$",
[ [ 1122225555132 ], 
  [ 111010, -5, -5, -12 ],
  [ 11, -2, -277, -12 ], 
  [ 11, -2, -2, -5, -512 ], 
  [ 1, -110-2*ER(3), -10+2*ER(3), 5+10*ER(3), -5-10*ER(3), 0 ],
  [ 1, -110+2*ER(3), -10-2*ER(3), 5-10*ER(3), -5+10*ER(3), 0 ],
  [ 1, -1, -22, -110 ] ] ] ];

MULTFREEINFO.("Isoclinic(2.M12.2)"):=["$(2.M_{12}.2)^*$",
##
[[1,2,3,26,27],"$M_{11} \\rightarrow (M_{12}.2,1)$",
[ [ 11121222 ],
  [ 11, -12, -1222 ],
  [ 1100, -2 ] ,
  [ 1, -1, EI(12), -EI(12), 0 ],
  [ 1, -1, -EI(12), EI(12), 0 ] ] ] ];

MULTFREEINFO.("2.M22.2"):=["$2.M_{22}.2$",
##
[[1,3,9,13,18,30,33],"$2^4:S_5 \\rightarrow (M_{22}.2,6)$",
[ [ 1110120120192480 ], 
  [ 11101010, -7240 ], 
  [ 1110, -6, -624, -24 ],
  [ 11, -212120, -24 ], 
  [ 11, -2, -8, -8016 ], 
  [ 1, -1010, -1000 ], 
  [ 1, -10, -121200 ] ] ],
##
[[1,3,9,13,18,30,32],"$2^4:S_5 \\rightarrow (M_{22}.2,6)$",
[ [ 1110120120192480 ], 
  [ 11101010, -7240 ], 
  [ 1110, -6, -624, -24 ],
  [ 11, -212120, -24 ], 
  [ 11, -2, -8, -8016 ], 
  [ 1, -1010, -1000 ], 
  [ 1, -10, -121200 ] ] ],
##
[[1,2,3,4,13,14,26,27,28,29],"$A_7 \\rightarrow (M_{22}.2,7)$",
[ [ 1115153535105105140252 ],
  [ 11, -15, -15, -35, -35105105140, -252 ],
  [ 11, -7, -713131717, -36, -12 ], 
  [ 1177, -13, -131717, -3612 ], 
  [ 113333, -3, -34, -12 ], 
  [ 11, -3, -3, -3, -3, -3, -3412 ],
  [ 1, -13*ER(5), -3*ER(5), ER(5), -ER(5), -151500 ],
  [ 1, -1, -3*ER(5), 3*ER(5), -ER(5), ER(5), -151500 ],
  [ 1, -11, -1, -777, -700 ],
  [ 1, -1, -117, -77, -700 ] ] ],
##
[[1,3,9,11,13,29,33],"$2^3:L_3(2) \\times 2 \\rightarrow (M_{22}.2,11)$",
[ [ 111484112112336 ], 
  [ 11, -8182424, -60 ],
  [ 11818, -8, -8, -12 ], 
  [ 11, -64, -8, -816 ], 
  [ 112, -12440 ], 
  [ 1, -10014, -140 ], 
  [ 1, -100, -880 ] ] ],
##
[[1,3,9,11,13,28,32],"$2^3:L_3(2) \\times 2 \\rightarrow (M_{22}.2,11)$",
[ [ 111484112112336 ],
  [ 11, -8182424, -60 ], 
  [ 11818, -8, -8, -12 ], 
  [ 11, -64, -8, -816 ], 
  [ 112, -12440 ], 
  [ 1, -10014, -140 ], 
  [ 1, -100, -880 ] ] ],
##
[[1,2,3,4,9,10,11,12,13,14,28,29,32,33],
"$2^3:L_3(2) \\rightarrow (M_{22}.2,12)$",
[ [ 111114148484112112112112336336 ], 
  [ 11, -1, -1, -141484, -84112112, -112, -112, -336336 ], 
  [ 1111, -8, -8181824242424, -60, -60 ], 
  [ 11, -1, -18, -818, -182424, -24, -2460, -60 ], 
  [ 1111881818, -8, -8, -8, -8, -12, -12 ], 
  [ 11, -1, -1, -8818, -18, -8, -88812, -12 ], 
  [ 1111, -6, -644, -8, -8, -8, -81616 ], 
  [ 11, -1, -16, -64, -4, -8, -888, -1616 ], 
  [ 111122, -12, -12444400 ], 
  [ 11, -1, -1, -22, -121244, -4, -400 ], 
  [ 1, -11, -1000014, -14, -141400 ], 
  [ 1, -1, -11000014, -1414, -1400 ], 
  [ 1, -11, -10000, -888, -800 ], 
  [ 1, -1, -110000, -88, -8800 ] ] ],
##
[[1,4,9,13,16,18,26,27,29,36],"$L_2(11).2 \\rightarrow (M_{22}.2,16)$",
[ [ 1155555555132165165660 ], 
  [ 111515, -25, -25, -124545, -60 ], 
  [ 1113131313, -36, -3, -3, -12 ], 
  [ 11, -5, -5771299, -36 ], 
  [ 11, -7, -7, -3, -3, -121128 ], 
  [ 1155, -3, -312, -11, -114 ],
  [ 1, -110+3*ER(5), -10-3*ER(5), 10+3*ER(5), -10-3*ER(5), 
    0, -15+12*ER(5), 15-12*ER(5), 0 ],
  [ 1, -110-3*ER(5), -10+3*ER(5), 10-3*ER(5), -10+3*ER(5),
    0, -15-12*ER(5), 15+12*ER(5), 0 ],
  [ 1, -19, -9, -131303, -30 ], 
  [ 1, -1, -551, -103, -30 ] ] ],
##
[[1,4,9,13,16,18,26,27,28,37],"$L_2(11).2 \\rightarrow (M_{22}.2,16)$",
[ [ 1155555555132165165660 ], 
  [ 111515, -25, -25, -124545, -60 ], 
  [ 1113131313, -36, -3, -3, -12 ], 
  [ 11, -5, -5771299, -36 ], 
  [ 11, -7, -7, -3, -3, -121128 ], 
  [ 1155, -3, -312, -11, -114 ], 
  [ 1, -110-3*ER(5), -10+3*ER(5), 10-3*ER(5), -10+3*ER(5),
    0, -15-12*ER(5), 15+12*ER(5), 0 ],
  [ 1, -110+3*ER(5), -10-3*ER(5), 10+3*ER(5), -10-3*ER(5),
    0, -15+12*ER(5), 15-12*ER(5), 0 ],
  [ 1, -19, -9, -131303, -30 ], 
  [ 1, -1, -551, -103, -30 ] ] ] ];

MULTFREEINFO.("Isoclinic(2.M22.2)"):=["$(2.M_{22}.2)^*$",
##
[[1,2,3,4,13,14,26,27,28,29],"$A_7 \\rightarrow (M_{22}.2,7)$",
[ [ 1115153535105105140252 ], 
  [ 11, -15, -15, -35, -35105105140, -252 ], 
  [ 11, -7, -713131717, -36, -12 ], 
  [ 1177, -13, -131717, -3612 ], 
  [ 113333, -3, -34, -12 ], 
  [ 11, -3, -3, -3, -3, -3, -3412 ],
  [ 1, -13*EI(5), -3*EI(5), EI(5), -EI(5), -151500 ],
  [ 1, -1, -3*EI(5), 3*EI(5), -EI(5), EI(5), -151500 ],
  [ 1, -1, E(4), -E(4), -7*E(4), 7*E(4), 7, -700 ], 
  [ 1, -1, -E(4), E(4), 7*E(4), -7*E(4), 7, -700 ] ] ],
##
[[1,2,3,4,9,10,11,12,13,14,28,29,32,33],
"$2^3:L_3(2) \\rightarrow (M_{22}.2,12)$",
[ [ 111114148484112112112112336336 ], 
  [ 11, -1, -114, -1484, -84112112, -112, -112, -336336 ], 
  [ 1111, -8, -8181824242424, -60, -60 ], 
  [ 11, -1, -1, -8818, -182424, -24, -2460, -60 ], 
  [ 1111881818, -8, -8, -8, -8, -12, -12 ], 
  [ 11, -1, -18, -818, -18, -8, -88812, -12 ], 
  [ 1111, -6, -644, -8, -8, -8, -81616 ], 
  [ 11, -1, -1, -664, -4, -8, -888, -1616 ], 
  [ 111122, -12, -12444400 ], 
  [ 11, -1, -12, -2, -121244, -4, -400 ], 
  [ 1, -1, E(4), -E(4), 000014, -1414*E(4), -14*E(4), 00 ], 
  [ 1, -1, -E(4), E(4), 000014, -14, -14*E(4), 14*E(4), 00 ], 
  [ 1, -1, E(4), -E(4), 0000, -88, -8*E(4), 8*E(4), 00 ], 
  [ 1, -1, -E(4), E(4), 0000, -888*E(4), -8*E(4), 00 ] ] ] ];

MULTFREEINFO.("3.M22.2"):=["$3.M_{22}.2$",
##
[[1,3,9,13,18,22,26,27,29],"$2^4:S_5 \\rightarrow (M_{22}.2,6)$",
[ [ 121596120192240240480 ], 
  [ 1215, -3610, -72202040 ], 
  [ 121512, -624, -12, -12, -24 ], 
  [ 12, -3012024, -12, -24 ],
  [ 12, -30, -80, -16816 ], 
  [ 1, -10, -244024, -4020, -20 ], 
  [ 1, -109+ER(33), 3+3*EB(33), -9-ER(33), -3-3*EB(33),
    9-3*ER(33), -9+3*ER(33) ],
  [ 1, -109-ER(33), -3*EB(33), -9+ER(33), 3*EB(33),
    9+3*ER(33), -9-3*ER(33) ],
  [ 1, -10, -6, -565, -1010 ] ] ],
##
[[1,3,9,13,22,26,27],"$2^5:S_5 \\rightarrow (M_{22}.2,8)$",
[ [ 123060120160320 ],
  [ 12, -3, -654, -16, -32 ], 
  [ 12918, -6, -8, -16 ], 
  [ 12, -3, -6, -648 ], 
  [ 1, -115, -15020, -20 ],
  [ 1, -1, -2-EB(33), 2+EB(33), 0, -2+2*ER(33), 2-2*ER(33) ],
  [ 1, -1, -1+EB(33), 1-EB(33), 0, -2-2*ER(33), 2+2*ER(33) ] ] ],
##
[[1,3,4,9,13,16,22,26,27,29],
"$2^4:(A_5 \\times 2) \\rightarrow (M_{22}.2,10)$",
[ [ 112260120120120320640 ],
  [ 1122, -654, -1254, -32, -64 ],
  [ 1, -12, -20600, -6000 ], 
  [ 112218, -636, -6, -16, -32 ], 
  [ 1122, -6, -6, -12, -6816 ], 
  [ 1, -12, -20, -60600 ], 
  [ 11, -1, -1300, -30040, -40 ],
  [ 11, -1, -1, -3-ER(33), 03+ER(33), 0, -4+4*ER(33), 4-4*ER(33) ],
  [ 11, -1, -1, -3+ER(33), 03-ER(33), 0, -4-4*ER(33), 4+4*ER(33) ],
  [ 1, -1, -11000000 ] ] ],
##
[[1,3,9,11,13,22,25,26,27],
"$2^3:L_3(2) \\times 2 \\rightarrow (M_{22}.2,11)$",
[ [ 127144284168336336 ], 
  [ 12, -4, -8918, -30, -6072 ],
  [ 1248918, -6, -12, -24 ], 
  [ 12, -3, -624816, -24 ], 
  [ 1212, -6, -120012 ], 
  [ 1, -15, -518, -1824, -240 ], 
  [ 1, -100, -7714, -140 ], 
  [ 1, -1, -1-EB(33), 1+EB(33), 2+EB(33), -2-EB(33), -9+ER(33), 9-ER(33), 0 ], 
  [ 1, -1, EB(33), -EB(33), 1-EB(33), -1+EB(33), -9-ER(33), 9+ER(33), 0 ] ] ],
##
[[1,4,9,13,16,18,22,26,27,28,29],"$L_2(11).2 \\rightarrow (M_{22}.2,16)$",
[ [ 125566110132165165330330660 ], 
  [ 12, -25, -6, -50, -12454590, -30, -60 ], 
  [ 1213, -1826, -36, -339, -6, -6, -12 ], 
  [ 127614129, -1518, -18, -36 ], 
  [ 12, -3, -6, -6, -121, -2121428 ], 
  [ 12, -36, -612, -1115, -2224 ], 
  [ 1, -120, -24, -2024450, -45, -3030 ], 
  [ 1, -14*EB(33), 9+ER(33), -4*EB(33), -9-ER(33),
    12-ER(33), 0, -12+ER(33), 3+ER(33), -3-ER(33) ],
  [ 1, -1, -2-2*ER(33), 9-ER(33), 2+2*ER(33), -9+ER(33),
    12+ER(33), 0, -12-ER(33), 3-ER(33), -3+ER(33) ],
  [ 1, -10000, -11011, -2222 ], 
  [ 1, -10, -606, -50520, -20 ] ] ] ];

MULTFREEINFO.("4.M22.2"):=["$4.M_{22}.2$"];

MULTFREEINFO.("Isoclinic(4.M22.2)"):=["$(4.M_{22}.2)^*$"];

MULTFREEINFO.("6.M22.2"):=["$6.M_{22}.2$",
##
[[1,3,9,13,18,30,33,38,42,43,45,52,53,54],
"$2^4:S_5 \\rightarrow (M_{22}.2,6)$",
[ [ 112230120120192192192240240480960 ], 
  [ 1122301010, -72, -72, -7220204080 ], 
  [ 112230, -6, -6242424, -12, -12, -24, -48 ], 
  [ 1122, -612120002424, -24, -48 ], 
  [ 1122, -6, -8, -8000, -16, -161632 ], 
  [ 1, -1, -220, -101000020, -2000 ], 
  [ 1, -1, -22012, -12000, -242400 ], 
  [ 11, -1, -104040, -482424, -40, -4040, -40 ], 
  [ 11, -1, -103+3*EB(33), 3+3*EB(33), 18+2*ER(33), -9-ER(33),
    -9-ER(33), -3-3*EB(33), -3-3*EB(33), 18-6*ER(33), -18+6*ER(33) ],
  [ 11, -1, -10, -3*EB(33), -3*EB(33), 18-2*ER(33), -9+ER(33),
    -9+ER(33), 3*EB(33), 3*EB(33), 18+6*ER(33), -18-6*ER(33) ],
  [ 11, -1, -10, -5, -5, -126655, -2020 ], 
  [ 1, -11, -105*EB(33), -5*EB(33), 0, -15-ER(33),
    15+ER(33), 5*EB(33), -5*EB(33), 00 ],             
  [ 1, -11, -10, -5-5*EB(33), 5+5*EB(33), 0, -15+ER(33),
    15-ER(33), -5-5*EB(33), 5+5*EB(33), 00 ], 
  [ 1, -11, -103, -3018, -183, -300 ] ] ],
##
[[1,3,9,13,18,30,32,38,42,43,45,52,53,54],
"$2^4:S_5 \\rightarrow (M_{22}.2,6)$",
[ [ 112230120120192192192240240480960 ], 
  [ 1122301010, -72, -72, -7220204080 ], 
  [ 112230, -6, -6242424, -12, -12, -24, -48 ], 
  [ 1122, -612120002424, -24, -48 ], 
  [ 1122, -6, -8, -8000, -16, -161632 ], 
  [ 1, -1, -220, -101000020, -2000 ], 
  [ 1, -1, -22012, -12000, -242400 ], 
  [ 11, -1, -104040, -482424, -40, -4040, -40 ], 
  [ 11, -1, -103+3*EB(33), 3+3*EB(33), 18+2*ER(33), -9-ER(33),
    -9-ER(33), -3-3*EB(33), -3-3*EB(33), 18-6*ER(33), -18+6*ER(33) ],
  [ 11, -1, -10, -3*EB(33), -3*EB(33), 18-2*ER(33), -9+ER(33),
    -9+ER(33), 3*EB(33), 3*EB(33), 18+6*ER(33), -18-6*ER(33) ],
  [ 11, -1, -10, -5, -5, -126655, -2020 ], 
  [ 1, -11, -105*EB(33), -5*EB(33), 0, -15-ER(33),
    15+ER(33), 5*EB(33), -5*EB(33), 00 ],             
  [ 1, -11, -10, -5-5*EB(33), 5+5*EB(33), 0, -15+ER(33),
    15-ER(33), -5-5*EB(33), 5+5*EB(33), 00 ], 
  [ 1, -11, -103, -3018, -183, -300 ] ] ],
##
[[1,3,9,11,13,29,33,38,41,42,43,57],
"$2^3:L_3(2) \\times 2 \\rightarrow (M_{22}.2,11)$",
[ [ 1122142884168336336336672 ], 
  [ 1122, -8, -161836, -607272, -120 ], 
  [ 11228161836, -12, -24, -24, -24 ], 
  [ 1122, -6, -124816, -24, -2432 ], 
  [ 112224, -12, -24012120 ], 
  [ 1, -1, -220000042, -420 ], 
  [ 1, -1, -2200000, -24240 ], 
  [ 11, -1, -110, -1036, -364800, -48 ], 
  [ 11, -1, -100, -14142800, -28 ], 
  [ 11, -1, -1, -1-ER(33), 1+ER(33), 3+ER(33), -3-ER(33),
    -18+2*ER(33), 0018-2*ER(33) ],        
  [ 11, -1, -1, -1+ER(33), 1-ER(33), 3-ER(33), -3+ER(33),
    -18-2*ER(33), 0018+2*ER(33) ],
  [ 1, -11, -100000000 ] ] ],
##
[[1,3,9,11,13,28,32,38,41,42,43,57],
"$2^3:L_3(2) \\times 2 \\rightarrow (M_{22}.2,11)$",
[ [ 1122142884168336336336672 ], 
  [ 1122, -8, -161836, -607272, -120 ], 
  [ 11228161836, -12, -24, -24, -24 ], 
  [ 1122, -6, -124816, -24, -2432 ], 
  [ 112224, -12, -24012120 ], 
  [ 1, -1, -220000042, -420 ], 
  [ 1, -1, -2200000, -24240 ], 
  [ 11, -1, -110, -1036, -364800, -48 ], 
  [ 11, -1, -100, -14142800, -28 ], 
  [ 11, -1, -1, -1-ER(33), 1+ER(33), 3+ER(33), -3-ER(33),
    -18+2*ER(33), 0018-2*ER(33) ],        
  [ 11, -1, -1, -1+ER(33), 1-ER(33), 3-ER(33), -3+ER(33),
    -18-2*ER(33), 0018+2*ER(33) ],
  [ 1, -11, -100000000 ] ] ],
##
[[1,4,9,13,16,18,26,27,29,36,38,42,43,44,45,49,50,51,55,56],
"$L_2(11).2 \\rightarrow (M_{22}.2,16)$",
[ [ 11225555110110132132132165165165165330
    330660660660 ],
  [ 1122, -25, -25, -50, -50, -12, -12, -12454545459090
      -60, -60, -60 ], 
  [ 112213132626, -36, -36, -363939, -3, -3, -6
      -6, -12, -12, -12 ], 
  [ 1122771414121212, -15, -15991818, -36, -36
      -36 ], 
  [ 1122, -3, -3, -6, -6, -12, -12, -12, -21, -2111222828
      28 ], 
  [ 1122, -3, -3, -6, -61212121515, -11, -11, -22
      -22444 ],
  [ 1, -12, -210+3*ER(5), -10-3*ER(5), -20-6*ER(5), 20+6*ER(5),
    000, -30-9*ER(5), 30+9*ER(5), 15-12*ER(5), -15+12*ER(5), 
    -30+24*ER(5), 30-24*ER(5), 000 ],
  [ 1, -12, -210-3*ER(5), -10+3*ER(5), -20+6*ER(5), 20-6*ER(5),
    000, -30+9*ER(5), 30-9*ER(5), 15+12*ER(5), -15-12*ER(5), 
    -30-24*ER(5), 30+24*ER(5), 000 ],
  [ 1, -12, -2, -131326, -26000, -2727, -336, -6000 ],
  [ 1, -12, -21, -1, -2200015, -15, -336, -6000 ], 
  [ 11, -1, -12020, -20, -2024, -4824004545, -45, -45,
   -603030 ], 
  [ 11, -1, -1, -2+2*ER(33), -2+2*ER(33), 2-2*ER(33), 2-2*ER(33),
    -9-ER(33), 18+2*ER(33), -9-ER(33), 0012-ER(33), 12-ER(33),
    -12+ER(33), -12+ER(33), 6+2*ER(33), -3-ER(33), -3-ER(33) ],
  [ 11, -1, -1, -2-2*ER(33), -2-2*ER(33), 2+2*ER(33), 2+2*ER(33),
    -9+ER(33), 18-2*ER(33), -9+ER(33), 0012+ER(33), 12+ER(33), 
    -12-ER(33), -12-ER(33), 6-2*ER(33), -3+ER(33), -3+ER(33) ],
  [ 11, -1, -1000000000, -11, -111111, -442222 ], 
  [ 11, -1, -100006, -12600, -5, -55540, -20, -20 ],  
  [ 1, -1, -1110, -1010, -10, -12*ER(-7), 0
    12*ER(-7), 0015, -1515, -150, -3030 ],
  [ 1, -1, -1110, -1010, -1012*ER(-7), 0
    -12*ER(-7), 0015, -1515, -150, -3030 ],
  [ 1, -1, -11, -44, -440000015, -1515, -15054, -54 ],
  [ 1, -1, -11, -2+4*ER(3), 2-4*ER(3), -2+4*ER(3), 2-4*ER(3),
    00000, -9-4*ER(3), 9+4*ER(3), -9-4*ER(3), 
    9+4*ER(3), 0, -6+12*ER(3), 6-12*ER(3) ],
  [ 1, -1, -11, -2-4*ER(3), 2+4*ER(3), -2-4*ER(3), 2+4*ER(3), 
    00000, -9+4*ER(3), 9-4*ER(3), -9+4*ER(3), 
    9-4*ER(3), 0, -6-12*ER(3), 6+12*ER(3) ] ] ],
##
[[1,4,9,13,16,18,26,27,28,37,38,42,43,44,45,49,50,51,55,56],
"$L_2(11).2 \\rightarrow (M_{22}.2,16)$",
[ [ 11225555110110132132132165165165165330
      330660660660 ],
  [ 1122, -25, -25, -50, -50, -12, -12, -12454545459090
      -60, -60, -60 ], 
  [ 112213132626, -36, -36, -363939, -3, -3, -6, -6, -12
      -12, -12 ], 
  [ 1122771414121212, -15, -15991818, -36, -36
      -36 ], 
  [ 1122, -3, -3, -6, -6, -12, -12, -12, -21, -21112228
      2828 ], 
  [ 1122, -3, -3, -6, -61212121515, -11, -11, -22, -224
      44 ], 
  [ 1, -1, -22, -10+3*ER(5), 10-3*ER(5), 20-6*ER(5), 
    -20+6*ER(5), 00030-9*ER(5), -30+9*ER(5), 15+12*ER(5), 
    -15-12*ER(5), 30+24*ER(5), -30-24*ER(5), 000 ],
  [ 1, -1, -22, -10-3*ER(5), 10+3*ER(5), 20+6*ER(5), 
    -20-6*ER(5), 00030+9*ER(5), -30-9*ER(5), 15-12*ER(5), 
    -15+12*ER(5), 30-24*ER(5), -30+24*ER(5), 000 ],
  [ 1, -1, -2213, -13, -262600027, -27, -33, -66000 ] ,
  [ 1, -1, -22, -112, -2000, -1515, -33, -66000 ], 
  [ 11, -1, -12020, -20, -2024, -4824004545, -45, -45
    -603030 ], 
  [ 11, -1, -1, -2+2*ER(33), -2+2*ER(33), 2-2*ER(33), 2-2*ER(33),
   -9-ER(33), 18+2*ER(33), -9-ER(33), 0012-ER(33), 12-ER(33),
   -12+ER(33), -12+ER(33), 6+2*ER(33), -3-ER(33), -3-ER(33) ],
  [ 11, -1, -1, -2-2*ER(33), -2-2*ER(33), 2+2*ER(33), 2+2*ER(33), 
   -9+ER(33), 18-2*ER(33), -9+ER(33), 0012+ER(33), 12+ER(33),
   -12-ER(33), -12-ER(33),  6-2*ER(33), -3+ER(33), -3+ER(33) ],
  [ 11, -1, -1000000000, -11, -111111, -442222 ],
  [ 11, -1, -100006, -12600, -5, -55540, -20, -20 ], 
  [ 1, -11, -1, -1010, -1010, -12*ER(-7), 0
    12*ER(-7), 0015, -15, -1515030, -30 ],
  [ 1, -11, -1, -1010, -101012*ER(-7), 0
    -12*ER(-7), 0015, -15, -1515030, -30 ],
  [ 1, -11, -14, -44, -40000015, -15, -15150, -5454 ],
  [ 1, -11, -12-4*ER(3), -2+4*ER(3), 2-4*ER(3), 
    -2+4*ER(3), 00000, -9-4*ER(3), 9+4*ER(3), 
    9+4*ER(3), -9-4*ER(3), 06-12*ER(3), -6+12*ER(3) ],
  [ 1, -11, -12+4*ER(3), -2-4*ER(3), 2+4*ER(3), 
    -2-4*ER(3), 00000, -9+4*ER(3), 9-4*ER(3), 
    9-4*ER(3), -9+4*ER(3), 06+12*ER(3), -6-12*ER(3) ] ] ] ];

MULTFREEINFO.("Isoclinic(6.M22.2)"):=["$(6.M_{22}.2)^*$"];

MULTFREEINFO.("12.M22.2"):=["$12.M_{22}.2$"];

MULTFREEINFO.("Isoclinic(12.M22.2)"):=["$(12.M_{22}.2)^*$"];

MULTFREEINFO.("2.J2.2"):=["$2.J_2.2$"];

MULTFREEINFO.("Isoclinic(2.J2.2)"):=["$(2.J_2.2)^*$",
##
[[1,5,7,31],"$U_3(3).2 \\rightarrow (J_2.2),1)$",
[ [ 1172126 ],
  [ 1112, -14 ], 
  [ 11, -86 ],
  [ 1, -100 ]]],
##
[[1,5,7,31],"$U_3(3).2 \\rightarrow (J_2.2),1)$",
[ [ 1172126 ],
  [ 1112, -14 ],
  [ 11, -86 ],
  [ 1, -100 ]]],
##
[[1,4,7,8,10,12,17,29,30,31,37,38],"$3.A_6.2_3 \\rightarrow (J_2.2),5)$",
[ [ 11236363636135135216216270 ], 
  [ 11, -2, -12, -121212151500, -30 ],
  [ 112, -4, -4, -4, -41515, -24, -2430 ], 
  [ 11, -288, -8, -8151500, -30 ], 
  [ 1128888, -5, -5, -8, -8, -10 ], 
  [ 112, -4, -4, -4, -4, -5, -51616, -10 ], 
  [ 11, -20000, -9, -90018 ],
  [ 1,-1,0,12*ER(-2),-12*ER(-2),12,-12,45,-45,-36*ER(-2),36*ER(-2),0 ],
  [ 1,-1,0,-12*ER(-2),12*ER(-2),12,-12,45,-45,36*ER(-2),-36*ER(-2),0 ],
  [ 1, -1000, -12129, -9000 ],
  [ 1, -102*ER(-7), -2*ER(-7), 2, -2, -554*ER(-7), -4*ER(-7), 0 ],
  [ 1, -10, -2*ER(-7), 2*ER(-7), 2, -2, -55, -4*ER(-7), 4*ER(-7), 0 ]]]];

MULTFREEINFO.("2.HS.2"):=["$2.HS.2$",
##
[[1,3,5,7,9,10,14,16,42,44],"$A_8 \\times 2 \\rightarrow (HS.2,10)$",
[ [ 1121122102103363366722520 ], 
  [ 11, -20, -7070112112, -2240 ], 
  [ 112, -485050161632, -120 ], 
  [ 112323030, -24, -24, -480 ], 
  [ 11, -2030, -301212, -240 ], 
  [ 11224, -10, -10282856, -120 ], 
  [ 112, -8, -10, -10, -4, -4, -840 ], 
  [ 11, -20, -1010, -8, -8160 ], 
  [ 1, -1000042, -4200 ],
  [ 1, -10000, -8800 ] ] ],
##
[[1,4,5,7,9,10,14,17,42,44],"$A_8.2 \\rightarrow (HS.2,11)$",
[ [ 1121122102103363366722520 ], 
  [ 11, -20, -7070112112, -2240 ], 
  [ 112, -485050161632, -120 ], 
  [ 112323030, -24, -24, -480 ], 
  [ 11, -2030, -301212, -240 ], 
  [ 11224, -10, -10282856, -120 ], 
  [ 112, -8, -10, -10, -4, -4, -840 ], 
  [ 11, -20, -1010, -8, -8160 ], 
  [ 1, -1000042, -4200 ],
  [ 1, -10000, -8800 ] ] ] ];

MULTFREEINFO.("Isoclinic(2.HS.2)"):=["$(2.HS.2)^*$"];

MULTFREEINFO.("3.J3.2"):=["$3.J_3.2$"];

MULTFREEINFO.("3.McL.2"):=["$3.M^cL.2$",
##
[[1,7,14,24,26,30,42,44,45,50],"$2.S_8 \\rightarrow (M^cL.2,9)$",
[ [ 126302240448050408064100801612820160 ], 
  [ 1213526052090144180288, -1620 ], 
  [ 12117, -28, -5672, -144144, -288180 ], 
  [ 12, -1560120, -60, -56, -120, -112180 ], 
  [ 12, -45, -10, -2090, -36180, -72, -90 ], 
  [ 129, -28, -56, -3672, -72144, -36 ], 
  [ 1, -1080, -8090144, -90, -1440 ], 
  [ 1, -1000, -12064120, -640 ], 
  [ 1, -1035, -350, -12601260 ], 
  [ 1, -10, -5555459, -45, -90 ] ] ] ];

MULTFREEINFO.("2.Suz.2"):=["$2.Suz.2$",
##
[[1,4,5,14,19,21,71,75],"$U_5(2).2 \\rightarrow (Suz.2,8)$",
[ [ 1117822816281639601267241472 ], 
  [ 11486512512, -360, -11520 ], 
  [ 11, -198176176660, -528, -288 ], 
  [ 11668860192, -336 ],
  [ 11, -543232, -60480 ], 
  [ 1118, -40, -4012, -96144 ],
  [ 1, -10352, -352000 ], 
  [ 1, -10, -88000 ] ] ],
##
[[1,4,5,14,19,21,71,75],"$U_5(2).2 \\rightarrow (Suz.2,8)$",
[ [ 1117822816281639601267241472 ],
  [ 11486512512, -360, -11520 ],
  [ 11, -198176176660, -528, -288 ],
  [ 11668860192, -336 ], 
  [ 11, -543232, -60480 ],
  [ 1118, -40, -4012, -96144 ], 
  [ 1, -10352, -352000 ],
  [ 1, -10, -88000 ] ] ],
##
[[1,5,6,14,19,21,22,23,33,48,71,75,89,90],
"$3^5:(M_{11} \\times 2) \\rightarrow (Suz.2,12)$",
[ [ 113301782583210692178201782032076320768019080190
      80190106920 ], 
  [ 1113058272, -118810201020, -1764, -1764, -1710, -17106390
      -1080 ], 
  [ 11, -110198, -108039619801980, -1188, -118829702970, -2970
      -3960 ], 
  [ 1170222, -96396, -120, -120408408, -150, -150, -150, -720 ], 
  [ 11, -50780, -324120120432432, -270, -270, -2700 ], 
  [ 1122, -662881082642647272, -198, -198, -198, -432 ],
  [ 11, -385472180, -36, -36, -180, -180, -90, -90, -18360 ], 
  [ 11425472, -220, -36, -36, -180, -180270270, -738680 ], 
  [ 1110, -42, -1203660601212, -210, -21030360 ], 
  [ 11, -2, -180, -36, -72, -7200162162162, -288 ], 
  [ 1, -100001980, -19801782, -17820000 ], 
  [ 1, -10000180, -180, -3783780000 ], 
  [ 1, -10000, -363654, -54, -216*ER(-2), 216*ER(-2), 00 ],
  [ 1, -10000, -363654, -54216*ER(-2), -216*ER(-2), 00 ] ] ],
##
[[1,5,6,14,19,21,22,23,33,48,71,75,89,90],
"$3^5:(M_{11} \\times 2) \\rightarrow (Suz.2,12)$",
[ [ 113301782583210692178201782032076320768019080190,
      80190106920 ],
  [ 1113058272, -118810201020, -1764, -1764, -1710, -17106390,
      -1080 ],
  [ 11, -110198, -108039619801980, -1188, -118829702970, -2970,
      -3960 ],
  [ 1170222, -96396, -120, -120408408, -150, -150, -150, -720 ],
  [ 11, -50780, -324120120432432, -270, -270, -2700 ],
  [ 1122, -662881082642647272, -198, -198, -198, -432 ],
  [ 11, -385472180, -36, -36, -180, -180, -90, -90, -18360 ],
  [ 11425472, -220, -36, -36, -180, -180270270, -738680 ],
  [ 1110, -42, -1203660601212, -210, -21030360 ],
  [ 11, -2, -180, -36, -72, -7200162162162, -288 ],
  [ 1, -100001980, -19801782, -17820000 ],
  [ 1, -10000180, -180, -3783780000 ],
  [ 1, -10000, -363654, -54, -216*ER(-2), 216*ER(-2), 00 ],
  [ 1, -10000, -363654, -54216*ER(-2), -216*ER(-2), 00 ]]]];

MULTFREEINFO.("Isoclinic(2.Suz.2)"):=["$(2.Suz.2)^*$"];

MULTFREEINFO.("3.Suz.2"):=["$3.Suz.2$",
##
[[1,7,9,69,73],"$G_2(4).2 \\rightarrow (Suz.2,1)$",
[ [ 124168324095 ], 
  [ 122040, -63 ], 
  [ 12, -16, -3245 ], 
  [ 1, -1104, -1040 ], 
  [ 1, -1, -440 ] ] ],
##
[[1,4,5,14,19,21,70,72,78,86],"$U_5(2).2 \\rightarrow (Suz.2,8)$",
[ [ 128911782281656325940190082073641472 ], 
  [ 122434865121024, -540, -172800 ], 
  [ 12, -99, -198176352990, -792, -144, -288 ], 
  [ 12336681690288, -168, -336 ], 
  [ 12, -27, -543264, -907200 ], 
  [ 12918, -40, -8018, -14472144 ], 
  [ 1, -1, -297297704, -70400, -17281728 ], 
  [ 1, -199, -99176, -17600144, -144 ], 
  [ 1, -1, -454532, -3200288, -288 ], 
  [ 1, -13, -3, -161600, -4848 ] ] ],
##
[[1,4,7,11,14,21,26,27,38,69,71,73,81,82,88,91],
"$2^{1+6}_-.U_4(2).2 \\rightarrow (Suz.2,10)$",
[ [ 12541081080172834565120921610240172801843234560
      55296110592138240 ], 
  [ 12, -27, -54270432864800, -11521600, -2160, -2304, -4320
      34566912, -4320 ], 
  [ 12214290276552, -160768, -3201201536240384768
      -4320 ], 
  [ 1236, -18013226420048400, -6096, -120, -624, -1248
      1080 ], 
  [ 1215301441224128, -144256276, -288552, -240, -480
      -288 ], 
  [ 12, -9, -1872, -36, -7280144160, -108288, -216, -144, -288
      144 ], 
  [ 12, -11, -22304896, -80, -64, -16080, -128160, -64,-128,240], 
  [ 129181800, -640, -128, -1440, -28800576 ], 
  [ 1200, -36, -18, -368, -91636, -187290180, -288 ], 
  [ 1, -127, -270648, -648, -6402304640, -2160, -230421606912
      -69120 ], 
  [ 1, -1, -18180288, -288, -640, -5766401440576, -14401152
      -11520 ], 
  [ 1, -115, -150156, -156320384, -320600, -384, -600,-384,384,0], 
  [ 1, -1, -12120102, -102140, -192, -140, -210192210
      48, -480 ], 
  [ 1, -110, -10036, -36, -80, -1680, -10016100, -3043040 ], 
  [ 1, -16, -60, -242432, -48, -322448, -24192, -1920 ], 
  [ 1, -1, -660, -1212, -16481612, -48, -12, -48480 ] ] ],
##
[[1,5,7,9,14,19,21,23,27,38,40,44,47,72,78,86,88,94,95,99],
"$2^{4+6}:3S_6 \\rightarrow (Suz.2,13)$",
[ [ 121804809604608576061441228818432204804096046080
      69120691209216092160184320184320368640 ], 
  [ 12, -453060100836011042208, -288, -1120, -22402880
      -6480, -10805760, -5040, -1008043208640 ], 
  [ 1281841686481008, -192, -384259214722944, -1440216
      2592, -2880, -2880, -57605761152 ], 
  [ 1245, -60, -120, -468900961923312, -1120, -2240720, -540
      -2160144014402880, -1440, -2880 ], 
  [ 126390180, -72144216432, -288, -112, -224, -96, -1080
      1728, -1927441488, -1008, -2016 ], 
  [ 12, -453060, -28836096192, -28832064000, -108000
      000 ], 
  [ 12, -9183672, -288264528288, -16, -32, -2881080, -432
      -576, -72, -144, -144, -288 ], 
  [ 1221, -36, -723482284896, -288112224240516, -288
      480240480, -784, -1568 ], 
  [ 12453672, -3636, -96, -192, -144, -160, -320144756, -432
      288, -288, -576288576 ], 
  [ 12180018, -126, -24, -48721282569, -540, -43218144
      28872144 ], 
  [ 12, -27122410836, -48, -960, -112, -224, -144, -1080, -288
      144288144288 ], 
  [ 12, -1500, -48, -60, -24, -48724080240120360480
      -120, -240, -280, -560 ], 
  [ 129, -24, -48, -72362448, -72, -40, -80, -1440216, -288
      -72, -144216432 ], 
  [ 1, -1060, -6000432, -4320, -11201120288000, -2880
      720, -7201440, -1440 ], 
  [ 1, -1060, -6000288, -2880320, -32000001440
      -1440, -28802880 ], 
  [ 1, -10, -363600240, -240032, -32, -19200192, -240
      240288, -288 ], 
  [ 1, -1024, -2400000320, -32014400, -14400576
      -576 ], 
  [ 1, -10, -242400, -48480, -16160000432, -432144
      -144 ],
  [ 1, -1024, -2400000, -128128, -19200192
      00128, -128 ], 
  [ 1, -10, -6600, -303002, -210800, -108, -270270
      -342342 ] ] ] ];

MULTFREEINFO.("6.Suz.2"):=["$6.Suz.2$",
##
[[1,4,5,14,19,21,71,75,109,111,117,125,146,148,149,158],
"$U_5(2).2 \\rightarrow (Suz.2,8)$",
[ [ 112217821782178228162816563256321188038016
      414724147241472 ], 
  [ 112248648648651251210241024, -1080, -3456000 ], 
  [ 1122, -198, -198, -1981761763523521980, -1584, -288
      -288, -288 ], 
  [ 1122666666881616180576, -336, -336, -336 ], 
  [ 1122, -54, -54, -5432326464, -180144000 ], 
  [ 1122181818, -40, -40, -80, -8036, -288144144144 ], 
  [ 1, -12, -2000, -352352, -70470400000 ], 
  [ 1, -12, -20008, -816, -1600000 ], 
  [ 11, -1, -1297297, -594704704, -704, -7040017281728
      -3456 ], 
  [ 11, -1, -1, -99, -99198176176, -176, -17600, -144, -144288], 
  [ 11, -1, -14545, -903232, -32, -3200, -288, -288576 ], 
  [ 11, -1, -1, -3, -36, -16, -161616004848, -96 ], 
  [ 1, -1, -11891, -8910, -140814081408, -140800, -10368
      103680 ], 
  [ 1, -1, -11189, -1890, -160160160, -16000864, -8640 ], 
  [ 1, -1, -11, -99990, -888888, -880072, -720 ], 
  [ 1, -1, -119, -9020, -20, -202000, -36360 ] ] ],
##
[[1,4,5,14,19,21,71,75,109,111,117,125,146,148,149,158],
"$U_5(2).2 \\rightarrow (Suz.2,8)$",
[ [ 112217821782178228162816563256321188038016
      414724147241472 ], 
  [ 112248648648651251210241024, -1080, -3456000 ], 
  [ 1122, -198, -198, -1981761763523521980, -1584, -288
      -288, -288 ], 
  [ 1122666666881616180576, -336, -336, -336 ], 
  [ 1122, -54, -54, -5432326464, -180144000 ], 
  [ 1122181818, -40, -40, -80, -8036, -288144144144 ], 
  [ 1, -12, -2000, -352352, -70470400000 ], 
  [ 1, -12, -20008, -816, -1600000 ], 
  [ 11, -1, -1297297, -594704704, -704, -7040017281728
      -3456 ], 
  [ 11, -1, -1, -99, -99198176176, -176, -17600, -144, -144,288], 
  [ 11, -1, -14545, -903232, -32, -3200, -288, -288576 ], 
  [ 11, -1, -1, -3, -36, -16, -161616004848, -96 ], 
  [ 1, -1, -11891, -8910, -140814081408, -140800, -10368
      103680 ], 
  [ 1, -1, -11189, -1890, -160160160, -16000864, -8640 ], 
  [ 1, -1, -11, -99990, -888888, -880072, -720 ], 
  [ 1, -1, -119, -9020, -20, -202000, -36360 ] ] ] ];

MULTFREEINFO.("Isoclinic(6.Suz.2)"):=["$(6.Suz.2)^*$"];

MULTFREEINFO.("3.ON.2"):=["$3.ON.2$"];

MULTFREEINFO.("2.Fi22.2"):=["$2.Fi_{22}.2$",
##
[[1,2,5,6,17,18,113,114,118],"$O_7(3) \\rightarrow (Fi_{22}.2,3)$",
[ [ 1172810801080315931592184025272 ], 
  [ 11, -728, -1080, -10803159315921840, -25272 ],
  [ 11168, -120, -120279279, -56072 ], 
  [ 11, -168120120279279, -560, -72 ], 
  [ 11242424, -9, -916, -72 ], 
  [ 11, -24, -24, -24, -9, -91672 ],
  [ 1, -10120*ER(-3), -120*ER(-3), 351, -35100 ],
  [ 1, -10, -120*ER(-3), 120*ER(-3), 351, -35100 ],
  [ 1, -1000, -9900 ] ] ],
##
[[1,2,13,14,17,18,25,26,118,121],"$O_8^+(2):S_3 \\rightarrow (Fi_{22}.2,5)$",
[ [ 112315031502240022400448007560075600 ], 
  [ 11, -23150, -31502240022400, -44800, -7560075600 ], 
  [ 112342342, -64, -64, -128, -216, -216 ], 
  [ 11, -2342, -342, -64, -64128216, -216 ], 
  [ 112, -18, -18224224448, -432, -432 ], 
  [ 11, -2, -1818224224, -448432, -432 ],
  [ 112, -18, -18, -64, -64, -128144144 ], 
  [ 11, -2, -1818, -64, -64128, -144144 ], 
  [ 1, -1000280, -280000 ], 
  [ 1, -1000, -8080000 ] ] ],
##
[[1,8,13,15,17,25,29,118,121],
"$O_8^+(2):3 \\times 2 \\rightarrow (Fi_{22}.2,6)$",
[ [ 11231503150224002240044800151200 ], 
  [ 11, -2, -450450800800, -16000 ], 
  [ 112342342, -64, -64, -128, -432 ], 
  [ 11, -2126, -126224224, -4480 ], 
  [ 112, -18, -18224224448, -864 ], 
  [ 112, -18, -18, -64, -64, -128288 ], 
  [ 11, -2, -1818, -64, -641280 ], 
  [ 1, -1000, -28028000 ], 
  [ 1, -100080, -8000 ] ] ],
##
[[1,2,5,6,13,14,17,18,25,26,27,28,33,34,113,114,118,121,126,127],
"$O_8^+(2):2 \\rightarrow (Fi_{22}.2,10)$",
[ [ 1122222315031506300630022400224004480044800
      448004480044800226800226800 ], 
  [ 1122, -2, -2, -23150, -31506300, -6300224002240044800
      44800, -44800, -44800, -44800226800, -226800 ], 
  [ 11, -1, -12, -1, -1630630, -630, -63022402240, -2240, -2240
      4480, -2240, -224000 ], 
  [ 11, -1, -1, -211630, -630, -63063022402240, -2240, -2240
      -44802240224000 ], 
  [ 1122222342342684684, -64, -64, -128, -128, -128
      -128, -128, -648, -648 ], 
  [ 1122, -2, -2, -2342, -342684, -684, -64, -64, -128, -128128
      128128, -648648 ], 
  [ 1122222, -18, -18, -36, -36224224448448448448
      448, -1296, -1296 ], 
  [ 1122, -2, -2, -2, -1818, -3636224224448448, -448, -448
      -448, -12961296 ], 
  [ 1122222, -18, -18, -36, -36, -64, -64, -128, -128, -128
      -128, -128432432 ], 
  [ 1122, -2, -2, -2, -1818, -3636, -64, -64, -128, -128128128
      128432, -432 ], 
  [ 11, -1, -12, -1, -1, -90, -9090908080, -80, -80160, -80
      -8000 ], 
  [ 11, -1, -1, -211, -909090, -908080, -80, -80, -1608080
      00 ], 
  [ 11, -1, -12, -1, -15454, -54, -54, -64, -646464, -12864
      6400 ], 
  [ 11, -1, -1, -21154, -54, -5454, -64, -646464128, -64
      -6400 ], 
  [ 1, -11, -10, ER(-3), -ER(-3), 0000, -28002800
      2800, -280002800*ER(-3), -2800*ER(-3), 00 ], 
  [ 1, -11, -10, -ER(-3), ER(-3), 0000, -28002800
      2800, -28000, -2800*ER(-3), 2800*ER(-3), 00 ], 
  [ 1, -1, -220000000, -280280, -56056000000 ], 
  [ 1, -1, -22000000080, -80160, -16000000 ], 
  [ 1, -11, -10, ER(-3), -ER(-3), 00008, -8, -880
      -8*ER(-3), 8*ER(-3), 00 ],
  [ 1, -11, -10, -ER(-3), ER(-3), 00008, -8, -880
      8*ER(-3), -8*ER(-3), 00 ] ] ],
##
[[1,7,9,17,19,49,58,68,75,88,128,129,146],
"${^2F_4(2)^{\\prime}}.2 \\rightarrow (Fi_{22}.2,16)$",
[ [ 1135102340029952166400166400280800374400374400374400
      8985604492800 ], 
  [ 11, -8101800, -1152, -6400, -6400, -2160028800, -14400, -14400
      345600 ], 
  [ 11, -3783960, -115210880108808640, -14400, -14400, -14400
      27648, -17280 ], 
  [ 113421224, -1728166416642016691237443744,-1152,-18432],
  [ 1119810801152, -640, -640, -2880, -2880288028804608,-5760], 
  [ 11150, -120384, -256, -2561248768, -576, -576768, -1536 ], 
  [ 115472, -288, -352, -3520, -576, -144, -14401728 ], 
  [ 11, -42264192128128, -96384, -288, -288, -19201536 ], 
  [ 1154, -2160512512, -86400000 ], 
  [ 11, -90, -720, -64, -642880288288576, -1152 ], 
  [ 1, -1000800+720*ER(3), -800-720*ER(3), 00
      1800-720*ER(3), -1800+720*ER(3), 00 ], 
  [ 1, -1000800-720*ER(3), -800+720*ER(3), 00
      1800+720*ER(3), -1800-720*ER(3), 00 ],
  [ 1, -1000, -646400, -14414400 ] ] ],
##
[[1,7,9,17,19,49,58,68,75,88,128,129,146],
"${^2F_4(2)^{\\prime}}.2 \\rightarrow (Fi_{22}.2,16)$",
[ [ 1135102340029952166400166400280800374400374400374400,
      8985604492800 ],
  [ 11, -8101800, -1152, -6400, -6400, -2160028800, -14400, -14400,
      345600 ],
  [ 11, -3783960, -115210880108808640, -14400, -14400, -14400,
      27648, -17280 ],
  [ 113421224, -1728166416642016691237443744,-1152,-18432],
  [ 1119810801152, -640, -640, -2880, -2880288028804608,-5760],
  [ 11150, -120384, -256, -2561248768, -576, -576768, -1536 ],
  [ 115472, -288, -352, -3520, -576, -144, -14401728 ],
  [ 11, -42264192128128, -96384, -288, -288, -19201536 ],
  [ 1154, -2160512512, -86400000 ],
  [ 11, -90, -720, -64, -642880288288576, -1152 ],
  [ 1, -1000800-720*ER(3), -800+720*ER(3), 00,
      1800+720*ER(3), -1800-720*ER(3), 00 ],
  [ 1, -1000800+720*ER(3), -800-720*ER(3), 00,
      1800-720*ER(3), -1800+720*ER(3), 00 ],
  [ 1, -1000, -646400, -14414400 ] ] ] ];

MULTFREEINFO.("Isoclinic(2.Fi22.2)"):=["$(2.Fi_{22}.2)^*$",
##
[[1,2,5,6,17,18,113,114,118],"$O_7(3) \\rightarrow (Fi_{22}.2),3)$",
[ [ 1172810801080315931592184025272 ], 
  [ 11, -728, -1080, -10803159315921840, -25272 ],
  [ 11168, -120, -120279279, -56072 ], 
  [ 11, -168120120279279, -560, -72 ], 
  [ 11242424, -9, -916, -72 ],
  [ 11, -24, -24, -24, -9, -91672 ], 
  [ 1, -10120*ER(3), -120*ER(3), -35135100 ],
  [ 1, -10, -120*ER(3), 120*ER(3), -35135100 ],
  [ 1, -10009, -900 ] ] ],
##
[[1,2,13,14,17,18,25,26,118,121],
"$O_8^+(2):S_3 \\rightarrow (Fi_{22}.2),5)$",
[ [ 112315031502240022400448007560075600 ], 
  [ 11, -23150, -31502240022400, -4480075600, -75600 ], 
  [ 112342342, -64, -64, -128, -216, -216 ], 
  [ 11, -2342, -342, -64, -64128, -216216 ], 
  [ 112, -18, -18224224448, -432, -432 ], 
  [ 11, -2, -1818224224, -448, -432432 ], 
  [ 112, -18, -18, -64, -64, -128144144 ], 
  [ 11, -2, -1818, -64, -64128144, -144 ], 
  [ 1, -1000, -280280000 ], 
  [ 1, -100080, -80000 ] ] ],
##
[[1,7,13,16,17,25,30,118,121],"$O_8^+(2):S_3 \\rightarrow (Fi_{22}.2),7)$",
[ [ 11231503150224002240044800151200 ], 
  [ 11, -2, -450450800800, -16000 ], 
  [ 112342342, -64, -64, -128, -432 ], 
  [ 11, -2126, -126224224, -4480 ], 
  [ 112, -18, -18224224448, -864 ], 
  [ 112, -18, -18, -64, -64, -128288 ], 
  [ 11, -2, -1818, -64, -641280 ],
  [ 1, -1000, -28028000 ], 
  [ 1, -100080, -8000 ] ] ],
##
[[1,2,5,6,13,14,17,18,25,26,27,28,33,34,113,114,118,121,126,127],
"$O_8^+(2):2 \\rightarrow (Fi_{22}.2),10)$",
[ [ 1122222315031506300630022400224004480044800
      448004480044800226800226800 ], 
  [ 1122, -2, -2, -23150, -31506300, -6300224002240044800
      44800, -44800, -44800, -44800226800, -226800 ], 
  [ 11, -1, -12, -1, -1630630, -630, -63022402240, -2240, -2240
      4480, -2240, -224000 ], 
  [ 11, -1, -1, -211630, -630, -63063022402240, -2240, -2240
      -44802240224000 ], 
  [ 1122222342342684684, -64, -64, -128, -128, -128
      -128, -128, -648, -648 ], 
  [ 1122, -2, -2, -2342, -342684, -684, -64, -64, -128, -128128
      128128, -648648 ], 
  [ 1122222, -18, -18, -36, -36224224448448448448
      448, -1296, -1296 ], 
  [ 1122, -2, -2, -2, -1818, -3636224224448448, -448, -448
      -448, -12961296 ], 
  [ 1122222, -18, -18, -36, -36, -64, -64, -128, -128, -128
      -128, -128432432 ], 
  [ 1122, -2, -2, -2, -1818, -3636, -64, -64, -128, -128128128
      128432, -432 ], 
  [ 11, -1, -12, -1, -1, -90, -9090908080, -80, -80160, -80
      -8000 ], 
  [ 11, -1, -1, -211, -909090, -908080, -80, -80, -1608080
      00 ], 
  [ 11, -1, -12, -1, -15454, -54, -54, -64, -646464, -12864
      6400 ], 
  [ 11, -1, -1, -21154, -54, -5454, -64, -646464128, -64
      -6400 ], 
  [ 1, -11, -10, ER(3), -ER(3), 0000,
      -280028002800, -280002800*ER(3), -2800*ER(3), 00 ], 
  [ 1, -11, -10,  -ER(3), ER(3), 0000,
      -280028002800, -28000, -2800*ER(3), 2800*ER(3), 00 ], 
  [ 1, -1, -220000000, -280280, -56056000000 ], 
  [ 1, -1, -22000000080, -80160, -16000000 ], 
  [ 1, -11, -10, ER(3), -ER(3), 0000
       8, -8, -880, -8*ER(3), 8*ER(3), 00 ], 
  [ 1, -11, -10, -ER(3), ER(3), 0000,
       8, -8, -8808*ER(3), -8*ER(3), 00 ] ] ],
##
[[1,5,6,7,13,16,17,25,27,28,30,33,34,113,114,118,121,126,127],
"$O_8^+(2):2 \\rightarrow (Fi_{22}.2),11)$",
[ [ 1122222315031506300630022400224004480044800
      448004480044800453600 ], 
  [ 11, -1, -1, -1, -12630630, -630, -630224022404480, -2240
      -2240, -2240, -22400 ], 
  [ 1111, -1, -1, -2630, -630630, -63022402240, -4480, -2240
      -2240224022400 ], 
  [ 11, -2, -222, -2, -450450900, -900800800, -16001600
      1600, -1600, -16000 ], 
  [ 1122222342342684684, -64, -64, -128, -128, -128
      -128, -128, -1296 ], 
  [ 11, -2, -222, -2126, -126, -252252224224, -448448448
      -448, -4480 ],
  [ 1122222, -18, -18, -36, -36224224448448448448
      448, -2592 ], 
  [ 1122222, -18, -18, -36, -36, -64, -64, -128, -128, -128
      -128, -128864 ], 
  [ 11, -1, -1, -1, -12, -90, -9090908080160, -80, -80, -80
      -800 ],
  [ 1111, -1, -1, -2, -9090, -90908080, -160, -80, -8080,
      800 ],
  [ 11, -2, -222, -2, -181836, -36, -64, -64128, -128, -128128
      1280 ],
  [ 11, -1, -1, -1, -125454, -54, -54, -64, -64, -128646464
      640 ],
  [ 1111, -1, -1, -254, -5454, -54, -64, -641286464, -64
      -640 ], 
  [ 1, -1, ER(3), -ER(3), -11000002800, -280002800, -2800
      2800*ER(3), -2800*ER(3), 0 ],
  [ 1, -1, -ER(3), ER(3), -11000002800, -280002800, -2800
      -2800*ER(3), 2800*ER(3), 0 ],
  [ 1, -1002, -200000280, -2800, -560560000 ], 
  [ 1, -1002, -200000, -80800160, -160000 ],
  [ 1, -1, ER(3), -ER(3), -1100000
       -880, -88, -8*ER(3), 8*ER(3), 0 ],
  [ 1, -1, -ER(3), ER(3), -1100000
       -880, -888*ER(3), -8*ER(3), 0 ] ] ] ];

MULTFREEINFO.("3.Fi22.2"):=["$3.Fi_{22}.2$",
##
[[1,13,17,25,113,117,120],
"$O_8^+(2):S_3 \\times 2 \\rightarrow (Fi_{22}.2,4)$",
[ [ 1215753150378006720075600 ], 
  [ 12171342, -108, -192, -216 ], 
  [ 12, -9, -18, -216672, -432 ], 
  [ 12, -9, -1872, -192144 ], 
  [ 1, -1375, -37518000, -1800 ], 
  [ 1, -139, -39, -2160216 ],
  [ 1, -1, -2121840, -84 ] ] ],
##
[[1,8,13,15,17,25,29,113,114,117,120,122],
"$O_8^+(2):3 \\times 2 \\rightarrow (Fi_{22}.2,6)$",
[ [ 11221575157531503150672006720075600151200 ], 
  [ 1, -12, -2225, -225450, -4502400, -240000 ], 
  [ 1122171171342342, -192, -192, -216, -432 ], 
  [ 1, -12, -2, -6363, -126126672, -67200 ], 
  [ 1122, -9, -9, -18, -18672672, -432, -864 ], 
  [ 1122, -9, -9, -18, -18, -192, -192144288 ], 
  [ 1, -12, -29, -918, -18, -19219200 ], 
  [ 11, -1, -1375375, -375, -375003600, -3600 ], 
  [ 1, -1, -11105, -105, -1051050000 ], 
  [ 11, -1, -13939, -39, -3900, -432432 ], 
  [ 11, -1, -1, -21, -21212100168, -168 ], 
  [ 1, -1, -11, -151515, -150000 ] ] ],
##
[[1,7,13,16,17,25,30,119,124],"$O_8^+(2):S_3 \\rightarrow (Fi_{22}.2,7)$",
[ [ 1231575315047256720067200226800 ], 
  [ 12, -3, -225, -450675, -240024000 ], 
  [ 123171342513, -192, -192, -648 ], 
  [ 12, -363126, -189, -6726720 ], 
  [ 123, -9, -18, -27672672, -1296 ], 
  [ 123, -9, -18, -27, -192, -192432 ], 
  [ 12, -3, -9, -1827192, -1920 ],
  [ 1, -1075, -750000 ], 
  [ 1, -10, -21210000 ] ] ],
##
[[1,7,13,16,17,25,30,113,114,117,120,122],
"$O_8^+(2):S_3 \\rightarrow (Fi_{22}.2,7)$",
[ [ 11221575157531503150672006720075600151200 ], 
  [ 1, -12, -2225, -225450, -4502400, -240000 ], 
  [ 1122171171342342, -192, -192, -216, -432 ], 
  [ 1, -12, -2, -6363, -126126672, -67200 ], 
  [ 1122, -9, -9, -18, -18672672, -432, -864 ], 
  [ 1122, -9, -9, -18, -18, -192, -192144288 ], 
  [ 1, -12, -29, -918, -18, -19219200 ], 
  [ 11, -1, -1375375, -375, -375003600, -3600 ], 
  [ 1, -1, -11105, -105, -1051050000 ], 
  [ 11, -1, -13939, -39, -3900, -432432 ], 
  [ 11, -1, -1, -21, -21212100168, -168 ], 
  [ 1, -1, -11, -151515, -150000 ] ] ],
##
[[1,5,13,17,25,27,33,113,117,119,120,124],
"$O_8^+(2):2 \\times 2 \\rightarrow (Fi_{22}.2,8)$",
[ [ 1224157531503150630067200113400134400226800 ], 
  [ 12, -1, -2315630, -315, -63067200, -67200 ], 
  [ 1224171342342684, -192, -324, -384, -648 ], 
  [ 1224, -9, -18, -18, -36672, -6481344, -1296 ], 
  [ 1224, -9, -18, -18, -36, -192216, -384432 ], 
  [ 12, -1, -2, -45, -9045902400, -2400 ], 
  [ 12, -1, -22754, -27, -54, -19201920 ], 
  [ 1, -12, -2375, -375750, -750054000, -5400 ], 
  [ 1, -12, -239, -3978, -780, -6480648 ], 
  [ 1, -1, -1175, -75, -75750000 ], 
  [ 1, -12, -2, -2121, -424202520, -252 ], 
  [ 1, -1, -11, -212121, -210000 ] ] ],
##
[[1,5,9,13,17,19,25,33,46,52,113,117,119,120,124,125,132],
"$2^7:S_6(2) \\rightarrow (Fi_{22}.2,14)$",
[ [ 121352701260230425204608864017280302404536090720
      241920430080483840725760 ], 
  [ 12, -15, -302106244201248, -960, -1920504012602520
      -168026880, -3360, -30240 ], 
  [ 12, -27, -54126, -288252, -5762164323024, -2268, -45366048
      -537612096, -9072 ], 
  [ 1257114246120492240840168028813682736120
      -4224240, -4320 ], 
  [ 1236, -60192, -120384192384936, -576, -1152, -960, -768
      -19203456 ], 
  [ 12214230, -9660, -192, -168, -336720180360, -672, -768
      -13442160 ], 
  [ 12275436072000, -432, -432, -8640153600 ], 
  [ 12, -15, -30664813296, -96, -192, -144, -36, -7248, -76896
      864 ], 
  [ 12, -9, -180, -360, -7272144000, -252672, -5040 ], 
  [ 1236, -2412, -4824, -24, -48, -3672144228, -336456
      -432 ], 
  [ 1, -175, -75420384, -420, -3841920, -192005040, -504013440
      0, -134400 ], 
  [ 1, -139, -391080, -1080192, -1920, -144144, -153601536
      0 ], 
  [ 1, -1, -151590144, -90, -144, -2402400180, -180, -2400
      2400 ], 
  [ 1, -19, -9, -4212042, -12072, -720, -5045045040, -504,0],
  [ 1, -1, -151542, -48, -424848, -480, -2522523360
      -3360 ], 
  [ 1, -115, -150, -36036, -1201200004200, -4200 ], 
  [ 1, -1, -33, -18018024, -240108, -108, -19201920 ] ] ],
##
[[1,7,9,17,19,49,58,68,75,88,117,119,121,132,133,150,151],
"${^2F_4(2)^{\\prime}}.2 \\rightarrow (Fi_{22}.2,16)$",
[ [ 1217553510117002340044928140400187200280800374400
      499200449280898560112320022464004492800 ], 
  [ 12, -405, -8109001800, -1728, -1080014400, -2160028800, -19200
      1728034560, -4320000 ], 
  [ 12, -189, -37819803960, -17284320, -72008640, -1440032640
      1382427648, -43200, -8640, -17280 ], 
  [ 121713426121224, -259210083456201669124992, -576
      -115211232, -9216, -18432 ], 
  [ 129919854010801728, -1440, -1440, -2880, -2880, -19202304
      46088640, -2880, -5760 ], 
  [ 1275150, -60, -1205766243841248768, -768384768
      -1728, -768, -1536 ], 
  [ 1227543672, -4320, -2880, -576, -105600, -432864
      1728 ],
  [ 12, -21, -42132264288, -48192, -96384384, -960
      -1920, -8647681536 ], 
  [ 122754, -108, -2160, -4320, -8640153600000 ], 
  [ 12, -45, -90, -36, -72014402880, -192288576864, -576
      -1152 ], 
  [ 1, -1219, -219180, -1800, -168028801680, -288006144, -6144
      03840, -3840 ], 
  [ 1, -175, -75900, -900012000, -120000, -1920192009600
      -9600 ], 
  [ 1, -1, -117117, -156156018722496, -1872, -2496000,0,0,0],
  [ 1, -151, -5112, -120672, -480, -6724800768, -768
      0, -15361536 ], 
  [ 1, -1, -6969180, -1800, -240024000384, -3840, -1920
      1920 ], 
  [ 1, -1, -2121, -60600, -48, -192481920192, -192
      01344, -1344 ], 
  [ 1, -127, -27, -12120, -144192144, -1920, -5765760, -576
      576 ] ] ] ];

MULTFREEINFO.("6.Fi22.2"):=["$6.Fi_{22}.2$",
##
[[1,8,13,15,17,25,29,118,121,151,152,155,158,160,203,204],
"$O_8^+(2):3 \\times 2 \\rightarrow (Fi_{22}.2,6)$",
[ [ 112222231503150630063006720067200134400
      151200302400 ], 
  [ 1122, -2, -2, -2, -450450900, -90024002400, -480000 ], 
  [ 1122222342342684684, -192, -192, -384, -432, -864 ], 
  [ 1122, -2, -2, -2126, -126, -252252672672, -134400 ], 
  [ 1122222, -18, -18, -36, -366726721344, -864, -1728 ], 
  [ 1122222, -18, -18, -36, -36, -192, -192, -384288576 ], 
  [ 1122, -2, -2, -2, -181836, -36, -192, -19238400 ], 
  [ 1, -1, -220000000840, -840000 ], 
  [ 1, -1, -220000000, -240240000 ], 
  [ 11, -1, -12, -1, -1750750, -750, -7500007200, -7200 ], 
  [ 11, -1, -1, -211, -210210, -21021000000 ], 
  [ 11, -1, -12, -1, -17878, -78, -78000, -864864 ], 
  [ 11, -1, -12, -1, -1, -42, -424242000336, -336 ], 
  [ 11, -1, -1, -21130, -3030, -3000000 ], 
  [ 1, -11, -10, -ER(-3), ER(-3), 000000000 ], 
  [ 1, -11, -10, ER(-3), -ER(-3), 000000000 ] ] ],
##
[[1,7,9,17,19,49,58,68,75,88,
  128,129,146155,157,159,170,171,188,189228,229],
"${^2F_4(2)^{\\prime}}.2 \\rightarrow (Fi_{22}.2,16)$",
[ [ 112235107020234004680089856280800374400374400
      374400499200499200561600898560112320011232001797120
      44928008985600 ], 
  [ 1122, -810, -162018003600, -3456, -21600288002880028800
      -19200, -19200, -4320034560, -43200, -432006912000 ], 
  [ 1122, -378, -75639607920, -34568640, -14400, -14400, -14400
      32640326401728027648, -43200, -4320055296, -17280, -34560 ], 
  [ 112234268412242448, -518420166912691269124992
      49924032, -11521123211232, -2304, -18432, -36864 ], 
  [ 1122198396108021603456, -2880, -2880, -2880, -2880
      -1920, -1920, -57604608864086409216, -5760, -11520 ], 
  [ 1122150300, -120, -24011521248768768768, -768, -768
      2496768, -1728, -17281536, -1536, -3072 ], 
  [ 11225410872144, -8640, -576, -576, -576, -1056, -10560
      0, -432, -432017283456 ], 
  [ 1122, -42, -84264528576, -96384384384384384, -192
      -1920, -864, -864, -384015363072 ], 
  [ 112254108, -216, -4320, -86400015361536, -17280
      00000 ], 
  [ 1122, -90, -180, -72, -1440288000, -192, -192576576
      8648641152, -1152, -2304 ], 
  [ 1, -12, -2000000000
    2400+2160*ER(3), -2400-2160*ER(3), 00,
    5400-2160*ER(3), -5400+2160*ER(3), 000 ], 
  [ 1, -12, -2000000000
    2400-2160*ER(3), -2400+2160*ER(3), 00,
    5400+2160*ER(3), -5400-2160*ER(3), 000 ], 
  [ 1, -12, -2000000000, -19219200, -4324320
      00 ], 
  [ 11, -1, -1438, -438360, -3600, -33605760, -2880, -288000
      33601228800, -122887680, -7680 ], 
  [ 11, -1, -1150, -1501800, -18000240000000, -2400
      -384000384019200, -19200 ], 
  [ 11, -1, -1, -234234, -312312037444992, -2496, -249600
      -3744000000 ], 
  [ 11, -1, -1102, -10224, -2401344, -96048048000, -1344
      153600, -1536, -30723072 ], 
  [ 11, -1, -1, -138138360, -3600, -480000004807680
      0, -768, -38403840 ], 
  [ 11, -1, -1, -4242, -1201200, -96, -3841921920096384
      00, -3842688, -2688 ], 
  [ 11, -1, -154, -54, -24240, -288384, -192, -19200288
      -1152001152, -11521152 ], 
  [ 1, -1, -110000000
    120*ER(-39), -120*ER(-39), 000000000 ],
  [ 1, -1, -110000000,
    -120*ER(-39), 120*ER(-39), 000000000 ] ] ],
##
[[1,7,9,17,19,49,58,68,75,88,
  128,129,146,155,157,159,170,171,188,189,228,229],
"${^2F_4(2)^{\\prime}}.2 \\rightarrow (Fi_{22}.2,16)$",
[ [ 112235107020234004680089856280800374400374400
      374400499200499200561600898560112320011232001797120
      44928008985600 ], 
  [ 1122, -810, -162018003600, -3456, -21600288002880028800
      -19200, -19200, -4320034560, -43200, -432006912000 ], 
  [ 1122, -378, -75639607920, -34568640, -14400, -14400, -14400
      32640326401728027648, -43200, -4320055296, -17280, -34560 ], 
  [ 112234268412242448, -518420166912691269124992
      49924032, -11521123211232, -2304, -18432, -36864 ], 
  [ 1122198396108021603456, -2880, -2880, -2880, -2880
      -1920, -1920, -57604608864086409216, -5760, -11520 ], 
  [ 1122150300, -120, -24011521248768768768, -768, -768
      2496768, -1728, -17281536, -1536, -3072 ], 
  [ 11225410872144, -8640, -576, -576, -576, -1056, -10560
      0, -432, -432017283456 ], 
  [ 1122, -42, -84264528576, -96384384384384384, -192
      -1920, -864, -864, -384015363072 ], 
  [ 112254108, -216, -4320, -86400015361536, -17280
      00000 ], 
  [ 1122, -90, -180, -72, -1440288000, -192, -192576576
      8648641152, -1152, -2304 ], 
  [ 1, -12, -2000000000
    2400-2160*ER(3), -2400+2160*ER(3), 00,
    5400+2160*ER(3), -5400-2160*ER(3), 000 ], 
  [ 1, -12, -2000000000
    2400+2160*ER(3), -2400-2160*ER(3), 00,
    5400-2160*ER(3), -5400+2160*ER(3), 000 ], 
  [ 1, -12, -2000000000, -19219200, -4324320
      00 ], 
  [ 11, -1, -1438, -438360, -3600, -33605760, -2880, -288000
      33601228800, -122887680, -7680 ], 
  [ 11, -1, -1150, -1501800, -18000240000000, -2400
      -384000384019200, -19200 ], 
  [ 11, -1, -1, -234234, -312312037444992, -2496, -249600
      -3744000000 ], 
  [ 11, -1, -1102, -10224, -2401344, -96048048000, -1344
      153600, -1536, -30723072 ], 
  [ 11, -1, -1, -138138360, -3600, -480000004807680
      0, -768, -38403840 ], 
  [ 11, -1, -1, -4242, -1201200, -96, -3841921920096384
      00, -3842688, -2688 ], 
  [ 11, -1, -154, -54, -24240, -288384, -192, -19200288
      -1152001152, -11521152 ], 
  [ 1, -1, -110000000
    120*ER(-39), -120*ER(-39), 000000000 ],
  [ 1, -1, -110000000,
    -120*ER(-39), 120*ER(-39), 000000000 ] ] ] ];

MULTFREEINFO.("Isoclinic(6.Fi22.2)"):=["$(6.Fi_{22}.2)^*$",
##
[[1,7,13,16,17,25,30,118,121,157,162,209],
"$O_8^+(2):S_3 \\rightarrow (Fi_{22}.2,7)$",
[ [ 112263150630094506720067200134400453600 ], 
  [ 1122, -6, -450, -900135024002400, -48000 ], 
  [ 112263426841026, -192, -192, -384, -1296 ], 
  [ 1122, -6126252, -378672672, -13440 ], 
  [ 11226, -18, -36, -546726721344, -2592 ], 
  [ 11226, -18, -36, -54, -192, -192, -384864 ], 
  [ 1122, -6, -18, -3654, -192, -1923840 ], 
  [ 1, -1, -220000, -84084000 ], 
  [ 1, -1, -220000240, -24000 ], 
  [ 11, -1, -10150, -15000000 ], 
  [ 11, -1, -10, -424200000 ], 
  [ 1, -11, -100000000 ] ] ],
##
[[1,7,13,16,17,25,30,118,121,157,162,209],
"$O_8^+(2):S_3 \\rightarrow (Fi_{22}.2,7)$",
[ [ 112263150630094506720067200134400453600 ], 
  [ 1122, -6, -450, -900135024002400, -48000 ], 
  [ 112263426841026, -192, -192, -384, -1296 ], 
  [ 1122, -6126252, -378672672, -13440 ], 
  [ 11226, -18, -36, -546726721344, -2592 ], 
  [ 11226, -18, -36, -54, -192, -192, -384864 ], 
  [ 1122, -6, -18, -3654, -192, -1923840 ], 
  [ 1, -1, -220000, -84084000 ], 
  [ 1, -1, -220000240, -24000 ], 
  [ 11, -1, -10150, -15000000 ], 
  [ 11, -1, -10, -424200000 ], 
  [ 1, -11, -100000000 ] ] ],
##
[[1,7,13,16,17,25,30,118,121,151,152,155,158,160,203,204],
"$O_8^+(2):S_3 \\rightarrow (Fi_{22}.2,7)$",
[ [ 112222231503150630063006720067200134400
      151200302400 ], 
  [ 1122, -2, -2, -2, -450450900, -90024002400, -480000 ], 
  [ 1122222342342684684, -192, -192, -384, -432, -864 ], 
  [ 1122, -2, -2, -2126, -126, -252252672672, -134400 ], 
  [ 1122222, -18, -18, -36, -366726721344, -864, -1728 ], 
  [ 1122222, -18, -18, -36, -36, -192, -192, -384288576 ], 
  [ 1122, -2, -2, -2, -181836, -36, -192, -19238400 ], 
  [ 1, -1, -220000000840, -840000 ], 
  [ 1, -1, -220000000, -240240000 ], 
  [ 11, -1, -12, -1, -1750750, -750, -7500007200, -7200 ], 
  [ 11, -1, -1, -211, -210210, -21021000000 ], 
  [ 11, -1, -12, -1, -17878, -78, -78000, -864864 ], 
  [ 11, -1, -12, -1, -1, -42, -424242000336, -336 ], 
  [ 11, -1, -1, -21130, -3030, -3000000 ], 
  [ 1, -11, -10, -ER(-3), ER(-3), 000000000 ], 
  [ 1, -11, -10, ER(-3), -ER(-3), 000000000 ] ] ] ];

MULTFREEINFO.("3.F3+.2"):=["$3.F_{3+}.2$",
##
[[1,5,7,184,186],"$Fi_{23} \\times 2 \\rightarrow (F_{3+}.2,1)$",
[ [ 123167163342825792 ], 
  [ 12351702, -1056 ], 
  [ 12, -81, -162240 ],
  [ 1, -13519, -35190 ],
  [ 1, -1, -990 ] ] ],
##
[[1,4,5,7,10,15,21,26,28,37,44,48,51,54,73,75,83,
  184,185,186,188,189,191,192,194,198,206,218,221,223],
 "$O_{10}^-(2).2 \\rightarrow (F_{3+}.2,3)$",
[ [ 1275735104448208896157080031416001277337625546752
      459571206785856091914240107233280135717120214466560
      263208960526417920581644800108573696017371791362171473920
      5147197440542868480072382464001029439488010857369600
      14476492800173717913603474358272037902090240 ], 
  [ 12, -15147, -13056, -2611215708031416079833615966722010624
      -33929284021248, -1340416, -6785856, -2680832, -3290112, -6580224
      1454112027143424, -542868485428684880424960, -67858560
      -90478080160849920, -135717120, -180956160108573696217147392
      -118444032 ], 
  [ 1252651675233504145740291480145152290304, -145920
      1955016, -291840410278439100328205568, -1983744, -3967488
      491832016284240711244832568480, -1073049630119040, -7197120
      -2146099260238080, -14394240798336015966720, -134120448 ], 
  [ 1295855664113282730054600, -266112, -532224798720, -302400
      1597440546560, -6048001093120241920048384006933600, -393120
      6483456, -786240, -53760005443200, -22377600, -1075200010886400
      -44755200, -6289920, -1257984063866880 ], 
  [ 12, -445585441708856100112200, -57024, -114048337920178200
      6758401168640356400233728014688002937600, -53460001568160
      -98081283136320591360014256001900800118272002851200
      3801600, -15966720, -3193344021150720 ], 
  [ 126237, -2256, -45122640052800, -14256, -2851248998428512
      979968, -25696057024, -513920, -1237248, -2474496, -21384001012176
      695692820243523480576, -498960, -6652806961152, -997920
      -1330560, -6044544, -120890886220800 ], 
  [ 1224571776355210020200405529611059226304129816
      52608, -75520259632, -15104026265652531253784020304485568
      40608561408, -5443206652801122816, -10886401330560, -867456
      -1734912, -1762560 ], 
  [ 12, -567, -2688, -537619380387601684833696, -37056, -132840
      -74112, -65152, -265680, -130304691201382401944045619267392
      912384, -652800, -149040501120, -1305600, -2980801002240, -508032
      -10160641368576 ], 
  [ 12, -135307261441434028680, -1728, -3456, -3072026136
      -6144011110452272222208, -100224, -200448, -6480, -120960
      200448, -241920, -316416, -85536017280, -632832, -171072034560
      55296011059201907712 ], 
  [ 12, -1917, -708, -141627305460, -16632, -332643494415120
      69888, -683230240, -13664, -30240, -60480173340, -9828, -202608
      -19656, -84000, -68040279720, -168000, -136080559440, -39312
      -78624, -199584 ], 
  [ 12513912182415963192, -6912, -13824, -6528, -21816, -13056
      -2944, -43632, -5888, -6912, -1382471280, -341283456, -68256
      16742412441663936334848248832127872, -152064, -304128
      -456192 ], 
  [ 12837, -816, -163230006000, -5616, -1123238447527682240
      950444802419248384, -64800, -5486444928, -1097283609619440
      -604807219238880, -120960210816421632, -518400 ], 
  [ 12, -9455881176111022204752950410320, -432020640
      -10720, -8640, -21440864017280, -59940, -25380, -8208, -50760
      -5808077760, -50760, -116160155520, -101520151200302400
      -246240 ], 
  [ 1211614896, -780, -15603456691212480, -7560249607424
      -1512014848, -6912, -138249072, -5616, -53568, -11232, -74496
      -1555263936, -148992, -311041278724492889856, -20736 ], 
  [ 12, -297, -276, -552306034566912, -1776, -1728, -35527424
      -345614848, -6912, -1382417820, -201964752, -403923696019440
      -118807392038880, -23760, -48384, -9676849248 ], 
  [ 121894896192384, -432, -864, -30726048, -6144, -8128
      12096, -16256, -6912, -13824, -25929936, -3801619872, -12288
      19440, -29376, -2457638880, -58752, -17280, -34560165888 ], 
  [ 12, -1354896, -780, -1560, -1728, -3456, -480, -1080, -9602240
      -21604480864017280, -6480151203715230240, -1920, -38880
      17280, -3840, -7776034560864017280, -51840 ], 
  [ 1, -1035904, -35904392700, -392700, -7983367983362872320
      8482320, -287232016755200, -8482320, -16755200, -822528082252800
      1017878400, -101787840, -160849920339292800, -226195200160849920
      -339292800226195200542868480, -5428684800 ], 
  [ 1, -10, -8160816089760, -89760, -413424413424933504, -1332936
      -933504, -69414413329366941444465152, -44651520101787840
      -10178784, -36765696, -20599920355449603676569620599920
      -3554496019388160, -193881600 ], 
  [ 1, -1011208, -1120884000, -8400090720, -9072049920703080
      -499201937600, -703080, -1937600665280, -665280051030000
      -510300013009920589680018295200, -13009920, -5896800, -18295200
      -834624083462400 ], 
  [ 1, -10, -3984398432340, -323400014784, -299376, -14784
      -142912299376142912, -495936495936014968800, -1496880
      2188032, -1995840, -1663200, -2188032199584016632001197504
      -11975040 ], 
  [ 1, -104440, -444024240, -24240, -2332823328, -4224091368
      42240261440, -91368, -2614401728, -17280680400, -68040
      -1026048, -1412640, -1740960102604814126401740960, -2021760
      20217600 ], 
  [ 1, -10, -110411047860, -786067392, -6739210694432400
      -106944, -53056, -3240053056292032, -2920320816480, -81648
      215808, -51840, -833760, -21580851840833760, -4613764613760 ], 
  [ 1, -101704, -17044800, -480014688, -1468849920, -57240, -49920
      3680057240, -36800, -95040950400, -1717200171720, -168960
      194400237600168960, -194400, -23760017280, -172800 ], 
  [ 1, -10336, -3364260, -4260, -23328233284934458320, -49344
      -70336, -5832070336, -70848708480427680, -42768, -37632
      1425607344037632, -142560, -73440, -5132165132160 ], 
  [ 1, -10, -110411045340, -5340, -21602160, -14016, -993614016
      -46729936467213824, -138240, -45360045360, -58368174960
      4320058368, -174960, -43200, -1589761589760 ], 
  [ 1, -10912, -9122568, -2568864, -864, -998466969984, -16768
      -66961676813824, -138240, -2721602721670656, -3369643200
      -7065633696, -43200324864, -3248640 ], 
  [ 1, -10192, -192, -492492, -345634561536, -7344, -1536512
      7344, -51213824, -13824051840, -51842457631104, -34560
      -24576, -3110434560, -55296552960 ], 
  [ 1, -10, -240240, -6060, -86486432643024, -32645696, -3024
      -5696, -172817280, -1425601425617664, -388804320, -17664
      38880, -432095040, -950400 ], 
  [ 1, -1030, -30, -3303302376, -2376, -267614042676, -2404
      -14042404, -658865880124740, -12474, -2661648609180
      26616, -4860, -9180, -52380523800 ] ] ] ];

MakeImmutable( MULTFREEINFO );

#############################################################################
##
#E


[Verzeichnis aufwärts1.135unsichere VerbindungÜbersetzung europäischer Sprachen durch Browser2026-06-23]

                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik