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
0f353953e9560ec9580e146e5dc3f4563f18df75
449d555969bfd7befe906877abab098c6e63a0e8
/1163/CH30/EX30.8/example_30_8.sce
44c3ab4ad3fcc0c1b76513251b2b45d2d6e16fdd
[]
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,664
sce
example_30_8.sce
clear; clc; disp("--------------Example 30.8----------------") p=397; q=401; n=p*q; // formula phi=(p-1)*(q-1); // formula e=343; d=1; // not actual 'd' value; it has to be computed message=['N' 'O']; // NO t=1; alphabet=['A' 'B' 'C' 'D' 'E' 'F' 'G' 'H' 'I' 'J' 'K' 'L' 'M' 'N' 'O' 'P' 'Q' 'R' 'S' 'T' 'U' 'V' 'W' 'X' 'Y' 'Z']; // Encryption process by Ted while t==1 do // compute d such that d*e = 1 mod n if(modulo(e*d,phi)== 1) t=0; else d=d+1; end end l=size(message,'c'); // length of the message c=[]; for k=1:l // determine the code for each character in the message for i=1:26 if(message(k)==alphabet(i)) c(k)=i-1; // compute the code break; end end end plaintext=c(1)*100+c(2); // form the plaintext //C=modulo((plaintext)^e,n) -- formula to find the ciphertext ciphertext=33677; // from calculation printf("\nThe plaintext is %d and the ciphertext sent by Ted is %d.\n",plaintext,ciphertext); // display the result // Decryption by Jennifer //P=modulo((ciphertext)^d,n); -- formula to find the plaintext P=1314; // the plaintext that is computed // separate the codes for each character c(2)=modulo(P,100); c(1)=floor(P/100); d_message=""; // deciphered message for k=1:l // find the corresponding letter for each code for i=1:26 if(i==c(k)+1) d_message=d_message+alphabet(i); // form the deciphered message end end end printf("\nJennifer deciphers the ciphertext %d as the plaintext %d and decodes it as the message %s.",ciphertext,P,d_message) // display the result
26d657515592212748816d6abf432b4076fbd721
449d555969bfd7befe906877abab098c6e63a0e8
/69/CH5/EX5.22/5_22.sce
b3db415e58b10b94bedf8b0bcb70e7d57f9eb3cf
[]
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
134
sce
5_22.sce
clear; clc; close; Rb = 3.3*(10^(6)); Beta = 8000; Re = 390; Ai = (Beta*Rb)/(Rb+Beta*Re); disp(Ai,"ac current gain(Ai) :");
e8c8815c5ff1bf1b7cdf3499134eb08c267446f0
449d555969bfd7befe906877abab098c6e63a0e8
/2342/CH5/EX5.30/EX5_30.sce
ce3840e4e699159ff4309dff1529ba8316ca71b1
[]
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
818
sce
EX5_30.sce
// Exa 5.30 format('v',6) clc; clear; close; // Given data I_DD= 20;// in mA R2 = 10;// in k ohm R1 = 30;// in k ohm R_S= 1.2;// in k ohm R_D= 500*10^-3;// in k ohm V_DD = 12;// in V Vp= -6;// in V V_G = (R2/(R2+R1))*V_DD;// in V I_D= poly(0,'I_D') V_GS= V_G-I_D*R_S;// in V // Evaluation the value of I_D by using polynomial method, I_D=I_D-I_DD*(1-V_GS/Vp)^2; I_D= roots(I_D);// in mA // For I_D(1), V_DS will be negative, so discarding it I_D= I_D(2);// in mA // The value of V_DS, V_DS= V_DD-I_D*(R_D+R_S);// in V // The value of V_D, V_D= V_DD-I_D*R_D;// in V // The value of V_S, V_S= V_D-V_DS;// in V disp(I_D,"The value of I_D in mA is : ") disp(V_DS,"The value of V_DS in volts is : ") disp(V_D,"The value of V_D in volts is : ") disp(V_S,"The value of V_S in volts is : ")
68c8323f35ab56ae89a0ddd4fd93709e75e26515
b07438143759654d68984cb489f480e39485180b
/zadanie3.sce
6317664f57e4dfff9f025d570a06fa94185c6b7d
[]
no_license
BartusZak/histogramPrzedzialy
a214788a450613167409ba9f5f3f6515a3ee6598
b5d98b4a08f53862996ff8fe483dce8d6ca0ca6c
refs/heads/master
2021-07-15T17:35:07.515816
2017-10-21T20:58:50
2017-10-21T20:58:50
107,815,311
0
0
null
null
null
null
UTF-8
Scilab
false
false
828
sce
zadanie3.sce
function histogramPrzedzialy(img,ilosc_przedzialow) [h w] = size(img); H = zeros(ilosc_przedzialow,1); Y = zeros(2*ilosc_przedzialow+2,1); dlugoscStopnia = ceil(256/ilosc_przedzialow); pom = [0:dlugoscStopnia:255]; pom = [pom;pom]; X = matrix(pom,1,-1); X = [X 255 255]; for i = 1:h for j = 1:w wartosc = img(i,j); for p = 0:(ilosc_przedzialow-1) if wartosc >= p*dlugoscStopnia & wartosc < p*dlugoscStopnia+dlugoscStopnia then H(p+1) = H(p+1) + 1; end end end end for i = 2:2:2*ilosc_przedzialow+1 Y(i) = H(i/2); Y(i+1) = Y(i); end plot(X,Y); endfunction img = imread('lena3.jpg'); histogramPrzedzialy(img,4);
3ddc213d9c6f50bbc4dda3be58f1c609543dd02a
449d555969bfd7befe906877abab098c6e63a0e8
/46/CH3/EX3.1/Example3_1.sce
5e93b70b130cb8e2cc6a407e911650d7248a9415
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
162
sce
Example3_1.sce
//Example 3.1 clc s=%s; xs=1/(s*(s+1)); disp(xs,'x(s)=') syms t; [A]=pfss(xs) F1=ilaplace(A(1),s,t); F2=ilaplace(A(2),s,t); xt=F1+F2; disp(xt,'x(t)=')
3c92a2c0879ce98c5b6e98611a7230ed65d8de35
449d555969bfd7befe906877abab098c6e63a0e8
/1092/CH14/EX14.5/Example14_5.sce
4141a8c0ff3004d433ffc806ccfed562359d6576
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,045
sce
Example14_5.sce
// Electric Machinery and Transformers // Irving L kosow // Prentice Hall of India // 2nd editiom // Chapter 14: TRANSFORMERS // Example 14-5 clear; clc; close; // Clear the work space and console. // Given data P = 100 ; // Power rating of the single channel power amplifier in W Z_p = 3200 ; // Output impedance in ohm of the single channel power amplifier N_p = 1500 ; // Number of primary turns in a tapped impedance-matching transformer Z_L1 = 8 ; // Amplifier output in ohm using a tapped impedance-matching transformer Z_L2 = 4 ; // Amplifier output in ohm using a tapped impedance-matching transformer // Calculations // case a alpha = sqrt(Z_p/Z_L1) ; // Transformation ratio N_2 = N_p / alpha ; // Total number of secondary turns to match 8 ohm speaker // case b // subscript b for alpha indicates case b alpha_b = sqrt(Z_p/Z_L2) ; // Transformation ratio N_1 = N_p / alpha_b ; // Number of primary turns to match 4 ohm speaker // case c turns_difference = N_2 - N_1 ; // Difference in secondary and primary turns // subscript c for alpha indicates case c alpha_c = (1500/22); // Transformation ratio Z_L = Z_p / (alpha_c)^2 ; // Impedance that must be connected between 4 ohm and // 8 ohm terminals to reflect a primary impedance of 3.2 kilo-ohm // Display the results disp("Example 14-5 Solution : "); printf(" \n a: Transformation ratio : \n α = %d \n ",alpha ); printf(" \n Total number of secondary turns to match 8 ohm speaker : "); printf(" \n N_2 = %d t \n ",N_2 ); printf(" \n b: Transformation ratio : \n α = %.3f \n ",alpha_b ); printf(" \n Number of primary turns to match 4 ohm speaker : "); printf(" \n N_1 = %d t \n ",N_1 ); printf(" \n c: Difference in secondary and primary turns : "); printf(" \n N_2 - N_1 = %.f t \n ",turns_difference ); printf(" \n Impedance that must be connected between 4 ohm and 8 ohm "); printf(" \n terminals to reflect a primary impedance of 3.2 kilo-ohm : "); printf(" \n Z_L = %.2f ohm ",Z_L );
0d90e77a9577809e3fdfbcf60984f9c8a5406924
449d555969bfd7befe906877abab098c6e63a0e8
/3020/CH16/EX16.4/ex16_4.sce
fcda8af5498bb9620ef589fca1aab7c8a3c75511
[]
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
523
sce
ex16_4.sce
clc; clear all; n = 5.8e28; // Number of electrons per unit volume tr = 3.4e-14; // Relaxation time of electron in seconds m = 9.11e-31; // Mass of electron in Kg e = 1.6e-19; // Charge of an electron rho = m/(n*e^2*tr); //Electrical resistivity of sodium metal disp('Ohm.meter',rho,'Electrical resistivity of sodium metal at zero degrees is') ue = (e*tr)/m; //Mobility of electron in metal disp('m^2/(V.s)',ue,'The mobility of electron in metal is') // Wrong answer printed in textbook... checked in calculator
4f09d2a9b8f55d2e815d4695b06e9e576bd87109
449d555969bfd7befe906877abab098c6e63a0e8
/2975/CH31/EX31.21w/Ex31_21w.sce
8758ac6df3095a7025cc2e19116322d80c83ee2c
[]
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,560
sce
Ex31_21w.sce
//developed in windows 8 operating system 64bit //platform Scilab 5.4.1 //example 31_21w clc;clear; //Given Data capacitance=100*10^-6; //Capacitance of the capacitor (Unit: Coulomb) dielectric=5; //Dielectric constant (Unit:unitless) voltage=200; //Voltage of power supply(Unit:V) //Calculation init_charge=capacitance*voltage; new_capacitance=capacitance*dielectric; final_charge=new_capacitance*voltage; change_charge=final_charge-init_charge; //Calculation of Extra charge flown through the power supply (Unit:C) change_charge_milli=change_charge*10^3; //Changing the charge into milli coulomb (Unit:mC) work_done=change_charge*voltage; //Calculating the work done by the supply (Unit:Joules) init_static_energy=0.5*capacitance*voltage^2; //Calculating the electrostatic field energy of the capacitor without the dielectric slab(Unit:Joules) final_static_energy=0.5*new_capacitance*voltage^2; //Calculating the electrostatic field energy of the capacitor with the dielectric slab(Unit:Joules) change_static_energy=final_static_energy-init_static_energy; //Calculating the change in the electrostatic energy of the electric field in the capacitor (Unit:Joules) disp(change_charge_milli,"The extra charge flown through the power supply is (Unit:mC)"); disp(work_done,"The work done by the supply is (Unit:Joules)"); disp(change_static_energy,"The change in the electrostatic energy of the electric field in the capacitor is (Unit:Joules)");
6d043354aaf543fd8c3a98b4e989f289b3080f1e
449d555969bfd7befe906877abab098c6e63a0e8
/2858/CH11/EX11.6/Ex11_6.sce
889e567efd443d74a2c0edab026a088ff750f947
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
357
sce
Ex11_6.sce
//example 11.6 clc; funcprot(0); L=21; Qwp=502-350; Qws=350; Ap=0.1045; Ep=21e6; epsilon=0.62; Se1=(Qwp+epsilon*Qws)*L/Ap/Ep; //part2 Iwp=0.85; qwp=152/Ap; Es=25e3; D=0.356; mus=0.35; Se2=qwp*D/Es*Iwp*(1-mus^2); //part3 p=1.168; Iws=2+0.35*sqrt(L/D); Se3=Qws/p/L*D/Es*Iws*(1-mus^2); Se=Se1+Se2+Se3; disp(Se*1000,"settlement in mm");
a8af8aabeb2ec884960807ae261c66c0d494e323
449d555969bfd7befe906877abab098c6e63a0e8
/243/CH12/EX12.4/12_04.sce
b38a5bb8370cba9949af64926641e27142651df3
[]
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
544
sce
12_04.sce
//Example No. 12_04 //Simpon's 1/3 rule //Pg No.382 clear ;close ;clc ; deff('F = f(x)','F = sqrt( sin(x) )'); x0 = 0 ; xa = %pi/2 ; //case(a) n = 4 n = 4 ; h = ( xa-x0 )/n I = 0 for i = 1:n/2 I = I + f(x0 + (2*i-2)*h) + 4*f(x0 + (2*i-1)*h) + f(x0 + 2*i*h) ; end I = h*I/3 disp(I,'Integral value for n = 4 is',h,'h = ') //case(b) n = 6 n = 6 h = ( xa-x0 )/n I = 0 for i = 1:n/2 I = I + f(x0 + (2*i-2)*h) + 4*f(x0 + (2*i-1)*h) + f(x0 + 2*i*h) ; end I = h*I/3 disp(I,'Integral value for n = 6 is',h,'h = ')
7ee63fa4dc66f9ec7f86c689b2800987367ef27d
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/macros/util/%c_ones.sci
82900ac9c6aacec29c1be8964cd4da149df04e83
[ "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
68
sci
%c_ones.sci
function x=%c_ones(a) // Copyright INRIA [m,n]=size(a) x=ones(m,n)
8036824da942fe2465304f117dbb15181b18133d
01ecab2f6eeeff384acae2c4861aa9ad1b3f6861
/sci2blif/rasp_design_added_blocks/hhneuron.sce
b5712e57d5844466ef03feec80823105275b7cf2
[]
no_license
jhasler/rasp30
9a7c2431d56c879a18b50c2d43e487d413ceccb0
3612de44eaa10babd7298d2e0a7cddf4a4b761f6
refs/heads/master
2023-05-25T08:21:31.003675
2023-05-11T16:19:59
2023-05-11T16:19:59
62,917,238
3
3
null
null
null
null
UTF-8
Scilab
false
false
329
sce
hhneuron.sce
//style.fontSize=16; //style.displayedLabel="<table> <tr> <td align=left><b>Vin<br> E<sub>Na</sub><br>E<sub>K</sub><br>Vref</b></td> <td></td> <td></td> <td>HH Neuron</td> <td></td> <td></td> <td align=right><b>Vout<br>V<sub>Na</sub><br>V<sub>K</sub></b></td> </tr> </table>"; //pal5 = xcosPalAddBlock(pal5,"hhneuron",[],style);
d805379a6f284abae95a7ba5ba7934fe8e985361
139d4a83f28a14dc04c48d99a492bec7abcc3229
/lab1_v8/3a.sce
aa5dee80786c9c8d43ae043df7785b93103be38f
[ "MIT" ]
permissive
s-kostyuk/labs_alg
0f78d0a5df7b94f9190bc3b45a077fb3e68e74fb
320902e94d9bfde9d7a13a427b315605929dec17
refs/heads/master
2021-01-10T03:54:40.483782
2015-12-03T22:52:39
2015-12-03T22:56:46
44,764,651
0
2
null
2015-12-01T15:07:01
2015-10-22T18:20:28
Scilab
UTF-8
Scilab
false
false
614
sce
3a.sce
mode( -1 ) n = input(" Введите количество элементов n: ") eps = input(" Введите число ε: ") min_i = -1 mprintf("\n") for i=1:1:n do ai = (-1)^(i + 1) * 3^(i + 1) / factorial(i + 1) if (abs( ai ) < eps) & (min_i == -1) then min_i = i end mprintf( "Значение a %2d-е равно: % E\n", i, ai ) end mprintf("\n") if (min_i == -1) then mprintf( "Условие не выполняется" ) else mprintf( "Наименьший номер, для которого выполняется условие: %d", min_i ) end
ec96d35f727cc9e69100eecde6f47b72ebf2842f
0ade4f8a7ec375e54db514312b562334ab304d3e
/data/benchmark/Korns_10.tst
b31b6a6efd0427b27b2a64ac29bfb0263c7a31c0
[]
no_license
zeta1999/go-pge
39ac86612d4a90c1e53d2c45c1177e98b3bcf4e4
99a4b600185145bcc047e8e42cecfd2346b6b16d
refs/heads/master
2021-01-01T11:10:20.053388
2014-01-16T16:06:50
2014-01-16T16:06:50
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
123,246
tst
Korns_10.tst
x y z v w f(xs) 33.028151 2.848507 10.709496 -4.095216 -34.714515 0.811171 8.443031 19.673335 25.022620 -23.053278 -32.691847 0.818230 23.507504 25.890675 -47.155011 -20.701745 -19.251747 1.060802 26.947003 -3.745203 10.601829 -3.347484 -21.734252 0.817182 -43.660796 2.873420 19.722036 34.243244 -12.652883 0.908677 -8.371112 29.031179 -49.503579 40.555176 -40.504885 0.823119 2.665999 40.075691 30.170342 -19.590743 8.890610 59.519351 -21.283332 16.207981 -38.537125 26.692270 8.062439 1.931966 7.097745 4.657268 5.318011 -16.508583 41.098904 0.810161 28.036824 44.041790 -5.979770 48.639730 47.674109 0.810181 -32.187343 -12.295506 33.896354 1.386853 0.720687 6920.292205 -47.389406 -40.310481 -4.981885 19.564764 26.705219 0.809942 14.891703 -8.511717 -15.131864 -31.140374 12.419864 -8.133473 -29.561919 -8.542511 -29.291452 21.908270 -12.318383 1.205267 16.384423 49.200283 30.206286 22.553553 -19.215314 0.904712 -45.901800 44.025260 -8.291869 -14.678846 0.992173 0.244477 49.123855 -44.721553 45.755150 -15.913032 -5.371173 -11.772376 -36.450755 1.974823 -43.664050 4.685779 -14.833641 1.383557 -43.039985 42.886267 24.335211 -6.668723 36.190103 0.815277 -31.291869 -10.163256 -29.534010 43.948123 -46.440369 0.812674 -5.318770 25.548518 36.605124 47.493376 -49.810756 0.813170 3.628548 -30.886591 -36.443063 -39.676886 -41.547965 0.816506 -19.050332 16.104793 -36.667538 27.183569 8.578473 1.729675 12.478138 -40.432247 39.097206 4.983082 28.581981 0.842801 -5.938626 -15.937728 -22.273064 45.546853 14.111054 0.871420 3.553481 4.911501 -10.605271 39.946817 -39.961823 0.810649 -1.427028 -44.115397 34.402000 -24.544895 43.213054 0.814842 -20.537972 18.952576 13.110596 -32.422801 -35.122818 0.811800 -33.864307 12.059393 1.959998 -28.191031 0.235776 0.800335 -49.427197 16.386419 48.073294 -19.851403 23.305975 0.927235 -23.690280 32.309084 46.755722 -47.314263 -8.548594 0.404593 30.656568 -18.046652 -34.650512 -15.001486 23.707003 0.865338 43.130771 -32.259572 4.930825 -37.988218 -1.461390 0.809067 32.228571 42.614485 4.696839 44.538572 48.927440 0.810127 -4.042259 39.347821 -37.699585 -46.653340 44.694514 0.815399 19.650328 -12.865812 27.236079 1.399865 33.451991 0.818537 20.962725 -46.865563 -33.898763 27.638522 26.063493 0.844073 -20.996152 37.949911 -4.907861 48.219258 44.556620 0.810179 -36.986144 -38.207993 -8.302153 15.928295 -35.743491 0.810387 -46.979777 -8.298410 -9.202816 42.990060 39.805342 0.810448 38.484649 -6.155449 15.508793 -5.233800 -40.815052 0.811242 45.133085 26.979563 28.374218 -1.136117 18.485642 0.912770 47.505907 -36.566295 -28.244226 26.451105 -28.249634 0.827302 -18.515250 -15.425038 -7.400994 -7.176250 -38.961154 0.810282 -11.049220 33.037135 23.263571 -25.442156 -28.561456 0.822589 35.806813 -12.492035 43.519364 -36.123390 40.124873 0.820763 0.329089 -27.711236 1.796245 37.428083 25.189418 0.809500 -48.199089 -30.573308 -5.380946 43.393638 -42.151909 0.810039 31.826900 -14.531967 -25.299385 -39.994939 13.222840 0.364068 -10.153702 -31.676255 -17.887541 -48.827428 -48.518158 0.810800 -25.409766 -16.040522 -30.138638 -43.455891 -21.573229 0.896701 11.923929 -0.282493 41.206659 35.067345 -21.210162 0.914499 -1.196990 -13.897686 16.170080 34.396795 -44.556991 0.810925 29.464080 -29.200800 31.320518 -2.621166 25.796521 0.841658 2.254800 6.779852 -37.630360 17.213928 29.254335 0.838122 -41.185314 5.804370 29.737012 -26.618080 14.504098 1.253966 -10.349108 -29.058418 -45.849086 -38.383476 -36.389362 0.827777 -12.911447 -46.812699 -19.239907 29.061472 -42.372094 0.811524 37.646363 27.808313 -45.822458 31.215785 -22.868982 0.913688 40.673721 33.022118 44.073615 47.032403 -20.199900 0.924696 6.291480 18.556667 4.304755 -25.543852 48.632009 0.810081 42.108330 37.246079 -14.121226 -32.558433 40.598967 0.811216 7.493687 -48.019602 11.432938 -20.071570 -15.175509 0.840902 12.153901 -44.436501 -27.579895 22.419215 -39.363970 0.814422 -18.364476 -24.243149 40.471631 -9.659484 -25.460565 0.866367 26.495337 39.669023 -24.706359 -31.702643 9.274591 0.296754 37.014586 43.980309 38.672770 -7.129099 26.204133 0.857183 -40.983798 -10.839964 -4.927961 8.749184 40.071306 0.810096 1.638170 -1.567586 -35.428039 -16.589144 40.856984 0.816570 -1.501316 28.029794 -40.043403 -14.738094 35.175201 0.825475 -17.405982 0.610046 47.756949 -17.091705 8.783619 17.795525 -29.030223 -42.036282 46.656848 -38.792269 29.668692 0.853029 -24.895177 21.621604 -5.405460 -19.630320 9.091870 1.624150 -33.960471 -13.338047 -26.258631 -34.864554 -34.543143 0.817140 31.200711 -41.618439 -28.609218 -20.995997 41.070707 0.814063 24.318588 30.124267 -9.950801 -35.402802 -40.026987 0.810686 5.874148 -19.705314 -2.515712 48.635130 45.468018 0.809977 -49.193567 31.654753 -28.341940 -6.341098 5.990647 11.898325 39.290276 39.705336 -21.193338 47.025616 -30.483342 0.817325 6.307154 4.354054 39.796823 31.137987 -37.077888 0.822086 -25.499035 -42.859647 25.703272 -31.011074 1.876032 0.423528 5.475131 -20.534754 12.138777 42.487724 -35.233835 0.811216 -9.146816 -11.236900 -17.701882 -14.987261 -12.322513 1.028995 10.760380 -36.482179 -42.867763 2.153560 -21.277951 0.938972 22.809926 -26.175253 -49.265756 -34.745706 -22.007070 0.984791 1.780586 -1.312681 3.615020 47.706032 -24.656648 0.810389 -38.163433 18.019694 41.205453 40.107947 -26.879663 0.853460 -36.377891 -14.019284 -45.796867 -38.199647 -19.607666 1.104944 -32.803544 -32.921556 -28.843826 -25.604051 39.540440 0.814858 33.798626 -7.641619 -20.197424 -5.708810 41.961378 0.811895 9.460062 24.513622 -2.795318 -49.966629 9.641544 0.806136 -32.396640 -49.277952 19.166950 47.505766 36.708292 0.812565 -9.249741 -9.595438 0.112299 33.940932 -14.408720 0.808749 -8.255228 12.513141 42.011837 10.831643 6.982244 8.429309 -40.778185 7.683937 39.203986 -1.511760 4.097472 81.362397 -40.395943 -38.999397 15.712004 -28.484374 1.994310 0.635678 0.079958 29.129341 -43.000794 -14.431292 45.363182 0.816437 18.567573 -48.673230 0.473963 -32.339942 -36.950432 0.809744 -41.704912 -29.488644 -13.410363 -46.855347 28.084861 0.814326 45.845083 43.865785 48.791125 1.217390 -14.701709 1.562068 -49.928008 16.605953 -33.413732 17.372857 25.753273 0.847020 9.454026 -15.995304 -5.302948 -29.851681 -4.370165 0.797831 -13.882441 43.198951 -43.927500 -45.277168 6.787981 0.414146 18.460226 38.004580 -30.135654 4.527310 7.675377 4.649534 48.585927 38.268912 29.877139 49.920625 15.546171 0.894761 49.046846 29.088722 -35.063360 31.146382 38.741432 0.817997 -4.661521 -16.373004 40.681582 -2.317524 -16.353232 1.145217 -32.058031 23.298776 3.575465 -8.386603 8.753573 0.886462 4.323683 38.058608 -37.518538 47.849839 -20.740820 0.886616 20.180734 -2.486904 13.222375 -26.953402 -23.996526 0.817992 2.114799 -6.603282 -6.359531 20.087238 -3.295346 0.889594 -39.882192 -19.900253 11.299298 7.912503 48.111726 0.810311 -37.905487 49.484885 30.062948 12.173878 -5.583210 6.465359 31.140152 7.490424 -46.161549 6.223640 -36.025148 0.828487 -9.904273 -49.548742 -30.042830 22.918360 41.064213 0.814443 3.705722 29.867861 -28.617457 26.196071 -35.274668 0.817827 -38.447145 12.503069 23.970639 -24.475225 -48.165859 0.811583 -1.276731 6.211806 -33.257174 -35.162633 36.426647 0.819379 41.227668 -43.678019 -2.230997 21.758748 1.847777 0.767351 23.923324 -40.640464 -14.812455 47.283704 15.048091 0.830640 41.851486 32.218182 -16.879884 32.689721 2.732586 0.969540 -13.306489 -43.115601 9.232283 11.864709 49.869532 0.810133 40.976823 24.034669 -1.485663 -28.688495 -26.544965 0.810557 -8.481317 0.719009 14.364488 -25.610641 30.874783 0.813368 -10.745148 16.010158 12.122204 28.848815 -38.788125 0.811007 -5.590535 11.174043 15.122823 23.843196 27.685754 0.815754 30.900092 -1.445151 -28.702419 -45.863998 22.118024 0.883992 -14.850283 -10.135205 -38.242131 -43.884780 -33.167705 0.828575 4.150626 24.026055 -5.826475 -2.591308 -30.155564 0.810881 48.083053 37.066442 -1.831548 -21.024144 -14.557722 0.820918 23.540616 -44.303898 38.009837 -0.084062 24.314916 0.869032 -3.875982 46.309239 -36.719324 -11.489073 15.551107 1.161106 23.044913 44.379588 8.601240 48.979795 -15.276548 0.820171 48.371426 23.730835 34.408361 47.795437 39.222190 0.817128 -41.343552 -6.442148 -16.639807 15.958454 -22.151099 0.826288 -2.388458 6.670543 -31.739545 4.675414 -40.328468 0.815577 -15.307671 -26.727590 -31.135635 -15.121556 30.471231 0.826146 17.619272 36.004912 -13.198658 16.038827 -40.727029 0.811049 -8.780795 46.782387 -7.728706 -25.215252 -19.839304 0.819329 5.420023 0.420653 -15.047055 -5.333147 -26.977470 0.816242 46.946297 33.896135 -5.948516 1.673311 38.485684 0.810385 35.153576 43.667578 17.801566 39.170627 -27.414160 0.818231 -48.303491 -38.010402 34.020882 -13.690135 -19.364620 0.929120 -18.520711 -17.152016 -29.509892 -0.096581 5.690843 12.756651 -43.013855 -47.130337 4.439515 19.027815 13.610827 0.805713 -47.812236 28.615352 -46.297081 1.665633 -21.551015 0.956162 14.713803 11.616820 -9.738228 45.661761 29.799291 0.811730 -9.940884 43.979109 34.164252 -2.370626 -3.084859 219.139928 -32.533058 4.044697 36.444272 28.174391 -29.205467 0.836031 -43.218815 13.365422 20.233165 21.663450 12.960601 0.977778 37.520974 21.751402 2.567113 -33.533623 27.202635 0.810594 -12.852197 -41.125317 -28.327097 0.876657 48.082492 0.812114 3.159699 9.111464 43.706135 -9.751564 -14.139156 1.522302 21.588151 26.851656 21.215632 -36.414489 -1.203391 0.633348 -39.197093 49.756000 -32.473138 42.686477 -28.697207 0.831418 -38.875160 16.300297 -28.288987 -1.198153 -3.694889 64.733795 -1.956287 -35.157167 -34.719837 23.251747 20.435030 0.903440 7.472365 38.174824 -22.249294 21.594663 -45.894183 0.811707 47.502868 -19.409197 36.679225 36.535838 -16.638950 0.977957 28.096397 44.477245 28.560027 -39.161147 -29.213432 0.828117 30.864935 45.402891 41.761655 37.040069 24.424180 0.875242 33.671642 -12.512182 -27.868582 11.786521 -11.192431 1.468843 48.341664 0.798346 3.886657 -18.696754 16.432826 0.813368 11.345345 16.335481 -23.234912 33.614439 19.268870 0.857729 -10.326520 -5.203036 7.488224 36.689761 35.995723 0.810446 36.464220 31.126084 35.655434 43.154944 -46.636682 0.813929 35.857141 29.351047 33.918539 -0.397523 43.004249 0.814988 43.939558 2.298751 44.745879 -46.571083 -40.713331 0.820955 41.266534 -18.586942 -34.224237 9.522418 -4.929689 13.996807 -36.649192 30.766451 22.891113 39.173755 -45.431524 0.811843 -18.612396 -10.581089 4.571631 -20.123400 44.615528 0.810051 25.143211 -22.993383 -23.575625 32.682747 26.073168 0.826080 -26.713065 -6.735863 -1.649424 -9.054825 47.528640 0.809995 -17.163652 -49.451413 -49.349212 -39.974362 25.529617 0.903732 -30.415660 -47.273287 -5.487829 -37.349313 13.538700 0.812524 30.498950 8.486242 -45.012614 43.473363 -30.745961 0.840879 -23.553789 -8.880956 -41.315782 -3.218807 3.771681 141.978894 21.896257 35.815603 13.105927 12.460265 4.869922 2.161814 25.981012 -12.000002 -32.036664 -7.557847 46.770251 0.813103 -8.816324 36.476721 48.858239 -27.782222 15.351585 1.725932 -3.661392 -49.025786 18.359475 13.922210 -7.371536 1.678213 -31.670016 -16.063898 -21.590495 -46.293616 44.169550 0.811782 -13.785983 -45.252771 -41.059375 -8.603296 -40.095171 0.819342 11.615092 -11.992341 27.338123 -49.936549 -1.500620 0.701782 28.096882 13.800347 47.596179 29.104115 -21.883793 0.943151 10.429053 10.551968 -44.049560 21.880869 36.780870 0.825443 3.621192 13.050363 -7.953556 12.713936 -30.326771 0.811238 26.898597 8.254386 -28.261962 42.351735 12.403605 0.948863 -22.720738 23.999570 48.238393 -2.183516 38.629890 0.825340 42.109377 6.029760 29.487071 46.043957 21.242504 0.855208 1.671310 -4.467602 8.170216 -37.277876 -16.770993 0.834684 4.126271 -29.946355 -36.934751 -31.770682 33.761861 0.825388 19.709637 -25.177555 -19.757252 -0.817077 43.439235 0.811530 3.479026 -45.546559 5.265519 -22.958374 45.015193 0.809991 15.322626 -46.241277 -10.937941 -16.391750 -42.362496 0.810403 9.186929 17.130168 19.686395 43.535137 -34.941640 0.813737 46.805569 30.241334 46.904428 31.820776 2.038797 2.064971 48.618080 -3.717121 36.509529 11.773975 30.332273 0.832881 -30.874762 -4.628563 6.497276 38.640897 -25.472277 0.811221 48.098417 -24.981538 2.901103 41.893100 -42.577985 0.809964 -49.271466 21.182290 34.756139 -30.932144 1.413642 0.057301 -28.600241 -41.416128 -45.699744 -2.800531 19.682381 1.010238 -46.846822 49.505406 -47.609727 -3.067813 -33.816526 0.835640 28.931996 42.940557 11.647717 -4.455714 45.663541 0.810551 -44.754095 -40.659063 -26.279019 -48.961205 28.883639 0.826066 -45.279327 -4.811574 0.012561 10.972549 -40.391073 0.809982 -13.072804 28.869588 -0.136922 -48.152982 -37.273516 0.810153 41.412168 15.591788 -2.302589 -10.392155 18.057108 0.812171 11.323578 -13.294152 12.418718 -3.216378 -46.040867 0.810472 -20.672785 -26.921189 -11.500752 -21.796716 37.456472 0.810850 -3.893038 -11.657713 -19.896263 40.402094 -5.354591 0.915602 9.571353 15.213124 -20.104908 -18.014013 -14.620495 0.957288 -22.215922 -18.763792 -28.290823 48.224916 49.757753 0.811847 34.184991 23.244129 24.111310 -31.499040 -5.410456 0.449598 12.500958 -3.569867 12.531340 -6.621924 37.414728 0.811151 2.593298 -5.977687 33.645995 -8.644421 -23.308196 0.865824 20.619658 -34.116007 -1.588373 -40.657733 -33.489650 0.809755 25.402284 33.297556 -33.487216 -9.525315 23.334687 0.866368 12.333795 28.977621 -12.163557 -8.999750 45.270926 0.810581 25.148282 49.739329 44.290811 -43.024424 -32.284279 0.838441 38.800086 21.239804 49.208401 29.722926 28.142172 0.864781 -14.864071 34.900769 43.076241 10.545511 18.885019 1.023788 12.118737 29.182189 18.740695 -24.728770 26.110110 0.821939 -14.075918 -44.847747 31.187871 -43.450241 36.838951 0.817739 27.613945 -4.038264 23.028703 -30.607817 9.283257 0.314100 -40.901060 37.551977 43.201455 13.412123 -43.116244 0.817975 -23.655000 -1.771082 25.120014 -47.624344 8.200778 0.697861 -20.503043 -20.313393 -7.132881 16.463344 41.230169 0.810188 -1.666737 -6.327594 43.471586 42.883116 6.302178 1.235132 36.125568 21.404259 -32.137617 18.557558 20.967703 0.886949 -47.162775 -27.267456 39.434772 23.959307 -45.658581 0.815143 -18.269183 22.784667 -44.113520 -34.707026 -20.543928 1.007634 -16.806835 -40.835081 14.987731 -43.919241 49.299295 0.810493 25.875839 -9.446120 -41.135236 -9.331439 16.539669 1.141320 11.032117 16.634568 -3.508263 -46.170968 -45.187334 0.810083 -25.416885 27.897062 32.724191 -31.218759 3.893272 0.151198 -48.672136 44.770597 -2.124728 -33.918122 -23.870228 0.811707 35.136696 6.122037 -28.542316 -25.881839 -38.021703 0.815750 -47.137102 -48.102408 47.222649 -15.691312 30.543173 0.846954 -37.566454 15.530762 -30.656126 16.751034 -41.679029 0.814585 27.709189 -26.271353 10.704195 12.980728 48.237907 0.810261 -10.669852 -22.237973 -38.475285 9.116779 41.374502 0.817290 -45.572241 -4.915679 49.097116 -15.836340 -16.768147 1.272544 10.103102 -2.313984 29.606713 16.144046 -45.455903 0.812986 -49.201424 -30.501009 -37.238813 -47.609681 -40.103114 0.817968 32.559576 43.596907 22.483859 -29.863571 32.175850 0.817420 41.914064 -20.558807 -21.828674 -19.116320 39.945268 0.812656 -45.914056 -23.131324 24.339327 -47.966126 -24.248978 0.842673 9.401521 49.159650 -19.835090 -44.812580 -34.483408 0.814631 -4.822721 0.440545 11.788130 -16.787015 -38.696307 0.810907 -32.904914 -36.620427 -36.858587 33.872011 -21.590213 0.888317 -24.119716 -32.736946 -24.420587 -45.685818 -15.707284 0.266545 -13.574533 -13.911109 -23.543709 -34.565522 8.652113 0.520344 45.008204 4.192004 47.572636 42.478005 33.619702 0.834676 1.880898 -23.383448 -44.206559 24.459369 5.590651 3.038529 32.551576 -41.709953 10.070090 14.957611 -8.055935 0.965770 20.258710 25.048369 -32.706077 9.823722 -32.234140 0.824661 7.065687 6.603719 0.875804 -47.795594 -38.195078 0.810037 46.526161 -23.984483 13.282813 41.250817 -3.857721 0.851494 39.759807 -39.688234 -29.897156 -48.496940 37.459720 0.816735 24.797309 41.133246 15.028949 37.347849 -36.177467 0.812105 44.529931 -25.130452 -40.327218 25.308303 -40.356728 0.818804 49.370722 -21.906472 3.210684 4.991156 -45.492586 0.809985 1.589345 19.369463 -44.344358 -8.683187 -42.900306 0.818521 24.809114 8.838664 -31.064240 28.954947 8.832395 1.364981 30.007156 -3.907063 1.631553 12.441016 -30.347360 0.810001 48.922907 45.596814 -12.432731 -43.600570 -15.060873 0.628469 23.374810 -23.326099 14.471555 -4.198189 -36.494098 0.811594 19.773070 48.300251 34.648660 6.480067 -19.405615 0.936546 -39.839286 40.293217 -45.118330 -43.362005 -19.533415 1.184220 11.820386 12.150112 -16.527011 -16.014919 36.117158 0.812414 -29.924923 22.302868 -45.968676 -2.846314 -14.135331 1.587505 -17.020839 -32.322680 -39.517510 21.208478 -49.349476 0.813781 38.713100 -10.917258 -1.569374 -15.740254 43.445464 0.809980 -15.460753 -7.163580 39.303872 15.651742 -7.544564 4.369867 -37.206088 -21.480465 38.945079 -15.108072 -47.572369 0.814279 35.762719 31.848304 30.009859 -21.580966 -49.106798 0.812314 -32.457458 21.576341 -25.846177 0.766915 -29.567584 0.823018 4.439618 26.984789 -5.688684 15.788769 23.712442 0.812299 -5.376634 -26.502000 6.786125 -10.310257 24.231203 0.811203 29.737293 46.773173 34.980154 -29.177754 -23.211056 0.877663 35.958866 -26.837775 -10.934287 -25.100152 -28.551738 0.812274 -20.092812 -9.112476 24.901811 35.821081 15.803824 0.900291 5.258106 -18.309314 4.643842 -13.076086 -24.709083 0.810368 -0.834370 -15.009615 -17.686952 19.172706 -0.502369 1.593068 23.049211 -6.771823 -5.985101 26.527780 -19.727109 0.812743 42.576241 -48.711303 -34.079708 -35.680751 44.820353 0.814116 8.142674 -40.555923 35.156437 5.226886 -25.527581 0.851496 8.467241 -16.327189 10.479226 -36.669132 11.380447 0.746377 -0.079346 -36.884300 46.079199 5.996173 43.672826 0.818411 -7.753391 13.851553 17.244080 32.094316 17.661710 0.846122 -12.950973 -29.349646 7.517375 -25.444394 -39.306333 0.810227 1.334284 -31.266312 37.121508 -20.130484 -21.678033 0.902329 29.905396 -39.618144 -46.169893 5.697683 -36.118663 0.828034 10.289050 14.279674 -8.842681 28.257776 -25.620566 0.812849 20.729833 -11.489656 -32.177753 -7.943138 22.274198 0.870974 -25.824598 -27.344520 21.873452 12.914001 0.071707 4.704475 42.570479 3.417699 9.678064 -48.777854 6.370235 0.794661 -23.612094 -30.084272 26.440354 36.614180 32.604919 0.818466 25.221452 7.260241 35.877898 -29.440427 -38.439757 0.818710 -35.073988 -33.093320 -26.640474 28.390785 -21.700568 0.851763 0.389104 46.235265 -13.716124 -44.939841 45.228151 0.810776 -11.738463 -5.337661 -5.918995 43.337623 -22.430845 0.811442 -16.128706 49.356970 1.730609 -0.075492 9.381170 0.877580 -46.815166 -6.882186 22.918785 5.102745 40.717696 0.812762 -36.795136 -17.628609 -43.493331 39.680631 -35.140767 0.827404 -45.316473 -17.569611 44.721769 46.977435 -7.960669 1.143389 48.337160 -47.784652 -37.726695 8.058566 46.238448 0.814438 10.286573 -37.848766 10.518299 -39.864716 -1.645410 0.785428 48.145177 -13.137025 32.869913 6.551145 -43.471561 0.814375 -42.113425 3.587502 -15.946558 -23.711530 4.535441 0.444599 -36.662120 -18.933774 19.437171 -47.401915 -35.226065 0.813660 13.597927 -14.566587 15.931193 -33.420194 -10.919234 0.582541 31.512131 25.012678 -34.148084 -35.417747 -9.445486 0.184810 19.285766 44.942295 -9.061255 29.250750 -3.601235 0.890929 42.070576 32.363042 29.145159 48.288654 13.931607 0.909408 -6.718968 32.945807 18.830201 16.500890 47.779923 0.811053 -3.254179 20.049516 -48.687017 -18.169321 16.273891 1.341909 37.476418 43.355610 -44.282226 -28.908007 -4.651807 -0.728434 30.709735 9.287219 27.957634 -24.621407 -47.409787 0.812279 -9.727549 36.968739 -32.248944 -26.058632 -1.502082 -0.286912 -20.539631 -36.178555 -14.332339 -5.442900 -38.569960 0.811194 33.539412 47.215453 -15.094339 28.356942 -47.399494 0.810746 -18.151871 -23.837551 -16.252436 -40.333880 42.683490 0.811108 1.813857 -27.178530 -40.601419 4.760943 -26.202171 0.860421 29.017274 -20.351379 41.363063 -20.583986 46.023848 0.815524 -44.929881 -23.962675 -9.414659 28.167587 17.689881 0.819148 21.455039 30.817405 -12.422280 17.582688 38.945820 0.811106 0.277644 -3.013770 34.857632 -49.868965 40.533831 0.816802 -21.088283 -16.291150 -46.220986 -0.500240 40.938254 0.821033 -14.271299 -11.148939 -18.245153 -41.158470 -29.652448 0.816615 -41.786857 -34.124494 -2.999836 5.884830 -48.319922 0.809963 -35.444084 45.412324 30.003769 -30.347258 -43.120119 0.813950 26.297303 -48.831726 -48.503480 25.859574 -4.792823 3.165269 5.011042 -10.552505 8.416194 2.981422 20.884483 0.814889 -46.518887 15.411790 39.289903 -17.611001 35.693565 0.823996 32.443789 -37.685424 24.041559 23.929500 -25.466482 0.828678 -33.742610 -37.487115 -13.576517 21.142099 30.102312 0.812803 13.986109 3.434264 -49.306799 -17.536814 1.503169 -7.422885 22.787734 -7.492607 -38.168574 2.026832 31.064620 0.832731 35.015148 21.798707 -44.578827 42.315570 45.579509 0.816669 -27.104132 -17.965029 33.620439 -20.617521 -41.347522 0.815592 14.879363 -16.630942 9.608347 -6.631990 -23.250948 0.814056 -28.975262 32.215887 -26.500817 -20.897157 31.856396 0.820320 -28.649570 -17.893717 -20.403092 -2.601138 -4.960577 10.778070 23.793840 18.933267 -4.724344 33.010763 43.679057 0.810139 26.909559 33.838863 -30.207393 -11.113738 -38.064857 0.816497 0.533631 -13.246728 4.666967 -21.865687 35.501870 0.810119 -43.794236 -36.101539 -6.621705 39.975656 -42.853207 0.810084 -42.379337 19.487945 22.712698 -35.597761 -18.018070 0.921249 -39.294637 48.359040 8.399767 45.579661 -9.482137 0.827877 -9.568990 -16.118296 2.908932 -34.696977 -7.147529 0.811081 -16.362629 -44.436435 38.101052 49.172573 -24.197793 0.857341 41.733328 -33.929748 -34.201916 34.386371 -27.752028 0.836731 41.958657 -30.141131 37.436082 5.479892 -24.228556 0.868424 14.028087 -5.069547 39.331549 -32.976329 -7.272998 -0.059285 -9.887092 -40.127176 -30.188734 -33.841401 -22.613470 0.865957 12.862247 -2.769105 -21.102981 -21.358109 -2.767758 -0.025882 17.812488 26.054280 -5.482134 9.306870 14.575498 0.825104 47.036945 17.081042 43.580594 -34.897545 -20.405961 1.009849 -9.184643 20.223804 -22.707221 20.214289 1.774263 1.975680 11.472803 -44.701594 -30.251480 -27.934193 12.919542 2.048526 25.254032 6.296473 -14.431404 38.048600 -26.324051 0.815909 -30.364921 -48.490214 2.782348 -6.770502 -14.039909 0.800715 -32.966427 39.782999 16.631541 5.572591 -16.805785 0.865309 -49.802512 -19.167432 5.334017 -17.163128 -6.172588 0.721870 21.827490 -37.505029 47.333511 7.194834 -42.082728 0.820298 36.067622 48.755656 -19.005170 -39.046675 -46.815996 0.811207 -3.264404 -45.472479 -5.359541 46.154443 19.281622 0.809893 -7.027380 -44.998228 -44.199715 41.230226 -37.472048 0.823831 34.332579 -36.194754 -40.891114 43.721577 -5.266064 1.165270 -47.956815 27.804583 -35.124991 10.125393 33.190929 0.825035 35.184993 10.240466 42.154175 -45.260528 -31.064978 0.840343 -39.968045 5.384709 31.773660 -33.201374 35.743510 0.819215 43.392111 34.030706 47.598417 44.464455 34.541375 0.832334 -39.770939 -42.438930 -49.621185 6.076921 -30.385114 0.851623 -39.872970 -49.852249 43.981615 41.829458 7.285543 1.261675 49.863272 -29.698993 22.859216 -43.103502 -6.543628 0.692216 43.571285 -22.568020 -0.250824 -41.582424 23.697273 0.809153 -38.397013 16.565865 -29.676010 -44.967209 42.931434 0.813911 32.613880 25.558293 35.783656 -34.618115 -3.859832 0.236172 -7.911599 15.627307 -7.512810 12.588285 -4.153646 1.324828 -25.074431 31.405221 33.475750 25.147192 6.659012 1.943142 10.165934 -40.225693 39.904553 7.005245 36.919535 0.822284 8.770170 4.007174 -7.472401 -44.901836 -5.493297 0.798071 23.071660 -34.058776 45.156666 17.051808 -15.188734 1.324084 -24.044889 -35.282775 31.687233 10.648853 -2.956123 14.524877 -7.555215 -10.694618 -44.197213 21.894118 -11.264457 1.968388 -42.104050 -39.201299 -31.418013 31.684943 -46.080949 0.813090 -45.781996 16.487324 -9.342447 -48.218636 0.060450 0.794024 -4.230030 12.983384 45.854279 22.737006 -32.803754 0.836369 30.679555 -45.603915 36.353904 28.407502 -4.014127 1.822180 20.408563 7.259258 -49.822611 -13.711024 7.465588 35.532833 -2.153114 18.327854 34.482330 40.465054 2.989883 1.139918 33.039904 2.677356 19.777720 -25.902110 -29.770668 0.817425 -10.319081 35.761034 -19.881244 15.732288 -28.661157 0.819014 -0.727819 21.837915 -28.553609 43.398898 -27.685863 0.828531 44.500276 -4.204359 -37.488229 -47.126959 12.225746 0.476907 1.918217 -20.003955 49.398938 42.926771 6.260106 1.355914 30.363823 17.831278 49.479041 0.778629 -36.755417 0.829653 -38.935576 6.723206 -11.697577 -49.592441 -9.375011 0.787069 9.482350 -36.882536 41.672436 -2.693196 -28.266574 0.849100 25.489212 4.923258 21.460736 -20.632011 2.964174 -0.163227 18.278143 -38.576082 -12.946019 -1.491813 -5.610245 2.903744 8.533779 30.206063 37.240037 -7.603951 3.002882 -75.048524 45.323681 -29.129422 39.683493 25.421395 16.194752 1.086792 -27.918362 14.800654 -34.098318 26.865548 -0.421536 1.912086 14.628832 -20.554536 -31.621552 43.022026 -18.009456 0.895134 -19.882667 29.206724 30.390646 -48.597265 -44.984694 0.813435 -7.337031 29.952310 34.238685 47.700898 -44.590320 0.814303 -47.337584 28.404118 42.647656 3.228608 -44.047976 0.817118 25.807439 -40.168575 19.633139 -23.286201 -35.525025 0.813304 -39.008665 46.303601 34.281269 38.462842 -16.428345 0.958566 19.073472 20.000538 -34.090217 -34.229366 4.202551 0.270579 -26.549890 -6.575578 -40.500565 1.197213 24.053911 0.881248 32.990462 34.095627 -37.936688 -24.247523 -3.544275 -1.085138 48.006296 -3.554759 -16.350625 -36.235623 24.118721 0.822864 27.625457 10.322798 -2.148649 -7.709441 23.383238 0.810561 -34.303651 43.301204 -21.469430 20.451272 -0.538937 1.853574 17.853687 -38.057174 9.582121 -29.886784 -42.727078 0.810293 -8.051803 -34.558210 -30.951136 -20.912269 48.372870 0.812493 -32.106916 18.755077 -27.156716 -47.025698 -27.884818 0.830972 -40.614385 -10.747243 3.573108 -7.029139 -9.188603 0.821923 -0.299382 41.382594 -42.456841 37.634959 -0.917223 1.435717 49.137908 -31.200619 -3.600754 33.689549 15.535856 0.808714 9.033394 3.102747 -2.081230 -4.839001 0.723368 -0.222513 19.977754 0.843089 46.395792 -32.443616 16.747135 1.421446 31.834806 -30.401295 -26.381450 -7.537656 0.106477 -27.945524 28.751095 8.837957 34.080670 45.607459 46.304010 0.813642 5.656984 40.702903 -5.172052 -27.619705 18.079370 0.818731 -39.485901 -45.568489 -32.239937 -3.009995 33.017664 0.822379 0.532761 48.357898 15.172118 3.450774 4.354449 10.560881 49.147686 11.431939 6.794252 -25.362489 46.869151 0.810163 2.347262 -26.808488 -12.704799 -2.963600 -17.502943 0.832304 -13.096204 -5.886442 24.443566 7.626558 41.410209 0.812943 -49.634091 5.936400 -34.574065 -12.969304 -43.433948 0.814916 -28.262060 -41.012950 -12.083070 -42.711389 10.550380 0.775360 31.764404 -10.921201 49.940044 -6.888259 28.604508 0.864177 6.405443 4.785168 -16.334645 -21.180314 5.320157 0.231079 24.358278 21.372054 -18.016880 16.427269 -28.341003 0.817616 -33.751342 -37.599999 -34.478999 35.242331 42.674859 0.815062 -42.934174 13.239067 37.316328 -20.586477 7.056438 -3.730006 -20.255845 -29.607965 18.195912 -28.282605 -3.533638 0.557001 13.139087 43.114982 37.458462 -48.566543 -48.607015 0.813802 -30.985505 -45.618130 31.908579 21.932418 46.730948 0.813015 -44.479601 15.420496 19.010103 -46.498976 -36.205334 0.813309 -8.885153 -47.794669 -24.996852 -49.942815 -1.377679 0.723243 -20.406597 -17.687175 12.535707 23.884211 -41.086804 0.810741 12.649917 8.154935 -25.555078 13.857309 40.255076 0.813653 -12.639592 -36.956290 20.506976 36.667149 20.618666 0.836217 -19.750208 6.266119 0.250560 32.981032 25.616929 0.810135 20.946151 34.337152 8.042838 -16.648663 27.550488 0.812231 -28.646699 -26.779407 20.438889 17.793723 26.996210 0.820885 5.283767 44.606849 20.816022 25.776147 -2.164953 1.301972 -30.868217 7.658509 39.541887 -37.767301 8.219726 0.216425 -35.838003 -4.385264 45.636030 48.929846 21.533658 0.908216 -5.346142 -31.808713 -24.785461 -9.098998 -5.786840 17.479860 -46.150265 -34.938446 -14.592037 30.592719 35.465477 0.811723 -39.016519 23.041705 10.647145 21.046663 -33.370454 0.811504 8.382136 -27.501639 -33.011009 -1.242055 -28.436221 0.833890 -27.853321 -23.075437 -11.017514 14.589031 26.632081 0.813057 17.928515 7.930168 -15.406388 -13.572461 -15.133363 0.880125 -39.305982 38.601535 4.886412 12.152304 12.827164 0.835373 -40.226875 -39.944787 19.894669 26.032027 -10.439342 1.017102 -22.393305 -25.550050 -23.565582 34.878303 -48.096699 0.811457 -28.249501 -14.914996 -22.697547 -42.086278 -10.571667 0.653755 -32.967999 21.753223 38.268815 29.924602 -8.420743 1.624788 17.292033 32.141899 -39.518786 2.912336 39.793145 0.819205 4.796044 -22.294223 -45.263818 10.203382 48.091389 0.815543 -12.366252 -13.300917 30.259675 46.888923 -22.526078 0.848891 -47.961031 -17.100730 4.076389 17.494240 -30.842061 0.810084 -1.948386 -4.253693 34.824084 25.984497 -31.277435 0.828166 -6.568988 32.808422 -36.185752 -0.421947 -3.789864 94.925086 -6.166407 -36.696257 33.098434 23.417253 -49.956122 0.812503 8.754694 -4.084577 49.006250 8.018449 -18.760126 1.091437 -46.564764 1.335703 40.331527 -12.248047 6.191159 -34592.233863 28.323176 -21.254254 36.143269 4.316069 -21.415695 0.899539 20.596779 35.697863 30.924304 9.573442 -38.806140 0.816299 -26.298242 -34.978511 -38.054976 -3.631197 -2.303599 -2047.169668 25.041137 -19.078208 -16.651657 -14.912327 47.620613 0.810750 -42.774360 -40.263502 -2.239687 -12.941204 -5.576317 1.224927 -38.501752 -2.849577 -42.437508 2.058609 -3.108516 262.194376 43.832839 44.236607 -38.420720 34.049501 28.586478 0.841388 -43.853523 8.527001 21.558043 -38.046543 -23.728501 0.835128 -17.123452 -3.943756 37.714449 -37.976114 7.213859 0.306434 10.989560 32.950096 -49.948762 -9.684241 14.989439 1.547511 -29.255291 36.644988 4.551937 -20.019747 -33.234044 0.810542 39.631124 18.464923 18.696641 14.842233 -29.474977 0.816966 44.490034 4.953672 -31.435321 -14.340548 25.108388 0.846589 35.396890 10.810562 -11.854195 -45.106571 -49.423142 0.810365 -38.419622 -43.687682 -0.461328 -23.260288 -35.212665 0.809724 -20.852844 -30.183437 -5.117042 45.569650 -1.812315 0.811167 43.661620 37.845677 30.647693 -15.789973 19.660178 0.906154 43.790749 -37.989385 -9.494850 -15.401256 13.526229 0.840937 -13.277408 35.362292 -18.309047 21.633367 44.173661 0.811371 -17.680373 20.985841 36.066970 41.096532 10.837484 1.086536 31.780783 -36.045101 17.285499 -12.694774 -29.229149 0.815501 -25.727166 -8.667719 6.593392 13.286838 37.096597 0.810290 29.287920 8.719001 -48.743743 -10.684498 27.241086 0.873173 38.805077 -34.611210 40.302233 -17.047621 -34.830327 0.825905 27.427679 27.198297 -24.602347 -42.319289 -27.470679 0.827863 -19.964061 42.988619 -18.763799 -44.848303 -31.903519 0.815760 27.917592 -29.975621 1.001597 -21.722776 -49.357874 0.809953 37.033207 -40.296337 -34.819355 -31.234371 46.519460 0.813710 -4.345832 -6.673839 -19.215400 -9.975901 -3.829328 -8.372466 -42.744195 19.900566 -15.612901 -25.046675 -23.135249 0.823681 13.141002 27.858040 0.622148 -12.705475 -31.622741 0.810277 -12.509303 -47.395011 -47.048679 20.000992 26.294082 0.875675 -18.535125 -27.179975 40.279832 8.437164 13.461296 1.512100 11.436005 0.968242 16.115675 -25.039302 14.196723 0.945273 27.320973 -47.151104 25.751662 -38.858818 8.848839 0.584313 -23.004097 40.961453 39.983130 16.833119 -39.084168 0.820143 -41.855031 47.788965 16.145032 -34.620434 9.395609 0.642109 -10.945353 -32.967463 37.038109 -34.358606 -27.324249 0.847488 3.277967 -43.776467 19.410665 40.474533 -38.593107 0.812231 -20.552460 -32.421086 9.671985 -29.394129 -22.292112 0.814628 8.691502 6.656871 24.547555 46.455052 -31.279709 0.818530 -29.381300 33.491147 -37.900655 31.611039 -18.498396 0.959399 13.293567 48.346164 -15.939066 23.402336 -13.038279 0.916610 -20.692541 -2.895951 3.821518 1.746544 -15.516059 0.813188 -29.770776 14.173828 -30.207844 34.863280 21.232264 0.866688 -10.952557 43.169185 2.643681 -25.984762 -29.555678 0.810696 -39.111228 43.537325 -0.724505 17.913508 -30.621787 0.810487 2.042985 31.936807 23.580602 42.557006 -41.840182 0.812693 -40.372336 -0.146903 45.752065 -36.537113 19.953251 1.065406 -47.415425 -38.116004 27.691717 -21.742323 -17.013656 0.953050 -22.779867 -21.012621 -35.953754 14.301590 22.491915 0.882186 39.235643 -34.227195 18.291774 -41.365752 -20.794574 0.844871 9.963983 -27.004284 14.672710 38.200157 14.293871 0.843315 42.028276 40.008993 11.357207 32.641960 -18.273651 0.826289 41.734262 -7.232741 48.854127 8.275486 -37.015569 0.828494 33.844167 9.725749 -18.753279 -0.999103 28.345518 0.818089 -15.847088 15.525466 37.001298 -16.466818 34.654628 0.823980 -11.341177 10.843778 8.687736 21.344738 -34.796939 0.810818 -28.188815 18.659328 16.694086 27.226178 -24.353720 0.821537 13.530947 41.261347 17.873793 4.922670 6.649858 3.276714 8.759706 -23.887480 -20.118054 27.928466 -43.700081 0.811547 -12.668243 -19.494773 26.592773 2.591718 42.176376 0.813199 35.322420 36.072178 -46.103044 43.199346 43.907595 0.818288 -19.994993 35.407123 22.910208 4.290765 -38.519334 0.813632 20.502510 39.776822 -17.156874 -17.312465 -3.772891 -0.374847 24.665152 -12.746825 8.714153 -44.927086 37.513788 0.810515 47.784372 13.215103 -11.581893 13.245111 27.796956 0.813480 -28.461018 7.774633 34.494003 -25.350353 -35.616331 0.820916 31.116665 -4.295174 0.277476 -47.037029 -36.144524 0.809975 -12.826369 25.822489 -36.074757 -2.053463 16.215809 1.088074 -21.427492 11.105506 -42.778921 -3.235632 -14.235553 1.462770 -24.191307 34.933395 -10.362068 -5.366162 -41.593593 0.810637 8.061534 -48.654121 -4.638965 6.321297 -41.019159 0.809944 24.153297 -28.260156 22.924756 41.157584 5.066511 0.940910 31.674429 37.400542 -33.505533 22.483686 8.782846 1.922233 39.665794 -44.615404 -18.715050 -21.295656 9.092343 -4.430569 -46.416603 -3.695497 -12.370642 27.645818 -26.108881 0.814559 4.707031 43.669951 26.388772 0.237016 22.183042 0.853682 -35.060256 -20.178469 17.516934 -49.380809 -35.506502 0.812865 22.434054 -9.822231 9.433117 24.149497 17.432184 0.821600 38.862758 46.561906 -31.537611 -16.146009 -14.549686 1.170804 38.032293 -15.156724 -27.619934 46.020256 -2.379407 0.950701 -27.530744 29.316009 28.283865 34.732967 -6.733796 1.145852 23.896341 -31.371393 -47.423885 12.040974 -46.434078 0.816986 13.206785 30.273482 -48.776972 -15.486944 -40.158839 0.823466 -32.950583 8.953522 -15.374082 -0.109302 -31.874010 0.813423 38.193651 12.675851 33.359908 44.703942 -39.863647 0.816296 -30.306645 -34.506398 43.205452 31.828040 -30.835846 0.838907 37.833070 21.427060 -22.664190 20.435955 40.307358 0.812909 27.185119 -37.465833 27.863334 -18.622227 22.870031 0.850816 11.915548 13.564067 -33.563769 23.565465 16.799068 0.993736 19.646056 -20.825768 -49.489544 -8.740022 -7.964315 10.986005 37.095293 14.263714 2.269154 35.590792 18.759239 0.811337 -6.705124 49.387729 24.056810 37.602475 -7.976164 1.001447 -26.470706 -39.139053 15.068297 21.735212 -22.836152 0.820458 11.214704 17.073717 -1.029918 26.884819 -16.258293 0.812124 45.080377 7.227968 -47.552245 -2.369281 6.389002 20.766031 17.412271 0.952824 8.315022 2.528052 -32.457062 0.810917 -28.384759 -21.257247 39.767709 -35.163927 -15.010150 2.240171 45.568303 -17.301673 40.364046 46.705952 32.711072 0.829232 14.876380 32.234964 -15.393680 6.503508 39.173355 0.811600 -1.794659 -10.552834 14.032071 20.234272 -42.848654 0.810820 -35.518396 -13.229834 -37.990447 -25.310783 35.261060 0.823643 26.344784 48.928364 30.936732 25.626280 22.531141 0.863212 -1.261620 -5.112777 41.368480 -0.281506 -4.023631 95.824064 12.804191 35.865369 44.638593 -33.839794 4.755291 -0.154293 -17.119196 35.266328 47.133940 -32.105849 7.589329 -0.603508 -48.899752 -26.933206 24.987889 30.629810 -5.104595 1.183578 -26.490488 -4.530876 -8.500526 -48.210525 -37.338073 0.810545 24.886154 47.836144 -9.408875 -41.705883 36.160166 0.811063 -33.874975 0.904198 -49.903983 19.237916 42.827919 0.820777 44.915020 22.961515 -48.313371 -39.587954 -0.887407 0.119828 -11.387662 -37.076005 32.495094 -46.046916 29.140542 0.833383 -30.393578 17.019323 30.442325 41.236724 45.997529 0.813018 -21.922825 3.014059 44.283607 45.458788 -43.627805 0.817740 -23.229131 -44.597613 -41.661112 20.231027 34.581615 0.827311 -5.912986 21.749657 -9.772010 -18.931273 20.896262 0.818657 29.881453 -38.078089 -12.661393 -37.186571 49.221371 0.810338 -27.511739 -49.499100 5.314259 33.806253 22.875256 0.809772 -43.739621 -17.268587 -45.018197 -29.419425 -13.740575 2.733231 -33.267399 -13.687212 40.949023 -0.879925 3.546630 155.019073 26.170060 -30.563730 6.120132 0.284728 -6.082097 0.991983 -11.189929 3.233952 34.980448 16.814528 -23.370870 0.869152 -40.149082 -35.843169 -12.442766 2.195120 37.767513 0.810938 10.294046 45.642938 -8.743054 9.494300 44.453849 0.810399 -7.691248 -5.615019 -7.009912 -14.454810 -17.306292 0.817583 26.696728 39.057522 -30.095345 -44.788043 -41.091629 0.814888 47.419644 -46.787220 -47.186320 18.389904 -16.680875 1.198453 6.974258 19.744062 11.212989 -9.798569 8.958585 1.165998 -21.552076 48.755184 41.659394 -14.277962 43.099045 0.817476 -6.691164 35.918203 -29.918097 36.533492 -3.644259 1.151954 27.945117 -7.364743 -5.364172 -8.647981 -1.778113 0.124277 -43.630975 17.002972 11.814166 33.404667 48.518171 0.810395 -17.640833 -28.855786 -41.016468 -22.612274 8.742448 -6.305104 45.092569 -0.742115 2.829075 -0.326680 -15.292289 0.812002 -26.644181 -15.569150 -2.969308 44.344610 34.381948 0.809984 -0.880222 -39.192408 26.767749 -7.714180 -25.801033 0.832733 23.853515 -17.079348 -13.072175 11.742018 49.276300 0.810394 -13.213858 -18.298849 47.356671 25.217400 -29.221368 0.853830 -14.178228 48.039285 -3.436247 -47.588291 40.644475 0.810242 -43.740715 -5.935641 0.445617 9.179492 -1.257178 0.721798 24.456440 5.541426 41.917136 -16.351746 32.779101 0.832304 -19.489323 -47.401109 -6.563012 -20.834649 -21.979548 0.810740 40.622648 7.532552 19.595279 -14.095880 -36.209576 0.813304 -32.821164 -41.381142 11.675108 27.304339 3.866300 0.906021 -0.611389 38.735138 -5.773253 -3.155647 4.571886 2.904579 -41.808832 13.789299 22.071624 30.083912 45.499915 0.811680 7.420851 -46.312727 -3.323169 13.319256 0.389325 0.657038 -47.665966 38.244601 -20.942957 -16.767043 -23.958408 0.830775 33.833926 18.254673 22.818016 -45.459135 47.858317 0.811502 38.994181 -26.944508 -9.002488 14.980943 41.615067 0.810306 -22.598920 24.495469 -30.469996 -4.729689 -48.425028 0.812505 45.609547 20.905311 5.033635 -25.779770 -18.305926 0.815808 9.768701 41.130155 16.454725 -31.611672 -27.021842 0.818560 -1.198789 10.167248 -5.852924 -34.155378 -1.649361 0.791227 9.567018 -29.299769 16.494327 1.054237 -34.801172 0.812510 25.173252 -20.916889 -15.852751 -44.556944 -23.246704 0.825640 28.842672 -14.394950 43.406029 24.133749 15.073396 1.244719 46.316298 -14.978110 -38.414212 15.770917 -18.074668 1.004503 -42.990126 22.394245 49.254336 19.027724 5.276034 6.471450 35.113126 -22.432901 34.202831 0.459718 -5.061687 26.458455 -32.260189 -4.397961 -33.719169 7.757120 47.614349 0.813217 21.442941 49.350101 15.514105 -42.999342 7.568469 0.743873 -26.889487 -16.708921 25.955494 23.232318 -18.102922 0.892262 -36.006539 -4.744161 -34.532375 13.229074 -45.274284 0.814125 1.842560 -46.278143 -36.942857 9.088848 42.753671 0.815820 36.549909 31.644310 38.160036 -18.218477 15.567676 1.209628 -43.489668 -25.602593 40.029314 -36.856254 -33.705182 0.828483 -1.644167 -39.385064 -1.959486 -39.986018 -23.405340 0.808687 36.840613 -46.381393 -34.000141 26.623965 -48.845548 0.812874 -28.198225 -9.815723 37.166190 5.971010 -0.558626 118.437742 18.485667 14.055071 48.116395 -41.131168 -24.031843 0.931970 -48.359802 35.305344 38.457014 -11.738934 18.792674 0.987477 13.948507 -36.988321 -17.160761 -20.743905 47.404122 0.810780 43.181960 34.874447 -21.712299 -43.258406 47.669995 0.811414 23.590983 30.846425 -4.719108 -31.062681 -31.709602 0.810633 -35.604382 13.269158 -22.237930 48.535820 34.480673 0.814877 -16.018656 -4.839954 10.782042 25.376384 -48.841871 0.810289 21.090417 -13.150252 -23.573663 -28.862175 4.330673 0.387678 -37.398316 24.697361 -33.734966 -39.031920 -38.920933 0.817491 -29.783735 11.191471 46.224655 17.958075 6.931314 5.313842 24.827324 11.861816 17.668077 -26.467835 -16.905274 0.879816 30.742146 24.689823 20.650882 37.479484 -3.663165 0.962672 -36.195293 -17.622193 -5.718995 -35.479898 -47.347859 0.810061 34.858740 -20.370367 -26.895948 -21.284041 8.828411 -5.505260 24.372668 48.014158 -33.141749 17.721939 25.478383 0.848702 27.323364 37.579128 -27.112960 -6.377800 -24.282875 0.841895 16.887079 20.918454 46.302544 45.574270 9.562321 1.184154 22.228644 -44.815318 30.281430 2.867202 -16.248113 0.995522 27.478721 14.056989 -34.175624 19.060645 34.708326 0.821783 -0.006337 -41.799913 -28.444421 -25.057732 -25.267165 0.838835 -25.285714 -41.498371 2.771475 -15.040979 -9.858269 0.766659 33.692193 47.506466 -24.915007 -28.280463 21.339083 0.860262 -8.009491 33.623807 28.840166 -12.832349 -6.599680 61.080576 -47.114951 -38.607450 14.797772 -22.000871 -33.010885 0.812390 -8.396798 -35.753996 -19.582749 11.856983 22.035893 0.832114 14.400821 42.431100 22.444896 -14.104727 -16.116159 0.928952 22.141332 38.257694 -18.396152 -13.072849 45.161910 0.811276 -2.758903 9.795239 18.497454 -39.151213 35.007630 0.813497 -38.087876 -0.512619 18.806044 29.210141 6.252072 1.049980 -5.154062 11.337851 -22.994061 -1.631064 -26.777584 0.825208 -3.778879 -2.483903 34.362673 3.982757 -27.850338 0.838574 30.530822 48.769570 -11.578382 -12.822691 -39.375333 0.811011 -24.922701 30.853550 -1.489152 13.149934 -3.461463 0.979273 7.550983 -2.192931 21.754659 -42.377212 -24.368393 0.833579 -46.961514 18.546865 4.821852 -42.325439 25.718498 0.811378 4.043060 5.111472 -31.375611 4.563070 -44.468771 0.813683 -45.075668 -7.653780 -30.112274 -27.555447 24.490063 0.848329 11.158667 -21.475319 -7.328487 14.294813 3.372700 1.042869 -24.024884 -14.991224 -13.816290 -19.005923 -1.963959 0.328488 -13.069718 -8.638405 42.383948 37.707419 -43.053554 0.817505 15.525022 28.313088 38.668844 -7.593261 2.041281 -65.508326 16.971494 -9.067184 -15.280548 -24.509470 -14.467654 0.913524 2.845766 -42.193398 -30.979375 21.273589 -25.336601 0.842355 34.845128 -12.213037 48.570911 34.500855 -48.376091 0.816221 21.805306 42.483555 18.467607 -21.399242 -39.329664 0.812258 38.016044 34.920967 8.829053 -11.483341 -1.679816 -0.416445 -7.601075 -9.257635 2.648845 30.338481 -14.261167 0.810193 -26.413787 -20.378680 49.309349 14.946285 -46.429139 0.817582 17.995677 30.772012 -23.659043 30.585314 43.489566 0.812350 -22.106784 44.078698 38.321975 -30.751764 22.008356 0.913338 34.865988 -35.507406 -19.555944 38.745296 9.003727 0.908502 -3.467177 -47.682899 14.500158 37.802999 24.647007 0.816312 -31.725214 -32.834672 -8.923736 -26.389221 -34.371840 0.810610 -9.310924 11.885025 27.499236 -29.269861 -28.878991 0.826493 12.792471 -21.497849 48.179754 -36.627110 5.423551 -0.064913 -2.165111 4.845201 38.772348 37.505567 29.943937 0.835958 -45.382780 43.016356 -48.326521 -0.785165 -39.854381 0.823662 0.733390 36.845424 48.504371 -33.751246 9.862336 -0.817428 -41.082489 1.636999 -28.820493 -30.939893 -27.654102 0.831610 -2.929633 -18.400754 43.176552 -37.768238 -46.139717 0.816015 -13.943813 34.695986 -49.394302 34.885542 -4.743937 1.851728 -19.980042 18.204303 46.073149 -5.948068 -11.463623 2.630104 -13.161617 20.250417 42.943011 -24.474321 7.192454 -2.182092 -29.781881 40.108622 -19.314511 37.235588 -8.366204 0.936166 37.461379 13.955604 35.008489 -22.158617 6.145422 -1.663972 13.126865 -20.095640 9.865594 36.144533 33.028711 0.810997 -9.118091 22.061099 40.423849 35.554364 22.605797 0.890914 25.349732 35.416364 32.533594 46.780651 16.968241 0.905730 -14.082519 -22.062669 31.316672 24.873569 3.328418 1.942749 -49.335496 -9.402805 31.738762 -39.945224 42.560931 0.814518 -6.532385 29.881625 -7.550274 -46.800133 11.867478 0.791959 -4.577381 -0.879100 -14.267619 41.664914 11.304814 0.849887 -19.433842 46.785105 22.561959 -19.287327 -0.962563 -0.562451 32.638904 45.689775 44.559244 14.150493 -4.242679 12.155316 23.750698 -37.290219 35.026881 -29.642776 -0.241425 -0.031053 -37.734226 -20.587130 32.450483 -21.922826 -9.503447 -54.863291 10.630183 4.413244 -1.964189 -18.951970 -46.471539 0.810021 34.052123 -3.923978 -9.180036 -43.902170 -35.793770 0.810757 -16.812324 11.318254 23.963372 -38.652736 25.458992 0.832686 20.618682 -29.184432 -49.516183 13.156006 34.090494 0.836222 -41.833066 -21.005682 27.192677 8.059536 -41.660402 0.813511 -31.862659 33.282892 23.107027 39.876353 -45.568933 0.811859 -40.150527 9.070674 41.376655 28.915096 -38.698453 0.821074 2.210710 27.728313 38.611239 15.990152 20.321383 0.936612 4.393665 -42.888615 -31.685015 45.479006 -49.654829 0.812311 -15.964007 38.690467 -4.494519 -35.038328 -4.199739 0.790335 -17.233772 -28.440743 9.744445 -14.115109 7.621299 1.795771 40.796668 37.348901 -29.607948 40.471635 34.734894 0.818712 -16.503323 -43.100912 12.417749 -15.260363 15.903535 0.839926 -19.960749 -21.546807 -38.459730 2.082345 -48.324776 0.813916 -28.963902 -4.792455 -38.209486 -1.011309 42.791837 0.816334 29.067218 21.187374 -1.053497 -33.299907 -29.558184 0.810303 26.319767 -2.926085 33.883377 -21.425993 28.445764 0.835833 15.349060 9.014529 -11.341310 44.462834 -39.043126 0.810820 -21.711932 -48.502157 -25.874718 24.143880 -10.011804 1.246010 15.973183 46.273038 -48.570108 5.706632 35.159563 0.832799 31.563805 30.062416 -6.276487 -33.364935 29.878226 0.811130 49.104538 16.773504 32.084250 38.532401 34.463794 0.820416 11.890166 -15.109820 -46.042058 10.049907 -28.459402 0.856834 -48.299436 4.642350 44.504261 6.270716 7.738983 8.452822 13.369918 -13.625024 -12.685635 15.454416 31.739877 0.812175 -32.370212 21.953548 13.139913 48.081683 -0.848676 0.840708 -5.420340 16.521257 49.180408 -11.099011 -14.194353 1.706840 0.561187 -37.720612 3.258267 -30.976629 10.533423 0.828473 -43.289697 -7.773606 -29.190433 -4.966763 8.639670 3.065842 -3.711322 -12.904065 -31.429256 17.233054 18.811428 0.920400 -34.445605 -46.998172 -0.179741 -2.642102 1.312577 39.527321 -3.480679 0.364075 44.470832 26.294126 5.291055 2.691482 1.632985 35.803535 -32.562693 47.814360 -9.912061 0.972791 13.950672 -4.701779 12.433426 -29.770866 4.099537 0.703970 7.800072 -7.218399 15.057063 -17.815681 27.219187 0.815943 2.133197 44.153148 -22.114570 46.335429 -46.873745 0.811541 6.261491 -36.136897 -18.694723 -41.732387 -32.848895 0.814289 -21.819835 26.628575 -4.543588 30.361445 -42.445260 0.810171 16.408870 -5.871161 -32.146255 31.312026 -49.836389 0.812424 13.834771 39.611258 47.098623 -16.258185 31.261446 0.844391 5.161997 -13.194397 -24.913714 -31.517307 8.410453 0.364871 -25.275466 41.093355 13.702786 -5.384474 30.137936 0.813803 -6.170765 -46.469594 39.989629 48.076315 -38.003882 0.820513 45.022471 4.436044 -7.013965 16.745472 -4.095781 0.998313 -13.510440 37.298985 -45.169514 31.066186 9.227290 1.773977 -3.605141 -15.004262 -8.908536 -10.595197 33.532758 0.810800 41.402426 -27.251192 18.608438 -28.777175 -33.605656 0.813808 -30.422263 -6.333757 -32.723076 -36.323817 23.436434 0.869049 -39.005143 -42.541101 35.742891 -21.657938 -41.830674 0.815964 -0.808680 -49.130137 -14.541539 -23.730957 44.401792 0.810672 4.669700 -40.044689 25.700432 43.835316 -25.452826 0.828972 21.097779 -34.806654 33.018781 -22.201050 6.471817 -1.412554 19.935628 15.308623 -33.152263 -39.399554 -10.863882 0.347894 -43.835294 24.687897 12.360259 36.963135 -4.322095 0.870550 43.418563 -10.843759 10.712819 -28.178346 0.637899 0.722406 -34.006113 37.979345 28.355786 -4.086061 -36.255901 0.816998 14.352129 -10.807444 44.948376 -42.122501 -18.030864 1.449370 11.442857 7.684099 39.263699 -47.003511 15.096572 0.085693 -34.996081 15.808147 18.949233 -12.203433 2.098370 -2.946627 -44.091364 -33.112053 32.712266 -33.848501 -49.858857 0.812485 -9.171034 15.354736 31.754431 47.428601 31.957714 0.823161 -15.001145 -45.367779 28.188626 -26.870835 24.030856 0.845049 34.185509 -24.447528 -7.449973 9.578347 37.392815 0.810292 21.182187 -20.769107 27.823893 48.092982 -45.485157 0.812537 -35.433875 49.669998 45.793924 -9.033685 -6.885164 19.547943 34.686712 10.617726 32.335585 49.298297 -9.879624 0.955649 5.351073 -19.386635 18.427086 -18.996857 -18.015920 0.857688 34.137285 -43.921280 -42.105956 -36.336942 -42.706641 0.817732 -1.292079 45.482665 -45.439726 -17.571352 -39.994683 0.821959 -10.210357 15.977806 -15.604961 43.313222 -48.395374 0.810668 -39.196514 38.735986 34.842638 18.750867 -30.481190 0.830814 -30.221350 12.457848 0.587096 3.606754 40.618377 0.810046 25.585841 39.624744 8.197970 38.083307 19.995297 0.816690 -15.025931 9.151510 1.900321 -34.539436 15.079082 0.817557 30.640033 -38.041296 -19.994499 -7.098344 -42.931645 0.811607 42.092450 -10.142519 -23.900653 -3.379366 1.136177 -280.968169 -13.932994 -39.317937 14.994617 10.659736 23.311798 0.819774 -8.864748 20.674573 -3.382103 32.554115 -46.846802 0.810076 7.654195 -47.190746 -34.710035 -38.823013 -41.870365 0.815652 -5.062847 41.086023 34.778363 36.176653 -23.224600 0.864847 20.814474 23.800181 -46.805616 49.691131 35.145646 0.829812 3.743477 -5.567782 -9.270021 42.907407 -17.832886 0.817295 25.702820 43.513434 -28.307910 -14.765017 34.897908 0.818177 35.104380 48.405936 34.614787 31.297453 23.279645 0.866375 -0.435178 -34.730905 -44.258289 6.915990 45.385775 0.816651 -12.472322 4.304344 -33.162401 -25.167591 -10.967080 10.192336 -13.122430 -21.664593 -27.737451 42.565801 -29.477013 0.823478 -7.072163 -16.653294 42.933705 21.757273 14.318847 1.341331 -16.292986 -5.107467 -11.055334 45.587036 -8.647488 0.831286 -0.442083 -16.191773 -0.975507 -5.383249 12.620755 0.804316 6.486188 -42.994235 41.142299 -8.817542 22.692156 0.901688 19.821936 6.587797 9.550030 18.922530 -20.722579 0.817342 -24.205107 -33.899721 -18.859046 46.030190 -6.561812 0.870795 32.800030 34.882887 18.159288 -5.393217 -34.047785 0.813830 27.683937 -22.768619 -40.845338 -0.759305 -24.872423 0.872980 -5.665478 40.491049 -6.723559 -10.782872 -28.462589 0.811606 2.448082 -46.380748 -23.329241 -3.853664 18.030564 0.880845 27.792628 22.723321 -19.729095 -37.812201 45.512308 0.811388 16.596814 32.373632 36.593295 48.374585 14.798221 0.953220 -24.439375 -47.812805 -27.980239 24.897009 -16.824507 0.928413 4.464353 44.828354 -18.632353 -3.752373 -38.478843 0.812508 6.114005 -48.833238 -28.988436 -37.405906 -4.660279 0.525517 16.491759 -26.178198 -25.830176 47.840281 -44.036731 0.812462 -48.008355 38.204398 -32.913163 -49.171680 -27.950631 0.841376 4.518568 -1.385058 -8.527841 36.268946 -46.868137 0.810215 37.932194 47.695599 10.603362 5.793765 -34.200956 0.811537 17.904323 23.055013 36.491775 -11.860069 11.381772 2.081396 10.899669 -0.863177 25.974501 26.415123 17.630908 0.898248 37.885937 -5.844411 15.896023 33.527185 19.841730 0.829592 -2.051593 13.455450 -11.900722 29.949491 22.987834 0.817301 -43.802831 -47.940639 26.870964 44.256489 49.058150 0.811717 31.092909 40.906210 22.851044 -16.496044 -1.892052 -1.428731 24.818063 25.602286 -9.553696 -49.579717 -1.658259 0.793797 15.729884 -45.235192 38.015851 -16.154033 48.204619 0.813823 7.585834 19.479917 -49.194353 31.426162 -2.906502 2.234629 41.809207 39.989533 -24.574671 -35.119520 -2.918053 0.544131 31.388493 34.996643 -30.546525 -16.693591 11.284854 1.925944 -15.785059 -29.116838 -32.041028 17.967291 -48.207148 0.812717 -41.463434 -2.869582 37.153748 -39.744100 44.229241 0.815322 9.944417 36.723636 -33.134465 47.396493 -4.355393 1.001309 -47.307191 -0.943129 2.386150 34.763943 -36.936152 0.810039 46.504260 21.499696 42.614263 -11.449470 4.114531 -28.382718 -11.057926 -32.808481 41.345482 44.783943 -13.697371 1.039833 -39.341897 -3.365121 -6.807007 -48.892103 -10.058822 0.802279 -4.257697 18.772214 22.223308 -18.380946 39.219803 0.813127 -2.001357 2.841360 -22.314256 -1.227032 -10.349474 1.445264 -41.353369 11.946352 -41.244282 8.868733 12.731771 1.738605 -1.925676 42.514374 29.844770 44.044743 0.528165 1.006031 -19.184583 -23.237889 -32.710208 8.368346 -49.430057 0.812575 45.995652 -36.776960 11.462020 49.203834 8.172466 0.825618 -28.421648 -3.034194 35.172170 -25.242526 6.187543 -0.769362 29.956289 -43.540003 -43.921974 12.694509 -19.580982 0.996376 32.502788 -9.824586 43.949866 -4.996904 -26.798694 0.864429 -44.238400 45.911881 -8.373688 1.836240 3.503772 10.244403 -30.482000 2.080188 6.814651 49.267667 35.340451 0.810421 5.276728 -48.633644 -43.818256 48.951022 6.222732 1.098676 39.718670 35.699245 -38.765668 -3.109806 -7.540062 7.747791 -11.607817 5.676799 11.217674 -17.821705 32.289314 0.811746 -36.811206 9.743217 -11.371295 -41.420649 3.927785 0.775026 -49.795455 17.872864 -26.326157 -10.974479 28.429626 0.825760 40.981478 14.820605 -44.993897 -16.849391 -20.234701 0.991059 27.969181 27.725364 -47.913208 -27.009748 27.070219 0.874733 -40.431230 1.635499 13.423384 -49.519482 -23.023218 0.824378 -22.522934 30.050830 -46.757322 34.448097 -12.233830 1.393772 -40.925600 16.157349 14.321319 -38.871462 -48.489974 0.810574 -2.586985 48.921441 -13.937925 -43.803088 43.902162 0.810907 -24.995554 0.662407 -3.092791 47.748441 29.240192 0.810178 -20.777364 -4.818486 38.017848 -0.678713 34.063295 0.825618 -42.939723 30.412430 16.513402 39.963325 30.489648 0.814667 -21.821967 -40.225882 -18.162120 36.560916 -38.699384 0.811936 38.309678 47.856798 17.826088 39.544018 -27.810003 0.817872 43.903813 -35.042235 33.584960 30.794456 -27.456419 0.837220 27.628802 13.500376 -7.968371 -33.039111 26.844463 0.812155 12.887421 3.665640 -33.568794 -38.635840 -30.375498 0.830449 -30.165879 -35.015052 47.126164 49.762575 7.261780 1.126092 1.596781 -49.652836 19.321229 48.895606 16.223824 0.840468 3.195883 39.813281 47.472918 10.644907 1.707233 34.961681 -29.494748 -49.033464 12.224760 -34.145252 -30.490325 0.812045 -24.645550 -32.020575 0.229534 -18.852857 44.071354 0.809918 -28.166396 43.823686 19.540733 -17.938966 -34.450656 0.814269 -8.084612 5.957376 29.633815 7.515581 20.153636 0.887801 -29.766409 -30.598623 -33.456231 47.705272 24.223110 0.847163 44.457193 -15.174424 42.355442 28.979292 -42.141624 0.818196 -39.488451 13.665121 -36.329035 1.478813 3.445078 135.877892 -13.824407 41.945609 18.010305 10.633213 -4.954603 4.093701 -6.383564 -9.839292 -14.452290 18.391895 45.736696 0.810673 3.917230 42.731246 44.502807 -40.186199 -33.306250 0.834852 29.851107 33.953041 -10.255834 38.478692 23.373246 0.815417 -40.761324 0.240311 -32.217644 -48.747923 36.756841 0.818736 -35.518170 4.862596 8.088356 49.268106 25.732424 0.811874 3.767391 -26.950194 46.273267 32.258356 -29.544896 0.849245 -4.277481 -22.291799 -34.045447 -5.829748 46.583594 0.813543 -38.205712 42.514466 22.890631 -26.270088 -19.850801 0.867204 -35.047302 16.727717 14.164869 -24.746960 -46.428627 0.810666 -22.534019 -13.467389 1.809313 27.380706 -38.582870 0.809963 -10.650715 -19.558152 -43.517590 -14.339499 -17.787485 1.090533 -35.564083 39.188429 20.108418 -23.078581 45.547305 0.811462 -12.740579 -41.471958 -49.345242 -0.149341 -8.416745 7.803784 1.070492 -16.922967 -48.615965 -46.573598 8.035914 0.362559 25.219797 46.715626 -45.776278 -36.193210 -28.209406 0.862083 15.482311 -49.128662 -4.440838 -24.465422 -5.341382 0.827429 -25.092783 9.009875 -46.439262 -36.570940 24.268805 0.912452 27.273372 26.002457 35.527019 -14.552362 -45.049263 0.814532 -9.581043 -17.600797 34.755453 -28.451875 5.773067 -0.197268 -28.959633 36.596649 -20.645347 0.809245 -25.210302 0.826265 33.265151 -20.727683 20.753669 29.626286 -47.746079 0.811165 -2.955659 -44.190655 -34.894269 -6.879486 -27.489000 0.840352 43.248163 35.123472 28.552379 -13.625035 14.338968 1.113788 22.629455 33.820320 -12.358942 -24.403280 9.974232 -0.668337 20.477709 -43.438974 -15.951628 0.759393 -44.073371 0.810871 -11.389607 -41.043661 46.012375 5.696476 -29.905716 0.848086 -45.452446 -1.505180 3.263424 -22.871831 -9.480563 0.715808 -20.031459 1.697106 -47.932036 25.646642 -39.669687 0.823459 42.235460 49.197728 -20.486374 39.829289 -23.929165 0.827434 -38.242850 -40.979182 -36.596305 0.132988 -33.279075 0.825595 -29.533333 48.229690 -39.594668 39.927885 -42.269135 0.817193 -5.011552 -19.941393 19.162669 -0.573749 27.734846 0.818721 -39.955981 1.616694 13.043789 -11.840871 -4.954553 -2.630664 13.902413 7.759895 28.901421 29.748973 -37.224754 0.816313 -3.124566 -35.718265 9.164221 0.222269 -35.788594 0.810535 -2.760938 -35.673454 -11.160686 -33.909530 -14.559230 0.916948 -16.916139 -25.476159 0.054666 -46.977183 -1.624102 0.812985 37.708979 -15.533067 -12.193228 1.492495 -28.857591 0.812908 9.420809 -27.869561 6.192468 -28.308533 -18.533792 0.812887 17.072863 21.458824 46.404996 36.715614 32.471585 0.837451 -0.876458 12.823663 21.754818 -40.827092 -29.300525 0.820291 -9.499050 26.180231 10.071259 -18.066854 30.337975 0.812058 16.864037 5.993809 -36.277966 41.222828 25.928189 0.847888 -41.002993 -18.112853 12.552339 3.180827 -42.081347 0.810676 18.883437 14.081422 40.968794 46.489314 -10.708170 1.073113 14.908265 -9.751882 -34.218258 37.004110 -11.162226 1.112833 -7.910330 -26.734338 -41.806579 -22.488983 42.108835 0.818046 -46.592782 38.546905 39.331610 31.942247 27.529454 0.848188 -30.847935 10.424564 -30.133754 -12.066117 -25.035360 0.844081 15.570924 25.499222 48.349374 -23.201726 -25.883336 0.888232 -25.759401 23.467796 -2.162426 -2.535028 -21.443960 0.811401 15.784464 -27.167151 -31.442368 34.948242 28.102018 0.831511 -18.427431 -49.483297 10.306458 -35.869199 40.335880 0.810409 9.817301 -30.490623 -18.762294 -41.101086 -27.783486 0.818951 30.198104 6.145521 -38.357789 -24.009933 -23.245997 0.886572 -16.077705 -16.809884 -28.702679 6.104425 -35.248993 0.817674 19.399816 -7.010706 21.158103 24.679461 -34.679312 0.814429 35.991794 49.999849 -20.512749 -39.594563 21.251875 0.852903 -19.623550 -3.408202 3.248601 -11.696368 29.032419 0.810170 5.928637 -44.768624 27.724069 -8.028212 -9.863357 2.000132 47.101587 -45.692275 24.973671 44.337461 19.180360 0.852177 -47.776501 -2.697885 34.515789 -40.510113 3.117827 0.483315 -21.315604 -10.471044 48.053522 38.007711 3.219493 1.572302 -47.695200 36.634812 14.471042 26.602804 -37.492888 0.811712 -21.775564 -4.988386 49.303067 33.504875 46.337871 0.817627 40.009595 -44.497770 30.160921 27.891367 -22.712293 0.855265 0.057909 49.909253 -48.255526 -10.681218 35.399006 0.831944 44.911246 -1.091191 -27.323836 -8.023298 -44.071923 0.812883 -15.112009 1.534350 -17.146023 0.822083 -12.838070 0.968339 -45.355995 12.148530 37.520478 20.247118 38.887188 0.819001 29.405129 -26.260803 -47.755548 44.387134 9.815522 1.226382 34.986899 10.522558 16.078013 17.262904 -48.572214 0.810695 -49.592501 32.529585 36.339230 -24.584400 1.852678 -0.837954 -31.938138 32.832978 39.988007 -8.076471 -45.444379 0.815542 47.321944 2.602097 -16.673736 -19.604430 -33.573935 0.813225 31.009569 23.855528 12.198338 -16.232023 -27.325121 0.814334 -37.497776 38.765121 -24.796191 -7.694966 -12.490377 1.199637 13.316322 -0.561187 10.843228 -5.870849 26.434584 0.813501 26.191588 29.711252 48.916306 37.669228 47.906508 0.816625 -21.167685 37.062022 -33.415267 35.245272 2.149332 1.284784 47.120273 45.637654 15.836586 23.319768 -29.281873 0.815501 34.882477 -33.652027 38.518080 32.809902 29.382850 0.837538 0.840932 -34.702832 -31.023056 4.181812 -42.046554 0.814382 38.382358 2.561060 24.145158 -45.728476 38.865588 0.813866 -42.551562 -49.338847 -2.463658 -2.771223 -34.480517 0.809723 18.773679 40.497829 -46.273483 8.211488 41.520627 0.820635 18.366503 -42.401283 49.313198 7.009825 -13.211136 1.950078 37.801262 44.346672 -24.998265 20.362410 13.837920 1.029757 -8.404070 -39.832009 45.278034 37.050848 -41.768399 0.819566 -45.832682 23.423575 -30.026994 -6.849057 5.952858 14.200469 40.675554 19.594242 4.958770 35.164049 31.338492 0.810549 -0.677667 38.363267 -46.347374 39.075334 -9.351322 1.382286 -13.242206 -42.284773 -39.138922 -4.879946 -16.635229 1.096630 -46.917338 14.151405 19.858392 -27.250337 -17.323502 0.889693 -21.416709 19.004928 45.660378 -41.133241 -48.547632 0.815561 30.334169 13.100693 -29.095980 -41.626186 49.854074 0.812038 49.096780 -39.637229 21.319453 -18.315358 10.999912 1.451786 -3.127358 -29.011873 3.897370 36.722370 -16.026061 0.809427 35.542591 -19.748954 -32.512577 -29.481063 -22.495194 0.874609 41.449312 -26.533904 16.768896 -5.040905 -6.509204 3.079676 -49.770161 -25.229720 -2.087827 -41.752981 37.586982 0.809906 -30.678042 -20.978957 -10.478150 -47.671341 -25.391021 0.814246 45.528522 25.844408 -47.466100 19.814472 -42.668228 0.819968 -32.385313 -32.825925 4.187276 -39.247562 13.517069 0.814234 -2.329339 -39.138431 -18.823059 -45.346972 -10.018802 0.735836 -12.199101 -22.045379 6.734073 25.558582 4.670729 0.842307 -44.881452 46.248857 16.411696 -20.570633 18.342791 0.851195 -0.149524 -13.679202 34.239693 24.775066 -46.905664 0.813495 -37.967838 -18.557505 49.845316 -6.301519 48.177150 0.816691 -21.396900 -47.165470 39.641424 37.587935 -0.378678 1.338497 -17.338519 25.728927 -15.414872 34.384764 -9.884542 0.898297 20.920678 -18.058760 16.917469 36.338958 19.321078 0.832489 -21.617143 26.629262 -25.552242 -29.810269 -5.935284 0.319900 -36.106492 40.010865 49.537672 6.895173 17.456136 1.198424 43.578817 11.481463 15.491093 -34.918989 4.537260 0.702670 -43.879186 38.408814 41.013964 46.047185 -33.157152 0.829350 -33.423178 -24.960769 45.033215 34.641772 -30.837229 0.841279 5.569103 8.161347 23.453083 -28.293823 -46.821419 0.811692 12.176314 0.825914 -43.035695 13.050012 -12.632944 1.801334 28.282359 41.363250 -43.150580 3.674716 -30.826805 0.840506 -18.360266 -18.663555 13.463300 -7.996482 17.919558 0.833966 12.377686 34.364179 -20.984559 -14.928046 34.456519 0.814801 41.068059 -12.286602 9.845307 -22.380763 -3.962843 0.661657 -7.332221 17.515832 -32.986964 38.597046 -48.107303 0.812968 25.999170 -6.379636 48.125864 -20.354559 -8.478447 -20.535144 -46.503472 31.143976 24.297352 -10.150505 -31.389086 0.819186 15.346119 -7.004672 5.195177 -26.542695 28.802852 0.810483 18.597586 -4.129297 47.575197 -4.229937 48.787532 0.815818 -15.841741 -11.492877 -33.650091 39.836410 -24.507272 0.849868 7.056176 10.544769 -18.621237 -2.262714 -11.979603 1.060563 37.451378 -12.660650 0.140860 -0.965165 -9.425567 0.794444 -47.415485 3.722164 26.858908 43.758170 5.921223 0.964620 46.503728 26.341666 40.870501 15.380017 -0.180330 9.265880 -24.162274 33.216533 -14.834071 -12.639643 37.716780 0.811746 16.435392 -23.171473 -46.780176 -19.802695 47.021689 0.816489 19.262988 -18.644318 45.937924 31.598103 -29.428305 0.849455 -47.675130 -45.399505 -5.134839 1.712269 10.856330 0.805908 -5.488478 48.840429 -17.139337 -2.607766 6.121798 4.232085 37.574218 28.540330 16.138960 33.450895 36.188172 0.812335 32.983980 2.179514 5.938440 -48.827119 25.253281 0.811707 -24.725358 -36.015445 -37.439006 4.963152 -13.046630 1.500948 0.122444 31.799523 -29.945984 -32.926421 15.100341 1.381093 -45.371979 22.616331 -39.117739 -2.594725 -24.726278 0.870276 -11.601452 -40.438152 -48.520236 39.290790 1.975954 1.509041 6.347971 -42.510089 -21.417687 24.495875 -42.764700 0.811870 30.555490 -4.861719 1.816201 5.883359 -27.588361 0.810001 4.412019 45.001964 29.259071 -4.285866 -46.272398 0.812818 16.557554 15.214337 -12.087675 1.577482 -32.585171 0.812021 46.986561 13.269100 12.645040 30.280397 21.072892 0.821213 21.307020 -30.802929 43.687827 29.531897 42.614319 0.818296 -39.266691 -15.555351 -38.388776 -41.882402 -26.233534 0.861430 -28.547558 -1.594433 31.466578 -4.897668 -18.606540 0.930412 -6.174744 44.453235 28.962388 -34.398802 49.413715 0.812135 16.913674 48.253783 -12.451175 -6.933994 36.509885 0.811536 -45.071975 40.004542 -42.606791 7.989733 -46.328299 0.815829 -22.338854 -28.977735 -15.537584 -16.396306 38.185265 0.811526 39.744119 -33.459935 21.848041 -40.144932 -35.316278 0.814412 -31.375630 -44.744757 -9.584367 -7.861472 17.228740 0.820310 7.210093 9.128336 1.226048 32.137594 -1.331659 0.814166 32.669436 -24.204563 49.402007 9.931338 34.147089 0.835984 28.425540 -42.975209 -28.256408 26.577372 42.653854 0.813375 3.127310 -38.099048 -32.533668 -37.325862 -41.924384 0.814942 43.412601 45.474541 -6.404714 38.212393 41.513754 0.810345 -18.221538 -25.963544 15.041187 34.596909 -33.443436 0.812372 30.864252 13.516124 8.618328 14.548629 -11.718734 0.866949 37.765955 42.303417 -41.001104 -14.997901 -27.089966 0.856507 13.406783 -24.369212 -15.770657 18.630975 42.411004 0.811046 -38.548132 9.027504 36.154385 -12.840830 48.204286 0.813547 -22.951311 -0.995991 20.863354 32.125722 0.813073 1.048895 -2.566660 42.610466 23.689324 16.545378 -41.724939 0.812833 -21.052153 -28.988175 32.413772 42.076044 -26.611395 0.836799 -28.168511 -41.241564 -6.596630 -20.963102 -44.001079 0.810062 -29.081944 0.262217 18.963045 35.009164 19.383546 0.839890 41.912547 -8.847970 18.939625 28.799062 1.669708 1.079090 -29.019779 -5.989404 28.990496 1.149111 12.574152 1.297826 22.362214 14.220032 -1.882337 -31.476793 46.006390 0.810043 5.005508 11.825957 -31.621185 -25.741825 9.010719 -1.273068 -34.050268 -7.629756 -34.563027 35.657073 -11.326065 1.138942 41.692497 -46.082266 37.884490 25.999019 23.107615 0.878448 -41.468698 -49.102684 21.898003 0.088326 -15.607424 0.919783 -37.399016 -31.118086 24.539551 20.577494 -29.280603 0.821425 47.166965 13.593949 25.904439 22.905311 -29.155625 0.823543 41.912657 -35.049577 -48.988969 31.460374 -26.977088 0.872483 -24.160204 -7.045763 4.177123 46.585132 8.598291 0.812153 -30.613526 -49.043221 -9.674803 24.086190 -48.189608 0.810164 -23.256336 11.541947 18.798869 -2.403871 3.025231 73.280166 10.363783 40.096041 -4.069182 -47.994041 6.502587 0.802716 18.761868 42.667724 49.877579 -24.253021 34.961006 0.834746 24.484711 -27.240638 32.628026 -34.655799 -0.495309 0.351806 -4.803474 -13.874618 -18.090320 -29.202662 14.209659 1.032418 -3.239993 -31.239967 -24.784300 14.473400 42.120973 0.812747 -34.887721 -9.400542 -9.738541 18.250719 -48.915119 0.810225 -22.752203 -42.792244 -8.891303 -1.903223 -5.381658 1.694062 -16.598136 34.878681 36.595671 15.513565 -11.481256 1.785542 31.354040 3.025559 43.315143 -41.892380 -46.027438 0.816183 4.484523 9.518773 -15.724687 -47.275459 -34.874213 0.812651 0.449585 -16.500356 -3.890090 28.483549 -15.185331 0.810841 -5.349762 20.080155 -12.224054 -22.836332 -15.234344 0.863542 -6.215202 -23.199587 -34.707724 -44.213216 18.333138 1.205634 22.711464 0.930459 33.426888 10.266742 -5.945413 8.516114 -10.514572 3.789866 1.243954 -8.525959 -38.413304 0.810027 14.504342 47.863466 -49.152125 12.195208 -18.949076 1.083734 -38.767907 22.295609 -47.702694 -36.665466 1.787180 -0.037075 -4.545059 9.663247 -28.086176 36.604188 -11.825985 1.007213 -2.130361 37.485343 30.996677 13.294369 -41.410193 0.814885 -34.117252 46.983186 -18.785096 -27.886406 45.941910 0.811262 -21.304645 10.621815 -49.832862 -15.676916 48.179752 0.816742 -12.826124 -42.878175 17.780218 24.512391 47.566981 0.810817 44.558649 29.854870 24.311148 49.274698 -34.993723 0.815584 27.755619 -28.172346 -4.732368 -12.170863 -33.699702 0.810041 -28.486736 -8.164705 42.352582 13.167694 -13.486929 1.556808 -35.001015 15.807927 -44.640723 38.218612 10.214013 1.335869 -24.420318 -26.522980 -33.448927 -4.426640 12.780962 1.413226 -9.698618 -27.213728 35.426135 40.384663 -13.343485 1.023686 -5.477940 43.296109 37.229751 -7.423055 26.883183 0.849522 -5.506745 -40.746130 -28.762855 -27.867762 -42.438670 0.813616 -23.666909 -35.873494 38.409785 6.513293 -33.621439 0.826558 1.969101 38.066467 40.610533 -7.858767 45.355909 0.815770 46.725829 -4.403179 13.429206 -48.147620 -32.586506 0.812491 -4.659301 48.522568 -26.176143 -31.982999 -40.209160 0.814043 -20.482168 12.506905 -35.640654 36.872880 42.399684 0.815697 29.188437 -37.878229 42.640842 -13.777852 -43.060322 0.817608 44.401404 -25.253848 -32.473756 6.069732 38.525859 0.816867 23.192012 -43.265299 -3.658405 -26.722252 45.144366 0.809946 -6.496203 23.877150 -24.110252 -3.878078 25.199101 0.831598 43.166210 5.593113 21.059266 -17.306942 -10.064623 1.876512 -1.943602 19.018096 -6.200180 -1.127323 -43.003711 0.810218 -5.478372 -10.320107 24.502094 38.161404 -42.436275 0.812632 48.368992 -2.858148 -48.479816 7.301019 -21.749712 0.962795 3.765562 4.243447 24.606314 -46.195291 14.065348 0.586748 41.816143 -33.299643 -25.390510 7.840039 1.467381 24.071908 -44.033250 23.879497 41.672200 41.678659 26.955372 0.853614 49.821738 -24.227469 -40.405387 -26.366263 20.835203 0.945615 24.223448 -4.679903 -48.509528 35.160564 -24.654926 0.894754 42.087733 44.153042 -1.713916 -47.388151 -31.580414 0.810519 -18.565276 -11.966370 -35.701786 8.648428 -20.914958 0.906252 40.985450 -22.557429 -23.034811 30.321471 -44.035613 0.811987 47.058216 48.303223 -10.400266 0.879027 -12.012548 0.908282 -11.181105 -34.252097 -35.832606 27.547821 24.409862 0.859462 12.031374 27.264771 13.986706 27.569578 18.506252 0.833253 -18.151119 34.963185 -18.692410 1.727033 46.945461 0.811119 49.605534 -28.820846 38.142321 -49.901687 6.131024 0.596411 -8.118903 43.666537 -2.661307 8.848890 1.774804 1.745250 -32.300019 49.800720 -9.427250 32.909924 45.970689 0.810396 9.528917 16.834495 -43.122563 -35.724161 -14.226931 6.878577 -36.187254 16.366097 18.120143 8.732643 -11.274678 1.106329 19.906899 -40.227728 -45.418591 -41.608227 31.505107 0.842003 30.958192 16.707691 -40.035539 26.397192 -9.926142 1.773516 -39.947023 -5.683583 -42.883670 -22.775257 0.600756 -2.021208 -10.914794 -43.104848 -11.869178 42.991646 25.868682 0.813197 -25.888277 -21.782732 22.181963 -39.005646 14.878407 5.367819 43.847196 -33.496054 -27.733953 31.989588 -29.778985 0.823400 36.810781 17.738102 -12.649829 47.506962 -46.340679 0.810533 -40.949554 11.708008 14.836867 -0.946870 -8.199040 1.545508 -1.193095 -39.913588 19.892313 -27.298039 38.955795 0.812353 38.604311 -20.809179 28.022088 41.332869 -48.916710 0.811945 -18.954820 9.216897 -49.686088 -7.412226 18.233533 1.137420 33.895409 -16.093771 4.112050 0.055436 -45.471593 0.810021 23.626093 -2.539482 32.685538 -3.289932 -29.653994 0.830112 -21.611089 -30.583833 46.164025 44.423078 13.122146 1.118418 -35.334201 -41.698234 28.925890 30.874869 -33.439745 0.819258 -48.659980 -40.423634 -26.545605 1.158431 -30.317181 0.821696 -27.256630 -38.534240 -2.310575 26.358172 49.908886 0.809952 41.384727 14.375039 -30.365702 0.371951 -17.290085 0.961994 42.672907 13.102859 4.698846 -18.924889 -6.684941 0.678838 31.643373 -34.856351 42.861042 -27.511105 44.390240 0.816840 29.855151 45.453912 -9.230497 20.717963 25.293221 0.814044 22.434432 17.984999 -32.807019 -14.696654 -47.954658 0.813002 -18.859731 44.112265 -46.785930 -40.263602 -18.791566 1.256256 -11.192768 9.991774 23.869744 -42.237645 21.898910 0.859525 -48.482458 43.205130 28.868350 -4.469838 -42.185667 0.813969 17.941682 -0.872388 -22.888130 36.413750 49.677692 0.811245 48.728131 15.907699 -33.191649 -4.868604 -22.936601 0.868614 -41.468461 -16.754161 11.238750 -10.206066 27.484956 0.812946 -10.574945 -32.569284 26.704514 -22.228385 -49.944270 0.811622 7.425352 23.382765 47.327710 19.192979 -30.485020 0.847829 0.630576 -10.106151 -15.399176 -34.576331 9.208567 0.680195 1.129938 -5.745003 28.269978 39.732077 28.582743 0.826159 6.196664 -12.038530 -36.231264 -1.240961 -35.707216 0.821701 18.028276 -36.649338 -17.590806 2.294546 -43.180839 0.811195 3.196860 31.361399 -27.395187 23.851835 18.420103 0.899276 -46.268842 -16.980235 35.421830 1.546418 11.423485 1.874372 1.079466 30.815258 10.691036 -39.730056 14.608185 0.385493 -35.805678 15.376636 -28.337111 -0.759898 47.838734 0.812264 12.818707 45.318462 45.843810 -34.147401 31.741544 0.841612 -40.793601 24.396603 -17.668366 19.482874 -17.502175 0.858005 6.220829 -20.040076 14.721326 42.125155 -15.228574 0.836104 -5.403288 -3.456229 -15.758014 49.854236 29.549439 0.814163 20.121448 27.571567 -13.203058 1.115237 30.307427 0.813330 35.445255 -49.183865 -4.531725 30.438733 -41.103016 0.809938 46.423936 -40.538499 26.518382 33.595916 -48.868105 0.811720 43.510567 38.596532 -15.087765 -31.929958 30.716995 0.814275 -18.324221 24.267632 9.818942 -2.422669 9.151273 1.044443 -6.795708 33.546742 45.327918 -37.706409 -3.772184 0.100569 -1.004130 -3.046876 10.418799 23.000911 3.902811 0.965824 -39.893348 -46.603258 -32.074318 -6.383870 -49.830350 0.812359 -10.708568 12.672464 -21.506761 -43.898871 -8.215800 0.701211 15.861900 4.855280 -43.219688 29.525938 -31.820465 0.836086 14.830925 -8.079358 -38.079579 -48.100839 32.271469 0.831157 42.534510 2.949774 -22.534434 -32.269520 4.250588 0.530123 -5.880838 -18.159741 -2.743376 20.804216 31.670274 0.809934 4.669735 -7.215651 44.106091 49.840106 -8.752759 1.079681 30.541955 47.116589 -12.759177 23.646925 -29.779144 0.813553 30.021641 -1.930882 -7.486587 4.035629 -42.093817 0.810254 -30.408804 -33.985442 -48.291522 17.065960 32.394392 0.840466 18.767094 19.592645 34.264880 44.803974 6.829143 1.043500 46.352237 33.799980 -3.035321 -1.647272 -13.463029 0.824091 34.946301 0.532194 14.023104 49.146487 -42.361174 0.810866 16.842826 -44.444283 -39.437173 -8.525371 -40.036009 0.818660 45.639291 -42.337033 13.440507 -38.636326 -38.181152 0.811069 43.366289 -9.162440 -3.720184 17.170563 41.126577 0.810039 -28.888750 -43.202567 -35.006461 -47.344558 9.121929 0.586246 -31.414550 -7.823591 -30.359314 -35.774449 37.721977 0.816721 0.936257 -2.205052 -2.406197 -14.403333 10.524864 0.816375 -5.739198 -10.958579 46.524010 49.544480 44.897438 0.817559 -5.560545 -30.606387 47.914295 4.365579 -47.108491 0.816736 -18.437985 5.130994 24.167342 32.262144 -4.258926 1.124989 0.413966 41.483959 0.358471 -25.115629 -39.515051 0.810167 48.117847 35.186620 27.360152 12.753062 -49.121195 0.811933 31.862514 15.840768 37.099857 -41.556214 -19.564075 1.036986 48.647827 40.822034 17.101704 -19.214390 28.880800 0.816755 -48.963755 -35.227450 -35.221351 -23.775702 -30.771046 0.830033 8.667023 -3.109958 16.549685 -20.996265 44.960139 0.810972 15.409278 -9.212678 -7.559473 -38.897159 12.289080 0.779364 37.204278 9.549534 -32.646149 11.180788 -34.881046 0.820552 15.472538 33.704177 5.683972 5.427025 -19.875711 0.815113 40.406239 45.003557 -34.439560 45.711317 47.122603 0.813541 -11.078055 -8.926694 5.758754 19.153354 -16.587022 0.814879 45.561834 -12.026314 -35.341168 -3.453120 35.210935 0.821771 1.216905 -24.661404 44.614379 -12.719778 -2.306088 -16.976957 46.602408 34.199256 47.270600 22.458229 35.161481 0.831405 22.429961 -18.276033 30.721831 42.965233 -13.392421 0.952056 -8.562327 -23.754852 43.581727 -27.995410 -6.679253 -0.954596 -48.012652 -41.026948 -10.127534 41.505296 -20.098265 0.814976 27.982554 -34.924492 -2.879456 25.983132 16.787535 0.807661 -37.010525 -39.491649 -37.057837 47.027267 -29.750484 0.832662 -22.001225 -21.570399 -44.083260 10.333336 -47.947598 0.815320 32.823274 -32.168726 40.941276 -21.679172 3.786421 -2.226421 28.176182 15.618663 -0.192166 0.885174 35.928996 0.810091 -12.014957 -38.791492 28.467373 4.803220 -12.174191 1.328630 -15.815987 36.896368 27.838523 4.743397 3.783781 40.960211 32.738327 -48.084005 14.289259 -42.896383 10.903117 0.758799 -28.885134 42.253921 8.737877 32.243219 20.212409 0.817866 23.019091 8.054915 24.708831 -39.808593 -31.657621 0.819413 -48.461993 18.964592 32.088996 -46.841363 5.803097 0.622577 49.796130 28.740282 -5.364308 17.387718 -35.513720 0.810438 31.034156 43.269143 23.883206 37.268892 -4.673102 1.018577 42.512000 37.512708 -42.792329 -37.777612 -22.653438 0.932892 -5.799406 -30.710120 40.749444 38.675763 -28.544782 0.843670 -1.419797 30.564636 2.271803 7.248505 -45.083074 0.810090 25.226702 21.866418 3.935212 43.534879 -12.721222 0.814754 -17.702053 20.166476 -16.399657 32.562257 29.464770 0.815269 14.620351 -19.006681 -25.853715 -11.289578 -16.407157 0.944064 -46.400920 28.854532 32.093206 -31.692959 12.544386 -20.908533 1.099304 38.565683 -21.525964 39.439258 -16.669269 0.866465 -17.582813 46.149290 23.758007 -1.177223 41.070434 0.813050 46.717940 -31.740307 22.681966 -31.424415 -38.585197 0.813282 45.889251 -47.268033 -38.793694 -42.535788 25.034307 0.874862 -27.165116 10.000017 -45.035600 -32.105581 5.614293 -0.354326 2.587505 -44.946588 -28.786713 34.514997 33.760039 0.818743 11.812701 19.213836 -31.139483 23.617008 -2.213314 2.166211 -25.465743 -33.141020 18.385852 19.909486 31.839784 0.814455 -34.249863 46.091948 -42.755639 38.021980 43.698038 0.817344 -39.338860 47.605654 1.845087 39.305829 5.001660 0.820413 -27.710603 13.138477 -20.481172 43.167010 31.410310 0.816017 -20.810261 13.141252 0.655494 37.945746 -36.325130 0.810075 -20.730622 -11.571488 22.934675 34.951547 -39.703448 0.813000 28.373329 2.950873 7.628876 10.708528 2.376357 1.674894 5.985576 -32.898226 -8.516944 -39.031508 -0.994118 0.794489 22.921203 -10.381663 -45.049586 38.755872 -23.490057 0.894005 -24.860962 -45.033665 -8.023285 -11.542833 43.261815 0.810143 17.158989 8.130826 19.852797 28.631234 13.665922 0.918574 11.352826 39.762778 -45.667856 -35.378207 -42.547333 0.819499 9.349740 32.974077 37.689587 -0.399384 -46.809061 0.814381 34.606819 -37.896894 -10.513629 10.355835 5.658901 1.459577 -33.845166 22.586570 -22.312296 -38.877343 34.664863 0.815353 -12.519390 -34.819907 -42.166735 37.857844 -25.087870 0.868208 7.882554 -19.912976 -23.994680 -25.373825 -8.898766 -0.396281 35.028301 29.336374 -3.815511 -28.889494 -36.338416 0.810288 17.409287 15.709195 38.745047 -37.066944 16.389715 1.511562 -47.605960 25.773030 8.513200 -40.177595 41.167582 0.810463 -40.016482 8.833463 -38.211598 -2.776289 -30.000804 0.836386 -13.366377 35.713609 -15.247003 -44.861800 11.428081 0.742276 15.817263 16.229699 -42.045695 12.682665 23.028021 0.901688 20.972551 -12.810892 -10.921361 10.977446 -46.166446 0.810355 -2.357450 -44.831856 27.834388 -14.467179 36.422813 0.816179 -38.203058 -13.719708 -31.749048 6.581321 -30.893809 0.825983 -33.929377 -33.605170 -26.824101 47.441259 -0.257444 0.928990 -39.409571 16.798517 -47.663833 -4.032446 -17.731510 1.146914 32.423890 28.028474 47.927803 -42.898260 -36.277580 0.830232 -27.321439 -21.764298 9.056748 37.990549 -47.700655 0.810189 -36.320905 -17.767754 -46.430056 26.028404 46.699625 0.816553 -13.528562 -13.864838 -28.271897 -22.696206 42.730532 0.813465 -13.778416 0.562866 34.657127 -46.107258 -21.983141 0.922927 -26.401231 31.866619 -3.642652 17.429852 -1.864882 0.928450 -32.367543 -17.771647 43.208836 -49.830956 28.620509 0.857288 42.060874 -42.840653 -31.671531 44.497631 39.581631 0.815627 -22.069145 -48.241801 -29.157015 -37.087060 42.655739 0.813647 40.132500 19.399974 19.472317 -4.206996 -2.765430 -5286.527338 21.821073 31.741380 -38.000239 -12.242400 42.509017 0.816545 43.394732 31.680501 32.514556 44.384819 -24.321663 0.847444 -23.822248 44.088053 48.523758 23.873399 -39.882479 0.823679 31.059506 30.642491 -18.922280 27.220360 -45.288290 0.811307 -7.704138 0.099248 22.534684 -20.604540 -8.744328 -5.620932 12.541747 -28.143311 -30.888752 -9.396663 43.529307 0.813799 -46.824686 41.373612 -49.902515 -22.383590 16.010286 1.457070 -0.547058 14.303800 38.671169 -10.983046 13.324953 1.530248 43.629159 21.208246 39.813671 -16.440995 -6.424141 -11.779630 24.218361 3.078467 -42.858902 47.643075 -27.192331 0.852339 -21.671728 18.988697 -46.547821 -40.011246 -17.053768 1.763076 -25.126755 -20.869796 26.515689 47.534075 13.727968 0.892742 3.120698 -22.527431 -42.161261 -44.649248 29.250349 0.848888 44.802221 -41.403892 18.544874 -38.568584 44.912251 0.811146 -26.965559 48.611414 37.290072 -23.144863 14.872354 1.341899 18.790617 -6.333730 -23.035668 -4.640556 14.541754 0.981949 -18.845892 -30.155176 46.782556 21.487381 27.277779 0.866299 -8.613238 -26.187703 41.946436 -30.853122 -35.982370 0.825367 0.860491 38.191630 -17.010531 23.333605 -23.901108 0.823640 7.946216 -18.909971 -29.136440 27.144677 19.918789 0.880314 -40.955234 -38.653455 -3.758765 21.110382 25.061673 0.809578 2.554655 20.217214 -43.790620 32.219152 15.894078 1.120854 40.665154 -10.797865 4.415713 -39.786412 -49.792504 0.810029 -21.566908 -7.621197 -42.953908 48.769925 -38.792135 0.821380 -8.676838 2.215734 -20.452163 20.037792 26.859160 0.821616 28.597339 -41.023273 -43.468415 23.208156 -2.520252 3.514038 46.012345 -3.636649 -37.146988 33.173547 9.839304 1.330595 -13.081243 11.025626 -17.566984 -19.054529 24.027658 0.824054 49.136119 21.450936 -46.195095 -6.850281 -20.061244 1.003691 -13.957685 36.137586 38.137240 -14.860987 26.126210 0.856531 -11.367141 17.994661 -27.498274 -28.289450 33.149397 0.819416 19.162334 -28.913352 30.304154 -4.856422 28.620600 0.829539 -30.803062 49.676692 -31.721580 48.720114 26.366840 0.836317 43.175882 -34.247248 12.212484 41.825734 44.329913 0.810470 -1.160069 30.232435 -17.752966 -40.414304 35.349882 0.813240 -47.029403 -49.344968 -32.674029 0.188988 -26.633167 0.839983 44.109866 20.347269 -14.571616 -0.975061 5.357473 4.811462 -38.667118 -7.878851 14.438651 6.027237 33.627903 0.812317 39.118576 -41.970291 42.990096 -29.051743 -9.602959 -1.578259 40.216449 -41.576261 -26.558013 12.456510 37.547579 0.814967 13.963010 21.462395 -48.048599 -17.170830 32.528296 0.840362 -9.412550 -13.588374 18.285327 27.637710 -26.619852 0.819138 -23.305263 37.017246 -32.245982 -43.107343 33.496534 0.822989 3.961509 26.322059 0.778801 -24.637021 31.577166 0.810269 -21.439535 15.196507 40.935513 -20.686068 -5.421841 -3.143409 -23.068462 -47.938121 29.131698 13.465883 20.676229 0.874464 20.159589 0.279628 39.503622 23.228629 -0.413903 3.079453 14.750732 41.147357 12.172163 -29.824385 41.819134 0.810843 27.155128 7.428083 33.136771 -18.774860 16.123306 1.068194 30.368444 -48.984655 16.938803 14.672075 -12.374627 0.952717 -34.489298 -49.157170 -6.303048 5.606144 -3.112815 1.241914 -10.244285 35.379978 -20.162587 -32.600530 -48.226274 0.811165 5.608691 -7.808457 36.184038 -37.869889 49.028799 0.813315 43.301214 48.074421 15.085700 -28.143533 0.121805 0.597733 12.437549 32.400583 38.672243 48.066222 25.323107 0.854235 -15.995649 31.078348 44.496365 -47.632216 -28.447032 0.861318 24.019852 -25.713446 -46.339109 -8.746740 -8.791403 6.521044 24.506889 -9.339066 -26.893004 41.567857 43.584655 0.812852 -21.895012 47.469876 -17.289515 20.725463 6.015989 1.381612 -17.131980 -18.552138 -25.921055 30.373022 -37.202035 0.814962 -2.567924 44.389758 21.705489 18.793977 -8.818553 1.452746 0.982660 -36.454594 -46.004671 10.661450 -7.228827 9.053747 -6.525611 26.842763 47.508966 30.525527 -0.953230 2.267616 -5.442932 37.342786 -23.685814 26.134357 -32.632275 0.817440 -35.755285 8.546192 -6.077465 -29.417807 -22.273426 0.812753 35.695398 30.201164 -44.034677 32.928160 -46.160965 0.816252 36.707095 -34.123547 15.265975 -27.914710 -40.438435 0.811154 -39.002624 11.153849 29.046479 23.542503 3.231800 1.986502 -14.067408 -24.082304 25.946408 -33.696416 22.494620 0.852502 24.558963 22.182035 7.384354 6.303325 0.873941 5.839603 -10.813280 22.706006 -41.257652 0.443988 -39.405732 0.820384 35.458319 42.942600 -24.142019 -28.048602 26.084100 0.830022 -0.805059 -25.936196 39.244332 -27.273091 -7.873159 -0.982471 -23.475652 -39.387617 8.396840 -21.887308 14.690372 0.826895 -46.574183 6.609447 -15.460860 -9.961915 -14.507170 0.891593 34.951657 -45.296776 28.660754 -18.590813 2.310421 -1.446812 -25.483579 -5.236462 -33.006619 29.230837 17.676171 0.944631 -6.145028 -6.455681 -17.375317 -25.417619 -33.863190 0.813333 5.868869 39.840359 -42.074195 9.582854 -25.102301 0.875862 -1.876578 31.452595 22.748410 31.329307 -29.816967 0.819633 -36.004203 -1.757537 20.314632 6.012361 1.327750 34.711671 -19.252569 -11.212160 -37.573190 -8.027831 32.238913 0.828961 -33.051987 -35.294490 -14.159641 18.349955 40.311453 0.810975 27.421913 40.936406 4.473013 2.901296 4.523438 2.383712 8.046726 -33.021203 41.876347 -15.275193 25.239022 0.872659 -39.476294 -34.591412 43.810537 16.767987 22.931735 0.908636 19.609983 -49.854762 -49.090003 32.335415 -20.804480 0.971628 -38.554571 30.130424 -44.443421 6.317134 16.408246 1.210232 0.158230 -44.499395 -26.400709 37.268443 3.167109 1.044386 -32.801419 -30.117752 13.723211 5.921470 8.283908 1.313166 28.034500 -47.434654 29.352409 -38.788360 -38.169675 0.815829 -3.603124 48.030820 -21.721324 0.951219 -2.928437 99.769256 3.194522 32.537180 -41.233059 44.084911 0.006424 1.176264 -18.552737 -35.789928 -42.443971 -1.652725 28.276536 0.850541 -47.926778 -23.877568 -1.099596 3.725788 25.794539 0.809516 -33.426805 -9.718163 -8.121964 -26.438473 -25.898787 0.811993 -32.114057 30.828649 -42.013032 -11.202156 -23.496382 0.895734 28.109853 12.551557 49.651367 -23.451922 -45.990236 0.818080 11.901458 -39.972158 -30.942224 -6.259442 23.029772 0.858278 28.793357 4.226062 -47.539288 7.018562 -21.932801 0.952400 -46.242127 -45.432884 5.704530 -0.504037 46.464117 0.810007 -39.385871 36.890213 -33.004616 -19.540072 29.892404 0.830494 25.105219 36.565330 44.213173 2.928158 -34.058717 0.831445 42.959177 -27.607278 26.106824 -10.798093 -37.196253 0.815054 -35.837485 34.671271 24.258996 -48.775690 -14.404173 0.630882 -1.164848 -32.965775 -37.295552 -44.014586 43.334283 0.815772 42.520078 40.427492 22.746277 42.797798 31.270183 0.817790 -2.838515 -34.036335 -3.328651 48.469358 25.908810 0.809687 -49.381479 -41.720720 11.918747 48.717841 -49.348465 0.810277 -4.746436 -32.827587 41.393730 0.399181 -45.745754 0.815632 41.937624 2.110339 -17.856603 -9.181631 -23.377279 0.825667 -0.371556 23.521750 -26.367514 2.535363 -11.411263 1.420821 -19.791264 -44.709723 -33.736784 6.340689 6.526624 8.816206 -29.298967 23.024808 19.695083 15.100266 -14.982193 0.920639 -49.892651 27.072646 -0.730597 33.567238 -33.882139 0.810201 49.009283 11.524509 27.403030 -48.454474 48.202532 0.812084 -42.111929 38.678308 16.369942 -24.658992 -26.799889 0.818500 14.938818 -21.339355 16.679227 26.785421 30.551621 0.814341 -23.516770 4.754865 -40.571401 -28.595938 26.874661 0.857810 -11.579834 -39.836176 5.657429 37.453596 -48.955851 0.810014 -31.121737 25.583899 43.971535 6.107069 35.348770 0.828212 -38.941021 19.319860 31.382638 42.738756 23.153609 0.851582 -33.195921 16.051520 -3.373468 -32.386907 -41.567748 0.810109 20.331226 -8.018079 48.672372 18.647017 20.705793 0.992343 -18.742247 16.420846 -18.066553 -30.170789 -46.216274 0.811083 35.962708 5.155698 2.890130 -14.442432 15.477284 0.813127 5.253442 13.207070 -11.374153 21.051630 -6.824948 1.019130 -20.152331 -33.743784 -4.697845 -32.102040 -39.290132 0.809997 36.013250 44.122978 -35.856687 17.729617 -4.719383 4.680053 23.556094 -46.636962 -20.878011 6.159903 44.516895 0.811503 -37.780242 24.985046 -23.471218 27.594887 1.904637 1.301869 -35.363544 -47.961494 46.004443 -37.156331 -3.003502 0.067974 -7.386563 7.528613 -8.989945 34.999073 16.356048 0.821822 -44.540120 -26.689178 28.018398 25.595991 39.291334 0.814667 28.099162 10.579655 -35.014746 -27.408095 -33.212663 0.824978 31.746048 0.924613 24.362192 -20.641155 -23.922088 0.837032 -10.718053 -43.155477 1.029530 10.614283 -8.330158 0.740002 31.199803 -17.108291 -28.534439 47.266738 37.718962 0.815551 -24.039605 -19.820926 45.910200 31.859022 -41.074767 0.820632 -38.976775 -1.257563 -23.900487 48.715336 -1.601943 0.899911 17.144142 42.866880 -19.122049 -49.299989 -28.991202 0.819414 28.054674 2.254205 -11.759714 -27.208026 -23.628341 0.816895 26.666961 -18.621192 -31.037099 -29.624556 -38.290015 0.816513 -44.181557 3.162521 -6.167736 6.400716 24.297962 0.811678 23.936799 6.128966 36.717000 -29.586698 -40.388562 0.817467 28.122335 -27.580494 3.153486 48.612610 -22.421343 0.809643 48.316468 -22.189621 -24.331098 12.171250 39.068765 0.813610 31.975096 -8.435341 -3.981232 27.810614 -22.936916 0.810507 40.729576 -41.813421 -34.804707 13.098848 8.555448 3.221439 29.845875 -22.246554 24.930658 38.024131 -5.913258 1.005686 35.027755 3.500283 10.143528 -45.976471 18.965888 0.839710 -6.874020 -35.075946 15.136476 -3.895486 35.053284 0.811987 -28.638082 -40.302525 23.172097 32.988105 40.331996 0.812780 14.201353 -27.638842 42.226710 28.470049 22.504482 0.903575 -48.819174 -16.614598 -28.756919 -30.489375 16.779600 1.020174 -2.469735 -6.174124 -4.695952 40.846564 -30.862753 0.810272 -23.418920 -34.190191 32.863001 25.760251 -46.108699 0.813400 -5.597838 26.294991 -39.948851 13.306446 7.821106 4.990864 -24.868237 44.559380 -25.863371 6.283663 -0.890078 51.966265 -19.713767 34.852213 -25.285596 6.864861 -39.975680 0.813783 -16.347295 -3.617546 33.550732 -49.056183 -36.130521 0.820174 -14.797213 30.345377 -4.766807 -31.376120 -32.084933 0.810605 29.500519 30.997654 -33.503740 -12.969853 26.564607 0.843588 -10.443543 -27.902011 -22.653728 -17.729189 -15.073570 0.962884 48.286387 -16.104285 8.215755 18.259683 -47.110860 0.810168 7.506376 -27.604465 5.183185 -35.175048 14.457263 0.823912 2.946418 47.113522 15.520275 -17.729385 34.421975 0.812837 29.729099 -22.983082 -23.313787 20.980662 12.528431 1.050476 -7.076287 -35.313637 49.768539 41.254707 -10.755191 1.324298 19.445018 25.386372 43.272989 6.437366 -5.338720 27.666473 -41.371829 17.668832 28.570976 -41.096584 5.617112 0.588599 -18.957983 12.966381 -11.289188 15.781648 22.357597 0.817842 -27.714629 -26.327394 -29.692663 -38.136792 34.592279 0.819080 -23.171931 -26.822212 -17.516649 30.611709 46.347862 0.810908 17.787540 36.482395 44.345363 -33.047316 -9.330401 -0.553083 -34.171998 -43.771126 -2.213681 43.459562 7.992102 0.804924 29.448860 18.061863 -42.842040 47.882427 10.547885 1.078816 -1.005685 -10.833939 32.452105 44.617780 -4.357189 1.023522 -10.074368 -40.144387 -4.787318 21.918687 39.527841 0.809977 -26.498697 -36.586134 -18.111287 33.432584 37.866183 0.812122 -26.384406 41.573556 48.345304 36.701304 37.286016 0.827483 -31.001131 33.849595 40.607128 -25.762573 37.961705 0.821813 -35.903868 9.079407 11.692528 49.558655 48.118306 0.810381 24.804763 -39.499210 38.755006 0.398856 -49.127996 0.813693 -40.352484 -44.793327 -10.926037 49.562544 -48.700768 0.810228 -47.336861 44.962613 16.149352 23.182648 -4.038958 1.224281 -33.413363 -9.429757 -17.308105 -27.185399 13.493936 1.060321 -26.061785 38.838108 3.063143 -28.663667 38.576797 0.810234 -49.896312 35.157556 -49.711290 -10.746989 -10.373866 4.245069 38.527757 25.823705 2.719929 -42.336256 -23.128980 0.811592 40.665776 -48.146535 -49.363125 -38.536018 14.228877 -6.507584 -42.667145 -38.511776 30.856562 3.905809 -8.365943 3.540961 21.909549 -42.138994 23.177281 -31.097006 6.037056 0.483430 -32.138401 7.943122 8.120174 -14.912972 -12.013231 0.867145 -1.173579 -9.157823 24.922405 27.756525 1.263719 1.334080 8.990643 15.390383 -25.565385 -15.335879 36.793345 0.815290 28.278372 8.284804 -38.676685 31.370185 -39.960439 0.818503 0.372088 22.685865 -13.773595 0.581981 20.155902 0.828095 -26.936899 -25.923113 -31.847067 -32.518882 38.753649 0.816524 -38.700619 -13.449887 15.480307 17.962694 -19.654689 0.831858 -37.263659 -26.489691 25.702080 29.769063 -49.441211 0.811563 -43.001791 32.354283 -46.935437 -19.782441 -38.120709 0.825404 -47.968870 -20.861636 7.810515 -20.482584 -29.386612 0.810929 7.167462 -4.662240 25.503462 44.551386 13.593806 0.899980 -6.719387 28.335585 -28.491345 25.964161 -42.026704 0.813865 -36.955177 8.546967 -22.987386 10.104777 -43.199600 0.812235 49.861283 -28.656464 45.576990 -13.229494 -46.491988 0.816425 -10.059915 5.919840 9.941979 14.346591 -26.728845 0.812923 24.562126 -42.334431 33.949911 31.311250 -11.058019 1.224914 27.560216 35.918870 -33.062170 3.030869 17.425168 0.986611 -17.427509 -5.986327 -13.664171 -3.536672 29.533020 0.813502 -11.215529 -15.955841 31.925801 -3.032492 5.647401 15.591613 -28.737211 25.136770 -45.782018 -26.837417 -27.161943 0.868248 25.087848 -46.644774 -47.695556 -37.176587 43.619154 0.819141 -31.200685 -43.128716 -8.528416 -2.137223 3.938484 3.564487 -18.101993 29.220353 -34.057299 11.325220 -20.754219 0.902103 48.958981 44.418419 -15.511739 -30.217644 -27.124311 0.817588 -9.942214 11.131359 44.450550 -29.614894 -19.915043 1.021809 16.144115 8.774428 -36.963717 10.837944 -16.452918 1.079276 34.763833 22.269447 14.790598 17.534218 -8.546689 1.163012 48.923743 37.854724 -6.749380 -42.827520 49.574234 0.810173 -27.461163 10.337815 38.179848 34.296215 32.721448 0.828117 26.182177 17.444779 23.142559 -20.186074 -18.318253 0.885253 -19.771533 21.147111 -35.649972 6.010347 19.599545 0.936815 -3.798853 22.378648 -12.379543 -18.979107 -6.224344 0.192091 -32.227117 -28.292836 19.779626 -34.286712 -12.774623 -0.157065 -10.064878 -48.622524 -28.807251 -10.680405 -13.622946 1.157408 -23.707250 -44.802509 27.112357 -32.744439 45.924065 0.812326 -24.718851 11.881892 -6.490653 33.751206 -16.846256 0.816556 42.814720 42.861494 -8.711880 -25.892718 18.147621 0.826106 -3.495840 44.111096 -46.754334 46.621272 9.455594 1.172677 7.557141 -47.863327 2.485510 -48.895345 21.309458 0.806671 -26.729526 -28.759500 45.271256 -36.552618 -16.511900 1.649440 47.748045 -39.492575 -30.263423 -21.208420 -20.322918 0.889590 38.229403 -10.040792 -41.432784 46.640402 11.268640 1.066257 13.445570 -28.280889 37.393365 46.071515 -16.881002 0.936141 24.174366 -9.644711 36.970987 25.620641 -13.517563 1.233440 13.238054 47.761188 -43.993623 13.483072 26.870732 0.864812 -35.903986 23.598967 15.810822 -11.691839 21.885900 0.826980 -34.140616 30.114166 -22.217538 7.418004 -45.608788 0.811731 37.553414 0.057309 34.381208 -23.249539 46.227672 0.813782 -29.854508 -26.141250 32.372199 49.522114 32.809643 0.821963 -40.829788 -43.314896 49.635776 19.423547 16.540194 1.249859 43.027466 -37.593380 6.430213 4.579278 -27.549763 0.810412 20.333023 -33.904004 47.202246 -17.352303 -49.474164 0.815371 19.283892 32.169775 45.486631 23.753700 -6.578330 3.229969 -49.314226 7.689534 -22.403235 -22.934753 10.751136 2.802946 -41.265151 34.380278 -38.709503 31.068669 46.568969 0.814692 -20.828196 28.262080 17.834438 15.082637 36.144332 0.812873 42.820365 38.466393 -12.723031 3.113621 29.533696 0.813594 42.164232 29.944738 10.349438 31.641409 37.406793 0.810934 17.483218 25.887080 -27.740680 -24.642866 49.214647 0.811959 -36.178707 -47.513382 34.792358 -24.898393 -29.918670 0.831786 -19.003398 14.477616 -18.632914 18.827995 27.560168 0.818935 0.479380 -15.681258 -14.194809 -13.952837 -48.471293 0.810505 1.298071 19.060397 28.657951 17.577864 47.339537 0.812419 -24.343532 -2.995104 43.625340 2.955742 -46.499444 0.815929 37.169360 5.595328 9.895335 14.011986 46.367290 0.810320 -13.882255 -13.778772 -5.206391 26.172321 49.801146 0.810042 -31.224607 13.683123 -16.066309 -6.776102 4.457168 27.540566 -41.128363 19.030010 -32.176375 -1.396280 -2.556952 377.462203 44.292325 35.168563 20.652154 -17.193035 36.797791 0.813586 10.641990 35.355389 -48.674171 -23.183670 -4.094144 -2.791088 -43.258115 -42.317091 -34.391058 -41.060977 -45.118229 0.814117 -12.686726 14.740854 23.243611 35.735012 37.845937 0.813841 42.736545 -29.238710 3.469820 44.913437 -29.238841 0.809865 -47.660896 6.578946 -16.230264 -6.317705 -21.709744 0.827594 -47.169408 0.741241 -28.845476 -47.101774 -20.975871 0.920362 14.475694 -48.107821 25.594251 10.363974 2.890053 10.268423 -30.717803 24.925861 -5.331940 -9.915414 44.415646 0.810169 29.041549 -30.119332 -40.908344 -23.287573 19.349077 0.995348 -27.487608 13.869098 -42.096556 43.558069 -28.725113 0.844771 48.474080 39.350994 23.210937 31.068169 -26.089095 0.826906 9.140797 -4.108772 4.909000 44.461308 -4.558456 0.814402 -2.221297 7.866214 -44.345336 -28.715099 30.081434 0.845940 -28.279331 29.676962 -49.244940 5.924239 31.580896 0.845829 -42.309528 1.075815 -19.748287 -29.991947 -37.251173 0.812992 13.989123 -1.048827 8.262827 -3.961724 4.010112 5.527380 40.110279 9.901649 -35.998293 -27.503862 32.429797 0.827432 -49.073098 38.841999 18.907419 -37.667736 -4.156208 0.678345 -23.936710 14.823210 17.511610 -25.212664 -23.908120 0.824702 28.057609 -0.656084 20.029759 22.675205 38.748224 0.812581 28.056175 -18.874960 -18.873147 -44.373474 -42.884915 0.811512 12.133227 -48.333728 -37.345738 23.812374 -40.642246 0.817252 28.318267 -49.328111 -42.295922 18.602150 -28.542632 0.848279 -14.483523 -18.452297 7.741981 41.452856 10.352427 0.820144 -29.254807 -46.006205 -21.184166 -4.333991 26.423686 0.822506 -39.903793 27.904644 36.434518 44.861567 26.027700 0.846949 2.007193 -36.786445 -40.593819 -34.753679 16.645421 1.358041 29.547878 9.168832 -45.807648 28.131933 -28.512350 0.855208 28.648072 -14.683676 -47.435985 -0.439262 -16.371722 1.264677 -6.591647 -29.718078 -4.889392 -19.093114 26.332164 0.810126 -35.090206 -30.899816 -42.087251 27.062394 -37.690221 0.822551 -18.407530 -39.334242 44.171270 -10.468010 -49.578498 0.814646 -10.354330 -7.989717 -18.780719 -39.268798 32.540660 0.814721 14.992917 -26.901677 14.015212 -43.372113 -31.795887 0.812720 49.324884 -9.808286 48.637645 -34.600914 4.471423 -0.240554 43.095338 -22.584350 -4.010946 11.089330 -30.435420 0.810018 4.312640 -34.872837 21.444552 -40.500916 48.548101 0.811157 41.820026 28.290508 -9.548532 29.139505 -22.617543 0.815700 17.405318 13.281542 16.922974 -35.900360 39.578248 0.811781 -38.970651 -35.068570 34.366730 -49.691595 32.725582 0.826094 47.991802 18.354684 -34.432162 -36.978601 18.869209 1.012324 42.071866 3.044342 -49.759536 1.899772 0.158921 6586.803747 -13.164376 1.231927 4.338460 -47.334977 18.699744 0.817652 -39.251705 32.513413 47.054309 22.689891 -35.038957 0.831493 -28.178136 -23.343633 -48.122214 -41.216095 18.635970 1.329115 7.975007 21.062649 -13.332033 21.566845 47.169511 0.810564 4.181687 -17.678069 -48.501617 -10.682511 37.381885 0.827485 7.141524 -25.376040 -48.367605 -13.544373 19.349107 1.055061 -32.089038 -42.796002 35.867294 -48.519827 49.724825 0.813046 -48.710916 29.826762 44.166332 39.022825 6.232203 1.395775 21.359318 -21.759137 -46.299855 -2.394032 -32.922210 0.836425 48.699417 -32.193622 21.710695 -23.363602 -13.139596 1.144577 2.836685 49.260954 22.318766 16.814759 -22.849817 0.838008 2.910653 36.590489 46.269470 -14.865498 10.090968 4.888294 -1.591321 34.070684 -4.211566 -23.967627 -40.209996 0.810227 -14.010050 -36.390325 -25.815773 15.026689 -30.993776 0.820117 46.979126 -31.021415 5.253860 -40.000862 -49.032741 0.810018 -26.174408 5.890914 -39.090962 -33.186568 -11.085777 -0.770046 20.950938 33.667086 -17.939459 -11.110784 -27.940747 0.818251 -48.267570 24.027606 -8.973403 -23.659098 -23.556680 0.814734 -49.076413 -46.542985 -13.977662 -3.170024 -45.043259 0.810582 -44.188190 22.243265 4.921183 -1.579438 -17.263624 0.816410 24.185476 10.697974 1.583108 -25.620691 45.384130 0.810033 -46.356958 40.306233 -37.370311 -49.152023 35.377753 0.824104 33.867605 -48.468635 -15.680290 7.021047 -33.636392 0.812432 -16.684286 37.868569 -26.227812 30.484333 -8.531782 1.181853 41.679506 47.969320 35.381629 -46.301456 -32.191807 0.828821 20.001256 -5.443944 4.643560 -20.613762 13.626873 0.819517 32.066310 44.866220 9.141112 43.609343 18.013645 0.819639 33.282582 37.433221 -4.678682 -41.997204 35.287002 0.810458 -45.273845 -24.428703 42.794583 -25.845562 -8.172550 -2.020151 10.969215 28.143539 -46.307414 26.063673 43.059982 0.819136 42.070002 -14.829680 -29.068360 -20.581484 17.127654 0.963958 30.335023 -31.593510 -5.108806 34.928894 40.815499 0.810026 -32.107463 -23.386311 -29.353770 7.276528 -2.932259 33.089141 42.452072 -15.127693 -43.925933 6.551646 -13.845467 1.566907 -17.563382 46.688063 -0.584460 -10.550374 45.122439 0.810111 -21.910816 48.687106 37.601483 44.290905 -5.416014 1.109673 -31.420075 -25.000062 -4.883740 43.014640 18.784393 0.810557 46.350052 37.119320 25.347429 47.950931 -28.844736 0.822465 43.606998 44.435801 48.566537 -37.654993 -48.606597 0.816286 43.702395 47.967769 -7.172402 -3.007343 -17.688608 0.822427 -15.993722 -40.186320 1.716116 -0.204818 -0.333648 -62998.859788 8.574363 -30.839717 29.829424 -34.212999 7.902378 0.359599 26.131501 24.682542 44.105047 -13.383043 38.879810 0.822527 -26.373963 -35.712229 2.244902 -17.030054 -18.141494 0.807378 -16.509135 25.909044 -23.285747 -5.156838 -30.877360 0.818975 -1.525158 -43.344733 -42.178191 -23.125190 16.607670 1.195560 -2.233582 -10.218370 -38.981167 42.186378 31.479834 0.831164 -27.255073 33.546708 -49.024417 37.206434 -19.338684 1.005326 -7.389674 -29.455077 27.121722 6.449313 17.612672 0.918236 22.549207 30.808541 -28.181425 -36.939473 23.561764 0.854345 3.898850 -37.372395 -24.869498 27.912743 33.018119 0.817177 45.714554 -6.223278 27.807650 0.988557 -26.501353 0.832734 31.007132 11.577045 -3.828849 -30.289088 5.748049 0.794565 -38.360647 -3.859604 -6.956425 -17.572846 -9.984671 0.929344 25.861105 38.382209 -36.603025 -15.403188 7.238305 -110.655541 -32.178469 29.535755 32.795758 34.347262 -1.675765 1.302493 -14.637530 -5.424209 -19.179573 -48.063970 4.438829 0.749952 9.295790 -36.824883 6.189384 -41.967685 5.443857 0.806557 13.418428 17.794516 -32.684997 28.040437 -35.305870 0.820022 -48.979503 -27.872868 46.552098 13.826628 -25.740265 0.881016 21.055942 -47.004179 12.376573 -19.682418 13.634212 0.872429 -9.553428 -26.069590 20.057848 -32.614920 27.029009 0.821092 -23.185971 39.548661 -24.483905 3.529093 -26.272506 0.829150 27.453845 41.027638 -32.236437 6.388952 -4.596856 24.545106 48.775943 37.387535 -4.404748 -12.783037 -39.448549 0.810267 3.387435 13.383728 6.321987 -18.827267 4.424927 0.666157 11.352107 -28.721165 2.911333 -13.124928 -28.652347 0.809769 48.902055 -44.433930 -48.045763 -34.065312 23.959113 0.921531 -44.174363 2.433482 36.489442 22.866206 -8.762095 2.067300 30.610994 -40.786215 -35.211448 -23.687790 -9.316728 -4.895774 -13.989355 -13.105237 19.910825 -14.571446 -34.965828 0.813788 -49.111465 -33.550616 22.538633 -13.948828 -40.167203 0.812722 27.073760 -22.130391 27.741391 19.983984 32.114966 0.820284 -46.399798 -5.830487 -19.386791 2.816706 15.868605 0.895502 -42.123075 1.921118 -30.094264 -20.219196 -29.406691 0.827841 -34.404906 -29.253401 -18.498126 -10.135731 -14.900158 0.907088 38.802011 -49.350877 -45.846855 -2.449273 -14.534945 1.486061 27.543608 -38.521785 -24.764755 -47.654276 -44.307806 0.812274 22.375908 -22.072619 -14.239457 26.848068 18.621474 0.830201 -31.811406 40.496335 28.450183 5.356645 -4.118115 30.512668 31.459890 25.292094 20.368758 39.749219 -39.524838 0.812527 18.080135 48.491114 -44.673081 -1.976564 10.676832 3.086485 -18.943670 45.848733 28.023547 -24.512555 29.041116 0.827005 37.708019 -5.084403 -5.833447 -32.451840 -38.086726 0.810215 -2.625119 -45.646071 45.890574 -7.188757 6.324845 24.032469 -26.170134 8.442645 -18.396652 32.227202 44.000740 0.811329 -44.744832 -12.181054 -39.902303 42.818398 21.281749 0.896200 10.730816 1.692174 -23.890711 -37.667260 -6.036037 0.608726 -17.213506 -24.099277 8.666926 46.305716 -45.408493 0.810199 -7.026391 10.724513 43.596518 -32.559822 21.898043 0.947478 18.669652 -31.798190 -46.275217 14.471153 29.908939 0.848514 -10.422432 -11.543816 -33.436904 4.216266 42.773984 0.814836 46.632331 28.032365 -7.124067 23.283960 45.190862 0.810242 4.490777 43.925903 -40.916125 -5.221790 -21.780518 0.920414 12.835651 9.741484 46.300515 32.957451 18.076507 1.041521 47.754392 -46.194706 -10.223369 -31.523988 -16.838010 0.829429 -47.674438 48.216798 8.829281 14.973500 -6.410039 1.177003 -43.562689 32.460749 -35.056900 38.449247 31.799381 0.827073 27.032237 9.061826 -40.083884 32.834781 -4.061196 1.632400 49.389458 -16.408615 47.178815 29.599882 -12.217880 1.560470 -36.551665 -16.010105 -21.259103 -0.567310 2.435893 184.311973 34.831207 -48.455869 9.798101 -26.583184 41.250786 0.810322 19.577733 -41.336198 16.177793 24.158029 28.286904 0.815240 18.574578 -33.198260 38.357865 26.543002 -40.375625 0.817906 17.484584 39.484212 33.657971 -18.196506 49.062123 0.812919 -30.007931 3.940443 -14.974688 -41.071891 3.182902 0.750212 43.053971 -32.366022 -46.953476 -9.824036 15.769397 1.331100 -25.696916 -8.801438 -15.603879 -3.044323 -1.295588 -174.566759 42.604313 16.055432 33.423682 46.143027 -16.507183 0.917585 -5.696139 -39.071024 22.148098 -13.078285 37.448504 0.813447 9.858152 46.657041 29.916705 -3.971773 -11.252939 1.654730 20.352417 -47.642468 44.084500 -48.693927 -5.605602 0.504981 16.920586 40.572975 -29.563226 36.516751 -18.190272 0.898500 -26.057110 46.244550 -35.980986 -8.787789 -29.235222 0.836474 -38.048816 -31.701949 -32.644927 48.471592 -1.015125 0.977160 -26.534098 -0.117837 -32.053149 5.573735 45.374962 0.813533 29.556932 -34.066819 18.849035 -44.895463 -19.999870 0.865351 -45.344400 30.911550 41.132812 -9.264613 7.950612 8.241941 -18.136797 -4.032801 6.432492 -36.292627 21.754264 0.813037 -4.096343 -30.057456 -41.456747 -28.257881 28.951566 0.846180 19.343386 -49.958058 -3.503207 -35.603552 -28.480701 0.809507 -45.188896 37.033993 8.183277 0.133982 9.904529 0.948861 -45.380741 34.634432 34.707408 38.339049 -0.512210 1.207039 9.179333 37.827249 13.059769 -42.732639 -38.908429 0.811280 -26.427543 44.948180 48.658279 -42.926706 23.562730 0.952700 -8.522330 -17.401935 19.215859 -16.789534 -32.052233 0.814958 -38.143878 -26.566943 16.974321 -48.302281 -20.497996 0.855640 -35.802982 -10.666909 -49.974072 -39.195800 -19.963192 1.138133 -17.906618 2.541532 17.157688 37.703687 -3.912550 0.910129 -41.071439 36.013007 41.952627 -6.164043 -25.553256 0.871033 29.107842 6.942059 -16.200741 -43.391611 22.359818 0.831095 -19.210456 34.411131 38.301740 26.804562 33.796981 0.826456 42.050003 -20.504093 8.602847 8.966397 -25.803150 0.811982 20.895045 -13.060964 -32.969847 -47.740723 -13.715231 0.505689 -45.517444 15.146649 31.871835 45.069565 49.476322 0.812466 -14.604554 -41.244557 -42.545712 37.058720 3.744974 1.445283 -34.673943 -1.009305 34.502424 36.947244 -43.242230 0.814905 44.836979 14.401669 -0.007946 21.375105 26.976138 0.810260 33.055770 -10.392587 -36.354296 -28.597513 -4.619474 -0.240056 -27.768524 19.254563 7.248432 -22.713119 44.464982 0.810244 28.433324 37.183943 49.812550 27.498434 42.740129 0.820896 8.518258 -24.445226 -4.532775 -28.571210 -46.724718 0.810013 0.488598 -42.283130 -2.392995 -26.907273 -11.469588 0.619710 9.514903 31.683469 38.459112 -5.495027 45.044224 0.815313 0.617565 -16.196214 -44.786243 6.538221 -8.026002 7.461386 34.209116 -44.060630 21.588444 -12.453112 -26.162187 0.823635 -29.738360 22.024459 12.775240 -8.811613 -17.324076 0.838970 22.262171 -13.089167 27.257172 -0.643003 3.067015 122.084505 -47.306782 -37.208145 -38.497936 0.268872 -44.937197 0.815210 -45.696690 18.244452 22.802662 -26.674311 46.599877 0.811651 13.931069 10.303461 44.131205 30.469101 -48.090616 0.815305 -15.107047 8.033482 -14.340037 -8.392369 -46.607611 0.810652 -5.638384 5.576901 12.134404 45.438727 -46.046980 0.810482 44.845009 23.650280 13.831340 -23.996853 4.237616 0.528690 4.455343 -23.332377 -19.765808 -1.679358 -9.936039 1.371381 35.292543 35.587223 34.872511 31.519270 0.959671 1.531576 49.247727 -31.460746 -30.660030 18.264839 46.265285 0.812922 10.468699 -31.257985 46.866829 43.574516 11.918000 1.177295 31.372505 -4.672605 -44.025573 4.603904 14.831642 1.392119 31.608902 2.958759 42.669121 -35.572130 2.506981 0.071225 -2.629680 -39.678488 -3.114702 41.021740 10.461576 0.806366 0.039181 22.487356 49.775674 -15.883236 42.914678 0.820725 34.191303 46.622029 -42.721226 -38.235404 -4.115144 0.200904 49.210683 4.045405 -40.375682 -31.013597 -44.965977 0.815858 -41.234945 -24.198475 -38.925459 24.145923 -1.098057 2.750434 -37.113349 27.886734 22.237926 -3.738538 -20.928215 0.849007 -11.072339 -29.571287 42.869241 23.575854 48.394785 0.814823 -2.688416 3.124421 29.576146 13.724521 -42.736617 0.813830 -43.794609 -27.307955 -6.490295 45.497892 -30.726366 0.810361 -45.438493 -20.867091 41.595201 -5.989174 -22.996116 0.899534 24.396164 -26.813593 17.924169 10.365473 -12.248244 0.999067 31.909562 28.666302 33.898979 -32.716795 -43.957948 0.814596 19.045556 -26.246494 3.665166 25.639925 -26.225150 0.809878 -42.578951 -12.793980 2.761396 -42.519298 16.113696 0.807775 -21.745835 27.490168 40.590918 -34.516218 -6.914483 0.016521 28.923947 4.411777 47.380404 43.193313 -49.569031 0.815371 42.780088 -42.627713 27.726061 34.155014 17.430190 0.896923 19.054669 -13.336716 34.850260 -46.244876 -31.352324 0.829815 14.995799 11.706190 20.387361 -13.252426 1.137563 -2.508737 -43.309406 12.517151 -13.018843 -40.727814 -0.086931 0.762025 -2.743703 -2.095403 -31.031736 -16.016746 -30.014845 0.827344 -19.199051 -24.042545 -49.442054 -32.807161 -48.290336 0.816545 -19.656490 24.438412 20.483380 6.023791 -27.400620 0.821270 34.542769 14.732696 22.901479 48.477222 -38.470898 0.813414 -4.518281 17.563451 -48.099411 20.135480 24.705622 0.899433 40.188211 2.011533 21.135761 -31.822922 -19.993617 0.858747 -24.481297 37.356013 -12.815584 5.433731 35.817894 0.811675 39.775580 -36.608676 35.548957 42.173880 39.850369 0.816998 3.905225 -26.393070 -14.813176 -39.951374 17.100886 0.895278 47.806524 19.028678 -44.698042 37.828928 45.244885 0.816924 30.320494 -21.703375 -15.644032 -25.460158 13.779247 0.956949 -39.185366 -22.369484 -7.231585 -18.268258 -15.687506 0.819788 35.420608 36.409277 27.864673 49.505154 -37.853953 0.815429 -0.303124 -18.764716 -27.545714 0.101085 -3.004046 134.412688 -22.767584 -40.598153 48.065184 -27.397162 -32.202849 0.841435 2.629256 -6.632962 -49.382946 -39.560624 -4.539490 0.087258 25.248030 -7.977901 -31.129624 21.235197 -10.781256 1.473696 37.471274 8.192569 -22.667577 10.164026 35.836615 0.814588 -13.990161 29.970029 22.587832 12.095780 9.039030 1.765366 -42.440519 12.230415 -35.650094 -37.863503 -8.300087 0.327867 -1.563487 -43.831638 -7.973593 -39.242025 0.474642 0.799638 -31.868115 37.070272 -35.864186 -2.445735 -42.720410 0.815739 17.006390 9.832159 -28.852850 -48.815668 -31.881226 0.823014 9.525500 -39.054296 -13.880867 -49.847957 -3.732001 0.785432 48.290108 -47.633195 34.307896 -41.153334 -45.529985 0.813937 -38.320635 42.382375 -0.715734 -10.753118 3.924056 0.256374 28.471206 47.932476 -22.777745 -47.195739 37.180249 0.814396 -5.638395 39.439468 -40.791812 -17.336044 33.747977 0.829060 6.649738 47.284895 -35.031568 -43.852483 2.776913 0.537729 -7.433068 42.284605 22.850455 -38.806734 -5.745851 0.634282 31.178227 36.110777 43.933280 9.972240 -37.864227 0.823856 -13.219852 -9.837117 14.934938 28.670509 -27.533201 0.815318 11.337982 23.483455 -48.504432 -30.171310 11.890491 -16.605140 10.190693 -2.622112 11.463972 9.641267 45.834692 0.810428 15.953081 -40.381268 -43.002242 -8.703777 -30.594613 0.840343 41.663508 -30.758778 -26.702773 -40.219335 18.787871 0.949173 32.733125 -47.806729 40.669071 37.996597 -13.601340 1.112783 -24.245214 -5.073414 -1.789581 47.427481 -37.125314 0.809999 24.597818 12.576364 -38.528666 41.225805 -9.255375 1.153357 49.523788 5.945303 -24.065820 21.948477 37.802849 0.814146 5.072707 42.200265 -21.538757 22.519047 -32.392472 0.816463 22.469123 -38.642026 -38.156880 31.301479 31.865318 0.829754 -20.991164 -33.839587 42.094590 -42.250478 32.490146 0.834200 16.926520 36.748678 38.851367 -36.774691 45.310702 0.815356 15.753230 -27.702270 45.578462 41.197904 -38.455727 0.823384 -5.532830 19.989848 -44.763661 21.393774 12.324273 1.761662 -34.297526 -33.654672 -23.965879 -27.014001 8.778819 -0.008502 12.593275 -21.177173 -33.171179 -24.944973 -9.747456 -3.861396 42.937361 23.250099 40.416780 19.452727 -38.113711 0.821362 -12.453404 14.188194 -14.310170 -5.020621 -12.164541 0.953314 43.523431 -23.313870 -5.265170 -46.290936 29.520385 0.810261 -35.352224 21.603518 -22.711658 15.711710 -33.420011 0.816182 -19.121512 -7.497815 39.000094 17.353331 5.790690 4.976524 21.693433 31.141973 -31.941850 47.263569 32.953925 0.822010 -26.502092 -8.918085 23.855959 -6.499153 11.923611 1.220680 10.180476 4.748032 -18.063661 -0.901000 -6.687473 3.212375 49.029538 16.177713 -24.824434 30.225673 42.385263 0.812813 -23.942886 1.398753 -47.843689 -49.524050 -16.418269 -0.552252 28.006016 -21.522648 -33.815298 -23.606731 8.696264 -2.615963 -7.364024 -21.913908 -43.431175 -13.844590 -41.555975 0.819157 34.843135 39.931343 25.910041 -4.538753 45.899266 0.812293 8.926535 -15.614703 5.161280 39.817522 9.888117 0.813940 49.945405 -36.306822 44.661473 -9.060781 31.790207 0.838145 35.320807 19.953155 21.720146 32.440956 3.736085 1.067099 43.641008 -12.683282 4.424218 18.147743 41.356393 0.810055 -8.376671 -14.368587 37.351704 -44.237187 -23.711205 0.891842 -0.158290 -44.705529 25.790164 -31.981326 5.625137 0.441939 -38.924860 -32.547080 -25.997831 23.129933 48.209605 0.811763 -25.847995 29.603089 11.192972 16.565507 -40.572225 0.810779 -41.130616 2.639645 -0.109467 -44.829212 -39.475273 0.810011 38.320741 6.526826 4.389071 11.261037 -16.025274 0.815132 12.706333 45.681941 -31.673414 -5.586667 41.991828 0.814847 -16.059188 -17.476156 -33.373842 -29.579030 18.271769 0.987060 -0.607606 -4.107240 1.089034 -12.944612 -29.166738 0.809969 23.316303 -13.666653 -37.405042 35.375549 -26.801484 0.846755 -5.714316 -2.957256 4.957198 33.278535 18.942107 0.812083 -40.794621 -2.969413 -7.324963 25.761833 17.286447 0.817317 -41.794130 4.929306 -16.555169 -41.483804 45.448127 0.810961 -26.933623 -43.090186 -8.895022 12.691776 2.358859 1.250900 5.683001 35.822804 37.525784 1.286778 -43.971921 0.815585 20.686753 34.627408 26.155532 -2.274231 5.180908 15.310525 4.509137 47.269243 15.613573 -18.454452 39.252018 0.811694 36.706622 -24.595915 -7.733765 32.204513 -7.247879 0.831471 -13.602779 -40.577201 -46.734489 0.283802 -10.108390 3.822251 45.943182 -0.276322 -46.230948 12.861696 24.569889 0.895104 -11.561747 5.016464 12.753338 20.583934 -4.623360 1.135553 -28.526841 -29.355493 -43.324086 17.277353 -4.928101 6.552672 -10.957544 -6.333497 32.152131 -17.784848 -39.846872 0.815965 -47.347641 42.317191 18.096863 -47.136087 36.875904 0.812938 6.354755 44.363238 -27.901395 -45.544637 -19.256713 1.000243 23.566099 -35.156532 23.091181 0.977577 24.995933 0.829039 -36.005240 34.596474 -49.670272 36.058247 -10.942210 1.510342 -21.320481 49.336865 -2.232360 -17.368700 48.236327 0.810102 3.078966 44.618194 35.106241 5.100689 -31.920293 0.827724 -28.627093 25.901497 32.647858 -21.277012 6.031606 -1.664375 4.464389 -23.243337 22.062870 49.136746 -8.407834 0.878776 10.163762 -28.634560 17.157861 -35.403941 -48.967076 0.810702 23.613860 8.709193 31.737873 35.465775 -43.911352 0.813935 7.116206 -40.509406 5.779401 34.495246 -30.835441 0.810100 39.152978 3.115904 42.916778 39.794565 25.964275 0.863249 9.840243 -13.774584 -6.066825 18.661233 -40.985552 0.810142 -9.538009 25.492980 -43.850862 22.914787 25.708125 0.873356 -42.149439 35.516602 40.291725 15.424717 23.025773 0.894549 -25.466457 12.367405 46.077592 -15.831376 21.466969 0.958552 -2.545575 40.864235 -12.953858 -2.431164 -13.689552 0.890999 13.721232 -41.256913 38.285441 -9.550700 32.678059 0.828401 -48.565736 -35.386347 -20.533360 -41.234779 -35.259889 0.813896 -14.738444 46.425116 44.718351 42.122146 24.011213 0.885493 41.634003 45.658354 -19.734491 26.622329 -29.341939 0.818094 -12.419521 0.764229 18.129002 32.872521 48.257736 0.810880 -22.565770 18.372634 -2.125966 -21.837553 7.772914 0.757769 19.186392 -42.770443 16.781427 -0.756478 -30.677078 0.814167 12.521784 -11.772295 -34.508707 6.672318 -37.623669 0.818607 -16.532093 -17.564679 -22.258181 16.389482 31.751258 0.816915 32.208750 9.930259 -34.134926 -27.950846 -7.307261 -0.358756 33.390743 -38.425057 -25.846569 -13.583297 -25.023784 0.834010 20.645063 -17.096961 -11.187936 4.357182 -38.926418 0.810722 37.854786 -8.629812 24.570295 42.693094 -2.320784 0.949976 5.875160 -0.128854 -27.209245 -19.695708 -27.833022 0.828170 8.179342 36.795419 6.352192 -46.670481 -43.981226 0.810258 -25.900722 6.900377 -17.020611 -37.641139 -7.724371 0.700274 35.062350 17.931742 -47.118567 8.979736 -13.578815 1.751215 7.985423 43.115087 -20.989447 0.109459 30.161035 0.818268 28.385811 18.275171 -10.228714 33.307796 -26.876975 0.813089 -44.085676 -22.229833 45.067495 3.053437 -20.571695 0.974123 2.866293 22.790139 29.456445 -19.730215 47.582530 0.812514 38.462066 -30.881045 32.180038 35.952345 -46.340394 0.813183 -15.196763 0.427353 43.790472 -13.251593 33.077176 0.833396 -43.477235 -27.126718 -39.391158 36.707627 -28.117696 0.843642 -45.231162 25.225918 27.103741 17.892615 32.229568 0.820111 15.005824 0.379421 16.748631 28.234056 2.332545 1.036978 -19.496035 21.006717 -2.393059 -13.497505 39.285273 0.810121 7.984673 22.295443 -43.737239 0.696894 -0.321771 99855.790823 22.836719 47.004270 -12.220533 -7.907721 13.687477 0.885909 37.030938 13.432825 5.724954 -48.077964 -42.918306 0.810184 -23.743383 44.721724 32.413325 13.910984 45.334427 0.813728 38.216410 -0.657301 -8.118726 -19.926340 -23.978862 0.812944 2.705611 -22.334977 -31.999850 28.419320 -21.706825 0.871206 24.500708 39.502546 -22.637117 4.135751 27.056100 0.824657 13.933078 -1.301689 -39.420272 -31.591718 -22.395704 0.910042 -25.150882 -20.377036 2.936121 33.703574 -15.005587 0.809110 -31.187589 -41.022734 43.508412 -4.789181 35.692910 0.826760 42.910105 32.689795 -21.714987 39.722631 -43.546995 0.811973 -34.348872 -39.856497 3.882294 -33.813086 -34.489612 0.809879 -26.717063 -27.425863 40.268787 34.511802 0.962601 1.520830 23.243224 47.245576 23.286040 -33.638435 18.904370 0.896002 -40.823606 40.528262 0.737155 -28.938106 -1.378869 0.789267 37.014522 36.555356 26.707533 1.011442 -28.159551 0.827105 37.910501 -7.719062 12.441312 -39.187625 35.109685 0.811483 -34.688186 -37.529035 -37.318656 1.749285 -8.274906 5.059011 28.210387 1.913659 34.159098 2.448368 44.215896 0.814456 28.351127 8.850208 32.211152 9.724637 2.642473 20.203417 -8.289886 47.601547 -7.131204 47.279089 24.425532 0.812734 -15.550090 -43.037956 30.502541 12.636433 4.611473 7.172101 -37.254532 1.685056 -13.845031 -42.781869 47.689388 0.810550 -46.425558 14.495924 24.967529 0.080723 32.490737 0.818282 -2.554639 42.320173 17.371633 -22.908217 -41.186171 0.811678 -49.927609 -15.787413 5.758898 -23.273186 3.036475 0.776989 34.074189 20.567284 47.221755 42.381011 -10.925346 1.245311 -15.526378 10.443522 -39.091734 -23.702404 -29.785579 0.838827 29.511246 31.193925 32.201847 7.379567 -9.452167 2.667240 -48.584883 46.568071 19.812818 -22.538179 -25.113642 0.825892 17.237398 -40.270326 -3.519663 -47.008023 -42.498526 0.809934 -38.433012 8.487648 -0.333103 3.740893 -7.141181 0.841832 25.878525 15.362667 15.184257 -35.817092 7.224001 0.706845 11.099343 -26.526851 -26.473855 41.484122 -47.191981 0.811985 7.979331 10.787794 13.790092 -17.488368 -6.535955 -0.362538 36.885067 -31.003409 -21.921195 -0.186766 8.469441 2.113088 0.727818 -24.831699 -5.655467 -38.968423 26.759080 0.810483 -9.079900 12.301698 -14.369900 6.640841 -48.008278 0.810589 43.606157 -1.697008 12.522811 -15.166743 18.592869 0.829449 33.791443 42.192641 -45.402987 -35.459084 36.105017 0.828313 28.279359 22.213479 12.326991 -22.521322 27.159488 0.814545 38.502465 -3.115719 3.045466 -49.318473 25.795513 0.810303 -26.294477 9.120208 27.712207 -44.758749 24.958526 0.845679 -19.757041 45.312786 15.773537 -23.855736 -8.212299 0.165569 -3.617720 -29.096653 46.601660 -37.266545 -24.948574 0.900692 28.109553 43.421987 29.190573 -5.436476 43.450737 0.813604 -30.003041 25.693059 -0.819861 7.313078 -20.073522 0.811595 45.543445 36.635168 -42.565679 31.343645 38.974840 0.821480 -44.150286 38.966048 -9.781494 -33.451842 -24.312220 0.815553 -31.664552 44.396370 38.502740 -25.265420 -23.662607 0.883338 -10.748281 -17.352328 -7.996289 -9.091938 28.034563 0.811237 -49.573635 -3.404256 -28.172291 -31.537984 19.887391 0.897860 -31.957040 -0.317179 17.550375 -15.041021 -27.900434 0.817439 -0.810413 -18.029858 -4.026447 17.820683 -24.569064 0.810166 -34.245316 -22.141112 -19.091398 43.616086 9.647147 0.877949 -37.974426 26.985689 49.519939 28.131190 22.794434 0.935150 5.798141 47.717415 24.762617 -45.516142 37.434993 0.814980 -21.145113 -49.868359 -18.766302 -44.140295 5.914696 0.741190 -1.021168 23.338759 -45.796189 -9.143944 49.233232 0.815244 -2.947938 -9.401613 -35.658121 -40.767564 32.054094 0.828420 29.261187 -37.605954 40.999509 20.182649 -42.170869 0.817618 21.776216 -3.872421 -39.003088 46.456922 15.324470 0.973577 -18.999303 36.680050 26.996689 20.741878 30.711998 0.822246 39.991509 -45.463164 -41.689284 5.145758 -28.427776 0.848117 28.883960 18.409335 -20.021405 -10.047151 -12.353007 1.078013 -38.436452 8.664738 -34.341617 12.681714 2.818540 11.005671 -20.355874 33.473361 -26.283741 28.212242 6.018968 1.349401 48.784983 29.959930 24.028978 30.153038 -11.649446 1.025854 -14.022184 18.720424 -25.412629 44.999199 28.054047 0.823863 -47.976067 -22.910027 -30.692117 21.641930 12.710888 1.204931 -25.566698 -43.807650 26.349586 35.179744 -42.105489 0.813051 43.986860 -49.935607 21.816307 -9.284101 4.737200 -46.440878 44.885857 44.501405 28.122316 37.633186 5.179170 1.085920 -15.557100 42.339977 40.159078 -21.925195 12.619259 2.223417 -4.927152 -15.705474 41.080726 46.726578 10.354885 1.072612 -36.547270 -7.344271 45.898691 5.094417 -36.362041 0.827528 -2.220106 -42.291668 43.653929 6.411971 -16.162814 1.209874 18.370121 -32.628741 -49.658253 45.891633 -17.407213 1.020697 27.831442 -13.043373 -11.154508 -8.191401 -35.581222 0.811053 21.826996 7.835070 32.379927 -35.084141 -42.696232 0.814671 -43.263525 -48.277253 17.031235 18.670662 20.897012 0.829193 33.280002 -18.561199 17.754173 -16.189512 -41.788838 0.811449 -6.460433 -25.466077 23.293387 24.129440 16.300166 0.903646 -12.697464 25.459274 11.920740 27.316613 29.215929 0.813114 48.535806 33.493427 29.350748 43.994061 31.792544 0.821824 -4.382917 -5.415857 17.665237 -17.067572 -24.354491 0.822929 14.262956 4.773817 -33.527320 -15.412282 -2.899459 -4.940436 0.650031 -29.728443 -35.659793 20.589937 29.252549 0.834690 -41.978610 -39.351319 41.960998 -38.904765 3.704572 0.271022 3.584657 -41.524093 -46.695712 -26.889518 12.929766 3.342331 46.740038 8.827683 48.931433 -23.779202 -18.682561 1.125065 -32.740681 36.739702 34.609641 -23.563297 2.593424 -0.900116 -48.945184 -20.333386 -23.474734 5.973562 -5.619416 7.521446 46.691435 -43.699775 -33.952706 24.655678 -20.761218 0.892835 2.165849 0.851364 -0.173750 37.022446 10.498920 0.810165 -47.223709 -39.843263 28.593752 -46.883882 26.350921 0.838855 11.810687 -34.578362 -38.942931 -29.869362 3.838559 -0.221906
746974fff6462293403bcedb0fc9682b6eb21e68
449d555969bfd7befe906877abab098c6e63a0e8
/1076/CH16/EX16.13/16_13.sce
d1a09e4f5cf1d98c9afc51f981e5aa4eafb5b409
[]
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
334
sce
16_13.sce
clear clc V=250 L=[ 150 50 80 40 70 60 50 150 0 20 60 95 120 130 150 180 ] r=.1/(2*500) D=L(1,:) I1=L(2,:)' I2=ones(8,1) dv1=2*r*D*I1 dv2=2*r*D*I2 Ia=dv1/dv2 Ib=L(length(L))-Ia Vc=V-(2*r*((Ia*D(1))+((Ia-I1(2))*D(2))+((Ia-I1(3))*D(3)))) mprintf("Ia= %.2f A, Ib= %.2f A, Vmin at C = %.3f V",Ia, Ib, Vc)
8e289a4694e684d9ffef0eec6b68495961785d98
449d555969bfd7befe906877abab098c6e63a0e8
/3733/CH34/EX34.35/Ex34_35.sce
f6ae07c40e5662e84bfb65e2fb993ff714d2fa59
[]
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
803
sce
Ex34_35.sce
// Example 34_35 clc;funcprot(0); //Given data P=30;// MW Pc=10*10^7;// Plant cost in rupees Ii=13/100;// Interest and insurance D=5/100;// Depriciation Mc=50*10^5;// Plant maintainence cost in rupees Fc=700*10^5;// Fuel cost in rupees Lc=25*10^5;// Lubricating cost in rupees LC=75*10^5;// Labour cost in rupees MD=25;// MW F_l=0.75;// Load factor p=5;// Profit expected in paise/kWh //Calculation L_a=(MD*F_l);// Average load in MW E_g=L_a*10^3*24*365;// Energy generated/year in kWh Iic=Ii*Pc;// Interest and insurance cost in rupees D=D*Pc;// Depriciation in rupees Pr=(p/100)*E_g;// Profit required in rupees Tc=Iic+D+Mc+Fc+Lc+LC+Pr;// Total cost in rupees Ce=(Tc*100)/(E_g);// Cost of energy generated in paise/kWh printf('\nCost of energy generated=%0.1f paise/kWh',Ce);
994ab6172902fc868a839eed8c42969a74f8e248
449d555969bfd7befe906877abab098c6e63a0e8
/1619/CH1/EX1.14.3/Example1_14_3.sce
54e9db7bf27b1c5346b5336bf228f2e8bc31c332
[]
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
537
sce
Example1_14_3.sce
//Example 1.14.3 // to calculate the normalise frequency.. clc; clear; a = 40*10^-6; //radius of core... del = 0.015; //relative RI difference.. lamda= 0.85*10^-6; //wavelength of operation.. n1=1.48; //RI of core.. NA = n1*sqrt(2*del); //Numerical Aperture.. printf(" The Numerical Aperture is %.4f",NA); V = 2*%pi*a*NA/lamda; //normalised frequency printf(" \n\nThe Normalised frequency is %.2f",V); M = V^2/2; //number of modes.. printf("\n\nThe number of modes in the fibre are %d",M);
84b965e9b4c759258f11b2701749937fa02db36c
3c47dba28e5d43bda9b77dca3b741855c25d4802
/microdaq/macros/mdaqPing.sci
721755e2be09633a727c98c815cad5f3fc0e0890
[ "BSD-3-Clause" ]
permissive
microdaq/Scilab
78dd3b4a891e39ec20ebc4e9b77572fd12c90947
ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf
refs/heads/master
2021-09-29T11:55:21.963637
2019-10-18T09:47:29
2019-10-18T09:47:29
35,049,912
6
3
BSD-3-Clause
2019-10-18T09:47:30
2015-05-04T17:48:48
Scilab
UTF-8
Scilab
false
false
851
sci
mdaqPing.sci
function result = mdaqPing() [mdaq_ip_addr, res] = mdaq_get_ip(); if res < 0 then disp("Unable to get MicroDAQ IP address - run microdaq_setup!"); result = %F; else mprintf('Connecting to MicroDAQ@%s...',mdaq_ip_addr); connection_id = mdaqOpen(); if connection_id < 0 then mprintf(' ERROR!\nUnable to connect to MicroDAQ device, check your configuration!\n'); mprintf('Scilab is configured with following settings:\n'); mprintf('IP address: %s, port %d\n', mdaq_ip_addr, 4343); mprintf('If MicroDAQ has different IP address use mdaqSetIP function to set correct IP address.\n\n'); result = %F; else mprintf('OK!\n'); mdaq_disconnect(connection_id); result = %T; end end endfunction
f8f02481ccd35a5466194483c09e00eb7b1952f0
449d555969bfd7befe906877abab098c6e63a0e8
/3434/CH6/EX6.3/Ex6_3.sce
b3744b494582a9471ab0ac4370503c5a890c7f94
[]
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
375
sce
Ex6_3.sce
clc clear // Given data : Pout=1*735 // motor power output in W Peffi=0.85 // motor efficiency cellarea=9*4*125*125e-6 // area in m^2 Rad=1000 //incident radiation in kW/m^2 celleffi=0.12 // cell efficiency // soln. Pin=Pout/Peffi // power req by motor in W N=Pin/(Rad*cellarea*celleffi) // number of modules printf("%.f number of modules are required",N)
8a8e6970d46fb462e790ac36aa8a6d532e32b901
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH27/EX27.2/Ex27_2.sce
4b16902e6f613f583c16e6b6c46f85f3922323b7
[]
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
73
sce
Ex27_2.sce
clc; //e.g 27.2 AV=1000; AV1=10; beta=((AV/AV1)-1)/AV; disp(beta);
0207250cb0a35207d92ad570ea8654768c1208e2
3c47dba28e5d43bda9b77dca3b741855c25d4802
/microdaq/tests/AIO_COMPLEX_TEST/scan_testbench.sce
eee1460f85baaf655b2fff13e570374c74d0e863
[ "BSD-3-Clause" ]
permissive
microdaq/Scilab
78dd3b4a891e39ec20ebc4e9b77572fd12c90947
ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf
refs/heads/master
2021-09-29T11:55:21.963637
2019-10-18T09:47:29
2019-10-18T09:47:29
35,049,912
6
3
BSD-3-Clause
2019-10-18T09:47:30
2015-05-04T17:48:48
Scilab
UTF-8
Scilab
false
false
714
sce
scan_testbench.sce
//--------------- LOAD UTILS -------------------- clc; mdaqClose(); mdaqHWInfo(); if exists("mdaq_ao_test") == 0 then exec(mdaqToolboxPath() + "tests\AIO_COMPLEX_TEST\mdaq_aio_test_utils.sci", -1); end exec(mdaqToolboxPath() + "tests\AIO_COMPLEX_TEST\test_defines.sce", -1); //--------------- BEGIN TEST -------------------- // Check errors exec(mdaqToolboxPath() + "tests\AIO_COMPLEX_TEST\scan_errors_test.sce", -1); // Stream mode exec(mdaqToolboxPath() + "tests\AIO_COMPLEX_TEST\scan_stream1_test.sce", -1); // Periodic mode exec(mdaqToolboxPath() + "tests\AIO_COMPLEX_TEST\scan_periodic1_test.sce", -1); // Simple test exec(mdaqToolboxPath() + "tests\AIO_COMPLEX_TEST\ao_simple_test.sce", -1);
138d3ffb327dc58940699f7caef893109ba9368e
449d555969bfd7befe906877abab098c6e63a0e8
/3825/CH7/EX7.9/Ex7_9.sce
72044e6b2e0877f5d586d0d1f79b75ab3cbe574f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
186
sce
Ex7_9.sce
clc T=500 //temperature in Kelvin W=250 //watts of motor h=2*3600 //time of operation in seconds Q=W*h deltaS=Q/T mprintf("deltaS=%fkJ/K",deltaS/1000)//ans in textbook is wrong
1e8a0991ab7ddc0ef33a2025a42fa0088758f000
449d555969bfd7befe906877abab098c6e63a0e8
/2753/CH3/EX3.1/Ex3_1.sce
ea1de6f885dc6d6d7bb9aa6f41cb34472b22c293
[]
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
396
sce
Ex3_1.sce
//Example 3.1: clc; clear; close; //given data : Beta=50;//amlification factor dbb=1;//percentage variation in degree celsius daa=dbb/50;//variation in degree celsius format('v',5) disp(daa,"(i) variation in alpha for a silicon BJT is ,(%/degree-Celsius)=") temp=325;//in K t=25;//degree celsius Beta1=dbb*t;//in % nBeta=Beta+(Beta1/100)*t;// format('v',6) disp(nBeta,"new value of Beta is ,=")
4f1dd6a7df0627c9bf42afc854319526143c4168
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/TF37.prev.tst
7d85a8409a3104df9111e2405899a65f60049d92
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
7,503
tst
TF37.prev.tst
considerNonPrimitive Expanding for base=2, level=4, reasons+features=base,primitive,same,similiar igtriv,norm Refined variables=a,b,c [0+1a,0+1b,0+1c]: unknown -> [1] [0,0,0] 2a³+b³-c³ ---------------- level 0 expanding queue[0]^-1,meter=[1,2,2]: 2a³+b³-c³ [0+1a,0+2b,0+2c]: unknown -> [1] [0,0,0] a³+4b³-4c³ [0+1a,1+2b,1+2c]: unknown -> [2] [0,1,1] a³+3b+6b²+4b³-3c-6c²-4c³ endexp[0] ---------------- level 1 expanding queue[1]^0,meter=[2,1,1]: a³+4b³-4c³ [0+2a,0+2b,0+2c]: non-primitive endexp[1] expanding queue[2]^0,meter=[2,2,2]: a³+3b+6b²+4b³-3c-6c²-4c³ [0+2a,1+4b,1+4c]: unknown -> [3] [0,0,0] 4a³+3b+12b²+16b³-3c-12c²-16c³ [1+2a,3+4b,1+4c]: unknown -> [4] [1,1,0] 3a+6a²+4a³+27b+36b²+16b³-3c-12c²-16c³+7 [1+2a,1+4b,3+4c]: unknown -> [5] [1,0,1] 3a+6a²+4a³+3b+12b²+16b³-27c-36c²-16c³-6 [0+2a,3+4b,3+4c]: unknown -> [6] [0,1,1] 4a³+27b+36b²+16b³-27c-36c²-16c³ endexp[2] ---------------- level 2 expanding queue[3]^2,meter=[1,2,2]: 4a³+3b+12b²+16b³-3c-12c²-16c³ [0+2a,1+8b,1+8c]: unknown -> [7] [0,0,0] 2a³+3b+24b²+64b³-3c-24c²-64c³ [0+2a,5+8b,5+8c]: unknown -> [8] [0,1,1] 2a³+75b+120b²+64b³-75c-120c²-64c³ endexp[3] expanding queue[4]^2,meter=[2,2,2]: 3a+6a²+4a³+27b+36b²+16b³-3c-12c²-16c³+7 [3+4a,3+8b,1+8c]: unknown -> [9] [1,0,0] 27a+36a²+16a³+27b+72b²+64b³-3c-24c²-64c³+10 [1+4a,7+8b,1+8c]: unknown -> [10] [0,1,0] 3a+12a²+16a³+147b+168b²+64b³-3c-24c²-64c³+43 [1+4a,3+8b,5+8c]: unknown -> [11] [0,0,1] 3a+12a²+16a³+27b+72b²+64b³-75c-120c²-64c³-12 [3+4a,7+8b,5+8c]: unknown -> [12] [1,1,1] 27a+36a²+16a³+147b+168b²+64b³-75c-120c²-64c³+34 endexp[4] expanding queue[5]^2,meter=[2,2,2]: 3a+6a²+4a³+3b+12b²+16b³-27c-36c²-16c³-6 [1+4a,1+8b,3+8c]: unknown -> [13] [0,0,0] 3a+12a²+16a³+3b+24b²+64b³-27c-72c²-64c³-3 [3+4a,5+8b,3+8c]: unknown -> [14] [1,1,0] 27a+36a²+16a³+75b+120b²+64b³-27c-72c²-64c³+19 [3+4a,1+8b,7+8c]: unknown -> [15] [1,0,1] 27a+36a²+16a³+3b+24b²+64b³-147c-168c²-64c³-36 [1+4a,5+8b,7+8c]: unknown -> [16] [0,1,1] 3a+12a²+16a³+75b+120b²+64b³-147c-168c²-64c³-27 endexp[5] expanding queue[6]^2,meter=[1,2,2]: 4a³+27b+36b²+16b³-27c-36c²-16c³ [0+2a,3+8b,3+8c]: unknown -> [17] [0,0,0] 2a³+27b+72b²+64b³-27c-72c²-64c³ [0+2a,7+8b,7+8c]: unknown -> [18] [0,1,1] 2a³+147b+168b²+64b³-147c-168c²-64c³ endexp[6] ---------------- level 3 expanding queue[7]^3,meter=[1,2,2]: 2a³+3b+24b²+64b³-3c-24c²-64c³ [0+2a,1+16b,1+16c]: unknown -> [19] [0,0,0] a³+3b+48b²+256b³-3c-48c²-256c³ [0+2a,9+16b,9+16c]: unknown -> [20] [0,1,1] a³+243b+432b²+256b³-243c-432c²-256c³ endexp[7] expanding queue[8]^3,meter=[1,2,2]: 2a³+75b+120b²+64b³-75c-120c²-64c³ [0+2a,5+16b,5+16c]: unknown -> [21] [0,0,0] a³+75b+240b²+256b³-75c-240c²-256c³ [0+2a,13+16b,13+16c]: unknown -> [22] [0,1,1] a³+507b+624b²+256b³-507c-624c²-256c³ endexp[8] expanding queue[9]^4,meter=[2,2,2]: 27a+36a²+16a³+27b+72b²+64b³-3c-24c²-64c³+10 [3+8a,3+16b,1+16c]: unknown -> [23] [0,0,0] 27a+72a²+64a³+27b+144b²+256b³-3c-48c²-256c³+5 [7+8a,11+16b,1+16c]: unknown -> [24] [1,1,0] 147a+168a²+64a³+363b+528b²+256b³-3c-48c²-256c³+126 [7+8a,3+16b,9+16c]: unknown -> [25] [1,0,1] 147a+168a²+64a³+27b+144b²+256b³-243c-432c²-256c³-1 [3+8a,11+16b,9+16c]: unknown -> [26] [0,1,1] 27a+72a²+64a³+363b+528b²+256b³-243c-432c²-256c³+41 endexp[9] expanding queue[10]^4,meter=[2,2,2]: 3a+12a²+16a³+147b+168b²+64b³-3c-24c²-64c³+43 [5+8a,7+16b,1+16c]: unknown -> [27] [1,0,0] 75a+120a²+64a³+147b+336b²+256b³-3c-48c²-256c³+37 [1+8a,15+16b,1+16c]: unknown -> [28] [0,1,0] 3a+24a²+64a³+675b+720b²+256b³-3c-48c²-256c³+211 [1+8a,7+16b,9+16c]: unknown -> [29] [0,0,1] 3a+24a²+64a³+147b+336b²+256b³-243c-432c²-256c³-24 [5+8a,15+16b,9+16c]: unknown -> [30] [1,1,1] 75a+120a²+64a³+675b+720b²+256b³-243c-432c²-256c³+181 endexp[10] expanding queue[11]^4,meter=[2,2,2]: 3a+12a²+16a³+27b+72b²+64b³-75c-120c²-64c³-12 [1+8a,3+16b,5+16c]: unknown -> [31] [0,0,0] 3a+24a²+64a³+27b+144b²+256b³-75c-240c²-256c³-6 [5+8a,11+16b,5+16c]: unknown -> [32] [1,1,0] 75a+120a²+64a³+363b+528b²+256b³-75c-240c²-256c³+91 [5+8a,3+16b,13+16c]: unknown -> [33] [1,0,1] 75a+120a²+64a³+27b+144b²+256b³-507c-624c²-256c³-120 [1+8a,11+16b,13+16c]: unknown -> [34] [0,1,1] 3a+24a²+64a³+363b+528b²+256b³-507c-624c²-256c³-54 endexp[11] expanding queue[12]^4,meter=[2,2,2]: 27a+36a²+16a³+147b+168b²+64b³-75c-120c²-64c³+34 [3+8a,7+16b,5+16c]: unknown -> [35] [0,0,0] 27a+72a²+64a³+147b+336b²+256b³-75c-240c²-256c³+17 [7+8a,15+16b,5+16c]: unknown -> [36] [1,1,0] 147a+168a²+64a³+675b+720b²+256b³-75c-240c²-256c³+246 [7+8a,7+16b,13+16c]: unknown -> [37] [1,0,1] 147a+168a²+64a³+147b+336b²+256b³-507c-624c²-256c³-73 [3+8a,15+16b,13+16c]: unknown -> [38] [0,1,1] 27a+72a²+64a³+675b+720b²+256b³-507c-624c²-256c³+77 endexp[12] expanding queue[13]^5,meter=[2,2,2]: 3a+12a²+16a³+3b+24b²+64b³-27c-72c²-64c³-3 [5+8a,1+16b,3+16c]: unknown -> [39] [1,0,0] 75a+120a²+64a³+3b+48b²+256b³-27c-144c²-256c³+14 [1+8a,9+16b,3+16c]: unknown -> [40] [0,1,0] 3a+24a²+64a³+243b+432b²+256b³-27c-144c²-256c³+44 [1+8a,1+16b,11+16c]: unknown -> [41] [0,0,1] 3a+24a²+64a³+3b+48b²+256b³-363c-528c²-256c³-83 [5+8a,9+16b,11+16c]: unknown -> [42] [1,1,1] 75a+120a²+64a³+243b+432b²+256b³-363c-528c²-256c³-22 endexp[13] expanding queue[14]^5,meter=[2,2,2]: 27a+36a²+16a³+75b+120b²+64b³-27c-72c²-64c³+19 [7+8a,5+16b,3+16c]: unknown -> [43] [1,0,0] 147a+168a²+64a³+75b+240b²+256b³-27c-144c²-256c³+49 [3+8a,13+16b,3+16c]: unknown -> [44] [0,1,0] 27a+72a²+64a³+507b+624b²+256b³-27c-144c²-256c³+139 [3+8a,5+16b,11+16c]: unknown -> [45] [0,0,1] 27a+72a²+64a³+75b+240b²+256b³-363c-528c²-256c³-72 [7+8a,13+16b,11+16c]: unknown -> [46] [1,1,1] 147a+168a²+64a³+507b+624b²+256b³-363c-528c²-256c³+97 endexp[14] expanding queue[15]^5,meter=[2,2,2]: 27a+36a²+16a³+3b+24b²+64b³-147c-168c²-64c³-36 [3+8a,1+16b,7+16c]: unknown -> [47] [0,0,0] 27a+72a²+64a³+3b+48b²+256b³-147c-336c²-256c³-18 [7+8a,9+16b,7+16c]: unknown -> [48] [1,1,0] 147a+168a²+64a³+243b+432b²+256b³-147c-336c²-256c³+67 [7+8a,1+16b,15+16c]: unknown -> [49] [1,0,1] 147a+168a²+64a³+3b+48b²+256b³-675c-720c²-256c³-168 [3+8a,9+16b,15+16c]: unknown -> [50] [0,1,1] 27a+72a²+64a³+243b+432b²+256b³-675c-720c²-256c³-162 endexp[15] expanding queue[16]^5,meter=[2,2,2]: 3a+12a²+16a³+75b+120b²+64b³-147c-168c²-64c³-27 [5+8a,5+16b,7+16c]: unknown -> [51] [1,0,0] 75a+120a²+64a³+75b+240b²+256b³-147c-336c²-256c³+2 [1+8a,13+16b,7+16c]: unknown -> [52] [0,1,0] 3a+24a²+64a³+507b+624b²+256b³-147c-336c²-256c³+116 [1+8a,5+16b,15+16c]: unknown -> [53] [0,0,1] 3a+24a²+64a³+75b+240b²+256b³-675c-720c²-256c³-203 [5+8a,13+16b,15+16c]: unknown -> [54] [1,1,1] 75a+120a²+64a³+507b+624b²+256b³-675c-720c²-256c³-58 endexp[16] expanding queue[17]^6,meter=[1,2,2]: 2a³+27b+72b²+64b³-27c-72c²-64c³ [0+2a,3+16b,3+16c]: unknown -> [55] [0,0,0] a³+27b+144b²+256b³-27c-144c²-256c³ [0+2a,11+16b,11+16c]: unknown -> [56] [0,1,1] a³+363b+528b²+256b³-363c-528c²-256c³ endexp[17] expanding queue[18]^6,meter=[1,2,2]: 2a³+147b+168b²+64b³-147c-168c²-64c³ [0+2a,7+16b,7+16c]: unknown -> [57] [0,0,0] a³+147b+336b²+256b³-147c-336c²-256c³ [0+2a,15+16b,15+16c]: unknown -> [58] [0,1,1] a³+675b+720b²+256b³-675c-720c²-256c³ endexp[18] ---------------- level 4 Maximum level 4 [59] mod 2: 2a³+b³-c³
656adae21cbbb7e00e4d9feb05170f40bf1c5689
449d555969bfd7befe906877abab098c6e63a0e8
/1928/CH1/EX1.14.6/ex1_14_6.sce
28eae46d04353a19551dc3ff8b9e1a0e67a0777c
[]
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
549
sce
ex1_14_6.sce
//Chapter-1,Example1_14_6,pg 1-59 //if a plane cut at length m,n,p on the three crystal axes,then //m:n:p=xa:yb:zc //when primitive vectors of unit cell and numbers x,y,z,are related to miller indices (h,k,l)of the plane by relation //1/x:1/y:1/z=h:k:l //since a=b=c (crystal is simple cubic) //and (h,k,l)=(1,2,3) //therefore reciprocal r1=1/1 r2=1/2 r3=1/3 //taking LCM v=int32([1,2,3]) l=double(lcm(v)) m=(l*r1) n=(l*r2) p=(l*r3) printf("ratio of intercepts=") disp(m) disp(n) disp(p)
3baa31c1a9ed0b84911df8b64ed6843bc7fb19f7
449d555969bfd7befe906877abab098c6e63a0e8
/1106/CH3/EX3.27/ex3_27.sce
dd0fe91abf7f9398671589d479d949665bbb67df
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
420
sce
ex3_27.sce
// Example 3.27, page no-162 clear clc Ibmax=500*10^-9 Vcc=24 I2=50*10^-6 Vo=6 Av=100 fL=100 RL=5.6*10^3 I2=100*Ibmax R1=Vcc/(2*I2) R2=R1 Vi=Vo/Av I4=100*Ibmax R4=Vi/I4 R3=118.8*10^3 R1pR2=(R1+R2)/4 C1=1/(2*%pi*fL*R1pR2/10) C1=C1*10^6 printf('\nC1= %.3f uF',C1) C2=1/(2*%pi*fL*RL/10) C2=C2*10^6 printf('\nC2= %.3f uF',C2) C3=1/(2*%pi*fL*R4) C3=C3*10^6 printf('\nC3= %.3f uF',C3)
6d61be75e609433f7e91131c6387467506dc5787
449d555969bfd7befe906877abab098c6e63a0e8
/848/CH9/EX9.2/Example9_2.sce
d6657f7eac131dc1d08e07f93e776e97770ce680
[]
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,331
sce
Example9_2.sce
//clear// //Caption: Program to Find limiting conditions for pin-photodiode //Example9.3 //page 323 clear; clc; close; T =300;//room temperature in kelvin kB = 1.38054e-23; //Boltzmann's constant in Joules/k m =0.25; //modualtion index RIN_dB = -143; //Relative intensity in dB/Hz RIN = 10^(RIN_dB/10); Pc = (10^(0/10))*1e-3; //power coupled to optical fiber in dBm R = 0.6; //Responsivity A/w Be = 10e06; //bandwidth 10MHz ID = 10e-09; //dark current 10nA Req = 750; //equivalent resistance 750 ohm Ft = 10^(3/10); //in 3 dB M = 1; //Multiplication factor for pin photodiode R = 0.6; //responsivity in A/m q = 1.602e-19; //charge in coulombs p = 0:-1:-20; P = (10^(p/10))*1e-3; C_N_1 = 0.5*((m*R*P)^2)/(4*kB*T*Be*Ft/Req); C_N_3 = 0.5*m^2/(RIN*Be); C_N_2 = 0.5*m^2*R*P/(2*q*Be); figure plot(p,10*log10(C_N_1),'r') xlabel('Received Optical Power(dBm)') ylabel('Carrier-to-noise ratio(dB)') title('Carrier-to-noise ratio 1 (Preamplifier receiver noise)') figure plot(p,10*log10(C_N_2),'m') xlabel('Received Optical Power(dBm)') ylabel('Carrier-to-noise ratio(dB)') title('Carrier-to-noise ratio 2 (Quantum noise)') figure plot(p,10*log10(C_N_3)*ones(1,length(p))) xlabel('Received Optical Power(dBm)') ylabel('Carrier-to-noise ratio(dB)') title('Carrier-to-noise ratio 3 (Reflection noise)')
6c0c7fdf45025e879813b874b8a796a11c35430c
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/VRT TEST.sce
35eeea4f09e9c0dc7a3da3aa72470ccc8d117239
[]
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
64,685
sce
VRT TEST.sce
Name=VRT TEST PlayerCharacters=clicker BotCharacters=vrtbots.rot IsChallenge=true Timelimit=100.0 PlayerProfile=clicker AddedBots=vrtbots.rot PlayerMaxLives=0 BotMaxLives=20 PlayerTeam=1 BotTeams=2 MapName=cps.map MapScale=2.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=true TimeRefilledByKill=0.0 ScoreToWin=0.0 ScorePerDamage=0.0 ScorePerKill=0.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.05 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=not accurate due to bots :( WeaponHeroTag=iq DifficultyTag=1 AuthorsTag=bozott BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=false BlockFCT=false Description=test your vrt GameVersion=1.0.7.2 ScorePerDistance=0.0 [Aim Profile] Name=Aimbot MinReactionTime=0.1 MaxReactionTime=0.1 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=0.0 FlickSpeed=10.0 FlickError=0.0 TrackSpeed=10.0 TrackError=0.0 MaxTurnAngleFromPadCenter=360.0 MinRecenterTime=0.0 MaxRecenterTime=0.0 OptimalAimFOV=360.0 OuterAimPenalty=0.0 MaxError=0.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [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 [Bot Profile] Name=100bot DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot2 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms2 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot3 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms3 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot4 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms4 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot5 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms5 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot6 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms6 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot7 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms7 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot8 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms8 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot9 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms9 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot10 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms10 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot11 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms11 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot12 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms12 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot13 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms13 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot14 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms14 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot15 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms15 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot16 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms16 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot17 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms17 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot18 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms18 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot19 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms19 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot20 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms20 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Rotation Profile] Name=vrtbots ProfileNames=100bot;100bot2;100bot3;100bot4;100bot5;100bot6;100bot7;100bot8;100bot9;100bot10;100bot11;100bot12;100bot13;100bot14;100bot15;100bot16;100bot17;100bot18;100bot19;100bot20 ProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 Randomized=true [Character Profile] Name=clicker MaxHealth=10000.0 WeaponProfileNames=VRTray;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 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=800.0 Gravity=100.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=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.25 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=3.54 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms2 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=3.14 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms3 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=1.15 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms4 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=3.45 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms5 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=1.6 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms6 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=4.38 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms7 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=2.63 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms8 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=2.97 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms9 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms10 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=2.04 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms11 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=3.67 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms12 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=4.03 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms13 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=2.61 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms14 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=4.62 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms15 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=3.23 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms16 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=4.55 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms17 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=3.93 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms18 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=2.73 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms19 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=3.79 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms20 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=2.45 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Weapon Profile] Name=VRTray Type=Hitscan ShotsPerClick=1 DamagePerShot=500.0 KnockbackFactor=4.0 TimeBetweenShots=1.0 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.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.5 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=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=0 DecalSize=30.0 DelayAfterShooting=0.5 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 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.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=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 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=1.0,1.0,-1.0,5.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=1.0,1.0,-1.0,5.0 SpreadMCH=1.0,1.0,-1.0,5.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.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=kys100 Type=Hitscan ShotsPerClick=1 DamagePerShot=10.0 KnockbackFactor=0.0 TimeBetweenShots=0.01 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=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.5 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=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=0 DecalSize=30.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 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.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=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 Explosive=false Radius=10000.0 DamageAtCenter=10.0 DamageAtEdge=10.0 SelfDamageMultiplier=1.0 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=1.0,1.0,-1.0,5.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=1.0,1.0,-1.0,5.0 SpreadMCH=1.0,1.0,-1.0,5.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.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 -256.000000 0.000000 256.000000 0.000000 0.000000 256.000000 0.000000 0.000000 -256.000000 -256.000000 0.000000 -256.000000 -256.000000 -16.000000 256.000000 0.000000 -16.000000 256.000000 0.000000 -16.000000 -256.000000 -256.000000 -16.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128 brush vertices 0.000000 208.000000 272.000000 16.000000 208.000000 272.000000 16.000000 208.000000 -272.000000 0.000000 208.000000 -272.000000 0.000000 -16.000000 272.000000 16.000000 -16.000000 272.000000 16.000000 -16.000000 -272.000000 0.000000 -16.000000 -272.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 -256.000000 208.000000 -256.000000 0.000000 208.000000 -256.000000 0.000000 208.000000 -272.000000 -256.000000 208.000000 -272.000000 -256.000000 -16.000000 -256.000000 0.000000 -16.000000 -256.000000 0.000000 -16.000000 -272.000000 -256.000000 -16.000000 -272.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 -256.000000 208.000000 256.000000 0.000000 208.000000 256.000000 0.000000 208.000000 -256.000000 -256.000000 208.000000 -256.000000 -256.000000 192.000000 256.000000 0.000000 192.000000 256.000000 0.000000 192.000000 -256.000000 -256.000000 192.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128 brush vertices -272.000000 208.000000 272.000000 -256.000000 208.000000 272.000000 -256.000000 208.000000 -272.000000 -272.000000 208.000000 -272.000000 -272.000000 -16.000000 272.000000 -256.000000 -16.000000 272.000000 -256.000000 -16.000000 -272.000000 -272.000000 -16.000000 -272.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 -256.000000 208.000000 272.000000 0.000000 208.000000 272.000000 0.000000 208.000000 256.000000 -256.000000 208.000000 256.000000 -256.000000 -16.000000 272.000000 0.000000 -16.000000 272.000000 0.000000 -16.000000 256.000000 -256.000000 -16.000000 256.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 -128.000000 64.000000 -144.000000 Bool8 teamB 0 entity type CameraPath UInt8 posLerp 2 UInt8 angleLerp 2 entity type Effect Vector3 position 0.000000 256.000000 0.000000 String64 effectName internal/misc/reflectionprobe entity type Target Vector3 position 320.000000 256.000000 320.000000 Vector3 angles -135.000000 30.000000 0.000000 String32 name end entity type PlayerSpawn Vector3 position -128.000000 64.000000 144.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0
2378c1ea89dcc6bd0ac1f302db36348fbecb5eb5
499d051e2a4fa1bb1cc5ac86c4fe23ae88d60a6d
/scilab/plot_spec_round.sci
b9063961a164eee5e43bc5bf2aac2e5461f2d8e4
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gap-packages/automgrp
27ef69cfb6a97093e708c4241abc2f002053359b
bae72980572af919f6498e13e88d71feb9175875
refs/heads/master
2022-10-11T13:52:38.771189
2022-09-23T07:10:33
2022-09-23T07:10:33
209,880,291
2
0
MIT
2022-01-27T00:21:10
2019-09-20T21:00:32
GAP
UTF-8
Scilab
false
false
815
sci
plot_spec_round.sci
// plot_spec_round.sci function [sp] = plot_spec_round(autom, iter_num, prec) if ~(exists("iter_autmats")) then getf("/home/muntyan/math/automata/scilab/iter_autmats.sci") end num_states = size(autom); num_states = num_states(1); mats = list(1); for i=2:num_states mats = lstcat(mats, list(1)) end for i=1:iter_num mats = iter_autmats(mats, autom) end op = mats(1); for i=2:num_states op = op + mats(i) end op = op / num_states sp = spec(op) sp_for_plotting = sp for i=1:2^iter_num sp_for_plotting(i) = round(sp_for_plotting(i)*2^(prec)) / 2^(prec) end freq_matrix = nfreq(sp_for_plotting); num_eigens = size(freq_matrix); num_eigens = num_eigens(1); x = [1:num_eigens]; y =x; for i=1:num_eigens, x(i) = freq_matrix(i,1); y(i) = freq_matrix(i,2); end, plot2d3(x,y, strf="011", rect=[-1,0,1,max(y)]);
1f351fbb4034ee3a9322fddf3028f9379e8fe30d
449d555969bfd7befe906877abab098c6e63a0e8
/2627/CH3/EX3.9/Ex3_9.sce
eb374f28e53d802edaf38ff025b94fceca91569b
[]
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
Ex3_9.sce
//Ex 3.9 clc;clear;close; format('v',5); R=12;//ohm(Coil resistance) L=0.1;//H(Coil Inductance) V=100;//V f=50;//Hz XL=2*%pi*f*L;//ohm Z=sqrt(R^2+XL^2);//ohm disp(Z,XL,"(a) Reactance(ohm) & impedence(ohm) of the coil are"); I=V/Z;//A disp(I,"(b) Current(A)"); fi=atand(XL/R);//degree fi=round(fi);//degree disp(fi,"Phase difference(degree)");
7204c780e90860b7e63ef00d6b58df94cf55881b
449d555969bfd7befe906877abab098c6e63a0e8
/2855/CH12/EX12.41/Ex12_41.sce
cb3132c8e66db37f6bf39fcc9859f588999a4a5c
[]
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
308
sce
Ex12_41.sce
//Chapter 12 //page no 535 //given clc; clear all; D=0.45; //dispersion coefficient in ps/nm/km Ts=22; //Pulse width in ps l=0.5; //length in nm Lcollision=2*Ts/l/D; //collision length in km printf("\n Lcollision = %0.1f km ",Lcollision); //Result
ef89bb82f043f368c99f1f984021e410039ca101
449d555969bfd7befe906877abab098c6e63a0e8
/3845/CH23/EX23.10/Ex23_10.sce
d9433ba38f0712b15c9924c40fa909cd5fa74cfb
[]
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
659
sce
Ex23_10.sce
//Example 23.10 L=3*10^-3;//Inductance (H) f1=60;//Frequency 1 (Hz) f2=10*10^3;//Frequency 2 (Hz) X_L1=2*%pi*f1*L;//Inductive reactance at 60Hz (ohm) printf('a.Inductive reactance at 60Hz = %0.2f ohm',X_L1) X_L2=2*%pi*f2*L;//Inductive reactance at 10kHz (ohm) printf('\n Inductive reactance at 10kHz = %0.1f ohm',X_L2) V=120;//Rms voltage (V) I1=V/X_L1;//Rms current at 60Hz (A) printf('\nb.Rms current at 60hz = %0.1f A',I1) I2=V/X_L2;//Rms current at 10kHz (A) printf('\n Rms current at 10khz = %0.3f A',I2) //Answers vary due to round off error //Openstax - College Physics //Download for free at http://cnx.org/content/col11406/latest
ba8fcb3583a38d6cd215669df29c1d93aa9ff9c4
3cbee2296fd6b54f80587eead83813d4c878e06a
/sci2blif/sci2blif_added_blocks/sen_amp.sce
e6098ee98464b59581f96e644d2fb19726a08358
[]
no_license
nikhil-soraba/rasp30
872afa4ad0820b8ca3ea4f232c4168193acbd854
936c6438de595f9ac30d5619a887419c5bae2b0f
refs/heads/master
2021-01-12T15:19:09.899590
2016-10-31T03:23:48
2016-10-31T03:23:48
71,756,442
0
0
null
2016-10-24T05:58:57
2016-10-24T05:58:56
null
UTF-8
Scilab
false
false
606
sce
sen_amp.sce
//************************** VMM Sense Amp****************************** if (blk_name.entries(bl) =='sen_amp') then addvmm = %t; mputl("#VMM w/Sense Amp",fd_w); for ss=1:scs_m.objs(bl).model.ipar(1) vmmsen_str=".subckt vmm_senseamp1 in[0]=net"+string(blk(blk_objs(bl),2))+"_"+string(ss)+ " in[1]=net"+string(blk(blk_objs(bl),3))+"_"+string(ss)+" out[0]=net"+ string(blk(blk_objs(bl),2+numofip))+"_" + string(ss)+" #vmm_senseamp1_fg =0"+"&ota0bias ="+string(sprintf('%1.2e',scs_m.objs(blk_objs(bl)).model.rpar(ss))); mputl(vmmsen_str,fd_w); mputl(" ",fd_w); end end
61e8641c9eb306774cbc9aa7552553a36343d3d1
449d555969bfd7befe906877abab098c6e63a0e8
/2096/CH1/EX1.18.b/ex_1_18_b.sce
ea3080fac5e369553aedf65735eac30674f55948
[]
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
257
sce
ex_1_18_b.sce
//Example 1.18.b// determine its reading clc; clear; close; //given data : Iin=160; // in celcius t1=1.2; // in seconds t2=2.2;// in seconds I=20; // in celcius Io=Iin+(I-Iin)*exp(-t1/t2); disp(Io,"thermometer reading,Io(degree celcius) = ")
9a8c65689efd4ca2ae6138c583395ddf13270444
449d555969bfd7befe906877abab098c6e63a0e8
/68/CH1/EX1.5/ex5.sce
81db740be28b5dbb4b7a36aaa110eaa8ae3db0dc
[]
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
547
sce
ex5.sce
// Example 1.5 : DC gain, 3dB frequency and frequency at which gain=0 of voltage amplifier // 1.5b R_s =20*10^3; // (ohm) R_i =100*10^3; // (ohm) C_i =60*10^-12; // (ohm) u = 144; // (V/V) R_o = 200; // (ohm) R_L = 1000; // (ohm) K=u/((1+R_s/R_i)*(1+R_o/R_L)); disp(K,"The dc gain (V/V)= ") disp(20*log10(K)," The dc gain (dB) =") w_o=1/(C_i*R_s*R_i/(R_s+R_i)); disp(w_o,"The 3-dB frequency (rad/s) =") f_o= w_o/2/%pi; disp(f_o,"Frequency (Hz) =") disp(100*w_o,"unity gain frequency (rad/s)=",100*f_o,"Unity gain frequency (Hz)")
642dfb77fc2f87a670ffb231f03ba12176844a6c
b29e9715ab76b6f89609c32edd36f81a0dcf6a39
/ketpic2escifiles6/Gaiseki.sci
3d17995efdcb1464a168703da4d0cf878816e7e3
[]
no_license
ketpic/ketcindy-scilab-support
e1646488aa840f86c198818ea518c24a66b71f81
3df21192d25809ce980cd036a5ef9f97b53aa918
refs/heads/master
2021-05-11T11:40:49.725978
2018-01-16T14:02:21
2018-01-16T14:02:21
117,643,554
1
0
null
null
null
null
UTF-8
Scilab
false
false
204
sci
Gaiseki.sci
function G=Gaiseki(a,b) if length(a)==3 Tmp=[a(2)*b(3)-a(3)*b(2),... a(3)*b(1)-a(1)*b(3),... a(1)*b(2)-a(2)*b(1)]; else Tmp=a(1)*b(2)-a(2)*b(1); end; G=Tmp; endfunction
7aa002713aec446e290a1858ff127aecdfb0e494
449d555969bfd7befe906877abab098c6e63a0e8
/848/CH1/EX1.2/Example1_2.sce
3bc4f0725282e9c81f3810b9a83214bd56ba3602
[]
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
296
sce
Example1_2.sce
//clear// //Caption:program to calculate bandwidth from its spectrum //Example1.2 //page10 clear; clc; close; fLow = 10^4; //fLOW = 10KHZ lowest frequency fHigh = 10^5; //FHigh = Highest frequency B = fHigh - fLow; disp(B,'Bandwidth in Hz = ') //Result //Bandwidth in Hz = 90000.
91f65b558e753aec666e998ae6eb995cdb431187
b260f3d67de5bd0fbb64f116da0d48c79d85382a
/ssbmod/ssbmod_example.sce
cf82de945f4a2858209d8ff049f9b5a47ba6fc62
[]
no_license
nikitapinto/Scilab-Communications
92c1002a14452dab39edda3675bc0c4a4da25919
4ebf7bbd70374b812eeb8dd3333ed997bca70b09
refs/heads/master
2021-01-10T06:27:41.892245
2016-04-02T16:37:42
2016-04-02T16:37:42
51,426,801
0
0
null
null
null
null
UTF-8
Scilab
false
false
969
sce
ssbmod_example.sce
// Example script to demonstrate functionality of ssbmod. // The script contains an example for each of the three variations of function ssbmod. // Define Values fc = 20; fs = 100; t = [0:2*fs+1]'/fs; x = sin(2*%pi*t); // Using function ssbmod // output is a lower sideband modulated signal with zero intial phase y_default = ssbmod(x,fc,fs); // Input arguments include initial phase y_initialphase = ssbmod(x,fc,fs,%pi); // Input arguments include zero initial phase, and upper sideband modulation. y_upper = ssbmod(x,fc,fs,0,'upper'); // Any of the above modulated signals can be visualized using the following code. // Uncomment the desired modulated signal. y = y_default; //y = y_initialphase; //y = y_upper; z = fft(y); z = abs(z(1:length(z)/2+1 )); // Setup frequency axis faxis = (0:fs/length(z):fs -(fs/length(z)))/2; subplot(2,1,1) plot(y); title('SSB Modulated Signal'); subplot(2,1,2) plot(faxis,z); title('Spectrum of ssb modulated signal')
a4e29a68791c7ab7d20ac87c1d83070a07906736
aea1638d4fb4de62edc0b1054e3f7d5946eecfe9
/readme.tst
5eb33066efc554a77121f6f0b35fc0f0919685fb
[]
no_license
gkgu/learngit
032c791f6cb62434ff123a65fd3101a33898768f
50d0393c43ad689147347ef47dc3f1c843cdd61f
refs/heads/master
2021-01-11T05:59:17.514488
2016-09-23T08:40:04
2016-09-23T08:40:04
68,997,201
0
0
null
null
null
null
UTF-8
Scilab
false
false
41
tst
readme.tst
ggggggit git is free software add a line
d33745f1381ca2fac10bea92eafcaa883afca5d8
449d555969bfd7befe906877abab098c6e63a0e8
/689/CH2/EX2.6/6.sce
a8c19f359bba51b51b83334d0bf2dd678098f0a8
[]
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
434
sce
6.sce
//Example 2.6 On Velocity and Stream Function // Initialisation of variables function[z] = shi(x,y) z = x^2 - y^2; endfunction // Calculations h = 0.00001; u = (shi(3,2+h)-shi(3,2))/h; // Partial derivative wrt y v = -(shi(3+h,2)-shi(3,2))/h; Velo = sqrt(u^2+v^2); theta = atand(v/u); //Results disp(theta,"Anticlockwise angle at P(3,2) (Degree)", Velo, "Magnitude of velocity at P(3,2) (ft/sec)");
b2feea573b4b83e520de7f9efba690d023bb88ae
f7e335e2af57c686554eb057f28ddd8d21aab1e4
/tests/fuzz/c-wsp/0066.tst
820a003139c044d93cbaba646123b0a2fb90440e
[ "MIT" ]
permissive
scravy/abnf
76515bd820b3b9d8e2dbc2cec2a2f845720a6022
cc4228f403b436cc4e34ff4d6a7def83922174be
refs/heads/master
2023-01-09T14:30:50.095268
2020-06-07T16:18:09
2020-06-07T16:18:09
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
6
tst
0066.tst
;{B
beca8858f4bda14f2b7de32cd720769b0b17b5cb
449d555969bfd7befe906877abab098c6e63a0e8
/1997/CH6/EX6.8/example8.sce
43b08bce5d41de8f012296427406f888db5dbd07
[]
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
524
sce
example8.sce
//Chapter-6 example 8 //============================================================================= clc; clear; //input data Na = 1.8*10^15;//Doping Concentration J = 25*10^3;//current density in A/cm^2 q = 1.6*10^-19;//charge of electron //Calculations Vaz = J/(q*Na);//Avalanche Zone Velocity //output mprintf('Avalanche Zone Velocity of TRAPATT is %g\n',Vaz); mprintf(' Note: wrong calculation done in Textbook'); //=============end of the program===============================================
01f06100c4b5f7225f5249acfb319a6aa2b40578
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH5/EX5.45/Ex5_45.sce
d1e0cbb64572852f799908c53d19962efafe5a17
[]
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
841
sce
Ex5_45.sce
clc; p=500*10^3; // rated power of alternator v=11000; // rated voltage of alternator m=3; // number of phases l1=1500; // friction and windage losses l2=2500; // open circuit core losses ra=4; // armature resistance per phase l3=1000; // field copper loss pf=0.8; // power factor disp('case a: Half load'); ia=p/(sqrt(3)*v); // armature current l4=(m*ia^2*ra)/4; // short circuit load loss at half load lt=l1+l2+l3+l4; // net loss n=(1-(lt/((p/2)*pf+lt)))*100; printf('Efficiency is %f percent\n',n); disp('case b'); // for maximum efficiency variable losses=constant losses iam=sqrt((l1+l2+l3)/(m*ra)); // armature current at maximum efficiency pout=m*(v/sqrt(3))*iam*pf; // output power ta maximum efficiency lt=2*(l1+l2+l3); // net losses nm=(1-(lt/(pout+lt)))*100; printf('Maximum efficiency is %f percent\n',nm);
ce02d20930835f3147b53c0ca02b7a6da97a9d67
449d555969bfd7befe906877abab098c6e63a0e8
/2498/CH5/EX5.7/ex5_7.sce
590bb5720b5f3c7802bbc2f7c486f3f7bc9a7e64
[]
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
783
sce
ex5_7.sce
// Exa 5.7 clc; clear; close; format('v',6) // Given data h_ic = 1.1;// in k ohm h_ic = h_ic * 10^3;// in ohm h_rc = 1; h_fc = -51; h_oc = 25;// in µA/V h_oc = h_oc * 10^-6;// in A/V R_L = 10;// in k ohm R_L = R_L * 10^3;// in ohm R_S = R_L;// in ohm // The current gain, Ai = -h_fc/(1+(h_oc*R_L)); disp(Ai,"The value of Ai is"); // The value of Ri Ri = h_ic+(h_rc*Ai*R_L);// in ohm Ri= Ri*10^-3;// in k ohm disp(Ri,"The value of Ri in k ohm is"); Ri= Ri*10^3;// in ohm // The value of A_V A_V = (Ai*R_L)/Ri; disp(A_V,"The value of A_V is"); Gamma_o = h_oc - ( (h_fc*h_rc)/(h_ic+R_S) );// in mho // The value of Ro Ro = round(1/Gamma_o);// in ohm disp(Ro,"The value of Ro in ohm is"); A_VS = (A_V*Ri)/(Ri+R_S); disp(A_VS,"The value of A_VS is");
9327ae2cb8392416426ff7b89cd213d51cd84ed4
449d555969bfd7befe906877abab098c6e63a0e8
/1949/CH5/EX5.22/Ex5_22.sce
657cdbf6ea0616a113c625df7fa0178a6ba1117c
[]
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
892
sce
Ex5_22.sce
//Chapter-5,Example 5_22,Page 5-36 clc() //Given Values: a=25*10^-10 //width of well delx=5*10^-10 //uncertainity in position of particle n=1 //ground state //calculation: x1=a/2 psi1=sqrt(2/a)*sin(n*%pi/a*x1) P1=(psi1^2)*delx //Probability of finding particle at distance of x1 printf('Probability of finding particle at a distance of x1 is =%.2f \n \n',P1) x2=a/3 psi2=sqrt(2/a)*sin(n*%pi/a*x2) P2=(psi2^2)*delx //Probability of finding particle at distance of x2 printf(' Probability of finding particle at a distance of x2 is =%.2f \n',P2) printf(' (There is print mistake in book). \n \n') x3=a psi3=sqrt(2/a)*sin(n*%pi/a*x3) P3=(psi3^2)*delx //Probability of finding particle at distance of x3 printf(' Probability of finding particle at a distance of x3 is =%.2f \n',P3)
228623a5002418645fa8d9740ba6e4de7ad1e980
449d555969bfd7befe906877abab098c6e63a0e8
/2102/CH4/EX4.22/exa_4_22.sce
ef4c4856254121cd95a48089fe34db9edf9b88db
[]
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
475
sce
exa_4_22.sce
// Exa 4.22 clc; clear; close; // Given data I=35;// in mA I=I*10^-3;// in A lamda=1300*10^-9;// in m h= 6.62*10^-34; // in Js c= 3*10^8;// in m/s e= 1.6*10^-19;// in C toh_r= 30;// in ns toh_nr= 90;// in ns toh= toh_r*toh_nr/(toh_r+toh_nr);// in ns nita_int= toh/toh_r; disp(nita_int,"The internal quantum efficiency is : ") Ep= h*c/lamda;// in J P= nita_int*Ep*I/e;// in W disp(P*10^3,"The optical power generated internally to the LED in mW is : ");
75ffa696339c65af13f0137e0ca391576ba6122e
449d555969bfd7befe906877abab098c6e63a0e8
/2510/CH12/EX12.12/Ex12_12.sce
d07af2ad02037b28bf8d1eebca430ca2a2254379
[]
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,202
sce
Ex12_12.sce
//Variable declaration: Ts = 106.0 //Surface temperature (°C) Tsat = 100.0 //Saturation temperature (°C) //Calculation: DTe = Ts-Tsat //Excess temperature (°C) //From table 12.5: C1 = 5.56 //Constant C1 n1 = 3.0 //Constant n1 C2 = 1040.0 //Constant C2 n2 = 1.0/3.0 //Constant n2 P = 1.0 //Absolute pressure (atm) Pa = 1.0 //Ambient absolute pressure (atm) //Calculation: h1 = C1*DTe**n1*(P/Pa)**0.4 //Boiling water heat transfer coefficient (W/m^2) Qs1 = h1*DTe //Surface flux (W/m^2) h2 = C2*DTe**n2*(P/Pa)**0.4 //Second Boiling water heat transfer coefficient (W/m^2) Qs2 = h2*DTe //Second Surface flux (W/m^2) //Result: if (Qs1/10**3 > 15.8 & Qs1/10**3 < 236) then printf("The boiling regime is : %.1f kW/m^2 .",Qs1/10**3) printf("The heat transfer coefficient is : %.0f W/m^2 .",h1) elseif (Qs1/10**3 < 15.8) then printf("The boiling regime is : %.2f kW/m^2 .",Qs2/10**3) printf("The heat transfer coefficient is : %.0f W/m^2.",h2) end
663cdb6a13ee0c40413a36ca7e61a7bc1e4e5d51
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.2/macros/percent/%cnl.sci
2111ec67f315eb346c516e9949e4e194f064aa27
[ "MIT", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain" ]
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
60
sci
%cnl.sci
//[r]=%cnl(l1,l2) //%cnl(l1,l2) : l1==l2 //! r=%t //end
a7b71564b6a91bdbbb5b74687b158dd7b29818a7
449d555969bfd7befe906877abab098c6e63a0e8
/2378/CH1/EX1.3/Exa_1_3.sce
744b27186a77955b45db22e61aa23b43b772cab4
[]
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
702
sce
Exa_1_3.sce
//Torsional spring constant of a propeller shaft //Exa_1_3 clc; clear; //refer fig:1.25 G=80e+9; //shear modulus of shaft in N/m^2 D12=0.3; //outer diameter of AA section in m d12=0.2; //inner diameter of AA section in m l12=2; //length of 12 segment in m kt12=(G* %pi *(D12^4-d12^4))/(32*l12); //spring constant of section 12 D23=0.25; //Outer diameter of BB section in m d23=0.15; //inner diameter of BB section in m l23=3; //length of 23 segment in m kt23=(G* %pi *(D23^4-d23^4))/(32*l23); //spring constant of section 23 kteq=(kt12*kt23)/(kt12+kt23); disp(kteq,"Torsional spring constant of a propeller shaft in N-m/rad = ");
443d66b1b55e7e29257fa4f91994bfa3a7938715
449d555969bfd7befe906877abab098c6e63a0e8
/1322/CH9/EX9.3/68ex1.sce
3d3a69821974bf3ce633eb2421caec1a73e67d32
[]
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
183
sce
68ex1.sce
//3x-5<2x+8 clear; clc; close; x=poly(0,'x'); p1=(3*x-5); p2=(2*x+8); //p1-p2<0 disp("<0",p1-p2) mprintf("i.e., x<13 is the solution for those values of x which are < 13")
4832032e41922aa833793c16a969021486e14ad5
6e257f133dd8984b578f3c9fd3f269eabc0750be
/ScilabFromTheoryToPractice/Programming/testvector.sce
3b29fd1b8cfd030b5ed1313c0343eea88d8047ee
[]
no_license
markusmorawitz77/Scilab
902ef1b9f356dd38ea2dbadc892fe50d32b44bd0
7c98963a7d80915f66a3231a2235010e879049aa
refs/heads/master
2021-01-19T23:53:52.068010
2017-04-22T12:39:21
2017-04-22T12:39:21
89,051,705
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,804
sce
testvector.sce
exec('scilab-base-program-make_point.sce',-1) //to delete exec('scilab-base-program-check_point.sce',-1) //to delete // création du type "vector" à partir de deux points function V=make_vector(x,y) V=mlist(['vector','x','y'],x,y) endfunction U=make_vector(1,1) // crétaion d'un vecteur par ses coordonnées // gestion des erreurs function check_vector(V) if typeof(V)<>'vector' then error(20001,'l''argument n''est pas de type ''vecteur'' !') elseif length(V)<>3 then error(20002,'le vecteur n''a pas deux coordonnées!') elseif (type(V.x)<>1)|(type(V.y)<>1) then error(10003,'les coordonnées ne sont pas des nombres!') elseif (length(V.x)<>1)|(length(V.y)<>1) then error(10004,'les coordonnées sont des tableaux de nombres!') elseif (imag(V.x)<>0)|(imag(V.y)<>0) then error(10004,'les coordonnées ne sont pas des nombres réels!') end endfunction //modification de l'affichage d'un "vector" function %vector_p(P) check_vector(P) printf('[x=%f,y=%f]\n',P.x,P.y) endfunction V=make_vector(1,1) // nouvel affichage des "vector" // fonction calculant la longueur d'un "vector" function U=vecteur_unitaire(V) check_vector(V) l=sqrt((V.x)^2+(V.y)^2) if l<>0 then U=make_vector(V.x/l,V.y/l) else U=V end endfunction V // vector V U=vecteur_unitaire(V) // V/sqrt(2) // création d'un "vector" comme soustraction de deux "point" function V=%point_s_point(A,B) //V=A-B = "vecteur BA" check_point(A) check_point(B) V=make_vector(A.x-B.x,A.y-B.y) check_vector(V) endfunction A=make_point(0,1) B=make_point(1,0) V=B-A // vecteur AB function W=%vector_a_vector(U,V) //W=U+V check_vector(U) check_vector(V) W=make_vector(U.x-V.x,U.y-V.y) endfunction U,V W=U+V //addition d'un "point" et d'un "vector" donne un "point" function V=%s_m_vector(c,V) check_vector(V) if type(c)<>1 then whereami(),error(20004,'c n''est pas de type ''constant'' !') elseif prod(size(c))<>1 then whereami(),error(20005,'c n''est pas detaille 1x1 !') else V=make_vector(c*V.x,c*V.y) end endfunction V 2*V // doit être égal à B function V=%vector_s(V) check_vector(V) V=make_vector(-V.x,-V.y) endfunction -V function W=%vector_s_vector(U,V) check_vector(U) check_vector(V) W=make_vector(U.x-V.x,U.y-V.y) endfunction V-V //addition d'un "point" et d'un "vector" donne un "point" function P=%point_a_vector(M,V) check_point(M) check_vector(V) P=make_point(M.x+V.x,M.y+V.y) endfunction A+V // doit être égal à B //soustraction d'un "point" et d'un "vector" donne un "point" function P=%point_s_vector(M,V) check_point(M) check_vector(V) P=make_point(M.x-V.x,M.y-V.y) endfunction B-V // doit être égal à A
93d9db5f35bd6a106d1dbd309c4b1d76e41edfcb
417f69e36190edf7e19a030d2bb6aa4f15bb390c
/SMTTests/tests/err_getAssertions5.tst
274bbbcf2a719b46b8c863741b0a8a488dad4a16
[]
no_license
IETS3/jSMTLIB
aeaa7ad19be88117c7454d807a944e8581184a66
c724ac63056101bfeeb39cc3f366c8719aa23f7b
refs/heads/master
2020-12-24T12:41:17.664907
2019-01-04T10:47:43
2019-01-04T10:47:43
76,446,229
1
0
null
2016-12-14T09:46:41
2016-12-14T09:46:41
null
UTF-8
Scilab
false
false
97
tst
err_getAssertions5.tst
; interactive-mode false (set-option :interactive-mode false) (set-logic QF_UF) (get-assertions)
d445019e0b518762aa2cd71d3f3bde07f696c2f2
449d555969bfd7befe906877abab098c6e63a0e8
/1967/CH4/EX4.1/4_1.sce
ad93f421e6b87b6855b53977216f9999c11526db
[]
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
4_1.sce
clc //initialisation of variables clear T1= 400 //K T2= 300 //K k1= 6.095 //cal mole^-1 K^-1 k2= 3.253*10^-3 //cal mole^-1 K^-2 k3= -1.017*10^-6 //cal mole^-1 K^-3 //CALCULATIONS dH= k1*(T1-T2)+0.5*k2*(T1^2-T2^2)+(1/3)*k3*(T1^3-T2^3) //RESULTS printf ('Heat required to raise the temperature = %.f cal-mole^-1',dH)
b41a3efd47cc84bfa218c01afe188872f59768d0
449d555969bfd7befe906877abab098c6e63a0e8
/1898/CH10/EX10.4/Ex10_4.sce
2b7c19defa367b4c95eb1f3bdba72f690faae2db
[]
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
947
sce
Ex10_4.sce
clear all; clc; disp("Scilab Code Ex 10.4 : ") //Given: ep_x = 250;//(*10^-6) Normal Strain ep_y = -150; //*(10^-6) Normal Strain gamma_xy = 120; //*(10^-6) Shear Strain //Construction of the circle: strain_avg = (ep_x + ep_y)/2; tou = gamma_xy/2; R = sqrt((ep_x - strain_avg)^2 + (tou^2)); //Principal Strains: ep1 = (strain_avg + R); ep2 = (strain_avg - R); strain = [ep1 ep2]; tan_thetap = (tou)/(ep_x - strain_avg); thetap1 = (atan(tan_thetap))/2; thetap1 = thetap1*(180/%pi); //Display: printf('\n\nThe principal strains are = %1.0f *10^-6, %1.0f*10^-6 ',strain); printf('\nThe orientation of the element = %1.2f degrees',thetap1); printf('\nThe average strain = %1.0f *10^-6 ',strain_avg); //--------------------------------------------------------------------------END--------------------------------------------------------------------------------------
227fcaa283e3e37d8d074cff383f33466ea39983
449d555969bfd7befe906877abab098c6e63a0e8
/2840/CH9/EX9.14/ex9_14.sce
1125062050f8f59ce2e7df519696b5a05d34a0ad
[]
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
249
sce
ex9_14.sce
clc; clear all; n = 1; // Single particle a = 50e-10; // Width of box in meter deltax = 10e-10; // Intervel between particle p = (2/a)*deltax;//The probability of finding the particle disp('',p,'The probability of finding the particle is ');
db22646ac38abf8d598ff19d6c202a35b0b67966
449d555969bfd7befe906877abab098c6e63a0e8
/1016/CH10/EX10.4/ex10_4.sce
338b70e70e429f4ea5fb89edce622a9908919a01
[]
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
340
sce
ex10_4.sce
clc;clear; //Example 10.4 //given data mn=1.00893;//mass of neutron in a.m.u mp=1.00813;//mass of proton in a.m.u md=2.01473;//mass of deuteron in a.m.u ma=4.00389;//mass of alpha-particle in a.m.u //calculations dm=md-(mn+mp); disp((-dm*931),'binding energy in MeV'); dm=ma-2*(mn+mp); disp((-dm*931),'binding energy in MeV')
341f8bd26b445223e4d4eb40520e4997f003b5a5
244971ae8af51184d278cdc2be1c80775413adae
/SSSoSourceLambda.sci
33a11c35ca1a6160b2ec309b89d71851ab82fe89
[]
no_license
MSCA-SIMFREE/748767
5879f1f139b608c7cd2f1bd62325b281c9c1e7d1
4726206e514f1e47e939e73b9339c056057866db
refs/heads/master
2020-12-27T15:21:13.646362
2020-02-03T11:40:00
2020-02-03T11:40:00
237,951,088
1
0
null
null
null
null
UTF-8
Scilab
false
false
940
sci
SSSoSourceLambda.sci
// The code was developed under Horizon2020 Framework Programme // Project: 748767 — SIMFREE function Out=SSSoSourceLambda(Pout_mW,f0_GHz) // Optical Source // // Calling Sequence // Out=SSSoSourceLambda(Pout_mW,f0_GHz) // // Parameters // Pout_mW : Optical Output Power [mW] // FWHM_ps : Pulse Width FWHM ps] // f0_GHz : Relative Optical Frequency [GHz] // Out : Optical Output // // Description // A tunable optical source with its output in the X-polarization. // The spectral linewidth is 0 MHz, i.e. the output is monochromatic. // global MNT MDT; [lhs,rhs]=argn(0); select rhs case 0 then Pout_mW=1,f0_GHz=0; case 1 then f0_GHz=0; end Out(:,2)=complex(zeros(MNT,1)); k=round(MNT*MDT*f0_GHz); if k>=0 then; k1=k; else; k1=k+MNT;end Out(:,1)=Out(:,2); Out(k1+1,1)=complex(sqrt(Pout_mW),0); endfunction
7b93edab909e25ba8e4c72b21f0f632df2aafa76
449d555969bfd7befe906877abab098c6e63a0e8
/1664/CH7/EX7.2/Ex7_2.sce
f27b74c1ebc7e98c5d5a9577f530d33e9d677459
[]
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
594
sce
Ex7_2.sce
//Example No.7.2 //Page No.208. //To find energy for vacancy information. clc;clear; Av = 6.022*10^(26);//Avogadro's constant. d = 9500;//Density. Aw = 107.9;//Atomic weight -[g/mol]. k = 1.38*10^(-23);//Boltzman's constant. T = 1073;//Temperature -[K] n = 3.6*10^(23);//Number of vacancies -[per m^3]. N = ((Av*d)/Aw);//Concentration of atoms. printf("\nConcentration of atoms is %3.3e m^-3",N); Ev = k*T*log(N/n); printf("\nThe energy for vacancy formation in joules is %3.3e J",Ev); Ev = Ev/1.6*10^(19); printf("\nThe energy for vacancy formation in eV is %3.3e eV",Ev);
b67970c9b38064a64bf181f943c1f58754ccb29e
449d555969bfd7befe906877abab098c6e63a0e8
/2672/CH2/EX2.2/Ex2_2.sce
63a86c6e9a8adb46ae7802572be73bd04ac7b796
[]
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
217
sce
Ex2_2.sce
//Ex_2_2 clc; clear; close; format('v',6); //given data : l=0.5;//m B=0.5;//Wb/m^2 I=50;//A v=20;//m/s F=B*l*I;//N disp(F,"Force expereinced by the conductor(N)"); e=B*l*v;//V disp(e,"emf induced(V)");
e480406912c7bb1fd622f972d2decbda32fefcf6
449d555969bfd7befe906877abab098c6e63a0e8
/1445/CH1/EX1.52/ch1_ex_52.sce
eba623ea80a82593eaa4e040206e7e13fda8a440
[]
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,309
sce
ch1_ex_52.sce
//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS //Example 52 disp("CHAPTER 1"); disp("EXAMPLE 52"); //VARIABLE INITIALIZATION v1=20; //LHS voltage source in Volts v2=12; //RHS voltage source in Volts r1=5; //LHS resistance in Ohms r2=2; //in Ohms r3=8; //in Ohms r4=10; //RHS resistance in Ohms //SOLUTION //by Thevenin's Theorem rth=r3+((r1*r2)/(r1+r2)); v=v1*(r2/(r1+r2)); //by voltage divider law vab=-v2+(r3*0)+(rth*0)+v; I1=vab/(rth+r4); Isc=vab/rth; disp(sprintf("By Thevenin Theorem, the value of current is %f A",I1)); //verification by Norton's Theorem //7I1+2I2=20.................eq (1) //2I1+10I2=12................eq (2) //solving the equations using matrix method A=[7 2;2 10]; b=[20;12]; x=inv(A)*b; x1=x(1,:); //to access 1st element of 2X1 matrix x2=x(2,:); //to access 2nd element of 2X1 matrix and Isc=-x2 Isc=-x2; I2=Isc*(rth/(rth+r4)); if(I1==I2) disp(sprintf("By Norton Theorem, the value of current is %f A",I2)); disp(sprintf("Hence, answer is confirmed by Norton Theorem")); else disp(sprintf("The answer is not confirmed by Norton Theorem")); end; //END
f37791e37bc6483e966679409f99b62ee5f177e9
449d555969bfd7befe906877abab098c6e63a0e8
/758/CH5/EX5.21/Ex_5_21.sce
7a47eb7a9cb80abf006023c1969feb88388b082b
[]
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
Ex_5_21.sce
//Example 5.21 clc;clear;close; z=poly(0,'z'); H=(1+z^-1)/(1+3/4*z^-1+1/8*z^-2); pole=roots(numer(H)); zero=roots(denom(H)); disp(H,'System Transfer Function H(z)='); disp(zero,'System zeros are at'); disp(pole,'System poles are at '); plzr(H);
b52a7b743d70efc6a80add33cf4a41b6bb5addb3
449d555969bfd7befe906877abab098c6e63a0e8
/2183/CH8/EX8.8/Ex_8_8.sce
9256c65de87728567d6291289f5b8d7ac6255b58
[]
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
268
sce
Ex_8_8.sce
// Example 8.8 //bit rate clc; clear; close; ts=8;//ns l=8;//km tn=4;//ns tn1=tn*l;//ns tc=1;// tc1=tc*l;//ns td=5;//ns tsys=1.1*sqrt(ts^2+tn1^2+tc1^2+td^2);//ns btmax=(0.7/(tsys*10^-9))*10^-6;//M bit/s bt=btmax/2;// disp(bt,"maximum bit rate for NRZ format in MHz")
1d013858148a2448fa14dda053ae29cea2815869
449d555969bfd7befe906877abab098c6e63a0e8
/2420/CH10/EX10.3/10_3.sce
6ef3af8b390915c1cf33cd10705471002a6165a5
[]
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
702
sce
10_3.sce
clc clear //Initialization of variables p=144*29*0.491 //psf R=53.3 T=70+460 //R gamw=62.4 //lb/ft^3 gama=0.073 //lb/ft^3 hw=3/12 //ft hw2=3.5/12 //ft hv=32.2 //ft/s^2 ms=9 //lb g=32.2 //ft/s^2 //calculations rhoa=p/(R*T) hs=hw*gamw/gama ht=hw2*gamw/gama hv=ht-hs V=sqrt(2*g*hv) msv=ms*V*60 mm=msv*gama airhp= ht*mm/33000 //results printf("Velocity head = %d ft of air",hv) printf("\n velocity of air in the duct = %.1f fps",V) printf("\n volume = %d cu ft per min",msv) printf("\n Mass flow rate = %d lb/min",mm) printf("\n Air hp = %.1f hp",airhp) disp("The answers in the textbook are a bit different due to rounding off error in the textbook. Please use a calculator")
8c052ee4cf048ab97cfdf15540dbaf9c4677ab04
449d555969bfd7befe906877abab098c6e63a0e8
/761/CH16/EX16.7/16_7.sce
6b9e1a0460fb3fa20d942c6507be1e07c80547a7
[]
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
750
sce
16_7.sce
clc; //page no 582 //prob no. 16.7 //a helial antenna with 8 turns with freq=1.2GHz given N=8;f=1.2*10^9;c=3*10^8;//Speed of light in m/s //a)Determination of optimum diameter of antenna wav=c/f; D=wav/%pi; disp('m',D,'a)1.The optimum diameter for antenna is'); S=wav/4;//Determination of spacing for the antenna disp('m',S,'a)2.The spacing for the antenna'); L=N*S;//Determination of total length of an antenna\ disp('m',L,'a)3.The total length of an antenna is'); //b)Determination of antenna gain in dBi G=(15*N*S*(%pi*D)^2)/(wav^3); G_dBi=10*log10(G);//Converting in dBi disp('dBi',G_dBi,'b)The antenna gain is'); //c)determination of beamwidth theta=((52*wav)/(%pi*D))*sqrt(wav/(N*S)); disp('degree',theta,'The beamwidth is');
94ce624a79eb49d8f2a4ddbfb7c8a8dede9d047e
449d555969bfd7befe906877abab098c6e63a0e8
/671/CH11/EX11.3/11_3.sce
b6679f1e787527f3b1bdaad95a074bef894db3d9
[]
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
260
sce
11_3.sce
V=12500 Xs=8 Vt=V/sqrt(3) Ef=Vt Ef=Vt*1.2 Ia=(Ef-Vt)/Xs theta=%pi/2 pf=0 Pe=0 Qe=-sqrt(3)*V*Ia disp(Ia) disp(Pe) disp(Qe) disp(pf) Ef=Vt*0.8 Ia=(Vt-Ef)/Xs theta=-%pi/2 pf=0 Pe=0 Qe=sqrt(3)*V*Ia disp(Ia) disp(Pe) disp(Qe) disp(pf)
fb1c5dc58def6b06ecf377a24b4bbb77da90f760
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set4/s_College_Physics(volume_2)_R._A._Serway_And_J._S._Faughn_2072.zip/College_Physics(volume_2)_R._A._Serway_And_J._S._Faughn_2072/CH29/EX29.6/EX29_6.sce
b0ab968a46629e5a1f0cead26029e114cfea9f4c
[]
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
275
sce
EX29_6.sce
errcatch(-1,"stop");mode(2);//Chapter 29 //Example 6 //given M_C=14.003242 //mass of carbon in atomic mass units M_N=14.003074 //mass of nitogen in atomic mass units delta_M=M_C-M_N E=delta_M*(931.494) disp(E,"Energy released in beta decay in Mev is") exit();
1ff78a46b0ea5da72a7e096a2d2e4b407b7cd12b
4ad62940f89daf332cf9e241120da981bc1c3d5d
/testing/test1.tst
c7be92efaa18eb2256cdc00b12259154f3b1de2e
[]
no_license
Rovi98/SBC-menu-IA
473ca98cf474be3f2a8c1c49bc2880dd3e0a7432
d661ffab75e77e92ac824457f279dfd81c13796a
refs/heads/master
2020-05-18T19:05:40.016175
2019-05-22T13:27:39
2019-05-22T13:27:39
184,599,387
0
1
null
null
null
null
UTF-8
Scilab
false
false
212
tst
test1.tst
(batch "test_cfg.clp.bat") 80 ;age 170 ;height 65 ;weight 1 ;sex: male 1 ;execise-level: sedentary ;no diseases yes ;eat meat 3 ;religion ;no positive preferences ;no negative preferences yes ;verbose print
cfaa28288cf4e27827cb116c7b42d7c79c824ab1
449d555969bfd7befe906877abab098c6e63a0e8
/53/CH6/EX6.4/example_4.sce
a41ba027dd6925040eb3fbc274e5ee3b8bb0526e
[]
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
195
sce
example_4.sce
Av=100; printf("Av=1+(R1/R2)\n"); //Let R2=1 Kohms R2=1;//in Kohms printf("R1=(Av-1)*R2"); R1=(Av-1)*R2; printf("\nRESULTS:\n"); printf("The design values are R1=%d Kohms and R2=%d Kohm",R1,R2);
373de85216a589723dff5ea119622cfa87a2e29b
449d555969bfd7befe906877abab098c6e63a0e8
/1052/CH10/EX10.6/106.sce
1ef781cfa6a3a3c1b51e735e864cedc24a80c9ac
[]
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,044
sce
106.sce
clc; // Example 10.6 //page no 105 fig. 10.3 printf("\n Example 10.6 page no 105 fig. 10.3\n\n\n"); // since the density of air is effectively zero,the contribution of air to the 3 ft. manometer can be neglected //the contribution due to the carbon tetrachloride can be found by using the hydrostatic equation rho=62.3//density of water SG=1.4///specific gravity of ccl4 h=3//height in manometer P=rho*SG*h/144//factor 144 for psf to psi printf(" \n pressure P=%f psi",P); P_r=14.7//the right leg of manometer is open to atmosphere,atmospheric pressure at this point //contribution to the prssure due to the height of water above pressure gauge P_w=rho*h/144 printf("\n pressure at right leg P_r=%f psia\n pressure due to water height P_w=%f psi",P_r,P_w); P_a=P_r-P+P_w//absolute pressure P_g=P_a-14.7//gauge pressure printf("\n absolute pressure P_a=%f psia\n gauge pressure P_g=%f psig",P_a,P_g); P_af=P_a*144 P_gf=round(P_g*144) printf("\npressure in psfa P_af=%f psfa\n pressure in psfg P_gf=%f psfg",P_af,P_gf);
3cd708ddeaaafbe1cedcf72030c1cba4bf70ad0c
449d555969bfd7befe906877abab098c6e63a0e8
/3802/CH7/EX7.9/Ex7_9.sce
b65af80d85df9912f3826f4cd7e3d976bad6c13d
[]
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,192
sce
Ex7_9.sce
//Book Name:Fundamentals of Electrical Engineering //Author:Rajendra Prasad //Publisher: PHI Learning Private Limited //Edition:Third ,2014 //Ex7_9.sce. clc; clear; Vp=220; //primary voltage in V Vs=250; //secondary voltage in V Ns=2000; //number of secondary turns printf("\n (a)") Np=(Vp/Vs)*Ns; //number of Primary turns tapping_point=Ns-Np; //number of turns from C to A in figure printf("\n The position of tapping point=%d turns \n",tapping_point) printf("\n (b)") Po=10e3; //output power in KVA Is=Po/Vs; //secodary current in A Ip=(Vs/Vp)*Is; //primary current in A approximate_current=Ip-Is; printf("\n The approximate value of current in each part of the winding:\n") printf("\t Is=%d A\n",Is) printf("\t Ip=%2.2f A\n",Ip) printf("\t Ip-Is=%1.2f A\n",approximate_current) printf("\n (c)") copper_saved=Vp/Vs; printf("\n copper saved=%1.2f p.u",copper_saved)
4b8cfb79ceccb9a351b83245e2e50ba42c6c506e
449d555969bfd7befe906877abab098c6e63a0e8
/779/CH8/EX8.1/8_1.sce
a7dd6c03bab1bc2fecc21cadeb71ad7a63c5737e
[]
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
194
sce
8_1.sce
T0 = 308; T1 = 693; T1_ = 523; // T1_ = T1' T1_ = 523; // "" f = (T0*(T1-T1_))/(T1_*(T1-T0)); disp(f,"The fraction of energy that becomes unavailable due to irreversible heat transfer is")
adde9d349c7f35e68c0830ed90e1cfdce4f042d2
9835e6a99ef801fdd06a9193c1846cae987d740a
/MissionsA/MissionA-4.sce
4e02bc09a643f4f40fee2c93a2d65886da4ceb7c
[]
no_license
Martinhubz/Exo-Life
c2356d064d2f4727b7a42b104aaca340c0e65a64
dcea54e689b2d7bb3b454648d7cb6fb5a57f115f
refs/heads/master
2021-04-30T08:52:50.851933
2018-02-13T16:19:34
2018-02-13T16:19:34
121,385,860
0
0
null
null
null
null
UTF-8
Scilab
false
false
434
sce
MissionA-4.sce
//---------Mission A-4----------- //------------------------------------- // Améliorer la qualité de l'image // Utilisation d'un filtre médian pour supprimer le bruit // // funcprot(0) getd("../Fonctions") missPath="./" nomMission="MissionA-4" // PBM--->matrice img = readpbm(missPath+"Jupiter1.pbm") //Traitement de l'image rendu = medianFilter(img); //matrice--->PBM writepbm(rendu,"../Rendus/" + nomMission + ".pbm");
3018c29545328ed36fc33029d23d8f1463f04e12
449d555969bfd7befe906877abab098c6e63a0e8
/1427/CH5/EX5.6/5_6.sce
0d8687fb86929defde0155ac98eb1d6e4e6db6b2
[]
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
316
sce
5_6.sce
//ques-5.6 //Calculating equivalent conductance of solution clc C=0.01;//normality of solution k1=126.5//equivalent conductance at infinite dilution (in L^2 mho/eq) k2=k1-(60.2+0.229*k1)*sqrt(C);//equivalent conductance (in L62 mho/eq) printf("The equivalent conductance of solution is %.3f L^2 mho/eq.",k2);
118494554c6fe545aa704b19fb8409b29762898c
449d555969bfd7befe906877abab098c6e63a0e8
/63/CH7/EX7.4/Exa7_4.sci
9e70db855759f4f796e6a69c13f8dc12f331b716
[]
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
sci
Exa7_4.sci
//Determine the charactericstic impediance of the quarter-wave transfomer Z0 = 200; Zl = 300; Z01 = sqrt(Z0*Zl); disp(Z01, 'Charactericstic impediance of the quarter-wave transfomer is (in ohms)')
ebc2a226cb5c4a4716c2f2106822c59cea1255c1
449d555969bfd7befe906877abab098c6e63a0e8
/555/CH7/EX7.6/6.sce
b63796099ca31d16065d48e4c4b87d548f85479a
[]
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
442
sce
6.sce
// Implementation of example 7.6 // Basic and Applied Thermodynamics by P.K.Nag clc clear T1 = 200; //K T2 = 100; //K function Cv = f(T) Cv = 0.042*T^2; endfunction Q1 = intg(T1,T2,f); function S = g(T) S = f(T)/T; endfunction dS_sys = intg(T1,T2,g); Wmax = dS_sys*T2 + abs(Q1); printf("Maximum amount of work that can be recovered as system is cooled down to temperature of reservoir, Wmax = %d J",Wmax); //end
3d4944fccf7bdfe71939745bab200acf20423d4b
449d555969bfd7befe906877abab098c6e63a0e8
/2132/CH11/EX11.8/Example11_8.sce
1c44bb316fd1f23a95a3aac91feaad1612971048
[]
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
338
sce
Example11_8.sce
//Example 11.8 clc; clear; close; format('v',6); //Given data : Cd=0.65;//constant A=220;//m^2 g=9.81;//constant l=30/100;//meter H1=16.8/100;//meter H2=6.8/100;//meter T=A/[2/3*Cd*l*sqrt(2*g)]*integrate('h^(-3/2)','h',H2,H1);//sec disp("Time taken is "+string(floor(T/60))+" minute "+string((T/60-floor(T/60))*60)+" sec.")
ea12d089572571cfa3163cc73268e60e55d31866
036a77bd5f07b7b2b808ef3d90e92d20bd7b6c33
/hard/tests/tooFewParameters.tst
fdb70251c81ea2b2a151f130f1a1f4d43fceb925
[]
no_license
Jaymee-Ericca-7/simple-compiler
186b11486e5af8debdde301acba84851c4545b02
209a8ed43c579a9ce34c63a10083cdbde5546313
refs/heads/master
2020-09-18T06:19:53.304100
2015-08-11T13:44:06
2015-08-11T13:44:06
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
118
tst
tooFewParameters.tst
int sum(int x, int y) begin return x + y; end main begin int s; int x; x = 1; s = sum(x); return s; end
278edcb9318425241c64c397147453ee8fb39158
734830c483d7180158343b9b5599994878b8b197
/make-tests/unfinished/test1.tst
b48d4fb60422f1db3d22468a317b99a5bdd4c1cc
[]
no_license
aykamko/proj61b
b53a3b569f82522144e010505859aa3ab66585bb
5f6688b70f907107512267712a325f907e5e627b
refs/heads/master
2021-01-16T22:08:56.235971
2013-12-12T09:19:39
2013-12-12T09:19:39
13,669,280
1
0
null
null
null
null
UTF-8
Scilab
false
false
73
tst
test1.tst
T1: T2 T4 T7 T2 T2: T3 T5 T3: #ignore me plz T4: T5 T6 T5: T6: T5 T7: T6
968848ef897e452d8cb6cce109cbb0f42bb64932
9912678e28073cbe4e3b8c355954b571bf3d4d1a
/projects/01/IfAThenB.tst
f53d77a1824d97190a30b658f638b4bad7956ec1
[]
no_license
Toraja/nand2tetris
f98ee40afbd529acc6564483f45ce0fd02f40692
7955c6a3ac28fa1e48654f0f2b3fb1c464adc2ea
refs/heads/master
2021-04-28T01:12:45.034616
2018-04-01T03:11:44
2018-04-01T03:11:44
122,270,476
0
0
null
null
null
null
UTF-8
Scilab
false
false
301
tst
IfAThenB.tst
// This file is created by me load IfAThenB.hdl, output-file IfAThenB.out, compare-to IfAThenB.cmp, output-list a%B3.1.3 b%B3.1.3 out%B3.1.3; set a 0, set b 0, eval, output; set a 0, set b 1, eval, output; set a 1, set b 0, eval, output; set a 1, set b 1, eval, output;
7b1b8d2095b07192b5ac9a302e93139e43285394
449d555969bfd7befe906877abab098c6e63a0e8
/536/CH3/EX3.10/Example_3_10.sce
63d38c1e4cd782945eb852e44953c5e403bd580a
[]
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,091
sce
Example_3_10.sce
clc; printf("Example 3.10\n"); k=10; n=0.2; //Using the power-law model (equation 3.121): printf("\n Given:\n Consistency coefficient k = %d N.s^n/m^-2",k); printf("\n Flow behaviour index = %.1f",n); Ucl=1; // centre line velocity printf("\n Centre line velocity = %d m/s",Ucl); l=200; // length of pipe printf("\n Length of pipe = %d m",l) r=.02; // radius of pipe printf("\n Radius of pipe = %.2f m",r); dux_dy_1=10; dux_dy_2=50; Ry_1=k*dux_dy_1^0.2; Ry_2=k*dux_dy_2^0.2; //Using the Bingham-plastic model (equation 3.125): A=[1 10;1 50] B=[15.85;21.87] C=inv(A)*B; Ry=C(1); Meu_p=C(2); printf("\n\n Plastic viscosity (Meu_p) = %.3f N s/m^2",C(2)); printf("\n Yeild stress (Ry) = %.2f N s/m^2",C(1)); // Using Equation 3.131 DP=2*k*l*Ucl^n*((n+1)/n)^n*r^(-n-1); printf("\n Pressure drop (Bingham plastic model)= %.0f kN/m^2",DP/1e3); // For a Bingham-plastic fluid: // The centre line velocity is given by equation 3.145: X=(l*2*Ry)/(r*DP); Up=(DP*r^2*(2-4*X+2*X^2))/(8*Meu_p*l); printf("\n centre line velocity (Bingham plastic model) = %.2f m/s",Up);
7b080795a6beb2a805f39898ebf9aca6529388a7
449d555969bfd7befe906877abab098c6e63a0e8
/1322/CH14/EX14.22/109ex1.sce
f8c4d9373dd06412ee189953166ec75275798fe5
[]
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
539
sce
109ex1.sce
clear; clc; close; function[val]=formulae(a,b) val=(a+b)*(a-b) endfunction val=formulae(47.5,22.5)
e4483a04f9cf3f85c40f0ac3541be79db6342eea
36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd
/VRT TEST.sce
cdb4d8da8d8caf03a74b5efb68b874cb0e52b1ce
[]
no_license
Ahmad6543/Scenarios
cef76bf19d46e86249a6099c01928e4e33db5f20
6a4563d241e61a62020f76796762df5ae8817cc8
refs/heads/master
2023-03-18T23:30:49.653812
2020-09-23T06:26:05
2020-09-23T06:26:05
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
62,043
sce
VRT TEST.sce
Name=VRT TEST PlayerCharacters=clicker BotCharacters=vrtbots.rot IsChallenge=true Timelimit=100.0 PlayerProfile=clicker AddedBots=vrtbots.rot PlayerMaxLives=0 BotMaxLives=20 PlayerTeam=1 BotTeams=2 MapName=cps.map MapScale=2.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=true TimeRefilledByKill=0.0 ScoreToWin=0.0 ScorePerDamage=0.0 ScorePerKill=0.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.05 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=not accurate due to bots :( WeaponHeroTag=iq DifficultyTag=1 AuthorsTag=bozott BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=false BlockFCT=false Description=test your vrt GameVersion=1.0.7.2 ScorePerDistance=0.0 [Aim Profile] Name=Aimbot MinReactionTime=0.1 MaxReactionTime=0.1 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=0.0 FlickSpeed=10.0 FlickError=0.0 TrackSpeed=10.0 TrackError=0.0 MaxTurnAngleFromPadCenter=360.0 MinRecenterTime=0.0 MaxRecenterTime=0.0 OptimalAimFOV=360.0 OuterAimPenalty=0.0 MaxError=0.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [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 [Bot Profile] Name=100bot DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot2 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms2 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot3 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms3 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot4 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms4 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot5 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms5 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot6 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms6 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot7 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms7 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot8 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms8 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot9 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms9 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot10 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms10 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot11 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms11 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot12 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms12 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot13 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms13 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot14 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms14 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot15 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms15 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot16 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms16 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot17 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms17 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot18 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms18 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot19 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms19 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Profile] Name=100bot20 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Aimbot;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=100ms20 SeeThroughWalls=false NoDodging=true NoAiming=false [Bot Rotation Profile] Name=vrtbots ProfileNames=100bot;100bot2;100bot3;100bot4;100bot5;100bot6;100bot7;100bot8;100bot9;100bot10;100bot11;100bot12;100bot13;100bot14;100bot15;100bot16;100bot17;100bot18;100bot19;100bot20 ProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 Randomized=true [Character Profile] Name=clicker MaxHealth=10000.0 WeaponProfileNames=VRTray;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 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=800.0 Gravity=100.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=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.25 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=3.54 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms2 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=3.14 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms3 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=1.15 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms4 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=3.45 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms5 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=1.6 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms6 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=4.38 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms7 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=2.63 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms8 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=2.97 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms9 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms10 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=2.04 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms11 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=3.67 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms12 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=4.03 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms13 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=2.61 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms14 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=4.62 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms15 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=3.23 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms16 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=4.55 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms17 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=3.93 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms18 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=2.73 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms19 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=3.79 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=100ms20 MaxHealth=400.0 WeaponProfileNames=kys100;;;;;;; MinRespawnDelay=2.45 MaxRespawnDelay=5.0 StepUpHeight=0.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=0.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=100.0 AirControl=0.25 CanCrouch=false 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=Spheroid MainBBHeight=300.0 MainBBRadius=150.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=2.0 ProjBBRadius=0.1 ProjBBHasHead=false ProjBBHeadRadius=0.1 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=360.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.001 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=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Weapon Profile] Name=VRTray Type=Hitscan ShotsPerClick=1 DamagePerShot=500.0 KnockbackFactor=4.0 TimeBetweenShots=1.0 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.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.5 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=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=0 DecalSize=30.0 DelayAfterShooting=0.5 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 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.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=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 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=1.0,1.0,-1.0,5.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=1.0,1.0,-1.0,5.0 SpreadMCH=1.0,1.0,-1.0,5.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.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=kys100 Type=Hitscan ShotsPerClick=1 DamagePerShot=10.0 KnockbackFactor=0.0 TimeBetweenShots=0.01 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=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.5 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=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=0 DecalSize=30.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 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.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=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 Explosive=false Radius=10000.0 DamageAtCenter=10.0 DamageAtEdge=10.0 SelfDamageMultiplier=1.0 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=1.0,1.0,-1.0,5.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=1.0,1.0,-1.0,5.0 SpreadMCH=1.0,1.0,-1.0,5.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.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 -256.000000 0.000000 256.000000 0.000000 0.000000 256.000000 0.000000 0.000000 -256.000000 -256.000000 0.000000 -256.000000 -256.000000 -16.000000 256.000000 0.000000 -16.000000 256.000000 0.000000 -16.000000 -256.000000 -256.000000 -16.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128 brush vertices 0.000000 208.000000 272.000000 16.000000 208.000000 272.000000 16.000000 208.000000 -272.000000 0.000000 208.000000 -272.000000 0.000000 -16.000000 272.000000 16.000000 -16.000000 272.000000 16.000000 -16.000000 -272.000000 0.000000 -16.000000 -272.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 -256.000000 208.000000 -256.000000 0.000000 208.000000 -256.000000 0.000000 208.000000 -272.000000 -256.000000 208.000000 -272.000000 -256.000000 -16.000000 -256.000000 0.000000 -16.000000 -256.000000 0.000000 -16.000000 -272.000000 -256.000000 -16.000000 -272.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 -256.000000 208.000000 256.000000 0.000000 208.000000 256.000000 0.000000 208.000000 -256.000000 -256.000000 208.000000 -256.000000 -256.000000 192.000000 256.000000 0.000000 192.000000 256.000000 0.000000 192.000000 -256.000000 -256.000000 192.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128 brush vertices -272.000000 208.000000 272.000000 -256.000000 208.000000 272.000000 -256.000000 208.000000 -272.000000 -272.000000 208.000000 -272.000000 -272.000000 -16.000000 272.000000 -256.000000 -16.000000 272.000000 -256.000000 -16.000000 -272.000000 -272.000000 -16.000000 -272.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 -256.000000 208.000000 272.000000 0.000000 208.000000 272.000000 0.000000 208.000000 256.000000 -256.000000 208.000000 256.000000 -256.000000 -16.000000 272.000000 0.000000 -16.000000 272.000000 0.000000 -16.000000 256.000000 -256.000000 -16.000000 256.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 -128.000000 64.000000 -144.000000 Bool8 teamB 0 entity type CameraPath UInt8 posLerp 2 UInt8 angleLerp 2 entity type Effect Vector3 position 0.000000 256.000000 0.000000 String64 effectName internal/misc/reflectionprobe entity type Target Vector3 position 320.000000 256.000000 320.000000 Vector3 angles -135.000000 30.000000 0.000000 String32 name end entity type PlayerSpawn Vector3 position -128.000000 64.000000 144.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0
3c933b64b6e4f8a26fb36e1da1e9c1a42e0aae4a
d7633cb5f07c988a044ff9b890b9a281020fd097
/m3da01/utils.sce
4144d16ce938c6de0891eaac01f22e24078045da
[]
no_license
Supabyte/M3DA
92296615d8501dfad309cd7341480a5589f3fe35
3c80475d78ee2d9c4cae8ca7424e56346b58beec
refs/heads/master
2020-06-22T18:18:46.062697
2013-11-23T13:05:13
2013-11-23T13:05:13
197,769,562
1
0
null
null
null
null
UTF-8
Scilab
false
false
3,601
sce
utils.sce
function q = dc2quat(dc) // dc2quat quaternion direction cosine matrix angle axis ////********************************************************************** // // dc2quat calculates the quaternion corresponding to a direction // cosine matrix. I believe this is based on the algorithm // given by A. R. Klumpp, "Singularity-Free Extraction of a // Quaternion from a Direction-Cosine Matrix," Journal of // Spacecraft and Rockets, Vol. 13, Dec. 1976, pp. 754-755. // Assumes input dc is orthonormal. // // Input: dc = 3x3 direction cosine matrix // // Output: q = quaternion, q(1) = scalar, q(2:4) = vector // Rotation sense = Successive rotations are right multiplies. // // Programmer: James Tursa // //********************************************************************** q = [0 0 0 0]; tr = dc(1,1) + dc(2,2) + dc(3,3); ii = 0; nn = 0; q(1) = tr; for kk=1:3 if( dc(kk,kk) > q(1) ) ii = kk; q(1) = dc(kk,kk); end end tr = sqrt(1 + 2*q(1) - tr); order = [2 3 1]; for mm=1:3 kk = order(mm); nn = nn + 1; jj = 6 - nn - kk; x = ii * (nn - ii); if( x == 0) q(1) = (dc(jj,kk) - dc(kk,jj)) / tr; q(nn+1) = q(1); else q(jj+kk-ii+1) = (dc(jj,kk) + dc(kk,jj)) / tr; end end if ii == 0 q(1) = tr; else q(ii+1) = tr; end q(2:4) = -q(2:4); if q(1) == 0 q = 0.5 * q; else q = 0.5 * sign(q(1)) * q; end //\ // MAKES QUATERNION A POSITIVE ROTATION /// if q(1) <= 0 q = -q; end //\ // NORMALIZE QUATERNION (KEEPS ROUTINE STABLE) /// q = q / norm(q); endfunction //------------------------------------------------------------------------ function dc = quat2dc(q) // quat2dc quaternion direction cosine matrix angle axis //******************************************************************* // // quat2dc calculates the dirction cosine matrix corresponding to a // quaternion. Assumes input quaternion is normalized. // // Input: q = quaternion, q(1) = scalar, q(2:4) = vector // Rotation sense = Successive rotations are right multiplies. // // Output: dc = 3x3 direction cosine matrix // // Programmer: James Tursa // //******************************************************************* q11 = q(1)^2; q12 = q(1)*q(2); q13 = q(1)*q(3); q14 = q(1)*q(4); q22 = q(2)^2; q23 = q(2)*q(3); q24 = q(2)*q(4); q33 = q(3)^2; q34 = q(3)*q(4); q44 = q(4)^2; dc = zeros(3); dc(1,1) = q11 + q22 - q33 - q44; dc(2,1) = 2 * (q23 - q14); dc(3,1) = 2 * (q24 + q13); dc(1,2) = 2 * (q23 + q14); dc(2,2) = q11 - q22 + q33 - q44; dc(3,2) = 2 * (q34 - q12); dc(1,3) = 2 * (q24 - q13); dc(2,3) = 2 * (q34 + q12); dc(3,3) = q11 - q22 - q33 + q44; endfunction //------------------------------------------------------------------------ function [a, v] = angleaxis(x) // angleaxis quaternion direction cosine matrix angle axis //******************************************************************* // // angleaxis calculates the rotation angle and rotation axis of the // input quaternion or direction cosine matrix. // // Input: x = quaternion, x(1) = scalar, x(2:4) = vector // Rotation sense = Successive rotations are right multiplies. // Assumes x is normalized. // // or // // x = direction cosine matrix. // Assumes x is orthonormalized. // // Output: a = rotation angle (radians) // v = rotation axis (1x3 unit vector) // // Programmer: James Tursa // //******************************************************************* if length(x) == 9 q = dc2quat(x); else q = x; end a = 2 * acos(q(1)); if argn(1) == 2 if a == 0 v = [1 0 0]; else v = q(2:4)/sin(a/2); end end endfunction
28f54ca6d68a6e65ea4236ec5b5b3b9e9fac88d8
449d555969bfd7befe906877abab098c6e63a0e8
/2204/CH10/EX10.2/ex10_2.sce
cfc232c2a3608425e4835f855c7a579c66fab395
[]
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
338
sce
ex10_2.sce
// EXa 10.2 clc; clear; close; // Given data V_sat = 12;// in V V_H = 6;// in V R1 = 10;// in k ohm R1 = R1 * 10^3;// in ohm // Formula V_H= R1/(R1+R2)*(V_sat-(-V_sat)) and Let V = V_H/(V_sat-(-V_sat));// in V (assumed) R2= (R1-V*R1)/V disp(R1*10^-3,"The value of R1 in kΩ is"); disp(R2*10^-3,"The value of R2 in kΩ is");
31a2fd8dbf372a3e5614921b2888c51517fb37ec
449d555969bfd7befe906877abab098c6e63a0e8
/401/CH12/EX12.21/Example12_21.sce
1dca18de27829bdc815cfd6b92bfc89e3c8e8df7
[]
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,383
sce
Example12_21.sce
//Example 12.21 //Program to : //(a)Calculate second order dispersion coefficient for L1 //(b)Determine the dispersion slope for L2 //(c)Verify that periodic dispersion management map will provide //sufficient coincidence to facilitate reliable DWDM transmission clear; clc ; close ; //Given data L1=160; //km - PATH LENGTH L2=20; //km - PATH LENGTH //(a)To calculate second order dispersion coefficient for L1 Beeta22=17; //ps/nm/km - 2nd ORDER DISPERSION COEFF. FOR L2 Beeta21=-Beeta22*L2/L1; printf("\n\n\t(a)The second order dispersion coefficient for L1 is %0.3f ps/nm/km",Beeta21); //(b)To determine the dispersion slope for L2 S1=0.075; //ps/nm^2/km - DISPERSION SLOPE FOR L1 S2=-S1*L1/L2; printf("\n\n\t(b)The dispersion slope for L2 is %0.1f ps/nm^2/km",S2); //(c)To verify that periodic dispersion management map will provide //sufficient coincidence to facilitate reliable DWDM transmission OP=S1*(L1/L2)+S1*(Beeta22/Beeta21); if OP==0 then printf("\n\n\t(c)Periodic dispersion management map will provide sufficient coincidence to facilitate reliable DWDM transmission as S1(L1/L2)+S1(Beeta22/Beeta21)=0"); else printf("\n\n\t(c)Periodic dispersion management map will not provide sufficient coincidence to facilitate reliable DWDM transmission as S1(L1/L2)+S1(Beeta22/Beeta21)!=0"); end
78c277b9cf269decb468e130a9127142751253af
449d555969bfd7befe906877abab098c6e63a0e8
/2276/CH9/EX9.13/chapter9_ex13.sce
92ae15c7f090b014c5078388d5012623183383d1
[]
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
748
sce
chapter9_ex13.sce
clc clear //input //all values refered to primary and from given equivalent circuit v=240;//supply voltage in volts r0=0.25;//resistance in ohms x0=0.4;//reactance in ohms rl=7.75;//load resistance in ohms xl=5.6;//load reactance in ohms n=5;//turns ratio of the transformer //calculations rt=r0+rl;//total resistance of the circuit in ohms xt=x0+xl;//total reactance of the circuit in ohms zt=((rt^2)+(xt^2))^0.5;//total impedance of transformer and the load in ohms Ip=v/zt;//current in amperes zl=((rl^2)+(xl^2))^0.5;//impedance of load in ohms d=Ip*zl;//voltage drop across referred load impedance in volts vs=n*d;//secondary terminal voltage in volts //output mprintf('the secondary terminal voltage is %3.0f V',vs)
4a3e2fae1786c56d795def7909a10d9293de0eb9
449d555969bfd7befe906877abab098c6e63a0e8
/494/CH1/EX1.8.a/1_8_a.sce
6b9e7b822b30bec47975ab337efa650bb7938b71
[]
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
598
sce
1_8_a.sce
d = 30; //inflated diameter of ballon in feet W = 800; //weight of the balloon in lb g = 32.2; //acceleration due to gravity //part (a) rho_0 = 0.002377; //density at zero altitude //Assuming the balloon to be spherical, the Volume can be given as V = 4/3*%pi*((d/2)^3); //The Buoyancry force is given as B = g*rho_0*V; //The net upward force F is given as F = B - W; m = W/g; //Mass of the balloon //Thus the upward acceleration of the ballon can be related to F as a = F/m; printf("\nRESULTS\n---------\nThe initial upward acceleration is:\n a = %2.1f ft/s2",a)
5653c7f8425253797f0eebdfa13b49175e32ba50
449d555969bfd7befe906877abab098c6e63a0e8
/3872/CH14/EX14.3/EX14_3.sce
44b090683e06748cc925ca5096724bcb88574fd1
[]
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
5,633
sce
EX14_3.sce
//Book - Power System: Analysis & Design 5th Edition //Authors - J. Duncan Glover, Mulukutla S. Sarma, and Thomas J. Overbye //Chapter - 14 ; Example 14.3 //Scilab Version - 6.0.0 ; OS - Windows clc; clear; kV=13.8; //The sending end line voltage in kVolts Vsln=1.05*kV/sqrt(3); //The sending end voltage with 5% above rated in kVolts Rload=20; //The Wye connected load resistance in Ohm Xload=40*%i; //The Wye connected load inductive reactance in Ohm Xc=-40*%i; //The Wye connected capacitive reactance in Ohm Rline=3; //The line resistance in Ohm Xline=6*%i; //The line inductive reactance in Ohm Ztot1=Rline+Xline+(Rload*Xload/(Rload+Xload)); //The total impedance seen by source without capacitance in Ohm Iline1=Vsln/Ztot1; //The line current without shunt capacitor in kA Vdrop1=(Rline+Xline)*Iline1; //The voltage drop across the line without shunt capacitor in KVolts Vload1=Vsln-Vdrop1; //The voltage drop across the load without shunt capacitor in KVolts Pload1=3*abs(Vload1)^2/Rload; //The real power delivered to the load without shunt capacitor in MW Qload1=3*abs(Vload1)^2/abs(Xload); //The reactive power delivered to the load without shunt capacitor in MVAR pf1=cos((atan(Qload1/Pload1))); //The power factor of the load without shunt capacitor Pline1=3*abs(Iline1)^2*Rline; //The real power loss in the line without shunt capacitor in MW Qline1=3*abs(Iline1)^2*abs(Xline); //The reactive power loss in the line without shunt capacitor in MVAR Psource1=Pload1+Pline1; //The real power delivered by the source without shunt capacitor in MW Qsource1=Qload1+Qline1; //The reactive power delivered by the source without shunt capacitor in MVAR Ssource1=sqrt(Psource1^2+Qsource1^2); //The apparent power delivered by the source without shunt capacitor in MVA Ztot2=Rline+Xline+(1/(1/Rload+1/Xload+1/Xc)); //The total impedance seen by source with capacitance in Ohm Iline2=Vsln/Ztot2; //The line current with shunt capacitor in kA Vdrop2=(Rline+Xline)*Iline2; //The voltage drop across the line with shunt capacitor in KVolts Vload2=Vsln-Vdrop2; //The voltage drop across the load with shunt capacitor in KVolts Pload2=3*abs(Vload2)^2/Rload; //The real power delivered to the load with shunt capacitor in MW Qload2=3*abs(Vload2)^2/abs(Xload); //The reactive power delivered to the load with shunt capacitor in MVAR pf2=cos((atan(Qload2/Pload2))); //The power factor of the load with shunt capacitor Pline2=3*abs(Iline2)^2*Rline; //The real power loss in the line with shunt capacitor in MW Qline2=3*abs(Iline2)^2*abs(Xline); //The reactive power loss in the line with shunt capacitor in MVAR Qc=3*abs(Vload2)^2/abs(Xc); //The reactive power delivered by the shunt capacitor inb MVAR Psource2=Pload2+Pline2; //The real power delivered by the source with shunt capacitor in MW Qsource2=Qload2+Qline2-Qc; //The reactive power delivered by the source with shunt capacitor in MVAR Ssource2=sqrt(Psource2^2+Qsource2^2); //The apparent power delivered by the source with shunt capacitor in MVA printf('a. Without Capacitor'); printf('\nThe magnitude of line current is %f kA and %f degree',abs(Iline1),atand(imag(Iline1)/real(Iline1))); printf('\nThe magnitude of voltage drop in the line is %f kV and %f degree',abs(Vdrop1),atand(imag(Vdrop1)/real(Vdrop1))); printf('\nThe magnitude of voltage drop in the load is %f kV and %f degree',abs(Vload1),atand(imag(Vload1)/real(Vload1))); printf('\nThe real and reactive power delivered to the three phase load is %f MW and %f MVAR',Pload1,Qload1); printf('\nThe load power factor is %f lagging',pf1); printf('\nThe real and reactive power losses in the line is %f MW and %f MVAR',Pline1,Qline1); printf('\nThe real power, reactive power and Apparent power delivered by the source is %f MW , %f MVAR and %f MVA',Psource1,Qsource1,Ssource1); printf('\n\n\nb. With Capacitor'); printf('\nThe magnitude of line current is %f kA and %f degree',abs(Iline2),atand(imag(Iline2)/real(Iline2))); printf('\nThe magnitude of voltage drop in the line is %f kV and %f degree',abs(Vdrop2),atand(imag(Vdrop2)/real(Vdrop2))); printf('\nThe magnitude of voltage drop in the load is %f kV and %f degree',abs(Vload2),atand(imag(Vload2)/real(Vload2))); printf('\nThe real and reactive power delivered to the three phase load is %f MW and %f MVAR',Pload2,Qload2); printf('\nThe load power factor is %f lagging',pf2); printf('\nThe real and reactive power losses in the line is %f MW and %f MVAR',Pline2,Qline2); printf('\nThe reactive power delivered by the shunt capacitor bank is %f MVAR',Qc); printf('\nThe real power, reactive power and Apparent power delivered by the source is %f MW , %f MVAR and %f MVA',Psource2,Qsource2,Ssource2); //The third part of this question cannot be executed in SCILAB because of its theoritical nature
76848aa945f540c7365cb39a56272d03fc9e8f6b
449d555969bfd7befe906877abab098c6e63a0e8
/839/CH17/EX17.2/Example_17_2.sce
71a69f644af66ede25401c22736f95c3a94b0e70
[]
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
891
sce
Example_17_2.sce
//clear// clear; clc; //Example 17.2 //Given Nreal = 7; VbyL = 1.5; m = 0.8; yb = 0; xb_star = 0; //xb=0.1*xa; //(a) //Stripping Factor S = m*VbyL; //From an ammonia balance, //ya =0.9*xa/VbyL; //Also //xa_star = ya/m //Using Eq.(17.28) //N = ln((xa-0.75*xa)/(0.1*xa-0))/ln(S) N = log(0.25/0.1)/log(S); disp(N,'Number of ideal trays required are') stage_eff = N/Nreal*100; disp('%',stage_eff,'Stage Efficiency is') //(b) VbyL = 2; S = m*VbyL; //Then, //Let A = (xa-xa_star)/xb A = exp(5.02); //Let 'f' be the fraction of NH3 removed. Then xb = (1-f)*xa. //By a material balance //y = L/V*(xa-xb) = 1/2*(xa-(1-f)*xa)= 1/2*f*xa //xa_star = ya/m = 0.5*f*xa/0.8 = 0.625*f*xa //Thus, //xa-xa_star = (1-0.625*f)*xa //Also, //xa-xa_star = 10.59*xb = 10.59*(1-f)*xa //from these f = 0.962 disp('%',f,'percentage removal obtained in this case is')
60d2972dc830792f900d88a41450a5471d38a72a
cefe1787aed5bd5b40d2139f03ad095cab6f6c01
/input/muysencillo.tst
1adc591b1a6337793b838946310477ddf1eefa60
[]
no_license
ftmlik/tfg_roc_keel
088e73a34b6569c1c0a0d5880d98740888ef552d
071179de84fa663099aaeb695d60fbbda6076e11
refs/heads/master
2020-04-04T02:49:17.564536
2017-01-07T15:16:13
2017-01-07T15:16:13
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
133
tst
muysencillo.tst
true-class positive negative positive 0.2 0.1 positive 0.9 0.2 negative 0.9 0.3 negative 0.3 0.4 positive 0.9 0.45 positive 0.1 0.46
661b63365e21f79c6716cd2a287f944d93d988d8
449d555969bfd7befe906877abab098c6e63a0e8
/1895/CH5/EX5.19/EXAMPLE5_19.SCE
9ebd9021e9eb1269bf8bc809bdd155e8262203af
[]
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,092
sce
EXAMPLE5_19.SCE
//ANALOG AND DIGITAL COMMUNICATION //BY Dr.SANJAY SHARMA //CHAPTER 5 //ANGLE MODULATION clear all; clc; printf("EXAMPLE 5.19(PAGENO 222)"); //given f_m1 = 1*10^3//modulating frequency for first case f_m2 = 500//modulating frequency for second case V_m1 = 2//modulating voltage for first case V_m2 = 8//modulating volatge for second case delta_f1 = 4*10^3//frequency deviation for first case //calculations k = delta_f1/V_m1//constant delta_f2 = k*V_m2//frequency deviation for second case m_f1 = delta_f1/f_m1//modulation index for first case m_f2 = delta_f2/f_m2//modulation index for second case BW1 = 2*(delta_f1 + f_m1)//bandwidth for first case BW2 = 2*(delta_f2 + f_m2)//bandwidth for second case //results printf("\n\ni.a.Modulation index for first case = %.2f",m_f1); printf("\n\n b.Bandwidth for first case = %.2f Hz",BW1); printf("\n\nii.a.Modulation index for second case = %.2f",m_f2); printf("\n\n b .Bandwidth for second case = %.2f Hz",BW2); printf("\n\nNote: Their is error in textbook in the calculation of second case bandwidth ");
edbb30f481b0544ecdbf9cad812e95e796edad12
449d555969bfd7befe906877abab098c6e63a0e8
/1202/CH11/EX11.1/11_1.sce
5d1500ddf9e34d565b05aa6ac0336d9666c01952
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,427
sce
11_1.sce
clear clc //Example 11.1 disp('Example 11.1') //(a) Desired closed loop gain=1 and tau=[1 3 10] s=%s; tauc=[1 3 10]'; tau1=10;tau2=5;K=2;theta=1; //Time delay Y_Ysp=(1)./(tauc*s+1); //Y/Ysp=delay/(tau*s+1) Eqn 11-6 //delay=(1-theta/2*s+theta^2/10*s^2-theta^3/120*s^3)/(1+theta/2*s+theta^2/10*s^2+theta^3/120*s^3);//Third order pade approx delay=(1-theta/2*s)/(1+theta*s/2);//first order Pade approx G=(K)./((tau1*s+1)*(tau2*s+1))*delay; G_tilda=G//Model transfer function //Eqn-11-14 Kc=1/K*(tau1+tau2)./(tauc+theta);tauI=tau1+tau2;tauD=tau1*tau2/(tau1+tau2); Gc=Kc*(1+1/tauI/s+tauD*s); //PID without derivative filtering G_CL=syslin('c',Gc/delay*G./(1+Gc*G));//closed loop transfer function t=0:160; y=csim('step',t,G_CL); //plot(t,y) t_d=81:160; G_CL_dist=syslin('c',G/delay./(1+Gc*G));//closed loop wrt disturbance u_d=[0 ones(1,length(t_d)-1)] y_d=csim('step',t_d,G_CL_dist); y(:,81:160)=y(:,81:160)+y_d plot(t,y) xgrid() xtitle('Ex-11.1 Correct Model','Time(min)','y(t)'); a=legend("$\tau_c=1$","$\tau_c=3$","$\tau_c=10$",position=4); a.font_size=2; a=get("current_axes");b=a.title;b.font_size=5;c=a.x_label;c.font_size=5; c=a.y_label;c.font_size=5; mprintf("\n tauc=1 tauc=3 tauc=10") mprintf("\n Kc(K_tilda=2) %10f %f %f",Kc'); //Simulation for model with incorrect gain scf() K_tilda=0.9 //Eqn-11-14 Kc=1/K_tilda*(tau1+tau2)./(tauc+theta);tauI=tau1+tau2;tauD=tau1*tau2/(tau1+tau2); Gc=Kc*(1+1/tauI/s+tauD*s) mprintf("\n Kc(K_tilda=0.9) %10f %f %f",Kc'); mprintf("\n tauI %20f %f %f",tauI*ones(1,3)); mprintf("\n tauD %20f %f %f",tauD*ones(1,3)); G_CL=syslin('c',Gc*G./(1+Gc*G));//closed loop transfer function t=0:160; y=csim('step',t,G_CL); t_d=81:160; G_CL_dist=syslin('c',G./(1+Gc*G));//closed loop wrt disturbance y_d=csim('step',t_d,G_CL_dist); y(:,81:160)=y(:,81:160)+y_d plot(t,y) xgrid() xtitle('Ex-11.1 Model with incorrect gain','Time(min)','y(t)'); a=legend("$\tau_c=1$","$\tau_c=3$","$\tau_c=10$",position=4); a.font_size=2; a=get("current_axes");b=a.title;b.font_size=5;c=a.x_label;c.font_size=5; c=a.y_label;c.font_size=5; mprintf('\n \nThere is a slight mis-match between graphs from scilab code\n... and those given in the book because of Pade approx which is very bad\n... for delay being 1. It works only for small delays. Scilab does \n... not handle continuous delays and hence this problem cannot \n... be circumvented' )
3897226b23d32ae2143339c7942728d84c967b20
449d555969bfd7befe906877abab098c6e63a0e8
/1475/CH1/EX1.60/Example_1_60.sce
0604c92b559d778551b2c730dad4e89180889461
[]
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
376
sce
Example_1_60.sce
//Example 1.60 A man purchases a lottery ticket, in which he win clc; clear; disp(1-(0.0001+0.0004),"Probab. that man does not get any prize=",0.0004,"Probab. that ma wins second prize of Rs 4000=",0.0001,"Probab. that man wins first prize of Rs 10,000="); disp((0.0001*10000+0.0004*4000+0.9995*0),"The Mathematical Expectation is (0.0001*10000+0.0004*4000+0.9995*0)=");
a0c4cdb4f84d96069a0ad30fe5377d7af032c258
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.4/Unix-Windows/scilab-2.4/tests/pause.tst
95391b876b0d4aac0f058ee0a28cc4e0277ae58d
[ "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
685
tst
pause.tst
// Copyright INRIA a=1; deff('[x]=tata(y)','x=-y,write(%io(2),''enter quit''),pause,x=+20') xx=tata(10); quit; if 10+xx<>0 then pause,end b=2; deff('[x]=tata(y)',['x=-y' 'write(6,''enter return'')' 'pause' 'x=+20']) xx=tata(0); return if 20-xx<>0 then pause,end deff('[x]=tata(y)','x=-y,write(6,''type x=resume(0)''),pause') xx=tata(40); x=resume(0) if xx<>0 then pause,end clear x text=['after quit ' 'undefined variable x'] deff('[x]=toto(n)',['v=100' 'write(%io(2),text)' 'pause' 'x=n']) write(%io(2),'enter abort (after receiving this message:)') toto(0); abort
7cff2bc507b4bfac2db319d5c6acde19acbccb81
449d555969bfd7befe906877abab098c6e63a0e8
/2873/CH13/EX13.4/Ex13_4.sce
e186490d9c76154bfcd4bfe17c2721dbd9952168
[]
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
455
sce
Ex13_4.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clear; clc; disp("Engineering Thermodynamics by Onkar Singh Chapter 13 Example 4") Po=2;//total pressure in bar P=0.3;//static pressure in bar y=1.4;//expansion constant disp("we know that,Po/P=(1+(y-1)*M^2/2)^((y)/(y-1))") disp("so M=sqrt((exp(log(Po/P)/(y/(y-1)))-1)/((y-1)/2))") M=sqrt((exp(log(Po/P)/(y/(y-1)))-1)/((y-1)/2)) disp("so mach number,M=1.89")
9588573059622a573dd2e6c8cff3885045da04c8
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/CS3B.prev.tst
6edf324392975ad87a3aff1bef93039633720256
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
4,752
tst
CS3B.prev.tst
CandidateSelector expand width=4 base=5 exponent=3 left=4 right=0 fileName=test/CS3B.data.tmp chain8 [[0,-3,-2,-2],[-1,1,1,1],[0,2,2,1],[0,2,1,2]] det=-1 [28,-18,-21,-19] [134,-86,-97,-95] [642,-412,-461,-459] [3076,-1974,-2205,-2203] [14738,-9458,-10561,-10559] [70614,-45316,-50597,-50595] [338332,-217122,-242421,-242419] [1621046,-1040294,-1161505,-1161503] [7766898,-4984348,-5565101,-5565099] chain8 [[4,1,-1,-1],[-1,1,1,1],[0,2,2,1],[0,2,1,2]] det=3 [28,-18,-21,-19] [134,-86,-97,-95] [642,-412,-461,-459] [3076,-1974,-2205,-2203] [14738,-9458,-10561,-10559] [70614,-45316,-50597,-50595] [338332,-217122,-242421,-242419] [1621046,-1040294,-1161505,-1161503] [7766898,-4984348,-5565101,-5565099] chain8 [[0,-3,-2,-2],[-1,1,1,1],[-4,-2,1,0],[0,2,1,2]] det=-2 [28,-18,-21,-19] [134,-86,-97,-95] [642,-412,-461,-459] [3076,-1974,-2205,-2203] [14738,-9458,-10561,-10559] [70614,-45316,-50597,-50595] [338332,-217122,-242421,-242419] [1621046,-1040294,-1161505,-1161503] [7766898,-4984348,-5565101,-5565099] chain8 [[4,1,-1,-1],[-1,1,1,1],[-4,-2,1,0],[0,2,1,2]] det=2 [28,-18,-21,-19] [134,-86,-97,-95] [642,-412,-461,-459] [3076,-1974,-2205,-2203] [14738,-9458,-10561,-10559] [70614,-45316,-50597,-50595] [338332,-217122,-242421,-242419] [1621046,-1040294,-1161505,-1161503] [7766898,-4984348,-5565101,-5565099] chain2 [[0,-3,-2,-2],[-1,1,1,1],[-3,4,-1,-2],[-1,-4,3,4]] det=-2 [28,-18,-21,-19] [134,-86,-97,-95] [642,-412,-459,-461] chain2 [[4,1,-1,-1],[-1,1,1,1],[-3,4,-1,-2],[-1,-4,3,4]] det=2 [28,-18,-21,-19] [134,-86,-97,-95] [642,-412,-459,-461] chain8 [[1,3,-4,-4],[2,-1,4,4],[-1,3,-2,3],[-3,-3,4,-1]] det=230 [28,-18,-21,-19] [134,-86,-97,-95] [644,-414,-483,-437] [3082,-1978,-2231,-2185] [14812,-9522,-11109,-10051] [70886,-45494,-51313,-50255] [340676,-219006,-255507,-231173] [1630378,-1046362,-1180199,-1155865] [7835548,-5037138,-5876661,-5316979] chain8 [[0,-3,-2,-2],[-1,1,1,1],[0,2,2,1],[-4,-2,0,1]] det=-2 [28,-18,-21,-19] [134,-86,-97,-95] [642,-412,-461,-459] [3076,-1974,-2205,-2203] [14738,-9458,-10561,-10559] [70614,-45316,-50597,-50595] [338332,-217122,-242421,-242419] [1621046,-1040294,-1161505,-1161503] [7766898,-4984348,-5565101,-5565099] chain8 [[4,1,-1,-1],[-1,1,1,1],[0,2,2,1],[-4,-2,0,1]] det=2 [28,-18,-21,-19] [134,-86,-97,-95] [642,-412,-461,-459] [3076,-1974,-2205,-2203] [14738,-9458,-10561,-10559] [70614,-45316,-50597,-50595] [338332,-217122,-242421,-242419] [1621046,-1040294,-1161505,-1161503] [7766898,-4984348,-5565101,-5565099] chain8 [[0,-3,-2,-2],[-1,1,1,1],[-4,-2,1,0],[-4,-2,0,1]] det=-3 [28,-18,-21,-19] [134,-86,-97,-95] [642,-412,-461,-459] [3076,-1974,-2205,-2203] [14738,-9458,-10561,-10559] [70614,-45316,-50597,-50595] [338332,-217122,-242421,-242419] [1621046,-1040294,-1161505,-1161503] [7766898,-4984348,-5565101,-5565099] chain8 [[4,1,-1,-1],[-1,1,1,1],[-4,-2,1,0],[-4,-2,0,1]] det=1 [28,-18,-21,-19] [134,-86,-97,-95] [642,-412,-461,-459] [3076,-1974,-2205,-2203] [14738,-9458,-10561,-10559] [70614,-45316,-50597,-50595] [338332,-217122,-242421,-242419] [1621046,-1040294,-1161505,-1161503] [7766898,-4984348,-5565101,-5565099] chain8 [[1,-1,1,1],[1,4,-1,-1],[2,0,2,1],[2,0,1,2]] det=3 [134,-86,-97,-95] [28,-18,-21,-19] [6,-4,-5,-3] [2,-2,-1,1] [4,-6,3,5] [18,-28,19,21] [86,-134,95,97] [412,-642,459,461] [1974,-3076,2203,2205] chain8 [[1,-1,1,1],[-3,0,-2,-2],[2,0,2,1],[2,0,1,2]] det=-1 [134,-86,-97,-95] [28,-18,-21,-19] [6,-4,-5,-3] [2,-2,-1,1] [4,-6,3,5] [18,-28,19,21] [86,-134,95,97] [412,-642,459,461] [1974,-3076,2203,2205] chain8 [[1,-1,1,1],[1,4,-1,-1],[-2,-4,1,0],[2,0,1,2]] det=2 [134,-86,-97,-95] [28,-18,-21,-19] [6,-4,-5,-3] [2,-2,-1,1] [4,-6,3,5] [18,-28,19,21] [86,-134,95,97] [412,-642,459,461] [1974,-3076,2203,2205] chain8 [[1,-1,1,1],[-3,0,-2,-2],[-2,-4,1,0],[2,0,1,2]] det=-2 [134,-86,-97,-95] [28,-18,-21,-19] [6,-4,-5,-3] [2,-2,-1,1] [4,-6,3,5] [18,-28,19,21] [86,-134,95,97] [412,-642,459,461] [1974,-3076,2203,2205] chain8 [[1,-1,1,1],[1,4,-1,-1],[2,0,2,1],[-2,-4,0,1]] det=2 [134,-86,-97,-95] [28,-18,-21,-19] [6,-4,-5,-3] [2,-2,-1,1] [4,-6,3,5] [18,-28,19,21] [86,-134,95,97] [412,-642,459,461] [1974,-3076,2203,2205] chain8 [[1,-1,1,1],[-3,0,-2,-2],[2,0,2,1],[-2,-4,0,1]] det=-2 [134,-86,-97,-95] [28,-18,-21,-19] [6,-4,-5,-3] [2,-2,-1,1] [4,-6,3,5] [18,-28,19,21] [86,-134,95,97] [412,-642,459,461] [1974,-3076,2203,2205] chain8 [[1,-1,1,1],[1,4,-1,-1],[-2,-4,1,0],[-2,-4,0,1]] det=1 [134,-86,-97,-95] [28,-18,-21,-19] [6,-4,-5,-3] [2,-2,-1,1] [4,-6,3,5] [18,-28,19,21] [86,-134,95,97] [412,-642,459,461] [1974,-3076,2203,2205] chain8 [[1,-1,1,1],[-3,0,-2,-2],[-2,-4,1,0],[-2,-4,0,1]] det=-3 [134,-86,-97,-95] [28,-18,-21,-19] [6,-4,-5,-3] [2,-2,-1,1] [4,-6,3,5] [18,-28,19,21] [86,-134,95,97] [412,-642,459,461] [1974,-3076,2203,2205]
43db2c5c780a478c36dce8162c79081696b38b39
a5f0fbcba032f945a9ee629716f6487647cafd5f
/Community bonding /Jupyter/Driver.sci
f69ec8f39849dcd2da54cfdfb32cdf821e710347
[]
no_license
SoumitraAgarwal/Scilab-gsoc
692c00e3fb7a5faf65082e6c23765620f4ecdf35
678e8f80c8a03ef0b9f4c1173bdda7f3e16d716f
refs/heads/master
2021-04-15T17:55:48.334164
2018-08-07T13:43:26
2018-08-07T13:43:26
126,500,126
1
1
null
null
null
null
UTF-8
Scilab
false
false
363
sci
Driver.sci
server = 'a.soumitra@172.16.68.1' args = 'Hello World!' script = 'Printer.py' removedir('Params') createdir('Params') fd = mopen('Params/server.txt','wt'); mfprintf(fd, server); mclose(fd); fd = mopen('Params/script.txt','wt'); mfprintf(fd, script); mclose(fd); fd = mopen('Params/arguments.txt','wt'); mfprintf(fd, args); mclose(fd); exec('Unix.sci', -1)
49774999c812e9215c110173a42bced477d4bec9
449d555969bfd7befe906877abab098c6e63a0e8
/1076/CH16/EX16.28/16_28.sce
723b2c50ff4f02b42de86170d41f47d5def84ea8
[]
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
381
sce
16_28.sce
clear clc t1=15 P1=1.3 pf1=.75 t2=9 P2=.4 pf2=.8 pfd=.95 kvar1i=P1*1e3*tan (acos(pf1)) kvar1f=P1*1e3*tan (acos(pfd)) kvarr1=kvar1i-kvar1f kvar2i=P2*1e3*tan (acos(pf2)) kvar2f=P2*1e3*tan (acos(pfd)) kvarr2=kvar2i-kvar2f SBC=abs(kvarr2-kvarr1) FBC=min(kvarr2,kvarr1) mprintf("Switch Bank Capacity: %.2f KVAR, Fixed Bank Capacity: %.2f KVAR",SBC, FBC)
bd3cb76081cf3c5a80074a0f8f9775f5440baff2
449d555969bfd7befe906877abab098c6e63a0e8
/1955/CH8/EX8.10/example10.sce
4414a81b7cf2037668df1490c6fe893a314864bf
[]
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,137
sce
example10.sce
clc clear //input data Ihl=3//Head loss in impeller in m Cr2=4.64//Flow velocity through impeller at outlet in m/s U2=30//Blade outlet speed in m/s dPi=35.3//Difference in pressure gauge readings at impeller inlet and outlet in m of water Pg=4.7//Pressure gain in the casing in m of water n=0.385//Part of absolute kinetic energy converted into pressure gain g=9.81//Acceleration due to gravity in m/s^2 d=1000//Density of water in kg/m^3 ss=0.85//Slip coefficient //calculations Kei=Pg/n//Kinetic energy at impeller exit in m/s C2=((Kei)*2*g)^(1/2)//Velocity at impeller exit in m/s Cx22=(C2^2-Cr2^2)^(1/2)//Absolute whirl component at outlet with fliud slip in m/s Cx2=Cx22/ss//Ideal absolute whirl velocity in m/s b22=atand(Cr2/(U2-Cx2))//Blade angle at exit in degree Wm=ss*U2*Cx2//Euler work input in J/kg nm=dPi/(U2*Cx22/g)//Manometric efficiency dP=(U2*Cx22/g)-(Ihl)-(C2^2/(2*g))//Pressure rise in impeller in m //output printf('(a)\n Exit blade angle is %3.2f degree\n Euler work input is %3.2f J/kg\n(b)Manometric efficiency is %3.4f\n(c)Pressure rise in the impeller is %3.3f m',b22,Wm,nm,dP)
ed0075025324d9974ea47d0460cb555469ea89cc
5c808b0f55fefd29b91c7cb73f2f3a08093c5033
/Code/Scilab Code/FalseNegsForChordSamples.sci
ed7ad6d7a198f290320309a125014038dba14726
[]
no_license
JOfTheAncientGermanSpear/Filter-Bank-Guitar-Note-Chord-Detection
a01e2ce521561dfea555a588d6bb1e0f1deca18e
cb0d54c74275a990dcb984c4ec349e6ca4e72a1a
refs/heads/master
2021-01-20T12:00:42.472605
2013-06-14T03:04:33
2013-06-14T03:04:33
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
380
sci
FalseNegsForChordSamples.sci
function [chordNames, isFalseNegs] = FalseNegsForChordSamples() chordNames = GetChordNames(); numOfChords = length(length(chordNames)); isFalseNegs = zeros(1, numOfChords); for currChordIndx = 1:numOfChords currChord = chordNames(currChordIndx); isFalseNegs(currChordIndx) = ~AudioHasChordByName(currChord, currChord); end endfunction