blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
21 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
141k
586M
star_events_count
int64
0
30.4k
fork_events_count
int64
0
9.67k
gha_license_id
stringclasses
8 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
50 values
src_encoding
stringclasses
23 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
29 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
08e0672c8639d7ee06eba16644eb8e71fc1a8244
40384c4066dda9a87b764f8c78f44f4b87a9af5f
/TDMA.sci
f6169a67c1f14853fc97a490e77f27341c29616b
[]
no_license
SergioNoivak/Calculo-Numerico
97866ab7ead8ee4b8f5dd4aacaea411b6eebd5e5
25be9c05a5331bfd053433a09f77a4d9b76c3bb7
refs/heads/master
2021-01-02T22:41:21.556896
2018-08-19T22:44:55
2018-08-19T22:44:55
99,368,088
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,716
sci
TDMA.sci
clear clc //==========Método de Thomas TDMA================// function vetor(C) hj=length(C) [KEY]=check(C) if KEY>0 then for i=1:hj tabela10 (C(i)) //mprintf("\n") //inserir essa formatacao se o vetor ficar muito grande end else for i=1:hj tabela (C(i)) mprintf("\n")//inserir essa formatacao se o vetor ficar muito grande end end disp("") endfunction function [KEY] = check(A) KEY=0; hj=length(A) if hj>length(B) then hj=length(B) for i=1:hj for j=1:hj if (A(i,j)>=10) then KEY=1; end end end else for i=1:hj if (A(i)>=10) then KEY=1; end end end endfunction function tabela (A) if A==-0.0 then A=0.0; end if A<0 then mprintf (" %1.6f",A); else mprintf (" %1.6f",A); end; endfunction; function tabela10 (A) if A==-0.0 then A=0.0; end if A<0 then if A<=-10 then mprintf (" %1.6f",A); else mprintf (" %1.6f",A); end else if A>=10 then mprintf (" %1.6f",A); else mprintf (" %1.6f",A); end end; endfunction; mprintf ("//////////////////////Método de Thomas TDMA//////////////////////"); disp (""); //Definição das diagonais principais!!!! A = [-1,-1,-1,-1,-1,-1,-1,-1]; //Diagonal em cima da principal B = [2,2,2,2,2,2,2,2,2,2];//Diagonal principal C = [-1,-1,-1,-1,-1,-1,-1,-1];//Diagonal em baixo da principal D = [4,4,2,2,1,2,2,4,4];//vetor n = length(A)-1; C(1) = C(1) / B(1); D(1) = D(1) / B(1); mprintf("////////////////////////////////K = 1\n") mprintf("//////////Vetor C em K=1\n") vetor(C) mprintf("//////////Vetor D em K=1\n") vetor(D) for i = 2:n-1 temp = B(i) - A(i) * C(i-1); C(i) = C(i) / temp; D(i) = (D(i) - A(i) * D(i-1))/temp; mprintf("////////////////////////////////K = %d\n", i) mprintf("//////////Vetor C\n") vetor(C) mprintf("//////////Vetor D\n") vetor(D) end disp(C) mprintf("B(n)=%f - A(n)=%f - C(n-1)=%f - %f\n\n", B(n), A(n), C(n-1),( (B(n) - A(n)) * C(n-1))) D(n) = (D(n) - A(n) * D(n-1))/(B(n) - A(n) * C(n-1)); //Retrosubstituição mprintf("\naaaaaaaaaaaaaa----\n") vetor(D) mprintf("\naaaaaaaaaaaaaa----\n") mprintf("\n//////Retrosubstituição\n\n") X(n) = D(n); mprintf("//////////Vetor em K=%d\n", n) vetor(X) for i = n-1:-1:1 X(i) = D(i) - C(i) * X(i + 1); mprintf("//////////Vetor em K=%d\n", i) vetor(X) end mprintf("/////////////////Vetor solução:\n\n"); vetor(X);
8094f78fc08a1897b7008bfbef6e91c92e77337a
449d555969bfd7befe906877abab098c6e63a0e8
/2741/CH10/EX10.42/ExampleA42.sce
cb2f90b74b64dbbe4e0f1e15e94a3751de48b07a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
840
sce
ExampleA42.sce
clc clear //Page number 488 //Input data d=7.7*10^3;//The density of aluminium in kg/m^3 w=27;//The atomic weight of Al in kg/k.mol N=6.023*10^26;//The number of free electrons in Al k=1.38*10^-23;//The boltzmann constant in J/K h=6.62*10^-34;//Planks constant in J.s m=9.1*10^-31;//The given mass of electrons in kg pi=3.14;//The mathematical constant of pi //Calculations V=w/d;//The volume occupied by Al in m^3/k.mol E=(((3*(N/V))/pi)^(2/3))*(h^2)*(1/8)*(1/m);//The fermi energy for aluminium in J EF=E/(1.6*10^-19);//The fermi energy for aluminium in eV p=(2/3)*(N/V)*(E);//The pressure of electrons in aluminium at absolute zero in N/m^2 //Output printf('The fermi energy for aluminium at absolute zero is %3.3f eV \n The pressure of electrons in aluminium at absolute zero is %3.4g N/m^2',EF,p)
4963a794f297de3db6750caf05e21964ef16180d
b6afd72138cc9b10fdb8d6cc49ee5f89ff47020e
/tp/decentre.sci
3cf62321e616252aa1694079e82c02a8a01f542a
[]
no_license
zhongming-unice/numerical-method
a38eb7fc555b5f8e8ffbd74613e8911eeb97e3ed
8b82c67598000e715d003dc2a0a7afbfcdbf2618
refs/heads/master
2020-05-04T11:55:25.504216
2019-04-10T15:45:59
2019-04-10T15:45:59
179,118,358
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,727
sci
decentre.sci
// author : ZHONG Ming // equation de transport: schema Euler Decentre, Lax_Friedrichs, Lax-Wendroff clear() sigma = 0.1 x0 = 0.25 m = 7 c = 1 function y=Uinit(x) // y = exp(-(x-x0)**2/sigma**2) // y = sin((m*%pi*x)) + sin((m*%pi*x)/3) if x < x0 then y = 1; else y = 0; end endfunction function y=Uexact(x,t) y = Uinit(x-c*t) endfunction function y=a(t) y= Uexact(0,t) endfunction function y=b(t) y= Uexact(1,t) endfunction //la condition CFL : lambda = c * dt / dx lambda = 0.3 //la discrétisation du problème en espace : //Espace total : L = 1 //Nombre de points d'espace : Nx = 50 //Pas d ' espace : dx = L / Nx //la discrétisation du problème en temps : //Temps initial : T0 = 0 //Nombre de points de temps : Nt = 20 //Pas de temps : dt = lambda * dx / c //Temps final : Tfin = T0 + dt * Nt //valeur V_dec=zeros(Nx+1,Nt) V_laxf=zeros(Nx+1,Nt) V_laxw=zeros(Nx+1,Nt) x = linspace(0,L,Nx+1) t = linspace(T0,Tfin,Nt) //quand t = n, x = 0,1,2,...,Nx U_dec_n=zeros(Nx+1,1) U_laxf_n=zeros(Nx+1,1) U_laxw_n=zeros(Nx+1,1) //quand t = n+1, x = 0,1,2,...,Nx U_dec_np1=zeros(Nx+1,1) U_laxf_n=zeros(Nx+1,1) U_laxw_n=zeros(Nx+1,1) for n = 1:Nt U_dec_np1(1)=a(t(n)) U_dec_np1(Nx+1)=b(t(n)) U_laxf_np1(1)=a(t(n)) U_laxf_np1(Nx+1)=b(t(n)) U_laxw_np1(1)=a(t(n)) U_laxw_np1(Nx+1)=b(t(n)) for j=2:Nx U_dec_np1(j) = c*dt/dx*(U_dec_n(j-1)-U_dec_np1(j)) + U_dec_n(j) U_laxf_np1(j) = 0.5*(U_laxf_n(j-1)+U_laxf_n(j+1)) - c*dt/2/dx*(U_laxf_n(j+1)-U_laxf_n(j-1)) U_laxw_np1(j) = U_laxw_n(j) - c*dt/2/dx*(U_laxw_n(j+1)-U_laxw_n(j-1)) + c^2*dt^2/2/dx^2*(U_laxw_n(j+1)-2*U_laxw_n(j)+U_laxw_n(j-1)) end // if norm(U_dec_np1-U_dec_n) < 0.005 // then break // end U_dec_n = U_dec_np1 U_laxf_n = U_laxf_np1 U_laxw_n = U_laxw_np1 V_dec(:,n) = U_dec_n V_laxf(:,n) = U_laxf_n V_laxw(:,n) = U_laxw_n end //valeur exacte VE=zeros(Nx+1,Nt) for i=1:Nt for j=1:Nx+1 VE(j,i)=Uexact(x(j),t(n)) end end y = linspace(0,L,Nx+1) for i=1:Nx+1 y(i) = Uexact(x(i),0.15) end scf(1) plot2d(x,U_dec_np1,style=1) plot2d(x,U_laxf_np1,style=2) plot2d(x,U_laxw_np1,style=3) plot2d(x,y,style=6) legend("Decentre","Lax_Friedrichs","Lax-Wendroff","Valeur exacte") //l'erreur en fonction des pas de temps for j=1:Nt err_dec_t(j)=norm(VE(:,j)-V_dec(:,j),2) err_laxf_t(j)=norm(VE(:,j)-V_laxf(:,j),2) err_laxw_t(j)=norm(VE(:,j)-V_laxw(:,j),2) end scf(3) xtitle("erreur en fonction des pas de temps") plot2d(t,err_dec_t,style=11) plot2d(t,err_laxf_t,style=12) plot2d(t,err_laxw_t,style=13) legend("Decentre","Lax_Friedrichs","Lax-Wendroff")
9e79103cf13050f2588dff390d3d325ee29d213f
449d555969bfd7befe906877abab098c6e63a0e8
/1631/CH9/EX9.44/Ex9_44.sce
572c605116a13e6eaf5ab215be1e991fa075cce2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
464
sce
Ex9_44.sce
//Caption: efficiency //Example 9.44 //page no 436 //Find efficiency of the code clear; clc; px1=1/2; px2=1/4; px3=1/8; px4=1/8; n1=1 n2=2; n3=3; n4=3; //information content of each symbol Ix1=-log2(px1); Ix2=-log2(px2); Ix3=-log2(px3); Ix4=-log2(px4); HX=px1*log2(1/px1)+px2*log2(1/px2)+px3*log2(1/px3)+px4*log2(1/px4); L=px1*n1+px2*n2+px3*n3+px4*n4; n=HX/L; printf("\n\tcode efficiency = %.2f ",n*100); disp(" %");
bcbf19a2a4a207a06b8054e08fbe2708b0a8324c
449d555969bfd7befe906877abab098c6e63a0e8
/564/DEPENDENCIES/1_02data.sci
33e6a6333ffbaa251950c07c80bd713c80ce9e93
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
186
sci
1_02data.sci
t=1.5;//given(in mm) d=60;//given(in mm) T=1200*10^3;//in N.mm, given(in N.m) Load=50*10^3;//Compressive load(N) angle= %pi/3;//angle of plane with axis(radian) theta=%pi/2 - angle;
f6f26e10c06ad898b12be586836daf292abd9fef
449d555969bfd7befe906877abab098c6e63a0e8
/3507/CH1/EX1.8/Ex1_8.sce
4198f2ee1f963a94c902c90f1c26f4853b94197b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
768
sce
Ex1_8.sce
//chapter1 //example1.8 //page21 R=8 // ohm R1=10 // ohm R2=20 // ohm R3=12 // ohm //removing 100 ohm resistance, we form linear equations by assuming currents I1 through loop1 and I2 through loop2 //100=10*I1+20*(I1-I2) //0=(12+8)*I2+20*(I2-I1) //thus we get the following linear equations //30*I1-20*I2=100 //-20*I1+40*I2=0 //solving these equations a=[30 -20;-20 40] b=[100;0] x=inv(a)*b // matrix of I1 and I2 I2=x(2,1) // current through 8 ohm resistor E0=I2*R printf("voltage across AB with 100 ohm resistance not connected = %.3f V \n",E0) R_equi=(R1*R2/(R1+R2))+R3 R0=R_equi*R/(R_equi+R) printf("resistance between AB with 100 ohm removed and voltage source shorted = %.3f ohm \n",R0) I=E0/(R0+R1) printf("current through 100 ohm resistor = %.3f A",I)
852c07fd9e5602f208e8bbefa40653c68124c20f
449d555969bfd7befe906877abab098c6e63a0e8
/911/CH6/EX6.5/ex_6_5.sce
4532c15b0d7d6adb91e1c6d848eb5e109683e403
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
122
sce
ex_6_5.sce
//example 6.5// clc //clears the screen// clear //clears all existing variables// disp('X=A''B+AB''') disp('Y = AB')
95b622fdcca2d4af2fc88a54119d796079747f59
449d555969bfd7befe906877abab098c6e63a0e8
/2504/CH11/EX11.3/11_3.sce
55e867aac2a85d9db1b4a746107f7defd86cf3a6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
432
sce
11_3.sce
clc //initialisation of variables clear a= 154 //degrees vbm= 38 //ft/sec bom= 147 //degrees vwm= -7.78 //ft/sec w= 62.4 //lbf/ft^3 g= 32.2 //ft/sec^2 vb= 38 //ft/sec A= 4.18 //ft^2 e= 0.95 //CALCULATIONS vat= (vwm-vb)*tand(bom) Q= vat*A a1= acotd(-vbm/vat) imt= a1-a C= w*Q*vwm*e/g //RESULTS printf ('Flow rate = %.1f ft^3',Q) printf ('\n Incidence angle= %.f degrees',imt) printf ('\n Torque= %.f lbf ft',C)
7de78f932728e847440a2d33eece4317b5c9dba6
59b742e36fbe9d77cb51ec949c6625f665133d2b
/Resultados/results_LocGlo_12/results/12/l20-4/result3s0.tst
bdb4f501497b7f2ccdb45c79740441a0ff577e72
[]
no_license
Tiburtzio/TFG
3132fd045de3a0e911e2c9e23e9c46e1075a3274
864ce4dd00b7f8fe90eafa65b11d799c5907177e
refs/heads/master
2023-01-03T12:44:56.269655
2020-10-24T18:37:02
2020-10-24T18:37:02
275,638,403
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,539
tst
result3s0.tst
@relation unknow @attribute at1 real[0.0,100.0] @attribute at2 real[0.0,100.0] @attribute at3 real[0.0,100.0] @attribute at4 real[0.0,100.0] @attribute at5 real[0.0,100.0] @attribute at6 real[0.0,100.0] @attribute at7 real[0.0,100.0] @attribute at8 real[0.0,100.0] @attribute at9 real[0.0,100.0] @attribute at10 real[0.0,100.0] @attribute at11 real[0.0,100.0] @attribute at12 real[0.0,100.0] @attribute at13 real[0.0,100.0] @attribute at14 real[0.0,100.0] @attribute at15 real[0.0,100.0] @attribute at16 real[0.0,100.0] @attribute class{0,1,2,3,4,5,6,7,8,9} @inputs at1,at2,at3,at4,at5,at6,at7,at8,at9,at10,at11,at12,at13,at14,at15,at16 @outputs class @data 0 0 9 9 2 2 1 1 0 0 2 2 0 0 2 2 3 3 5 5 7 7 8 8 8 8 1 1 7 7 9 8 8 4 4 4 4 0 7 7 0 0 5 5 9 9 7 7 8 8 6 6 0 0 2 2 0 0 1 1 1 1 4 4 4 4 7 7 9 9 6 6 8 8 0 0 1 3 9 9 6 6 7 7 5 5 9 9 8 8 7 7 0 0 4 4 3 3 1 1 9 5 7 7 9 9 5 5 8 8 9 9 5 5 7 7 1 1 1 1 2 2 9 9 1 1 8 8 7 7 7 7 6 6 2 2 8 8 9 9 3 3 0 0 1 1 5 5 7 7 3 3 7 1 6 6 1 1 5 5 2 2 0 0 6 6 9 9 9 9 8 8 1 1 7 7 7 7 6 6 1 1 5 5 0 0 5 5 0 0 4 4 0 0 6 6 3 3 5 5 1 1 8 8 3 3 6 6 6 6 2 2 5 5 6 6 0 0 6 6 8 8 4 6 8 8 2 2 9 9 6 6 5 5 0 0 6 6 3 3 2 2 9 9 8 8 3 3 1 1 3 3 6 6 3 9 1 1 4 4 3 3 4 4 5 5 2 2 4 4 9 9 2 2 6 6 0 0 6 6 4 4 5 5 4 4 5 9 3 3 4 4 3 3 8 8 2 2 0 0 9 9 0 8 1 2 2 2 2 2 7 7 3 3 1 1 0 0 4 4 7 7 0 0 3 3 4 4 3 3 9 9 0 0 5 5 2 2 4 4 7 7 7 7 5 5 3 3 8 8 3 3 0 0 1 1 3 3 3 3 4 4 6 6 7 7 9 9 0 0 4 4 1 1 8 8 4 4 2 2 1 2 5 5 1 2 8 8 3 3 6 6 9 9 8 8 5 9 1 2 9 5 5 5 8 8 2 2 3 3 7 7 6 6 5 5 8 8 7 7 6 6 2 2 4 4 5 5 4 4 2 2 2 2 4 4 7 1 2 2
d6b5cc3d26e833a7edd84fffb1454bd6fe260df5
449d555969bfd7befe906877abab098c6e63a0e8
/3472/CH18/EX18.13/Example18_13.sce
b53c5fc0db1a63dbaab046abffab7e60d8d4f96b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
3,348
sce
Example18_13.sce
// A Texbook on POWER SYSTEM ENGINEERING // A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar // DHANPAT RAI & Co. // SECOND EDITION // PART II : TRANSMISSION AND DISTRIBUTION // CHAPTER 11: LOAD FREQUENCY CONTROL AND LOAD SHARING OF POWER GENERATING SOURCES // EXAMPLE : 11.13 : // Page number 337-338 clear ; clc ; close ; // Clear the work space and console // Given data l = 20.0 // Length of cable(km) r = 0.248 // Resistance(ohm/km) x = 0.50*10**-3 // Inductance(H/m) V_gen = 6600.0 // Generation voltage(V) f = 50.0 // Frequency(Hz) V = 33000.0 // Transmission voltage(V) rating = 10.0 // Transformer rating(MVA) loss_cu = 100.0 // Copper loss at full load(kW) x_tr = 2.5/100 // Transformer reactance load = 7.5 // Load to be transmitted(MW) PF = 0.71 // Lagging power factor // Calculations R = l*r // Resistance of the cable(ohm) I_fl = rating*10**6/(3**0.5*V) // Transformer current at full load(A) R_eq = loss_cu*1000/(3*I_fl**2) // Equivalent resistance per phase of transformer(ohm) R_total_hv = R+2.0*R_eq // Total resistance per conductor in terms of hv side(ohm) X = 2.0*%pi*f*l*x // Reactance of cable per conductor(ohm) per_X_tr = V/3**0.5*x_tr/I_fl // % reactance of transformer(ohm) X_total_hv = X+2.0*per_X_tr // Total reactance per conductor in terms of hv side(ohm) I = load*10**6/(3**0.5*V*PF) // Line current at receiving end(A) IR = I*R_total_hv // IR drop(V) IX = I*X_total_hv // IX drop(V) E_r = V/3**0.5 // Phase voltage at station B(V) cos_phi_r = PF sin_phi_r = (1-PF**2)**0.5 E_s = ((E_r*cos_phi_r+IR)**2+(E_r*sin_phi_r+IX)**2)**0.5/1000 // Sending end voltage(kV) E_s_ll = 3**0.5*E_s // Sending end line voltage(kV) V_booster = 3**0.5*(E_s-E_r/1000) // Booster voltage between lines(kV) tan_phi_s = (E_r*sin_phi_r+IX)/(E_r*cos_phi_r+IR) // tanΦ_s phi_s = atand(tan_phi_s) // Φ_s(°) cos_phi_s = cosd(phi_s) // cosΦ_s P_s = 3.0*E_s*I*cos_phi_s // Power at sending end(kW) loss = P_s-load*1000 // Loss(kW) loss_per = loss/(load*1000)*100 // loss percentage // Results disp("PART II - EXAMPLE : 11.13 : SOLUTION :-") printf("\nLoss in the interconnector as a percentage of power received = %.3f percent", loss_per) printf("\nRequired voltage of the booster = %.3f kV (in terms of H.V) \n", V_booster) printf("\nNOTE: Changes in the obtained answer from that of textbook is due to more precision here") printf("\n kVA rating of booster is not calculated in textbook and here")
16ff8c9991c98e10f6ed78736c4026e45d5552d6
b80969c9d72c732b0153d0de2b8fd28dc10d8a16
/Biologie/Site/sauvegarde/28.07.2016/www/Documents/simulation/initation_scilab/chap2_equ_diff/ex4.sci
6c52cd47d27bdb747b37db8d2942dd512b0e467a
[]
no_license
adamdepossylux/stem_cells
6a2596a0734e3604b570cfdaa1e6cb798d13d7b7
e1ffdf24a223fea3a3606a0bd262067edc81f5b9
refs/heads/master
2020-04-01T17:26:21.772875
2017-05-10T15:15:09
2017-05-10T15:15:09
61,795,551
0
0
null
null
null
null
UTF-8
Scilab
false
false
240
sci
ex4.sci
clf x=linspace(0,5,101); y=(10)*exp((1/4)*x)-(6)*exp((-1/4)*x); plot2d(x,y); clf x=linspace(0,5,101); y=exp(-x); plot2d(x,y); clf x=linspace(0,5,101); y=exp((1/2)*x); plot2d(x,y); clf x=linspace(0,5,101); y=exp((1/2)*x^2); plot2d(x,y);
3dec94bd6121c60e20bea6adf03f6bb52b82a5a7
449d555969bfd7befe906877abab098c6e63a0e8
/3886/CH3/EX3.12/Ex3_12.sce
53212d39e82a9d0c5546c31e4397862cb79769b3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
297
sce
Ex3_12.sce
//Horizontal force required at certain height to avoid slipping //Refer fig. 3.23 //applying equilibrium conditions we get //F=RB...(1) //-RB*3+700*2*cotd(60)+100*1.5*cotd(60)+F=0...(2) //Solving (1)&(2) we get F=(700*2+100*1.5)*cotd(60)/2 //N printf("Required force is F=%.2f N",F)
29c0b6c887597ae2bbe949c6e45cfee0be055f19
449d555969bfd7befe906877abab098c6e63a0e8
/3665/CH10/EX10.5/Ex10_5.sce
fb19ac1ffac54f6c0abc7ee9569007e35836d124
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
307
sce
Ex10_5.sce
clc// // // //Variable declaration N=2.7*10^25; //number of atoms(per m^3) epsilon0=8.854*10^-12; epsilon_r=1.0000684; //Calculation alphae=epsilon0*(epsilon_r-1)/N; //electronic polarizability(Fm^2) //Result printf("\n electronic polarizability is %0.3f *10^-41 Fm^2",alphae*10^41)
d52b2230cfec35c1ddb0f7341bc67a8e35c1b7e7
449d555969bfd7befe906877abab098c6e63a0e8
/2087/CH4/EX4.46/example4_46.sce
699006a7ff39faa4c288fc77c6d2a03b1d768ead
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
436
sce
example4_46.sce
//example 4.46 //draw storm hyetograph and intensity duration curve clc;funcprot(0); //given p=[0 5 7.5 8.5 9]; //accumulated precipitation t=[0 30 60 90 120]; //time r(1)=0; mprintf("Rainfall intensity:"); for i=2:5 r(i)=p(i)-p(i-1); //rainfall in succesive 30 min interval I(i)=r(i)*60/30; //rainfall intensity mprintf("\n%f",I(i)); end //graph is plotted between I and t.
9026c07a64a425a0be2b845b549d7f186dc73e4e
e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4
/New LSTMAttn Model/.data/lemma-split/DEVELOPMENT-LANGUAGES/niger-congo/zul.tst
f7757840881780ef60b6afbd2b34759af13e3809
[]
no_license
davidgu13/Lemma-vs-Form-Splits
c154f1c0c7b84ba5b325b17507012d41b9ad5cfe
3cce087f756420523f5a14234d02482452a7bfa5
refs/heads/master
2023-08-01T16:15:52.417307
2021-09-14T20:19:28
2021-09-14T20:19:28
395,023,433
3
0
null
null
null
null
UTF-8
Scilab
false
false
1,822
tst
zul.tst
nquma V;SG;1;PST+RCT nquma V;SG;1;FUT nquma V;SG;1;PST+RMT nquma V;SG;1;PRS nquma V;SG;1;FUT+IMMED nika V;SG;1;PRS nika V;SG;1;PST+RCT nika V;SG;1;PST+RMT nika V;SG;1;FUT nika V;SG;1;FUT+IMMED za V;SG;1;FUT za V;SG;1;PRS za V;SG;1;FUT+IMMED za V;SG;1;PST+RMT za V;SG;1;PST+RCT pheka V;SG;1;FUT+IMMED pheka V;SG;1;PST+RMT pheka V;SG;1;FUT pheka V;SG;1;PRS pheka V;SG;1;PST+RCT fundisa V;SG;1;FUT fundisa V;SG;1;PST+RMT fundisa V;SG;1;PRS fundisa V;SG;1;FUT+IMMED fundisa V;SG;1;PST+RCT bona V;SG;1;FUT bona V;SG;1;PRS bona V;SG;1;FUT+IMMED bona V;SG;1;PST+RMT bona V;SG;1;PST+RCT hlisa V;SG;1;PST+RMT hlisa V;SG;1;PST+RCT hlisa V;SG;1;FUT hlisa V;SG;1;FUT+IMMED hlisa V;SG;1;PRS sebenzisa V;SG;1;PST+RMT sebenzisa V;SG;1;FUT+IMMED sebenzisa V;SG;1;PRS sebenzisa V;SG;1;PST+RCT sebenzisa V;SG;1;FUT ma V;SG;1;FUT ma V;SG;1;PRS ma V;SG;1;FUT+IMMED ma V;SG;1;PST+RCT ma V;SG;1;PST+RMT bamba V;SG;1;PST+RCT bamba V;SG;1;PST+RMT bamba V;SG;1;FUT bamba V;SG;1;PRS bamba V;SG;1;FUT+IMMED khohlwa V;SG;1;PST+RMT khohlwa V;SG;1;PRS khohlwa V;SG;1;PST+RCT khohlwa V;SG;1;FUT+IMMED khohlwa V;SG;1;FUT bulala V;SG;1;PST+RMT bulala V;SG;1;FUT bulala V;SG;1;FUT+IMMED bulala V;SG;1;PST+RCT bulala V;SG;1;PRS phuka V;SG;1;FUT phuka V;SG;1;PST+RMT phuka V;SG;1;PST+RCT phuka V;SG;1;FUT+IMMED phuka V;SG;1;PRS mamatheka V;SG;1;FUT+IMMED mamatheka V;SG;1;PST+RCT mamatheka V;SG;1;PRS mamatheka V;SG;1;PST+RMT mamatheka V;SG;1;FUT qabula V;SG;1;PST+RMT qabula V;SG;1;FUT+IMMED qabula V;SG;1;FUT qabula V;SG;1;PRS qabula V;SG;1;PST+RCT thanda V;SG;1;PST+RCT thanda V;SG;1;PST+RMT thanda V;SG;1;FUT thanda V;SG;1;PRS thanda V;SG;1;FUT+IMMED khetha V;SG;1;PRS khetha V;SG;1;PST+RCT khetha V;SG;1;FUT khetha V;SG;1;FUT+IMMED khetha V;SG;1;PST+RMT dinga V;SG;1;FUT dinga V;SG;1;PRS dinga V;SG;1;FUT+IMMED dinga V;SG;1;PST+RCT dinga V;SG;1;PST+RMT
bf8b0861dcaeb5fb8414332f234ec06a23f55d51
449d555969bfd7befe906877abab098c6e63a0e8
/1238/CH8/EX8.23/8_23.sce
c0c6abf812e0f136a977f633e3088cd19b95a1b5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
247
sce
8_23.sce
//finding aperture time// //example 23// clc //clears the command window//; clear //clears// a=.5;//percentage accuracy// f=1000;//aperture rate// t=a/(2*%pi)*10^-5;//aperture time// disp('aperture time:') disp(t);//displaying result//
15379367cb562a7faa9d79a59a64e176b8969033
a1161d9e9d26e0a7b20c31269be145f13d9d3e89
/QA/tests/ethanol/ethanol_md.tst
3d92f2c3206afc38d4a12c8873d1168b1701c909
[ "LicenseRef-scancode-warranty-disclaimer", "ECL-2.0" ]
permissive
nwchemgit/nwchem
c06e7e1fe11b3afad17b167f29a97c4fa3ad0fda
c5a8125298a6ea7d6eb27b07c196ea8041aa7198
refs/heads/master
2023-09-05T17:18:34.513866
2023-09-02T02:56:47
2023-09-02T02:56:47
111,318,191
425
164
NOASSERTION
2023-09-11T16:34:14
2017-11-19T17:48:21
Fortran
UTF-8
Scilab
false
false
1,500
tst
ethanol_md.tst
Time = 0.001 Temperature = 301.25 Volume = 0.00 Pressure = 1.15E+08 Energy = 0.000E+00 Time = 0.002 Temperature = 300.01 Volume = 8.03 Pressure = 1.14E+08 Energy = -8.873E+03 Time = 0.003 Temperature = 298.74 Volume = 8.03 Pressure = 1.12E+08 Energy = -8.874E+03 Time = 0.004 Temperature = 297.63 Volume = 8.03 Pressure = 1.11E+08 Energy = -8.872E+03 Time = 0.005 Temperature = 296.86 Volume = 8.03 Pressure = 1.09E+08 Energy = -8.872E+03 Time = 0.006 Temperature = 296.58 Volume = 8.03 Pressure = 1.06E+08 Energy = -8.871E+03 Time = 0.007 Temperature = 296.85 Volume = 8.03 Pressure = 1.04E+08 Energy = -8.871E+03 Time = 0.008 Temperature = 297.69 Volume = 8.03 Pressure = 1.01E+08 Energy = -8.870E+03 Time = 0.009 Temperature = 299.03 Volume = 8.04 Pressure = 9.75E+07 Energy = -8.869E+03 Time = 0.010 Temperature = 300.75 Volume = 8.04 Pressure = 9.39E+07 Energy = -8.868E+03
5c2c529bc65e144ca9284be6cac7229dfc654612
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/tweet/bow/bow.1_15.tst
1faffce4a4c24add98fc7a6f66f3e5d8247a4469
[]
no_license
mandar15/NLP_Project
3142cda82d49ba0ea30b580c46bdd0e0348fe3ec
1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2
refs/heads/master
2020-05-20T13:36:05.842840
2013-07-31T06:53:59
2013-07-31T06:53:59
6,534,406
0
1
null
null
null
null
UTF-8
Scilab
false
false
29,233
tst
bow.1_15.tst
1 12:0.01818181818181818 13:0.2 27:0.14285714285714285 36:0.06666666666666667 41:0.2727272727272727 50:1.0 58:0.25 67:1.0 70:0.16666666666666666 82:0.1111111111111111 85:0.3333333333333333 98:0.5 109:0.5 113:1.0 176:0.3333333333333333 197:0.2 230:2.0 341:1.0 381:1.0 405:1.0 438:1.0 473:1.0 497:1.0 500:1.0 506:1.0 522:0.25 535:0.5 619:0.5 708:1.0 712:0.3333333333333333 720:1.0 748:0.5 965:1.0 1090:1.0 1761:1.0 1980:1.0 2035:1.0 2450:1.0 3695:1.0 4841:0.16666666666666666 1 3:1.0 12:0.01818181818181818 20:0.08333333333333333 24:1.0 36:0.06666666666666667 45:0.5 50:1.0 53:0.5 67:1.3333333333333333 75:0.6 85:0.3333333333333333 106:1.0 115:0.5 122:0.2 144:1.0 152:0.3333333333333333 210:1.0 222:1.0 226:0.21428571428571427 230:3.0 249:0.5 296:0.2 376:1.0 398:0.6 473:1.0 501:1.0 601:2.0 619:0.5 621:1.0 712:0.3333333333333333 798:1.0 1054:1.0 1443:1.0 2014:1.0 2139:1.0 2613:1.0 3808:1.0 3996:1.0 6274:1.0 1 24:3.0 27:0.2857142857142857 36:0.06666666666666667 38:1.0 41:0.45454545454545453 47:0.3333333333333333 53:0.5 67:0.6666666666666666 69:0.5 70:0.08333333333333333 75:0.2 77:0.3333333333333333 98:0.5 108:0.3333333333333333 115:0.5 139:1.0 172:1.0 191:0.5 230:2.0 249:0.5 261:0.3333333333333333 305:0.3333333333333333 369:0.5 381:1.0 385:1.0 436:1.0 477:2.0 670:1.0 899:1.0 994:0.5 1167:1.0 1206:2.0 1530:1.0 1747:1.0 1840:1.0 2012:1.0 2560:1.0 3496:1.0 4235:1.0 7080:1.0 1 12:0.01818181818181818 41:0.18181818181818182 47:0.3333333333333333 54:1.0 57:0.25 67:0.6666666666666666 75:0.3 79:0.25 94:1.0 104:0.25 109:0.5 115:0.5 122:0.2 123:1.0 177:0.5 213:1.0 216:1.0 226:0.14285714285714285 230:1.0 236:1.0 275:1.0 326:0.3333333333333333 331:0.3333333333333333 494:1.0 513:2.0 516:2.0 564:1.0 610:1.0 732:1.0 767:1.0 1376:1.0 1543:1.0 2005:1.0 2510:0.5 3006:1.0 4442:1.0 4484:1.0 6055:1.0 1 12:0.03636363636363636 35:0.08333333333333333 41:0.09090909090909091 57:0.25 66:1.0 67:0.6666666666666666 69:1.0 70:0.08333333333333333 75:0.1 77:0.3333333333333333 87:1.0 96:1.0 109:1.0 139:1.0 172:1.0 192:0.2 209:0.25 229:1.0 230:1.0 282:0.3333333333333333 347:0.5 390:1.0 487:1.0 530:0.5 720:1.0 957:0.3333333333333333 958:1.0 1605:1.0 1823:1.0 2638:1.0 3459:1.0 3584:1.0 6183:1.0 1 18:0.2857142857142857 41:0.09090909090909091 67:0.3333333333333333 124:0.3333333333333333 160:1.0 235:0.3333333333333333 368:1.0 472:1.0 810:1.0 1573:1.0 1980:1.0 2349:1.0 2352:1.0 1 12:0.03636363636363636 18:0.14285714285714285 20:0.08333333333333333 24:1.0 35:0.08333333333333333 47:0.3333333333333333 48:0.3333333333333333 70:0.16666666666666666 75:0.1 79:0.25 82:0.1111111111111111 93:0.5 104:0.25 115:0.5 152:0.3333333333333333 198:0.16666666666666666 454:0.5 467:1.0 506:1.0 543:0.1111111111111111 651:1.0 767:1.0 857:1.0 2139:1.0 2151:1.0 2336:1.0 2485:1.0 6840:1.0 1 12:0.07272727272727272 13:0.6 24:1.0 27:0.14285714285714285 47:0.3333333333333333 66:1.0 67:1.0 75:0.1 84:0.5 124:0.3333333333333333 152:0.3333333333333333 235:0.3333333333333333 306:1.0 487:1.0 530:0.5 613:1.0 718:1.0 911:0.5 1162:1.0 1602:0.5 2179:1.0 1 4:0.3333333333333333 12:0.01818181818181818 18:0.14285714285714285 20:0.08333333333333333 24:2.0 27:0.14285714285714285 35:0.16666666666666666 41:0.18181818181818182 45:0.5 47:0.3333333333333333 67:0.6666666666666666 75:0.2 79:0.25 98:0.5 113:1.0 115:0.5 116:1.0 141:0.5 191:0.5 198:0.16666666666666666 220:1.0 270:1.0 409:0.6666666666666666 501:1.0 509:1.0 588:1.0 609:1.0 803:1.0 870:1.0 871:1.0 1012:1.0 1014:1.0 1535:0.3333333333333333 1607:1.0 1627:2.0 1991:1.0 2291:1.0 2436:1.0 2560:1.0 3962:1.0 4300:1.0 1 18:0.14285714285714285 20:0.08333333333333333 47:0.3333333333333333 75:0.2 82:0.1111111111111111 169:1.0 347:0.5 379:1.0 382:0.5 911:0.5 1023:1.0 2246:1.0 1 12:0.01818181818181818 18:0.42857142857142855 20:0.08333333333333333 21:1.0 24:1.0 47:0.6666666666666666 57:0.25 67:0.3333333333333333 70:0.08333333333333333 85:0.3333333333333333 104:0.25 108:0.3333333333333333 122:0.2 133:1.0 148:0.125 197:0.2 374:1.0 516:1.0 711:1.0 712:0.3333333333333333 745:1.0 1262:1.0 1701:1.0 2014:1.0 2168:1.0 4350:1.0 1 12:0.05454545454545454 18:0.14285714285714285 20:0.08333333333333333 35:0.08333333333333333 36:0.06666666666666667 63:2.0 64:0.5 67:0.6666666666666666 70:0.16666666666666666 79:0.25 94:1.0 115:1.0 122:0.2 148:0.125 197:0.2 216:1.0 226:0.07142857142857142 235:0.3333333333333333 516:2.0 607:1.0 609:1.0 748:0.5 2014:1.0 2638:1.0 5536:1.0 1 12:0.03636363636363636 18:0.14285714285714285 35:0.08333333333333333 47:0.3333333333333333 67:1.0 70:0.25 75:0.1 79:0.25 82:0.2222222222222222 109:0.5 113:1.0 142:1.0 192:0.2 197:0.2 208:1.0 213:1.0 454:0.5 516:1.0 522:0.25 542:0.3333333333333333 712:0.3333333333333333 738:1.0 979:1.0 1020:1.0 2014:1.0 2560:1.0 2986:1.0 3180:0.5 3822:1.0 4542:1.0 1 3:0.5 12:0.01818181818181818 18:0.14285714285714285 41:0.36363636363636365 67:0.3333333333333333 75:0.1 82:0.1111111111111111 98:1.0 104:0.25 122:0.2 139:1.0 148:0.125 172:1.0 191:0.5 192:0.2 203:0.5 230:2.0 235:0.3333333333333333 355:1.0 477:1.0 722:0.5 732:1.0 767:1.0 772:1.0 779:1.0 866:1.0 1203:1.0 1343:0.5 1488:1.0 1819:1.0 2085:1.0 2906:1.0 3228:1.0 4005:1.0 4266:1.0 4703:1.0 5220:1.0 1 18:0.14285714285714285 20:0.08333333333333333 24:2.0 41:0.09090909090909091 63:1.0 67:0.3333333333333333 70:0.16666666666666666 75:0.3 98:0.5 109:0.5 142:1.0 148:0.125 172:1.0 226:0.07142857142857142 625:1.0 718:1.0 1026:1.0 1049:0.5 1050:1.0 1051:1.0 1052:1.0 1182:0.5 1344:1.0 1667:1.0 1701:1.0 1895:1.0 1933:1.0 4005:1.0 4374:1.0 6073:1.0 1 12:0.01818181818181818 13:0.4 15:1.0 20:0.08333333333333333 24:2.0 35:0.08333333333333333 41:0.09090909090909091 58:0.25 63:1.0 70:0.08333333333333333 75:0.2 82:0.1111111111111111 85:0.3333333333333333 98:0.5 115:0.5 130:1.0 148:0.125 166:0.25 191:0.5 197:0.2 277:0.16666666666666666 382:0.5 398:0.2 432:1.0 468:0.5 605:1.0 700:1.0 733:1.0 911:0.5 939:0.5 994:0.5 1094:1.0 1113:1.0 1435:1.0 1895:1.0 1933:1.0 3339:1.0 3541:1.0 3902:1.0 5566:0.3333333333333333 1 11:0.2 12:0.03636363636363636 13:0.2 15:1.0 18:0.2857142857142857 41:0.18181818181818182 56:0.037037037037037035 67:0.3333333333333333 68:0.3333333333333333 82:0.1111111111111111 84:0.5 115:0.5 122:0.2 148:0.125 172:1.0 226:0.14285714285714285 265:1.0 277:0.16666666666666666 388:1.0 454:1.0 474:1.0 564:1.0 767:1.0 798:1.0 911:0.5 981:1.0 1149:1.0 1341:0.5 1453:0.5 1573:1.0 2111:1.0 2208:1.0 2704:1.0 2912:1.0 2984:1.0 4045:1.0 1 1:0.125 3:0.5 12:0.03636363636363636 18:0.2857142857142857 41:0.09090909090909091 47:0.3333333333333333 58:0.25 65:1.0 67:0.6666666666666666 70:0.08333333333333333 74:0.3333333333333333 75:0.2 79:0.25 82:0.1111111111111111 84:0.5 98:0.5 148:0.125 160:1.0 235:0.3333333333333333 306:2.0 376:1.0 516:1.0 578:1.0 613:1.0 779:1.0 821:1.0 1182:0.5 1422:1.0 2004:1.0 2485:1.0 4216:1.0 6458:1.0 1 20:0.08333333333333333 24:1.0 41:0.09090909090909091 75:0.3 85:0.3333333333333333 104:0.25 122:0.2 148:0.125 191:0.5 230:1.0 261:0.3333333333333333 454:0.5 542:0.3333333333333333 765:1.0 911:0.5 1341:0.5 2608:1.0 2956:1.0 1 1:0.125 12:0.01818181818181818 18:0.14285714285714285 24:1.0 35:0.16666666666666666 41:0.09090909090909091 67:1.0 75:0.3 79:0.25 109:0.5 148:0.125 240:1.0 326:0.3333333333333333 376:1.0 516:1.0 684:1.0 766:1.0 1222:1.0 2204:1.0 2625:1.0 2638:1.0 1 18:0.14285714285714285 20:0.16666666666666666 24:2.0 36:0.06666666666666667 41:0.2727272727272727 58:0.25 67:0.6666666666666666 69:0.5 70:0.16666666666666666 75:0.1 79:0.25 82:0.1111111111111111 85:0.3333333333333333 87:1.0 122:0.2 130:1.0 139:1.0 191:0.5 197:0.2 199:1.0 226:0.14285714285714285 230:2.0 277:0.16666666666666666 331:0.3333333333333333 522:0.5 538:1.0 568:0.25 625:1.0 735:1.0 803:1.0 914:0.5 1378:0.5 1422:1.0 1518:1.0 1895:1.0 2207:1.0 2556:1.0 2889:1.0 3788:1.0 8598:1.0 1 20:0.08333333333333333 24:1.0 35:0.08333333333333333 41:0.09090909090909091 47:0.3333333333333333 63:2.0 70:0.16666666666666666 75:0.1 98:0.5 148:0.125 208:1.0 251:1.0 398:0.2 409:0.3333333333333333 431:0.5 432:1.0 564:1.0 605:1.0 726:1.0 733:1.0 976:1.0 1089:1.0 1152:1.0 2348:1.0 2652:1.0 1 24:3.0 41:0.09090909090909091 52:0.5 67:0.3333333333333333 69:0.5 70:0.08333333333333333 74:0.3333333333333333 75:0.2 79:0.25 82:0.1111111111111111 84:1.0 85:0.6666666666666666 98:0.5 115:0.5 122:0.2 148:0.125 159:1.0 172:2.0 191:0.5 208:1.0 230:1.0 277:0.16666666666666666 441:1.0 501:1.0 527:0.5 535:0.5 582:0.3333333333333333 588:1.0 732:1.0 771:1.0 799:1.0 996:1.0 1019:1.0 1339:1.0 1991:1.0 2030:1.0 2171:1.0 2277:1.0 2487:1.0 2608:1.0 3053:1.0 3203:1.0 1 18:0.14285714285714285 24:1.0 28:1.0 41:0.2727272727272727 45:0.5 50:1.0 53:0.5 67:1.3333333333333333 70:0.16666666666666666 75:0.1 79:0.25 82:0.2222222222222222 87:1.0 98:0.5 108:0.3333333333333333 109:0.5 148:0.125 197:0.2 226:0.07142857142857142 230:1.0 235:0.3333333333333333 257:1.0 306:1.0 388:1.0 490:1.0 591:1.0 626:1.0 779:1.0 870:1.0 1149:1.0 2035:1.0 4005:1.0 4199:1.0 5514:1.0 8056:1.0 1 12:0.03636363636363636 18:0.2857142857142857 35:0.08333333333333333 45:1.0 48:0.3333333333333333 58:0.25 63:2.0 64:0.5 67:0.3333333333333333 70:0.08333333333333333 74:0.3333333333333333 75:0.1 79:0.25 84:0.5 109:0.5 115:1.0 148:0.125 176:0.3333333333333333 226:0.07142857142857142 277:0.5 361:1.0 374:1.0 376:1.0 557:1.0 619:0.5 620:0.5 639:0.14285714285714285 792:1.0 1023:1.0 1182:0.5 1524:1.0 1761:1.0 1969:1.0 2117:1.0 2612:1.0 2941:1.0 3083:1.0 3996:1.0 6379:1.0 1 20:0.08333333333333333 24:1.0 35:0.16666666666666666 58:0.25 67:1.3333333333333333 70:0.08333333333333333 75:0.2 79:0.25 82:0.1111111111111111 85:0.3333333333333333 87:1.0 94:1.0 98:0.5 116:1.0 136:1.0 148:0.125 235:0.3333333333333333 296:0.2 322:1.0 477:1.0 720:1.0 1344:1.0 1689:1.0 2038:1.0 2231:0.5 2986:1.0 1 18:0.14285714285714285 20:0.08333333333333333 35:0.08333333333333333 41:0.09090909090909091 67:1.3333333333333333 70:0.08333333333333333 75:0.1 79:0.25 87:1.0 98:0.5 148:0.125 166:0.25 229:1.0 331:0.3333333333333333 362:1.0 501:2.0 516:1.0 605:1.0 630:1.0 767:1.0 771:1.0 1572:1.0 1689:1.0 2147:1.0 2821:1.0 2986:1.0 4418:1.0 8012:1.0 1 11:0.8 18:0.14285714285714285 47:0.3333333333333333 54:1.0 67:0.6666666666666666 70:0.16666666666666666 79:0.25 93:0.5 145:1.0 148:0.125 166:0.25 191:0.5 326:0.3333333333333333 331:0.3333333333333333 337:1.0 376:1.0 513:1.0 533:1.0 660:1.0 712:0.3333333333333333 739:0.5 866:1.0 1091:1.0 1545:1.0 1603:1.0 1856:1.0 2335:1.0 2651:1.0 1 1:0.125 21:1.0 41:0.09090909090909091 47:0.3333333333333333 52:0.5 53:0.5 58:0.25 67:0.3333333333333333 70:0.08333333333333333 79:0.25 87:1.0 148:0.125 209:0.25 265:1.0 296:0.2 376:1.0 441:2.0 445:1.0 502:1.0 516:2.0 830:0.5 1690:1.0 2364:1.0 4559:1.0 1 1:0.125 3:0.5 12:0.03636363636363636 20:0.08333333333333333 47:0.6666666666666666 48:0.3333333333333333 56:0.037037037037037035 64:0.5 70:0.08333333333333333 74:0.3333333333333333 75:0.4 82:0.1111111111111111 87:1.0 98:0.5 122:0.2 192:0.2 337:1.0 441:1.0 499:1.0 599:1.0 653:1.0 708:1.0 774:1.0 1054:1.0 1184:1.0 1339:1.0 1660:1.0 1991:1.0 2103:1.0 2131:1.0 3097:1.0 1 12:0.01818181818181818 18:0.14285714285714285 20:0.08333333333333333 24:1.0 35:0.08333333333333333 36:0.06666666666666667 41:0.09090909090909091 56:0.037037037037037035 63:1.0 67:0.3333333333333333 70:0.16666666666666666 77:0.3333333333333333 87:1.0 96:1.0 113:1.0 152:0.3333333333333333 197:0.2 220:1.0 226:0.07142857142857142 431:0.5 432:1.0 441:1.0 708:1.0 733:1.0 758:0.16666666666666666 911:0.5 990:1.0 4496:1.0 1 18:0.14285714285714285 20:0.08333333333333333 39:0.16666666666666666 47:0.3333333333333333 79:0.25 87:1.0 124:0.3333333333333333 148:0.125 516:1.0 568:0.25 758:0.16666666666666666 1142:1.0 4496:1.0 1 18:0.14285714285714285 20:0.08333333333333333 67:0.3333333333333333 70:0.08333333333333333 75:0.1 77:0.3333333333333333 98:0.5 148:0.125 208:1.0 599:1.0 615:2.0 748:0.5 1385:1.0 1443:1.0 3233:1.0 4433:1.0 4587:1.0 1 18:0.14285714285714285 24:2.0 41:0.18181818181818182 47:0.3333333333333333 70:0.16666666666666666 82:0.2222222222222222 85:0.3333333333333333 93:0.5 213:1.0 305:0.3333333333333333 331:0.3333333333333333 363:1.0 387:1.0 407:1.0 483:1.0 494:1.0 568:0.25 634:1.0 1025:1.0 1070:1.0 1343:0.5 1550:1.0 1854:1.0 8916:1.0 1 18:0.14285714285714285 20:0.25 24:1.0 67:0.3333333333333333 75:0.2 79:0.25 122:0.2 128:1.0 172:1.0 191:1.0 200:1.0 227:0.5 344:1.0 407:1.0 506:1.0 613:1.0 653:1.0 829:1.0 1051:1.0 1052:1.0 1058:1.0 1204:1.0 1415:1.0 2020:1.0 2049:1.0 2527:1.0 2820:1.0 1 3:0.5 12:0.01818181818181818 24:2.0 35:0.08333333333333333 48:0.3333333333333333 75:0.2 82:0.2222222222222222 84:0.5 85:0.3333333333333333 113:1.0 124:0.3333333333333333 148:0.125 177:0.5 216:1.0 230:2.0 342:1.0 386:1.0 447:1.0 483:1.0 492:0.5 540:1.0 601:1.0 712:0.3333333333333333 857:1.0 866:1.0 2797:1.0 3652:1.0 3868:1.0 1 27:0.14285714285714285 35:0.08333333333333333 63:2.0 70:0.08333333333333333 98:0.5 176:0.3333333333333333 484:1.0 492:0.5 530:0.5 605:1.0 860:1.0 958:1.0 1436:1.0 2357:1.0 3065:1.0 3219:1.0 3684:1.0 3933:1.0 1 12:0.01818181818181818 35:0.08333333333333333 36:0.06666666666666667 41:0.18181818181818182 47:0.6666666666666666 53:0.5 57:0.25 58:0.25 67:0.3333333333333333 70:0.16666666666666666 82:0.2222222222222222 87:1.0 110:1.0 113:2.0 115:0.5 130:1.0 137:1.0 148:0.125 164:0.5 198:0.16666666666666666 277:0.16666666666666666 344:1.0 477:1.0 501:1.0 578:1.0 720:1.0 748:0.5 957:0.3333333333333333 1422:1.0 1561:1.0 2560:1.0 4113:1.0 4433:1.0 1 20:0.08333333333333333 35:0.16666666666666666 41:0.18181818181818182 42:1.0 75:0.2 79:0.5 85:0.3333333333333333 98:0.5 115:0.5 148:0.125 1218:1.0 1879:1.0 1910:1.0 2833:1.0 1 1:0.125 12:0.01818181818181818 20:0.08333333333333333 27:0.14285714285714285 35:0.08333333333333333 47:0.3333333333333333 52:0.5 74:0.3333333333333333 75:0.1 118:1.0 122:0.2 191:0.5 192:0.2 226:0.07142857142857142 477:1.0 542:0.3333333333333333 557:1.0 582:0.3333333333333333 860:1.0 1155:1.0 1184:1.0 2608:1.0 2951:1.0 3264:1.0 1 45:0.5 53:0.5 67:0.3333333333333333 75:0.4 79:0.25 82:0.1111111111111111 85:0.3333333333333333 98:0.5 148:0.125 152:0.3333333333333333 236:1.0 305:0.3333333333333333 368:1.0 409:0.3333333333333333 492:0.5 535:0.5 578:1.0 721:1.0 722:0.5 1191:1.0 1432:1.0 1486:1.0 1991:1.0 3817:1.0 8164:1.0 1 3:0.5 20:0.08333333333333333 24:1.0 41:0.2727272727272727 53:0.5 67:0.6666666666666666 75:0.1 82:0.1111111111111111 84:0.5 85:0.3333333333333333 98:0.5 109:0.5 152:0.3333333333333333 226:0.07142857142857142 230:1.0 363:1.0 430:1.0 477:1.0 487:1.0 726:2.0 765:1.0 779:1.0 878:1.0 917:0.5 1025:1.0 1257:1.0 1453:0.5 2821:1.0 3203:1.0 1 20:0.08333333333333333 24:1.0 35:0.16666666666666666 41:0.2727272727272727 67:0.6666666666666666 75:0.1 113:1.0 226:0.07142857142857142 235:0.3333333333333333 236:1.0 322:1.0 379:1.0 381:1.0 397:1.0 483:1.0 538:1.0 832:1.0 1589:1.0 1602:0.5 1994:1.0 2507:1.0 2600:1.0 3303:1.0 1 12:0.01818181818181818 13:0.2 24:1.0 35:0.08333333333333333 41:0.18181818181818182 47:0.3333333333333333 63:1.0 67:0.3333333333333333 70:0.16666666666666666 85:0.3333333333333333 94:1.0 109:0.5 296:0.2 306:1.0 322:1.0 397:1.0 544:1.0 720:1.0 799:1.0 1919:1.0 2560:1.0 1 23:0.5 24:1.0 118:1.0 249:0.5 1778:1.0 3145:1.0 1 12:0.01818181818181818 20:0.08333333333333333 35:0.08333333333333333 52:0.5 67:0.3333333333333333 109:0.5 122:0.2 177:0.25 191:0.5 197:0.2 216:1.0 322:1.0 354:1.0 533:1.0 639:0.14285714285714285 743:1.0 935:1.0 996:1.0 1850:1.0 3708:1.0 3969:1.0 4521:1.0 4592:1.0 6960:1.0 7093:1.0 1 12:0.03636363636363636 13:0.2 57:0.5 128:1.0 198:0.16666666666666666 209:0.25 226:0.07142857142857142 266:0.5 369:0.5 684:1.0 765:1.0 911:0.5 1179:1.0 1556:1.0 2235:1.0 3181:1.0 1 3:0.5 20:0.08333333333333333 24:1.0 41:0.09090909090909091 70:0.08333333333333333 109:0.5 568:0.25 613:1.0 990:1.0 2735:1.0 1 11:0.4 35:0.08333333333333333 63:1.0 67:0.3333333333333333 77:0.3333333333333333 198:0.16666666666666666 369:0.5 398:0.2 513:1.0 2857:1.0 1 1:0.125 12:0.03636363636363636 13:0.2 18:0.14285714285714285 20:0.08333333333333333 24:3.0 41:0.2727272727272727 47:0.3333333333333333 56:0.037037037037037035 63:1.0 67:0.6666666666666666 70:0.16666666666666666 75:0.2 84:0.5 87:1.0 98:0.5 104:0.25 109:1.5 113:1.0 122:0.2 160:1.0 172:1.0 177:0.5 197:0.2 214:1.0 261:0.3333333333333333 314:1.0 472:1.0 494:1.0 566:0.2 613:1.0 615:2.0 758:0.16666666666666666 765:1.0 871:1.0 974:1.0 1051:1.0 1052:1.0 1419:1.0 1535:0.3333333333333333 1628:0.5 1739:1.0 2049:1.0 2277:1.0 2335:1.0 2515:1.0 2556:1.0 4703:1.0 6060:2.0 1 12:0.01818181818181818 18:0.14285714285714285 252:0.3333333333333333 277:0.16666666666666666 502:1.0 639:0.14285714285714285 665:1.0 701:1.0 733:1.0 996:1.0 1089:1.0 1367:1.0 2974:1.0 9277:1.0 1 1:0.125 35:0.08333333333333333 39:0.16666666666666666 47:0.3333333333333333 48:0.3333333333333333 56:0.037037037037037035 70:0.08333333333333333 75:0.1 166:0.25 226:0.07142857142857142 337:2.0 398:0.2 660:1.0 958:1.0 1336:1.0 1561:1.0 2452:1.0 3918:1.0 1 11:0.2 35:0.08333333333333333 39:0.16666666666666666 47:0.3333333333333333 48:0.3333333333333333 70:0.16666666666666666 75:0.1 98:1.0 113:1.0 166:0.25 176:0.3333333333333333 226:0.07142857142857142 235:0.3333333333333333 337:2.0 398:0.2 568:0.25 620:0.5 1336:1.0 3918:1.0 4327:1.0 1 11:0.2 12:0.03636363636363636 13:0.2 75:0.2 115:0.5 209:0.25 388:1.0 1149:1.0 2335:1.0 4438:1.0 1 1:0.125 3:0.5 24:1.0 35:0.08333333333333333 67:0.3333333333333333 70:0.08333333333333333 96:1.0 194:0.3333333333333333 197:0.2 249:0.5 374:1.0 535:0.5 540:1.0 1547:1.0 1 3:0.5 12:0.01818181818181818 24:1.0 41:0.18181818181818182 47:0.3333333333333333 54:1.0 65:1.0 67:0.6666666666666666 70:0.08333333333333333 75:0.1 85:0.3333333333333333 93:0.5 98:0.5 108:0.3333333333333333 122:0.2 133:1.0 261:0.3333333333333333 277:0.16666666666666666 360:1.0 387:1.0 441:1.0 455:1.0 473:1.0 496:1.0 513:1.0 516:1.0 568:0.25 613:1.0 653:1.0 707:2.0 871:1.0 998:1.0 1341:0.5 1689:1.0 1718:1.0 2017:1.0 2463:1.0 3639:1.0 4690:1.0 5265:0.5 1 12:0.01818181818181818 47:0.3333333333333333 64:0.5 70:0.16666666666666666 197:0.2 397:1.0 739:0.5 1582:1.0 2191:1.0 5293:0.5 1 11:0.2 12:0.03636363636363636 18:0.14285714285714285 35:0.08333333333333333 53:0.5 56:0.037037037037037035 67:0.3333333333333333 70:0.16666666666666666 75:0.1 104:0.25 122:0.2 124:0.3333333333333333 172:1.0 191:0.5 296:0.2 427:1.0 431:0.5 432:1.0 448:1.0 535:0.5 733:1.0 1091:1.0 1854:1.0 2335:1.0 9073:1.0 1 11:0.4 18:0.14285714285714285 35:0.08333333333333333 36:0.06666666666666667 38:1.0 61:0.3333333333333333 85:0.3333333333333333 191:0.5 196:0.3333333333333333 197:0.2 254:1.0 976:1.0 2357:1.0 2857:1.0 6708:1.0 1 1:0.125 11:0.2 12:0.09090909090909091 13:0.4 20:0.08333333333333333 24:1.0 27:0.14285714285714285 47:0.3333333333333333 57:0.25 67:0.3333333333333333 96:1.0 145:1.0 441:1.0 573:1.0 588:1.0 733:1.0 1012:1.0 1935:1.0 3483:1.0 3484:1.0 1 12:0.01818181818181818 65:1.0 75:0.1 177:0.25 531:0.5 3913:1.0 3968:1.0 1 12:0.03636363636363636 18:0.14285714285714285 35:0.08333333333333333 38:1.0 41:0.09090909090909091 70:0.08333333333333333 93:0.5 113:1.0 137:1.0 160:1.0 172:1.0 254:1.0 454:0.5 543:0.1111111111111111 911:0.5 1071:1.0 1295:1.0 7248:1.0 1 12:0.01818181818181818 36:0.13333333333333333 75:0.1 122:0.4 1 12:0.03636363636363636 13:0.2 20:0.08333333333333333 63:2.0 66:1.0 67:0.3333333333333333 75:0.1 85:0.3333333333333333 115:0.5 176:0.3333333333333333 679:1.0 777:1.0 957:0.3333333333333333 1088:1.0 1866:1.0 9176:1.0 1 12:0.01818181818181818 24:1.0 41:0.18181818181818182 115:0.5 124:0.3333333333333333 136:1.0 254:1.0 261:0.3333333333333333 543:0.1111111111111111 2056:1.0 1 1:0.125 75:0.3 98:0.5 210:1.0 726:1.0 776:1.0 1553:1.0 1854:1.0 2330:1.0 4341:1.0 1 12:0.01818181818181818 13:0.2 24:1.0 48:0.3333333333333333 58:0.25 79:0.25 82:0.1111111111111111 96:1.0 122:0.2 139:1.0 169:1.0 277:0.16666666666666666 765:1.0 3191:1.0 1 12:0.03636363636363636 20:0.08333333333333333 24:2.0 36:0.06666666666666667 72:1.0 75:0.2 79:0.25 113:1.0 136:1.0 139:1.0 214:1.0 226:0.21428571428571427 305:0.3333333333333333 341:1.0 397:1.0 455:1.0 543:0.1111111111111111 559:1.0 765:1.0 958:1.0 1251:1.0 1535:0.3333333333333333 1962:1.0 2477:1.0 2833:1.0 3226:1.0 4403:1.0 1 18:0.2857142857142857 35:0.08333333333333333 41:0.09090909090909091 54:1.0 63:1.0 70:0.16666666666666666 82:0.1111111111111111 87:1.0 124:0.3333333333333333 197:0.2 337:1.0 510:1.0 758:0.16666666666666666 2074:1.0 4272:1.0 4427:1.0 1 12:0.05454545454545454 41:0.18181818181818182 57:0.25 70:0.08333333333333333 79:0.25 98:0.5 104:0.25 109:0.5 124:0.3333333333333333 226:0.07142857142857142 249:0.5 419:1.0 494:1.0 1095:0.3333333333333333 1620:1.0 1893:1.0 2917:1.0 1 3:0.5 12:0.01818181818181818 35:0.08333333333333333 47:0.3333333333333333 67:0.3333333333333333 75:0.3 122:0.4 136:1.0 198:0.16666666666666666 277:0.16666666666666666 398:0.2 1063:1.0 1207:1.0 1304:1.0 2105:1.0 2924:1.0 4373:1.0 1 18:0.14285714285714285 24:1.0 36:0.06666666666666667 41:0.09090909090909091 58:0.25 67:0.3333333333333333 75:0.1 144:1.0 398:0.2 542:0.3333333333333333 874:1.0 1728:1.0 2139:1.0 2305:1.0 3180:0.5 3191:1.0 5231:1.0 6197:1.0 1 1:0.125 12:0.03636363636363636 24:1.0 35:0.08333333333333333 41:0.09090909090909091 47:0.3333333333333333 54:1.0 67:0.6666666666666666 70:0.08333333333333333 75:0.3 109:0.5 118:1.0 122:0.2 124:0.3333333333333333 137:1.0 152:0.3333333333333333 226:0.07142857142857142 235:0.3333333333333333 249:0.5 266:1.0 368:1.0 513:1.0 582:0.3333333333333333 829:1.0 891:1.0 1094:1.0 1301:2.0 1317:1.0 1761:1.0 2888:1.0 2918:1.0 8283:1.0 9176:1.0 1 11:0.2 12:0.03636363636363636 13:0.2 18:0.14285714285714285 35:0.08333333333333333 53:0.5 57:0.25 70:0.08333333333333333 77:0.3333333333333333 85:0.3333333333333333 136:1.0 379:1.0 415:0.3333333333333333 619:0.5 675:1.0 701:1.0 917:0.5 1207:1.0 1527:1.0 1699:0.5 3012:1.0 3564:1.0 1 11:0.4 12:0.05454545454545454 13:0.4 18:0.2857142857142857 20:0.08333333333333333 41:0.09090909090909091 56:0.037037037037037035 79:0.25 85:0.3333333333333333 109:0.5 113:2.0 177:0.5 191:0.5 266:0.5 306:2.0 326:0.3333333333333333 379:1.0 415:0.3333333333333333 465:1.0 564:1.0 742:1.0 767:1.0 877:1.0 1278:1.0 1282:1.0 1295:1.0 1547:1.0 2349:1.0 3067:1.0 6271:1.0 9128:1.0 1 12:0.01818181818181818 13:0.2 20:0.08333333333333333 64:0.5 75:0.2 79:0.25 82:0.1111111111111111 85:0.3333333333333333 109:0.5 113:1.0 139:1.0 172:1.0 191:0.5 261:0.3333333333333333 326:0.3333333333333333 374:1.0 379:1.0 415:0.3333333333333333 465:1.0 544:1.0 742:1.0 767:1.0 877:1.0 931:1.0 994:0.5 1095:0.3333333333333333 1282:1.0 2161:1.0 3170:1.0 9128:1.0 1 1:0.125 12:0.03636363636363636 20:0.08333333333333333 24:1.0 27:0.14285714285714285 35:0.08333333333333333 41:0.2727272727272727 69:0.5 70:0.08333333333333333 74:0.6666666666666666 98:0.5 109:1.0 117:0.5 123:1.0 191:1.5 192:0.2 257:1.0 376:1.0 540:1.0 692:1.0 698:1.0 821:1.0 2510:0.5 2965:1.0 4717:1.0 8012:1.0 8870:1.0 1 12:0.03636363636363636 13:0.2 41:0.09090909090909091 52:0.5 57:0.25 67:0.3333333333333333 69:0.5 315:1.0 362:1.0 374:1.0 605:1.0 692:1.0 2203:1.0 2890:1.0 4427:1.0 1 35:0.08333333333333333 36:0.06666666666666667 41:0.09090909090909091 48:0.3333333333333333 75:0.2 84:0.5 116:1.0 141:0.5 197:0.2 198:0.16666666666666666 243:1.0 362:1.0 379:1.0 415:0.3333333333333333 543:0.1111111111111111 684:1.0 1655:1.0 3135:1.0 3203:1.0 3464:1.0 1 20:0.08333333333333333 41:0.18181818181818182 52:0.5 53:0.5 67:0.3333333333333333 70:0.25 109:0.5 122:0.2 331:0.3333333333333333 483:1.0 682:1.0 772:1.0 782:2.0 1339:1.0 1839:1.0 3211:1.0 3308:1.0 3996:1.0 1 18:0.42857142857142855 20:0.16666666666666666 24:3.0 35:0.08333333333333333 64:0.5 75:0.5 93:0.5 122:0.4 136:1.0 216:1.0 277:0.16666666666666666 444:1.0 685:1.0 707:1.0 857:1.0 911:0.5 1553:1.0 1627:1.0 2498:1.0 3253:1.0 3797:1.0 3919:1.0 4343:1.0 1 12:0.03636363636363636 18:0.14285714285714285 24:2.0 35:0.08333333333333333 36:0.06666666666666667 41:0.09090909090909091 46:1.0 47:0.3333333333333333 63:1.0 70:0.08333333333333333 75:0.1 85:0.3333333333333333 87:1.0 104:0.25 132:1.0 226:0.07142857142857142 430:1.0 712:0.3333333333333333 873:1.0 874:1.0 990:1.0 1402:0.5 1699:0.5 2278:1.0 2738:1.0 3161:1.0 3695:1.0 1 12:0.01818181818181818 18:0.2857142857142857 20:0.16666666666666666 24:2.0 35:0.08333333333333333 41:0.09090909090909091 54:1.0 61:0.3333333333333333 67:0.6666666666666666 72:1.0 75:0.2 87:1.0 93:0.5 137:1.0 139:2.0 176:0.3333333333333333 191:0.5 209:0.25 236:1.0 261:0.3333333333333333 419:1.0 477:1.0 483:2.0 499:1.0 600:1.0 732:1.0 774:1.0 866:1.0 899:1.0 958:1.0 1671:1.0 1854:1.0 1931:1.0 2560:1.0 4418:1.0 4511:1.0 6799:1.0 1 12:0.01818181818181818 13:0.2 20:0.08333333333333333 24:2.0 41:0.18181818181818182 63:1.0 67:0.6666666666666666 75:0.3 82:0.1111111111111111 93:0.5 115:0.5 122:0.2 128:2.0 132:1.0 160:1.0 172:1.0 226:0.07142857142857142 230:1.0 304:1.0 400:1.0 445:1.0 506:1.0 560:1.0 601:1.0 688:0.5 779:1.0 2035:1.0 2159:1.0 2617:1.0 2836:1.0 3129:1.0 3203:1.0 4116:1.0 4437:1.0 1 12:0.01818181818181818 20:0.16666666666666666 24:1.0 35:0.08333333333333333 56:0.037037037037037035 67:0.3333333333333333 69:0.5 75:0.2 79:0.25 139:1.0 148:0.125 191:1.0 192:0.2 252:0.3333333333333333 266:0.5 487:1.0 506:2.0 530:0.5 712:0.3333333333333333 854:1.0 915:1.0 1095:0.3333333333333333 1155:1.0 1184:1.0 1422:1.0 1761:1.0 1969:1.0 2278:1.0 2833:1.0 4562:1.0 4563:1.0 1 12:0.01818181818181818 18:0.14285714285714285 20:0.08333333333333333 36:0.06666666666666667 41:0.09090909090909091 113:2.0 122:0.2 148:0.125 198:0.16666666666666666 224:1.0 226:0.07142857142857142 229:1.0 306:1.0 368:1.0 382:1.0 605:1.0 915:1.0 1149:1.0 2035:1.0 2152:1.0 3090:1.0 4057:1.0 4725:1.0 1 18:0.14285714285714285 20:0.08333333333333333 35:0.08333333333333333 41:0.09090909090909091 47:0.3333333333333333 53:0.5 58:0.25 67:0.3333333333333333 70:0.16666666666666666 75:0.3 82:0.1111111111111111 98:1.0 108:0.3333333333333333 115:0.5 209:0.25 348:0.3333333333333333 379:1.0 423:1.0 494:1.0 502:1.0 582:0.3333333333333333 682:1.0 978:1.0 1081:1.0 1149:1.0 1453:0.5 1578:2.0 1605:1.0 1893:1.0 2230:1.0 2699:1.0 3282:1.0 4659:1.0 8571:1.0 1 11:0.2 24:1.0 35:0.08333333333333333 41:0.18181818181818182 67:1.0 75:0.1 85:0.3333333333333333 87:1.0 96:1.0 113:2.0 128:1.0 141:0.5 415:0.3333333333333333 499:1.0 508:1.0 773:1.0 1025:1.0 1572:1.0 2112:1.0 2217:1.0 2446:1.0 1 12:0.01818181818181818 20:0.08333333333333333 27:0.14285714285714285 67:0.6666666666666666 70:0.08333333333333333 77:0.3333333333333333 109:0.5 124:0.3333333333333333 303:1.0 305:0.3333333333333333 322:1.0 369:0.5 375:1.0 692:1.0 765:1.0 799:1.0 810:1.0 871:1.0 2074:1.0 3991:1.0 1 12:0.03636363636363636 47:0.3333333333333333 67:0.6666666666666666 72:1.0 75:0.1 140:1.0 166:0.25 197:0.2 226:0.07142857142857142 291:1.0 376:1.0 599:1.0 1435:1.0 1701:1.0 1900:1.0 3395:1.0 1 3:0.5 12:0.05454545454545454 13:0.2 20:0.08333333333333333 29:1.0 36:0.06666666666666667 47:0.3333333333333333 53:0.5 67:0.3333333333333333 77:0.3333333333333333 79:0.25 98:0.5 108:0.3333333333333333 115:0.5 337:1.0 374:1.0 441:1.0 513:1.0 748:0.5 824:1.0 870:1.0 958:1.0 1026:1.0 1238:1.0 1388:1.0 1999:1.0 4521:1.0 1 12:0.01818181818181818 15:1.0 53:0.5 63:2.0 67:0.3333333333333333 75:0.1 82:0.1111111111111111 96:1.0 136:1.0 250:1.0 305:0.3333333333333333 430:1.0 688:0.5 1432:1.0 1 3:1.0 12:0.09090909090909091 13:0.2 18:0.42857142857142855 20:0.08333333333333333 27:0.14285714285714285 58:0.25 63:2.0 67:0.3333333333333333 75:0.1 79:0.5 84:0.5 94:1.0 139:2.0 145:1.0 176:0.3333333333333333 243:1.0 285:1.0 494:2.0 502:1.0 506:1.0 535:0.5 559:1.0 601:1.0 703:1.0 732:1.0 766:1.0 931:1.0 998:1.0 1149:1.0 1582:1.0 1625:1.0 4642:1.0 1 3:0.5 11:0.4 12:0.01818181818181818 18:0.2857142857142857 20:0.08333333333333333 35:0.08333333333333333 41:0.09090909090909091 58:0.25 67:0.3333333333333333 70:0.16666666666666666 85:0.3333333333333333 93:0.5 98:0.5 106:1.0 113:2.0 115:1.5 122:0.2 177:0.5 214:1.0 374:1.0 454:0.5 494:1.0 543:0.2222222222222222 621:1.0 691:1.0 707:1.0 739:0.5 767:1.0 873:1.0 966:1.0 1573:1.0 4217:1.0 4321:1.0 6398:1.0 1 1:0.125 75:0.1 77:0.3333333333333333 96:1.0 104:0.25 191:0.5 194:0.3333333333333333 502:1.0 1 11:0.4 12:0.01818181818181818 18:0.2857142857142857 41:0.18181818181818182 56:0.037037037037037035 70:0.16666666666666666 75:0.2 98:1.0 113:1.0 115:0.5 191:0.5 197:0.2 214:1.0 296:0.2 326:0.3333333333333333 568:0.25 771:1.0 813:1.0 975:1.0 1564:1.0 1746:1.0 2054:1.0 2669:1.0 3659:1.0 1 6:1.0 11:0.2 18:0.2857142857142857 20:0.08333333333333333 35:0.08333333333333333 67:0.6666666666666666 75:0.1 110:1.0 162:1.0 209:0.25 362:1.0 398:0.2 653:1.0 895:1.0 1122:1.0 1778:1.0 2171:1.0 1 3:0.5 18:0.14285714285714285 24:1.0 113:1.0 194:0.3333333333333333 299:1.0 398:0.2 540:1.0 871:1.0 1095:0.3333333333333333 1111:1.0 1182:0.5 1556:1.0 1754:1.0 1 1:0.125 18:0.14285714285714285 24:1.0 67:0.3333333333333333 79:0.25 82:0.1111111111111111 85:0.3333333333333333 109:0.5 177:0.25 542:0.3333333333333333 560:1.0 758:0.3333333333333333 784:1.0 1550:1.0 2203:1.0 3180:0.5 1 12:0.03636363636363636 13:0.2 18:0.14285714285714285 20:0.3333333333333333 24:2.0 35:0.08333333333333333 41:0.09090909090909091 52:0.5 64:0.5 67:1.0 75:0.1 85:0.3333333333333333 91:1.0 93:0.5 96:1.0 98:0.5 104:0.25 154:1.0 164:0.5 209:0.25 331:0.3333333333333333 455:1.0 506:2.0 535:0.5 684:1.0 758:0.16666666666666666 779:1.0 898:1.0 966:1.0 1063:1.0 1182:0.5 1184:1.0 1282:1.0 1488:1.0 1508:1.0 2638:1.0 2833:1.0 3223:1.0
5b292c2192bc59e744bbf6eae948bbf325969c38
449d555969bfd7befe906877abab098c6e63a0e8
/1997/CH3/EX3.9/example9.sce
5cb26adb40e6d0e20e67de8fee1dbebbc2c9eda6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
789
sce
example9.sce
//Chapter-3, Problem 3.9 , Page107 //=========================================================================== clc; clear; //INPUT DATA F = 6*10^9; //operating frequency in Hz PRF= 1000; //pulse repetitive frequency in Hz Vo = 3*10^8; //velocity in m/s; n2 = 2; // n value for second blind speed n3 = 3; // n value for third blind speed //Calculations lamda = Vo/F//Wavelength in m // blind speed Vb = n*(lamda/2)*PRF in m/s Vb2 = n2*(lamda/2)*PRF //second blind speed in m/s; Vb21 = Vb2*18/5 ; //second blind speed in kmph; Vb3 = n3*(lamda/2)*PRF //third blind speed in m/s; Vb31 = Vb3*18/5; //third blind speed in kmph; //Output mprintf('Second Blind Speed is %g kmph\n Third Blind Speed is %g kmph\n',Vb21,Vb31);
b237a8ba9efae7c4604f495e470d7aeb830feb91
449d555969bfd7befe906877abab098c6e63a0e8
/278/CH32/EX32.2/ex_32_2.sce
fa0c6102c08e7923643143576dd52f6fa5ca27f4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,537
sce
ex_32_2.sce
//find clc //solution //given D=100//mm L=0.125//m p=5//N/mm^2 pm=0.75//N/mm^2 effm=0.8 m=41.7*10^-6//kg/BP/s HCV=42*1000//kJ/kg N=2000//rpm ft=38 th1=sqrt((3*p*D^2)/(16*ft)) printf("thickness of head on basis of strength is,%f mm\n",th1) n=N/2 A=%pi*D^2/4//mm^2 IP=pm*L*A*n/60 BP=effm*IP printf("brake power is,%f W\n",BP) C=0.05 H=C*HCV*m*BP//heat flowing piston head k=46.6//W/m/C //TC-TE=w w=220 th2=H*1000/(12.56*k*w) printf("thickness of head on basis of heat dessiapation is,%f mm\n",th2) printf("taking large r value into consideration \n") th=th1 printf("thickness of head is,%f mm\n",th) tr=7 printf("thickness of ribs is,%f m\n",tr) pw=0.035 ft1=90 t1=D*sqrt(3*pw/ft1) //t2 lies btw 0.7 t1 to t1 t2=3//mm //b1 lies btw th to 1.2th=16 to 19.2 b1=18//mm //b2 lies btw 0.75t2 to t2 b2=2.5 printf("with of top land and othe ring land is,%f mm\n,%f mm\n",b1,b2) //G1 lie sbtw 3.5t1 to 4t1 G1=12.8//mm //G2 lies btw 0.002D to 0.004 D G2=0.3//mm printf("gap btw free ends of ring and btw ring and cylindr is,%f mm\n,%f mm\n",G1,G2) u=0.1 R1=u*%pi*D^2*p/4//...eq3 //R2=pb*D*l=45*l...eq4 //from eq3 and eq4. //l=R1/45 printf("length of skirt is,%f mm\n",R1/45) printf("length of skirt is ,say 90mm\n") l=90 Lp=l+(4*t2 + 3*3)+b1 printf("length of piston is,%f mm\n",Lp) //let do be outside dia //l1 be lenngth of pin pb1=25//N/mm^2 l1=0.45*D //Load1=pb1*do*l1=1125*do lo2=%pi*D^2*p/4 do=lo2/1125//mm di=0.6*do printf("inside and outside dia is,%f mm\n,%f mm\n",di,do)
cf54c279f5a9b7121b2ae9ed284fad25ab82dbb6
cec613cbd9e91c586ef7497b6b229d7924c1f91e
/transforms/null/nullTransformMe.tst
fb26d0b53b6bf0f646516369bfafce264b257985
[]
no_license
volkanongun/atom-typescript-examples
fce7465fc28c4d34274568f370ace792f62e2779
8628f8551e21b66d2ac343ef08049835edbf4aaf
refs/heads/master
2023-03-17T01:39:32.590639
2015-12-06T23:18:35
2015-12-06T23:18:35
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
76
tst
nullTransformMe.tst
export var foo = 123; var bar = '123'; transform:null{ }transform:null
982f595e01e948b1ea4526eeeb84725d8ee90873
449d555969bfd7befe906877abab098c6e63a0e8
/1439/CH2/EX2.5/2_5.sce
0918bbd29e0c4b1c8680a9241903c3682358b355
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
254
sce
2_5.sce
clc //initialisation of variables T= -88 //C Tc= 154.4 //K Pc= 49.7 //atm P= 44.7 //atm R= 0.08205 //atm m^3 mole^-1 K^-1 r= 0.8 //CALCULATIONS V= r*R*(273.15+T)/P //RESULTS printf ('volume pccupied by mole of oxygen= %.3f litre mole^-1',V)
eaebb17e3b5acfc2ca08183b8270a55e9c5bed53
4a1effb7ec08302914dbd9c5e560c61936c1bb99
/Project 2/Experiments/Chi-RW-C/results/Chi-RW-C.chess-10-1tra/result1.tst
bc92f295c5cb62d7b2d0cd5321070d01f3b1e1fb
[]
no_license
nickgreenquist/Intro_To_Intelligent_Systems
964cad20de7099b8e5808ddee199e3e3343cf7d5
7ad43577b3cbbc0b620740205a14c406d96a2517
refs/heads/master
2021-01-20T13:23:23.931062
2017-05-04T20:08:05
2017-05-04T20:08:05
90,484,366
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,312
tst
result1.tst
@relation chess @attribute Bkblk{f,t} @attribute Bknwy{f,t} @attribute Bkon8{f,t} @attribute Bkona{f,t} @attribute Bkspr{f,t} @attribute Bkxbq{f,t} @attribute Bkxcr{f,t} @attribute Bkxwp{f,t} @attribute Blxwp{f,t} @attribute Bxqsq{f,t} @attribute Cntxt{f,t} @attribute Dsopp{f,t} @attribute Dwipd{l,g} @attribute Hdchk{f,t} @attribute Katri5{n,w,b} @attribute Mulch{f,t} @attribute Qxmsq{f,t} @attribute R2ar8{f,t} @attribute Reskd{f,t} @attribute Reskr{f,t} @attribute Rimmx{f,t} @attribute Rkxwp{f,t} @attribute Rxmsq{f,t} @attribute Simpl{f,t} @attribute Skach{f,t} @attribute Skewr{f,t} @attribute Skrxp{f,t} @attribute Spcop{f,t} @attribute Stlmt{f,t} @attribute Thrsk{f,t} @attribute Wkcti{f,t} @attribute Wkna8{f,t} @attribute Wknck{f,t} @attribute Wkovl{f,t} @attribute Wkpos{f,t} @attribute Wtoeg{n,t} @attribute Class{won,nowin} @inputs Bkblk,Bknwy,Bkon8,Bkona,Bkspr,Bkxbq,Bkxcr,Bkxwp,Blxwp,Bxqsq,Cntxt,Dsopp,Dwipd,Hdchk,Katri5,Mulch,Qxmsq,R2ar8,Reskd,Reskr,Rimmx,Rkxwp,Rxmsq,Simpl,Skach,Skewr,Skrxp,Spcop,Stlmt,Thrsk,Wkcti,Wkna8,Wknck,Wkovl,Wkpos,Wtoeg @outputs Class @data won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? won ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ? nowin ?
5322266bbb2bcccfd36f2e4d56f37efdcef1d7cf
449d555969bfd7befe906877abab098c6e63a0e8
/1868/CH15/EX15.3/Ch15Ex3.sce
3fed59535d0cd1629705e6250776d56a503701f1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,508
sce
Ch15Ex3.sce
// Scilab code Ex15.3: Pg 561 (2005) clc; clear; // Data for Reaction 1 R1 = cell(4,3); // Declare a 4X3 cell R1(1,1).entries = 'mu'; R1(2,1).entries = 'e-'; R1(3,1).entries = 'nue_bar'; R1(4,1).entries = 'nu_mu'; R1(1,2).entries = 1; // Muon number for mu R1(2,2).entries = 0; // Muon number for e- R1(3,2).entries = 0; // Muon number for nue_bar R1(4,2).entries = 1; // Muon number for nu_mu R1(1,3).entries = 0; // Lepton number for mu R1(2,3).entries = 1; // Lepton number for e- R1(3,3).entries = -1; // Lepton number for nue_bar R1(4,3).entries = 0; // Lepton number for nu_mu // Data for Reaction 2 R2 = cell(4,3); // Declare a 4X3 cell R2(1,1).entries = 'Pi+'; R2(2,1).entries = 'mu+'; R2(3,1).entries = 'nu_mu'; R2(4,1).entries = 'nu_e'; R2(1,2).entries = 0; // Muon number for Pi+ R2(2,2).entries = -1; // Muon number for mu+ R2(3,2).entries = 1; // Muon number for nu_mu R2(4,2).entries = 0; // Muon number for nu_e R2(1,3).entries = 0; // Lepton number for Pi+ R2(2,3).entries = 0; // Lepton number for mu+ R2(3,3).entries = 0; // Lepton number for nu_mu R2(4,3).entries = 1; // Lepton number for nu_e // Check lepton number conservation for first reaction if (R1(1,2).entries== R1(2,2).entries+R1(3,2).entries+R1(4,2).entries) & (R1(1,3).entries == R1(2,3).entries+R1(3,3).entries+R1(4,3).entries) then printf("\nThe reaction %s --> %s + %s + %s can occur (Both L_mu and L_e are conserved)", R1(1,1).entries, R1(2,1).entries, R1(3,1).entries, R1(4,1).entries); else printf("\nThe reaction %s + %s --> %s + %s + %s + %s cannot occur (L_mu and L_e are not conserved)", R1(1,1).entries, R1(2,1).entries, R1(3,1).entries, R1(4,1).entries); end // Check lepton number conservation for second reaction if (R2(1,2).entries== R2(2,2).entries+R2(3,2).entries+R2(4,2).entries) & (R2(1,3).entries == R2(2,3).entries+R2(3,3).entries+R2(4,3).entries) then printf("\nThe reaction %s --> %s + %s + %s can occur (Both L_mu and L_e are conserved)", R2(1,1).entries, R2(2,1).entries, R2(3,1).entries, R2(4,1).entries); else printf("\nThe reaction %s --> %s + %s + %s cannot occur (L_mu is conserved but L_e is not conserved)", R2(1,1).entries, R2(2,1).entries, R2(3,1).entries, R2(4,1).entries); end // Result // The reaction mu --> e- + nue_bar + nu_mu can occur (Both L_mu and L_e are conserved) // The reaction Pi+ --> mu+ + nu_mu + nu_e cannot occur (L_mu is conserved but L_e is not conserved0
6d91d7364521de1bd9c1464f5c6d25796b2aae99
449d555969bfd7befe906877abab098c6e63a0e8
/2789/CH2/EX2.4/Ex2_4.sce
59415344f140873af44ddcdc08fe2ead8ff0de06
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
203
sce
Ex2_4.sce
clear; clc; //page no.37 gam1 = 0.9*62.4; gam2 = 13.55*62.4; l1 = 10;// feet l2 = 15/12;// feet p_x = gam2*l2 - gam1*l1;// psf printf('The gauge reading = %d psf = %.2f psi',p_x,0.00694*p_x);
54cdac7b60dc3357ae715cb1a6fbeaf271737ac7
e2cee73f9682b79c4a5d6a1e6381cf6679dc1094
/TP_AN/MethodeCholesky.sci
8d9f81c7606e1e8a0db7c2f24b973700559c2e36
[]
no_license
melurne/TP_ANgit
b1b91e444aef30706fef0cac4da9355d4d04e1aa
59c1aa6a5261f9753e108877079a495d5b95fb50
refs/heads/master
2023-04-19T09:23:02.045251
2021-05-17T14:56:34
2021-05-17T14:56:34
350,416,537
0
0
null
null
null
null
UTF-8
Scilab
false
false
612
sci
MethodeCholesky.sci
function L = Cholesky(A) n=size(A,1) L=zeros(n,n); L(1,1)=sqrt(A(1,1)); for i = 2:n L(i,1)=A(i,1)/L(1,1) end for j = 2:n for i= i:j-1 L(i,j)=0; end somme=0; for k = 1:j-1 somme = somme+ L(j,k)^2 end L(j,j) =sqrt(A(j,j)-somme); for i = j+1:n somme=0 for k=1:j-1 somme = somme + L(i,k)*L(j,k); end L(i,j) = A(i,j)-somme; end end return endfunction A=[9, 6, 3; 6, 20, 6; 3, 6, 3] L=Cholesky(A)
0f2761ee7d12f7496701e0a792faa5781b1274cf
449d555969bfd7befe906877abab098c6e63a0e8
/1946/CH2/EX2.19.b/Ex_2_19_b.sce
8af8d2f8821ecc1bea5cfa54b295f890484f2469
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
228
sce
Ex_2_19_b.sce
// Example 2.19.b:Acceptance Angle clc; clear; close; n1=1.55;//cORE Refractive Index n2=1.51;//Cladding Refractive Index NA=sqrt(n1^2-n2^2);// Numerical Aperture Om= asind(NA); disp(Om,"Acceptance Angle in degree is")
8ee2ea1b05b88898445541bbd1b2987829eec3c8
449d555969bfd7befe906877abab098c6e63a0e8
/1754/CH6/EX6.2/Exa6_2.sce
763a50a6dc789dd2f07ec9e98637e4cade9eb118
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
525
sce
Exa6_2.sce
//Exa 6.2 clc; clear; close; //given data VGS1=0;//in Volt VGS2=0;//in Volt VGS3=-0.2;//in Volt VDS1=7;//in Volt VDS2=15;//in Volt VDS3=15;//in Volt ID1=10;//in mA ID2=10.25;//in mA ID3=9.65;//in mA delVDS=VDS2-VDS1;//in Volts delID=ID2-ID1;//in mA rd=delVDS/delID;//in Kohm disp(rd,"AC drain resistance in Kohm : "); delVGS=VGS3-VGS2;//in Volts delID=ID3-ID2;//in mA gm=delID*10^-3/delVGS;//in mhos disp(gm,"Transconductance in mhos : "); mu=rd*10^3*gm;//unitless disp(mu,"Amplification factor : ");
3ef81b6d5fdd38fdfe43ce50c63b44fbf96a50d0
cb4644f33db23e71551bd1eb5daff551d74ea5f3
/code/S1.sce
ab6aaaf8876be25a6c4c4aa4f8e2faff15ce4ad5
[ "MIT" ]
permissive
aghriss/PoissonMAPX
803078eba75374ed52e134f277df2946528ed1aa
61a828a01e92815ac1ec64a647e508cab0ab58f9
refs/heads/master
2020-04-24T17:28:25.996952
2019-02-22T23:35:03
2019-02-22T23:35:03
172,148,560
0
0
null
null
null
null
UTF-8
Scilab
false
false
580
sce
S1.sce
lambda=3 t=3 Nt= grand(1,1,"poi",lambda*t) // génère une valeur de Nt suivant la loi de Poisson U=grand(Nt,1,"unf",0,t) // génère Nt variables de loi uniforme sur [0,t] U=gsort(U,"g","i") // vecteur de statistiques d'ordre associées p=10000 x=linspace(0,t,p) // une partition (xi) de [0,t] de pas 1/p for j=1:p y(j)=0 for i=1:Nt if x(j)>=U(i) then // une suite (yi) avec yi=Card{j/ xi>=Uj } y(j)=y(j)+1 end end end plot2d(x,y) xtitle(’Simulation de processus de Poisson sur [0,’+string(t)+’], avec lambda = ’+string(lambda));
062952fa80f053444c35eac2005e1491bf92b561
449d555969bfd7befe906877abab098c6e63a0e8
/1703/CH6/EX6.5/6_5.sce
44cefb6e9d879064ddda148d785fcf5738845969
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
363
sce
6_5.sce
clc //initialisation of variables l= 5000 //ft d= 24 //in Q= 18 //cuses t= 10 //sec P= 275000 //lb/in^2 g= 32.2 //ft/sec^2 w=62.4 //CALCULATIONS v= Q/(%pi*(d/24)^2) C= v/(t^2/2) Pr= ((l*C*t/g)+(v^2/(2*g)))/2.3 Pr1= v*12*sqrt(w*P/(386.4*1728)) //RESULTS printf ('Pressure Rise = %.1f lb/in^2',Pr) printf ('\n Pressure Rise = %.f lb/in^2',Pr1)
17c57fc33922a9f4c096d099ce508d73787fc1f7
449d555969bfd7befe906877abab098c6e63a0e8
/2870/CH9/EX9.7/Ex9_7.sce
e04eac5cde8f1a8b732a13c01a6054b7e01a080f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
255
sce
Ex9_7.sce
clc;clear; //Example 9.7 //from 9.6 h2a=605.39; h4a=880.36; h3=1395.97; Wnet=210.41; //given data n=0.80; //calculations // n = (h5 - h2a) / (h4a - h2a) h5=(h4a - h2a)*n+h2a; qin=h3-h5; nth=Wnet/qin; disp(nth,'thermal efficiency is')
250a3378b217ef66a7edbae2ac78cce891178273
59b742e36fbe9d77cb51ec949c6625f665133d2b
/Resultados/results_LocGlo_22/results/22/l20-4/result2s0.tst
7e0e0ccff90d6ac6a296006652b77c32ccfeaf7a
[]
no_license
Tiburtzio/TFG
3132fd045de3a0e911e2c9e23e9c46e1075a3274
864ce4dd00b7f8fe90eafa65b11d799c5907177e
refs/heads/master
2023-01-03T12:44:56.269655
2020-10-24T18:37:02
2020-10-24T18:37:02
275,638,403
0
0
null
null
null
null
UTF-8
Scilab
false
false
665
tst
result2s0.tst
@relation unknow @attribute at1 real[11.0,14.9] @attribute at2 real[0.7,5.8] @attribute at3 real[1.3,3.3] @attribute at4 real[10.6,30.0] @attribute at5 real[70.0,162.0] @attribute at6 real[0.9,3.9] @attribute at7 real[0.3,5.1] @attribute at8 real[0.1,0.7] @attribute at9 real[0.4,3.6] @attribute at10 real[1.2,13.0] @attribute at11 real[0.4,1.8] @attribute at12 real[1.2,4.0] @attribute at13 real[278.0,1680.0] @attribute class{1,2,3} @inputs at1,at2,at3,at4,at5,at6,at7,at8,at9,at10,at11,at12,at13 @outputs class @data 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 1 1 2 2 3 3
4049abe6929e0c57fa27cd1c4ac0b3052a431937
449d555969bfd7befe906877abab098c6e63a0e8
/929/CH2/EX2.8.a/Example2_8_a.sce
3877f31065b3e7e2e5b54fb818890a435110514c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
607
sce
Example2_8_a.sce
//Example 2.8(a) clear; clc; R1=10*10^3; R3=R1; R2=100*10^3; R4=R2; //For first pair of inputs (v1, v2)=(-0.1 V, +0.1V) v11=-0.1; v21=0.1; vo1=(R2/R1)*(v21-v11); vcm1=(v11+v21)/2; //For Second pair of inputs (v1, v2)=(4.9 V, 5.1V) v12=4.9; v22=5.1; vo2=(R2/R1)*(v22-v12); vcm2=(v12+v22)/2; //For Third pair of inputs (v1, v2)=(9.9 V, 10.1 V) v13=9.9; v23=10.1; vo3=(R2/R1)*(v23-v13); vcm3=(v13+v23)/2; printf("vo for (-0.1 V,+0.1 V)=%.2f V",vo1); printf("\nvo for (4.9 V,5.1 V)=%.2f V",vo2); printf("\nvo for (9.9 V,10.1 V)=%.2f V",vo3);
db0e3b6f0bb2b66c1b1516391970b96eea74001e
449d555969bfd7befe906877abab098c6e63a0e8
/2300/CH15/EX15.7.2/Ex15_2.sce
3353859a203babd72f0bbf906b91678b2d2dab60
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
588
sce
Ex15_2.sce
//scilab 5.4.1 //Windows 7 operating system //chapter 15 Active Filters clc clear Ao=5//Ao=high frequency gain of a given first-order Butterworth active HP filter //Ao=(R1+R2)/R1 R1=1000//R1=Assumed resistance in ohms R2=(Ao*R1)-R1 fc=200//fc=given cut-off frequency in Hz //fc=1/(2*%pi*R*C) R=5*1000//R=Assumed resistance in ohms C=1/(2*%pi*R*fc) disp("The designed values of resistance and capacitance for a high-pass Butterworth filter are:") disp("kilo ohm",R1/1000,"R1=") disp("kilo ohm",R2/1000,"R2=") disp("kilo ohm",R/1000,"R=") disp("micro Farad",C/10^-6,"C=")
ef79be66ba876bb425dccdcdf9afba723ec16158
449d555969bfd7befe906877abab098c6e63a0e8
/3755/CH6/EX6.29/Ex6_29.sce
19c4ef13e383c806516cf0cee4425d9f14f735c1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
269
sce
Ex6_29.sce
clear // // // //Variable declaration delta_t=10^-8; //life time(s) //Calculations deltav=1/(4*%pi*delta_t); //minimum uncertainity in frequency(s-1) //Result printf("\n minimum uncertainity in frequency is %0.0f *10^6 s-1",deltav/10^6)
f99625b009a451840dba1002dc65e33688d453b8
29cfe7e83274e757dc406cdc2a855f7e76fdb698
/scilab/recursive_weighted_least_squares_ackerman_gyro.sce
47ede41a557b8ff64956f6696c91a3cea0e93ff6
[]
no_license
andreucm/essential_maths_roboticists
2eb637afe3f46be6eb6c697eba7ada1d9406f482
95530267db0890be1e76778062d8eafd41d451dd
refs/heads/master
2022-07-16T05:18:15.976563
2022-07-01T08:36:47
2022-07-01T08:36:47
47,470,143
1
12
null
null
null
null
UTF-8
Scilab
false
false
2,123
sce
recursive_weighted_least_squares_ackerman_gyro.sce
// clear clear; // input params time_step = 0.01; // algorithm loop rate [s] base_length = 1;// base length [m] wheel_radius = 0.4;// wheel radius [m] std_dev_wheel_encoder = ((2*%pi)/1024)/time_step;//[rad/s] std_dev_steering = (2*%pi)/1024;//[rad] std_dev_gyro = 0.01;//[rad/s] // simulation params n_iter = 200;//[#] vx_true = 7; //[m/s] wz_true = 0.1; //[rad/s] omega_noise = std_dev_wheel_encoder; //std dev[rad/s]dev[rad] alpha_noise = std_dev_steering; //std gyro_noise = std_dev_gyro; //std dev[rad/s] // initializations //I-kinematics to compute true rear wheel rotation speed and true steering omega_true = vx_true/wheel_radius; alpha_true = atan(wz_true*base_length/vx_true); x = [3;0.2]; Cx = [1 0; 0 1]; Cnz = [std_dev_wheel_encoder^2 0 0; 0 std_dev_steering^2 0; 0 0 std_dev_gyro^2]; I = eye(2,2); //set a 2x2 Identity rand("normal");//set the distribution type to the generator // plot arrays x_array = [x]; // main loop for t=1:n_iter // generate synthetic measurements with noise omega_measurement = omega_true+rand()*omega_noise; alpha_measurement = alpha_true+rand()*alpha_noise; gyro_measurement = wz_true+rand()*gyro_noise; z = [omega_measurement;alpha_measurement;gyro_measurement]; // compute the H matrix wBv2 = (x(2)*base_length/x(1))^2; H = [1/wheel_radius 0; -x(2)*base_length/((1+wBv2)*x(1)^2) base_length/((1+wBv2)*x(1));0 1]; // compute the expected measurement z_exp = H*x; // compute the K gain K = Cx*H'*inv(H*Cx*H'+Cnz); // update state mean and covariance x = x + K*(z-z_exp); Cx = (I-K*H)*Cx*(I-K*H)' + K*Cnz*K'; x_array = [x_array x]; end //plots figure('BackgroundColor',[1 1 1]); plot(x_array(1,:)); ph = gca(); // handle ph.x_label.text = 'iteration'; ph.y_label.text = 'Linear Velocity, v[m/s]'; ph.axes_visible = ["on","on","off"] ph.grid = [1,1]; ph.auto_scale="on"; figure('BackgroundColor',[1 1 1]); plot(x_array(2,:)); ph = gca(); // handle ph.x_label.text = 'iteration'; ph.y_label.text = 'Rotational Velocity, v[m/s]'; ph.axes_visible = ["on","on","off"] ph.grid = [1,1]; ph.auto_scale="on";
faa5b9250962eda33b0675723a04fc6f28b1b93f
449d555969bfd7befe906877abab098c6e63a0e8
/26/CH1/EX1.4.7/1_4_7.sce
b9614b2e492f5b592818103e459669b049385c46
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
211
sce
1_4_7.sce
disp('the three vectors are:') u=[4;-1;7;-4] v=[-5;3;-5;1] w=[7;-8;0;2] disp(w,v,u) disp('u v and w form the columns of A') A=[u v w] disp(A) disp('the augmented matrix is:') c=[A [6 -8 0 -7]'] disp(c)
14b5df2da4c290a825a7b82fa84ffa2dbb62d876
449d555969bfd7befe906877abab098c6e63a0e8
/824/CH4/EX4.10/4_10.sce
ed647d04e8c82a6826b5d48c0aa6ef1f1eae3adc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
429
sce
4_10.sce
//clear// clc clear exec("4__10.sci"); V = 0:1:500; function w=f(V,F) w=zeros(3,1); Ft=F(1)+F(2)+F(3); ra = -k*Ct0*((F(1)/Ft)-(Ct0/kc)*(F(2)/Ft)*(F(3)/Ft)); w(1)= ra; w(2) = -ra-kc*Ct0*(F(2)/Ft) w(3) = -ra; endfunction x=ode([10;0;0],V0,V,f); l1=x(1,: )' l2=x(2,: )' l3=x(3,: )' plot2d(V',[l1 l2 l3]); xtitle( 'Figure E4-10.2', 'V', 'Fa,Fb,Fc' ) ; legend(['Fa';'Fb';'Fc']);
4e81ece279f1683b05a0446df894fb59c8995bfe
449d555969bfd7befe906877abab098c6e63a0e8
/3886/CH8/EX8.15/8_15.sce
3d7112b1398bbdf2672483a97994f73d7e091f3d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
383
sce
8_15.sce
//Determine force P //refer fig.8.19 //(a) P at floor level //Applying virtual work principle //P*delta(x)-200*delta(y)=0 P=100*tand(30) //N //(b) If the rope is used instead of force P //refer fig.8.20 //Taking C as origin //Applying virtual work principle //(-3*T*cosd(theta)+400*sind(theta))*delta(theta)=0 T=(400*tand(30))/3 //N printf("\nP=%.2f N\nT=%.2f N",P,T)
dcc3260bacc9f0c55bf915bb52bf42e92b1bd9fe
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.3/Unix-Windows/scilab-2.3/macros/percent/%prp.sci
32c08b0666681e10e34e941272a4272a166e2a03
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain", "MIT" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
256
sci
%prp.sci
function f=%prp(p1,p2) // f=%prp(p1,p2) <=> f= p1*(p2^(-1)) //p1 polynomial matrix //p2 polynomial matrix //! [l,c]=size(p2) if l*c <>1 then f=p1*invr(p2),return,end [l,c]=size(p1) [p1 p2]=simp(p1,p2*ones(l,c)) f=tlist(['r','num','den','dt'],p1,p2,[])
90ae633e14f87757d17b5c29b6edaa7f21b7e513
449d555969bfd7befe906877abab098c6e63a0e8
/1997/CH2/EX2.9/example9.sce
23279db50d2728014d264ecb0676b16ed8206ccb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
512
sce
example9.sce
//Chapter-2 example 2.9 //============================================================================= clc; clear; Pt=500000;//peal power in watts F=10*10^9;//operating frequency in hz MRP=0.1*10^-12;//minimum receivable power in pico watts Ac=5;//capture area of antenna in m^2; RCS=20;//radar cross sectional area in m^2; Vo=3*10^8//velocity in m/s // calculations lamda =Vo/F Rmax=((Pt*Ac*Ac*RCS)/(4*%pi*lamda*lamda*MRP))^0.25 //output mprintf('Maximum Radar Range is %3.1f kms',Rmax/1000);
8143219487c53f8a3483ef93848733569d60b34f
449d555969bfd7befe906877abab098c6e63a0e8
/257/CH12/EX12.8/eg_12_8.sce
cc71cf5a372541b8c6279360a7fba20706194503
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
101
sce
eg_12_8.sce
s=%s h=syslin('c',(1+0.5*s)/(1+0.1*s)*(1+0.02*s)*(s^2)); nyquist(h) //show_margins(h,'nyquist')
feedfd15e21c82f48cfa7c040e40c278ca45e4d2
449d555969bfd7befe906877abab098c6e63a0e8
/3733/CH22/EX22.29/Ex22_29.sce
ef1dd006dfad36dda11d5a56bfe85b1bff5b8a7c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,227
sce
Ex22_29.sce
// Example 22_29 clc;funcprot(0); //Given data p_a=4.5;// bar p_b=0.04;// bar p_1=15;// bar p_2=0.04;// bar m_s=48000;// kg/hr T_a=450;// °C T_b=217;// °C h_fa=62.9// kJ/kg h_fb=30.0;// kJ/kg h_ga=356;// kJ/kg h_gb=330;// kJ/kg s_fa=0.135;// kJ/kg-K s_fb=0.081;// kJ/kg-K s_ga=0.539;// kJ/kg-K s_gb=0.693;// kJ/kg-K v_sfa=80*10^-6;// m^3/kg v_sfb=76.5*10^-6;// m^3/kg v_sga=0.068;// m^3/kg v_sgb=5.178;// m^3/kg //Calculation m_h2o=(m_s/3600);// kg/sec // s_a=s_b x_b=(s_ga-s_fb)/(s_gb-s_fb); h_b=h_fb+(x_b*(h_gb-h_fb));// kJ/kg h_c=30;// kJ/kg h_fc=h_c;// kJ/kg //From h-s chart: h_1=2800;// kJ/kg h_2=1920;// kJ/kg // From steam tables h_f3=121.4;// kJ/kg h_f4=844.6;// kJ/kg m_hg=(m_h2o*(h_1-h_f3))/(h_b-h_fc);// kg/sec m=m_hg/m_h2o; W_Hg=m_hg*(h_ga-h_b);// kW W_H2o=m_h2o*(h_1-h_2);// kW W_t=(W_Hg+W_H2o)/1000;//Total work done per second in MW Q_s=m_hg*(h_ga-h_fc);// The total heat supplied in kJ/sec n_o=((W_t*1000)/Q_s)*100;// Overall efficiency in % printf('\nThe overall efficiency of the cycle=%0.1f percentage \nThe flow of mercury through mercury turbine=%0.1f kg/sec \nTotal work done per second=%0.1f MW',n_o,m_hg,W_t); // The answer vary due to round off error
5440696e9576ba0dd685914620b703c9744e5d72
449d555969bfd7befe906877abab098c6e63a0e8
/2504/CH10/EX10.5/10_5.sce
f486ea338a7d445bc246bd26eac6f391dfee80bd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
553
sce
10_5.sce
clc //initialisation of variables clear bi= 70 //degrees i= 8 //degrees bo= 130 //degrees s= 5 //degrees vi= 1200 //ft/sec g= 32.2 //ft/sec^2 a= 0.48 s1= 1.4 //in b= 5 //in Cx= 0.06 //CALCULATIONS O= bo-s-bi+i Vo= vi*sind(bi-i)/sind(bo-s) Fy= -a*vi*sind(bi-i)*(s1/12)*(b/12)*(Vo*cosd(bo-s)-vi*cosd(bi-i))/g dp= a*(Vo^2*(1+Cx)-vi^2)/(2*g) //RESULTS printf ('Fluid deflection angle = %.f degrees',O) printf ('\n Vo = %.f ft/sec',Vo) printf ('\n Force on each blade = %.f lbf',Fy) printf ('\n Pressure difference = %.f lbf/ft^2',dp)
cb5127fb1e5410d4dcc23370f0b770e478bf8962
449d555969bfd7befe906877abab098c6e63a0e8
/1163/CH4/EX4.1/example_4_1.sce
7a2606d396ff73a35a60bc9e465654fc81cfb5b4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
275
sce
example_4_1.sce
clear; clc; disp("--------------Example 4.1---------------") r=1; // 1 data element/ 1 signal element N=100*10^3; // bitrate=100 kbps c=(0+1)/2; //case factor S=c*N*(1/r); // formula for baud rate printf("The average baud rate is %d kbaud.",S*10^-3);//display result
67748dbd333d9fbf5401b2ff94e8cb80a17851b6
5aca3165fc98db8db50dc41429fe6ff0ebde7410
/SPEECH BASED BALL COLLECTOR_2011/code/final.sce
75e74a5730a22517b87eb99eeb2c6b3bf2ec4c55
[]
no_license
sachinuthale/CS684_2011
f0af4ec306c6cec4a015dc11648a8dc21eac8124
51c2bd9e0ee3a819c50eb4d9fd2708699b44b92a
refs/heads/master
2020-05-29T21:51:13.096232
2014-05-23T23:41:26
2014-05-23T23:41:26
20,291,312
0
1
null
null
null
null
UTF-8
Scilab
false
false
8,440
sce
final.sce
//function to detect object and return the co-ordinates of the object in the 1st frame it is detected in the vector rectrec //parameters //colour=colour of object to find; notfound=signal to be sent till object is not found; found=signal to be sent when object is found; objct=ball or basket function rectret=findobject(colour,notfound,found,objct) obj_found=0; rect=[0,0,0,0]; //vid=camopen(); fr=avireadframe(vid); while ~isempty(fr) str=notfound; writeserial(handle,str+ascii(13)) //write to serial port that object is not found //sleep(3000); if colour=='red' set_val=1; elseif colour=='green' set_val=2; else set_val=3; end; if colour=='blue' //colour intensity threshold for colour detection cthresh=0.1; elseif colour=='red' cthresh=0.2; else cthresh=0.05; end; count=0; maxm=0; reg=0; objx=zeros(info.Height); objy=zeros(info.Height); objcount=0; diff_im = imabsdiff(fr(:,:,set_val),rgb2gray(fr)); //subtract colour component from the image diff_im = im2bw(diff_im,cthresh); //convert image to binary mat=diff_im; flag1=0; xS=190; //search for the object in the range [190-350] x co-ordinates with 10 pixels gap xE=350; //i.e search the object only when it appears in the center of the screen yS=1; yE=info.Height; if objct=='box' xS=230; xE=400; end; xS xE if ~obj_found, totcount=0; //seedfill algorith, to identify object cluster with size greater han 1000 pixels....seach co-ordinates in x-range defined with 10 pixels gap //as the object size is large we do not need to search each and every pixel for i=xS:10:xE, if flag1==1 break; end; for j=yS:50:yE, if flag1==1 break; end; //disp(i);disp(j); if mat(i,j)==%t count=0; objcount=0; savex=zeros(info.Height); savey=zeros(info.Height); reg=reg+1; totcount=0; count=count+1; stakx(count)=i; staky(count)=j; while count>0, mat(stakx(count),staky(count))=%f; objcount=objcount+1; savex(objcount)=stakx(count); savey(objcount)=staky(count); m=stakx(count); n=staky(count); count=count-1; totcount=totcount+1; if totcount > 1000 //object size flag1=1; objx=savex; objy=savey; obj_found=1; disp('obj found'); break; end; if (m-1)>0 & mat(m-1,m)==%t count=count+1; stakx(count)=m-1; staky(count)=n; end; if (n+1)<info.Width & mat(m,n+1)==%t count=count+1; stakx(count)=m; staky(count)=n+1; end; if (n-1)>0 & mat(m,n-1)==%t count=count+1; stakx(count)=m; staky(count)=n-1; end; if (m+1)<info.Height & mat(m+1,n)==%t count=count+1; stakx(count)=m+1; staky(count)=n; end; if (m-1)>0 & (n-1)>0 & mat(m-1,n-1)==%t count=count+1; stakx(count)=m-1; staky(count)=n-1; end; if (m+1)<info.Height & (n+1)<info.Width & mat(m+1,n+1)==%t count=count+1; stakx(count)=m+1; staky(count)=n+1; end; if (m-1)>0 & (n+1)<info.Width & mat(m-1,n+1)==%t count=count+1; stakx(count)=m-1; staky(count)=n+1; end; if (n-1)>0 & mat(m+1,n-1)==%t count=count+1; stakx(count)=m+1; staky(count)=n-1; end; end; end; if totcount>maxm maxm=totcount; objx=savex; objy=savey; end; end; end; //maxm if maxm > 1000 //object size minRow=min(objx); maxRow=max(objx); minCol=min(objy); maxCol=max(objy); if maxRow>info.Height maxRow=info.Height; end; if maxCol>info.Width maxCol=info.Width; end; rect=[minCol,minRow,maxCol-minCol,maxRow-minRow]; newObj=rectangle(fr,rect,[255,0,0]); else newObj=fr; end; //end condition for drawing rectangle end; // end if for obj found imshow(newObj); if obj_found==1 //object is found here..guide the bot to reach it break; end; fr=avireadframe(vid); end; //end for loop for reading frames rectret=rect; //return co-ordinates of the rectange where object is first spotted in the frame endfunction //use camshift function in scilab to trace the object in each frame //parameters same as above function; additional parameter : action="pick" or "drop" the object when it is reached function traceobject(colour,notfound,found,action,objct) rect=findobject(colour,notfound,found,objct) fr=avireadframe(vid); centrex=info.Width/2; centrey=info.Height/2; //avicloseframe(vid); obj_win = camshift(fr, rect); //initialize tracker while ~isempty(fr), obj_win = camshift(fr); //camshift tracking disp('obj window'); //obj_win im = rectangle(fr, obj_win, [255,0,0]); imshow(im); cx=obj_win(1)+obj_win(3)/2; cy=obj_win(2)+obj_win(4)/2; //identify approaximate centre of object cluster in the rectangle val=abs(cx-centrex); //val - distance between centre of frame and centre of object disp(val); if val < 270 //if the distance between centres is less than some threshold object is at centre of screen disp('move forward'); str=found; disp('data sent'); //send signal to firebird that object is found disp(str+ascii(13)); buf='0' //buf=readserial(handle); //read ack from firebird whether it received the signal or else send it again till ack-ed v=str+ascii(13); while(buf ~= v & buf~=action) disp(buf); sleep(500); writeserial(handle,str+ascii(13)) sleep(500); buf=readserial(handle) if (buf=='5') return; end; end disp('data received'); disp(buf); if buf==action //after ack-ing the signal sent by scilab the firebird sends another signal, which indicates ball has been picked or dropped in the basket return //the program returns after recieving the signal end; buf='0' buf=readserial(handle); while(buf ~= action) sleep(500); buf=readserial(handle); end disp('data received'); disp(buf); return else str=notfound; //the object is not found yet...keep on sending this signal to the firebird disp('data sent'); disp(str+ascii(13)); writeserial(handle,str+ascii(13)) //sleep(3000); end; fr = avireadframe(vid); end; endfunction function main(objc) //parameters for frame dimension info.Height=500; info.Width=700; handle=openserial(6,"9600,n,8,1") //open the serial communication interface with port_no=6 vid=camopen(); //open the camera str='1'; disp('data sent'); disp(str+ascii(13)); //send 2 dummy signals to firebird to initiate it before picking ball writeserial(handle,str+ascii(13)) str='1'; disp('data sent'); disp(str+ascii(13)); writeserial(handle,str+ascii(13)) traceobject(objc,'1','2','3','ball'); //trace ball disp('ball picked up'); obj_found=0; fr=0; str='4'; disp('data sent'); disp(str+ascii(13)); writeserial(handle,str+ascii(13)) //send 2 dummy signals to firebird to initiate it before dropping ball str='4'; vid=camopen(); //refresh the frames and re-initiate camera disp('data sent'); disp(str+ascii(13)); writeserial(handle,str+ascii(13)) traceobject('green','4','5','6','box'); //trace basket closeserial(handle); endfunction //end main function filename = "C:\Users\int\workspace\speechrecg\color.txt"; // read from this file which colour of ball to pick. basket colour by default is green //the speech processing module writes to the above file indicating colour of ball to be picked fid = mopen(filename, "r"); if (fid == -1) error("cannot open file for reading"); end; [num_read, val(1)] = mfscanf(fid, "%s"); mclose(fid); col=val(1); disp(col); main(col); // call main function with ball colour
de1c3a1698f854f28163f4134c5d418aed42b0fa
449d555969bfd7befe906877abab098c6e63a0e8
/1931/CH4/EX4.10/10.sce
4a4545095428b8e5377826df3819b9f74c3a60ba
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
409
sce
10.sce
clc clear //INPUT DATA w=5893*10^-10//wavelength of sodium light in m Ro=1.658//Refractive index of calcite for o ray Re=1.486//Refractive index of calcite for e ray //CALCULATION t=((w/(2*(Ro-Re))))/10^-7//thickness of the quarter wave plate for calcite in m *10^-7 //OUTPUT printf('The thickness of the quarter wave plate for calcite is %3.3f *10^-7.m',t) //Answer given in the book is wrong
5020dc4d6a12716a8ecc48972a9fe2381e4821db
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH5/EX5.27/Ex5_27.sce
1c51189a1ce9919dfac64ed53e9dc4a900969b23
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,088
sce
Ex5_27.sce
clc; v=400; // rated voltage of synchronous machine vt=v/sqrt(3); // per phase rated voltage ps=9500; // shaft load xd=5; // per phase d-axis synchronous reactance xq=3.2; // per phase q-axis synchronous reactance l=500; // friction windage and core losses np=3; // number of phases // at rated voltage excitation EMF Ef=v/sqrt(3); // excitation EMF disp('case a'); pt=ps+l; // power developed // by using formula pd=np*(((Ef*Ef*sind(de))/xd)+((Ef^2*sind(2*de)*0.5*(xd-xq))/(xd*xq))), and hit and trial method we obtain value of load angle de=11.623; // load angle id=(Ef-Ef*cosd(de))/xd; // d-axis component of armature current iq=(Ef*sind(de))/xq; // q-axis component of armature current ia=sqrt(id^2+iq^2); printf('Armature current is %f A\n',ia); pf=cosd(acosd(iq/ia)-de); printf('Power factor is %f lagging\n',pf); disp('case b'); de=acosd((-Ef*xq)/(4*Ef*(xd-xq))+(sqrt(0.5+((Ef*xq)/(4*vt*(xd-xq)))^2))); pd=np*(((Ef*Ef*sind(de))/xd)+((Ef^2*sind(2*de)*0.5*(xd-xq))/(xd*xq))); // maximum power developed po=pd-l; printf('Maximum power output is %f W',po);
af05a3ce0bb82fec762f474dfb45b6696af2c740
449d555969bfd7befe906877abab098c6e63a0e8
/3751/CH4/EX4.9/Ex4_9.sce
5d0fc182b1843f9877df07afcd7288ac821a33b0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,040
sce
Ex4_9.sce
//Fluid system - By - Shiv Kumar //Chapter 4 - Pelton Turbine (Impulse Turbine) //Example 4.9 clc clear //Given Data:- P=3000; //Power developed, kW H=300; //Head, m N=375; //Speed, rpm eta_O=83/100; //Overall efficiency Ku=0.46; //Speed ratio Cv=0.98; //Co-efficient of Velocity //Data Used:- rho=1000; //Density of water, kg/m^3 g=9.81; //Acceleration due to gravity, m/s^2 //Computations:- //(i) Diameter of Turbine, D D=60*Ku*sqrt(2*g*H)/(%pi*N); //m //(ii) Diameter of Jet, d Q=P*1000/(rho*g*H*eta_O); //m^3/s Vi=Cv*sqrt(2*g*H); //m/s d=(Q/((%pi/4)*Vi))^(1/2); //m //Results:- printf("(i) Diameter of the Turbine, D=%.2f m \n", D) //The answer vary due to round off error printf("(ii) Diameter of the Jet, d=%.4f m", d) //The answer vary due to round off error
0cd0073c4df45d391ab3194d6c08206b0504793b
449d555969bfd7befe906877abab098c6e63a0e8
/249/CH8/EX8.3/8_03.sce
b4fac17553b09e7695549ce6306c5c66dc2cedc2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
854
sce
8_03.sce
clear clc CAo=185;CA=100;t=30; //As A disappears by 1st Order kinetics //ln(CAo/CA)=K123t K123=log(CAo/CA)/t; //From the initial rate of formation of R //dCR/dt(m1)=k2*CAo m1=2; k2=m1/CAo; ////From the initial rate of formation of R m2=1.3; k1=m2/CAo; k3=K123-k1-k2; //Looking at the maxima of S and T curves //For S,CSmax/CAo=(k1/k123)*(k123/k4)^(k4/(k4-k123)) //trial and error for k4=0.0001:0.0001:0.1 Csmax=CAo*(k1/K123)*((K123/k4)^(k4/(k4-K123))); if Csmax>31.8 & Csmax<32.2 break end end //similarly for T for k5=0.001:0.0001:0.02 Ctmax=CAo*(k3/K123)*((K123/k5)^(k5/(k5-K123))); if Ctmax>9.95 & Ctmax<10.08 break end end printf("\n The rate constants are") printf("\n k1= %f",k1) printf("\n k2= %f",k2) printf("\n k3= %f",k3) printf("\n k4= %f",k4) printf("\n k5= %f",k5)
597bef734ca2f34b377fbc653e3151333f6d3cf7
449d555969bfd7befe906877abab098c6e63a0e8
/98/CH8/EX8.25/example8_25.sce
9d274395a97fc1ea772d698660e9466d778a47b9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
573
sce
example8_25.sce
//Chapter 8 //Example 8_25 //Page 195 clear;clc; h2=90; h1=40; h=h2-h1; l=400; t=2000; w=1; d=h*2*t/l; A=[1 1; -1 1]; b=[l; d]; X=A\b; x1=X(1); x2=X(2); printf("x1 = %.0f m \n", x1); printf("x2 = %.0f m \n\n", x2); x=abs(x1)+l/2; s2=w*x2^2/2/t; smid=w*x^2/2/t; hb=s2-smid; cl=h2-hb; printf("The distance from the lowest point to the midpoint = %.0f m \n", x); printf("Sag at midpoint = %.2f m \n", smid); printf("S2 = %.2f m \n", s2); printf("Height of point B from mid point = %.0f m \n", hb); printf("Clearance of mid point from water level = %.2f m \n\n", cl);
91228fde2ffdc479c0fdbaa221ba2e513a427432
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.4/demos/sci2for/printspecs.sci
9cc418329ffb5bb3cba028a09f65bc12625afb65
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
1,750
sci
printspecs.sci
function []=printspecs(mac,type_desc) //displays description of a macro to translate into fortran //! // Copyright INRIA blk=' '; typs=['entier','double precision','?','?'] n=size(type_desc) [lhs,rhs]=argn(0) [out,in,cod]=string(mac) txt=['['+makeargs(out)+']='+nam+'('+makeargs(in)+')';cod] desc='| variable number | fortran type |# rows |# columns |' dd=[20,17,11,13] for k=1:n, tk=type_desc(k) num=string(k);num=num+part(blk,1:dd(1)-length(num)) ftyp=typs(evstr(tk(1))+1);ftyp=ftyp+part(blk,1:dd(2)-length(ftyp)) nl=tk(2);nl=nl+part(blk,1:dd(3)-length(nl)) nc=tk(3);nc=nc+part(blk,1:dd(4)-length(nc)) desc=[desc;'|'+num+'|'+ftyp+'|'+nl+'|'+nc+'|'] end x_message([' source code of Scilab function';.. '-----------------------------';' ';txt;.. ' ';' ';.. 'type and dimension of input parameters';.. '---------------------------------------';.. ' ';desc]) write(%io(2),[' ';'Now translation is made...';' ']) function [txt]=gendesc(mac,type_desc,fnam) // For intersci... //! [out,in]=string(mac) n=size(type_desc) first=fnam; ret='sequence ' for l=1:prod(size(out)), ret=ret+' '+out(l);end txt=[] for k=1:n tk=type_desc(k) first=first+' '+in(k) desck=in(k) if tk(2:3)== ['1','1'] then desck=desck+' scalar' elseif tk(2)=='1' then desck=desck+' column '+tk(3) elseif tk(3)=='1' then desck=desck+' row '+tk(2) else desck=desck+' matrix '+tk(2)+' '+tk(3) end txt=[txt;desck] end txt=[first;txt;' ';'fortran args'] for k=1:n tk=type_desc(k) first=first+' '+in(k) desck=in(k) if tk(1)== '0' then desck=desck+' int' elseif tk(2)=='1' then desck=desck+' double' end txt=[txt;desck] end
0eaf37cc34b634a2e2e822e1791d1a030300511a
449d555969bfd7befe906877abab098c6e63a0e8
/61/CH6/EX6.10/ex6_10.sce
909ba74b0828fdc0fb452a7e32824196daa0251b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
909
sce
ex6_10.sce
//ex6.10 V_CC=12; V_BE=0.7; R_C=10^3; r_e_ce=5; //for common emitter amplifier R1=10*10^3; R2=22*10^3; R_E=22; R_L=8; B_DC=100; B_ac=100; V_B=((R2*B_DC^2*R_E/(R2+B_DC^2*R_E))/(R1+(R2*B_DC^2*R_E/(R2+B_DC^2*R_E))))*V_CC; V_E=V_B-2*V_BE; I_E=V_E/R_E; r_e=25*10^-3/I_E; //for darlington emitter-follower P_R_E=I_E^2*R_E; //power dissipated by R_E P_Q2=(V_CC-V_E)*I_E //power dissipated by transistor Q2 R_e=R_E*R_L/(R_E+R_L); //ac emitter resistance of darlington emitter follower R_in_tot=R1*R2*B_ac^2*(R_e+r_e)/(R1*R2+R1*B_ac^2*(r_e+R_e)+R2*B_ac^2*(r_e+R_e)); //total input resistance of darlington R_c=R_C*R_in_tot/(R_C+R_in_tot); //effective ac resistance A_v_CE=R_c/r_e_ce; disp(A_v_CE,'voltage gain of common emitter amplifier') A_v_EF=R_e/(r_e+R_e); disp(A_v_EF,'voltage gain of darlington emitter follower') A_v=A_v_CE*A_v_EF; disp(A_v,'overall voltage gain')
9c332e5adb82995c7569232c6ebd065bdb53d520
feede54c196a479bdc4592783238f5771854ad20
/Scilab-Code/Q11flux.sce
ca40b3ae22ecc4f0836f68b90baea6083bbe8dbe
[]
no_license
cachett/HeatDiffusion
6275213da94745662db20ecf78d6bf9b1a6f90f1
5e80327fbc7da084338499064bcce80c1a92647c
refs/heads/master
2021-05-14T09:18:24.602579
2018-01-05T13:18:18
2018-01-05T13:18:18
116,322,677
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,279
sce
Q11flux.sce
// Scripts Q11, renvoie le couple F(xd)=(f(tinter),f(tfin)) en fonction de la position xd du défaut clc; exec("Q3factorise.sce") exec("Q4descente.sce") exec("Q5remonte.sce") //initialisation des variables l = 10 a = 0.8 nbrPoints = 20 nbrTemps = 3000 T=60 deltax = 2*l/(nbrPoints-1) deltat = T/nbrTemps mu = deltat/deltax^2 function Cx = C(xd, x) //calcul la conductivité donnée par le modèle (1) suivant xd, au point x. Cx = 1 - a*exp((-(x-xd).^2 )/4) endfunction function [Mdiag, Minf, Ndiag, Ninf]=genereMatricesMN(xd) // génération de M = I + teta * mu * A et N = I - teta * mu * A // abcisse utilisée pour le calcul de la diagonale abscisse = linspace(-l+ deltax,l - deltax, nbrPoints - 2) // abscisse2 utilisée pour le calcul de la sous diagonale abscisse2 = linspace(-l + 2*deltax, l - deltax, nbrPoints -3) Adiag = C(xd, abscisse + deltax/2) + C(xd, abscisse - deltax/2) Ainf = -C(xd, abscisse2 - deltax/2) Mdiag = 1 + (1/2)*mu*Adiag Minf = (1/2)*mu*Ainf Ndiag = 1 - (1/2)*mu*Adiag Ninf = -(1/2)*mu*Ainf endfunction function MembreDroit = calculMembreDroit(U, Ndiag, Ninf, B) // calcul de NU^(k) + B(k) MembreDroit = Ndiag.* U + [0,Ninf.*U(1:size(U,"c")-1)] + [Ninf .* U(2:size(U,"c")),0] + mu*B endfunction function [Uinter, Ufin]=iterTemps(Mdiag, Minf, Ndiag, Ninf) //permet de trouver u(x1,2/3T) et u(x1,T) U = zeros(1,nbrPoints-2) [MdiagFact, MinfFact] = factorise(Mdiag, Minf) B=zeros(1,nbrPoints-2) for k = 1 : nbrTemps - 1 //Premier terme de B : C1/2(u0(tk+1)téta + u0(tk)(1-téta)), le reste vaut 0 //avec u0(t)= (t/T)^2 B(1,1) = C(xd,-l+deltax/2)*((((k+1)*deltat)/T)^2+((k*deltat)/T)^2)/2 MembreDroit = calculMembreDroit(U, Ndiag, Ninf, B) // calcul de U^(k+1) = M^-1*N*U^(k) + M^-1 * B Z = descente(MdiagFact, MinfFact, MembreDroit) U = remonte(MdiagFact, MinfFact, Z) //On relève la coordonnée de U qui nous intéresse au moment opportun if k == 2*nbrTemps/3 then abscisse=linspace(-l, l, nbrPoints-2) plot(abscisse, U, "r") title("Représentation fonction de Uinter et Ufin avec xd = -6") xlabel("x") ylabel("U") Uinter = U(1,1) end end abscisse=linspace(-l, l, nbrPoints-2) plot(abscisse, U) Ufin = U(1,1) endfunction function Fxd = flux(xd) //On génère les matrices nécessaires dépendantes de xd [Mdiag, Minf, Ndiag, Ninf] = genereMatricesMN(xd) // On retrouve les valeurs u(x1, 2/3T) et u(x1,T) en itérant sur le vecteur U [Uinter, Ufin] = iterTemps(Mdiag, Minf, Ndiag, Ninf) // disp("Uinter"+ string(Uinter)) //On retourne les valeurs du flux sous forme d'un couple Finter = (C(xd,-l+deltax/2)*(Uinter-(4/9))/deltax) - ((2*deltax)/(3*T)) Ffin = (C(xd,-l+(deltax/2))*(Ufin-1)/deltax) - (deltax/T) Fxd = [Finter, Ffin] disp(Fxd) endfunction flux(-6) //function test() // fonction de test pour vérifier l'évolution du flux selon l'endroit de déformation // for i=-20:20 // flux(i/2) //end //endfunction
f55649298aadbc23afddf1060bbfdd935b412541
449d555969bfd7befe906877abab098c6e63a0e8
/1757/CH4/EX4.1/EX4_1.sce
752dae98efc8031922bf6f0b459d723abf87f9b5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
675
sce
EX4_1.sce
//Example 4.1 // For an op-amp circuit find a) closed loop gain Acl b) input impedance Zin c) output impedance Zo clc ; clear ; close ; ro = 85 ; // ohm A = 150*10^3 ; // ohm R2 = 350*10^3 ; // ohm // Feedback resistance R1 = 10*10^3 ; // ohm // Input resistance // a) closed loop gain // ACL = abs(Vo/Vin) = abs(R2/R1) ACL = abs(R2/R1) ; disp(' closed loop gain of an op-amp is = '+string(ACL)+' '); // 1/beta = ACL beta = (1/ACL) ; // b) the input impedance Zin Zin = R1 ; disp(' the input impedance Zin = '+string(Zin)+' ohm '); // c0 the output impedance Z0 Z0 = (ro)/(1+(beta*A)); disp(' the output impedance Z0 = '+string(Z0)+' ohm ');
69c2f55de94bf4681bc9d0a4561a8ea4d4092896
6e257f133dd8984b578f3c9fd3f269eabc0750be
/ScilabFromTheoryToPractice/Computing/testkron.sce
441eb35e066d038c6ee16559a0055841468cbc6b
[]
no_license
markusmorawitz77/Scilab
902ef1b9f356dd38ea2dbadc892fe50d32b44bd0
7c98963a7d80915f66a3231a2235010e879049aa
refs/heads/master
2021-01-19T23:53:52.068010
2017-04-22T12:39:21
2017-04-22T12:39:21
89,051,705
0
0
null
null
null
null
UTF-8
Scilab
false
false
90
sce
testkron.sce
A=eye(2,2),B=[0 1;1 0] A.*.A // tensor product kron(A,B) // tensor product A.*.B
59c52a16f1be02188482d956d8fcbfa69a311ec6
18bf68cdf766092ccdcba8d231e8140063833a5a
/advanced_delayed.sce
35ce931886acba4bf0fa1e2104720f30ab1c6de8
[]
no_license
goodengineer/Scilab-Exercises
b51cc9a4c938f0289a32875d2d21eb9061d0e68e
3c268211fe48e7e4d0002e44757ea8b50cda10f9
refs/heads/master
2022-12-24T23:30:12.875423
2020-10-05T06:27:20
2020-10-05T06:27:20
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,313
sce
advanced_delayed.sce
// ******************************************* // Program to plot an advanced and delayed continuous signal // ******************************************* clear; clf; A = 1; f = 100; T = 1 / f; N = 1 / 2; sampling_f = f * 100; signal_t = 0 : 1 / sampling_f : N * T; x_signal = A * sin(2 * %pi * f * signal_t) total_t = -3 * T : 1 / sampling_f : 3 * T; delay = 0 : 1 / sampling_f : N * T; total_len = length(total_t); signal_len = length(signal_t); initial_zeros_len = total_len / 2; final_zeros_len = total_len - initial_zeros_len - signal_len; delay_len = length(delay); normal = [zeros(1, initial_zeros_len) x_signal zeros(1, final_zeros_len)] delay = [zeros(1, initial_zeros_len + delay_len) x_signal zeros(1, final_zeros_len - delay_len)] advance = [zeros(1, initial_zeros_len - delay_len) x_signal zeros(1, final_zeros_len + delay_len)] subplot(3 , 1, 1); plot(total_t, normal); xgrid(4); xlabel("t", "fontsize", 5); ylabel("x(t)", "fontsize", 5); title("Normal Wave", "fontsize", 5); subplot(3 , 1, 2); plot(total_t, delay); xgrid(4); xlabel("t", "fontsize", 5); ylabel("x(t + td)", "fontsize", 5); title("Delayed Wave", "fontsize", 5); subplot(3 , 1, 3); plot(total_t, advance); xgrid(4); xlabel("t", "fontsize", 5); ylabel("x(t - td)", "fontsize", 5); title("Advanced Wave", "fontsize", 5);
7bf3158a3c7eeb54c9598a5a11ada2c43db91843
449d555969bfd7befe906877abab098c6e63a0e8
/812/CH11/EX11.04/11_04.sce
350f4dc6e695997cd27adeeef5fbbe5fb08944b5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
829
sce
11_04.sce
//pressure and change// pathname=get_absolute_file_path('11.04.sce') filename=pathname+filesep()+'11.04-data.sci' exec(filename) //Mach number at entry: M1=V1/sqrt(k*R*T1) //Stagnation pressure at entry(in kPa): p01=p1*(1+(k-1)/2*M1^2)^(k/(k-1)) //Stagnation temperature at entry(in K): T01=T1*(1+(k-1)/2*M1^2) //Static pressure at exit(in kPa): p2=p02/(1+(k-1)/2*M2^2)^(k/(k-1)) //Temperature at exit(in K): T2=T02/(1+(k-1)/2*M2^2) //Change in entropy(in kJ/kg-K): ds=cp*log(T2/T1)-R/1000*log(p2/p1) printf("\n\nRESULTS\n\n") printf("\n\nStagnation pressure at entry: %.3f kPa\n\n",p01) printf("\n\nStagnation temperature at entry: %.3f K\n\n",T01) printf("\n\nStatic pressure at exit: %.3f kPa\n\n",p2) printf("\n\nTemperature at exit: %.3f K\n\n",T2) printf("\n\nChange in entropy: %.3f kJ/kg-K\n\n",ds)
1823cddd7c5e769f9317e332056d202b2a05210b
49c332fb095450edccbd7e42e057fa0b57157045
/test/FM06.prev.tst
0d73547c87b3528cc81ac0f2a9318f3f996a13fa
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/numword
836edd4693d90ede0f37ebcad01f8202362f3c74
9fbef644f2142ed7db9b4fa696b5a2388181f7b9
refs/heads/master
2022-02-04T19:09:38.860895
2022-01-28T14:43:02
2022-01-28T14:43:02
5,777,703
1
0
null
null
null
null
UTF-8
Scilab
false
false
35
tst
FM06.prev.tst
1 Mo 2 Di 3 Mi 4 Do 5 Fr 6 Sa 7 So
39e1ee7fbc78e91a10ae3b732338484cd6395387
449d555969bfd7befe906877abab098c6e63a0e8
/764/CH10/EX10.10.b/solution10_10.sce
dec13508221a94838e4b12b750d2c1bbee04ca78
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,093
sce
solution10_10.sce
//Function to round-up a value such that it is divisible by 5 function[v] = round_five(w) v = ceil(w) rem = pmodulo(v,5) if (rem ~= 0) then v = v + (5 - rem) end endfunction //Obtain path of solution file path = get_absolute_file_path('solution10_10.sce') //Obtain path of data file datapath = path + filesep() + 'data10_10.sci' //Obtain path of function file funcpath = path + filesep() + 'functions10_10.sci' //Clear all clc //Execute the data file exec(datapath) exec(funcpath,[-1]) //Calculate the initial spring force P1 (N) P1 = k * delta1 //Calculate the final spring force P2 (N) P2 = k * delta2 //Calculate the average force during compression P (N) P = (P1 + P2)/2 //Calculate the exact spring stiffness kact (N/mm) kact = (E*1000)/(P*(delta2 - delta1)) //Calculate the maximum spring force P2new (N) P2new = delta2 * kact //Calculate the permissible shear stress in the spring tau (N/mm2) tau = (r/100)*Sut //Calculate the Wahl factor K K = (((4 * C) - 1)/((4 * C) - 4)) + (0.615/C) //Calculate the wire diameter d (mm) d = sqrt(K * ((8 * P2new * C)/(%pi * tau))) dround = ceil(d) //Calculate the mean coil diameter D (mm) D = C * dround //Calculate the number of active turns N N = (G * (dround^4))/(8 * (D^3) * kact) Nround = ceil(N) //Calculate the total number of turns Nt = active_coils(endtype, Nround) //Calculate the solid length of the spring s (mm) s = Nt * dround //Calculate the maximum deflection of the spring deltamax (mm) deltamax = (8 * P2new * (D^3) * Nround)/(G * (dround^4)) //Calculate the free length of the spring len (mm) len = s + ((Nt - 1)*g) + deltamax lround = round_five(len) //Calculate the pitch of the coils p (mm) p = lround/(Nt - 1) //Print results printf("\nWire diameter(d) = %f or %f mm\n",d,dround) printf("\nMean coil diameter(D) = %f mm\n",D) printf("\nNumber of active coils(N) = %f or %d\n",N, Nround) printf("\nTotal number of coils(Nt) = %d\n",Nt) printf("\nSolid length of the spring(s) = %f mm\n",s) printf("\nFree length of the spring(len) = %f or %f mm\n",len,lround) printf("\nPitch of the coil(p) = %f mm\n",p)
f8f80c06bb0a966200835131ae3342ec12b921b5
449d555969bfd7befe906877abab098c6e63a0e8
/497/CH11/EX11.4/Chap11_Ex4.sce
b3f2ff17962d0df34ba4eefecb972600e16f0b2d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,959
sce
Chap11_Ex4.sce
//Kunii D., Levenspiel O., 1991. Fluidization Engineering(II Edition). Butterworth-Heinemann, MA, pp 491 //Chapter-11, Example 4, Page 274 //Title: Heating a Particle in a Fluidized Bed //========================================================================================================== clear clc //INPUT rhog=1.2;//Density of air in kg/m^3 myu=1.8E-5;//Viscosity of gas in kg/m s kg=2.6E-2;//Thermal concuctivity of gas in W/m k dp=1E-4;//Particle size in m rhos=8920;//Density of solids in kg/m^3 Cps=390;//Specific heat capacity of the solid in J/kg K ephsilonf=0.5;//Void fraction of the fluidized bed umf=0.1;//Velocity at minimum fluidization condition in m/s uo=0.1;//Superficial gas velocity in m/s pi=3.14 //CALCULATION to=0;//Initial temperature of the bed T=100;//Temperature of the bed t=0.99*T;//Particle temperature i.e. when it approaches 1% of the bed temperature mp=(pi/6)*dp^3*rhos;//Mass of the particle A=pi*dp^2;//Surface area of the particle Rep=(dp*uo*rhog)/myu;//Reynold's no. of the particle Nubed=0.0178;//Nusselt no. from Fig.(6) hbed1=(Nubed*kg)/dp;//Heat transfer coefficient of the bed t1=(mp*Cps/(hbed1*A))*log((T-to)/(T-t));//Time needed for the particle approach 1 percentage of the bed temperature in case(a) hbed2=140*hbed1;//Since from Fig.(6) Nup is 140 times Nubed t2=(mp*Cps/(hbed2*A))*log((T-to)/(T-t));//Time needed for the particle approach 1 percentage of the bed temperature in case(b) //OUTPUT printf('\nCase(a):Using the whole bed coefficient from Fig.(6)'); mprintf('\n\tTime needed for the particle approach 1 percentage of the bed temperature is %fs',t1); printf('\nCase(b):Uisng the single-particle coefficient of Eqn.(25),also shown in Fig.(6)'); mprintf('\n\tTime needed for the particle approach 1 percentage of the bed temperature is %fs',t2); //====================================END OF PROGRAM ======================================================
f7508798512703e57bf47664e780a38632667a1b
9224090b07cb3f466fe72819cf90ca0c4dedc901
/Exercise 22/Exercise 22b.sce
d2280f1e54070bd3fdc44d79bcea54405cf43d6f
[]
no_license
MGYBY/advanced_ocean_modelling
8c383b09f4077174559bd7964062625012026fa0
848f0f4d616d472021c31582b64557f04067ce74
refs/heads/main
2023-07-14T14:37:57.714203
2021-08-20T20:13:49
2021-08-20T20:13:49
398,386,684
4
1
null
null
null
null
UTF-8
Scilab
false
false
2,638
sce
Exercise 22b.sce
//============================================= // Exercise 22: Exchange flow through a strait //============================================= // Animation of density distribution and tranverse flow in a vertical transect cutting across the middle of the strait // Author: Jochen Kaempf, March 2015 (update) f = gcf(); f.color_map = jetcolormap(64); f.figure_size = [600,600]; scf(0); // manipulate color map to make the extreme red a bit lighter map = jetcolormap(64); ic = 57; for i = ic+1:64; map(i,1:3) = map(ic,1:3); end; f.color_map = map; f.figure_size = [800,300]; // set size of graphic window // read input data rho1=read("rhoV.dat",-1,50); u1=read("uV.dat",-1,50); h1=read("topo.dat",-1,102); depth(1:50) = 10*floor(h1(2:51,51)/10); // create coarse bathymetry mask [ntot ny] = size(rho1); y = (1:2:99)'; z = (5:10:105)'; ntot = int(ntot/11) for n = 1:ntot // animation loop nn = n-1; time = (n-1)*6; // time in hours // grab data blocks itop = (n-1)*11+1; ibot = itop+10; rho = rho1(itop:ibot,1:50)'; u = u1(itop:ibot,1:50)'; drawlater; clf(); // draw 2d color plot of density field Sgrayplot(y,-z,rho,zminmax=[-0.05,0.55]); // overlay contours of v xset("fpf"," "); col(1:10) = 80; contour2d(y,-z,-u,[0.05:0.05:0.5],col); // draw negative values with dashed lines xset("fpf"," "); col(1:10) = 80; xset("line style",1) contour2d(y,-z,u,[0.05:0.05:0.5],col); // draw positive values with full lines // draw bathymetry xset("color",33) for k = 1:50 xx = real(k-1)*2; yy = -depth(k); width = 2; height = 110.-yy; xfrect(xx,yy,width,height); end; xset("color",0) // specify graph & axis properties a = gca(); a.font_size = 3; a.data_bounds = [0,-100;100,0]; a.auto_ticks = ["off","off","on"]; a.sub_ticks = [3,1]; a.x_ticks = tlist(["ticks", "locations","labels"],.. [0 20 40 60 80 100], ["0" "20" "40" "60" "80" "100"]); a.y_ticks = tlist(["ticks", "locations","labels"],.. [-100 -80 -60 -40 -20 0], ["-100" "-80" "-60" "-40" "-20" "0"]); title("Time = "+string(0.01*int(100*time/24))+" days","fontsize",3,'position',[50 0]); // add title xstring(48,-96,"y (m)"); // add x label txt=gce(); txt.font_size = 3; txt.font_foreground = -1; xstring(1,-54,"z (cm)"); // add z label txt=gce(); txt.font_size = 3; txt.font_foreground = -1; drawnow; // save frames as sequential GIF files (optional) //if nn < 10 then // xs2gif(0,'ex100'+string(nn)+'.gif') //else // if nn < 100 then // xs2gif(0,'ex10'+string(n)+'.gif') //else // xs2gif(0,'ex1'+string(n)+'.gif') // end //end end // end reference for animation loop
d5cb7799b987cca18919c3727c90532eda29e6a2
449d555969bfd7befe906877abab098c6e63a0e8
/2132/CH5/EX5.11/Example5_11.sce
8622c839d2c28fad61e362a764b7945a353982ed
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
617
sce
Example5_11.sce
//Example 5.11 clc; clear; close; format('v',8); //Given data : slope=1/10; Z1=0;//meter Z2=40*slope;//meter p1=1.5/10^-4;//kg/cm^2 v2=4.1;//m/s D1=600/1000;//meter D2=300/1000;//meter A1=%pi*D1^2/4;//m^2 A2=%pi*D2^2/4;//m^2 v1=A2*v2/A1;//m/s g=9.81;//constant w=1000;//kg/m^3 p2=(p1/w+v1^2/2/g+Z1-v2^2/2/g-Z2)*w;//kg/m^2(by Bernolli's theorem) p2=p2*10^-4;//kg/cm^2 Q1=A1*v1;//m^3/sec Q1=Q1*1000;//litre/sec disp(p2,"Pressure intensity at point Q in kg/cm^2 : "); disp(Q1,"Discharge of pipe in litres/sec : "); //Answer in the book is not accurate. calculation for A1 & A2 is wrong.
cbfb03d9b0ecb89c14416a41c21c7f9bc1803de2
449d555969bfd7befe906877abab098c6e63a0e8
/2354/CH8/EX8.1/8_1.sce
f7b72017f7c45dcf19ce96d87899ff3f7f38e629
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
644
sce
8_1.sce
//example 8.1 clc; funcprot(0); // Initialization of Variable h1=2758.0; h2=1794.8; h3=173.88; h4=h3+1.0084/1000*(8-0.008)*1000; neta=(h1-h2-h4+h3)/(h1-h4); disp(neta*100,"thermal efficiency in %"); bwr=(h4-h3)/(h1-h2); disp(bwr*100,"back work ratio in %"); mdot=100*1000*3600/(h1-h2-h4+h3); disp(mdot,"mass flow rate in kg/h"); Qindot=mdot*(h1-h4)/3600/1000; disp(Qindot,"energy inflow rate in MW"); Qoutdot=mdot*(h2-h3)/3600/1000; disp(Qoutdot,"energy outflow rate in MW"); disp(Qoutdot/Qindot*100,"ratio of energy outflow/inflow in %"); mcwdot=mdot*(h2-h3)/(146.68-62.99); disp(mcwdot,"mass flow rate in kg/h"); clear()
8405fc17e862572ccd87bc64a7228fce622eedcb
449d555969bfd7befe906877abab098c6e63a0e8
/2231/CH3/EX3.1/Ex_3_1.sce
6cdbd93a9bac42d520661206abfa5bac27e3e429
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
420
sce
Ex_3_1.sce
//Example 3_1 clc; clear;close; //Given data: R=80;//ohm L=8;///mH C=1.2;// micro F //Solution : if R^2<4*(L*10^-3)/(C*10^-6) then disp("As R^2<4*L/C, Circuit will work as a series inverter."); else disp("As R^2>4*L/C, Circuit will not work as a series inverter."); end omega_m=sqrt(1/(L*10^-3*C*10^-6)-R^2/4/(L*10^-3)^2);//rad/s fm=omega_m/2/%pi;//Hz disp(fm,"Maximum frequency in Hz : ");
60e1f0be1dee88612d0b8f73accbd45b33f6b958
449d555969bfd7befe906877abab098c6e63a0e8
/1928/CH1/EX1.14.5/ex1_14_5.sce
fe65ae26f7b65be07be0e469791f1922f6d61b34
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
361
sce
ex1_14_5.sce
//Chapter-1,Example1_14_5,pg 1-59 //intercept of planeare in proportion 3a:-2b:3/2c //as a,b and c are basic vectors the proportin of intercepts 3:-2:3/2 //therefore reciprocal r1=1/3 r2=-1/2 r3=2/3 //taking LCM v=int32([3,2,3/2]) l=double(lcm(v)) m1=(l*r1) m2=(l*r2) m3=(l*r3) printf("miler indices=") disp(m3,m2,m1)
cdcd24920b81e6ef58889ac679e7b8da8fe9ac56
449d555969bfd7befe906877abab098c6e63a0e8
/1484/CH2/EX2.10/2_10.sce
03ac32082c358c6d29ff2ae102df85ebcc2a451f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
406
sce
2_10.sce
clc //initialisation of variables l= 91 //ft w= 30 //ft h= 6 //ft W= 40 //tons a= 3 //degrees cg= 3 //ft d= 4 //ft W1= 60 //tons cg1= 1 //ft //CALCULATIONS W2= (l*w*d*64/2240)-W1 y= (W2*(h/2)+W1*(cg+d))/(l*w*d*64/2240) BG= y-(d/2) BM= l*w^3/(12*l*w*d) GM= BM-BG dx= GM*l*w*d*64*tand(a)/(60*2240) //RESULTS printf ('maximum distance through which the load can be shifted= %.1f ft ',dx)
3286f0a21c7f03e00361db8d4b6a6ecd5fca6ba3
449d555969bfd7befe906877abab098c6e63a0e8
/3041/CH4/EX4.6/Ex4_6.sce
918379abd75cc37da01ef73fca5d99599e55217f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
940
sce
Ex4_6.sce
//Variable declaration Cc1 = 1*10^-6 //coupling capacitor 1(uF) Cc2 = 1*10^-6 //coupling capacitor 2 (uF) Rs = 10^3 //source resistance(k ohms) rpi = 2*10^3 //dynamic junction resistance(k ohms) Rc = 4500 //collector resistance(ohms) Rl = 9*10^3 //load resistance(k ohms) w = 100 //corner frequency(rad/s) //Calculations w11 = 1/(Cc1*(Rs+rpi)) //corner frequency input circuit (rad/s) w12 = 1/(Cc2*(Rc+Rl)) //corner frequency output circuit(rad/s) f = w11/(2*(%pi)) //lower cutoff frequency(Hz) Zin = complex((Rs+rpi),-(1/(w*Cc1))) //input impedance(k ohms) Zout = complex(Rc,-(1/(w*Cc2))) //output impedance(k ohms) //Results printf ("lower cut-off freq is %.f Hz",f) disp ("ohms", Zin ," Zin") disp ("ohms" ,Zout,"Zout")
17d9630ca8cc487f3ea52910d57d95bb399f96c3
449d555969bfd7befe906877abab098c6e63a0e8
/3204/CH9/EX9.10/Ex9_10.sce
7f0b7ad7004d7f15941322598dff539a1ad848d2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,038
sce
Ex9_10.sce
// Initilization of variables W=24 // kN // Load acting at pt C Laf=12 // m // length of the tie beam l=4 // m// length of each member in the tie h=3 // m // height of the slings Lae=8 // m // Calculations s=sqrt((l^2)+(h^2)) // m // sloping length // From triangle BCD, theta=acosd(h/s) // SUPPORT REACTIONS Rf=(W*l)/Laf // kN // take moment at A Ra=W-Rf // kN // sum Fy=0 // now pass a sectio mn through the truss and consider te equilibrium of the left hand portion Fce=(Ra*l)/h // kN (T) // Take moment at B Fbd=((W*l)-(Ra*Lae))/h // kN (C) // take moment at E Fbe=(Ra-W)/cosd(theta) // kN Fbd=(-Ra*l)/h // kN // take moment at C Fce=((Ra*Lae)-(W*l))/h // kN (T) // take moment at D Fcd=(W-Ra)/cosd(theta) // kN (T) // sum Fy=0 // Resuts clc printf('(1) The axial force in the bar CE (Fce) is %f kN \n',Fce) printf('(2) The axial force in the bar BD (Fbd) is %f kN \n',Fbd) printf('(3) The axial force in the bar BE (Fbe) is %f kN \n',Fbe) printf('(4) The axial force in the bar CD (Fcd) is %f kN \n',Fcd)
cc0396acfb252443abc9391128c9fdaee5aa1ea1
67ba0a56bc27380e6e12782a5fb279adfc456bad
/STAMPER_PROG_7.4/TESTS/TEST_OFFSETPL.sce
42046ec7fd2727c3335c4e1c66f03e5713662ef4
[]
no_license
2-BiAs/STAMPER_PROG
8c1e773700375cfab0933fc4c2b0f5be0ab8e8f0
4fdc0bcdaef7d6d11a0dcd97bd25a9463b9550d0
refs/heads/master
2021-01-18T19:30:06.506977
2016-11-10T23:32:40
2016-11-10T23:32:40
71,999,971
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,263
sce
TEST_OFFSETPL.sce
stacksize('max') //Load Included Functions/////////// exec('GetToolRegime.sci'); exec('IntersectionPoint.sci'); exec('PolylineIntersectionPairs.sci'); exec('Same.sci'); exec('PolylineIntersection.sci'); exec('Intersect.sci'); exec('SuperPlot.sci'); exec('OffsetPolyline.sci'); exec('SlicePolyline.sci'); exec('JoinPolylines.sci'); exec('MathHelper.sci'); exec('BuildOffsetMatrix.sci'); exec('SlicePolylines.sci'); exec('OffsetPolylines.sci'); exec('DrawPolyline.sci'); exec('RadOutsideCorners.sci'); exec('IROffsetPolyline.sci'); exec('RemoveSharpCorners.sci'); exec('RemoveKnots.sci'); exec('DuperPlot.sci'); exec('RemoveInvertedCircles.sci'); exec('FwdSelfIntSmoothing.sci'); // rectangle selection clf(); // erase/create window a=gca();a.data_bounds=[0 0;.100 .100];//set user coordinates a.isoview = "on" xtitle(" Draw a Polyline ") //add a title listMPOR = list([%pi / 6, %pi / 2; %pi / 2, vStartFix(1); vStartFix; vStartFix(2), %pi] + fToolAngle(1)); //Tool Regime angular boundary matrix listMPOC_FIN = list([[0.010, 0], [0, 0]; [0.010, 0], [0, 0]; [0.010, 0], [0, 0]; [0.010, 0], [0, 0]]); plA = DrawPolyline(a); //plB = DrawPolyline(a); //plC = SlicePolyline(plA, plB, %T); plC = OffsetPolyline(plA, listMPOR(1),listMPOC_FIN(1)); DuperPlot(plC)
6f27eb79d0b288b52e96bda9bfb4ee538db5ca7c
8217f7986187902617ad1bf89cb789618a90dd0a
/source/1.1/macros/algebre/pencan.sci
a07751d14ec7ca9e0b7594a57d3b23062aa27d9d
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-unknown-license-reference" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
535
sci
pencan.sci
function [Q,M,i1]=pencan(E,A) // [Q,M,i1]=pencan(E,A) // Given the pencil s*E-A pencan returns matrices Q and M // such than M*(s*E-A)*Q is in "canonical" form i.e. // M*E*Q is a block matrix [I,0; // 0,N] with N nilpotent // and i1 = size of the I matrix above (# of finite zeros of (sE-A)). // M*A*Q is a block matrix [Ar,0; // 0,I ] //See glever, penlaur //F.D. //! [Si,Pi,Di,index]=penlaur(E,A); [Q1,M1]=fullrf(Si); [Q2,M2]=fullrf(Pi); [i1,i2]=size(M1); M=[M1;M2]; Q=[Q1,Q2];
4fc268d4ff37b616eba3c8b348b2075af7710033
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects - Kopie/CONT/NW42UPG/ATWM1_Working_Memory_MEG_NW42UPG_Session1/ATWM1_Working_Memory_MEG_Salient_Cued_Run1.sce
7f658b4424968e747fede4a1c42919fe8225d29a
[]
no_license
atwm1/Presentation
65c674180f731f050aad33beefffb9ba0caa6688
9732a004ca091b184b670c56c55f538ff6600c08
refs/heads/master
2020-04-15T14:04:41.900640
2020-02-14T16:10:11
2020-02-14T16:10:11
56,771,016
0
1
null
null
null
null
UTF-8
Scilab
false
false
49,384
sce
ATWM1_Working_Memory_MEG_Salient_Cued_Run1.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1"; #scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen scenario_type = trials; # for MEG #scan_period = 2000; # TR #pulses_per_scan = 1; #pulse_code = 1; pulse_width=6; default_monitor_sounds = false; active_buttons = 2; response_matching = simple_matching; button_codes = 10, 20; default_font_size = 28; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; write_codes=true; # for MEG only begin; #Picture definitions box { height = 300; width = 300; color = 0, 0, 0;} frame1; box { height = 290; width = 290; color = 255, 255, 255;} frame2; box { height = 30; width = 4; color = 0, 0, 0;} fix1; box { height = 4; width = 30; color = 0, 0, 0;} fix2; box { height = 30; width = 4; color = 255, 0, 0;} fix3; box { height = 4; width = 30; color = 255, 0, 0;} fix4; box { height = 290; width = 290; color = 128, 128, 128;} background; TEMPLATE "StimuliDeclaration.tem" {}; trial { sound sound_incorrect; time = 0; duration = 1; } wrong; trial { sound sound_correct; time = 0; duration = 1; } right; trial { sound sound_no_response; time = 0; duration = 1; } miss; # Start of experiment (MEG only) - sync with CTF software trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; } expStart; time = 0; duration = 1000; code = "ExpStart"; port_code = 80; }; # baselinePre (at the beginning of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }default; time = 0; duration = 10000; #mri_pulse = 1; code = "BaselinePre"; port_code = 91; }; TEMPLATE "ATWM1_Working_Memory_MEG.tem" { trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 41 62 292 292 399 125 2142 2992 1892 fixation_cross gabor_077 gabor_032 gabor_148 gabor_007 gabor_077_alt gabor_032 gabor_148 gabor_007_alt "1_1_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_1900_gabor_patch_orientation_077_032_148_007_target_position_1_4_retrieval_position_1" gabor_077_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_1_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_077_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1742 2992 2142 fixation_cross gabor_085 gabor_067 gabor_028 gabor_138 gabor_085 gabor_067_alt gabor_028 gabor_138_alt "1_2_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_085_067_028_138_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_001_framed blank blank blank blank fixation_cross_target_position_2_4 "1_2_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2092 2992 1892 fixation_cross gabor_088 gabor_153 gabor_022 gabor_134 gabor_088_alt gabor_153_alt gabor_022 gabor_134 "1_3_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_1900_gabor_patch_orientation_088_153_022_134_target_position_1_2_retrieval_position_2" gabor_circ gabor_104_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_3_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_104_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1742 2992 2192 fixation_cross gabor_068 gabor_053 gabor_132 gabor_003 gabor_068_alt gabor_053 gabor_132_alt gabor_003 "1_4_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_068_053_132_003_target_position_1_3_retrieval_position_1" gabor_116_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_4_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_116_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 63 292 292 399 125 2092 2992 2192 fixation_cross gabor_005 gabor_138 gabor_060 gabor_027 gabor_005 gabor_138_alt gabor_060_alt gabor_027 "1_5_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2200_gabor_patch_orientation_005_138_060_027_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_167_framed blank blank blank blank fixation_cross_target_position_2_3 "1_5_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_167_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2042 2992 2442 fixation_cross gabor_089 gabor_071 gabor_008 gabor_148 gabor_089_alt gabor_071_alt gabor_008 gabor_148 "1_6_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_089_071_008_148_target_position_1_2_retrieval_position_1" gabor_089_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_6_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_089_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2142 2992 2592 fixation_cross gabor_084 gabor_129 gabor_109 gabor_149 gabor_084_alt gabor_129 gabor_109_alt gabor_149 "1_7_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2600_gabor_patch_orientation_084_129_109_149_target_position_1_3_retrieval_position_1" gabor_084_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_7_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2092 2992 2142 fixation_cross gabor_151 gabor_180 gabor_032 gabor_062 gabor_151 gabor_180_alt gabor_032 gabor_062_alt "1_8_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_151_180_032_062_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_062_framed blank blank blank blank fixation_cross_target_position_2_4 "1_8_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_050 gabor_077 gabor_137 gabor_166 gabor_050 gabor_077 gabor_137_alt gabor_166_alt "1_9_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_050_077_137_166_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_137_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_9_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 63 292 292 399 125 2092 2992 2042 fixation_cross gabor_061 gabor_092 gabor_022 gabor_174 gabor_061 gabor_092 gabor_022_alt gabor_174_alt "1_10_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2050_gabor_patch_orientation_061_092_022_174_target_position_3_4_retrieval_position_2" gabor_circ gabor_042_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_10_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_042_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1792 2992 2442 fixation_cross gabor_140 gabor_029 gabor_089 gabor_156 gabor_140_alt gabor_029 gabor_089 gabor_156_alt "1_11_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_140_029_089_156_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_156_framed blank blank blank blank fixation_cross_target_position_1_4 "1_11_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_156_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2242 2992 1992 fixation_cross gabor_122 gabor_063 gabor_010 gabor_169 gabor_122 gabor_063 gabor_010_alt gabor_169_alt "1_12_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2000_gabor_patch_orientation_122_063_010_169_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_169_framed blank blank blank blank fixation_cross_target_position_3_4 "1_12_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_169_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1992 2992 2292 fixation_cross gabor_122 gabor_166 gabor_003 gabor_040 gabor_122_alt gabor_166 gabor_003 gabor_040_alt "1_13_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2300_gabor_patch_orientation_122_166_003_040_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_087_framed blank blank blank blank fixation_cross_target_position_1_4 "1_13_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_048 gabor_119 gabor_080 gabor_161 gabor_048_alt gabor_119 gabor_080_alt gabor_161 "1_14_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_048_119_080_161_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_032_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_14_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_032_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2242 2992 2092 fixation_cross gabor_120 gabor_103 gabor_143 gabor_082 gabor_120 gabor_103_alt gabor_143_alt gabor_082 "1_15_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_120_103_143_082_target_position_2_3_retrieval_position_2" gabor_circ gabor_057_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_15_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_057_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 64 292 292 399 125 1842 2992 1992 fixation_cross gabor_179 gabor_158 gabor_110 gabor_134 gabor_179_alt gabor_158_alt gabor_110 gabor_134 "1_16_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_2000_gabor_patch_orientation_179_158_110_134_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_134_framed blank blank blank blank fixation_cross_target_position_1_2 "1_16_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_134_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1992 2992 2242 fixation_cross gabor_126 gabor_098 gabor_071 gabor_155 gabor_126 gabor_098_alt gabor_071 gabor_155_alt "1_17_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_126_098_071_155_target_position_2_4_retrieval_position_2" gabor_circ gabor_048_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_17_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1842 2992 2492 fixation_cross gabor_145 gabor_038 gabor_079 gabor_165 gabor_145 gabor_038_alt gabor_079_alt gabor_165 "1_18_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_145_038_079_165_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_127_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_18_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2142 2992 2242 fixation_cross gabor_073 gabor_116 gabor_007 gabor_096 gabor_073 gabor_116_alt gabor_007 gabor_096_alt "1_19_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_073_116_007_096_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_096_framed blank blank blank blank fixation_cross_target_position_2_4 "1_19_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_096_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1942 2992 2092 fixation_cross gabor_060 gabor_130 gabor_025 gabor_148 gabor_060_alt gabor_130_alt gabor_025 gabor_148 "1_20_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_060_130_025_148_target_position_1_2_retrieval_position_2" gabor_circ gabor_081_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_20_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2092 2992 2092 fixation_cross gabor_142 gabor_029 gabor_008 gabor_177 gabor_142 gabor_029 gabor_008_alt gabor_177_alt "1_21_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_142_029_008_177_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_008_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_21_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2042 2992 2292 fixation_cross gabor_084 gabor_149 gabor_039 gabor_104 gabor_084 gabor_149_alt gabor_039_alt gabor_104 "1_22_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_084_149_039_104_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_039_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_22_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_039_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 63 292 292 399 125 1942 2992 2592 fixation_cross gabor_022 gabor_069 gabor_001 gabor_142 gabor_022 gabor_069 gabor_001_alt gabor_142_alt "1_23_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_300_300_399_1950_3000_2600_gabor_patch_orientation_022_069_001_142_target_position_3_4_retrieval_position_1" gabor_158_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_23_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_158_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1842 2992 2442 fixation_cross gabor_134 gabor_029 gabor_062 gabor_169 gabor_134 gabor_029_alt gabor_062_alt gabor_169 "1_24_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2450_gabor_patch_orientation_134_029_062_169_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_062_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_24_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2192 2992 2542 fixation_cross gabor_021 gabor_092 gabor_178 gabor_062 gabor_021_alt gabor_092 gabor_178_alt gabor_062 "1_25_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2550_gabor_patch_orientation_021_092_178_062_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_131_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_25_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_131_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1792 2992 2192 fixation_cross gabor_092 gabor_031 gabor_151 gabor_166 gabor_092 gabor_031_alt gabor_151_alt gabor_166 "1_26_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2200_gabor_patch_orientation_092_031_151_166_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_015_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_26_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 63 292 292 399 125 1742 2992 2292 fixation_cross gabor_029 gabor_114 gabor_143 gabor_083 gabor_029 gabor_114 gabor_143_alt gabor_083_alt "1_27_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_2300_gabor_patch_orientation_029_114_143_083_target_position_3_4_retrieval_position_2" gabor_circ gabor_162_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_27_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_162_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1792 2992 2292 fixation_cross gabor_165 gabor_078 gabor_120 gabor_012 gabor_165_alt gabor_078_alt gabor_120 gabor_012 "1_28_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_165_078_120_012_target_position_1_2_retrieval_position_1" gabor_030_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_28_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2192 2992 1942 fixation_cross gabor_158 gabor_018 gabor_052 gabor_092 gabor_158_alt gabor_018 gabor_052_alt gabor_092 "1_29_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_158_018_052_092_target_position_1_3_retrieval_position_1" gabor_108_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_29_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_108_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2042 2992 2142 fixation_cross gabor_116 gabor_086 gabor_062 gabor_002 gabor_116 gabor_086 gabor_062_alt gabor_002_alt "1_30_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_116_086_062_002_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_002_framed blank blank blank blank fixation_cross_target_position_3_4 "1_30_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1842 2992 2592 fixation_cross gabor_152 gabor_168 gabor_099 gabor_036 gabor_152_alt gabor_168_alt gabor_099 gabor_036 "1_31_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2600_gabor_patch_orientation_152_168_099_036_target_position_1_2_retrieval_position_2" gabor_circ gabor_121_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_31_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_121_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 63 292 292 399 125 2242 2992 1992 fixation_cross gabor_169 gabor_079 gabor_121 gabor_142 gabor_169 gabor_079 gabor_121_alt gabor_142_alt "1_32_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_300_300_399_2250_3000_2000_gabor_patch_orientation_169_079_121_142_target_position_3_4_retrieval_position_1" gabor_034_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_32_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_034_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1892 2992 2442 fixation_cross gabor_051 gabor_070 gabor_020 gabor_179 gabor_051_alt gabor_070_alt gabor_020 gabor_179 "1_33_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_051_070_020_179_target_position_1_2_retrieval_position_1" gabor_051_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_33_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_051_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2042 2992 2242 fixation_cross gabor_065 gabor_093 gabor_112 gabor_026 gabor_065 gabor_093_alt gabor_112_alt gabor_026 "1_34_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_065_093_112_026_target_position_2_3_retrieval_position_2" gabor_circ gabor_093_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_34_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1892 2992 1942 fixation_cross gabor_091 gabor_162 gabor_139 gabor_023 gabor_091_alt gabor_162 gabor_139_alt gabor_023 "1_35_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_091_162_139_023_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_004_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_35_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1992 2992 1892 fixation_cross gabor_136 gabor_046 gabor_088 gabor_156 gabor_136 gabor_046_alt gabor_088 gabor_156_alt "1_36_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_136_046_088_156_target_position_2_4_retrieval_position_2" gabor_circ gabor_046_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_36_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_046_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1942 2992 2242 fixation_cross gabor_146 gabor_027 gabor_093 gabor_059 gabor_146 gabor_027_alt gabor_093_alt gabor_059 "1_37_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2250_gabor_patch_orientation_146_027_093_059_target_position_2_3_retrieval_position_2" gabor_circ gabor_075_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_37_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 63 292 292 399 125 1892 2992 2042 fixation_cross gabor_165 gabor_088 gabor_142 gabor_119 gabor_165 gabor_088_alt gabor_142 gabor_119_alt "1_38_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_300_300_399_1900_3000_2050_gabor_patch_orientation_165_088_142_119_target_position_2_4_retrieval_position_1" gabor_030_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_38_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_030_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2192 2992 1992 fixation_cross gabor_170 gabor_091 gabor_128 gabor_006 gabor_170_alt gabor_091 gabor_128 gabor_006_alt "1_39_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2000_gabor_patch_orientation_170_091_128_006_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_006_framed blank blank blank blank fixation_cross_target_position_1_4 "1_39_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 64 292 292 399 125 1792 2992 2192 fixation_cross gabor_045 gabor_152 gabor_063 gabor_125 gabor_045_alt gabor_152 gabor_063 gabor_125_alt "1_40_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_300_300_399_1800_3000_2200_gabor_patch_orientation_045_152_063_125_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_063_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_40_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_063_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2192 2992 2342 fixation_cross gabor_035 gabor_119 gabor_063 gabor_145 gabor_035 gabor_119 gabor_063_alt gabor_145_alt "1_41_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2350_gabor_patch_orientation_035_119_063_145_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_010_framed blank blank blank blank fixation_cross_target_position_3_4 "1_41_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2192 2992 2542 fixation_cross gabor_086 gabor_001 gabor_170 gabor_149 gabor_086_alt gabor_001 gabor_170_alt gabor_149 "1_42_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2550_gabor_patch_orientation_086_001_170_149_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_030_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_42_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2242 2992 2492 fixation_cross gabor_170 gabor_151 gabor_011 gabor_084 gabor_170_alt gabor_151 gabor_011_alt gabor_084 "1_43_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2500_gabor_patch_orientation_170_151_011_084_target_position_1_3_retrieval_position_1" gabor_170_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_43_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2042 2992 1942 fixation_cross gabor_099 gabor_013 gabor_175 gabor_058 gabor_099_alt gabor_013_alt gabor_175 gabor_058 "1_44_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_099_013_175_058_target_position_1_2_retrieval_position_2" gabor_circ gabor_013_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_44_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1842 2992 2242 fixation_cross gabor_091 gabor_136 gabor_024 gabor_061 gabor_091 gabor_136_alt gabor_024_alt gabor_061 "1_45_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_091_136_024_061_target_position_2_3_retrieval_position_2" gabor_circ gabor_136_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_45_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2142 2992 2192 fixation_cross gabor_156 gabor_074 gabor_137 gabor_050 gabor_156_alt gabor_074 gabor_137 gabor_050_alt "1_46_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2200_gabor_patch_orientation_156_074_137_050_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_050_framed blank blank blank blank fixation_cross_target_position_1_4 "1_46_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 2142 2992 1942 fixation_cross gabor_002 gabor_143 gabor_092 gabor_160 gabor_002 gabor_143_alt gabor_092 gabor_160_alt "1_47_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_002_143_092_160_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_024_framed blank blank blank blank fixation_cross_target_position_2_4 "1_47_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 64 292 292 399 125 1992 2992 2292 fixation_cross gabor_119 gabor_102 gabor_136 gabor_165 gabor_119 gabor_102_alt gabor_136_alt gabor_165 "1_48_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_2300_gabor_patch_orientation_119_102_136_165_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_165_framed blank blank blank blank fixation_cross_target_position_2_3 "1_48_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_165_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1742 2992 2142 fixation_cross gabor_006 gabor_120 gabor_052 gabor_139 gabor_006_alt gabor_120 gabor_052 gabor_139_alt "1_49_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_006_120_052_139_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_139_framed blank blank blank blank fixation_cross_target_position_1_4 "1_49_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1942 2992 2592 fixation_cross gabor_070 gabor_130 gabor_092 gabor_110 gabor_070 gabor_130 gabor_092_alt gabor_110_alt "1_50_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2600_gabor_patch_orientation_070_130_092_110_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_045_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_50_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 64 292 292 399 125 2142 2992 2342 fixation_cross gabor_097 gabor_053 gabor_075 gabor_117 gabor_097 gabor_053_alt gabor_075 gabor_117_alt "1_51_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_300_300_399_2150_3000_2350_gabor_patch_orientation_097_053_075_117_target_position_2_4_retrieval_position_1" gabor_097_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_51_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_097_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1842 2992 2142 fixation_cross gabor_115 gabor_058 gabor_173 gabor_004 gabor_115 gabor_058_alt gabor_173 gabor_004_alt "1_52_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_115_058_173_004_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_139_framed blank blank blank blank fixation_cross_target_position_2_4 "1_52_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1992 2992 2092 fixation_cross gabor_098 gabor_030 gabor_083 gabor_117 gabor_098_alt gabor_030 gabor_083 gabor_117_alt "1_53_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_098_030_083_117_target_position_1_4_retrieval_position_1" gabor_051_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_53_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_051_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2042 2992 2342 fixation_cross gabor_078 gabor_134 gabor_008 gabor_162 gabor_078 gabor_134 gabor_008_alt gabor_162_alt "1_54_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_078_134_008_162_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_162_framed blank blank blank blank fixation_cross_target_position_3_4 "1_54_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1892 2992 1892 fixation_cross gabor_008 gabor_158 gabor_072 gabor_132 gabor_008_alt gabor_158 gabor_072 gabor_132_alt "1_55_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_008_158_072_132_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_180_framed blank blank blank blank fixation_cross_target_position_1_4 "1_55_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2092 2992 2392 fixation_cross gabor_089 gabor_066 gabor_010 gabor_119 gabor_089_alt gabor_066 gabor_010_alt gabor_119 "1_56_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_089_066_010_119_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_010_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_56_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 64 292 292 399 125 1992 2992 2392 fixation_cross gabor_048 gabor_091 gabor_010 gabor_074 gabor_048 gabor_091_alt gabor_010_alt gabor_074 "1_57_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_2400_gabor_patch_orientation_048_091_010_074_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_074_framed blank blank blank blank fixation_cross_target_position_2_3 "1_57_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_074_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2192 2992 2492 fixation_cross gabor_023 gabor_045 gabor_088 gabor_071 gabor_023_alt gabor_045 gabor_088 gabor_071_alt "1_58_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_023_045_088_071_target_position_1_4_retrieval_position_1" gabor_023_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_58_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_023_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1742 2992 2492 fixation_cross gabor_148 gabor_115 gabor_097 gabor_076 gabor_148 gabor_115_alt gabor_097 gabor_076_alt "1_59_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_148_115_097_076_target_position_2_4_retrieval_position_2" gabor_circ gabor_165_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_59_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_165_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_027 gabor_137 gabor_071 gabor_153 gabor_027 gabor_137 gabor_071_alt gabor_153_alt "1_60_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_027_137_071_153_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_153_framed blank blank blank blank fixation_cross_target_position_3_4 "1_60_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1792 2992 1992 fixation_cross gabor_010 gabor_042 gabor_165 gabor_124 gabor_010 gabor_042_alt gabor_165 gabor_124_alt "1_61_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_010_042_165_124_target_position_2_4_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_61_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 2242 2992 2092 fixation_cross gabor_030 gabor_100 gabor_059 gabor_079 gabor_030_alt gabor_100 gabor_059 gabor_079_alt "1_62_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_030_100_059_079_target_position_1_4_retrieval_position_1" gabor_030_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_62_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 64 292 292 399 125 1842 2992 2542 fixation_cross gabor_007 gabor_142 gabor_171 gabor_063 gabor_007_alt gabor_142_alt gabor_171 gabor_063 "1_63_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_2550_gabor_patch_orientation_007_142_171_063_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_063_framed blank blank blank blank fixation_cross_target_position_1_2 "1_63_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_063_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1792 2992 2542 fixation_cross gabor_096 gabor_081 gabor_116 gabor_035 gabor_096_alt gabor_081 gabor_116_alt gabor_035 "1_64_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_096_081_116_035_target_position_1_3_retrieval_position_1" gabor_145_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_64_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1892 2992 1892 fixation_cross gabor_052 gabor_035 gabor_180 gabor_120 gabor_052 gabor_035 gabor_180_alt gabor_120_alt "1_65_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_052_035_180_120_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_073_framed blank blank blank blank fixation_cross_target_position_3_4 "1_65_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_073_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 61 292 292 399 125 1942 2992 2042 fixation_cross gabor_036 gabor_174 gabor_060 gabor_118 gabor_036_alt gabor_174_alt gabor_060 gabor_118 "1_66_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2050_gabor_patch_orientation_036_174_060_118_target_position_1_2_retrieval_position_1" gabor_085_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_66_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 63 292 292 399 125 1942 2992 2342 fixation_cross gabor_161 gabor_081 gabor_110 gabor_137 gabor_161_alt gabor_081 gabor_110 gabor_137_alt "1_67_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_300_300_399_1950_3000_2350_gabor_patch_orientation_161_081_110_137_target_position_1_4_retrieval_position_2" gabor_circ gabor_031_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_67_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_031_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1892 2992 2392 fixation_cross gabor_178 gabor_012 gabor_152 gabor_040 gabor_178 gabor_012 gabor_152_alt gabor_040_alt "1_68_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2400_gabor_patch_orientation_178_012_152_040_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_040_framed blank blank blank blank fixation_cross_target_position_3_4 "1_68_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 62 292 292 399 125 1892 2992 1942 fixation_cross gabor_150 gabor_124 gabor_001 gabor_106 gabor_150 gabor_124_alt gabor_001_alt gabor_106 "1_69_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_150_124_001_106_target_position_2_3_retrieval_position_2" gabor_circ gabor_124_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_69_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 64 292 292 399 125 2242 2992 2392 fixation_cross gabor_149 gabor_082 gabor_127 gabor_067 gabor_149_alt gabor_082 gabor_127 gabor_067_alt "1_70_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_300_300_399_2250_3000_2400_gabor_patch_orientation_149_082_127_067_target_position_1_4_retrieval_position_2" gabor_circ gabor_082_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_70_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_082_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; }; # baselinePost (at the end of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }; time = 0; duration = 5000; code = "BaselinePost"; port_code = 92; };
8de8b9a871b9b93e4492a95f320659ce534533a5
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/CS3E.prev.tst
6bd7a017ddb19eb4cc10c809606ccf3cb43ce0bf
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
272,168
tst
CS3E.prev.tst
CandidateSelector expand width=4 base=4 exponent=3 left=4 right=0 fileName=data/prewrob3.spc.man chain1 [[3,1,-2,-3],[1,-2,3,-2],[-2,-2,3,3],[2,3,3,3]] det=100 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,1,3,-1],[-2,-2,3,3],[2,3,3,3]] det=92 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,3,1,2],[-2,-2,3,3],[2,3,3,3]] det=-25 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,-3,2,2],[-2,-2,3,3],[2,3,3,3]] det=-70 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-1,2,-2,2],[-2,-2,3,3],[2,3,3,3]] det=-73 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-2,3,-1,-2],[-2,-2,3,3],[2,3,3,3]] det=97 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-2,-1,-2,1],[-2,-2,3,3],[2,3,3,3]] det=-65 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[1,-2,3,-2],[-3,1,2,2],[2,3,3,3]] det=-192 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,1,3,-1],[-3,1,2,2],[2,3,3,3]] det=-130 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,3,1,2],[-3,1,2,2],[2,3,3,3]] det=48 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,-3,2,2],[-3,1,2,2],[2,3,3,3]] det=-67 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-1,2,-2,2],[-3,1,2,2],[2,3,3,3]] det=155 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-2,3,-1,-2],[-3,1,2,2],[2,3,3,3]] det=30 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-2,-1,-2,1],[-3,1,2,2],[2,3,3,3]] det=93 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[1,-2,3,-2],[-2,-2,3,3],[-2,3,1,-1]] det=46 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,1,3,-1],[-2,-2,3,3],[-2,3,1,-1]] det=-26 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,3,1,2],[-2,-2,3,3],[-2,3,1,-1]] det=-103 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,-3,2,2],[-2,-2,3,3],[-2,3,1,-1]] det=-20 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-1,2,-2,2],[-2,-2,3,3],[-2,3,1,-1]] det=-47 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-2,3,-1,-2],[-2,-2,3,3],[-2,3,1,-1]] det=19 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-2,-1,-2,1],[-2,-2,3,3],[-2,3,1,-1]] det=25 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[1,-2,3,-2],[-3,1,2,2],[-2,3,1,-1]] det=30 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,1,3,-1],[-3,1,2,2],[-2,3,1,-1]] det=28 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,3,1,2],[-3,1,2,2],[-2,3,1,-1]] det=6 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,-3,2,2],[-3,1,2,2],[-2,3,1,-1]] det=19 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-1,2,-2,2],[-3,1,2,2],[-2,3,1,-1]] det=-23 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-2,3,-1,-2],[-3,1,2,2],[-2,3,1,-1]] det=-12 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-2,-1,-2,1],[-3,1,2,2],[-2,3,1,-1]] det=-21 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[1,-2,3,-2],[-2,-2,3,3],[-2,-3,2,-1]] det=-39 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,1,3,-1],[-2,-2,3,3],[-2,-3,2,-1]] det=-79 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,3,1,2],[-2,-2,3,3],[-2,-3,2,-1]] det=-48 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,-3,2,2],[-2,-2,3,3],[-2,-3,2,-1]] det=35 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-1,2,-2,2],[-2,-2,3,3],[-2,-3,2,-1]] det=20 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-2,3,-1,-2],[-2,-2,3,3],[-2,-3,2,-1]] det=-54 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-2,-1,-2,1],[-2,-2,3,3],[-2,-3,2,-1]] det=60 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[1,-2,3,-2],[-3,1,2,2],[-2,-3,2,-1]] det=83 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,1,3,-1],[-3,1,2,2],[-2,-3,2,-1]] det=113 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,3,1,2],[-3,1,2,2],[-2,-3,2,-1]] det=79 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,-3,2,2],[-3,1,2,2],[-2,-3,2,-1]] det=92 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-1,2,-2,2],[-3,1,2,2],[-2,-3,2,-1]] det=-58 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-2,3,-1,-2],[-3,1,2,2],[-2,-3,2,-1]] det=-67 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-2,-1,-2,1],[-3,1,2,2],[-2,-3,2,-1]] det=-88 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[1,-2,3,-2],[-2,-2,3,3],[-3,2,-1,1]] det=9 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,1,3,-1],[-2,-2,3,3],[-3,2,-1,1]] det=1 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,3,1,2],[-2,-2,3,3],[-3,2,-1,1]] det=-12 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,-3,2,2],[-2,-2,3,3],[-3,2,-1,1]] det=-5 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-1,2,-2,2],[-2,-2,3,3],[-3,2,-1,1]] det=-8 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-2,3,-1,-2],[-2,-2,3,3],[-3,2,-1,1]] det=6 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-2,-1,-2,1],[-2,-2,3,3],[-3,2,-1,1]] det=0 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[1,-2,3,-2],[-3,1,2,2],[-3,2,-1,1]] det=50 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,1,3,-1],[-3,1,2,2],[-3,2,-1,1]] det=-8 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,3,1,2],[-3,1,2,2],[-3,2,-1,1]] det=-86 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[2,-3,2,2],[-3,1,2,2],[-3,2,-1,1]] det=-29 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-1,2,-2,2],[-3,1,2,2],[-3,2,-1,1]] det=-47 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-2,3,-1,-2],[-3,1,2,2],[-3,2,-1,1]] det=32 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,1,-2,-3],[-2,-1,-2,1],[-3,1,2,2],[-3,2,-1,1]] det=11 [19,-3,-18,-10] [120,-9,-116,-55] chain1 [[3,-2,-3,-3],[1,1,1,2],[-3,3,3,2],[-2,1,3,-2]] det=40 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[1,-1,3,-1],[-3,3,3,2],[-2,1,3,-2]] det=51 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[2,-2,2,3],[-3,3,3,2],[-2,1,3,-2]] det=65 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-1,3,-2,3],[-3,3,3,2],[-2,1,3,-2]] det=-26 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-1,-1,2,-3],[-3,3,3,2],[-2,1,3,-2]] det=-4 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-1,-3,-1,3],[-3,3,3,2],[-2,1,3,-2]] det=-31 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-3,1,-1,-2],[-3,3,3,2],[-2,1,3,-2]] det=-70 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-3,3,-3,1],[-3,3,3,2],[-2,1,3,-2]] det=-81 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-3,-3,-2,1],[-3,3,3,2],[-2,1,3,-2]] det=-86 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[1,1,1,2],[-3,3,3,2],[-2,3,1,1]] det=-18 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[1,-1,3,-1],[-3,3,3,2],[-2,3,1,1]] det=-7 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[2,-2,2,3],[-3,3,3,2],[-2,3,1,1]] det=-21 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-1,3,-2,3],[-3,3,3,2],[-2,3,1,1]] det=-7 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-1,-1,2,-3],[-3,3,3,2],[-2,3,1,1]] det=15 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-1,-3,-1,3],[-3,3,3,2],[-2,3,1,1]] det=9 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-3,1,-1,-2],[-3,3,3,2],[-2,3,1,1]] det=26 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-3,3,-3,1],[-3,3,3,2],[-2,3,1,1]] det=15 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-3,-3,-2,1],[-3,3,3,2],[-2,3,1,1]] det=31 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[1,1,1,2],[-3,3,3,2],[-2,-3,2,1]] det=32 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[1,-1,3,-1],[-3,3,3,2],[-2,-3,2,1]] det=64 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[2,-2,2,3],[-3,3,3,2],[-2,-3,2,1]] det=64 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-1,3,-2,3],[-3,3,3,2],[-2,-3,2,1]] det=-48 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-1,-1,2,-3],[-3,3,3,2],[-2,-3,2,1]] det=16 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-1,-3,-1,3],[-3,3,3,2],[-2,-3,2,1]] det=-32 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-3,1,-1,-2],[-3,3,3,2],[-2,-3,2,1]] det=-64 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-3,3,-3,1],[-3,3,3,2],[-2,-3,2,1]] det=-96 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-3,-3,-2,1],[-3,3,3,2],[-2,-3,2,1]] det=-80 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[1,1,1,2],[-3,3,3,2],[-3,2,-1,3]] det=-56 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[1,-1,3,-1],[-3,3,3,2],[-3,2,-1,3]] det=4 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[2,-2,2,3],[-3,3,3,2],[-3,2,-1,3]] det=-52 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-1,3,-2,3],[-3,3,3,2],[-3,2,-1,3]] det=-52 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-1,-1,2,-3],[-3,3,3,2],[-3,2,-1,3]] det=68 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-1,-3,-1,3],[-3,3,3,2],[-3,2,-1,3]] det=20 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-3,1,-1,-2],[-3,3,3,2],[-3,2,-1,3]] det=72 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-3,3,-3,1],[-3,3,3,2],[-3,2,-1,3]] det=12 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-3,-3,-2,1],[-3,3,3,2],[-3,2,-1,3]] det=84 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[1,1,1,2],[-3,3,3,2],[-3,-2,3,-3]] det=60 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[1,-1,3,-1],[-3,3,3,2],[-3,-2,3,-3]] det=120 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[2,-2,2,3],[-3,3,3,2],[-3,-2,3,-3]] det=120 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-1,3,-2,3],[-3,3,3,2],[-3,-2,3,-3]] det=-90 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-1,-1,2,-3],[-3,3,3,2],[-3,-2,3,-3]] det=30 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-1,-3,-1,3],[-3,3,3,2],[-3,-2,3,-3]] det=-60 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-3,1,-1,-2],[-3,3,3,2],[-3,-2,3,-3]] det=-120 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-3,3,-3,1],[-3,3,3,2],[-3,-2,3,-3]] det=-180 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[3,-2,-3,-3],[-3,-3,-2,1],[-3,3,3,2],[-3,-2,3,-3]] det=-150 [19,-3,-18,-10] [147,-22,-140,-75] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-1,2,3,1],[2,-3,3,3]] det=17 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-1,2,3,1],[2,-3,3,3]] det=-150 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-1,2,3,1],[2,-3,3,3]] det=-91 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-1,2,3,1],[2,-3,3,3]] det=-36 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-1,2,3,1],[2,-3,3,3]] det=180 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-1,2,3,1],[2,-3,3,3]] det=234 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-1,2,3,1],[2,-3,3,3]] det=20 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-1,2,3,1],[2,-3,3,3]] det=-240 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-1,2,3,1],[2,-3,3,3]] det=-88 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-1,2,3,1],[2,-3,3,3]] det=-10 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-1,2,3,1],[2,-3,3,3]] det=20 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-1,2,3,1],[2,-3,3,3]] det=74 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-1,-1,2,3],[2,-3,3,3]] det=139 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-1,-1,2,3],[2,-3,3,3]] det=-30 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-1,-1,2,3],[2,-3,3,3]] det=27 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-1,-1,2,3],[2,-3,3,3]] det=-109 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-1,-1,2,3],[2,-3,3,3]] det=50 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-1,-1,2,3],[2,-3,3,3]] det=47 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-1,-1,2,3],[2,-3,3,3]] det=242 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-1,-1,2,3],[2,-3,3,3]] det=-20 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-1,-1,2,3],[2,-3,3,3]] det=130 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-1,-1,2,3],[2,-3,3,3]] det=17 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-1,-1,2,3],[2,-3,3,3]] det=-10 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-1,-1,2,3],[2,-3,3,3]] det=-13 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-2,-3,2,2],[2,-3,3,3]] det=197 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-2,-3,2,2],[2,-3,3,3]] det=30 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-2,-3,2,2],[2,-3,3,3]] det=85 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-2,-3,2,2],[2,-3,3,3]] det=-256 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-2,-3,2,2],[2,-3,3,3]] det=-40 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-2,-3,2,2],[2,-3,3,3]] det=-100 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-2,-3,2,2],[2,-3,3,3]] det=300 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-2,-3,2,2],[2,-3,3,3]] det=40 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-2,-3,2,2],[2,-3,3,3]] det=188 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-2,-3,2,2],[2,-3,3,3]] det=-30 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-2,-3,2,2],[2,-3,3,3]] det=0 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-2,-3,2,2],[2,-3,3,3]] det=-60 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-3,3,-1,3],[2,-3,3,3]] det=212 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-3,3,-1,3],[2,-3,3,3]] det=-60 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-3,3,-1,3],[2,-3,3,3]] det=32 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-3,3,-1,3],[2,-3,3,3]] det=-46 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-3,3,-1,3],[2,-3,3,3]] det=120 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-3,3,-1,3],[2,-3,3,3]] det=152 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-3,3,-1,3],[2,-3,3,3]] det=420 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-3,3,-1,3],[2,-3,3,3]] det=0 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-3,3,-1,3],[2,-3,3,3]] det=240 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-3,3,-1,3],[2,-3,3,3]] det=90 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-3,3,-1,3],[2,-3,3,3]] det=-40 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-3,3,-1,3],[2,-3,3,3]] det=-8 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-3,-2,3,-1],[2,-3,3,3]] det=133 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-3,-2,3,-1],[2,-3,3,3]] det=-30 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-3,-2,3,-1],[2,-3,3,3]] det=25 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-3,-2,3,-1],[2,-3,3,3]] det=-330 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-3,-2,3,-1],[2,-3,3,3]] det=0 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-3,-2,3,-1],[2,-3,3,3]] det=-60 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-3,-2,3,-1],[2,-3,3,3]] det=136 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-3,-2,3,-1],[2,-3,3,3]] det=-120 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-3,-2,3,-1],[2,-3,3,3]] det=28 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-3,-2,3,-1],[2,-3,3,3]] det=-104 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-3,-2,3,-1],[2,-3,3,3]] det=40 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-3,-2,3,-1],[2,-3,3,3]] det=-20 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-1,2,3,1],[-2,3,2,-3]] det=-2 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-1,2,3,1],[-2,3,2,-3]] det=60 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-1,2,3,1],[-2,3,2,-3]] det=46 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-1,2,3,1],[-2,3,2,-3]] det=41 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-1,2,3,1],[-2,3,2,-3]] det=-210 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-1,2,3,1],[-2,3,2,-3]] det=-229 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-1,2,3,1],[-2,3,2,-3]] det=5 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-1,2,3,1],[-2,3,2,-3]] det=90 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-1,2,3,1],[-2,3,2,-3]] det=53 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-1,2,3,1],[-2,3,2,-3]] det=35 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-1,2,3,1],[-2,3,2,-3]] det=-170 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-1,2,3,1],[-2,3,2,-3]] det=-189 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-1,-1,2,3],[-2,3,2,-3]] det=-39 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-1,-1,2,3],[-2,3,2,-3]] det=30 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-1,-1,2,3],[-2,3,2,-3]] det=23 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-1,-1,2,3],[-2,3,2,-3]] det=169 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-1,-1,2,3],[-2,3,2,-3]] det=-130 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-1,-1,2,3],[-2,3,2,-3]] det=-197 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-1,-1,2,3],[-2,3,2,-3]] det=-52 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-1,-1,2,3],[-2,3,2,-3]] det=40 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-1,-1,2,3],[-2,3,2,-3]] det=10 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-1,-1,2,3],[-2,3,2,-3]] det=143 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-1,-1,2,3],[-2,3,2,-3]] det=-110 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-1,-1,2,3],[-2,3,2,-3]] det=-177 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-2,-3,2,2],[-2,3,2,-3]] det=-62 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-2,-3,2,2],[-2,3,2,-3]] det=0 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-2,-3,2,2],[-2,3,2,-3]] det=0 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-2,-3,2,2],[-2,3,2,-3]] det=301 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-2,-3,2,2],[-2,3,2,-3]] det=50 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-2,-3,2,2],[-2,3,2,-3]] det=-65 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-2,-3,2,2],[-2,3,2,-3]] det=-75 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-2,-3,2,2],[-2,3,2,-3]] det=10 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-2,-3,2,2],[-2,3,2,-3]] det=-13 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-2,-3,2,2],[-2,3,2,-3]] det=255 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-2,-3,2,2],[-2,3,2,-3]] det=50 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-2,-3,2,2],[-2,3,2,-3]] det=-65 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-3,3,-1,3],[-2,3,2,-3]] det=-122 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-3,3,-1,3],[-2,3,2,-3]] det=-120 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-3,3,-1,3],[-2,3,2,-3]] det=-92 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-3,3,-1,3],[-2,3,2,-3]] det=76 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-3,3,-1,3],[-2,3,2,-3]] det=-180 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-3,3,-1,3],[-2,3,2,-3]] det=-212 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-3,3,-1,3],[-2,3,2,-3]] det=-270 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-3,3,-1,3],[-2,3,2,-3]] det=-300 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-3,3,-1,3],[-2,3,2,-3]] det=-240 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-3,3,-1,3],[-2,3,2,-3]] det=60 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-3,3,-1,3],[-2,3,2,-3]] det=-260 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-3,3,-1,3],[-2,3,2,-3]] det=-292 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-3,-2,3,-1],[-2,3,2,-3]] det=-48 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-3,-2,3,-1],[-2,3,2,-3]] det=0 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-3,-2,3,-1],[-2,3,2,-3]] det=0 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-3,-2,3,-1],[-2,3,2,-3]] det=305 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-3,-2,3,-1],[-2,3,2,-3]] det=150 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-3,-2,3,-1],[-2,3,2,-3]] det=35 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-3,-2,3,-1],[-2,3,2,-3]] det=-41 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-3,-2,3,-1],[-2,3,2,-3]] det=30 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-3,-2,3,-1],[-2,3,2,-3]] det=7 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-3,-2,3,-1],[-2,3,2,-3]] det=259 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-3,-2,3,-1],[-2,3,2,-3]] det=150 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-3,-2,3,-1],[-2,3,2,-3]] det=35 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-1,2,3,1],[-3,3,-3,2]] det=-34 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-1,2,3,1],[-3,3,-3,2]] det=180 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-1,2,3,1],[-3,3,-3,2]] det=82 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-1,2,3,1],[-3,3,-3,2]] det=-3 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-1,2,3,1],[-3,3,-3,2]] det=14 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-1,2,3,1],[-3,3,-3,2]] det=27 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-1,2,3,1],[-3,3,-3,2]] det=-55 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-1,2,3,1],[-3,3,-3,2]] det=298 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-1,2,3,1],[-3,3,-3,2]] det=61 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-1,2,3,1],[-3,3,-3,2]] det=-49 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-1,2,3,1],[-3,3,-3,2]] det=246 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-1,2,3,1],[-3,3,-3,2]] det=259 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-1,-1,2,3],[-3,3,-3,2]] det=-194 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-1,-1,2,3],[-3,3,-3,2]] det=36 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-1,-1,2,3],[-3,3,-3,2]] det=-46 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-1,-1,2,3],[-3,3,-3,2]] det=2 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-1,-1,2,3],[-3,3,-3,2]] det=-20 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-1,-1,2,3],[-3,3,-3,2]] det=-46 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-1,-1,2,3],[-3,3,-3,2]] det=-355 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-1,-1,2,3],[-3,3,-3,2]] det=14 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-1,-1,2,3],[-3,3,-3,2]] det=-207 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-1,-1,2,3],[-3,3,-3,2]] det=-184 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-1,-1,2,3],[-3,3,-3,2]] det=72 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-1,-1,2,3],[-3,3,-3,2]] det=46 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-2,-3,2,2],[-3,3,-3,2]] det=-250 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-2,-3,2,2],[-3,3,-3,2]] det=-36 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-2,-3,2,2],[-3,3,-3,2]] det=-102 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-2,-3,2,2],[-3,3,-3,2]] det=-19 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-2,-3,2,2],[-3,3,-3,2]] det=-2 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-2,-3,2,2],[-3,3,-3,2]] det=-67 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-2,-3,2,2],[-3,3,-3,2]] det=-411 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-2,-3,2,2],[-3,3,-3,2]] det=-58 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-2,-3,2,2],[-3,3,-3,2]] det=-263 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-2,-3,2,2],[-3,3,-3,2]] det=-345 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-2,-3,2,2],[-3,3,-3,2]] det=-50 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-2,-3,2,2],[-3,3,-3,2]] det=-115 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-3,3,-1,3],[-3,3,-3,2]] det=-64 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-3,3,-1,3],[-3,3,-3,2]] det=72 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-3,3,-1,3],[-3,3,-3,2]] det=16 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-3,3,-1,3],[-3,3,-3,2]] det=2 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-3,3,-1,3],[-3,3,-3,2]] det=-4 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-3,3,-1,3],[-3,3,-3,2]] det=-4 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-3,3,-1,3],[-3,3,-3,2]] det=-120 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-3,3,-1,3],[-3,3,-3,2]] det=100 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-3,3,-1,3],[-3,3,-3,2]] det=-40 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-3,3,-1,3],[-3,3,-3,2]] det=-54 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-3,3,-1,3],[-3,3,-3,2]] det=108 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-3,3,-1,3],[-3,3,-3,2]] det=108 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-3,-2,3,-1],[-3,3,-3,2]] det=-146 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-3,-2,3,-1],[-3,3,-3,2]] det=36 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-3,-2,3,-1],[-3,3,-3,2]] det=-30 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-3,-2,3,-1],[-3,3,-3,2]] det=-45 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-3,-2,3,-1],[-3,3,-3,2]] det=50 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-3,-2,3,-1],[-3,3,-3,2]] det=-15 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-3,-2,3,-1],[-3,3,-3,2]] det=-167 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-3,-2,3,-1],[-3,3,-3,2]] det=154 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-3,-2,3,-1],[-3,3,-3,2]] det=-51 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-3,-2,3,-1],[-3,3,-3,2]] det=-371 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-3,-2,3,-1],[-3,3,-3,2]] det=2 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-3,-2,3,-1],[-3,3,-3,2]] det=-63 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-1,2,3,1],[-3,-2,1,-2]] det=-14 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-1,2,3,1],[-3,-2,1,-2]] det=48 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-1,2,3,1],[-3,-2,1,-2]] det=12 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-1,2,3,1],[-3,-2,1,-2]] det=37 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-1,2,3,1],[-3,-2,1,-2]] det=-214 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-1,2,3,1],[-3,-2,1,-2]] det=-23 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-1,2,3,1],[-3,-2,1,-2]] det=-15 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-1,2,3,1],[-3,-2,1,-2]] det=70 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-1,2,3,1],[-3,-2,1,-2]] det=11 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-1,2,3,1],[-3,-2,1,-2]] det=15 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-1,2,3,1],[-3,-2,1,-2]] det=-190 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-1,2,3,1],[-3,-2,1,-2]] det=1 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-1,-1,2,3],[-3,-2,1,-2]] det=-63 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-1,-1,2,3],[-3,-2,1,-2]] det=6 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-1,-1,2,3],[-3,-2,1,-2]] det=-23 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-1,-1,2,3],[-3,-2,1,-2]] det=273 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-1,-1,2,3],[-3,-2,1,-2]] det=-26 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-1,-1,2,3],[-3,-2,1,-2]] det=117 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-1,-1,2,3],[-3,-2,1,-2]] det=-84 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-1,-1,2,3],[-3,-2,1,-2]] det=8 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-1,-1,2,3],[-3,-2,1,-2]] det=-44 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-1,-1,2,3],[-3,-2,1,-2]] det=231 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-1,-1,2,3],[-3,-2,1,-2]] det=-22 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-1,-1,2,3],[-3,-2,1,-2]] det=121 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-2,-3,2,2],[-3,-2,1,-2]] det=-74 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-2,-3,2,2],[-3,-2,1,-2]] det=-12 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-2,-3,2,2],[-3,-2,1,-2]] det=-34 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-2,-3,2,2],[-3,-2,1,-2]] det=297 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-2,-3,2,2],[-3,-2,1,-2]] det=46 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-2,-3,2,2],[-3,-2,1,-2]] det=141 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-2,-3,2,2],[-3,-2,1,-2]] det=-95 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-2,-3,2,2],[-3,-2,1,-2]] det=-10 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-2,-3,2,2],[-3,-2,1,-2]] det=-55 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-2,-3,2,2],[-3,-2,1,-2]] det=235 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-2,-3,2,2],[-3,-2,1,-2]] det=30 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-2,-3,2,2],[-3,-2,1,-2]] det=125 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-3,3,-1,3],[-3,-2,1,-2]] det=46 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-3,3,-1,3],[-3,-2,1,-2]] det=48 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-3,3,-1,3],[-3,-2,1,-2]] det=36 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-3,3,-1,3],[-3,-2,1,-2]] det=132 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-3,3,-1,3],[-3,-2,1,-2]] det=-124 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-3,3,-1,3],[-3,-2,1,-2]] det=36 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-3,3,-1,3],[-3,-2,1,-2]] det=10 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-3,3,-1,3],[-3,-2,1,-2]] det=-20 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-3,3,-1,3],[-3,-2,1,-2]] det=0 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-3,3,-1,3],[-3,-2,1,-2]] det=340 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-3,3,-1,3],[-3,-2,1,-2]] det=20 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-3,3,-1,3],[-3,-2,1,-2]] det=180 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-1,-1,1,-2],[-3,-2,3,-1],[-3,-2,1,-2]] det=-36 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,1,-2],[-3,-2,3,-1],[-3,-2,1,-2]] det=12 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-1,-1,1,-2],[-3,-2,3,-1],[-3,-2,1,-2]] det=-10 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,2,-3,1],[-3,-2,3,-1],[-3,-2,1,-2]] det=85 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,2,-3,1],[-3,-2,3,-1],[-3,-2,1,-2]] det=-70 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,2,-3,1],[-3,-2,3,-1],[-3,-2,1,-2]] det=25 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-2,-3,1,-3],[-3,-2,3,-1],[-3,-2,1,-2]] det=-37 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-2,-3,1,-3],[-3,-2,3,-1],[-3,-2,1,-2]] det=34 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-2,-3,1,-3],[-3,-2,3,-1],[-3,-2,1,-2]] det=-11 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[1,-3,-3,-1],[-3,3,-2,-2],[-3,-2,3,-1],[-3,-2,1,-2]] det=23 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-2,-2],[-3,-2,3,-1],[-3,-2,1,-2]] det=-86 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[3,1,-3,1],[-3,3,-2,-2],[-3,-2,3,-1],[-3,-2,1,-2]] det=9 [25,-4,-22,-17] [120,-9,-116,-55] chain1 [[2,-3,-2,-1],[1,2,2,1],[-2,3,1,2],[-2,2,2,-3]] det=19 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[1,2,2,1],[-2,3,1,2],[-2,2,2,-3]] det=161 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,-1,1,3],[-2,3,1,2],[-2,2,2,-3]] det=-7 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[1,-1,1,3],[-2,3,1,2],[-2,2,2,-3]] det=147 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,1,3,-3],[-2,3,1,2],[-2,2,2,-3]] det=-1 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,1,3,-3],[-2,3,1,2],[-2,2,2,-3]] det=105 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,3,-2,3],[-2,3,1,2],[-2,2,2,-3]] det=13 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,3,-2,3],[-2,3,1,2],[-2,2,2,-3]] det=-140 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,-2,2,-1],[-2,3,1,2],[-2,2,2,-3]] det=-27 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,-2,2,-1],[-2,3,1,2],[-2,2,2,-3]] det=91 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-2,1,-2,2],[-2,3,1,2],[-2,2,2,-3]] det=-10 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-2,1,-2,2],[-2,3,1,2],[-2,2,2,-3]] det=-175 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,2,-1,-1],[-2,3,1,2],[-2,2,2,-3]] det=-7 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-3,2,-1,-1],[-2,3,1,2],[-2,2,2,-3]] det=-196 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,-1,-2,1],[-2,3,1,2],[-2,2,2,-3]] det=-33 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-3,-1,-2,1],[-2,3,1,2],[-2,2,2,-3]] det=-210 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,2,2,1],[-3,1,1,1],[-2,2,2,-3]] det=-31 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[1,2,2,1],[-3,1,1,1],[-2,2,2,-3]] det=93 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,-1,1,3],[-3,1,1,1],[-2,2,2,-3]] det=-60 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[1,-1,1,3],[-3,1,1,1],[-2,2,2,-3]] det=76 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,1,3,-3],[-3,1,1,1],[-2,2,2,-3]] det=-48 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,1,3,-3],[-3,1,1,1],[-2,2,2,-3]] det=40 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,3,-2,3],[-3,1,1,1],[-2,2,2,-3]] det=95 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,3,-2,3],[-3,1,1,1],[-2,2,2,-3]] det=-25 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,-2,2,-1],[-3,1,1,1],[-2,2,2,-3]] det=-77 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,-2,2,-1],[-3,1,1,1],[-2,2,2,-3]] det=23 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-2,1,-2,2],[-3,1,1,1],[-2,2,2,-3]] det=72 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-2,1,-2,2],[-3,1,1,1],[-2,2,2,-3]] det=-60 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,2,-1,-1],[-3,1,1,1],[-2,2,2,-3]] det=78 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-3,2,-1,-1],[-3,1,1,1],[-2,2,2,-3]] det=-78 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,-1,-2,1],[-3,1,1,1],[-2,2,2,-3]] det=49 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-3,-1,-2,1],[-3,1,1,1],[-2,2,2,-3]] det=-95 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,2,2,1],[-2,3,1,2],[-2,-1,1,-1]] det=-15 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[1,2,2,1],[-2,3,1,2],[-2,-1,1,-1]] det=75 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,-1,1,3],[-2,3,1,2],[-2,-1,1,-1]] det=-41 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[1,-1,1,3],[-2,3,1,2],[-2,-1,1,-1]] det=61 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,1,3,-3],[-2,3,1,2],[-2,-1,1,-1]] det=9 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,1,3,-3],[-2,3,1,2],[-2,-1,1,-1]] det=63 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,3,-2,3],[-2,3,1,2],[-2,-1,1,-1]] det=13 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,3,-2,3],[-2,3,1,2],[-2,-1,1,-1]] det=-74 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,-2,2,-1],[-2,3,1,2],[-2,-1,1,-1]] det=-17 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,-2,2,-1],[-2,3,1,2],[-2,-1,1,-1]] det=49 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-2,1,-2,2],[-2,3,1,2],[-2,-1,1,-1]] det=12 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-2,1,-2,2],[-2,3,1,2],[-2,-1,1,-1]] det=-87 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,2,-1,-1],[-2,3,1,2],[-2,-1,1,-1]] det=37 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-3,2,-1,-1],[-2,3,1,2],[-2,-1,1,-1]] det=-86 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,-1,-2,1],[-2,3,1,2],[-2,-1,1,-1]] det=11 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-3,-1,-2,1],[-2,3,1,2],[-2,-1,1,-1]] det=-100 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,2,2,1],[-3,1,1,1],[-2,-1,1,-1]] det=-19 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[1,2,2,1],[-3,1,1,1],[-2,-1,1,-1]] det=53 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,-1,1,3],[-3,1,1,1],[-2,-1,1,-1]] det=-48 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[1,-1,1,3],[-3,1,1,1],[-2,-1,1,-1]] det=36 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,1,3,-3],[-3,1,1,1],[-2,-1,1,-1]] det=8 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,1,3,-3],[-3,1,1,1],[-2,-1,1,-1]] det=44 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,3,-2,3],[-3,1,1,1],[-2,-1,1,-1]] det=18 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,3,-2,3],[-3,1,1,1],[-2,-1,1,-1]] det=-36 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,-2,2,-1],[-3,1,1,1],[-2,-1,1,-1]] det=-21 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,-2,2,-1],[-3,1,1,1],[-2,-1,1,-1]] det=27 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-2,1,-2,2],[-3,1,1,1],[-2,-1,1,-1]] det=17 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-2,1,-2,2],[-3,1,1,1],[-2,-1,1,-1]] det=-49 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,2,-1,-1],[-3,1,1,1],[-2,-1,1,-1]] det=45 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-3,2,-1,-1],[-3,1,1,1],[-2,-1,1,-1]] det=-45 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,-1,-2,1],[-3,1,1,1],[-2,-1,1,-1]] det=16 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-3,-1,-2,1],[-3,1,1,1],[-2,-1,1,-1]] det=-62 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,2,2,1],[-2,3,1,2],[-3,2,-3,2]] det=16 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[1,2,2,1],[-2,3,1,2],[-3,2,-3,2]] det=-64 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,-1,1,3],[-2,3,1,2],[-3,2,-3,2]] det=-22 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[1,-1,1,3],[-2,3,1,2],[-3,2,-3,2]] det=-208 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,1,3,-3],[-2,3,1,2],[-3,2,-3,2]] det=2 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,1,3,-3],[-2,3,1,2],[-3,2,-3,2]] det=240 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,3,-2,3],[-2,3,1,2],[-3,2,-3,2]] det=19 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,3,-2,3],[-2,3,1,2],[-3,2,-3,2]] det=-120 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,-2,2,-1],[-2,3,1,2],[-3,2,-3,2]] det=-36 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,-2,2,-1],[-2,3,1,2],[-3,2,-3,2]] det=96 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-2,1,-2,2],[-2,3,1,2],[-3,2,-3,2]] det=-7 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-2,1,-2,2],[-2,3,1,2],[-3,2,-3,2]] det=-40 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,2,-1,-1],[-2,3,1,2],[-3,2,-3,2]] det=5 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-3,2,-1,-1],[-2,3,1,2],[-3,2,-3,2]] det=184 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,-1,-2,1],[-2,3,1,2],[-3,2,-3,2]] det=-33 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-3,-1,-2,1],[-2,3,1,2],[-3,2,-3,2]] det=40 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,2,2,1],[-3,1,1,1],[-3,2,-3,2]] det=38 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[1,2,2,1],[-3,1,1,1],[-3,2,-3,2]] det=-104 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,-1,1,3],[-3,1,1,1],[-3,2,-3,2]] det=120 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[1,-1,1,3],[-3,1,1,1],[-3,2,-3,2]] det=-128 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,1,3,-3],[-3,1,1,1],[-3,2,-3,2]] det=-96 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,1,3,-3],[-3,1,1,1],[-3,2,-3,2]] det=80 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,3,-2,3],[-3,1,1,1],[-3,2,-3,2]] det=50 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,3,-2,3],[-3,1,1,1],[-3,2,-3,2]] det=-100 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,-2,2,-1],[-3,1,1,1],[-3,2,-3,2]] det=-14 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,-2,2,-1],[-3,1,1,1],[-3,2,-3,2]] det=56 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-2,1,-2,2],[-3,1,1,1],[-3,2,-3,2]] det=24 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-2,1,-2,2],[-3,1,1,1],[-3,2,-3,2]] det=-20 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,2,-1,-1],[-3,1,1,1],[-3,2,-3,2]] det=-84 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-3,2,-1,-1],[-3,1,1,1],[-3,2,-3,2]] det=84 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,-1,-2,1],[-3,1,1,1],[-3,2,-3,2]] det=-2 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-3,-1,-2,1],[-3,1,1,1],[-3,2,-3,2]] det=60 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,2,2,1],[-2,3,1,2],[-3,-3,1,-2]] det=-29 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[1,2,2,1],[-2,3,1,2],[-3,-3,1,-2]] det=113 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,-1,1,3],[-2,3,1,2],[-3,-3,1,-2]] det=-77 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[1,-1,1,3],[-2,3,1,2],[-3,-3,1,-2]] det=77 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,1,3,-3],[-2,3,1,2],[-3,-3,1,-2]] det=17 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,1,3,-3],[-2,3,1,2],[-3,-3,1,-2]] det=123 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,3,-2,3],[-2,3,1,2],[-3,-3,1,-2]] det=24 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,3,-2,3],[-2,3,1,2],[-3,-3,1,-2]] det=-129 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,-2,2,-1],[-2,3,1,2],[-3,-3,1,-2]] det=-31 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,-2,2,-1],[-2,3,1,2],[-3,-3,1,-2]] det=87 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-2,1,-2,2],[-2,3,1,2],[-3,-3,1,-2]] det=23 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-2,1,-2,2],[-2,3,1,2],[-3,-3,1,-2]] det=-142 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,2,-1,-1],[-2,3,1,2],[-3,-3,1,-2]] det=70 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-3,2,-1,-1],[-2,3,1,2],[-3,-3,1,-2]] det=-119 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,-1,-2,1],[-2,3,1,2],[-3,-3,1,-2]] det=22 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-3,-1,-2,1],[-2,3,1,2],[-3,-3,1,-2]] det=-155 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,2,2,1],[-3,1,1,1],[-3,-3,1,-2]] det=-33 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[1,2,2,1],[-3,1,1,1],[-3,-3,1,-2]] det=91 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,-1,1,3],[-3,1,1,1],[-3,-3,1,-2]] det=-84 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[1,-1,1,3],[-3,1,1,1],[-3,-3,1,-2]] det=52 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,1,3,-3],[-3,1,1,1],[-3,-3,1,-2]] det=16 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,1,3,-3],[-3,1,1,1],[-3,-3,1,-2]] det=104 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,3,-2,3],[-3,1,1,1],[-3,-3,1,-2]] det=29 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,3,-2,3],[-3,1,1,1],[-3,-3,1,-2]] det=-91 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,-2,2,-1],[-3,1,1,1],[-3,-3,1,-2]] det=-35 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-1,-2,2,-1],[-3,1,1,1],[-3,-3,1,-2]] det=65 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-2,1,-2,2],[-3,1,1,1],[-3,-3,1,-2]] det=28 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-2,1,-2,2],[-3,1,1,1],[-3,-3,1,-2]] det=-104 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,2,-1,-1],[-3,1,1,1],[-3,-3,1,-2]] det=78 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-3,2,-1,-1],[-3,1,1,1],[-3,-3,1,-2]] det=-78 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,-1,-2,1],[-3,1,1,1],[-3,-3,1,-2]] det=27 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,2,-1,-2],[-3,-1,-2,1],[-3,1,1,1],[-3,-3,1,-2]] det=-117 [25,-4,-22,-17] [123,-44,-118,-51] chain1 [[3,-3,-2,-2],[1,-3,-1,-1],[-2,3,2,3],[-1,1,1,3]] det=-4 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[3,1,-1,1],[-2,3,2,3],[-1,1,1,3]] det=8 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[3,-2,-2,3],[-2,3,2,3],[-1,1,1,3]] det=8 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[1,-3,-1,-1],[-3,1,2,2],[-1,1,1,3]] det=-4 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[3,1,-1,1],[-3,1,2,2],[-1,1,1,3]] det=8 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[3,-2,-2,3],[-3,1,2,2],[-1,1,1,3]] det=-10 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[1,-3,-1,-1],[-2,3,2,3],[-2,-1,1,2]] det=-2 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[3,1,-1,1],[-2,3,2,3],[-2,-1,1,2]] det=10 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[3,-2,-2,3],[-2,3,2,3],[-2,-1,1,2]] det=28 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[1,-3,-1,-1],[-3,1,2,2],[-2,-1,1,2]] det=-2 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[3,1,-1,1],[-3,1,2,2],[-2,-1,1,2]] det=10 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[3,-2,-2,3],[-3,1,2,2],[-2,-1,1,2]] det=10 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[1,-3,-1,-1],[-2,3,2,3],[-3,3,3,-3]] det=24 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[3,1,-1,1],[-2,3,2,3],[-3,3,3,-3]] det=-36 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[3,-2,-2,3],[-2,3,2,3],[-3,3,3,-3]] det=0 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[1,-3,-1,-1],[-3,1,2,2],[-3,3,3,-3]] det=12 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[3,1,-1,1],[-3,1,2,2],[-3,3,3,-3]] det=-48 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[3,-2,-2,3],[-3,1,2,2],[-3,3,3,-3]] det=-30 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[1,-3,-1,-1],[-2,3,2,3],[-3,-3,1,1]] det=0 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[3,1,-1,1],[-2,3,2,3],[-3,-3,1,1]] det=12 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[3,-2,-2,3],[-2,3,2,3],[-3,-3,1,1]] det=48 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[1,-3,-1,-1],[-3,1,2,2],[-3,-3,1,1]] det=0 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[3,1,-1,1],[-3,1,2,2],[-3,-3,1,1]] det=12 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-3,-2,-2],[3,-2,-2,3],[-3,1,2,2],[-3,-3,1,1]] det=30 [25,-4,-22,-17] [165,76,-157,-102] chain1 [[3,-2,-2,-3],[1,-2,-1,-1],[-3,3,2,2],[-1,3,2,2]] det=-2 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[2,-3,-2,2],[-3,3,2,2],[-1,3,2,2]] det=16 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[3,2,-1,1],[-3,3,2,2],[-1,3,2,2]] det=22 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[3,-1,-2,3],[-3,3,2,2],[-1,3,2,2]] det=28 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[3,-3,3,-3],[-3,3,2,2],[-1,3,2,2]] det=-54 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[1,-2,-1,-1],[-3,3,2,2],[-2,1,2,1]] det=-4 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[2,-3,-2,2],[-3,3,2,2],[-2,1,2,1]] det=2 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[3,2,-1,1],[-3,3,2,2],[-2,1,2,1]] det=20 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[3,-1,-2,3],[-3,3,2,2],[-2,1,2,1]] det=14 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[3,-3,3,-3],[-3,3,2,2],[-2,1,2,1]] det=18 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[1,-2,-1,-1],[-3,3,2,2],[-2,-2,1,3]] det=-1 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[2,-3,-2,2],[-3,3,2,2],[-2,-2,1,3]] det=-7 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[3,2,-1,1],[-3,3,2,2],[-2,-2,1,3]] det=-1 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[3,-1,-2,3],[-3,3,2,2],[-2,-2,1,3]] det=-7 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[3,-3,3,-3],[-3,3,2,2],[-2,-2,1,3]] det=36 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[1,-2,-1,-1],[-3,3,2,2],[-3,2,3,-2]] det=-9 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[2,-3,-2,2],[-3,3,2,2],[-3,2,3,-2]] det=-3 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[3,2,-1,1],[-3,3,2,2],[-3,2,3,-2]] det=39 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[3,-1,-2,3],[-3,3,2,2],[-3,2,3,-2]] det=21 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[3,-2,-2,-3],[3,-3,3,-3],[-3,3,2,2],[-3,2,3,-2]] det=72 [25,-4,-22,-17] [178,72,-165,-115] chain1 [[1,-2,-2,-1],[-1,2,-1,-1],[-2,2,3,-3],[1,3,3,-2]] det=91 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,2,-1,-1],[-2,2,3,-3],[1,3,3,-2]] det=82 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-1,2,-1,-1],[-2,2,3,-3],[1,3,3,-2]] det=16 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-1,2,-1,-1],[-2,2,3,-3],[1,3,3,-2]] det=7 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-1,-1,-2,3],[-2,2,3,-3],[1,3,3,-2]] det=20 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,-2,3],[-2,2,3,-3],[1,3,3,-2]] det=92 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-1,-1,-2,3],[-2,2,3,-3],[1,3,3,-2]] det=26 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-1,-1,-2,3],[-2,2,3,-3],[1,3,3,-2]] det=98 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-3,3,-3,-2],[-2,2,3,-3],[1,3,3,-2]] det=190 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-3,-2],[-2,2,3,-3],[1,3,3,-2]] det=160 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-3,3,-3,-2],[-2,2,3,-3],[1,3,3,-2]] det=30 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-3,3,-3,-2],[-2,2,3,-3],[1,3,3,-2]] det=0 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-1,2,-1,-1],[-2,-1,2,1],[1,3,3,-2]] det=60 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,2,-1,-1],[-2,-1,2,1],[1,3,3,-2]] det=12 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-1,2,-1,-1],[-2,-1,2,1],[1,3,3,-2]] det=-54 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-1,2,-1,-1],[-2,-1,2,1],[1,3,3,-2]] det=-102 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-1,-1,-2,3],[-2,-1,2,1],[1,3,3,-2]] det=-11 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,-2,3],[-2,-1,2,1],[1,3,3,-2]] det=22 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-1,-1,-2,3],[-2,-1,2,1],[1,3,3,-2]] det=-44 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-1,-1,-2,3],[-2,-1,2,1],[1,3,3,-2]] det=-11 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-3,3,-3,-2],[-2,-1,2,1],[1,3,3,-2]] det=144 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-3,-2],[-2,-1,2,1],[1,3,3,-2]] det=20 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-3,3,-3,-2],[-2,-1,2,1],[1,3,3,-2]] det=-110 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-3,3,-3,-2],[-2,-1,2,1],[1,3,3,-2]] det=-234 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-1,2,-1,-1],[-3,1,-1,3],[1,3,3,-2]] det=-5 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,2,-1,-1],[-3,1,-1,3],[1,3,3,-2]] det=-88 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-1,2,-1,-1],[-3,1,-1,3],[1,3,3,-2]] det=-129 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-1,2,-1,-1],[-3,1,-1,3],[1,3,3,-2]] det=-212 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-1,-1,-2,3],[-3,1,-1,3],[1,3,3,-2]] det=19 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,-2,3],[-3,1,-1,3],[1,3,3,-2]] det=72 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-1,-1,-2,3],[-3,1,-1,3],[1,3,3,-2]] det=31 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-1,-1,-2,3],[-3,1,-1,3],[1,3,3,-2]] det=84 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-3,3,-3,-2],[-3,1,-1,3],[1,3,3,-2]] det=-26 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-3,-2],[-3,1,-1,3],[1,3,3,-2]] det=-240 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-3,3,-3,-2],[-3,1,-1,3],[1,3,3,-2]] det=-290 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-3,3,-3,-2],[-3,1,-1,3],[1,3,3,-2]] det=-504 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-1,2,-1,-1],[-3,-2,3,-2],[1,3,3,-2]] det=149 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,2,-1,-1],[-3,-2,3,-2],[1,3,3,-2]] det=140 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-1,2,-1,-1],[-3,-2,3,-2],[1,3,3,-2]] det=35 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-1,2,-1,-1],[-3,-2,3,-2],[1,3,3,-2]] det=26 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-1,-1,-2,3],[-3,-2,3,-2],[1,3,3,-2]] det=-2 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,-2,3],[-3,-2,3,-2],[1,3,3,-2]] det=70 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-1,-1,-2,3],[-3,-2,3,-2],[1,3,3,-2]] det=-35 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-1,-1,-2,3],[-3,-2,3,-2],[1,3,3,-2]] det=37 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-3,3,-3,-2],[-3,-2,3,-2],[1,3,3,-2]] det=338 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-3,-2],[-3,-2,3,-2],[1,3,3,-2]] det=308 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-3,3,-3,-2],[-3,-2,3,-2],[1,3,3,-2]] det=84 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-3,3,-3,-2],[-3,-2,3,-2],[1,3,3,-2]] det=54 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-1,2,-1,-1],[-2,2,3,-3],[-2,3,-3,3]] det=-47 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,2,-1,-1],[-2,2,3,-3],[-2,3,-3,3]] det=72 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-1,2,-1,-1],[-2,2,3,-3],[-2,3,-3,3]] det=17 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-1,2,-1,-1],[-2,2,3,-3],[-2,3,-3,3]] det=136 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-1,-1,-2,3],[-2,2,3,-3],[-2,3,-3,3]] det=106 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,-2,3],[-2,2,3,-3],[-2,3,-3,3]] det=74 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-1,-1,-2,3],[-2,2,3,-3],[-2,3,-3,3]] det=19 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-1,-1,-2,3],[-2,2,3,-3],[-2,3,-3,3]] det=-13 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-3,3,-3,-2],[-2,2,3,-3],[-2,3,-3,3]] det=-20 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-3,-2],[-2,2,3,-3],[-2,3,-3,3]] det=310 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-3,3,-3,-2],[-2,2,3,-3],[-2,3,-3,3]] det=75 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-3,3,-3,-2],[-2,2,3,-3],[-2,3,-3,3]] det=405 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-1,2,-1,-1],[-2,-1,2,1],[-2,3,-3,3]] det=-84 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,2,-1,-1],[-2,-1,2,1],[-2,3,-3,3]] det=14 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-1,2,-1,-1],[-2,-1,2,1],[-2,3,-3,3]] det=-41 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-1,2,-1,-1],[-2,-1,2,1],[-2,3,-3,3]] det=57 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-1,-1,-2,3],[-2,-1,2,1],[-2,3,-3,3]] det=69 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,-2,3],[-2,-1,2,1],[-2,3,-3,3]] det=16 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-1,-1,-2,3],[-2,-1,2,1],[-2,3,-3,3]] det=-39 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-1,-1,-2,3],[-2,-1,2,1],[-2,3,-3,3]] det=-92 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-3,3,-3,-2],[-2,-1,2,1],[-2,3,-3,3]] det=-192 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-3,-2],[-2,-1,2,1],[-2,3,-3,3]] det=62 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-3,3,-3,-2],[-2,-1,2,1],[-2,3,-3,3]] det=-173 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-3,3,-3,-2],[-2,-1,2,1],[-2,3,-3,3]] det=81 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-1,2,-1,-1],[-3,1,-1,3],[-2,3,-3,3]] det=-71 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,2,-1,-1],[-3,1,-1,3],[-2,3,-3,3]] det=-8 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-1,2,-1,-1],[-3,1,-1,3],[-2,3,-3,3]] det=-47 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-1,2,-1,-1],[-3,1,-1,3],[-2,3,-3,3]] det=16 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-1,-1,-2,3],[-3,1,-1,3],[-2,3,-3,3]] det=57 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,-2,3],[-3,1,-1,3],[-2,3,-3,3]] det=24 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-1,-1,-2,3],[-3,1,-1,3],[-2,3,-3,3]] det=-15 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-1,-1,-2,3],[-3,1,-1,3],[-2,3,-3,3]] det=-48 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-3,3,-3,-2],[-3,1,-1,3],[-2,3,-3,3]] det=-164 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-3,-2],[-3,1,-1,3],[-2,3,-3,3]] det=0 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-3,3,-3,-2],[-3,1,-1,3],[-2,3,-3,3]] det=-164 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-3,3,-3,-2],[-3,1,-1,3],[-2,3,-3,3]] det=0 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-1,2,-1,-1],[-3,-2,3,-2],[-2,3,-3,3]] det=-145 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,2,-1,-1],[-3,-2,3,-2],[-2,3,-3,3]] det=-26 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-1,2,-1,-1],[-3,-2,3,-2],[-2,3,-3,3]] det=-102 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-1,2,-1,-1],[-3,-2,3,-2],[-2,3,-3,3]] det=17 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-1,-1,-2,3],[-3,-2,3,-2],[-2,3,-3,3]] det=168 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-1,-1,-2,3],[-3,-2,3,-2],[-2,3,-3,3]] det=136 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-1,-1,-2,3],[-3,-2,3,-2],[-2,3,-3,3]] det=60 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-1,-1,-2,3],[-3,-2,3,-2],[-2,3,-3,3]] det=28 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-2,-1],[-3,3,-3,-2],[-3,-2,3,-2],[-2,3,-3,3]] det=-268 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,2,-2,-2],[-3,3,-3,-2],[-3,-2,3,-2],[-2,3,-3,3]] det=62 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,2],[-3,3,-3,-2],[-3,-2,3,-2],[-2,3,-3,3]] det=-249 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[3,3,-3,1],[-3,3,-3,-2],[-3,-2,3,-2],[-2,3,-3,3]] det=81 [29,-11,-27,-15] [120,-9,-116,-55] chain1 [[1,-2,-1,-3],[1,2,3,-2],[-1,-2,3,2],[1,1,2,1]] det=78 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,2,3,-2],[-1,-2,3,2],[1,1,2,1]] det=24 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,2,3,-2],[-1,-2,3,2],[1,1,2,1]] det=138 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,-1,2,2],[-1,-2,3,2],[1,1,2,1]] det=-40 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,-1,2,2],[-1,-2,3,2],[1,1,2,1]] det=0 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,-1,2,2],[-1,-2,3,2],[1,1,2,1]] det=-55 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[2,3,2,1],[-1,-2,3,2],[1,1,2,1]] det=3 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[2,3,2,1],[-1,-2,3,2],[1,1,2,1]] det=-4 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[2,3,2,1],[-1,-2,3,2],[1,1,2,1]] det=-1 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-1,3,1,-3],[-1,-2,3,2],[1,1,2,1]] det=119 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-1,3,1,-3],[-1,-2,3,2],[1,1,2,1]] det=12 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-1,3,1,-3],[-1,-2,3,2],[1,1,2,1]] det=179 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,2,-3,3],[-1,-2,3,2],[1,1,2,1]] det=-33 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,2,-3,3],[-1,-2,3,2],[1,1,2,1]] det=-52 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,2,-3,3],[-1,-2,3,2],[1,1,2,1]] det=-112 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,-1,1,-2],[-1,-2,3,2],[1,1,2,1]] det=76 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,-1,1,-2],[-1,-2,3,2],[1,1,2,1]] det=16 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,-1,1,-2],[-1,-2,3,2],[1,1,2,1]] det=125 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,2,3,-2],[-3,2,2,-3],[1,1,2,1]] det=39 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,2,3,-2],[-3,2,2,-3],[1,1,2,1]] det=-108 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,2,3,-2],[-3,2,2,-3],[1,1,2,1]] det=84 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,-1,2,2],[-3,2,2,-3],[1,1,2,1]] det=-73 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,-1,2,2],[-3,2,2,-3],[1,1,2,1]] det=-24 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,-1,2,2],[-3,2,2,-3],[1,1,2,1]] det=-103 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[2,3,2,1],[-3,2,2,-3],[1,1,2,1]] det=81 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[2,3,2,1],[-3,2,2,-3],[1,1,2,1]] det=32 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[2,3,2,1],[-3,2,2,-3],[1,1,2,1]] det=113 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-1,3,1,-3],[-3,2,2,-3],[1,1,2,1]] det=86 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-1,3,1,-3],[-3,2,2,-3],[1,1,2,1]] det=-12 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-1,3,1,-3],[-3,2,2,-3],[1,1,2,1]] det=131 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,2,-3,3],[-3,2,2,-3],[1,1,2,1]] det=63 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,2,-3,3],[-3,2,2,-3],[1,1,2,1]] det=308 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,2,-3,3],[-3,2,2,-3],[1,1,2,1]] det=20 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,-1,1,-2],[-3,2,2,-3],[1,1,2,1]] det=-68 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,-1,1,-2],[-3,2,2,-3],[1,1,2,1]] det=-68 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,-1,1,-2],[-3,2,2,-3],[1,1,2,1]] det=-85 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,2,3,-2],[-3,-1,1,1],[1,1,2,1]] det=65 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,2,3,-2],[-3,-1,1,1],[1,1,2,1]] det=-60 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,2,3,-2],[-3,-1,1,1],[1,1,2,1]] det=125 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,-1,2,2],[-3,-1,1,1],[1,1,2,1]] det=-47 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,-1,2,2],[-3,-1,1,1],[1,1,2,1]] det=24 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,-1,2,2],[-3,-1,1,1],[1,1,2,1]] det=-62 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[2,3,2,1],[-3,-1,1,1],[1,1,2,1]] det=23 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[2,3,2,1],[-3,-1,1,1],[1,1,2,1]] det=-4 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[2,3,2,1],[-3,-1,1,1],[1,1,2,1]] det=19 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-1,3,1,-3],[-3,-1,1,1],[1,1,2,1]] det=106 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-1,3,1,-3],[-3,-1,1,1],[1,1,2,1]] det=-72 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-1,3,1,-3],[-3,-1,1,1],[1,1,2,1]] det=166 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,2,-3,3],[-3,-1,1,1],[1,1,2,1]] det=-7 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,2,-3,3],[-3,-1,1,1],[1,1,2,1]] det=56 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,2,-3,3],[-3,-1,1,1],[1,1,2,1]] det=-86 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,-1,1,-2],[-3,-1,1,1],[1,1,2,1]] det=36 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,-1,1,-2],[-3,-1,1,1],[1,1,2,1]] det=-44 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,-1,1,-2],[-3,-1,1,1],[1,1,2,1]] det=85 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,2,3,-2],[-1,-2,3,2],[-2,1,1,-3]] det=-198 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,2,3,-2],[-1,-2,3,2],[-2,1,1,-3]] det=24 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,2,3,-2],[-1,-2,3,2],[-2,1,1,-3]] det=-258 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,-1,2,2],[-1,-2,3,2],[-2,1,1,-3]] det=-68 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,-1,2,2],[-1,-2,3,2],[-2,1,1,-3]] det=12 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,-1,2,2],[-1,-2,3,2],[-2,1,1,-3]] det=-85 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[2,3,2,1],[-1,-2,3,2],[-2,1,1,-3]] det=-195 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[2,3,2,1],[-1,-2,3,2],[-2,1,1,-3]] det=-44 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[2,3,2,1],[-1,-2,3,2],[-2,1,1,-3]] det=-319 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-1,3,1,-3],[-1,-2,3,2],[-2,1,1,-3]] det=-79 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-1,3,1,-3],[-1,-2,3,2],[-2,1,1,-3]] det=-28 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-1,3,1,-3],[-1,-2,3,2],[-2,1,1,-3]] det=-139 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,2,-3,3],[-1,-2,3,2],[-2,1,1,-3]] det=173 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,2,-3,3],[-1,-2,3,2],[-2,1,1,-3]] det=-160 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,2,-3,3],[-1,-2,3,2],[-2,1,1,-3]] det=92 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,-1,1,-2],[-1,-2,3,2],[-2,1,1,-3]] det=48 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,-1,1,-2],[-1,-2,3,2],[-2,1,1,-3]] det=28 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,-1,1,-2],[-1,-2,3,2],[-2,1,1,-3]] det=95 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,2,3,-2],[-3,2,2,-3],[-2,1,1,-3]] det=-11 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,2,3,-2],[-3,2,2,-3],[-2,1,1,-3]] det=74 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,2,3,-2],[-3,2,2,-3],[-2,1,1,-3]] det=-42 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,-1,2,2],[-3,2,2,-3],[-2,1,1,-3]] det=2 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,-1,2,2],[-3,2,2,-3],[-2,1,1,-3]] det=47 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,-1,2,2],[-3,2,2,-3],[-2,1,1,-3]] det=14 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[2,3,2,1],[-3,2,2,-3],[-2,1,1,-3]] det=-14 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[2,3,2,1],[-3,2,2,-3],[-2,1,1,-3]] det=51 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[2,3,2,1],[-3,2,2,-3],[-2,1,1,-3]] det=-58 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-1,3,1,-3],[-3,2,2,-3],[-2,1,1,-3]] det=-9 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-1,3,1,-3],[-3,2,2,-3],[-2,1,1,-3]] det=7 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-1,3,1,-3],[-3,2,2,-3],[-2,1,1,-3]] det=-40 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,2,-3,3],[-3,2,2,-3],[-2,1,1,-3]] det=3 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,2,-3,3],[-3,2,2,-3],[-2,1,1,-3]] det=-110 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,2,-3,3],[-3,2,2,-3],[-2,1,1,-3]] det=2 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,-1,1,-2],[-3,2,2,-3],[-2,1,1,-3]] det=7 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,-1,1,-2],[-3,2,2,-3],[-2,1,1,-3]] det=3 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,-1,1,-2],[-3,2,2,-3],[-2,1,1,-3]] det=32 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,2,3,-2],[-3,-1,1,1],[-2,1,1,-3]] det=-115 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,2,3,-2],[-3,-1,1,1],[-2,1,1,-3]] det=80 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,2,3,-2],[-3,-1,1,1],[-2,1,1,-3]] det=-175 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,-1,2,2],[-3,-1,1,1],[-2,1,1,-3]] det=-102 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,-1,2,2],[-3,-1,1,1],[-2,1,1,-3]] det=53 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,-1,2,2],[-3,-1,1,1],[-2,1,1,-3]] det=-119 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[2,3,2,1],[-3,-1,1,1],[-2,1,1,-3]] det=-79 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[2,3,2,1],[-3,-1,1,1],[-2,1,1,-3]] det=96 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[2,3,2,1],[-3,-1,1,1],[-2,1,1,-3]] det=-203 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-1,3,1,-3],[-3,-1,1,1],[-2,1,1,-3]] det=4 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-1,3,1,-3],[-3,-1,1,1],[-2,1,1,-3]] det=28 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-1,3,1,-3],[-3,-1,1,1],[-2,1,1,-3]] det=-56 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,2,-3,3],[-3,-1,1,1],[-2,1,1,-3]] det=172 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,2,-3,3],[-3,-1,1,1],[-2,1,1,-3]] det=-35 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,2,-3,3],[-3,-1,1,1],[-2,1,1,-3]] det=91 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,-1,1,-2],[-3,-1,1,1],[-2,1,1,-3]] det=-19 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,-1,1,-2],[-3,-1,1,1],[-2,1,1,-3]] det=-15 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,-1,1,-2],[-3,-1,1,1],[-2,1,1,-3]] det=28 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,2,3,-2],[-1,-2,3,2],[-3,3,-2,-1]] det=-222 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,2,3,-2],[-1,-2,3,2],[-3,3,-2,-1]] det=144 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,2,3,-2],[-1,-2,3,2],[-3,3,-2,-1]] det=-162 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,-1,2,2],[-1,-2,3,2],[-3,3,-2,-1]] det=-6 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,-1,2,2],[-1,-2,3,2],[-3,3,-2,-1]] det=-18 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,-1,2,2],[-1,-2,3,2],[-3,3,-2,-1]] det=-21 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[2,3,2,1],[-1,-2,3,2],[-3,3,-2,-1]] det=-141 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[2,3,2,1],[-1,-2,3,2],[-3,3,-2,-1]] det=36 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[2,3,2,1],[-1,-2,3,2],[-3,3,-2,-1]] det=-145 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-1,3,1,-3],[-1,-2,3,2],[-3,3,-2,-1]] det=-181 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-1,3,1,-3],[-1,-2,3,2],[-3,3,-2,-1]] det=132 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-1,3,1,-3],[-1,-2,3,2],[-3,3,-2,-1]] det=-121 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,2,-3,3],[-1,-2,3,2],[-3,3,-2,-1]] det=157 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,2,-3,3],[-1,-2,3,2],[-3,3,-2,-1]] det=-150 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,2,-3,3],[-1,-2,3,2],[-3,3,-2,-1]] det=78 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,-1,1,-2],[-1,-2,3,2],[-3,3,-2,-1]] det=-46 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,-1,1,-2],[-1,-2,3,2],[-3,3,-2,-1]] det=78 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,-1,1,-2],[-1,-2,3,2],[-3,3,-2,-1]] det=3 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,2,3,-2],[-3,2,2,-3],[-3,3,-2,-1]] det=-199 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,2,3,-2],[-3,2,2,-3],[-3,3,-2,-1]] det=-102 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,2,3,-2],[-3,2,2,-3],[-3,3,-2,-1]] det=-154 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,-1,2,2],[-3,2,2,-3],[-3,3,-2,-1]] det=23 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,-1,2,2],[-3,2,2,-3],[-3,3,-2,-1]] det=-156 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,-1,2,2],[-3,2,2,-3],[-3,3,-2,-1]] det=-7 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[2,3,2,1],[-3,2,2,-3],[-3,3,-2,-1]] det=-247 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[2,3,2,1],[-3,2,2,-3],[-3,3,-2,-1]] det=-288 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[2,3,2,1],[-3,2,2,-3],[-3,3,-2,-1]] det=-215 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-1,3,1,-3],[-3,2,2,-3],[-3,3,-2,-1]] det=-152 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-1,3,1,-3],[-3,2,2,-3],[-3,3,-2,-1]] det=-6 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-1,3,1,-3],[-3,2,2,-3],[-3,3,-2,-1]] det=-107 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,2,-3,3],[-3,2,2,-3],[-3,3,-2,-1]] det=69 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,2,-3,3],[-3,2,2,-3],[-3,3,-2,-1]] det=-150 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,2,-3,3],[-3,2,2,-3],[-3,3,-2,-1]] det=26 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,-1,1,-2],[-3,2,2,-3],[-3,3,-2,-1]] det=118 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,-1,1,-2],[-3,2,2,-3],[-3,3,-2,-1]] det=126 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,-1,1,-2],[-3,2,2,-3],[-3,3,-2,-1]] det=101 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,2,3,-2],[-3,-1,1,1],[-3,3,-2,-1]] det=-235 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,2,3,-2],[-3,-1,1,1],[-3,3,-2,-1]] det=60 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,2,3,-2],[-3,-1,1,1],[-3,3,-2,-1]] det=-175 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,-1,2,2],[-3,-1,1,1],[-3,3,-2,-1]] det=-13 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,-1,2,2],[-3,-1,1,1],[-3,3,-2,-1]] det=6 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,-1,2,2],[-3,-1,1,1],[-3,3,-2,-1]] det=-28 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[2,3,2,1],[-3,-1,1,1],[-3,3,-2,-1]] det=-121 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[2,3,2,1],[-3,-1,1,1],[-3,3,-2,-1]] det=36 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[2,3,2,1],[-3,-1,1,1],[-3,3,-2,-1]] det=-125 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-1,3,1,-3],[-3,-1,1,1],[-3,3,-2,-1]] det=-194 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-1,3,1,-3],[-3,-1,1,1],[-3,3,-2,-1]] det=48 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-1,3,1,-3],[-3,-1,1,1],[-3,3,-2,-1]] det=-134 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,2,-3,3],[-3,-1,1,1],[-3,3,-2,-1]] det=183 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,2,-3,3],[-3,-1,1,1],[-3,3,-2,-1]] det=-42 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,2,-3,3],[-3,-1,1,1],[-3,3,-2,-1]] det=104 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,-1,1,-2],[-3,-1,1,1],[-3,3,-2,-1]] det=-86 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,-1,1,-2],[-3,-1,1,1],[-3,3,-2,-1]] det=18 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,-1,1,-2],[-3,-1,1,1],[-3,3,-2,-1]] det=-37 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,2,3,-2],[-1,-2,3,2],[-3,-3,1,-2]] det=-210 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,2,3,-2],[-1,-2,3,2],[-3,-3,1,-2]] det=-54 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,2,3,-2],[-1,-2,3,2],[-3,-3,1,-2]] det=-360 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,-1,2,2],[-1,-2,3,2],[-3,-3,1,-2]] det=1 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,-1,2,2],[-1,-2,3,2],[-3,-3,1,-2]] det=15 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,-1,2,2],[-1,-2,3,2],[-3,-3,1,-2]] det=12 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[2,3,2,1],[-1,-2,3,2],[-3,-3,1,-2]] det=-126 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[2,3,2,1],[-1,-2,3,2],[-3,-3,1,-2]] det=-41 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[2,3,2,1],[-1,-2,3,2],[-3,-3,1,-2]] det=-222 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-1,3,1,-3],[-1,-2,3,2],[-3,-3,1,-2]] det=-180 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-1,3,1,-3],[-1,-2,3,2],[-3,-3,1,-2]] det=-77 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-1,3,1,-3],[-1,-2,3,2],[-3,-3,1,-2]] det=-330 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,2,-3,3],[-1,-2,3,2],[-3,-3,1,-2]] det=145 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,2,-3,3],[-1,-2,3,2],[-3,-3,1,-2]] det=-18 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,2,-3,3],[-1,-2,3,2],[-3,-3,1,-2]] det=210 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,-1,1,-2],[-1,-2,3,2],[-3,-3,1,-2]] det=-53 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,-1,1,-2],[-1,-2,3,2],[-3,-3,1,-2]] det=-21 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,-1,1,-2],[-1,-2,3,2],[-3,-3,1,-2]] det=-96 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,2,3,-2],[-3,2,2,-3],[-3,-3,1,-2]] det=203 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,2,3,-2],[-3,2,2,-3],[-3,-3,1,-2]] det=178 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,2,3,-2],[-3,2,2,-3],[-3,-3,1,-2]] det=126 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,-1,2,2],[-3,2,2,-3],[-3,-3,1,-2]] det=174 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,-1,2,2],[-3,2,2,-3],[-3,-3,1,-2]] det=109 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,-1,2,2],[-3,2,2,-3],[-3,-3,1,-2]] det=258 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[2,3,2,1],[-3,2,2,-3],[-3,-3,1,-2]] det=158 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[2,3,2,1],[-3,2,2,-3],[-3,-3,1,-2]] det=113 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[2,3,2,1],[-3,2,2,-3],[-3,-3,1,-2]] det=186 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-1,3,1,-3],[-3,2,2,-3],[-3,-3,1,-2]] det=-7 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-1,3,1,-3],[-3,2,2,-3],[-3,-3,1,-2]] det=17 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-1,3,1,-3],[-3,2,2,-3],[-3,-3,1,-2]] det=-84 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,2,-3,3],[-3,2,2,-3],[-3,-3,1,-2]] det=-291 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,2,-3,3],[-3,2,2,-3],[-3,-3,1,-2]] det=-278 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,2,-3,3],[-3,2,2,-3],[-3,-3,1,-2]] det=-102 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,-1,1,-2],[-3,2,2,-3],[-3,-3,1,-2]] det=9 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,-1,1,-2],[-3,2,2,-3],[-3,-3,1,-2]] det=13 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,-1,1,-2],[-3,2,2,-3],[-3,-3,1,-2]] det=-12 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,2,3,-2],[-3,-1,1,1],[-3,-3,1,-2]] det=0 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,2,3,-2],[-3,-1,1,1],[-3,-3,1,-2]] det=85 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,2,3,-2],[-3,-1,1,1],[-3,-3,1,-2]] det=-150 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[1,-1,2,2],[-3,-1,1,1],[-3,-3,1,-2]] det=-29 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[1,-1,2,2],[-3,-1,1,1],[-3,-3,1,-2]] det=16 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[1,-1,2,2],[-3,-1,1,1],[-3,-3,1,-2]] det=-18 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[2,3,2,1],[-3,-1,1,1],[-3,-3,1,-2]] det=-6 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[2,3,2,1],[-3,-1,1,1],[-3,-3,1,-2]] det=59 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[2,3,2,1],[-3,-1,1,1],[-3,-3,1,-2]] det=-102 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-1,3,1,-3],[-3,-1,1,1],[-3,-3,1,-2]] det=30 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-1,3,1,-3],[-3,-1,1,1],[-3,-3,1,-2]] det=62 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-1,3,1,-3],[-3,-1,1,1],[-3,-3,1,-2]] det=-120 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,2,-3,3],[-3,-1,1,1],[-3,-3,1,-2]] det=25 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,2,-3,3],[-3,-1,1,1],[-3,-3,1,-2]] det=-56 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,2,-3,3],[-3,-1,1,1],[-3,-3,1,-2]] det=90 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-1,-3],[-2,-1,1,-2],[-3,-1,1,1],[-3,-3,1,-2]] det=7 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,3,-2,-1],[-2,-1,1,-2],[-3,-1,1,1],[-3,-3,1,-2]] det=19 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[3,-3,1,-2],[-2,-1,1,-2],[-3,-1,1,1],[-3,-3,1,-2]] det=-36 [29,-11,-27,-15] [123,-44,-118,-51] chain1 [[1,-2,-3,-1],[1,3,-1,3],[-3,1,1,1],[1,-2,3,3]] det=-180 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[1,3,-1,3],[-3,1,1,1],[1,-2,3,3]] det=30 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[1,-3,2,2],[-3,1,1,1],[1,-2,3,3]] det=30 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[1,-3,2,2],[-3,1,1,1],[1,-2,3,3]] det=15 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[2,1,2,1],[-3,1,1,1],[1,-2,3,3]] det=-30 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[2,1,2,1],[-3,1,1,1],[1,-2,3,3]] det=-45 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[-1,1,1,-3],[-3,1,1,1],[1,-2,3,3]] det=100 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[-1,1,1,-3],[-3,1,1,1],[1,-2,3,3]] det=-70 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[-2,3,-2,-1],[-3,1,1,1],[1,-2,3,3]] det=-50 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[-2,3,-2,-1],[-3,1,1,1],[1,-2,3,3]] det=5 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[-2,-3,1,-2],[-3,1,1,1],[1,-2,3,3]] det=160 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[-2,-3,1,-2],[-3,1,1,1],[1,-2,3,3]] det=-10 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[1,3,-1,3],[-3,1,1,1],[2,2,3,2]] det=-42 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[1,3,-1,3],[-3,1,1,1],[2,2,3,2]] det=168 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[1,-3,2,2],[-3,1,1,1],[2,2,3,2]] det=63 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[1,-3,2,2],[-3,1,1,1],[2,2,3,2]] det=48 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[2,1,2,1],[-3,1,1,1],[2,2,3,2]] det=3 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[2,1,2,1],[-3,1,1,1],[2,2,3,2]] det=-12 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[-1,1,1,-3],[-3,1,1,1],[2,2,3,2]] det=-14 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[-1,1,1,-3],[-3,1,1,1],[2,2,3,2]] det=-184 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[-2,3,-2,-1],[-3,1,1,1],[2,2,3,2]] det=-59 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[-2,3,-2,-1],[-3,1,1,1],[2,2,3,2]] det=-4 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[-2,-3,1,-2],[-3,1,1,1],[2,2,3,2]] det=46 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[-2,-3,1,-2],[-3,1,1,1],[2,2,3,2]] det=-124 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[1,3,-1,3],[-3,1,1,1],[-1,2,2,-2]] det=100 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[1,3,-1,3],[-3,1,1,1],[-1,2,2,-2]] det=152 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[1,-3,2,2],[-3,1,1,1],[-1,2,2,-2]] det=-82 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[1,-3,2,2],[-3,1,1,1],[-1,2,2,-2]] det=25 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[2,1,2,1],[-3,1,1,1],[-1,2,2,-2]] det=5 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[2,1,2,1],[-3,1,1,1],[-1,2,2,-2]] det=112 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[-1,1,1,-3],[-3,1,1,1],[-1,2,2,-2]] det=-12 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[-1,1,1,-3],[-3,1,1,1],[-1,2,2,-2]] det=-60 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[-2,3,-2,-1],[-3,1,1,1],[-1,2,2,-2]] det=83 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[-2,3,-2,-1],[-3,1,1,1],[-1,2,2,-2]] det=-20 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[-2,-3,1,-2],[-3,1,1,1],[-1,2,2,-2]] det=-99 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[-2,-3,1,-2],[-3,1,1,1],[-1,2,2,-2]] det=-147 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[1,3,-1,3],[-3,1,1,1],[-1,-1,1,2]] det=-94 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[1,3,-1,3],[-3,1,1,1],[-1,-1,1,2]] det=-38 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[1,-3,2,2],[-3,1,1,1],[-1,-1,1,2]] det=25 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[1,-3,2,2],[-3,1,1,1],[-1,-1,1,2]] det=-4 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[2,1,2,1],[-3,1,1,1],[-1,-1,1,2]] det=-14 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[2,1,2,1],[-3,1,1,1],[-1,-1,1,2]] det=-43 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[-1,1,1,-3],[-3,1,1,1],[-1,-1,1,2]] det=46 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[-1,1,1,-3],[-3,1,1,1],[-1,-1,1,2]] det=2 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[-2,3,-2,-1],[-3,1,1,1],[-1,-1,1,2]] det=-34 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[-2,3,-2,-1],[-3,1,1,1],[-1,-1,1,2]] det=7 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[-2,-3,1,-2],[-3,1,1,1],[-1,-1,1,2]] det=85 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[-2,-3,1,-2],[-3,1,1,1],[-1,-1,1,2]] det=41 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[1,3,-1,3],[-3,1,1,1],[-2,-2,2,-1]] det=-38 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[1,3,-1,3],[-3,1,1,1],[-2,-2,2,-1]] det=14 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[1,-3,2,2],[-3,1,1,1],[-2,-2,2,-1]] det=-115 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[1,-3,2,2],[-3,1,1,1],[-2,-2,2,-1]] det=-8 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[2,1,2,1],[-3,1,1,1],[-2,-2,2,-1]] det=-28 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[2,1,2,1],[-3,1,1,1],[-2,-2,2,-1]] det=79 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[-1,1,1,-3],[-3,1,1,1],[-2,-2,2,-1]] det=102 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[-1,1,1,-3],[-3,1,1,1],[-2,-2,2,-1]] det=54 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[-2,3,-2,-1],[-3,1,1,1],[-2,-2,2,-1]] det=92 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[-2,3,-2,-1],[-3,1,1,1],[-2,-2,2,-1]] det=-11 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[1,-2,-3,-1],[-2,-3,1,-2],[-3,1,1,1],[-2,-2,2,-1]] det=15 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,2,-3,-2],[-2,-3,1,-2],[-3,1,1,1],[-2,-2,2,-1]] det=-33 [29,-11,-27,-15] [147,-22,-140,-75] chain1 [[2,-1,-3,-1],[1,2,-2,-1],[-2,3,3,-1],[-1,2,3,-2]] det=10 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,3,-3,-2],[1,2,-2,-1],[-2,3,3,-1],[-1,2,3,-2]] det=-20 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[2,-1,-3,-1],[1,-1,-3,3],[-2,3,3,-1],[-1,2,3,-2]] det=12 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,3,-3,-2],[1,-1,-3,3],[-2,3,3,-1],[-1,2,3,-2]] det=27 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[2,-1,-3,-1],[2,3,-3,2],[-2,3,3,-1],[-1,2,3,-2]] det=42 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,3,-3,-2],[2,3,-3,2],[-2,3,3,-1],[-1,2,3,-2]] det=57 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[2,-1,-3,-1],[-1,-3,-1,-3],[-2,3,3,-1],[-1,2,3,-2]] det=-52 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,3,-3,-2],[-1,-3,-1,-3],[-2,3,3,-1],[-1,2,3,-2]] det=-127 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[2,-1,-3,-1],[1,2,-2,-1],[-2,3,3,-1],[-1,-1,2,2]] det=4 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,3,-3,-2],[1,2,-2,-1],[-2,3,3,-1],[-1,-1,2,2]] det=26 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[2,-1,-3,-1],[1,-1,-3,3],[-2,3,3,-1],[-1,-1,2,2]] det=6 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,3,-3,-2],[1,-1,-3,3],[-2,3,3,-1],[-1,-1,2,2]] det=73 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[2,-1,-3,-1],[2,3,-3,2],[-2,3,3,-1],[-1,-1,2,2]] det=14 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,3,-3,-2],[2,3,-3,2],[-2,3,3,-1],[-1,-1,2,2]] det=81 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[2,-1,-3,-1],[-1,-3,-1,-3],[-2,3,3,-1],[-1,-1,2,2]] det=-14 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,3,-3,-2],[-1,-3,-1,-3],[-2,3,3,-1],[-1,-1,2,2]] det=-37 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[2,-1,-3,-1],[1,2,-2,-1],[-2,3,3,-1],[-2,-2,3,-1]] det=-10 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,3,-3,-2],[1,2,-2,-1],[-2,3,3,-1],[-2,-2,3,-1]] det=-40 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[2,-1,-3,-1],[1,-1,-3,3],[-2,3,3,-1],[-2,-2,3,-1]] det=-30 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,3,-3,-2],[1,-1,-3,3],[-2,3,3,-1],[-2,-2,3,-1]] det=-15 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[2,-1,-3,-1],[2,3,-3,2],[-2,3,3,-1],[-2,-2,3,-1]] det=0 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,3,-3,-2],[2,3,-3,2],[-2,3,3,-1],[-2,-2,3,-1]] det=15 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[2,-1,-3,-1],[-1,-3,-1,-3],[-2,3,3,-1],[-2,-2,3,-1]] det=-50 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,3,-3,-2],[-1,-3,-1,-3],[-2,3,3,-1],[-2,-2,3,-1]] det=-125 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[2,-1,-3,-1],[1,2,-2,-1],[-2,3,3,-1],[-3,3,1,-3]] det=-34 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,3,-3,-2],[1,2,-2,-1],[-2,3,3,-1],[-3,3,1,-3]] det=-46 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[2,-1,-3,-1],[1,-1,-3,3],[-2,3,3,-1],[-3,3,1,-3]] det=-60 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,3,-3,-2],[1,-1,-3,3],[-2,3,3,-1],[-3,3,1,-3]] det=-184 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[2,-1,-3,-1],[2,3,-3,2],[-2,3,3,-1],[-3,3,1,-3]] det=-98 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,3,-3,-2],[2,3,-3,2],[-2,3,3,-1],[-3,3,1,-3]] det=-222 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[2,-1,-3,-1],[-1,-3,-1,-3],[-2,3,3,-1],[-3,3,1,-3]] det=68 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,3,-3,-2],[-1,-3,-1,-3],[-2,3,3,-1],[-3,3,1,-3]] det=168 [29,-11,-27,-15] [165,76,-157,-102] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-2,2,2,2],[1,-3,3,3]] det=-112 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-2,2,2,2],[1,-3,3,3]] det=-92 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-2,2,2,2],[1,-3,3,3]] det=-156 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-2,2,2,2],[1,-3,3,3]] det=-28 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-2,2,2,2],[1,-3,3,3]] det=-4 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-3,1,3,-1],[1,-3,3,3]] det=80 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-3,1,3,-1],[1,-3,3,3]] det=-8 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-3,1,3,-1],[1,-3,3,3]] det=136 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-3,1,3,-1],[1,-3,3,3]] det=56 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-3,1,3,-1],[1,-3,3,3]] det=-120 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-3,-2,2,3],[1,-3,3,3]] det=60 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-3,-2,2,3],[1,-3,3,3]] det=123 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-3,-2,2,3],[1,-3,3,3]] det=59 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-3,-2,2,3],[1,-3,3,3]] det=-21 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-3,-2,2,3],[1,-3,3,3]] det=125 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-2,2,2,2],[2,1,3,2]] det=-72 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-2,2,2,2],[2,1,3,2]] det=6 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-2,2,2,2],[2,1,3,2]] det=-58 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-2,2,2,2],[2,1,3,2]] det=38 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-2,2,2,2],[2,1,3,2]] det=-22 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-3,1,3,-1],[2,1,3,2]] det=76 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-3,1,3,-1],[2,1,3,2]] det=-121 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-3,1,3,-1],[2,1,3,2]] det=23 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-3,1,3,-1],[2,1,3,2]] det=-89 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-3,1,3,-1],[2,1,3,2]] det=-15 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-3,-2,2,3],[2,1,3,2]] det=100 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-3,-2,2,3],[2,1,3,2]] det=221 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-3,-2,2,3],[2,1,3,2]] det=157 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-3,-2,2,3],[2,1,3,2]] det=45 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-3,-2,2,3],[2,1,3,2]] det=107 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-2,2,2,2],[-1,1,2,-2]] det=-14 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-2,2,2,2],[-1,1,2,-2]] det=74 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-2,2,2,2],[-1,1,2,-2]] det=36 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-2,2,2,2],[-1,1,2,-2]] det=70 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-2,2,2,2],[-1,1,2,-2]] det=-26 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-3,1,3,-1],[-1,1,2,-2]] det=1 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-3,1,3,-1],[-1,1,2,-2]] det=-19 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-3,1,3,-1],[-1,1,2,-2]] det=-16 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-3,1,3,-1],[-1,1,2,-2]] det=-23 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-3,1,3,-1],[-1,1,2,-2]] det=15 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-3,-2,2,3],[-1,1,2,-2]] det=-15 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-3,-2,2,3],[-1,1,2,-2]] det=-51 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-3,-2,2,3],[-1,1,2,-2]] det=-89 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-3,-2,2,3],[-1,1,2,-2]] det=-96 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-3,-2,2,3],[-1,1,2,-2]] det=97 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-2,2,2,2],[-1,-2,1,2]] det=-38 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-2,2,2,2],[-1,-2,1,2]] det=-76 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-2,2,2,2],[-1,-2,1,2]] det=-82 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-2,2,2,2],[-1,-2,1,2]] det=-48 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-2,2,2,2],[-1,-2,1,2]] det=12 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-3,1,3,-1],[-1,-2,1,2]] det=21 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-3,1,3,-1],[-1,-2,1,2]] det=42 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-3,1,3,-1],[-1,-2,1,2]] det=77 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-3,1,3,-1],[-1,-2,1,2]] det=70 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-3,1,3,-1],[-1,-2,1,2]] det=-70 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-3,-2,2,3],[-1,-2,1,2]] det=5 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-3,-2,2,3],[-1,-2,1,2]] det=10 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-3,-2,2,3],[-1,-2,1,2]] det=4 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-3,-2,2,3],[-1,-2,1,2]] det=-3 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-3,-2,2,3],[-1,-2,1,2]] det=12 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-2,2,2,2],[-2,-3,2,-1]] det=-54 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-2,2,2,2],[-2,-3,2,-1]] det=-24 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-2,2,2,2],[-2,-3,2,-1]] det=-62 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-2,2,2,2],[-2,-3,2,-1]] det=4 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-2,2,2,2],[-2,-3,2,-1]] det=-8 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-3,1,3,-1],[-2,-3,2,-1]] det=5 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-3,1,3,-1],[-2,-3,2,-1]] det=94 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-3,1,3,-1],[-2,-3,2,-1]] det=97 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-3,1,3,-1],[-2,-3,2,-1]] det=122 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-3,1,3,-1],[-2,-3,2,-1]] det=-90 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-3,-2,2,3],[-2,-3,2,-1]] det=-55 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-3,-2,2,3],[-2,-3,2,-1]] det=-149 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-3,-2,2,3],[-2,-3,2,-1]] det=-187 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-3,-2,2,3],[-2,-3,2,-1]] det=-162 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-3,-2,2,3],[-2,-3,2,-1]] det=115 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-2,2,2,2],[-3,-1,-1,1]] det=36 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-2,2,2,2],[-3,-1,-1,1]] det=-60 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-2,2,2,2],[-3,-1,-1,1]] det=-8 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-2,2,2,2],[-3,-1,-1,1]] det=-68 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-2,2,2,2],[-3,-1,-1,1]] det=28 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-3,1,3,-1],[-3,-1,-1,1]] det=-38 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-3,1,3,-1],[-3,-1,-1,1]] det=92 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-3,1,3,-1],[-3,-1,-1,1]] det=18 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-3,1,3,-1],[-3,-1,-1,1]] det=84 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-3,1,3,-1],[-3,-1,-1,1]] det=-20 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[1,2,1,-3],[-3,-2,2,3],[-3,-1,-1,1]] det=-50 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[2,-3,3,-1],[-3,-2,2,3],[-3,-1,-1,1]] det=-103 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,1,3,-2],[-3,-2,2,3],[-3,-1,-1,1]] det=-51 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[3,-2,2,2],[-3,-2,2,3],[-3,-1,-1,1]] det=15 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-1,-2,-1],[-2,-1,-1,-3],[-3,-2,2,3],[-3,-1,-1,1]] det=-101 [29,-11,-27,-15] [167,25,-164,-64] chain1 [[3,-2,-2,-1],[2,2,-3,3],[-2,1,3,1],[1,3,3,2]] det=-64 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[2,-1,1,-2],[-2,1,3,1],[1,3,3,2]] det=46 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[3,3,1,-3],[-2,1,3,1],[1,3,3,2]] det=102 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[-3,-3,-3,-3],[-2,1,3,1],[1,3,3,2]] det=18 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[2,2,-3,3],[-3,-3,3,2],[1,3,3,2]] det=-332 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[2,-1,1,-2],[-3,-3,3,2],[1,3,3,2]] det=194 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[3,3,1,-3],[-3,-3,3,2],[1,3,3,2]] det=250 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[-3,-3,-3,-3],[-3,-3,3,2],[1,3,3,2]] det=54 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[2,2,-3,3],[-2,1,3,1],[-2,3,2,-2]] det=-78 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[2,-1,1,-2],[-2,1,3,1],[-2,3,2,-2]] det=5 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[3,3,1,-3],[-2,1,3,1],[-2,3,2,-2]] det=-55 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[-3,-3,-3,-3],[-2,1,3,1],[-2,3,2,-2]] det=111 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[2,2,-3,3],[-3,-3,3,2],[-2,3,2,-2]] det=-30 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[2,-1,1,-2],[-3,-3,3,2],[-2,3,2,-2]] det=-65 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[3,3,1,-3],[-3,-3,3,2],[-2,3,2,-2]] det=-125 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[-3,-3,-3,-3],[-3,-3,3,2],[-2,3,2,-2]] det=285 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[2,2,-3,3],[-2,1,3,1],[-3,-1,2,-1]] det=30 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[2,-1,1,-2],[-2,1,3,1],[-3,-1,2,-1]] det=-35 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[3,3,1,-3],[-2,1,3,1],[-3,-1,2,-1]] det=-95 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[-3,-3,-3,-3],[-2,1,3,1],[-3,-1,2,-1]] det=15 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[2,2,-3,3],[-3,-3,3,2],[-3,-1,2,-1]] det=78 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[2,-1,1,-2],[-3,-3,3,2],[-3,-1,2,-1]] det=-105 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[3,3,1,-3],[-3,-3,3,2],[-3,-1,2,-1]] det=-165 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-2,-1],[-3,-3,-3,-3],[-3,-3,3,2],[-3,-1,2,-1]] det=189 [29,-11,-27,-15] [178,72,-165,-115] chain1 [[3,-2,-1,-3],[1,1,3,3],[-1,2,2,3],[-1,1,2,1]] det=10 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-1,2,1,2],[-1,2,2,3],[-1,1,2,1]] det=-7 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-2,1,2,-1],[-1,2,2,3],[-1,1,2,1]] det=-9 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-2,-2,1,3],[-1,2,2,3],[-1,1,2,1]] det=39 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-3,3,-1,1],[-1,2,2,3],[-1,1,2,1]] det=-24 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[1,1,3,3],[-3,-3,3,1],[-1,1,2,1]] det=-98 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-1,2,1,2],[-3,-3,3,1],[-1,1,2,1]] det=-15 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-2,1,2,-1],[-3,-3,3,1],[-1,1,2,1]] det=75 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-2,-2,1,3],[-3,-3,3,1],[-1,1,2,1]] det=-61 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-3,3,-1,1],[-3,-3,3,1],[-1,1,2,1]] det=68 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[1,1,3,3],[-1,2,2,3],[-2,3,-1,3]] det=-15 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-1,2,1,2],[-1,2,2,3],[-2,3,-1,3]] det=9 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-2,1,2,-1],[-1,2,2,3],[-2,3,-1,3]] det=48 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-2,-2,1,3],[-1,2,2,3],[-2,3,-1,3]] det=-63 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-3,3,-1,1],[-1,2,2,3],[-2,3,-1,3]] det=33 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[1,1,3,3],[-3,-3,3,1],[-2,3,-1,3]] det=70 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-1,2,1,2],[-3,-3,3,1],[-2,3,-1,3]] det=13 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-2,1,2,-1],[-3,-3,3,1],[-2,3,-1,3]] det=-37 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-2,-2,1,3],[-3,-3,3,1],[-2,3,-1,3]] det=30 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-3,3,-1,1],[-3,-3,3,1],[-2,3,-1,3]] det=-44 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[1,1,3,3],[-1,2,2,3],[-2,-3,2,2]] det=8 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-1,2,1,2],[-1,2,2,3],[-2,-3,2,2]] det=-1 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-2,1,2,-1],[-1,2,2,3],[-2,-3,2,2]] det=-113 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-2,-2,1,3],[-1,2,2,3],[-2,-3,2,2]] det=45 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-3,3,-1,1],[-1,2,2,3],[-2,-3,2,2]] det=-10 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[1,1,3,3],[-3,-3,3,1],[-2,-3,2,2]] det=124 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-1,2,1,2],[-3,-3,3,1],[-2,-3,2,2]] det=34 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-2,1,2,-1],[-3,-3,3,1],[-2,-3,2,2]] det=14 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-2,-2,1,3],[-3,-3,3,1],[-2,-3,2,2]] det=-12 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-2,-1,-3],[-3,3,-1,1],[-3,-3,3,1],[-2,-3,2,2]] det=-56 [29,-11,-27,-15] [181,-108,-150,-109] chain1 [[3,-3,-3,1],[1,1,3,-3],[-3,1,2,1],[-2,-3,3,1]] det=-32 [29,-11,-27,-15] [186,-18,-167,-121] chain1 [[3,-3,-3,1],[1,-2,2,1],[-3,1,2,1],[-2,-3,3,1]] det=-63 [29,-11,-27,-15] [186,-18,-167,-121] chain1 [[3,-3,-3,1],[3,3,1,3],[-3,1,2,1],[-2,-3,3,1]] det=-188 [29,-11,-27,-15] [186,-18,-167,-121] chain1 [[3,-3,-3,1],[-2,1,-3,2],[-3,1,2,1],[-2,-3,3,1]] det=55 [29,-11,-27,-15] [186,-18,-167,-121] chain1 [[3,-3,-3,1],[-2,-2,1,-3],[-3,1,2,1],[-2,-3,3,1]] det=113 [29,-11,-27,-15] [186,-18,-167,-121] chain1 [[3,-3,-3,1],[-3,-3,-3,3],[-3,1,2,1],[-2,-3,3,1]] det=102 [29,-11,-27,-15] [186,-18,-167,-121] chain1 [[3,-3,-3,1],[1,1,3,-3],[-3,1,2,1],[-3,2,1,-1]] det=-30 [29,-11,-27,-15] [186,-18,-167,-121] chain1 [[3,-3,-3,1],[1,-2,2,1],[-3,1,2,1],[-3,2,1,-1]] det=-24 [29,-11,-27,-15] [186,-18,-167,-121] chain1 [[3,-3,-3,1],[3,3,1,3],[-3,1,2,1],[-3,2,1,-1]] det=66 [29,-11,-27,-15] [186,-18,-167,-121] chain1 [[3,-3,-3,1],[-2,1,-3,2],[-3,1,2,1],[-3,2,1,-1]] det=42 [29,-11,-27,-15] [186,-18,-167,-121] chain1 [[3,-3,-3,1],[-2,-2,1,-3],[-3,1,2,1],[-3,2,1,-1]] det=-63 [29,-11,-27,-15] [186,-18,-167,-121] chain1 [[3,-3,-3,1],[-3,-3,-3,3],[-3,1,2,1],[-3,2,1,-1]] det=0 [29,-11,-27,-15] [186,-18,-167,-121] chain1 [[2,-3,-2,-3],[1,-1,3,1],[-2,3,1,3],[-1,-2,3,3]] det=-19 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[-2,2,-2,2],[-2,3,1,3],[-1,-2,3,3]] det=10 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[-2,-1,2,-3],[-2,3,1,3],[-1,-2,3,3]] det=54 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[-3,1,-1,-1],[-2,3,1,3],[-1,-2,3,3]] det=49 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[-3,-2,-2,3],[-2,3,1,3],[-1,-2,3,3]] det=30 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[1,-1,3,1],[-2,3,1,3],[-2,3,1,1]] det=2 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[-2,2,-2,2],[-2,3,1,3],[-2,3,1,1]] det=-4 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[-2,-1,2,-3],[-2,3,1,3],[-2,3,1,1]] det=-16 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[-3,1,-1,-1],[-2,3,1,3],[-2,3,1,1]] det=-14 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[-3,-2,-2,3],[-2,3,1,3],[-2,3,1,1]] det=-26 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[1,-1,3,1],[-2,3,1,3],[-3,2,2,-2]] det=-6 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[-2,2,-2,2],[-2,3,1,3],[-3,2,2,-2]] det=-8 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[-2,-1,2,-3],[-2,3,1,3],[-3,2,2,-2]] det=-22 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[-3,1,-1,-1],[-2,3,1,3],[-3,2,2,-2]] det=-18 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[-3,-2,-2,3],[-2,3,1,3],[-3,2,2,-2]] det=-77 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[1,-1,3,1],[-2,3,1,3],[-3,-1,1,2]] det=-25 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[-2,2,-2,2],[-2,3,1,3],[-3,-1,1,2]] det=6 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[-2,-1,2,-3],[-2,3,1,3],[-3,-1,1,2]] det=46 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[-3,1,-1,-1],[-2,3,1,3],[-3,-1,1,2]] det=43 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-3,-2,-3],[-3,-2,-2,3],[-2,3,1,3],[-3,-1,1,2]] det=-16 [29,-11,-27,-15] [190,-56,-163,-133] chain1 [[2,-2,-3,-2],[1,1,1,2],[-3,3,3,-3],[-1,3,2,2]] det=-36 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[3,2,-3,-3],[1,1,1,2],[-3,3,3,-3],[-1,3,2,2]] det=-111 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[2,-2,-3,-2],[-1,2,-1,1],[-3,3,3,-3],[-1,3,2,2]] det=63 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[3,2,-3,-3],[-1,2,-1,1],[-3,3,3,-3],[-1,3,2,2]] det=210 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[2,-2,-3,-2],[-2,-2,-1,2],[-3,3,3,-3],[-1,3,2,2]] det=84 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[3,2,-3,-3],[-2,-2,-1,2],[-3,3,3,-3],[-1,3,2,2]] det=231 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[2,-2,-3,-2],[1,1,1,2],[-3,3,3,-3],[-2,2,3,-1]] det=18 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[3,2,-3,-3],[1,1,1,2],[-3,3,3,-3],[-2,2,3,-1]] det=21 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[2,-2,-3,-2],[-1,2,-1,1],[-3,3,3,-3],[-2,2,3,-1]] det=9 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[3,2,-3,-3],[-1,2,-1,1],[-3,3,3,-3],[-2,2,3,-1]] det=78 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[2,-2,-3,-2],[-2,-2,-1,2],[-3,3,3,-3],[-2,2,3,-1]] det=-36 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[3,2,-3,-3],[-2,-2,-1,2],[-3,3,3,-3],[-2,2,3,-1]] det=33 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[2,-2,-3,-2],[1,1,1,2],[-3,3,3,-3],[-2,-1,2,3]] det=33 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[3,2,-3,-3],[1,1,1,2],[-3,3,3,-3],[-2,-1,2,3]] det=-42 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[2,-2,-3,-2],[-1,2,-1,1],[-3,3,3,-3],[-2,-1,2,3]] det=-105 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[3,2,-3,-3],[-1,2,-1,1],[-3,3,3,-3],[-2,-1,2,3]] det=42 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[2,-2,-3,-2],[-2,-2,-1,2],[-3,3,3,-3],[-2,-1,2,3]] det=-84 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[3,2,-3,-3],[-2,-2,-1,2],[-3,3,3,-3],[-2,-1,2,3]] det=63 [29,-11,-27,-15] [191,-39,-156,-146] chain1 [[3,-3,-1,-3],[1,-2,-1,-1],[-1,1,3,3],[-2,2,2,1]] det=16 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[2,2,-1,-2],[-1,1,3,3],[-2,2,2,1]] det=-64 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[2,-1,-2,2],[-1,1,3,3],[-2,2,2,1]] det=-16 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[3,3,-2,1],[-1,1,3,3],[-2,2,2,1]] det=-96 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[-1,-1,-3,-2],[-1,1,3,3],[-2,2,2,1]] det=32 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[1,-2,-1,-1],[-3,2,1,2],[-2,2,2,1]] det=-2 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[2,2,-1,-2],[-3,2,1,2],[-2,2,2,1]] det=17 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[2,-1,-2,2],[-3,2,1,2],[-2,2,2,1]] det=-8 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[3,3,-2,1],[-3,2,1,2],[-2,2,2,1]] det=11 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[-1,-1,-3,-2],[-3,2,1,2],[-2,2,2,1]] det=14 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[1,-2,-1,-1],[-1,1,3,3],[-3,1,3,-2]] det=60 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[2,2,-1,-2],[-1,1,3,3],[-3,1,3,-2]] det=-204 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[2,-1,-2,2],[-1,1,3,3],[-3,1,3,-2]] det=28 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[3,3,-2,1],[-1,1,3,3],[-3,1,3,-2]] det=-236 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[-1,-1,-3,-2],[-1,1,3,3],[-3,1,3,-2]] det=96 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[1,-2,-1,-1],[-3,2,1,2],[-3,1,3,-2]] det=0 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[2,2,-1,-2],[-3,2,1,2],[-3,1,3,-2]] det=27 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[2,-1,-2,2],[-3,2,1,2],[-3,1,3,-2]] det=-6 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[3,3,-2,1],[-3,2,1,2],[-3,1,3,-2]] det=21 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[-1,-1,-3,-2],[-3,2,1,2],[-3,1,3,-2]] det=36 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[1,-2,-1,-1],[-1,1,3,3],[-3,-2,2,2]] det=34 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[2,2,-1,-2],[-1,1,3,3],[-3,-2,2,2]] det=-46 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[2,-1,-2,2],[-1,1,3,3],[-3,-2,2,2]] det=186 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[3,3,-2,1],[-1,1,3,3],[-3,-2,2,2]] det=106 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[-1,-1,-3,-2],[-1,1,3,3],[-3,-2,2,2]] det=8 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[1,-2,-1,-1],[-3,2,1,2],[-3,-2,2,2]] det=-11 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[2,2,-1,-2],[-3,2,1,2],[-3,-2,2,2]] det=8 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[2,-1,-2,2],[-3,2,1,2],[-3,-2,2,2]] det=-25 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[3,3,-2,1],[-3,2,1,2],[-3,-2,2,2]] det=-6 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-3,-1,-3],[-1,-1,-3,-2],[-3,2,1,2],[-3,-2,2,2]] det=-37 [29,-11,-27,-15] [192,93,-166,-149] chain1 [[3,-2,-2,-2],[2,1,1,3],[-2,3,2,3],[-1,-3,1,3]] det=-24 [29,-11,-27,-15] [193,-25,-190,-68] chain1 [[3,-2,-2,-2],[-1,-2,-1,3],[-2,3,2,3],[-1,-3,1,3]] det=63 [29,-11,-27,-15] [193,-25,-190,-68] chain1 [[3,-2,-2,-2],[-2,3,-3,1],[-2,3,2,3],[-1,-3,1,3]] det=132 [29,-11,-27,-15] [193,-25,-190,-68] chain1 [[3,-2,-2,-2],[-3,2,-2,-2],[-2,3,2,3],[-1,-3,1,3]] det=84 [29,-11,-27,-15] [193,-25,-190,-68] chain1 [[3,-2,-2,-2],[-3,-1,-3,2],[-2,3,2,3],[-1,-3,1,3]] det=141 [29,-11,-27,-15] [193,-25,-190,-68] chain1 [[3,-2,-2,-2],[2,1,1,3],[-2,3,2,3],[-2,2,-1,1]] det=-19 [29,-11,-27,-15] [193,-25,-190,-68] chain1 [[3,-2,-2,-2],[-1,-2,-1,3],[-2,3,2,3],[-2,2,-1,1]] det=-68 [29,-11,-27,-15] [193,-25,-190,-68] chain1 [[3,-2,-2,-2],[-2,3,-3,1],[-2,3,2,3],[-2,2,-1,1]] det=1 [29,-11,-27,-15] [193,-25,-190,-68] chain1 [[3,-2,-2,-2],[-3,2,-2,-2],[-2,3,2,3],[-2,2,-1,1]] det=32 [29,-11,-27,-15] [193,-25,-190,-68] chain1 [[3,-2,-2,-2],[-3,-1,-3,2],[-2,3,2,3],[-2,2,-1,1]] det=-58 [29,-11,-27,-15] [193,-25,-190,-68] chain1 [[3,-2,-2,-2],[2,1,1,3],[-2,3,2,3],[-3,-2,-1,2]] det=-42 [29,-11,-27,-15] [193,-25,-190,-68] chain1 [[3,-2,-2,-2],[-1,-2,-1,3],[-2,3,2,3],[-3,-2,-1,2]] det=-23 [29,-11,-27,-15] [193,-25,-190,-68] chain1 [[3,-2,-2,-2],[-2,3,-3,1],[-2,3,2,3],[-3,-2,-1,2]] det=114 [29,-11,-27,-15] [193,-25,-190,-68] chain1 [[3,-2,-2,-2],[-3,2,-2,-2],[-2,3,2,3],[-3,-2,-1,2]] det=108 [29,-11,-27,-15] [193,-25,-190,-68] chain1 [[3,-2,-2,-2],[-3,-1,-3,2],[-2,3,2,3],[-3,-2,-1,2]] det=55 [29,-11,-27,-15] [193,-25,-190,-68] chain1 [[2,-3,-3,-2],[1,3,1,3],[-3,3,3,-2],[-2,1,1,3]] det=-46 [29,-11,-27,-15] [202,-76,-171,-141] chain1 [[3,1,-3,-3],[1,3,1,3],[-3,3,3,-2],[-2,1,1,3]] det=-162 [29,-11,-27,-15] [202,-76,-171,-141] chain1 [[2,-3,-3,-2],[-1,1,3,-3],[-3,3,3,-2],[-2,1,1,3]] det=46 [29,-11,-27,-15] [202,-76,-171,-141] chain1 [[3,1,-3,-3],[-1,1,3,-3],[-3,3,3,-2],[-2,1,1,3]] det=-46 [29,-11,-27,-15] [202,-76,-171,-141] chain1 [[2,-3,-3,-2],[-1,-2,2,1],[-3,3,3,-2],[-2,1,1,3]] det=92 [29,-11,-27,-15] [202,-76,-171,-141] chain1 [[3,1,-3,-3],[-1,-2,2,1],[-3,3,3,-2],[-2,1,1,3]] det=-12 [29,-11,-27,-15] [202,-76,-171,-141] chain1 [[2,-3,-3,-2],[-2,-3,3,-2],[-3,3,3,-2],[-2,1,1,3]] det=138 [29,-11,-27,-15] [202,-76,-171,-141] chain1 [[3,1,-3,-3],[-2,-3,3,-2],[-3,3,3,-2],[-2,1,1,3]] det=46 [29,-11,-27,-15] [202,-76,-171,-141] chain1 [[1,1,-3,1],[2,2,2,1],[1,-3,3,3],[2,3,3,2]] det=58 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[2,2,2,1],[1,-3,3,3],[2,3,3,2]] det=15 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[2,2,2,1],[1,-3,3,3],[2,3,3,2]] det=86 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[2,2,2,1],[1,-3,3,3],[2,3,3,2]] det=-28 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-1,2,-2,3],[1,-3,3,3],[2,3,3,2]] det=-232 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-1,2,-2,3],[1,-3,3,3],[2,3,3,2]] det=-196 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-1,2,-2,3],[1,-3,3,3],[2,3,3,2]] det=-362 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-1,2,-2,3],[1,-3,3,3],[2,3,3,2]] det=-160 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-2,-2,-1,-2],[1,-3,3,3],[2,3,3,2]] det=-14 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-2,-2,-1,-2],[1,-3,3,3],[2,3,3,2]] det=55 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-2,-2,-1,-2],[1,-3,3,3],[2,3,3,2]] det=-13 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-2,-2,-1,-2],[1,-3,3,3],[2,3,3,2]] det=124 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[2,2,2,1],[-1,1,3,-1],[2,3,3,2]] det=-18 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[2,2,2,1],[-1,1,3,-1],[2,3,3,2]] det=-23 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[2,2,2,1],[-1,1,3,-1],[2,3,3,2]] det=10 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[2,2,2,1],[-1,1,3,-1],[2,3,3,2]] det=-28 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-1,2,-2,3],[-1,1,3,-1],[2,3,3,2]] det=72 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-1,2,-2,3],[-1,1,3,-1],[2,3,3,2]] det=146 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-1,2,-2,3],[-1,1,3,-1],[2,3,3,2]] det=-58 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-1,2,-2,3],[-1,1,3,-1],[2,3,3,2]] det=220 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-2,-2,-1,-2],[-1,1,3,-1],[2,3,3,2]] det=0 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-2,-2,-1,-2],[-1,1,3,-1],[2,3,3,2]] det=-3 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-2,-2,-1,-2],[-1,1,3,-1],[2,3,3,2]] det=1 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-2,-2,-1,-2],[-1,1,3,-1],[2,3,3,2]] det=-6 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[2,2,2,1],[-1,-2,1,3],[2,3,3,2]] det=39 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[2,2,2,1],[-1,-2,1,3],[2,3,3,2]] det=15 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[2,2,2,1],[-1,-2,1,3],[2,3,3,2]] det=48 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[2,2,2,1],[-1,-2,1,3],[2,3,3,2]] det=-9 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-1,2,-2,3],[-1,-2,1,3],[2,3,3,2]] det=-156 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-1,2,-2,3],[-1,-2,1,3],[2,3,3,2]] det=-101 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-1,2,-2,3],[-1,-2,1,3],[2,3,3,2]] det=-305 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-1,2,-2,3],[-1,-2,1,3],[2,3,3,2]] det=-46 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-2,-2,-1,-2],[-1,-2,1,3],[2,3,3,2]] det=-28 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-2,-2,-1,-2],[-1,-2,1,3],[2,3,3,2]] det=5 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-2,-2,-1,-2],[-1,-2,1,3],[2,3,3,2]] det=9 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-2,-2,-1,-2],[-1,-2,1,3],[2,3,3,2]] det=38 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[2,2,2,1],[-2,3,3,-3],[2,3,3,2]] det=-56 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[2,2,2,1],[-2,3,3,-3],[2,3,3,2]] det=-42 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[2,2,2,1],[-2,3,3,-3],[2,3,3,2]] det=-28 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[2,2,2,1],[-2,3,3,-3],[2,3,3,2]] det=-28 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-1,2,-2,3],[-2,3,3,-3],[2,3,3,2]] det=224 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-1,2,-2,3],[-2,3,3,-3],[2,3,3,2]] det=317 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-1,2,-2,3],[-2,3,3,-3],[2,3,3,2]] det=94 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-1,2,-2,3],[-2,3,3,-3],[2,3,3,2]] det=410 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-2,-2,-1,-2],[-2,3,3,-3],[2,3,3,2]] det=7 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-2,-2,-1,-2],[-2,3,3,-3],[2,3,3,2]] det=-32 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-2,-2,-1,-2],[-2,3,3,-3],[2,3,3,2]] det=8 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-2,-2,-1,-2],[-2,3,3,-3],[2,3,3,2]] det=-71 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[2,2,2,1],[-3,2,1,-1],[2,3,3,2]] det=-37 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[2,2,2,1],[-3,2,1,-1],[2,3,3,2]] det=-23 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[2,2,2,1],[-3,2,1,-1],[2,3,3,2]] det=-28 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[2,2,2,1],[-3,2,1,-1],[2,3,3,2]] det=-9 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-1,2,-2,3],[-3,2,1,-1],[2,3,3,2]] det=148 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-1,2,-2,3],[-3,2,1,-1],[2,3,3,2]] det=241 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-1,2,-2,3],[-3,2,1,-1],[2,3,3,2]] det=-1 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-1,2,-2,3],[-3,2,1,-1],[2,3,3,2]] det=334 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-2,-2,-1,-2],[-3,2,1,-1],[2,3,3,2]] det=-14 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-2,-2,-1,-2],[-3,2,1,-1],[2,3,3,2]] det=-53 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-2,-2,-1,-2],[-3,2,1,-1],[2,3,3,2]] det=23 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-2,-2,-1,-2],[-3,2,1,-1],[2,3,3,2]] det=-92 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[2,2,2,1],[-3,-1,-1,3],[2,3,3,2]] det=20 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[2,2,2,1],[-3,-1,-1,3],[2,3,3,2]] det=15 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[2,2,2,1],[-3,-1,-1,3],[2,3,3,2]] det=10 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[2,2,2,1],[-3,-1,-1,3],[2,3,3,2]] det=10 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-1,2,-2,3],[-3,-1,-1,3],[2,3,3,2]] det=-80 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-1,2,-2,3],[-3,-1,-1,3],[2,3,3,2]] det=-6 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-1,2,-2,3],[-3,-1,-1,3],[2,3,3,2]] det=-248 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-1,2,-2,3],[-3,-1,-1,3],[2,3,3,2]] det=68 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-2,-2,-1,-2],[-3,-1,-1,3],[2,3,3,2]] det=-42 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-2,-2,-1,-2],[-3,-1,-1,3],[2,3,3,2]] det=-45 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-2,-2,-1,-2],[-3,-1,-1,3],[2,3,3,2]] det=31 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-2,-2,-1,-2],[-3,-1,-1,3],[2,3,3,2]] det=-48 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[2,2,2,1],[1,-3,3,3],[-3,-2,-2,1]] det=106 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[2,2,2,1],[1,-3,3,3],[-3,-2,-2,1]] det=51 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[2,2,2,1],[1,-3,3,3],[-3,-2,-2,1]] det=164 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[2,2,2,1],[1,-3,3,3],[-3,-2,-2,1]] det=-4 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-1,2,-2,3],[1,-3,3,3],[-3,-2,-2,1]] det=200 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-1,2,-2,3],[1,-3,3,3],[-3,-2,-2,1]] det=108 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-1,2,-2,3],[1,-3,3,3],[-3,-2,-2,1]] det=332 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-1,2,-2,3],[1,-3,3,3],[-3,-2,-2,1]] det=16 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-2,-2,-1,-2],[1,-3,3,3],[-3,-2,-2,1]] det=-126 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-2,-2,-1,-2],[1,-3,3,3],[-3,-2,-2,1]] det=-69 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-2,-2,-1,-2],[1,-3,3,3],[-3,-2,-2,1]] det=-211 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-2,-2,-1,-2],[1,-3,3,3],[-3,-2,-2,1]] det=-12 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[2,2,2,1],[-1,1,3,-1],[-3,-2,-2,1]] det=-42 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[2,2,2,1],[-1,1,3,-1],[-3,-2,-2,1]] det=-41 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[2,2,2,1],[-1,1,3,-1],[-3,-2,-2,1]] det=16 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[2,2,2,1],[-1,1,3,-1],[-3,-2,-2,1]] det=-40 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-1,2,-2,3],[-1,1,3,-1],[-3,-2,-2,1]] det=-48 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-1,2,-2,3],[-1,1,3,-1],[-3,-2,-2,1]] det=-84 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-1,2,-2,3],[-1,1,3,-1],[-3,-2,-2,1]] det=84 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-1,2,-2,3],[-1,1,3,-1],[-3,-2,-2,1]] det=-120 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-2,-2,-1,-2],[-1,1,3,-1],[-3,-2,-2,1]] det=56 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-2,-2,-1,-2],[-1,1,3,-1],[-3,-2,-2,1]] det=59 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-2,-2,-1,-2],[-1,1,3,-1],[-3,-2,-2,1]] det=-29 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-2,-2,-1,-2],[-1,1,3,-1],[-3,-2,-2,1]] det=62 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[2,2,2,1],[-1,-2,1,3],[-3,-2,-2,1]] det=51 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[2,2,2,1],[-1,-2,1,3],[-3,-2,-2,1]] det=24 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[2,2,2,1],[-1,-2,1,3],[-3,-2,-2,1]] det=81 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[2,2,2,1],[-1,-2,1,3],[-3,-2,-2,1]] det=-3 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-1,2,-2,3],[-1,-2,1,3],[-3,-2,-2,1]] det=120 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-1,2,-2,3],[-1,-2,1,3],[-3,-2,-2,1]] det=56 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-1,2,-2,3],[-1,-2,1,3],[-3,-2,-2,1]] det=224 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-1,2,-2,3],[-1,-2,1,3],[-3,-2,-2,1]] det=-8 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-2,-2,-1,-2],[-1,-2,1,3],[-3,-2,-2,1]] det=-56 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-2,-2,-1,-2],[-1,-2,1,3],[-3,-2,-2,1]] det=-26 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-2,-2,-1,-2],[-1,-2,1,3],[-3,-2,-2,1]] det=-114 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-2,-2,-1,-2],[-1,-2,1,3],[-3,-2,-2,1]] det=4 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[2,2,2,1],[-2,3,3,-3],[-3,-2,-2,1]] det=-116 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[2,2,2,1],[-2,3,3,-3],[-3,-2,-2,1]] det=-87 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[2,2,2,1],[-2,3,3,-3],[-3,-2,-2,1]] det=-58 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[2,2,2,1],[-2,3,3,-3],[-3,-2,-2,1]] det=-58 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-1,2,-2,3],[-2,3,3,-3],[-3,-2,-2,1]] det=-172 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-1,2,-2,3],[-2,3,3,-3],[-3,-2,-2,1]] det=-180 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-1,2,-2,3],[-2,3,3,-3],[-3,-2,-2,1]] det=-40 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-1,2,-2,3],[-2,3,3,-3],[-3,-2,-2,1]] det=-188 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-2,-2,-1,-2],[-2,3,3,-3],[-3,-2,-2,1]] det=147 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-2,-2,-1,-2],[-2,3,3,-3],[-3,-2,-2,1]] det=123 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-2,-2,-1,-2],[-2,3,3,-3],[-3,-2,-2,1]] det=62 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-2,-2,-1,-2],[-2,3,3,-3],[-3,-2,-2,1]] det=99 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[2,2,2,1],[-3,2,1,-1],[-3,-2,-2,1]] det=-97 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[2,2,2,1],[-3,2,1,-1],[-3,-2,-2,1]] det=-68 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[2,2,2,1],[-3,2,1,-1],[-3,-2,-2,1]] det=-67 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[2,2,2,1],[-3,2,1,-1],[-3,-2,-2,1]] det=-39 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-1,2,-2,3],[-3,2,1,-1],[-3,-2,-2,1]] det=-128 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-1,2,-2,3],[-3,2,1,-1],[-3,-2,-2,1]] det=-136 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-1,2,-2,3],[-3,2,1,-1],[-3,-2,-2,1]] det=-24 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-1,2,-2,3],[-3,2,1,-1],[-3,-2,-2,1]] det=-144 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-2,-2,-1,-2],[-3,2,1,-1],[-3,-2,-2,1]] det=126 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-2,-2,-1,-2],[-3,2,1,-1],[-3,-2,-2,1]] det=102 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-2,-2,-1,-2],[-3,2,1,-1],[-3,-2,-2,1]] det=68 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-2,-2,-1,-2],[-3,2,1,-1],[-3,-2,-2,1]] det=78 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[2,2,2,1],[-3,-1,-1,3],[-3,-2,-2,1]] det=-4 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[2,2,2,1],[-3,-1,-1,3],[-3,-2,-2,1]] det=-3 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[2,2,2,1],[-3,-1,-1,3],[-3,-2,-2,1]] det=-2 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[2,2,2,1],[-3,-1,-1,3],[-3,-2,-2,1]] det=-2 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-1,2,-2,3],[-3,-1,-1,3],[-3,-2,-2,1]] det=40 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-1,2,-2,3],[-3,-1,-1,3],[-3,-2,-2,1]] det=4 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-1,2,-2,3],[-3,-1,-1,3],[-3,-2,-2,1]] det=116 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-1,2,-2,3],[-3,-1,-1,3],[-3,-2,-2,1]] det=-32 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[1,1,-3,1],[-2,-2,-1,-2],[-3,-1,-1,3],[-3,-2,-2,1]] det=14 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-1,-1],[-2,-2,-1,-2],[-3,-1,-1,3],[-3,-2,-2,1]] det=17 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,-1,-3,3],[-2,-2,-1,-2],[-3,-1,-1,3],[-3,-2,-2,1]] det=-17 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[3,3,1,-3],[-2,-2,-1,-2],[-3,-1,-1,3],[-3,-2,-2,1]] det=20 [34,2,-33,-15] [120,-9,-116,-55] chain1 [[2,2,-2,1],[1,3,3,-1],[-1,-3,1,3],[1,-2,2,1]] det=-100 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[2,1,3,1],[-1,-3,1,3],[1,-2,2,1]] det=-74 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[3,-1,3,3],[-1,-3,1,3],[1,-2,2,1]] det=-48 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-1,1,-1,3],[-1,-3,1,3],[1,-2,2,1]] det=-46 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-2,3,-1,1],[-1,-3,1,3],[1,-2,2,1]] det=-72 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-3,2,-3,3],[-1,-3,1,3],[1,-2,2,1]] det=-45 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[1,3,3,-1],[-2,2,3,-3],[1,-2,2,1]] det=13 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[2,1,3,1],[-2,2,3,-3],[1,-2,2,1]] det=27 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[3,-1,3,3],[-2,2,3,-3],[1,-2,2,1]] det=41 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-1,1,-1,3],[-2,2,3,-3],[1,-2,2,1]] det=115 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-2,3,-1,1],[-2,2,3,-3],[1,-2,2,1]] det=101 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-3,2,-3,3],[-2,2,3,-3],[1,-2,2,1]] det=152 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[1,3,3,-1],[-2,-1,1,1],[1,-2,2,1]] det=-78 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[2,1,3,1],[-2,-1,1,1],[1,-2,2,1]] det=-52 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[3,-1,3,3],[-2,-1,1,1],[1,-2,2,1]] det=-26 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-1,1,-1,3],[-2,-1,1,1],[1,-2,2,1]] det=0 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-2,3,-1,1],[-2,-1,1,1],[1,-2,2,1]] det=-26 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-3,2,-3,3],[-2,-1,1,1],[1,-2,2,1]] det=13 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[1,3,3,-1],[-3,1,1,-1],[1,-2,2,1]] det=-56 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[2,1,3,1],[-3,1,1,-1],[1,-2,2,1]] det=-30 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[3,-1,3,3],[-3,1,1,-1],[1,-2,2,1]] det=-4 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-1,1,-1,3],[-3,1,1,-1],[1,-2,2,1]] det=46 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-2,3,-1,1],[-3,1,1,-1],[1,-2,2,1]] det=20 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-3,2,-3,3],[-3,1,1,-1],[1,-2,2,1]] det=71 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[1,3,3,-1],[-3,-2,-1,3],[1,-2,2,1]] det=-147 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[2,1,3,1],[-3,-2,-1,3],[1,-2,2,1]] det=-109 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[3,-1,3,3],[-3,-2,-1,3],[1,-2,2,1]] det=-71 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-1,1,-1,3],[-3,-2,-1,3],[1,-2,2,1]] det=-69 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-2,3,-1,1],[-3,-2,-1,3],[1,-2,2,1]] det=-107 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-3,2,-3,3],[-3,-2,-1,3],[1,-2,2,1]] det=-68 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[1,3,3,-1],[-1,-3,1,3],[-1,2,2,-3]] det=36 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[2,1,3,1],[-1,-3,1,3],[-1,2,2,-3]] det=62 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[3,-1,3,3],[-1,-3,1,3],[-1,2,2,-3]] det=88 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-1,1,-1,3],[-1,-3,1,3],[-1,2,2,-3]] det=-50 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-2,3,-1,1],[-1,-3,1,3],[-1,2,2,-3]] det=-76 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-3,2,-3,3],[-1,-3,1,3],[-1,2,2,-3]] det=-119 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[1,3,3,-1],[-2,2,3,-3],[-1,2,2,-3]] det=27 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[2,1,3,1],[-2,2,3,-3],[-1,2,2,-3]] det=41 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[3,-1,3,3],[-2,2,3,-3],[-1,2,2,-3]] det=55 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-1,1,-1,3],[-2,2,3,-3],[-1,2,2,-3]] det=-11 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-2,3,-1,1],[-2,2,3,-3],[-1,2,2,-3]] det=-25 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-3,2,-3,3],[-2,2,3,-3],[-1,2,2,-3]] det=-44 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[1,3,3,-1],[-2,-1,1,1],[-1,2,2,-3]] det=58 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[2,1,3,1],[-2,-1,1,1],[-1,2,2,-3]] det=84 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[3,-1,3,3],[-2,-1,1,1],[-1,2,2,-3]] det=110 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-1,1,-1,3],[-2,-1,1,1],[-1,2,2,-3]] det=-4 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-2,3,-1,1],[-2,-1,1,1],[-1,2,2,-3]] det=-30 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-3,2,-3,3],[-2,-1,1,1],[-1,2,2,-3]] det=-61 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[1,3,3,-1],[-3,1,1,-1],[-1,2,2,-3]] det=80 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[2,1,3,1],[-3,1,1,-1],[-1,2,2,-3]] det=106 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[3,-1,3,3],[-3,1,1,-1],[-1,2,2,-3]] det=132 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-1,1,-1,3],[-3,1,1,-1],[-1,2,2,-3]] det=42 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-2,3,-1,1],[-3,1,1,-1],[-1,2,2,-3]] det=16 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-3,2,-3,3],[-3,1,1,-1],[-1,2,2,-3]] det=-3 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[1,3,3,-1],[-3,-2,-1,3],[-1,2,2,-3]] det=111 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[2,1,3,1],[-3,-2,-1,3],[-1,2,2,-3]] det=149 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[3,-1,3,3],[-3,-2,-1,3],[-1,2,2,-3]] det=187 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-1,1,-1,3],[-3,-2,-1,3],[-1,2,2,-3]] det=49 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-2,3,-1,1],[-3,-2,-1,3],[-1,2,2,-3]] det=11 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-3,2,-3,3],[-3,-2,-1,3],[-1,2,2,-3]] det=-20 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[1,3,3,-1],[-1,-3,1,3],[-2,-2,-2,3]] det=96 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[2,1,3,1],[-1,-3,1,3],[-2,-2,-2,3]] det=52 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[3,-1,3,3],[-1,-3,1,3],[-2,-2,-2,3]] det=8 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-1,1,-1,3],[-1,-3,1,3],[-2,-2,-2,3]] det=80 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-2,3,-1,1],[-1,-3,1,3],[-2,-2,-2,3]] det=124 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-3,2,-3,3],[-1,-3,1,3],[-2,-2,-2,3]] det=116 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[1,3,3,-1],[-2,2,3,-3],[-2,-2,-2,3]] det=-96 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[2,1,3,1],[-2,2,3,-3],[-2,-2,-2,3]] det=-152 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[3,-1,3,3],[-2,2,3,-3],[-2,-2,-2,3]] det=-208 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-1,1,-1,3],[-2,2,3,-3],[-2,-2,-2,3]] det=-64 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-2,3,-1,1],[-2,2,3,-3],[-2,-2,-2,3]] det=-8 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-3,2,-3,3],[-2,2,3,-3],[-2,-2,-2,3]] det=8 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[1,3,3,-1],[-2,-1,1,1],[-2,-2,-2,3]] det=-4 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[2,1,3,1],[-2,-1,1,1],[-2,-2,-2,3]] det=-48 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[3,-1,3,3],[-2,-1,1,1],[-2,-2,-2,3]] det=-92 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-1,1,-1,3],[-2,-1,1,1],[-2,-2,-2,3]] det=4 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-2,3,-1,1],[-2,-1,1,1],[-2,-2,-2,3]] det=48 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-3,2,-3,3],[-2,-1,1,1],[-2,-2,-2,3]] det=52 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[1,3,3,-1],[-3,1,1,-1],[-2,-2,-2,3]] det=-104 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[2,1,3,1],[-3,1,1,-1],[-2,-2,-2,3]] det=-148 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[3,-1,3,3],[-3,1,1,-1],[-2,-2,-2,3]] det=-192 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-1,1,-1,3],[-3,1,1,-1],[-2,-2,-2,3]] det=-72 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-2,3,-1,1],[-3,1,1,-1],[-2,-2,-2,3]] det=-28 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-3,2,-3,3],[-3,1,1,-1],[-2,-2,-2,3]] det=-12 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[1,3,3,-1],[-3,-2,-1,3],[-2,-2,-2,3]] det=-12 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[2,1,3,1],[-3,-2,-1,3],[-2,-2,-2,3]] det=-44 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[3,-1,3,3],[-3,-2,-1,3],[-2,-2,-2,3]] det=-76 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-1,1,-1,3],[-3,-2,-1,3],[-2,-2,-2,3]] det=-4 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-2,3,-1,1],[-3,-2,-1,3],[-2,-2,-2,3]] det=28 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[2,2,-2,1],[-3,2,-3,3],[-3,-2,-1,3],[-2,-2,-2,3]] det=32 [34,2,-33,-15] [123,-44,-118,-51] chain1 [[1,1,-2,-3],[1,-1,3,-3],[-2,3,1,3],[1,1,2,3]] det=-138 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[1,-1,3,-3],[-2,3,1,3],[1,1,2,3]] det=-60 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[1,-1,3,-3],[-2,3,1,3],[1,1,2,3]] det=18 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[2,3,2,2],[-2,3,1,3],[1,1,2,3]] det=-26 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[2,3,2,2],[-2,3,1,3],[1,1,2,3]] det=-63 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[2,3,2,2],[-2,3,1,3],[1,1,2,3]] det=-100 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[2,-3,3,-1],[-2,3,1,3],[1,1,2,3]] det=-80 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[2,-3,3,-1],[-2,3,1,3],[1,1,2,3]] det=-2 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[2,-3,3,-1],[-2,3,1,3],[1,1,2,3]] det=76 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-1,-3,-1,1],[-2,3,1,3],[1,1,2,3]] det=62 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-1,-3,-1,1],[-2,3,1,3],[1,1,2,3]] det=90 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-1,-3,-1,1],[-2,3,1,3],[1,1,2,3]] det=118 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-2,-1,-1,-1],[-2,3,1,3],[1,1,2,3]] det=4 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-2,-1,-1,-1],[-2,3,1,3],[1,1,2,3]] det=32 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-2,-1,-1,-1],[-2,3,1,3],[1,1,2,3]] det=60 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-3,1,-1,-3],[-2,3,1,3],[1,1,2,3]] det=-54 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-3,1,-1,-3],[-2,3,1,3],[1,1,2,3]] det=-26 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-3,1,-1,-3],[-2,3,1,3],[1,1,2,3]] det=2 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-3,-2,-3,1],[-2,3,1,3],[1,1,2,3]] det=104 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-3,-2,-3,1],[-2,3,1,3],[1,1,2,3]] det=107 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-3,-2,-3,1],[-2,3,1,3],[1,1,2,3]] det=110 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[1,-1,3,-3],[-3,-1,2,-2],[1,1,2,3]] det=-100 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[1,-1,3,-3],[-3,-1,2,-2],[1,1,2,3]] det=51 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[1,-1,3,-3],[-3,-1,2,-2],[1,1,2,3]] det=202 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[2,3,2,2],[-3,-1,2,-2],[1,1,2,3]] det=12 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[2,3,2,2],[-3,-1,2,-2],[1,1,2,3]] det=48 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[2,3,2,2],[-3,-1,2,-2],[1,1,2,3]] det=84 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[2,-3,3,-1],[-3,-1,2,-2],[1,1,2,3]] det=-144 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[2,-3,3,-1],[-3,-1,2,-2],[1,1,2,3]] det=7 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[2,-3,3,-1],[-3,-1,2,-2],[1,1,2,3]] det=158 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-1,-3,-1,1],[-3,-1,2,-2],[1,1,2,3]] det=-20 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-1,-3,-1,1],[-3,-1,2,-2],[1,1,2,3]] det=-69 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-1,-3,-1,1],[-3,-1,2,-2],[1,1,2,3]] det=-118 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-2,-1,-1,-1],[-3,-1,2,-2],[1,1,2,3]] det=24 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-2,-1,-1,-1],[-3,-1,2,-2],[1,1,2,3]] det=-25 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-2,-1,-1,-1],[-3,-1,2,-2],[1,1,2,3]] det=-74 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-3,1,-1,-3],[-3,-1,2,-2],[1,1,2,3]] det=68 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-3,1,-1,-3],[-3,-1,2,-2],[1,1,2,3]] det=19 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-3,1,-1,-3],[-3,-1,2,-2],[1,1,2,3]] det=-30 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-3,-2,-3,1],[-3,-1,2,-2],[1,1,2,3]] det=64 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-3,-2,-3,1],[-3,-1,2,-2],[1,1,2,3]] det=-85 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-3,-2,-3,1],[-3,-1,2,-2],[1,1,2,3]] det=-234 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[1,-1,3,-3],[-2,3,1,3],[-2,-2,1,-2]] det=170 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[1,-1,3,-3],[-2,3,1,3],[-2,-2,1,-2]] det=20 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[1,-1,3,-3],[-2,3,1,3],[-2,-2,1,-2]] det=-130 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[2,3,2,2],[-2,3,1,3],[-2,-2,1,-2]] det=135 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[2,3,2,2],[-2,3,1,3],[-2,-2,1,-2]] det=10 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[2,3,2,2],[-2,3,1,3],[-2,-2,1,-2]] det=-115 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[2,-3,3,-1],[-2,3,1,3],[-2,-2,1,-2]] det=130 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[2,-3,3,-1],[-2,3,1,3],[-2,-2,1,-2]] det=-20 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[2,-3,3,-1],[-2,3,1,3],[-2,-2,1,-2]] det=-170 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-1,-3,-1,1],[-2,3,1,3],[-2,-2,1,-2]] det=-120 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-1,-3,-1,1],[-2,3,1,3],[-2,-2,1,-2]] det=-40 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-1,-3,-1,1],[-2,3,1,3],[-2,-2,1,-2]] det=40 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-2,-1,-1,-1],[-2,3,1,3],[-2,-2,1,-2]] det=-80 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-2,-1,-1,-1],[-2,3,1,3],[-2,-2,1,-2]] det=0 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-2,-1,-1,-1],[-2,3,1,3],[-2,-2,1,-2]] det=80 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-3,1,-1,-3],[-2,3,1,3],[-2,-2,1,-2]] det=-40 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-3,1,-1,-3],[-2,3,1,3],[-2,-2,1,-2]] det=40 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-3,1,-1,-3],[-2,3,1,3],[-2,-2,1,-2]] det=120 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-3,-2,-3,1],[-2,3,1,3],[-2,-2,1,-2]] det=-225 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-3,-2,-3,1],[-2,3,1,3],[-2,-2,1,-2]] det=-30 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-3,-2,-3,1],[-2,3,1,3],[-2,-2,1,-2]] det=165 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[1,-1,3,-3],[-3,-1,2,-2],[-2,-2,1,-2]] det=82 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[1,-1,3,-3],[-3,-1,2,-2],[-2,-2,1,-2]] det=27 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[1,-1,3,-3],[-3,-1,2,-2],[-2,-2,1,-2]] det=-28 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[2,3,2,2],[-3,-1,2,-2],[-2,-2,1,-2]] det=47 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[2,3,2,2],[-3,-1,2,-2],[-2,-2,1,-2]] det=17 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[2,3,2,2],[-3,-1,2,-2],[-2,-2,1,-2]] det=-13 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[2,-3,3,-1],[-3,-1,2,-2],[-2,-2,1,-2]] det=87 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[2,-3,3,-1],[-3,-1,2,-2],[-2,-2,1,-2]] det=32 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[2,-3,3,-1],[-3,-1,2,-2],[-2,-2,1,-2]] det=-23 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-1,-3,-1,1],[-3,-1,2,-2],[-2,-2,1,-2]] det=-34 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-1,-3,-1,1],[-3,-1,2,-2],[-2,-2,1,-2]] det=-9 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-1,-3,-1,1],[-3,-1,2,-2],[-2,-2,1,-2]] det=16 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-2,-1,-1,-1],[-3,-1,2,-2],[-2,-2,1,-2]] det=-39 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-2,-1,-1,-1],[-3,-1,2,-2],[-2,-2,1,-2]] det=-14 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-2,-1,-1,-1],[-3,-1,2,-2],[-2,-2,1,-2]] det=11 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-3,1,-1,-3],[-3,-1,2,-2],[-2,-2,1,-2]] det=-44 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-3,1,-1,-3],[-3,-1,2,-2],[-2,-2,1,-2]] det=-19 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-3,1,-1,-3],[-3,-1,2,-2],[-2,-2,1,-2]] det=6 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-3,-2,-3,1],[-3,-1,2,-2],[-2,-2,1,-2]] det=-97 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-3,-2,-3,1],[-3,-1,2,-2],[-2,-2,1,-2]] det=-32 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-3,-2,-3,1],[-3,-1,2,-2],[-2,-2,1,-2]] det=33 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[1,-1,3,-3],[-2,3,1,3],[-3,3,-2,3]] det=72 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[1,-1,3,-3],[-2,3,1,3],[-3,3,-2,3]] det=34 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[1,-1,3,-3],[-2,3,1,3],[-3,3,-2,3]] det=-4 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[2,3,2,2],[-2,3,1,3],[-3,3,-2,3]] det=-110 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[2,3,2,2],[-2,3,1,3],[-3,3,-2,3]] det=17 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[2,3,2,2],[-2,3,1,3],[-3,3,-2,3]] det=144 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[2,-3,3,-1],[-2,3,1,3],[-3,3,-2,3]] det=4 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[2,-3,3,-1],[-2,3,1,3],[-3,3,-2,3]] det=-34 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[2,-3,3,-1],[-2,3,1,3],[-3,3,-2,3]] det=-72 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-1,-3,-1,1],[-2,3,1,3],[-3,3,-2,3]] det=20 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-1,-3,-1,1],[-2,3,1,3],[-3,3,-2,3]] det=-68 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-1,-3,-1,1],[-2,3,1,3],[-3,3,-2,3]] det=-156 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-2,-1,-1,-1],[-2,3,1,3],[-3,3,-2,3]] det=88 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-2,-1,-1,-1],[-2,3,1,3],[-3,3,-2,3]] det=0 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-2,-1,-1,-1],[-2,3,1,3],[-3,3,-2,3]] det=-88 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-3,1,-1,-3],[-2,3,1,3],[-3,3,-2,3]] det=156 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-3,1,-1,-3],[-2,3,1,3],[-3,3,-2,3]] det=68 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-3,1,-1,-3],[-2,3,1,3],[-3,3,-2,3]] det=-20 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-3,-2,-3,1],[-2,3,1,3],[-3,3,-2,3]] det=62 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-3,-2,-3,1],[-2,3,1,3],[-3,3,-2,3]] det=-51 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-3,-2,-3,1],[-2,3,1,3],[-3,3,-2,3]] det=-164 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[1,-1,3,-3],[-3,-1,2,-2],[-3,3,-2,3]] det=-142 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[1,-1,3,-3],[-3,-1,2,-2],[-3,3,-2,3]] det=-63 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[1,-1,3,-3],[-3,-1,2,-2],[-3,3,-2,3]] det=16 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[2,3,2,2],[-3,-1,2,-2],[-3,3,-2,3]] det=-324 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[2,3,2,2],[-3,-1,2,-2],[-3,3,-2,3]] det=-80 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[2,3,2,2],[-3,-1,2,-2],[-3,3,-2,3]] det=164 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[2,-3,3,-1],[-3,-1,2,-2],[-3,3,-2,3]] det=-18 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[2,-3,3,-1],[-3,-1,2,-2],[-3,3,-2,3]] det=61 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[2,-3,3,-1],[-3,-1,2,-2],[-3,3,-2,3]] det=140 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-1,-3,-1,1],[-3,-1,2,-2],[-3,3,-2,3]] det=274 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-1,-3,-1,1],[-3,-1,2,-2],[-3,3,-2,3]] det=153 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-1,-3,-1,1],[-3,-1,2,-2],[-3,3,-2,3]] det=32 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-2,-1,-1,-1],[-3,-1,2,-2],[-3,3,-2,3]] det=150 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-2,-1,-1,-1],[-3,-1,2,-2],[-3,3,-2,3]] det=29 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-2,-1,-1,-1],[-3,-1,2,-2],[-3,3,-2,3]] det=-92 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-3,1,-1,-3],[-3,-1,2,-2],[-3,3,-2,3]] det=26 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-3,1,-1,-3],[-3,-1,2,-2],[-3,3,-2,3]] det=-95 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-3,1,-1,-3],[-3,-1,2,-2],[-3,3,-2,3]] det=-216 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-2,-3],[-3,-2,-3,1],[-3,-1,2,-2],[-3,3,-2,3]] det=358 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[2,-1,-2,-1],[-3,-2,-3,1],[-3,-1,2,-2],[-3,3,-2,3]] det=137 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[3,-3,-2,1],[-3,-2,-3,1],[-3,-1,2,-2],[-3,3,-2,3]] det=-84 [34,2,-33,-15] [147,-22,-140,-75] chain1 [[1,1,-3,-2],[1,3,-2,2],[-1,3,3,2],[-2,1,2,-2]] det=-40 [34,2,-33,-15] [165,76,-157,-102] chain1 [[3,-3,-3,2],[1,3,-2,2],[-1,3,3,2],[-2,1,2,-2]] det=-4 [34,2,-33,-15] [165,76,-157,-102] chain1 [[1,1,-3,-2],[1,-3,-1,-1],[-1,3,3,2],[-2,1,2,-2]] det=32 [34,2,-33,-15] [165,76,-157,-102] chain1 [[3,-3,-3,2],[1,-3,-1,-1],[-1,3,3,2],[-2,1,2,-2]] det=-2 [34,2,-33,-15] [165,76,-157,-102] chain1 [[1,1,-3,-2],[2,-2,1,-3],[-1,3,3,2],[-2,1,2,-2]] det=152 [34,2,-33,-15] [165,76,-157,-102] chain1 [[3,-3,-3,2],[2,-2,1,-3],[-1,3,3,2],[-2,1,2,-2]] det=-38 [34,2,-33,-15] [165,76,-157,-102] chain1 [[1,1,-3,-2],[-1,-2,-3,-1],[-1,3,3,2],[-2,1,2,-2]] det=-96 [34,2,-33,-15] [165,76,-157,-102] chain1 [[3,-3,-3,2],[-1,-2,-3,-1],[-1,3,3,2],[-2,1,2,-2]] det=26 [34,2,-33,-15] [165,76,-157,-102] chain1 [[1,1,-3,-2],[1,3,-2,2],[-3,-2,2,-1],[-2,1,2,-2]] det=81 [34,2,-33,-15] [165,76,-157,-102] chain1 [[3,-3,-3,2],[1,3,-2,2],[-3,-2,2,-1],[-2,1,2,-2]] det=17 [34,2,-33,-15] [165,76,-157,-102] chain1 [[1,1,-3,-2],[1,-3,-1,-1],[-3,-2,2,-1],[-2,1,2,-2]] det=-69 [34,2,-33,-15] [165,76,-157,-102] chain1 [[3,-3,-3,2],[1,-3,-1,-1],[-3,-2,2,-1],[-2,1,2,-2]] det=1 [34,2,-33,-15] [165,76,-157,-102] chain1 [[1,1,-3,-2],[2,-2,1,-3],[-3,-2,2,-1],[-2,1,2,-2]] det=-144 [34,2,-33,-15] [165,76,-157,-102] chain1 [[3,-3,-3,2],[2,-2,1,-3],[-3,-2,2,-1],[-2,1,2,-2]] det=-26 [34,2,-33,-15] [165,76,-157,-102] chain1 [[1,1,-3,-2],[-1,-2,-3,-1],[-3,-2,2,-1],[-2,1,2,-2]] det=25 [34,2,-33,-15] [165,76,-157,-102] chain1 [[3,-3,-3,2],[-1,-2,-3,-1],[-3,-2,2,-1],[-2,1,2,-2]] det=47 [34,2,-33,-15] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,1,-2,2],[-1,-1,3,2],[-2,2,2,-1]] det=8 [34,2,-33,-15] [178,72,-165,-115] chain1 [[3,-1,-1,-3],[1,1,-2,2],[-1,-1,3,2],[-2,2,2,-1]] det=-72 [34,2,-33,-15] [178,72,-165,-115] chain1 [[2,-2,-3,-1],[3,3,2,-2],[-1,-1,3,2],[-2,2,2,-1]] det=-72 [34,2,-33,-15] [178,72,-165,-115] chain1 [[3,-1,-1,-3],[3,3,2,-2],[-1,-1,3,2],[-2,2,2,-1]] det=-152 [34,2,-33,-15] [178,72,-165,-115] chain1 [[2,-2,-3,-1],[-2,-2,-3,-3],[-1,-1,3,2],[-2,2,2,-1]] det=44 [34,2,-33,-15] [178,72,-165,-115] chain1 [[3,-1,-1,-3],[-2,-2,-3,-3],[-1,-1,3,2],[-2,2,2,-1]] det=184 [34,2,-33,-15] [178,72,-165,-115] chain1 [[2,-2,-3,-1],[1,1,-2,2],[-3,3,3,-2],[-2,2,2,-1]] det=-2 [34,2,-33,-15] [178,72,-165,-115] chain1 [[3,-1,-1,-3],[1,1,-2,2],[-3,3,3,-2],[-2,2,2,-1]] det=6 [34,2,-33,-15] [178,72,-165,-115] chain1 [[2,-2,-3,-1],[3,3,2,-2],[-3,3,3,-2],[-2,2,2,-1]] det=-6 [34,2,-33,-15] [178,72,-165,-115] chain1 [[3,-1,-1,-3],[3,3,2,-2],[-3,3,3,-2],[-2,2,2,-1]] det=2 [34,2,-33,-15] [178,72,-165,-115] chain1 [[2,-2,-3,-1],[-2,-2,-3,-3],[-3,3,3,-2],[-2,2,2,-1]] det=4 [34,2,-33,-15] [178,72,-165,-115] chain1 [[3,-1,-1,-3],[-2,-2,-3,-3],[-3,3,3,-2],[-2,2,2,-1]] det=2 [34,2,-33,-15] [178,72,-165,-115] chain1 [[2,1,-2,-3],[1,1,3,3],[-1,-1,3,1],[-1,3,2,1]] det=-84 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[1,1,3,3],[-1,-1,3,1],[-1,3,2,1]] det=-48 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-1,2,1,3],[-1,-1,3,1],[-1,3,2,1]] det=-25 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-1,2,1,3],[-1,-1,3,1],[-1,3,2,1]] det=-58 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-2,-2,2,-2],[-1,-1,3,1],[-1,3,2,1]] det=76 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-2,-2,2,-2],[-1,-1,3,1],[-1,3,2,1]] det=64 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-3,3,-1,3],[-1,-1,3,1],[-1,3,2,1]] det=34 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-3,3,-1,3],[-1,-1,3,1],[-1,3,2,1]] det=-68 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[1,1,3,3],[-2,1,3,-1],[-1,3,2,1]] det=-114 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[1,1,3,3],[-2,1,3,-1],[-1,3,2,1]] det=-78 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-1,2,1,3],[-2,1,3,-1],[-1,3,2,1]] det=13 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-1,2,1,3],[-2,1,3,-1],[-1,3,2,1]] det=-20 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-2,-2,2,-2],[-2,1,3,-1],[-1,3,2,1]] det=8 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-2,-2,2,-2],[-2,1,3,-1],[-1,3,2,1]] det=-4 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-3,3,-1,3],[-2,1,3,-1],[-1,3,2,1]] det=140 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-3,3,-1,3],[-2,1,3,-1],[-1,3,2,1]] det=38 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[1,1,3,3],[-2,-2,1,3],[-1,3,2,1]] det=19 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[1,1,3,3],[-2,-2,1,3],[-1,3,2,1]] det=48 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-1,2,1,3],[-2,-2,1,3],[-1,3,2,1]] det=10 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-1,2,1,3],[-2,-2,1,3],[-1,3,2,1]] det=-30 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-2,-2,2,-2],[-2,-2,1,3],[-1,3,2,1]] det=-26 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-2,-2,2,-2],[-2,-2,1,3],[-1,3,2,1]] det=64 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-3,3,-1,3],[-2,-2,1,3],[-1,3,2,1]] det=1 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-3,3,-1,3],[-2,-2,1,3],[-1,3,2,1]] det=-108 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[1,1,3,3],[-3,3,3,-3],[-1,3,2,1]] det=-144 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[1,1,3,3],[-3,3,3,-3],[-1,3,2,1]] det=-108 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-1,2,1,3],[-3,3,3,-3],[-1,3,2,1]] det=51 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-1,2,1,3],[-3,3,3,-3],[-1,3,2,1]] det=18 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-2,-2,2,-2],[-3,3,3,-3],[-1,3,2,1]] det=-60 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-2,-2,2,-2],[-3,3,3,-3],[-1,3,2,1]] det=-72 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-3,3,-1,3],[-3,3,3,-3],[-1,3,2,1]] det=246 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-3,3,-1,3],[-3,3,3,-3],[-1,3,2,1]] det=144 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[1,1,3,3],[-1,-1,3,1],[-1,-3,3,-2]] det=26 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[1,1,3,3],[-1,-1,3,1],[-1,-3,3,-2]] det=-40 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-1,2,1,3],[-1,-1,3,1],[-1,-3,3,-2]] det=-18 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-1,2,1,3],[-1,-1,3,1],[-1,-3,3,-2]] det=-3 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-2,-2,2,-2],[-1,-1,3,1],[-1,-3,3,-2]] det=-28 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-2,-2,2,-2],[-1,-1,3,1],[-1,-3,3,-2]] det=8 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-3,3,-1,3],[-1,-1,3,1],[-1,-3,3,-2]] det=-62 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-3,3,-1,3],[-1,-1,3,1],[-1,-3,3,-2]] det=34 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[1,1,3,3],[-2,1,3,-1],[-1,-3,3,-2]] det=199 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[1,1,3,3],[-2,1,3,-1],[-1,-3,3,-2]] det=133 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-1,2,1,3],[-2,1,3,-1],[-1,-3,3,-2]] det=42 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-1,2,1,3],[-2,1,3,-1],[-1,-3,3,-2]] det=57 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-2,-2,2,-2],[-2,1,3,-1],[-1,-3,3,-2]] det=-74 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-2,-2,2,-2],[-2,1,3,-1],[-1,-3,3,-2]] det=-38 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-3,3,-1,3],[-2,1,3,-1],[-1,-3,3,-2]] det=-115 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-3,3,-1,3],[-2,1,3,-1],[-1,-3,3,-2]] det=-19 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[1,1,3,3],[-2,-2,1,3],[-1,-3,3,-2]] det=-65 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[1,1,3,3],[-2,-2,1,3],[-1,-3,3,-2]] det=-246 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-1,2,1,3],[-2,-2,1,3],[-1,-3,3,-2]] det=4 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-1,2,1,3],[-2,-2,1,3],[-1,-3,3,-2]] det=-96 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-2,-2,2,-2],[-2,-2,1,3],[-1,-3,3,-2]] det=38 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-2,-2,2,-2],[-2,-2,1,3],[-1,-3,3,-2]] det=68 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-3,3,-1,3],[-2,-2,1,3],[-1,-3,3,-2]] det=73 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-3,3,-1,3],[-2,-2,1,3],[-1,-3,3,-2]] det=54 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[1,1,3,3],[-3,3,3,-3],[-1,-3,3,-2]] det=372 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[1,1,3,3],[-3,3,3,-3],[-1,-3,3,-2]] det=306 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-1,2,1,3],[-3,3,3,-3],[-1,-3,3,-2]] det=102 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-1,2,1,3],[-3,3,3,-3],[-1,-3,3,-2]] det=117 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-2,-2,2,-2],[-3,3,3,-3],[-1,-3,3,-2]] det=-120 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-2,-2,2,-2],[-3,3,3,-3],[-1,-3,3,-2]] det=-84 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-3,3,-1,3],[-3,3,3,-3],[-1,-3,3,-2]] det=-168 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-3,3,-1,3],[-3,3,3,-3],[-1,-3,3,-2]] det=-72 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[1,1,3,3],[-1,-1,3,1],[-3,-2,1,-2]] det=-20 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[1,1,3,3],[-1,-1,3,1],[-3,-2,1,-2]] det=-8 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-1,2,1,3],[-1,-1,3,1],[-3,-2,1,-2]] det=-64 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-1,2,1,3],[-1,-1,3,1],[-3,-2,1,-2]] det=29 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-2,-2,2,-2],[-1,-1,3,1],[-3,-2,1,-2]] det=8 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-2,-2,2,-2],[-1,-1,3,1],[-3,-2,1,-2]] det=-28 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-3,3,-1,3],[-1,-1,3,1],[-3,-2,1,-2]] det=-108 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-3,3,-1,3],[-1,-1,3,1],[-3,-2,1,-2]] det=66 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[1,1,3,3],[-2,1,3,-1],[-3,-2,1,-2]] det=74 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[1,1,3,3],[-2,1,3,-1],[-3,-2,1,-2]] det=86 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-1,2,1,3],[-2,1,3,-1],[-3,-2,1,-2]] det=-83 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-1,2,1,3],[-2,1,3,-1],[-3,-2,1,-2]] det=10 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-2,-2,2,-2],[-2,1,3,-1],[-3,-2,1,-2]] det=64 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-2,-2,2,-2],[-2,1,3,-1],[-3,-2,1,-2]] det=28 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-3,3,-1,3],[-2,1,3,-1],[-3,-2,1,-2]] det=-240 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-3,3,-1,3],[-2,1,3,-1],[-3,-2,1,-2]] det=-66 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[1,1,3,3],[-2,-2,1,3],[-3,-2,1,-2]] det=-32 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[1,1,3,3],[-2,-2,1,3],[-3,-2,1,-2]] det=-135 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-1,2,1,3],[-2,-2,1,3],[-3,-2,1,-2]] det=37 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-1,2,1,3],[-2,-2,1,3],[-3,-2,1,-2]] det=15 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-2,-2,2,-2],[-2,-2,1,3],[-3,-2,1,-2]] det=-28 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-2,-2,2,-2],[-2,-2,1,3],[-3,-2,1,-2]] det=-70 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-3,3,-1,3],[-2,-2,1,3],[-3,-2,1,-2]] det=106 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-3,3,-1,3],[-2,-2,1,3],[-3,-2,1,-2]] det=165 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[1,1,3,3],[-3,3,3,-3],[-3,-2,1,-2]] det=168 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[1,1,3,3],[-3,3,3,-3],[-3,-2,1,-2]] det=180 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-1,2,1,3],[-3,3,3,-3],[-3,-2,1,-2]] det=-102 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-1,2,1,3],[-3,3,3,-3],[-3,-2,1,-2]] det=-9 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-2,-2,2,-2],[-3,3,3,-3],[-3,-2,1,-2]] det=120 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-2,-2,2,-2],[-3,3,3,-3],[-3,-2,1,-2]] det=84 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[2,1,-2,-3],[-3,3,-1,3],[-3,3,3,-3],[-3,-2,1,-2]] det=-372 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[3,-1,-2,-1],[-3,3,-1,3],[-3,3,3,-3],[-3,-2,1,-2]] det=-198 [34,2,-33,-15] [181,-108,-150,-109] chain1 [[1,3,-3,-3],[1,-2,-2,2],[-2,2,2,3],[-1,-1,3,-2]] det=-26 [34,2,-33,-15] [184,66,-175,-105] chain1 [[2,1,-3,-1],[1,-2,-2,2],[-2,2,2,3],[-1,-1,3,-2]] det=16 [34,2,-33,-15] [184,66,-175,-105] chain1 [[3,2,-1,-3],[1,-2,-2,2],[-2,2,2,3],[-1,-1,3,-2]] det=89 [34,2,-33,-15] [184,66,-175,-105] chain1 [[3,-1,-3,1],[1,-2,-2,2],[-2,2,2,3],[-1,-1,3,-2]] det=58 [34,2,-33,-15] [184,66,-175,-105] chain1 [[1,3,-3,-3],[-1,2,-2,-2],[-2,2,2,3],[-1,-1,3,-2]] det=-110 [34,2,-33,-15] [184,66,-175,-105] chain1 [[2,1,-3,-1],[-1,2,-2,-2],[-2,2,2,3],[-1,-1,3,-2]] det=-68 [34,2,-33,-15] [184,66,-175,-105] chain1 [[3,2,-1,-3],[-1,2,-2,-2],[-2,2,2,3],[-1,-1,3,-2]] det=-205 [34,2,-33,-15] [184,66,-175,-105] chain1 [[3,-1,-3,1],[-1,2,-2,-2],[-2,2,2,3],[-1,-1,3,-2]] det=-26 [34,2,-33,-15] [184,66,-175,-105] chain1 [[1,3,-3,-3],[1,-2,-2,2],[-3,-2,3,-2],[-1,-1,3,-2]] det=-77 [34,2,-33,-15] [184,66,-175,-105] chain1 [[2,1,-3,-1],[1,-2,-2,2],[-3,-2,3,-2],[-1,-1,3,-2]] det=-53 [34,2,-33,-15] [184,66,-175,-105] chain1 [[3,2,-1,-3],[1,-2,-2,2],[-3,-2,3,-2],[-1,-1,3,-2]] det=-61 [34,2,-33,-15] [184,66,-175,-105] chain1 [[3,-1,-3,1],[1,-2,-2,2],[-3,-2,3,-2],[-1,-1,3,-2]] det=-29 [34,2,-33,-15] [184,66,-175,-105] chain1 [[1,3,-3,-3],[-1,2,-2,-2],[-3,-2,3,-2],[-1,-1,3,-2]] det=25 [34,2,-33,-15] [184,66,-175,-105] chain1 [[2,1,-3,-1],[-1,2,-2,-2],[-3,-2,3,-2],[-1,-1,3,-2]] det=49 [34,2,-33,-15] [184,66,-175,-105] chain1 [[3,2,-1,-3],[-1,2,-2,-2],[-3,-2,3,-2],[-1,-1,3,-2]] det=41 [34,2,-33,-15] [184,66,-175,-105] chain1 [[3,-1,-3,1],[-1,2,-2,-2],[-3,-2,3,-2],[-1,-1,3,-2]] det=73 [34,2,-33,-15] [184,66,-175,-105] chain1 [[1,3,-3,-3],[1,-2,-2,2],[-2,2,2,3],[-3,-3,-1,2]] det=-232 [34,2,-33,-15] [184,66,-175,-105] chain1 [[2,1,-3,-1],[1,-2,-2,2],[-2,2,2,3],[-3,-3,-1,2]] det=-138 [34,2,-33,-15] [184,66,-175,-105] chain1 [[3,2,-1,-3],[1,-2,-2,2],[-2,2,2,3],[-3,-3,-1,2]] det=-65 [34,2,-33,-15] [184,66,-175,-105] chain1 [[3,-1,-3,1],[1,-2,-2,2],[-2,2,2,3],[-3,-3,-1,2]] det=-44 [34,2,-33,-15] [184,66,-175,-105] chain1 [[1,3,-3,-3],[-1,2,-2,-2],[-2,2,2,3],[-3,-3,-1,2]] det=80 [34,2,-33,-15] [184,66,-175,-105] chain1 [[2,1,-3,-1],[-1,2,-2,-2],[-2,2,2,3],[-3,-3,-1,2]] det=174 [34,2,-33,-15] [184,66,-175,-105] chain1 [[3,2,-1,-3],[-1,2,-2,-2],[-2,2,2,3],[-3,-3,-1,2]] det=37 [34,2,-33,-15] [184,66,-175,-105] chain1 [[3,-1,-3,1],[-1,2,-2,-2],[-2,2,2,3],[-3,-3,-1,2]] det=268 [34,2,-33,-15] [184,66,-175,-105] chain1 [[1,3,-3,-3],[1,-2,-2,2],[-3,-2,3,-2],[-3,-3,-1,2]] det=153 [34,2,-33,-15] [184,66,-175,-105] chain1 [[2,1,-3,-1],[1,-2,-2,2],[-3,-2,3,-2],[-3,-3,-1,2]] det=97 [34,2,-33,-15] [184,66,-175,-105] chain1 [[3,2,-1,-3],[1,-2,-2,2],[-3,-2,3,-2],[-3,-3,-1,2]] det=89 [34,2,-33,-15] [184,66,-175,-105] chain1 [[3,-1,-3,1],[1,-2,-2,2],[-3,-2,3,-2],[-3,-3,-1,2]] det=41 [34,2,-33,-15] [184,66,-175,-105] chain1 [[1,3,-3,-3],[-1,2,-2,-2],[-3,-2,3,-2],[-3,-3,-1,2]] det=-85 [34,2,-33,-15] [184,66,-175,-105] chain1 [[2,1,-3,-1],[-1,2,-2,-2],[-3,-2,3,-2],[-3,-3,-1,2]] det=-141 [34,2,-33,-15] [184,66,-175,-105] chain1 [[3,2,-1,-3],[-1,2,-2,-2],[-3,-2,3,-2],[-3,-3,-1,2]] det=-149 [34,2,-33,-15] [184,66,-175,-105] chain1 [[3,-1,-3,1],[-1,2,-2,-2],[-3,-2,3,-2],[-3,-3,-1,2]] det=-197 [34,2,-33,-15] [184,66,-175,-105] chain1 [[2,2,-3,-1],[1,1,3,-3],[-1,-2,3,2],[-1,-3,2,1]] det=-35 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,1,3,-3],[-1,-2,3,2],[-1,-3,2,1]] det=-42 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,-2,1,1],[-1,-2,3,2],[-1,-3,2,1]] det=-5 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,-2,1,1],[-1,-2,3,2],[-1,-3,2,1]] det=29 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[2,-1,3,-1],[-1,-2,3,2],[-1,-3,2,1]] det=-30 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[2,-1,3,-1],[-1,-2,3,2],[-1,-3,2,1]] det=4 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[3,-3,3,1],[-1,-2,3,2],[-1,-3,2,1]] det=-25 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[3,-3,3,1],[-1,-2,3,2],[-1,-3,2,1]] det=50 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,2,1,-3],[-1,-2,3,2],[-1,-3,2,1]] det=-15 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,2,1,-3],[-1,-2,3,2],[-1,-3,2,1]] det=-63 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,-1,-1,1],[-1,-2,3,2],[-1,-3,2,1]] det=15 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,-1,-1,1],[-1,-2,3,2],[-1,-3,2,1]] det=8 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,1,-1,-1],[-1,-2,3,2],[-1,-3,2,1]] det=10 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,1,-1,-1],[-1,-2,3,2],[-1,-3,2,1]] det=-38 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,-2,-3,3],[-1,-2,3,2],[-1,-3,2,1]] det=40 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,-2,-3,3],[-1,-2,3,2],[-1,-3,2,1]] det=33 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-3,3,-1,-3],[-1,-2,3,2],[-1,-3,2,1]] det=5 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-3,3,-1,-3],[-1,-2,3,2],[-1,-3,2,1]] det=-84 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,1,3,-3],[-3,2,3,-2],[-1,-3,2,1]] det=43 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,1,3,-3],[-3,2,3,-2],[-1,-3,2,1]] det=26 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,-2,1,1],[-3,2,3,-2],[-1,-3,2,1]] det=15 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,-2,1,1],[-3,2,3,-2],[-1,-3,2,1]] det=39 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[2,-1,3,-1],[-3,2,3,-2],[-1,-3,2,1]] det=48 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[2,-1,3,-1],[-3,2,3,-2],[-1,-3,2,1]] det=72 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[3,-3,3,1],[-3,2,3,-2],[-1,-3,2,1]] det=53 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[3,-3,3,1],[-3,2,3,-2],[-1,-3,2,1]] det=118 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,2,1,-3],[-3,2,3,-2],[-1,-3,2,1]] det=5 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,2,1,-3],[-3,2,3,-2],[-1,-3,2,1]] det=-53 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,-1,-1,1],[-3,2,3,-2],[-1,-3,2,1]] det=-23 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,-1,-1,1],[-3,2,3,-2],[-1,-3,2,1]] det=-40 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,1,-1,-1],[-3,2,3,-2],[-1,-3,2,1]] det=-28 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,1,-1,-1],[-3,2,3,-2],[-1,-3,2,1]] det=-86 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,-2,-3,3],[-3,2,3,-2],[-1,-3,2,1]] det=-56 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,-2,-3,3],[-3,2,3,-2],[-1,-3,2,1]] det=-73 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-3,3,-1,-3],[-3,2,3,-2],[-1,-3,2,1]] det=-33 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-3,3,-1,-3],[-3,2,3,-2],[-1,-3,2,1]] det=-132 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,1,3,-3],[-3,-1,1,2],[-1,-3,2,1]] det=12 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,1,3,-3],[-3,-1,1,2],[-1,-3,2,1]] det=0 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,-2,1,1],[-3,-1,1,2],[-1,-3,2,1]] det=-16 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,-2,1,1],[-3,-1,1,2],[-1,-3,2,1]] det=13 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[2,-1,3,-1],[-3,-1,1,2],[-1,-3,2,1]] det=-12 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[2,-1,3,-1],[-3,-1,1,2],[-1,-3,2,1]] det=17 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[3,-3,3,1],[-3,-1,1,2],[-1,-3,2,1]] det=-36 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[3,-3,3,1],[-3,-1,1,2],[-1,-3,2,1]] det=34 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,2,1,-3],[-3,-1,1,2],[-1,-3,2,1]] det=32 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,2,1,-3],[-3,-1,1,2],[-1,-3,2,1]] det=-21 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,-1,-1,1],[-3,-1,1,2],[-1,-3,2,1]] det=4 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,-1,-1,1],[-3,-1,1,2],[-1,-3,2,1]] det=-8 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,1,-1,-1],[-3,-1,1,2],[-1,-3,2,1]] det=28 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,1,-1,-1],[-3,-1,1,2],[-1,-3,2,1]] det=-25 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,-2,-3,3],[-3,-1,1,2],[-1,-3,2,1]] det=0 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,-2,-3,3],[-3,-1,1,2],[-1,-3,2,1]] det=-12 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-3,3,-1,-3],[-3,-1,1,2],[-1,-3,2,1]] det=52 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-3,3,-1,-3],[-3,-1,1,2],[-1,-3,2,1]] det=-42 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,1,3,-3],[-1,-2,3,2],[-2,-1,2,-1]] det=-2 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,1,3,-3],[-1,-2,3,2],[-2,-1,2,-1]] det=4 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,-2,1,1],[-1,-2,3,2],[-2,-1,2,-1]] det=5 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,-2,1,1],[-1,-2,3,2],[-2,-1,2,-1]] det=52 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[2,-1,3,-1],[-1,-2,3,2],[-2,-1,2,-1]] det=3 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[2,-1,3,-1],[-1,-2,3,2],[-2,-1,2,-1]] det=50 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[3,-3,3,1],[-1,-2,3,2],[-2,-1,2,-1]] det=8 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[3,-3,3,1],[-1,-2,3,2],[-2,-1,2,-1]] det=96 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,2,1,-3],[-1,-2,3,2],[-2,-1,2,-1]] det=-5 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,2,1,-3],[-1,-2,3,2],[-2,-1,2,-1]] det=-40 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,-1,-1,1],[-1,-2,3,2],[-2,-1,2,-1]] det=2 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,-1,-1,1],[-1,-2,3,2],[-2,-1,2,-1]] det=8 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,1,-1,-1],[-1,-2,3,2],[-2,-1,2,-1]] det=-3 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,1,-1,-1],[-1,-2,3,2],[-2,-1,2,-1]] det=-38 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,-2,-3,3],[-1,-2,3,2],[-2,-1,2,-1]] det=4 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,-2,-3,3],[-1,-2,3,2],[-2,-1,2,-1]] det=10 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-3,3,-1,-3],[-1,-2,3,2],[-2,-1,2,-1]] det=-8 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-3,3,-1,-3],[-1,-2,3,2],[-2,-1,2,-1]] det=-84 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,1,3,-3],[-3,2,3,-2],[-2,-1,2,-1]] det=76 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,1,3,-3],[-3,2,3,-2],[-2,-1,2,-1]] det=72 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,-2,1,1],[-3,2,3,-2],[-2,-1,2,-1]] det=25 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,-2,1,1],[-3,2,3,-2],[-2,-1,2,-1]] det=62 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[2,-1,3,-1],[-3,2,3,-2],[-2,-1,2,-1]] det=81 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[2,-1,3,-1],[-3,2,3,-2],[-2,-1,2,-1]] det=118 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[3,-3,3,1],[-3,2,3,-2],[-2,-1,2,-1]] det=86 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[3,-3,3,1],[-3,2,3,-2],[-2,-1,2,-1]] det=164 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,2,1,-3],[-3,2,3,-2],[-2,-1,2,-1]] det=15 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,2,1,-3],[-3,2,3,-2],[-2,-1,2,-1]] det=-30 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,-1,-1,1],[-3,2,3,-2],[-2,-1,2,-1]] det=-36 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,-1,-1,1],[-3,2,3,-2],[-2,-1,2,-1]] det=-40 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,1,-1,-1],[-3,2,3,-2],[-2,-1,2,-1]] det=-41 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,1,-1,-1],[-3,2,3,-2],[-2,-1,2,-1]] det=-86 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,-2,-3,3],[-3,2,3,-2],[-2,-1,2,-1]] det=-92 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,-2,-3,3],[-3,2,3,-2],[-2,-1,2,-1]] det=-96 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-3,3,-1,-3],[-3,2,3,-2],[-2,-1,2,-1]] det=-46 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-3,3,-1,-3],[-3,2,3,-2],[-2,-1,2,-1]] det=-132 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,1,3,-3],[-3,-1,1,2],[-2,-1,2,-1]] det=33 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,1,3,-3],[-3,-1,1,2],[-2,-1,2,-1]] det=34 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,-2,1,1],[-3,-1,1,2],[-2,-1,2,-1]] det=-18 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,-2,1,1],[-3,-1,1,2],[-2,-1,2,-1]] det=24 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[2,-1,3,-1],[-3,-1,1,2],[-2,-1,2,-1]] det=9 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[2,-1,3,-1],[-3,-1,1,2],[-2,-1,2,-1]] det=51 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[3,-3,3,1],[-3,-1,1,2],[-2,-1,2,-1]] det=-15 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[3,-3,3,1],[-3,-1,1,2],[-2,-1,2,-1]] det=68 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,2,1,-3],[-3,-1,1,2],[-2,-1,2,-1]] det=30 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,2,1,-3],[-3,-1,1,2],[-2,-1,2,-1]] det=-10 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,-1,-1,1],[-3,-1,1,2],[-2,-1,2,-1]] det=-21 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,-1,-1,1],[-3,-1,1,2],[-2,-1,2,-1]] det=-20 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,1,-1,-1],[-3,-1,1,2],[-2,-1,2,-1]] det=3 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,1,-1,-1],[-3,-1,1,2],[-2,-1,2,-1]] det=-37 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,-2,-3,3],[-3,-1,1,2],[-2,-1,2,-1]] det=-48 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,-2,-3,3],[-3,-1,1,2],[-2,-1,2,-1]] det=-47 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-3,3,-1,-3],[-3,-1,1,2],[-2,-1,2,-1]] det=27 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-3,3,-1,-3],[-3,-1,1,2],[-2,-1,2,-1]] det=-54 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,1,3,-3],[-1,-2,3,2],[-3,1,2,-3]] det=31 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,1,3,-3],[-1,-2,3,2],[-3,1,2,-3]] det=50 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,-2,1,1],[-1,-2,3,2],[-3,1,2,-3]] det=15 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,-2,1,1],[-1,-2,3,2],[-3,1,2,-3]] det=75 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[2,-1,3,-1],[-1,-2,3,2],[-3,1,2,-3]] det=36 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[2,-1,3,-1],[-1,-2,3,2],[-3,1,2,-3]] det=96 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[3,-3,3,1],[-1,-2,3,2],[-3,1,2,-3]] det=41 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[3,-3,3,1],[-1,-2,3,2],[-3,1,2,-3]] det=142 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,2,1,-3],[-1,-2,3,2],[-3,1,2,-3]] det=5 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,2,1,-3],[-1,-2,3,2],[-3,1,2,-3]] det=-17 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,-1,-1,1],[-1,-2,3,2],[-3,1,2,-3]] det=-11 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,-1,-1,1],[-1,-2,3,2],[-3,1,2,-3]] det=8 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,1,-1,-1],[-1,-2,3,2],[-3,1,2,-3]] det=-16 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,1,-1,-1],[-1,-2,3,2],[-3,1,2,-3]] det=-38 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,-2,-3,3],[-1,-2,3,2],[-3,1,2,-3]] det=-32 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,-2,-3,3],[-1,-2,3,2],[-3,1,2,-3]] det=-13 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-3,3,-1,-3],[-1,-2,3,2],[-3,1,2,-3]] det=-21 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-3,3,-1,-3],[-1,-2,3,2],[-3,1,2,-3]] det=-84 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,1,3,-3],[-3,2,3,-2],[-3,1,2,-3]] det=109 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,1,3,-3],[-3,2,3,-2],[-3,1,2,-3]] det=118 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,-2,1,1],[-3,2,3,-2],[-3,1,2,-3]] det=35 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,-2,1,1],[-3,2,3,-2],[-3,1,2,-3]] det=85 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[2,-1,3,-1],[-3,2,3,-2],[-3,1,2,-3]] det=114 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[2,-1,3,-1],[-3,2,3,-2],[-3,1,2,-3]] det=164 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[3,-3,3,1],[-3,2,3,-2],[-3,1,2,-3]] det=119 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[3,-3,3,1],[-3,2,3,-2],[-3,1,2,-3]] det=210 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,2,1,-3],[-3,2,3,-2],[-3,1,2,-3]] det=25 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,2,1,-3],[-3,2,3,-2],[-3,1,2,-3]] det=-7 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,-1,-1,1],[-3,2,3,-2],[-3,1,2,-3]] det=-49 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,-1,-1,1],[-3,2,3,-2],[-3,1,2,-3]] det=-40 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,1,-1,-1],[-3,2,3,-2],[-3,1,2,-3]] det=-54 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,1,-1,-1],[-3,2,3,-2],[-3,1,2,-3]] det=-86 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,-2,-3,3],[-3,2,3,-2],[-3,1,2,-3]] det=-128 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,-2,-3,3],[-3,2,3,-2],[-3,1,2,-3]] det=-119 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-3,3,-1,-3],[-3,2,3,-2],[-3,1,2,-3]] det=-59 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-3,3,-1,-3],[-3,2,3,-2],[-3,1,2,-3]] det=-132 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,1,3,-3],[-3,-1,1,2],[-3,1,2,-3]] det=54 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,1,3,-3],[-3,-1,1,2],[-3,1,2,-3]] det=68 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[1,-2,1,1],[-3,-1,1,2],[-3,1,2,-3]] det=-20 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[1,-2,1,1],[-3,-1,1,2],[-3,1,2,-3]] det=35 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[2,-1,3,-1],[-3,-1,1,2],[-3,1,2,-3]] det=30 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[2,-1,3,-1],[-3,-1,1,2],[-3,1,2,-3]] det=85 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[3,-3,3,1],[-3,-1,1,2],[-3,1,2,-3]] det=6 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[3,-3,3,1],[-3,-1,1,2],[-3,1,2,-3]] det=102 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,2,1,-3],[-3,-1,1,2],[-3,1,2,-3]] det=28 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,2,1,-3],[-3,-1,1,2],[-3,1,2,-3]] det=1 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-1,-1,-1,1],[-3,-1,1,2],[-3,1,2,-3]] det=-46 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-1,-1,-1,1],[-3,-1,1,2],[-3,1,2,-3]] det=-32 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,1,-1,-1],[-3,-1,1,2],[-3,1,2,-3]] det=-22 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,1,-1,-1],[-3,-1,1,2],[-3,1,2,-3]] det=-49 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-2,-2,-3,3],[-3,-1,1,2],[-3,1,2,-3]] det=-96 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-2,-2,-3,3],[-3,-1,1,2],[-3,1,2,-3]] det=-82 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[2,2,-3,-1],[-3,3,-1,-3],[-3,-1,1,2],[-3,1,2,-3]] det=2 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,3,-1,-3],[-3,3,-1,-3],[-3,-1,1,2],[-3,1,2,-3]] det=-66 [34,2,-33,-15] [186,-18,-167,-121] chain1 [[3,2,-3,1],[1,3,2,2],[-3,1,1,2],[-2,2,3,-2]] det=172 [34,2,-33,-15] [190,-56,-163,-133] chain1 [[3,2,-3,1],[1,-3,3,-1],[-3,1,1,2],[-2,2,3,-2]] det=133 [34,2,-33,-15] [190,-56,-163,-133] chain1 [[3,2,-3,1],[-1,-2,1,-1],[-3,1,1,2],[-2,2,3,-2]] det=-18 [34,2,-33,-15] [190,-56,-163,-133] chain1 [[3,2,-3,1],[-2,-3,-1,1],[-3,1,1,2],[-2,2,3,-2]] det=-76 [34,2,-33,-15] [190,-56,-163,-133] chain1 [[3,2,-3,1],[-3,-1,-1,-1],[-3,1,1,2],[-2,2,3,-2]] det=-169 [34,2,-33,-15] [190,-56,-163,-133] chain1 [[3,2,-3,1],[1,3,2,2],[-3,1,1,2],[-2,-1,1,2]] det=-91 [34,2,-33,-15] [190,-56,-163,-133] chain1 [[3,2,-3,1],[1,-3,3,-1],[-3,1,1,2],[-2,-1,1,2]] det=-49 [34,2,-33,-15] [190,-56,-163,-133] chain1 [[3,2,-3,1],[-1,-2,1,-1],[-3,1,1,2],[-2,-1,1,2]] det=14 [34,2,-33,-15] [190,-56,-163,-133] chain1 [[3,2,-3,1],[-2,-3,-1,1],[-3,1,1,2],[-2,-1,1,2]] det=63 [34,2,-33,-15] [190,-56,-163,-133] chain1 [[3,2,-3,1],[-3,-1,-1,-1],[-3,1,1,2],[-2,-1,1,2]] det=77 [34,2,-33,-15] [190,-56,-163,-133] chain1 [[2,-3,-3,-2],[1,-2,3,-2],[-2,-2,3,-1],[-1,1,3,1]] det=24 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[2,2,2,3],[-2,-2,3,-1],[-1,1,3,1]] det=-15 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[-1,-1,1,-2],[-2,-2,3,-1],[-1,1,3,1]] det=21 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[-3,-3,-3,2],[-2,-2,3,-1],[-1,1,3,1]] det=-75 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[1,-2,3,-2],[-3,-3,1,1],[-1,1,3,1]] det=32 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[2,2,2,3],[-3,-3,1,1],[-1,1,3,1]] det=-90 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[-1,-1,1,-2],[-3,-3,1,1],[-1,1,3,1]] det=62 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[-3,-3,-3,2],[-3,-3,1,1],[-1,1,3,1]] det=-34 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[1,-2,3,-2],[-2,-2,3,-1],[-2,3,3,-1]] det=-135 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[2,2,2,3],[-2,-2,3,-1],[-2,3,3,-1]] det=-150 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[-1,-1,1,-2],[-2,-2,3,-1],[-2,3,3,-1]] det=15 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[-3,-3,-3,2],[-2,-2,3,-1],[-2,3,3,-1]] det=225 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[1,-2,3,-2],[-3,-3,1,1],[-2,3,3,-1]] det=-213 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[2,2,2,3],[-3,-3,1,1],[-2,3,3,-1]] det=-120 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[-1,-1,1,-2],[-3,-3,1,1],[-2,3,3,-1]] det=-30 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[-3,-3,-3,2],[-3,-3,1,1],[-2,3,3,-1]] det=180 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[1,-2,3,-2],[-2,-2,3,-1],[-3,2,1,1]] det=-47 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[2,2,2,3],[-2,-2,3,-1],[-3,2,1,1]] det=45 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[-1,-1,1,-2],[-2,-2,3,-1],[-3,2,1,1]] det=-50 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[-3,-3,-3,2],[-2,-2,3,-1],[-3,2,1,1]] det=160 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[1,-2,3,-2],[-3,-3,1,1],[-3,2,1,1]] det=-125 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[2,2,2,3],[-3,-3,1,1],[-3,2,1,1]] det=75 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[-1,-1,1,-2],[-3,-3,1,1],[-3,2,1,1]] det=-95 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[2,-3,-3,-2],[-3,-3,-3,2],[-3,-3,1,1],[-3,2,1,1]] det=115 [34,2,-33,-15] [191,-39,-156,-146] chain1 [[3,3,-3,1],[1,-2,-1,-2],[-2,-1,2,2],[-1,-2,2,3]] det=17 [34,2,-33,-15] [192,93,-166,-149] chain1 [[3,-3,-2,-2],[1,-2,-1,-2],[-2,-1,2,2],[-1,-2,2,3]] det=1 [34,2,-33,-15] [192,93,-166,-149] chain1 [[3,3,-3,1],[2,2,-2,3],[-2,-1,2,2],[-1,-2,2,3]] det=7 [34,2,-33,-15] [192,93,-166,-149] chain1 [[3,-3,-2,-2],[2,2,-2,3],[-2,-1,2,2],[-1,-2,2,3]] det=-28 [34,2,-33,-15] [192,93,-166,-149] chain1 [[3,3,-3,1],[3,-3,1,-2],[-2,-1,2,2],[-1,-2,2,3]] det=-33 [34,2,-33,-15] [192,93,-166,-149] chain1 [[3,-3,-2,-2],[3,-3,1,-2],[-2,-1,2,2],[-1,-2,2,3]] det=45 [34,2,-33,-15] [192,93,-166,-149] chain1 [[3,3,-3,1],[-1,-1,-3,-2],[-2,-1,2,2],[-1,-2,2,3]] det=67 [34,2,-33,-15] [192,93,-166,-149] chain1 [[3,-3,-2,-2],[-1,-1,-3,-2],[-2,-1,2,2],[-1,-2,2,3]] det=-43 [34,2,-33,-15] [192,93,-166,-149] chain1 [[3,3,-3,1],[1,-2,-1,-2],[-2,-1,2,2],[-3,2,2,-1]] det=-17 [34,2,-33,-15] [192,93,-166,-149] chain1 [[3,-3,-2,-2],[1,-2,-1,-2],[-2,-1,2,2],[-3,2,2,-1]] det=13 [34,2,-33,-15] [192,93,-166,-149] chain1 [[3,3,-3,1],[2,2,-2,3],[-2,-1,2,2],[-3,2,2,-1]] det=-7 [34,2,-33,-15] [192,93,-166,-149] chain1 [[3,-3,-2,-2],[2,2,-2,3],[-2,-1,2,2],[-3,2,2,-1]] det=4 [34,2,-33,-15] [192,93,-166,-149] chain1 [[3,3,-3,1],[3,-3,1,-2],[-2,-1,2,2],[-3,2,2,-1]] det=121 [34,2,-33,-15] [192,93,-166,-149] chain1 [[3,-3,-2,-2],[3,-3,1,-2],[-2,-1,2,2],[-3,2,2,-1]] det=-87 [34,2,-33,-15] [192,93,-166,-149] chain1 [[3,3,-3,1],[-1,-1,-3,-2],[-2,-1,2,2],[-3,2,2,-1]] det=-155 [34,2,-33,-15] [192,93,-166,-149] chain1 [[3,-3,-2,-2],[-1,-1,-3,-2],[-2,-1,2,2],[-3,2,2,-1]] det=113 [34,2,-33,-15] [192,93,-166,-149] chain1 [[2,-2,-3,-2],[1,2,1,2],[-3,-2,3,-1],[1,-3,2,2]] det=49 [34,2,-33,-15] [193,-25,-190,-68] chain1 [[2,-2,-3,-2],[3,1,3,2],[-3,-2,3,-1],[1,-3,2,2]] det=216 [34,2,-33,-15] [193,-25,-190,-68] chain1 [[2,-2,-3,-2],[-1,3,-1,2],[-3,-2,3,-1],[1,-3,2,2]] det=-118 [34,2,-33,-15] [193,-25,-190,-68] chain1 [[2,-2,-3,-2],[-3,-2,-2,-1],[-3,-2,3,-1],[1,-3,2,2]] det=-230 [34,2,-33,-15] [193,-25,-190,-68] chain1 [[2,-2,-3,-2],[1,2,1,2],[-3,-2,3,-1],[-1,1,2,-2]] det=-51 [34,2,-33,-15] [193,-25,-190,-68] chain1 [[2,-2,-3,-2],[3,1,3,2],[-3,-2,3,-1],[-1,1,2,-2]] det=-198 [34,2,-33,-15] [193,-25,-190,-68] chain1 [[2,-2,-3,-2],[-1,3,-1,2],[-3,-2,3,-1],[-1,1,2,-2]] det=96 [34,2,-33,-15] [193,-25,-190,-68] chain1 [[2,-2,-3,-2],[-3,-2,-2,-1],[-3,-2,3,-1],[-1,1,2,-2]] det=150 [34,2,-33,-15] [193,-25,-190,-68] chain1 [[2,-2,-3,-2],[1,2,1,2],[-3,-2,3,-1],[-3,-1,-2,2]] det=67 [34,2,-33,-15] [193,-25,-190,-68] chain1 [[2,-2,-3,-2],[3,1,3,2],[-3,-2,3,-1],[-3,-1,-2,2]] det=234 [34,2,-33,-15] [193,-25,-190,-68] chain1 [[2,-2,-3,-2],[-1,3,-1,2],[-3,-2,3,-1],[-3,-1,-2,2]] det=-100 [34,2,-33,-15] [193,-25,-190,-68] chain1 [[2,-2,-3,-2],[-3,-2,-2,-1],[-3,-2,3,-1],[-3,-1,-2,2]] det=-110 [34,2,-33,-15] [193,-25,-190,-68] chain1 [[2,1,-3,-2],[1,-2,2,-2],[-1,-1,3,3],[-2,2,1,2]] det=29 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[2,2,1,3],[-1,-1,3,3],[-2,2,1,2]] det=21 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[3,3,3,1],[-1,-1,3,3],[-2,2,1,2]] det=74 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[1,-2,2,-2],[-2,1,3,1],[-2,2,1,2]] det=-3 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[2,2,1,3],[-2,1,3,1],[-2,2,1,2]] det=-68 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[3,3,3,1],[-2,1,3,1],[-2,2,1,2]] det=-83 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[1,-2,2,-2],[-3,3,3,-1],[-2,2,1,2]] det=-35 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[2,2,1,3],[-3,3,3,-1],[-2,2,1,2]] det=-157 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[3,3,3,1],[-3,3,3,-1],[-2,2,1,2]] det=-240 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[1,-2,2,-2],[-1,-1,3,3],[-3,-2,2,-3]] det=-12 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[2,2,1,3],[-1,-1,3,3],[-3,-2,2,-3]] det=-20 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[3,3,3,1],[-1,-1,3,3],[-3,-2,2,-3]] det=-56 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[1,-2,2,-2],[-2,1,3,1],[-3,-2,2,-3]] det=110 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[2,2,1,3],[-2,1,3,1],[-3,-2,2,-3]] det=45 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[3,3,3,1],[-2,1,3,1],[-3,-2,2,-3]] det=140 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[1,-2,2,-2],[-3,3,3,-1],[-3,-2,2,-3]] det=232 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[2,2,1,3],[-3,3,3,-1],[-3,-2,2,-3]] det=110 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,1,-3,-2],[3,3,3,1],[-3,3,3,-1],[-3,-2,2,-3]] det=336 [34,2,-33,-15] [199,-6,-180,-127] chain1 [[2,2,-3,-2],[1,1,2,1],[-2,-1,3,2],[1,-3,2,1]] det=0 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[2,-1,2,3],[-2,-1,3,2],[1,-3,2,1]] det=15 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[-2,1,-2,3],[-2,-1,3,2],[1,-3,2,1]] det=27 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[-3,3,-2,1],[-2,-1,3,2],[1,-3,2,1]] det=12 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[-3,-3,-1,-2],[-2,-1,3,2],[1,-3,2,1]] det=-13 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[1,1,2,1],[-2,-1,3,2],[-1,1,2,-3]] det=30 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[2,-1,2,3],[-2,-1,3,2],[-1,1,2,-3]] det=45 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[-2,1,-2,3],[-2,-1,3,2],[-1,1,2,-3]] det=-39 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[-3,3,-2,1],[-2,-1,3,2],[-1,1,2,-3]] det=-54 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[-3,-3,-1,-2],[-2,-1,3,2],[-1,1,2,-3]] det=-49 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[1,1,2,1],[-2,-1,3,2],[-2,-3,-2,3]] det=-27 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[2,-1,2,3],[-2,-1,3,2],[-2,-3,-2,3]] det=-60 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[-2,1,-2,3],[-2,-1,3,2],[-2,-3,-2,3]] det=0 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[-3,3,-2,1],[-2,-1,3,2],[-2,-3,-2,3]] det=33 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[-3,-3,-1,-2],[-2,-1,3,2],[-2,-3,-2,3]] det=61 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[1,1,2,1],[-2,-1,3,2],[-3,-1,-2,1]] det=-12 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[2,-1,2,3],[-2,-1,3,2],[-3,-1,-2,1]] det=-45 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[-2,1,-2,3],[-2,-1,3,2],[-3,-1,-2,1]] det=-33 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[-3,3,-2,1],[-2,-1,3,2],[-3,-1,-2,1]] det=0 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[2,2,-3,-2],[-3,-3,-1,-2],[-2,-1,3,2],[-3,-1,-2,1]] det=43 [34,2,-33,-15] [201,-45,-199,-53] chain1 [[3,2,-2,-2],[1,2,3,1],[-3,-3,1,2],[-1,2,2,3]] det=23 [34,2,-33,-15] [202,-76,-171,-141] chain1 [[3,2,-2,-2],[-1,3,1,1],[-3,-3,1,2],[-1,2,2,3]] det=-22 [34,2,-33,-15] [202,-76,-171,-141] chain1 [[3,2,-2,-2],[-1,-3,2,-2],[-3,-3,1,2],[-1,2,2,3]] det=15 [34,2,-33,-15] [202,-76,-171,-141] chain1 [[3,2,-2,-2],[-2,2,-1,3],[-3,-3,1,2],[-1,2,2,3]] det=-33 [34,2,-33,-15] [202,-76,-171,-141] chain1 [[3,2,-2,-2],[1,2,3,1],[-3,-3,1,2],[-2,-2,3,-2]] det=-35 [34,2,-33,-15] [202,-76,-171,-141] chain1 [[3,2,-2,-2],[-1,3,1,1],[-3,-3,1,2],[-2,-2,3,-2]] det=31 [34,2,-33,-15] [202,-76,-171,-141] chain1 [[3,2,-2,-2],[-1,-3,2,-2],[-3,-3,1,2],[-2,-2,3,-2]] det=-18 [34,2,-33,-15] [202,-76,-171,-141] chain1 [[3,2,-2,-2],[-2,2,-1,3],[-3,-3,1,2],[-2,-2,3,-2]] det=45 [34,2,-33,-15] [202,-76,-171,-141] chain1 [[1,-1,-2,-2],[1,-3,3,-3],[-3,2,2,-2],[1,-2,3,-2]] det=-31 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,-3,3,-3],[-3,2,2,-2],[1,-2,3,-2]] det=-10 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-1,-1,1,-2],[-3,2,2,-2],[1,-2,3,-2]] det=-52 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,-1,1,-2],[-3,2,2,-2],[1,-2,3,-2]] det=-25 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-1,-3,-1,1],[-3,2,2,-2],[1,-2,3,-2]] det=-175 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,-3,-1,1],[-3,2,2,-2],[1,-2,3,-2]] det=-142 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-2,1,1,-3],[-3,2,2,-2],[1,-2,3,-2]] det=-1 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-2,1,1,-3],[-3,2,2,-2],[1,-2,3,-2]] det=26 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-2,-3,-3,3],[-3,2,2,-2],[1,-2,3,-2]] det=-247 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-2,-3,-3,3],[-3,2,2,-2],[1,-2,3,-2]] det=-208 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-3,1,-1,-1],[-3,2,2,-2],[1,-2,3,-2]] det=-73 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,1,-1,-1],[-3,2,2,-2],[1,-2,3,-2]] det=-40 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-3,-1,-3,2],[-3,2,2,-2],[1,-2,3,-2]] det=-196 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,-1,-3,2],[-3,2,2,-2],[1,-2,3,-2]] det=-157 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[1,-3,3,-3],[-3,2,2,-2],[-1,-2,-1,2]] det=177 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,-3,3,-3],[-3,2,2,-2],[-1,-2,-1,2]] det=146 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-1,-1,1,-2],[-3,2,2,-2],[-1,-2,-1,2]] det=60 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,-1,1,-2],[-3,2,2,-2],[-1,-2,-1,2]] det=35 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-1,-3,-1,1],[-3,2,2,-2],[-1,-2,-1,2]] det=33 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,-3,-1,1],[-3,2,2,-2],[-1,-2,-1,2]] det=14 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-2,1,1,-3],[-3,2,2,-2],[-1,-2,-1,2]] det=15 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-2,1,1,-3],[-3,2,2,-2],[-1,-2,-1,2]] det=-10 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-2,-3,-3,3],[-3,2,2,-2],[-1,-2,-1,2]] det=-39 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-2,-3,-3,3],[-3,2,2,-2],[-1,-2,-1,2]] det=-52 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-3,1,-1,-1],[-3,2,2,-2],[-1,-2,-1,2]] det=-57 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,1,-1,-1],[-3,2,2,-2],[-1,-2,-1,2]] det=-76 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-3,-1,-3,2],[-3,2,2,-2],[-1,-2,-1,2]] det=-84 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,-1,-3,2],[-3,2,2,-2],[-1,-2,-1,2]] det=-97 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[1,-3,3,-3],[-3,2,2,-2],[-2,2,1,-2]] det=-33 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[1,-3,3,-3],[-3,2,2,-2],[-2,2,1,-2]] det=-38 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-1,-1,1,-2],[-3,2,2,-2],[-2,2,1,-2]] det=-6 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,-1,1,-2],[-3,2,2,-2],[-2,2,1,-2]] det=-5 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-1,-3,-1,1],[-3,2,2,-2],[-2,2,1,-2]] det=15 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-1,-3,-1,1],[-3,2,2,-2],[-2,2,1,-2]] det=22 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-2,1,1,-3],[-3,2,2,-2],[-2,2,1,-2]] det=-3 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-2,1,1,-3],[-3,2,2,-2],[-2,2,1,-2]] det=-2 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-2,-3,-3,3],[-3,2,2,-2],[-2,2,1,-2]] det=39 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-2,-3,-3,3],[-3,2,2,-2],[-2,2,1,-2]] det=52 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-3,1,-1,-1],[-3,2,2,-2],[-2,2,1,-2]] det=21 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,1,-1,-1],[-3,2,2,-2],[-2,2,1,-2]] det=28 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-1,-2,-2],[-3,-1,-3,2],[-3,2,2,-2],[-2,2,1,-2]] det=42 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[2,-3,-2,-1],[-3,-1,-3,2],[-3,2,2,-2],[-2,2,1,-2]] det=55 [34,9,-33,-16] [123,-44,-118,-51] chain1 [[1,-2,-3,-2],[1,1,1,2],[1,-3,3,3],[1,-3,2,1]] det=-25 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,1,1,2],[1,-3,3,3],[1,-3,2,1]] det=-28 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,3,3,-1],[1,-3,3,3],[1,-3,2,1]] det=-46 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,3,3,-1],[1,-3,3,3],[1,-3,2,1]] det=-144 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[2,-1,1,3],[1,-3,3,3],[1,-3,2,1]] det=-28 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[2,-1,1,3],[1,-3,3,3],[1,-3,2,1]] det=4 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[3,-1,3,1],[1,-3,3,3],[1,-3,2,1]] det=-52 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[3,-1,3,1],[1,-3,3,3],[1,-3,2,1]] det=-80 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-1,3,-1,3],[1,-3,3,3],[1,-3,2,1]] det=2 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-1,3,-1,3],[1,-3,3,3],[1,-3,2,1]] det=24 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-3,-2,-2,-2],[1,-3,3,3],[1,-3,2,1]] det=70 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-3,-2,-2,-2],[1,-3,3,3],[1,-3,2,1]] det=92 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,1,1,2],[-1,1,3,1],[1,-3,2,1]] det=11 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,1,1,2],[-1,1,3,1],[1,-3,2,1]] det=4 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,3,3,-1],[-1,1,3,1],[1,-3,2,1]] det=44 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,3,3,-1],[-1,1,3,1],[1,-3,2,1]] det=-208 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[2,-1,1,3],[-1,1,3,1],[1,-3,2,1]] det=8 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[2,-1,1,3],[-1,1,3,1],[1,-3,2,1]] det=36 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[3,-1,3,1],[-1,1,3,1],[1,-3,2,1]] det=38 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[3,-1,3,1],[-1,1,3,1],[1,-3,2,1]] det=-144 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-1,3,-1,3],[-1,1,3,1],[1,-3,2,1]] det=-16 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-1,3,-1,3],[-1,1,3,1],[1,-3,2,1]] det=152 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-3,-2,-2,-2],[-1,1,3,1],[1,-3,2,1]] det=-44 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-3,-2,-2,-2],[-1,1,3,1],[1,-3,2,1]] det=124 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,1,1,2],[-2,1,1,3],[1,-3,2,1]] det=-70 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,1,1,2],[-2,1,1,3],[1,-3,2,1]] det=-80 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,3,3,-1],[-2,1,1,3],[1,-3,2,1]] det=-10 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,3,3,-1],[-2,1,1,3],[1,-3,2,1]] det=-340 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[2,-1,1,3],[-2,1,1,3],[1,-3,2,1]] det=-100 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[2,-1,1,3],[-2,1,1,3],[1,-3,2,1]] det=0 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[3,-1,3,1],[-2,1,1,3],[1,-3,2,1]] det=-70 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[3,-1,3,1],[-2,1,1,3],[1,-3,2,1]] det=-180 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-1,3,-1,3],[-2,1,1,3],[1,-3,2,1]] det=-70 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-1,3,-1,3],[-2,1,1,3],[1,-3,2,1]] det=20 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-3,-2,-2,-2],[-2,1,1,3],[1,-3,2,1]] det=130 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-3,-2,-2,-2],[-2,1,1,3],[1,-3,2,1]] det=220 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,1,1,2],[-3,3,1,2],[1,-3,2,1]] det=-52 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,1,1,2],[-3,3,1,2],[1,-3,2,1]] det=-64 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,3,3,-1],[-3,3,1,2],[1,-3,2,1]] det=35 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,3,3,-1],[-3,3,1,2],[1,-3,2,1]] det=-372 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[2,-1,1,3],[-3,3,1,2],[1,-3,2,1]] det=-82 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[2,-1,1,3],[-3,3,1,2],[1,-3,2,1]] det=16 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[3,-1,3,1],[-3,3,1,2],[1,-3,2,1]] det=-25 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[3,-1,3,1],[-3,3,1,2],[1,-3,2,1]] det=-212 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-1,3,-1,3],[-3,3,1,2],[1,-3,2,1]] det=-79 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-1,3,-1,3],[-3,3,1,2],[1,-3,2,1]] det=84 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-3,-2,-2,-2],[-3,3,1,2],[1,-3,2,1]] det=73 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-3,-2,-2,-2],[-3,3,1,2],[1,-3,2,1]] det=236 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,1,1,2],[1,-3,3,3],[-1,1,2,-1]] det=-43 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,1,1,2],[1,-3,3,3],[-1,1,2,-1]] det=-18 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,3,3,-1],[1,-3,3,3],[-1,1,2,-1]] det=-106 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,3,3,-1],[1,-3,3,3],[-1,1,2,-1]] det=104 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[2,-1,1,3],[1,-3,3,3],[-1,1,2,-1]] det=-46 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[2,-1,1,3],[1,-3,3,3],[-1,1,2,-1]] det=14 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[3,-1,3,1],[1,-3,3,3],[-1,1,2,-1]] det=-112 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[3,-1,3,1],[1,-3,3,3],[-1,1,2,-1]] det=168 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-1,3,-1,3],[1,-3,3,3],[-1,1,2,-1]] det=26 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-1,3,-1,3],[1,-3,3,3],[-1,1,2,-1]] det=-204 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-3,-2,-2,-2],[1,-3,3,3],[-1,1,2,-1]] det=136 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-3,-2,-2,-2],[1,-3,3,3],[-1,1,2,-1]] det=-94 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,1,1,2],[-1,1,3,1],[-1,1,2,-1]] det=-7 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,1,1,2],[-1,1,3,1],[-1,1,2,-1]] det=14 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,3,3,-1],[-1,1,3,1],[-1,1,2,-1]] det=-16 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,3,3,-1],[-1,1,3,1],[-1,1,2,-1]] det=40 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[2,-1,1,3],[-1,1,3,1],[-1,1,2,-1]] det=-10 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[2,-1,1,3],[-1,1,3,1],[-1,1,2,-1]] det=46 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[3,-1,3,1],[-1,1,3,1],[-1,1,2,-1]] det=-22 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[3,-1,3,1],[-1,1,3,1],[-1,1,2,-1]] det=104 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-1,3,-1,3],[-1,1,3,1],[-1,1,2,-1]] det=8 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-1,3,-1,3],[-1,1,3,1],[-1,1,2,-1]] det=-76 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-3,-2,-2,-2],[-1,1,3,1],[-1,1,2,-1]] det=22 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-3,-2,-2,-2],[-1,1,3,1],[-1,1,2,-1]] det=-62 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,1,1,2],[-2,1,1,3],[-1,1,2,-1]] det=2 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,1,1,2],[-2,1,1,3],[-1,1,2,-1]] det=64 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,3,3,-1],[-2,1,1,3],[-1,1,2,-1]] det=20 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,3,3,-1],[-2,1,1,3],[-1,1,2,-1]] det=42 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[2,-1,1,3],[-2,1,1,3],[-1,1,2,-1]] det=-28 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[2,-1,1,3],[-2,1,1,3],[-1,1,2,-1]] det=144 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[3,-1,3,1],[-2,1,1,3],[-1,1,2,-1]] det=-40 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[3,-1,3,1],[-2,1,1,3],[-1,1,2,-1]] det=202 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-1,3,-1,3],[-2,1,1,3],[-1,1,2,-1]] det=44 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-1,3,-1,3],[-2,1,1,3],[-1,1,2,-1]] det=-74 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-3,-2,-2,-2],[-2,1,1,3],[-1,1,2,-1]] det=-8 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-3,-2,-2,-2],[-2,1,1,3],[-1,1,2,-1]] det=-126 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,1,1,2],[-3,3,1,2],[-1,1,2,-1]] det=20 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,1,1,2],[-3,3,1,2],[-1,1,2,-1]] det=80 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,3,3,-1],[-3,3,1,2],[-1,1,2,-1]] det=65 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,3,3,-1],[-3,3,1,2],[-1,1,2,-1]] det=10 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[2,-1,1,3],[-3,3,1,2],[-1,1,2,-1]] det=-10 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[2,-1,1,3],[-3,3,1,2],[-1,1,2,-1]] det=160 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[3,-1,3,1],[-3,3,1,2],[-1,1,2,-1]] det=5 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[3,-1,3,1],[-3,3,1,2],[-1,1,2,-1]] det=170 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-1,3,-1,3],[-3,3,1,2],[-1,1,2,-1]] det=35 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-1,3,-1,3],[-3,3,1,2],[-1,1,2,-1]] det=-10 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-3,-2,-2,-2],[-3,3,1,2],[-1,1,2,-1]] det=-65 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-3,-2,-2,-2],[-3,3,1,2],[-1,1,2,-1]] det=-110 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,1,1,2],[1,-3,3,3],[-2,3,2,-2]] det=-52 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,1,1,2],[1,-3,3,3],[-2,3,2,-2]] det=-13 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,3,3,-1],[1,-3,3,3],[-2,3,2,-2]] det=-136 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,3,3,-1],[1,-3,3,3],[-2,3,2,-2]] det=228 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[2,-1,1,3],[1,-3,3,3],[-2,3,2,-2]] det=-55 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[2,-1,1,3],[1,-3,3,3],[-2,3,2,-2]] det=19 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[3,-1,3,1],[1,-3,3,3],[-2,3,2,-2]] det=-142 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[3,-1,3,1],[1,-3,3,3],[-2,3,2,-2]] det=292 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-1,3,-1,3],[1,-3,3,3],[-2,3,2,-2]] det=38 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-1,3,-1,3],[1,-3,3,3],[-2,3,2,-2]] det=-318 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-3,-2,-2,-2],[1,-3,3,3],[-2,3,2,-2]] det=169 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-3,-2,-2,-2],[1,-3,3,3],[-2,3,2,-2]] det=-187 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,1,1,2],[-1,1,3,1],[-2,3,2,-2]] det=-16 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,1,1,2],[-1,1,3,1],[-2,3,2,-2]] det=19 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,3,3,-1],[-1,1,3,1],[-2,3,2,-2]] det=-46 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,3,3,-1],[-1,1,3,1],[-2,3,2,-2]] det=164 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[2,-1,1,3],[-1,1,3,1],[-2,3,2,-2]] det=-19 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[2,-1,1,3],[-1,1,3,1],[-2,3,2,-2]] det=51 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[3,-1,3,1],[-1,1,3,1],[-2,3,2,-2]] det=-52 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[3,-1,3,1],[-1,1,3,1],[-2,3,2,-2]] det=228 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-1,3,-1,3],[-1,1,3,1],[-2,3,2,-2]] det=20 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-1,3,-1,3],[-1,1,3,1],[-2,3,2,-2]] det=-190 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-3,-2,-2,-2],[-1,1,3,1],[-2,3,2,-2]] det=55 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-3,-2,-2,-2],[-1,1,3,1],[-2,3,2,-2]] det=-155 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,1,1,2],[-2,1,1,3],[-2,3,2,-2]] det=38 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,1,1,2],[-2,1,1,3],[-2,3,2,-2]] det=136 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,3,3,-1],[-2,1,1,3],[-2,3,2,-2]] det=35 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,3,3,-1],[-2,1,1,3],[-2,3,2,-2]] det=233 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[2,-1,1,3],[-2,1,1,3],[-2,3,2,-2]] det=8 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[2,-1,1,3],[-2,1,1,3],[-2,3,2,-2]] det=216 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[3,-1,3,1],[-2,1,1,3],[-2,3,2,-2]] det=-25 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[3,-1,3,1],[-2,1,1,3],[-2,3,2,-2]] det=393 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-1,3,-1,3],[-2,1,1,3],[-2,3,2,-2]] det=101 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-1,3,-1,3],[-2,1,1,3],[-2,3,2,-2]] det=-121 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-3,-2,-2,-2],[-2,1,1,3],[-2,3,2,-2]] det=-77 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-3,-2,-2,-2],[-2,1,1,3],[-2,3,2,-2]] det=-299 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,1,1,2],[-3,3,1,2],[-2,3,2,-2]] det=56 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,1,1,2],[-3,3,1,2],[-2,3,2,-2]] det=152 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,3,3,-1],[-3,3,1,2],[-2,3,2,-2]] det=80 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,3,3,-1],[-3,3,1,2],[-2,3,2,-2]] det=201 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[2,-1,1,3],[-3,3,1,2],[-2,3,2,-2]] det=26 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[2,-1,1,3],[-3,3,1,2],[-2,3,2,-2]] det=232 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[3,-1,3,1],[-3,3,1,2],[-2,3,2,-2]] det=20 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[3,-1,3,1],[-3,3,1,2],[-2,3,2,-2]] det=361 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-1,3,-1,3],[-3,3,1,2],[-2,3,2,-2]] det=92 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-1,3,-1,3],[-3,3,1,2],[-2,3,2,-2]] det=-57 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-3,-2,-2,-2],[-3,3,1,2],[-2,3,2,-2]] det=-134 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-3,-2,-2,-2],[-3,3,1,2],[-2,3,2,-2]] det=-283 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,1,1,2],[1,-3,3,3],[-3,1,-2,3]] det=163 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,1,1,2],[1,-3,3,3],[-3,1,-2,3]] det=164 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,3,3,-1],[1,-3,3,3],[-3,1,-2,3]] det=58 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,3,3,-1],[1,-3,3,3],[-3,1,-2,3]] det=524 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[2,-1,1,3],[1,-3,3,3],[-3,1,-2,3]] det=202 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[2,-1,1,3],[1,-3,3,3],[-3,1,-2,3]] det=-42 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[3,-1,3,1],[1,-3,3,3],[-3,1,-2,3]] det=136 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[3,-1,3,1],[1,-3,3,3],[-3,1,-2,3]] det=112 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-1,3,-1,3],[1,-3,3,3],[-3,1,-2,3]] det=190 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-1,3,-1,3],[1,-3,3,3],[-3,1,-2,3]] det=216 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-3,-2,-2,-2],[1,-3,3,3],[-3,1,-2,3]] det=-316 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-3,-2,-2,-2],[1,-3,3,3],[-3,1,-2,3]] det=-290 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,1,1,2],[-1,1,3,1],[-3,1,-2,3]] det=19 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,1,1,2],[-1,1,3,1],[-3,1,-2,3]] det=-72 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,3,3,-1],[-1,1,3,1],[-3,1,-2,3]] det=-32 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,3,3,-1],[-1,1,3,1],[-3,1,-2,3]] det=192 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[2,-1,1,3],[-1,1,3,1],[-3,1,-2,3]] det=58 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[2,-1,1,3],[-1,1,3,1],[-3,1,-2,3]] det=-278 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[3,-1,3,1],[-1,1,3,1],[-3,1,-2,3]] det=46 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[3,-1,3,1],[-1,1,3,1],[-3,1,-2,3]] det=-220 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-1,3,-1,3],[-1,1,3,1],[-3,1,-2,3]] det=-8 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-1,3,-1,3],[-1,1,3,1],[-3,1,-2,3]] det=76 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-3,-2,-2,-2],[-1,1,3,1],[-3,1,-2,3]] det=-22 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-3,-2,-2,-2],[-1,1,3,1],[-3,1,-2,3]] det=62 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,1,1,2],[-2,1,1,3],[-3,1,-2,3]] det=28 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,1,1,2],[-2,1,1,3],[-3,1,-2,3]] det=-22 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,3,3,-1],[-2,1,1,3],[-3,1,-2,3]] det=4 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,3,3,-1],[-2,1,1,3],[-3,1,-2,3]] det=194 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[2,-1,1,3],[-2,1,1,3],[-3,1,-2,3]] det=40 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[2,-1,1,3],[-2,1,1,3],[-3,1,-2,3]] det=-180 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[3,-1,3,1],[-2,1,1,3],[-3,1,-2,3]] det=28 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[3,-1,3,1],[-2,1,1,3],[-3,1,-2,3]] det=-122 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-1,3,-1,3],[-2,1,1,3],[-3,1,-2,3]] det=28 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-1,3,-1,3],[-2,1,1,3],[-3,1,-2,3]] det=78 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-3,-2,-2,-2],[-2,1,1,3],[-3,1,-2,3]] det=-52 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-3,-2,-2,-2],[-2,1,1,3],[-3,1,-2,3]] det=-2 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,1,1,2],[-3,3,1,2],[-3,1,-2,3]] det=-44 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,1,1,2],[-3,3,1,2],[-3,1,-2,3]] det=-140 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[1,3,3,-1],[-3,3,1,2],[-3,1,-2,3]] det=-41 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[1,3,3,-1],[-3,3,1,2],[-3,1,-2,3]] det=28 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[2,-1,1,3],[-3,3,1,2],[-3,1,-2,3]] det=-32 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[2,-1,1,3],[-3,3,1,2],[-3,1,-2,3]] det=-298 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[3,-1,3,1],[-3,3,1,2],[-3,1,-2,3]] det=-17 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[3,-1,3,1],[-3,3,1,2],[-3,1,-2,3]] det=-288 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-1,3,-1,3],[-3,3,1,2],[-3,1,-2,3]] det=-71 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-1,3,-1,3],[-3,3,1,2],[-3,1,-2,3]] det=8 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[1,-2,-3,-2],[-3,-2,-2,-2],[-3,3,1,2],[-3,1,-2,3]] det=95 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[3,3,-2,3],[-3,-2,-2,-2],[-3,3,1,2],[-3,1,-2,3]] det=174 [34,9,-33,-16] [147,-22,-140,-75] chain1 [[2,-2,-3,-1],[1,3,1,-3],[-1,-1,2,3],[-1,-2,2,-1]] det=-71 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,3,1,-3],[-1,-1,2,3],[-1,-2,2,-1]] det=-118 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,-1,-3,3],[-1,-1,2,3],[-1,-2,2,-1]] det=35 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,-1,-3,3],[-1,-1,2,3],[-1,-2,2,-1]] det=96 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,1,1,-2],[-1,-1,2,3],[-1,-2,2,-1]] det=-97 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,1,1,-2],[-1,-1,2,3],[-1,-2,2,-1]] det=-90 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,-1,-1,1],[-1,-1,2,3],[-1,-2,2,-1]] det=-44 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,-1,-1,1],[-1,-1,2,3],[-1,-2,2,-1]] det=17 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-1,1,-1],[-1,-1,2,3],[-1,-2,2,-1]] det=-123 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-1,1,-1],[-1,-1,2,3],[-1,-2,2,-1]] det=-62 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-3,-1,2],[-1,-1,2,3],[-1,-2,2,-1]] det=-70 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-3,-1,2],[-1,-1,2,3],[-1,-2,2,-1]] det=45 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[-1,3,-3,1],[-1,-1,2,3],[-1,-2,2,-1]] det=87 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[-1,3,-3,1],[-1,-1,2,3],[-1,-2,2,-1]] det=40 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,3,1,-3],[-2,1,2,2],[-1,-2,2,-1]] det=3 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,3,1,-3],[-2,1,2,2],[-1,-2,2,-1]] det=-50 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,-1,-3,3],[-2,1,2,2],[-1,-2,2,-1]] det=-11 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,-1,-3,3],[-2,1,2,2],[-1,-2,2,-1]] det=44 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,1,1,-2],[-2,1,2,2],[-1,-2,2,-1]] det=-23 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,1,1,-2],[-2,1,2,2],[-1,-2,2,-1]] det=-22 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,-1,-1,1],[-2,1,2,2],[-1,-2,2,-1]] det=-30 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,-1,-1,1],[-2,1,2,2],[-1,-2,2,-1]] det=25 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-1,1,-1],[-2,1,2,2],[-1,-2,2,-1]] det=-49 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-1,1,-1],[-2,1,2,2],[-1,-2,2,-1]] det=6 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-3,-1,2],[-2,1,2,2],[-1,-2,2,-1]] det=-56 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-3,-1,2],[-2,1,2,2],[-1,-2,2,-1]] det=53 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[-1,3,-3,1],[-2,1,2,2],[-1,-2,2,-1]] det=41 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[-1,3,-3,1],[-2,1,2,2],[-1,-2,2,-1]] det=-12 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,3,1,-3],[-3,3,2,1],[-1,-2,2,-1]] det=77 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,3,1,-3],[-3,3,2,1],[-1,-2,2,-1]] det=18 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,-1,-3,3],[-3,3,2,1],[-1,-2,2,-1]] det=-57 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,-1,-3,3],[-3,3,2,1],[-1,-2,2,-1]] det=-8 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,1,1,-2],[-3,3,2,1],[-1,-2,2,-1]] det=51 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,1,1,-2],[-3,3,2,1],[-1,-2,2,-1]] det=46 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,-1,-1,1],[-3,3,2,1],[-1,-2,2,-1]] det=-16 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,-1,-1,1],[-3,3,2,1],[-1,-2,2,-1]] det=33 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-1,1,-1],[-3,3,2,1],[-1,-2,2,-1]] det=25 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-1,1,-1],[-3,3,2,1],[-1,-2,2,-1]] det=74 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-3,-1,2],[-3,3,2,1],[-1,-2,2,-1]] det=-42 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-3,-1,2],[-3,3,2,1],[-1,-2,2,-1]] det=61 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[-1,3,-3,1],[-3,3,2,1],[-1,-2,2,-1]] det=-5 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[-1,3,-3,1],[-3,3,2,1],[-1,-2,2,-1]] det=-64 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,3,1,-3],[-1,-1,2,3],[-3,2,2,-3]] det=-53 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,3,1,-3],[-1,-1,2,3],[-3,2,2,-3]] det=-162 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,-1,-3,3],[-1,-1,2,3],[-3,2,2,-3]] det=73 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,-1,-3,3],[-1,-1,2,3],[-3,2,2,-3]] det=72 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,1,1,-2],[-1,-1,2,3],[-3,2,2,-3]] det=-79 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,1,1,-2],[-1,-1,2,3],[-3,2,2,-3]] det=-134 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,-1,-1,1],[-1,-1,2,3],[-3,2,2,-3]] det=-16 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,-1,-1,1],[-1,-1,2,3],[-3,2,2,-3]] det=-17 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-1,1,-1],[-1,-1,2,3],[-3,2,2,-3]] det=-105 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-1,1,-1],[-1,-1,2,3],[-3,2,2,-3]] det=-106 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-3,-1,2],[-1,-1,2,3],[-3,2,2,-3]] det=-42 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-3,-1,2],[-1,-1,2,3],[-3,2,2,-3]] det=11 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[-1,3,-3,1],[-1,-1,2,3],[-3,2,2,-3]] det=125 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[-1,3,-3,1],[-1,-1,2,3],[-3,2,2,-3]] det=16 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,3,1,-3],[-2,1,2,2],[-3,2,2,-3]] det=21 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,3,1,-3],[-2,1,2,2],[-3,2,2,-3]] det=-94 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,-1,-3,3],[-2,1,2,2],[-3,2,2,-3]] det=27 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,-1,-3,3],[-2,1,2,2],[-3,2,2,-3]] det=20 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,1,1,-2],[-2,1,2,2],[-3,2,2,-3]] det=-5 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,1,1,-2],[-2,1,2,2],[-3,2,2,-3]] det=-66 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,-1,-1,1],[-2,1,2,2],[-3,2,2,-3]] det=-2 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,-1,-1,1],[-2,1,2,2],[-3,2,2,-3]] det=-9 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-1,1,-1],[-2,1,2,2],[-3,2,2,-3]] det=-31 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-1,1,-1],[-2,1,2,2],[-3,2,2,-3]] det=-38 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-3,-1,2],[-2,1,2,2],[-3,2,2,-3]] det=-28 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-3,-1,2],[-2,1,2,2],[-3,2,2,-3]] det=19 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[-1,3,-3,1],[-2,1,2,2],[-3,2,2,-3]] det=79 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[-1,3,-3,1],[-2,1,2,2],[-3,2,2,-3]] det=-36 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,3,1,-3],[-3,3,2,1],[-3,2,2,-3]] det=95 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,3,1,-3],[-3,3,2,1],[-3,2,2,-3]] det=-26 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,-1,-3,3],[-3,3,2,1],[-3,2,2,-3]] det=-19 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,-1,-3,3],[-3,3,2,1],[-3,2,2,-3]] det=-32 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,1,1,-2],[-3,3,2,1],[-3,2,2,-3]] det=69 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,1,1,-2],[-3,3,2,1],[-3,2,2,-3]] det=2 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,-1,-1,1],[-3,3,2,1],[-3,2,2,-3]] det=12 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,-1,-1,1],[-3,3,2,1],[-3,2,2,-3]] det=-1 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-1,1,-1],[-3,3,2,1],[-3,2,2,-3]] det=43 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-1,1,-1],[-3,3,2,1],[-3,2,2,-3]] det=30 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-3,-1,2],[-3,3,2,1],[-3,2,2,-3]] det=-14 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-3,-1,2],[-3,3,2,1],[-3,2,2,-3]] det=27 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[-1,3,-3,1],[-3,3,2,1],[-3,2,2,-3]] det=33 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[-1,3,-3,1],[-3,3,2,1],[-3,2,2,-3]] det=-88 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,3,1,-3],[-1,-1,2,3],[-3,-2,-2,3]] det=11 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,3,1,-3],[-1,-1,2,3],[-3,-2,-2,3]] det=-36 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,-1,-3,3],[-1,-1,2,3],[-3,-2,-2,3]] det=137 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,-1,-3,3],[-1,-1,2,3],[-3,-2,-2,3]] det=198 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,1,1,-2],[-1,-1,2,3],[-3,-2,-2,3]] det=-5 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,1,1,-2],[-1,-1,2,3],[-3,-2,-2,3]] det=2 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,-1,-1,1],[-1,-1,2,3],[-3,-2,-2,3]] det=58 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,-1,-1,1],[-1,-1,2,3],[-3,-2,-2,3]] det=119 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-1,1,-1],[-1,-1,2,3],[-3,-2,-2,3]] det=-21 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-1,1,-1],[-1,-1,2,3],[-3,-2,-2,3]] det=40 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-3,-1,2],[-1,-1,2,3],[-3,-2,-2,3]] det=42 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-3,-1,2],[-1,-1,2,3],[-3,-2,-2,3]] det=157 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[-1,3,-3,1],[-1,-1,2,3],[-3,-2,-2,3]] det=169 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[-1,3,-3,1],[-1,-1,2,3],[-3,-2,-2,3]] det=122 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,3,1,-3],[-2,1,2,2],[-3,-2,-2,3]] det=15 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,3,1,-3],[-2,1,2,2],[-3,-2,-2,3]] det=-38 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,-1,-3,3],[-2,1,2,2],[-3,-2,-2,3]] det=21 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,-1,-3,3],[-2,1,2,2],[-3,-2,-2,3]] det=76 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,1,1,-2],[-2,1,2,2],[-3,-2,-2,3]] det=-1 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,1,1,-2],[-2,1,2,2],[-3,-2,-2,3]] det=0 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,-1,-1,1],[-2,1,2,2],[-3,-2,-2,3]] det=2 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,-1,-1,1],[-2,1,2,2],[-3,-2,-2,3]] det=57 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-1,1,-1],[-2,1,2,2],[-3,-2,-2,3]] det=-17 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-1,1,-1],[-2,1,2,2],[-3,-2,-2,3]] det=38 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-3,-1,2],[-2,1,2,2],[-3,-2,-2,3]] det=-14 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-3,-1,2],[-2,1,2,2],[-3,-2,-2,3]] det=95 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[-1,3,-3,1],[-2,1,2,2],[-3,-2,-2,3]] det=53 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[-1,3,-3,1],[-2,1,2,2],[-3,-2,-2,3]] det=0 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,3,1,-3],[-3,3,2,1],[-3,-2,-2,3]] det=19 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,3,1,-3],[-3,3,2,1],[-3,-2,-2,3]] det=-40 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[1,-1,-3,3],[-3,3,2,1],[-3,-2,-2,3]] det=-95 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[1,-1,-3,3],[-3,3,2,1],[-3,-2,-2,3]] det=-46 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,1,1,-2],[-3,3,2,1],[-3,-2,-2,3]] det=3 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,1,1,-2],[-3,3,2,1],[-3,-2,-2,3]] det=-2 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[2,-1,-1,1],[-3,3,2,1],[-3,-2,-2,3]] det=-54 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[2,-1,-1,1],[-3,3,2,1],[-3,-2,-2,3]] det=-5 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-1,1,-1],[-3,3,2,1],[-3,-2,-2,3]] det=-13 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-1,1,-1],[-3,3,2,1],[-3,-2,-2,3]] det=36 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[3,-3,-1,2],[-3,3,2,1],[-3,-2,-2,3]] det=-70 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[3,-3,-1,2],[-3,3,2,1],[-3,-2,-2,3]] det=33 [34,9,-33,-16] [165,76,-157,-102] chain1 [[2,-2,-3,-1],[-1,3,-3,1],[-3,3,2,1],[-3,-2,-2,3]] det=-63 [34,9,-33,-16] [165,76,-157,-102] chain1 [[3,-2,-1,-3],[-1,3,-3,1],[-3,3,2,1],[-3,-2,-2,3]] det=-122 [34,9,-33,-16] [165,76,-157,-102] chain1 [[1,2,-3,-1],[1,1,2,-3],[-2,2,2,3],[2,-2,2,3]] det=-200 [34,9,-33,-16] [167,25,-164,-64] chain1 [[2,2,-1,-3],[1,1,2,-3],[-2,2,2,3],[2,-2,2,3]] det=-168 [34,9,-33,-16] [167,25,-164,-64] chain1 [[3,-2,-3,1],[1,1,2,-3],[-2,2,2,3],[2,-2,2,3]] det=-136 [34,9,-33,-16] [167,25,-164,-64] chain1 [[1,2,-3,-1],[1,-3,-2,3],[-2,2,2,3],[2,-2,2,3]] det=200 [34,9,-33,-16] [167,25,-164,-64] chain1 [[2,2,-1,-3],[1,-3,-2,3],[-2,2,2,3],[2,-2,2,3]] det=168 [34,9,-33,-16] [167,25,-164,-64] chain1 [[3,-2,-3,1],[1,-3,-2,3],[-2,2,2,3],[2,-2,2,3]] det=136 [34,9,-33,-16] [167,25,-164,-64] chain1 [[1,2,-3,-1],[2,-1,2,-2],[-2,2,2,3],[2,-2,2,3]] det=-148 [34,9,-33,-16] [167,25,-164,-64] chain1 [[2,2,-1,-3],[2,-1,2,-2],[-2,2,2,3],[2,-2,2,3]] det=-148 [34,9,-33,-16] [167,25,-164,-64] chain1 [[3,-2,-3,1],[2,-1,2,-2],[-2,2,2,3],[2,-2,2,3]] det=-84 [34,9,-33,-16] [167,25,-164,-64] chain1 [[1,2,-3,-1],[3,-3,2,-1],[-2,2,2,3],[2,-2,2,3]] det=-96 [34,9,-33,-16] [167,25,-164,-64] chain1 [[2,2,-1,-3],[3,-3,2,-1],[-2,2,2,3],[2,-2,2,3]] det=-128 [34,9,-33,-16] [167,25,-164,-64] chain1 [[3,-2,-3,1],[3,-3,2,-1],[-2,2,2,3],[2,-2,2,3]] det=-32 [34,9,-33,-16] [167,25,-164,-64] chain1 [[1,2,-3,-1],[-1,1,-2,1],[-2,2,2,3],[2,-2,2,3]] det=96 [34,9,-33,-16] [167,25,-164,-64] chain1 [[2,2,-1,-3],[-1,1,-2,1],[-2,2,2,3],[2,-2,2,3]] det=128 [34,9,-33,-16] [167,25,-164,-64] chain1 [[3,-2,-3,1],[-1,1,-2,1],[-2,2,2,3],[2,-2,2,3]] det=32 [34,9,-33,-16] [167,25,-164,-64] chain1 [[1,2,-3,-1],[1,1,2,-3],[-2,2,2,3],[-3,-3,-1,-2]] det=231 [34,9,-33,-16] [167,25,-164,-64] chain1 [[2,2,-1,-3],[1,1,2,-3],[-2,2,2,3],[-3,-3,-1,-2]] det=160 [34,9,-33,-16] [167,25,-164,-64] chain1 [[3,-2,-3,1],[1,1,2,-3],[-2,2,2,3],[-3,-3,-1,-2]] det=-59 [34,9,-33,-16] [167,25,-164,-64] chain1 [[1,2,-3,-1],[1,-3,-2,3],[-2,2,2,3],[-3,-3,-1,-2]] det=-309 [34,9,-33,-16] [167,25,-164,-64] chain1 [[2,2,-1,-3],[1,-3,-2,3],[-2,2,2,3],[-3,-3,-1,-2]] det=-116 [34,9,-33,-16] [167,25,-164,-64] chain1 [[3,-2,-3,1],[1,-3,-2,3],[-2,2,2,3],[-3,-3,-1,-2]] det=-71 [34,9,-33,-16] [167,25,-164,-64] chain1 [[1,2,-3,-1],[2,-1,2,-2],[-2,2,2,3],[-3,-3,-1,-2]] det=114 [34,9,-33,-16] [167,25,-164,-64] chain1 [[2,2,-1,-3],[2,-1,2,-2],[-2,2,2,3],[-3,-3,-1,-2]] det=175 [34,9,-33,-16] [167,25,-164,-64] chain1 [[3,-2,-3,1],[2,-1,2,-2],[-2,2,2,3],[-3,-3,-1,-2]] det=-176 [34,9,-33,-16] [167,25,-164,-64] chain1 [[1,2,-3,-1],[3,-3,2,-1],[-2,2,2,3],[-3,-3,-1,-2]] det=-3 [34,9,-33,-16] [167,25,-164,-64] chain1 [[2,2,-1,-3],[3,-3,2,-1],[-2,2,2,3],[-3,-3,-1,-2]] det=190 [34,9,-33,-16] [167,25,-164,-64] chain1 [[3,-2,-3,1],[3,-3,2,-1],[-2,2,2,3],[-3,-3,-1,-2]] det=-293 [34,9,-33,-16] [167,25,-164,-64] chain1 [[1,2,-3,-1],[-1,1,-2,1],[-2,2,2,3],[-3,-3,-1,-2]] det=-75 [34,9,-33,-16] [167,25,-164,-64] chain1 [[2,2,-1,-3],[-1,1,-2,1],[-2,2,2,3],[-3,-3,-1,-2]] det=-146 [34,9,-33,-16] [167,25,-164,-64] chain1 [[3,-2,-3,1],[-1,1,-2,1],[-2,2,2,3],[-3,-3,-1,-2]] det=163 [34,9,-33,-16] [167,25,-164,-64] chain1 [[2,3,-3,1],[1,-3,-1,-2],[-2,2,3,1],[1,-2,3,2]] det=-46 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,1,-3,2],[1,-3,-1,-2],[-2,2,3,1],[1,-2,3,2]] det=-24 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,3,-1,-1],[1,-3,-1,-2],[-2,2,3,1],[1,-2,3,2]] det=-133 [34,9,-33,-16] [178,72,-165,-115] chain1 [[2,3,-3,1],[-1,-1,-3,-1],[-2,2,3,1],[1,-2,3,2]] det=99 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,1,-3,2],[-1,-1,-3,-1],[-2,2,3,1],[1,-2,3,2]] det=111 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,3,-1,-1],[-1,-1,-3,-1],[-2,2,3,1],[1,-2,3,2]] det=22 [34,9,-33,-16] [178,72,-165,-115] chain1 [[2,3,-3,1],[-2,1,-3,-2],[-2,2,3,1],[1,-2,3,2]] det=57 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,1,-3,2],[-2,1,-3,-2],[-2,2,3,1],[1,-2,3,2]] det=69 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,3,-1,-1],[-2,1,-3,-2],[-2,2,3,1],[1,-2,3,2]] det=-10 [34,9,-33,-16] [178,72,-165,-115] chain1 [[2,3,-3,1],[-3,3,-3,-3],[-2,2,3,1],[1,-2,3,2]] det=15 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,1,-3,2],[-3,3,-3,-3],[-2,2,3,1],[1,-2,3,2]] det=27 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,3,-1,-1],[-3,3,-3,-3],[-2,2,3,1],[1,-2,3,2]] det=-42 [34,9,-33,-16] [178,72,-165,-115] chain1 [[2,3,-3,1],[1,-3,-1,-2],[-3,2,1,3],[1,-2,3,2]] det=119 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,1,-3,2],[1,-3,-1,-2],[-3,2,1,3],[1,-2,3,2]] det=168 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,3,-1,-1],[1,-3,-1,-2],[-3,2,1,3],[1,-2,3,2]] det=32 [34,9,-33,-16] [178,72,-165,-115] chain1 [[2,3,-3,1],[-1,-1,-3,-1],[-3,2,1,3],[1,-2,3,2]] det=187 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,1,-3,2],[-1,-1,-3,-1],[-3,2,1,3],[1,-2,3,2]] det=226 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,3,-1,-1],[-1,-1,-3,-1],[-3,2,1,3],[1,-2,3,2]] det=110 [34,9,-33,-16] [178,72,-165,-115] chain1 [[2,3,-3,1],[-2,1,-3,-2],[-3,2,1,3],[1,-2,3,2]] det=68 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,1,-3,2],[-2,1,-3,-2],[-3,2,1,3],[1,-2,3,2]] det=107 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,3,-1,-1],[-2,1,-3,-2],[-3,2,1,3],[1,-2,3,2]] det=1 [34,9,-33,-16] [178,72,-165,-115] chain1 [[2,3,-3,1],[-3,3,-3,-3],[-3,2,1,3],[1,-2,3,2]] det=-51 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,1,-3,2],[-3,3,-3,-3],[-3,2,1,3],[1,-2,3,2]] det=-12 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,3,-1,-1],[-3,3,-3,-3],[-3,2,1,3],[1,-2,3,2]] det=-108 [34,9,-33,-16] [178,72,-165,-115] chain1 [[2,3,-3,1],[1,-3,-1,-2],[-2,2,3,1],[-2,2,1,2]] det=9 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,1,-3,2],[1,-3,-1,-2],[-2,2,3,1],[-2,2,1,2]] det=-14 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,3,-1,-1],[1,-3,-1,-2],[-2,2,3,1],[-2,2,1,2]] det=12 [34,9,-33,-16] [178,72,-165,-115] chain1 [[2,3,-3,1],[-1,-1,-3,-1],[-2,2,3,1],[-2,2,1,2]] det=59 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,1,-3,2],[-1,-1,-3,-1],[-2,2,3,1],[-2,2,1,2]] det=26 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,3,-1,-1],[-1,-1,-3,-1],[-2,2,3,1],[-2,2,1,2]] det=72 [34,9,-33,-16] [178,72,-165,-115] chain1 [[2,3,-3,1],[-2,1,-3,-2],[-2,2,3,1],[-2,2,1,2]] det=112 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,1,-3,2],[-2,1,-3,-2],[-2,2,3,1],[-2,2,1,2]] det=79 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,3,-1,-1],[-2,1,-3,-2],[-2,2,3,1],[-2,2,1,2]] det=135 [34,9,-33,-16] [178,72,-165,-115] chain1 [[2,3,-3,1],[-3,3,-3,-3],[-2,2,3,1],[-2,2,1,2]] det=165 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,1,-3,2],[-3,3,-3,-3],[-2,2,3,1],[-2,2,1,2]] det=132 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,3,-1,-1],[-3,3,-3,-3],[-2,2,3,1],[-2,2,1,2]] det=198 [34,9,-33,-16] [178,72,-165,-115] chain1 [[2,3,-3,1],[1,-3,-1,-2],[-3,2,1,3],[-2,2,1,2]] det=-6 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,1,-3,2],[1,-3,-1,-2],[-3,2,1,3],[-2,2,1,2]] det=-2 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,3,-1,-1],[1,-3,-1,-2],[-3,2,1,3],[-2,2,1,2]] det=-3 [34,9,-33,-16] [178,72,-165,-115] chain1 [[2,3,-3,1],[-1,-1,-3,-1],[-3,2,1,3],[-2,2,1,2]] det=-33 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,1,-3,2],[-1,-1,-3,-1],[-3,2,1,3],[-2,2,1,2]] det=-39 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,3,-1,-1],[-1,-1,-3,-1],[-3,2,1,3],[-2,2,1,2]] det=-20 [34,9,-33,-16] [178,72,-165,-115] chain1 [[2,3,-3,1],[-2,1,-3,-2],[-3,2,1,3],[-2,2,1,2]] det=-57 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,1,-3,2],[-2,1,-3,-2],[-3,2,1,3],[-2,2,1,2]] det=-63 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,3,-1,-1],[-2,1,-3,-2],[-3,2,1,3],[-2,2,1,2]] det=-34 [34,9,-33,-16] [178,72,-165,-115] chain1 [[2,3,-3,1],[-3,3,-3,-3],[-3,2,1,3],[-2,2,1,2]] det=-81 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,1,-3,2],[-3,3,-3,-3],[-3,2,1,3],[-2,2,1,2]] det=-87 [34,9,-33,-16] [178,72,-165,-115] chain1 [[3,3,-1,-1],[-3,3,-3,-3],[-3,2,1,3],[-2,2,1,2]] det=-48 [34,9,-33,-16] [178,72,-165,-115] chain1 [[2,-2,-3,-2],[1,-3,3,1],[-1,-2,2,2],[-2,1,2,-1]] det=-74 [34,9,-33,-16] [181,-108,-150,-109] chain1 [[2,-2,-3,-2],[-1,1,3,-1],[-1,-2,2,2],[-2,1,2,-1]] det=-44 [34,9,-33,-16] [181,-108,-150,-109] chain1 [[2,-2,-3,-2],[-1,-1,1,2],[-1,-2,2,2],[-2,1,2,-1]] det=19 [34,9,-33,-16] [181,-108,-150,-109] chain1 [[2,-2,-3,-2],[-2,1,1,1],[-1,-2,2,2],[-2,1,2,-1]] det=34 [34,9,-33,-16] [181,-108,-150,-109] chain1 [[2,-2,-3,-2],[-2,3,3,-2],[-1,-2,2,2],[-2,1,2,-1]] det=-29 [34,9,-33,-16] [181,-108,-150,-109] chain1 [[2,-2,-3,-2],[-3,1,-1,3],[-1,-2,2,2],[-2,1,2,-1]] det=112 [34,9,-33,-16] [181,-108,-150,-109] chain1 [[2,-2,-3,-2],[1,-3,3,1],[-1,-2,2,2],[-3,3,2,-2]] det=-105 [34,9,-33,-16] [181,-108,-150,-109] chain1 [[2,-2,-3,-2],[-1,1,3,-1],[-1,-2,2,2],[-3,3,2,-2]] det=-75 [34,9,-33,-16] [181,-108,-150,-109] chain1 [[2,-2,-3,-2],[-1,-1,1,2],[-1,-2,2,2],[-3,3,2,-2]] det=30 [34,9,-33,-16] [181,-108,-150,-109] chain1 [[2,-2,-3,-2],[-2,1,1,1],[-1,-2,2,2],[-3,3,2,-2]] det=45 [34,9,-33,-16] [181,-108,-150,-109] chain1 [[2,-2,-3,-2],[-2,3,3,-2],[-1,-2,2,2],[-3,3,2,-2]] det=-60 [34,9,-33,-16] [181,-108,-150,-109] chain1 [[2,-2,-3,-2],[-3,1,-1,3],[-1,-2,2,2],[-3,3,2,-2]] det=165 [34,9,-33,-16] [181,-108,-150,-109] chain1 [[2,2,-2,-2],[1,-2,-2,1],[-1,-3,2,3],[-1,3,2,2]] det=-38 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[3,-2,2,-3],[-1,-3,2,3],[-1,3,2,2]] det=110 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[-1,2,-2,-1],[-1,-3,2,3],[-1,3,2,2]] det=-42 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[1,-2,-2,1],[-2,-1,2,2],[-1,3,2,2]] det=6 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[3,-2,2,-3],[-2,-1,2,2],[-1,3,2,2]] det=-10 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[-1,2,-2,-1],[-2,-1,2,2],[-1,3,2,2]] det=2 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[1,-2,-2,1],[-3,1,2,1],[-1,3,2,2]] det=50 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[3,-2,2,-3],[-3,1,2,1],[-1,3,2,2]] det=-130 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[-1,2,-2,-1],[-3,1,2,1],[-1,3,2,2]] det=46 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[1,-2,-2,1],[-1,-3,2,3],[-3,-2,1,-3]] det=44 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[3,-2,2,-3],[-1,-3,2,3],[-3,-2,1,-3]] det=-80 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[-1,2,-2,-1],[-1,-3,2,3],[-3,-2,1,-3]] det=36 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[1,-2,-2,1],[-2,-1,2,2],[-3,-2,1,-3]] det=-20 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[3,-2,2,-3],[-2,-1,2,2],[-3,-2,1,-3]] det=60 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[-1,2,-2,-1],[-2,-1,2,2],[-3,-2,1,-3]] det=-28 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[1,-2,-2,1],[-3,1,2,1],[-3,-2,1,-3]] det=-84 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[3,-2,2,-3],[-3,1,2,1],[-3,-2,1,-3]] det=200 [34,9,-33,-16] [184,66,-175,-105] chain1 [[2,2,-2,-2],[-1,2,-2,-1],[-3,1,2,1],[-3,-2,1,-3]] det=-92 [34,9,-33,-16] [184,66,-175,-105] chain1 [[1,1,-3,-3],[1,-1,1,3],[-1,2,3,3],[-1,-2,1,3]] det=-36 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[1,-1,1,3],[-1,2,3,3],[-1,-2,1,3]] det=-20 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[1,-1,1,3],[-1,2,3,3],[-1,-2,1,3]] det=-4 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[2,-1,3,1],[-1,2,3,3],[-1,-2,1,3]] det=-42 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[2,-1,3,1],[-1,2,3,3],[-1,-2,1,3]] det=-78 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[2,-1,3,1],[-1,2,3,3],[-1,-2,1,3]] det=-114 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[3,-3,3,2],[-1,2,3,3],[-1,-2,1,3]] det=-66 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[3,-3,3,2],[-1,2,3,3],[-1,-2,1,3]] det=-102 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[3,-3,3,2],[-1,2,3,3],[-1,-2,1,3]] det=-138 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[-1,3,1,1],[-1,2,3,3],[-1,-2,1,3]] det=12 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[-1,3,1,1],[-1,2,3,3],[-1,-2,1,3]] det=28 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[-1,3,1,1],[-1,2,3,3],[-1,-2,1,3]] det=44 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[-2,3,-1,3],[-1,2,3,3],[-1,-2,1,3]] det=18 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[-2,3,-1,3],[-1,2,3,3],[-1,-2,1,3]] det=86 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[-2,3,-1,3],[-1,2,3,3],[-1,-2,1,3]] det=154 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[1,-1,1,3],[-3,-3,2,-2],[-1,-2,1,3]] det=46 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[1,-1,1,3],[-3,-3,2,-2],[-1,-2,1,3]] det=83 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[1,-1,1,3],[-3,-3,2,-2],[-1,-2,1,3]] det=120 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[2,-1,3,1],[-3,-3,2,-2],[-1,-2,1,3]] det=116 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[2,-1,3,1],[-3,-3,2,-2],[-1,-2,1,3]] det=234 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[2,-1,3,1],[-3,-3,2,-2],[-1,-2,1,3]] det=352 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[3,-3,3,2],[-3,-3,2,-2],[-1,-2,1,3]] det=187 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[3,-3,3,2],[-3,-3,2,-2],[-1,-2,1,3]] det=305 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[3,-3,3,2],[-3,-3,2,-2],[-1,-2,1,3]] det=423 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[-1,3,1,1],[-3,-3,2,-2],[-1,-2,1,3]] det=-96 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[-1,3,1,1],[-3,-3,2,-2],[-1,-2,1,3]] det=-59 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[-1,3,1,1],[-3,-3,2,-2],[-1,-2,1,3]] det=-22 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[-2,3,-1,3],[-3,-3,2,-2],[-1,-2,1,3]] det=-166 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[-2,3,-1,3],[-3,-3,2,-2],[-1,-2,1,3]] det=-210 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[-2,3,-1,3],[-3,-3,2,-2],[-1,-2,1,3]] det=-254 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[1,-1,1,3],[-1,2,3,3],[-2,2,3,-1]] det=30 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[1,-1,1,3],[-1,2,3,3],[-2,2,3,-1]] det=25 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[1,-1,1,3],[-1,2,3,3],[-2,2,3,-1]] det=20 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[2,-1,3,1],[-1,2,3,3],[-2,2,3,-1]] det=126 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[2,-1,3,1],[-1,2,3,3],[-2,2,3,-1]] det=69 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[2,-1,3,1],[-1,2,3,3],[-2,2,3,-1]] det=12 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[3,-3,3,2],[-1,2,3,3],[-2,2,3,-1]] det=153 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[3,-3,3,2],[-1,2,3,3],[-2,2,3,-1]] det=96 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[3,-3,3,2],[-1,2,3,3],[-2,2,3,-1]] det=39 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[-1,3,1,1],[-1,2,3,3],[-2,2,3,-1]] det=-24 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[-1,3,1,1],[-1,2,3,3],[-2,2,3,-1]] det=-29 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[-1,3,1,1],[-1,2,3,3],[-2,2,3,-1]] det=-34 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[-2,3,-1,3],[-1,2,3,3],[-2,2,3,-1]] det=-120 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[-2,3,-1,3],[-1,2,3,3],[-2,2,3,-1]] det=-73 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[-2,3,-1,3],[-1,2,3,3],[-2,2,3,-1]] det=-26 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[1,-1,1,3],[-3,-3,2,-2],[-2,2,3,-1]] det=-40 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[1,-1,1,3],[-3,-3,2,-2],[-2,2,3,-1]] det=-80 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[1,-1,1,3],[-3,-3,2,-2],[-2,2,3,-1]] det=-120 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[2,-1,3,1],[-3,-3,2,-2],[-2,2,3,-1]] det=-248 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[2,-1,3,1],[-3,-3,2,-2],[-2,2,3,-1]] det=-207 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[2,-1,3,1],[-3,-3,2,-2],[-2,2,3,-1]] det=-166 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[3,-3,3,2],[-3,-3,2,-2],[-2,2,3,-1]] det=-316 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[3,-3,3,2],[-3,-3,2,-2],[-2,2,3,-1]] det=-275 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[3,-3,3,2],[-3,-3,2,-2],[-2,2,3,-1]] det=-234 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[-1,3,1,1],[-3,-3,2,-2],[-2,2,3,-1]] det=96 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[-1,3,1,1],[-3,-3,2,-2],[-2,2,3,-1]] det=56 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[-1,3,1,1],[-3,-3,2,-2],[-2,2,3,-1]] det=16 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[-2,3,-1,3],[-3,-3,2,-2],[-2,2,3,-1]] det=304 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[-2,3,-1,3],[-3,-3,2,-2],[-2,2,3,-1]] det=183 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[-2,3,-1,3],[-3,-3,2,-2],[-2,2,3,-1]] det=62 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[1,-1,1,3],[-1,2,3,3],[-3,2,1,1]] det=-48 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[1,-1,1,3],[-1,2,3,3],[-3,2,1,1]] det=-32 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[1,-1,1,3],[-1,2,3,3],[-3,2,1,1]] det=-16 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[2,-1,3,1],[-1,2,3,3],[-3,2,1,1]] det=48 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[2,-1,3,1],[-1,2,3,3],[-3,2,1,1]] det=12 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[2,-1,3,1],[-1,2,3,3],[-3,2,1,1]] det=-24 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[3,-3,3,2],[-1,2,3,3],[-3,2,1,1]] det=24 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[3,-3,3,2],[-1,2,3,3],[-3,2,1,1]] det=-12 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[3,-3,3,2],[-1,2,3,3],[-3,2,1,1]] det=-48 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[-1,3,1,1],[-1,2,3,3],[-3,2,1,1]] det=0 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[-1,3,1,1],[-1,2,3,3],[-3,2,1,1]] det=16 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[-1,3,1,1],[-1,2,3,3],[-3,2,1,1]] det=32 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[-2,3,-1,3],[-1,2,3,3],[-3,2,1,1]] det=-96 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[-2,3,-1,3],[-1,2,3,3],[-3,2,1,1]] det=-28 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[-2,3,-1,3],[-1,2,3,3],[-3,2,1,1]] det=40 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[1,-1,1,3],[-3,-3,2,-2],[-3,2,1,1]] det=54 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[1,-1,1,3],[-3,-3,2,-2],[-3,2,1,1]] det=91 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[1,-1,1,3],[-3,-3,2,-2],[-3,2,1,1]] det=128 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[2,-1,3,1],[-3,-3,2,-2],[-3,2,1,1]] det=-154 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[2,-1,3,1],[-3,-3,2,-2],[-3,2,1,1]] det=-36 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[2,-1,3,1],[-3,-3,2,-2],[-3,2,1,1]] det=82 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[3,-3,3,2],[-3,-3,2,-2],[-3,2,1,1]] det=-83 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[3,-3,3,2],[-3,-3,2,-2],[-3,2,1,1]] det=35 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[3,-3,3,2],[-3,-3,2,-2],[-3,2,1,1]] det=153 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[-1,3,1,1],[-3,-3,2,-2],[-3,2,1,1]] det=-88 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[-1,3,1,1],[-3,-3,2,-2],[-3,2,1,1]] det=-51 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[-1,3,1,1],[-3,-3,2,-2],[-3,2,1,1]] det=-14 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[1,1,-3,-3],[-2,3,-1,3],[-3,-3,2,-2],[-3,2,1,1]] det=120 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,-1,-3,-2],[-2,3,-1,3],[-3,-3,2,-2],[-3,2,1,1]] det=76 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[3,-3,-3,-1],[-2,3,-1,3],[-3,-3,2,-2],[-3,2,1,1]] det=32 [34,9,-33,-16] [190,-56,-163,-133] chain1 [[2,1,-2,-3],[1,1,2,1],[-1,1,3,2],[-2,-3,3,-3]] det=63 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[1,1,2,1],[-1,1,3,2],[-2,-3,3,-3]] det=-17 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[2,-1,2,2],[-1,1,3,2],[-2,-3,3,-3]] det=169 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[2,-1,2,2],[-1,1,3,2],[-2,-3,3,-3]] det=89 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[3,-3,2,3],[-1,1,3,2],[-2,-3,3,-3]] det=275 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[3,-3,2,3],[-1,1,3,2],[-2,-3,3,-3]] det=195 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[-3,-2,-1,-3],[-1,1,3,2],[-2,-3,3,-3]] det=-134 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[-3,-2,-1,-3],[-1,1,3,2],[-2,-3,3,-3]] det=-16 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[1,1,2,1],[-2,3,3,1],[-2,-3,3,-3]] det=194 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[1,1,2,1],[-2,3,3,1],[-2,-3,3,-3]] det=114 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[2,-1,2,2],[-2,3,3,1],[-2,-3,3,-3]] det=300 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[2,-1,2,2],[-2,3,3,1],[-2,-3,3,-3]] det=220 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[3,-3,2,3],[-2,3,3,1],[-2,-3,3,-3]] det=406 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[3,-3,2,3],[-2,3,3,1],[-2,-3,3,-3]] det=326 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[-3,-2,-1,-3],[-2,3,3,1],[-2,-3,3,-3]] det=-310 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[-3,-2,-1,-3],[-2,3,3,1],[-2,-3,3,-3]] det=-192 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[1,1,2,1],[-3,3,1,3],[-2,-3,3,-3]] det=196 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[1,1,2,1],[-3,3,1,3],[-2,-3,3,-3]] det=49 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[2,-1,2,2],[-3,3,1,3],[-2,-3,3,-3]] det=191 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[2,-1,2,2],[-3,3,1,3],[-2,-3,3,-3]] det=44 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[3,-3,2,3],[-3,3,1,3],[-2,-3,3,-3]] det=186 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[3,-3,2,3],[-3,3,1,3],[-2,-3,3,-3]] det=39 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[-3,-2,-1,-3],[-3,3,1,3],[-2,-3,3,-3]] det=-261 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[-3,-2,-1,-3],[-3,3,1,3],[-2,-3,3,-3]] det=-64 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[1,1,2,1],[-1,1,3,2],[-3,-3,1,-1]] det=35 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[1,1,2,1],[-1,1,3,2],[-3,-3,1,-1]] det=-6 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[2,-1,2,2],[-1,1,3,2],[-3,-3,1,-1]] det=100 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[2,-1,2,2],[-1,1,3,2],[-3,-3,1,-1]] det=59 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[3,-3,2,3],[-1,1,3,2],[-3,-3,1,-1]] det=165 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[3,-3,2,3],[-1,1,3,2],[-3,-3,1,-1]] det=124 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[-3,-2,-1,-3],[-1,1,3,2],[-3,-3,1,-1]] det=-50 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[-3,-2,-1,-3],[-1,1,3,2],[-3,-3,1,-1]] det=-49 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[1,1,2,1],[-2,3,3,1],[-3,-3,1,-1]] det=108 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[1,1,2,1],[-2,3,3,1],[-3,-3,1,-1]] det=67 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[2,-1,2,2],[-2,3,3,1],[-3,-3,1,-1]] det=173 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[2,-1,2,2],[-2,3,3,1],[-3,-3,1,-1]] det=132 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[3,-3,2,3],[-2,3,3,1],[-3,-3,1,-1]] det=238 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[3,-3,2,3],[-2,3,3,1],[-3,-3,1,-1]] det=197 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[-3,-2,-1,-3],[-2,3,3,1],[-3,-3,1,-1]] det=-93 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[-3,-2,-1,-3],[-2,3,3,1],[-3,-3,1,-1]] det=-92 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[1,1,2,1],[-3,3,1,3],[-3,-3,1,-1]] det=110 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[1,1,2,1],[-3,3,1,3],[-3,-3,1,-1]] det=2 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[2,-1,2,2],[-3,3,1,3],[-3,-3,1,-1]] det=64 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[2,-1,2,2],[-3,3,1,3],[-3,-3,1,-1]] det=-44 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[3,-3,2,3],[-3,3,1,3],[-3,-3,1,-1]] det=18 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[3,-3,2,3],[-3,3,1,3],[-3,-3,1,-1]] det=-90 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[2,1,-2,-3],[-3,-2,-1,-3],[-3,3,1,3],[-3,-3,1,-1]] det=-44 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[3,-1,-2,-2],[-3,-2,-1,-3],[-3,3,1,3],[-3,-3,1,-1]] det=36 [34,9,-33,-16] [191,-39,-156,-146] chain1 [[1,3,-3,-2],[1,1,-2,1],[-1,-2,2,3],[-3,2,1,2]] det=0 [34,9,-33,-16] [192,93,-166,-149] chain1 [[2,1,-3,-1],[1,1,-2,1],[-1,-2,2,3],[-3,2,1,2]] det=10 [34,9,-33,-16] [192,93,-166,-149] chain1 [[3,1,-1,-3],[1,1,-2,1],[-1,-2,2,3],[-3,2,1,2]] det=-55 [34,9,-33,-16] [192,93,-166,-149] chain1 [[1,3,-3,-2],[2,-1,-2,2],[-1,-2,2,3],[-3,2,1,2]] det=-6 [34,9,-33,-16] [192,93,-166,-149] chain1 [[2,1,-3,-1],[2,-1,-2,2],[-1,-2,2,3],[-3,2,1,2]] det=4 [34,9,-33,-16] [192,93,-166,-149] chain1 [[3,1,-1,-3],[2,-1,-2,2],[-1,-2,2,3],[-3,2,1,2]] det=-69 [34,9,-33,-16] [192,93,-166,-149] chain1 [[1,3,-3,-2],[3,1,2,-3],[-1,-2,2,3],[-3,2,1,2]] det=78 [34,9,-33,-16] [192,93,-166,-149] chain1 [[2,1,-3,-1],[3,1,2,-3],[-1,-2,2,3],[-3,2,1,2]] det=104 [34,9,-33,-16] [192,93,-166,-149] chain1 [[3,1,-1,-3],[3,1,2,-3],[-1,-2,2,3],[-3,2,1,2]] det=39 [34,9,-33,-16] [192,93,-166,-149] chain1 [[1,3,-3,-2],[3,-3,-2,3],[-1,-2,2,3],[-3,2,1,2]] det=-12 [34,9,-33,-16] [192,93,-166,-149] chain1 [[2,1,-3,-1],[3,-3,-2,3],[-1,-2,2,3],[-3,2,1,2]] det=-2 [34,9,-33,-16] [192,93,-166,-149] chain1 [[3,1,-1,-3],[3,-3,-2,3],[-1,-2,2,3],[-3,2,1,2]] det=-83 [34,9,-33,-16] [192,93,-166,-149] chain1 [[1,3,-3,-2],[1,1,-2,1],[-3,2,2,1],[-3,2,1,2]] det=-20 [34,9,-33,-16] [192,93,-166,-149] chain1 [[2,1,-3,-1],[1,1,-2,1],[-3,2,2,1],[-3,2,1,2]] det=-10 [34,9,-33,-16] [192,93,-166,-149] chain1 [[3,1,-1,-3],[1,1,-2,1],[-3,2,2,1],[-3,2,1,2]] det=-5 [34,9,-33,-16] [192,93,-166,-149] chain1 [[1,3,-3,-2],[2,-1,-2,2],[-3,2,2,1],[-3,2,1,2]] det=-26 [34,9,-33,-16] [192,93,-166,-149] chain1 [[2,1,-3,-1],[2,-1,-2,2],[-3,2,2,1],[-3,2,1,2]] det=-16 [34,9,-33,-16] [192,93,-166,-149] chain1 [[3,1,-1,-3],[2,-1,-2,2],[-3,2,2,1],[-3,2,1,2]] det=-19 [34,9,-33,-16] [192,93,-166,-149] chain1 [[1,3,-3,-2],[3,1,2,-3],[-3,2,2,1],[-3,2,1,2]] det=-58 [34,9,-33,-16] [192,93,-166,-149] chain1 [[2,1,-3,-1],[3,1,2,-3],[-3,2,2,1],[-3,2,1,2]] det=-32 [34,9,-33,-16] [192,93,-166,-149] chain1 [[3,1,-1,-3],[3,1,2,-3],[-3,2,2,1],[-3,2,1,2]] det=-27 [34,9,-33,-16] [192,93,-166,-149] chain1 [[1,3,-3,-2],[3,-3,-2,3],[-3,2,2,1],[-3,2,1,2]] det=-32 [34,9,-33,-16] [192,93,-166,-149] chain1 [[2,1,-3,-1],[3,-3,-2,3],[-3,2,2,1],[-3,2,1,2]] det=-22 [34,9,-33,-16] [192,93,-166,-149] chain1 [[3,1,-1,-3],[3,-3,-2,3],[-3,2,2,1],[-3,2,1,2]] det=-33 [34,9,-33,-16] [192,93,-166,-149] chain1 [[2,3,-2,-2],[1,-1,2,-1],[-1,-1,3,3],[-2,2,2,-3]] det=125 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[1,-1,2,-1],[-1,-1,3,3],[-2,2,2,-3]] det=92 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-1,3,2,-3],[-1,-1,3,3],[-2,2,2,-3]] det=15 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-1,3,2,-3],[-1,-1,3,3],[-2,2,2,-3]] det=-18 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-1,-1,-2,3],[-1,-1,3,3],[-2,2,2,-3]] det=-125 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-1,-1,-2,3],[-1,-1,3,3],[-2,2,2,-3]] det=-70 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-2,1,-2,2],[-1,-1,3,3],[-2,2,2,-3]] det=-180 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-2,1,-2,2],[-1,-1,3,3],[-2,2,2,-3]] det=-125 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-3,3,-2,1],[-1,-1,3,3],[-2,2,2,-3]] det=-235 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-3,3,-2,1],[-1,-1,3,3],[-2,2,2,-3]] det=-180 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[1,-1,2,-1],[-2,1,3,2],[-2,2,2,-3]] det=145 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[1,-1,2,-1],[-2,1,3,2],[-2,2,2,-3]] det=112 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-1,3,2,-3],[-2,1,3,2],[-2,2,2,-3]] det=35 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-1,3,2,-3],[-2,1,3,2],[-2,2,2,-3]] det=2 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-1,-1,-2,3],[-2,1,3,2],[-2,2,2,-3]] det=-145 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-1,-1,-2,3],[-2,1,3,2],[-2,2,2,-3]] det=-90 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-2,1,-2,2],[-2,1,3,2],[-2,2,2,-3]] det=-200 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-2,1,-2,2],[-2,1,3,2],[-2,2,2,-3]] det=-145 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-3,3,-2,1],[-2,1,3,2],[-2,2,2,-3]] det=-255 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-3,3,-2,1],[-2,1,3,2],[-2,2,2,-3]] det=-200 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[1,-1,2,-1],[-3,3,3,1],[-2,2,2,-3]] det=165 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[1,-1,2,-1],[-3,3,3,1],[-2,2,2,-3]] det=132 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-1,3,2,-3],[-3,3,3,1],[-2,2,2,-3]] det=55 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-1,3,2,-3],[-3,3,3,1],[-2,2,2,-3]] det=22 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-1,-1,-2,3],[-3,3,3,1],[-2,2,2,-3]] det=-165 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-1,-1,-2,3],[-3,3,3,1],[-2,2,2,-3]] det=-110 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-2,1,-2,2],[-3,3,3,1],[-2,2,2,-3]] det=-220 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-2,1,-2,2],[-3,3,3,1],[-2,2,2,-3]] det=-165 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-3,3,-2,1],[-3,3,3,1],[-2,2,2,-3]] det=-275 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-3,3,-2,1],[-3,3,3,1],[-2,2,2,-3]] det=-220 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[1,-1,2,-1],[-1,-1,3,3],[-2,-2,-2,3]] det=-41 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[1,-1,2,-1],[-1,-1,3,3],[-2,-2,-2,3]] det=-84 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-1,3,2,-3],[-1,-1,3,3],[-2,-2,-2,3]] det=125 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-1,3,2,-3],[-1,-1,3,3],[-2,-2,-2,3]] det=82 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-1,-1,-2,3],[-1,-1,3,3],[-2,-2,-2,3]] det=-15 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-1,-1,-2,3],[-1,-1,3,3],[-2,-2,-2,3]] det=30 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-2,1,-2,2],[-1,-1,3,3],[-2,-2,-2,3]] det=68 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-2,1,-2,2],[-1,-1,3,3],[-2,-2,-2,3]] det=113 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-3,3,-2,1],[-1,-1,3,3],[-2,-2,-2,3]] det=151 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-3,3,-2,1],[-1,-1,3,3],[-2,-2,-2,3]] det=196 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[1,-1,2,-1],[-2,1,3,2],[-2,-2,-2,3]] det=-29 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[1,-1,2,-1],[-2,1,3,2],[-2,-2,-2,3]] det=-72 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-1,3,2,-3],[-2,1,3,2],[-2,-2,-2,3]] det=137 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-1,3,2,-3],[-2,1,3,2],[-2,-2,-2,3]] det=94 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-1,-1,-2,3],[-2,1,3,2],[-2,-2,-2,3]] det=-43 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-1,-1,-2,3],[-2,1,3,2],[-2,-2,-2,3]] det=2 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-2,1,-2,2],[-2,1,3,2],[-2,-2,-2,3]] det=40 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-2,1,-2,2],[-2,1,3,2],[-2,-2,-2,3]] det=85 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-3,3,-2,1],[-2,1,3,2],[-2,-2,-2,3]] det=123 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-3,3,-2,1],[-2,1,3,2],[-2,-2,-2,3]] det=168 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[1,-1,2,-1],[-3,3,3,1],[-2,-2,-2,3]] det=-17 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[1,-1,2,-1],[-3,3,3,1],[-2,-2,-2,3]] det=-60 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-1,3,2,-3],[-3,3,3,1],[-2,-2,-2,3]] det=149 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-1,3,2,-3],[-3,3,3,1],[-2,-2,-2,3]] det=106 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-1,-1,-2,3],[-3,3,3,1],[-2,-2,-2,3]] det=-71 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-1,-1,-2,3],[-3,3,3,1],[-2,-2,-2,3]] det=-26 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-2,1,-2,2],[-3,3,3,1],[-2,-2,-2,3]] det=12 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-2,1,-2,2],[-3,3,3,1],[-2,-2,-2,3]] det=57 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[2,3,-2,-2],[-3,3,-2,1],[-3,3,3,1],[-2,-2,-2,3]] det=95 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,1,-2,-1],[-3,3,-2,1],[-3,3,3,1],[-2,-2,-2,3]] det=140 [34,9,-33,-16] [193,-25,-190,-68] chain1 [[3,-2,-2,-3],[1,-1,2,2],[-3,-2,2,-1],[-1,-2,3,-1]] det=-72 [34,9,-33,-16] [198,-73,-170,-135] chain1 [[3,-2,-2,-3],[2,-3,2,3],[-3,-2,2,-1],[-1,-2,3,-1]] det=-160 [34,9,-33,-16] [198,-73,-170,-135] chain1 [[3,-2,-2,-3],[1,-1,2,2],[-3,-2,2,-1],[-2,-2,1,1]] det=88 [34,9,-33,-16] [198,-73,-170,-135] chain1 [[3,-2,-2,-3],[2,-3,2,3],[-3,-2,2,-1],[-2,-2,1,1]] det=120 [34,9,-33,-16] [198,-73,-170,-135] chain1 [[3,-2,-2,-3],[1,-1,2,2],[-3,-2,2,-1],[-3,2,3,-3]] det=-232 [34,9,-33,-16] [198,-73,-170,-135] chain1 [[3,-2,-2,-3],[2,-3,2,3],[-3,-2,2,-1],[-3,2,3,-3]] det=-320 [34,9,-33,-16] [198,-73,-170,-135] chain1 [[3,-2,-2,-3],[1,-1,2,2],[-3,-2,2,-1],[-3,-2,-1,3]] det=248 [34,9,-33,-16] [198,-73,-170,-135] chain1 [[3,-2,-2,-3],[2,-3,2,3],[-3,-2,2,-1],[-3,-2,-1,3]] det=400 [34,9,-33,-16] [198,-73,-170,-135] chain1 [[1,2,-3,-3],[1,1,1,1],[-3,-3,3,-3],[-2,-1,2,-1]] det=-30 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[3,-2,-3,-1],[1,1,1,1],[-3,-3,3,-3],[-2,-1,2,-1]] det=6 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[1,2,-3,-3],[1,3,3,-2],[-3,-3,3,-3],[-2,-1,2,-1]] det=-90 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[3,-2,-3,-1],[1,3,3,-2],[-3,-3,3,-3],[-2,-1,2,-1]] det=12 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[1,2,-3,-3],[2,1,3,-1],[-3,-3,3,-3],[-2,-1,2,-1]] det=-87 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[3,-2,-3,-1],[2,1,3,-1],[-3,-3,3,-3],[-2,-1,2,-1]] det=15 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[1,2,-3,-3],[2,-1,1,2],[-3,-3,3,-3],[-2,-1,2,-1]] det=-27 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[3,-2,-3,-1],[2,-1,1,2],[-3,-3,3,-3],[-2,-1,2,-1]] det=9 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[1,2,-3,-3],[3,-3,1,3],[-3,-3,3,-3],[-2,-1,2,-1]] det=-24 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[3,-2,-3,-1],[3,-3,1,3],[-3,-3,3,-3],[-2,-1,2,-1]] det=12 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[1,2,-3,-3],[-1,3,-1,2],[-3,-3,3,-3],[-2,-1,2,-1]] det=24 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[3,-2,-3,-1],[-1,3,-1,2],[-3,-3,3,-3],[-2,-1,2,-1]] det=-6 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[1,2,-3,-3],[-3,-2,-2,-3],[-3,-3,3,-3],[-2,-1,2,-1]] det=69 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[3,-2,-3,-1],[-3,-2,-2,-3],[-3,-3,3,-3],[-2,-1,2,-1]] det=-15 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[1,2,-3,-3],[1,1,1,1],[-3,-3,3,-3],[-3,1,2,-2]] det=-102 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[3,-2,-3,-1],[1,1,1,1],[-3,-3,3,-3],[-3,1,2,-2]] det=-66 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[1,2,-3,-3],[1,3,3,-2],[-3,-3,3,-3],[-3,1,2,-2]] det=-303 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[3,-2,-3,-1],[1,3,3,-2],[-3,-3,3,-3],[-3,1,2,-2]] det=-201 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[1,2,-3,-3],[2,1,3,-1],[-3,-3,3,-3],[-3,1,2,-2]] det=-300 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[3,-2,-3,-1],[2,1,3,-1],[-3,-3,3,-3],[-3,1,2,-2]] det=-198 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[1,2,-3,-3],[2,-1,1,2],[-3,-3,3,-3],[-3,1,2,-2]] det=-99 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[3,-2,-3,-1],[2,-1,1,2],[-3,-3,3,-3],[-3,1,2,-2]] det=-63 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[1,2,-3,-3],[3,-3,1,3],[-3,-3,3,-3],[-3,1,2,-2]] det=-96 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[3,-2,-3,-1],[3,-3,1,3],[-3,-3,3,-3],[-3,1,2,-2]] det=-60 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[1,2,-3,-3],[-1,3,-1,2],[-3,-3,3,-3],[-3,1,2,-2]] det=93 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[3,-2,-3,-1],[-1,3,-1,2],[-3,-3,3,-3],[-3,1,2,-2]] det=63 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[1,2,-3,-3],[-3,-2,-2,-3],[-3,-3,3,-3],[-3,1,2,-2]] det=237 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[3,-2,-3,-1],[-3,-2,-2,-3],[-3,-3,3,-3],[-3,1,2,-2]] det=153 [34,9,-33,-16] [199,-6,-180,-127] chain1 [[2,2,-3,-1],[2,2,3,2],[-1,-2,3,3],[1,3,2,3]] det=63 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[3,2,-1,-3],[2,2,3,2],[-1,-2,3,3],[1,3,2,3]] det=10 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[2,2,-3,-1],[-2,-3,-2,1],[-1,-2,3,3],[1,3,2,3]] det=-78 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[3,2,-1,-3],[-2,-3,-2,1],[-1,-2,3,3],[1,3,2,3]] det=-82 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[2,2,-3,-1],[2,2,3,2],[-3,2,3,1],[1,3,2,3]] det=-99 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[3,2,-1,-3],[2,2,3,2],[-3,2,3,1],[1,3,2,3]] det=-146 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[2,2,-3,-1],[-2,-3,-2,1],[-3,2,3,1],[1,3,2,3]] det=192 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[3,2,-1,-3],[-2,-3,-2,1],[-3,2,3,1],[1,3,2,3]] det=88 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[2,2,-3,-1],[2,2,3,2],[-1,-2,3,3],[-1,-2,1,-2]] det=-48 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[3,2,-1,-3],[2,2,3,2],[-1,-2,3,3],[-1,-2,1,-2]] det=-60 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[2,2,-3,-1],[-2,-3,-2,1],[-1,-2,3,3],[-1,-2,1,-2]] det=55 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[3,2,-1,-3],[-2,-3,-2,1],[-1,-2,3,3],[-1,-2,1,-2]] det=92 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[2,2,-3,-1],[2,2,3,2],[-3,2,3,1],[-1,-2,1,-2]] det=132 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[3,2,-1,-3],[2,2,3,2],[-3,2,3,1],[-1,-2,1,-2]] det=216 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[2,2,-3,-1],[-2,-3,-2,1],[-3,2,3,1],[-1,-2,1,-2]] det=-137 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[3,2,-1,-3],[-2,-3,-2,1],[-3,2,3,1],[-1,-2,1,-2]] det=-110 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[2,2,-3,-1],[2,2,3,2],[-1,-2,3,3],[-3,-2,-3,2]] det=72 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[3,2,-1,-3],[2,2,3,2],[-1,-2,3,3],[-3,-2,-3,2]] det=60 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[2,2,-3,-1],[-2,-3,-2,1],[-1,-2,3,3],[-3,-2,-3,2]] det=-69 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[3,2,-1,-3],[-2,-3,-2,1],[-1,-2,3,3],[-3,-2,-3,2]] det=-32 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[2,2,-3,-1],[2,2,3,2],[-3,2,3,1],[-3,-2,-3,2]] det=-252 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[3,2,-1,-3],[2,2,3,2],[-3,2,3,1],[-3,-2,-3,2]] det=-168 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[2,2,-3,-1],[-2,-3,-2,1],[-3,2,3,1],[-3,-2,-3,2]] det=39 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[3,2,-1,-3],[-2,-3,-2,1],[-3,2,3,1],[-3,-2,-3,2]] det=66 [34,9,-33,-16] [201,-45,-199,-53] chain1 [[3,2,-2,-1],[1,-3,3,-1],[-3,-2,3,-3],[-1,-1,2,2]] det=-63 [34,9,-33,-16] [202,-76,-171,-141] chain1 [[3,2,-2,-1],[-1,1,3,-3],[-3,-2,3,-3],[-1,-1,2,2]] det=41 [34,9,-33,-16] [202,-76,-171,-141] chain1 [[3,2,-2,-1],[-1,-3,-1,3],[-3,-2,3,-3],[-1,-1,2,2]] det=-53 [34,9,-33,-16] [202,-76,-171,-141] chain1 [[3,2,-2,-1],[-2,1,1,-1],[-3,-2,3,-3],[-1,-1,2,2]] det=46 [34,9,-33,-16] [202,-76,-171,-141] chain1 [[3,2,-2,-1],[-2,-1,-1,2],[-3,-2,3,-3],[-1,-1,2,2]] det=-1 [34,9,-33,-16] [202,-76,-171,-141] chain1 [[3,2,-2,-1],[-3,1,-1,1],[-3,-2,3,-3],[-1,-1,2,2]] det=51 [34,9,-33,-16] [202,-76,-171,-141] chain1 [[3,2,-2,-1],[-3,3,1,-2],[-3,-2,3,-3],[-1,-1,2,2]] det=98 [34,9,-33,-16] [202,-76,-171,-141] chain1 [[3,2,-2,-1],[1,-3,3,-1],[-3,-2,3,-3],[-2,1,2,1]] det=-131 [34,9,-33,-16] [202,-76,-171,-141] chain1 [[3,2,-2,-1],[-1,1,3,-3],[-3,-2,3,-3],[-2,1,2,1]] det=-27 [34,9,-33,-16] [202,-76,-171,-141] chain1 [[3,2,-2,-1],[-1,-3,-1,3],[-3,-2,3,-3],[-2,1,2,1]] det=7 [34,9,-33,-16] [202,-76,-171,-141] chain1 [[3,2,-2,-1],[-2,1,1,-1],[-3,-2,3,-3],[-2,1,2,1]] det=42 [34,9,-33,-16] [202,-76,-171,-141] chain1 [[3,2,-2,-1],[-2,-1,-1,2],[-3,-2,3,-3],[-2,1,2,1]] det=59 [34,9,-33,-16] [202,-76,-171,-141] chain1 [[3,2,-2,-1],[-3,1,-1,1],[-3,-2,3,-3],[-2,1,2,1]] det=111 [34,9,-33,-16] [202,-76,-171,-141] chain1 [[3,2,-2,-1],[-3,3,1,-2],[-3,-2,3,-3],[-2,1,2,1]] det=94 [34,9,-33,-16] [202,-76,-171,-141]
fe85d11f34d834f3b2595353ff24ca8b7fecc39d
60e7850cc06e77ea0a374afc7833ff5f474c7dba
/crabe-tp.sce
a43fa6bc7021308d106d0a981cfa99fad17b6967
[]
no_license
deschase/TPModeliserAlea
50d979c440cce6738b6cdccef7beb21dd0034b7c
c1237e476ec952f76879cec690f75452d5d6b7b3
refs/heads/master
2020-12-24T22:49:30.222139
2016-05-21T16:23:54
2016-05-21T16:23:54
56,993,933
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,678
sce
crabe-tp.sce
clear // Loi normale function [x]=normale(y,m,s2) x=%e^(-(y-m).^2/2/s2)/sqrt(2*%pi*s2) endfunction; // Test du chi 2 // Cette fonction retourne la p valeur P(chi2>zeta_n) // du test du chi2 d'adequation de loi // N est un vecteur ligne des occurences observees // p0 est un vecteur ligne correspondant a la loi sous H0 function[proba]=test_chi2(N,p0) n=sum(N);// taille de l'echantillon observe // calcul de zeta_ n zeta_n=n*sum(((N/n-p0).^2)./p0); // nombre de degres de liberte (= nombre de classes dans N-1) d= length(N)-1; // on calcule la proba pour un chi 2 à d-1 degres d'etre superieur a zeta [p,q]=cdfchi("PQ",zeta_n,d); proba=q; endfunction; // Ouvrir le fichier de données (nombre de crabes par intervalle) x=fscanfMat('crabe.txt'); x=x; // intervalles y=.580+.002+.004*[0:28]; yM=y+.002; ym=y-.002; Max=25; // Dessiner la loi normale correspondante nbCrabes = sum(x); esp = (y * x) / nbCrabes; var = ((y + 0.002 - esp).*(y + 0.002 - esp))*x / (nbCrabes); //plot(y, normale(y, esp, var)) // Tracer l'histogramme //bar(y,x/4) // P-valeur du test du chi 2 disp("P-valeur du test du chi 2:") disp(test_chi2(x'/4, normale(y ,esp , var))) // Données pi0=[1; 3; 4]/2/2/2; pi=pi0; mu=[.57; .67; .60]; s2=[1; 1; 1]/10000; rho=ones(2,1000); // Algorithme EM pour les crabes //------------------------------ N=1000; R=zeros(8,N+1); R(:,1)=[mu(1);mu(2);mu(3);pi(1);pi(2);s2(1);s2(2);s2(3)]; nbPopulation = 3 Y = zeros(1, 1000) crabId = 0 yLength = 29 firstSegmentCrabId = 0 for id=1:yLength yi = y(id) xi = x(id) for idInSegment=1:xi crabId = idInSegment + firstSegmentCrabId Y(crabId) = yi end firstSegmentCrabId = xi + firstSegmentCrabId end function [vecteurF]= f(Y, mu, s2) vecteurF = zeros(1000, nbPopulation) for crabId=1:1000 for i=1:nbPopulation vecteurF(crabId, i) = normale(Y(crabId), mu(i), s2(i)) end end endfunction function [vecteurFTheta]= fTheta(Y, mu, s2, pi) vecteurFTheta = f(Y, mu, s2) * pi endfunction for k=1:N; if modulo(k, 10) == 0 then disp("pi :") disp(pi) disp("mu :") disp(mu) disp("sigma :") disp(sqrt(s2)) end rho = diag(1 ./ fTheta(Y)) * f(Y, mu, s2) * diag(pi) pi = (sum(rho, 1) / N)' mu = Y * rho ./ sum(rho, 1) for j=1:nbPopulation matS2 = ((Y - mu(j)).^2 * rho) ./ sum(rho, 1) s2(j) = matS2(j) end s2 = s2' end; // Affichages bar(y,x/4) plot(y, pi(1)*normale(y, mu(1), s2(1)),"red") plot(y, pi(2)*normale(y, mu(2), s2(2)),"red") plot(y, pi(3)*normale(y, mu(3), s2(3)),"red") plot(y, pi(1)*normale(y, mu(1), s2(1)) + ... pi(2)*normale(y, mu(2), s2(2)) + ... pi(3)*normale(y, mu(3), s2(3)),"red")
fc9726fcd34c95f8576dc0dd67c723da08dc21fc
b891303eb65fe7f18e45744097cd94c1a605c36b
/zad3.sce
f9bc8cc437ba2f2c7f8a24fe14b861f565b5db40
[]
no_license
julialaska/pu
3d6c87c0fd8928683c96b3083fe38919e8b5be42
e33e70462fe0e021eac1dbcdd99b5a14c883b1fd
refs/heads/main
2023-02-17T00:04:51.726784
2021-01-20T12:54:06
2021-01-20T12:54:06
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
167
sce
zad3.sce
//Zad 3 clear clf clc x=[210 2012 2014 2016 2018] y=[33,23,42,23,44;27,12,62,12,75]; bar(x,y,'stacked'); xgrid title('Wykres słupkowy') legend('RMF','Zet')
5ec0574b63a899177a82043edbc173cd1f1199a3
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/macros/mtlb/%s_m_b.sci
3f54edb9479967b76871d7824c03428fd736b8ba
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
57
sci
%s_m_b.sci
function r=%s_m_b(a,b) // Copyright INRIA r=a*bool2s(b)
5526385863a2731fa6258e3cbbafc782eb9e6fa2
449d555969bfd7befe906877abab098c6e63a0e8
/2705/CH2/EX2.1/Ex2_1.sce
b87b88c81ef9288f0a2a44998e691e5d257b59b2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
595
sce
Ex2_1.sce
clear; clc; disp('Example 2.1'); // Given values Q = 2500; // Heat transferred into the system, [kJ] W = 1400; // Work transferred from the system, [kJ] // solution // since process carried out on a closed system, so using equation [4] del_E = Q-W; // Change in total energy, [kJ] mprintf('\n The Change in total energy is, del_E = %f kJ\n',del_E); if(del_E>0) disp('Since del_E is positive, so there is an increase in total enery') else disp('Since del_E is negative, so there is an decrease in total enery') end // There is mistake in the book's results unit // End
90a2a92c8c23025db3c941ae14f6185518832182
449d555969bfd7befe906877abab098c6e63a0e8
/2705/CH17/EX17.5/Ex17_5.sce
23733b131750dfe00d3679b56c90d5b93eb65e28
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,842
sce
Ex17_5.sce
clear; clc; disp('Example 17.5'); // aim : To determine // the brake power,indicated power and mechanicl efficiency // draw up an energy balance and as % age of the energy supplied // given values N = 50;// speed, [rev/s] BL = 267;// break load.,[N] BL1 = 178;// break load of cylinder cut1, [N] BL2 = 187;// break load of cylinder cut2, [N] BL3 = 182;// break load of cylinder cut3, [N] BL4 = 182;// break load of cylinder cut4, [N] FC = .568/130;// fuel consumption, [L/s] s = .72;// specific gravity of fuel CV = 43000;// calorific value of fuel, [kJ/kg] Te = 760;// exhaust temperature, [C] c = 1.015;// specific heat capacity of exhaust gas, [kJ/kg K] Ti = 18;// cooling water inlet temperature, [C] To = 56;// cooling water outlet temperature, [C] mw = .28;// cooling water flow rate, [kg/s] Ta = 21;// ambient tempearture, [C] C = 4.18;// specific heat capacity of cooling water, [kJ/kg K] // solution bp = BL*N/455;// brake power of engine, [kW] bp1 = BL1*N/455;// brake power of cylinder cut1, [kW] i1 = bp-bp1;// indicated power of cylinder cut1, [kW] bp2 = BL2*N/455;// brake power of cylinder cut2, [kW] i2 = bp-bp2;// indicated power of cylinder cut2, [kW] bp3 = BL3*N/455;// brake power of cylinder cut3, [kW] i3 = bp-bp3;// indicated power of cylinder cut3, [kW] bp4 = BL4*N/455;// brake power of cylinder cut4, [kW] i4 = bp-bp4;// indicated power of cylinder cut4, [kW] ip = i1+i2+i3+i4;// indicated power of engine, [kW] n_mec = bp/ip;// mechanical efficiency mprintf('\n The Brake power is = %f kW\n',bp); mprintf('\n The Indicated power is = %f kW\n',ip); mprintf('\n The mechanical efficiency is = %f percent\n',n_mec*100); mf = FC*s;// mass of fuel/s, [kg] ef = CV*mf;// energy from fuel/s, [kJ] me = 15*mf;// mass of exhaust/s,[kg],(given in condition) ee = me*c*(Te-Ta);// energy to exhaust/s,[kJ] ec = mw*C*(To-Ti);// energy to cooling water/s,[kJ] es = ef-(ee+ec+bp);// energy to surrounding,etc/s,[kJ] disp('Energy can be tabulated as :-'); disp('----------------------------------------------------------------------------------------------------'); disp(' kJ/s Percentage ') disp('----------------------------------------------------------------------------------------------------'); mprintf('\n Energy from fuel %f %f\n Energy to brake power %f %f\n Energy to exhaust %f %f\n Energy to coolant %f %f\n Energy to suroundings,etc. %f %f\n',ef,ef/ef*100,bp,bp/ef*100,ee,ee/ef*100,ec,ec/ef*100,es,es/ef*100); // there is minor variation in the result reported in the book // End
ebadf6d55ab512b9b1f63c9d40d7cff50b30a7d3
449d555969bfd7befe906877abab098c6e63a0e8
/3682/CH2/EX2.9/Ex2_9.sce
49d1abc37a2d75d2840adbcef261b2585837836d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
703
sce
Ex2_9.sce
// Exa 2.9 clc; clear; // Given data // A differential amplifier with single ended output // Referring circuit given in Fig. 2.9 Bo = 100; // current gain Re = 150; // Ω Rc = 10*10^3; // Ω IQ = 0.5*10^-3; // mA VT = 25*10^-3; // mV // Solution ICQ = IQ/2; gm = ICQ/VT; // in ʊ r_pi = Bo/gm; printf(' The differential mode gain for a single stage is found from the equivalent circuit shown in fig.(ii)\n on page no. 64 and is equal to '); ADM = (1/2)*(Bo*Rc/(r_pi+(1+Bo)*Re)); printf(' %d V/V. \n',round(ADM)); printf(' \n We can see that sign of ADM is positive because the output is taken at the collector of Q2\n whereas input is applied at the base of Q1. \n');
ea8adbbd80a8da99c8e8b1eeb8bd0d413f29882f
aef26b59d30e6dadcb4ad4adca5fef486bba8f39
/plsql/第一个匿名块.tst
be473d9e150b45b2fc7a9d34a75ac620acc07a8a
[]
no_license
BinYangXian/ora
23141658d122e552ae63d2c091a0b038446da275
ebb23fed403da5248f8926f902a247b4046e540c
refs/heads/master
2021-01-20T15:07:10.757649
2017-05-09T08:34:52
2017-05-09T08:34:52
90,722,061
0
0
null
null
null
null
GB18030
Scilab
false
false
728
tst
第一个匿名块.tst
PL/SQL Developer Test script 3.0 40 -- 第一个匿名块 -- 单行注释 /* 多行注释 基本结构 declare 声明变量 或者 声明变量和赋值 begin 变量的赋值 代码的业务逻辑 end; */ declare -- Local variables here num number; age number := 20; begin -- Test statements here -- dbms_output 相当于System.out num:=200; /* 赋值语句 := select into fetch into 游标(类似于集合) */ dbms_output.put_line(age); dbms_output.put('admin'); -- 将值放入缓存中 只有当调用了有换行符输出的语句的时候 才会输出 dbms_output.new_line; -- 打印换行符 end; 0 0
c607a2520c5289fbf6007657b13dfea8ae754c8c
449d555969bfd7befe906877abab098c6e63a0e8
/2510/CH17/EX17.8/Ex17_8.sce
f06516247ef8bb7ebbf51ca18e569cfeccdcc5c1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
3,374
sce
Ex17_8.sce
//Variable declaration: h1 = 13.0 //Air-side heat transfer coefficient (W/m^2.K) A = 1.0 //Base wall area (m^2) L = 2.5/100 //Length of steel fins (m) L2 = 1.5/10**3 //Length of steel wall (m) k = 13.0 //Thermal conductivity of fin (W/m.K) k1 = 38.0 //Thermal conductivity of steel wall (W/m.K) h2 = 260.0 //Water side heat transfer coefficient (W/m^2.K) T4 = 19.0 //Air temperature ( C) T1 = 83.0 //Water temperature ( C) t = 1.3/10**3 //Thickness of steel fins (m) w = 1.0 //Width of wall (m) S = 1.3/100 //Fin pitch(m) //Calculation: R1 = 1/(h1*A) //Air resistance ( C/W) (part 1) R2 = L2/(k1*A) //Conduction resistance ( C/W) R3 = 1/(h2*A) //Water resistance ( C/W) Rt = (R1+R3) //Total resistance ( C/W) (part 2) Q = (T1-T4)/Rt //Total heat transfer (W) Nf = 1/S //Number of fins (part 3) Lbe = w - Nf*t //Unfinned exposed base surface Abe = w*Lbe //Exposed base surface area (m^2) Lc = L+t/2 //Corrected length (m) Ap = Lc*t //Profile area (m^2) Af = 2*w*Lc //Fin surface area (m^2) Bi = h1*(t/2)/k1 //Biot number a = sqrt(Lc**3*h1/(k*Ap)) //Abscissa of the fin efficiency //From figure 17.3: nf = 0.88 //Fin efficiency Rb = 1/(h1*Abe) //Air thermal resistance of base wall ( C/W) Rf = 1/(h1*Nf*Af*nf) //Air thermal resistance of fins ( C/W) RT1 = 1/(1/Rb+1/Rf) //Total outside resistance of the fin array ( C/W) Rt3 = RT1+R3 //Total resistance on air side fins ( C/W) Qt = (T1-T4)/Rt3 //Heat transfer rate on air side fins (W) I = (Qt/Q - 1)*100 //Percent increase in heat transfer rate to air side fins (W) A = sqrt(Lc**3*h2/(k1*Ap)) //Abscissa of the new fin efficiency (part 4) //From figure 17.3: nf2 = 38.0 //New fin efficiency Rb2 = 1/(h2*Abe) //Thermal resistance of base wall ( C/W) Rf2 = 1/(h2*Nf*Af*nf2) //Thermal resistance of fins ( C/W) Rt4 = 1/(1/Rb2+1/Rf2) //Total resistance of the finned surface ( C/W) Rt5 = R1+Rt4 //Total resistance on water side fins ( C/W) QT1 = (T1-T4)/Rt5 //Heat transfer rate on water side fins (W) I2 = (QT1/Q - 1)*100 //Percent increase in heat transfer rate to water side fins (W) //Result: if (R2<R1 | R2<R3) then printf("1. The conduction resistance may be neglected.") else printf("1. The conduction resistance can not be neglected.") end printf("2. The rate of heat transfer from water to air is : %.1f W .",Q) printf("3. The percent increase in steady-state heat transfer rate by adding fins to the air side of the plane wall is : %.1f %%",I) printf("4. The percent increase in steady-state heat transfer rate by adding fins to the water side of the plane wall is : %.1f %%",I2) printf("____There is a calculation mistake in book in calculating Qt(83-19/0.0214 = 2999), hence slight differences in answer______")
340a956d75d979ede3edeaa57352806b53b54cc2
9fd700113e21acbb9d3cef5e6010e7f37656b6e6
/cs16b025_lab1/DMux8way.tst
070d1aa78b48900a4e761159a17fadd252441dcb
[]
no_license
madhav543/cs16b025_lab
01432fe8d0fbacf4dafe5189413943ec48afaed4
4924ea918b9b4dc6eb22b713e639204c9e59c697
refs/heads/master
2020-07-11T22:44:32.575114
2019-11-19T16:06:12
2019-11-19T16:06:12
204,659,765
0
0
null
null
null
null
UTF-8
Scilab
false
false
668
tst
DMux8way.tst
load DMux8Way.hdl, output-file DMux8Way.out, compare-to DMux8Way.cmp, output-list ip1%B2.1.2 s%B2.2.2 out1%B2.1.2 out2%B2.1.2 out3%B2.1.2 out4%B2.1.2 out5%B2.1.2 out6%B2.1.2 out7%B2.1.2 out8%B2.1.2; set ip1 0, set s %B000, eval, output; set s %B001, eval, output; set s %B010, eval, output; set s %B011, eval, output; set s %B100, eval, output; set s %B101, eval, output; set s %B110, eval, output; set s %B111, eval, output; set ip1 1, set s %B000, eval, output; set s %B001, eval, output; set s %B010, eval, output; set s %B011, eval, output; set s %B100, eval, output; set s %B101, eval, output; set s %B110, eval, output; set s %B111, eval, output;
b406727a412c11c7259d847bec08dd39c44f5535
449d555969bfd7befe906877abab098c6e63a0e8
/764/DEPENDENCIES/data1_3.sci
bbec76a815d6a79fc6143af5b20290500652243f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
211
sci
data1_3.sci
//Introduction Example 1.3 //Initial value of the series of power capacities kW a = 7.5 //Final value of the series of power capacities kW b = 75 //For five models m = 5 - 1 //For nine models n = 9 - 1
41aa8ff3ded8a6002674cdc5f1f99f3df383635d
449d555969bfd7befe906877abab098c6e63a0e8
/3428/CH1/EX1.5/Ex1_5.sce
6bacba006920425559ae5dbb1119efd4978f4cec
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
283
sce
Ex1_5.sce
//Section-1,Example-5,Page no.-AC.35 //To calculate the number average degree of polymerisation(DP_n bar)of polystrene. clc; M_nbar= 10^5 //(g/mol) M_o = (12*8)+(1*8) DP_nbar=(M_nbar/M_o) disp(DP_nbar,'Number average degree of polymerisation of polystrene')
4489f729e49bee442c4b4882ac9a91d2e623ade6
aa71d456514d0b21d0f207d4c14ee71876029f21
/aws-java-sdk-core/src/test/resources/resources/profileconfig/ProfileWithUnparseableCsmPort.tst
dbf95ce8078326e28a85dce493b675aa0428d35a
[ "Apache-2.0" ]
permissive
ckiosidis/aws-sdk-java
ff89fb1acd6f27a3792a9c86026b58e2b19a7d95
52c0498762e61e4c2d5cbc293cee61cd614a71f6
refs/heads/master
2020-03-29T05:34:20.817581
2018-09-21T19:28:54
2018-09-21T19:28:54
149,588,289
0
0
Apache-2.0
2018-09-21T19:28:55
2018-09-20T09:54:04
Java
UTF-8
Scilab
false
false
75
tst
ProfileWithUnparseableCsmPort.tst
[aws_csm] csm_enabled = true csm_port = onetwothreefour csm_clientid = foo
f9ed1fa461f27fecb499e6b62002d980f9da12f3
c2c094e5792a8d99eec660157b9b22bf111f175b
/Hardware/MBit.tst
7c9906a06f43bbba1ce99e2393f8d5779147cc03
[]
no_license
z2512690268/nand2teris
087bfbdb56fee154ee76d7d9e8d75a92a246be04
6f190f3d77b7b24fb0f2ae3a56691b2d60a19c33
refs/heads/main
2023-04-19T00:21:49.516211
2021-05-05T12:10:30
2021-05-05T12:10:30
364,537,511
0
0
null
null
null
null
UTF-8
Scilab
false
false
937
tst
MBit.tst
load MBit.hdl, output-file MBit.out, output-list time%S1.4.1 in load out; set in 1, set load 1, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 0, set load 1, tick, output; tock, output; set in 0, set load 1, tick, output; tock, output; set in 0, set load 1, tick, output; tock, output; set in 0, set load 1, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 1, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 0, set load 1, tick, output; tock, output; set in 1, set load 0, tick, output; tock, output; set in 1, set load 1, tick, output; tock, output; set in 0, set load 0, tick, output; tock, output; set in 1, set load 1, tick, output; tock, output; set in 1, set load 1, tick, output; tock, output;
40b8b078d08ee4e35aa06fa925b13e67f72cf7b9
449d555969bfd7befe906877abab098c6e63a0e8
/3784/CH4/EX4.21/Ex4_21.sce
fe83bafda48c3f28944361811575f39a74e93360
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
721
sce
Ex4_21.sce
clc //Variable Initialisation Ea=220//Input Voltage of motor in volts Ia=150//Armature Current in Ampere Ra=0.06//Armature resistance in ohm N1=1000//Rated Speed of Motor in rpm N2=500//Rated Speed of Motor in rpm N4=1350//Rated Speed of Motor in rpm d3=0.91//Duty Ratio Ia2=2*Ia //Solution Eb1=Ea-(Ia*Ra) Eb2=(N2/N1)*Eb1 E01=Eb2+(Ia*Ra) d1=E01/Ea E02=Eb2-(Ia*Ra) d2=E02/Ea E03=d3*Ea Eb3=E03+(Ia2*Ra) N3=(Eb3/Eb1)*N1 Pin=E03*Ia2 R=N1/N4 //Ratio of If1 and If2 printf('\n\n Duty ratio for motoring operation=%0.1f\n\n',d1) printf('\n\n Duty ratio for braking operation=%0.1f\n\n',d2) printf('\n\n Maximum permissible motor Speed=%0.1f rpm\n\n',N3) printf('\n\n Ratio of If1 and If2=%0.1f\n\n',R)
ef66d0b1058d6d53388ba2579f9712e7b8c6a597
449d555969bfd7befe906877abab098c6e63a0e8
/869/CH9/EX9.8/9_8.sce
311ba7283579d47f1c7a4b6099ebfcf4e6a2a591
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
323
sce
9_8.sce
clc alpha=11.2*10^(-6) //in/in/F E=15*10^6 //psi L=60 //in deltaT1=0.01 //in T2=50 //F deltaT=deltaT1/(alpha*L) printf("The temperature increase necessary to cause free end to touch B=%f F",deltaT) disp("From the geometry of the figure") sigma=(alpha*L*T2-deltaT1)*E/L printf("Stress in the rod=%d psi",sigma+1)
e747c9addb052dbbd83f7fb799c248b24948f753
449d555969bfd7befe906877abab098c6e63a0e8
/1382/CH3/EX3.4/ex_3_4.sce
5c0d85e233225a9c30957a5c60c99a23cdfc08b7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
231
sce
ex_3_4.sce
// Example 3.1: determine collector efficiency clc, clear; Vmax=25; //collector emitter voltag in volts Vmin=2.5;//collector emitter voltag in volts eta=(50*((Vmax-Vmin)/(Vmax+Vmin))); disp(eta,"collector efficiency (%) = ")
3d1f013d9fab5cdeee4bd115b2dd0a12143f503b
449d555969bfd7befe906877abab098c6e63a0e8
/2084/CH19/EX19.10w/19_10w.sce
cf6bd5ea1f574d95e9c421d60327c51fe34e0bc5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
885
sce
19_10w.sce
//developed in windows XP operating system 32bit //platform Scilab 5.4.1 clc;clear; //example 19.10w //calculation of the near point and the distance of the retina from the lens //given data P1=50//power1(in D) of the lens P2=60//power2(in D) of the lens //calculation //for the eye in fully relaxed condition,the focal length is the largest. //larger the focal length,smaller is the power of lens if(P1<P2) P=P1 else P=P2 end f=1/P//distance of the retina from lens ,equal to the focal length //for eye focused at near point the power is maximum if(P1>P2) Pdash=P1 else Pdash=P2 end fdash=1/Pdash//focal length v=abs(f)//image is formed at the retina u=1/((1/v)-(1/fdash))//near point......using the lens formula printf('the distance of the retina from the lens is %d cm',f*10^2) printf('\nthe near point is at %d cm',abs(u*10^2))
bf57621719c08c07a755d395c85cf41f14c1db0d
449d555969bfd7befe906877abab098c6e63a0e8
/2561/CH10/EX10.7/Ex10_7.sce
4938bb6e137f375049cd5a5b8d9819c8dae6deb1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
168
sce
Ex10_7.sce
//Ex10_7 clc x=72; disp("Decimal number="+string(x))//decimal value str=dec2hex(x)// decimal to hexadecimal disp("Eqivalent Hexadecimal number="+string(str))
41292cf307322e72d9ffd9089375b53ad4ad58cb
449d555969bfd7befe906877abab098c6e63a0e8
/1523/CH3/EX3.26/3_26.sce
4422d2c20d2ddae6a0a9b3e4419af27dd9bd07d0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
797
sce
3_26.sce
//Network Theorem 1 //page no-3.31 //example3.26 //calculation of Isc (short-circuit current) disp("Applying KVL to mesh 1:"); disp("7*I1-I2=10");....//equation 1 disp("Applying KVL to mesh 2:"); disp("-I1+6*I2-3*I3=0");....//equation 2 disp("Applying KVL to mesh 3:"); disp("3*I2-3*I3=20");....//equation 3 disp("solving these equations we get :");...//solving equations in matrix form A=[7 -1 0;-1 6 -3;0 3 -3]; B=[10 0 20]' X=inv(A)*B; disp(X); disp("I1 = -13.17 A"); a=13.17; printf("\nIsc = -%.2f A",a); //calculation of Rn (norton's resistance) disp("replacing the voltage source with short circuit "); c=1; b=6; x=(c*b)/(c+b); y=x+2; z=(y*3)/(y+3); printf("\nRn = %.2f Ohm",z); //calculation of IL (load current) n=10; i=a*(z/(z+n)); printf("\nIL = %.2f A",i);
cf3323d59dd670ca4b46819fc3a125f55ccd0316
25033eda4e7cd13f945f94c5dc35f15825066b42
/ExactCure/Nelder Mead/nelder mead affiche.sce
b2e5457984af57d6fc4d3ea224ae688456e32c7f
[]
no_license
julienguegan/Internships
a26cb9efa2f1715832511a7aa94d25bfc675388b
ad51d5845ed8fd41e29259c95e8beff80bac65cf
refs/heads/master
2020-12-20T21:54:29.099157
2020-01-25T19:20:10
2020-01-25T19:20:10
236,217,889
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,110
sce
nelder mead affiche.sce
clear function y = rastrigin(x) n = 2 A = 5 y = A*n+x(1)^2-A*cos(2*%pi*x(1))+x(2)^2-A*cos(2*%pi*x(2)); endfunction function z = rozenbrock(x) z = 10*(x(2)-x(1)^2)^2 + (1-x(1))^2; endfunction // ********* calcul F *********// f = rastrigin xmax = 3;xmin = -3;ymax = 3;ymin = -3; xstep = (xmax-xmin)/65 axe_x = xmin:xstep:xmax ystep = (ymax-ymin)/65 axe_y = ymin:ystep:ymax z=0 for i = xmin:xstep:xmax for j = ymin:ystep:ymax u = [i j] ind_i = (i/xstep)-(xmin/xstep)+1 ind_j = (j/ystep)-(ymin/ystep)+1 z(ind_i,ind_j) = f(u) end end clf() contour2d(axe_x,axe_y,z,45) a = gcf() a.color_map = rainbowcolormap(64) //////////////////////////////////// tol = 10^-4 itermax = 100 //points initiales x1 = [-1.3 2.5] x2 = [-1.4 1] x3 = [-0.5 1.5] x = [x1;x2;x3] A = [f(x1);f(x2);f(x3)] //initialisation du critere d'arret xbar = (x3 + x2)./2 xbarold = [0 0] k = 0 while (k<itermax )//& norm(xbar - xbarold)>tol)|k==1 xbarold = xbar [fsort index] = gsort(A) //tri par ordre décroissant xmin = x(index(3),:) xmax = x(index(1),:) xbar = (xmin + x(index(2),:))./2 //**** AFFICHAGE ***// // clf() // xset("fpf"," ") a = gcf() a.color_map = rainbowcolormap(64) plot([x(1,1) x(2,1)],[x(1,2) x(2,2)],'--','thickness',1) plot([x(1,1) x(3,1)],[x(1,2) x(3,2)],'--','thickness',1) plot([x(3,1) x(2,1)],[x(3,2) x(2,2)],'--','thickness',1) plot(xbar(1),xbar(2),'o') //reflection xrefl = xbar + (xbar - xmax) if f(xrefl)<f(xmin) then //expansion xe = xbar +2*(xbar - xmax) if f(xe)<f(xrefl) then xmax = xe else xmax = xrefl end elseif f(xrefl)<f(xmax) & f(xrefl)>f(xmin) xmax = xrefl else //contraction xe = xbar - 1/2*(xbar - xmax) if f(xe)<f(xmin) then xmax = xe else x(index(2),:) = xmax + 0.5*(x(index(2),:)-xmin) end end k = k+1 x = [xmax;x(index(2),:);xmin] A = [f(xmax);f(x(index(2),:));f(xmin)] // xs2png(gcf(),"image"+string(k)) end
f55015b26c5f87becd3172328f8cee1144b804dc
449d555969bfd7befe906877abab098c6e63a0e8
/3014/CH2/EX2.24/Ex2_24.sce
3cc4f425ac5114327df0cb97ab11c41d8e3daa1a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
357
sce
Ex2_24.sce
clc //given that l = 2.5e-10 // width of potential well in m h = 6.63e-34 // Plank constant m = 9.1e-31 // mass of electron in Kg printf("Example 2.24") for n = 1:2 E = n^2*h^2/(8*m*l^2) // Calculation of energy in Joule E_eV = E/1.6e-19 // Calculation of energy in eV printf("\n Energy of electron for state %d is %f eV.",n,E_eV); end
457f08f2603949fca4ecf48f63f951ff152c7c6a
449d555969bfd7befe906877abab098c6e63a0e8
/3523/CH3/EX3.7.12/Ex3_12.sce
9890502cb76e0d6ccae25884071280ec5cca0cee
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
162
sce
Ex3_12.sce
//Example 12// Ch 3 clc; clear; close; // given data c=3*10^8; h=4.15*10^-15; lmax=1000*10^-10; We=(c*h)/lmax; printf("binding energy of gas %f eV",We)
7c19134f8a87c903eb1b53470300e8f16e2381b2
449d555969bfd7befe906877abab098c6e63a0e8
/1106/CH6/EX6.12/ex6_12.sce
2055e9b27315fabfe5266a67931e88763516c5b7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
254
sce
ex6_12.sce
// Example 6.12, Page No-288 clear clc // Part A // For a bandpass filter R=20000 Rr=2700 C=0.01*10^-6 fr=0.1125*(sqrt(1+R/Rr))/(R*C) printf('Resonant frequency= %.1f Hz', fr) // Part B B=0.1591/(R*C) printf('\nBandwidth= %.1f Hz', B)
01781715dabc414d42db2bcf7a2182c5a0577534
e3cbbc5e7d85ad8e75f34314755eeb32e59f221f
/TEST/lmat.tst
de75ab3c54d52b90e68d068ae8ffd022d6ce6284
[ "Apache-2.0" ]
permissive
ihgazni2/neggen
25f624b8008728e8f60140559770b4c8bec56a62
9bb88606cc8c7a470b1023a5dcad2c9929cd8dfc
refs/heads/master
2021-06-13T08:11:24.919179
2021-04-02T14:10:14
2021-04-02T14:10:14
166,251,568
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,934
tst
lmat.tst
clslmat = require("./lmat") clsdesc = require("../desc/desc") clshseg = require("./hseg") clsz = require("./z") clspt = require("./pt") lmat = new clslmat.Lmat() lmat.initLayOutMat() lmat.creatLayout() > clsdesc.segNum() ----0-------1-------2--- | | | | 3 4 5 6 | | | | ----7-------8-------9--- | | | | 10 11 12 13 | | | | ---14------15------16--- | | | | 17 18 19 20 | | | | ---21------22------23--- lmat.creatLayout() ------------- | | | | ------------- | | | | ------------- | | | | ------------- lmat.rmSeg(8) > lmat.creatLayout() ------------- | | | | ----- ----- | | | | ------------- | | | | ------------- > clsdesc.ptNum() 0-------1-------2------3 | | | | 4-------5-------6------7 | | | | 8-------9-------10-----11 | | | | 12-----13-------14-----15 lmat = new clslmat.Lmat() lmat.initLayOutMat() > lmat.creatLayout() ------------- | | | | ------------- | | | | ------------- | | | | ------------- lmat.rmPt(9) > lmat.creatLayout() ------------- | | | | ------------- | | | - ----- | | | ------------- > clsdesc.segNum() ----0-------1-------2--- | | | | 3 4 5 6 | | | | ----7-------8-------9--- | | | | 10 11 12 13 | | | | ---14------15------16--- | | | | 17 18 19 20 | | | | ---21------22------23--- undefined > clsdesc.ptNum() 0-------1-------2------3 | | | | 4-------5-------6------7 | | | | 8-------9-------10-----11 | | | | 12-----13-------14-----15 undefined > lmat.creatLayout() ------------- | | | | ------------- | | | | ------------- | | | | ------------- undefined > lmat.rm({segs:[7,16]}) clslmat = require("./lmat") clsdesc = require("../desc/desc") clshseg = require("./hseg") clsz = require("./z") clspt = require("./pt") lmat = new clslmat.Lmat() lmat.initLayOutMat() lmat.creatLayout() > lmat.rm({segs:[7,16]}) ------------- | | | | - --------- | | | | --------- - | | | | ------------- undefined #about lmat rmOphan lmat = new clslmat.Lmat() lmat.initLayOutMat() combo = [4,7,9,12,14,16,18,19] lmat.rm({segs:combo}) > lmat.rm({segs:combo}) ------------- | | | - ----- - | | | - - - | | ------------- > lmat.rmOrphan() undefined > lmat.creatLayout() ------------- | | | - ----- - | | - - | | ------------- undefined > > lmat.rmOrphan() undefined > > lmat.creatLayout() ------------- | | - - | | - - | | ------------- undefined
78ffe57049a3ed463e2963cf7aead61ba9f3827a
704a8e9047b24c6e005fdc6206aacf6b3ea623bb
/UE/S1/bin/ANALYSE/graphe.sci
c8acd65a53ac4d5cea582130315ee4c4e72a57a1
[]
no_license
GuangYueCHEN/ENSIIE
e84ffd6be1718b958bc72cef791a77dc49fa057f
f2014c0cf5b1adda3f327d5dd1d39217e703871b
refs/heads/master
2021-06-30T21:50:49.946086
2019-06-18T09:53:36
2019-06-18T09:53:36
114,696,410
0
0
null
null
null
null
UTF-8
Scilab
false
false
393
sci
graphe.sci
function graphe() for i=150:10:250 C=tridiaganal(i) tic() [L,U]=FactLU(C) x=toc() tic() B=FactCholesky(C) y=toc() tic() D=C*C [L2,U2]=FactLU(D) z=toc() tic() B2=FactCholesky(D) k=toc() plot(i,x,'.') plot(i,y,'o') plot(i,z,'+') plot(i,k,'*') end endfunction
a9bbfd023ff98273d3ea8466c7e34131ac0951f1
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/risetime/risetime12.sce
8e513cbc31a89bf5ecbaffa7cf8832fc9e5be441
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
209
sce
risetime12.sce
//check o/p when i/p is a char vector x=['a' 'a';'a' 'a']; [d]=risetime(x); //output //!--error 10000 //Input arguments must be double. //at line 47 of function risetime called by : //[d]=risetime(x);
6865772ab89deffc60111e5d43f2ae4041c3c3cb
449d555969bfd7befe906877abab098c6e63a0e8
/671/CH5/EX5.14/5_14.sce
b2cfb3ff32fef92bdd4ffc95bcd0d4fbd09cb425
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
181
sce
5_14.sce
R=10E3 L=50E-3 C=100E-6 w0=1/sqrt(L*C) Q0=w0*R*C alpha=w0/2/Q0 zeta=alpha/w0 wd=w0*sqrt(1-zeta^2) disp(wd,zeta,alpha,Q0,w0) //////////calculation mistakes in the book