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
8b15eb84383cabcf010f6364132a1de560c3727c
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/macros/auto/obscont.sci
0bc86e6da940bdd917509aed23cbccbb68a93a54
[ "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
465
sci
obscont.sci
function [K,r]=obscont(P,Kc,Kf) //Returns the observer-based controller associated with a //plant P=[A,B,C,D]. The full-state control gain is Kc and filter //gain is Kf. A+B*Kc and A+C*Kf are assumed stable. // Copyright INRIA [LHS,RHS]=argn(0) [A,B,C,D]=abcd(P); K=syslin(P(7),A+B*Kc+Kf*C+Kf*D*Kc,-Kf,Kc) if LHS==1 then r=[];return;end zro=0*Kc*Kf;I1=eye(Kc*B);I2=eye(C*Kf); K=syslin(P(7),A+B*Kc+Kf*C+Kf*D*Kc,[-Kf,B+Kf*D],[Kc;-C-D*Kc],[zro,I1;I2,-D]); r=size(D);
005d5d732ff6db1bc60d4fc852c3ff6a2f88df18
de14a6897d4397228a52bacb8905b8807370ef4b
/koch_iteratif.sce
d822d6654b05eb19db56e26701bbbfc29c7a6a90
[]
no_license
JustineMarlow/MT94-RapportLaTeX
20b670965a47ce85beecc15865d14ec9cc4d305b
3dfaa665b5691621410f8eafdf76ecaf081b92d1
refs/heads/master
2021-09-06T17:54:58.174773
2018-02-09T09:57:52
2018-02-09T09:57:52
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
931
sce
koch_iteratif.sce
function Y=f1(X) //partie gauche basse (reduction 1/3) Y=[1/3,0;0,1/3]*X endfunction function Y=f2(X) //partie gauche haute (reduction 1/3 et rotation) Y=[1/6,-sqrt(3)/6;sqrt(3)/6,1/6]*X+[1/3;0] endfunction function Y=f3(X) //partie droite haute (reduction 1/3 et rotation) Y=[1/6,sqrt(3)/6;-sqrt(3)/6,1/6]*X+[1/2;sqrt(3)/6] endfunction function Y=f4(X) //partie droite basse (reduction 1/3) Y=[1/3,0;0,1/3]*X+[2/3;0] endfunction N=input("Entrez N, le nombre de points a dessiner :"); X=zeros(2,N); X(:,1)=[0,0]'; //initialisation de l'ensemble de N points for i=2:N t=floor(4*rand(1)+1); //selection aleatoire de la fonction select t case 1 then X(:,i)=f1(X(:,i-1)); case 2 then X(:,i)=f2(X(:,i-1)); case 3 then X(:,i)=f3(X(:,i-1)); case 4 then X(:,i)=f4(X(:,i-1)); end end clf isoview(0,1,0,0.4); plot(X(1,:),X(2,:),".",'markersize',1); //affichage
0e07798de879561df2fd29eec7e45ec509415c61
449d555969bfd7befe906877abab098c6e63a0e8
/2504/CH13/EX13.2/13_2.sce
34b0ef01753eed3827d19af1596335825c84376e
[]
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
654
sce
13_2.sce
clc //initialisation of variables clear lc= 0.25 a= 90 //degrees p= 3000 //lb/in^2 g= 32.2 //ft/sec^2 d1= 0.5 //in Q= 0.171 //ft^3/sec d= 54.5 //lbm/ft^3 n1= 2 n2= 6 lc1= 0.9 nop= 0.88 nom= 0.88 //CALCULATIONS P1= 4*p*144/11 P2= 8*d*Q^2*(n1*lc+n2*lc1)/(%pi^2*(d1/12)^4*g) pt= P1+P2 dpm= (p*144-pt) ntrans= nop*nom*dpm/(p*144) //RESULTS printf ('Frictional pressure drop = %.2e lbf/ft^2',P1) printf ('\n Extra Frictional pressure drop = %.2e lbf/ft^2',P2) printf ('\n Total pressure drop = %.2e lbf/ft^2',pt) printf ('\n Motor pressure drop = %.2e lbf/ft^2',dpm) printf ('\n Overall transmission coefficiency = %.3f',ntrans)
6814bb245303dc7a582cfaf54a2c13ae41c79997
449d555969bfd7befe906877abab098c6e63a0e8
/3862/CH5/EX5.14/Ex5_14.sce
882e71c8515ee4bfd4cfed9a23341e98ca575e38
[]
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
723
sce
Ex5_14.sce
clear // ur=0.20 //The coefficient of friction between the rope and the fixed drum uo=0.30 //The coefficient of friction between other surfaces cosa=4.0/5.0 //cos of angle of inclination sina=3.0/5.0 //sin of angle of inclination Ww=1000.0 //weight o=3.14 //angle of contact of rope with pulley //for unknown weight //force balance perpendicular to the plane //N1 = W cos α //fr=uoN1 //force balance along the plane //T1 = F1 + W sin α //for 1000 N body //force balance perpendicular to the plane //N2=N1+Wwcosa //fr2=uoN2 //force balance along the plane //T2= Wwsina -F1 -F2 //T2=T1*e^(ur*o) W=(Ww*sina-uo*Ww*cosa)/(((uo*cosa+sina)*(2.71**(uo*o)))+(uo*cosa+uo*cosa)) printf("\n Weight is %0.3f N",W)
c06c6e0a3f45cd9782c070f09a26f19bacd71525
449d555969bfd7befe906877abab098c6e63a0e8
/2153/CH9/EX9.4.b/ex_9_4_b.sce
695a960bb1724994e8634e08682f7edde3a542e0
[]
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
354
sce
ex_9_4_b.sce
// Example 9.4.b: Temperature clc; clear; close; format('v',5) E=350;// in GN/m^2 Y=2;// in J/m^2 C=2;// in micro meter sg=sqrt((2*E*10^9*Y)/(%pi*C*10^-6));// IN mn/M^2 e=10^-5;// per second T=173600/(round(sg*10^-6)-20.6-61.3*(log10(e)));// in kelvin disp(T,"temperture in kelvin for ductile to brittle transition at a strain rate of 10^-5 per second")
a0990cf1f5ba8f89ab6535f0037b51855d6cf235
449d555969bfd7befe906877abab098c6e63a0e8
/1247/CH2/EX2.11/example2_11.sce
f077337d633145c779cbc750ee4ec96087051521
[]
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
642
sce
example2_11.sce
clear; clc; // Stoichiometry // Chapter 2 // Basic Chemical Calculations // Example 2.11 // Page 22 printf("Example 2.11, Page 22 \n \n"); // solution Ca = 40.078 // at. wt of Ca F = 18.9984032 // at wt of F M1 = 3*Ca +2*(30.97762+(4*15.9994)) // molar mass of Ca3PO4 M2 = Ca +12.0107+3*15.9994 // molar mass of CaCO3 M3 = Ca+2*F // molar mass of CaF2 m1 = 800 //[mg] Ca3PO4 m2 = 200 //[mg] CaCO3 m3 = 5 //[mg] CaF2 n1 = ((3*Ca)/M1)*m1+(Ca/M2)*m2+(Ca/M3)*m3 // [mg] total Ca ions n2 = (F/M3)*2*5 //[mg] total F ions printf("Total no. of Ca+ ions is "+string(n1)+" and \ntotal no. of F- ions is "+string(n2)+".")
731155557423fd5515e3d2f302b32b90ec46f324
449d555969bfd7befe906877abab098c6e63a0e8
/2708/CH3/EX3.2/ex_3_2.sce
3b0dd302b46b09258d966b643e19a7c3d435b8e8
[]
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
243
sce
ex_3_2.sce
//Example 3.2 // Refractive index of glass clc; clear; //given data : i=%pi/3;// incidence angle in radian //reflected and refracted rays are perpendicular to each other u=tan(i);//Refractive index disp(u,"Refractive index of glass")
cf3334f557b4ffe83b4cfca3acfc47aee00a3d94
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/1.1/Unix/scilab-1.1/macros/metanet/g_demand.sci
a4183eb4de858b9ae9a20d742142b413f2617f4b
[ "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
77
sci
g_demand.sci
function d=g_demand(g) [lhs,rhs]=argn(0), if rhs=0 then g=the_g, end d=g(19)
09024bbb930012697f8f5b51afe2e1e80589d423
8712fac5701f1aea100763dd8e3c1e4a06470df1
/FFT_exemplo.sci
6cf37a32b9ff267e91dca4c5b0dd3826a1f87aa6
[]
no_license
paula-an/FourierScilab
a47404673d957a098b988444aec86c50b1fc96f4
32782dfe8904107c9a4c707f683f931570b195a1
refs/heads/master
2022-12-04T06:37:40.792025
2020-08-10T22:05:42
2020-08-10T22:05:42
285,903,782
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,144
sci
FFT_exemplo.sci
clc // Limpa o console clear // Apaga as variáveis do "navegador de variáveis" xdel(winsid()) // Apaga as janelas gráficas abertas // // Taxa de amostragem ts = 1000 // [Hz] // // Tempo discreto t = 0:1/ts:0.1 // [s] // // Número de amostras N = length(t) // // Frequências associadas: // A resposta da FFT é simétrica deve-se exibir // apenas a primeira metade dos pontos (N/2) freq_vec = ts*(0:(N/2))/N // [Hz] freq_n = length(freq_vec) // Número de frequências a serem exibidas // // f(t) ft = 10*sin(2*%pi*50*t)+5*sin(2*%pi*200*t) // // Aplicando a transformada de Fourier no sinal f(t) Fw = fft(ft) // Aplicando a função abs() (módulo) e eliminando metade do sinal Fw = abs(Fw(1:freq_n)) // Corrigindo a amplitude do sinal no domínio da frequência Fw = 2*Fw/N; // // Resultados // Sinal no domínio do tempo - f(t) scf() plot(t, ft, 'LineWidth', 2) xlabel('Tempo (s)') ylabel('Amplitude') xgrid() // Sinal no domínio da frequência - F(w) scf() plot(freq_vec, Fw, 'LineWidth', 2) xlabel('Frequência (Hz)') ylabel('Amplitude') mtlb_axis([0 500 0 max(Fw)]) xgrid()
7e800ed6012afec5ee9bdd232d72982519b17192
449d555969bfd7befe906877abab098c6e63a0e8
/2672/CH7/EX7.3/Ex7_3.sce
7ec62937844fa6f799d099e35d4ddb9ef2c42a94
[]
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
286
sce
Ex7_3.sce
//Ex_7_3 clc; clear; close; format('v',6); //given data : alfa=0.90;//current gain ICO=15;//micro A(reverse saturation currenrt) IB=0.5;///mA(Base Current) Beta=alfa/(1-alfa);//unitless IC=Beta*IB+(1+Beta)*ICO/1000;//mA(Collector Current) disp(IC,"Collector Current(mA)");
53b58d87f5caeb8291ca1495c56b3102d9e35794
449d555969bfd7befe906877abab098c6e63a0e8
/1994/CH1/EX1.8/Example1_8.sce
a0c856245e09e08951328017ac3e6954734325c3
[]
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
317
sce
Example1_8.sce
//Chapter-1,Example1_8,pg 1_39 V1=1 Vin=30 Rin=9*10^6 R4=Rin/100//for Vin=100V R3=(Rin-50*R4)/50//for Vin=50V R2=(Rin-30*R3-30*R4)/30//for Vin=30V R1=Rin-R2-R3-R4 printf("resitance values are\n") printf("R1=%.2f ohm\n",R1) printf("R2=%.2f ohm\n",R2) printf("R3=%.2f ohm\n",R3) printf("R4=%.2f ohm\n",R4)
68d41c7f3fd3ce402b5cfaa52be8c272abf628eb
449d555969bfd7befe906877abab098c6e63a0e8
/1088/CH1/EX1.9/Example9.sce
33ae98f6c49244596d1cb94a002afe1d6f15cc53
[]
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
452
sce
Example9.sce
clear clc disp("Example 9: Write a code-sequence to exit the console") printf("\n*******************************************************************\n") disp("Answer : ") halt("Ready???...Press Enter to continue") printf("Close the Scilab Console?....\ny :Yes\nAny other key:No") st = input('','s') clc(1) if( st == "y") then exit end printf("\n*******************************************************************\n")
048402e5ea56ea8a36cd2fc0f8fe8879cbf3f722
449d555969bfd7befe906877abab098c6e63a0e8
/770/CH14/EX14.21/14_21.sce
15bc9058c68ebedf78f5f391528154ab8486c739
[]
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,342
sce
14_21.sce
clear; clc; //Example - 14.21 //Page number - 490 printf("Example - 14.21 and Page number - 490\n\n"); //given T = 293.15;//[K] - Temperature R=8.314;//[J/mol*K] - Universal gas constant A = 1280;//[J/mol] //(dA/dT)_P,x = del_A (say) dA_dT = -7.0;//[J/mol-K] //For equilomar mixture, x_1 = 0.5;// Mole fraction of component 1 x_2 = 0.5;// Mole fraction of component 2 //log(Y1) = (A/(R*T))*x_2^(2) //log(Y2) = (A/(R*T))*x_1^(2) Y1 = exp((A/(R*T))*x_2^(2)); Y2 = exp((A/(R*T))*x_1^(2)); //G_excess/(R*T*) = x_1*log(Y1) + x_2*log(Y2) = (A/(R*T))*x_1*x_2 G_excess = A*x_1*x_2;//[J/mol] - Excess Gibbs free energy //H_excess/(R*T^(2)) = -[d/dT(G_excess/(R*T))]_P,x //H_excess/(R*T^(2)) = -((x_1*x_2)/R)*[d/dT(A/T)]_P,x //On simplification and putting the values we get H_excess = A*x_1*x_2 - T*dA_dT*x_1*x_2;//[J/mol] - Excess enthalpy //Now excess entropy is given by S_excess = (H_excess - G_excess)/T;//[J/mol-K] - Excess entropy printf("For equimolar mixture\n\n"); printf("Excess Gibbs free energy (G_excess) is %f J/mol\n\n",G_excess); printf("Excess enthalpy (H_excess) is %f J/mol\n\n",H_excess); printf("Excess entropy (S_excess) is %f J/mol\n\n",S_excess); printf("The value of activity coefficient Y1 is %f\n\n",Y1); printf("The value of activity coefficient Y2 is %f\n\n",Y2);
20c3730d6be78af98cf535e18de21247e7f7cd8a
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set10/s_Fluid_Mechanics_I._A._Khan_1962.zip/Fluid_Mechanics_I._A._Khan_1962/CH1/EX1.4/example1_4.sce
039d7fe35f994858b7cae601bd75be3a05e8b64f
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
257
sce
example1_4.sce
errcatch(-1,"stop");mode(2);//example 1.4 //page 14 ; funcprot(0); //initialisation of variable delP=102-100; Beta1=102+14.6; Beta2=100+14.6; Beta_av=Beta1/2+Beta2/2; V=1; delV=-delP*V/Beta_av; disp(-delV,"increase in volume(ft^3)="); exit();
178a3dc041fb9962e9265e7b7d0bb1386269d658
df59cf0fed851531d3ca60a08aded67fabbddddb
/questao2.sce
d7364754bbf0e8462ab960c128c79ebbe803724b
[ "MIT" ]
permissive
aanfiel/trabalho1_ic
ad98525d2c76d228758b7fd2090f3ad7bed7b63b
7b6ff02e9bf163e4de58f6ef294db23acff3a656
refs/heads/master
2020-08-03T09:14:21.872917
2019-10-10T16:26:42
2019-10-10T16:26:42
211,697,973
0
0
null
null
null
null
UTF-8
Scilab
false
false
4,290
sce
questao2.sce
// PRIMEIRO TRABALHO DE INTELIGÊNCIA COMPUTACIONAL // Questão 2 // Aluno: José Lopes de Souza Filho // Matrícula: 389097 // Aplicação: Scilab, versão 6.0.2 // SO: Linux Mint 19.2 Tina //----------------------------------------------------------------------------- clear; // Limpa as variáveis armazenadas clc; // Limpa o console //----------------------------------------------------------------------------- // RECEBE OS VALORES DE ENTRADA //----------------------------------------------------------------------------- pf = input("Digite a pressão do freio: "); // Pressão no pedal do freio vr = input("Digite a velocidade das rodas: "); // Velocidade das rodas vc = input("Digite a velocidade do carro: "); // Velocidade do carro //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- // TORNA NEBULOSOS OS VALORES DE ENTRADA (FUZZIFICAÇÃO) //----------------------------------------------------------------------------- // Para pressão dos freios alto (pfa) if(pf >= 50) pfa = (pf / 50)-1; else pfa = 0; end //----------------------------------------------------------------------------- // Para pressão dos freios baixo (pfb) if (pf <= 50) pfb = (-pf / 50) + 1; else pfb = 0; end //----------------------------------------------------------------------------- // Para pressão dos freios médio (pfm) if (pf >= 30 && pf <= 50) pfm = (pf - 30) / 20; elseif(pf > 50 && pf <= 70) pfm = (-pf + 70) / 20; else pfm = 0; end //----------------------------------------------------------------------------- // Para velocidade da roda rápida (vrr) if(vr >= 40) vrr = (vr - 40) / 60; else vrr = 0; end //----------------------------------------------------------------------------- // Para velocidade da roda devagar (vrd) if (vr <= 60) vrd = (-vr / 60) + 1; else vrd = 0; end //----------------------------------------------------------------------------- // Para velocidade da roda média (vrm) if (vr >= 20 && vr <= 50) vrm = (vr - 20) / 30; elseif( vr > 50 && vr <= 80) vrm = (-vr + 80) / 30; else vrm = 0; end //----------------------------------------------------------------------------- // Para velocidade do carro rápido (vcr) if (vc >= 40) vcr = (vc - 40) / 60; else vcr = 0; end //----------------------------------------------------------------------------- // Para velocidade do carro devagar (vcd) if (vc <= 60) vcd = (-vc / 60) + 1; else vcd = 0; end //----------------------------------------------------------------------------- // Para velocidade do carro médio (vcm) if (vc >= 20 && vc <= 50) vcm = (vc - 20) / 30; elseif( vc > 50 && vc <= 80) vcm = (-vc + 80) / 30; else vcm = 0; end //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- // APLICANDO AS REGRAS DE PRESSÃO E LIBERAÇÃO DOS FREIOS DA QUESTÃO //----------------------------------------------------------------------------- // Aplicação das regras 1 e 2 (Aplica os freios) n = [pfa, vcr, vrr]; aperta = pfm + min(n); // Aplicação das regras 3 e 4 (Libera os freios) m = [pfa, vcr, vrd]; solta = pfb + min(m); // Exibe os valores fuzzificados de pressão e liberação dos freios disp("Valor fuzzificado da pressão dos freios: " + string(aperta)); disp("Valor fuzzificado da liberação dos freios: " + string(solta)); //----------------------------------------------------------------------------- // DEFUZZIFICAÇÃO DAS INFORMAÇÕES (POR MEIO DA CENTRÓIDE) //----------------------------------------------------------------------------- num = 0; den = 0; // Encontra a centróide da função i = 5; while(i <= 100) b = i / 100; if(b < solta) num = num + (i * solta); den = den + solta; elseif(b > aperta) num = num + (i * aperta); den = den + aperta; else num = num + (i * b); den = den + b; end i = i + 5; end centroide = num / den; // Exibe a centróide da função (defuzzifica) disp("Valor defuzzificado a ser aplicado nos freios: " + string(centroide)); // Fim do programa
359643474975773cc58cc61649526204ea2bb605
6d976a524de332465dfaf499c4cdf8f09499f4fe
/xcos_blocks/nfet.sci
c1ce5dc5a99e7e4175f4b7525d3ceecdae366fd3
[]
no_license
skim819/rasp30
78b035fa0f1d5e94e434d26324d3238695b1908c
1efee4f95cda788c2a379cc95a22cee31683d429
refs/heads/master
2020-04-07T07:42:52.848775
2016-01-27T21:22:55
2016-01-27T21:22:55
50,114,407
0
0
null
2016-01-21T14:51:37
2016-01-21T14:51:36
null
UTF-8
Scilab
false
false
1,121
sci
nfet.sci
function [x,y,typ]=nfet(job,arg1,arg2) // Copyright INRIA x=[];y=[];typ=[]; select job case 'plot' then standard_draw(arg1) case 'getinputs' then //** GET INPUTS [x,y,typ]=standard_inputs(arg1) case 'getoutputs' then [x,y,typ]=standard_outputs(arg1) case 'getorigin' then [x,y]=standard_origin(arg1) case 'set' then x=arg1; graphics=arg1.graphics; exprs=graphics.exprs model=arg1.model; case 'define' then model=scicos_model() model.sim=list('nfet_c',5) model.in=[-1;-1] model.in2=[-2;-3] model.intyp=[1 1] model.out=-1 model.out2=0 model.outtyp=-1 model.evtin=[] model.evtout=[] model.state=[] model.dstate=[] model.rpar=[] model.ipar=[] model.blocktype='c' model.firing=[] model.dep_ut=[%t %f] exprs=[]; gr_i= ['text=[''Src'';'' Gate''];';'xstringb(orig(1),orig(2),text,sz(1),sz(2),''fill'');'] x=standard_define([6 3],model,exprs,gr_i) end endfunction
ff226c0679dcc5d38986653270e15140681d7b7d
449d555969bfd7befe906877abab098c6e63a0e8
/3041/CH11/EX11.2/Ex11_2.sce
bbb268132c06dd9de92fcf67d243299ea621c359
[]
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
785
sce
Ex11_2.sce
//Variable declaration E=120 //electric field(V/m) B=5*10**-5 //magnetic field(T) q=1.6*10**-19 //charge on electron(C) u=10**6 //velocity of electron(m/s) m=9.1*10**-31 //mass of electron(Kg) a=9.81 //acceleration of gravitation(m/s^2) //Calculations //Part a fe=q*E //force on electron due to electric field(N) //Part fm=B*q*u //force on electron due to magnetic field(N) //Part c fg=m*a //force on electron due to gravitational field(N) //Results printf ("force on electron due to electric field is %.2e N",fe) printf ("force on electron due to magnetic field is %.e N",fm) printf ("force on electron due to gravitational field is %.4e N",fg)
eb938d00e95a0f7854ca889e777acefe424bbff7
449d555969bfd7befe906877abab098c6e63a0e8
/1619/CH6/EX6.11.1/Example6_11_1.sce
b368507a93e976cf6833b80e2b91c9ae317c4ba1
[]
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
Example6_11_1.sce
//Example 6.11.1 page 6.33 clc; clear; del_v=10*10^9; N_eff= 1.5; c=3*10^11; // speed of light in mm/sec del_L= c/(2*N_eff*del_v); printf("The wave guide length differenc is %d mm",del_L);
edddb6946a5065a32e62c7c8942056612e0dc2dd
449d555969bfd7befe906877abab098c6e63a0e8
/2528/CH4/EX4.14/Ex4_14.sce
02269dd5de7d913e4568ead003ac7f1866886003
[]
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
606
sce
Ex4_14.sce
clc; clear; close; //pagec no 116 //Figure 4.22 //Noninverting Amplifier V1=1; //In Volt V2=-0.2; //In Volt //to draw graph of V3 step=0.5; t=0:step:10*%pi; V3=2*sin(100*t); //In Volt R1=20*10^3; //In ohm R2=20*10^3; //In ohm R3=20*10^3; //In ohm Rf=20*10^3; //In ohm Ri=5*10^3; //In ohm //Vout=(1+(Rf/Ri))*(V1+V2+V3)/3; Vout=(1+(Rf/Ri))*(V1+V2)/3; //for DC componet in Vin Voutac=(1+(Rf/Ri))*(V3)/3; //for ac componet in Vin disp("Output Voltage is 3.33 V peak sine wave riding on 1.33 V DC"); plot(Voutac+Vout); xtitle("Output","t","V")
765ffa8da1b1f9384f75ef5d79de73fa82de9e70
449d555969bfd7befe906877abab098c6e63a0e8
/2165/CH8/EX8.21/8_21.sce
6c67b89c42fc44223fcbf1d29192c6e07c2989ae
[]
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
443
sce
8_21.sce
clc //initialisation of variables v=18//ft^3 p=14//lb/in^2 p1=150//lb/in^2 Cp=0.242//T Cv=0.171//T j=1400//ft R=j*(Cp-Cv)//ft.lb p2=144//ft I1=137500//ft/lb I2=6.37//ft/lb v2=3.282//ft^3 //CALCULATIONS T=(p2*p*v)/R//Degree C T2=(p2*p1*v2)/(R)//Degree c W=Cp*(T2-T)+0.00002*[(T2)^2-(T)^2]//C.H.U/lb C=v/v2//ratio //RESULTS printf('The work done the temperatures at the beginning and end of compression ratio=% f ratio',C)
6df4462037619bfefca16a1747d891f2cda1d72f
ab0891df3df62a84b3bc60ee178e2d84b0d692c5
/Geometry_Processing_Toolbox/macros/intersect_other.sci
dc44e46507fbda20f0416ed9096c78666817aa4c
[ "MIT" ]
permissive
sidgairo18/SCILAB_MEX_TOOLBOX
6b36c8b5dd21bb15d942a283ebfe2366a7ac02ec
fc679f6d226c03b992b632823a5e57abea05cefa
refs/heads/master
2020-03-19T04:03:55.721880
2018-08-14T11:22:24
2018-08-14T11:22:24
135,791,680
0
0
null
null
null
null
UTF-8
Scilab
false
false
717
sci
intersect_other.sci
% INTERSECT_OTHER Given a triangle mesh (V,F) and another mesh (U,G) find all % pairs of intersecting faces. Note that self-intersections are ignored. % % [IF] = intersect_other(V,F,U,G,'ParameterName',ParameterValue, ...) % % Inputs: % V #V by 3 list of vertex positions % F #F by 3 list of triangle indices into V % U #U by 3 list of vertex positions % G #G by 3 list of triangle indices into U % Optional: % 'FirstOnly' followed by bool whether to only detect the first % intersection. % Outputs: % IF #intersecting face pairs by 2 list of intersecting face pairs, % indexing F and G % % See also: selfintersect % See intersect_other.h, intersect_other.cpp for mex implementation
48df7506c6a7a7124a60cc921ba218941b4b7b49
449d555969bfd7befe906877abab098c6e63a0e8
/3651/CH4/EX4.5/5.sce
4c225cc36d18916b00d3d58e66addf6601fb047f
[]
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
253
sce
5.sce
//Variable declarations m=9.1*10**-31 h=6.626*10**-34 Ef=3.1 Ef1=Ef+0.02 e=1.6*10**-19 //Calculations N=integrate('%pi*((8*m)**(3/2))*(E**(1/2)*e**(3/2))/(2*(h**3))','E',Ef,Ef1) //Result printf('N =%0.3f *10**26 states \n ',(N*10**-26))
3b10f3d6080b25dc5d1ee235efbf7bbffdefb3ed
6285663d2259fa331b87bfb8ab368f892ee94351
/04/Sort2.tst
93d3b5ffc9922f0893332334a081e97dcd684737
[]
no_license
Ellonet/nand-ex1
1ed60786aef5386321519d23b1d2328930e0700d
19eee2248c24c9912ca72b61ce0d1869dc885d71
refs/heads/master
2020-04-01T10:07:53.274194
2019-01-06T18:07:23
2019-01-06T18:07:23
153,103,996
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,921
tst
Sort2.tst
// This file is part of www.nand2tetris.org // and the book "The Elements of Computing Systems" // by Nisan and Schocken, MIT Press. // File name: projects/04/mult/Mult.tst load Sort.asm, output-file Sort.out, compare-to Sort2.cmp, output-list RAM[2048]%D2.10.1 RAM[2049]%D2.10.1 RAM[2050]%D2.10.1 RAM[2051]%D2.10.1 RAM[2052]%D2.10.1; set RAM[14] 2048, // All positive set RAM[15] 5, set RAM[2048] 2333, set RAM[2049] 2, set RAM[2050] 101, set RAM[2051] 5000, set RAM[2052] 56 ; repeat 1000 { ticktock; } output; set PC 0, set RAM[14] 2048, // Sorted set RAM[15] 5, set RAM[2048] 2333, set RAM[2049] 245, set RAM[2050] 10, set RAM[2051] 5, set RAM[2052] -56 ; repeat 1000 { ticktock; } output; set PC 0, set RAM[14] 2048, // Increasing order set RAM[15] 5, set RAM[2048] -56, set RAM[2049] 5, set RAM[2050] 10, set RAM[2051] 245, set RAM[2052] 2333 ; repeat 1000 { ticktock; } output; set PC 0, set RAM[14] 2048, // Negative, Positive and zero set RAM[15] 5, set RAM[2048] -56, set RAM[2049] 245, set RAM[2050] 0, set RAM[2051] -245, set RAM[2052] 2333 ; repeat 1000 { ticktock; } output; set PC 0, set RAM[14] 2048, // Duplicates set RAM[15] 5, set RAM[2048] 0, set RAM[2049] -5, set RAM[2050] -5, set RAM[2051] 245, set RAM[2052] 245 ; repeat 1000 { ticktock; } output; set PC 0, set RAM[14] 2048, // Very big numbers 1 set RAM[15] 5, set RAM[2048] -16384, set RAM[2049] 16384, set RAM[2050] 0, set RAM[2051] 16382, set RAM[2052] -1 ; repeat 1000 { ticktock; } output; set PC 0, set RAM[14] 2048, // Very big numbers 2 set RAM[15] 5, set RAM[2048] -16383, set RAM[2049] -16384, set RAM[2050] 0, set RAM[2051] 16383, set RAM[2052] 16384 ; repeat 1000 { ticktock; } output; set PC 0, set RAM[14] 2048, // Very big numbers 3 set RAM[15] 5, set RAM[2048] 0, set RAM[2049] -16384, set RAM[2050] -2, set RAM[2051] 16384, set RAM[2052] 16383 ; repeat 1000 { ticktock; } output;
bb679018efc0aa7985f8672253e66858d115fb8f
25ec4bae7c1d991a8b4f36a96650a07061417648
/Exemplos/exemplo03AjusteRGB/cinza.sce
42b2f8b6231425b05e956248c732ad4ccff7aab1
[]
no_license
OtacilioNeto/EV3MicroPythonExamples
716f76e4179d98157577d68b116a33a078aed085
037af9585402fe294d3c82d3b7d88cb49bc26bcf
refs/heads/master
2023-06-08T19:34:49.916922
2023-06-02T13:24:10
2023-06-02T13:24:10
226,492,496
0
0
null
null
null
null
UTF-8
Scilab
false
false
80,872
sce
cinza.sce
// Red Green Blue Red Green Blue cinza = [ 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 17 25 31; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 19 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 19 34 44 16 24 29; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 44 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 19 34 44 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 31; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 19 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 29; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 19 34 44 16 24 29; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 44 17 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 44 16 25 30; 20 34 44 16 24 29; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 29; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 44 16 25 30; 20 34 44 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 19 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 29; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 44 16 25 30; 20 34 44 16 25 30; 19 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 19 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 19 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 19 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 44 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 19 34 44 16 24 30; 20 34 45 16 24 30; 20 34 44 16 24 29; 20 34 44 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 44 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 19 34 44 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 35 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 19 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 19 34 44 16 25 30; 20 34 45 16 24 30; 19 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 24 30; 20 34 44 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 19 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 44 17 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 19 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 19 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 19 34 44 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 44 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 29; 19 34 44 16 25 30; 20 34 44 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 19 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 19 34 44 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 24 29; 20 34 45 16 24 29; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 24 29; 19 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 31; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 24 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 29; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 17 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 19 34 44 16 24 30; 19 34 44 16 24 29; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 19 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 31; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 17 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 31; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 17 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 31; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 29; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 35 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 31; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 17 25 31; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 24 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 19 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 19 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 31; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 24 29; 20 34 45 17 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 29; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 29; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 24 30; 20 34 45 16 25 31; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 19 34 44 16 24 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 19 34 44 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 17 25 31; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 35 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 29; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 35 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 17 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 19 34 44 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 24 29; 20 34 45 16 24 29; 20 34 45 17 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 17 25 31; 20 34 45 16 25 30; 20 34 45 16 24 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 25 30; 20 34 45 16 24 29; 20 34 45 16 25 30; 20 34 45 16 25 30; 19 34 44 16 25 30; 19 34 44 16 25 30; 20 34 45 16 25 30; ];
f72e879a27fdb61c189477def1cc093033097a4a
449d555969bfd7befe906877abab098c6e63a0e8
/845/CH5/EX5.6/Ex5_6.sce
5d3aafd287494de124402d9c27b194ba363b60fd
[]
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
377
sce
Ex5_6.sce
//Example 5.6 clc clear X = 1:0.2:2; Y = [0.98 1.4 1.86 2.55 2.28 3.2]; n = length(Y); M1 = [sum(X.^4) sum(X.^3) sum(X.^2); sum(X.^3) sum(X.^2) sum(X); sum(X.^2) sum(X) n]; M2 = [sum(X.^2 .* Y); sum(X.*Y); sum(Y)]; A = M1\M2; a = A(1); b = A(2); c = A(3); disp(round(a*10^4)/10^4, "a =") disp(round(b*10^4)/10^4, "b =") disp(round(c*10^4)/10^4, "c =")
fffe6b69ad66db1930872ee180511a6a9256614d
449d555969bfd7befe906877abab098c6e63a0e8
/1883/CH2/EX2.2.1/Example2_1.sce
12f6e2e5bd41d9d43aacd41fbe5c15e4e8ced2fb
[]
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
358
sce
Example2_1.sce
//Chapter-2,Example2_2_1,pg 2-10 angle=30 //angle of incidance n=1 //first minimum wavelength=6500*10^-8 //wavelength of light a=(n*wavelength)/sind(angle) //For minimum intensity in single slit printf('\nvalue of a =%.5f cm\n',a)
5a864372fb6721f1e69b20e21c4c8c93cca07c57
449d555969bfd7befe906877abab098c6e63a0e8
/3739/CH3/EX3.13/EX3_13.sce
0f675b1a2992913def383134f4ad42fa0b453d4f
[]
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
796
sce
EX3_13.sce
//Chapter 3, Example 3.13, page 109 clc //Initialisation eirp=800 //in KW d=24 //in Km a=0.03 //in radian d1=22 //in Km d2=2 //in Km h=0.4*10**-3 //wavelength in m Er=45 //in microvolt //Calculation E=104.8+10*log10(eirp)-20*log10(d) //field intensity V=a*sqrt((2*d2*d1)/((d1+d2)*h)) //knife edge obstacle attenuation Lke=23 //from table 3.4 er=10**(Er*20**-1) //Results printf("(1) Electric field intensity = %.3f microV/m",er)
ecedb4ffcf91f6807d088818b853cef9b703085b
449d555969bfd7befe906877abab098c6e63a0e8
/1595/CH7/EX7.10/ex7_10.sce
da74473d7bfb270d9a9f6544b739a6c84ed5b2b2
[]
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
318
sce
ex7_10.sce
//Communication Techniqu;es : example 7-10 : (pg 329) x=0.40*100*10^6; y=(100*10^6/(2^32)); //fCLK is reference oscillator printf("\nThe maximum output frequency is approximately 40 percent of fCLK MAX"); printf("\n %.f Hz",x); printf("\nThe frequency resolution is given by fCLK / 2^N"); printf("\n%.3f Hz",y);
fd7315f1c843533a76f33c437c9c22948a2f5eb5
fce47a4c482ae622563fc72d7643d824cc572edc
/_scilabTP/tp2/exercice2Correc.sce
e10cf9d59b0a33216d55bd48efdba35cf2f650ab
[]
no_license
ece2lr/ece2lr.github.io
a57ff8852ef06b7cef1c734106f1badd668ebcb1
13479dc224e39521c6c387401b889e62a90a8d0b
refs/heads/master
2021-01-12T12:07:37.196408
2017-12-16T19:25:16
2017-12-16T19:25:16
72,310,248
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,590
sce
exercice2Correc.sce
// // ceci est un commentaire : pas lu par Scilab // function question1() // test de la fonction binomial(p,n) p = .3 n = 10 y = binomial(p, n) // les proba en ordonnées x = 0:10 // les valeurs en abscisses // On trace la distribution de probabilités binomiale clf() // // au choix parmi : //plot(x, y) // version reliée //plot2d2(x, y) // test version escaliers plot2d3(x, y) // test version batons endfunction //// décommenter la ligne ci-dessous pour //// appeler la fonction et exécuter le code //question1() // <- à décommenter function question2() function probas = loiUnif(n) // ones(lignes, colonnes) retourne une matrice remplie de 1 probas = 1/(n+1) * ones(1, n+1) endfunction n = 6 x = 0:n y = loiUnif(n) clf() plot2d3(x,y) endfunction //question2() function question3() function probas = loiGeom(p, n) k = 1:n q = 1 - p probas = p * q.^(k-1) endfunction n = 20 x = 1:n p = 0.3 y = loiGeom(p, n) //clf() plot2d2(x,y) endfunction //question3() function question4() function probas = loiPois(lambda, n) k = 0:n probas = exp(-lambda) * lambda.^k ./ factorial(k) endfunction // version fixe sur la fenêtre graphique 0 n = 20 x = 0:n lambda = 5 y = loiPois(lambda, n) clf(0) plot2d2(x,y) // version multiple sur la fenêtre graphique 1 clf(1) for lambda = 0:30 // tracer la loi de Poisson de param lambda entre 0 et 40 x = 0:40 y = loiPois(lambda,40) plot(x,y) end endfunction //question4()
b7907d5a3229db46a5c44a0d832775c82faf93cc
8423ca9ce33d0d3ba30dc05b86e8241e4894d0af
/gauss.sci
ad1316c45206ef4196bea80784b612e54fe531a6
[ "MIT" ]
permissive
fbarrueta22/TAP-1
b99581dab6414d93988b708d61ac7e5e6610a6e5
61324322191684285df528149c7829b8cfe3dc5f
refs/heads/master
2022-04-25T18:44:31.343068
2020-04-18T17:22:50
2020-04-18T17:22:50
256,637,464
1
1
MIT
2020-04-18T17:22:51
2020-04-18T00:22:58
Scilab
UTF-8
Scilab
false
false
731
sci
gauss.sci
exec('plates.sci') //funcion que soluciona por metodo de gauss sin pivoteo function sol = gauss(A, b) [m,n] = size(A) // Dimesiones de la matriz de entrada if (m <> n) then // Comprueba si la matriz es cuadrada error("La matriz no es cuadrada.") end // Inicia el algoritmo for i = 1:n-1 // Triangularizacion for j = i+1:n r = A(j,i)/A(i,i) A(j,:) = A(j,:) - r*A(i,:) b(j,:) = b(j,:) - r*b(i,:) end end // Sustitucion inversa for j = n:-1:1 suma = 0 for k = j+1:n suma = suma + A(j,k)*x(k) end x(j) = ( b(j) - suma ) / A(j,j) end sol = x endfunction
cc5c386ab717ab11e180f0dcec94e62fa196558b
449d555969bfd7befe906877abab098c6e63a0e8
/2132/CH5/EX5.9/Example5_9.sce
82595d8b823a419109182c8e4e618c1b3165e445
[]
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
Example5_9.sce
//Example 5.9 clc; clear; close; format('v',8); //Given data : Z1=0;//meter Z2=4;//meter rho=0.8;//sp. gravity Q=250*10^-3;//m/s or cumec D1=250/1000;//meter D2=500/1000;//meter A1=%pi*D1^2/4;//m^2 A2=%pi*D2^2/4;//m^2 v1=Q/A1;//m/s v2=Q/A2;//m/s p1=0.1*10^3;//N/m^2 p2=0.06*10^3;//N/m^2 g=9.81;//constant Vhead1=v1^2/2/g;//meter Phead1=p1/rho/g;//meter Vhead2=v2^2/2/g;//meter Phead2=p2/rho/g;//meter H1=Z1+Vhead1+Phead1;//meter H2=Z2+Vhead2+Phead2;//meter if H1>H2 then disp("Total head at A("+string(H1)+" meter) is greater than total head at B("+string(H2)+" meter). Flow will take place from A-B."); HeadLoss=H1-H2;//meter disp(HeadLoss,"Head Loss in meter : "); else disp("Total head at B("+string(H2)+" meter) is greater than total head at A("+string(H1)+" meter). Flow will take place from B-A."); HeadLoss=H2-H1;//meter disp(HeadLoss,"Head Loss in meter : ");end
895e77aa711c855a493116001803c036da9758a5
449d555969bfd7befe906877abab098c6e63a0e8
/3705/CH8/EX8.4/Ex8_4.sce
ec1510039c4c9a3aebd932ac5beb46b2542d3475
[]
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
715
sce
Ex8_4.sce
clear// //Variable Declaration theta=(60*%pi)/180 //Angle in radians (Twice as declared) sigma_x=30 // Stress in x in MPa sigma_y=60 //Stress in y in MPa tau_xy=40 //Stress in MPa //Calcualtions sigma_xdash=0.5*(sigma_x+sigma_y)+0.5*(sigma_x-sigma_y)*cos(theta)+tau_xy*sin(theta) //Stress at x' axis in MPa sigma_ydash=0.5*(sigma_x+sigma_y)-0.5*(sigma_x-sigma_y)*cos(theta)-tau_xy*sin(theta) //Stress at y' axis in MPa tau_x_y=-0.5*(sigma_x-sigma_y)*sin(theta)+tau_xy*cos(theta) //Stress at x'y' in shear in MPa //Result printf("\n The new stresses at new axes are as follows") printf("\n sigma_x= %0.1f MPa sigma_y= %0.1f MPa",sigma_xdash,sigma_ydash) printf("\n And tau_xy= %0.0f MPa",tau_x_y)
267d430ce91890d1eaf7c79d26af11d40394b4a4
449d555969bfd7befe906877abab098c6e63a0e8
/2360/CH3/EX3.19/ex3_19.sce
d78bfe5d5fccb1a9c9c493d6fc5785dda7c5ddda
[]
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
657
sce
ex3_19.sce
// Exa 3.19 format('v',5);clc;clear;close; // Given data V1 = 100;// in V V2 = 0;// in V e1= 0;// in V e2= 100;// in V T=2;// in sec T1 = 0;// in sec T2 = 2;// in sec // Slope of ramp A= (e2-e1)/(T2-T1);// in V/sec e= 'A*t';// in sec Erms= sqrt(1/T*integrate('(A*t)^2','t',0,T));// in V Eav= 1/T*integrate('(A*t)','t',0,T);// in V Kf= Erms/Eav;// form factor Kf_sine= 1.11;// form factor of sine wave True_reading= 1;// true reading Meas_reading= Kf_sine/Kf;// measured reading PerError= (True_reading-Meas_reading)/True_reading*100;//percentage error in the reading in % disp(PerError,"The percentage error in the reading in % is : ")
d08226ec47b122e5fe466b688ded8b97fa90531f
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.4/Unix-Windows/scilab-2.4/macros/m2sci/indentsci.sci
138fe578c6c8e04c8a2863634183121ddd245529
[ "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
103
sci
indentsci.sci
function [txt]=indentsci(txt) // //! // Copyright INRIA bl=' ' txt=bl(ones(prod(size(txt)),1))+txt
8ac9b8726030eec000f77df7231154a0ec89650e
449d555969bfd7befe906877abab098c6e63a0e8
/3428/CH23/EX14.23.16/Ex14_23_16.sce
e46413cfebefa4774ef50e1242399e5e6893e82a
[]
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
333
sce
Ex14_23_16.sce
//Section-14,Example-2,Page no.-PC.111 //To estimate the pH of 0.10 M NH_3 at 25 degree Celcius. clc T=25 //degree Celsius K_b=1.8*10^-5 B=0.1 //M pK_b=-log10(K_b) pK_w=14 F_pro=sqrt(K_b/B) //Fraction protonated pH=pK_w-(1/2*pK_b)+(1/2*log10(B)) disp(pH,'Required pH')
5a00427d2ac90bf031722a3ac3c99350483b76a3
449d555969bfd7befe906877abab098c6e63a0e8
/83/CH2/EX2.3/example_2_3.sce
d3f3e39a35a561f0c803b053622a0e63be3d924f
[]
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,165
sce
example_2_3.sce
//Chapter 2 //Example 2.3 //page 58 //To find inductance of each side of the line and that of the complete line clear;clc; //to find mutual GMD D14=sqrt(8*8+2*2); D15=sqrt(8*8+6*6); D24=sqrt(8*8+2*2); D25=sqrt(8*8+2*2); D34=sqrt(8*8+6*6); D35=sqrt(8*8+2*2); //sixth root of six mutual distances Dm=(D14*D15*D24*D25*D34*D35)^(1/6);//mutual GMD between lines //to find GMR of Side A conductors D11=0.7788*2.5*10^(-3); D22=D11; D33=D11; D12=4; D21=D12; D13=8; D31=8; D23=4; D32=D23; //ninth root nine distances in Side A Da=(D11*D12*D13*D21*D22*D23*D31*D32*D33)^(1/9); //to find GMR of Side A conductors D44=0.7788*5*10^(-3); D45=4; D54=D45; D55=D44; //fourth root of four distances in Side B Db=(D44*D45*D54*D55)^(1/4); La=0.461*log10(Dm/Da);//inductance line A Lb=0.461*log10(Dm/Db);//inductance line B L=La+Lb; //loop inductance printf("\n\nMutual GMD between lines = %0.4f m\n\n",Dm); printf("GMR of Side A conductors = %0.4f m\n\n",Da); printf("GMR of Side B conductors = %0.4f m\n\n",Db); printf("Inductance of line A = %0.4f mH/km\n\n",La); printf("Inductance of line B = %0.4f mH/km\n\n",Lb); printf("Loop Inductance of the lines = %0.4f mH/km\n\n",L);
767f2a8c0d5d416b23cd0fe61004c6eab7083197
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set9/s_Engineering_Physics_K._V._Kumar_3537.zip/Engineering_Physics_K._V._Kumar_3537/CH5/EX5.16/Ex5_16.sce
4a16c64b6d407f0991d614b42ecc5b335da1c0e2
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
236
sce
Ex5_16.sce
errcatch(-1,"stop");mode(2);//Example 5_16 ; ; //To calculate the distane between (110) planes a=0.38 //units in nm h=1 k=1 l=0 d=a/sqrt(h^2+k^2+l^2) printf("Distance between (110) planes d = %.2f nm",d) exit();
51d415b281132008383e804a5d0911fadf1bb00a
449d555969bfd7befe906877abab098c6e63a0e8
/3831/CH8/EX8.12/Ex8_12.sce
e9bebd2c4fc2242da5c856615b4fe819f9d4b337
[]
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
346
sce
Ex8_12.sce
// Example 8_12 clc;funcprot(0); // Given data h=3.50;// W/(m^2.K) A=1.00*10^-4;// m^2 P=0.0400;// m T_infinitive=20.0+273.15;// K k_t=204;// W/(m.K) T_f=95.0+273.15;// K // Solution S_P_Q=sqrt(h*P*k_t*A)*((log(T_f/T_infinitive))+(T_infinitive/T_f)-1);// W/K printf("\nThe entropy production rate for the fin,S_P=%0.5f W/K",S_P_Q);
5e6b5f5d5466b6ff97d7ad4cf8629033da474e7b
449d555969bfd7befe906877abab098c6e63a0e8
/167/CH7/EX7.13/ex13.sce
4eab3f8cf13370ec79e358bbcfffcbde9794cf04
[]
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
938
sce
ex13.sce
//ques13 //Work Input for Various Compression Processes clear clc //(a) Isentropic compression with k=1.4 k=1.4;//isentropic ratio R=0.287;//gas constant for water in kJ/K/mol/kg T1=300;//initial temp in K P2=900;//final pressure in kPa P1=100;//initial pressure in kPa w=k*R*T1/(k-1)*((P2/P1)^((k-1)/k)-1);//work done in compression in kJ/kg printf('(a) Work done in compression = %.1f kJ/kg \n',w); //(b)Polytropic compression with k=1.3 w=k*R*T1/(k-1)*((P2/P1)^((k-1)/k)-1); printf(' (b) Work done in compression = %.1f kJ/kg \n',w); //(c) Isothermal compression w=R*T1*log(P2/P1); printf(' (c) Work done = %.1f kJ/kg \n',w); //(d) Ideal two stage compression with intercooling with a polytropic exponent of 1.3 Px=(P1*P2)^(1/2);//pressure in kPa //the total compressor work is twice the compression work for a single stage w=2*k*R*T1/(k-1)*((Px/P1)^((k-1)/k)-1); printf(' (d) Work done = %.2f kJ/kg \n',w);
e725f82f07d8ef52b0782c16e0cc1b547558bb79
449d555969bfd7befe906877abab098c6e63a0e8
/55/CH7/EX7.10/7ex10.sci
0532392a230d9231587ec65442435557120b4aed
[]
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
792
sci
7ex10.sci
n=6; //number of times a fair coin is tossed and getting a heads is a success p=1/2; //probability of getting a heads q=1/2 ; //probability of not getting a heads P2=(factorial(6)/(factorial(6-2)*factorial(2)))*p^2*q^(6-2); disp(P2,'probability of getting exactly two heads (i.e k=2)') P4=(factorial(6)/(factorial(6-4)*factorial(4)))*p^4*q^(6-4); //probabilty of getting four heads P5=(factorial(6)/(factorial(6-5)*factorial(5)))*p^5*q^(6-5); //probabilty of getting five heads P6=(factorial(6)/(factorial(6-6)*factorial(6)))*p^6*q^(6-6); //probabilty of getting five heads PA=P4+P5+P6 ; disp(PA,'probability of getting atleast four heads(i.e k=4,5 or 6)') Pn=q^6 //probability of getting no heads Pm=1-Pn; disp(Pm,'probability of getting one or more heads')
3052b67c8c2d2ae89392db8cf0c87b2cc1afa206
449d555969bfd7befe906877abab098c6e63a0e8
/2153/CH7/EX7.5.b/ex_7_5_b.sce
e1049999427706073f1b1966fc83f972e71e2e8a
[]
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
427
sce
ex_7_5_b.sce
// Example 7.5.b: ultimate tensile stress clc; clear; close; format('v',6) yl=34;//yeild load in kN ul=61;//ultimate load in kN fl=78;//final length in mm glf=60;//gauge length of fratture in mm fd=7;//final diamtere in mm d=12;//specimen diamtere in mm sl=62.5;//specimen length in mm A=(%pi*(d)^2)/4;// in meter square uts=((ul*10^3)/(A));//ultimate tensile strangth in N/mm^2 disp(uts,"ultimate tensile strangth in N/mm^2")
e1da8ae806d0fae1f8a19ac0a3b3096938847509
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/tweet/bow/bow.2_1.tst
fdd55b60c7dc614b279d38398b53362165033983
[]
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
35,792
tst
bow.2_1.tst
2 15:2.0 24:1.0 47:0.6666666666666666 58:0.2 69:0.2 75:0.23076923076923078 77:0.1 87:1.0 98:0.5 104:0.2 122:0.2 136:1.0 137:1.0 191:0.25 250:1.0 252:0.5 337:1.0 348:0.5 398:0.125 416:0.5 454:1.0 494:1.0 535:1.0 639:0.1 732:1.0 841:1.0 976:0.5 1026:1.0 1094:1.0 1302:1.0 2346:1.0 2522:1.0 4082:1.0 4144:1.0 4355:1.0 5785:1.0 6474:1.0 6775:1.0 7453:1.0 7454:1.0 8264:1.0 8420:1.0 2 35:0.09090909090909091 41:0.2 47:0.3333333333333333 63:0.5 85:0.1111111111111111 96:1.0 124:0.2 137:1.0 152:0.25 172:1.0 177:0.2 196:0.2 200:0.3333333333333333 226:0.4 230:3.0 252:0.25 305:0.16666666666666666 306:0.125 337:1.0 398:0.125 409:0.25 707:1.0 1089:0.5 1094:1.0 1527:1.0 1973:1.0 2118:1.0 4224:1.0 4956:1.0 6495:1.0 7237:1.0 8264:1.0 8420:1.0 2 17:1.0 24:0.5 47:0.3333333333333333 53:0.1111111111111111 74:0.2 75:0.15384615384615385 85:0.1111111111111111 87:1.0 104:0.2 139:1.0 152:0.25 249:0.5 322:1.0 342:0.3333333333333333 399:1.0 451:0.5 484:1.0 492:0.5 494:1.0 877:1.0 1014:1.0 1174:1.0 1561:1.0 1660:1.0 2836:0.06666666666666667 2975:0.5 4113:1.0 4373:1.0 4789:1.0 5484:1.0 5788:1.0 5829:1.0 6171:1.0 6342:1.0 6412:1.0 8420:1.0 2 3:1.0 12:0.031746031746031744 13:0.2 18:0.07142857142857142 35:0.09090909090909091 56:0.03333333333333333 57:0.3333333333333333 58:0.2 67:1.0 75:0.07692307692307693 96:1.0 104:0.2 141:1.0 152:0.25 197:0.16666666666666666 671:0.5 692:1.0 911:1.0 1357:1.0 1666:1.0 2139:1.0 2222:1.0 2872:1.0 4341:1.0 5098:1.0 5484:1.0 5914:1.0 8420:1.0 2 3:1.0 12:0.015873015873015872 41:0.2 42:1.0 63:1.0 67:0.5 85:0.1111111111111111 113:1.0 191:0.25 261:0.3333333333333333 306:0.125 398:0.25 419:0.5 424:0.5 451:0.5 573:0.5 574:1.0 758:0.25 871:2.0 1171:1.0 2836:0.06666666666666667 4819:1.0 4954:1.0 6155:0.3333333333333333 8420:1.0 2 1:0.08333333333333333 3:1.0 12:0.015873015873015872 24:1.5 35:0.09090909090909091 39:0.2 41:0.3 45:0.5 47:0.3333333333333333 54:1.0 57:0.3333333333333333 67:2.5 74:0.4 77:0.2 87:1.0 96:1.0 98:0.25 118:1.0 136:1.0 139:1.0 154:1.0 226:0.2 398:0.25 441:0.3333333333333333 473:1.0 500:1.0 538:1.0 564:0.5 648:1.0 692:1.0 714:1.0 772:1.0 898:1.0 1069:1.0 1453:0.5 3235:1.0 4865:1.0 4956:1.0 5402:1.0 5632:1.0 6290:1.0 7788:1.0 7985:1.0 8420:1.0 2 12:0.031746031746031744 18:0.07142857142857142 35:0.09090909090909091 41:0.2 53:0.1111111111111111 56:0.03333333333333333 67:0.5 75:0.15384615384615385 84:0.5 110:1.0 122:0.4 124:0.4 147:0.5 164:1.0 196:0.2 424:0.5 564:1.0 732:1.0 861:1.0 1178:1.0 1341:0.5 2364:1.0 2656:1.0 2933:0.16666666666666666 4084:1.0 4863:1.0 5402:1.0 6195:1.0 8420:1.0 2 3:1.0 12:0.015873015873015872 18:0.07142857142857142 24:1.0 35:0.09090909090909091 36:0.05263157894736842 41:0.3 47:1.0 53:0.1111111111111111 64:1.0 67:1.0 69:0.2 74:0.2 75:0.23076923076923078 77:0.1 79:0.06666666666666667 108:0.25 122:0.2 124:0.2 133:1.0 177:0.2 192:0.25 205:1.0 226:0.2 252:0.25 289:1.0 345:0.3333333333333333 368:1.0 409:0.25 441:0.3333333333333333 523:1.0 653:1.0 662:1.0 748:0.16666666666666666 1192:1.0 1216:1.0 1603:0.5 1854:1.0 3133:1.0 4649:1.0 4857:1.0 5282:0.5 5283:1.0 6349:1.0 7344:1.0 7454:1.0 7713:1.0 2 1:0.08333333333333333 3:1.0 12:0.031746031746031744 15:1.0 18:0.07142857142857142 24:2.0 37:1.0 41:0.3 67:1.0 74:0.2 75:0.23076923076923078 77:0.1 82:0.25 85:0.1111111111111111 96:1.0 98:0.75 104:0.2 115:0.3333333333333333 124:0.2 277:0.5 306:0.125 331:0.25 345:0.3333333333333333 398:0.125 400:1.0 516:1.0 568:0.2 653:1.0 736:1.0 748:0.16666666666666666 826:2.0 871:1.0 990:0.5 1041:1.0 1089:0.5 1854:1.0 5001:1.0 5012:1.0 5030:1.0 5097:1.0 6108:1.0 6650:1.0 8420:1.0 2 11:0.2 41:0.1 54:1.0 57:0.3333333333333333 74:0.2 75:0.15384615384615385 77:0.1 124:0.2 177:0.4 197:0.16666666666666666 261:0.3333333333333333 639:0.1 774:2.0 966:0.5 1016:0.25 1343:1.0 2898:1.0 3880:1.0 4141:1.0 4984:1.0 5174:1.0 5565:1.0 8420:1.0 2 20:0.07692307692307693 41:0.2 42:1.0 47:0.3333333333333333 53:0.1111111111111111 54:1.0 67:0.5 75:0.07692307692307693 79:0.06666666666666667 85:0.1111111111111111 87:1.0 98:0.25 104:0.2 192:0.25 249:0.5 419:0.5 545:1.0 653:1.0 698:1.0 958:1.0 1549:0.5 1581:1.0 1788:1.0 1880:1.0 4757:1.0 4983:1.0 4984:1.0 5085:1.0 5282:0.5 5283:1.0 5482:1.0 6027:1.0 6389:1.0 6776:1.0 8420:1.0 2 13:0.4 15:1.0 18:0.07142857142857142 35:0.09090909090909091 47:0.3333333333333333 53:0.3333333333333333 54:1.0 56:0.03333333333333333 57:0.3333333333333333 58:0.4 67:1.5 75:0.15384615384615385 79:0.06666666666666667 85:0.1111111111111111 122:0.2 152:0.25 192:0.25 216:1.0 331:0.25 398:0.5 419:0.5 564:0.5 639:0.1 821:1.0 822:1.0 1009:1.0 1207:1.0 1341:0.5 1689:1.0 2640:1.0 2898:1.0 3316:1.0 4998:1.0 5085:1.0 5166:1.0 5249:1.0 5605:1.0 6404:1.0 8261:1.0 8420:1.0 2 15:1.0 24:0.5 41:0.3 47:0.6666666666666666 52:0.5 53:0.1111111111111111 54:1.0 67:1.0 75:0.07692307692307693 85:0.2222222222222222 87:1.0 122:0.2 124:0.2 235:0.3333333333333333 261:0.3333333333333333 305:0.16666666666666666 345:0.3333333333333333 402:1.0 441:0.3333333333333333 494:1.0 534:1.0 639:0.1 868:1.0 871:1.0 1042:1.0 1142:1.0 1186:0.3333333333333333 1472:1.0 1856:1.0 4819:1.0 4860:1.0 5246:1.0 5297:1.0 6103:1.0 6342:1.0 7241:1.0 7318:1.0 7408:1.0 8420:1.0 2 12:0.015873015873015872 18:0.07142857142857142 39:0.2 47:0.3333333333333333 53:0.1111111111111111 176:0.5 230:1.0 277:0.25 337:1.0 374:1.0 398:0.125 409:0.25 416:0.5 599:1.0 774:1.0 917:1.0 1339:1.0 1891:1.0 3372:1.0 4947:1.0 5254:1.0 5304:1.0 5974:1.0 5979:1.0 6047:1.0 6948:1.0 8420:1.0 2 24:1.0 41:0.1 47:0.3333333333333333 58:0.2 67:0.5 74:0.2 104:0.2 177:0.2 191:0.25 192:0.5 196:0.2 1708:1.0 2274:1.0 2588:1.0 2836:0.06666666666666667 4616:1.0 4907:0.3333333333333333 5085:1.0 5352:1.0 6299:1.0 6310:1.0 7044:1.0 7730:1.0 8277:1.0 8420:1.0 2 18:0.07142857142857142 36:0.05263157894736842 41:0.1 57:0.3333333333333333 58:0.2 67:0.5 85:0.1111111111111111 87:1.0 124:0.2 172:1.0 201:1.0 209:0.25 337:2.0 502:0.5 625:1.0 1545:0.3333333333333333 2103:0.25 5005:1.0 5013:1.0 5026:1.0 5060:1.0 5065:1.0 5083:0.2 5561:1.0 5719:1.0 5773:1.0 6227:1.0 8420:1.0 2 24:1.0 27:0.125 47:0.3333333333333333 53:0.1111111111111111 64:0.5 74:0.4 79:0.06666666666666667 85:0.1111111111111111 87:1.0 98:0.25 139:2.0 166:0.25 191:0.25 192:0.25 331:0.25 337:1.0 368:1.0 419:1.5 484:1.0 494:1.0 712:0.2 866:1.0 998:1.0 1031:1.0 1472:1.0 1603:0.5 1867:1.0 4831:1.0 4956:1.0 5385:0.3333333333333333 5444:1.0 6066:1.0 8420:1.0 2 67:0.5 74:0.2 93:0.25 104:0.2 130:1.0 209:0.25 226:0.2 416:0.5 419:0.5 568:0.2 692:1.0 774:1.0 2054:1.0 4919:0.5 5387:1.0 5407:0.16666666666666666 5655:1.0 5844:1.0 6597:1.0 8420:1.0 2 18:0.07142857142857142 24:0.5 56:0.03333333333333333 58:0.2 67:1.0 74:0.4 75:0.15384615384615385 87:1.0 122:0.4 192:0.25 226:0.2 306:0.125 502:0.5 535:1.0 939:0.5 1027:1.0 1104:1.0 1330:1.0 1916:1.0 3611:1.0 5030:1.0 5408:0.5 6040:1.0 6552:1.0 6578:1.0 6898:1.0 8383:1.0 8420:1.0 2 3:1.0 20:0.07692307692307693 24:1.0 35:0.09090909090909091 41:0.3 47:0.6666666666666666 57:0.6666666666666666 58:0.2 67:1.0 74:0.2 75:0.07692307692307693 84:0.5 98:0.25 136:1.0 191:0.25 230:1.0 252:0.5 306:0.125 712:0.2 772:1.0 958:1.0 1530:1.0 1888:1.0 2349:1.0 2888:1.0 3035:1.0 4846:1.0 4909:1.0 4984:1.0 5150:1.0 5319:1.0 5321:1.0 5717:1.0 7677:1.0 7704:1.0 8420:1.0 2 3:1.0 18:0.07142857142857142 24:1.5 39:0.2 67:0.5 74:0.2 75:0.07692307692307693 87:1.0 122:0.2 331:0.25 398:0.125 477:1.0 864:1.0 1081:1.0 1295:1.0 1730:1.0 1867:1.0 1943:0.5 4521:0.5 4795:1.0 4796:1.0 4873:1.0 5115:0.5 5154:1.0 5435:1.0 5716:1.0 7704:1.0 7930:1.0 8104:1.0 8420:1.0 2 1:0.08333333333333333 18:0.07142857142857142 24:0.5 41:0.2 47:1.0 48:0.2 53:0.1111111111111111 58:0.2 67:1.0 75:0.3076923076923077 85:0.3333333333333333 87:1.0 108:0.25 209:0.25 223:1.0 337:1.0 361:1.0 500:1.0 620:0.25 660:1.0 877:1.0 1014:1.0 1850:1.0 2623:1.0 4998:1.0 5282:0.5 5283:1.0 5807:1.0 6129:1.0 8420:1.0 2 24:1.0 35:0.09090909090909091 41:0.2 58:0.4 64:0.5 74:0.2 75:0.38461538461538464 85:0.1111111111111111 87:1.0 98:0.5 122:0.4 176:0.5 192:0.25 289:1.0 368:1.0 409:0.25 494:1.0 599:1.0 639:0.1 653:1.0 736:1.0 911:1.0 958:1.0 1545:0.3333333333333333 1573:1.0 2076:1.0 5110:1.0 5606:1.0 5945:1.0 7237:1.0 8420:1.0 2 12:0.015873015873015872 13:0.2 15:1.0 20:0.07692307692307693 24:0.5 35:0.09090909090909091 39:0.2 47:0.3333333333333333 53:0.1111111111111111 67:0.5 74:0.2 75:0.15384615384615385 122:0.2 261:0.3333333333333333 305:0.16666666666666666 331:0.25 387:0.5 499:2.0 798:1.0 1553:1.0 2346:1.0 2623:1.0 2638:1.0 2994:0.5 3910:1.0 6864:1.0 8420:1.0 2 3:1.0 24:2.0 35:0.09090909090909091 41:0.2 54:1.0 67:2.0 75:0.23076923076923078 94:1.0 98:0.25 124:0.2 133:1.0 191:0.5 192:0.25 261:0.3333333333333333 538:1.0 622:1.0 653:1.0 1280:0.5 1378:0.5 2836:0.06666666666666667 3180:0.5 3214:1.0 4789:1.0 4963:1.0 4984:1.0 5085:1.0 5482:1.0 5991:1.0 6054:1.0 6944:1.0 7014:1.0 7028:1.0 7650:1.0 8420:1.0 2 1:0.08333333333333333 18:0.07142857142857142 35:0.09090909090909091 39:0.2 41:0.3 64:0.5 74:0.4 75:0.15384615384615385 82:0.125 122:0.4 192:0.25 226:0.2 249:0.5 306:0.125 805:1.0 868:1.0 958:2.0 1171:1.0 1445:1.0 1556:1.0 1689:1.0 1708:1.0 2235:1.0 4001:0.5 4032:1.0 4789:1.0 4880:1.0 4907:0.6666666666666666 5285:1.0 5342:1.0 5850:1.0 6202:1.0 6299:1.0 7028:1.0 7737:1.0 8258:1.0 8384:1.0 8420:1.0 2 1:0.16666666666666666 18:0.07142857142857142 24:0.5 27:0.125 41:0.2 69:0.2 74:0.4 82:0.125 98:0.25 133:1.0 172:1.0 191:0.25 249:0.5 345:0.3333333333333333 484:1.0 639:0.1 767:1.0 866:1.0 1089:0.5 1222:1.0 1322:1.0 1341:0.5 1666:1.0 1720:1.0 1862:1.0 1968:1.0 3035:1.0 3811:1.0 4224:1.0 4907:0.3333333333333333 4908:1.0 5085:1.0 5357:1.0 5757:1.0 5804:1.0 6520:1.0 8420:1.0 2 1:0.08333333333333333 12:0.015873015873015872 24:0.5 27:0.125 36:0.05263157894736842 41:0.1 53:0.1111111111111111 54:1.0 57:0.3333333333333333 58:0.2 74:0.2 75:0.15384615384615385 87:1.0 368:1.0 1488:1.0 1529:1.0 1772:1.0 2159:1.0 2262:1.0 2836:0.06666666666666667 3250:1.0 4907:0.3333333333333333 6313:1.0 6846:1.0 8420:1.0 8421:1.0 2 12:0.015873015873015872 20:0.07692307692307693 24:1.5 63:1.0 67:0.5 74:0.4 75:0.07692307692307693 82:0.125 85:0.1111111111111111 98:0.25 104:0.2 124:0.2 176:0.5 197:0.16666666666666666 210:1.0 226:0.4 230:2.0 291:0.5 332:1.0 345:0.3333333333333333 441:0.3333333333333333 500:1.0 564:0.5 625:1.0 777:0.5 805:1.0 861:1.0 866:1.0 910:0.5 1097:1.0 1302:1.0 1666:1.0 2677:1.0 3416:1.0 3475:0.2 3970:1.0 4521:0.5 4907:0.3333333333333333 4908:1.0 4984:1.0 4985:1.0 5196:1.0 5845:1.0 7411:1.0 8343:1.0 8420:1.0 2 18:0.21428571428571427 24:0.5 41:0.1 47:0.3333333333333333 53:0.1111111111111111 54:1.0 75:0.07692307692307693 98:0.25 191:0.25 235:0.3333333333333333 499:1.0 510:1.0 531:1.0 779:0.3333333333333333 1295:1.0 2635:1.0 4907:0.3333333333333333 5005:2.0 5013:1.0 5060:1.0 5573:1.0 7031:1.0 7670:1.0 8420:1.0 2 24:0.5 41:0.1 47:0.3333333333333333 58:0.2 67:0.5 75:0.15384615384615385 98:0.25 124:0.2 235:0.3333333333333333 368:1.0 409:0.25 499:1.0 610:1.0 613:1.0 801:0.3333333333333333 913:0.5 1636:1.0 2103:0.25 4343:1.0 4700:1.0 4949:1.0 4950:1.0 5083:0.2 5085:1.0 5352:1.0 5605:1.0 5768:1.0 6054:1.0 6944:1.0 8210:1.0 8269:1.0 8420:1.0 2 12:0.031746031746031744 41:0.1 74:0.2 75:0.07692307692307693 98:0.25 124:0.2 133:1.0 192:0.25 226:0.2 306:0.125 349:1.0 451:0.5 494:1.0 504:1.0 703:0.3333333333333333 732:1.0 748:0.16666666666666666 767:1.0 898:1.0 990:0.5 2592:1.0 3880:1.0 4907:0.3333333333333333 4908:1.0 5085:1.0 5399:1.0 5677:1.0 5954:1.0 6342:1.0 7044:1.0 8420:1.0 2 12:0.015873015873015872 18:0.07142857142857142 35:0.18181818181818182 47:0.6666666666666666 53:0.3333333333333333 57:0.3333333333333333 75:0.15384615384615385 98:0.25 172:1.0 191:0.25 196:0.2 289:1.0 306:0.125 409:0.25 509:1.0 564:0.5 619:0.5 639:0.1 1238:0.5 1435:1.0 2332:1.0 2441:2.0 2895:1.0 3203:1.0 4907:0.3333333333333333 4908:1.0 4986:1.0 6930:1.0 8304:1.0 8420:1.0 2 1:0.08333333333333333 3:1.0 12:0.015873015873015872 35:0.09090909090909091 41:0.1 54:1.0 56:0.03333333333333333 57:0.3333333333333333 58:0.4 67:0.5 74:0.2 75:0.15384615384615385 87:1.0 98:0.25 104:0.2 116:1.0 122:0.2 192:0.25 261:0.3333333333333333 322:1.0 331:0.25 368:1.0 494:1.0 568:0.2 720:1.0 748:0.16666666666666666 767:1.0 779:0.3333333333333333 1394:1.0 1573:1.0 2441:1.0 3727:1.0 3953:1.0 4789:1.0 4907:0.3333333333333333 4908:1.0 5097:1.0 5417:1.0 6199:1.0 8420:1.0 2 24:1.0 75:0.15384615384615385 87:1.0 147:0.5 172:1.0 191:0.5 192:0.25 220:1.0 398:0.125 494:1.0 712:0.2 799:1.0 983:1.0 1160:0.5 1801:1.0 2015:1.0 3035:1.0 3416:1.0 3513:1.0 4965:1.0 5245:1.0 5640:1.0 5780:1.0 5914:1.0 8420:1.0 2 24:0.5 36:0.05263157894736842 54:1.0 75:0.07692307692307693 140:1.0 172:1.0 230:1.0 958:1.0 1550:1.0 1666:1.0 1810:1.0 1851:1.0 3264:0.3333333333333333 4984:1.0 5025:1.0 5083:0.2 8420:1.0 2 12:0.031746031746031744 13:0.2 24:0.5 47:0.3333333333333333 48:0.4 54:1.0 67:0.5 69:0.2 75:0.15384615384615385 85:0.1111111111111111 113:1.0 115:0.3333333333333333 122:0.2 139:1.0 285:1.0 398:0.125 441:0.3333333333333333 451:0.5 513:1.0 538:1.0 748:0.16666666666666666 772:1.0 1378:0.5 1573:1.0 1730:1.0 2647:1.0 4907:0.3333333333333333 4908:1.0 5083:0.4 8420:1.0 2 12:0.015873015873015872 18:0.14285714285714285 24:0.5 58:0.2 67:1.0 75:0.07692307692307693 79:0.13333333333333333 85:0.1111111111111111 93:0.25 98:0.25 117:0.5 122:0.2 124:0.2 191:0.25 226:0.2 275:1.0 289:1.0 305:0.16666666666666666 374:1.0 427:1.0 441:0.3333333333333333 445:1.0 451:0.5 748:0.16666666666666666 1018:1.0 1089:0.5 1179:1.0 1203:1.0 1968:1.0 4222:1.0 5366:1.0 5784:1.0 5787:1.0 6523:1.0 7242:1.0 7731:1.0 8420:1.0 2 18:0.14285714285714285 24:0.5 27:0.125 41:0.3 47:0.3333333333333333 48:0.2 67:0.5 75:0.07692307692307693 85:0.1111111111111111 93:0.5 108:0.25 122:0.2 124:0.2 177:0.2 226:0.6 305:0.16666666666666666 306:0.125 337:2.0 345:0.3333333333333333 349:1.0 434:1.0 495:1.0 502:0.5 911:1.0 1527:1.0 1573:2.0 2623:1.0 3367:1.0 4076:1.0 4776:1.0 5160:1.0 6171:1.0 6231:1.0 6232:1.0 6328:1.0 6807:1.0 8407:1.0 2 18:0.07142857142857142 58:0.2 63:1.0 67:0.5 75:0.15384615384615385 79:0.06666666666666667 87:1.0 98:0.25 152:0.25 191:0.25 226:0.2 236:1.0 348:0.5 374:1.0 398:0.125 419:0.5 564:0.5 625:1.0 653:1.0 733:1.0 1468:1.0 1702:1.0 4110:1.0 4803:1.0 4984:1.0 5269:1.0 5339:1.0 5482:1.0 5787:1.0 6643:1.0 7855:1.0 8420:1.0 2 15:1.0 18:0.07142857142857142 41:0.1 47:0.6666666666666666 53:0.1111111111111111 56:0.03333333333333333 58:0.2 67:0.5 75:0.23076923076923078 85:0.3333333333333333 249:0.5 441:0.3333333333333333 1014:1.0 1086:1.0 1202:1.0 1238:0.5 1291:1.0 1468:1.0 2135:1.0 2534:1.0 2857:2.0 3284:1.0 4024:1.0 4224:1.0 4938:1.0 4964:1.0 5015:1.0 5484:1.0 5678:1.0 6516:1.0 7677:1.0 2 18:0.07142857142857142 41:0.1 53:0.2222222222222222 122:0.2 124:0.2 398:0.125 732:1.0 998:1.0 2364:1.0 4341:1.0 5193:1.0 6119:1.0 7664:1.0 2 12:0.015873015873015872 18:0.07142857142857142 24:0.5 39:0.2 41:0.1 47:0.6666666666666666 61:0.5 64:0.5 75:0.46153846153846156 122:0.2 147:0.5 207:1.0 252:0.25 305:0.3333333333333333 494:1.0 599:1.0 653:1.0 707:1.0 774:1.0 798:1.0 911:1.0 1339:1.0 1573:1.0 1891:1.0 1926:1.0 2872:1.0 4314:0.5 5085:1.0 5230:1.0 5850:1.0 5911:1.0 7345:1.0 8029:1.0 2 12:0.015873015873015872 18:0.07142857142857142 41:0.2 47:0.3333333333333333 64:0.5 67:1.0 75:0.15384615384615385 79:0.06666666666666667 104:0.2 124:0.2 130:1.0 172:1.0 191:0.25 216:1.0 345:0.3333333333333333 398:0.125 564:0.5 707:1.0 911:2.0 976:0.5 1089:0.5 1446:1.0 3475:0.2 4919:0.5 5358:1.0 5483:1.0 5804:1.0 6103:1.0 7191:1.0 7348:1.0 8407:1.0 2 41:0.1 58:0.2 67:1.5 77:0.1 93:0.75 116:1.0 124:0.2 136:1.0 191:0.25 220:1.0 230:1.0 363:0.5 373:1.0 398:0.25 454:1.0 484:1.0 774:2.0 911:1.0 1488:2.0 1657:0.5 1943:0.5 2812:1.0 5742:1.0 7125:1.0 7190:0.3333333333333333 8420:1.0 2 24:0.5 41:0.1 47:0.3333333333333333 58:0.2 67:0.5 75:0.07692307692307693 85:0.2222222222222222 87:1.0 93:0.25 98:0.5 104:0.2 226:0.2 230:2.0 337:1.0 454:1.0 516:1.0 540:0.3333333333333333 568:0.2 588:1.0 651:1.0 748:0.3333333333333333 770:2.0 910:0.5 911:1.0 1202:1.0 1341:0.5 1943:0.5 1963:1.0 2054:1.0 2836:0.06666666666666667 3902:1.0 4765:1.0 4777:1.0 4779:1.0 4786:1.0 5158:1.0 5176:1.0 5537:1.0 6204:1.0 2 18:0.07142857142857142 35:0.09090909090909091 58:0.2 75:0.15384615384615385 85:0.1111111111111111 98:0.25 104:0.2 123:1.0 192:0.25 342:0.3333333333333333 368:1.0 398:0.125 409:0.25 774:1.0 803:0.3333333333333333 871:1.0 1014:1.0 1091:1.0 1295:1.0 1407:1.0 2001:1.0 2159:1.0 4146:1.0 4844:1.0 4858:1.0 5011:3.0 5649:1.0 6027:1.0 6202:1.0 6204:1.0 6331:1.0 7845:1.0 8050:1.0 8419:1.0 2 18:0.07142857142857142 24:0.5 53:0.1111111111111111 67:2.0 68:0.3333333333333333 69:0.2 75:0.07692307692307693 98:0.25 124:0.2 138:1.0 139:1.0 249:0.5 305:0.16666666666666666 326:1.0 342:0.3333333333333333 374:1.0 502:0.5 564:0.5 767:1.0 1545:0.3333333333333333 1555:1.0 1690:1.0 2245:0.3333333333333333 2906:1.0 3254:1.0 4986:1.0 5387:1.0 2 18:0.07142857142857142 75:0.07692307692307693 96:1.0 172:2.0 196:0.2 252:0.5 257:1.0 289:1.0 564:0.5 743:1.0 966:0.5 2906:1.0 3475:0.2 5915:1.0 6412:1.0 8260:1.0 2 1:0.08333333333333333 24:0.5 39:0.2 47:0.3333333333333333 54:1.0 67:1.0 75:0.23076923076923078 82:0.125 85:0.1111111111111111 172:1.0 191:0.25 252:0.25 331:0.25 418:0.5 454:1.0 494:1.0 613:1.0 639:0.1 805:1.0 939:0.5 958:1.0 976:0.5 1089:0.5 1488:1.0 1854:1.0 1967:0.5 2001:1.0 2364:1.0 2582:1.0 2615:1.0 2623:1.0 2906:1.0 3206:1.0 3475:0.2 3968:1.0 4001:0.5 4521:0.5 4773:1.0 5005:1.0 5060:1.0 5218:1.0 6028:1.0 2 12:0.047619047619047616 13:0.2 20:0.07692307692307693 24:0.5 52:0.5 53:0.2222222222222222 67:0.5 115:0.3333333333333333 122:0.2 196:0.4 305:0.16666666666666666 373:1.0 774:1.0 1089:0.5 1581:1.0 1973:1.0 2186:1.0 2333:1.0 5631:1.0 6223:1.0 6775:1.0 8467:1.0 2 1:0.08333333333333333 12:0.015873015873015872 24:1.5 35:0.18181818181818182 41:0.1 67:1.0 74:0.2 75:0.3076923076923077 82:0.125 84:0.5 85:0.1111111111111111 108:0.25 123:2.0 172:1.0 216:1.0 236:1.0 257:1.0 398:0.125 499:1.0 535:1.0 774:1.0 826:1.0 1527:1.0 1549:0.5 1555:1.0 1666:1.0 1689:1.0 1690:1.0 1854:1.0 2791:1.0 2833:1.0 4146:1.0 4986:1.0 5060:1.0 5285:2.0 5312:1.0 5606:1.0 7188:1.0 7855:1.0 7945:1.0 7949:1.0 2 4:1.0 20:0.07692307692307693 24:1.5 41:0.1 53:0.1111111111111111 67:0.5 75:0.38461538461538464 82:0.25 87:1.0 96:1.0 98:0.5 104:0.2 113:1.0 123:1.0 196:0.2 230:2.0 252:0.25 257:1.0 261:0.6666666666666666 305:0.16666666666666666 306:0.125 345:0.3333333333333333 398:0.125 436:1.0 496:1.0 499:1.0 653:1.0 758:0.25 864:1.0 871:1.0 939:0.5 976:0.5 990:0.5 1255:0.5 1628:1.0 1990:1.0 2519:1.0 2617:1.0 2777:1.0 2994:0.5 3375:1.0 3661:1.0 4146:1.0 4923:1.0 5065:1.0 5218:1.0 5387:1.0 5768:1.0 5999:1.0 8260:1.0 2 1:0.08333333333333333 24:0.5 35:0.09090909090909091 41:0.3 53:0.1111111111111111 58:0.2 63:0.5 66:1.0 67:1.0 75:0.3076923076923077 93:0.25 98:0.25 122:0.2 226:0.2 230:1.0 314:1.0 451:0.5 484:1.0 564:0.5 613:1.0 871:1.0 902:1.0 958:1.0 976:0.5 1014:1.0 1343:1.0 1419:1.0 1553:1.0 1607:1.0 1766:1.0 2103:0.25 2812:1.0 5085:1.0 5123:1.0 5482:1.0 5824:1.0 7932:1.0 8410:1.0 2 1:0.08333333333333333 15:1.0 18:0.07142857142857142 41:0.3 47:0.3333333333333333 53:0.1111111111111111 56:0.03333333333333333 74:0.2 75:0.15384615384615385 85:0.1111111111111111 98:0.25 122:0.2 123:1.0 140:1.0 252:0.25 306:0.375 342:1.0 424:1.0 451:0.5 564:1.5 675:1.0 718:1.0 3967:1.0 4146:1.0 4373:1.0 4755:1.0 4789:1.0 4986:3.0 4998:1.0 8302:1.0 2 15:1.0 18:0.07142857142857142 24:0.5 38:1.0 39:0.2 41:0.1 47:0.3333333333333333 53:0.1111111111111111 58:0.2 66:1.0 67:1.0 74:0.4 75:0.3076923076923077 77:0.1 85:0.2222222222222222 87:1.0 116:1.0 177:0.2 191:0.25 226:0.2 261:0.3333333333333333 305:0.5 332:1.0 387:0.5 398:0.375 454:2.0 502:0.5 535:1.0 564:0.5 739:0.3333333333333333 2600:1.0 2873:1.0 2898:1.0 2965:1.0 3388:1.0 3502:1.0 4012:1.0 4373:1.0 4439:1.0 4998:1.0 5565:1.0 6121:1.0 7886:1.0 2 18:0.07142857142857142 24:0.5 35:0.18181818181818182 47:0.3333333333333333 64:0.5 69:0.2 75:0.07692307692307693 84:0.5 122:0.4 191:0.25 201:1.0 235:0.3333333333333333 304:1.0 305:0.16666666666666666 409:0.25 588:1.0 630:1.0 640:1.0 803:0.3333333333333333 1255:0.5 1339:1.0 1422:2.0 1545:0.3333333333333333 1628:1.0 1937:1.0 2452:1.0 2790:1.0 2898:1.0 3880:1.0 4146:1.0 4998:1.0 5115:0.5 5116:1.0 5117:1.0 5331:1.0 5387:1.0 5744:1.0 5972:1.0 6453:1.0 6676:1.0 7696:1.0 7858:1.0 8246:1.0 2 15:1.0 24:0.5 27:0.125 35:0.09090909090909091 47:0.3333333333333333 58:0.2 67:1.5 74:0.2 75:0.3076923076923077 85:0.2222222222222222 87:2.0 123:1.0 425:1.0 502:0.5 535:1.0 639:0.1 675:1.0 707:1.0 799:1.0 1202:1.0 1472:1.0 1607:1.0 1893:1.0 1908:1.0 2647:1.0 3322:1.0 4784:1.0 5085:2.0 5218:1.0 5592:1.0 5768:1.0 8096:1.0 2 1:0.16666666666666666 12:0.015873015873015872 13:0.4 24:0.5 41:0.1 47:0.3333333333333333 342:0.3333333333333333 398:0.125 639:0.2 840:1.0 2262:1.0 3921:1.0 4789:1.0 4880:1.0 5011:2.0 5702:1.0 5972:1.0 7066:1.0 7113:1.0 2 18:0.14285714285714285 24:0.5 27:0.125 36:0.05263157894736842 39:0.2 47:0.6666666666666666 53:0.1111111111111111 67:1.0 75:0.07692307692307693 85:0.1111111111111111 122:0.4 137:1.0 172:2.0 201:1.0 252:0.25 277:0.5 289:1.0 304:1.0 306:0.125 342:0.3333333333333333 345:0.3333333333333333 368:1.0 409:0.25 451:0.5 474:1.0 958:1.0 966:0.5 1086:1.0 1582:1.0 2038:1.0 3921:1.0 4834:1.0 4947:1.0 5254:1.0 5308:1.0 5464:1.0 6374:1.0 2 18:0.07142857142857142 24:1.0 39:0.2 41:0.3 52:0.5 67:1.5 75:0.15384615384615385 87:2.0 98:0.5 122:0.2 124:0.2 172:1.0 240:1.0 326:1.0 399:1.0 419:0.5 538:1.0 639:0.1 653:1.0 767:2.0 829:0.5 877:1.0 935:1.0 1014:1.0 1220:1.0 1378:0.5 1730:1.0 4266:1.0 4295:1.0 4400:1.0 4748:0.3333333333333333 4789:1.0 4984:1.0 5052:1.0 5085:1.0 5401:1.0 5482:1.0 5649:1.0 6199:1.0 2 12:0.015873015873015872 18:0.07142857142857142 24:0.5 38:0.5 41:0.1 47:0.3333333333333333 53:0.2222222222222222 54:1.0 77:0.1 85:0.1111111111111111 108:0.25 122:0.2 139:1.0 398:0.125 415:1.0 550:1.0 622:1.0 748:0.16666666666666666 777:0.5 1042:1.0 2186:1.0 4725:1.0 4956:1.0 2 1:0.08333333333333333 12:0.047619047619047616 13:0.4 20:0.07692307692307693 24:1.0 35:0.09090909090909091 38:0.5 41:0.2 47:0.3333333333333333 53:0.2222222222222222 58:0.2 63:0.5 67:1.5 75:0.07692307692307693 85:0.1111111111111111 96:1.0 133:1.0 137:1.0 166:0.25 177:0.2 200:0.3333333333333333 213:1.0 305:0.16666666666666666 331:0.25 368:1.0 374:1.0 387:0.5 409:0.25 692:1.0 707:1.0 878:1.0 901:1.0 1526:1.0 2222:1.0 2898:1.0 3233:1.0 4476:1.0 4880:1.0 4904:1.0 6359:1.0 6871:1.0 8261:1.0 8275:1.0 2 12:0.031746031746031744 13:0.2 41:0.1 47:0.3333333333333333 48:0.2 53:0.1111111111111111 63:1.0 67:1.5 69:0.2 75:0.15384615384615385 87:2.0 96:1.0 104:0.2 122:0.6 124:0.4 176:0.5 191:0.25 201:1.0 226:0.2 236:1.0 306:0.125 345:0.3333333333333333 363:0.5 416:0.5 494:1.0 544:1.0 565:1.0 692:1.0 868:1.0 931:1.0 1336:1.0 1418:1.0 1666:1.0 2139:1.0 2159:1.0 2974:1.0 4373:1.0 4789:1.0 4956:1.0 5352:1.0 6293:1.0 6342:1.0 6929:1.0 2 1:0.08333333333333333 18:0.07142857142857142 24:1.0 38:0.5 41:0.2 47:0.3333333333333333 58:0.2 67:1.0 75:0.07692307692307693 85:0.1111111111111111 93:0.25 98:0.25 104:0.2 122:0.2 136:1.0 137:1.0 139:2.0 172:1.0 192:0.25 236:1.0 331:0.25 342:0.3333333333333333 374:1.0 451:0.5 628:1.0 774:1.0 990:0.5 1149:1.0 1529:1.0 1908:1.0 2159:1.0 4267:1.0 4314:0.5 4789:1.0 4998:1.0 5005:1.0 6702:1.0 7140:1.0 7298:1.0 2 24:0.5 35:0.09090909090909091 67:2.0 75:0.15384615384615385 85:0.2222222222222222 93:0.25 96:1.0 115:0.3333333333333333 124:0.4 201:1.0 235:0.3333333333333333 331:0.25 398:0.125 400:1.0 564:0.5 619:0.5 639:0.1 772:1.0 871:1.0 958:1.0 1042:1.0 1215:1.0 1746:0.5 1891:1.0 1908:1.0 2842:1.0 4267:1.0 4314:0.5 4355:1.0 4969:1.0 6306:1.0 6307:1.0 6362:1.0 6864:1.0 7229:1.0 7232:1.0 2 1:0.08333333333333333 37:1.0 47:0.3333333333333333 67:1.5 74:0.4 75:0.07692307692307693 77:0.1 87:1.0 96:2.0 98:0.25 108:0.25 110:1.0 124:0.2 130:1.0 136:1.0 147:0.5 209:0.25 369:0.5 398:0.125 516:1.0 958:2.0 1009:1.0 1702:1.0 2059:1.0 2152:1.0 2245:0.3333333333333333 2357:1.0 2952:1.0 3235:1.0 4969:2.0 5276:0.5 5605:1.0 6025:1.0 7266:1.0 2 24:1.0 27:0.125 41:0.2 42:1.0 47:0.3333333333333333 56:0.03333333333333333 67:1.0 99:1.0 130:1.0 191:0.25 216:1.0 226:0.2 252:0.25 257:1.0 306:0.125 474:1.0 550:1.0 801:0.3333333333333333 911:1.0 1345:1.0 2790:1.0 2884:1.0 4833:1.0 5378:1.0 6047:1.0 6090:1.0 6208:1.0 7696:1.0 2 18:0.07142857142857142 24:0.5 27:0.125 41:0.1 47:0.6666666666666666 53:0.1111111111111111 67:0.5 75:0.15384615384615385 87:1.0 93:0.25 108:0.25 122:0.4 133:1.0 166:0.25 191:0.5 192:0.25 209:0.25 226:0.4 252:0.25 322:1.0 331:0.25 409:0.25 499:1.0 613:1.0 701:0.3333333333333333 864:1.0 1357:1.0 1378:0.5 1549:0.5 1670:1.0 2241:1.0 3416:1.0 4373:1.0 5119:1.0 5132:1.0 5282:0.5 5283:1.0 5284:1.0 5285:1.0 5304:1.0 6538:1.0 7504:1.0 7553:1.0 8212:1.0 2 17:1.0 24:1.0 41:0.2 53:0.1111111111111111 58:0.2 67:1.0 69:0.2 74:0.2 75:0.07692307692307693 85:0.1111111111111111 87:1.0 104:0.2 115:0.3333333333333333 122:0.4 124:0.2 133:1.0 177:0.2 191:0.25 210:1.0 220:1.0 261:0.3333333333333333 305:0.3333333333333333 331:0.25 345:0.3333333333333333 418:0.5 419:0.5 516:1.0 588:1.0 707:1.0 774:1.0 958:1.0 1175:0.5 1276:1.0 1357:1.0 1976:1.0 4255:1.0 4439:1.0 4521:0.5 4849:1.0 4978:1.0 5005:1.0 5083:0.2 5411:1.0 5950:1.0 6054:1.0 7061:1.0 2 20:0.07692307692307693 27:0.125 54:1.0 67:0.5 82:0.125 98:0.25 205:1.0 249:0.5 306:0.125 513:1.0 1019:1.0 1097:1.0 1883:1.0 2884:1.0 5116:1.0 5715:1.0 5742:1.0 6042:1.0 6689:1.0 2 4:1.0 18:0.07142857142857142 24:1.0 41:0.1 51:1.0 61:0.5 67:0.5 79:0.06666666666666667 82:0.125 85:0.2222222222222222 108:0.25 113:2.0 147:0.5 305:0.16666666666666666 360:1.0 441:0.3333333333333333 463:1.0 473:1.0 502:0.5 639:0.1 767:1.0 774:1.0 1341:0.5 1672:1.0 2836:0.06666666666666667 5819:1.0 5911:1.0 6890:1.0 2 1:0.08333333333333333 13:0.2 35:0.09090909090909091 36:0.10526315789473684 41:0.2 85:0.1111111111111111 98:0.25 108:0.25 122:0.2 164:1.0 166:0.25 191:0.25 268:1.0 306:0.125 361:1.0 368:1.0 409:0.25 441:0.3333333333333333 1168:1.0 1302:1.0 1663:1.0 2245:0.3333333333333333 2836:0.06666666666666667 4861:1.0 4954:1.0 6129:1.0 6493:1.0 2 1:0.08333333333333333 4:1.0 12:0.015873015873015872 13:0.2 15:2.0 27:0.25 36:0.05263157894736842 41:0.1 53:0.1111111111111111 67:1.5 74:0.2 75:0.07692307692307693 85:0.1111111111111111 87:1.0 98:0.25 130:1.0 139:1.0 172:1.0 191:0.5 226:0.2 247:1.0 257:1.0 322:1.0 409:0.25 418:0.5 564:0.5 566:0.2 742:1.0 871:1.0 911:2.0 957:0.3333333333333333 981:0.5 1155:1.0 1257:1.0 1535:0.16666666666666666 1668:1.0 1856:1.0 1880:1.0 3316:1.0 4768:1.0 4978:1.0 5167:1.0 5605:1.0 6129:1.0 6293:1.0 7827:1.0 2 1:0.08333333333333333 18:0.07142857142857142 24:1.5 35:0.09090909090909091 47:0.3333333333333333 53:0.2222222222222222 67:0.5 75:0.07692307692307693 79:0.06666666666666667 82:0.125 113:1.0 191:0.25 236:1.0 277:0.25 305:0.16666666666666666 331:0.5 345:0.3333333333333333 374:1.0 398:0.125 441:0.3333333333333333 494:1.0 739:0.3333333333333333 805:1.0 1357:1.0 1545:0.3333333333333333 1581:1.0 1660:1.0 2186:1.0 3315:1.0 4540:1.0 4768:1.0 4892:1.0 5007:1.0 5165:1.0 6291:1.0 6393:1.0 8384:2.0 2 1:0.25 36:0.10526315789473684 41:0.1 67:0.5 75:0.07692307692307693 85:0.1111111111111111 87:1.0 98:0.5 139:1.0 177:0.2 191:0.75 344:1.0 441:0.3333333333333333 718:1.0 801:0.3333333333333333 912:1.0 958:1.0 2103:0.25 2283:1.0 2592:1.0 4985:1.0 5085:1.0 5276:0.5 7091:1.0 8409:1.0 2 18:0.21428571428571427 36:0.05263157894736842 38:0.5 56:0.03333333333333333 75:0.15384615384615385 87:1.0 98:0.25 191:0.25 252:0.25 305:0.16666666666666666 639:0.1 1027:1.0 2833:1.0 5212:1.0 5292:1.0 5702:1.0 5768:1.0 7653:1.0 8277:1.0 2 18:0.07142857142857142 24:0.5 41:0.1 53:0.1111111111111111 63:0.5 67:0.5 69:0.2 75:0.23076923076923078 79:0.06666666666666667 87:1.0 98:0.25 117:0.5 139:1.0 172:1.0 191:0.25 197:0.16666666666666666 363:0.5 398:0.125 451:1.0 499:1.0 613:1.0 1439:1.0 1440:1.0 1549:0.5 1604:1.0 2069:1.0 2103:0.25 2790:1.0 3557:1.0 4437:1.0 5005:2.0 6754:1.0 6801:1.0 7454:1.0 7696:1.0 8304:1.0 2 1:0.08333333333333333 18:0.07142857142857142 36:0.05263157894736842 41:0.1 65:0.5 67:0.5 74:0.2 75:0.3076923076923077 122:0.2 226:0.4 235:0.3333333333333333 249:0.5 398:0.125 419:1.0 451:0.5 516:1.0 601:1.0 613:1.0 619:0.5 671:0.5 748:0.16666666666666666 777:0.5 910:0.5 1020:1.0 1175:0.5 1636:1.0 4416:1.0 4725:1.0 4842:1.0 5212:1.0 5240:1.0 5360:1.0 6691:1.0 6783:1.0 7553:1.0 2 4:1.0 53:0.1111111111111111 61:0.5 67:2.0 74:0.2 75:0.07692307692307693 85:0.1111111111111111 87:1.0 122:0.2 226:0.2 331:0.25 363:0.5 398:0.125 441:0.3333333333333333 840:1.0 871:1.0 911:1.0 1893:1.0 2201:1.0 2364:1.0 2629:1.0 3264:0.3333333333333333 3475:0.2 3513:1.0 4956:1.0 4958:1.0 4984:1.0 5215:1.0 5282:0.5 6493:1.0 7191:1.0 8169:1.0 8187:1.0 8217:1.0 2 1:0.08333333333333333 18:0.14285714285714285 35:0.09090909090909091 41:0.2 47:0.6666666666666666 53:0.1111111111111111 75:0.15384615384615385 84:0.5 98:0.75 177:0.2 210:1.0 226:0.2 265:1.0 342:0.3333333333333333 398:0.125 409:0.25 477:1.0 564:0.5 639:0.1 803:0.3333333333333333 1021:1.0 1295:1.0 1690:1.0 1746:0.5 3254:1.0 4888:1.0 5285:1.0 5342:1.0 5667:1.0 6154:1.0 7471:1.0 2 18:0.07142857142857142 24:1.5 36:0.05263157894736842 64:0.5 67:1.0 75:0.3076923076923077 98:0.5 104:0.2 115:0.3333333333333333 122:0.2 139:1.0 172:1.0 210:1.0 213:1.0 226:0.2 235:0.3333333333333333 306:0.125 345:0.3333333333333333 451:0.5 513:1.0 535:1.0 622:1.0 736:1.0 911:1.0 1143:1.0 2124:1.0 2147:1.0 2862:2.0 2884:1.0 5005:1.0 5844:1.0 5945:1.0 6306:1.0 6307:1.0 6453:1.0 2 4:1.0 18:0.14285714285714285 24:2.5 41:0.2 47:0.3333333333333333 52:0.5 53:0.2222222222222222 67:1.0 75:0.15384615384615385 82:0.125 97:1.0 98:0.25 108:0.25 113:1.0 122:0.2 166:0.25 191:0.25 209:0.25 226:0.2 261:0.3333333333333333 441:0.3333333333333333 477:1.0 499:1.0 506:1.0 562:1.0 774:1.0 910:0.5 958:2.0 1967:0.5 2862:1.0 3264:0.3333333333333333 3524:1.0 3849:1.0 4269:1.0 5285:1.0 6321:2.0 6345:1.0 6994:1.0 7018:1.0 7646:1.0 7890:1.0 2 1:0.08333333333333333 3:1.0 12:0.031746031746031744 13:0.2 18:0.14285714285714285 24:1.5 27:0.125 35:0.2727272727272727 41:0.1 67:1.0 69:0.2 74:0.2 75:0.15384615384615385 122:0.4 172:2.0 191:0.25 236:1.0 398:0.125 419:0.5 732:1.0 801:0.3333333333333333 829:0.5 917:1.0 976:0.5 1385:1.0 1422:1.0 1603:0.5 1854:1.0 1895:1.0 1980:1.0 2274:1.0 2517:1.0 3769:1.0 5035:1.0 5517:1.0 6898:1.0 7086:1.0 7451:1.0 2 15:1.0 24:0.5 35:0.09090909090909091 47:0.6666666666666666 50:1.0 67:2.5 75:0.07692307692307693 87:2.0 98:0.25 132:1.0 191:0.25 201:1.0 306:0.125 345:0.3333333333333333 398:0.125 400:1.0 516:1.0 568:0.2 868:1.0 877:1.0 976:0.5 1014:1.0 1052:2.0 1054:1.0 1079:1.0 2860:1.0 3524:1.0 3559:1.0 4831:1.0 4875:1.0 6360:1.0 7572:1.0 8248:1.0 2 13:0.2 24:0.5 41:0.2 53:0.1111111111111111 58:0.2 63:1.0 67:1.5 75:0.23076923076923078 85:0.1111111111111111 87:1.0 93:0.25 98:0.25 122:0.2 191:0.5 201:1.0 257:1.0 419:0.5 454:1.0 502:0.5 516:1.0 712:0.4 742:1.0 1068:1.0 1337:1.0 1581:1.0 1799:1.0 2069:1.0 3524:1.0 5083:0.2 5518:1.0 5716:1.0 6899:1.0 7855:1.0 2 18:0.07142857142857142 20:0.07692307692307693 35:0.18181818181818182 41:0.1 61:0.5 67:1.5 75:0.07692307692307693 87:1.0 104:0.4 118:1.0 122:0.2 172:1.0 220:1.0 226:0.2 306:0.125 332:1.0 398:0.125 400:1.0 688:0.5 703:0.6666666666666666 726:1.0 976:0.5 1043:1.0 1607:1.0 1881:1.0 2103:0.25 2734:1.0 3264:0.3333333333333333 4789:1.0 4949:1.0 5017:1.0 5359:1.0 5372:1.0 5704:1.0 5716:1.0 5832:1.0 6650:1.0 7339:1.0 8264:1.0 2 12:0.031746031746031744 24:0.5 27:0.125 41:0.1 53:0.1111111111111111 74:0.2 75:0.46153846153846156 115:0.3333333333333333 141:1.0 152:0.5 172:2.0 249:0.5 252:0.25 387:0.5 416:0.5 441:0.3333333333333333 774:1.0 799:2.0 803:0.3333333333333333 1222:1.0 1926:1.0 1990:1.0 2197:1.0 2204:1.0 2405:1.0 2441:1.0 2638:1.0 2792:1.0 3475:0.2 5085:1.0 5311:1.0 5407:0.16666666666666666 5768:1.0 6453:1.0 7031:1.0 7175:1.0 7848:1.0 8290:1.0 2 20:0.07692307692307693 24:0.5 41:0.1 63:0.5 64:0.5 69:0.2 74:0.2 75:0.3076923076923077 82:0.125 84:0.5 85:0.2222222222222222 136:1.0 200:0.3333333333333333 226:0.2 261:0.3333333333333333 291:0.5 398:0.375 416:0.5 436:1.0 451:0.5 473:1.0 799:1.0 958:1.0 1339:1.0 1536:1.0 1657:0.5 1880:1.0 2197:1.0 2346:1.0 2430:1.0 2534:1.0 2792:2.0 4982:1.0 5285:1.0 5492:1.0 5614:1.0 5787:1.0 6423:1.0 7102:1.0 2 12:0.015873015873015872 24:0.5 47:0.6666666666666666 48:0.2 50:1.0 53:0.3333333333333333 67:1.0 75:0.23076923076923078 85:0.1111111111111111 87:1.0 93:0.25 122:0.4 133:1.0 191:0.25 216:1.0 230:1.0 337:1.0 345:0.3333333333333333 374:1.0 387:0.5 398:0.125 451:0.5 523:1.0 560:1.0 599:1.0 712:0.2 1339:1.0 2080:1.0 4835:1.0 5006:1.0 5060:1.0 5193:1.0 5605:1.0 5614:1.0 5716:1.0 6739:1.0 7092:1.0 2 18:0.07142857142857142 41:0.1 47:0.3333333333333333 67:1.0 74:0.2 98:0.5 113:1.0 141:2.0 172:2.0 201:1.0 345:0.3333333333333333 454:1.0 1337:1.0 1341:0.5 1628:1.0 1657:0.5 2826:0.5 4987:1.0 5060:1.0 5071:1.0 5366:1.0 5716:1.0 6506:1.0 8033:1.0 8104:1.0 2 18:0.07142857142857142 20:0.07692307692307693 24:0.5 41:0.1 67:0.5 75:0.15384615384615385 79:0.06666666666666667 98:0.25 115:0.3333333333333333 141:2.0 191:0.5 226:0.2 285:1.0 345:0.3333333333333333 395:1.0 799:1.0 864:1.0 1014:1.0 1312:1.0 1341:0.5 1553:1.0 1627:1.0 1666:1.0 1689:1.0 1699:0.5 2066:1.0 5045:1.0 5085:1.0 5126:1.0 5407:0.16666666666666666 6291:1.0 6342:1.0 2 1:0.16666666666666666 18:0.07142857142857142 24:0.5 41:0.1 58:0.2 87:1.0 98:0.25 104:0.4 141:1.0 192:0.25 387:0.5 513:1.0 877:1.0 976:0.5 1378:0.5 2103:0.25 5085:1.0 5174:1.0 6472:1.0 6485:1.0 6589:1.0 2 24:0.5 39:0.2 41:0.2 98:0.25 122:0.2 172:1.0 177:0.2 191:0.5 332:1.0 345:0.3333333333333333 349:1.0 451:0.5 477:1.0 516:1.0 560:1.0 1939:1.0 2309:1.0 2836:0.06666666666666667 2994:0.5 4373:1.0 4717:2.0 4789:1.0 4919:0.5 6374:1.0 2 18:0.14285714285714285 24:1.5 41:0.1 47:0.3333333333333333 53:0.2222222222222222 67:0.5 75:0.15384615384615385 122:0.2 192:0.25 252:0.25 305:0.16666666666666666 312:1.0 368:1.0 613:1.0 871:1.0 1628:1.0 1711:1.0 2246:1.0 2924:1.0 4704:1.0 4843:1.0 5347:1.0 5407:0.16666666666666666 5684:1.0 5842:1.0 7040:1.0 8280:1.0 2 18:0.21428571428571427 35:0.09090909090909091 41:0.1 47:0.3333333333333333 53:0.1111111111111111 67:1.0 74:0.2 85:0.1111111111111111 104:0.2 110:1.0 122:0.2 236:1.0 249:0.5 337:1.0 374:1.0 398:0.25 441:0.3333333333333333 451:0.5 454:3.0 502:0.5 578:1.0 613:1.0 712:0.4 777:0.5 1068:1.0 1253:1.0 1422:1.0 1620:1.0 1746:0.5 2336:0.5 4776:1.0 4982:1.0 5021:1.0 5083:0.2 5350:1.0 6807:1.0 8214:1.0 2 15:1.0 18:0.07142857142857142 35:0.09090909090909091 39:0.2 41:0.1 47:0.3333333333333333 53:0.1111111111111111 54:1.0 57:0.3333333333333333 64:0.5 67:0.5 75:0.07692307692307693 85:0.1111111111111111 93:0.25 104:0.2 122:0.2 124:0.2 133:1.0 164:1.0 192:0.25 226:0.2 252:0.25 289:1.0 368:1.0 398:0.125 451:1.0 502:0.5 513:1.0 523:1.0 707:1.0 1238:0.5 1689:1.0 3264:0.3333333333333333 3386:1.0 4666:1.0 4964:1.0 2 18:0.14285714285714285 24:0.5 35:0.09090909090909091 41:0.2 48:0.2 53:0.1111111111111111 67:0.5 75:0.3076923076923077 104:0.2 122:0.2 124:0.2 172:1.0 303:1.0 305:0.16666666666666666 494:1.0 523:1.0 544:1.0 653:1.0 767:1.0 958:1.0 976:0.5 2441:1.0 2617:1.0 2665:1.0 3223:1.0 4804:1.0 4841:1.0 4842:1.0 4986:1.0 5117:1.0 5768:1.0 5984:1.0 6624:1.0 7237:1.0 2 18:0.07142857142857142 24:0.5 41:0.1 67:1.5 75:0.3076923076923077 87:1.0 122:0.2 123:1.0 191:0.25 209:0.25 252:0.25 306:0.125 312:1.0 368:1.0 441:0.3333333333333333 516:1.0 544:1.0 707:2.0 758:0.25 821:1.0 1378:0.5 1574:1.0 1581:2.0 1908:1.0 1975:1.0 2145:1.0 2333:1.0 4840:1.0 4954:1.0 5017:1.0 6632:1.0 6833:1.0 7843:1.0 2 1:0.08333333333333333 3:1.0 12:0.015873015873015872 18:0.21428571428571427 24:0.5 41:0.2 53:0.1111111111111111 64:0.5 67:0.5 74:0.2 75:0.07692307692307693 77:0.1 104:0.2 122:0.4 136:1.0 164:1.0 226:0.2 252:0.25 312:1.0 345:0.3333333333333333 398:0.125 477:1.0 516:1.0 688:0.5 718:1.0 748:0.16666666666666666 861:1.0 910:0.5 911:1.0 958:2.0 1014:1.0 1266:1.0 1415:1.0 1604:1.0 2149:1.0 2782:1.0 2811:1.0 3264:0.3333333333333333 3475:0.2 4343:1.0 4521:0.5 4802:1.0 4803:1.0 4954:1.0 4986:1.0 5557:1.0 5787:1.0 6993:1.0 8041:1.0
0ddd98cc3121d1e1f5c5eb04aba4401a3bf37842
449d555969bfd7befe906877abab098c6e63a0e8
/75/CH8/EX8.9/ex_9.sce
9bede2cab32cad22ea96640b83fac37b736844fe
[]
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
148
sce
ex_9.sce
//EXAMPLE (PG 544) //A(e) = A0 + eB A0=[2 1 0;1 2 1;0 1 2] B=[0 1 1;-1 0 1;-1 -1 0] //inv(A(e)) = C = inv(A0) C=inv(A0) b=[0 1 2]' x=A0\b r=b-A0*x
7a914ffc6284940f19b0315deff6574bcd1f9dfc
449d555969bfd7befe906877abab098c6e63a0e8
/2465/CH3/EX3.1/Example_1.sce
093b57b8d23122d2ae65c8ed766d809735e72439
[]
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
321
sce
Example_1.sce
//Chapter-3,Example 1,Page 56 clc; close; M_0=200 //mass of radium total_time= 8378-1898 //in years //since t-half for radium is 1620 years t_half=6480/1620 // number of half lives m_left=M_0*(1/2)^t_half //mass of radium left printf('mass of radium left after 6480 years is %.1f mg',m_left)
3f4fd88f3bd5a990e9349884cdceafd897298b24
449d555969bfd7befe906877abab098c6e63a0e8
/1280/CH3/EX3.5/3_5.sce
306af2ea8f59cb1069dbea2aceb64b3701179459
[]
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
127
sce
3_5.sce
clc //initialisation of variables P= 1500 //psi A= 2//in^2 //CALCULATIONS F= P*A //RESULTS printf ('Force = %.f lb',F)
db7f35035610f24b4161e611cbb8e027df1f9312
449d555969bfd7befe906877abab098c6e63a0e8
/1427/CH35/EX35.16/35_16.sce
7173c9ea855e83618a36cef946de8c730b4e8858
[]
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
310
sce
35_16.sce
//ques-35.16 //Calculating internuclear distance of HCl molecule clc s=20.7;//interspacing (in /cm) B=s/2; I=(6.625*10^-34)/(8*%pi^2*B*100*3*10^8); r_m=(1*35.5/1000)/((1+35.5)*6.023*10^23);//reduced mass (in kg) r=sqrt(I/r_m); printf("The internuclear distance for HCl molecule is %.1f pm.",r*10^12);
7fa41c72b960f0845119d3de0126cc8419cabace
449d555969bfd7befe906877abab098c6e63a0e8
/3137/CH12/EX12.8/Ex12_8.sce
0a2092279e6bab703fd0d0c3557c69d58283da23
[]
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
280
sce
Ex12_8.sce
//Initilization of variables theta=40 //degrees x=100 //ft ay=32.2 //ft/s^2 //Calculations //Simplfying the equation t=sqrt((tand(theta)*x)/(ay/2)) //s //Velocity calculations Vo=100/(cosd(theta)*t) //ft/s //Result clc printf('The initial speed should be %f ft/s',Vo)
ff11721e5cacd6836ad510698be919b14ab26747
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/Aimer VS Robots Valorant.sce
7b66bf5f85fdbcf26825adc5624ebbce23d43252
[]
no_license
MBHuman/Scenarios
be1a722825b3b960014b07cda2f12fa4f75c7fc8
1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137
refs/heads/master
2023-01-14T02:10:25.103083
2020-11-21T16:47:14
2020-11-21T16:47:14
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
115,391
sce
Aimer VS Robots Valorant.sce
Name=Aimer VS Robots Valorant PlayerCharacters=Aimer BotCharacters=wide_strafe.bot IsChallenge=true Timelimit=30.0 PlayerProfile=Aimer AddedBots=wide_strafe.bot;wide_strafe.bot;wide_strafe.bot;wide_strafe.bot;wide_strafe.bot;wide_strafe.bot;wide_strafe.bot;wide_strafe.bot;wide_strafe.bot;wide_strafe.bot;wide_strafe.bot;wide_strafe.bot;wide_strafe.bot PlayerMaxLives=1 BotMaxLives=1;1;1;1;1;1;1;1;1;1;1;1;1 PlayerTeam=1 BotTeams=2;2;2;2;2;2;2;2;2;2;2;2;2 MapName=pott.map MapScale=4.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=3.0 ScoreToWin=0.0 ScorePerDamage=0.0 ScorePerKill=100.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=10.0 ScoreLossPerDamageTaken=1.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=true ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=VALORANT,APEX,CSGO WeaponHeroTag=Sheriff DifficultyTag=3 AuthorsTag=@Lac0caL BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=false BlockFCT=false Description=EZ GameVersion=2.0.1.2 ScorePerDistance=0.0 MBSEnable=false MBSTime1=0.25 MBSTime2=0.5 MBSTime3=0.75 MBSTime1Mult=1.0 MBSTime2Mult=2.0 MBSTime3Mult=3.0 MBSFBInstead=false MBSRequireEnemyAlive=false LockFOVRange=true LockedFOVMin=80.0 LockedFOVMax=110.0 LockedFOVScale=Clamped Horizontal [Aim Profile] Name=Aimbot MinReactionTime=0.2 MaxReactionTime=0.2 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=90.0 FlickSpeed=10.0 FlickError=0.0 TrackSpeed=10.0 TrackError=0.0 MaxTurnAngleFromPadCenter=90.0 MinRecenterTime=0.0 MaxRecenterTime=0.0 OptimalAimFOV=90.0 OuterAimPenalty=0.0 MaxError=0.0 ShootFOV=15.0 VerticalAimOffset=-70.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Bot Profile] Name=wide_strafe DodgeProfileNames=wide_strafe_dodge DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=100.0;100.0;100.0;100.0;100.0;100.0;100.0;100.0 AimingProfileNames=Aimbot;Aimbot;Aimbot;Aimbot;Aimbot;Aimbot;Aimbot;Aimbot WeaponSwitchTime=60.0 UseWeapons=true CharacterProfile=wide_strafe_char SeeThroughWalls=true NoDodging=false NoAiming=false AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Character Profile] Name=Aimer MaxHealth=150.0 WeaponProfileNames=Sheriff;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.75 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=900.0 MaxCrouchSpeed=430.0 Acceleration=4000.0 AirAcceleration=16000.0 Friction=10.0 BrakingFrictionFactor=2.0 JumpVelocity=1000.0 Gravity=3.5 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=0.000 Y=0.145 Z=0.290 EnemyHeadColor=X=0.000 Y=0.145 Z=0.290 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cuboid MainBBHeight=270.0 MainBBRadius=60.0 MainBBHasHead=true MainBBHeadRadius=23.0 MainBBHeadOffset=13.0 MainBBHide=true ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=true ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=false BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=100.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.25 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=Endo CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=wide_strafe_char MaxHealth=150.0 WeaponProfileNames=Rocket Launcher;;;;;;; MinRespawnDelay=60.0 MaxRespawnDelay=60.0 StepUpHeight=0.0 CrouchHeightModifier=0.75 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=510.0 MaxCrouchSpeed=500.0 Acceleration=8000.0 AirAcceleration=16000.0 Friction=2.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=3.0 AirControl=0.0 CanCrouch=false CanPogoJump=true CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=255.000 Y=0.000 Z=0.000 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=true AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cuboid MainBBHeight=270.0 MainBBRadius=50.0 MainBBHasHead=true MainBBHeadRadius=23.0 MainBBHeadOffset=6.0 MainBBHide=true ProjBBType=Cylindrical ProjBBHeight=0.02 ProjBBRadius=0.01 ProjBBHasHead=false ProjBBHeadRadius=25.0 ProjBBHeadOffset=-10.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=0.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=555.0 BlockSpawnFOV=0.0 BlockSpawnDistance=555.0 RespawnAnimationDuration=1.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=0.1 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.25 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=0.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=Endo CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=true ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Dodge Profile] Name=wide_strafe_dodge MaxTargetDistance=1500.0 MinTargetDistance=800.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.7 MaxLRTimeChange=1.7 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.0 MaxJumpTime=1.0 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.25 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Weapon Profile] Name=Sheriff Type=Hitscan ShotsPerClick=1 DamagePerShot=55.0 KnockbackFactor=30.0 TimeBetweenShots=0.24 Pierces=false Category=SemiAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.89 MagazineMax=6 AmmoPerShot=1 ReloadTimeFromEmpty=1.0 ReloadTimeFromPartial=1.0 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=10.0 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=1.0 ADSMoveFactor=0.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=30.0 RecoilNegatable=false DecalType=1 DecalSize=17.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=400.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=1.0 FlatKnockbackVertical=1.0 HitscanRadius=0.0 HitscanVisualRadius=2.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=2 CancelReloadOnKill=false FlatKnockbackHorizontalMin=1.0 FlatKnockbackVerticalMin=1.0 ADSScope=No Scope ADSFOVOverride=1.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=false ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Law Bringer WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=1.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Bolt Action Sniper 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=Bullet ParticleWallImpact=None ParticleBodyImpact=Flare ParticleProjectileTrail=None ParticleHitscanTrace=Bullet ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=5.0 ParticleBodyImpactScale=2.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=55.0,30.0,0.1,10.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=10.0,25.0,8.0,17.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=9.0 MinRecoilUp=9.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=0.5 RecoilAutoReset=true TimeToRecoilPeak=0.03 TimeToRecoilReset=0.2 AAMode=0 AAPreferClosestPlayer=true AAAlpha=1.0 AAMaxSpeed=360.0 AADeadZone=0.0 AAFOV=360.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Rocket Launcher Type=Hitscan ShotsPerClick=1 DamagePerShot=50.0 KnockbackFactor=30.0 TimeBetweenShots=0.6 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=5000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=100.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=false HeadshotMultiplier=1.0 MagazineMax=3 AmmoPerShot=1 ReloadTimeFromEmpty=1.0 ReloadTimeFromPartial=1.0 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.35 ProjectileGraphic=Arrow VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=2.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=50.000 Y=0.000 Z=0.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=10.0 RecoilNegatable=false DecalType=1 DecalSize=20.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=1.0 FlatKnockbackVertical=1.0 HitscanRadius=0.0 HitscanVisualRadius=20.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=25.0 AimPunchResetTime=0.2 AimPunchCooldown=0.1 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=1.0 FlatKnockbackVerticalMin=1.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Rocket Launcher WeaponAnimation=Secondary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=Bullet ParticleWallImpact=None ParticleBodyImpact=Flare ParticleProjectileTrail=Rocket ParticleHitscanTrace=Bullet ParticleMuzzleFlashScale=10.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=0.2 Explosive=false Radius=300.0 DamageAtCenter=1.0 DamageAtEdge=1.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=true SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=0.0,0.1,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=2 AAPreferClosestPlayer=false AAAlpha=0.5 AAMaxSpeed=0.5 AADeadZone=0.0 AAFOV=180.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=true TriggerBotDelay=0.001 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end UInt8 playersMin 1 UInt8 playersMax 16 brush vertices 128.000000 528.000000 944.000000 288.000000 528.000000 944.000000 288.000000 528.000000 416.000000 128.000000 528.000000 416.000000 128.000000 512.000000 944.000000 288.000000 512.000000 944.000000 288.000000 512.000000 416.000000 128.000000 512.000000 416.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 128.000000 976.000000 416.000000 288.000000 976.000000 416.000000 288.000000 976.000000 400.000000 128.000000 976.000000 400.000000 128.000000 528.000000 416.000000 288.000000 528.000000 416.000000 288.000000 528.000000 400.000000 128.000000 528.000000 400.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 128.000000 992.000000 960.000000 128.000000 992.000000 944.000000 -399.999939 992.000000 944.000000 -399.999908 992.000000 960.000000 128.000000 320.000000 960.000000 128.000000 320.000000 944.000000 -399.999939 320.000000 944.000000 -399.999908 320.000000 960.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 288.000000 976.000000 960.000000 304.000000 976.000000 960.000000 304.000000 976.000000 416.000000 288.000000 976.000000 416.000000 288.000000 528.000000 960.000000 304.000000 528.000000 960.000000 304.000000 528.000000 416.000000 288.000000 528.000000 416.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 48.000000 640.000000 1056.000000 368.000000 640.000000 1056.000000 368.000000 640.000000 960.000000 48.000000 640.000000 960.000000 48.000000 624.000000 1056.000000 368.000000 624.000000 1056.000000 368.000000 624.000000 960.000000 48.000000 624.000000 960.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 112.000000 976.000000 768.000000 128.000000 976.000000 768.000000 128.000000 976.000000 416.000000 112.000000 976.000000 416.000000 112.000000 512.000000 768.000000 128.000000 512.000000 768.000000 128.000000 512.000000 416.000000 112.000000 512.000000 416.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 48.000000 976.000000 1072.000000 368.000000 976.000000 1072.000000 368.000000 976.000000 1056.000000 48.000000 976.000000 1056.000000 48.000000 640.000000 1072.000000 368.000000 640.000000 1072.000000 368.000000 640.000000 1056.000000 48.000000 640.000000 1056.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 32.000000 976.000000 1072.000000 48.000000 976.000000 1072.000000 48.000000 976.000000 960.000000 32.000000 976.000000 960.000000 32.000000 640.000000 1072.000000 48.000000 640.000000 1072.000000 48.000000 640.000000 960.000000 32.000000 640.000000 960.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 368.000000 976.000000 1072.000000 384.000000 976.000000 1072.000000 384.000000 976.000000 960.000000 368.000000 976.000000 960.000000 368.000000 640.000000 1072.000000 384.000000 640.000000 1072.000000 384.000000 640.000000 960.000000 368.000000 640.000000 960.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 304.000000 976.000000 960.000000 368.000000 976.000000 960.000000 368.000000 976.000000 944.000000 304.000000 976.000000 944.000000 304.000000 640.000000 960.000000 368.000000 640.000000 960.000000 368.000000 640.000000 944.000000 304.000000 640.000000 944.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 128.000000 992.000000 960.000000 288.000000 992.000000 960.000000 288.000000 992.000000 944.000000 128.000000 992.000000 944.000000 128.000000 640.000000 960.000000 288.000000 640.000000 960.000000 288.000000 640.000000 944.000000 128.000000 640.000000 944.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 160.000000 992.000000 1056.000000 256.000000 992.000000 1056.000000 256.000000 992.000000 960.000000 160.000000 992.000000 960.000000 160.000000 640.000000 1056.000000 256.000000 640.000000 1056.000000 256.000000 640.000000 960.000000 160.000000 640.000000 960.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 144.000000 576.000000 976.000000 192.000000 608.000000 976.000000 192.000000 608.000000 960.000000 192.000000 528.000000 976.000000 192.000000 528.000000 960.000000 144.000000 576.000000 960.000000 faces 0.000000 0.000000 1.000000 1.000000 236.309952 1 0 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 236.309952 2 4 5 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 360.000000 2 1 3 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 360.000000 0 1 2 5 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 360.000000 4 3 0 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices 192.000000 576.000000 976.000000 272.000000 576.000000 976.000000 272.000000 576.000000 960.000000 192.000000 576.000000 960.000000 192.000000 560.000000 976.000000 272.000000 560.000000 976.000000 272.000000 560.000000 960.000000 192.000000 560.000000 960.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -496.000000 384.000000 704.000000 -496.000000 384.000000 1024.000000 -399.999878 384.000000 1024.000122 -400.000000 384.000000 703.999878 -496.000000 368.000000 704.000000 -496.000000 368.000000 1024.000000 -399.999878 368.000000 1024.000122 -400.000000 368.000000 703.999878 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -511.999939 720.000000 1024.000122 -511.999939 720.000000 1039.999878 -399.999939 720.000000 1040.000122 -399.999878 720.000000 1024.000122 -511.999939 384.000000 1024.000122 -511.999939 384.000000 1039.999878 -399.999939 384.000000 1040.000122 -399.999878 384.000000 1024.000122 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -512.000000 720.000000 704.000122 -511.999939 720.000000 1024.000122 -496.000000 720.000000 1024.000000 -496.000000 720.000000 704.000000 -512.000000 384.000000 704.000122 -511.999939 384.000000 1024.000122 -496.000000 384.000000 1024.000000 -496.000000 384.000000 704.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -512.000000 720.000000 688.000244 -512.000000 720.000000 704.000122 -400.000000 720.000000 703.999878 -400.000000 720.000000 687.999878 -512.000000 384.000000 688.000244 -512.000000 384.000000 704.000122 -400.000000 384.000000 703.999878 -400.000000 384.000000 687.999878 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -400.000000 992.000000 944.000000 -384.000000 992.000000 944.000000 -384.000000 992.000000 784.000000 -400.000000 992.000000 784.000000 -400.000000 720.000000 944.000000 -384.000000 720.000000 944.000000 -384.000000 720.000000 784.000000 -400.000000 720.000000 784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 128.000000 688.000000 640.000000 208.000000 688.000000 640.000000 208.000000 688.000000 560.000000 128.000000 688.000000 560.000000 128.000000 528.000000 640.000000 208.000000 528.000000 640.000000 208.000000 528.000000 560.000000 128.000000 528.000000 560.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 128.000000 528.000000 944.000000 128.000000 528.000000 784.000000 -48.000000 384.000000 784.000000 -47.999939 368.000000 944.000061 -48.000000 384.000000 944.000000 128.000000 368.000000 784.000000 -47.999908 368.000000 784.000000 128.000000 368.000000 944.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -208.000000 384.000000 784.000000 -48.000031 384.000000 783.999939 -48.000061 240.000000 607.999939 -208.000122 224.000000 608.000061 -208.000000 240.000000 608.000000 -48.000031 224.000000 783.999939 -48.000061 224.000000 608.000122 -208.000000 224.000000 784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 128.000000 976.000000 784.000000 128.000000 976.000000 768.000000 -47.999939 976.000000 767.999329 -47.999908 976.000000 783.999329 128.000000 304.000000 784.000000 128.000000 304.000000 768.000000 -47.999939 304.000000 767.999329 -47.999908 304.000000 783.999329 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -400.000000 384.000000 944.000000 -48.000000 384.000000 944.000000 -48.000000 384.000000 784.000000 -400.000000 384.000000 784.000000 -400.000000 368.000000 944.000000 -48.000000 368.000000 944.000000 -48.000000 368.000000 784.000000 -400.000000 368.000000 784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -400.000000 720.000000 688.000000 -400.001648 720.000000 1039.999878 -384.001404 720.000000 1040.000122 -384.000000 720.000000 688.000000 -400.000000 384.000000 688.000000 -400.001648 384.000000 1039.999878 -384.001404 384.000000 1040.000122 -384.000000 384.000000 688.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 64.000031 240.000000 -0.000122 -111.999908 240.000000 0.000366 -112.000092 240.000000 96.000488 64.000153 240.000000 95.999878 64.000031 224.000000 -0.000122 -111.999908 224.000000 0.000366 -112.000092 224.000000 96.000488 64.000153 224.000000 95.999878 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 63.999905 400.000000 -16.000397 -112.000107 400.000000 -16.002167 -111.999924 400.000000 -0.002197 64.000031 400.000000 -0.000427 63.999905 240.000000 -16.000397 -112.000107 240.000000 -16.002167 -111.999924 240.000000 -0.002197 64.000031 240.000000 -0.000427 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 64.000031 416.000000 -0.000122 -111.999908 416.000000 0.000366 -112.000092 416.000000 96.000488 64.000153 416.000000 95.999878 64.000031 400.000000 -0.000122 -111.999908 400.000000 0.000366 -112.000092 400.000000 96.000488 64.000153 400.000000 95.999878 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -96.000092 400.000000 0.000031 -111.999847 400.000000 0.000031 -112.000092 400.000000 96.000061 -96.000031 400.000000 96.000122 -96.000092 240.000000 0.000031 -111.999847 240.000000 0.000031 -112.000092 240.000000 96.000061 -96.000031 240.000000 96.000122 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 64.000000 400.000000 79.999939 -95.999847 400.000000 80.001709 -96.000092 400.000000 96.001953 64.000031 400.000000 95.999878 64.000000 240.000000 79.999939 -95.999847 240.000000 80.001709 -96.000092 240.000000 96.001953 64.000031 240.000000 95.999878 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -32.000000 976.000000 96.000031 -48.000000 976.000000 96.000031 -48.000732 976.000000 767.999878 -32.000732 976.000000 767.999878 -32.000000 224.000000 96.000031 -48.000000 224.000000 96.000031 -48.000732 224.000000 767.999878 -32.000732 224.000000 767.999878 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -112.000000 976.000000 80.000031 -112.000000 976.000000 96.000015 -32.000153 976.000000 96.000763 -32.000153 976.000000 80.000778 -112.000000 416.000000 80.000031 -112.000000 416.000000 96.000015 -32.000153 416.000000 96.000763 -32.000153 416.000000 80.000778 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -208.000000 992.000000 608.000000 -224.000000 992.000000 608.000000 -224.000732 992.000000 767.999878 -208.000732 992.000000 767.999878 -208.000000 240.000000 608.000000 -224.000000 240.000000 608.000000 -224.000732 240.000000 767.999878 -208.000732 240.000000 767.999878 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -512.000000 736.000000 1040.000000 -400.000000 736.000000 1040.000000 -400.000000 736.000000 688.000000 -512.000000 736.000000 688.000000 -512.000000 720.000000 1040.000000 -400.000000 720.000000 1040.000000 -400.000000 720.000000 688.000000 -512.000000 720.000000 688.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -495.999939 720.000000 816.000122 -496.000000 720.000000 912.000000 -399.999939 720.000000 912.000122 -399.999878 720.000000 816.000244 -495.999939 384.000000 816.000122 -496.000000 384.000000 912.000000 -399.999939 384.000000 912.000122 -399.999878 384.000000 816.000244 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -400.000000 992.000000 768.000000 -400.000000 992.000000 784.000000 -208.000000 992.000000 784.001282 -208.000092 992.000000 768.001221 -400.000000 224.000000 768.000000 -400.000000 224.000000 784.000000 -208.000000 224.000000 784.001282 -208.000092 224.000000 768.001221 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -528.000061 976.000000 80.000031 -528.000061 976.000000 96.000015 -112.000153 976.000000 96.000763 -112.000153 976.000000 80.000778 -528.000061 224.000000 80.000031 -528.000061 224.000000 96.000015 -112.000153 224.000000 96.000763 -112.000153 224.000000 80.000778 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1408.000000 240.000000 608.000000 -48.000000 240.000000 608.000000 -48.000000 240.000000 96.000000 -1408.000000 240.000000 96.000000 -1408.000000 224.000000 608.000000 -48.000000 224.000000 608.000000 -48.000000 224.000000 96.000000 -1408.000000 224.000000 96.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1408.000000 992.000000 608.000000 -1408.000000 992.000000 624.000000 -224.000153 992.000000 624.000732 -224.000153 992.000000 608.000793 -1408.000000 224.000000 608.000000 -1408.000000 224.000000 624.000000 -224.000153 224.000000 624.000732 -224.000153 224.000000 608.000732 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1520.000732 416.000000 0.000000 -1520.002319 416.000000 175.999878 -1504.002441 416.000000 175.999756 -1504.000732 416.000000 -0.000244 -1520.000732 256.000000 0.000000 -1520.002319 256.000000 175.999878 -1504.002441 256.000000 175.999756 -1504.000732 256.000000 -0.000244 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1504.000244 256.000000 -0.000244 -1503.999878 256.000000 175.999756 -1407.999756 256.000000 175.999878 -1408.000488 256.000000 -0.000244 -1504.000244 240.000000 -0.000244 -1503.999878 240.000000 175.999756 -1407.999756 240.000000 175.999878 -1408.000488 240.000000 -0.000244 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1504.000244 416.000000 159.999878 -1504.000244 416.000000 175.999756 -1408.000122 416.000000 175.999878 -1408.000122 416.000000 159.999878 -1504.000244 256.000000 159.999878 -1504.000244 256.000000 175.999756 -1408.000122 256.000000 175.999878 -1408.000122 256.000000 159.999878 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1504.000244 432.000000 -0.000244 -1503.999878 432.000000 175.999756 -1407.999756 432.000000 175.999878 -1408.000488 432.000000 -0.000244 -1504.000244 416.000000 -0.000244 -1503.999878 416.000000 175.999756 -1407.999756 416.000000 175.999878 -1408.000488 416.000000 -0.000244 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1424.000366 416.000000 -0.000122 -1423.998535 416.000000 159.999756 -1407.998291 416.000000 159.999878 -1408.000488 416.000000 -0.000244 -1424.000366 256.000000 -0.000122 -1423.998535 256.000000 159.999756 -1407.998291 256.000000 159.999878 -1408.000488 256.000000 -0.000244 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1504.000244 432.000000 527.999756 -1503.999878 432.000000 703.999756 -1407.999756 432.000000 703.999878 -1408.000488 432.000000 527.999756 -1504.000244 416.000000 527.999756 -1503.999878 416.000000 703.999756 -1407.999756 416.000000 703.999878 -1408.000488 416.000000 527.999756 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1520.000732 416.000000 528.000000 -1520.002319 416.000000 703.999878 -1504.002441 416.000000 703.999756 -1504.000732 416.000000 527.999756 -1520.000732 256.000000 528.000000 -1520.002319 256.000000 703.999878 -1504.002441 256.000000 703.999756 -1504.000732 256.000000 527.999756 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1520.000244 416.000000 512.000000 -1520.000366 416.000000 528.000000 -1408.000244 416.000000 527.999756 -1408.000244 416.000000 511.999634 -1520.000244 256.000000 512.000000 -1520.000366 256.000000 528.000000 -1408.000244 256.000000 527.999756 -1408.000244 256.000000 511.999634 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1424.000366 416.000000 527.999878 -1423.998535 416.000000 687.999756 -1407.998291 416.000000 687.999878 -1408.000488 416.000000 527.999756 -1424.000366 256.000000 527.999878 -1423.998535 256.000000 687.999756 -1407.998291 256.000000 687.999878 -1408.000488 256.000000 527.999756 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1504.000244 256.000000 511.999756 -1503.999878 256.000000 703.999756 -1407.999756 256.000000 703.999878 -1408.000488 256.000000 511.999756 -1504.000244 240.000000 511.999756 -1503.999878 240.000000 703.999756 -1407.999756 240.000000 703.999878 -1408.000488 240.000000 511.999756 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1424.000000 416.000000 512.000000 -1408.000000 416.000000 512.000000 -1408.000000 416.000000 176.000000 -1424.000000 416.000000 176.000000 -1424.000000 240.000000 512.000000 -1408.000000 240.000000 512.000000 -1408.000000 240.000000 176.000000 -1424.000000 240.000000 176.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1408.000000 992.000000 80.000031 -1408.000000 992.000000 96.000015 -832.000122 992.000000 96.000763 -832.000122 992.000000 80.000778 -1408.000000 224.000000 80.000031 -1408.000000 224.000000 96.000015 -832.000122 224.000000 96.000763 -832.000122 224.000000 80.000778 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1408.000000 624.000000 608.000000 -1392.000000 624.000000 608.000000 -1391.999268 624.000000 96.000183 -1407.999268 624.000000 96.000183 -1408.000000 416.000000 608.000000 -1392.000000 416.000000 608.000000 -1391.999268 416.000000 96.000183 -1407.999268 416.000000 96.000183 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1488.000244 816.000000 271.999756 -1487.999878 816.000000 447.999756 -1391.999756 816.000000 447.999878 -1392.000488 816.000000 271.999756 -1488.000244 800.000000 271.999756 -1487.999878 800.000000 447.999756 -1391.999756 800.000000 447.999878 -1392.000488 800.000000 271.999756 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1504.000732 800.000000 272.000000 -1504.002319 800.000000 447.999878 -1488.002441 800.000000 447.999756 -1488.000732 800.000000 271.999756 -1504.000732 640.000000 272.000000 -1504.002319 640.000000 447.999878 -1488.002441 640.000000 447.999756 -1488.000732 640.000000 271.999756 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1488.000244 640.000000 271.999756 -1487.999878 640.000000 447.999756 -1391.999756 640.000000 447.999878 -1392.000488 640.000000 271.999756 -1488.000244 624.000000 271.999756 -1487.999878 624.000000 447.999756 -1391.999756 624.000000 447.999878 -1392.000488 624.000000 271.999756 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1424.000366 800.000000 271.999878 -1423.998535 800.000000 431.999756 -1407.998291 800.000000 431.999878 -1408.000488 800.000000 271.999756 -1424.000366 640.000000 271.999878 -1423.998535 640.000000 431.999756 -1407.998291 640.000000 431.999878 -1408.000488 640.000000 271.999756 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1408.000000 992.000000 608.000000 -1392.000000 992.000000 608.000000 -1391.999268 992.000000 96.000183 -1407.999268 992.000000 96.000183 -1408.000000 816.000000 608.000000 -1392.000000 816.000000 608.000000 -1391.999268 816.000000 96.000183 -1407.999268 816.000000 96.000183 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1504.000732 816.000000 96.000000 -1504.000366 816.000000 272.000000 -1392.000244 816.000000 271.999756 -1392.000732 816.000000 95.999634 -1504.000732 624.000000 96.000000 -1504.000366 624.000000 272.000000 -1392.000244 624.000000 271.999756 -1392.000732 624.000000 95.999634 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1488.000244 816.000000 431.999878 -1488.000488 816.000000 607.999756 -1392.000366 816.000000 607.999878 -1392.000122 816.000000 431.999878 -1488.000244 624.000000 431.999878 -1488.000488 624.000000 607.999756 -1392.000366 624.000000 607.999878 -1392.000122 624.000000 431.999878 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1408.000000 800.000000 384.000000 -1392.000000 800.000000 384.000000 -1392.000000 800.000000 320.000000 -1408.000000 800.000000 320.000000 -1408.000000 640.000000 384.000000 -1392.000000 640.000000 384.000000 -1392.000000 640.000000 320.000000 -1408.000000 640.000000 320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -319.999908 416.000000 608.000000 -320.000000 416.000000 447.999939 -384.000000 416.000000 447.999939 -383.999939 416.000000 607.999878 -319.999908 240.000000 608.000000 -320.000000 240.000000 447.999939 -384.000000 240.000000 447.999939 -383.999939 240.000000 607.999878 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -448.000275 352.000000 384.000031 -448.000061 352.000000 223.999985 -544.000061 352.000000 223.999893 -544.000305 352.000000 383.999817 -448.000275 240.000000 384.000031 -448.000061 240.000000 223.999985 -544.000061 240.000000 223.999893 -544.000305 240.000000 383.999817 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -362.509644 576.000000 576.000000 -260.686279 576.000000 474.176636 -272.000000 576.000000 462.862915 -373.823364 576.000000 564.686279 -362.509644 416.000000 576.000000 -260.686279 416.000000 474.176636 -272.000000 416.000000 462.862915 -373.823364 416.000000 564.686279 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -215.431458 576.000000 519.431396 -317.254639 576.000000 621.255127 -305.940857 576.000000 632.568787 -204.117920 576.000000 530.745056 -215.431458 416.000000 519.431396 -317.254639 416.000000 621.255127 -305.940857 416.000000 632.568787 -204.117920 416.000000 530.745056 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -272.000000 576.000000 485.490356 -226.745117 576.000000 530.745117 -215.431396 576.000000 519.431396 -260.686340 576.000000 474.176758 -272.000000 416.000000 485.490356 -226.745117 416.000000 530.745117 -215.431396 416.000000 519.431396 -260.686340 416.000000 474.176758 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -328.568542 416.000000 632.568542 -226.745178 416.000000 530.745178 -272.000000 416.000000 485.490356 -373.823364 416.000000 587.313721 -328.568542 400.000000 632.568542 -226.745178 400.000000 530.745178 -272.000000 400.000000 485.490356 -373.823364 400.000000 587.313721 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -832.000000 512.000000 -32.000000 -832.000122 544.000000 16.000000 -816.000000 544.000000 15.999878 -832.000122 464.000000 16.000000 -816.000000 464.000000 15.999878 -816.000000 512.000000 -32.000000 faces 0.000000 0.000000 1.000000 1.000000 236.309952 1 0 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 236.309952 2 4 5 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 360.000000 2 1 3 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 360.000000 0 1 2 5 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 360.000000 4 3 0 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -832.000122 512.000000 16.000000 -832.000000 512.000000 96.000000 -816.000000 512.000000 96.000000 -816.000000 512.000000 15.999878 -832.000122 496.000000 16.000000 -832.000000 496.000000 96.000000 -816.000000 496.000000 96.000000 -816.000000 496.000000 15.999878 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -448.000366 560.000000 -368.000122 -608.000305 560.000000 -367.998352 -608.000427 560.000000 -351.998108 -448.000244 560.000000 -352.000244 -448.000366 400.000000 -368.000122 -608.000305 400.000000 -367.998352 -608.000427 400.000000 -351.998108 -448.000244 400.000000 -352.000244 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -448.000305 400.000000 -448.000061 -624.000244 400.000000 -447.999634 -624.000366 400.000000 -351.999512 -448.000244 400.000000 -352.000244 -448.000305 384.000000 -448.000061 -624.000244 384.000000 -447.999634 -624.000366 384.000000 -351.999512 -448.000244 384.000000 -352.000244 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -608.000366 560.000000 -448.000000 -624.000244 560.000000 -448.000000 -624.000427 560.000000 -351.999939 -608.000427 560.000000 -351.999939 -608.000366 400.000000 -448.000000 -624.000244 400.000000 -448.000000 -624.000427 400.000000 -351.999939 -608.000427 400.000000 -351.999939 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -448.000305 576.000000 -448.000061 -624.000244 576.000000 -447.999634 -624.000366 576.000000 -351.999512 -448.000244 576.000000 -352.000244 -448.000305 560.000000 -448.000061 -624.000244 560.000000 -447.999634 -624.000366 560.000000 -351.999512 -448.000244 560.000000 -352.000244 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -832.000000 240.000000 96.000000 -528.000000 240.000000 96.000000 -528.000000 240.000000 -464.000000 -832.000000 240.000000 -464.000000 -832.000000 224.000000 96.000000 -528.000000 224.000000 96.000000 -528.000000 224.000000 -464.000000 -832.000000 224.000000 -464.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -528.000000 384.000000 80.000061 -512.000000 384.000000 80.000061 -511.999268 384.000000 -479.999756 -527.999268 384.000000 -479.999756 -528.000000 240.000000 80.000061 -512.000000 240.000000 80.000061 -511.999268 240.000000 -479.999756 -527.999268 240.000000 -479.999756 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -528.000000 976.000000 80.000061 -512.000000 976.000000 80.000061 -511.999268 976.000000 -351.999756 -527.999268 976.000000 -351.999756 -528.000000 384.000000 80.000061 -512.000000 384.000000 80.000061 -511.999268 384.000000 -351.999756 -527.999268 384.000000 -351.999756 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -448.000488 576.000000 -464.000427 -624.000427 576.000000 -464.002136 -624.000244 576.000000 -448.002197 -448.000244 576.000000 -448.000427 -448.000488 400.000000 -464.000427 -624.000427 400.000000 -464.002136 -624.000244 400.000000 -448.002197 -448.000244 400.000000 -448.000427 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -848.000000 992.000000 80.000061 -832.000000 992.000000 80.000061 -831.999268 992.000000 -159.999786 -847.999268 992.000000 -159.999786 -848.000000 240.000000 80.000061 -832.000000 240.000000 80.000061 -831.999268 240.000000 -159.999786 -847.999268 240.000000 -159.999786 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 63.999786 400.000000 -16.000000 47.999908 400.000000 -16.000031 48.000214 400.000000 79.999939 64.000214 400.000000 80.000000 63.999786 240.000000 -16.000000 47.999908 240.000000 -16.000031 48.000214 240.000000 79.999939 64.000214 240.000000 80.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1504.000244 416.000000 671.999878 -1504.000244 416.000000 687.999756 -1408.000122 416.000000 687.999878 -1408.000122 416.000000 671.999878 -1504.000244 256.000000 671.999878 -1504.000244 256.000000 687.999756 -1408.000122 256.000000 687.999878 -1408.000122 256.000000 671.999878 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1520.000244 416.000000 0.000000 -1520.000366 416.000000 16.000000 -1408.000244 416.000000 15.999756 -1408.000244 416.000000 -0.000366 -1520.000244 256.000000 0.000000 -1520.000366 256.000000 16.000000 -1408.000244 256.000000 15.999756 -1408.000244 256.000000 -0.000366 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -448.000549 560.000000 -463.999939 -464.000610 560.000000 -464.000122 -464.000305 560.000000 -352.000000 -448.000122 560.000000 -352.000000 -448.000549 400.000000 -463.999939 -464.000610 400.000000 -464.000122 -464.000305 400.000000 -352.000000 -448.000122 400.000000 -352.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -528.000000 976.000000 -351.999939 -512.000000 976.000000 -351.999939 -511.999268 976.000000 -463.999756 -527.999268 976.000000 -463.999756 -528.000000 576.000000 -351.999939 -512.000000 576.000000 -351.999939 -511.999268 576.000000 -463.999756 -527.999268 576.000000 -463.999756 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -832.000000 240.000015 -160.000000 -832.000122 240.000015 -288.000061 -1072.000122 240.000015 -288.000305 -1071.999756 240.000015 -160.000320 -832.000000 224.000015 -160.000000 -832.000122 224.000015 -288.000061 -1072.000122 224.000015 -288.000305 -1071.999756 224.000015 -160.000320 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1200.000000 240.000000 -335.999878 -1200.000122 240.000000 -463.999939 -1472.000122 240.000000 -463.999878 -1471.999756 240.000000 -335.999878 -1200.000000 224.000000 -335.999878 -1200.000122 224.000000 -463.999939 -1472.000122 224.000000 -463.999878 -1471.999756 224.000000 -335.999878 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1200.000000 240.000000 -160.000000 -1072.000000 240.000000 -160.000000 -1072.000000 240.000000 -464.000000 -1200.000000 240.000000 -464.000000 -1200.000000 -32.000000 -160.000000 -1072.000000 -32.000000 -160.000000 -1072.000000 -32.000000 -464.000000 -1200.000000 -32.000000 -464.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -832.000000 224.000000 -160.000000 -816.000000 224.000000 -160.000000 -816.000000 224.000000 -464.000000 -832.000000 224.000000 -464.000000 -832.000000 0.000000 -160.000000 -816.000000 0.000000 -160.000000 -816.000000 0.000000 -464.000000 -832.000000 0.000000 -464.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -351.195984 576.000000 564.686279 -294.627380 576.000000 621.254761 -283.313660 576.000000 609.941040 -339.882324 576.000000 553.372681 -351.195984 416.000000 564.686279 -294.627380 416.000000 621.254761 -283.313660 416.000000 609.941040 -339.882324 416.000000 553.372681 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1360.000000 224.000000 -464.000000 -1376.000000 224.000000 -464.000000 -1376.000000 224.000000 -160.000000 -1360.000000 224.000000 -160.000000 -1360.000000 80.000000 -464.000000 -1376.000000 80.000000 -464.000000 -1376.000000 80.000000 -160.000000 -1360.000000 80.000000 -160.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1472.000000 496.000000 -752.000000 -1168.000000 240.000000 -752.000000 -1168.000122 240.000000 -464.000122 -1168.000000 496.000000 -752.000000 -1472.000000 240.000000 -752.000000 -1472.000000 240.000000 -464.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 1 2 5 0x00000000 brush vertices -1488.000000 496.000000 -1136.000122 -1488.000000 496.000000 -752.000000 -1151.999878 496.000000 -752.000000 -1152.000000 496.000000 -1136.000122 -1488.000000 480.000000 -1136.000122 -1488.000000 480.000000 -752.000000 -1151.999878 480.000000 -752.000000 -1152.000000 480.000000 -1136.000122 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1264.000000 640.000000 -1136.000000 -1264.000000 640.000000 -1120.000000 -1152.000000 640.000000 -1120.000000 -1152.000000 640.000000 -1136.000000 -1264.000000 624.000000 -1136.000000 -1264.000000 624.000000 -1120.000000 -1152.000000 624.000000 -1120.000000 -1152.000000 624.000000 -1136.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -1216.000000 624.000000 -1136.000000 -1216.000000 624.000000 -1120.000000 -1200.000000 624.000000 -1120.000000 -1200.000000 624.000000 -1136.000000 -1216.000000 512.000000 -1136.000000 -1216.000000 512.000000 -1120.000000 -1200.000000 512.000000 -1120.000000 -1200.000000 512.000000 -1136.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -1296.000000 640.000000 -1136.000000 -1296.000000 640.000000 -1120.000000 -1280.000000 640.000000 -1120.000000 -1280.000000 640.000000 -1136.000000 -1296.000000 512.000000 -1136.000000 -1296.000000 512.000000 -1120.000000 -1280.000000 512.000000 -1120.000000 -1280.000000 512.000000 -1136.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -1344.000244 592.000000 -1136.000000 -1344.000244 592.000000 -1120.000000 -1328.000244 592.000000 -1120.000000 -1328.000000 592.000000 -1136.000244 -1344.000244 512.000000 -1136.000000 -1344.000244 512.000000 -1120.000000 -1328.000244 512.000000 -1120.000000 -1328.000000 512.000000 -1136.000244 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -1328.000000 592.000000 -1136.000244 -1328.000244 592.000000 -1120.000000 -1296.000000 592.000000 -1120.000000 -1296.000000 592.000000 -1136.000000 -1328.000000 576.000000 -1136.000244 -1328.000244 576.000000 -1120.000000 -1296.000000 576.000000 -1120.000000 -1296.000000 576.000000 -1136.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -1424.000000 592.000000 -1136.000244 -1424.000000 592.000000 -1120.000000 -1360.000244 528.000000 -1120.000000 -1360.000244 512.000000 -1136.000000 -1360.000244 528.000000 -1136.000000 -1424.000000 576.000000 -1120.000000 -1360.000244 512.000000 -1120.000000 -1424.000000 576.000000 -1136.000244 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -1360.000244 592.000000 -1120.000000 -1360.000244 592.000000 -1136.000000 -1424.000244 528.000000 -1136.000000 -1424.000000 512.000000 -1120.000000 -1424.000000 528.000000 -1120.000000 -1360.000244 576.000000 -1136.000000 -1424.000244 512.000000 -1136.000000 -1360.000244 576.000000 -1120.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -1456.000000 528.000000 -1136.000000 -1456.000000 528.000000 -1120.000000 -1440.000000 528.000000 -1120.000244 -1440.000000 528.000000 -1136.000000 -1456.000000 512.000000 -1136.000000 -1456.000000 512.000000 -1120.000000 -1440.000000 512.000000 -1120.000244 -1440.000000 512.000000 -1136.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -1456.000000 640.000000 -1136.000000 -1456.000000 640.000000 -1120.000000 -1440.000000 640.000000 -1120.000244 -1440.000000 640.000000 -1136.000000 -1456.000000 544.000000 -1136.000000 -1456.000000 544.000000 -1120.000000 -1440.000000 544.000000 -1120.000244 -1440.000000 544.000000 -1136.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -1488.000000 640.000000 -1136.000000 -1488.000000 640.000000 -1120.000000 -1472.000000 640.000000 -1120.000000 -1472.000000 640.000000 -1136.000000 -1488.000000 544.000000 -1136.000000 -1488.000000 544.000000 -1120.000000 -1472.000000 544.000000 -1120.000000 -1472.000000 544.000000 -1136.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -1488.000000 528.000000 -1136.000000 -1488.000000 528.000000 -1120.000000 -1472.000000 528.000000 -1120.000000 -1472.000000 528.000000 -1136.000000 -1488.000000 512.000000 -1136.000000 -1488.000000 512.000000 -1120.000000 -1472.000000 512.000000 -1120.000000 -1472.000000 512.000000 -1136.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -1488.000000 992.000000 -1152.000122 -1488.000000 992.000000 -1136.000122 -1152.000000 992.000000 -1136.000122 -1152.000000 992.000000 -1152.000122 -1488.000000 496.000000 -1152.000122 -1488.000000 496.000000 -1136.000122 -1152.000000 496.000000 -1136.000122 -1152.000000 496.000000 -1152.000122 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1152.000122 992.000000 -1152.000122 -1152.000000 992.000000 -752.000000 -1136.000000 992.000000 -752.000000 -1136.000122 992.000000 -1152.000122 -1152.000122 496.000000 -1152.000122 -1152.000000 496.000000 -752.000000 -1136.000000 496.000000 -752.000000 -1136.000122 496.000000 -1152.000122 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1488.000000 992.000000 -1088.000000 -1488.000000 992.000000 -1072.000000 -1152.000000 992.000000 -1072.000000 -1152.000000 992.000000 -1088.000000 -1488.000000 496.000000 -1088.000000 -1488.000000 496.000000 -1072.000000 -1152.000000 496.000000 -1072.000000 -1152.000000 496.000000 -1088.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1488.000000 992.000000 -1008.000000 -1488.000000 992.000000 -992.000122 -1152.000122 992.000000 -992.000122 -1152.000122 992.000000 -1008.000122 -1488.000000 496.000000 -1008.000000 -1488.000000 496.000000 -992.000122 -1152.000122 496.000000 -992.000122 -1152.000122 496.000000 -1008.000122 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1168.000000 992.000000 -464.000000 -1152.000000 992.000000 -464.000000 -1152.000000 992.000000 -752.000000 -1168.000000 992.000000 -752.000000 -1168.000000 240.000000 -464.000000 -1152.000000 240.000000 -464.000000 -1152.000000 240.000000 -752.000000 -1168.000000 240.000000 -752.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1152.000000 992.000000 -464.000000 -528.000000 992.000000 -464.000000 -528.000000 992.000000 -480.000000 -1152.000000 992.000000 -480.000000 -1152.000000 -32.000000 -464.000000 -528.000000 -32.000000 -464.000000 -528.000000 -32.000000 -480.000000 -1152.000000 -32.000000 -480.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1472.000000 224.000000 -464.000000 -1200.000000 224.000000 -464.000000 -1200.000000 224.000000 -480.000000 -1472.000000 224.000000 -480.000000 -1472.000000 80.000000 -464.000000 -1200.000000 80.000000 -464.000000 -1200.000000 80.000000 -480.000000 -1472.000000 80.000000 -480.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -832.000000 992.000000 -144.000000 -832.000061 992.000000 -159.999939 -1472.000000 992.000000 -160.002258 -1471.999756 992.000000 -144.002197 -832.000000 -31.999969 -144.000000 -832.000061 -31.999969 -159.999939 -1472.000000 -31.999969 -160.002258 -1471.999756 -31.999969 -144.002197 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1488.000000 992.000000 -144.000000 -1472.000000 992.000000 -144.000000 -1472.000000 992.000000 -752.000000 -1488.000000 992.000000 -752.000000 -1488.000000 64.000000 -144.000000 -1472.000000 64.000000 -144.000000 -1472.000000 64.000000 -752.000000 -1488.000000 64.000000 -752.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1504.000000 992.000000 -1136.000122 -1504.000000 992.000000 -752.000000 -1488.000000 992.000000 -752.000000 -1488.000000 992.000000 -1136.000122 -1504.000000 320.000000 -1136.000122 -1504.000000 320.000000 -752.000000 -1488.000000 320.000000 -752.000000 -1488.000000 320.000000 -1136.000122 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -208.000000 672.000000 640.000000 -208.000031 704.000000 688.000000 -192.000000 704.000000 688.000000 -208.000031 624.000000 688.000000 -192.000000 624.000000 688.000000 -191.999969 672.000000 640.000000 faces 0.000000 0.000000 1.000000 1.000000 236.309952 1 0 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 236.309952 2 4 5 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 360.000000 2 1 3 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 360.000000 0 1 2 5 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 360.000000 4 3 0 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -208.000031 672.000000 688.000000 -207.999969 672.000000 768.000122 -192.000061 672.000000 768.000000 -192.000000 672.000000 688.000000 -208.000031 656.000000 688.000000 -207.999969 656.000000 768.000122 -192.000061 656.000000 768.000000 -192.000000 656.000000 688.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -832.000000 96.000015 -160.000000 -832.000000 96.000015 -464.000061 -1472.000000 96.000015 -464.000000 -1471.999756 96.000015 -160.000000 -832.000000 80.000015 -160.000000 -832.000000 80.000015 -464.000061 -1472.000000 80.000015 -464.000000 -1471.999756 80.000015 -160.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1280.000122 224.000000 -463.999939 -1296.000000 224.000000 -463.999939 -1296.000000 224.000000 -160.000000 -1280.000000 224.000000 -160.000000 -1280.000122 96.000000 -463.999939 -1296.000000 96.000000 -463.999939 -1296.000000 96.000000 -160.000000 -1280.000000 96.000000 -160.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1280.000122 176.000000 -463.999939 -1360.000000 176.000000 -464.000000 -1360.000122 176.000000 -400.000000 -1280.000122 176.000000 -399.999756 -1280.000122 -16.000000 -463.999939 -1360.000000 -16.000000 -464.000000 -1360.000122 -16.000000 -400.000000 -1280.000122 -16.000000 -399.999756 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -960.000000 208.000000 -160.000000 -944.000000 208.000000 -160.000000 -944.000000 208.000000 -464.000000 -960.000000 208.000000 -464.000000 -960.000000 96.000000 -160.000000 -944.000000 96.000000 -160.000000 -944.000000 96.000000 -464.000000 -960.000000 96.000000 -464.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -944.000000 224.000000 -160.000000 -880.000000 224.000000 -160.000000 -880.000000 224.000000 -224.000000 -944.000000 224.000000 -224.000000 -944.000000 96.000000 -160.000000 -880.000000 96.000000 -160.000000 -880.000000 96.000000 -224.000000 -944.000000 96.000000 -224.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -880.000000 224.000000 -160.000000 -864.000000 224.000000 -160.000000 -864.000000 224.000000 -464.000000 -880.000000 224.000000 -464.000000 -880.000000 96.000000 -160.000000 -864.000000 96.000000 -160.000000 -864.000000 96.000000 -464.000000 -880.000000 96.000000 -464.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip entity type CameraPath UInt8 posLerp 2 UInt8 angleLerp 2 entity type PlayerSpawn Vector3 position 208.000000 528.000000 464.000000 Bool8 teamB 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 80.000000 640.000000 1008.000000 Vector3 angles -180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 336.000000 640.000000 1008.000000 Vector3 angles -180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -448.000061 384.000000 992.000122 Vector3 angles 90.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -448.000000 384.000000 736.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 16.000031 240.000000 32.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -301.254791 416.000000 559.999939 Vector3 angles 45.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -1472.000244 256.000000 47.999878 Vector3 angles 90.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -1472.000244 256.000000 639.999878 Vector3 angles 90.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -1456.000244 640.000000 351.999878 Vector3 angles 90.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -496.000488 400.000000 -416.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -896.000488 96.000000 -256.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -1327.999390 96.000000 -367.999878 Vector3 angles 450.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -1312.000122 496.000000 -1039.999634 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0
0c780f1a78b81c787f290437bf92da539aec558c
449d555969bfd7befe906877abab098c6e63a0e8
/284/CH4/EX4.3/ex_3.sce
bae394eba7e62368ec22ea4b5a780c59a2b556e3
[]
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
679
sce
ex_3.sce
// Chapter 4_Carrier Transport Phenomenon //Caption_Conductivity //Ex_2//page 144 T=300 Nd=5*(10^15) //donor concentration R=10 //resistance in kohm J=50 //current density in A/cm^2 V=5 //voltage in volts i=V/R //current A=i/J //cross sectional area E=100 L=V/E //length of the resistor pho=L/(V*A) // The conductivity of a compensated p-type semiconductor is //pho=e*muP*(Na-Nd) //where the mobilty is a function of the total ionized impurity concentration Na+Nd //Using trial and error , if Na=1.25*(10^16) muP=410 e=1.6*(10^-19) sig=e*muP*(Na-Nd) printf('Conductivity obtained is %1.2fd which is very close to the value we need',sig)
1ae650e6c04aff6757dc4474fa8635cbcb1f1c9d
717ddeb7e700373742c617a95e25a2376565112c
/278/CH17/EX17.5/ex_17_5.sce
dcc7147be588ba0455f87a513ff9bc83d01eaf82
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
740
sce
ex_17_5.sce
//find work done clc //soltuion //given p=10//mm d=50//mm W=20000//N D1=60//mm R1=30//mm D2=10//mm R2=5//mm u=0.08//=tan(q) u1=u //tan(a)=p/(%pi/d)=b=0.0637 b=0.0637 //P=W*tan(u+a) //P=W*[(tan(a)+tan(q))/(1-tan(a)*tan(q))] P=W*[(b+u)/(1-(b*u))]//N T=(P*d/2)/1000//N-m N=170/10 Wd1=T*2*%pi*N//N-m //wen load rotates with th screw printf("the workdone in lifting is,%f N-m\n",Wd1) //eff1=tan(a)/(tan(a+q)) eff1=b*(1-b*u)/(b+u) printf("the eff is,%f \n",eff1) //wen load doesn't trotate R=(R1+R2)/2//mm T2={(P*d/2)+(u1*W*R)}/1000//N-m Wd2=T2*2*%pi*N//N-m printf("the work done wen scre dosnt rotate is,%f N-m\n",Wd2) //To=W*tan(a)*d/2 To=W*b*d/2/1000//N-m eff2=To/T2 printf("the effi in this cse is,%f ",eff2)
8c53ff9ef2bdc5d58cf4cdc87ce6ac2b55356631
449d555969bfd7befe906877abab098c6e63a0e8
/534/CH8/EX8.8/8_8_Ammonia_tube.sce
608bca238067eeae815d71d0520cf9e9a3ebec57
[]
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
916
sce
8_8_Ammonia_tube.sce
clear; clc; printf('FUNDAMENTALS OF HEAT AND MASS TRANSFER \n Incropera / Dewitt / Bergman / Lavine \n EXAMPLE 8.8 Page 529 \n'); //Example 8.8 // Average mass trasnfer convection coefficient for the tube //Operating Conditions m = .0003; //[kg/s] mass flow rate of water T = 25+273; //[K] Temperature of surrounding and tube D = .01; //[m] Diameter L = 1; //[m] length //Table A.4 Air Properties T = 298 K uv = 15.7*10^-6; //[m^2/s] Kinematic Viscosity u = 18.36*10^-6; //[N.s/m^2] Viscosity //Table A.8 Ammonia-Air Properties T = 298 K Dab = .28*10^-4; //[m^2/s] Diffusion coeff Sc = .56; Re = m*4/(%pi*D*u); printf("\n As Reynolds Number is %i. The flow is Laminar.",Re); //Using Equation 8.57 Sh = 1.86*(Re*Sc*D/L)^.3334; h = Sh*Dab/D; printf("\n Average mass trasnfer convection coefficient for the tube %.3f m/s",h); //END
75a97b282f4c17d3bbcd98506d69b16694cb8e81
449d555969bfd7befe906877abab098c6e63a0e8
/2318/CH3/EX3.60/ex_3_60.sce
011f42141b834ad48abefc48d9fd87d91557a662
[]
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
327
sce
ex_3_60.sce
//Example 3.60 capacitance and resistance clc; clear; close; r2=1000;//ohm w=7500;// c4=0.0115;//micro-F r4=140;//ohms r3=1000;//ohms x=(1+(w^2*(c4*10^-6)^2*(r4^2)));// r1=((r2*x)/(r3*r4*w^2*(c4*10^-6)^2));//ohms c1=((r3/r2)*(c4*10^-6))/x;//F disp(r1*10^-3,"resistance is ,(k-ohm)=") disp(c1*10^6,"capacitance is,(micro-F)=")
610926a0d0c19f89b4879d14792a62edec219836
449d555969bfd7befe906877abab098c6e63a0e8
/1946/CH10/EX10.9.a/Ex_10_9_a.sce
0c2528f8362af2f0cd4a040bf85150a0eaabfaf1
[]
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
344
sce
Ex_10_9_a.sce
// Example 10.9.a;//maximum bandwidth clc; clear; close; Ra=4*10^6;//input resistane in ohms Rb=4*10^6;//matched bias resistane in ohms Ct=6*10^-12;//total capicatance in farad T=300;//TEMPERATURE IN KELVIN Rtl=(Ra*Rb)/(Ra+Rb);//total resistance B=(1/(2*%pi*Rtl*Ct));//Maximum bandwidth inhertz disp(B,"Maximum bandwidth in hertz")
7d327442d002a1768bc15f5c575fe68f8cba20b8
449d555969bfd7befe906877abab098c6e63a0e8
/1616/CH2/EX2.12/ex2_12.sce
1af72f71d6cbae175fea2f32a2ece86d5e981e6c
[]
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
518
sce
ex2_12.sce
//ex2.12 to find max and min current and voltages. zl=complex(50,-100); z01=75; z0=50; Tl=(zl-z01)/(zl+z01); Tlabs=abs(Tl); Vmax=100; V=Vmax/(1+Tlabs); Imax=Vmax/z0; Imin=V*(1-Tlabs)/z0; Vmin=Imin*z0; disp('Maximum current Imax is = '+string(Imax)+' A.'); disp('Minimum current Imin is = '+string(Imin)+' A.'); disp('Minimum voltage Vmin is = '+string(Vmin)+' V.'); disp('Maximum voltage will occurs when m = 0,1,2,3...'); disp('Therefore the voltage maxima occurs at'); disp('l = 0.4lamda, 0.9lamda, 1.4lamda...');
6b61d8833e7d5739f7d863a067d46f9c5b6189ef
8ea401b354e99fe129b2961e8ee6f780dedb12bd
/macros/convert_dtypes.sci
13433da17a40eebceb2f7bbaff7149138c479300
[ "BSD-2-Clause" ]
permissive
adityadhinavahi/SciPandas
91340ca30e7b4a0d76102a6622c97733a28923eb
b78b7571652acf527f877d9f1ce18115f327fa18
refs/heads/master
2022-12-20T04:04:35.984747
2020-08-19T16:10:51
2020-08-19T16:10:51
288,765,541
0
1
null
2020-08-19T15:35:04
2020-08-19T15:14:46
Python
UTF-8
Scilab
false
false
763
sci
convert_dtypes.sci
function convert_dtypes() // Convert columns to best possible dtypes using dtypes supporting pd.NA. // // Syntax //pd.DataFrame(data=d) // // Parameters // nfer_objects: bool, default True //convert_string: bool, default True // convert_integer: bool, default True //convert_boolean: bool, defaults True // For additional information on parameters, See https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.convert_dtypes.html // Returns : Series or DataFrame // // Examples // //Cast all columns to int32: // d = {'col1': [1, 2], 'col2': [3, 4]} //df = pd.DataFrame(data=d) //df.dtypes // // Authors // Aditya Dhinavahi // Sundeep Akella endfunction
cbc0a64adaacb5b7daefa4443bf6186dcf8987c7
449d555969bfd7befe906877abab098c6e63a0e8
/3845/CH25/EX25.10/Ex25_10.sce
e3d788e03f612a102b970279c4251a1110efccd3
[]
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
849
sce
Ex25_10.sce
//Example 25.10 f=40;//Focal length (cm) R=2*f;//Radius of curvature (cm) printf('a.Radius of curvature = %0.1f cm',R) L=1;//Length (m) A=(1/4)*2*%pi*(R*10^-2)*L;//Area of the concave mirror of length L (m^2) i=900;//Insolation (W/m^2) Q=i*A;//Insolation per meter length of pipe (W) printf('\nb.Amount of sunlight concentrated onto the pipe per meter = %0.1f W',Q) rho=8*10^2;//Density of mineral oil (kg/m^3) d=2*10^-2;//Pipe diameter (m) V=%pi*(d/2)^2*1;//Volume of 1m long section of pipe (m^3) m=rho*V;//Mass of mineral oil (kg) c=1670;//Specific heat of mineral oil (J/kg.C) delta_T=Q*60/(m*c);//Increase in temperature over 1 minute (C) printf('\nc.Increase in temperature = %0.1f C',delta_T) //Answers vary due to round off errors //Openstax - College Physics //Download for free at http://cnx.org/content/col11406/latest
888640c463e5319dbc2e220abb3d1c4f5654cea1
449d555969bfd7befe906877abab098c6e63a0e8
/1332/CH13/EX13.5/13_5.sce
1b588f1a614146634bcfaf6d7ab617d6a034f409
[]
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,131
sce
13_5.sce
//Example 13.5 //Stirlings Central Difference Derivatives //Page no. 426 clc;close;clear; printf(' x\t\t y\t\t d\t\t d2\t\t d3\n') printf('---------------------------------------------------------------------------') h=0.01;s=0.5; deff('y=f1(x,s)','y=((z(x,3)+z(x-1,3))/2+s*z(x-1,4)+(z(x-1,5)+z(x-2,5))*(3*s^2-1)/12)/h') deff('y=f2(x,s)','y=(z(x-1,4))/h^2') deff('y=f3(x,s)','y=(z(x-1,5)+z(x-2,5))/(2*h^3)') z=[1.00,1.00000;1.01,1.00499;1.02,1.00995;1.03,1.01489;1.04,1.01980;1.05,1.02470;1.06,1.02956;1.07,1.03441;1.08,1.03923;1.09,1.04403;1.10,1.04881;1.11,1.05357;1.12,1.05830;1.13,1.06301;1.14,1.06771;1.15,1.07238;1.16,1.07703]; for i=3:5 for j=1:19-i z(j,i)=z(j+1,i-1)-z(j,i-1) end end printf('\n') for i=1:17 for j=1:5 if z(i,j)==0 then printf(' \t') else printf('%.7f\t',z(i,j)) end end printf('\n') end printf('\n\ny1(1.125) = %g (exact value = 0.4771404)',f1(13,0.5)) printf('\n\ny2(1.125) = %g (exact value = -0.20951)',f2(13,0.5)) printf('\n\ny3(1.125) = %g (exact value = 0.27935)',f3(13,0.5))
c6dbf764da219f2e52c85c4348254ba72bba78c7
ef7da921e1289d3deaaf9727db2b6f025656e8d9
/DTCosineWave.sce
c534a9a9105ec11a2a940d3f8b53fb72b994f22b
[]
no_license
PrayagS/SciLab_Exercises
ea88438207f2dc5d3f211c9abfe137a4bd43f68f
0495ba76e693750980fefb386c28209a6fd6563e
refs/heads/master
2020-09-08T01:52:22.914681
2019-11-16T05:39:29
2019-11-16T05:39:29
220,977,317
2
1
null
null
null
null
UTF-8
Scilab
false
false
166
sce
DTCosineWave.sce
clear; clf; dn = 1; n = -50 : dn : 50; k = 1; N = 10; x = cos(2*%pi*(k/N)*n); subplot(211); plot2d3(n, x); N = 5; y = cos(2*%pi*(k/N)*n); subplot(212); plot2d3(n, y);
33d83609a7d2e893841a8287b6fa68566da55e97
13d93c2922005af35056d015f1ae3ebebe05ee31
/scilab/physique/mecanique/pendule/pendule_simple.sce
14797ad1becaa4f5651ed4ba9aa8791c739727bb
[]
no_license
scls19fr/openphysic
647cc2cdadbdafd050d178e02bc3873bd2b07445
67bdb548574f4feecb99b60995238f12f4ef26da
refs/heads/master
2021-04-30T23:16:26.197961
2020-11-16T20:21:17
2020-11-16T20:21:17
32,207,155
1
1
null
null
null
null
ISO-8859-1
Scilab
false
false
5,953
sce
pendule_simple.sce
function proceed() [L_new,ierr,errtext]=check_scalar("L","Longueur du pendule (m)","-%inf","+%inf","1"); TCL_SetVar("L_errortext",errtext); if (ierr) TCL_EvalStr("mess $L_errortext"); return end L_changed=first_run; if (or(L_new~=L)) L_changed=%t; end L=L_new; [theta_0_deg_new,ierr,errtext]=check_scalar("theta_0_deg","Angle initial","1","179","1"); TCL_SetVar("theta_0_deg_errortext",errtext); if (ierr) TCL_EvalStr("mess $theta_0_deg_errortext"); return end theta_0_deg_changed=first_run; if (or(theta_0_deg_new~=theta_0_deg)) theta_0_deg_changed=%t; end theta_0_deg=theta_0_deg_new; [g0_new,ierr,errtext]=check_scalar("g0","Acceleration de la pesanteur (N/kg)","-%inf","+%inf","1"); TCL_SetVar("g0_errortext",errtext); if (ierr) TCL_EvalStr("mess $g0_errortext"); return end g0_changed=first_run; if (or(g0_new~=g0)) g0_changed=%t; end g0=g0_new; [iv_new,ierr,errtext]=check_scalar("iv","Instant de visualisation","1","500","1"); TCL_SetVar("iv_errortext",errtext); if (ierr) TCL_EvalStr("mess $iv_errortext"); return end iv_changed=first_run; if (or(iv_new~=iv)) iv_changed=%t; end iv=iv_new; [tf_new,ierr,errtext]=check_scalar("tf","Temps final","-%inf","+%inf","1"); TCL_SetVar("tf_errortext",errtext); if (ierr) TCL_EvalStr("mess $tf_errortext"); return end tf_changed=first_run; if (or(tf_new~=tf)) tf_changed=%t; end tf=tf_new; // tc=linspace(0,2*3.1415926535,31)'; // Temps t=linspace(0,tf,500)'; if (or([theta_0_deg_changed,tf_changed,L_changed,g0_changed])) // Script code for the pendule ode _X0(1:1,1)=theta_0_deg; _X0(2:2,1)=0; _X=ode(_X0,0,t,f_pendule); theta=_X(1:1,:)'; theta_point=_X(2:2,:)'; end id66089=L*sin(theta(iv)*%pi/180)+cos(tc)*L/20; id66096=-L*cos(theta(iv)*%pi/180)+sin(tc)*L/20; pendule_nonlinX=[0,L*sin(theta(iv)*%pi/180)]; pendule_nonlinY=[0,-L*cos(theta(iv)*%pi/180)]; id66127=theta; id66133=theta_point/(sqrt(g0/L)); xmllab_display endfunction function [lhs]=f_pendule(_t,_X) t=_t; theta=_X(1:1,1); theta_point=_X(2:2,1); lhs=[(theta_point);(-180/%pi*g0/L*sin(theta*%pi/180))]; endfunction function xmllab_display() if (or([theta_0_deg_changed,tf_changed,L_changed,g0_changed])) fig(0); _wdim=xget("wdim"); clf if (TCL_GetVar("display_pph1")=="on") plot(id66127,id66133,"r-2","axis",[-theta_0_deg,theta_0_deg,-theta_0_deg,theta_0_deg],"axis","equal","axis","left"); hold("on"); hold("off"); end xlabel(""); ylabel(""); legend_list=[]; if (TCL_GetVar("display_pph1")=="on") legend_list=[legend_list;""]; end legend(legend_list,1); xset("wshow"); set_posfig_dim(_wdim(1),_wdim(2)); end if (or([theta_0_deg_changed,tf_changed,L_changed,g0_changed])) fig(1); _wdim=xget("wdim"); clf if (TCL_GetVar("display_theta")=="on") plot(t,theta,"r-2","axis",[0,tf,-theta_0_deg,theta_0_deg],"axis","left"); hold("on"); hold("off"); end xlabel("Temps"+"(s)"); ylabel("deg"); legend_list=[]; if (TCL_GetVar("display_theta")=="on") legend_list=[legend_list;"Angle du pendule"]; end legend(legend_list,1); xset("wshow"); set_posfig_dim(_wdim(1),_wdim(2)); end fig(2); _wdim=xget("wdim"); clf if (TCL_GetVar("display_pendule_nonlin")=="on") plot(pendule_nonlinX,pendule_nonlinY,"r-1","axis",[-1.2,1.2,-1.2,1.2],"axis","equal","axis","left"); hold("on"); end if (TCL_GetVar("display_circ1")=="on") plot(id66089,id66096,"r-1","axis",[-1.2,1.2,-1.2,1.2],"axis","equal","axis","left"); hold("on"); hold("off"); end title(sprintf("t = %f s",t(iv))); legend_list=[]; if (TCL_GetVar("display_pendule_nonlin")=="on") legend_list=[legend_list;""]; end if (TCL_GetVar("display_circ1")=="on") legend_list=[legend_list;""]; end legend(legend_list,1); xset("wshow"); set_posfig_dim(_wdim(1),_wdim(2)); endfunction if (~exists("%xmllab_version") | %xmllab_version ~= "1.53-1") if (isdir("XMLlab1.53-1")) // Load the runtime XMLlab library exec("XMLlab1.53-1/runtime_loader.sce"); else x_message(["You need the XMLlab toolbox version >=1.53-1";"to run this simulation.";"";"Please visit http://xmllab.org"]); quit end end first_run=%t; // // Cette simulation a été générée par XMLlab 1.53-1 // // Copyright Stéphane Mottelet, André Pauss, Université de Technologie de Compiègne // stephane.mottelet@utc.fr, andre.pauss@utc.fr // oldpwd=pwd(); chdir(get_absolute_file_path("pendule_simple.sce")); TCL_EvalFile("pendule_simple.tk"); [L,ierr,errtext]=check_scalar("L","Longueur du pendule (m)","-%inf","+%inf","1"); TCL_SetVar("L_errortext",errtext); if (ierr) TCL_EvalStr("mess $L_errortext"); return end [theta_0_deg,ierr,errtext]=check_scalar("theta_0_deg","Angle initial","1","179","1"); TCL_SetVar("theta_0_deg_errortext",errtext); if (ierr) TCL_EvalStr("mess $theta_0_deg_errortext"); return end [g0,ierr,errtext]=check_scalar("g0","Acceleration de la pesanteur (N/kg)","-%inf","+%inf","1"); TCL_SetVar("g0_errortext",errtext); if (ierr) TCL_EvalStr("mess $g0_errortext"); return end [iv,ierr,errtext]=check_scalar("iv","Instant de visualisation","1","500","1"); TCL_SetVar("iv_errortext",errtext); if (ierr) TCL_EvalStr("mess $iv_errortext"); return end [tf,ierr,errtext]=check_scalar("tf","Temps final","-%inf","+%inf","1"); TCL_SetVar("tf_errortext",errtext); if (ierr) TCL_EvalStr("mess $tf_errortext"); return end // Function for the rhs of the pendule ode graphinit(); fig(0,"margin",0.1); xset("wpdim",450+256*(1-1),360+224*(1-1)); xset("wresize",1); xname("Portrait de phase"); xset("pixmap",1); fig(1,"margin",0.1); xset("wpdim",450+256*(1-1),360+224*(1-1)); xset("wresize",1); xname("Angle du pendule en fonction du temps"); xset("pixmap",1); fig(2,"margin",0.1); xset("wpdim",450+256*(1-1),360+224*(1-1)); xset("wresize",1); xname("Animation du pendule"); xset("pixmap",1); exec(xmllab_run,-1); TCL_EvalStr('set ok 1');first_run=%f; TCL_EvalStr("raise $toplevelWindow"); TCL_SetVar('keep','yes') while TCL_GetVar('keep')=='yes';realtimeinit(1/1000);realtime(0);realtime(1);end; TCL_EvalStr('catch {bind $toplevelWindow <Destroy> {}}; catch {destroy $toplevelWindow}'); if(or(sciargs()=="-f")) quit; end;chdir(oldpwd);
987c7bbd6784a4e8c77ac03d9a651c5a0d487606
505dbe6f806a6e0354b4f1f2326dc36f01fbe3e0
/S3/Proba-Stats/56_1.sce
d62fa3fa4dacb5219916fe5c0917f08d423017f0
[]
no_license
MalikZouhiri/DropIUT
5d1dea760cc1114114a2caf0bab1701e9adc815b
1ae2cdd14f10182dbe6d0b2546e452851076591f
refs/heads/master
2020-06-05T06:20:05.109658
2015-01-23T06:04:33
2015-01-23T06:04:33
29,574,014
0
0
null
null
null
null
UTF-8
Scilab
false
false
265
sce
56_1.sce
//calculatrice a=2 b=3; b a+b a*b a/b a-b 3*a a**2 a^2 abs(b-a) //entrées sorties c=0:5 //commentaire d=input("entrer une valeur : ") texte = input("chaine :","string") texte+" titi" k=-26; printf(" valeur de la variable =%f",k); //aide printf clear a a b clear b
96811284e6c4733485aceebb6d3bbb968406a6d1
449d555969bfd7befe906877abab098c6e63a0e8
/275/CH5/EX5.5.38/Ch5_5_38.sce
5bff9a152979c7b69c8002f7c0d4cd5c142b6411
[]
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
542
sce
Ch5_5_38.sce
clc disp("Example 5.38") printf("\n") disp("calculate bandwidth,gain & harmonic distortion with feedback") printf("Given\n") //open loop gain Av=1000 //bandwidth without feedback BWol=500*10^3 //feedback factor B=0.1 //bandwidth with feedback BWcl=BWol*(1+(B*Av)) //closed loop gain Acl=Av/(1+(B*Av)) //harmonic distortion if 15% negative feedback used HDcl=15/(1+(B*Av)) printf("bandwidth with feedback is \n %f hz \n",BWcl) printf("closed loop gain \n %f \n",Acl) printf("Harmonic distortion with feedback \n %f \n",HDcl)
c8239e9f401c3fff89c72ea9a21fe11c952dac47
449d555969bfd7befe906877abab098c6e63a0e8
/1382/CH3/EX3.11.a/ex_3_11_a.sce
6bbce5226388674bdabc4258fda87bc4c9484ce3
[]
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
391
sce
ex_3_11_a.sce
// Example 3.11 (i): minimum power drain on the power supply clc, clear; Pl=10; // power delivered to load in watt eta1=80/100; // output transformer efficiency eta=78.5/100; // efficiency of a class B push pull amplfier under optimum condition Pout=Pl/eta1; Pin=Pout/eta; disp(Pout,"ac power output of amplifier (W) = ") disp(Pin,"minimum power drain on the power supply (W) = ")
a917f1f176ff40179e89ef8fda0a4507c24c0680
449d555969bfd7befe906877abab098c6e63a0e8
/1382/CH7/EX7.15/EX_7_15.sce
a2f8572d3f35c01c7c71b566e4d652efaf4fa072
[]
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,109
sce
EX_7_15.sce
// Example 7.15:resonant frequency,percentage change and quality factor clc; clear; close; Cs=0.065;//capacitance of tunned circuit in pico farad Ls=0.33;//series INDUCTANCE of tunned circuit in henry Cp=1;//parallel capacitance in pico farad Rs=5.5;//SERIES RESISTANCE IN KILLO OHMS fs=round((1/(2*%pi*sqrt(Ls*Cs*10^-12)))*10^-3);//series tunned frequency in killo hertz fp=round(((1/(2*%pi))*sqrt((1+Cs/Cp)/(Ls*Cs*10^-12)))*10^-3);//parralel tunned frequency in killo hertz Pc= ((fp-fs)/fs)*100;//percentage by which series resonant frequency exceeds the parallel resonant frequency Qs= round((2*%pi*fs*10^3*Ls)/(Rs*10^3));//quality factor with series resonant frequency Qp= round((2*%pi*fp*10^3*Ls)/(Rs*10^3));//quality factor with parallled resonant frequency disp(fs,"series tunned frequency in killo hertz is") disp(fp,"parallel tunned frequency in killo hertz is") disp(Pc,"percentage by which series resonant frequency exceeds the parallel resonant frequency") disp(Qs,"quality factor with series resonant frequency is") disp(Qp,"quality factor with paralled resonant frequency is")
1a16fe224ca2b788af9ca485100eec5eb81fd962
449d555969bfd7befe906877abab098c6e63a0e8
/3432/CH7/EX7.31/Ex7_31.sce
7e5955621c26bec9156368df9266a8ca0b2d48ea
[]
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,928
sce
Ex7_31.sce
//Example 7.31 // Reduced-Order Estimator Design for DC Servo. xdel(winsid())//close all graphics Windows clear; clc; //------------------------------------------------------------------ // State space representation //Transfer function model for DC Servo s=poly(0,'s'); num=10; den=s*(s+2)*(s+8); Gs=syslin('c',num/den); // State space representation F=[-10 1 0;-16 0 1;0 0 0] G=[0 0 10]'; H=[1 0 0]; J=0; n=sqrt(length(F)); //Desired poles for the DC Servo system. Pc=[-1.42 -1.04+2.14*%i -1.04-2.14*%i ] // State feedback gain K=ppol(F,G,Pc) disp(K,'K=',"State feedback gain") //------------------------------------------------------------------ //Estimator - error roots are at //partioned system Faa=F(1,1); Fab=F(1,2:3); Fba=F(3,1); Fbb=F(2:3,2:3); Ga=G(1);Gb=G(2:3); Pe=[-4.24+4.24*%i, -4.24-4.24*%i] // Observer gain matrix for system L=ppol(Fbb',Fab',Pe); L=L'; disp(L,"L=" ); //------------------------------------------------------------------ //State feedback control law u=-Kx=-(K+[L*k2 0])[y xc]'; k1=K(1); k2=K(2:3); //------------------------------------------------------------------ //compensator transfer function s=poly(0,'s'); num=(-0.735+s)*(1.871+s); den=poly([-0.990 + 6.12* %i, -0.990 - 6.12* %i] ,'s','roots') Dcr=syslin('c',num/den); disp(Dcr,'Dcr','compensator transfer function') //------------------------------------------------------------------ //Root locus with reduced order compensator evans(-Dcr*Gs) zoom_rect([-8 -9 3 9]) f=gca(); f.x_location = "origin" f.y_location = "origin" xset("color",2); h=legend(''); h.visible = "off" //Title, labels and grid to the figure exec .\fig_settings.sci; // custom script for setting figure properties title('Root locus for DC servo reduced order controller','fontsize',3); //------------------------------------------------------------------
dab4e365b00cdc0db12453dc8b9dae3e36eba9d1
449d555969bfd7befe906877abab098c6e63a0e8
/1673/CH7/EX7.6/7_6.sce
e87be2aa392e50f34f18034bddbe29b4e08c75f5
[]
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
538
sce
7_6.sce
//example 7.4 //Gauss Jordan //page 266 clc;clear;close; A=[2,1,1,10;3,2,3,18;1,4,9,16];//augmented matrix for i=1:3 j=i while(A(i,i)==0&j<=3) for k=1:4 B(1,k)=A(j+1,k) A(j+1,k)=A(i,k) A(i,k)=B(1,k) end disp(A); j=j+1; end disp(A); for k=4:-1:i A(i,k)=A(i,k)/A(i,i) end disp(A) for k=1:3 if(k~=i) then l=A(k,i)/A(i,i) for m=i:4 A(k,m)=A(k,m)-l*A(i,m) end end end disp(A) end for i=1:3 printf('\nx(%i )=%g\n',i,A(i,4)) end
a96139ac98fafe61d2d505c736d4dc13fb8e3406
25033eda4e7cd13f945f94c5dc35f15825066b42
/ExactCure/mu lambda ES/(mu,lambda) ES plot.sce
7b3ab6d25db028659a89a09a3cb6486f8814c9d4
[]
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,224
sce
(mu,lambda) ES plot.sce
clear function y=frozenbrock(x) if size(x,1) < 2 error('dimension must be greater one'); end N = size(x,1) y = 100*sum((x(1:N-1).^2 - x(2:N)).^2) + sum((x(1:N-1)-1).^2); endfunction function [xm,n] = evolutionstrategie(f,xm0,sm0,itermax,tol) // μ < λ lambda = 4+floor(3*log(N)); mu = floor(lambda/2); dim = length(xm0) tau = 1 //facteur d'apprentissage, petit = sigma plus petit n = 1 //nbr iteration xmp1 = xm0 xm = xm0 smp1 = sm0 rand("normal") while (((n<itermax)&(norm(xm-xmp1)>tol))| (n == 1)) then xm = xmp1 sm = smp1 for i = 1:lambda //creation s(i,:) = sm .* exp(tau*rand(1,dim)) x(i,:) = xm + s(i).*rand(1,dim) end Z = zeros(lambda) for i = 1:lambda Z(i) = f(x(i,:)) end xp = zeros(mu,dim) //vecteur des x parents sp = zeros(mu,dim) // les ecarts types associés for j = 1:mu //selection mini = find(Z == min(Z))// indice de minf(x) xp(j,:) = x(mini,:)//vecteur des mu minimum sp(j,:) = s(mini,:) Z(mini,:) = []//on l'enleve pour la prochaine iteration x(mini,:) = [] s(mini,:) = [] end xmp1 = sum(xp,'r')/mu //recombinaison smp1 = sum(sp,'r')/mu //autoadaptation n = n+1 end endfunction /***************** x0 ************************/ counteval = [] time = [] for i = 1:10:100 x0 = i*ones(20,1) [xmin c t] = purecmaes(frozenbrock, x0, 0.5, 100000, 10^-8) counteval = [counteval c] time = [time t] end clf() x0 = 1:10:100 plot(x0,time,'b.','thickness',2) xlabel('$x_0$','fontsize',4) ylabel('$temps$','fontsize',4) yi = smooth([x0;time],0.01); plot(yi(1,:)',yi(2,:)','r-'); /***************** s0 ************************/ scf() counteval = [] time = [] for s0 = 0.01:1:10 [xmin c t] = purecmaes(frozenbrock, 10*ones(20,1), s0, 100000, 10^-8) counteval = [counteval c] time = [time t] end clf() s0 = .01:1:10 plot(s0,time,'b.','thickness',2) xlabel('$s_0$','fontsize',4) ylabel('$temps$','fontsize',4) yi = smooth([s0;time],0.01); plot(yi(1,:)',yi(2,:)','r-');
2ab7880a8cd1366eb317a25cd7f57d20bad75f1e
449d555969bfd7befe906877abab098c6e63a0e8
/1787/CH2/EX2.15/Exa2_15.sce
e1088c33beb736d20fd1a093f06df096d944a045
[]
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
206
sce
Exa2_15.sce
//Exa 2.15 clc; clear; close; //given data e=1.6*10^-19;//in coulamb E=100;//in V/m RH=0.0145;//in m^3-coulamb^-1 MUn=0.36;//in m^2/V-s J=MUn*E/RH;//in A/m^2 disp(J,"Current density in A/m^2 : ");
e0b1a69cb4e84a80db1232614b1f008f66dd9d81
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/Free Tracking 360 DENSE.sce
0544b482f12371351c047335e13514ab0276329d
[]
no_license
MBHuman/Scenarios
be1a722825b3b960014b07cda2f12fa4f75c7fc8
1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137
refs/heads/master
2023-01-14T02:10:25.103083
2020-11-21T16:47:14
2020-11-21T16:47:14
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
49,593
sce
Free Tracking 360 DENSE.sce
Name=Free Tracking 360 DENSE PlayerCharacters=Character Profile BotCharacters=Quaker Bot 360.bot IsChallenge=true Timelimit=90.0 PlayerProfile=Character Profile AddedBots=Quaker Bot 360.bot PlayerMaxLives=0 BotMaxLives=0 PlayerTeam=1 BotTeams=0 MapName=square.map MapScale=4.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=true InvincibleBots=false Timescale=0.85 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=10000000000.0 ScorePerDamage=0.0 ScorePerKill=1.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=true ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=Fortnite, Tracking, Track, 360, Free Tracking WeaponHeroTag=SCAR DifficultyTag=3 AuthorsTag=zatiate BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=false BlockFCT=false Description=Freetracking Map That Allows you to move. Helps improve aim against targets that crouch and jump. GameVersion=2.0.2.0 ScorePerDistance=0.0 MBSEnable=false MBSTime1=0.25 MBSTime2=0.5 MBSTime3=0.75 MBSTime1Mult=1.0 MBSTime2Mult=2.0 MBSTime3Mult=3.0 MBSFBInstead=false MBSRequireEnemyAlive=false LockFOVRange=false LockedFOVMin=60.0 LockedFOVMax=120.0 LockedFOVScale=Clamped Horizontal [Aim Profile] Name=At Feet MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=-200.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Aim Profile] Name=Low Skill At Feet MinReactionTime=0.35 MaxReactionTime=0.45 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=20.0 TrackSpeed=3.0 TrackError=5.0 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=60.0 ShootFOV=25.0 VerticalAimOffset=-200.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Aim Profile] Name=Low Skill MinReactionTime=0.35 MaxReactionTime=0.45 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=20.0 TrackSpeed=3.0 TrackError=5.0 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=60.0 ShootFOV=25.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Bot Profile] Name=Quaker Bot 360 DodgeProfileNames=Long Strafes Jumping;Short Strafes Jumping DodgeProfileWeights=1.0;1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Quaker SeeThroughWalls=false NoDodging=false NoAiming=false AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Character Profile] Name=Character Profile MaxHealth=100.0 WeaponProfileNames=LG;SCAR;;;;;; MinRespawnDelay=0.1 MaxRespawnDelay=0.1 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=8.0 MovementType=Base MaxSpeed=1000.0 MaxCrouchSpeed=500.0 Acceleration=16000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=0.0 Gravity=20.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=255.000 Y=0.000 Z=0.000 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=230.0 MainBBRadius=55.0 MainBBHasHead=true MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=true ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=20.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.1 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.25 ThirdPersonCamera=false TPSArmLength=500.0 TPSOffset=X=0.000 Y=125.000 Z=40.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Quaker MaxHealth=300.0 WeaponProfileNames=;;LG;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=1300.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=320.0 MainBBRadius=58.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Dodge Profile] Name=Long Strafes Jumping MaxTargetDistance=5000.0 MinTargetDistance=500.0 ToggleLeftRight=true ToggleForwardBack=true MinLRTimeChange=0.5 MaxLRTimeChange=3.0 MinFBTimeChange=0.5 MaxFBTimeChange=1.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.3 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=1.3 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.7 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Dodge Profile] Name=Short Strafes Jumping MaxTargetDistance=5000.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.2 MaxLRTimeChange=0.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.3 CrouchInAirFrequency=0.17 CrouchOnGroundFrequency=0.17 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=2.3 MinJumpTime=0.3 MaxJumpTime=2.3 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.7 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Weapon Profile] Name=LG Type=Hitscan ShotsPerClick=1 DamagePerShot=6.0 KnockbackFactor=2.0 TimeBetweenShots=0.046 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=7.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.05 BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=1 DecalSize=50.0 DelayAfterShooting=0.0 BeamTracksCrosshair=true AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=80.0 ADSFOVScale=Fortnite ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Gunshot ParticleBodyImpact=Blood ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=2.0 ParticleBodyImpactScale=5.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=SCAR Type=Hitscan ShotsPerClick=1 DamagePerShot=10.0 KnockbackFactor=4.0 TimeBetweenShots=0.1 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=87000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=87000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.1 ReloadTimeFromPartial=0.1 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 ProjectileGraphic=Arrow VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=0.01 CanAimDownSight=true ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=1 DecalSize=50.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=0.0 RecoilADSScale=0.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=80.0 ADSFOVScale=Fortnite ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=SCAR 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Gunshot ParticleBodyImpact=Blood ParticleProjectileTrail=None ParticleHitscanTrace=Rifle ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=2.0 ParticleBodyImpactScale=5.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=0.1 DamageAtCenter=0.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=0.0,0.1,-1.0,0.0 SpreadSCA=0.0,0.1,-1.0,0.0 SpreadMSA=0.0,0.1,-1.0,0.0 SpreadMCA=0.0,0.1,-1.0,0.0 SpreadSSH=0.0,0.1,0.0,0.0 SpreadSCH=0.0,0.1,-1.0,0.0 SpreadMSH=0.0,0.1,0.0,0.0 SpreadMCH=0.0,0.1,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=0.0 RecoilAutoReset=false TimeToRecoilPeak=0.1 TimeToRecoilReset=0.1 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end UInt8 playersMin 1 UInt8 playersMax 16 brush vertices -936.000000 -1088.000000 1216.000000 1064.000000 -1088.000000 1216.000000 1064.000000 -1088.000000 -784.000000 -936.000000 -1088.000000 -784.000000 -936.000000 -1152.000000 1216.000000 1064.000000 -1152.000000 1216.000000 1064.000000 -1152.000000 -784.000000 -936.000000 -1152.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1120.000000 912.000000 1216.000000 -936.000000 912.000000 1216.000000 -936.000000 912.000000 -784.000000 -1120.000000 912.000000 -784.000000 -1120.000000 -1088.000000 1216.000000 -936.000000 -1088.000000 1216.000000 -936.000000 -1088.000000 -784.000000 -1120.000000 -1088.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 1064.000000 912.000000 1216.000000 1216.000000 912.000000 1216.000000 1216.000000 912.000000 -784.000000 1064.000000 912.000000 -784.000000 1064.000000 -1088.000000 1216.000000 1216.000000 -1088.000000 1216.000000 1216.000000 -1088.000000 -784.000000 1064.000000 -1088.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -936.000000 1032.000000 1224.000000 1064.000000 1032.000000 1224.000000 1064.000000 1032.000000 -776.000000 -936.000000 1032.000000 -776.000000 -936.000000 912.000000 1224.000000 1064.000000 912.000000 1224.000000 1064.000000 912.000000 -776.000000 -936.000000 912.000000 -776.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -936.000000 920.000000 1520.000000 1064.000000 920.000000 1520.000000 1064.000000 920.000000 1216.000000 -936.000000 920.000000 1216.000000 -936.000000 -1088.000000 1520.000000 1064.000000 -1088.000000 1520.000000 1064.000000 -1088.000000 1216.000000 -936.000000 -1088.000000 1216.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -936.000000 920.000000 -768.000000 1064.000000 920.000000 -768.000000 1064.000000 920.000000 -1104.000000 -936.000000 920.000000 -1104.000000 -936.000000 -1080.000000 -768.000000 1064.000000 -1080.000000 -768.000000 1064.000000 -1080.000000 -1104.000000 -936.000000 -1080.000000 -1104.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 entity type PlayerSpawn Vector3 position 36.000000 -200.000000 224.000000 Bool8 teamB 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type CameraPath UInt32 entityIdAttachedTo 249 UInt8 posLerp 2 UInt8 angleLerp 2 entity type Effect Vector3 position 0.000000 256.000000 0.000000 String64 effectName internal/misc/reflectionprobe entity type PlayerSpawn Vector3 position 856.000000 -1008.000000 784.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 896.000000 -1000.000000 -672.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 264.000000 -992.000000 -640.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -744.000000 -976.000000 232.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -232.000000 -952.000000 -64.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -752.000000 -968.000000 1024.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -240.000000 -1016.000000 488.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -240.000000 -1048.000000 -680.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -816.000000 -1048.000000 -384.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -728.000000 -952.000000 -64.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -552.000000 -1048.000000 1112.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 352.000000 -1048.000000 1120.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -544.000000 -1048.000000 824.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 640.000000 -1048.000000 840.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 912.000000 -1048.000000 -104.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 888.000000 -1048.000000 528.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 888.000000 -1048.000000 232.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 640.000000 -1048.000000 -688.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 32.000000 -1048.000000 -680.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -560.000000 -1048.000000 -696.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -544.000000 -1048.000000 -368.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 304.000000 -1048.000000 528.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 928.000000 -1048.000000 -424.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -240.000000 -1048.000000 216.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 24.000000 -1048.000000 832.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -816.000000 -1048.000000 -704.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 944.000000 -1048.000000 1128.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -544.000000 -1048.000000 -104.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -840.000000 -1048.000000 528.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -848.000000 -1048.000000 824.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -240.000000 -1048.000000 1112.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 40.000000 -1048.000000 1128.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 664.000000 -1048.000000 1128.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -560.000000 -1048.000000 224.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -560.000000 -1048.000000 512.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -232.000000 -1048.000000 -344.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 32.000000 -1048.000000 512.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -248.000000 -1048.000000 824.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 320.000000 -1048.000000 840.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 624.000000 -1048.000000 536.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 16.000000 -1048.000000 232.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 288.000000 -1048.000000 232.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 616.000000 -1048.000000 224.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 8.000000 -1048.000000 -80.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 8.000000 -1048.000000 -360.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 280.000000 -1048.000000 -88.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 296.000000 -1048.000000 -376.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 640.000000 -1048.000000 -416.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 640.000000 -1048.000000 -96.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -744.000000 776.000000 1008.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -840.000000 696.000000 808.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -832.000000 696.000000 512.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -736.000000 768.000000 216.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -552.000000 696.000000 208.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -552.000000 696.000000 496.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -536.000000 696.000000 808.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -544.000000 696.000000 1096.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -232.000000 696.000000 1096.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -240.000000 696.000000 808.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -232.000000 728.000000 472.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 40.000000 696.000000 496.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -232.000000 696.000000 200.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 32.000000 696.000000 816.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 48.000000 696.000000 1112.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 360.000000 696.000000 1104.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 328.000000 696.000000 824.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 312.000000 696.000000 512.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 648.000000 696.000000 824.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 672.000000 696.000000 1112.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 24.000000 696.000000 216.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 296.000000 696.000000 216.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 632.000000 696.000000 520.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 952.000000 696.000000 1112.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 864.000000 736.000000 768.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 896.000000 696.000000 512.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 624.000000 696.000000 208.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 896.000000 696.000000 216.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 920.000000 696.000000 -120.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 648.000000 696.000000 -112.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 288.000000 696.000000 -104.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 16.000000 696.000000 -96.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 16.000000 696.000000 -376.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -224.000000 696.000000 -360.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -224.000000 792.000000 -80.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -536.000000 696.000000 -120.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -536.000000 696.000000 -384.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -552.000000 696.000000 -712.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -808.000000 696.000000 -720.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -808.000000 696.000000 -400.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -720.000000 792.000000 -80.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 936.000000 696.000000 -440.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 648.000000 696.000000 -432.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 648.000000 696.000000 -704.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 904.000000 744.000000 -688.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 304.000000 696.000000 -392.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 272.000000 752.000000 -656.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 40.000000 696.000000 -696.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -232.000000 696.000000 -696.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -744.000000 -96.000000 1016.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -840.000000 -176.000000 816.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -832.000000 -176.000000 520.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -736.000000 -104.000000 224.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -552.000000 -176.000000 216.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -552.000000 -176.000000 504.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -536.000000 -176.000000 816.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -544.000000 -176.000000 1104.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -232.000000 -176.000000 1104.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -240.000000 -176.000000 816.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -232.000000 -144.000000 480.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 40.000000 -176.000000 504.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -232.000000 -176.000000 208.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 32.000000 -176.000000 824.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 48.000000 -176.000000 1120.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 360.000000 -176.000000 1112.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 328.000000 -176.000000 832.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 312.000000 -176.000000 520.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 648.000000 -176.000000 832.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 672.000000 -176.000000 1120.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 296.000000 -176.000000 224.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 632.000000 -176.000000 528.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 952.000000 -176.000000 1120.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 864.000000 -136.000000 776.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 896.000000 -176.000000 520.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 624.000000 -176.000000 216.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 896.000000 -176.000000 224.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 920.000000 -176.000000 -112.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 648.000000 -176.000000 -104.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 288.000000 -176.000000 -96.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 16.000000 -176.000000 -88.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 16.000000 -176.000000 -368.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -224.000000 -176.000000 -352.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -224.000000 -80.000000 -72.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -536.000000 -176.000000 -112.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -536.000000 -176.000000 -376.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -552.000000 -176.000000 -704.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -808.000000 -176.000000 -712.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -808.000000 -176.000000 -392.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -720.000000 -80.000000 -72.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 936.000000 -176.000000 -432.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 648.000000 -176.000000 -424.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 648.000000 -176.000000 -696.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 904.000000 -128.000000 -680.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 304.000000 -176.000000 -384.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 272.000000 -120.000000 -648.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 40.000000 -176.000000 -688.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -232.000000 -176.000000 -688.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -816.000000 -632.000000 -648.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -560.000000 -632.000000 -640.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -544.000000 -632.000000 -312.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -816.000000 -632.000000 -328.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -544.000000 -632.000000 -48.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -728.000000 -536.000000 -8.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -744.000000 -560.000000 288.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -560.000000 -632.000000 568.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -560.000000 -632.000000 280.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -232.000000 -536.000000 -8.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -240.000000 -632.000000 272.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -240.000000 -600.000000 544.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -248.000000 -632.000000 880.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -240.000000 -632.000000 1168.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -552.000000 -632.000000 1168.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -752.000000 -552.000000 1080.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -848.000000 -632.000000 880.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -840.000000 -632.000000 584.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -544.000000 -632.000000 880.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -232.000000 -632.000000 -288.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -240.000000 -632.000000 -624.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 40.000000 -632.000000 1184.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 24.000000 -632.000000 888.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 32.000000 -632.000000 568.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 16.000000 -632.000000 288.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 8.000000 -632.000000 -24.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 280.000000 -632.000000 -32.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 296.000000 -632.000000 -320.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 8.000000 -632.000000 -304.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 640.000000 -632.000000 -360.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 928.000000 -632.000000 -368.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 32.000000 -632.000000 -624.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 264.000000 -576.000000 -584.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 640.000000 -632.000000 -632.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 896.000000 -584.000000 -616.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 304.000000 -632.000000 584.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 640.000000 -632.000000 896.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 320.000000 -632.000000 896.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 664.000000 -632.000000 1184.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 944.000000 -632.000000 1184.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 856.000000 -592.000000 840.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 624.000000 -632.000000 592.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 888.000000 -632.000000 584.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 616.000000 -632.000000 280.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 888.000000 -632.000000 288.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 288.000000 -632.000000 288.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 640.000000 -632.000000 -40.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 912.000000 -632.000000 -48.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 352.000000 -632.000000 1176.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -816.000000 280.000000 -640.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -560.000000 280.000000 -632.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -544.000000 280.000000 -304.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -816.000000 280.000000 -320.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -544.000000 280.000000 -40.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -728.000000 376.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -744.000000 352.000000 296.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -560.000000 280.000000 576.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -560.000000 280.000000 288.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -232.000000 376.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -240.000000 280.000000 280.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -240.000000 312.000000 552.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -248.000000 280.000000 888.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -240.000000 280.000000 1176.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -552.000000 280.000000 1176.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -752.000000 360.000000 1088.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -848.000000 280.000000 888.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -840.000000 280.000000 592.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -544.000000 280.000000 888.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -232.000000 280.000000 -280.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -240.000000 280.000000 -616.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 40.000000 280.000000 1192.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 24.000000 280.000000 896.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 32.000000 280.000000 576.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 16.000000 280.000000 296.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 8.000000 280.000000 -16.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 280.000000 280.000000 -24.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 296.000000 280.000000 -312.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 8.000000 280.000000 -296.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 640.000000 280.000000 -352.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 928.000000 280.000000 -360.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 32.000000 280.000000 -616.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 264.000000 336.000000 -576.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 640.000000 280.000000 -624.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 896.000000 328.000000 -608.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 304.000000 280.000000 592.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 640.000000 280.000000 904.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 320.000000 280.000000 904.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 664.000000 280.000000 1192.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 944.000000 280.000000 1192.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 856.000000 320.000000 848.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 624.000000 280.000000 600.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 888.000000 280.000000 592.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 616.000000 280.000000 288.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 888.000000 280.000000 296.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 288.000000 280.000000 296.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 640.000000 280.000000 -32.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 912.000000 280.000000 -40.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 352.000000 280.000000 1184.000000 Bool8 teamA 0
bc33e09db7eb08a7ca3f4d1c2c9bf435b1498cda
449d555969bfd7befe906877abab098c6e63a0e8
/752/CH1/EX1.2.2/1_2_2.sce
d1d4abf6275e3e48b5c62c7d581b4cefd82eed26
[]
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
335
sce
1_2_2.sce
clc; // page no 5 // prob no 1_2_2 //T-type attenuator provide 6-dB insertion loss //All resistance are in ohm Ro=50 ILdB=6 IL=10^-(ILdB/20) //Determination of R R=Ro*(1-IL)/(1+IL) disp('ohm',R,+'The value of resistance R is') //Determination of R3 R3=(2*Ro*IL)/(1-(0.5)^2) disp('ohm',R3,+'The value of resistance R3 is')
dbb968aeef1f05a8408f4853d06b9791e98afefb
b73e9d989ebb6c74535238e10eede063a5d7e66b
/assignment1_part4.sce
a6b23cb1eb1ae0e8343eb9c2f1505263a391f8cc
[]
no_license
ParthaSurve/CODES_SEM_VI
930a520ccdbc7cb389dac6b6f03900674b5e1a6b
1f6afa9b92ad8263d0773ce0f90f9ffa5943b8e4
refs/heads/master
2021-01-21T05:13:44.089655
2017-02-25T17:46:44
2017-02-25T17:46:44
83,149,933
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,372
sce
assignment1_part4.sce
// Assigment 1 Computational Methods for compressible flow //--------------------------------------------------------// // January 17-01-2017 // Explicit Forward Time Central Space scheme (FTSC) for solving PDEs // Author: Partha Surve (SC14B036, Aerospace Engineering, IIST) clc; clear; //initializing the parameters L = 1 //length of the domain t_max = 1 //end time n_x = 8 // No of nodes n_t = 101 // time steps dx = L/(n_x-1); //spacial step size dt = t_max/(n_t-1);//temporal step size alpha = 1; //diffusion term r=(alpha*dt/(dx*dx)); T=zeros(n_t,n_x);//initializing an array //Boundary condition T(:,1) = 0; //dirichlet at the tip and end node T(:,n_x) = 0; for k = 2:1:n_x-1 T(:,k)=20; end //solving using FTCS for j = 1:1:n_t-1 for i = 2:1:n_x-1 T(j+1,i) = T(j,i)+r.*(T(j,i-1)-2.*T(j,i)+T(j,i+1)); end end //Calculating the RMS error for j = 1:1:n_t-1 err=0 for i = 1:1:n_x err=(T(j,i)-T(j+1,i))^2 +err end RMS_err(j)=sqrt(err/n_x) TIME=j*dt if RMS_err(j) < n_x*10^(-3)*dt break end end //Plotting for each time step i=[1:1:n_x] for j = 1:1:n_t //plot(i,T(j,:),"g"); end //title('1-D Heat Eqn-Explicit Method-various Time steps', "fontsize", 5); //xlabel("Nodes", "fontsize", 5); //ylabel("funciton value","fontsize", 5);
49c00343b812aacbbae5c946dbf9a2a69cd8e931
ab1416f6fd6655094298e6c7bab1ac47d2533342
/samples/Scilab/scilab_function.sci
7c95174e37fe9649a6e76eb12ccd3a81de3b3830
[ "MIT", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
monkslc/hyperpolyglot
6ddc09e9d10d30bd8ce5c80a3bd755fa5714d621
a55a3b58eaed09b4314ef93d78e50a80cfec36f4
refs/heads/master
2023-05-26T15:26:14.686247
2023-05-17T13:51:31
2023-05-17T13:51:31
248,387,967
43
11
Apache-2.0
2023-05-17T13:51:35
2020-03-19T02:02:35
RenderScript
UTF-8
Scilab
false
false
328
sci
scilab_function.sci
// A comment with whites and tabulations // Email: <scilab.support@scilab.org> // Scilab editor: http://www.scilab.org/ function [a, b] = myfunction(d, e, f) a = 2.71828 + %pi + f($, :); b = cos(a) + cosh(a); if d == e then b = 10 - e.field; else b = " test " + home return end myvar = 1.23e-45; endfunction
db345c05f7566cd2b885637842ad07032348295e
449d555969bfd7befe906877abab098c6e63a0e8
/162/CH4/EX4.28/example428.sce
77c46652823c64081c2253bfc195353283efa793
[]
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
141
sce
example428.sce
//Example 4.28 clc; syms t; h=%e^(-2*t)+%e^(-3*t); vo=t*%e^(-2*t); Vo=laplace(vo); H=laplace(h); Vi=Vo/H; vi=ilaplace(Vi); disp(vi);
7cbeaf02d2dae26a577799399f3ce7f044d17648
95a91e0c642afba8090e47bd70e3efb36da36e43
/UP.eps/gr_chain_potential_formula.sce
6e725e8ea6995212b3c723a37b649b80b0757bf3
[]
no_license
Varvara08/myrepo
f4f2d4e0da09b9eea225deab49d3dfd49d861266
588458d7d92407761cc9cd7cc3273e70aa9f84b0
refs/heads/master
2021-01-20T17:20:40.176769
2016-08-17T13:10:46
2016-08-18T10:38:17
63,784,698
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,598
sce
gr_chain_potential_formula.sce
clear; clear gt gf; lines(0); function f = calc_propagators(w) global gt gf nl lambda; // // Array initialization with zeros // gt for s=1:nl for z=1:nl+1 gt(s,z)=0.0; gf(s,z)=0.0; end // for z end // for s // gf // [m,n]=size(w); // Initial condition gt(1,1)=w(1); for z=1:nl gf(1,z)=w(z); end // for z // Start recurrence for s=2:nl gt(s,1)=(4.0*gt(s-1,1)+gt(s-1,2))*w(1)*lambda; gf(s,1)=(4.0*gf(s-1,1)+gf(s-1,2))*w(1)*lambda; for z=2:s gt(s,z)=(gt(s-1,z-1)+4.0*gt(s-1,z)+gt(s-1,z+1))*w(z)*lambda; end // for z for z=2:nl-s+1 gf(s,z)=(gf(s-1,z-1)+4.0*gf(s-1,z)+gf(s-1,z+1))*w(z)*lambda; end // for z end // for s // f=0.0; endfunction // -------------------------------------------------------------------------- function f = calc_phi(w) global gt gf nl phi; theta=0.0; Zn=gf(nl,1); for z=1:nl phi(z)=0.0; for s=1:nl phi(z) = phi(z) + gt(s,z)*gf(nl+1-s,z)/w(z); end // for s end // for z for z=1:nl phi(z)=phi(z)/Zn; end // for z endfunction // -------------------------------------------------------------------------- ////////////////////// // Main program // ////////////////////// ////////////////////// // Global variables // ////////////////////// global gt gf nl lambda phi; ////////////////// // Initial data // ////////////////// lambda=0.16666666667; // 1/6 //nl=150; // number of units in the chain for nl=250:251 // number of units in the chain q=1; f=q+1; // for formula M npp=100; // for formula M h2n=0.75; // for potention V(z)=V(h/2n)-V(z/2n), where 2n <=> npp M=(%pi*npp/2)/acos(sqrt((f-1)/f)); // // Calculation potention from the equation for k=1:nl+5 if k < h2n*2*npp then V(k)= -3*log(cos(h2n*%pi/2))-((3*%pi^2/8)*((h2n)^2-(h2n*2*npp/M)^2))-(-3*log(cos((%pi/2)*(k/200)))-((3*%pi^2/8)*((k/200)^2-(k/M)^2))); else V(k)=0; end //for if w(k)=exp(-V(k)); // exp(-potential) <=> stat weight end f=calc_propagators(w); f=calc_phi(w); Zn=gf(nl,1); for k=1:nl res(k,1)=k; res(k,2)=gt(nl,k)/Zn; res(k,3)=phi(k); res(k,4)=V(k); end // for k // // Write data into file f=q+1; s0 = '~/imc/StarBrush/Neutral/Poty/f'+ string(f) + '/h2n'+ string(h2n) +'/' ; s = s0 + 'h2n' +string(h2n)+ '_f'+string(f)+'_z_pe_phi_m' + string(nl) + '.dat'; u=file('open',s,'unknown'); write(u, res, '(1(f14.8), 32(e16.8))'); file('close',u); // end // for nl // Plot subplot(1,3,1); plot(res(:,1),res(:,2),'-r') xlabel('z') ylabel('Pe(z)') subplot(1,3,2); plot(res(:,1),res(:,3),'-b') xlabel('z') ylabel('phi(z)') subplot(1,3,3); plot(res(:,1),res(:,4),'-b') xlabel('z') ylabel('V(z)')
632ee0c9920c002dba61ea338ec8e697a66878c1
4bbc2bd7e905b75d38d36d8eefdf3e34ba805727
/ee_scicoslab/scicos_flex/dspic/Communication/SerialGateway/dll_builder.sce
58dc6155d41f36d516252e97acca09c94d56597d
[]
no_license
mannychang/erika2_Scicos-FLEX
397be88001bdef59c0515652a365dbd645d60240
12bb5aa162fa6b6fd6601e0dacc972d7b5f508ba
refs/heads/master
2021-02-08T17:01:20.857172
2012-07-10T12:18:28
2012-07-10T12:18:28
244,174,890
0
0
null
null
null
null
UTF-8
Scilab
false
false
397
sce
dll_builder.sce
// Script to build the SerialGateway dynamic library. // Author: Errico Guidieri, Evidence Srl. VC_BUILD_EXE = ascii(34) + 'vcbuild.exe' + ascii(34) + ' '; VC_BUILD_OPT = '/r '; VC_BUILD_PROJ = get_absolute_file_path('dll_builder.sce') + 'SerialGateway.vcproj '; VC_BUILD_PERSPECTIVE = 'release '; cmd = VC_BUILD_EXE + VC_BUILD_OPT + VC_BUILD_PROJ + VC_BUILD_PERSPECTIVE; unix( cmd );
443ced00392dc14a4eafd24ce2e00b23c29897cf
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH6/EX6.17/Ex6_17.sce
51e26e64659750e032e08d008c9049dbb3e64789
[]
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
354
sce
Ex6_17.sce
clc; //r2/x2=a a=.5; Test=25; //for part a disp('For part a '); //b=3(V1)2/r2Ws //As per given conditions b=Test*5; //When rotor resistace is doubled Test1=b*(1/4); mprintf('The starting torque is %f Nm\n',Test1); //for part b disp('For part b'); //resisance is half Test2=b*(2/17); mprintf('The starting torque is %f Nm',Test2);
55ddf799c7ba66299da82cd775b195a81f7232cd
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH2/EX2.20/example2_20.sce
1dc43215d24d6a425a8e82ab84bfe7af0e07774e
[]
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
530
sce
example2_20.sce
clc // Given that lambda = 6e-7 // wavelength of light in meter b = 1.2e-6 // slit-width in meter // Sample Problem 20 on page no. 2.46 printf("\n # PROBLEM 20 # \n") m = 1 // for first minima theta = asin((m * lambda) / b) // calculation for angular width of the central maxima in radian theta_ = theta * (180 / %pi) // calculation for angular width of the central maxima in degree printf("\n Standard formula used \n theta = asin((m * lambda) / b). \n") printf("\n Angular width of the central maxima = %f degree ",2 * theta_)
aef133561fa6eeea069d32d585a6565dd1b485b9
449d555969bfd7befe906877abab098c6e63a0e8
/503/CH8/EX8.18/ch8_18.sci
1ea82ae77176e2979bcfe1f184c7e03eb0ff7ce6
[]
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
295
sci
ch8_18.sci
//find the change in the poweer angle; clc; clear j = %i Pe=4000; V=400'; pf=.8;dl=acosd(pf); Ia=Pe/(sqrt(3)*V*pf); Vt=V/sqrt(3); Xs=25; Ef=Vt+j*Ia*complex(cosd(-dl),sind(-dl))*Xs; a=atand(imag(Ef)/real(Ef)); dl=asind((Pe/3)*Xs/(Vt*abs(Ef))); ang=dl+a; disp(ang,'change in power angle(deg)');
2ea058055b2217e3a49b0385f2f8be4ecf9cf6c0
ece5c630921508b439ed25c5f7ab3db5a66f7a1a
/Assignment3_Team8/RippleCarryAdder16.tst
a66ab8b114432a86b3f71f650f0c309d8f8bc61e
[]
no_license
VedantS01/HDLProjectsCS2310
f8d17d1c9c28034a21026a4fbe2ae5d38cf39330
d2a39a4c062173475bd06ff0b3396f1ac6303103
refs/heads/main
2023-06-19T20:42:48.411561
2021-07-14T19:37:51
2021-07-14T19:37:51
386,054,022
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,877
tst
RippleCarryAdder16.tst
load RippleCarryAdder16.hdl, output-file RippleCarryAdder16.out, output-list x%B1.16.1 y%B1.16.1 oper%B3.1.3 sum%B1.16.1 cy%B3.1.3 of%B3.1.3; set signed 1; set x %B1010101010101010, set y %B0101010101010101, set oper 0, eval, output; set x %B1000000000000001, set y %B1111111111011111, set oper 0, eval, output; set x %B0011110011000011, set y %B0000111111110000, set oper 1, eval, output; set x %B0001001000110100, set y %B0101100001110110, set oper 0, eval, output; set x %B0111001000110100, set y %B0101100101110110, set oper 0, eval, output; set x %B1111001000110100, set y %B1101100101110110, set oper 0, eval, output; set x %B1011001000110100, set y %B1001100101110110, set oper 0, eval, output; set x %B0011001000110100, set y %B1101100101110110, set oper 0, eval, output; set x %B0011001000110100, set y %B1101100101110110, set oper 1, eval, output; set x %B0111011001110100, set y %B1001100101010110, set oper 1, eval, output; set signed 0; set x %B1010101010101010, set y %B0101010101010101, set oper 0, eval, output; set x %B1000000000000001, set y %B1111111111011111, set oper 0, eval, output; set x %B0011110011000011, set y %B0000111111110000, set oper 1, eval, output; set x %B0001001000110100, set y %B0101100001110110, set oper 0, eval, output; set x %B0111001000110100, set y %B0101100101110110, set oper 0, eval, output; set x %B1111001000110100, set y %B1101100101110110, set oper 0, eval, output; set x %B1011001000110100, set y %B1001100101110110, set oper 0, eval, output; set x %B0011001000110100, set y %B1101100101110110, set oper 0, eval, output; set x %B0011001000110100, set y %B1101100101110110, set oper 1, eval, output; set x %B0111011001110100, set y %B1001100101010110, set oper 1, eval, output;
ca6879df1a7f2aefa9b5d95784f9219c975fb0e1
449d555969bfd7befe906877abab098c6e63a0e8
/3886/CH3/EX3.28/Ex3_28.sce
e96a198178527e1006c66d0788546cc3c908f23f
[]
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
293
sce
Ex3_28.sce
//determine reactions at A,B and D //Refer fig. 3.55 //Taking moment about C RD=(3*5*2.5+(5*9*2*5)/(2*3))/7 //kN RC=15+22.5-RD //kN //Taking moment about A RB=(2*RC/5) //kN RA=RC-RB //kN printf("Required reactions are:-\nRA=%.2f kN\nRB=%.2f kN,\nRD=%.2f kN",RA,RB,RD)
ba9ba9b09a4e5ea918b50000b5febdcc3be3f576
449d555969bfd7befe906877abab098c6e63a0e8
/3556/CH14/EX14.17/Ex14_17.sce
1b6d7673255e86cdb866db41b2816a9fbb730545
[]
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
836
sce
Ex14_17.sce
clc // Fundamental of Electric Circuit // Charles K. Alexander and Matthew N.O Sadiku // Mc Graw Hill of New York // 5th Edition // Part 2 : AC Circuits // Chapter 14 : Frequency Response // Example 14 - 17 clear; clc; close; // // Given data f0_upper = 1600.0000 * 10^3; f0_lower = 540.0000 * 10^3; L = 10^-6 // // Calculations C1 The High End of The AM Band C1 = 1/(4*(%pi)^2*(f0_upper)^2*L); // Calculations C1 The Low End of The AM Band C2 = 1/(4*(%pi)^2*(f0_lower)^2*L); // disp("Example 14-18 Solution : "); printf(" \n C1 = Capacitance of Capacitor The High End of The AM Band = %.3f nanoFarad",C1*10^9) printf(" \n C2 = Capacitance of Capacitor The Low End of The AM Band = %.3f nanoFarad",C2*10^9)
668dccf71625a44d44503a810882ce3c808cd5d5
449d555969bfd7befe906877abab098c6e63a0e8
/1151/CH6/EX6.9/example9.sce
4b2bd1854494d7126b3c847d808b34a93680101b
[]
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
320
sce
example9.sce
// f i r s t e l ement i n any row o f r o u t h s t a b u l a t i o n i s z e r o clc;s=%s m=s^3+s+1; r= coeff (m); // Ex t r a c t s the c o e f f i c i e n t o f the po l ynomi a l n= length (r); routh = routh_t (m) disp (routh ," r outh=") printf (" since there are two sign changes the system is unstable")
bacbdffe90134c86a4b211bc3282e9ec720c0b12
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/KP85YLZ/ATWM1_Localizer_MRI_KP85YLZ/ATWM1_Localizer_MRI.sce
d1c7f3d212ae44c14466bf3681ed2b49197e1e37
[]
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
40,042
sce
ATWM1_Localizer_MRI.sce
# ATWM1_MRI_Localizer scenario = "ATWM1_Localizer_MRI"; scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen #scenario_type = trials; scan_period = 2000; # TR pulses_per_scan = 1; pulse_code = 1; #pulse_width=6; default_monitor_sounds = false; active_buttons = 1; response_matching = simple_matching; button_codes = 10; default_font_size = 28; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; #write_codes=true; 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; bitmap {filename = "fixation_cross_black.bmp";} fixation_cross_black; bitmap {filename = "blank.bmp";} blank; bitmap {filename = "localizer.bmp";} localizer; bitmap {filename = "localizer_inv.bmp";} localizer_inv; bitmap {filename = "localizer_target.bmp";} localizer_target; sound { wavefile { filename = "FeedbackSound_NoResponse.wav"; }; } sound_no_response; sound { wavefile { filename = "FeedbackSound_Correct.wav"; }; } sound_correct; sound { wavefile { filename = "FeedbackSound_Incorrect.wav"; }; } sound_incorrect; 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; # 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"; }; TEMPLATE "ATWM1_Localizer_MRI.tem" { trigger_volume intertrial_interval single_stimulus_presentation_time trl_duration stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 stim_enc_target1 stim_enc_target2 stim_enc_target3 stim_enc_target4 control_flicker_index trial_code retr_code posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 6 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "01_4_Objects_Pos2_DefaultTrial" "Localizer_01_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 7 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "02_4_Objects_Pos3_DefaultTrial" "Localizer_02_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 8 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "03_4_Objects_Pos1_DefaultTrial" "Localizer_03_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 9 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 6 "04_4_Objects_Pos4_TargetTrial" "Localizer_04_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 10 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "05_4_Objects_Pos2_DefaultTrial" "Localizer_05_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 11 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "06_4_Objects_Pos4_DefaultTrial" "Localizer_06_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 12 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 10 "07_4_Objects_Pos3_TargetTrial" "Localizer_07_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 13 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "08_4_Objects_Pos1_DefaultTrial" "Localizer_08_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 14 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "09_4_Objects_Pos2_DefaultTrial" "Localizer_09_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 15 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "10_4_Objects_Pos3_DefaultTrial" "Localizer_10_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 16 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 10 "11_4_Objects_Pos1_TargetTrial" "Localizer_11_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 17 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "12_4_Objects_Pos4_DefaultTrial" "Localizer_12_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 18 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "13_4_Objects_Pos2_DefaultTrial" "Localizer_13_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 20 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 12 "14_4_Objects_Pos3_TargetTrial" "Localizer_14_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 21 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "15_4_Objects_Pos4_DefaultTrial" "Localizer_15_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 22 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "16_4_Objects_Pos1_DefaultTrial" "Localizer_16_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 23 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "17_4_Objects_Pos3_DefaultTrial" "Localizer_17_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 24 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 8 "18_4_Objects_Pos1_TargetTrial" "Localizer_18_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 25 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "19_4_Objects_Pos2_DefaultTrial" "Localizer_19_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 26 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "20_4_Objects_Pos4_DefaultTrial" "Localizer_20_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 27 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 4 "21_4_Objects_Pos3_TargetTrial" "Localizer_21_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 28 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "22_4_Objects_Pos2_DefaultTrial" "Localizer_22_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 29 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "23_4_Objects_Pos1_DefaultTrial" "Localizer_23_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 30 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "24_4_Objects_Pos4_DefaultTrial" "Localizer_24_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 31 1950 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "25_4_Objects_Pos1_DefaultTrial" "Localizer_25_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 33 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "26_4_Objects_Pos2_DefaultTrial" "Localizer_26_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 34 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 10 "27_4_Objects_Pos4_TargetTrial" "Localizer_27_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 35 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "28_4_Objects_Pos3_DefaultTrial" "Localizer_28_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 36 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "29_4_Objects_Pos2_DefaultTrial" "Localizer_29_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 37 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "30_4_Objects_Pos1_DefaultTrial" "Localizer_30_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 38 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "31_4_Objects_Pos4_DefaultTrial" "Localizer_31_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 39 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 12 "32_4_Objects_Pos3_TargetTrial" "Localizer_32_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 40 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "33_4_Objects_Pos2_DefaultTrial" "Localizer_33_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "34_4_Objects_Pos3_DefaultTrial" "Localizer_34_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 8 "35_4_Objects_Pos1_TargetTrial" "Localizer_35_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "36_4_Objects_Pos4_DefaultTrial" "Localizer_36_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "37_4_Objects_Pos1_DefaultTrial" "Localizer_37_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 45 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 6 "38_4_Objects_Pos2_TargetTrial" "Localizer_38_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 47 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "39_4_Objects_Pos4_DefaultTrial" "Localizer_39_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 48 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "40_4_Objects_Pos3_DefaultTrial" "Localizer_40_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 49 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "41_4_Objects_Pos2_DefaultTrial" "Localizer_41_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 50 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 12 "42_4_Objects_Pos4_TargetTrial" "Localizer_42_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 51 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "43_4_Objects_Pos1_DefaultTrial" "Localizer_43_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 52 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "44_4_Objects_Pos3_DefaultTrial" "Localizer_44_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 53 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 10 "45_4_Objects_Pos2_TargetTrial" "Localizer_45_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 54 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "46_4_Objects_Pos3_DefaultTrial" "Localizer_46_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 55 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "47_4_Objects_Pos1_DefaultTrial" "Localizer_47_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 56 1950 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "48_4_Objects_Pos4_DefaultTrial" "Localizer_48_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 58 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "49_4_Objects_Pos1_DefaultTrial" "Localizer_49_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 59 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 10 "50_4_Objects_Pos2_TargetTrial" "Localizer_50_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 60 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "51_4_Objects_Pos3_DefaultTrial" "Localizer_51_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 61 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "52_4_Objects_Pos4_DefaultTrial" "Localizer_52_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 62 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 4 "53_4_Objects_Pos2_TargetTrial" "Localizer_53_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 63 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "54_4_Objects_Pos4_DefaultTrial" "Localizer_54_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 64 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "55_4_Objects_Pos3_DefaultTrial" "Localizer_55_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 65 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "56_4_Objects_Pos1_DefaultTrial" "Localizer_56_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 66 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "57_4_Objects_Pos2_DefaultTrial" "Localizer_57_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 67 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 8 "58_4_Objects_Pos3_TargetTrial" "Localizer_58_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 68 1950 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "59_4_Objects_Pos1_DefaultTrial" "Localizer_59_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 70 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "60_4_Objects_Pos4_DefaultTrial" "Localizer_60_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 71 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "61_4_Objects_Pos2_DefaultTrial" "Localizer_61_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 72 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "62_4_Objects_Pos3_DefaultTrial" "Localizer_62_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 73 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 8 "63_4_Objects_Pos4_TargetTrial" "Localizer_63_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 74 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "64_4_Objects_Pos1_DefaultTrial" "Localizer_64_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 75 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "65_4_Objects_Pos4_DefaultTrial" "Localizer_65_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 76 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "66_4_Objects_Pos2_DefaultTrial" "Localizer_66_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 77 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "67_4_Objects_Pos3_DefaultTrial" "Localizer_67_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 78 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 4 "68_4_Objects_Pos1_TargetTrial" "Localizer_68_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 79 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "69_4_Objects_Pos3_DefaultTrial" "Localizer_69_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 80 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "70_4_Objects_Pos1_DefaultTrial" "Localizer_70_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 81 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "71_4_Objects_Pos2_DefaultTrial" "Localizer_71_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 83 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 4 "72_4_Objects_Pos4_TargetTrial" "Localizer_72_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 84 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "73_4_Objects_Pos3_DefaultTrial" "Localizer_73_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 85 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "74_4_Objects_Pos4_DefaultTrial" "Localizer_74_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 86 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 12 "75_4_Objects_Pos1_TargetTrial" "Localizer_75_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 87 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "76_4_Objects_Pos2_DefaultTrial" "Localizer_76_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 88 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "77_4_Objects_Pos3_DefaultTrial" "Localizer_77_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 89 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "78_4_Objects_Pos1_DefaultTrial" "Localizer_78_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 90 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "79_4_Objects_Pos4_DefaultTrial" "Localizer_79_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 91 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 8 "80_4_Objects_Pos2_TargetTrial" "Localizer_80_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 92 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "81_4_Objects_Pos3_DefaultTrial" "Localizer_81_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 93 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "82_4_Objects_Pos1_DefaultTrial" "Localizer_82_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 94 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "83_4_Objects_Pos4_DefaultTrial" "Localizer_83_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 95 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 10 "84_4_Objects_Pos2_TargetTrial" "Localizer_84_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 96 1950 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "85_4_Objects_Pos4_DefaultTrial" "Localizer_85_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 98 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "86_4_Objects_Pos3_DefaultTrial" "Localizer_86_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 99 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 12 "87_4_Objects_Pos2_TargetTrial" "Localizer_87_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 100 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "88_4_Objects_Pos1_DefaultTrial" "Localizer_88_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 101 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "89_4_Objects_Pos3_DefaultTrial" "Localizer_89_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 102 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "90_4_Objects_Pos4_DefaultTrial" "Localizer_90_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 103 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 12 "91_4_Objects_Pos1_TargetTrial" "Localizer_91_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 104 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "92_4_Objects_Pos2_DefaultTrial" "Localizer_92_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 105 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "93_4_Objects_Pos3_DefaultTrial" "Localizer_93_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 106 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "94_4_Objects_Pos4_DefaultTrial" "Localizer_94_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 107 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "95_4_Objects_Pos2_DefaultTrial" "Localizer_95_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 109 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 8 "96_4_Objects_Pos1_TargetTrial" "Localizer_96_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 110 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "97_4_Objects_Pos2_DefaultTrial" "Localizer_97_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 111 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "98_4_Objects_Pos4_DefaultTrial" "Localizer_98_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 112 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 4 "99_4_Objects_Pos3_TargetTrial" "Localizer_99_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 113 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "100_4_Objects_Pos1_DefaultTrial" "Localizer_100_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 114 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "101_4_Objects_Pos2_DefaultTrial" "Localizer_101_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 115 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "102_4_Objects_Pos1_DefaultTrial" "Localizer_102_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 116 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 4 "103_4_Objects_Pos4_TargetTrial" "Localizer_103_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 117 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "104_4_Objects_Pos3_DefaultTrial" "Localizer_104_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 118 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "105_4_Objects_Pos2_DefaultTrial" "Localizer_105_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 119 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "106_4_Objects_Pos3_DefaultTrial" "Localizer_106_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 120 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "107_4_Objects_Pos4_DefaultTrial" "Localizer_107_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 121 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 6 "108_4_Objects_Pos1_TargetTrial" "Localizer_108_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 122 1950 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "109_4_Objects_Pos4_DefaultTrial" "Localizer_109_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 124 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "110_4_Objects_Pos3_DefaultTrial" "Localizer_110_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 125 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "111_4_Objects_Pos1_DefaultTrial" "Localizer_111_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 126 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 4 "112_4_Objects_Pos2_TargetTrial" "Localizer_112_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 127 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "113_4_Objects_Pos1_DefaultTrial" "Localizer_113_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 128 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "114_4_Objects_Pos2_DefaultTrial" "Localizer_114_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 129 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 12 "115_4_Objects_Pos3_TargetTrial" "Localizer_115_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 130 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "116_4_Objects_Pos4_DefaultTrial" "Localizer_116_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 131 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "117_4_Objects_Pos3_DefaultTrial" "Localizer_117_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 132 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "118_4_Objects_Pos2_DefaultTrial" "Localizer_118_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 133 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 8 "119_4_Objects_Pos4_TargetTrial" "Localizer_119_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 134 1950 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "120_4_Objects_Pos1_DefaultTrial" "Localizer_120_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 136 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "121_4_Objects_Pos2_DefaultTrial" "Localizer_121_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 137 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "122_4_Objects_Pos4_DefaultTrial" "Localizer_122_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 138 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 8 "123_4_Objects_Pos3_TargetTrial" "Localizer_123_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 139 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "124_4_Objects_Pos1_DefaultTrial" "Localizer_124_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 140 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "125_4_Objects_Pos4_DefaultTrial" "Localizer_125_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 141 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "126_4_Objects_Pos2_DefaultTrial" "Localizer_126_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 142 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "127_4_Objects_Pos1_DefaultTrial" "Localizer_127_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 143 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 8 "128_4_Objects_Pos3_TargetTrial" "Localizer_128_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 144 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "129_4_Objects_Pos1_DefaultTrial" "Localizer_129_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 145 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "130_4_Objects_Pos2_DefaultTrial" "Localizer_130_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 146 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "131_4_Objects_Pos3_DefaultTrial" "Localizer_131_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 147 1950 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 8 "132_4_Objects_Pos4_TargetTrial" "Localizer_132_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 149 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "133_4_Objects_Pos2_DefaultTrial" "Localizer_133_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 150 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "134_4_Objects_Pos1_DefaultTrial" "Localizer_134_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 151 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "135_4_Objects_Pos3_DefaultTrial" "Localizer_135_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 152 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 6 "136_4_Objects_Pos4_TargetTrial" "Localizer_136_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 153 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "137_4_Objects_Pos3_DefaultTrial" "Localizer_137_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 154 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "138_4_Objects_Pos1_DefaultTrial" "Localizer_138_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 155 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 10 "139_4_Objects_Pos2_TargetTrial" "Localizer_139_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 156 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "140_4_Objects_Pos4_DefaultTrial" "Localizer_140_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 157 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "141_4_Objects_Pos3_DefaultTrial" "Localizer_141_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 158 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "142_4_Objects_Pos2_DefaultTrial" "Localizer_142_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 159 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "143_4_Objects_Pos4_DefaultTrial" "Localizer_143_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 160 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 10 "144_4_Objects_Pos1_TargetTrial" "Localizer_144_4_Objects_Pos1_TargetTrial" 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 = 20000; code = "BaselinePost"; };
b679eca753620a63f35852e76e9f017d74695c91
1bfea1fa206511072979ccc75a6ac0e4290279c4
/Demonstration Code/demo/nocopy2.tst
1cfc7bf17f9643af41573f8ba57ba67f453358a9
[]
no_license
evrimulgen/oracle-scripts
96cc78bf8893c686362bf8b58eab50c5335fd009
419f299df889e89d20a807d1134ead3361db6e2b
refs/heads/master
2020-09-23T16:07:37.607816
2018-12-14T09:16:46
2018-12-14T09:16:46
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,117
tst
nocopy2.tst
CREATE OR REPLACE PACKAGE nocopy_test IS TYPE num_tabtype IS TABLE OF NUMBER INDEX BY BINARY_INTEGER; PROCEDURE pass_by_value ( nums IN OUT num_tabtype , raise_err IN BOOLEAN := FALSE ); PROCEDURE pass_by_ref ( nums IN OUT NOCOPY num_tabtype , raise_err IN BOOLEAN := FALSE ); PROCEDURE compare_methods (num IN PLS_INTEGER); END; / CREATE OR REPLACE PACKAGE BODY nocopy_test IS PROCEDURE pass_by_value ( nums IN OUT num_tabtype , raise_err IN BOOLEAN := FALSE ) IS BEGIN FOR indx IN nums.FIRST .. nums.LAST LOOP nums (indx) := nums (indx) * 2; END LOOP; IF raise_err THEN RAISE VALUE_ERROR; END IF; END; PROCEDURE pass_by_ref ( nums IN OUT NOCOPY num_tabtype , raise_err IN BOOLEAN := FALSE ) IS BEGIN FOR indx IN nums.FIRST .. nums.LAST LOOP nums (indx) := nums (indx) * 2; END LOOP; IF raise_err THEN RAISE VALUE_ERROR; END IF; END; PROCEDURE compare_methods (num IN PLS_INTEGER) IS numtab num_tabtype; PROCEDURE loadtab IS BEGIN DBMS_SESSION.free_unused_user_memory; numtab.DELETE; FOR indx IN 1 .. 100000 LOOP numtab (indx) := indx; END LOOP; END; BEGIN loadtab; sf_timer.start_timer; FOR indx IN 1 .. num LOOP pass_by_value (numtab, FALSE); END LOOP; sf_timer.show_elapsed_time ('By value without error ' || num); loadtab; sf_timer.start_timer; FOR indx IN 1 .. num LOOP pass_by_ref (numtab, FALSE); END LOOP; sf_timer.show_elapsed_time ('NOCOPY without error ' || num); loadtab; sf_timer.start_timer; BEGIN FOR indx IN 1 .. num LOOP pass_by_value (numtab, TRUE); END LOOP; EXCEPTION WHEN OTHERS THEN sf_timer.show_elapsed_time ('By value raising error ' || num); DBMS_OUTPUT.put_line (numtab (numtab.FIRST)); END; loadtab; sf_timer.start_timer; BEGIN FOR indx IN 1 .. num LOOP pass_by_ref (numtab, TRUE); END LOOP; EXCEPTION WHEN OTHERS THEN sf_timer.show_elapsed_time ('NOCOPY raising error ' || num); DBMS_OUTPUT.put_line (numtab (numtab.FIRST)); END; END; END; / BEGIN nocopy_test.compare_methods (10); nocopy_test.compare_methods (1000); /* Oracle 10g Release 2: By value without error 1000 Elapsed: 20.49 seconds. NOCOPY without error 1000 Elapsed: 12.32 seconds 11.2 By value without error 1000" completed in: 11.84 seconds "NOCOPY without error 1000" completed in: 8.05 seconds 12.1 By value without error 1000 - Elapsed CPU : 11.3 seconds. Factored: .00011 seconds. NOCOPY without error 1000 - Elapsed CPU : 7.24 seconds. Factored: .00007 seconds. */ END; /
ff8dbc6e2379ece5b90652621b9d57f6258fd958
449d555969bfd7befe906877abab098c6e63a0e8
/2498/CH7/EX7.10/ex7_10.sce
c1c329bd06c392f07da070f075b78aa70c9b2188
[]
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
356
sce
ex7_10.sce
// Exa 7.10 clc; clear; close; format('v',6) // Given data I_D1 = 1.2;// in mA I_D2 = 1.5;// in mA // change in gate to source voltage, delI_D = I_D2-I_D1;// in mA V_GS2 = -4.10;// in V V_GS1 = -4.25;// in V delV_GS = V_GS2-V_GS1;// in V // The transconductance g_m = delI_D/delV_GS;// in mA/V disp(g_m,"The transconductance in mA/V is");
2ad79208a5211c7e436520d83580d72e29d0e20a
449d555969bfd7befe906877abab098c6e63a0e8
/1628/CH3/EX3.23/Ex3_23.sce
9c87711279e25a9ab44d2757f01ddaa2010e0c68
[]
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
Ex3_23.sce
// Examle 3.23 // From the diagram (3.41) Apply KCL to node // will get { (v1-0)/12+ (v1-60)/3+ (v1-0)/4 = 5 } // After solving above equation we get V1= 18 V V1=18; // Voltage at node 1 I1=(V1-0)/12; // Current through 12 ohm resistor (I1) disp(' Current through 12 ohm resistor = '+string(I1)+' Amp'); // p 81 3.23
569d00ed8e527e8ad9b873c6042804444caedf3b
449d555969bfd7befe906877abab098c6e63a0e8
/1061/CH8/EX8.27/Ex8_27.sce
9f10dc088c5574631f4fb0eb1d74f28221f07dbb
[]
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
402
sce
Ex8_27.sce
//Ex:8.27 clc; clear; close; c=3*10^8;// speed of light in m/s n=3.6;// for GaAs df=278*10^9;// separation in Hz y=0.87*10^-6;// wavelength in m L=c/(2*n*df);// cavity length in m l=L*10^6;// cavity length in um L1=floor(l)*10^-6;// cavity length in m q=(2*n*L1)/y;// number of longitudinal modes printf("The cavity length =%d um", l); printf("\n The number of longitudinal modes =%d", q);
e422e508a73bf3659bddfb318408cf50b3de9158
449d555969bfd7befe906877abab098c6e63a0e8
/3428/CH17/EX10.17.17/Ex10_17_17.sce
b1e0955d9d0ba0433c973cdf18775488bc57b340
[]
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
270
sce
Ex10_17_17.sce
//Section-10,Example-2,Page no.-CT.53 //To calculate the Vapour pressure of water at 100 degree celcius. clc; P_1=634 dl_Hv=41270 R=8.314 T_2=373 T_1=368 P_2=%e^(((dl_Hv/R)*((T_2-T_1)/(T_1*T_2)))+log(P_1)) disp(P_2,'Vapour pressure of water at 100 degree celcius(mm)')
2e76f443a6c2d2e14f4b82cf8556342d27c3a966
0e1b45c07f0938ba9c8a003d6ae1cf2d8315efdb
/google-code-jam/2011/qualification/B/test-01.tst
8a29d84728be0e750229ca683898540fb887831a
[]
no_license
Kot-Angens/acm
c85d8582c3e84f218415321743864b9680e01f2e
05472eaa0fff7abb6679826085da5e0c990df4cb
refs/heads/master
2021-01-24T22:36:05.159612
2012-10-02T13:51:56
2012-10-02T13:51:56
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
207
tst
test-01.tst
5 0 0 2 EA 1 QRI 0 4 RRQR 1 QFT 1 QF 7 FAQFDFQ 1 EEZ 1 QE 7 QEEEERA 0 1 QW 2 QW ~~~~~~~~~~~~~~~~~~~~~~~~~~ Case #1: [E, A] Case #2: [R, I, R] Case #3: [F, D, T] Case #4: [Z, E, R, A] Case #5: []
e542c88d329392b8c65d0c3c5a1a79d16ca44116
449d555969bfd7befe906877abab098c6e63a0e8
/3293/CH1/EX1.7/Ex1_7.sce
47865fb6513d390ee1f92c653005bcc983bb65d5
[]
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
204
sce
Ex1_7.sce
//page 9 //Example 1.7 clear; close; clc; n = rand(); n = round(n*10); disp(eye(n,n)); printf('This is an Identity matrix of order %d * %d',n,n); disp('And It is a row reduced matrix.'); //end
8fd978ca20f31763a5ca1cb4e1304d3808e8839e
821ae80c496df42e9d59956848dfc2b153801a05
/general-docs/docs/plotting-in-scilab/01-Basic-Plot.sce
a6a35af3397dc4e3db6925eb9ab85b59aeeb5f66
[]
no_license
wruslandra/using-scilab6
6f10f6c11e20fbf4dadeecc4b7ebaaabb6eed3d7
d407651c1fbb5a386279bdc59a5fae22ca2c6a24
refs/heads/main
2023-04-04T14:59:08.443145
2021-04-01T21:54:08
2021-04-01T21:54:08
353,832,000
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,075
sce
01-Basic-Plot.sce
// 01-Basic-Plot.sce // wruslan@fuj-ubuntu-1404-lts:~$ date // Sat Apr 16 11:18:14 MYT 2016 // wruslan@fuj-ubuntu-1404-lts:~$ uname -a // Linux fuj-ubuntu-1404-lts 3.13.0-85-generic #129-Ubuntu SMP Thu Mar 17 20:50:41 UTC 2016 i686 i686 i686 GNU/Linux // Close all opened figures and clear workspace // xdel deletes the graphics windows whose numbers are included in the vector win_nums or the current graphics window if no argument is given. // winsid is used to get the list of graphics windows as a vector of windows numbers. // clear is Remove items from workspace, freeing up system memory // clc() clears all input and output from the Console. xdel(winsid()); clear; clc; // Figure #1: Basic plot with LaTex annotations // ---------- // Data x = linspace(-5,5,51); y = 1 ./(1+x.^2); // Plot scf(1); clf(1); plot(x,y,'o-b'); xlabel("$-5\le x\le 5$","fontsize",4,"color","red"); ylabel("$y(x)=\frac{1}{1+x^2}$","fontsize",4,"color","red"); title("Runge function (#Points = "+string(length(x))+").","color","red","fontsize",4); legend("Function evaluation");
9be17f6cc89f13dc32dfefe460d6d0775003ee42
449d555969bfd7befe906877abab098c6e63a0e8
/1997/CH5/EX5.4/example4.sce
6323e5fbb9c5b0722ebe8d1a521a6c23681d1b51
[]
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
625
sce
example4.sce
//Chapter-5 example 4 //============================================================================= clc; clear; //input data lamda = 0.03;//wavelength in m Pt = 250*10^3;//transmitter power G = 2000;//antenna gain R = 50*10^3;//maximum range Pr = 10*10^-12;//minimum detectable power //Calculations Ae = (lamda*lamda*G)/(4*%pi);//effective aperture area RCS = (Pr*(4*%pi*R*R)^2)/(Pt*G*Ae);//Radar cross section of the target //output mprintf('Radar cross section of the target is %3.2f m^2',RCS); //================end of the program===========================================
1a97fa1e9fdb4fe02056f4b6bcf199338d13f2a8
4533c11d75f955d8350d45606af92ca064d2e319
/nomad/main.sce
9606a3d7f4744059e2d2074f6854a964690e0416
[]
no_license
lois76/ParamEstimationDE
0066c5a18042637b97bf989e77f2ce04ba283b12
ab3911174450a4ec9976a108885cf8e7afc62b3d
refs/heads/master
2022-05-21T04:49:51.662762
2022-03-21T13:15:38
2022-03-21T13:15:38
167,556,538
0
1
null
null
null
null
UTF-8
Scilab
false
false
769
sce
main.sce
args = sciargs(); vecV=[-110:10:50]; Inf=[-68.6 -49.5 -18.2 -5.06 2.19 3.37 2.52 2.68 5.97 14.6 33.4 60.2 85 114 152 208 254] function y=xinf(V,V12,k) y=1 ./(1+exp((V12-V) ./k)); endfunction // Fonction coût pour un modèle de type 2-1 function e=W21(pa) e=0; for i=1:length(vecV) e=e+(Inf(i)-(pa(1)*xinf(vecV(i),pa(7),pa(10))*(vecV(i)-pa(4))+pa(2)*xinf(vecV(i),pa(8),pa(11))*xinf(vecV(i),pa(9),pa(12))*(vecV(i)-pa(5))+pa(3)*(vecV(i)-pa(6))))^2 end endfunction i = 6 pa=[strtod(args(i)) strtod(args(i+1)) strtod(args(i+2)) strtod(args(i+3)) strtod(args(i+4)) strtod(args(i+5)) strtod(args(i+6)) strtod(args(i+7)) strtod(args(i+8)) strtod(args(i+9)) strtod(args(i+10)) strtod(args(i+11))]; [e]=W21(pa); csvWrite(e,"/Result/result.csv")
04958f0138a048cccb3d3d34923f60f2681e817b
449d555969bfd7befe906877abab098c6e63a0e8
/3733/CH4/EX4.19/Ex4_19.sce
302fc5f57dfb802212919b878a6494cd73ece2fa
[]
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
726
sce
Ex4_19.sce
//Example 4_19 clc;funcprot(0); //Given data P_1=36000;// kW P_2=27000;// kW N_1=81.8;// r.p.m H_1=13;// m H_2=11;// m D_1=7.82;// m //Calculation //As the specific speeds are the same,using the definition of specific speed in terms of power, N_2=((N_1*sqrt(P_1)/(H_1^(5/4)))*((H_2^(5/4))/sqrt(P_2)));// rpm // As the unit speeds are same, D_2=(D_1*N_1*sqrt(H_2))/(sqrt(H_1)*N_2);// m // As the unit flow is same,Q=Q_2/Q_1 Q=(D_2^2*H_2^(1/2))/((D_1^2*H_1^(1/2))); // By solving Q, it gives the relation,Q_2=0.886*Q_1; Q_r=(1-Q)*100; printf('\n Speed,N_2=%0.1f rpm \n Diameter,D_2=%0.2f m \n There is a reduction in flow by about %0.2f percentage.',N_2,D_2,Q_r); // The answer vary due to round off error
9e3a629f47e44a1d2de68baa5ae78ca239852025
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH25/EX25.11/Ex25_11.sce
8b91835682fe556a2af4eb3ad8ea23e7462c67ec
[]
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
180
sce
Ex25_11.sce
clc; Ptrdc=100*10**-3; VCC=10; RL=16; no=0.5; Poac=no*Ptrdc; disp('mW',Poac*10**3,"Poac="); ICQ=2*Poac/VCC; disp('A',ICQ,"ICQ="); RL1=VCC/ICQ; a=sqrt(RL1/RL); disp(a);
4c644ed43bc40b5135b846c5ba22d6df6c8310df
449d555969bfd7befe906877abab098c6e63a0e8
/965/CH7/EX7.60/60.sci
dd9570aa37bf22ad36e9de394e0e97de9333d87e
[]
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
507
sci
60.sci
clc; clear all; disp("average heat transfer coefficient") tb=27;// degree C d=19/1000;//m diameter of tube U=0.061;//m/s L=1.5;//m length of tube ts=38;//degree C mus=5.233*10^(-4);// Pa s mub=5.892*10^(-4);// Pa s kb=0.1591;// W/m.K rhob=876.6;// kg/m^3 cpb=1757;// j/kg.K Prb=6.5; Reb=rhob*U*d/mub; Nu=1.86*(Reb*Prb/(L/d))^0.33*(mub/mus)^0.14; h=k*Nu/d; xv=0.05*Reb*d;// velocity depth xt=xv*Prb;// temperature depth disp("m",xv,"velocity depth =") disp("m",xt,"temperature depth =")
8287c09fb3ca84af70dea17e99c5962fd8248ddb
449d555969bfd7befe906877abab098c6e63a0e8
/3689/CH12/EX12.9/12_9.sce
4678e367cedf65d680a0c933e30baf03befa8da1
[]
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
669
sce
12_9.sce
//////Variable Declaration N = [10,50,100] //Valures for N //Calculations printf("\n N ln(N!) ln(N!)sterling Error') for i =10 lnN = log(factorial(i)) lnNs = i*log(i)-i err = abs(lnN-lnNs) printf('\n%3d %5.2f %5.2f %4.2f',i,lnN,lnNs, err) end for i =50 lnN = log(factorial(i)) lnNs = i*log(i)-i err = abs(lnN-lnNs) printf('\n%3d %5.2f %5.2f %4.2f',i,lnN,lnNs, err) end for i =100 lnN = log(factorial(i)) lnNs = i*log(i)-i err = abs(lnN-lnNs) printf('\n%3d %5.2f %5.2f %4.2f',i,lnN,lnNs, err) end
070bab7136f88e60eac2a999ebd7b200fed3a60b
449d555969bfd7befe906877abab098c6e63a0e8
/1571/CH4/EX4.21/Chapter4_Example21.sce
8db80d4190fa4a662b8e488002a994130cfbf199
[]
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
545
sce
Chapter4_Example21.sce
clc clear //INPUT q=5000;//total number of molecules e=2.7183;//constant value t1=0.5;//distance travled to the mean free path t2=1;//distance travelled to the mean free path //CALCULATONS p1=q*(e^-t1);//n0.of molecules having no collision in traversing a distance t1 p2=q*(e^-t2);//n0.of molecules having no collision in traversing a distance t2 //OUPUT mprintf('the no. of molecules having no collision in traversing a distance o.5 is %3f \n the no. of molecules having no collision in traversing a distance 1 is %3f',p1,p2)
3162531d5816bae64127815b1b53439a4eafef60
717ddeb7e700373742c617a95e25a2376565112c
/2474/CH11/EX11.28/Ch11Ex28.sce
80f3535c7bff99840d87bcdc429d04b4cbe17495
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
600
sce
Ch11Ex28.sce
// Scilab code Ex11.28: Pg.544-545 (2008) clc; clear; C_c = 200; // Carbon content d_beta = 400; // Beta decay rate, decays/min d_r = 15.6*C_c; // Decay rate, decays/min t_half = 5730; // Half life-time of C-14, y n = log(d_r/d_beta)/log(2); // Number of half-lives of bone t = n*t_half; // Age of bone, y printf("\nThe age of the bone = %5d y", t); printf("\nSince the bone is older than 500 y so it cannot be related to Cortes conquests"); // Result // The age of the bone = 16980 y // Since the bone is older than 500 y so it cannot be related to Cortes conquests
bacaf0a43a7cbd3e87d008ddee2ed0284b2bf3b0
c552a931898aba85602c4c953c9166bedd3bb825
/screens/X11Y2.SCE
58b577a0a6868bb6d6f9ce650f1bcc23ae07d6cf
[]
no_license
domino14/basic_rpg
2bf813b4ef2992c8709581e39cf1e9bc0301f41d
0d678b6f7017db984955fa927a1f80bce5788d24
refs/heads/master
2021-01-10T12:17:29.763389
2015-10-14T06:34:47
2015-10-14T06:34:47
44,228,628
1
0
null
null
null
null
UTF-8
Scilab
false
false
976
sce
X11Y2.SCE
9 9 9 13 4 4 4 4 4 4 4 4 9 9 9 13 4 4 4 4 4 4 4 4 9 9 9 13 4 4 4 4 4 4 4 4 9 9 9 13 4 4 4 4 4 4 4 4 9 9 9 15 4 4 4 4 4 4 4 4 9 9 9 13 9 9 5 9 9 9 9 9 9 9 9 13 9 9 9 9 9 9 9 9 9 9 9 13 4 4 4 4 4 4 4 4 9 9 9 13 4 4 4 4 4 4 4 4 9 9 9 13 4 4 4 4 4 4 4 4 9 9 9 13 4 4 4 4 4 4 4 4 9 9 9 13 4 4 4 4 4 4 4 4 9 9 9 13 8 8 8 8 8 8 8 8 9 9 9 13 0 0 0 0 0 0 0 0 9 9 9 13 0 0 0 0 0 0 0 0 9 9 9 13 0 0 0 0 0 0 0 0
d50c42db921687e8da7a5d555bbf686a2fef58f4
449d555969bfd7befe906877abab098c6e63a0e8
/42/CH4/EX4.14/sadiku_4_14.sce
77309a28323781a89565773cb0b45b2e9350035c
[]
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
241
sce
sadiku_4_14.sce
clear; clc; format('v',6); Q1=-1*10^-9 ,Q2=4*10^-9,Q3=3*10^-9,e=10^-9/(36*%pi); V1=(1/(4*%pi*e) * (Q2+Q3)),V2=(1/(4*%pi*e)*(Q1+Q3/(2^.5)) ),V3=(1/(4*%pi*e) * (Q1+Q2/(2^.5))); W=.5*((V1*Q1)+(V2*Q2)+(V3*Q3)); disp(W*10^9,'Energy in nJ');